diff --git a/grammar.js b/grammar.js index 73a9c26..9724e2e 100644 --- a/grammar.js +++ b/grammar.js @@ -75,6 +75,7 @@ module.exports = grammar(C, { [$.template_function, $.template_type], [$.template_function, $.template_type, $.expression], [$.template_function, $.template_type, $.qualified_identifier], + [$.template_function, $.template_type, $.qualified_identifier, $.qualified_type_identifier], [$.template_type, $.qualified_type_identifier], [$.qualified_type_identifier, $.qualified_identifier], [$.comma_expression, $.initializer_list], @@ -98,6 +99,8 @@ module.exports = grammar(C, { [$.field_expression, $.template_method, $.template_type], [$.field_expression, $.template_method], [$.qualified_field_identifier, $.template_method, $.template_type], + [$.type_specifier, $.template_type, $.template_function, $.expression], + [$.splice_type_specifier, $.splice_expression], ], inline: ($, original) => original.concat([ @@ -118,6 +121,7 @@ module.exports = grammar(C, { $.using_declaration, $.alias_declaration, $.static_assert_declaration, + $.consteval_block_declaration, $.template_declaration, $.template_instantiation, $.module_declaration, @@ -137,6 +141,7 @@ module.exports = grammar(C, { $.using_declaration, $.alias_declaration, $.static_assert_declaration, + $.consteval_block_declaration, $.template_declaration, $.template_instantiation, alias($.constructor_or_destructor_definition, $.function_definition), @@ -178,6 +183,7 @@ module.exports = grammar(C, { $.primitive_type, $.template_type, $.dependent_type, + $.splice_type_specifier, $.placeholder_type_specifier, $.decltype, prec.right(choice( @@ -200,6 +206,13 @@ module.exports = grammar(C, { ...original.members, ), + annotation: $ => seq('=', $.expression), + + attribute_declaration: ($, original) => choice( + original, + seq('[[', commaSep1($.annotation), ']]'), + ), + // When used in a trailing return type, these specifiers can now occur immediately before // a compound statement. This introduces a shift/reduce conflict that needs to be resolved // with an associativity. @@ -240,6 +253,7 @@ module.exports = grammar(C, { _class_name: $ => prec.right(choice( $._type_identifier, $.template_type, + $.splice_type_specifier, alias($.qualified_type_identifier, $.qualified_identifier), )), @@ -541,6 +555,7 @@ module.exports = grammar(C, { $.using_declaration, $.type_definition, $.static_assert_declaration, + $.consteval_block_declaration, ';', ), @@ -800,6 +815,7 @@ module.exports = grammar(C, { choice( $._namespace_identifier, $.nested_namespace_specifier, + $.splice_specifier, ), ';', ), @@ -825,6 +841,7 @@ module.exports = grammar(C, { choice( $.identifier, $.qualified_identifier, + $.splice_type_specifier, ), ';', ), @@ -850,6 +867,11 @@ module.exports = grammar(C, { ';', ), + consteval_block_declaration: $ => seq( + 'consteval', + field('body', $.compound_statement), + ), + concept_definition: $ => seq( 'concept', field('name', $.identifier), @@ -865,6 +887,7 @@ module.exports = grammar(C, { $.co_return_statement, $.co_yield_statement, $.for_range_loop, + $.expansion_statement, $.try_statement, $.throw_statement, ), @@ -874,6 +897,7 @@ module.exports = grammar(C, { $.co_return_statement, $.co_yield_statement, $.for_range_loop, + $.expansion_statement, $.try_statement, $.throw_statement, ), @@ -1003,6 +1027,8 @@ module.exports = grammar(C, { $.this, $.user_defined_literal, $.fold_expression, + $.reflect_expression, + $.splice_expression, ), _string: $ => choice( @@ -1037,10 +1063,13 @@ module.exports = grammar(C, { ']', ), - call_expression: ($, original) => choice(original, seq( - field('function', $.primitive_type), + call_expression: ($, original) => prec.dynamic(1, choice(original, seq( + field('function', choice($.primitive_type, seq( + optional('typename'), + $.splice_type_specifier, + ))), field('arguments', $.argument_list), - )), + ))), co_await_expression: $ => prec.left(PREC.UNARY, seq( field('operator', 'co_await'), @@ -1085,6 +1114,7 @@ module.exports = grammar(C, { $.template_method, alias($.dependent_field_identifier, $.dependent_name), $.operator_name, + $.splice_expression, )), ), @@ -1340,7 +1370,10 @@ module.exports = grammar(C, { compound_literal_expression: ($, original) => choice( original, seq( - field('type', choice($._class_name, $.primitive_type)), + field('type', choice( + $._class_name, + $.primitive_type, + seq(optional('typename'), $.splice_type_specifier))), field('value', $.initializer_list), ), ), @@ -1354,6 +1387,8 @@ module.exports = grammar(C, { $._namespace_identifier, $.template_type, $.decltype, + $.splice_expression, + $.splice_type_specifier, alias($.dependent_type_identifier, $.dependent_name), ))), '::', @@ -1365,7 +1400,7 @@ module.exports = grammar(C, { alias($.dependent_field_identifier, $.dependent_name), alias($.qualified_field_identifier, $.qualified_identifier), $.template_method, - prec.dynamic(1, $._field_identifier), + prec.dynamic(2, $._field_identifier), )), ), @@ -1375,7 +1410,7 @@ module.exports = grammar(C, { alias($.dependent_identifier, $.dependent_name), $.qualified_identifier, $.template_function, - seq(optional('template'), $.identifier), + prec.dynamic(1, seq(optional('template'), $.identifier)), $.operator_name, $.destructor_name, $.pointer_type_declarator, @@ -1388,7 +1423,7 @@ module.exports = grammar(C, { alias($.dependent_type_identifier, $.dependent_name), alias($.qualified_type_identifier, $.qualified_identifier), $.template_type, - $._type_identifier, + prec.dynamic(1, $._type_identifier), )), ), @@ -1425,6 +1460,36 @@ module.exports = grammar(C, { seq('(', alias($._assignment_expression_lhs, $.assignment_expression), ')'), ), + reflect_expression: $ => prec.right(seq( + '^^', + choice( + '::', + $.expression, + $.type_descriptor, + ), + )), + + splice_specifier: $ => seq( '[:', $.expression, ':]'), + _splice_specialization_specifier: $ => seq($.splice_specifier, $.template_argument_list), + + splice_type_specifier: $ => prec.right(choice( + $.splice_specifier, + $._splice_specialization_specifier, + )), + + splice_expression: $ => prec.right(choice( + $.splice_specifier, + seq('template', $._splice_specialization_specifier), + )), + + expansion_statement: $ => seq( + 'template', 'for', + '(', + $._for_range_loop_body, + ')', + field('body', $.statement), + ), + operator_name: $ => prec(1, seq( 'operator', choice( diff --git a/src/grammar.json b/src/grammar.json index bc35ce0..dd079bf 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -90,6 +90,10 @@ "type": "SYMBOL", "name": "static_assert_declaration" }, + { + "type": "SYMBOL", + "name": "consteval_block_declaration" + }, { "type": "SYMBOL", "name": "template_declaration" @@ -226,6 +230,10 @@ "type": "SYMBOL", "name": "static_assert_declaration" }, + { + "type": "SYMBOL", + "name": "consteval_block_declaration" + }, { "type": "SYMBOL", "name": "template_declaration" @@ -3439,40 +3447,83 @@ ] }, "attribute_declaration": { - "type": "SEQ", + "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "[[" - }, { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "attribute" + "type": "STRING", + "value": "[[" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "attribute" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] } - ] - } + } + ] + }, + { + "type": "STRING", + "value": "]]" } ] }, { - "type": "STRING", - "value": "]]" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "annotation" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "annotation" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]]" + } + ] } ] }, @@ -5005,6 +5056,10 @@ "type": "SYMBOL", "name": "dependent_type" }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" + }, { "type": "SYMBOL", "name": "placeholder_type_specifier" @@ -5704,6 +5759,10 @@ "type": "SYMBOL", "name": "static_assert_declaration" }, + { + "type": "SYMBOL", + "name": "consteval_block_declaration" + }, { "type": "STRING", "value": ";" @@ -6312,6 +6371,10 @@ "type": "SYMBOL", "name": "for_range_loop" }, + { + "type": "SYMBOL", + "name": "expansion_statement" + }, { "type": "SYMBOL", "name": "try_statement" @@ -6403,6 +6466,10 @@ "type": "SYMBOL", "name": "for_range_loop" }, + { + "type": "SYMBOL", + "name": "expansion_statement" + }, { "type": "SYMBOL", "name": "try_statement" @@ -7202,6 +7269,14 @@ { "type": "SYMBOL", "name": "fold_expression" + }, + { + "type": "SYMBOL", + "name": "reflect_expression" + }, + { + "type": "SYMBOL", + "name": "splice_expression" } ] }, @@ -8846,20 +8921,71 @@ } }, "call_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 15, - "content": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, + { "type": "SEQ", "members": [ { "type": "FIELD", "name": "function", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" + } + ] + } + ] } }, { @@ -8872,29 +8998,8 @@ } ] } - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "primitive_type" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" - } - } - ] - } - ] + ] + } }, "gnu_asm_expression": { "type": "PREC", @@ -9530,6 +9635,10 @@ { "type": "SYMBOL", "name": "operator_name" + }, + { + "type": "SYMBOL", + "name": "splice_expression" } ] } @@ -9584,6 +9693,27 @@ { "type": "SYMBOL", "name": "primitive_type" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" + } + ] } ] } @@ -11201,6 +11331,19 @@ } ] }, + "annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, "_class_declaration": { "type": "SEQ", "members": [ @@ -11359,6 +11502,10 @@ "type": "SYMBOL", "name": "template_type" }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" + }, { "type": "ALIAS", "content": { @@ -13851,6 +13998,10 @@ { "type": "SYMBOL", "name": "nested_namespace_specifier" + }, + { + "type": "SYMBOL", + "name": "splice_specifier" } ] }, @@ -13964,6 +14115,10 @@ { "type": "SYMBOL", "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" } ] }, @@ -14067,6 +14222,23 @@ } ] }, + "consteval_block_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "consteval" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, "concept_definition": { "type": "SEQ", "members": [ @@ -16851,6 +17023,14 @@ "type": "SYMBOL", "name": "decltype" }, + { + "type": "SYMBOL", + "name": "splice_expression" + }, + { + "type": "SYMBOL", + "name": "splice_type_specifier" + }, { "type": "ALIAS", "content": { @@ -16912,7 +17092,7 @@ }, { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SYMBOL", "name": "_field_identifier" @@ -16954,25 +17134,29 @@ "name": "template_function" }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "template" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } }, { "type": "SYMBOL", @@ -17027,8 +17211,12 @@ "name": "template_type" }, { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } } ] } @@ -17161,6 +17349,142 @@ } ] }, + "reflect_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^^" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "::" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + } + ] + } + }, + "splice_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[:" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ":]" + } + ] + }, + "_splice_specialization_specifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "splice_specifier" + }, + { + "type": "SYMBOL", + "name": "template_argument_list" + } + ] + }, + "splice_type_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "splice_specifier" + }, + { + "type": "SYMBOL", + "name": "_splice_specialization_specifier" + } + ] + } + }, + "splice_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "splice_specifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "SYMBOL", + "name": "_splice_specialization_specifier" + } + ] + } + ] + } + }, + "expansion_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_for_range_loop_body" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, "operator_name": { "type": "PREC", "value": 1, @@ -17537,6 +17861,12 @@ "template_type", "qualified_identifier" ], + [ + "template_function", + "template_type", + "qualified_identifier", + "qualified_type_identifier" + ], [ "template_type", "qualified_type_identifier" @@ -17631,6 +17961,16 @@ "qualified_field_identifier", "template_method", "template_type" + ], + [ + "type_specifier", + "template_type", + "template_function", + "expression" + ], + [ + "splice_type_specifier", + "splice_expression" ] ], "precedences": [ diff --git a/src/node-types.json b/src/node-types.json index 3472eab..7e40882 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -275,6 +275,10 @@ "type": "raw_string_literal", "named": true }, + { + "type": "reflect_expression", + "named": true + }, { "type": "requires_clause", "named": true @@ -287,6 +291,10 @@ "type": "sizeof_expression", "named": true }, + { + "type": "splice_expression", + "named": true + }, { "type": "string_literal", "named": true @@ -357,6 +365,10 @@ "type": "do_statement", "named": true }, + { + "type": "expansion_statement", + "named": true + }, { "type": "expression_statement", "named": true @@ -447,6 +459,10 @@ "type": "sized_type_specifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "struct_specifier", "named": true @@ -717,6 +733,21 @@ } } }, + { + "type": "annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, { "type": "argument_list", "named": true, @@ -938,6 +969,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "annotation", + "named": true + }, { "type": "attribute", "named": true @@ -1026,6 +1061,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1212,7 +1251,7 @@ ] }, "function": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -1222,6 +1261,14 @@ { "type": "primitive_type", "named": true + }, + { + "type": "splice_type_specifier", + "named": true + }, + { + "type": "typename", + "named": false } ] } @@ -1278,6 +1325,10 @@ "type": "do_statement", "named": true }, + { + "type": "expansion_statement", + "named": true + }, { "type": "expression_statement", "named": true @@ -1430,6 +1481,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1563,7 +1618,7 @@ "named": true, "fields": { "type": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -1574,6 +1629,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1585,6 +1644,10 @@ { "type": "type_identifier", "named": true + }, + { + "type": "typename", + "named": false } ] }, @@ -1635,6 +1698,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -1833,6 +1900,22 @@ } } }, + { + "type": "consteval_block_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + } + }, { "type": "constraint_conjunction", "named": true, @@ -1861,6 +1944,10 @@ "type": "expression", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1909,6 +1996,10 @@ "type": "expression", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1949,6 +2040,10 @@ "type": "expression", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -1997,6 +2092,10 @@ "type": "expression", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -2126,6 +2225,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -2383,6 +2486,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -2458,6 +2565,92 @@ ] } }, + { + "type": "expansion_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "init_statement", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, { "type": "explicit_function_specifier", "named": true, @@ -2508,6 +2701,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -2703,6 +2900,10 @@ "type": "alias_declaration", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -2811,6 +3012,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_expression", + "named": true + }, { "type": "template_method", "named": true @@ -3243,6 +3448,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -4307,6 +4516,10 @@ { "type": "nested_namespace_specifier", "named": true + }, + { + "type": "splice_specifier", + "named": true } ] } @@ -5096,6 +5309,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -5232,6 +5449,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -5339,6 +5560,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -5539,6 +5764,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -5675,6 +5904,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "declaration", "named": true @@ -5893,6 +6126,14 @@ "type": "namespace_identifier", "named": true }, + { + "type": "splice_expression", + "named": true + }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -5963,6 +6204,25 @@ ] } }, + { + "type": "reflect_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, { "type": "requirement_seq", "named": true, @@ -6014,6 +6274,10 @@ "type": "expression", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -6227,6 +6491,59 @@ } } }, + { + "type": "splice_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "splice_specifier", + "named": true + }, + { + "type": "template_argument_list", + "named": true + } + ] + } + }, + { + "type": "splice_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "splice_type_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "splice_specifier", + "named": true + }, + { + "type": "template_argument_list", + "named": true + } + ] + } + }, { "type": "static_assert_declaration", "named": true, @@ -6307,6 +6624,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -6842,6 +7163,10 @@ "type": "concept_definition", "named": true }, + { + "type": "consteval_block_declaration", + "named": true + }, { "type": "continue_statement", "named": true @@ -6854,6 +7179,10 @@ "type": "do_statement", "named": true }, + { + "type": "expansion_statement", + "named": true + }, { "type": "export_declaration", "named": true @@ -7133,6 +7462,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -7216,6 +7549,10 @@ "type": "qualified_identifier", "named": true }, + { + "type": "splice_type_specifier", + "named": true + }, { "type": "template_type", "named": true @@ -7342,6 +7679,10 @@ { "type": "qualified_identifier", "named": true + }, + { + "type": "splice_type_specifier", + "named": true } ] } @@ -7631,6 +7972,10 @@ "type": "::", "named": false }, + { + "type": ":]", + "named": false + }, { "type": ";", "named": false @@ -7719,6 +8064,10 @@ "type": "[", "named": false }, + { + "type": "[:", + "named": false + }, { "type": "[[", "named": false @@ -7743,6 +8092,10 @@ "type": "^=", "named": false }, + { + "type": "^^", + "named": false + }, { "type": "_Alignas", "named": false diff --git a/src/parser.c b/src/parser.c index bb3bb10..25331c8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 9087 -#define LARGE_STATE_COUNT 2317 -#define SYMBOL_COUNT 553 +#define STATE_COUNT 11551 +#define LARGE_STATE_COUNT 3721 +#define SYMBOL_COUNT 565 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 222 +#define TOKEN_COUNT 225 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 53 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 233 +#define PRODUCTION_ID_COUNT 236 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -179,39 +179,39 @@ enum ts_symbol_identifiers { anon_sym__Alignof = 149, anon_sym_offsetof = 150, anon_sym__Generic = 151, - anon_sym_asm = 152, - anon_sym___asm__ = 153, - anon_sym___asm = 154, - anon_sym___volatile__ = 155, - anon_sym_DOT = 156, - anon_sym_DOT_STAR = 157, - anon_sym_DASH_GT = 158, - sym_number_literal = 159, - anon_sym_L_SQUOTE = 160, - anon_sym_u_SQUOTE = 161, - anon_sym_U_SQUOTE = 162, - anon_sym_u8_SQUOTE = 163, - anon_sym_SQUOTE = 164, - aux_sym_char_literal_token1 = 165, - anon_sym_L_DQUOTE = 166, - anon_sym_u_DQUOTE = 167, - anon_sym_U_DQUOTE = 168, - anon_sym_u8_DQUOTE = 169, - anon_sym_DQUOTE = 170, - aux_sym_string_literal_token1 = 171, - sym_escape_sequence = 172, - sym_system_lib_string = 173, - sym_true = 174, - sym_false = 175, - anon_sym_NULL = 176, - anon_sym_nullptr = 177, - sym_comment = 178, - sym_auto = 179, - anon_sym_decltype = 180, - anon_sym_final = 181, - anon_sym_override = 182, - anon_sym_explicit = 183, - anon_sym_typename = 184, + anon_sym_typename = 152, + anon_sym_asm = 153, + anon_sym___asm__ = 154, + anon_sym___asm = 155, + anon_sym___volatile__ = 156, + anon_sym_DOT = 157, + anon_sym_DOT_STAR = 158, + anon_sym_DASH_GT = 159, + sym_number_literal = 160, + anon_sym_L_SQUOTE = 161, + anon_sym_u_SQUOTE = 162, + anon_sym_U_SQUOTE = 163, + anon_sym_u8_SQUOTE = 164, + anon_sym_SQUOTE = 165, + aux_sym_char_literal_token1 = 166, + anon_sym_L_DQUOTE = 167, + anon_sym_u_DQUOTE = 168, + anon_sym_U_DQUOTE = 169, + anon_sym_u8_DQUOTE = 170, + anon_sym_DQUOTE = 171, + aux_sym_string_literal_token1 = 172, + sym_escape_sequence = 173, + sym_system_lib_string = 174, + sym_true = 175, + sym_false = 176, + anon_sym_NULL = 177, + anon_sym_nullptr = 178, + sym_comment = 179, + sym_auto = 180, + anon_sym_decltype = 181, + anon_sym_final = 182, + anon_sym_override = 183, + anon_sym_explicit = 184, anon_sym_export = 185, anon_sym_module = 186, anon_sym_import = 187, @@ -242,349 +242,361 @@ enum ts_symbol_identifiers { anon_sym_new = 212, anon_sym_requires = 213, anon_sym_DASH_GT_STAR = 214, - anon_sym_LPAREN_RPAREN = 215, - anon_sym_LBRACK_RBRACK = 216, - anon_sym_DQUOTE_DQUOTE = 217, - sym_this = 218, - sym_literal_suffix = 219, - sym_raw_string_delimiter = 220, - sym_raw_string_content = 221, - sym_translation_unit = 222, - sym__top_level_item = 223, - sym__block_item = 224, - sym_preproc_include = 225, - sym_preproc_def = 226, - sym_preproc_function_def = 227, - sym_preproc_params = 228, - sym_preproc_call = 229, - sym_preproc_if = 230, - sym_preproc_ifdef = 231, - sym_preproc_else = 232, - sym_preproc_elif = 233, - sym_preproc_elifdef = 234, - sym_preproc_if_in_field_declaration_list = 235, - sym_preproc_ifdef_in_field_declaration_list = 236, - sym_preproc_else_in_field_declaration_list = 237, - sym_preproc_elif_in_field_declaration_list = 238, - sym_preproc_elifdef_in_field_declaration_list = 239, - sym_preproc_if_in_enumerator_list = 240, - sym_preproc_ifdef_in_enumerator_list = 241, - sym_preproc_else_in_enumerator_list = 242, - sym_preproc_elif_in_enumerator_list = 243, - sym_preproc_elifdef_in_enumerator_list = 244, - sym_preproc_if_in_enumerator_list_no_comma = 245, - sym_preproc_ifdef_in_enumerator_list_no_comma = 246, - sym_preproc_else_in_enumerator_list_no_comma = 247, - sym_preproc_elif_in_enumerator_list_no_comma = 248, - sym_preproc_elifdef_in_enumerator_list_no_comma = 249, - sym__preproc_expression = 250, - sym_preproc_parenthesized_expression = 251, - sym_preproc_defined = 252, - sym_preproc_unary_expression = 253, - sym_preproc_call_expression = 254, - sym_preproc_argument_list = 255, - sym_preproc_binary_expression = 256, - sym_function_definition = 257, - sym_declaration = 258, - sym_type_definition = 259, - sym__type_definition_type = 260, - sym__type_definition_declarators = 261, - sym__declaration_modifiers = 262, - sym__declaration_specifiers = 263, - sym_linkage_specification = 264, - sym_attribute_specifier = 265, - sym_attribute = 266, - sym_attribute_declaration = 267, - sym_ms_declspec_modifier = 268, - sym_ms_based_modifier = 269, - sym_ms_call_modifier = 270, - sym_ms_unaligned_ptr_modifier = 271, - sym_ms_pointer_modifier = 272, - sym_declaration_list = 273, - sym__declarator = 274, - sym__field_declarator = 275, - sym__type_declarator = 276, - sym__abstract_declarator = 277, - sym_parenthesized_declarator = 278, - sym_parenthesized_field_declarator = 279, - sym_parenthesized_type_declarator = 280, - sym_abstract_parenthesized_declarator = 281, - sym_attributed_declarator = 282, - sym_attributed_field_declarator = 283, - sym_attributed_type_declarator = 284, - sym_pointer_declarator = 285, - sym_pointer_field_declarator = 286, - sym_pointer_type_declarator = 287, - sym_abstract_pointer_declarator = 288, - sym_function_declarator = 289, - sym_function_field_declarator = 290, - sym_function_type_declarator = 291, - sym_abstract_function_declarator = 292, - sym_array_declarator = 293, - sym_array_field_declarator = 294, - sym_array_type_declarator = 295, - sym_abstract_array_declarator = 296, - sym_init_declarator = 297, - sym_compound_statement = 298, - sym_storage_class_specifier = 299, - sym_type_qualifier = 300, - sym_alignas_qualifier = 301, - sym_type_specifier = 302, - sym_sized_type_specifier = 303, - sym_enum_specifier = 304, - sym_enumerator_list = 305, - sym_struct_specifier = 306, - sym_union_specifier = 307, - sym_field_declaration_list = 308, - sym__field_declaration_list_item = 309, - sym_field_declaration = 310, - sym_bitfield_clause = 311, - sym_enumerator = 312, - sym_parameter_list = 313, - sym_parameter_declaration = 314, - sym_attributed_statement = 315, - sym_statement = 316, - sym__top_level_statement = 317, - sym_labeled_statement = 318, - sym__top_level_expression_statement = 319, - sym_expression_statement = 320, - sym_if_statement = 321, - sym_else_clause = 322, - sym_switch_statement = 323, - sym_case_statement = 324, - sym_while_statement = 325, - sym_do_statement = 326, - sym_for_statement = 327, - sym__for_statement_body = 328, - sym_return_statement = 329, - sym_break_statement = 330, - sym_continue_statement = 331, - sym_goto_statement = 332, - sym_seh_try_statement = 333, - sym_seh_except_clause = 334, - sym_seh_finally_clause = 335, - sym_seh_leave_statement = 336, - sym_expression = 337, - sym__string = 338, - sym_comma_expression = 339, - sym_conditional_expression = 340, - sym_assignment_expression = 341, - sym_pointer_expression = 342, - sym_unary_expression = 343, - sym_binary_expression = 344, - sym_update_expression = 345, - sym_cast_expression = 346, - sym_type_descriptor = 347, - sym_sizeof_expression = 348, - sym_alignof_expression = 349, - sym_offsetof_expression = 350, - sym_generic_expression = 351, - sym_subscript_expression = 352, - sym_call_expression = 353, - sym_gnu_asm_expression = 354, - sym_gnu_asm_qualifier = 355, - sym_gnu_asm_output_operand_list = 356, - sym_gnu_asm_output_operand = 357, - sym_gnu_asm_input_operand_list = 358, - sym_gnu_asm_input_operand = 359, - sym_gnu_asm_clobber_list = 360, - sym_gnu_asm_goto_list = 361, - sym_extension_expression = 362, - sym_argument_list = 363, - sym_field_expression = 364, - sym_compound_literal_expression = 365, - sym_parenthesized_expression = 366, - sym_initializer_list = 367, - sym_initializer_pair = 368, - sym_subscript_designator = 369, - sym_subscript_range_designator = 370, - sym_field_designator = 371, - sym_char_literal = 372, - sym_concatenated_string = 373, - sym_string_literal = 374, - sym_null = 375, - sym__empty_declaration = 376, - sym_placeholder_type_specifier = 377, - sym_decltype_auto = 378, - sym_decltype = 379, - sym__class_declaration = 380, - sym__class_declaration_item = 381, - sym_class_specifier = 382, - sym__class_name = 383, - sym_virtual_specifier = 384, - sym_explicit_function_specifier = 385, - sym_base_class_clause = 386, - sym__enum_base_clause = 387, - sym_dependent_type = 388, - sym_module_name = 389, - sym_module_partition = 390, - sym_module_declaration = 391, - sym_export_declaration = 392, - sym_import_declaration = 393, - sym_global_module_fragment_declaration = 394, - sym_private_module_fragment_declaration = 395, - sym_template_declaration = 396, - sym_template_instantiation = 397, - sym_template_parameter_list = 398, - sym_type_parameter_declaration = 399, - sym_variadic_type_parameter_declaration = 400, - sym_optional_type_parameter_declaration = 401, - sym_template_template_parameter_declaration = 402, - sym_explicit_object_parameter_declaration = 403, - sym_optional_parameter_declaration = 404, - sym_variadic_parameter_declaration = 405, - sym_variadic_declarator = 406, - sym_variadic_reference_declarator = 407, - sym_operator_cast = 408, - sym_field_initializer_list = 409, - sym_field_initializer = 410, - sym_inline_method_definition = 411, - sym__constructor_specifiers = 412, - sym_operator_cast_definition = 413, - sym_operator_cast_declaration = 414, - sym_constructor_try_statement = 415, - sym_constructor_or_destructor_definition = 416, - sym_constructor_or_destructor_declaration = 417, - sym_default_method_clause = 418, - sym_delete_method_clause = 419, - sym_pure_virtual_clause = 420, - sym_friend_declaration = 421, - sym_access_specifier = 422, - sym_reference_declarator = 423, - sym_reference_field_declarator = 424, - sym_reference_type_declarator = 425, - sym_abstract_reference_declarator = 426, - sym_structured_binding_declarator = 427, - sym_ref_qualifier = 428, - sym__function_declarator_seq = 429, - sym__function_attributes_start = 430, - sym__function_exception_specification = 431, - sym__function_attributes_end = 432, - sym__function_postfix = 433, - sym_trailing_return_type = 434, - sym_noexcept = 435, - sym_throw_specifier = 436, - sym_template_type = 437, - sym_template_method = 438, - sym_template_function = 439, - sym_template_argument_list = 440, - sym_namespace_definition = 441, - sym_namespace_alias_definition = 442, - sym__namespace_specifier = 443, - sym_nested_namespace_specifier = 444, - sym_using_declaration = 445, - sym_alias_declaration = 446, - sym_static_assert_declaration = 447, - sym_concept_definition = 448, - sym_for_range_loop = 449, - sym__for_range_loop_body = 450, - sym_init_statement = 451, - sym_condition_clause = 452, - sym_condition_declaration = 453, - sym_co_return_statement = 454, - sym_co_yield_statement = 455, - sym_throw_statement = 456, - sym_try_statement = 457, - sym_catch_clause = 458, - sym_raw_string_literal = 459, - sym_subscript_argument_list = 460, - sym_co_await_expression = 461, - sym_new_expression = 462, - sym_new_declarator = 463, - sym_delete_expression = 464, - sym_type_requirement = 465, - sym_compound_requirement = 466, - sym__requirement = 467, - sym_requirement_seq = 468, - sym_constraint_conjunction = 469, - sym_constraint_disjunction = 470, - sym__requirement_clause_constraint = 471, - sym_requires_clause = 472, - sym_requires_parameter_list = 473, - sym_requires_expression = 474, - sym_lambda_specifier = 475, - sym_lambda_declarator = 476, - sym_lambda_expression = 477, - sym_lambda_capture_specifier = 478, - sym_lambda_default_capture = 479, - sym__lambda_capture_identifier = 480, - sym_lambda_capture_initializer = 481, - sym__lambda_capture = 482, - sym__fold_operator = 483, - sym__binary_fold_operator = 484, - sym__unary_left_fold = 485, - sym__unary_right_fold = 486, - sym__binary_fold = 487, - sym_fold_expression = 488, - sym_parameter_pack_expansion = 489, - sym_type_parameter_pack_expansion = 490, - sym_identifier_parameter_pack_expansion = 491, - sym_destructor_name = 492, - sym_dependent_identifier = 493, - sym_dependent_field_identifier = 494, - sym_dependent_type_identifier = 495, - sym__scope_resolution = 496, - sym_qualified_field_identifier = 497, - sym_qualified_identifier = 498, - sym_qualified_type_identifier = 499, - sym_qualified_operator_cast_identifier = 500, - sym__assignment_expression_lhs = 501, - sym_operator_name = 502, - sym_user_defined_literal = 503, - aux_sym_translation_unit_repeat1 = 504, - aux_sym_preproc_params_repeat1 = 505, - aux_sym_preproc_if_repeat1 = 506, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 507, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 508, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 509, - aux_sym_preproc_argument_list_repeat1 = 510, - aux_sym_declaration_repeat1 = 511, - aux_sym_type_definition_repeat1 = 512, - aux_sym__type_definition_type_repeat1 = 513, - aux_sym__type_definition_declarators_repeat1 = 514, - aux_sym__declaration_specifiers_repeat1 = 515, - aux_sym_attribute_declaration_repeat1 = 516, - aux_sym_attributed_declarator_repeat1 = 517, - aux_sym_pointer_declarator_repeat1 = 518, - aux_sym_array_declarator_repeat1 = 519, - aux_sym_sized_type_specifier_repeat1 = 520, - aux_sym_enumerator_list_repeat1 = 521, - aux_sym_field_declaration_repeat1 = 522, - aux_sym_parameter_list_repeat1 = 523, - aux_sym_case_statement_repeat1 = 524, - aux_sym_generic_expression_repeat1 = 525, - aux_sym_gnu_asm_expression_repeat1 = 526, - aux_sym_gnu_asm_output_operand_list_repeat1 = 527, - aux_sym_gnu_asm_input_operand_list_repeat1 = 528, - aux_sym_gnu_asm_clobber_list_repeat1 = 529, - aux_sym_gnu_asm_goto_list_repeat1 = 530, - aux_sym_argument_list_repeat1 = 531, - aux_sym_initializer_list_repeat1 = 532, - aux_sym_initializer_pair_repeat1 = 533, - aux_sym_char_literal_repeat1 = 534, - aux_sym_concatenated_string_repeat1 = 535, - aux_sym_string_literal_repeat1 = 536, - aux_sym__class_declaration_repeat1 = 537, - aux_sym_base_class_clause_repeat1 = 538, - aux_sym_module_name_repeat1 = 539, - aux_sym_template_parameter_list_repeat1 = 540, - aux_sym_field_initializer_list_repeat1 = 541, - aux_sym_operator_cast_definition_repeat1 = 542, - aux_sym_constructor_try_statement_repeat1 = 543, - aux_sym_structured_binding_declarator_repeat1 = 544, - aux_sym__function_postfix_repeat1 = 545, - aux_sym_throw_specifier_repeat1 = 546, - aux_sym_template_argument_list_repeat1 = 547, - aux_sym_subscript_argument_list_repeat1 = 548, - aux_sym_requirement_seq_repeat1 = 549, - aux_sym_requires_parameter_list_repeat1 = 550, - aux_sym_lambda_declarator_repeat1 = 551, - aux_sym_lambda_capture_specifier_repeat1 = 552, - alias_sym_field_identifier = 553, - alias_sym_namespace_identifier = 554, - alias_sym_simple_requirement = 555, - alias_sym_statement_identifier = 556, - alias_sym_type_identifier = 557, + anon_sym_CARET_CARET = 215, + anon_sym_LBRACK_COLON = 216, + anon_sym_COLON_RBRACK = 217, + anon_sym_LPAREN_RPAREN = 218, + anon_sym_LBRACK_RBRACK = 219, + anon_sym_DQUOTE_DQUOTE = 220, + sym_this = 221, + sym_literal_suffix = 222, + sym_raw_string_delimiter = 223, + sym_raw_string_content = 224, + sym_translation_unit = 225, + sym__top_level_item = 226, + sym__block_item = 227, + sym_preproc_include = 228, + sym_preproc_def = 229, + sym_preproc_function_def = 230, + sym_preproc_params = 231, + sym_preproc_call = 232, + sym_preproc_if = 233, + sym_preproc_ifdef = 234, + sym_preproc_else = 235, + sym_preproc_elif = 236, + sym_preproc_elifdef = 237, + sym_preproc_if_in_field_declaration_list = 238, + sym_preproc_ifdef_in_field_declaration_list = 239, + sym_preproc_else_in_field_declaration_list = 240, + sym_preproc_elif_in_field_declaration_list = 241, + sym_preproc_elifdef_in_field_declaration_list = 242, + sym_preproc_if_in_enumerator_list = 243, + sym_preproc_ifdef_in_enumerator_list = 244, + sym_preproc_else_in_enumerator_list = 245, + sym_preproc_elif_in_enumerator_list = 246, + sym_preproc_elifdef_in_enumerator_list = 247, + sym_preproc_if_in_enumerator_list_no_comma = 248, + sym_preproc_ifdef_in_enumerator_list_no_comma = 249, + sym_preproc_else_in_enumerator_list_no_comma = 250, + sym_preproc_elif_in_enumerator_list_no_comma = 251, + sym_preproc_elifdef_in_enumerator_list_no_comma = 252, + sym__preproc_expression = 253, + sym_preproc_parenthesized_expression = 254, + sym_preproc_defined = 255, + sym_preproc_unary_expression = 256, + sym_preproc_call_expression = 257, + sym_preproc_argument_list = 258, + sym_preproc_binary_expression = 259, + sym_function_definition = 260, + sym_declaration = 261, + sym_type_definition = 262, + sym__type_definition_type = 263, + sym__type_definition_declarators = 264, + sym__declaration_modifiers = 265, + sym__declaration_specifiers = 266, + sym_linkage_specification = 267, + sym_attribute_specifier = 268, + sym_attribute = 269, + sym_attribute_declaration = 270, + sym_ms_declspec_modifier = 271, + sym_ms_based_modifier = 272, + sym_ms_call_modifier = 273, + sym_ms_unaligned_ptr_modifier = 274, + sym_ms_pointer_modifier = 275, + sym_declaration_list = 276, + sym__declarator = 277, + sym__field_declarator = 278, + sym__type_declarator = 279, + sym__abstract_declarator = 280, + sym_parenthesized_declarator = 281, + sym_parenthesized_field_declarator = 282, + sym_parenthesized_type_declarator = 283, + sym_abstract_parenthesized_declarator = 284, + sym_attributed_declarator = 285, + sym_attributed_field_declarator = 286, + sym_attributed_type_declarator = 287, + sym_pointer_declarator = 288, + sym_pointer_field_declarator = 289, + sym_pointer_type_declarator = 290, + sym_abstract_pointer_declarator = 291, + sym_function_declarator = 292, + sym_function_field_declarator = 293, + sym_function_type_declarator = 294, + sym_abstract_function_declarator = 295, + sym_array_declarator = 296, + sym_array_field_declarator = 297, + sym_array_type_declarator = 298, + sym_abstract_array_declarator = 299, + sym_init_declarator = 300, + sym_compound_statement = 301, + sym_storage_class_specifier = 302, + sym_type_qualifier = 303, + sym_alignas_qualifier = 304, + sym_type_specifier = 305, + sym_sized_type_specifier = 306, + sym_enum_specifier = 307, + sym_enumerator_list = 308, + sym_struct_specifier = 309, + sym_union_specifier = 310, + sym_field_declaration_list = 311, + sym__field_declaration_list_item = 312, + sym_field_declaration = 313, + sym_bitfield_clause = 314, + sym_enumerator = 315, + sym_parameter_list = 316, + sym_parameter_declaration = 317, + sym_attributed_statement = 318, + sym_statement = 319, + sym__top_level_statement = 320, + sym_labeled_statement = 321, + sym__top_level_expression_statement = 322, + sym_expression_statement = 323, + sym_if_statement = 324, + sym_else_clause = 325, + sym_switch_statement = 326, + sym_case_statement = 327, + sym_while_statement = 328, + sym_do_statement = 329, + sym_for_statement = 330, + sym__for_statement_body = 331, + sym_return_statement = 332, + sym_break_statement = 333, + sym_continue_statement = 334, + sym_goto_statement = 335, + sym_seh_try_statement = 336, + sym_seh_except_clause = 337, + sym_seh_finally_clause = 338, + sym_seh_leave_statement = 339, + sym_expression = 340, + sym__string = 341, + sym_comma_expression = 342, + sym_conditional_expression = 343, + sym_assignment_expression = 344, + sym_pointer_expression = 345, + sym_unary_expression = 346, + sym_binary_expression = 347, + sym_update_expression = 348, + sym_cast_expression = 349, + sym_type_descriptor = 350, + sym_sizeof_expression = 351, + sym_alignof_expression = 352, + sym_offsetof_expression = 353, + sym_generic_expression = 354, + sym_subscript_expression = 355, + sym_call_expression = 356, + sym_gnu_asm_expression = 357, + sym_gnu_asm_qualifier = 358, + sym_gnu_asm_output_operand_list = 359, + sym_gnu_asm_output_operand = 360, + sym_gnu_asm_input_operand_list = 361, + sym_gnu_asm_input_operand = 362, + sym_gnu_asm_clobber_list = 363, + sym_gnu_asm_goto_list = 364, + sym_extension_expression = 365, + sym_argument_list = 366, + sym_field_expression = 367, + sym_compound_literal_expression = 368, + sym_parenthesized_expression = 369, + sym_initializer_list = 370, + sym_initializer_pair = 371, + sym_subscript_designator = 372, + sym_subscript_range_designator = 373, + sym_field_designator = 374, + sym_char_literal = 375, + sym_concatenated_string = 376, + sym_string_literal = 377, + sym_null = 378, + sym__empty_declaration = 379, + sym_placeholder_type_specifier = 380, + sym_decltype_auto = 381, + sym_decltype = 382, + sym_annotation = 383, + sym__class_declaration = 384, + sym__class_declaration_item = 385, + sym_class_specifier = 386, + sym__class_name = 387, + sym_virtual_specifier = 388, + sym_explicit_function_specifier = 389, + sym_base_class_clause = 390, + sym__enum_base_clause = 391, + sym_dependent_type = 392, + sym_module_name = 393, + sym_module_partition = 394, + sym_module_declaration = 395, + sym_export_declaration = 396, + sym_import_declaration = 397, + sym_global_module_fragment_declaration = 398, + sym_private_module_fragment_declaration = 399, + sym_template_declaration = 400, + sym_template_instantiation = 401, + sym_template_parameter_list = 402, + sym_type_parameter_declaration = 403, + sym_variadic_type_parameter_declaration = 404, + sym_optional_type_parameter_declaration = 405, + sym_template_template_parameter_declaration = 406, + sym_explicit_object_parameter_declaration = 407, + sym_optional_parameter_declaration = 408, + sym_variadic_parameter_declaration = 409, + sym_variadic_declarator = 410, + sym_variadic_reference_declarator = 411, + sym_operator_cast = 412, + sym_field_initializer_list = 413, + sym_field_initializer = 414, + sym_inline_method_definition = 415, + sym__constructor_specifiers = 416, + sym_operator_cast_definition = 417, + sym_operator_cast_declaration = 418, + sym_constructor_try_statement = 419, + sym_constructor_or_destructor_definition = 420, + sym_constructor_or_destructor_declaration = 421, + sym_default_method_clause = 422, + sym_delete_method_clause = 423, + sym_pure_virtual_clause = 424, + sym_friend_declaration = 425, + sym_access_specifier = 426, + sym_reference_declarator = 427, + sym_reference_field_declarator = 428, + sym_reference_type_declarator = 429, + sym_abstract_reference_declarator = 430, + sym_structured_binding_declarator = 431, + sym_ref_qualifier = 432, + sym__function_declarator_seq = 433, + sym__function_attributes_start = 434, + sym__function_exception_specification = 435, + sym__function_attributes_end = 436, + sym__function_postfix = 437, + sym_trailing_return_type = 438, + sym_noexcept = 439, + sym_throw_specifier = 440, + sym_template_type = 441, + sym_template_method = 442, + sym_template_function = 443, + sym_template_argument_list = 444, + sym_namespace_definition = 445, + sym_namespace_alias_definition = 446, + sym__namespace_specifier = 447, + sym_nested_namespace_specifier = 448, + sym_using_declaration = 449, + sym_alias_declaration = 450, + sym_static_assert_declaration = 451, + sym_consteval_block_declaration = 452, + sym_concept_definition = 453, + sym_for_range_loop = 454, + sym__for_range_loop_body = 455, + sym_init_statement = 456, + sym_condition_clause = 457, + sym_condition_declaration = 458, + sym_co_return_statement = 459, + sym_co_yield_statement = 460, + sym_throw_statement = 461, + sym_try_statement = 462, + sym_catch_clause = 463, + sym_raw_string_literal = 464, + sym_subscript_argument_list = 465, + sym_co_await_expression = 466, + sym_new_expression = 467, + sym_new_declarator = 468, + sym_delete_expression = 469, + sym_type_requirement = 470, + sym_compound_requirement = 471, + sym__requirement = 472, + sym_requirement_seq = 473, + sym_constraint_conjunction = 474, + sym_constraint_disjunction = 475, + sym__requirement_clause_constraint = 476, + sym_requires_clause = 477, + sym_requires_parameter_list = 478, + sym_requires_expression = 479, + sym_lambda_specifier = 480, + sym_lambda_declarator = 481, + sym_lambda_expression = 482, + sym_lambda_capture_specifier = 483, + sym_lambda_default_capture = 484, + sym__lambda_capture_identifier = 485, + sym_lambda_capture_initializer = 486, + sym__lambda_capture = 487, + sym__fold_operator = 488, + sym__binary_fold_operator = 489, + sym__unary_left_fold = 490, + sym__unary_right_fold = 491, + sym__binary_fold = 492, + sym_fold_expression = 493, + sym_parameter_pack_expansion = 494, + sym_type_parameter_pack_expansion = 495, + sym_identifier_parameter_pack_expansion = 496, + sym_destructor_name = 497, + sym_dependent_identifier = 498, + sym_dependent_field_identifier = 499, + sym_dependent_type_identifier = 500, + sym__scope_resolution = 501, + sym_qualified_field_identifier = 502, + sym_qualified_identifier = 503, + sym_qualified_type_identifier = 504, + sym_qualified_operator_cast_identifier = 505, + sym__assignment_expression_lhs = 506, + sym_reflect_expression = 507, + sym_splice_specifier = 508, + sym__splice_specialization_specifier = 509, + sym_splice_type_specifier = 510, + sym_splice_expression = 511, + sym_expansion_statement = 512, + sym_operator_name = 513, + sym_user_defined_literal = 514, + aux_sym_translation_unit_repeat1 = 515, + aux_sym_preproc_params_repeat1 = 516, + aux_sym_preproc_if_repeat1 = 517, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 518, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 519, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 520, + aux_sym_preproc_argument_list_repeat1 = 521, + aux_sym_declaration_repeat1 = 522, + aux_sym_type_definition_repeat1 = 523, + aux_sym__type_definition_type_repeat1 = 524, + aux_sym__type_definition_declarators_repeat1 = 525, + aux_sym__declaration_specifiers_repeat1 = 526, + aux_sym_attribute_declaration_repeat1 = 527, + aux_sym_attribute_declaration_repeat2 = 528, + aux_sym_attributed_declarator_repeat1 = 529, + aux_sym_pointer_declarator_repeat1 = 530, + aux_sym_array_declarator_repeat1 = 531, + aux_sym_sized_type_specifier_repeat1 = 532, + aux_sym_enumerator_list_repeat1 = 533, + aux_sym_field_declaration_repeat1 = 534, + aux_sym_parameter_list_repeat1 = 535, + aux_sym_case_statement_repeat1 = 536, + aux_sym_generic_expression_repeat1 = 537, + aux_sym_gnu_asm_expression_repeat1 = 538, + aux_sym_gnu_asm_output_operand_list_repeat1 = 539, + aux_sym_gnu_asm_input_operand_list_repeat1 = 540, + aux_sym_gnu_asm_clobber_list_repeat1 = 541, + aux_sym_gnu_asm_goto_list_repeat1 = 542, + aux_sym_argument_list_repeat1 = 543, + aux_sym_initializer_list_repeat1 = 544, + aux_sym_initializer_pair_repeat1 = 545, + aux_sym_char_literal_repeat1 = 546, + aux_sym_concatenated_string_repeat1 = 547, + aux_sym_string_literal_repeat1 = 548, + aux_sym__class_declaration_repeat1 = 549, + aux_sym_base_class_clause_repeat1 = 550, + aux_sym_module_name_repeat1 = 551, + aux_sym_template_parameter_list_repeat1 = 552, + aux_sym_field_initializer_list_repeat1 = 553, + aux_sym_operator_cast_definition_repeat1 = 554, + aux_sym_constructor_try_statement_repeat1 = 555, + aux_sym_structured_binding_declarator_repeat1 = 556, + aux_sym__function_postfix_repeat1 = 557, + aux_sym_throw_specifier_repeat1 = 558, + aux_sym_template_argument_list_repeat1 = 559, + aux_sym_subscript_argument_list_repeat1 = 560, + aux_sym_requirement_seq_repeat1 = 561, + aux_sym_requires_parameter_list_repeat1 = 562, + aux_sym_lambda_declarator_repeat1 = 563, + aux_sym_lambda_capture_specifier_repeat1 = 564, + alias_sym_field_identifier = 565, + alias_sym_namespace_identifier = 566, + alias_sym_simple_requirement = 567, + alias_sym_statement_identifier = 568, + alias_sym_type_identifier = 569, }; static const char * const ts_symbol_names[] = { @@ -740,6 +752,7 @@ static const char * const ts_symbol_names[] = { [anon_sym__Alignof] = "_Alignof", [anon_sym_offsetof] = "offsetof", [anon_sym__Generic] = "_Generic", + [anon_sym_typename] = "typename", [anon_sym_asm] = "asm", [anon_sym___asm__] = "__asm__", [anon_sym___asm] = "__asm", @@ -772,7 +785,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_final] = "final", [anon_sym_override] = "override", [anon_sym_explicit] = "explicit", - [anon_sym_typename] = "typename", [anon_sym_export] = "export", [anon_sym_module] = "module", [anon_sym_import] = "import", @@ -803,6 +815,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_new] = "new", [anon_sym_requires] = "requires", [anon_sym_DASH_GT_STAR] = "->*", + [anon_sym_CARET_CARET] = "^^", + [anon_sym_LBRACK_COLON] = "[:", + [anon_sym_COLON_RBRACK] = ":]", [anon_sym_LPAREN_RPAREN] = "()", [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_DQUOTE_DQUOTE] = "\"\"", @@ -968,6 +983,7 @@ static const char * const ts_symbol_names[] = { [sym_placeholder_type_specifier] = "placeholder_type_specifier", [sym_decltype_auto] = "decltype", [sym_decltype] = "decltype", + [sym_annotation] = "annotation", [sym__class_declaration] = "_class_declaration", [sym__class_declaration_item] = "_class_declaration_item", [sym_class_specifier] = "class_specifier", @@ -1036,6 +1052,7 @@ static const char * const ts_symbol_names[] = { [sym_using_declaration] = "using_declaration", [sym_alias_declaration] = "alias_declaration", [sym_static_assert_declaration] = "static_assert_declaration", + [sym_consteval_block_declaration] = "consteval_block_declaration", [sym_concept_definition] = "concept_definition", [sym_for_range_loop] = "for_range_loop", [sym__for_range_loop_body] = "_for_range_loop_body", @@ -1090,6 +1107,12 @@ static const char * const ts_symbol_names[] = { [sym_qualified_type_identifier] = "qualified_identifier", [sym_qualified_operator_cast_identifier] = "qualified_identifier", [sym__assignment_expression_lhs] = "assignment_expression", + [sym_reflect_expression] = "reflect_expression", + [sym_splice_specifier] = "splice_specifier", + [sym__splice_specialization_specifier] = "_splice_specialization_specifier", + [sym_splice_type_specifier] = "splice_type_specifier", + [sym_splice_expression] = "splice_expression", + [sym_expansion_statement] = "expansion_statement", [sym_operator_name] = "operator_name", [sym_user_defined_literal] = "user_defined_literal", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", @@ -1105,6 +1128,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", + [aux_sym_attribute_declaration_repeat2] = "attribute_declaration_repeat2", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", [aux_sym_array_declarator_repeat1] = "array_declarator_repeat1", @@ -1301,6 +1325,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Alignof] = anon_sym__Alignof, [anon_sym_offsetof] = anon_sym_offsetof, [anon_sym__Generic] = anon_sym__Generic, + [anon_sym_typename] = anon_sym_typename, [anon_sym_asm] = anon_sym_asm, [anon_sym___asm__] = anon_sym___asm__, [anon_sym___asm] = anon_sym___asm, @@ -1333,7 +1358,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_final] = anon_sym_final, [anon_sym_override] = anon_sym_override, [anon_sym_explicit] = anon_sym_explicit, - [anon_sym_typename] = anon_sym_typename, [anon_sym_export] = anon_sym_export, [anon_sym_module] = anon_sym_module, [anon_sym_import] = anon_sym_import, @@ -1364,6 +1388,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_new] = anon_sym_new, [anon_sym_requires] = anon_sym_requires, [anon_sym_DASH_GT_STAR] = anon_sym_DASH_GT_STAR, + [anon_sym_CARET_CARET] = anon_sym_CARET_CARET, + [anon_sym_LBRACK_COLON] = anon_sym_LBRACK_COLON, + [anon_sym_COLON_RBRACK] = anon_sym_COLON_RBRACK, [anon_sym_LPAREN_RPAREN] = anon_sym_LPAREN_RPAREN, [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE, @@ -1529,6 +1556,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_placeholder_type_specifier] = sym_placeholder_type_specifier, [sym_decltype_auto] = sym_decltype, [sym_decltype] = sym_decltype, + [sym_annotation] = sym_annotation, [sym__class_declaration] = sym__class_declaration, [sym__class_declaration_item] = sym__class_declaration_item, [sym_class_specifier] = sym_class_specifier, @@ -1597,6 +1625,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_using_declaration] = sym_using_declaration, [sym_alias_declaration] = sym_alias_declaration, [sym_static_assert_declaration] = sym_static_assert_declaration, + [sym_consteval_block_declaration] = sym_consteval_block_declaration, [sym_concept_definition] = sym_concept_definition, [sym_for_range_loop] = sym_for_range_loop, [sym__for_range_loop_body] = sym__for_range_loop_body, @@ -1651,6 +1680,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_qualified_type_identifier] = sym_qualified_identifier, [sym_qualified_operator_cast_identifier] = sym_qualified_identifier, [sym__assignment_expression_lhs] = sym_assignment_expression, + [sym_reflect_expression] = sym_reflect_expression, + [sym_splice_specifier] = sym_splice_specifier, + [sym__splice_specialization_specifier] = sym__splice_specialization_specifier, + [sym_splice_type_specifier] = sym_splice_type_specifier, + [sym_splice_expression] = sym_splice_expression, + [sym_expansion_statement] = sym_expansion_statement, [sym_operator_name] = sym_operator_name, [sym_user_defined_literal] = sym_user_defined_literal, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, @@ -1666,6 +1701,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__type_definition_declarators_repeat1] = aux_sym__type_definition_declarators_repeat1, [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, + [aux_sym_attribute_declaration_repeat2] = aux_sym_attribute_declaration_repeat2, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, [aux_sym_array_declarator_repeat1] = aux_sym_array_declarator_repeat1, @@ -2318,6 +2354,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_typename] = { + .visible = true, + .named = false, + }, [anon_sym_asm] = { .visible = true, .named = false, @@ -2446,10 +2486,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_typename] = { - .visible = true, - .named = false, - }, [anon_sym_export] = { .visible = true, .named = false, @@ -2570,6 +2606,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_CARET_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_RBRACK] = { + .visible = true, + .named = false, + }, [anon_sym_LPAREN_RPAREN] = { .visible = true, .named = false, @@ -3237,6 +3285,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_annotation] = { + .visible = true, + .named = true, + }, [sym__class_declaration] = { .visible = false, .named = true, @@ -3509,6 +3561,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_consteval_block_declaration] = { + .visible = true, + .named = true, + }, [sym_concept_definition] = { .visible = true, .named = true, @@ -3725,6 +3781,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_reflect_expression] = { + .visible = true, + .named = true, + }, + [sym_splice_specifier] = { + .visible = true, + .named = true, + }, + [sym__splice_specialization_specifier] = { + .visible = false, + .named = true, + }, + [sym_splice_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_splice_expression] = { + .visible = true, + .named = true, + }, + [sym_expansion_statement] = { + .visible = true, + .named = true, + }, [sym_operator_name] = { .visible = true, .named = true, @@ -3785,6 +3865,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_attribute_declaration_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_attributed_declarator_repeat1] = { .visible = false, .named = false, @@ -4070,9 +4154,9 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [4] = {.index = 2, .length = 2}, [5] = {.index = 4, .length = 1}, [6] = {.index = 5, .length = 1}, - [7] = {.index = 6, .length = 2}, - [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 1}, + [7] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 2}, + [9] = {.index = 9, .length = 2}, [10] = {.index = 11, .length = 1}, [11] = {.index = 12, .length = 1}, [12] = {.index = 13, .length = 2}, @@ -4115,178 +4199,181 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [52] = {.index = 61, .length = 2}, [53] = {.index = 63, .length = 2}, [54] = {.index = 65, .length = 1}, - [55] = {.index = 66, .length = 1}, - [56] = {.index = 67, .length = 3}, - [57] = {.index = 70, .length = 1}, - [58] = {.index = 71, .length = 1}, - [59] = {.index = 72, .length = 1}, - [60] = {.index = 73, .length = 1}, - [61] = {.index = 74, .length = 2}, - [63] = {.index = 55, .length = 2}, - [64] = {.index = 76, .length = 2}, - [65] = {.index = 78, .length = 2}, - [66] = {.index = 80, .length = 2}, - [68] = {.index = 82, .length = 2}, - [69] = {.index = 84, .length = 2}, - [70] = {.index = 86, .length = 3}, - [71] = {.index = 89, .length = 2}, - [72] = {.index = 91, .length = 2}, - [73] = {.index = 93, .length = 3}, - [74] = {.index = 93, .length = 3}, - [75] = {.index = 96, .length = 3}, + [55] = {.index = 66, .length = 3}, + [56] = {.index = 69, .length = 3}, + [57] = {.index = 72, .length = 1}, + [58] = {.index = 73, .length = 3}, + [59] = {.index = 76, .length = 1}, + [60] = {.index = 77, .length = 1}, + [61] = {.index = 78, .length = 1}, + [62] = {.index = 79, .length = 1}, + [63] = {.index = 80, .length = 2}, + [65] = {.index = 55, .length = 2}, + [66] = {.index = 82, .length = 2}, + [67] = {.index = 84, .length = 2}, + [68] = {.index = 86, .length = 2}, + [70] = {.index = 88, .length = 2}, + [71] = {.index = 90, .length = 2}, + [72] = {.index = 92, .length = 3}, + [73] = {.index = 95, .length = 2}, + [74] = {.index = 97, .length = 2}, + [75] = {.index = 99, .length = 3}, [76] = {.index = 99, .length = 3}, [77] = {.index = 102, .length = 3}, - [78] = {.index = 52, .length = 1}, - [79] = {.index = 105, .length = 2}, - [80] = {.index = 107, .length = 2}, - [81] = {.index = 109, .length = 2}, - [82] = {.index = 111, .length = 1}, - [83] = {.index = 112, .length = 2}, - [84] = {.index = 114, .length = 2}, - [85] = {.index = 116, .length = 2}, - [86] = {.index = 118, .length = 3}, - [87] = {.index = 121, .length = 2}, - [88] = {.index = 123, .length = 1}, - [89] = {.index = 124, .length = 2}, - [90] = {.index = 126, .length = 2}, - [91] = {.index = 128, .length = 2}, - [92] = {.index = 130, .length = 2}, - [93] = {.index = 132, .length = 2}, - [94] = {.index = 134, .length = 2}, - [95] = {.index = 136, .length = 2}, - [96] = {.index = 138, .length = 2}, - [97] = {.index = 140, .length = 1}, - [98] = {.index = 138, .length = 2}, - [100] = {.index = 141, .length = 2}, - [101] = {.index = 143, .length = 1}, - [102] = {.index = 143, .length = 1}, - [103] = {.index = 144, .length = 3}, - [105] = {.index = 147, .length = 2}, - [106] = {.index = 149, .length = 2}, - [107] = {.index = 151, .length = 2}, - [108] = {.index = 153, .length = 3}, - [109] = {.index = 156, .length = 1}, - [110] = {.index = 157, .length = 1}, - [111] = {.index = 158, .length = 1}, - [112] = {.index = 159, .length = 1}, - [113] = {.index = 160, .length = 2}, - [115] = {.index = 162, .length = 3}, - [116] = {.index = 165, .length = 3}, + [78] = {.index = 105, .length = 3}, + [79] = {.index = 108, .length = 3}, + [80] = {.index = 52, .length = 1}, + [81] = {.index = 111, .length = 2}, + [82] = {.index = 113, .length = 2}, + [83] = {.index = 115, .length = 2}, + [84] = {.index = 117, .length = 1}, + [85] = {.index = 118, .length = 2}, + [86] = {.index = 120, .length = 2}, + [87] = {.index = 122, .length = 2}, + [88] = {.index = 124, .length = 3}, + [89] = {.index = 127, .length = 2}, + [90] = {.index = 129, .length = 1}, + [91] = {.index = 130, .length = 2}, + [92] = {.index = 132, .length = 2}, + [93] = {.index = 134, .length = 2}, + [94] = {.index = 136, .length = 2}, + [95] = {.index = 138, .length = 2}, + [96] = {.index = 140, .length = 2}, + [97] = {.index = 142, .length = 2}, + [98] = {.index = 144, .length = 2}, + [99] = {.index = 146, .length = 1}, + [100] = {.index = 144, .length = 2}, + [102] = {.index = 147, .length = 2}, + [103] = {.index = 149, .length = 1}, + [104] = {.index = 149, .length = 1}, + [105] = {.index = 150, .length = 3}, + [107] = {.index = 153, .length = 2}, + [108] = {.index = 155, .length = 2}, + [109] = {.index = 157, .length = 2}, + [110] = {.index = 159, .length = 3}, + [111] = {.index = 162, .length = 1}, + [112] = {.index = 163, .length = 1}, + [113] = {.index = 164, .length = 1}, + [114] = {.index = 165, .length = 1}, + [115] = {.index = 166, .length = 2}, [117] = {.index = 168, .length = 3}, [118] = {.index = 171, .length = 3}, [119] = {.index = 174, .length = 3}, - [120] = {.index = 177, .length = 2}, - [121] = {.index = 179, .length = 3}, - [122] = {.index = 182, .length = 2}, - [123] = {.index = 184, .length = 3}, - [124] = {.index = 187, .length = 2}, - [125] = {.index = 20, .length = 2}, - [126] = {.index = 38, .length = 2}, - [127] = {.index = 189, .length = 2}, - [128] = {.index = 191, .length = 2}, - [129] = {.index = 193, .length = 4}, - [130] = {.index = 197, .length = 4}, - [131] = {.index = 201, .length = 2}, - [132] = {.index = 203, .length = 3}, - [133] = {.index = 206, .length = 2}, - [134] = {.index = 208, .length = 2}, - [135] = {.index = 210, .length = 1}, - [136] = {.index = 211, .length = 1}, - [137] = {.index = 212, .length = 2}, - [138] = {.index = 214, .length = 2}, - [139] = {.index = 216, .length = 2}, - [140] = {.index = 218, .length = 2}, - [141] = {.index = 220, .length = 3}, - [142] = {.index = 223, .length = 3}, + [120] = {.index = 177, .length = 3}, + [121] = {.index = 180, .length = 3}, + [122] = {.index = 183, .length = 2}, + [123] = {.index = 185, .length = 3}, + [124] = {.index = 188, .length = 2}, + [125] = {.index = 190, .length = 3}, + [126] = {.index = 193, .length = 2}, + [127] = {.index = 20, .length = 2}, + [128] = {.index = 38, .length = 2}, + [129] = {.index = 195, .length = 2}, + [130] = {.index = 197, .length = 2}, + [131] = {.index = 199, .length = 4}, + [132] = {.index = 203, .length = 4}, + [133] = {.index = 207, .length = 2}, + [134] = {.index = 209, .length = 3}, + [135] = {.index = 212, .length = 2}, + [136] = {.index = 214, .length = 2}, + [137] = {.index = 216, .length = 1}, + [138] = {.index = 217, .length = 1}, + [139] = {.index = 218, .length = 2}, + [140] = {.index = 220, .length = 2}, + [141] = {.index = 222, .length = 2}, + [142] = {.index = 224, .length = 2}, [143] = {.index = 226, .length = 3}, - [144] = {.index = 229, .length = 2}, - [145] = {.index = 231, .length = 2}, - [146] = {.index = 233, .length = 2}, - [147] = {.index = 233, .length = 2}, - [148] = {.index = 235, .length = 2}, - [149] = {.index = 235, .length = 2}, - [150] = {.index = 237, .length = 2}, - [151] = {.index = 239, .length = 3}, - [152] = {.index = 242, .length = 2}, - [153] = {.index = 244, .length = 2}, - [154] = {.index = 246, .length = 3}, - [155] = {.index = 249, .length = 2}, - [156] = {.index = 251, .length = 3}, - [157] = {.index = 254, .length = 2}, - [158] = {.index = 256, .length = 1}, - [159] = {.index = 257, .length = 2}, - [160] = {.index = 259, .length = 2}, - [161] = {.index = 261, .length = 4}, - [162] = {.index = 265, .length = 5}, - [163] = {.index = 270, .length = 1}, - [164] = {.index = 271, .length = 1}, - [165] = {.index = 272, .length = 2}, - [166] = {.index = 274, .length = 1}, - [167] = {.index = 275, .length = 2}, - [169] = {.index = 277, .length = 1}, - [170] = {.index = 278, .length = 2}, - [171] = {.index = 280, .length = 2}, - [172] = {.index = 11, .length = 1}, - [173] = {.index = 11, .length = 1}, - [174] = {.index = 282, .length = 1}, - [175] = {.index = 283, .length = 1}, - [176] = {.index = 284, .length = 4}, - [177] = {.index = 288, .length = 4}, - [178] = {.index = 292, .length = 4}, - [179] = {.index = 296, .length = 2}, - [180] = {.index = 298, .length = 1}, - [181] = {.index = 299, .length = 3}, - [182] = {.index = 302, .length = 2}, - [183] = {.index = 304, .length = 3}, - [184] = {.index = 307, .length = 5}, - [185] = {.index = 312, .length = 2}, - [186] = {.index = 314, .length = 2}, - [187] = {.index = 316, .length = 1}, - [188] = {.index = 317, .length = 2}, - [189] = {.index = 319, .length = 4}, + [144] = {.index = 229, .length = 3}, + [145] = {.index = 232, .length = 3}, + [146] = {.index = 235, .length = 2}, + [147] = {.index = 237, .length = 2}, + [148] = {.index = 239, .length = 2}, + [149] = {.index = 239, .length = 2}, + [150] = {.index = 241, .length = 2}, + [151] = {.index = 241, .length = 2}, + [152] = {.index = 243, .length = 2}, + [153] = {.index = 245, .length = 3}, + [154] = {.index = 248, .length = 2}, + [155] = {.index = 250, .length = 2}, + [156] = {.index = 252, .length = 3}, + [157] = {.index = 255, .length = 2}, + [158] = {.index = 257, .length = 3}, + [159] = {.index = 260, .length = 2}, + [160] = {.index = 262, .length = 1}, + [161] = {.index = 263, .length = 2}, + [162] = {.index = 265, .length = 2}, + [163] = {.index = 267, .length = 4}, + [164] = {.index = 271, .length = 5}, + [165] = {.index = 276, .length = 1}, + [166] = {.index = 277, .length = 1}, + [167] = {.index = 278, .length = 2}, + [168] = {.index = 280, .length = 1}, + [169] = {.index = 281, .length = 2}, + [171] = {.index = 283, .length = 1}, + [172] = {.index = 284, .length = 2}, + [173] = {.index = 286, .length = 2}, + [174] = {.index = 11, .length = 1}, + [175] = {.index = 11, .length = 1}, + [176] = {.index = 288, .length = 1}, + [177] = {.index = 289, .length = 1}, + [178] = {.index = 290, .length = 4}, + [179] = {.index = 294, .length = 4}, + [180] = {.index = 298, .length = 4}, + [181] = {.index = 302, .length = 2}, + [182] = {.index = 304, .length = 1}, + [183] = {.index = 305, .length = 3}, + [184] = {.index = 308, .length = 2}, + [185] = {.index = 310, .length = 3}, + [186] = {.index = 313, .length = 5}, + [187] = {.index = 318, .length = 2}, + [188] = {.index = 320, .length = 2}, + [189] = {.index = 322, .length = 1}, [190] = {.index = 323, .length = 2}, - [191] = {.index = 325, .length = 2}, - [192] = {.index = 327, .length = 3}, - [193] = {.index = 330, .length = 4}, - [194] = {.index = 334, .length = 4}, - [195] = {.index = 338, .length = 3}, - [196] = {.index = 341, .length = 2}, - [197] = {.index = 343, .length = 3}, - [198] = {.index = 346, .length = 3}, - [199] = {.index = 349, .length = 2}, - [200] = {.index = 351, .length = 2}, - [201] = {.index = 353, .length = 2}, - [202] = {.index = 355, .length = 2}, - [203] = {.index = 357, .length = 3}, - [204] = {.index = 360, .length = 2}, - [205] = {.index = 362, .length = 2}, - [206] = {.index = 364, .length = 3}, - [207] = {.index = 367, .length = 5}, - [208] = {.index = 372, .length = 3}, - [209] = {.index = 375, .length = 3}, - [210] = {.index = 378, .length = 2}, - [211] = {.index = 380, .length = 2}, - [212] = {.index = 382, .length = 4}, - [213] = {.index = 386, .length = 5}, - [214] = {.index = 391, .length = 3}, - [215] = {.index = 394, .length = 4}, - [216] = {.index = 398, .length = 2}, - [217] = {.index = 400, .length = 1}, - [218] = {.index = 401, .length = 4}, - [219] = {.index = 405, .length = 3}, - [220] = {.index = 408, .length = 2}, - [221] = {.index = 410, .length = 1}, - [222] = {.index = 411, .length = 5}, - [223] = {.index = 416, .length = 2}, - [224] = {.index = 418, .length = 2}, - [225] = {.index = 65, .length = 1}, - [226] = {.index = 420, .length = 5}, - [227] = {.index = 425, .length = 4}, - [228] = {.index = 429, .length = 2}, - [229] = {.index = 431, .length = 2}, - [230] = {.index = 433, .length = 5}, - [231] = {.index = 438, .length = 2}, - [232] = {.index = 440, .length = 3}, + [191] = {.index = 325, .length = 4}, + [192] = {.index = 329, .length = 2}, + [193] = {.index = 331, .length = 2}, + [194] = {.index = 333, .length = 3}, + [195] = {.index = 336, .length = 4}, + [196] = {.index = 340, .length = 4}, + [197] = {.index = 344, .length = 3}, + [198] = {.index = 347, .length = 2}, + [199] = {.index = 349, .length = 3}, + [200] = {.index = 352, .length = 3}, + [201] = {.index = 355, .length = 2}, + [202] = {.index = 357, .length = 2}, + [203] = {.index = 359, .length = 2}, + [204] = {.index = 361, .length = 2}, + [205] = {.index = 363, .length = 3}, + [206] = {.index = 366, .length = 2}, + [207] = {.index = 368, .length = 2}, + [208] = {.index = 370, .length = 3}, + [209] = {.index = 373, .length = 5}, + [210] = {.index = 378, .length = 5}, + [211] = {.index = 383, .length = 3}, + [212] = {.index = 386, .length = 3}, + [213] = {.index = 389, .length = 2}, + [214] = {.index = 391, .length = 2}, + [215] = {.index = 393, .length = 4}, + [216] = {.index = 397, .length = 5}, + [217] = {.index = 402, .length = 3}, + [218] = {.index = 405, .length = 4}, + [219] = {.index = 409, .length = 2}, + [220] = {.index = 411, .length = 1}, + [221] = {.index = 412, .length = 4}, + [222] = {.index = 416, .length = 3}, + [223] = {.index = 419, .length = 2}, + [224] = {.index = 421, .length = 1}, + [225] = {.index = 422, .length = 5}, + [226] = {.index = 427, .length = 2}, + [227] = {.index = 429, .length = 2}, + [228] = {.index = 65, .length = 1}, + [229] = {.index = 431, .length = 5}, + [230] = {.index = 436, .length = 4}, + [231] = {.index = 440, .length = 2}, + [232] = {.index = 442, .length = 2}, + [233] = {.index = 444, .length = 5}, + [234] = {.index = 449, .length = 2}, + [235] = {.index = 451, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4302,13 +4389,13 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [5] = {field_name, 0}, [6] = + {field_body, 1}, + [7] = {field_arguments, 1}, {field_function, 0}, - [8] = + [9] = {field_type, 0}, {field_value, 1}, - [10] = - {field_body, 1}, [11] = {field_name, 1}, [12] = @@ -4401,539 +4488,553 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [65] = {field_label, 1}, [66] = + {field_arguments, 2}, + {field_function, 0}, + {field_function, 1}, + [69] = + {field_type, 0}, + {field_type, 1}, + {field_value, 2}, + [72] = {field_label, 0}, - [67] = + [73] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [70] = + [76] = {field_header, 1}, - [71] = + [77] = {field_partition, 1}, - [72] = + [78] = {field_type, 0, .inherited = true}, - [73] = + [79] = {field_parameters, 1}, - [74] = + [80] = {field_declarator, 2}, {field_type, 1, .inherited = true}, - [76] = + [82] = {field_arguments, 2}, {field_type, 1}, - [78] = + [84] = {field_declarator, 2}, {field_type, 1}, - [80] = + [86] = {field_placement, 1}, {field_type, 2}, - [82] = + [88] = {field_parameters, 1}, {field_requirements, 2}, - [84] = + [90] = {field_declarator, 1}, {field_type, 0, .inherited = true}, - [86] = + [92] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, - [89] = + [95] = {field_declarator, 0}, {field_value, 1}, - [91] = + [97] = {field_body, 2}, {field_declarator, 0}, - [93] = + [99] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [96] = + [102] = {field_body, 2}, {field_captures, 0}, {field_template_parameters, 1}, - [99] = + [105] = {field_body, 2}, {field_captures, 0}, {field_declarator, 1}, - [102] = + [108] = {field_name, 1}, {field_name, 2}, {field_scope, 0, .inherited = true}, - [105] = + [111] = {field_body, 2}, {field_declarator, 1}, - [107] = + [113] = {field_name, 1}, {field_value, 2}, - [109] = + [115] = {field_name, 1}, {field_parameters, 2}, - [111] = + [117] = {field_condition, 1}, - [112] = + [118] = {field_alternative, 2}, {field_name, 1}, - [114] = + [120] = {field_declarator, 2}, {field_type, 0}, - [116] = + [122] = {field_left, 0}, {field_right, 2}, - [118] = + [124] = {field_left, 0}, {field_operator, 1, .inherited = true}, {field_right, 2}, - [121] = + [127] = {field_type, 1}, {field_value, 3}, - [123] = + [129] = {field_declarator, 3}, - [124] = + [130] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [126] = + [132] = {field_declarator, 0}, {field_parameters, 1}, - [128] = + [134] = {field_declarator, 0}, {field_declarator, 1, .inherited = true}, - [130] = + [136] = {field_arguments, 3}, {field_type, 2}, - [132] = + [138] = {field_declarator, 3}, {field_type, 2}, - [134] = + [140] = {field_placement, 2}, {field_type, 3}, - [136] = + [142] = {field_name, 2}, {field_prefix, 0}, - [138] = + [144] = {field_body, 3}, {field_name, 2}, - [140] = + [146] = {field_body, 3}, - [141] = + [147] = {field_base, 3, .inherited = true}, {field_name, 2}, - [143] = + [149] = {field_base, 1}, - [144] = + [150] = {field_base, 2, .inherited = true}, {field_body, 3}, {field_name, 1}, - [147] = + [153] = {field_body, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [149] = + [155] = {field_body, 2}, {field_name, 0}, - [151] = + [157] = {field_condition, 2}, {field_consequence, 3}, - [153] = + [159] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [156] = + [162] = {field_initializer, 0}, - [157] = + [163] = {field_assembly_code, 2}, - [158] = + [164] = {field_header, 2}, - [159] = + [165] = {field_partition, 2}, - [160] = + [166] = {field_name, 1}, {field_partition, 2}, - [162] = + [168] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [165] = + [171] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [168] = + [174] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [171] = + [177] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [174] = + [180] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [177] = + [183] = {field_declarator, 0}, {field_value, 2}, - [179] = + [185] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [182] = + [188] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [184] = + [190] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [187] = + [193] = {field_declarator, 0}, {field_size, 2}, - [189] = + [195] = {field_alternative, 3}, {field_condition, 0}, - [191] = + [197] = {field_declarator, 0}, {field_default_value, 2}, - [193] = + [199] = {field_body, 3}, {field_captures, 0}, {field_constraint, 2}, {field_template_parameters, 1}, - [197] = + [203] = {field_body, 3}, {field_captures, 0}, {field_declarator, 2}, {field_template_parameters, 1}, - [201] = + [207] = {field_body, 3}, {field_declarator, 1}, - [203] = + [209] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [206] = + [212] = {field_alternative, 3}, {field_condition, 1}, - [208] = + [214] = {field_alternative, 3}, {field_name, 1}, - [210] = + [216] = {field_size, 1}, - [211] = + [217] = {field_operator, 0}, - [212] = + [218] = {field_declarator, 3}, {field_type, 1}, - [214] = + [220] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [216] = + [222] = {field_declarator, 3}, {field_type, 2, .inherited = true}, - [218] = + [224] = {field_name, 1}, {field_type, 3}, - [220] = + [226] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [223] = + [229] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [226] = + [232] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [229] = + [235] = {field_name, 3}, {field_namespace, 1}, - [231] = + [237] = {field_left, 1}, {field_right, 3}, - [233] = + [239] = {field_body, 4}, {field_name, 3}, - [235] = + [241] = {field_designator, 0}, {field_value, 2}, - [237] = + [243] = {field_name, 0}, {field_value, 2}, - [239] = + [245] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [242] = + [248] = {field_body, 3}, {field_name, 0}, - [244] = + [250] = {field_body, 3, .inherited = true}, {field_name, 3, .inherited = true}, - [246] = + [252] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [249] = + [255] = {field_initializer, 1}, {field_value, 2}, - [251] = + [257] = {field_alternative, 4}, {field_condition, 2}, {field_consequence, 3}, - [254] = + [260] = {field_body, 1}, {field_condition, 3}, - [256] = + [262] = {field_update, 2}, - [257] = + [263] = {field_initializer, 0}, {field_update, 2}, - [259] = + [265] = {field_condition, 1}, {field_initializer, 0}, - [261] = + [267] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [265] = + [271] = {field_body, 4}, {field_declarator, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [270] = + [276] = {field_value, 3}, - [271] = + [277] = {field_operand, 1}, - [272] = + [278] = {field_assembly_code, 2}, {field_output_operands, 3}, - [274] = + [280] = {field_assembly_code, 3}, - [275] = + [281] = {field_name, 2}, {field_partition, 3}, - [277] = + [283] = {field_default_type, 2}, - [278] = + [284] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [280] = + [286] = {field_body, 2}, {field_parameters, 1}, - [282] = + [288] = {field_condition, 2}, - [283] = + [289] = {field_length, 1}, - [284] = + [290] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [288] = + [294] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [292] = + [298] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [296] = + [302] = {field_declarator, 1}, {field_declarator, 2}, - [298] = + [304] = {field_declarator, 4}, - [299] = + [305] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [302] = + [308] = {field_declarator, 0}, {field_size, 3}, - [304] = + [310] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [307] = + [313] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [312] = + [318] = {field_declarator, 1}, {field_default_value, 3}, - [314] = + [320] = {field_alternative, 4}, {field_condition, 1}, - [316] = + [322] = {field_size, 2}, - [317] = + [323] = {field_name, 1}, {field_type, 4}, - [319] = + [325] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [323] = + [329] = {field_body, 2}, {field_filter, 1}, - [325] = + [331] = {field_left, 2}, {field_right, 4}, - [327] = + [333] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [330] = + [336] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [334] = + [340] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [338] = + [344] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [341] = + [347] = {field_condition, 1}, {field_update, 3}, - [343] = + [349] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [346] = + [352] = {field_declarator, 1}, {field_right, 3}, {field_type, 0, .inherited = true}, - [349] = + [355] = {field_initializer, 0}, {field_update, 3}, - [351] = + [357] = {field_condition, 2}, {field_initializer, 0}, - [353] = + [359] = {field_member, 4}, {field_type, 2}, - [355] = + [361] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [357] = + [363] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [360] = + [366] = {field_assembly_code, 3}, {field_output_operands, 4}, - [362] = + [368] = {field_default_type, 3}, {field_name, 1}, - [364] = + [370] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [367] = + [373] = + {field_body, 5}, + {field_declarator, 3, .inherited = true}, + {field_initializer, 3, .inherited = true}, + {field_right, 3, .inherited = true}, + {field_type, 3, .inherited = true}, + [378] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [372] = + [383] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [375] = + [386] = {field_name, 5}, {field_namespace, 1}, {field_prefix, 3}, - [378] = + [389] = {field_end, 3}, {field_start, 1}, - [380] = + [391] = {field_declarator, 1}, {field_default_value, 2}, - [382] = + [393] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [386] = + [397] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [391] = + [402] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [394] = + [405] = {field_declarator, 2}, {field_initializer, 0}, {field_right, 4}, {field_type, 1, .inherited = true}, - [398] = + [409] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [400] = + [411] = {field_register, 1}, - [401] = + [412] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [405] = + [416] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [408] = + [419] = {field_condition, 2}, {field_message, 4}, - [410] = + [421] = {field_delimiter, 1}, - [411] = + [422] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [416] = + [427] = {field_constraint, 0}, {field_value, 2}, - [418] = + [429] = {field_register, 1}, {field_register, 2, .inherited = true}, - [420] = + [431] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [425] = + [436] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [429] = + [440] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [431] = + [442] = {field_label, 1}, {field_label, 2, .inherited = true}, - [433] = + [444] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [438] = + [449] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [440] = + [451] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -4974,71 +5075,71 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [54] = { [1] = alias_sym_statement_identifier, }, - [55] = { + [57] = { [0] = alias_sym_statement_identifier, }, - [62] = { + [64] = { [1] = alias_sym_namespace_identifier, }, - [63] = { + [65] = { [1] = alias_sym_namespace_identifier, }, - [67] = { + [69] = { [0] = alias_sym_simple_requirement, }, - [73] = { + [75] = { [2] = alias_sym_field_identifier, }, - [78] = { + [80] = { [2] = alias_sym_type_identifier, }, - [96] = { + [98] = { [2] = alias_sym_namespace_identifier, }, - [99] = { + [101] = { [1] = alias_sym_field_identifier, }, - [102] = { + [104] = { [1] = alias_sym_type_identifier, }, - [104] = { + [106] = { [0] = alias_sym_field_identifier, }, - [114] = { + [116] = { [1] = alias_sym_type_identifier, }, - [125] = { + [127] = { [0] = alias_sym_field_identifier, }, - [126] = { + [128] = { [1] = alias_sym_field_identifier, }, - [140] = { + [142] = { [1] = alias_sym_type_identifier, }, - [146] = { + [148] = { [3] = alias_sym_namespace_identifier, }, - [148] = { + [150] = { [0] = alias_sym_field_identifier, }, - [168] = { + [170] = { [2] = alias_sym_type_identifier, }, - [172] = { + [174] = { [1] = alias_sym_namespace_identifier, [3] = alias_sym_namespace_identifier, }, - [173] = { + [175] = { [1] = alias_sym_namespace_identifier, }, - [188] = { + [190] = { [1] = alias_sym_type_identifier, }, - [201] = { + [203] = { [4] = alias_sym_field_identifier, }, - [205] = { + [207] = { [1] = alias_sym_type_identifier, }, }; @@ -5091,337 +5192,337 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 34, [35] = 35, [36] = 36, - [37] = 36, - [38] = 38, - [39] = 33, + [37] = 33, + [38] = 36, + [39] = 39, [40] = 40, - [41] = 38, - [42] = 36, - [43] = 40, + [41] = 33, + [42] = 42, + [43] = 36, [44] = 44, - [45] = 45, - [46] = 46, - [47] = 38, - [48] = 36, - [49] = 40, - [50] = 45, - [51] = 33, - [52] = 38, - [53] = 36, + [45] = 39, + [46] = 40, + [47] = 42, + [48] = 42, + [49] = 36, + [50] = 50, + [51] = 39, + [52] = 40, + [53] = 53, [54] = 40, - [55] = 55, - [56] = 45, - [57] = 45, - [58] = 38, - [59] = 36, - [60] = 38, - [61] = 36, + [55] = 42, + [56] = 56, + [57] = 36, + [58] = 39, + [59] = 39, + [60] = 39, + [61] = 39, [62] = 36, - [63] = 38, + [63] = 39, [64] = 36, - [65] = 38, + [65] = 39, [66] = 36, - [67] = 67, - [68] = 38, - [69] = 36, - [70] = 38, - [71] = 36, - [72] = 38, + [67] = 39, + [68] = 36, + [69] = 39, + [70] = 36, + [71] = 39, + [72] = 72, [73] = 36, - [74] = 38, + [74] = 39, [75] = 36, - [76] = 38, - [77] = 38, - [78] = 36, - [79] = 38, - [80] = 36, - [81] = 38, - [82] = 36, - [83] = 38, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 88, + [76] = 39, + [77] = 36, + [78] = 39, + [79] = 36, + [80] = 39, + [81] = 36, + [82] = 39, + [83] = 36, + [84] = 39, + [85] = 36, + [86] = 39, + [87] = 36, + [88] = 36, [89] = 89, - [90] = 86, - [91] = 87, - [92] = 85, - [93] = 88, - [94] = 89, - [95] = 88, - [96] = 89, - [97] = 87, - [98] = 88, - [99] = 85, - [100] = 85, - [101] = 89, - [102] = 86, - [103] = 86, - [104] = 87, - [105] = 105, - [106] = 87, - [107] = 107, - [108] = 85, - [109] = 89, - [110] = 107, - [111] = 88, - [112] = 86, - [113] = 107, - [114] = 107, - [115] = 107, - [116] = 107, - [117] = 117, - [118] = 117, - [119] = 117, - [120] = 117, - [121] = 117, - [122] = 117, - [123] = 123, - [124] = 124, - [125] = 124, - [126] = 124, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 93, + [95] = 92, + [96] = 90, + [97] = 91, + [98] = 89, + [99] = 90, + [100] = 92, + [101] = 93, + [102] = 89, + [103] = 91, + [104] = 89, + [105] = 91, + [106] = 90, + [107] = 93, + [108] = 92, + [109] = 109, + [110] = 93, + [111] = 89, + [112] = 90, + [113] = 113, + [114] = 113, + [115] = 113, + [116] = 113, + [117] = 113, + [118] = 91, + [119] = 92, + [120] = 113, + [121] = 121, + [122] = 121, + [123] = 121, + [124] = 121, + [125] = 121, + [126] = 121, [127] = 127, [128] = 128, - [129] = 128, - [130] = 128, - [131] = 128, - [132] = 128, - [133] = 128, - [134] = 134, - [135] = 135, - [136] = 136, + [129] = 129, + [130] = 129, + [131] = 127, + [132] = 129, + [133] = 129, + [134] = 129, + [135] = 129, + [136] = 127, [137] = 137, - [138] = 137, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 142, - [144] = 141, - [145] = 142, - [146] = 142, - [147] = 140, - [148] = 139, - [149] = 141, - [150] = 139, - [151] = 142, - [152] = 142, - [153] = 140, - [154] = 140, - [155] = 142, - [156] = 140, - [157] = 137, - [158] = 142, - [159] = 142, - [160] = 140, - [161] = 140, - [162] = 140, - [163] = 142, - [164] = 140, - [165] = 140, - [166] = 142, - [167] = 140, - [168] = 141, - [169] = 140, - [170] = 142, - [171] = 140, - [172] = 142, - [173] = 139, - [174] = 174, - [175] = 175, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 177, - [180] = 180, - [181] = 174, - [182] = 182, - [183] = 183, - [184] = 175, - [185] = 176, - [186] = 178, - [187] = 182, - [188] = 177, - [189] = 180, - [190] = 139, - [191] = 183, - [192] = 176, - [193] = 178, - [194] = 182, - [195] = 174, - [196] = 180, - [197] = 180, - [198] = 183, - [199] = 183, - [200] = 176, - [201] = 178, - [202] = 182, - [203] = 177, - [204] = 180, - [205] = 139, - [206] = 177, - [207] = 183, - [208] = 180, - [209] = 176, - [210] = 178, - [211] = 182, - [212] = 174, - [213] = 174, - [214] = 183, - [215] = 176, - [216] = 178, - [217] = 182, - [218] = 137, - [219] = 174, - [220] = 175, - [221] = 175, - [222] = 175, - [223] = 177, - [224] = 224, - [225] = 137, - [226] = 137, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 228, - [231] = 231, - [232] = 227, - [233] = 228, - [234] = 228, - [235] = 224, - [236] = 135, - [237] = 136, - [238] = 137, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 241, + [138] = 138, + [139] = 138, + [140] = 138, + [141] = 138, + [142] = 138, + [143] = 138, + [144] = 138, + [145] = 138, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 148, + [151] = 149, + [152] = 147, + [153] = 149, + [154] = 148, + [155] = 148, + [156] = 149, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 158, + [162] = 162, + [163] = 160, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 158, + [168] = 168, + [169] = 148, + [170] = 159, + [171] = 162, + [172] = 160, + [173] = 164, + [174] = 165, + [175] = 168, + [176] = 168, + [177] = 164, + [178] = 162, + [179] = 165, + [180] = 166, + [181] = 166, + [182] = 168, + [183] = 159, + [184] = 159, + [185] = 157, + [186] = 160, + [187] = 162, + [188] = 164, + [189] = 159, + [190] = 147, + [191] = 165, + [192] = 162, + [193] = 160, + [194] = 164, + [195] = 165, + [196] = 160, + [197] = 162, + [198] = 164, + [199] = 166, + [200] = 166, + [201] = 158, + [202] = 165, + [203] = 159, + [204] = 166, + [205] = 148, + [206] = 158, + [207] = 168, + [208] = 168, + [209] = 157, + [210] = 157, + [211] = 157, + [212] = 158, + [213] = 213, + [214] = 213, + [215] = 215, + [216] = 213, + [217] = 215, + [218] = 215, + [219] = 213, + [220] = 215, + [221] = 213, + [222] = 215, + [223] = 213, + [224] = 215, + [225] = 213, + [226] = 215, + [227] = 215, + [228] = 215, + [229] = 215, + [230] = 147, + [231] = 215, + [232] = 213, + [233] = 215, + [234] = 213, + [235] = 215, + [236] = 213, + [237] = 215, + [238] = 213, + [239] = 215, + [240] = 213, + [241] = 213, + [242] = 213, + [243] = 215, + [244] = 213, + [245] = 213, + [246] = 147, + [247] = 147, + [248] = 147, + [249] = 147, + [250] = 147, [251] = 251, - [252] = 252, + [252] = 251, [253] = 253, - [254] = 254, - [255] = 255, + [254] = 251, + [255] = 251, [256] = 256, [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, + [258] = 257, + [259] = 257, + [260] = 257, + [261] = 257, + [262] = 257, + [263] = 257, + [264] = 257, + [265] = 257, + [266] = 257, + [267] = 257, [268] = 268, - [269] = 269, + [269] = 257, [270] = 270, [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, + [272] = 257, + [273] = 257, + [274] = 257, + [275] = 257, + [276] = 257, + [277] = 270, + [278] = 257, + [279] = 257, [280] = 280, - [281] = 240, - [282] = 282, - [283] = 283, + [281] = 257, + [282] = 257, + [283] = 251, [284] = 284, - [285] = 239, + [285] = 285, [286] = 286, - [287] = 253, - [288] = 267, - [289] = 277, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 284, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 286, + [291] = 288, + [292] = 285, + [293] = 251, + [294] = 285, + [295] = 286, + [296] = 288, + [297] = 289, + [298] = 251, + [299] = 289, [300] = 300, - [301] = 301, + [301] = 251, [302] = 302, - [303] = 295, + [303] = 251, [304] = 304, - [305] = 244, - [306] = 245, - [307] = 246, - [308] = 247, - [309] = 229, + [305] = 251, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 302, [310] = 310, - [311] = 311, - [312] = 268, - [313] = 292, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 249, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 251, - [330] = 330, - [331] = 317, - [332] = 318, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 254, - [337] = 295, - [338] = 255, - [339] = 256, - [340] = 257, - [341] = 341, - [342] = 259, - [343] = 260, - [344] = 261, - [345] = 345, - [346] = 231, + [311] = 310, + [312] = 310, + [313] = 313, + [314] = 310, + [315] = 313, + [316] = 310, + [317] = 310, + [318] = 313, + [319] = 313, + [320] = 313, + [321] = 313, + [322] = 313, + [323] = 313, + [324] = 313, + [325] = 313, + [326] = 313, + [327] = 313, + [328] = 313, + [329] = 313, + [330] = 313, + [331] = 306, + [332] = 313, + [333] = 313, + [334] = 313, + [335] = 313, + [336] = 313, + [337] = 313, + [338] = 313, + [339] = 310, + [340] = 310, + [341] = 310, + [342] = 310, + [343] = 308, + [344] = 310, + [345] = 310, + [346] = 310, [347] = 347, - [348] = 292, + [348] = 310, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 317, - [353] = 318, - [354] = 319, - [355] = 273, - [356] = 319, + [350] = 310, + [351] = 310, + [352] = 313, + [353] = 313, + [354] = 354, + [355] = 355, + [356] = 256, [357] = 357, - [358] = 276, + [358] = 253, [359] = 359, [360] = 360, [361] = 361, - [362] = 362, - [363] = 295, + [362] = 355, + [363] = 354, [364] = 364, - [365] = 286, + [365] = 365, [366] = 366, - [367] = 263, + [367] = 367, [368] = 368, [369] = 369, [370] = 370, @@ -5430,8717 +5531,11181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [373] = 373, [374] = 374, [375] = 375, - [376] = 275, - [377] = 269, - [378] = 271, - [379] = 295, - [380] = 272, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, [381] = 381, [382] = 382, - [383] = 242, - [384] = 295, + [383] = 357, + [384] = 384, [385] = 385, - [386] = 227, - [387] = 278, + [386] = 386, + [387] = 387, [388] = 388, - [389] = 295, + [389] = 389, [390] = 390, - [391] = 282, + [391] = 391, [392] = 392, [393] = 393, - [394] = 295, + [394] = 394, [395] = 395, - [396] = 224, - [397] = 295, - [398] = 252, - [399] = 295, - [400] = 274, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, [401] = 401, [402] = 402, - [403] = 295, + [403] = 403, [404] = 404, [405] = 405, - [406] = 279, - [407] = 295, - [408] = 283, - [409] = 248, - [410] = 295, - [411] = 270, - [412] = 295, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 401, + [410] = 410, + [411] = 411, + [412] = 412, [413] = 413, - [414] = 295, - [415] = 265, + [414] = 414, + [415] = 415, [416] = 416, - [417] = 295, + [417] = 417, [418] = 418, [419] = 419, - [420] = 295, + [420] = 420, [421] = 421, [422] = 422, - [423] = 258, + [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, - [430] = 227, - [431] = 243, - [432] = 262, - [433] = 433, + [430] = 372, + [431] = 431, + [432] = 432, + [433] = 359, [434] = 434, [435] = 435, - [436] = 266, - [437] = 264, - [438] = 224, + [436] = 436, + [437] = 365, + [438] = 438, [439] = 439, [440] = 440, [441] = 441, [442] = 442, - [443] = 443, - [444] = 427, - [445] = 231, + [443] = 366, + [444] = 444, + [445] = 445, [446] = 446, - [447] = 446, - [448] = 229, - [449] = 228, - [450] = 228, - [451] = 231, - [452] = 280, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, [453] = 453, - [454] = 228, - [455] = 401, - [456] = 229, - [457] = 228, - [458] = 228, - [459] = 228, - [460] = 136, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, [461] = 461, - [462] = 241, - [463] = 241, + [462] = 462, + [463] = 391, [464] = 464, - [465] = 240, - [466] = 464, - [467] = 464, - [468] = 239, - [469] = 464, - [470] = 239, - [471] = 464, - [472] = 464, - [473] = 464, - [474] = 136, - [475] = 135, - [476] = 240, - [477] = 464, - [478] = 464, - [479] = 464, - [480] = 461, - [481] = 464, - [482] = 135, - [483] = 464, - [484] = 443, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 290, - [497] = 291, - [498] = 293, - [499] = 280, - [500] = 297, - [501] = 299, - [502] = 304, - [503] = 310, - [504] = 311, - [505] = 314, - [506] = 315, - [507] = 320, - [508] = 321, - [509] = 323, - [510] = 324, - [511] = 325, - [512] = 263, - [513] = 326, - [514] = 428, - [515] = 429, - [516] = 330, - [517] = 333, - [518] = 252, - [519] = 335, - [520] = 341, + [465] = 397, + [466] = 382, + [467] = 387, + [468] = 306, + [469] = 469, + [470] = 470, + [471] = 302, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 349, + [477] = 368, + [478] = 364, + [479] = 375, + [480] = 147, + [481] = 376, + [482] = 377, + [483] = 380, + [484] = 389, + [485] = 392, + [486] = 403, + [487] = 404, + [488] = 361, + [489] = 347, + [490] = 367, + [491] = 373, + [492] = 374, + [493] = 384, + [494] = 388, + [495] = 379, + [496] = 360, + [497] = 369, + [498] = 390, + [499] = 396, + [500] = 399, + [501] = 381, + [502] = 386, + [503] = 306, + [504] = 405, + [505] = 371, + [506] = 395, + [507] = 302, + [508] = 394, + [509] = 370, + [510] = 510, + [511] = 385, + [512] = 512, + [513] = 513, + [514] = 378, + [515] = 398, + [516] = 400, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, [521] = 521, - [522] = 271, - [523] = 272, + [522] = 522, + [523] = 523, [524] = 524, - [525] = 434, + [525] = 525, [526] = 526, [527] = 527, [528] = 528, [529] = 529, - [530] = 530, - [531] = 531, - [532] = 361, - [533] = 366, - [534] = 368, - [535] = 369, - [536] = 263, - [537] = 537, - [538] = 373, - [539] = 265, - [540] = 266, - [541] = 267, - [542] = 268, - [543] = 269, - [544] = 270, - [545] = 271, - [546] = 374, - [547] = 547, - [548] = 275, - [549] = 381, - [550] = 382, - [551] = 242, - [552] = 282, - [553] = 279, - [554] = 262, - [555] = 388, - [556] = 283, - [557] = 243, - [558] = 248, - [559] = 278, - [560] = 393, - [561] = 274, - [562] = 284, - [563] = 252, - [564] = 253, - [565] = 254, - [566] = 255, - [567] = 256, - [568] = 257, - [569] = 274, - [570] = 570, - [571] = 413, - [572] = 258, - [573] = 264, - [574] = 404, - [575] = 244, - [576] = 245, - [577] = 246, - [578] = 247, - [579] = 259, - [580] = 260, - [581] = 261, - [582] = 276, - [583] = 583, - [584] = 392, - [585] = 272, - [586] = 280, - [587] = 416, - [588] = 588, - [589] = 405, - [590] = 277, - [591] = 249, - [592] = 251, + [530] = 526, + [531] = 147, + [532] = 510, + [533] = 402, + [534] = 349, + [535] = 349, + [536] = 347, + [537] = 347, + [538] = 355, + [539] = 147, + [540] = 256, + [541] = 354, + [542] = 253, + [543] = 355, + [544] = 253, + [545] = 357, + [546] = 357, + [547] = 354, + [548] = 256, + [549] = 462, + [550] = 360, + [551] = 393, + [552] = 359, + [553] = 441, + [554] = 442, + [555] = 555, + [556] = 394, + [557] = 423, + [558] = 558, + [559] = 376, + [560] = 377, + [561] = 380, + [562] = 389, + [563] = 392, + [564] = 564, + [565] = 370, + [566] = 566, + [567] = 373, + [568] = 568, + [569] = 429, + [570] = 444, + [571] = 445, + [572] = 446, + [573] = 447, + [574] = 398, + [575] = 400, + [576] = 448, + [577] = 528, + [578] = 426, + [579] = 391, + [580] = 397, + [581] = 382, + [582] = 387, + [583] = 393, + [584] = 403, + [585] = 404, + [586] = 361, + [587] = 374, + [588] = 449, + [589] = 589, + [590] = 379, + [591] = 386, + [592] = 402, [593] = 593, - [594] = 273, - [595] = 595, - [596] = 596, - [597] = 371, - [598] = 265, - [599] = 266, - [600] = 267, - [601] = 395, - [602] = 268, - [603] = 269, - [604] = 270, - [605] = 418, - [606] = 419, - [607] = 402, - [608] = 300, - [609] = 275, - [610] = 351, - [611] = 242, - [612] = 282, - [613] = 279, - [614] = 262, - [615] = 421, - [616] = 283, - [617] = 243, - [618] = 248, - [619] = 258, - [620] = 264, - [621] = 277, - [622] = 280, - [623] = 433, - [624] = 435, + [594] = 594, + [595] = 523, + [596] = 401, + [597] = 406, + [598] = 364, + [599] = 375, + [600] = 367, + [601] = 450, + [602] = 405, + [603] = 381, + [604] = 394, + [605] = 451, + [606] = 452, + [607] = 386, + [608] = 608, + [609] = 513, + [610] = 431, + [611] = 402, + [612] = 612, + [613] = 428, + [614] = 424, + [615] = 432, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 475, + [624] = 453, [625] = 625, - [626] = 422, - [627] = 627, - [628] = 284, - [629] = 296, - [630] = 301, - [631] = 244, - [632] = 245, - [633] = 246, - [634] = 247, - [635] = 302, - [636] = 249, - [637] = 251, - [638] = 316, - [639] = 439, - [640] = 440, - [641] = 253, - [642] = 254, - [643] = 255, - [644] = 256, - [645] = 257, - [646] = 327, - [647] = 259, - [648] = 260, - [649] = 261, - [650] = 328, - [651] = 273, - [652] = 334, - [653] = 441, - [654] = 276, - [655] = 442, - [656] = 345, - [657] = 347, - [658] = 424, - [659] = 425, - [660] = 349, - [661] = 350, - [662] = 426, - [663] = 360, - [664] = 370, - [665] = 286, - [666] = 278, - [667] = 372, - [668] = 375, - [669] = 286, - [670] = 422, - [671] = 349, - [672] = 433, - [673] = 435, - [674] = 350, - [675] = 439, - [676] = 440, - [677] = 441, - [678] = 442, - [679] = 360, - [680] = 419, - [681] = 372, - [682] = 375, - [683] = 333, - [684] = 392, - [685] = 393, - [686] = 424, - [687] = 426, - [688] = 290, - [689] = 293, - [690] = 297, - [691] = 299, - [692] = 413, - [693] = 304, - [694] = 416, - [695] = 418, - [696] = 419, - [697] = 421, - [698] = 310, - [699] = 424, - [700] = 425, - [701] = 426, - [702] = 427, - [703] = 428, - [704] = 429, - [705] = 324, - [706] = 325, - [707] = 326, - [708] = 434, - [709] = 330, - [710] = 428, - [711] = 335, - [712] = 341, - [713] = 441, - [714] = 371, - [715] = 395, - [716] = 434, - [717] = 442, - [718] = 402, - [719] = 300, - [720] = 351, - [721] = 361, - [722] = 366, - [723] = 443, - [724] = 296, - [725] = 369, - [726] = 301, - [727] = 302, - [728] = 316, - [729] = 327, - [730] = 328, - [731] = 334, - [732] = 345, - [733] = 347, - [734] = 349, - [735] = 350, - [736] = 373, - [737] = 360, - [738] = 370, - [739] = 374, - [740] = 372, - [741] = 375, - [742] = 392, - [743] = 388, - [744] = 405, - [745] = 401, - [746] = 435, - [747] = 416, - [748] = 418, - [749] = 290, - [750] = 291, - [751] = 421, - [752] = 293, - [753] = 422, - [754] = 299, - [755] = 425, - [756] = 427, - [757] = 429, - [758] = 304, - [759] = 310, - [760] = 311, - [761] = 314, - [762] = 315, - [763] = 395, - [764] = 320, - [765] = 321, - [766] = 323, - [767] = 324, - [768] = 325, - [769] = 326, - [770] = 439, - [771] = 440, - [772] = 330, - [773] = 333, - [774] = 301, - [775] = 335, - [776] = 341, - [777] = 302, - [778] = 316, - [779] = 327, - [780] = 328, - [781] = 334, - [782] = 345, - [783] = 370, - [784] = 361, - [785] = 366, - [786] = 368, - [787] = 369, - [788] = 291, - [789] = 371, - [790] = 373, - [791] = 374, - [792] = 405, - [793] = 381, - [794] = 382, - [795] = 388, - [796] = 402, - [797] = 393, - [798] = 311, - [799] = 314, - [800] = 315, - [801] = 401, - [802] = 404, - [803] = 320, - [804] = 321, - [805] = 323, - [806] = 368, - [807] = 300, - [808] = 351, - [809] = 413, - [810] = 381, - [811] = 382, - [812] = 433, - [813] = 404, - [814] = 443, - [815] = 296, - [816] = 347, - [817] = 297, - [818] = 137, - [819] = 819, - [820] = 820, - [821] = 819, - [822] = 625, - [823] = 819, - [824] = 820, - [825] = 819, - [826] = 820, - [827] = 819, - [828] = 820, - [829] = 829, - [830] = 830, - [831] = 819, - [832] = 820, - [833] = 820, - [834] = 820, - [835] = 819, - [836] = 819, - [837] = 820, - [838] = 820, - [839] = 819, - [840] = 625, - [841] = 820, - [842] = 819, - [843] = 137, - [844] = 137, - [845] = 137, - [846] = 137, - [847] = 137, - [848] = 848, - [849] = 849, - [850] = 849, - [851] = 851, - [852] = 461, - [853] = 461, - [854] = 854, - [855] = 461, - [856] = 856, - [857] = 856, - [858] = 856, - [859] = 856, - [860] = 856, - [861] = 856, - [862] = 856, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 863, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 866, - [872] = 872, - [873] = 873, - [874] = 863, - [875] = 869, - [876] = 866, - [877] = 877, - [878] = 878, - [879] = 866, - [880] = 866, - [881] = 877, - [882] = 866, - [883] = 883, - [884] = 884, - [885] = 878, - [886] = 883, - [887] = 884, - [888] = 869, - [889] = 863, - [890] = 869, - [891] = 866, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 894, - [896] = 893, - [897] = 227, - [898] = 461, - [899] = 893, - [900] = 224, - [901] = 893, - [902] = 894, - [903] = 461, - [904] = 894, - [905] = 905, - [906] = 893, - [907] = 893, - [908] = 461, - [909] = 909, - [910] = 854, - [911] = 851, - [912] = 239, - [913] = 240, - [914] = 136, - [915] = 135, - [916] = 241, - [917] = 270, - [918] = 274, - [919] = 246, - [920] = 247, - [921] = 264, - [922] = 258, - [923] = 276, - [924] = 924, - [925] = 263, - [926] = 265, - [927] = 266, - [928] = 267, - [929] = 268, - [930] = 269, - [931] = 259, - [932] = 278, - [933] = 933, - [934] = 933, - [935] = 249, - [936] = 251, - [937] = 271, - [938] = 260, - [939] = 275, - [940] = 252, - [941] = 242, - [942] = 282, - [943] = 279, - [944] = 262, - [945] = 283, - [946] = 243, - [947] = 248, - [948] = 253, - [949] = 254, - [950] = 864, - [951] = 284, - [952] = 255, - [953] = 256, - [954] = 257, - [955] = 272, - [956] = 245, - [957] = 244, - [958] = 277, - [959] = 286, - [960] = 261, - [961] = 273, - [962] = 905, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 964, - [969] = 966, - [970] = 970, - [971] = 964, - [972] = 967, - [973] = 970, - [974] = 966, - [975] = 963, - [976] = 964, - [977] = 967, - [978] = 966, - [979] = 967, - [980] = 963, - [981] = 966, - [982] = 967, - [983] = 967, - [984] = 963, - [985] = 966, - [986] = 964, - [987] = 967, - [988] = 967, - [989] = 964, - [990] = 964, - [991] = 963, - [992] = 967, - [993] = 963, - [994] = 994, - [995] = 970, - [996] = 967, - [997] = 967, - [998] = 963, - [999] = 963, - [1000] = 970, - [1001] = 905, - [1002] = 970, - [1003] = 963, - [1004] = 964, - [1005] = 970, - [1006] = 963, - [1007] = 966, - [1008] = 966, - [1009] = 966, - [1010] = 967, - [1011] = 963, - [1012] = 963, - [1013] = 967, - [1014] = 963, - [1015] = 964, - [1016] = 1016, - [1017] = 1017, - [1018] = 1016, - [1019] = 1016, - [1020] = 1016, - [1021] = 1016, - [1022] = 1017, - [1023] = 1017, - [1024] = 1017, - [1025] = 1016, - [1026] = 1017, - [1027] = 1017, - [1028] = 1028, - [1029] = 1029, - [1030] = 1030, + [626] = 454, + [627] = 455, + [628] = 456, + [629] = 524, + [630] = 527, + [631] = 457, + [632] = 458, + [633] = 434, + [634] = 459, + [635] = 460, + [636] = 461, + [637] = 625, + [638] = 425, + [639] = 639, + [640] = 370, + [641] = 641, + [642] = 612, + [643] = 643, + [644] = 427, + [645] = 645, + [646] = 435, + [647] = 464, + [648] = 648, + [649] = 649, + [650] = 436, + [651] = 612, + [652] = 360, + [653] = 512, + [654] = 654, + [655] = 379, + [656] = 365, + [657] = 366, + [658] = 365, + [659] = 366, + [660] = 625, + [661] = 368, + [662] = 368, + [663] = 369, + [664] = 371, + [665] = 369, + [666] = 372, + [667] = 667, + [668] = 612, + [669] = 371, + [670] = 517, + [671] = 671, + [672] = 372, + [673] = 384, + [674] = 674, + [675] = 675, + [676] = 625, + [677] = 388, + [678] = 390, + [679] = 396, + [680] = 399, + [681] = 395, + [682] = 612, + [683] = 385, + [684] = 378, + [685] = 398, + [686] = 625, + [687] = 400, + [688] = 612, + [689] = 625, + [690] = 612, + [691] = 401, + [692] = 625, + [693] = 402, + [694] = 612, + [695] = 469, + [696] = 625, + [697] = 470, + [698] = 698, + [699] = 612, + [700] = 381, + [701] = 359, + [702] = 625, + [703] = 407, + [704] = 408, + [705] = 612, + [706] = 525, + [707] = 410, + [708] = 625, + [709] = 612, + [710] = 625, + [711] = 391, + [712] = 397, + [713] = 382, + [714] = 387, + [715] = 715, + [716] = 364, + [717] = 375, + [718] = 384, + [719] = 472, + [720] = 473, + [721] = 376, + [722] = 377, + [723] = 380, + [724] = 389, + [725] = 392, + [726] = 518, + [727] = 438, + [728] = 403, + [729] = 404, + [730] = 361, + [731] = 439, + [732] = 367, + [733] = 388, + [734] = 474, + [735] = 373, + [736] = 374, + [737] = 529, + [738] = 411, + [739] = 390, + [740] = 412, + [741] = 396, + [742] = 399, + [743] = 519, + [744] = 395, + [745] = 413, + [746] = 414, + [747] = 520, + [748] = 385, + [749] = 378, + [750] = 415, + [751] = 440, + [752] = 405, + [753] = 416, + [754] = 417, + [755] = 418, + [756] = 419, + [757] = 420, + [758] = 421, + [759] = 422, + [760] = 521, + [761] = 522, + [762] = 762, + [763] = 448, + [764] = 415, + [765] = 416, + [766] = 417, + [767] = 418, + [768] = 419, + [769] = 420, + [770] = 421, + [771] = 426, + [772] = 407, + [773] = 408, + [774] = 523, + [775] = 429, + [776] = 410, + [777] = 411, + [778] = 434, + [779] = 412, + [780] = 435, + [781] = 432, + [782] = 436, + [783] = 438, + [784] = 413, + [785] = 414, + [786] = 453, + [787] = 454, + [788] = 415, + [789] = 416, + [790] = 417, + [791] = 418, + [792] = 440, + [793] = 419, + [794] = 420, + [795] = 421, + [796] = 441, + [797] = 422, + [798] = 423, + [799] = 424, + [800] = 442, + [801] = 456, + [802] = 425, + [803] = 426, + [804] = 444, + [805] = 525, + [806] = 445, + [807] = 427, + [808] = 428, + [809] = 429, + [810] = 446, + [811] = 474, + [812] = 455, + [813] = 147, + [814] = 527, + [815] = 457, + [816] = 458, + [817] = 461, + [818] = 512, + [819] = 459, + [820] = 460, + [821] = 439, + [822] = 464, + [823] = 447, + [824] = 431, + [825] = 432, + [826] = 448, + [827] = 475, + [828] = 434, + [829] = 449, + [830] = 406, + [831] = 435, + [832] = 436, + [833] = 529, + [834] = 510, + [835] = 438, + [836] = 439, + [837] = 440, + [838] = 441, + [839] = 442, + [840] = 469, + [841] = 444, + [842] = 445, + [843] = 446, + [844] = 447, + [845] = 428, + [846] = 449, + [847] = 470, + [848] = 406, + [849] = 450, + [850] = 147, + [851] = 451, + [852] = 452, + [853] = 472, + [854] = 473, + [855] = 474, + [856] = 510, + [857] = 529, + [858] = 472, + [859] = 512, + [860] = 469, + [861] = 453, + [862] = 454, + [863] = 455, + [864] = 456, + [865] = 513, + [866] = 513, + [867] = 451, + [868] = 457, + [869] = 458, + [870] = 518, + [871] = 459, + [872] = 460, + [873] = 461, + [874] = 519, + [875] = 462, + [876] = 521, + [877] = 522, + [878] = 450, + [879] = 524, + [880] = 462, + [881] = 464, + [882] = 526, + [883] = 517, + [884] = 528, + [885] = 518, + [886] = 407, + [887] = 470, + [888] = 519, + [889] = 452, + [890] = 520, + [891] = 521, + [892] = 410, + [893] = 147, + [894] = 411, + [895] = 522, + [896] = 412, + [897] = 473, + [898] = 408, + [899] = 413, + [900] = 414, + [901] = 523, + [902] = 422, + [903] = 423, + [904] = 424, + [905] = 425, + [906] = 524, + [907] = 525, + [908] = 526, + [909] = 527, + [910] = 427, + [911] = 147, + [912] = 528, + [913] = 517, + [914] = 520, + [915] = 475, + [916] = 431, + [917] = 917, + [918] = 308, + [919] = 308, + [920] = 308, + [921] = 308, + [922] = 308, + [923] = 308, + [924] = 308, + [925] = 308, + [926] = 308, + [927] = 308, + [928] = 308, + [929] = 308, + [930] = 308, + [931] = 308, + [932] = 308, + [933] = 308, + [934] = 934, + [935] = 934, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 938, + [942] = 939, + [943] = 943, + [944] = 936, + [945] = 945, + [946] = 940, + [947] = 945, + [948] = 940, + [949] = 937, + [950] = 938, + [951] = 939, + [952] = 937, + [953] = 936, + [954] = 945, + [955] = 940, + [956] = 937, + [957] = 938, + [958] = 939, + [959] = 936, + [960] = 945, + [961] = 940, + [962] = 937, + [963] = 938, + [964] = 939, + [965] = 936, + [966] = 945, + [967] = 940, + [968] = 938, + [969] = 936, + [970] = 945, + [971] = 940, + [972] = 938, + [973] = 973, + [974] = 936, + [975] = 975, + [976] = 945, + [977] = 940, + [978] = 938, + [979] = 936, + [980] = 945, + [981] = 940, + [982] = 938, + [983] = 936, + [984] = 945, + [985] = 940, + [986] = 938, + [987] = 987, + [988] = 945, + [989] = 936, + [990] = 990, + [991] = 991, + [992] = 991, + [993] = 991, + [994] = 991, + [995] = 991, + [996] = 991, + [997] = 991, + [998] = 308, + [999] = 308, + [1000] = 1000, + [1001] = 1000, + [1002] = 1000, + [1003] = 1000, + [1004] = 1000, + [1005] = 308, + [1006] = 1000, + [1007] = 1000, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1010, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 302, + [1017] = 306, + [1018] = 1018, + [1019] = 1013, + [1020] = 1020, + [1021] = 1021, + [1022] = 1021, + [1023] = 1018, + [1024] = 1013, + [1025] = 1020, + [1026] = 1026, + [1027] = 1026, + [1028] = 1021, + [1029] = 1020, + [1030] = 1020, [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1032, + [1032] = 1020, + [1033] = 1018, + [1034] = 1026, [1035] = 1035, - [1036] = 1032, - [1037] = 1035, - [1038] = 1032, - [1039] = 1032, - [1040] = 1035, - [1041] = 1035, - [1042] = 1032, - [1043] = 1035, - [1044] = 1032, - [1045] = 1045, - [1046] = 1046, - [1047] = 1033, - [1048] = 1035, - [1049] = 1033, - [1050] = 1032, - [1051] = 1035, - [1052] = 1033, - [1053] = 1033, - [1054] = 1032, - [1055] = 1045, - [1056] = 1045, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1063, - [1066] = 1063, - [1067] = 1067, - [1068] = 1068, + [1036] = 1026, + [1037] = 1020, + [1038] = 1021, + [1039] = 1026, + [1040] = 1020, + [1041] = 1021, + [1042] = 1026, + [1043] = 1020, + [1044] = 1021, + [1045] = 1020, + [1046] = 1021, + [1047] = 1018, + [1048] = 1020, + [1049] = 1021, + [1050] = 1013, + [1051] = 1020, + [1052] = 1021, + [1053] = 1020, + [1054] = 1021, + [1055] = 1026, + [1056] = 1021, + [1057] = 1026, + [1058] = 1021, + [1059] = 1020, + [1060] = 1021, + [1061] = 1020, + [1062] = 1021, + [1063] = 1013, + [1064] = 1020, + [1065] = 1013, + [1066] = 1021, + [1067] = 1020, + [1068] = 1021, [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1073, - [1074] = 1073, - [1075] = 1075, - [1076] = 1073, - [1077] = 1077, - [1078] = 1073, - [1079] = 1079, - [1080] = 1073, - [1081] = 1081, - [1082] = 1075, - [1083] = 1075, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1075, - [1089] = 1073, - [1090] = 1084, - [1091] = 1075, - [1092] = 1073, - [1093] = 1073, - [1094] = 1073, - [1095] = 1095, - [1096] = 1075, - [1097] = 1084, - [1098] = 1073, - [1099] = 1099, - [1100] = 1100, + [1073] = 1069, + [1074] = 1069, + [1075] = 1070, + [1076] = 1070, + [1077] = 1071, + [1078] = 1072, + [1079] = 1071, + [1080] = 357, + [1081] = 1072, + [1082] = 1082, + [1083] = 1070, + [1084] = 1070, + [1085] = 1070, + [1086] = 1071, + [1087] = 1072, + [1088] = 1069, + [1089] = 1009, + [1090] = 1071, + [1091] = 1070, + [1092] = 1071, + [1093] = 1071, + [1094] = 1070, + [1095] = 1071, + [1096] = 1072, + [1097] = 1069, + [1098] = 1071, + [1099] = 1069, + [1100] = 1072, [1101] = 1101, - [1102] = 1102, - [1103] = 1073, - [1104] = 1084, - [1105] = 1075, - [1106] = 1106, - [1107] = 1084, - [1108] = 1075, - [1109] = 1084, - [1110] = 1073, - [1111] = 1075, - [1112] = 1075, - [1113] = 1084, - [1114] = 1114, - [1115] = 1075, - [1116] = 1116, - [1117] = 1075, - [1118] = 1118, - [1119] = 1119, - [1120] = 1075, - [1121] = 1073, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, + [1102] = 354, + [1103] = 1008, + [1104] = 355, + [1105] = 1070, + [1106] = 1071, + [1107] = 256, + [1108] = 253, + [1109] = 1071, + [1110] = 1072, + [1111] = 1072, + [1112] = 1069, + [1113] = 1070, + [1114] = 1069, + [1115] = 1070, + [1116] = 396, + [1117] = 395, + [1118] = 403, + [1119] = 364, + [1120] = 375, + [1121] = 369, + [1122] = 371, + [1123] = 394, + [1124] = 376, + [1125] = 377, + [1126] = 380, + [1127] = 389, + [1128] = 405, + [1129] = 392, + [1130] = 374, + [1131] = 382, + [1132] = 367, + [1133] = 370, + [1134] = 373, [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, + [1136] = 372, + [1137] = 404, + [1138] = 387, + [1139] = 361, + [1140] = 359, + [1141] = 381, + [1142] = 360, + [1143] = 384, [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, + [1145] = 400, + [1146] = 379, + [1147] = 388, + [1148] = 390, [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1123, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 1133, - [1159] = 1159, - [1160] = 1128, - [1161] = 1130, - [1162] = 1134, - [1163] = 1135, - [1164] = 1136, - [1165] = 1157, - [1166] = 1137, - [1167] = 1138, - [1168] = 1139, - [1169] = 1140, + [1150] = 1012, + [1151] = 391, + [1152] = 401, + [1153] = 386, + [1154] = 365, + [1155] = 366, + [1156] = 385, + [1157] = 399, + [1158] = 397, + [1159] = 398, + [1160] = 368, + [1161] = 378, + [1162] = 1162, + [1163] = 1163, + [1164] = 1163, + [1165] = 1165, + [1166] = 1165, + [1167] = 1167, + [1168] = 1168, + [1169] = 1163, [1170] = 1170, - [1171] = 1171, - [1172] = 1141, - [1173] = 1173, - [1174] = 1142, - [1175] = 1143, - [1176] = 1144, - [1177] = 1145, - [1178] = 1124, - [1179] = 1159, - [1180] = 1146, - [1181] = 1127, - [1182] = 1147, - [1183] = 1148, - [1184] = 1149, - [1185] = 1150, - [1186] = 1159, - [1187] = 1128, - [1188] = 1130, - [1189] = 1159, - [1190] = 1151, - [1191] = 1152, - [1192] = 1153, - [1193] = 1173, - [1194] = 1125, - [1195] = 1127, - [1196] = 1155, - [1197] = 1159, - [1198] = 1128, - [1199] = 1130, - [1200] = 1156, + [1171] = 1035, + [1172] = 1167, + [1173] = 1163, + [1174] = 1165, + [1175] = 1175, + [1176] = 1163, + [1177] = 1163, + [1178] = 1175, + [1179] = 1175, + [1180] = 1175, + [1181] = 1163, + [1182] = 1163, + [1183] = 1163, + [1184] = 1163, + [1185] = 1167, + [1186] = 1175, + [1187] = 1167, + [1188] = 1175, + [1189] = 1167, + [1190] = 1175, + [1191] = 1175, + [1192] = 1175, + [1193] = 1163, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, [1201] = 1201, - [1202] = 1173, - [1203] = 1125, - [1204] = 1159, - [1205] = 1128, - [1206] = 1130, - [1207] = 1159, - [1208] = 1159, - [1209] = 1159, - [1210] = 1210, - [1211] = 1159, - [1212] = 1159, - [1213] = 1170, - [1214] = 1171, - [1215] = 1173, + [1202] = 1035, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1205, + [1207] = 1207, + [1208] = 1205, + [1209] = 1209, + [1210] = 1205, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, [1216] = 1216, - [1217] = 1216, - [1218] = 1210, - [1219] = 1216, - [1220] = 1216, - [1221] = 1216, - [1222] = 1216, - [1223] = 1216, - [1224] = 1216, - [1225] = 1216, - [1226] = 1216, - [1227] = 1159, - [1228] = 1159, - [1229] = 1125, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 1238, + [1217] = 1217, + [1218] = 1212, + [1219] = 1212, + [1220] = 1212, + [1221] = 1221, + [1222] = 1215, + [1223] = 1213, + [1224] = 1212, + [1225] = 1213, + [1226] = 1212, + [1227] = 1213, + [1228] = 1213, + [1229] = 1229, + [1230] = 1215, + [1231] = 1215, + [1232] = 1213, + [1233] = 1212, + [1234] = 1212, + [1235] = 1212, + [1236] = 1213, + [1237] = 1212, + [1238] = 1213, [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1230, - [1244] = 1244, - [1245] = 1245, + [1240] = 1215, + [1241] = 1212, + [1242] = 1213, + [1243] = 1243, + [1244] = 1213, + [1245] = 1212, [1246] = 1246, [1247] = 1247, [1248] = 1248, - [1249] = 1249, + [1249] = 1213, [1250] = 1250, - [1251] = 1231, - [1252] = 1252, - [1253] = 1249, - [1254] = 1232, - [1255] = 1255, - [1256] = 1256, - [1257] = 1244, - [1258] = 1258, - [1259] = 1259, - [1260] = 1231, - [1261] = 1261, - [1262] = 1232, - [1263] = 1244, - [1264] = 1255, - [1265] = 1244, - [1266] = 1231, - [1267] = 1267, + [1251] = 1251, + [1252] = 1212, + [1253] = 1253, + [1254] = 1254, + [1255] = 1215, + [1256] = 1213, + [1257] = 1212, + [1258] = 1215, + [1259] = 1215, + [1260] = 1213, + [1261] = 1213, + [1262] = 1212, + [1263] = 1212, + [1264] = 1264, + [1265] = 1213, + [1266] = 1266, + [1267] = 1213, [1268] = 1268, [1269] = 1269, - [1270] = 1270, + [1270] = 1268, [1271] = 1271, [1272] = 1272, [1273] = 1273, - [1274] = 1252, + [1274] = 1274, [1275] = 1275, - [1276] = 1252, - [1277] = 1249, - [1278] = 1238, - [1279] = 1246, - [1280] = 1232, - [1281] = 1249, - [1282] = 1234, - [1283] = 1235, - [1284] = 1236, - [1285] = 1237, - [1286] = 1239, - [1287] = 1240, - [1288] = 1241, - [1289] = 1230, - [1290] = 1245, - [1291] = 1275, - [1292] = 1255, - [1293] = 1246, - [1294] = 1244, - [1295] = 1232, - [1296] = 1252, - [1297] = 1255, - [1298] = 1267, - [1299] = 1299, - [1300] = 1234, - [1301] = 1231, - [1302] = 1235, - [1303] = 1236, - [1304] = 1237, - [1305] = 1239, - [1306] = 1240, - [1307] = 1241, - [1308] = 1230, - [1309] = 1245, - [1310] = 1275, - [1311] = 1255, - [1312] = 1312, - [1313] = 1246, - [1314] = 1234, - [1315] = 1235, - [1316] = 1236, - [1317] = 1237, - [1318] = 1239, - [1319] = 1240, - [1320] = 1241, - [1321] = 1230, - [1322] = 1245, - [1323] = 1275, - [1324] = 1252, - [1325] = 1249, - [1326] = 1232, - [1327] = 1255, - [1328] = 1328, - [1329] = 1231, - [1330] = 1244, - [1331] = 1331, - [1332] = 1231, - [1333] = 1269, - [1334] = 1270, - [1335] = 1272, - [1336] = 1336, - [1337] = 1252, - [1338] = 1252, - [1339] = 1249, - [1340] = 1238, - [1341] = 1246, - [1342] = 1232, - [1343] = 1270, - [1344] = 1272, - [1345] = 1249, - [1346] = 1299, - [1347] = 1234, - [1348] = 1235, - [1349] = 1236, - [1350] = 1237, - [1351] = 1239, - [1352] = 1240, - [1353] = 1241, - [1354] = 1230, - [1355] = 1245, - [1356] = 1275, - [1357] = 1255, - [1358] = 1244, - [1359] = 1244, - [1360] = 1238, - [1361] = 1246, - [1362] = 1231, - [1363] = 1232, + [1276] = 1276, + [1277] = 1274, + [1278] = 1268, + [1279] = 1268, + [1280] = 1268, + [1281] = 1281, + [1282] = 1282, + [1283] = 1268, + [1284] = 1284, + [1285] = 1268, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1281, + [1290] = 1290, + [1291] = 1291, + [1292] = 1281, + [1293] = 1293, + [1294] = 1294, + [1295] = 1268, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1288, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1272, + [1304] = 1304, + [1305] = 1305, + [1306] = 1288, + [1307] = 1268, + [1308] = 1308, + [1309] = 1284, + [1310] = 1310, + [1311] = 1311, + [1312] = 1288, + [1313] = 1313, + [1314] = 1314, + [1315] = 1284, + [1316] = 1284, + [1317] = 1284, + [1318] = 1272, + [1319] = 1311, + [1320] = 1302, + [1321] = 1321, + [1322] = 1268, + [1323] = 1323, + [1324] = 1272, + [1325] = 1325, + [1326] = 1302, + [1327] = 1268, + [1328] = 1274, + [1329] = 1288, + [1330] = 1284, + [1331] = 1287, + [1332] = 1313, + [1333] = 1281, + [1334] = 1313, + [1335] = 1311, + [1336] = 1321, + [1337] = 1337, + [1338] = 1288, + [1339] = 1302, + [1340] = 1274, + [1341] = 1272, + [1342] = 1313, + [1343] = 1284, + [1344] = 1288, + [1345] = 1313, + [1346] = 1268, + [1347] = 1284, + [1348] = 1313, + [1349] = 1311, + [1350] = 1311, + [1351] = 1313, + [1352] = 1287, + [1353] = 1311, + [1354] = 1313, + [1355] = 1287, + [1356] = 1294, + [1357] = 1313, + [1358] = 1302, + [1359] = 1298, + [1360] = 1313, + [1361] = 1288, + [1362] = 1284, + [1363] = 1313, [1364] = 1364, - [1365] = 1365, + [1365] = 1311, [1366] = 1366, - [1367] = 1246, - [1368] = 1234, - [1369] = 1235, - [1370] = 1236, - [1371] = 1237, - [1372] = 1239, - [1373] = 1240, - [1374] = 1241, - [1375] = 1230, - [1376] = 1245, - [1377] = 1275, - [1378] = 1252, - [1379] = 1249, - [1380] = 1269, - [1381] = 1381, - [1382] = 1272, - [1383] = 1244, - [1384] = 1384, - [1385] = 1238, - [1386] = 1386, - [1387] = 1387, - [1388] = 1231, - [1389] = 1246, - [1390] = 1234, - [1391] = 1235, - [1392] = 1236, - [1393] = 1237, - [1394] = 1239, - [1395] = 1240, - [1396] = 1241, - [1397] = 1230, - [1398] = 1245, - [1399] = 1275, - [1400] = 1269, - [1401] = 1272, - [1402] = 1234, - [1403] = 1252, - [1404] = 1249, - [1405] = 1246, - [1406] = 1234, - [1407] = 1235, - [1408] = 1236, - [1409] = 1237, - [1410] = 1239, - [1411] = 1240, - [1412] = 1241, - [1413] = 1230, - [1414] = 1245, - [1415] = 1275, - [1416] = 1269, - [1417] = 1272, - [1418] = 1235, - [1419] = 1246, - [1420] = 1232, - [1421] = 1231, - [1422] = 1269, - [1423] = 1272, - [1424] = 1236, - [1425] = 1269, - [1426] = 1272, - [1427] = 1237, - [1428] = 1239, - [1429] = 1269, - [1430] = 1272, - [1431] = 1240, - [1432] = 1234, - [1433] = 1235, - [1434] = 1236, - [1435] = 1237, - [1436] = 1239, - [1437] = 1240, - [1438] = 1269, - [1439] = 1241, - [1440] = 1272, - [1441] = 1241, - [1442] = 1230, - [1443] = 1245, - [1444] = 1275, - [1445] = 1255, - [1446] = 1230, - [1447] = 1245, + [1367] = 1302, + [1368] = 1269, + [1369] = 1369, + [1370] = 1268, + [1371] = 1271, + [1372] = 1287, + [1373] = 1281, + [1374] = 1273, + [1375] = 1275, + [1376] = 1276, + [1377] = 1272, + [1378] = 1282, + [1379] = 1311, + [1380] = 1311, + [1381] = 1302, + [1382] = 1286, + [1383] = 1383, + [1384] = 1383, + [1385] = 1268, + [1386] = 1291, + [1387] = 1296, + [1388] = 1300, + [1389] = 1301, + [1390] = 1304, + [1391] = 1305, + [1392] = 1302, + [1393] = 1272, + [1394] = 1366, + [1395] = 1364, + [1396] = 1293, + [1397] = 1272, + [1398] = 1383, + [1399] = 1308, + [1400] = 1310, + [1401] = 1268, + [1402] = 1284, + [1403] = 1272, + [1404] = 1404, + [1405] = 1274, + [1406] = 1383, + [1407] = 1288, + [1408] = 1297, + [1409] = 1323, + [1410] = 1337, + [1411] = 1311, + [1412] = 1302, + [1413] = 1413, + [1414] = 1413, + [1415] = 1314, + [1416] = 1268, + [1417] = 1364, + [1418] = 1383, + [1419] = 1272, + [1420] = 1302, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1422, + [1435] = 1423, + [1436] = 1436, + [1437] = 1437, + [1438] = 1423, + [1439] = 1425, + [1440] = 1428, + [1441] = 1441, + [1442] = 1442, + [1443] = 1426, + [1444] = 1427, + [1445] = 1445, + [1446] = 1429, + [1447] = 1429, [1448] = 1448, - [1449] = 1275, - [1450] = 1233, - [1451] = 1381, - [1452] = 1246, - [1453] = 1232, - [1454] = 1252, - [1455] = 1249, - [1456] = 1234, - [1457] = 1235, - [1458] = 1236, - [1459] = 1237, - [1460] = 1239, - [1461] = 1240, - [1462] = 1241, - [1463] = 1230, - [1464] = 1245, - [1465] = 1275, - [1466] = 1255, - [1467] = 1366, - [1468] = 1255, - [1469] = 1242, - [1470] = 1247, - [1471] = 1244, - [1472] = 1472, - [1473] = 1231, - [1474] = 1271, - [1475] = 1233, - [1476] = 1381, - [1477] = 1366, - [1478] = 1242, - [1479] = 1247, - [1480] = 1472, - [1481] = 1271, + [1449] = 1432, + [1450] = 1436, + [1451] = 1451, + [1452] = 1452, + [1453] = 1423, + [1454] = 1426, + [1455] = 1427, + [1456] = 1429, + [1457] = 1432, + [1458] = 1436, + [1459] = 1423, + [1460] = 1429, + [1461] = 1432, + [1462] = 1436, + [1463] = 1423, + [1464] = 1429, + [1465] = 1432, + [1466] = 1436, + [1467] = 1423, + [1468] = 1426, + [1469] = 1469, + [1470] = 1470, + [1471] = 1427, + [1472] = 1421, + [1473] = 1426, + [1474] = 1427, + [1475] = 1475, + [1476] = 1476, + [1477] = 1429, + [1478] = 1476, + [1479] = 1429, + [1480] = 1480, + [1481] = 1481, [1482] = 1482, - [1483] = 1233, - [1484] = 1381, - [1485] = 1232, - [1486] = 1366, - [1487] = 1242, - [1488] = 1247, - [1489] = 1472, - [1490] = 1271, - [1491] = 1233, - [1492] = 1381, - [1493] = 1472, - [1494] = 1366, - [1495] = 1242, - [1496] = 1247, - [1497] = 1472, - [1498] = 1271, - [1499] = 1255, - [1500] = 1366, - [1501] = 1242, - [1502] = 1247, - [1503] = 1472, - [1504] = 1271, - [1505] = 1366, - [1506] = 1242, - [1507] = 1472, - [1508] = 1508, - [1509] = 1364, - [1510] = 1269, - [1511] = 1365, - [1512] = 1269, - [1513] = 1272, - [1514] = 1252, - [1515] = 1249, - [1516] = 1516, - [1517] = 1269, - [1518] = 1272, - [1519] = 1235, - [1520] = 1516, - [1521] = 1516, - [1522] = 1516, - [1523] = 1516, - [1524] = 1516, - [1525] = 1238, - [1526] = 1526, - [1527] = 1246, - [1528] = 1234, - [1529] = 1235, - [1530] = 1236, - [1531] = 1237, - [1532] = 1239, - [1533] = 1240, - [1534] = 1241, - [1535] = 1386, - [1536] = 1245, - [1537] = 1275, - [1538] = 1252, - [1539] = 1249, - [1540] = 1232, - [1541] = 1255, - [1542] = 1244, - [1543] = 1231, - [1544] = 1246, - [1545] = 1232, - [1546] = 1234, - [1547] = 1236, - [1548] = 1237, - [1549] = 1239, - [1550] = 1240, - [1551] = 1241, - [1552] = 1230, - [1553] = 1245, - [1554] = 1275, - [1555] = 1255, - [1556] = 1244, - [1557] = 1231, - [1558] = 1269, - [1559] = 1272, - [1560] = 1252, - [1561] = 1249, - [1562] = 1244, - [1563] = 1386, - [1564] = 1386, - [1565] = 1386, - [1566] = 1386, - [1567] = 1516, - [1568] = 1568, - [1569] = 1268, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1576, - [1578] = 1578, - [1579] = 1578, - [1580] = 1573, - [1581] = 1574, - [1582] = 1568, - [1583] = 1572, - [1584] = 1571, - [1585] = 1570, - [1586] = 1575, - [1587] = 1587, - [1588] = 333, - [1589] = 393, - [1590] = 1590, - [1591] = 1590, - [1592] = 1590, - [1593] = 1590, - [1594] = 1268, - [1595] = 1595, - [1596] = 1268, - [1597] = 1572, - [1598] = 1571, - [1599] = 1599, - [1600] = 1599, - [1601] = 905, - [1602] = 1573, - [1603] = 1570, - [1604] = 1599, - [1605] = 1599, - [1606] = 1576, - [1607] = 1574, - [1608] = 1575, - [1609] = 1568, - [1610] = 905, - [1611] = 1576, - [1612] = 905, - [1613] = 1613, - [1614] = 1568, - [1615] = 1572, - [1616] = 1575, - [1617] = 1576, - [1618] = 1573, - [1619] = 1571, - [1620] = 1574, - [1621] = 1570, - [1622] = 1622, - [1623] = 1623, - [1624] = 1575, - [1625] = 1625, - [1626] = 1626, - [1627] = 1572, - [1628] = 1568, - [1629] = 1574, - [1630] = 1570, - [1631] = 1573, - [1632] = 1571, - [1633] = 1633, - [1634] = 1634, - [1635] = 1576, - [1636] = 1576, - [1637] = 1633, - [1638] = 1634, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1432, + [1492] = 1436, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1481, + [1497] = 1433, + [1498] = 1482, + [1499] = 1483, + [1500] = 1484, + [1501] = 1485, + [1502] = 1486, + [1503] = 1487, + [1504] = 1423, + [1505] = 1488, + [1506] = 1489, + [1507] = 1490, + [1508] = 1432, + [1509] = 1476, + [1510] = 1426, + [1511] = 1481, + [1512] = 1482, + [1513] = 1483, + [1514] = 1484, + [1515] = 1485, + [1516] = 1486, + [1517] = 1487, + [1518] = 1488, + [1519] = 1489, + [1520] = 1490, + [1521] = 1427, + [1522] = 1421, + [1523] = 1426, + [1524] = 1427, + [1525] = 1469, + [1526] = 1426, + [1527] = 1427, + [1528] = 1429, + [1529] = 1432, + [1530] = 1436, + [1531] = 1423, + [1532] = 1469, + [1533] = 1470, + [1534] = 1421, + [1535] = 1426, + [1536] = 1427, + [1537] = 1475, + [1538] = 1476, + [1539] = 1429, + [1540] = 1475, + [1541] = 1476, + [1542] = 1429, + [1543] = 1431, + [1544] = 1481, + [1545] = 1482, + [1546] = 1483, + [1547] = 1484, + [1548] = 1485, + [1549] = 1486, + [1550] = 1487, + [1551] = 1488, + [1552] = 1489, + [1553] = 1490, + [1554] = 1432, + [1555] = 1555, + [1556] = 1436, + [1557] = 1426, + [1558] = 1436, + [1559] = 1423, + [1560] = 1560, + [1561] = 1561, + [1562] = 1476, + [1563] = 1481, + [1564] = 1482, + [1565] = 1483, + [1566] = 1484, + [1567] = 1485, + [1568] = 1486, + [1569] = 1487, + [1570] = 1488, + [1571] = 1489, + [1572] = 1490, + [1573] = 1426, + [1574] = 1427, + [1575] = 1469, + [1576] = 1421, + [1577] = 1577, + [1578] = 1475, + [1579] = 1579, + [1580] = 1481, + [1581] = 1482, + [1582] = 1483, + [1583] = 1484, + [1584] = 1485, + [1585] = 1486, + [1586] = 1487, + [1587] = 1488, + [1588] = 1489, + [1589] = 1490, + [1590] = 1432, + [1591] = 1470, + [1592] = 1481, + [1593] = 1476, + [1594] = 1481, + [1595] = 1482, + [1596] = 1483, + [1597] = 1484, + [1598] = 1485, + [1599] = 1486, + [1600] = 1487, + [1601] = 1488, + [1602] = 1489, + [1603] = 1490, + [1604] = 1469, + [1605] = 1423, + [1606] = 1421, + [1607] = 1475, + [1608] = 1482, + [1609] = 1483, + [1610] = 1484, + [1611] = 1485, + [1612] = 1423, + [1613] = 1486, + [1614] = 1476, + [1615] = 1481, + [1616] = 1482, + [1617] = 1483, + [1618] = 1484, + [1619] = 1485, + [1620] = 1486, + [1621] = 1487, + [1622] = 1488, + [1623] = 1489, + [1624] = 1490, + [1625] = 1469, + [1626] = 1421, + [1627] = 1487, + [1628] = 1422, + [1629] = 1436, + [1630] = 1489, + [1631] = 1490, + [1632] = 1632, + [1633] = 1427, + [1634] = 1476, + [1635] = 1481, + [1636] = 1482, + [1637] = 1483, + [1638] = 1484, + [1639] = 1485, + [1640] = 1486, + [1641] = 1487, + [1642] = 1488, + [1643] = 1489, + [1644] = 1490, + [1645] = 1469, + [1646] = 1421, [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1655, - [1656] = 1633, - [1657] = 1654, - [1658] = 1655, - [1659] = 1654, - [1660] = 1634, - [1661] = 1654, - [1662] = 1613, - [1663] = 1663, - [1664] = 1664, - [1665] = 1663, - [1666] = 1663, - [1667] = 1663, - [1668] = 1664, - [1669] = 1663, - [1670] = 1613, - [1671] = 1664, - [1672] = 1634, - [1673] = 1633, - [1674] = 1663, - [1675] = 1664, - [1676] = 1664, - [1677] = 1664, - [1678] = 1663, - [1679] = 1664, - [1680] = 1613, - [1681] = 1622, - [1682] = 1634, - [1683] = 1625, - [1684] = 1684, - [1685] = 1633, - [1686] = 1655, - [1687] = 1623, - [1688] = 1574, - [1689] = 1622, - [1690] = 1690, - [1691] = 1625, - [1692] = 1692, - [1693] = 1693, - [1694] = 1572, - [1695] = 1690, - [1696] = 1570, - [1697] = 1568, - [1698] = 1613, - [1699] = 1576, - [1700] = 1571, - [1701] = 1613, - [1702] = 1655, - [1703] = 1575, - [1704] = 1690, - [1705] = 1690, - [1706] = 1573, - [1707] = 1623, - [1708] = 1708, - [1709] = 229, - [1710] = 231, - [1711] = 227, - [1712] = 224, - [1713] = 1625, - [1714] = 1623, - [1715] = 1572, - [1716] = 1568, - [1717] = 1570, - [1718] = 1571, - [1719] = 1573, - [1720] = 1574, - [1721] = 1575, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1622, - [1728] = 1728, - [1729] = 1655, - [1730] = 1622, - [1731] = 1625, - [1732] = 1623, - [1733] = 1733, - [1734] = 135, - [1735] = 136, - [1736] = 240, - [1737] = 1623, - [1738] = 280, - [1739] = 280, - [1740] = 1576, - [1741] = 1625, - [1742] = 1268, - [1743] = 327, - [1744] = 369, - [1745] = 1745, - [1746] = 373, - [1747] = 374, - [1748] = 418, - [1749] = 381, - [1750] = 382, - [1751] = 404, - [1752] = 1752, - [1753] = 419, - [1754] = 421, - [1755] = 258, - [1756] = 264, - [1757] = 422, - [1758] = 425, - [1759] = 244, - [1760] = 245, - [1761] = 246, - [1762] = 247, - [1763] = 1568, - [1764] = 427, - [1765] = 259, - [1766] = 260, - [1767] = 261, - [1768] = 276, - [1769] = 1769, - [1770] = 1268, - [1771] = 1771, - [1772] = 277, - [1773] = 429, - [1774] = 1570, - [1775] = 249, - [1776] = 251, - [1777] = 333, - [1778] = 273, - [1779] = 393, - [1780] = 395, - [1781] = 443, - [1782] = 296, - [1783] = 301, - [1784] = 302, - [1785] = 316, - [1786] = 442, - [1787] = 328, - [1788] = 334, - [1789] = 345, - [1790] = 370, - [1791] = 291, - [1792] = 297, - [1793] = 1571, - [1794] = 299, - [1795] = 304, - [1796] = 310, - [1797] = 311, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 314, - [1802] = 315, - [1803] = 1803, - [1804] = 1804, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, - [1812] = 1812, - [1813] = 416, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1824, + [1648] = 1432, + [1649] = 1476, + [1650] = 1481, + [1651] = 1482, + [1652] = 1483, + [1653] = 1484, + [1654] = 1485, + [1655] = 1486, + [1656] = 1487, + [1657] = 1488, + [1658] = 1489, + [1659] = 1490, + [1660] = 1469, + [1661] = 1426, + [1662] = 1427, + [1663] = 1469, + [1664] = 1421, + [1665] = 1476, + [1666] = 1429, + [1667] = 1667, + [1668] = 1469, + [1669] = 1421, + [1670] = 1469, + [1671] = 1421, + [1672] = 1481, + [1673] = 1482, + [1674] = 1483, + [1675] = 1484, + [1676] = 1485, + [1677] = 1486, + [1678] = 1469, + [1679] = 1487, + [1680] = 1421, + [1681] = 1488, + [1682] = 1489, + [1683] = 1490, + [1684] = 1469, + [1685] = 1432, + [1686] = 1421, + [1687] = 1687, + [1688] = 1688, + [1689] = 1469, + [1690] = 1560, + [1691] = 1421, + [1692] = 1426, + [1693] = 1632, + [1694] = 1427, + [1695] = 1452, + [1696] = 1475, + [1697] = 1476, + [1698] = 1429, + [1699] = 1481, + [1700] = 1482, + [1701] = 1483, + [1702] = 1484, + [1703] = 1485, + [1704] = 1486, + [1705] = 1487, + [1706] = 1488, + [1707] = 1489, + [1708] = 1490, + [1709] = 1432, + [1710] = 1710, + [1711] = 1561, + [1712] = 1577, + [1713] = 1436, + [1714] = 1647, + [1715] = 1423, + [1716] = 1442, + [1717] = 1476, + [1718] = 1481, + [1719] = 1482, + [1720] = 1483, + [1721] = 1484, + [1722] = 1485, + [1723] = 1486, + [1724] = 1487, + [1725] = 1488, + [1726] = 1489, + [1727] = 1490, + [1728] = 1426, + [1729] = 1427, + [1730] = 1429, + [1731] = 1432, + [1732] = 1436, + [1733] = 1423, + [1734] = 1560, + [1735] = 1632, + [1736] = 1452, + [1737] = 1710, + [1738] = 1561, + [1739] = 1577, + [1740] = 1647, + [1741] = 1741, + [1742] = 1442, + [1743] = 1710, + [1744] = 1560, + [1745] = 1632, + [1746] = 1452, + [1747] = 1710, + [1748] = 1561, + [1749] = 1577, + [1750] = 1647, + [1751] = 1442, + [1752] = 1560, + [1753] = 1632, + [1754] = 1452, + [1755] = 1710, + [1756] = 1561, + [1757] = 1577, + [1758] = 1647, + [1759] = 1442, + [1760] = 1452, + [1761] = 1710, + [1762] = 1561, + [1763] = 1577, + [1764] = 1647, + [1765] = 1442, + [1766] = 1452, + [1767] = 1710, + [1768] = 1561, + [1769] = 1577, + [1770] = 1647, + [1771] = 1442, + [1772] = 1452, + [1773] = 1577, + [1774] = 1442, + [1775] = 1452, + [1776] = 1436, + [1777] = 1452, + [1778] = 1452, + [1779] = 1452, + [1780] = 1452, + [1781] = 1452, + [1782] = 1452, + [1783] = 1436, + [1784] = 1555, + [1785] = 1469, + [1786] = 1421, + [1787] = 1555, + [1788] = 1555, + [1789] = 1555, + [1790] = 1555, + [1791] = 1555, + [1792] = 1475, + [1793] = 1476, + [1794] = 1429, + [1795] = 1481, + [1796] = 1482, + [1797] = 1483, + [1798] = 1484, + [1799] = 1485, + [1800] = 1486, + [1801] = 1487, + [1802] = 1488, + [1803] = 1489, + [1804] = 1490, + [1805] = 1432, + [1806] = 1436, + [1807] = 1423, + [1808] = 1476, + [1809] = 1481, + [1810] = 1482, + [1811] = 1483, + [1812] = 1484, + [1813] = 1485, + [1814] = 1486, + [1815] = 1487, + [1816] = 1488, + [1817] = 1489, + [1818] = 1490, + [1819] = 1426, + [1820] = 1427, + [1821] = 1429, + [1822] = 1432, + [1823] = 1436, + [1824] = 1423, [1825] = 1825, - [1826] = 1826, - [1827] = 320, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1838, + [1826] = 1475, + [1827] = 1827, + [1828] = 1469, + [1829] = 1421, + [1830] = 1426, + [1831] = 1427, + [1832] = 1476, + [1833] = 1422, + [1834] = 1422, + [1835] = 1422, + [1836] = 1422, + [1837] = 1422, + [1838] = 1488, [1839] = 1839, - [1840] = 1840, - [1841] = 321, - [1842] = 323, - [1843] = 1843, - [1844] = 1844, - [1845] = 1811, - [1846] = 1846, - [1847] = 1800, - [1848] = 368, - [1849] = 1811, - [1850] = 1573, - [1851] = 1800, - [1852] = 1574, - [1853] = 1575, - [1854] = 1811, - [1855] = 1800, - [1856] = 1800, - [1857] = 1800, - [1858] = 1572, - [1859] = 433, - [1860] = 435, - [1861] = 1800, - [1862] = 439, - [1863] = 440, - [1864] = 441, - [1865] = 401, - [1866] = 224, - [1867] = 229, - [1868] = 1626, - [1869] = 1576, - [1870] = 229, - [1871] = 231, - [1872] = 1625, - [1873] = 1873, - [1874] = 1692, - [1875] = 1268, - [1876] = 227, - [1877] = 227, - [1878] = 1623, - [1879] = 231, - [1880] = 224, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 854, - [1889] = 1268, - [1890] = 1843, - [1891] = 1846, - [1892] = 1576, - [1893] = 1873, - [1894] = 851, - [1895] = 1844, + [1840] = 1839, + [1841] = 1841, + [1842] = 1841, + [1843] = 1841, + [1844] = 1839, + [1845] = 1839, + [1846] = 1839, + [1847] = 1841, + [1848] = 1839, + [1849] = 1839, + [1850] = 1839, + [1851] = 1839, + [1852] = 1839, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1854, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1854, + [1864] = 1854, + [1865] = 1853, + [1866] = 1866, + [1867] = 1841, + [1868] = 1855, + [1869] = 1841, + [1870] = 1841, + [1871] = 1841, + [1872] = 1841, + [1873] = 1841, + [1874] = 1841, + [1875] = 1841, + [1876] = 1876, + [1877] = 1876, + [1878] = 1878, + [1879] = 1879, + [1880] = 1876, + [1881] = 450, + [1882] = 1876, + [1883] = 462, + [1884] = 1035, + [1885] = 1841, + [1886] = 1035, + [1887] = 1035, + [1888] = 1841, + [1889] = 1889, + [1890] = 1889, + [1891] = 1891, + [1892] = 1891, + [1893] = 1035, + [1894] = 1853, + [1895] = 1895, [1896] = 1896, - [1897] = 1897, - [1898] = 136, - [1899] = 135, - [1900] = 1900, + [1897] = 1858, + [1898] = 1855, + [1899] = 1899, + [1900] = 1859, [1901] = 1901, - [1902] = 1902, - [1903] = 1903, - [1904] = 240, - [1905] = 1905, - [1906] = 280, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1846, - [1914] = 1914, - [1915] = 1633, - [1916] = 1916, - [1917] = 1917, - [1918] = 1626, - [1919] = 1919, - [1920] = 1634, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 136, - [1926] = 1926, - [1927] = 1634, - [1928] = 135, - [1929] = 1929, - [1930] = 1930, - [1931] = 1576, - [1932] = 1932, - [1933] = 1885, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, + [1902] = 1853, + [1903] = 1866, + [1904] = 1857, + [1905] = 1866, + [1906] = 1860, + [1907] = 1861, + [1908] = 1862, + [1909] = 1857, + [1910] = 1035, + [1911] = 1035, + [1912] = 1858, + [1913] = 1899, + [1914] = 1859, + [1915] = 1860, + [1916] = 1861, + [1917] = 1862, + [1918] = 1918, + [1919] = 1891, + [1920] = 1035, + [1921] = 1889, + [1922] = 1891, + [1923] = 1035, + [1924] = 1855, + [1925] = 1889, + [1926] = 1891, + [1927] = 1889, + [1928] = 1928, + [1929] = 1035, + [1930] = 1035, + [1931] = 1931, + [1932] = 1035, + [1933] = 1891, + [1934] = 1035, + [1935] = 1035, + [1936] = 1889, + [1937] = 1035, + [1938] = 1035, + [1939] = 1035, + [1940] = 1035, [1941] = 1941, [1942] = 1942, - [1943] = 136, - [1944] = 280, - [1945] = 280, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 280, - [1954] = 1843, - [1955] = 1844, + [1943] = 1943, + [1944] = 1866, + [1945] = 1941, + [1946] = 1857, + [1947] = 1858, + [1948] = 1859, + [1949] = 1860, + [1950] = 1861, + [1951] = 1862, + [1952] = 1891, + [1953] = 1942, + [1954] = 1954, + [1955] = 1855, [1956] = 1956, - [1957] = 1952, - [1958] = 1952, - [1959] = 1952, - [1960] = 1952, - [1961] = 1952, - [1962] = 1952, + [1957] = 1889, + [1958] = 1958, + [1959] = 1959, + [1960] = 1891, + [1961] = 1961, + [1962] = 1889, [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, - [1967] = 1967, + [1967] = 1891, [1968] = 1968, - [1969] = 135, - [1970] = 1970, - [1971] = 1971, + [1969] = 1969, + [1970] = 1841, + [1971] = 1841, [1972] = 1972, - [1973] = 1973, - [1974] = 240, + [1973] = 1889, + [1974] = 1974, [1975] = 1975, - [1976] = 1633, - [1977] = 1977, - [1978] = 1978, - [1979] = 1808, - [1980] = 1807, - [1981] = 258, - [1982] = 264, - [1983] = 244, - [1984] = 245, - [1985] = 246, - [1986] = 247, + [1976] = 1841, + [1977] = 1841, + [1978] = 1889, + [1979] = 1866, + [1980] = 1857, + [1981] = 1858, + [1982] = 1859, + [1983] = 1860, + [1984] = 1861, + [1985] = 1862, + [1986] = 1986, [1987] = 1987, - [1988] = 259, - [1989] = 260, - [1990] = 261, - [1991] = 1821, - [1992] = 1822, - [1993] = 276, - [1994] = 1823, - [1995] = 1726, - [1996] = 1814, - [1997] = 1708, - [1998] = 277, - [1999] = 244, - [2000] = 1722, - [2001] = 249, - [2002] = 251, - [2003] = 333, - [2004] = 273, - [2005] = 393, - [2006] = 245, - [2007] = 246, - [2008] = 247, - [2009] = 1815, - [2010] = 1821, - [2011] = 1817, - [2012] = 1818, - [2013] = 1822, - [2014] = 1824, - [2015] = 1825, - [2016] = 1826, - [2017] = 1828, - [2018] = 1823, - [2019] = 442, - [2020] = 259, - [2021] = 260, - [2022] = 261, - [2023] = 1824, - [2024] = 416, - [2025] = 418, - [2026] = 1825, - [2027] = 1897, + [1988] = 1965, + [1989] = 1972, + [1990] = 1990, + [1991] = 1891, + [1992] = 1891, + [1993] = 1889, + [1994] = 1994, + [1995] = 1995, + [1996] = 1891, + [1997] = 1954, + [1998] = 1998, + [1999] = 1889, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 1974, + [2009] = 2009, + [2010] = 2000, + [2011] = 1879, + [2012] = 2012, + [2013] = 2000, + [2014] = 2000, + [2015] = 1891, + [2016] = 2002, + [2017] = 2003, + [2018] = 2004, + [2019] = 2005, + [2020] = 2006, + [2021] = 2007, + [2022] = 2022, + [2023] = 1889, + [2024] = 1965, + [2025] = 1954, + [2026] = 2026, + [2027] = 1972, [2028] = 2028, - [2029] = 1819, - [2030] = 433, - [2031] = 1692, - [2032] = 1798, - [2033] = 435, - [2034] = 1799, - [2035] = 1829, - [2036] = 276, - [2037] = 421, - [2038] = 422, - [2039] = 1873, - [2040] = 1826, - [2041] = 1828, - [2042] = 425, - [2043] = 1829, - [2044] = 1830, - [2045] = 1831, - [2046] = 401, - [2047] = 427, - [2048] = 1830, - [2049] = 1809, - [2050] = 2050, - [2051] = 1831, - [2052] = 429, - [2053] = 1832, - [2054] = 2054, - [2055] = 1896, - [2056] = 1897, - [2057] = 1833, - [2058] = 1834, - [2059] = 1835, - [2060] = 1836, - [2061] = 1837, - [2062] = 1838, - [2063] = 1839, - [2064] = 395, - [2065] = 1840, - [2066] = 1692, - [2067] = 301, - [2068] = 302, - [2069] = 316, - [2070] = 327, - [2071] = 328, - [2072] = 334, - [2073] = 345, - [2074] = 2028, - [2075] = 1810, - [2076] = 277, - [2077] = 1881, - [2078] = 2028, - [2079] = 1896, - [2080] = 370, - [2081] = 416, - [2082] = 418, - [2083] = 419, + [2029] = 1855, + [2030] = 1956, + [2031] = 2031, + [2032] = 1879, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2028, + [2038] = 2031, + [2039] = 2039, + [2040] = 1879, + [2041] = 2012, + [2042] = 2042, + [2043] = 2043, + [2044] = 1968, + [2045] = 1954, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2028, + [2051] = 2031, + [2052] = 1968, + [2053] = 2053, + [2054] = 2028, + [2055] = 2055, + [2056] = 2031, + [2057] = 2028, + [2058] = 2031, + [2059] = 2028, + [2060] = 2031, + [2061] = 1855, + [2062] = 1853, + [2063] = 2063, + [2064] = 2028, + [2065] = 2031, + [2066] = 2066, + [2067] = 2067, + [2068] = 1853, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 1959, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 1855, + [2082] = 2082, + [2083] = 2083, [2084] = 2084, - [2085] = 1987, - [2086] = 1832, - [2087] = 421, - [2088] = 422, - [2089] = 1833, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 2089, [2090] = 2090, - [2091] = 1834, - [2092] = 1835, - [2093] = 425, - [2094] = 427, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, [2095] = 2095, - [2096] = 440, - [2097] = 291, - [2098] = 1836, - [2099] = 1837, - [2100] = 1838, - [2101] = 311, - [2102] = 314, - [2103] = 315, - [2104] = 320, - [2105] = 321, - [2106] = 323, - [2107] = 429, - [2108] = 249, - [2109] = 251, - [2110] = 395, - [2111] = 1839, - [2112] = 1896, - [2113] = 333, - [2114] = 1820, - [2115] = 443, - [2116] = 1897, - [2117] = 296, - [2118] = 301, - [2119] = 1840, - [2120] = 302, - [2121] = 316, - [2122] = 327, - [2123] = 328, - [2124] = 334, - [2125] = 345, - [2126] = 1692, - [2127] = 368, - [2128] = 370, - [2129] = 381, - [2130] = 1923, - [2131] = 382, - [2132] = 2084, - [2133] = 273, - [2134] = 393, - [2135] = 1803, - [2136] = 404, - [2137] = 1804, - [2138] = 1805, - [2139] = 433, - [2140] = 1806, - [2141] = 1807, - [2142] = 1808, - [2143] = 2050, - [2144] = 435, - [2145] = 291, - [2146] = 1809, - [2147] = 2028, - [2148] = 419, - [2149] = 258, - [2150] = 1810, - [2151] = 297, - [2152] = 2152, - [2153] = 299, - [2154] = 2154, - [2155] = 264, - [2156] = 1883, - [2157] = 304, - [2158] = 310, - [2159] = 311, - [2160] = 314, - [2161] = 1814, - [2162] = 315, - [2163] = 1816, - [2164] = 320, - [2165] = 1798, - [2166] = 401, - [2167] = 1799, - [2168] = 1815, - [2169] = 1816, - [2170] = 443, - [2171] = 296, - [2172] = 321, - [2173] = 441, - [2174] = 1817, - [2175] = 323, - [2176] = 439, - [2177] = 440, - [2178] = 1803, - [2179] = 368, - [2180] = 369, - [2181] = 439, - [2182] = 1818, - [2183] = 1819, - [2184] = 1820, - [2185] = 297, - [2186] = 299, - [2187] = 373, - [2188] = 374, - [2189] = 1804, - [2190] = 304, - [2191] = 1805, - [2192] = 310, - [2193] = 1622, - [2194] = 381, - [2195] = 382, - [2196] = 441, - [2197] = 442, - [2198] = 404, - [2199] = 2199, - [2200] = 369, - [2201] = 373, - [2202] = 374, - [2203] = 1806, - [2204] = 2084, - [2205] = 2205, - [2206] = 2206, - [2207] = 2206, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, - [2211] = 2206, - [2212] = 2212, + [2096] = 1855, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 2104, + [2105] = 1972, + [2106] = 1891, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 1965, + [2114] = 2114, + [2115] = 1972, + [2116] = 2039, + [2117] = 2117, + [2118] = 2118, + [2119] = 1965, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 1889, + [2132] = 2132, + [2133] = 1931, + [2134] = 2134, + [2135] = 2004, + [2136] = 1972, + [2137] = 2006, + [2138] = 2002, + [2139] = 2003, + [2140] = 2004, + [2141] = 2005, + [2142] = 2006, + [2143] = 2007, + [2144] = 1841, + [2145] = 1972, + [2146] = 2002, + [2147] = 2003, + [2148] = 2004, + [2149] = 2005, + [2150] = 2006, + [2151] = 2007, + [2152] = 1841, + [2153] = 1841, + [2154] = 1841, + [2155] = 1954, + [2156] = 2156, + [2157] = 1841, + [2158] = 2123, + [2159] = 2125, + [2160] = 2002, + [2161] = 2124, + [2162] = 1965, + [2163] = 1899, + [2164] = 2128, + [2165] = 2130, + [2166] = 2166, + [2167] = 2007, + [2168] = 2003, + [2169] = 1965, + [2170] = 1879, + [2171] = 2132, + [2172] = 2072, + [2173] = 2075, + [2174] = 2083, + [2175] = 2087, + [2176] = 2166, + [2177] = 2166, + [2178] = 2088, + [2179] = 2179, + [2180] = 1841, + [2181] = 2122, + [2182] = 2005, + [2183] = 2166, + [2184] = 2184, + [2185] = 2004, + [2186] = 1899, + [2187] = 2187, + [2188] = 2007, + [2189] = 2002, + [2190] = 2187, + [2191] = 2187, + [2192] = 2005, + [2193] = 2193, + [2194] = 2194, + [2195] = 1899, + [2196] = 2187, + [2197] = 2187, + [2198] = 2156, + [2199] = 1899, + [2200] = 2200, + [2201] = 2039, + [2202] = 2187, + [2203] = 1974, + [2204] = 2200, + [2205] = 2193, + [2206] = 1901, + [2207] = 2200, + [2208] = 2193, + [2209] = 2003, + [2210] = 2200, + [2211] = 2187, + [2212] = 2187, [2213] = 2213, [2214] = 2214, - [2215] = 1726, - [2216] = 2216, - [2217] = 2206, - [2218] = 2206, - [2219] = 2219, - [2220] = 2220, - [2221] = 1692, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 1692, - [2227] = 2227, - [2228] = 2228, - [2229] = 2206, - [2230] = 2230, - [2231] = 2231, - [2232] = 1613, - [2233] = 2233, - [2234] = 1722, - [2235] = 1885, - [2236] = 2154, - [2237] = 1708, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, + [2215] = 1879, + [2216] = 1896, + [2217] = 2193, + [2218] = 2187, + [2219] = 2006, + [2220] = 2039, + [2221] = 1896, + [2222] = 1931, + [2223] = 1896, + [2224] = 2002, + [2225] = 2003, + [2226] = 2004, + [2227] = 2005, + [2228] = 2006, + [2229] = 2007, + [2230] = 2002, + [2231] = 2003, + [2232] = 2004, + [2233] = 2005, + [2234] = 2006, + [2235] = 2007, + [2236] = 2039, + [2237] = 1901, + [2238] = 1857, + [2239] = 1899, + [2240] = 1965, [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 1268, - [2245] = 1573, - [2246] = 2246, - [2247] = 1574, - [2248] = 1575, - [2249] = 1885, - [2250] = 2250, - [2251] = 1769, - [2252] = 1873, - [2253] = 1692, - [2254] = 1722, - [2255] = 2255, - [2256] = 1752, - [2257] = 1843, - [2258] = 1844, - [2259] = 1572, - [2260] = 1655, - [2261] = 1846, - [2262] = 2262, - [2263] = 1886, - [2264] = 1708, - [2265] = 2265, - [2266] = 1745, - [2267] = 2267, - [2268] = 1692, - [2269] = 1923, - [2270] = 1692, - [2271] = 2271, - [2272] = 2272, - [2273] = 2273, - [2274] = 1771, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, - [2278] = 1568, - [2279] = 1726, - [2280] = 1655, - [2281] = 1570, - [2282] = 1571, - [2283] = 2199, - [2284] = 1692, - [2285] = 2285, - [2286] = 1882, - [2287] = 2287, - [2288] = 1896, - [2289] = 2289, - [2290] = 2290, - [2291] = 1745, - [2292] = 2292, - [2293] = 2293, - [2294] = 1752, - [2295] = 2295, - [2296] = 1897, - [2297] = 2297, - [2298] = 1633, - [2299] = 2299, - [2300] = 1769, - [2301] = 1771, - [2302] = 2302, - [2303] = 2272, - [2304] = 1634, - [2305] = 2305, - [2306] = 2306, - [2307] = 1887, - [2308] = 2308, - [2309] = 1923, - [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 2313, - [2314] = 1622, - [2315] = 2208, - [2316] = 1576, - [2317] = 1634, - [2318] = 1941, - [2319] = 1902, - [2320] = 1970, - [2321] = 1978, - [2322] = 1977, - [2323] = 1942, - [2324] = 1967, - [2325] = 2325, - [2326] = 1903, - [2327] = 1946, - [2328] = 2246, - [2329] = 1905, - [2330] = 851, - [2331] = 1622, - [2332] = 1623, - [2333] = 1769, - [2334] = 2334, - [2335] = 1934, - [2336] = 2209, - [2337] = 1917, - [2338] = 2338, - [2339] = 2339, - [2340] = 2216, - [2341] = 2227, - [2342] = 1914, - [2343] = 1932, - [2344] = 2228, - [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 1935, - [2349] = 1947, - [2350] = 2350, - [2351] = 1919, - [2352] = 2213, - [2353] = 2214, - [2354] = 1771, - [2355] = 2205, - [2356] = 1924, - [2357] = 1948, - [2358] = 1752, - [2359] = 1929, - [2360] = 1950, - [2361] = 2222, - [2362] = 2225, - [2363] = 1726, - [2364] = 2219, - [2365] = 1901, - [2366] = 2241, - [2367] = 2367, - [2368] = 1963, - [2369] = 2220, - [2370] = 1964, - [2371] = 1965, - [2372] = 2372, - [2373] = 1966, - [2374] = 1900, - [2375] = 1968, - [2376] = 1971, - [2377] = 1951, - [2378] = 2378, - [2379] = 1921, - [2380] = 2380, - [2381] = 2381, - [2382] = 1972, - [2383] = 1973, - [2384] = 1881, - [2385] = 1633, - [2386] = 2386, - [2387] = 1771, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 854, - [2393] = 1769, - [2394] = 1722, - [2395] = 2265, - [2396] = 1752, - [2397] = 1625, - [2398] = 1949, - [2399] = 2399, - [2400] = 1745, - [2401] = 1940, - [2402] = 1745, - [2403] = 1708, - [2404] = 1936, - [2405] = 1923, - [2406] = 1937, - [2407] = 2407, - [2408] = 1938, - [2409] = 1939, - [2410] = 2293, - [2411] = 2411, - [2412] = 1650, - [2413] = 1651, - [2414] = 1652, - [2415] = 2415, - [2416] = 2416, - [2417] = 2417, - [2418] = 2302, - [2419] = 2209, + [2242] = 1974, + [2243] = 1918, + [2244] = 1858, + [2245] = 1972, + [2246] = 1860, + [2247] = 1861, + [2248] = 1862, + [2249] = 1859, + [2250] = 1965, + [2251] = 1901, + [2252] = 1899, + [2253] = 1972, + [2254] = 2184, + [2255] = 2213, + [2256] = 1866, + [2257] = 2012, + [2258] = 1974, + [2259] = 1972, + [2260] = 1918, + [2261] = 2214, + [2262] = 2002, + [2263] = 1931, + [2264] = 2003, + [2265] = 2004, + [2266] = 2005, + [2267] = 2006, + [2268] = 1891, + [2269] = 1965, + [2270] = 2007, + [2271] = 2039, + [2272] = 1965, + [2273] = 1972, + [2274] = 2039, + [2275] = 1941, + [2276] = 2012, + [2277] = 1899, + [2278] = 1942, + [2279] = 1889, + [2280] = 1931, + [2281] = 1918, + [2282] = 1889, + [2283] = 1891, + [2284] = 1941, + [2285] = 2003, + [2286] = 2123, + [2287] = 2002, + [2288] = 1961, + [2289] = 2128, + [2290] = 2003, + [2291] = 1899, + [2292] = 2088, + [2293] = 1899, + [2294] = 2004, + [2295] = 1942, + [2296] = 2002, + [2297] = 2007, + [2298] = 2005, + [2299] = 1958, + [2300] = 1942, + [2301] = 2006, + [2302] = 2007, + [2303] = 1943, + [2304] = 1941, + [2305] = 2124, + [2306] = 2005, + [2307] = 2006, + [2308] = 2004, + [2309] = 2309, + [2310] = 1966, + [2311] = 2132, + [2312] = 1942, + [2313] = 2072, + [2314] = 2122, + [2315] = 1928, + [2316] = 1969, + [2317] = 2166, + [2318] = 2075, + [2319] = 1901, + [2320] = 2083, + [2321] = 2125, + [2322] = 2166, + [2323] = 2323, + [2324] = 1959, + [2325] = 1941, + [2326] = 2087, + [2327] = 1896, + [2328] = 1974, + [2329] = 2329, + [2330] = 2130, + [2331] = 1966, + [2332] = 2332, + [2333] = 2007, + [2334] = 2128, + [2335] = 2130, + [2336] = 1965, + [2337] = 2003, + [2338] = 2004, + [2339] = 1931, + [2340] = 1972, + [2341] = 1928, + [2342] = 1860, + [2343] = 2343, + [2344] = 2132, + [2345] = 2072, + [2346] = 2075, + [2347] = 2083, + [2348] = 2087, + [2349] = 2005, + [2350] = 2332, + [2351] = 1861, + [2352] = 2006, + [2353] = 1958, + [2354] = 2354, + [2355] = 1959, + [2356] = 1896, + [2357] = 1866, + [2358] = 1857, + [2359] = 2088, + [2360] = 1961, + [2361] = 1855, + [2362] = 2002, + [2363] = 2363, + [2364] = 2166, + [2365] = 2039, + [2366] = 1954, + [2367] = 1969, + [2368] = 2012, + [2369] = 1862, + [2370] = 1958, + [2371] = 2122, + [2372] = 1942, + [2373] = 1858, + [2374] = 1859, + [2375] = 1899, + [2376] = 1941, + [2377] = 2125, + [2378] = 2166, + [2379] = 2007, + [2380] = 2002, + [2381] = 1943, + [2382] = 1961, + [2383] = 2166, + [2384] = 1959, + [2385] = 2006, + [2386] = 2166, + [2387] = 2003, + [2388] = 2004, + [2389] = 2039, + [2390] = 1986, + [2391] = 1987, + [2392] = 1990, + [2393] = 1928, + [2394] = 2166, + [2395] = 2166, + [2396] = 2354, + [2397] = 2332, + [2398] = 2193, + [2399] = 1899, + [2400] = 2184, + [2401] = 2213, + [2402] = 2123, + [2403] = 1942, + [2404] = 2193, + [2405] = 1995, + [2406] = 1941, + [2407] = 2200, + [2408] = 1966, + [2409] = 2354, + [2410] = 2332, + [2411] = 1969, + [2412] = 2124, + [2413] = 2354, + [2414] = 2332, + [2415] = 1943, + [2416] = 2332, + [2417] = 2332, + [2418] = 2200, + [2419] = 1918, [2420] = 2420, - [2421] = 2421, - [2422] = 2213, - [2423] = 2423, - [2424] = 2227, - [2425] = 2425, - [2426] = 2227, - [2427] = 2228, + [2421] = 1901, + [2422] = 2005, + [2423] = 1928, + [2424] = 302, + [2425] = 1986, + [2426] = 1987, + [2427] = 2193, [2428] = 2428, - [2429] = 2429, - [2430] = 2430, - [2431] = 2219, - [2432] = 2432, - [2433] = 2228, - [2434] = 2434, - [2435] = 1745, - [2436] = 2436, - [2437] = 2437, - [2438] = 2438, - [2439] = 2214, - [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2445, - [2446] = 1752, - [2447] = 2447, - [2448] = 2216, - [2449] = 2449, - [2450] = 2450, - [2451] = 1641, - [2452] = 1886, - [2453] = 2453, - [2454] = 2454, - [2455] = 2299, - [2456] = 2311, - [2457] = 2306, - [2458] = 2458, - [2459] = 2241, - [2460] = 1769, - [2461] = 2461, - [2462] = 2219, - [2463] = 2220, - [2464] = 2241, + [2429] = 1889, + [2430] = 2039, + [2431] = 1954, + [2432] = 1942, + [2433] = 2156, + [2434] = 1986, + [2435] = 1987, + [2436] = 1918, + [2437] = 2193, + [2438] = 2200, + [2439] = 2439, + [2440] = 2039, + [2441] = 1990, + [2442] = 2200, + [2443] = 2193, + [2444] = 2022, + [2445] = 1941, + [2446] = 2200, + [2447] = 1990, + [2448] = 2193, + [2449] = 1998, + [2450] = 1866, + [2451] = 2193, + [2452] = 2193, + [2453] = 2200, + [2454] = 306, + [2455] = 1891, + [2456] = 1858, + [2457] = 1859, + [2458] = 2200, + [2459] = 1860, + [2460] = 2200, + [2461] = 1861, + [2462] = 1862, + [2463] = 1889, + [2464] = 2428, [2465] = 2465, [2466] = 2466, - [2467] = 2205, - [2468] = 135, - [2469] = 2469, - [2470] = 2470, - [2471] = 1882, - [2472] = 2472, - [2473] = 1648, - [2474] = 2474, - [2475] = 1771, + [2467] = 2184, + [2468] = 2213, + [2469] = 2184, + [2470] = 2213, + [2471] = 1866, + [2472] = 2428, + [2473] = 2465, + [2474] = 2466, + [2475] = 1889, [2476] = 2476, - [2477] = 2220, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2255, - [2482] = 2295, - [2483] = 1642, - [2484] = 1643, - [2485] = 2485, - [2486] = 2213, - [2487] = 2487, - [2488] = 1644, - [2489] = 2489, - [2490] = 2214, - [2491] = 2491, - [2492] = 2216, - [2493] = 1653, - [2494] = 2494, - [2495] = 1745, - [2496] = 2496, - [2497] = 2205, - [2498] = 2498, - [2499] = 2499, - [2500] = 1752, - [2501] = 2222, - [2502] = 1640, - [2503] = 2222, - [2504] = 2154, - [2505] = 2289, - [2506] = 2225, - [2507] = 1645, - [2508] = 1887, - [2509] = 2509, - [2510] = 2510, - [2511] = 2225, - [2512] = 2239, - [2513] = 2273, - [2514] = 2313, - [2515] = 1639, - [2516] = 2516, - [2517] = 2287, - [2518] = 2308, - [2519] = 2519, - [2520] = 2239, - [2521] = 2521, - [2522] = 2522, - [2523] = 2523, - [2524] = 2292, - [2525] = 1646, - [2526] = 2526, - [2527] = 2527, - [2528] = 2509, - [2529] = 2425, - [2530] = 2429, - [2531] = 1769, - [2532] = 2432, - [2533] = 2209, - [2534] = 2472, - [2535] = 2535, - [2536] = 1647, - [2537] = 1649, - [2538] = 2480, - [2539] = 2461, - [2540] = 2310, - [2541] = 1771, - [2542] = 2542, - [2543] = 136, - [2544] = 2544, - [2545] = 1946, - [2546] = 2546, - [2547] = 2272, - [2548] = 1572, - [2549] = 1940, - [2550] = 1573, - [2551] = 1574, - [2552] = 1575, - [2553] = 1929, - [2554] = 1901, - [2555] = 1843, - [2556] = 1902, - [2557] = 1844, - [2558] = 1886, - [2559] = 1846, - [2560] = 1903, - [2561] = 1905, - [2562] = 1883, - [2563] = 1917, - [2564] = 1949, - [2565] = 1745, - [2566] = 1752, - [2567] = 2154, - [2568] = 1886, - [2569] = 1924, - [2570] = 2239, - [2571] = 1769, - [2572] = 2199, - [2573] = 1771, - [2574] = 1923, - [2575] = 1948, - [2576] = 1947, - [2577] = 1919, - [2578] = 2272, - [2579] = 2579, - [2580] = 1939, - [2581] = 1973, - [2582] = 1568, - [2583] = 1570, - [2584] = 1655, - [2585] = 1934, - [2586] = 1935, - [2587] = 1963, - [2588] = 1571, - [2589] = 1914, - [2590] = 1626, - [2591] = 1950, - [2592] = 1964, - [2593] = 1967, - [2594] = 1965, - [2595] = 1921, - [2596] = 1966, - [2597] = 1978, - [2598] = 1942, - [2599] = 1936, - [2600] = 1937, - [2601] = 1938, - [2602] = 1941, - [2603] = 1900, - [2604] = 2604, - [2605] = 2605, - [2606] = 1968, - [2607] = 1576, - [2608] = 2608, - [2609] = 1932, - [2610] = 1970, - [2611] = 1951, - [2612] = 1971, - [2613] = 1972, - [2614] = 2614, - [2615] = 1977, - [2616] = 2616, - [2617] = 1655, - [2618] = 2618, - [2619] = 2208, - [2620] = 2050, - [2621] = 1708, - [2622] = 1722, - [2623] = 2442, - [2624] = 1726, - [2625] = 1843, - [2626] = 1844, - [2627] = 1846, - [2628] = 1626, - [2629] = 1745, - [2630] = 1752, - [2631] = 2443, - [2632] = 1769, - [2633] = 1883, - [2634] = 1771, - [2635] = 1572, - [2636] = 1568, - [2637] = 1570, - [2638] = 1571, - [2639] = 1886, - [2640] = 1883, - [2641] = 1873, - [2642] = 2272, - [2643] = 1573, - [2644] = 1574, - [2645] = 1575, - [2646] = 2219, - [2647] = 2216, - [2648] = 2050, + [2477] = 2466, + [2478] = 1857, + [2479] = 1858, + [2480] = 1859, + [2481] = 1860, + [2482] = 2465, + [2483] = 1861, + [2484] = 1862, + [2485] = 1891, + [2486] = 2486, + [2487] = 1995, + [2488] = 349, + [2489] = 2428, + [2490] = 2465, + [2491] = 1995, + [2492] = 2466, + [2493] = 347, + [2494] = 1891, + [2495] = 1857, + [2496] = 2087, + [2497] = 1969, + [2498] = 1942, + [2499] = 2156, + [2500] = 2500, + [2501] = 1941, + [2502] = 2130, + [2503] = 2003, + [2504] = 2004, + [2505] = 2124, + [2506] = 2128, + [2507] = 2088, + [2508] = 2006, + [2509] = 1963, + [2510] = 1956, + [2511] = 2132, + [2512] = 2166, + [2513] = 1941, + [2514] = 2026, + [2515] = 2214, + [2516] = 2083, + [2517] = 2022, + [2518] = 2002, + [2519] = 1954, + [2520] = 2075, + [2521] = 2122, + [2522] = 2001, + [2523] = 1968, + [2524] = 2524, + [2525] = 1995, + [2526] = 1943, + [2527] = 2072, + [2528] = 1959, + [2529] = 1961, + [2530] = 1954, + [2531] = 1964, + [2532] = 2166, + [2533] = 1942, + [2534] = 2067, + [2535] = 2125, + [2536] = 1928, + [2537] = 1966, + [2538] = 2022, + [2539] = 2005, + [2540] = 2540, + [2541] = 2541, + [2542] = 2007, + [2543] = 2009, + [2544] = 1975, + [2545] = 1958, + [2546] = 1931, + [2547] = 2123, + [2548] = 1998, + [2549] = 1998, + [2550] = 1943, + [2551] = 253, + [2552] = 1866, + [2553] = 1857, + [2554] = 1858, + [2555] = 1859, + [2556] = 1860, + [2557] = 1861, + [2558] = 1862, + [2559] = 1942, + [2560] = 1941, + [2561] = 1968, + [2562] = 2001, + [2563] = 402, + [2564] = 2193, + [2565] = 2200, + [2566] = 2214, + [2567] = 2026, + [2568] = 1994, + [2569] = 2569, + [2570] = 1956, + [2571] = 1961, + [2572] = 2572, + [2573] = 1891, + [2574] = 1891, + [2575] = 1889, + [2576] = 1889, + [2577] = 2067, + [2578] = 1975, + [2579] = 1964, + [2580] = 1963, + [2581] = 2053, + [2582] = 2009, + [2583] = 2001, + [2584] = 402, + [2585] = 2009, + [2586] = 2055, + [2587] = 1942, + [2588] = 1986, + [2589] = 1975, + [2590] = 256, + [2591] = 1963, + [2592] = 1942, + [2593] = 1987, + [2594] = 2042, + [2595] = 2069, + [2596] = 1968, + [2597] = 2026, + [2598] = 2067, + [2599] = 1958, + [2600] = 2033, + [2601] = 2034, + [2602] = 2035, + [2603] = 2036, + [2604] = 2039, + [2605] = 2193, + [2606] = 2184, + [2607] = 2213, + [2608] = 1990, + [2609] = 354, + [2610] = 2200, + [2611] = 1941, + [2612] = 1956, + [2613] = 1959, + [2614] = 2214, + [2615] = 2569, + [2616] = 1941, + [2617] = 2043, + [2618] = 2569, + [2619] = 2046, + [2620] = 2569, + [2621] = 2569, + [2622] = 2569, + [2623] = 2569, + [2624] = 2047, + [2625] = 2048, + [2626] = 1964, + [2627] = 1964, + [2628] = 2628, + [2629] = 2629, + [2630] = 401, + [2631] = 2631, + [2632] = 2632, + [2633] = 2633, + [2634] = 1965, + [2635] = 2540, + [2636] = 469, + [2637] = 2637, + [2638] = 470, + [2639] = 1866, + [2640] = 2640, + [2641] = 1994, + [2642] = 2042, + [2643] = 2042, + [2644] = 2069, + [2645] = 2633, + [2646] = 2646, + [2647] = 2647, + [2648] = 2648, [2649] = 2649, - [2650] = 2605, - [2651] = 1626, - [2652] = 2227, - [2653] = 2228, - [2654] = 1771, - [2655] = 1626, - [2656] = 1622, - [2657] = 2649, - [2658] = 2214, - [2659] = 2604, - [2660] = 1885, - [2661] = 2154, - [2662] = 2220, - [2663] = 2205, - [2664] = 2649, - [2665] = 2222, - [2666] = 2154, - [2667] = 2213, - [2668] = 2214, - [2669] = 2205, - [2670] = 2222, - [2671] = 2225, - [2672] = 2225, - [2673] = 2265, - [2674] = 2241, - [2675] = 1844, - [2676] = 2605, - [2677] = 2219, - [2678] = 2209, - [2679] = 1745, - [2680] = 1846, - [2681] = 2246, - [2682] = 1752, - [2683] = 2649, - [2684] = 2241, - [2685] = 2220, - [2686] = 1843, - [2687] = 1769, - [2688] = 2604, - [2689] = 1873, - [2690] = 2216, - [2691] = 2227, - [2692] = 2228, - [2693] = 2604, - [2694] = 2213, - [2695] = 2209, - [2696] = 2605, - [2697] = 2443, - [2698] = 2219, - [2699] = 2287, - [2700] = 2213, - [2701] = 1626, - [2702] = 2225, - [2703] = 2703, - [2704] = 286, - [2705] = 1572, - [2706] = 1843, - [2707] = 1844, - [2708] = 2272, - [2709] = 2709, - [2710] = 2241, - [2711] = 2214, - [2712] = 2310, - [2713] = 2216, - [2714] = 2292, - [2715] = 2293, - [2716] = 2220, - [2717] = 1568, - [2718] = 1883, - [2719] = 1887, - [2720] = 1626, - [2721] = 2209, - [2722] = 2311, - [2723] = 2302, - [2724] = 2724, - [2725] = 2228, - [2726] = 1846, - [2727] = 1571, - [2728] = 1873, - [2729] = 2729, - [2730] = 2306, - [2731] = 1885, - [2732] = 2050, - [2733] = 1623, - [2734] = 1573, - [2735] = 1873, - [2736] = 1574, - [2737] = 1575, - [2738] = 2442, - [2739] = 1881, - [2740] = 2289, - [2741] = 272, - [2742] = 1882, - [2743] = 2227, - [2744] = 2239, - [2745] = 2205, - [2746] = 1885, - [2747] = 2313, - [2748] = 2308, - [2749] = 2295, - [2750] = 2222, - [2751] = 2751, - [2752] = 1886, - [2753] = 2753, - [2754] = 2299, - [2755] = 1883, - [2756] = 1570, - [2757] = 1571, - [2758] = 2758, - [2759] = 2759, + [2650] = 2650, + [2651] = 1891, + [2652] = 2652, + [2653] = 2043, + [2654] = 1889, + [2655] = 1855, + [2656] = 2656, + [2657] = 2657, + [2658] = 2046, + [2659] = 2033, + [2660] = 1857, + [2661] = 1858, + [2662] = 1859, + [2663] = 2034, + [2664] = 2664, + [2665] = 472, + [2666] = 473, + [2667] = 2035, + [2668] = 2036, + [2669] = 1853, + [2670] = 1986, + [2671] = 2540, + [2672] = 1987, + [2673] = 2541, + [2674] = 2047, + [2675] = 2048, + [2676] = 2676, + [2677] = 1954, + [2678] = 1972, + [2679] = 2043, + [2680] = 2035, + [2681] = 1990, + [2682] = 2046, + [2683] = 474, + [2684] = 2047, + [2685] = 2048, + [2686] = 529, + [2687] = 2687, + [2688] = 1860, + [2689] = 1861, + [2690] = 1862, + [2691] = 391, + [2692] = 510, + [2693] = 397, + [2694] = 2053, + [2695] = 382, + [2696] = 387, + [2697] = 2055, + [2698] = 2698, + [2699] = 1994, + [2700] = 513, + [2701] = 2701, + [2702] = 2702, + [2703] = 1998, + [2704] = 1974, + [2705] = 518, + [2706] = 519, + [2707] = 2069, + [2708] = 2036, + [2709] = 364, + [2710] = 520, + [2711] = 2711, + [2712] = 521, + [2713] = 522, + [2714] = 524, + [2715] = 526, + [2716] = 375, + [2717] = 2034, + [2718] = 403, + [2719] = 528, + [2720] = 404, + [2721] = 2541, + [2722] = 2633, + [2723] = 2071, + [2724] = 361, + [2725] = 408, + [2726] = 367, + [2727] = 413, + [2728] = 2077, + [2729] = 414, + [2730] = 2730, + [2731] = 415, + [2732] = 2732, + [2733] = 2053, + [2734] = 416, + [2735] = 417, + [2736] = 462, + [2737] = 418, + [2738] = 419, + [2739] = 374, + [2740] = 420, + [2741] = 421, + [2742] = 2742, + [2743] = 2055, + [2744] = 2633, + [2745] = 2033, + [2746] = 2746, + [2747] = 426, + [2748] = 2748, + [2749] = 2022, + [2750] = 2750, + [2751] = 432, + [2752] = 435, + [2753] = 436, + [2754] = 2754, + [2755] = 438, + [2756] = 439, + [2757] = 440, + [2758] = 441, + [2759] = 442, [2760] = 2760, - [2761] = 1949, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 1917, - [2767] = 1914, - [2768] = 1572, - [2769] = 1568, - [2770] = 1570, - [2771] = 1573, - [2772] = 2498, - [2773] = 1574, - [2774] = 1575, - [2775] = 1843, - [2776] = 2776, + [2761] = 444, + [2762] = 2156, + [2763] = 445, + [2764] = 446, + [2765] = 398, + [2766] = 2090, + [2767] = 2767, + [2768] = 2093, + [2769] = 400, + [2770] = 2540, + [2771] = 2771, + [2772] = 2541, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2098, [2777] = 2777, - [2778] = 2778, - [2779] = 1924, - [2780] = 1932, - [2781] = 1929, - [2782] = 1633, - [2783] = 1941, - [2784] = 1963, - [2785] = 1844, - [2786] = 2443, - [2787] = 2787, - [2788] = 1964, - [2789] = 1752, - [2790] = 1965, - [2791] = 1885, - [2792] = 1966, - [2793] = 1900, - [2794] = 2544, - [2795] = 1883, - [2796] = 1970, - [2797] = 1968, - [2798] = 1971, - [2799] = 1846, - [2800] = 1634, - [2801] = 2516, - [2802] = 1972, - [2803] = 1973, - [2804] = 2239, - [2805] = 1769, - [2806] = 1881, - [2807] = 2442, - [2808] = 1978, - [2809] = 1942, - [2810] = 1946, - [2811] = 1977, - [2812] = 1967, - [2813] = 1948, - [2814] = 1936, - [2815] = 1950, - [2816] = 1951, - [2817] = 1939, - [2818] = 1745, - [2819] = 1921, - [2820] = 1940, - [2821] = 1901, - [2822] = 1902, - [2823] = 1934, - [2824] = 1935, - [2825] = 1947, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 1771, - [2830] = 1937, - [2831] = 2831, - [2832] = 2832, - [2833] = 1903, - [2834] = 1938, - [2835] = 2835, - [2836] = 2836, - [2837] = 1905, - [2838] = 2838, + [2778] = 455, + [2779] = 456, + [2780] = 2780, + [2781] = 457, + [2782] = 2109, + [2783] = 458, + [2784] = 459, + [2785] = 460, + [2786] = 2786, + [2787] = 464, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, + [2791] = 2791, + [2792] = 1975, + [2793] = 450, + [2794] = 2071, + [2795] = 1853, + [2796] = 2428, + [2797] = 1998, + [2798] = 2466, + [2799] = 2799, + [2800] = 2098, + [2801] = 2109, + [2802] = 2067, + [2803] = 2428, + [2804] = 1972, + [2805] = 349, + [2806] = 2093, + [2807] = 2214, + [2808] = 2077, + [2809] = 2090, + [2810] = 2109, + [2811] = 1853, + [2812] = 306, + [2813] = 2077, + [2814] = 1963, + [2815] = 2066, + [2816] = 2465, + [2817] = 2465, + [2818] = 2093, + [2819] = 1964, + [2820] = 302, + [2821] = 306, + [2822] = 347, + [2823] = 2090, + [2824] = 1995, + [2825] = 1968, + [2826] = 2009, + [2827] = 2071, + [2828] = 2466, + [2829] = 2001, + [2830] = 1853, + [2831] = 347, + [2832] = 2063, + [2833] = 2098, + [2834] = 2049, + [2835] = 1975, + [2836] = 302, + [2837] = 2026, + [2838] = 1965, [2839] = 2839, - [2840] = 1919, - [2841] = 2225, - [2842] = 2265, - [2843] = 2843, - [2844] = 2844, + [2840] = 1956, + [2841] = 349, + [2842] = 2069, + [2843] = 2033, + [2844] = 2428, [2845] = 2845, - [2846] = 2843, - [2847] = 2843, - [2848] = 2199, - [2849] = 2213, - [2850] = 2850, - [2851] = 2050, - [2852] = 1873, - [2853] = 2853, - [2854] = 2239, - [2855] = 2205, - [2856] = 2246, - [2857] = 2227, - [2858] = 2222, - [2859] = 2845, - [2860] = 2843, - [2861] = 2214, - [2862] = 2216, - [2863] = 2845, - [2864] = 2209, - [2865] = 2843, - [2866] = 2866, - [2867] = 2154, - [2868] = 2845, - [2869] = 2604, - [2870] = 2050, - [2871] = 2844, - [2872] = 2843, - [2873] = 2605, - [2874] = 2845, - [2875] = 2843, - [2876] = 2246, - [2877] = 2219, - [2878] = 2265, - [2879] = 2845, - [2880] = 2220, - [2881] = 1873, - [2882] = 2844, - [2883] = 2845, - [2884] = 2844, - [2885] = 2844, - [2886] = 2866, - [2887] = 2844, - [2888] = 2228, - [2889] = 2844, - [2890] = 2241, - [2891] = 2050, - [2892] = 2223, - [2893] = 2208, - [2894] = 2850, + [2846] = 2034, + [2847] = 1891, + [2848] = 1956, + [2849] = 2465, + [2850] = 2073, + [2851] = 2074, + [2852] = 2035, + [2853] = 2036, + [2854] = 1974, + [2855] = 2026, + [2856] = 2063, + [2857] = 2465, + [2858] = 2466, + [2859] = 1855, + [2860] = 2078, + [2861] = 2079, + [2862] = 2080, + [2863] = 2066, + [2864] = 2864, + [2865] = 1853, + [2866] = 2002, + [2867] = 2867, + [2868] = 2126, + [2869] = 2127, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2114, + [2874] = 2067, + [2875] = 2117, + [2876] = 2084, + [2877] = 2118, + [2878] = 2085, + [2879] = 1853, + [2880] = 1853, + [2881] = 2466, + [2882] = 2882, + [2883] = 2883, + [2884] = 1853, + [2885] = 2049, + [2886] = 1889, + [2887] = 1994, + [2888] = 2428, + [2889] = 2889, + [2890] = 2890, + [2891] = 256, + [2892] = 2420, + [2893] = 2893, + [2894] = 2043, [2895] = 2895, - [2896] = 2763, + [2896] = 2046, [2897] = 2897, - [2898] = 2898, - [2899] = 2898, - [2900] = 2898, - [2901] = 2901, - [2902] = 2901, - [2903] = 2866, - [2904] = 2306, - [2905] = 2898, - [2906] = 1576, - [2907] = 2154, - [2908] = 2908, - [2909] = 1268, - [2910] = 2908, - [2911] = 1885, - [2912] = 2897, - [2913] = 2901, - [2914] = 2443, - [2915] = 2208, - [2916] = 2908, - [2917] = 2238, - [2918] = 2827, - [2919] = 2832, - [2920] = 2898, - [2921] = 2866, - [2922] = 2289, - [2923] = 2764, - [2924] = 2224, - [2925] = 2898, - [2926] = 2901, - [2927] = 2295, - [2928] = 2908, - [2929] = 2199, - [2930] = 2866, - [2931] = 2302, - [2932] = 2272, - [2933] = 2866, - [2934] = 2853, - [2935] = 2765, - [2936] = 2831, - [2937] = 2937, - [2938] = 2265, - [2939] = 2415, - [2940] = 2313, - [2941] = 2897, - [2942] = 2246, - [2943] = 2943, - [2944] = 2897, - [2945] = 2908, - [2946] = 2299, - [2947] = 2908, - [2948] = 2898, - [2949] = 2897, - [2950] = 2898, - [2951] = 2287, - [2952] = 2442, - [2953] = 2898, - [2954] = 2895, - [2955] = 2901, - [2956] = 2776, - [2957] = 2908, - [2958] = 2311, - [2959] = 2835, - [2960] = 2836, - [2961] = 2212, - [2962] = 2762, - [2963] = 2838, - [2964] = 2897, - [2965] = 2242, - [2966] = 2866, - [2967] = 2292, - [2968] = 2210, - [2969] = 2293, - [2970] = 2199, - [2971] = 1268, - [2972] = 2898, - [2973] = 2308, - [2974] = 2839, - [2975] = 2866, - [2976] = 2758, - [2977] = 2908, - [2978] = 2310, - [2979] = 2901, - [2980] = 2230, - [2981] = 2897, - [2982] = 2828, - [2983] = 2897, - [2984] = 2759, - [2985] = 2760, - [2986] = 2777, - [2987] = 2897, - [2988] = 2778, - [2989] = 2901, - [2990] = 2240, - [2991] = 2442, - [2992] = 2897, - [2993] = 2895, - [2994] = 2908, - [2995] = 2908, - [2996] = 2231, - [2997] = 2443, - [2998] = 2901, - [2999] = 2901, - [3000] = 2901, - [3001] = 2765, - [3002] = 2275, - [3003] = 1963, - [3004] = 1966, - [3005] = 2223, - [3006] = 1576, - [3007] = 2210, - [3008] = 2242, - [3009] = 2262, - [3010] = 2866, - [3011] = 2277, - [3012] = 1576, - [3013] = 3013, - [3014] = 2866, - [3015] = 1978, - [3016] = 2866, - [3017] = 1948, - [3018] = 3018, - [3019] = 1940, - [3020] = 2866, - [3021] = 2866, - [3022] = 3022, - [3023] = 864, - [3024] = 3024, - [3025] = 2787, - [3026] = 2276, - [3027] = 2308, - [3028] = 2302, - [3029] = 2831, - [3030] = 1936, - [3031] = 2832, - [3032] = 2776, - [3033] = 2777, - [3034] = 2778, - [3035] = 3024, - [3036] = 2250, - [3037] = 2306, - [3038] = 2311, - [3039] = 2310, - [3040] = 2208, - [3041] = 2224, - [3042] = 2289, - [3043] = 1268, - [3044] = 2313, - [3045] = 2295, - [3046] = 2231, - [3047] = 2866, - [3048] = 3024, - [3049] = 2299, - [3050] = 2238, - [3051] = 2287, - [3052] = 2240, - [3053] = 3024, - [3054] = 3024, - [3055] = 3055, - [3056] = 2866, - [3057] = 3055, - [3058] = 2310, - [3059] = 1625, - [3060] = 3060, - [3061] = 1655, - [3062] = 2827, - [3063] = 2313, - [3064] = 2287, - [3065] = 3013, - [3066] = 2292, - [3067] = 2293, - [3068] = 2828, - [3069] = 851, - [3070] = 3070, - [3071] = 2835, - [3072] = 2836, - [3073] = 2838, - [3074] = 2839, - [3075] = 2758, - [3076] = 2759, - [3077] = 2760, - [3078] = 3060, - [3079] = 2285, - [3080] = 2866, - [3081] = 2866, - [3082] = 2866, - [3083] = 2866, - [3084] = 2302, - [3085] = 3013, - [3086] = 2306, - [3087] = 2289, - [3088] = 3060, - [3089] = 2295, - [3090] = 3013, - [3091] = 2762, - [3092] = 3060, - [3093] = 2292, - [3094] = 2293, - [3095] = 3024, - [3096] = 2866, - [3097] = 2763, - [3098] = 3060, - [3099] = 2764, - [3100] = 3060, - [3101] = 2311, - [3102] = 2299, - [3103] = 3060, - [3104] = 2212, - [3105] = 1923, - [3106] = 2239, - [3107] = 2230, - [3108] = 3055, - [3109] = 854, - [3110] = 2308, - [3111] = 2836, - [3112] = 2407, - [3113] = 2305, - [3114] = 2338, - [3115] = 2758, - [3116] = 2334, - [3117] = 2831, - [3118] = 2763, - [3119] = 1883, - [3120] = 2407, - [3121] = 2759, - [3122] = 2760, - [3123] = 2777, - [3124] = 2778, - [3125] = 2297, - [3126] = 2407, - [3127] = 2764, - [3128] = 1923, - [3129] = 2346, - [3130] = 2347, - [3131] = 2325, - [3132] = 2381, - [3133] = 2832, - [3134] = 2350, - [3135] = 2407, - [3136] = 2753, - [3137] = 2290, - [3138] = 2275, - [3139] = 2199, - [3140] = 2765, - [3141] = 2277, - [3142] = 2276, - [3143] = 2250, - [3144] = 3022, - [3145] = 2850, - [3146] = 2325, - [3147] = 1708, - [3148] = 2407, - [3149] = 1963, - [3150] = 2853, - [3151] = 1966, - [3152] = 2154, - [3153] = 1268, - [3154] = 2866, - [3155] = 2265, - [3156] = 2866, - [3157] = 2285, - [3158] = 1978, - [3159] = 1948, - [3160] = 1940, - [3161] = 2776, - [3162] = 3162, - [3163] = 2827, - [3164] = 2399, - [3165] = 2618, - [3166] = 2835, - [3167] = 1887, - [3168] = 2828, - [3169] = 1936, - [3170] = 2838, - [3171] = 2762, - [3172] = 1722, - [3173] = 2839, - [3174] = 2262, - [3175] = 1726, - [3176] = 1576, - [3177] = 2246, - [3178] = 1882, - [3179] = 2764, - [3180] = 2407, - [3181] = 2407, - [3182] = 2474, - [3183] = 2827, - [3184] = 1965, - [3185] = 1641, - [3186] = 1646, - [3187] = 1643, - [3188] = 1937, - [3189] = 2828, - [3190] = 2299, - [3191] = 2489, - [3192] = 1938, - [3193] = 1941, - [3194] = 2208, - [3195] = 3195, - [3196] = 2776, - [3197] = 2399, - [3198] = 2835, - [3199] = 2836, - [3200] = 2838, - [3201] = 2839, - [3202] = 2758, - [3203] = 2759, - [3204] = 3204, - [3205] = 2760, - [3206] = 2777, - [3207] = 2778, - [3208] = 1970, - [3209] = 1908, - [3210] = 1912, - [3211] = 1930, - [3212] = 2381, - [3213] = 1977, - [3214] = 1650, - [3215] = 2308, - [3216] = 2509, - [3217] = 2425, - [3218] = 1887, - [3219] = 2429, - [3220] = 2762, - [3221] = 1967, - [3222] = 3204, - [3223] = 2380, - [3224] = 2432, - [3225] = 1916, - [3226] = 2472, - [3227] = 2763, - [3228] = 2209, - [3229] = 2480, - [3230] = 2764, - [3231] = 2310, - [3232] = 1922, - [3233] = 2290, - [3234] = 3204, - [3235] = 1926, - [3236] = 2765, - [3237] = 2216, - [3238] = 3204, - [3239] = 3204, - [3240] = 1769, - [3241] = 2154, - [3242] = 1900, - [3243] = 3204, - [3244] = 2417, - [3245] = 1924, - [3246] = 2312, - [3247] = 2866, - [3248] = 1929, - [3249] = 3204, - [3250] = 3204, - [3251] = 1647, - [3252] = 1649, - [3253] = 2227, - [3254] = 2228, - [3255] = 2224, - [3256] = 3256, - [3257] = 135, - [3258] = 851, - [3259] = 2461, - [3260] = 1652, - [3261] = 1640, - [3262] = 2334, - [3263] = 2241, - [3264] = 1942, - [3265] = 1882, - [3266] = 1946, - [3267] = 2220, - [3268] = 1968, - [3269] = 2050, - [3270] = 2239, - [3271] = 3271, - [3272] = 1950, - [3273] = 1951, - [3274] = 2474, - [3275] = 1971, - [3276] = 2231, - [3277] = 2339, - [3278] = 1972, - [3279] = 1973, - [3280] = 2313, - [3281] = 136, - [3282] = 2287, - [3283] = 1939, - [3284] = 1921, - [3285] = 1886, - [3286] = 1934, - [3287] = 1935, - [3288] = 2866, - [3289] = 2338, - [3290] = 2831, - [3291] = 2292, - [3292] = 854, - [3293] = 2293, - [3294] = 2866, - [3295] = 2390, - [3296] = 1645, - [3297] = 2311, - [3298] = 1901, - [3299] = 2866, - [3300] = 3300, - [3301] = 2853, - [3302] = 1651, - [3303] = 1902, - [3304] = 2866, - [3305] = 1956, - [3306] = 2415, - [3307] = 1903, - [3308] = 1907, - [3309] = 1947, - [3310] = 2289, - [3311] = 2866, - [3312] = 1905, - [3313] = 1576, - [3314] = 1910, - [3315] = 1949, - [3316] = 1911, - [3317] = 1771, - [3318] = 2325, - [3319] = 2372, - [3320] = 1642, - [3321] = 2346, - [3322] = 3204, - [3323] = 2347, - [3324] = 2489, - [3325] = 2417, - [3326] = 2238, - [3327] = 3256, - [3328] = 1919, - [3329] = 2832, - [3330] = 2350, - [3331] = 2850, - [3332] = 2407, - [3333] = 2866, - [3334] = 2415, - [3335] = 2305, - [3336] = 3336, - [3337] = 2213, - [3338] = 2214, - [3339] = 2205, - [3340] = 2222, - [3341] = 2225, - [3342] = 2579, - [3343] = 2338, - [3344] = 2831, - [3345] = 2346, - [3346] = 2347, - [3347] = 2832, - [3348] = 2350, - [3349] = 2827, - [3350] = 2828, - [3351] = 2776, - [3352] = 2399, - [3353] = 2835, - [3354] = 2836, - [3355] = 2838, - [3356] = 2839, - [3357] = 2758, - [3358] = 2759, - [3359] = 2760, - [3360] = 2777, - [3361] = 2778, - [3362] = 2381, - [3363] = 2762, - [3364] = 2763, - [3365] = 2297, - [3366] = 2765, - [3367] = 1881, - [3368] = 1975, - [3369] = 2240, - [3370] = 1644, - [3371] = 2334, - [3372] = 2302, - [3373] = 1914, - [3374] = 2295, - [3375] = 1964, - [3376] = 1653, - [3377] = 2430, - [3378] = 1917, - [3379] = 1648, - [3380] = 1639, - [3381] = 1932, - [3382] = 3336, - [3383] = 3256, - [3384] = 2219, - [3385] = 3385, - [3386] = 2306, - [3387] = 2866, - [3388] = 1642, - [3389] = 2461, - [3390] = 2485, - [3391] = 2469, - [3392] = 2407, - [3393] = 2479, - [3394] = 2522, - [3395] = 1926, - [3396] = 2437, - [3397] = 2436, - [3398] = 2542, - [3399] = 2476, - [3400] = 2526, - [3401] = 2440, - [3402] = 2407, - [3403] = 1646, - [3404] = 1771, - [3405] = 2277, - [3406] = 1726, - [3407] = 1644, - [3408] = 1653, - [3409] = 2527, - [3410] = 2273, - [3411] = 1978, - [3412] = 2478, - [3413] = 2866, - [3414] = 2487, - [3415] = 1752, - [3416] = 1639, - [3417] = 1948, - [3418] = 1640, - [3419] = 2312, - [3420] = 1940, - [3421] = 2411, - [3422] = 2416, - [3423] = 1645, - [3424] = 2470, - [3425] = 2389, - [3426] = 2380, - [3427] = 2325, - [3428] = 2438, - [3429] = 1924, - [3430] = 1929, - [3431] = 2272, - [3432] = 1923, - [3433] = 1722, - [3434] = 2491, - [3435] = 2499, - [3436] = 2420, - [3437] = 2421, - [3438] = 1939, - [3439] = 1921, - [3440] = 2276, - [3441] = 1934, - [3442] = 1935, - [3443] = 1947, - [3444] = 2372, - [3445] = 1949, - [3446] = 2516, - [3447] = 2378, - [3448] = 2386, - [3449] = 2388, - [3450] = 1917, - [3451] = 2391, - [3452] = 2509, - [3453] = 2474, - [3454] = 1268, - [3455] = 2425, - [3456] = 1745, - [3457] = 2429, - [3458] = 2423, - [3459] = 2432, - [3460] = 2498, - [3461] = 2345, - [3462] = 1964, - [3463] = 1965, - [3464] = 1956, - [3465] = 2250, - [3466] = 3466, - [3467] = 1900, - [3468] = 1968, - [3469] = 1971, - [3470] = 2472, - [3471] = 1641, - [3472] = 1972, - [3473] = 1973, - [3474] = 1907, - [3475] = 1910, - [3476] = 2480, - [3477] = 1911, - [3478] = 3478, - [3479] = 3479, - [3480] = 1936, - [3481] = 1769, - [3482] = 2866, - [3483] = 1908, - [3484] = 2199, - [3485] = 1930, - [3486] = 3466, - [3487] = 2519, - [3488] = 2390, - [3489] = 3478, - [3490] = 1916, - [3491] = 1650, - [3492] = 2407, - [3493] = 1651, - [3494] = 1652, - [3495] = 2367, - [3496] = 2496, - [3497] = 2430, - [3498] = 1643, - [3499] = 1883, - [3500] = 2535, - [3501] = 2441, - [3502] = 2866, - [3503] = 2430, - [3504] = 135, - [3505] = 2866, - [3506] = 1963, - [3507] = 2458, - [3508] = 2465, - [3509] = 1942, - [3510] = 1946, - [3511] = 1950, - [3512] = 1951, - [3513] = 2434, - [3514] = 1901, - [3515] = 1902, - [3516] = 1903, - [3517] = 2853, - [3518] = 1905, - [3519] = 2417, - [3520] = 1919, - [3521] = 2544, - [3522] = 1966, - [3523] = 2415, - [3524] = 2454, - [3525] = 2453, - [3526] = 1922, - [3527] = 2339, - [3528] = 2444, - [3529] = 2428, - [3530] = 2510, - [3531] = 2489, - [3532] = 1937, - [3533] = 1938, - [3534] = 1941, - [3535] = 1970, - [3536] = 136, - [3537] = 1977, - [3538] = 1967, - [3539] = 2787, - [3540] = 1914, - [3541] = 2442, - [3542] = 1932, - [3543] = 2443, - [3544] = 2866, - [3545] = 2447, - [3546] = 2449, - [3547] = 2450, - [3548] = 1708, - [3549] = 1647, - [3550] = 3466, - [3551] = 3478, - [3552] = 1649, - [3553] = 2445, - [3554] = 1648, - [3555] = 2255, - [3556] = 2275, - [3557] = 2521, - [3558] = 1975, - [3559] = 1886, - [3560] = 2494, - [3561] = 2523, - [3562] = 2415, - [3563] = 2466, - [3564] = 851, - [3565] = 2850, - [3566] = 1881, - [3567] = 854, - [3568] = 1912, - [3569] = 1570, - [3570] = 2447, - [3571] = 2778, - [3572] = 2763, - [3573] = 2391, - [3574] = 2765, - [3575] = 2521, - [3576] = 1882, - [3577] = 1843, - [3578] = 1572, - [3579] = 3466, - [3580] = 2350, - [3581] = 2466, - [3582] = 2290, - [3583] = 3478, - [3584] = 1574, - [3585] = 1568, - [3586] = 2445, - [3587] = 2389, - [3588] = 2453, - [3589] = 1571, - [3590] = 2208, - [3591] = 2415, - [3592] = 2485, - [3593] = 2474, - [3594] = 1573, - [3595] = 1574, - [3596] = 2378, - [3597] = 1642, - [3598] = 1575, - [3599] = 3599, - [3600] = 2386, - [3601] = 2415, - [3602] = 2542, - [3603] = 1745, - [3604] = 2523, - [3605] = 1576, - [3606] = 1752, - [3607] = 1844, - [3608] = 2764, - [3609] = 2526, - [3610] = 2417, - [3611] = 2527, - [3612] = 2367, - [3613] = 2489, - [3614] = 2381, - [3615] = 2338, - [3616] = 2441, - [3617] = 2388, - [3618] = 2469, - [3619] = 2831, - [3620] = 1846, - [3621] = 1769, - [3622] = 2438, - [3623] = 1771, - [3624] = 3624, - [3625] = 2420, - [3626] = 2759, - [3627] = 2760, - [3628] = 2436, - [3629] = 2440, - [3630] = 2519, - [3631] = 1653, - [3632] = 1648, - [3633] = 1575, - [3634] = 1647, - [3635] = 1649, - [3636] = 1887, - [3637] = 2510, - [3638] = 2423, - [3639] = 2449, - [3640] = 2450, - [3641] = 2494, - [3642] = 2522, - [3643] = 2273, - [3644] = 1646, - [3645] = 1644, - [3646] = 2509, - [3647] = 2544, - [3648] = 136, - [3649] = 2434, - [3650] = 2478, - [3651] = 2487, - [3652] = 2272, - [3653] = 2411, - [3654] = 2416, - [3655] = 1576, - [3656] = 2425, - [3657] = 2429, - [3658] = 2432, - [3659] = 1639, - [3660] = 2472, + [2898] = 2049, + [2899] = 2049, + [2900] = 2047, + [2901] = 2048, + [2902] = 253, + [2903] = 2903, + [2904] = 2003, + [2905] = 2004, + [2906] = 2005, + [2907] = 2465, + [2908] = 2006, + [2909] = 2007, + [2910] = 2910, + [2911] = 2911, + [2912] = 2466, + [2913] = 2913, + [2914] = 2129, + [2915] = 1889, + [2916] = 2428, + [2917] = 2917, + [2918] = 2111, + [2919] = 2465, + [2920] = 2466, + [2921] = 2428, + [2922] = 2042, + [2923] = 2923, + [2924] = 2924, + [2925] = 2070, + [2926] = 2089, + [2927] = 2465, + [2928] = 2466, + [2929] = 2929, + [2930] = 2091, + [2931] = 2092, + [2932] = 2864, + [2933] = 1855, + [2934] = 2428, + [2935] = 2094, + [2936] = 2095, + [2937] = 2003, + [2938] = 2004, + [2939] = 2053, + [2940] = 2005, + [2941] = 2006, + [2942] = 2112, + [2943] = 2465, + [2944] = 2007, + [2945] = 2097, + [2946] = 2099, + [2947] = 2055, + [2948] = 2100, + [2949] = 2063, + [2950] = 2134, + [2951] = 2951, + [2952] = 2002, + [2953] = 2107, + [2954] = 2108, + [2955] = 2102, + [2956] = 2082, + [2957] = 2086, + [2958] = 2103, + [2959] = 2959, + [2960] = 2960, + [2961] = 2911, + [2962] = 1891, + [2963] = 2120, + [2964] = 2867, + [2965] = 2466, + [2966] = 1855, + [2967] = 2101, + [2968] = 2872, + [2969] = 2104, + [2970] = 1959, + [2971] = 2121, + [2972] = 2012, + [2973] = 2063, + [2974] = 2066, + [2975] = 2959, + [2976] = 2976, + [2977] = 2428, + [2978] = 1853, + [2979] = 2110, + [2980] = 2980, + [2981] = 2126, + [2982] = 2070, + [2983] = 2089, + [2984] = 2012, + [2985] = 1954, + [2986] = 1959, + [2987] = 2126, + [2988] = 1954, + [2989] = 2079, + [2990] = 2080, + [2991] = 402, + [2992] = 1855, + [2993] = 2109, + [2994] = 2110, + [2995] = 2097, + [2996] = 2134, + [2997] = 2111, + [2998] = 2097, + [2999] = 2107, + [3000] = 1968, + [3001] = 2134, + [3002] = 2107, + [3003] = 2108, + [3004] = 2108, + [3005] = 2082, + [3006] = 2086, + [3007] = 2091, + [3008] = 2540, + [3009] = 2112, + [3010] = 2092, + [3011] = 2101, + [3012] = 2082, + [3013] = 2541, + [3014] = 2086, + [3015] = 2084, + [3016] = 1855, + [3017] = 2094, + [3018] = 2085, + [3019] = 2095, + [3020] = 2114, + [3021] = 2092, + [3022] = 2108, + [3023] = 2073, + [3024] = 1855, + [3025] = 354, + [3026] = 2074, + [3027] = 2078, + [3028] = 2079, + [3029] = 2080, + [3030] = 2101, + [3031] = 1972, + [3032] = 2084, + [3033] = 2085, + [3034] = 2099, + [3035] = 2117, + [3036] = 2118, + [3037] = 2100, + [3038] = 354, + [3039] = 2082, + [3040] = 2102, + [3041] = 2103, + [3042] = 1855, + [3043] = 1855, + [3044] = 2091, + [3045] = 2092, + [3046] = 2039, + [3047] = 2101, + [3048] = 2094, + [3049] = 2095, + [3050] = 2099, + [3051] = 2100, + [3052] = 2102, + [3053] = 2103, + [3054] = 2093, + [3055] = 2086, + [3056] = 2127, + [3057] = 2104, + [3058] = 2094, + [3059] = 3059, + [3060] = 2104, + [3061] = 2095, + [3062] = 2127, + [3063] = 2110, + [3064] = 2111, + [3065] = 2112, + [3066] = 2114, + [3067] = 2104, + [3068] = 3068, + [3069] = 2103, + [3070] = 2118, + [3071] = 2129, + [3072] = 2120, + [3073] = 2121, + [3074] = 2129, + [3075] = 1879, + [3076] = 2071, + [3077] = 2073, + [3078] = 2074, + [3079] = 2077, + [3080] = 2078, + [3081] = 2079, + [3082] = 2080, + [3083] = 2097, + [3084] = 1959, + [3085] = 402, + [3086] = 2084, + [3087] = 2085, + [3088] = 2098, + [3089] = 2073, + [3090] = 1899, + [3091] = 2074, + [3092] = 2071, + [3093] = 3093, + [3094] = 2077, + [3095] = 2090, + [3096] = 2099, + [3097] = 3097, + [3098] = 3098, + [3099] = 256, + [3100] = 2070, + [3101] = 1853, + [3102] = 2100, + [3103] = 2110, + [3104] = 2111, + [3105] = 3105, + [3106] = 1879, + [3107] = 2112, + [3108] = 2114, + [3109] = 3109, + [3110] = 2117, + [3111] = 2118, + [3112] = 2091, + [3113] = 2134, + [3114] = 2121, + [3115] = 3115, + [3116] = 3116, + [3117] = 3117, + [3118] = 2089, + [3119] = 2090, + [3120] = 2093, + [3121] = 3121, + [3122] = 3122, + [3123] = 1965, + [3124] = 2098, + [3125] = 2120, + [3126] = 3126, + [3127] = 2121, + [3128] = 2120, + [3129] = 3129, + [3130] = 253, + [3131] = 256, + [3132] = 2109, + [3133] = 402, + [3134] = 253, + [3135] = 2102, + [3136] = 2107, + [3137] = 402, + [3138] = 2070, + [3139] = 2078, + [3140] = 2089, + [3141] = 3141, + [3142] = 2117, + [3143] = 364, + [3144] = 2750, + [3145] = 2760, + [3146] = 435, + [3147] = 2637, + [3148] = 2698, + [3149] = 2664, + [3150] = 1954, + [3151] = 436, + [3152] = 2124, + [3153] = 2777, + [3154] = 2631, + [3155] = 2664, + [3156] = 2746, + [3157] = 2767, + [3158] = 2771, + [3159] = 2774, + [3160] = 2628, + [3161] = 2629, + [3162] = 2687, + [3163] = 520, + [3164] = 2748, + [3165] = 438, + [3166] = 3166, + [3167] = 439, + [3168] = 510, + [3169] = 3169, + [3170] = 1855, + [3171] = 2465, + [3172] = 2128, + [3173] = 2746, + [3174] = 455, + [3175] = 2767, + [3176] = 2130, + [3177] = 2771, + [3178] = 457, + [3179] = 513, + [3180] = 2774, + [3181] = 445, + [3182] = 413, + [3183] = 414, + [3184] = 2628, + [3185] = 2629, + [3186] = 458, + [3187] = 469, + [3188] = 474, + [3189] = 2687, + [3190] = 2702, + [3191] = 2750, + [3192] = 2760, + [3193] = 518, + [3194] = 522, + [3195] = 519, + [3196] = 440, + [3197] = 441, + [3198] = 1969, + [3199] = 442, + [3200] = 438, + [3201] = 521, + [3202] = 522, + [3203] = 3203, + [3204] = 3166, + [3205] = 2646, + [3206] = 2647, + [3207] = 524, + [3208] = 526, + [3209] = 444, + [3210] = 2648, + [3211] = 444, + [3212] = 2649, + [3213] = 2650, + [3214] = 528, + [3215] = 2652, + [3216] = 439, + [3217] = 442, + [3218] = 464, + [3219] = 518, + [3220] = 2656, + [3221] = 440, + [3222] = 2657, + [3223] = 3223, + [3224] = 2790, + [3225] = 470, + [3226] = 2637, + [3227] = 2632, + [3228] = 398, + [3229] = 445, + [3230] = 446, + [3231] = 2698, + [3232] = 400, + [3233] = 2466, + [3234] = 2732, + [3235] = 1954, + [3236] = 426, + [3237] = 375, + [3238] = 521, + [3239] = 1931, + [3240] = 413, + [3241] = 414, + [3242] = 435, + [3243] = 469, + [3244] = 450, + [3245] = 472, + [3246] = 473, + [3247] = 470, + [3248] = 3248, + [3249] = 436, + [3250] = 2428, + [3251] = 1954, + [3252] = 3252, + [3253] = 524, + [3254] = 526, + [3255] = 2702, + [3256] = 455, + [3257] = 456, + [3258] = 457, + [3259] = 2465, + [3260] = 2420, + [3261] = 458, + [3262] = 2063, + [3263] = 2466, + [3264] = 2066, + [3265] = 2786, + [3266] = 432, + [3267] = 398, + [3268] = 2646, + [3269] = 2730, + [3270] = 1965, + [3271] = 374, + [3272] = 400, + [3273] = 441, + [3274] = 528, + [3275] = 1855, + [3276] = 472, + [3277] = 408, + [3278] = 2711, + [3279] = 459, + [3280] = 2647, + [3281] = 519, + [3282] = 2648, + [3283] = 520, + [3284] = 460, + [3285] = 2711, + [3286] = 2789, + [3287] = 2123, + [3288] = 2649, + [3289] = 2650, + [3290] = 2676, + [3291] = 456, + [3292] = 2791, + [3293] = 1972, + [3294] = 415, + [3295] = 2631, + [3296] = 474, + [3297] = 364, + [3298] = 2773, + [3299] = 2652, + [3300] = 529, + [3301] = 2039, + [3302] = 459, + [3303] = 460, + [3304] = 2656, + [3305] = 2657, + [3306] = 473, + [3307] = 2049, + [3308] = 529, + [3309] = 2775, + [3310] = 391, + [3311] = 397, + [3312] = 382, + [3313] = 387, + [3314] = 464, + [3315] = 2132, + [3316] = 2072, + [3317] = 2777, + [3318] = 2075, + [3319] = 415, + [3320] = 2083, + [3321] = 416, + [3322] = 2087, + [3323] = 417, + [3324] = 418, + [3325] = 419, + [3326] = 420, + [3327] = 421, + [3328] = 2428, + [3329] = 416, + [3330] = 417, + [3331] = 401, + [3332] = 401, + [3333] = 1959, + [3334] = 426, + [3335] = 2786, + [3336] = 2789, + [3337] = 513, + [3338] = 2773, + [3339] = 2791, + [3340] = 2022, + [3341] = 418, + [3342] = 2088, + [3343] = 2790, + [3344] = 391, + [3345] = 397, + [3346] = 367, + [3347] = 462, + [3348] = 408, + [3349] = 403, + [3350] = 404, + [3351] = 361, + [3352] = 382, + [3353] = 2775, + [3354] = 387, + [3355] = 419, + [3356] = 420, + [3357] = 374, + [3358] = 421, + [3359] = 2632, + [3360] = 446, + [3361] = 2122, + [3362] = 2125, + [3363] = 2640, + [3364] = 2676, + [3365] = 432, + [3366] = 462, + [3367] = 2730, + [3368] = 375, + [3369] = 450, + [3370] = 403, + [3371] = 510, + [3372] = 404, + [3373] = 361, + [3374] = 2732, + [3375] = 367, + [3376] = 2748, + [3377] = 2640, + [3378] = 1965, + [3379] = 2486, + [3380] = 2097, + [3381] = 2134, + [3382] = 2107, + [3383] = 3383, + [3384] = 2002, + [3385] = 2166, + [3386] = 2108, + [3387] = 2082, + [3388] = 2086, + [3389] = 2002, + [3390] = 2156, + [3391] = 2127, + [3392] = 3392, + [3393] = 2128, + [3394] = 3394, + [3395] = 3395, + [3396] = 2101, + [3397] = 2003, + [3398] = 2004, + [3399] = 2005, + [3400] = 2476, + [3401] = 2006, + [3402] = 2007, + [3403] = 1965, + [3404] = 2439, + [3405] = 3405, + [3406] = 3392, + [3407] = 2130, + [3408] = 1008, + [3409] = 2073, + [3410] = 2074, + [3411] = 1986, + [3412] = 1866, + [3413] = 2078, + [3414] = 3394, + [3415] = 2079, + [3416] = 2080, + [3417] = 2084, + [3418] = 2085, + [3419] = 2122, + [3420] = 2003, + [3421] = 3421, + [3422] = 2127, + [3423] = 1857, + [3424] = 2129, + [3425] = 1969, + [3426] = 2125, + [3427] = 2166, + [3428] = 1858, + [3429] = 1859, + [3430] = 1860, + [3431] = 2088, + [3432] = 2003, + [3433] = 2004, + [3434] = 2166, + [3435] = 1009, + [3436] = 2006, + [3437] = 2007, + [3438] = 1972, + [3439] = 1987, + [3440] = 2002, + [3441] = 2091, + [3442] = 2092, + [3443] = 2094, + [3444] = 2095, + [3445] = 1941, + [3446] = 2420, + [3447] = 2099, + [3448] = 2100, + [3449] = 1861, + [3450] = 2102, + [3451] = 2103, + [3452] = 2104, + [3453] = 2070, + [3454] = 1862, + [3455] = 2420, + [3456] = 1990, + [3457] = 2166, + [3458] = 2004, + [3459] = 2007, + [3460] = 2089, + [3461] = 2126, + [3462] = 1968, + [3463] = 3392, + [3464] = 2124, + [3465] = 2132, + [3466] = 2072, + [3467] = 1959, + [3468] = 2075, + [3469] = 2083, + [3470] = 2087, + [3471] = 2110, + [3472] = 3472, + [3473] = 2111, + [3474] = 2112, + [3475] = 2114, + [3476] = 2117, + [3477] = 2118, + [3478] = 2129, + [3479] = 1855, + [3480] = 2120, + [3481] = 2121, + [3482] = 1942, + [3483] = 2123, + [3484] = 2005, + [3485] = 2006, + [3486] = 1966, + [3487] = 1972, + [3488] = 2005, + [3489] = 2910, + [3490] = 3490, + [3491] = 3491, + [3492] = 3492, + [3493] = 2893, + [3494] = 3494, + [3495] = 3495, + [3496] = 253, + [3497] = 3497, + [3498] = 2976, + [3499] = 2845, + [3500] = 2897, + [3501] = 2890, + [3502] = 2903, + [3503] = 3503, + [3504] = 1860, + [3505] = 3503, + [3506] = 1954, + [3507] = 3507, + [3508] = 2895, + [3509] = 1853, + [3510] = 3510, + [3511] = 3511, + [3512] = 2200, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, + [3517] = 2193, + [3518] = 2200, + [3519] = 2193, + [3520] = 1859, + [3521] = 3521, + [3522] = 3522, + [3523] = 3523, + [3524] = 1861, + [3525] = 3525, + [3526] = 3526, + [3527] = 1857, + [3528] = 3528, + [3529] = 2184, + [3530] = 2213, + [3531] = 2476, + [3532] = 3494, + [3533] = 2039, + [3534] = 1966, + [3535] = 3535, + [3536] = 2742, + [3537] = 2420, + [3538] = 1954, + [3539] = 1998, + [3540] = 3540, + [3541] = 3541, + [3542] = 2788, + [3543] = 3543, + [3544] = 2780, + [3545] = 3545, + [3546] = 2913, + [3547] = 2889, + [3548] = 2200, + [3549] = 3503, + [3550] = 2980, + [3551] = 2193, + [3552] = 2439, + [3553] = 1899, + [3554] = 1969, + [3555] = 1858, + [3556] = 2026, + [3557] = 2486, + [3558] = 2156, + [3559] = 1899, + [3560] = 3560, + [3561] = 1963, + [3562] = 3503, + [3563] = 3503, + [3564] = 2701, + [3565] = 3565, + [3566] = 256, + [3567] = 2951, + [3568] = 2960, + [3569] = 2193, + [3570] = 3570, + [3571] = 3571, + [3572] = 3560, + [3573] = 3573, + [3574] = 2929, + [3575] = 2917, + [3576] = 3576, + [3577] = 2420, + [3578] = 3578, + [3579] = 1986, + [3580] = 3580, + [3581] = 3581, + [3582] = 1995, + [3583] = 1987, + [3584] = 1862, + [3585] = 1998, + [3586] = 3503, + [3587] = 1956, + [3588] = 3588, + [3589] = 1008, + [3590] = 3590, + [3591] = 1866, + [3592] = 3511, + [3593] = 1990, + [3594] = 1009, + [3595] = 3595, + [3596] = 2067, + [3597] = 2200, + [3598] = 3598, + [3599] = 2420, + [3600] = 2476, + [3601] = 1995, + [3602] = 2420, + [3603] = 2486, + [3604] = 3604, + [3605] = 3605, + [3606] = 2420, + [3607] = 3607, + [3608] = 1954, + [3609] = 3166, + [3610] = 2439, + [3611] = 1855, + [3612] = 2184, + [3613] = 2213, + [3614] = 2039, + [3615] = 1899, + [3616] = 3616, + [3617] = 1990, + [3618] = 3618, + [3619] = 1956, + [3620] = 1901, + [3621] = 2420, + [3622] = 1974, + [3623] = 1994, + [3624] = 2067, + [3625] = 2476, + [3626] = 2022, + [3627] = 1963, + [3628] = 2003, + [3629] = 2004, + [3630] = 2005, + [3631] = 2006, + [3632] = 2007, + [3633] = 1896, + [3634] = 1954, + [3635] = 2214, + [3636] = 1974, + [3637] = 2439, + [3638] = 2003, + [3639] = 2004, + [3640] = 2026, + [3641] = 2005, + [3642] = 2006, + [3643] = 2007, + [3644] = 2002, + [3645] = 2002, + [3646] = 1986, + [3647] = 1899, + [3648] = 3648, + [3649] = 1987, + [3650] = 1998, + [3651] = 1896, + [3652] = 2486, + [3653] = 1901, + [3654] = 2420, + [3655] = 3655, + [3656] = 2420, + [3657] = 2005, + [3658] = 1994, + [3659] = 3571, + [3660] = 3166, [3661] = 3661, - [3662] = 2480, - [3663] = 2828, - [3664] = 2777, - [3665] = 2461, - [3666] = 2407, - [3667] = 2498, - [3668] = 1641, - [3669] = 1643, - [3670] = 2535, - [3671] = 1650, - [3672] = 1651, - [3673] = 1652, - [3674] = 2470, - [3675] = 2345, - [3676] = 2491, - [3677] = 1572, - [3678] = 2347, - [3679] = 135, - [3680] = 2454, - [3681] = 2499, - [3682] = 2421, - [3683] = 2346, - [3684] = 1568, - [3685] = 2458, - [3686] = 1570, - [3687] = 2465, - [3688] = 2444, - [3689] = 2827, - [3690] = 1571, - [3691] = 2937, - [3692] = 2428, - [3693] = 2479, - [3694] = 2437, - [3695] = 2255, - [3696] = 2476, - [3697] = 2415, - [3698] = 1573, - [3699] = 3699, - [3700] = 2776, - [3701] = 2516, - [3702] = 2496, - [3703] = 2832, - [3704] = 2399, - [3705] = 2943, - [3706] = 2415, - [3707] = 2835, - [3708] = 1640, - [3709] = 1645, - [3710] = 2836, - [3711] = 2838, - [3712] = 2839, - [3713] = 3713, - [3714] = 2290, - [3715] = 2758, - [3716] = 2762, + [3662] = 3662, + [3663] = 3570, + [3664] = 2006, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 2039, + [3670] = 1931, + [3671] = 2009, + [3672] = 2788, + [3673] = 3673, + [3674] = 2742, + [3675] = 3675, + [3676] = 3571, + [3677] = 3677, + [3678] = 3678, + [3679] = 2039, + [3680] = 3680, + [3681] = 1968, + [3682] = 2026, + [3683] = 1965, + [3684] = 3684, + [3685] = 3685, + [3686] = 3662, + [3687] = 2001, + [3688] = 1954, + [3689] = 3689, + [3690] = 1972, + [3691] = 2007, + [3692] = 3570, + [3693] = 2004, + [3694] = 2001, + [3695] = 3695, + [3696] = 3696, + [3697] = 1965, + [3698] = 3698, + [3699] = 3570, + [3700] = 3571, + [3701] = 3662, + [3702] = 3702, + [3703] = 2012, + [3704] = 2780, + [3705] = 2214, + [3706] = 3706, + [3707] = 2002, + [3708] = 2701, + [3709] = 1965, + [3710] = 1972, + [3711] = 3711, + [3712] = 2067, + [3713] = 2009, + [3714] = 1972, + [3715] = 1918, + [3716] = 1931, [3717] = 3717, - [3718] = 1745, - [3719] = 1752, - [3720] = 2347, - [3721] = 2470, - [3722] = 2787, - [3723] = 1769, - [3724] = 1576, - [3725] = 1771, - [3726] = 3717, + [3718] = 2022, + [3719] = 1918, + [3720] = 2003, + [3721] = 2780, + [3722] = 3722, + [3723] = 3723, + [3724] = 3166, + [3725] = 2053, + [3726] = 2047, [3727] = 3727, - [3728] = 3466, - [3729] = 3478, - [3730] = 1964, - [3731] = 1965, - [3732] = 1900, - [3733] = 1968, - [3734] = 1971, - [3735] = 1972, - [3736] = 1973, + [3728] = 2033, + [3729] = 3729, + [3730] = 2046, + [3731] = 2055, + [3732] = 2035, + [3733] = 2476, + [3734] = 1899, + [3735] = 2701, + [3736] = 1942, [3737] = 3737, [3738] = 3738, - [3739] = 1924, - [3740] = 2399, - [3741] = 3717, - [3742] = 1929, - [3743] = 2338, - [3744] = 1883, - [3745] = 2853, - [3746] = 1873, - [3747] = 3717, - [3748] = 1923, - [3749] = 1622, + [3739] = 2036, + [3740] = 3740, + [3741] = 3741, + [3742] = 3742, + [3743] = 2035, + [3744] = 3744, + [3745] = 3745, + [3746] = 2034, + [3747] = 2077, + [3748] = 3748, + [3749] = 3749, [3750] = 3750, - [3751] = 3751, - [3752] = 2381, + [3751] = 2788, + [3752] = 2742, [3753] = 3753, - [3754] = 1939, - [3755] = 3717, - [3756] = 1921, - [3757] = 2209, - [3758] = 2216, - [3759] = 1934, - [3760] = 1935, - [3761] = 3717, - [3762] = 1942, - [3763] = 1946, - [3764] = 3717, - [3765] = 2227, - [3766] = 2228, - [3767] = 1950, - [3768] = 1951, - [3769] = 3717, - [3770] = 1901, - [3771] = 1902, - [3772] = 3772, - [3773] = 3717, - [3774] = 1903, - [3775] = 3717, - [3776] = 3717, - [3777] = 2213, - [3778] = 3717, - [3779] = 1905, - [3780] = 2214, - [3781] = 2205, - [3782] = 2222, - [3783] = 2225, - [3784] = 1919, - [3785] = 2219, - [3786] = 2850, - [3787] = 3737, - [3788] = 2241, + [3754] = 3754, + [3755] = 3755, + [3756] = 3756, + [3757] = 3757, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 3761, + [3762] = 2047, + [3763] = 3560, + [3764] = 2090, + [3765] = 3765, + [3766] = 3766, + [3767] = 3738, + [3768] = 3768, + [3769] = 2780, + [3770] = 3770, + [3771] = 2066, + [3772] = 1941, + [3773] = 3560, + [3774] = 2033, + [3775] = 3775, + [3776] = 3776, + [3777] = 3777, + [3778] = 2036, + [3779] = 3711, + [3780] = 3780, + [3781] = 3781, + [3782] = 3782, + [3783] = 3783, + [3784] = 3784, + [3785] = 1942, + [3786] = 3786, + [3787] = 2046, + [3788] = 2109, [3789] = 3789, [3790] = 3790, - [3791] = 3738, - [3792] = 2220, - [3793] = 3793, - [3794] = 3727, - [3795] = 1881, - [3796] = 2050, - [3797] = 3717, - [3798] = 1947, - [3799] = 3717, - [3800] = 1949, - [3801] = 3753, - [3802] = 1937, - [3803] = 1938, + [3791] = 3791, + [3792] = 2788, + [3793] = 2043, + [3794] = 3794, + [3795] = 2043, + [3796] = 3796, + [3797] = 2034, + [3798] = 2486, + [3799] = 3744, + [3800] = 2439, + [3801] = 2098, + [3802] = 3166, + [3803] = 3803, [3804] = 3738, - [3805] = 1941, - [3806] = 2442, - [3807] = 3727, - [3808] = 3717, - [3809] = 2443, - [3810] = 3810, - [3811] = 3737, - [3812] = 3738, - [3813] = 2350, - [3814] = 3727, - [3815] = 3717, - [3816] = 3737, - [3817] = 3738, - [3818] = 3727, - [3819] = 3717, - [3820] = 3737, - [3821] = 1970, - [3822] = 3738, - [3823] = 1977, - [3824] = 1967, - [3825] = 3727, - [3826] = 3717, - [3827] = 3738, - [3828] = 3727, - [3829] = 3738, - [3830] = 3727, - [3831] = 3738, - [3832] = 3727, - [3833] = 2434, - [3834] = 3751, - [3835] = 1917, - [3836] = 3772, - [3837] = 2265, - [3838] = 2246, - [3839] = 1914, - [3840] = 1932, - [3841] = 2380, - [3842] = 3751, - [3843] = 3772, - [3844] = 2526, - [3845] = 3751, - [3846] = 3772, - [3847] = 3751, - [3848] = 3772, - [3849] = 3751, - [3850] = 3772, - [3851] = 3751, - [3852] = 3772, - [3853] = 3751, - [3854] = 3772, - [3855] = 3751, - [3856] = 3772, - [3857] = 3750, - [3858] = 3753, - [3859] = 3859, - [3860] = 3860, - [3861] = 2380, - [3862] = 3717, - [3863] = 2444, - [3864] = 3750, - [3865] = 3753, - [3866] = 2346, - [3867] = 3750, - [3868] = 3753, - [3869] = 3750, - [3870] = 3753, - [3871] = 3750, - [3872] = 3737, - [3873] = 1652, - [3874] = 135, - [3875] = 2485, - [3876] = 3876, - [3877] = 2479, - [3878] = 2466, - [3879] = 2496, - [3880] = 2420, - [3881] = 1640, - [3882] = 1645, - [3883] = 2416, - [3884] = 2521, - [3885] = 2523, - [3886] = 3876, - [3887] = 3876, - [3888] = 2436, - [3889] = 2440, - [3890] = 1653, - [3891] = 3876, - [3892] = 3892, - [3893] = 3478, - [3894] = 2444, - [3895] = 3876, - [3896] = 3876, - [3897] = 1745, - [3898] = 1752, - [3899] = 3876, - [3900] = 2458, - [3901] = 2442, - [3902] = 1641, - [3903] = 1643, - [3904] = 1647, - [3905] = 3876, - [3906] = 2458, - [3907] = 2465, - [3908] = 3876, - [3909] = 1644, - [3910] = 3466, - [3911] = 3478, - [3912] = 1649, - [3913] = 2443, - [3914] = 2498, - [3915] = 3876, - [3916] = 2434, - [3917] = 2527, - [3918] = 2273, - [3919] = 1639, - [3920] = 2499, - [3921] = 3876, - [3922] = 2441, - [3923] = 3876, - [3924] = 1648, - [3925] = 3876, - [3926] = 2465, - [3927] = 2521, - [3928] = 3300, - [3929] = 2441, - [3930] = 3876, - [3931] = 3876, - [3932] = 2447, - [3933] = 1268, - [3934] = 2449, - [3935] = 2445, - [3936] = 2450, - [3937] = 3876, - [3938] = 2494, - [3939] = 3876, - [3940] = 2494, - [3941] = 2522, - [3942] = 3876, - [3943] = 2496, - [3944] = 2447, - [3945] = 2449, - [3946] = 2450, - [3947] = 2544, - [3948] = 2523, - [3949] = 2436, - [3950] = 2421, - [3951] = 1646, - [3952] = 2440, - [3953] = 2542, - [3954] = 2510, - [3955] = 2308, - [3956] = 2310, - [3957] = 2466, - [3958] = 2313, - [3959] = 2287, - [3960] = 136, - [3961] = 2292, - [3962] = 2293, - [3963] = 2302, - [3964] = 2306, - [3965] = 2289, - [3966] = 2295, - [3967] = 2311, - [3968] = 2299, - [3969] = 1769, - [3970] = 1642, - [3971] = 1771, - [3972] = 2542, - [3973] = 3876, - [3974] = 2526, - [3975] = 2527, - [3976] = 2478, - [3977] = 2487, - [3978] = 2411, - [3979] = 2411, - [3980] = 2416, - [3981] = 3466, - [3982] = 2516, - [3983] = 2255, - [3984] = 2479, - [3985] = 3876, - [3986] = 2470, - [3987] = 2445, - [3988] = 2438, - [3989] = 2510, - [3990] = 2478, - [3991] = 2491, - [3992] = 2499, - [3993] = 2420, - [3994] = 2421, - [3995] = 2522, - [3996] = 2485, - [3997] = 2438, - [3998] = 2491, - [3999] = 3876, - [4000] = 2519, - [4001] = 1650, - [4002] = 1885, - [4003] = 1651, - [4004] = 2487, - [4005] = 2519, - [4006] = 4006, - [4007] = 2050, - [4008] = 4006, - [4009] = 4009, - [4010] = 3466, - [4011] = 3478, - [4012] = 2154, - [4013] = 4009, - [4014] = 4006, - [4015] = 4006, - [4016] = 4009, - [4017] = 4009, - [4018] = 4006, - [4019] = 1745, - [4020] = 2239, - [4021] = 4009, - [4022] = 4006, - [4023] = 4023, - [4024] = 2154, - [4025] = 2240, - [4026] = 2238, - [4027] = 4023, - [4028] = 1613, - [4029] = 1752, - [4030] = 4006, - [4031] = 3466, - [4032] = 1771, - [4033] = 4023, - [4034] = 4009, - [4035] = 4023, - [4036] = 4006, - [4037] = 4037, - [4038] = 1769, - [4039] = 2231, - [4040] = 3478, - [4041] = 4023, - [4042] = 4006, - [4043] = 4009, - [4044] = 4009, - [4045] = 2224, - [4046] = 4023, - [4047] = 4009, - [4048] = 4023, - [4049] = 4023, - [4050] = 1576, - [4051] = 4009, - [4052] = 4023, - [4053] = 4023, - [4054] = 4037, - [4055] = 4006, - [4056] = 2265, - [4057] = 1883, - [4058] = 3478, - [4059] = 2154, - [4060] = 4060, - [4061] = 3466, - [4062] = 2276, - [4063] = 3466, - [4064] = 2250, - [4065] = 2442, - [4066] = 2275, - [4067] = 3466, - [4068] = 2272, - [4069] = 2443, - [4070] = 3478, - [4071] = 3478, - [4072] = 3466, - [4073] = 2277, - [4074] = 2199, - [4075] = 3478, - [4076] = 2246, - [4077] = 4077, - [4078] = 4077, - [4079] = 2295, - [4080] = 4077, - [4081] = 3478, - [4082] = 4082, - [4083] = 2299, + [3805] = 2701, + [3806] = 3806, + [3807] = 3560, + [3808] = 3808, + [3809] = 3809, + [3810] = 3740, + [3811] = 3811, + [3812] = 3790, + [3813] = 3744, + [3814] = 3814, + [3815] = 3815, + [3816] = 2053, + [3817] = 3817, + [3818] = 2042, + [3819] = 3819, + [3820] = 3740, + [3821] = 3821, + [3822] = 2048, + [3823] = 3823, + [3824] = 3824, + [3825] = 3825, + [3826] = 2071, + [3827] = 3827, + [3828] = 3738, + [3829] = 3829, + [3830] = 3830, + [3831] = 3790, + [3832] = 2042, + [3833] = 2055, + [3834] = 2048, + [3835] = 2069, + [3836] = 2742, + [3837] = 2069, + [3838] = 3744, + [3839] = 3839, + [3840] = 1941, + [3841] = 3841, + [3842] = 3740, + [3843] = 2093, + [3844] = 3844, + [3845] = 3790, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 3849, + [3850] = 2788, + [3851] = 1966, + [3852] = 1969, + [3853] = 1943, + [3854] = 2049, + [3855] = 1961, + [3856] = 1958, + [3857] = 2002, + [3858] = 1966, + [3859] = 3711, + [3860] = 2022, + [3861] = 3861, + [3862] = 1928, + [3863] = 2166, + [3864] = 1969, + [3865] = 2166, + [3866] = 2780, + [3867] = 1959, + [3868] = 2701, + [3869] = 2742, + [3870] = 2780, + [3871] = 3741, + [3872] = 3742, + [3873] = 1959, + [3874] = 1942, + [3875] = 1941, + [3876] = 3749, + [3877] = 3757, + [3878] = 3782, + [3879] = 3789, + [3880] = 2780, + [3881] = 2788, + [3882] = 2701, + [3883] = 2742, + [3884] = 1942, + [3885] = 1941, + [3886] = 2166, + [3887] = 2063, + [3888] = 2166, + [3889] = 2166, + [3890] = 2788, + [3891] = 2003, + [3892] = 2004, + [3893] = 1954, + [3894] = 2166, + [3895] = 1943, + [3896] = 2005, + [3897] = 2006, + [3898] = 2701, + [3899] = 3560, + [3900] = 3776, + [3901] = 1961, + [3902] = 3902, + [3903] = 2007, + [3904] = 1966, + [3905] = 1958, + [3906] = 2742, + [3907] = 2126, + [3908] = 2754, + [3909] = 1928, + [3910] = 1969, + [3911] = 2012, + [3912] = 2156, + [3913] = 2123, + [3914] = 2124, + [3915] = 3915, + [3916] = 2128, + [3917] = 2130, + [3918] = 2003, + [3919] = 2004, + [3920] = 3920, + [3921] = 2002, + [3922] = 2132, + [3923] = 2072, + [3924] = 2075, + [3925] = 2083, + [3926] = 2087, + [3927] = 2184, + [3928] = 2213, + [3929] = 2005, + [3930] = 2006, + [3931] = 2088, + [3932] = 3932, + [3933] = 2122, + [3934] = 2125, + [3935] = 2007, + [3936] = 3936, + [3937] = 2184, + [3938] = 2780, + [3939] = 2466, + [3940] = 2788, + [3941] = 2102, + [3942] = 2103, + [3943] = 2104, + [3944] = 2701, + [3945] = 2742, + [3946] = 2108, + [3947] = 2082, + [3948] = 2110, + [3949] = 2111, + [3950] = 2112, + [3951] = 2114, + [3952] = 2117, + [3953] = 2118, + [3954] = 1899, + [3955] = 2193, + [3956] = 2086, + [3957] = 2200, + [3958] = 2120, + [3959] = 2193, + [3960] = 2121, + [3961] = 2200, + [3962] = 2193, + [3963] = 2101, + [3964] = 2200, + [3965] = 1963, + [3966] = 1855, + [3967] = 2134, + [3968] = 1995, + [3969] = 2193, + [3970] = 2754, + [3971] = 2200, + [3972] = 2428, + [3973] = 2073, + [3974] = 2074, + [3975] = 2039, + [3976] = 2066, + [3977] = 2476, + [3978] = 2780, + [3979] = 2788, + [3980] = 2465, + [3981] = 1986, + [3982] = 1987, + [3983] = 3560, + [3984] = 3560, + [3985] = 2428, + [3986] = 2465, + [3987] = 2466, + [3988] = 2039, + [3989] = 1990, + [3990] = 3570, + [3991] = 3571, + [3992] = 2097, + [3993] = 2465, + [3994] = 2193, + [3995] = 2079, + [3996] = 2200, + [3997] = 2701, + [3998] = 2213, + [3999] = 2214, + [4000] = 1995, + [4001] = 3711, + [4002] = 2839, + [4003] = 2799, + [4004] = 2486, + [4005] = 1954, + [4006] = 2080, + [4007] = 2742, + [4008] = 1968, + [4009] = 2193, + [4010] = 2084, + [4011] = 2200, + [4012] = 2085, + [4013] = 2039, + [4014] = 2107, + [4015] = 2439, + [4016] = 2428, + [4017] = 2465, + [4018] = 2466, + [4019] = 2754, + [4020] = 2184, + [4021] = 2213, + [4022] = 2466, + [4023] = 2091, + [4024] = 2092, + [4025] = 2094, + [4026] = 1866, + [4027] = 1857, + [4028] = 1858, + [4029] = 1859, + [4030] = 2095, + [4031] = 2184, + [4032] = 2213, + [4033] = 1860, + [4034] = 1861, + [4035] = 1931, + [4036] = 1862, + [4037] = 3166, + [4038] = 2099, + [4039] = 2428, + [4040] = 2100, + [4041] = 2070, + [4042] = 2089, + [4043] = 2078, + [4044] = 3790, + [4045] = 2067, + [4046] = 2780, + [4047] = 2788, + [4048] = 1994, + [4049] = 2742, + [4050] = 1942, + [4051] = 1941, + [4052] = 4052, + [4053] = 1866, + [4054] = 1857, + [4055] = 1858, + [4056] = 1859, + [4057] = 1860, + [4058] = 1861, + [4059] = 1862, + [4060] = 3711, + [4061] = 2122, + [4062] = 2125, + [4063] = 1990, + [4064] = 2870, + [4065] = 2871, + [4066] = 379, + [4067] = 1954, + [4068] = 4068, + [4069] = 2882, + [4070] = 4070, + [4071] = 386, + [4072] = 1954, + [4073] = 4073, + [4074] = 4070, + [4075] = 2128, + [4076] = 2130, + [4077] = 4068, + [4078] = 2839, + [4079] = 2799, + [4080] = 2126, + [4081] = 4081, + [4082] = 1986, + [4083] = 4083, [4084] = 4084, - [4085] = 4084, - [4086] = 4084, - [4087] = 4082, - [4088] = 4082, - [4089] = 4082, - [4090] = 1883, - [4091] = 3793, - [4092] = 4084, - [4093] = 1633, - [4094] = 2308, - [4095] = 4082, - [4096] = 2289, - [4097] = 2311, - [4098] = 4082, - [4099] = 4099, - [4100] = 2310, - [4101] = 4084, - [4102] = 4102, - [4103] = 3466, - [4104] = 4084, - [4105] = 4077, - [4106] = 4102, - [4107] = 2306, - [4108] = 1886, - [4109] = 4102, - [4110] = 3478, - [4111] = 2313, - [4112] = 2287, - [4113] = 2292, - [4114] = 2293, - [4115] = 4077, - [4116] = 4102, - [4117] = 4082, - [4118] = 3466, - [4119] = 4084, - [4120] = 2208, - [4121] = 4102, - [4122] = 1268, - [4123] = 4077, - [4124] = 1634, - [4125] = 3790, - [4126] = 4102, - [4127] = 2302, - [4128] = 4077, - [4129] = 4102, - [4130] = 2238, - [4131] = 1625, - [4132] = 273, - [4133] = 2224, - [4134] = 249, - [4135] = 3478, - [4136] = 1940, - [4137] = 393, - [4138] = 277, - [4139] = 251, - [4140] = 2240, - [4141] = 1587, - [4142] = 1936, - [4143] = 2231, - [4144] = 4060, - [4145] = 1963, - [4146] = 1623, - [4147] = 3466, - [4148] = 333, - [4149] = 1948, - [4150] = 1978, - [4151] = 2050, - [4152] = 1966, - [4153] = 4153, - [4154] = 4154, - [4155] = 1882, - [4156] = 2275, - [4157] = 2827, - [4158] = 4158, - [4159] = 1613, - [4160] = 2765, - [4161] = 2759, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, + [4088] = 2132, + [4089] = 4089, + [4090] = 4090, + [4091] = 2072, + [4092] = 4092, + [4093] = 2075, + [4094] = 2083, + [4095] = 2087, + [4096] = 2123, + [4097] = 4097, + [4098] = 4073, + [4099] = 4070, + [4100] = 4100, + [4101] = 4068, + [4102] = 3560, + [4103] = 4073, + [4104] = 4070, + [4105] = 4068, + [4106] = 1987, + [4107] = 1995, + [4108] = 4108, + [4109] = 1974, + [4110] = 4073, + [4111] = 4070, + [4112] = 4068, + [4113] = 4073, + [4114] = 4070, + [4115] = 4068, + [4116] = 2088, + [4117] = 4070, + [4118] = 4068, + [4119] = 4070, + [4120] = 4068, + [4121] = 2124, + [4122] = 2883, + [4123] = 4073, + [4124] = 2022, + [4125] = 3711, + [4126] = 4126, + [4127] = 4108, + [4128] = 4073, + [4129] = 4126, + [4130] = 2923, + [4131] = 3711, + [4132] = 2924, + [4133] = 3738, + [4134] = 3790, + [4135] = 3744, + [4136] = 3740, + [4137] = 1998, + [4138] = 3738, + [4139] = 2026, + [4140] = 3744, + [4141] = 3740, + [4142] = 4083, + [4143] = 4084, + [4144] = 4085, + [4145] = 4086, + [4146] = 4087, + [4147] = 4089, + [4148] = 4090, + [4149] = 4092, + [4150] = 4126, + [4151] = 1998, + [4152] = 4108, + [4153] = 4073, + [4154] = 4126, + [4155] = 4108, + [4156] = 4108, + [4157] = 4108, + [4158] = 4108, + [4159] = 4108, + [4160] = 2839, + [4161] = 2799, [4162] = 4162, - [4163] = 2760, - [4164] = 4162, - [4165] = 2777, - [4166] = 2276, - [4167] = 2442, - [4168] = 2250, - [4169] = 2443, - [4170] = 2828, - [4171] = 2778, - [4172] = 4154, - [4173] = 4173, - [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 4177, - [4178] = 4174, - [4179] = 4176, - [4180] = 3466, - [4181] = 4181, - [4182] = 4182, - [4183] = 2050, - [4184] = 4177, - [4185] = 2831, - [4186] = 4181, - [4187] = 2498, - [4188] = 2832, - [4189] = 4182, - [4190] = 2758, - [4191] = 4162, - [4192] = 1268, - [4193] = 4193, - [4194] = 2776, - [4195] = 4174, - [4196] = 4176, - [4197] = 1887, - [4198] = 2272, - [4199] = 3478, - [4200] = 2835, - [4201] = 2836, - [4202] = 4177, - [4203] = 2277, - [4204] = 4181, - [4205] = 4182, - [4206] = 3466, - [4207] = 2516, - [4208] = 3478, - [4209] = 2762, - [4210] = 4158, - [4211] = 4211, - [4212] = 4153, - [4213] = 2838, - [4214] = 2763, - [4215] = 2544, - [4216] = 2154, - [4217] = 2839, - [4218] = 4218, - [4219] = 3466, - [4220] = 4193, - [4221] = 2764, - [4222] = 3478, - [4223] = 1622, - [4224] = 1903, - [4225] = 1905, - [4226] = 1919, - [4227] = 1924, - [4228] = 1929, - [4229] = 2339, - [4230] = 4230, - [4231] = 2853, - [4232] = 1951, - [4233] = 4233, - [4234] = 1902, - [4235] = 2442, - [4236] = 2614, - [4237] = 1939, - [4238] = 1921, - [4239] = 2546, - [4240] = 3466, - [4241] = 1914, - [4242] = 1934, - [4243] = 1935, - [4244] = 3478, - [4245] = 1947, - [4246] = 4246, - [4247] = 4162, - [4248] = 1949, - [4249] = 1932, - [4250] = 1917, - [4251] = 1937, - [4252] = 1633, - [4253] = 1938, - [4254] = 4174, - [4255] = 2616, - [4256] = 2273, - [4257] = 4176, - [4258] = 1655, - [4259] = 1970, - [4260] = 2608, - [4261] = 1964, - [4262] = 1965, - [4263] = 4177, - [4264] = 1900, - [4265] = 1968, - [4266] = 1971, - [4267] = 4181, - [4268] = 1972, - [4269] = 1973, - [4270] = 4182, - [4271] = 2255, - [4272] = 1634, - [4273] = 1977, - [4274] = 4230, - [4275] = 2850, - [4276] = 4230, - [4277] = 1950, - [4278] = 2443, - [4279] = 1941, - [4280] = 1901, - [4281] = 4281, - [4282] = 2372, - [4283] = 4283, - [4284] = 2579, - [4285] = 1942, - [4286] = 1946, - [4287] = 1967, - [4288] = 2390, - [4289] = 3466, - [4290] = 4182, - [4291] = 2850, - [4292] = 4173, - [4293] = 2273, - [4294] = 4174, - [4295] = 1653, - [4296] = 1640, - [4297] = 4176, - [4298] = 4298, - [4299] = 1650, - [4300] = 3478, - [4301] = 135, - [4302] = 1651, - [4303] = 1645, - [4304] = 1649, - [4305] = 1647, - [4306] = 1643, - [4307] = 4177, - [4308] = 1646, - [4309] = 2255, - [4310] = 4181, - [4311] = 136, - [4312] = 1613, - [4313] = 4173, - [4314] = 2853, - [4315] = 1642, - [4316] = 1652, - [4317] = 1639, - [4318] = 4162, - [4319] = 1644, - [4320] = 1648, - [4321] = 1883, - [4322] = 2154, - [4323] = 1641, - [4324] = 1576, - [4325] = 4173, - [4326] = 2764, - [4327] = 4327, - [4328] = 2776, - [4329] = 2832, - [4330] = 2216, - [4331] = 2835, - [4332] = 2213, - [4333] = 2836, - [4334] = 2838, - [4335] = 2442, - [4336] = 2443, - [4337] = 2214, - [4338] = 2839, - [4339] = 2758, - [4340] = 2759, - [4341] = 2760, - [4342] = 1625, - [4343] = 2777, - [4344] = 1623, - [4345] = 2205, - [4346] = 1633, - [4347] = 2831, - [4348] = 2778, - [4349] = 2763, - [4350] = 2238, - [4351] = 2764, - [4352] = 3466, - [4353] = 4162, - [4354] = 2239, - [4355] = 2222, - [4356] = 2762, - [4357] = 2835, - [4358] = 4358, - [4359] = 4181, - [4360] = 2828, - [4361] = 2225, - [4362] = 1634, - [4363] = 2759, - [4364] = 2831, - [4365] = 2762, - [4366] = 2778, - [4367] = 2763, - [4368] = 2231, - [4369] = 2832, - [4370] = 2760, - [4371] = 2272, - [4372] = 2777, - [4373] = 4182, - [4374] = 2836, - [4375] = 2838, - [4376] = 2209, - [4377] = 2776, - [4378] = 2765, - [4379] = 2839, - [4380] = 4174, - [4381] = 2758, - [4382] = 2827, - [4383] = 4176, - [4384] = 2241, - [4385] = 3478, - [4386] = 2227, - [4387] = 2228, - [4388] = 2220, - [4389] = 4177, - [4390] = 2827, - [4391] = 2219, - [4392] = 2224, - [4393] = 2240, - [4394] = 4174, - [4395] = 4176, - [4396] = 4177, - [4397] = 4181, - [4398] = 4182, - [4399] = 4162, - [4400] = 4400, - [4401] = 2765, - [4402] = 4281, - [4403] = 2828, - [4404] = 4283, - [4405] = 4405, - [4406] = 4176, - [4407] = 4407, - [4408] = 4408, - [4409] = 4409, - [4410] = 4409, - [4411] = 4174, - [4412] = 4412, - [4413] = 4413, - [4414] = 2250, - [4415] = 4407, - [4416] = 4407, - [4417] = 1655, - [4418] = 2275, - [4419] = 4413, - [4420] = 4420, - [4421] = 4420, - [4422] = 4407, - [4423] = 4423, - [4424] = 4407, - [4425] = 4409, - [4426] = 4407, - [4427] = 4405, - [4428] = 4428, - [4429] = 1572, - [4430] = 1626, - [4431] = 4162, - [4432] = 4407, - [4433] = 4409, + [4163] = 2022, + [4164] = 1956, + [4165] = 1931, + [4166] = 3711, + [4167] = 2701, + [4168] = 1968, + [4169] = 3740, + [4170] = 2067, + [4171] = 2870, + [4172] = 2214, + [4173] = 2871, + [4174] = 2882, + [4175] = 2701, + [4176] = 2156, + [4177] = 1968, + [4178] = 2754, + [4179] = 1941, + [4180] = 2009, + [4181] = 1964, + [4182] = 2742, + [4183] = 2214, + [4184] = 1968, + [4185] = 3790, + [4186] = 2883, + [4187] = 3738, + [4188] = 2780, + [4189] = 2026, + [4190] = 3744, + [4191] = 1975, + [4192] = 1975, + [4193] = 1974, + [4194] = 3740, + [4195] = 2923, + [4196] = 2924, + [4197] = 2214, + [4198] = 3790, + [4199] = 2883, + [4200] = 1959, + [4201] = 4201, + [4202] = 2788, + [4203] = 1995, + [4204] = 2001, + [4205] = 3560, + [4206] = 1954, + [4207] = 3744, + [4208] = 2923, + [4209] = 2924, + [4210] = 3560, + [4211] = 1956, + [4212] = 3738, + [4213] = 2870, + [4214] = 2871, + [4215] = 2882, + [4216] = 2001, + [4217] = 2009, + [4218] = 1964, + [4219] = 4219, + [4220] = 2864, + [4221] = 1972, + [4222] = 2864, + [4223] = 2701, + [4224] = 3738, + [4225] = 3738, + [4226] = 3738, + [4227] = 3790, + [4228] = 1959, + [4229] = 3740, + [4230] = 2959, + [4231] = 1941, + [4232] = 2867, + [4233] = 3744, + [4234] = 1841, + [4235] = 2035, + [4236] = 3740, + [4237] = 2872, + [4238] = 1942, + [4239] = 2780, + [4240] = 3738, + [4241] = 2911, + [4242] = 3790, + [4243] = 1841, + [4244] = 2839, + [4245] = 3790, + [4246] = 3744, + [4247] = 2799, + [4248] = 3560, + [4249] = 3740, + [4250] = 2033, + [4251] = 2043, + [4252] = 2063, + [4253] = 3790, + [4254] = 2034, + [4255] = 2046, + [4256] = 1969, + [4257] = 2069, + [4258] = 4258, + [4259] = 2867, + [4260] = 2047, + [4261] = 2053, + [4262] = 2788, + [4263] = 2055, + [4264] = 2872, + [4265] = 3744, + [4266] = 2048, + [4267] = 3740, + [4268] = 3711, + [4269] = 2754, + [4270] = 1965, + [4271] = 2213, + [4272] = 3560, + [4273] = 2911, + [4274] = 2959, + [4275] = 2049, + [4276] = 2042, + [4277] = 2069, + [4278] = 2184, + [4279] = 2033, + [4280] = 2034, + [4281] = 2042, + [4282] = 2035, + [4283] = 2036, + [4284] = 2043, + [4285] = 2036, + [4286] = 2046, + [4287] = 2047, + [4288] = 2048, + [4289] = 2053, + [4290] = 2055, + [4291] = 2742, + [4292] = 3744, + [4293] = 4086, + [4294] = 2213, + [4295] = 2114, + [4296] = 2864, + [4297] = 1860, + [4298] = 2117, + [4299] = 1861, + [4300] = 1862, + [4301] = 2118, + [4302] = 4302, + [4303] = 2864, + [4304] = 4302, + [4305] = 2911, + [4306] = 2086, + [4307] = 4092, + [4308] = 2959, + [4309] = 2867, + [4310] = 2911, + [4311] = 2872, + [4312] = 4312, + [4313] = 4313, + [4314] = 4314, + [4315] = 2101, + [4316] = 2090, + [4317] = 2091, + [4318] = 2120, + [4319] = 4319, + [4320] = 4320, + [4321] = 4321, + [4322] = 2121, + [4323] = 2092, + [4324] = 4302, + [4325] = 2959, + [4326] = 2959, + [4327] = 2867, + [4328] = 3129, + [4329] = 2093, + [4330] = 4313, + [4331] = 4314, + [4332] = 2094, + [4333] = 4083, + [4334] = 2095, + [4335] = 4084, + [4336] = 4085, + [4337] = 4086, + [4338] = 4087, + [4339] = 4089, + [4340] = 4090, + [4341] = 4092, + [4342] = 4302, + [4343] = 2098, + [4344] = 2099, + [4345] = 2100, + [4346] = 4313, + [4347] = 4314, + [4348] = 4302, + [4349] = 2872, + [4350] = 1954, + [4351] = 2102, + [4352] = 4313, + [4353] = 4314, + [4354] = 2867, + [4355] = 2009, + [4356] = 2103, + [4357] = 4302, + [4358] = 2104, + [4359] = 4313, + [4360] = 4314, + [4361] = 4084, + [4362] = 4085, + [4363] = 3141, + [4364] = 2071, + [4365] = 3105, + [4366] = 2923, + [4367] = 2924, + [4368] = 1866, + [4369] = 4302, + [4370] = 4314, + [4371] = 2213, + [4372] = 2839, + [4373] = 2073, + [4374] = 2799, + [4375] = 2074, + [4376] = 2082, + [4377] = 2872, + [4378] = 2864, + [4379] = 4313, + [4380] = 4087, + [4381] = 3122, + [4382] = 4089, + [4383] = 2870, + [4384] = 2871, + [4385] = 2077, + [4386] = 4313, + [4387] = 4314, + [4388] = 1857, + [4389] = 1858, + [4390] = 1859, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 2078, + [4395] = 2097, + [4396] = 2079, + [4397] = 4086, + [4398] = 2109, + [4399] = 2080, + [4400] = 2134, + [4401] = 2070, + [4402] = 2089, + [4403] = 4083, + [4404] = 2084, + [4405] = 2882, + [4406] = 2085, + [4407] = 2110, + [4408] = 2107, + [4409] = 2864, + [4410] = 2911, + [4411] = 2108, + [4412] = 2959, + [4413] = 2184, + [4414] = 2867, + [4415] = 1959, + [4416] = 4083, + [4417] = 4084, + [4418] = 4085, + [4419] = 2872, + [4420] = 4087, + [4421] = 4089, + [4422] = 4090, + [4423] = 4092, + [4424] = 2911, + [4425] = 2184, + [4426] = 2022, + [4427] = 4090, + [4428] = 2111, + [4429] = 2883, + [4430] = 2112, + [4431] = 4431, + [4432] = 4432, + [4433] = 4433, [4434] = 4434, - [4435] = 4298, - [4436] = 4182, - [4437] = 2199, - [4438] = 4420, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, [4439] = 4439, - [4440] = 1575, - [4441] = 1633, - [4442] = 1568, - [4443] = 2050, - [4444] = 1843, - [4445] = 4409, - [4446] = 4407, - [4447] = 4407, - [4448] = 1844, - [4449] = 1886, - [4450] = 4413, - [4451] = 4177, - [4452] = 4407, - [4453] = 4407, - [4454] = 4181, - [4455] = 4413, - [4456] = 4420, - [4457] = 2277, - [4458] = 4413, - [4459] = 2853, - [4460] = 1634, - [4461] = 1570, - [4462] = 4413, - [4463] = 2154, - [4464] = 4407, - [4465] = 4162, - [4466] = 1571, - [4467] = 4174, - [4468] = 4176, - [4469] = 4177, - [4470] = 4181, - [4471] = 4182, - [4472] = 4420, - [4473] = 4405, - [4474] = 1573, - [4475] = 4407, - [4476] = 4413, - [4477] = 4409, - [4478] = 4420, - [4479] = 4407, - [4480] = 1846, - [4481] = 4407, - [4482] = 2850, - [4483] = 4407, - [4484] = 4407, - [4485] = 1622, - [4486] = 1574, - [4487] = 2276, - [4488] = 4488, - [4489] = 2835, - [4490] = 2836, - [4491] = 3336, - [4492] = 4492, - [4493] = 2838, - [4494] = 4494, - [4495] = 2839, - [4496] = 2758, - [4497] = 2759, - [4498] = 4498, - [4499] = 2760, - [4500] = 2777, - [4501] = 2765, - [4502] = 4502, - [4503] = 4502, - [4504] = 2208, - [4505] = 2778, - [4506] = 4506, - [4507] = 4502, - [4508] = 2839, - [4509] = 4509, - [4510] = 4510, - [4511] = 4434, - [4512] = 2272, - [4513] = 4182, - [4514] = 4162, - [4515] = 1576, - [4516] = 4516, - [4517] = 4181, - [4518] = 4518, - [4519] = 2827, - [4520] = 2828, - [4521] = 2776, - [4522] = 2835, - [4523] = 2836, - [4524] = 2838, - [4525] = 2839, - [4526] = 2758, - [4527] = 2759, - [4528] = 2760, - [4529] = 2777, - [4530] = 2778, - [4531] = 2762, - [4532] = 2762, - [4533] = 2763, - [4534] = 2764, - [4535] = 2765, - [4536] = 2763, - [4537] = 4174, - [4538] = 4538, - [4539] = 4518, - [4540] = 2831, - [4541] = 2827, - [4542] = 2832, - [4543] = 2764, - [4544] = 4544, - [4545] = 4218, - [4546] = 2765, - [4547] = 4547, - [4548] = 4548, - [4549] = 4510, - [4550] = 2381, - [4551] = 4174, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, + [4444] = 2001, + [4445] = 3122, + [4446] = 2466, + [4447] = 4083, + [4448] = 3790, + [4449] = 2126, + [4450] = 4084, + [4451] = 4085, + [4452] = 4086, + [4453] = 4453, + [4454] = 4453, + [4455] = 3248, + [4456] = 4453, + [4457] = 3740, + [4458] = 4087, + [4459] = 2466, + [4460] = 3223, + [4461] = 4453, + [4462] = 4453, + [4463] = 2428, + [4464] = 2465, + [4465] = 4089, + [4466] = 2066, + [4467] = 2466, + [4468] = 2012, + [4469] = 4469, + [4470] = 2870, + [4471] = 4090, + [4472] = 2466, + [4473] = 2923, + [4474] = 4469, + [4475] = 2924, + [4476] = 4092, + [4477] = 2066, + [4478] = 4478, + [4479] = 2129, + [4480] = 3141, + [4481] = 2428, + [4482] = 2871, + [4483] = 2428, + [4484] = 2882, + [4485] = 3105, + [4486] = 1841, + [4487] = 2465, + [4488] = 3129, + [4489] = 2465, + [4490] = 1998, + [4491] = 1969, + [4492] = 3738, + [4493] = 2428, + [4494] = 1841, + [4495] = 4453, + [4496] = 2428, + [4497] = 3105, + [4498] = 3738, + [4499] = 3122, + [4500] = 4453, + [4501] = 2184, + [4502] = 2213, + [4503] = 2465, + [4504] = 3141, + [4505] = 1841, + [4506] = 2465, + [4507] = 3790, + [4508] = 2466, + [4509] = 1841, + [4510] = 3744, + [4511] = 3744, + [4512] = 2883, + [4513] = 1974, + [4514] = 3740, + [4515] = 2428, + [4516] = 2465, + [4517] = 2127, + [4518] = 3129, + [4519] = 2466, + [4520] = 1963, + [4521] = 1994, + [4522] = 4478, + [4523] = 2066, + [4524] = 3560, + [4525] = 4525, + [4526] = 4526, + [4527] = 4527, + [4528] = 4320, + [4529] = 2911, + [4530] = 4321, + [4531] = 2055, + [4532] = 3248, + [4533] = 2042, + [4534] = 4083, + [4535] = 4087, + [4536] = 4089, + [4537] = 4084, + [4538] = 4085, + [4539] = 4090, + [4540] = 4086, + [4541] = 4092, + [4542] = 4083, + [4543] = 4084, + [4544] = 4085, + [4545] = 4086, + [4546] = 2069, + [4547] = 4087, + [4548] = 4089, + [4549] = 4090, + [4550] = 4092, + [4551] = 2959, [4552] = 4552, - [4553] = 2832, - [4554] = 4554, - [4555] = 4176, - [4556] = 4502, - [4557] = 4557, - [4558] = 2290, - [4559] = 4176, - [4560] = 2442, - [4561] = 4174, - [4562] = 4176, - [4563] = 1625, - [4564] = 2762, - [4565] = 4552, - [4566] = 4518, - [4567] = 1881, - [4568] = 2338, - [4569] = 4510, - [4570] = 2346, - [4571] = 2838, - [4572] = 2347, - [4573] = 2831, - [4574] = 2350, - [4575] = 4502, - [4576] = 2776, - [4577] = 1883, - [4578] = 2399, - [4579] = 4510, - [4580] = 4552, - [4581] = 4502, - [4582] = 4177, - [4583] = 2758, - [4584] = 4181, - [4585] = 4585, - [4586] = 2350, - [4587] = 4587, - [4588] = 4182, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 2832, - [4593] = 2828, - [4594] = 4594, - [4595] = 4498, - [4596] = 2759, - [4597] = 2346, - [4598] = 1873, - [4599] = 4162, - [4600] = 2347, - [4601] = 4502, - [4602] = 4602, - [4603] = 4502, - [4604] = 4177, - [4605] = 2443, - [4606] = 2399, - [4607] = 4502, - [4608] = 2381, - [4609] = 4174, - [4610] = 2760, - [4611] = 4181, - [4612] = 2777, - [4613] = 4173, - [4614] = 4176, - [4615] = 4518, - [4616] = 4552, - [4617] = 2835, - [4618] = 2836, - [4619] = 4182, - [4620] = 2827, - [4621] = 4552, - [4622] = 4182, - [4623] = 1623, - [4624] = 4162, - [4625] = 2763, - [4626] = 4626, - [4627] = 4502, - [4628] = 4510, - [4629] = 4629, - [4630] = 4518, - [4631] = 2338, - [4632] = 4632, - [4633] = 2764, - [4634] = 2828, - [4635] = 2778, - [4636] = 4510, - [4637] = 4518, - [4638] = 4502, - [4639] = 4162, - [4640] = 4502, - [4641] = 2831, - [4642] = 4602, - [4643] = 4518, - [4644] = 4644, - [4645] = 4502, - [4646] = 4177, + [4553] = 4431, + [4554] = 1841, + [4555] = 4527, + [4556] = 4556, + [4557] = 1959, + [4558] = 3105, + [4559] = 3223, + [4560] = 2127, + [4561] = 2129, + [4562] = 1012, + [4563] = 2867, + [4564] = 2184, + [4565] = 4432, + [4566] = 4552, + [4567] = 2872, + [4568] = 4525, + [4569] = 2035, + [4570] = 2036, + [4571] = 4527, + [4572] = 2864, + [4573] = 2034, + [4574] = 4391, + [4575] = 2126, + [4576] = 4433, + [4577] = 3777, + [4578] = 4434, + [4579] = 4435, + [4580] = 1008, + [4581] = 4436, + [4582] = 4437, + [4583] = 4438, + [4584] = 4439, + [4585] = 4392, + [4586] = 4393, + [4587] = 1855, + [4588] = 4527, + [4589] = 3122, + [4590] = 4527, + [4591] = 1931, + [4592] = 2043, + [4593] = 2093, + [4594] = 2046, + [4595] = 4440, + [4596] = 2864, + [4597] = 2127, + [4598] = 4527, + [4599] = 3395, + [4600] = 3491, + [4601] = 1841, + [4602] = 2911, + [4603] = 2959, + [4604] = 2867, + [4605] = 4527, + [4606] = 4441, + [4607] = 4552, + [4608] = 2872, + [4609] = 3598, + [4610] = 4527, + [4611] = 3248, + [4612] = 2127, + [4613] = 2047, + [4614] = 2048, + [4615] = 4442, + [4616] = 2129, + [4617] = 4525, + [4618] = 4526, + [4619] = 1008, + [4620] = 2053, + [4621] = 4443, + [4622] = 3129, + [4623] = 3141, + [4624] = 1853, + [4625] = 3223, + [4626] = 3490, + [4627] = 3495, + [4628] = 1855, + [4629] = 4526, + [4630] = 3540, + [4631] = 4525, + [4632] = 2213, + [4633] = 1009, + [4634] = 4526, + [4635] = 1853, + [4636] = 3405, + [4637] = 4637, + [4638] = 4526, + [4639] = 3472, + [4640] = 4526, + [4641] = 4526, + [4642] = 2039, + [4643] = 1855, + [4644] = 1942, + [4645] = 4552, + [4646] = 4219, [4647] = 4647, - [4648] = 4509, - [4649] = 4181, - [4650] = 4177, - [4651] = 4651, - [4652] = 2776, - [4653] = 4653, - [4654] = 1886, - [4655] = 4655, - [4656] = 1885, - [4657] = 4657, - [4658] = 4658, - [4659] = 4659, - [4660] = 4660, - [4661] = 2239, - [4662] = 2209, - [4663] = 2216, - [4664] = 2227, - [4665] = 2228, - [4666] = 2213, - [4667] = 2214, - [4668] = 2205, - [4669] = 2222, - [4670] = 2225, - [4671] = 2219, - [4672] = 2241, - [4673] = 2220, - [4674] = 1655, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 2380, - [4681] = 4676, - [4682] = 4682, - [4683] = 4683, - [4684] = 4684, - [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4658, - [4690] = 4657, - [4691] = 1883, - [4692] = 4692, - [4693] = 4693, - [4694] = 4694, - [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, + [4648] = 2033, + [4649] = 2129, + [4650] = 4319, + [4651] = 4527, + [4652] = 4647, + [4653] = 3383, + [4654] = 4647, + [4655] = 2126, + [4656] = 1009, + [4657] = 3581, + [4658] = 2890, + [4659] = 3522, + [4660] = 3525, + [4661] = 4661, + [4662] = 3526, + [4663] = 4663, + [4664] = 3490, + [4665] = 3580, + [4666] = 2077, + [4667] = 3598, + [4668] = 3495, + [4669] = 3540, + [4670] = 3395, + [4671] = 3491, + [4672] = 3510, + [4673] = 2080, + [4674] = 4432, + [4675] = 3490, + [4676] = 2903, + [4677] = 2022, + [4678] = 4441, + [4679] = 3590, + [4680] = 2107, + [4681] = 3515, + [4682] = 3516, + [4683] = 3507, + [4684] = 2108, + [4685] = 3528, + [4686] = 4083, + [4687] = 4084, + [4688] = 4085, + [4689] = 4442, + [4690] = 4086, + [4691] = 1954, + [4692] = 4087, + [4693] = 4089, + [4694] = 4090, + [4695] = 4092, + [4696] = 3490, + [4697] = 3535, + [4698] = 3395, [4699] = 4699, - [4700] = 4692, - [4701] = 4693, - [4702] = 4702, - [4703] = 4703, - [4704] = 4685, - [4705] = 4675, - [4706] = 4676, - [4707] = 4707, - [4708] = 4682, - [4709] = 4683, - [4710] = 4684, - [4711] = 4685, - [4712] = 4686, - [4713] = 4687, - [4714] = 4714, - [4715] = 4688, - [4716] = 4675, - [4717] = 4692, - [4718] = 4693, - [4719] = 4682, - [4720] = 4694, - [4721] = 4694, - [4722] = 4697, - [4723] = 4679, - [4724] = 4699, - [4725] = 4695, - [4726] = 4696, - [4727] = 4697, - [4728] = 2285, - [4729] = 4676, - [4730] = 4682, - [4731] = 4683, - [4732] = 4684, - [4733] = 4683, + [4700] = 1009, + [4701] = 4701, + [4702] = 3541, + [4703] = 4661, + [4704] = 2117, + [4705] = 4201, + [4706] = 2070, + [4707] = 1866, + [4708] = 2118, + [4709] = 3248, + [4710] = 3405, + [4711] = 4443, + [4712] = 4556, + [4713] = 4713, + [4714] = 2089, + [4715] = 3540, + [4716] = 4433, + [4717] = 4434, + [4718] = 4435, + [4719] = 3540, + [4720] = 4436, + [4721] = 3543, + [4722] = 3523, + [4723] = 3598, + [4724] = 4437, + [4725] = 1841, + [4726] = 2951, + [4727] = 3383, + [4728] = 4699, + [4729] = 3129, + [4730] = 4661, + [4731] = 1855, + [4732] = 1969, + [4733] = 3472, [4734] = 4734, - [4735] = 4684, - [4736] = 4685, - [4737] = 4686, - [4738] = 4686, - [4739] = 4687, - [4740] = 4688, - [4741] = 4741, - [4742] = 4692, - [4743] = 4693, - [4744] = 4694, - [4745] = 4697, - [4746] = 4699, - [4747] = 2265, - [4748] = 2850, - [4749] = 4676, - [4750] = 4682, - [4751] = 4683, - [4752] = 4684, - [4753] = 4653, - [4754] = 4686, - [4755] = 4687, - [4756] = 4653, - [4757] = 4688, - [4758] = 4692, - [4759] = 4693, - [4760] = 4694, - [4761] = 2246, - [4762] = 4687, - [4763] = 4763, - [4764] = 4685, - [4765] = 4687, - [4766] = 4688, - [4767] = 4692, - [4768] = 4693, - [4769] = 4694, - [4770] = 4685, - [4771] = 4687, - [4772] = 4688, - [4773] = 4692, - [4774] = 4694, - [4775] = 4685, - [4776] = 4687, - [4777] = 4777, - [4778] = 4685, - [4779] = 4687, - [4780] = 4685, - [4781] = 4685, - [4782] = 4685, - [4783] = 4783, - [4784] = 4783, - [4785] = 4658, - [4786] = 4679, - [4787] = 4698, - [4788] = 4658, - [4789] = 4699, - [4790] = 4790, - [4791] = 4675, - [4792] = 4792, - [4793] = 4679, - [4794] = 4658, - [4795] = 4675, - [4796] = 4679, - [4797] = 4174, - [4798] = 4176, - [4799] = 4177, - [4800] = 4181, - [4801] = 4182, - [4802] = 4162, - [4803] = 4783, - [4804] = 4804, - [4805] = 4675, - [4806] = 4806, - [4807] = 4658, - [4808] = 4675, - [4809] = 4679, - [4810] = 4810, - [4811] = 4783, - [4812] = 4783, - [4813] = 4783, - [4814] = 4679, - [4815] = 4783, - [4816] = 4678, - [4817] = 2272, - [4818] = 4818, - [4819] = 4162, - [4820] = 4174, - [4821] = 4176, - [4822] = 4822, - [4823] = 2853, - [4824] = 4824, - [4825] = 4177, - [4826] = 4826, - [4827] = 4181, - [4828] = 4182, - [4829] = 4688, - [4830] = 4830, - [4831] = 4658, - [4832] = 4832, - [4833] = 4833, - [4834] = 4653, - [4835] = 4653, - [4836] = 4653, - [4837] = 4685, - [4838] = 4838, - [4839] = 4678, - [4840] = 2154, - [4841] = 2442, - [4842] = 2050, - [4843] = 2443, - [4844] = 2308, - [4845] = 2310, - [4846] = 4678, - [4847] = 2519, - [4848] = 2510, - [4849] = 2470, - [4850] = 2521, - [4851] = 2523, - [4852] = 2313, - [4853] = 2479, - [4854] = 2287, - [4855] = 2292, - [4856] = 2293, - [4857] = 2496, - [4858] = 4858, - [4859] = 2436, - [4860] = 4860, - [4861] = 4861, - [4862] = 2302, - [4863] = 2440, - [4864] = 2306, - [4865] = 2289, - [4866] = 2295, - [4867] = 2444, - [4868] = 2273, - [4869] = 2311, - [4870] = 2299, - [4871] = 4678, - [4872] = 2458, - [4873] = 2465, - [4874] = 2434, - [4875] = 4875, - [4876] = 2447, - [4877] = 2449, - [4878] = 2544, - [4879] = 4860, - [4880] = 2450, - [4881] = 4678, - [4882] = 4678, - [4883] = 2466, - [4884] = 4884, - [4885] = 2542, - [4886] = 2498, - [4887] = 2526, - [4888] = 2527, - [4889] = 2478, - [4890] = 2487, - [4891] = 4860, - [4892] = 4678, - [4893] = 2411, - [4894] = 2416, - [4895] = 4860, - [4896] = 4860, - [4897] = 2438, - [4898] = 4860, - [4899] = 1655, - [4900] = 2491, - [4901] = 2499, - [4902] = 4860, - [4903] = 2420, - [4904] = 2421, - [4905] = 2445, - [4906] = 4162, - [4907] = 1886, - [4908] = 4174, - [4909] = 4176, - [4910] = 4177, - [4911] = 4181, - [4912] = 4182, - [4913] = 2485, - [4914] = 2441, - [4915] = 2255, - [4916] = 2494, - [4917] = 2522, - [4918] = 2199, - [4919] = 2516, - [4920] = 4920, - [4921] = 1937, - [4922] = 1938, - [4923] = 4181, - [4924] = 1941, - [4925] = 1970, - [4926] = 1917, - [4927] = 1977, - [4928] = 1967, - [4929] = 4182, - [4930] = 4181, - [4931] = 4931, - [4932] = 1914, - [4933] = 1932, - [4934] = 4162, - [4935] = 4177, - [4936] = 1963, - [4937] = 4678, - [4938] = 2208, - [4939] = 4939, - [4940] = 1964, - [4941] = 1965, - [4942] = 4182, - [4943] = 1966, - [4944] = 1900, - [4945] = 4678, - [4946] = 1968, - [4947] = 4678, - [4948] = 4678, - [4949] = 4678, - [4950] = 4678, - [4951] = 1971, - [4952] = 1924, - [4953] = 4939, - [4954] = 1929, - [4955] = 1972, - [4956] = 1973, - [4957] = 4678, - [4958] = 4182, - [4959] = 1883, - [4960] = 4678, - [4961] = 4931, - [4962] = 2050, - [4963] = 4174, - [4964] = 4964, - [4965] = 1939, - [4966] = 1978, - [4967] = 1942, - [4968] = 1946, - [4969] = 1921, - [4970] = 1934, - [4971] = 1948, - [4972] = 1950, - [4973] = 1951, - [4974] = 4974, - [4975] = 1935, - [4976] = 1940, - [4977] = 1901, - [4978] = 1902, - [4979] = 1947, - [4980] = 1903, - [4981] = 4176, - [4982] = 1905, - [4983] = 1949, - [4984] = 4176, - [4985] = 4678, - [4986] = 4678, - [4987] = 1919, - [4988] = 4162, - [4989] = 4177, - [4990] = 4678, - [4991] = 4678, - [4992] = 4174, - [4993] = 1936, - [4994] = 4177, - [4995] = 4974, - [4996] = 4996, - [4997] = 4174, - [4998] = 4176, - [4999] = 4996, - [5000] = 5000, - [5001] = 4678, - [5002] = 2246, - [5003] = 2265, - [5004] = 4177, - [5005] = 4182, - [5006] = 5006, - [5007] = 4162, - [5008] = 5006, - [5009] = 4678, - [5010] = 4181, - [5011] = 4996, - [5012] = 5006, - [5013] = 4996, - [5014] = 4996, - [5015] = 2443, - [5016] = 4174, - [5017] = 4176, - [5018] = 2311, - [5019] = 4678, - [5020] = 2154, - [5021] = 2287, - [5022] = 4678, - [5023] = 4177, - [5024] = 4181, - [5025] = 2299, - [5026] = 2306, - [5027] = 4678, - [5028] = 2272, - [5029] = 5006, - [5030] = 4996, - [5031] = 4678, - [5032] = 2050, - [5033] = 2442, - [5034] = 4678, - [5035] = 2302, - [5036] = 4678, - [5037] = 4182, - [5038] = 4678, - [5039] = 2442, - [5040] = 2443, - [5041] = 2313, - [5042] = 2443, - [5043] = 5006, - [5044] = 2308, - [5045] = 5006, - [5046] = 1633, - [5047] = 2442, - [5048] = 4162, - [5049] = 2289, - [5050] = 5006, - [5051] = 2292, - [5052] = 4996, - [5053] = 4996, - [5054] = 2295, - [5055] = 2293, - [5056] = 1634, - [5057] = 2310, - [5058] = 1882, - [5059] = 5006, - [5060] = 1887, - [5061] = 4678, - [5062] = 5062, - [5063] = 4996, - [5064] = 5006, - [5065] = 5006, - [5066] = 4996, - [5067] = 1935, - [5068] = 4678, - [5069] = 5069, - [5070] = 1949, - [5071] = 5006, - [5072] = 1917, - [5073] = 4996, - [5074] = 5006, - [5075] = 1937, - [5076] = 4996, - [5077] = 5062, - [5078] = 1938, - [5079] = 1963, - [5080] = 1977, - [5081] = 1940, - [5082] = 1900, - [5083] = 5069, - [5084] = 4996, - [5085] = 1967, - [5086] = 4996, - [5087] = 1948, - [5088] = 5069, - [5089] = 1964, - [5090] = 5006, - [5091] = 1941, - [5092] = 1950, - [5093] = 4678, - [5094] = 1968, - [5095] = 1914, - [5096] = 1951, - [5097] = 5062, - [5098] = 1966, - [5099] = 5069, - [5100] = 1971, - [5101] = 1901, - [5102] = 5069, - [5103] = 4678, - [5104] = 4678, - [5105] = 4996, - [5106] = 5069, - [5107] = 5062, - [5108] = 1902, - [5109] = 1932, - [5110] = 4182, - [5111] = 5062, - [5112] = 1934, - [5113] = 5062, - [5114] = 5069, - [5115] = 1924, - [5116] = 1903, - [5117] = 4177, - [5118] = 5006, - [5119] = 4162, - [5120] = 5006, - [5121] = 4181, - [5122] = 4996, - [5123] = 4996, - [5124] = 5006, - [5125] = 1970, - [5126] = 5006, - [5127] = 1972, - [5128] = 4996, - [5129] = 1905, - [5130] = 5069, - [5131] = 1973, - [5132] = 5006, - [5133] = 5069, - [5134] = 5006, - [5135] = 5062, - [5136] = 3300, - [5137] = 1919, - [5138] = 5062, - [5139] = 4996, - [5140] = 4996, - [5141] = 4678, - [5142] = 1939, - [5143] = 1929, - [5144] = 1965, - [5145] = 4174, - [5146] = 1936, - [5147] = 4176, - [5148] = 1881, - [5149] = 1978, - [5150] = 5006, - [5151] = 1921, - [5152] = 1942, - [5153] = 1946, - [5154] = 1947, - [5155] = 5062, - [5156] = 5156, - [5157] = 5157, - [5158] = 5158, - [5159] = 5159, - [5160] = 5156, - [5161] = 5161, - [5162] = 5156, - [5163] = 5163, - [5164] = 5161, - [5165] = 5156, - [5166] = 5161, - [5167] = 5156, - [5168] = 5163, - [5169] = 5163, - [5170] = 5161, - [5171] = 5156, - [5172] = 5163, - [5173] = 5161, - [5174] = 5163, - [5175] = 5161, - [5176] = 5156, - [5177] = 5163, - [5178] = 5161, - [5179] = 5156, - [5180] = 5163, - [5181] = 5161, - [5182] = 5156, - [5183] = 5163, - [5184] = 5161, - [5185] = 5156, - [5186] = 5163, - [5187] = 5161, - [5188] = 5156, - [5189] = 5163, - [5190] = 5163, - [5191] = 5161, - [5192] = 5156, - [5193] = 5163, - [5194] = 5161, - [5195] = 5156, - [5196] = 5163, - [5197] = 5161, - [5198] = 5156, - [5199] = 5163, - [5200] = 5161, - [5201] = 5156, - [5202] = 5163, - [5203] = 5161, - [5204] = 5156, - [5205] = 5163, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5206, - [5210] = 5207, - [5211] = 5157, - [5212] = 5163, - [5213] = 5159, - [5214] = 5208, - [5215] = 5006, - [5216] = 4996, - [5217] = 2442, - [5218] = 2443, - [5219] = 5006, - [5220] = 4996, - [5221] = 5161, - [5222] = 5156, - [5223] = 5163, - [5224] = 5206, - [5225] = 5207, - [5226] = 5208, - [5227] = 5157, - [5228] = 5158, - [5229] = 5159, - [5230] = 5206, - [5231] = 5207, - [5232] = 5208, - [5233] = 5157, - [5234] = 5158, - [5235] = 5159, - [5236] = 2618, - [5237] = 5206, - [5238] = 5207, - [5239] = 5208, - [5240] = 5157, - [5241] = 5158, - [5242] = 5159, - [5243] = 5206, - [5244] = 5207, - [5245] = 5208, - [5246] = 5157, - [5247] = 5158, - [5248] = 5159, - [5249] = 5161, - [5250] = 5206, - [5251] = 5207, - [5252] = 5208, - [5253] = 5157, - [5254] = 5158, - [5255] = 5159, - [5256] = 2265, - [5257] = 2246, - [5258] = 5161, - [5259] = 5156, - [5260] = 5158, - [5261] = 5261, - [5262] = 5262, - [5263] = 5263, - [5264] = 5263, - [5265] = 5263, - [5266] = 5261, - [5267] = 5262, - [5268] = 1633, - [5269] = 2199, - [5270] = 5263, - [5271] = 5262, - [5272] = 5261, - [5273] = 5263, - [5274] = 5274, - [5275] = 5261, - [5276] = 5261, - [5277] = 5261, - [5278] = 5263, - [5279] = 5263, - [5280] = 2213, - [5281] = 2214, - [5282] = 2205, - [5283] = 5274, - [5284] = 2222, - [5285] = 2225, - [5286] = 5262, - [5287] = 5006, - [5288] = 5262, - [5289] = 5263, - [5290] = 2219, - [5291] = 2227, - [5292] = 5263, - [5293] = 5006, - [5294] = 4996, - [5295] = 2228, - [5296] = 5261, - [5297] = 1655, - [5298] = 1634, - [5299] = 5261, - [5300] = 5274, - [5301] = 5261, - [5302] = 5006, - [5303] = 4996, - [5304] = 5006, - [5305] = 4996, - [5306] = 5274, - [5307] = 5261, - [5308] = 5263, - [5309] = 5006, - [5310] = 4996, - [5311] = 5261, - [5312] = 5006, - [5313] = 4996, - [5314] = 5261, - [5315] = 4996, - [5316] = 5263, - [5317] = 5262, - [5318] = 2241, - [5319] = 2220, - [5320] = 5263, - [5321] = 5006, - [5322] = 5274, - [5323] = 5262, - [5324] = 5263, - [5325] = 2216, - [5326] = 5262, - [5327] = 5261, - [5328] = 5274, - [5329] = 5261, - [5330] = 5262, - [5331] = 5331, - [5332] = 5274, - [5333] = 5261, - [5334] = 5261, - [5335] = 5263, - [5336] = 5263, - [5337] = 4996, - [5338] = 5261, - [5339] = 5006, - [5340] = 5261, - [5341] = 5274, - [5342] = 5263, - [5343] = 4996, - [5344] = 5261, - [5345] = 5345, - [5346] = 5261, - [5347] = 5274, - [5348] = 2209, - [5349] = 5263, - [5350] = 5263, - [5351] = 5351, - [5352] = 5352, - [5353] = 5006, - [5354] = 5006, - [5355] = 2208, - [5356] = 4996, - [5357] = 4996, - [5358] = 5006, - [5359] = 4996, - [5360] = 5360, - [5361] = 5360, - [5362] = 5362, - [5363] = 5360, - [5364] = 5364, - [5365] = 5365, + [4735] = 4735, + [4736] = 3472, + [4737] = 1860, + [4738] = 4699, + [4739] = 2082, + [4740] = 3565, + [4741] = 4661, + [4742] = 2090, + [4743] = 2091, + [4744] = 3573, + [4745] = 3141, + [4746] = 2092, + [4747] = 3495, + [4748] = 2094, + [4749] = 4699, + [4750] = 2095, + [4751] = 4438, + [4752] = 4439, + [4753] = 4699, + [4754] = 4661, + [4755] = 2917, + [4756] = 2889, + [4757] = 3511, + [4758] = 1009, + [4759] = 3578, + [4760] = 2960, + [4761] = 256, + [4762] = 3223, + [4763] = 3122, + [4764] = 4319, + [4765] = 4661, + [4766] = 4320, + [4767] = 2086, + [4768] = 4321, + [4769] = 4661, + [4770] = 2098, + [4771] = 1861, + [4772] = 1862, + [4773] = 2078, + [4774] = 2099, + [4775] = 2100, + [4776] = 3105, + [4777] = 4661, + [4778] = 3595, + [4779] = 2893, + [4780] = 2895, + [4781] = 2102, + [4782] = 4661, + [4783] = 3166, + [4784] = 2910, + [4785] = 4661, + [4786] = 2103, + [4787] = 4661, + [4788] = 4661, + [4789] = 4661, + [4790] = 2063, + [4791] = 4661, + [4792] = 4661, + [4793] = 4661, + [4794] = 4661, + [4795] = 4661, + [4796] = 4661, + [4797] = 4661, + [4798] = 4661, + [4799] = 3494, + [4800] = 2897, + [4801] = 1853, + [4802] = 1954, + [4803] = 4803, + [4804] = 4734, + [4805] = 4805, + [4806] = 4701, + [4807] = 4807, + [4808] = 2109, + [4809] = 2110, + [4810] = 2111, + [4811] = 2104, + [4812] = 2049, + [4813] = 2112, + [4814] = 1986, + [4815] = 2114, + [4816] = 2079, + [4817] = 2101, + [4818] = 1857, + [4819] = 1858, + [4820] = 1841, + [4821] = 1859, + [4822] = 1987, + [4823] = 1841, + [4824] = 3383, + [4825] = 4661, + [4826] = 2913, + [4827] = 2980, + [4828] = 4734, + [4829] = 2084, + [4830] = 4805, + [4831] = 4391, + [4832] = 3405, + [4833] = 3648, + [4834] = 1008, + [4835] = 2929, + [4836] = 4701, + [4837] = 4805, + [4838] = 2976, + [4839] = 2845, + [4840] = 4392, + [4841] = 4393, + [4842] = 4734, + [4843] = 4805, + [4844] = 3513, + [4845] = 4701, + [4846] = 3497, + [4847] = 253, + [4848] = 4734, + [4849] = 4805, + [4850] = 4701, + [4851] = 3576, + [4852] = 1954, + [4853] = 4734, + [4854] = 4805, + [4855] = 1008, + [4856] = 4701, + [4857] = 4734, + [4858] = 4805, + [4859] = 2097, + [4860] = 4701, + [4861] = 4734, + [4862] = 4805, + [4863] = 4701, + [4864] = 4805, + [4865] = 4701, + [4866] = 2074, + [4867] = 2134, + [4868] = 1954, + [4869] = 1990, + [4870] = 2120, + [4871] = 4713, + [4872] = 4872, + [4873] = 2214, + [4874] = 2085, + [4875] = 4699, + [4876] = 1855, + [4877] = 4713, + [4878] = 4872, + [4879] = 4431, + [4880] = 4713, + [4881] = 4872, + [4882] = 4713, + [4883] = 4872, + [4884] = 4713, + [4885] = 4872, + [4886] = 4713, + [4887] = 4872, + [4888] = 4713, + [4889] = 4872, + [4890] = 4713, + [4891] = 4872, + [4892] = 4735, + [4893] = 2071, + [4894] = 4699, + [4895] = 4872, + [4896] = 4807, + [4897] = 4661, + [4898] = 3598, + [4899] = 3491, + [4900] = 2073, + [4901] = 2121, + [4902] = 4440, + [4903] = 3588, + [4904] = 3521, + [4905] = 4735, + [4906] = 4807, + [4907] = 4735, + [4908] = 4807, + [4909] = 4735, + [4910] = 4807, + [4911] = 4735, + [4912] = 4807, + [4913] = 4735, + [4914] = 4807, + [4915] = 4735, + [4916] = 4807, + [4917] = 3492, + [4918] = 3495, + [4919] = 3166, + [4920] = 3491, + [4921] = 1954, + [4922] = 4922, + [4923] = 1841, + [4924] = 4433, + [4925] = 4925, + [4926] = 3662, + [4927] = 4925, + [4928] = 3576, + [4929] = 4925, + [4930] = 4925, + [4931] = 4925, + [4932] = 4925, + [4933] = 4925, + [4934] = 4925, + [4935] = 4925, + [4936] = 4925, + [4937] = 4925, + [4938] = 4925, + [4939] = 3578, + [4940] = 2960, + [4941] = 2913, + [4942] = 2980, + [4943] = 4925, + [4944] = 2701, + [4945] = 2929, + [4946] = 2022, + [4947] = 1954, + [4948] = 3702, + [4949] = 4949, + [4950] = 2913, + [4951] = 2980, + [4952] = 2929, + [4953] = 1009, + [4954] = 4925, + [4955] = 2088, + [4956] = 3510, + [4957] = 4925, + [4958] = 4090, + [4959] = 253, + [4960] = 4437, + [4961] = 4393, + [4962] = 4087, + [4963] = 4089, + [4964] = 3523, + [4965] = 256, + [4966] = 3510, + [4967] = 3588, + [4968] = 4087, + [4969] = 1841, + [4970] = 3515, + [4971] = 3526, + [4972] = 3666, + [4973] = 3668, + [4974] = 1853, + [4975] = 3515, + [4976] = 4391, + [4977] = 2889, + [4978] = 3535, + [4979] = 2439, + [4980] = 3516, + [4981] = 3595, + [4982] = 2910, + [4983] = 3513, + [4984] = 3513, + [4985] = 1841, + [4986] = 3578, + [4987] = 4089, + [4988] = 3580, + [4989] = 3581, + [4990] = 3590, + [4991] = 3702, + [4992] = 3248, + [4993] = 3492, + [4994] = 3580, + [4995] = 3497, + [4996] = 3494, + [4997] = 3521, + [4998] = 3522, + [4999] = 3525, + [5000] = 3526, + [5001] = 4441, + [5002] = 3528, + [5003] = 3535, + [5004] = 3662, + [5005] = 3541, + [5006] = 1954, + [5007] = 4925, + [5008] = 3543, + [5009] = 1855, + [5010] = 2845, + [5011] = 4443, + [5012] = 4469, + [5013] = 1008, + [5014] = 3541, + [5015] = 4090, + [5016] = 3648, + [5017] = 3648, + [5018] = 2917, + [5019] = 4925, + [5020] = 4320, + [5021] = 2976, + [5022] = 2845, + [5023] = 3528, + [5024] = 4083, + [5025] = 2917, + [5026] = 1954, + [5027] = 3915, + [5028] = 3511, + [5029] = 4092, + [5030] = 5030, + [5031] = 4925, + [5032] = 2895, + [5033] = 3511, + [5034] = 4438, + [5035] = 4084, + [5036] = 2895, + [5037] = 4085, + [5038] = 3695, + [5039] = 2128, + [5040] = 4439, + [5041] = 4431, + [5042] = 3662, + [5043] = 2122, + [5044] = 1954, + [5045] = 3507, + [5046] = 2125, + [5047] = 3497, + [5048] = 4925, + [5049] = 4086, + [5050] = 3665, + [5051] = 4092, + [5052] = 4085, + [5053] = 4321, + [5054] = 3618, + [5055] = 2130, + [5056] = 2486, + [5057] = 3565, + [5058] = 4319, + [5059] = 4925, + [5060] = 2913, + [5061] = 4440, + [5062] = 2917, + [5063] = 3573, + [5064] = 3777, + [5065] = 3604, + [5066] = 2980, + [5067] = 2929, + [5068] = 2895, + [5069] = 2893, + [5070] = 3223, + [5071] = 1954, + [5072] = 2889, + [5073] = 2910, + [5074] = 3581, + [5075] = 3521, + [5076] = 253, + [5077] = 4478, + [5078] = 2476, + [5079] = 4925, + [5080] = 2897, + [5081] = 2890, + [5082] = 3590, + [5083] = 2742, + [5084] = 2903, + [5085] = 1889, + [5086] = 3685, + [5087] = 1853, + [5088] = 3588, + [5089] = 4925, + [5090] = 4442, + [5091] = 4392, + [5092] = 2890, + [5093] = 3516, + [5094] = 4432, + [5095] = 3507, + [5096] = 4925, + [5097] = 2903, + [5098] = 3523, + [5099] = 3492, + [5100] = 2132, + [5101] = 2124, + [5102] = 3689, + [5103] = 4925, + [5104] = 3616, + [5105] = 4086, + [5106] = 4925, + [5107] = 2951, + [5108] = 3522, + [5109] = 2072, + [5110] = 2075, + [5111] = 2960, + [5112] = 2083, + [5113] = 4434, + [5114] = 253, + [5115] = 2893, + [5116] = 2123, + [5117] = 2910, + [5118] = 3494, + [5119] = 4435, + [5120] = 2087, + [5121] = 2897, + [5122] = 4925, + [5123] = 2976, + [5124] = 3525, + [5125] = 3662, + [5126] = 2156, + [5127] = 4925, + [5128] = 3678, + [5129] = 256, + [5130] = 2976, + [5131] = 2845, + [5132] = 2890, + [5133] = 2889, + [5134] = 4925, + [5135] = 3543, + [5136] = 4925, + [5137] = 4083, + [5138] = 4436, + [5139] = 3662, + [5140] = 4925, + [5141] = 1891, + [5142] = 3576, + [5143] = 4925, + [5144] = 2951, + [5145] = 4925, + [5146] = 2960, + [5147] = 4925, + [5148] = 3565, + [5149] = 256, + [5150] = 4925, + [5151] = 3648, + [5152] = 2903, + [5153] = 3595, + [5154] = 2893, + [5155] = 4925, + [5156] = 4084, + [5157] = 2897, + [5158] = 4925, + [5159] = 3573, + [5160] = 2951, + [5161] = 4434, + [5162] = 3661, + [5163] = 3668, + [5164] = 3510, + [5165] = 3515, + [5166] = 2067, + [5167] = 1857, + [5168] = 1858, + [5169] = 1859, + [5170] = 5170, + [5171] = 4083, + [5172] = 5172, + [5173] = 4432, + [5174] = 5174, + [5175] = 4321, + [5176] = 3689, + [5177] = 3776, + [5178] = 3604, + [5179] = 2780, + [5180] = 4319, + [5181] = 4478, + [5182] = 3097, + [5183] = 3109, + [5184] = 3126, + [5185] = 1841, + [5186] = 3666, + [5187] = 3668, + [5188] = 3662, + [5189] = 4086, + [5190] = 3755, + [5191] = 4320, + [5192] = 3695, + [5193] = 3755, + [5194] = 4321, + [5195] = 5195, + [5196] = 5196, + [5197] = 3472, + [5198] = 3395, + [5199] = 4431, + [5200] = 5170, + [5201] = 5172, + [5202] = 3516, + [5203] = 5174, + [5204] = 3796, + [5205] = 1860, + [5206] = 3717, + [5207] = 1861, + [5208] = 1862, + [5209] = 4440, + [5210] = 3059, + [5211] = 3068, + [5212] = 5212, + [5213] = 3618, + [5214] = 3523, + [5215] = 3098, + [5216] = 1841, + [5217] = 3761, + [5218] = 3689, + [5219] = 3662, + [5220] = 1855, + [5221] = 1841, + [5222] = 4391, + [5223] = 3685, + [5224] = 5224, + [5225] = 5170, + [5226] = 5172, + [5227] = 1954, + [5228] = 5174, + [5229] = 3565, + [5230] = 3573, + [5231] = 1959, + [5232] = 3618, + [5233] = 3662, + [5234] = 4469, + [5235] = 5170, + [5236] = 5172, + [5237] = 3796, + [5238] = 2701, + [5239] = 5174, + [5240] = 4433, + [5241] = 3405, + [5242] = 3560, + [5243] = 4434, + [5244] = 5244, + [5245] = 4435, + [5246] = 4436, + [5247] = 1855, + [5248] = 1954, + [5249] = 5170, + [5250] = 5172, + [5251] = 4437, + [5252] = 5174, + [5253] = 4438, + [5254] = 4441, + [5255] = 3121, + [5256] = 1841, + [5257] = 3616, + [5258] = 3513, + [5259] = 1954, + [5260] = 3761, + [5261] = 5170, + [5262] = 5172, + [5263] = 2026, + [5264] = 1963, + [5265] = 5174, + [5266] = 3383, + [5267] = 4439, + [5268] = 5196, + [5269] = 5172, + [5270] = 4392, + [5271] = 3578, + [5272] = 5172, + [5273] = 3580, + [5274] = 3581, + [5275] = 3590, + [5276] = 3741, + [5277] = 5172, + [5278] = 3742, + [5279] = 5170, + [5280] = 3749, + [5281] = 3757, + [5282] = 3782, + [5283] = 5212, + [5284] = 3789, + [5285] = 3662, + [5286] = 5172, + [5287] = 3665, + [5288] = 4393, + [5289] = 4090, + [5290] = 2742, + [5291] = 5174, + [5292] = 3472, + [5293] = 5195, + [5294] = 5196, + [5295] = 3706, + [5296] = 5224, + [5297] = 3492, + [5298] = 1966, + [5299] = 4219, + [5300] = 5170, + [5301] = 4431, + [5302] = 4083, + [5303] = 4086, + [5304] = 3560, + [5305] = 3497, + [5306] = 4319, + [5307] = 4320, + [5308] = 4321, + [5309] = 4431, + [5310] = 4432, + [5311] = 4391, + [5312] = 4433, + [5313] = 4434, + [5314] = 4435, + [5315] = 4436, + [5316] = 4437, + [5317] = 4438, + [5318] = 4439, + [5319] = 4392, + [5320] = 4393, + [5321] = 4432, + [5322] = 4440, + [5323] = 4441, + [5324] = 4442, + [5325] = 4443, + [5326] = 3673, + [5327] = 3702, + [5328] = 3521, + [5329] = 3522, + [5330] = 3525, + [5331] = 3526, + [5332] = 3383, + [5333] = 1008, + [5334] = 4391, + [5335] = 3685, + [5336] = 4442, + [5337] = 4087, + [5338] = 4433, + [5339] = 4434, + [5340] = 4435, + [5341] = 4436, + [5342] = 5342, + [5343] = 4437, + [5344] = 4438, + [5345] = 4439, + [5346] = 4392, + [5347] = 4393, + [5348] = 5224, + [5349] = 1853, + [5350] = 4089, + [5351] = 3722, + [5352] = 5172, + [5353] = 1889, + [5354] = 3678, + [5355] = 3093, + [5356] = 3115, + [5357] = 3116, + [5358] = 3662, + [5359] = 5224, + [5360] = 4087, + [5361] = 3604, + [5362] = 3117, + [5363] = 4089, + [5364] = 3528, + [5365] = 3535, [5366] = 5366, - [5367] = 5367, - [5368] = 5368, - [5369] = 5369, - [5370] = 5351, - [5371] = 5362, - [5372] = 5006, - [5373] = 5365, - [5374] = 5360, - [5375] = 5367, - [5376] = 5367, - [5377] = 5369, - [5378] = 5378, - [5379] = 5351, - [5380] = 5362, - [5381] = 5381, - [5382] = 5369, - [5383] = 5365, - [5384] = 4996, - [5385] = 5360, - [5386] = 5369, - [5387] = 5362, - [5388] = 5360, - [5389] = 5369, - [5390] = 5362, - [5391] = 5367, - [5392] = 5351, - [5393] = 4996, - [5394] = 5360, - [5395] = 5369, - [5396] = 5362, - [5397] = 2618, - [5398] = 5360, - [5399] = 5360, - [5400] = 5360, - [5401] = 5362, - [5402] = 5402, - [5403] = 5403, - [5404] = 3790, - [5405] = 3793, - [5406] = 2308, - [5407] = 2310, - [5408] = 5006, - [5409] = 5409, - [5410] = 2313, - [5411] = 2287, - [5412] = 2292, - [5413] = 2293, - [5414] = 5414, - [5415] = 2302, - [5416] = 2306, - [5417] = 2289, - [5418] = 2295, - [5419] = 2311, - [5420] = 2299, - [5421] = 5365, - [5422] = 5352, - [5423] = 5366, - [5424] = 5365, - [5425] = 5369, - [5426] = 2618, - [5427] = 5402, - [5428] = 5428, - [5429] = 5352, - [5430] = 5352, - [5431] = 5352, - [5432] = 5366, - [5433] = 5402, - [5434] = 5352, - [5435] = 5402, - [5436] = 5366, - [5437] = 5402, - [5438] = 5366, - [5439] = 5366, - [5440] = 5366, - [5441] = 2937, - [5442] = 5366, - [5443] = 5402, - [5444] = 5402, - [5445] = 5402, - [5446] = 5352, - [5447] = 5352, - [5448] = 5366, - [5449] = 5366, - [5450] = 2239, - [5451] = 5402, - [5452] = 5402, - [5453] = 2943, - [5454] = 5352, - [5455] = 5352, - [5456] = 5366, - [5457] = 5352, - [5458] = 5402, - [5459] = 1655, - [5460] = 5402, - [5461] = 5366, - [5462] = 5402, - [5463] = 5366, - [5464] = 5366, - [5465] = 5352, - [5466] = 5366, - [5467] = 5402, - [5468] = 5402, - [5469] = 5402, - [5470] = 5352, - [5471] = 5366, - [5472] = 5366, - [5473] = 5352, - [5474] = 5352, - [5475] = 5352, - [5476] = 5402, - [5477] = 5402, - [5478] = 5352, - [5479] = 5366, - [5480] = 5352, - [5481] = 5352, - [5482] = 5352, - [5483] = 5402, - [5484] = 5366, - [5485] = 5366, - [5486] = 5402, - [5487] = 5402, - [5488] = 2937, - [5489] = 5489, - [5490] = 5352, - [5491] = 5489, - [5492] = 5489, - [5493] = 5366, - [5494] = 5402, - [5495] = 5352, - [5496] = 5366, - [5497] = 5489, - [5498] = 5352, - [5499] = 5499, - [5500] = 5402, - [5501] = 5352, - [5502] = 5366, - [5503] = 5503, - [5504] = 5503, - [5505] = 5503, - [5506] = 5503, - [5507] = 5402, - [5508] = 5366, - [5509] = 5352, - [5510] = 5366, - [5511] = 5499, - [5512] = 5366, - [5513] = 5366, - [5514] = 5499, - [5515] = 5402, - [5516] = 5402, - [5517] = 5503, - [5518] = 5352, - [5519] = 5366, - [5520] = 5402, - [5521] = 5352, - [5522] = 5366, - [5523] = 5352, - [5524] = 5366, - [5525] = 5503, - [5526] = 5352, - [5527] = 5503, - [5528] = 2943, - [5529] = 5402, - [5530] = 5352, - [5531] = 5402, - [5532] = 5402, - [5533] = 5352, - [5534] = 5499, - [5535] = 5402, - [5536] = 5352, - [5537] = 5402, - [5538] = 5352, - [5539] = 5366, - [5540] = 5366, - [5541] = 5541, - [5542] = 5402, - [5543] = 5543, - [5544] = 5544, - [5545] = 5545, - [5546] = 5402, - [5547] = 5366, - [5548] = 5366, - [5549] = 5366, - [5550] = 5541, - [5551] = 5402, - [5552] = 5541, - [5553] = 5352, - [5554] = 5352, - [5555] = 5555, - [5556] = 5555, - [5557] = 5499, - [5558] = 5558, - [5559] = 5555, - [5560] = 5555, - [5561] = 5558, - [5562] = 5555, - [5563] = 5563, - [5564] = 5555, - [5565] = 5558, - [5566] = 5555, - [5567] = 5558, - [5568] = 5558, - [5569] = 5558, - [5570] = 5555, - [5571] = 5558, - [5572] = 5555, - [5573] = 5555, - [5574] = 5558, - [5575] = 5558, - [5576] = 5558, - [5577] = 5558, - [5578] = 5555, - [5579] = 5579, - [5580] = 5580, - [5581] = 5579, - [5582] = 5499, - [5583] = 5583, - [5584] = 5584, - [5585] = 5583, - [5586] = 5583, - [5587] = 5587, - [5588] = 5579, - [5589] = 5579, - [5590] = 5583, - [5591] = 5579, - [5592] = 5583, - [5593] = 5584, - [5594] = 5579, - [5595] = 5583, - [5596] = 5579, - [5597] = 5597, - [5598] = 5584, - [5599] = 5579, - [5600] = 5600, - [5601] = 5583, - [5602] = 5584, - [5603] = 5584, - [5604] = 5580, - [5605] = 5545, - [5606] = 5579, - [5607] = 5607, - [5608] = 5579, - [5609] = 5583, - [5610] = 5584, - [5611] = 5583, - [5612] = 5584, - [5613] = 5613, - [5614] = 5583, - [5615] = 5615, - [5616] = 5587, - [5617] = 5584, - [5618] = 5618, - [5619] = 5579, - [5620] = 5620, - [5621] = 5544, - [5622] = 5600, - [5623] = 5499, - [5624] = 5597, - [5625] = 5583, - [5626] = 5607, - [5627] = 5579, - [5628] = 5579, - [5629] = 5583, - [5630] = 5618, - [5631] = 5583, - [5632] = 5579, - [5633] = 5579, - [5634] = 5579, - [5635] = 5635, - [5636] = 5583, - [5637] = 5583, - [5638] = 2273, - [5639] = 5579, - [5640] = 5583, - [5641] = 5584, - [5642] = 2255, - [5643] = 5600, - [5644] = 5584, - [5645] = 5583, - [5646] = 5646, - [5647] = 5647, - [5648] = 5648, - [5649] = 5649, - [5650] = 5650, - [5651] = 5648, - [5652] = 5652, - [5653] = 5649, - [5654] = 5647, + [5367] = 4320, + [5368] = 4084, + [5369] = 5224, + [5370] = 3678, + [5371] = 3405, + [5372] = 5224, + [5373] = 3541, + [5374] = 1866, + [5375] = 5224, + [5376] = 4440, + [5377] = 4085, + [5378] = 5224, + [5379] = 3605, + [5380] = 3616, + [5381] = 3543, + [5382] = 4441, + [5383] = 1891, + [5384] = 2184, + [5385] = 4090, + [5386] = 2213, + [5387] = 3395, + [5388] = 3689, + [5389] = 4319, + [5390] = 3666, + [5391] = 3668, + [5392] = 4320, + [5393] = 3695, + [5394] = 4321, + [5395] = 4431, + [5396] = 4432, + [5397] = 4391, + [5398] = 3685, + [5399] = 4433, + [5400] = 4435, + [5401] = 4436, + [5402] = 4437, + [5403] = 4438, + [5404] = 4439, + [5405] = 4392, + [5406] = 4393, + [5407] = 3678, + [5408] = 4442, + [5409] = 4440, + [5410] = 4441, + [5411] = 4442, + [5412] = 4443, + [5413] = 3695, + [5414] = 4443, + [5415] = 4092, + [5416] = 4084, + [5417] = 4085, + [5418] = 4319, + [5419] = 3665, + [5420] = 3665, + [5421] = 1009, + [5422] = 5174, + [5423] = 4092, + [5424] = 4443, + [5425] = 3666, + [5426] = 2788, + [5427] = 1956, + [5428] = 3777, + [5429] = 3605, + [5430] = 3097, + [5431] = 2893, + [5432] = 1008, + [5433] = 3494, + [5434] = 2897, + [5435] = 3109, + [5436] = 3781, + [5437] = 3662, + [5438] = 3737, + [5439] = 3780, + [5440] = 2486, + [5441] = 1841, + [5442] = 3848, + [5443] = 3754, + [5444] = 3753, + [5445] = 3803, + [5446] = 3750, + [5447] = 3673, + [5448] = 2476, + [5449] = 3791, + [5450] = 2439, + [5451] = 3722, + [5452] = 3755, + [5453] = 3849, + [5454] = 3588, + [5455] = 3511, + [5456] = 3126, + [5457] = 3595, + [5458] = 3616, + [5459] = 2895, + [5460] = 2213, + [5461] = 2910, + [5462] = 3516, + [5463] = 3741, + [5464] = 3817, + [5465] = 3806, + [5466] = 2486, + [5467] = 3819, + [5468] = 3576, + [5469] = 3827, + [5470] = 3097, + [5471] = 3109, + [5472] = 3808, + [5473] = 3821, + [5474] = 3742, + [5475] = 2889, + [5476] = 3706, + [5477] = 2476, + [5478] = 3841, + [5479] = 3844, + [5480] = 3605, + [5481] = 3749, + [5482] = 3523, + [5483] = 3662, + [5484] = 3662, + [5485] = 3126, + [5486] = 3757, + [5487] = 253, + [5488] = 3696, + [5489] = 3782, + [5490] = 1956, + [5491] = 3565, + [5492] = 3745, + [5493] = 3573, + [5494] = 1866, + [5495] = 1994, + [5496] = 3588, + [5497] = 3717, + [5498] = 3789, + [5499] = 2890, + [5500] = 2903, + [5501] = 3098, + [5502] = 3059, + [5503] = 3794, + [5504] = 3814, + [5505] = 3166, + [5506] = 3786, + [5507] = 3784, + [5508] = 2917, + [5509] = 3829, + [5510] = 4469, + [5511] = 3068, + [5512] = 3662, + [5513] = 3766, + [5514] = 2976, + [5515] = 3706, + [5516] = 2845, + [5517] = 3661, + [5518] = 3727, + [5519] = 2439, + [5520] = 3662, + [5521] = 3098, + [5522] = 3839, + [5523] = 3783, + [5524] = 3811, + [5525] = 3662, + [5526] = 3492, + [5527] = 3667, + [5528] = 4478, + [5529] = 3758, + [5530] = 3595, + [5531] = 3513, + [5532] = 3093, + [5533] = 3115, + [5534] = 3809, + [5535] = 3815, + [5536] = 3677, + [5537] = 3680, + [5538] = 2960, + [5539] = 3847, + [5540] = 3578, + [5541] = 3830, + [5542] = 3580, + [5543] = 3581, + [5544] = 3590, + [5545] = 1954, + [5546] = 3723, + [5547] = 3775, + [5548] = 3776, + [5549] = 1857, + [5550] = 3702, + [5551] = 1858, + [5552] = 3759, + [5553] = 1859, + [5554] = 3673, + [5555] = 3722, + [5556] = 4478, + [5557] = 3121, + [5558] = 3846, + [5559] = 4469, + [5560] = 1860, + [5561] = 3121, + [5562] = 3729, + [5563] = 3576, + [5564] = 3823, + [5565] = 1009, + [5566] = 3777, + [5567] = 2913, + [5568] = 2980, + [5569] = 3796, + [5570] = 3770, + [5571] = 2929, + [5572] = 1861, + [5573] = 3698, + [5574] = 3824, + [5575] = 3059, + [5576] = 3068, + [5577] = 1862, + [5578] = 3825, + [5579] = 3507, + [5580] = 3760, + [5581] = 3510, + [5582] = 3515, + [5583] = 3684, + [5584] = 3756, + [5585] = 3768, + [5586] = 3662, + [5587] = 3722, + [5588] = 3761, + [5589] = 3748, + [5590] = 3497, + [5591] = 3662, + [5592] = 3507, + [5593] = 3093, + [5594] = 3702, + [5595] = 1855, + [5596] = 3521, + [5597] = 3522, + [5598] = 3525, + [5599] = 3526, + [5600] = 3765, + [5601] = 3116, + [5602] = 3115, + [5603] = 3528, + [5604] = 3675, + [5605] = 3116, + [5606] = 3117, + [5607] = 3117, + [5608] = 3535, + [5609] = 3541, + [5610] = 2066, + [5611] = 2126, + [5612] = 3661, + [5613] = 3777, + [5614] = 3543, + [5615] = 2184, + [5616] = 256, + [5617] = 3717, + [5618] = 2951, + [5619] = 3765, + [5620] = 3830, + [5621] = 3768, + [5622] = 3675, + [5623] = 4321, + [5624] = 3766, + [5625] = 3729, + [5626] = 3848, + [5627] = 3803, + [5628] = 5628, + [5629] = 3824, + [5630] = 4391, + [5631] = 3685, + [5632] = 3766, + [5633] = 3777, + [5634] = 4433, + [5635] = 3777, + [5636] = 4434, + [5637] = 4435, + [5638] = 4436, + [5639] = 4437, + [5640] = 4438, + [5641] = 4439, + [5642] = 3803, + [5643] = 4392, + [5644] = 4393, + [5645] = 3849, + [5646] = 3817, + [5647] = 3819, + [5648] = 3770, + [5649] = 3825, + [5650] = 3811, + [5651] = 3755, + [5652] = 3827, + [5653] = 3662, + [5654] = 3760, [5655] = 5655, - [5656] = 5655, + [5656] = 3777, [5657] = 5657, - [5658] = 5648, - [5659] = 5649, - [5660] = 5647, - [5661] = 5646, - [5662] = 5657, - [5663] = 5652, - [5664] = 5664, - [5665] = 5655, - [5666] = 5655, - [5667] = 5657, - [5668] = 5664, - [5669] = 5646, - [5670] = 5657, - [5671] = 5648, - [5672] = 5649, - [5673] = 5652, - [5674] = 5647, - [5675] = 5647, - [5676] = 5655, - [5677] = 5657, - [5678] = 5648, - [5679] = 5649, - [5680] = 5647, - [5681] = 5655, - [5682] = 5657, - [5683] = 5648, - [5684] = 5649, - [5685] = 5652, - [5686] = 5580, - [5687] = 5647, - [5688] = 5655, - [5689] = 5657, - [5690] = 5648, - [5691] = 5649, - [5692] = 5647, - [5693] = 5499, - [5694] = 5646, - [5695] = 5652, - [5696] = 5655, - [5697] = 5657, - [5698] = 5655, - [5699] = 5648, - [5700] = 5649, - [5701] = 5647, - [5702] = 5657, - [5703] = 5648, - [5704] = 5649, - [5705] = 5648, - [5706] = 5652, - [5707] = 5655, - [5708] = 5657, - [5709] = 5648, - [5710] = 5649, - [5711] = 5647, - [5712] = 5647, - [5713] = 5649, - [5714] = 5652, - [5715] = 5655, - [5716] = 5657, - [5717] = 5648, - [5718] = 5649, - [5719] = 5647, - [5720] = 5655, - [5721] = 5657, - [5722] = 5647, - [5723] = 5648, - [5724] = 5652, - [5725] = 5649, - [5726] = 5652, - [5727] = 5647, - [5728] = 5655, - [5729] = 2255, - [5730] = 5646, - [5731] = 5597, - [5732] = 5732, - [5733] = 5733, - [5734] = 5597, - [5735] = 5655, - [5736] = 5657, - [5737] = 5657, - [5738] = 5648, - [5739] = 5649, - [5740] = 5648, - [5741] = 5741, - [5742] = 5647, - [5743] = 5655, - [5744] = 5657, - [5745] = 5647, - [5746] = 136, - [5747] = 5646, - [5748] = 5587, - [5749] = 5749, - [5750] = 5649, - [5751] = 5751, - [5752] = 5607, - [5753] = 5650, - [5754] = 5648, - [5755] = 5649, - [5756] = 5756, - [5757] = 5655, - [5758] = 1644, - [5759] = 2273, - [5760] = 1639, - [5761] = 5499, - [5762] = 5762, - [5763] = 5657, - [5764] = 5652, - [5765] = 5664, - [5766] = 135, - [5767] = 5647, - [5768] = 5618, - [5769] = 5580, - [5770] = 5770, - [5771] = 5607, - [5772] = 5772, - [5773] = 5655, - [5774] = 1648, - [5775] = 5657, - [5776] = 1646, - [5777] = 5650, - [5778] = 1650, - [5779] = 1651, - [5780] = 1652, - [5781] = 5648, - [5782] = 5649, - [5783] = 5647, - [5784] = 1640, - [5785] = 1645, - [5786] = 5646, - [5787] = 1647, - [5788] = 1649, - [5789] = 5648, - [5790] = 1653, - [5791] = 5587, - [5792] = 1641, - [5793] = 1643, - [5794] = 5751, - [5795] = 1642, - [5796] = 5618, - [5797] = 5652, - [5798] = 5655, - [5799] = 5657, - [5800] = 5649, - [5801] = 5801, - [5802] = 5751, - [5803] = 5615, - [5804] = 5804, - [5805] = 5805, - [5806] = 5806, - [5807] = 5807, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 5809, - [5812] = 5812, - [5813] = 5813, - [5814] = 5809, - [5815] = 5805, - [5816] = 5809, - [5817] = 5817, - [5818] = 5580, - [5819] = 5819, - [5820] = 5635, - [5821] = 5499, - [5822] = 5587, - [5823] = 5597, - [5824] = 5607, - [5825] = 5618, - [5826] = 5826, - [5827] = 5813, - [5828] = 5828, - [5829] = 5829, - [5830] = 5830, - [5831] = 5805, - [5832] = 5832, - [5833] = 5833, - [5834] = 5834, - [5835] = 5808, - [5836] = 5828, - [5837] = 5837, - [5838] = 5580, - [5839] = 5817, - [5840] = 5840, - [5841] = 5809, - [5842] = 5809, - [5843] = 5804, - [5844] = 5587, - [5845] = 5845, - [5846] = 5597, - [5847] = 5607, - [5848] = 5848, - [5849] = 5618, - [5850] = 5499, - [5851] = 5851, - [5852] = 5852, - [5853] = 5837, - [5854] = 5804, - [5855] = 5845, - [5856] = 5848, - [5857] = 5809, - [5858] = 5805, - [5859] = 2285, - [5860] = 5860, - [5861] = 5837, - [5862] = 5804, - [5863] = 5845, - [5864] = 5864, - [5865] = 5848, - [5866] = 5613, - [5867] = 5867, - [5868] = 5868, - [5869] = 5837, - [5870] = 5845, - [5871] = 5848, - [5872] = 5872, - [5873] = 5873, - [5874] = 5874, - [5875] = 2273, - [5876] = 5876, - [5877] = 5809, - [5878] = 5805, - [5879] = 5828, - [5880] = 5828, - [5881] = 5805, - [5882] = 5882, - [5883] = 5883, - [5884] = 5832, - [5885] = 5499, - [5886] = 5828, - [5887] = 5887, - [5888] = 2255, - [5889] = 5872, - [5890] = 5890, - [5891] = 5805, - [5892] = 5890, - [5893] = 5893, - [5894] = 5829, - [5895] = 5805, - [5896] = 5896, - [5897] = 5808, - [5898] = 5828, - [5899] = 5837, - [5900] = 5900, - [5901] = 5901, - [5902] = 5499, - [5903] = 5903, - [5904] = 5904, - [5905] = 5804, - [5906] = 5893, - [5907] = 5845, - [5908] = 5908, - [5909] = 5848, - [5910] = 5837, - [5911] = 5804, - [5912] = 5845, - [5913] = 5848, - [5914] = 5914, - [5915] = 5915, - [5916] = 5620, - [5917] = 5828, - [5918] = 5829, - [5919] = 5808, - [5920] = 5805, - [5921] = 5908, - [5922] = 5829, - [5923] = 5808, - [5924] = 5900, - [5925] = 2850, - [5926] = 5809, - [5927] = 5809, - [5928] = 5928, - [5929] = 5829, - [5930] = 5805, - [5931] = 5808, - [5932] = 5828, - [5933] = 5887, - [5934] = 5934, - [5935] = 5829, - [5936] = 5808, - [5937] = 5829, - [5938] = 5808, - [5939] = 5829, - [5940] = 5808, - [5941] = 5873, - [5942] = 5942, - [5943] = 5805, - [5944] = 5828, - [5945] = 5903, - [5946] = 5809, - [5947] = 5828, - [5948] = 5901, - [5949] = 5914, - [5950] = 5950, - [5951] = 5809, - [5952] = 5952, - [5953] = 5828, - [5954] = 5873, - [5955] = 5903, - [5956] = 5873, - [5957] = 5957, - [5958] = 5805, - [5959] = 5828, - [5960] = 5960, - [5961] = 5809, - [5962] = 5809, - [5963] = 5805, - [5964] = 5828, - [5965] = 5928, - [5966] = 5829, - [5967] = 5967, - [5968] = 5968, - [5969] = 5969, - [5970] = 5952, - [5971] = 5971, - [5972] = 5851, - [5973] = 5973, - [5974] = 5974, - [5975] = 5974, - [5976] = 5830, - [5977] = 5977, - [5978] = 5978, - [5979] = 5969, - [5980] = 5980, - [5981] = 5837, - [5982] = 5804, - [5983] = 5845, - [5984] = 5848, - [5985] = 5985, - [5986] = 5986, - [5987] = 5971, - [5988] = 5837, - [5989] = 5804, - [5990] = 5845, - [5991] = 5848, - [5992] = 5992, - [5993] = 5973, - [5994] = 5994, - [5995] = 5974, - [5996] = 5996, - [5997] = 5969, - [5998] = 5826, - [5999] = 5971, - [6000] = 5934, - [6001] = 5852, - [6002] = 6002, - [6003] = 6003, - [6004] = 6004, - [6005] = 5960, - [6006] = 6006, - [6007] = 6007, - [6008] = 5868, - [6009] = 5896, - [6010] = 5992, - [6011] = 5969, - [6012] = 6012, - [6013] = 6013, - [6014] = 2325, - [6015] = 5867, - [6016] = 6016, - [6017] = 6017, - [6018] = 2285, - [6019] = 5992, - [6020] = 5812, - [6021] = 5942, - [6022] = 5973, - [6023] = 6023, - [6024] = 6024, - [6025] = 5969, - [6026] = 6026, - [6027] = 5833, - [6028] = 5992, - [6029] = 5969, - [6030] = 5992, - [6031] = 2850, - [6032] = 5957, - [6033] = 5819, - [6034] = 1883, - [6035] = 6035, - [6036] = 6036, - [6037] = 2050, - [6038] = 5499, - [6039] = 6039, - [6040] = 5978, - [6041] = 5499, - [6042] = 6042, - [6043] = 6043, - [6044] = 5971, - [6045] = 5992, - [6046] = 6046, - [6047] = 6047, - [6048] = 6048, - [6049] = 6049, - [6050] = 5974, - [6051] = 6051, - [6052] = 5806, - [6053] = 6053, - [6054] = 6054, - [6055] = 6055, - [6056] = 5969, - [6057] = 5992, - [6058] = 5810, - [6059] = 6059, - [6060] = 5807, - [6061] = 6061, - [6062] = 6062, - [6063] = 6063, - [6064] = 6064, - [6065] = 6064, - [6066] = 2273, - [6067] = 6067, - [6068] = 2242, - [6069] = 5618, - [6070] = 854, - [6071] = 6064, - [6072] = 2417, - [6073] = 5618, - [6074] = 6064, - [6075] = 6075, - [6076] = 2489, - [6077] = 5499, - [6078] = 6075, - [6079] = 851, - [6080] = 5770, - [6081] = 5607, - [6082] = 5597, - [6083] = 2212, - [6084] = 5597, - [6085] = 6075, - [6086] = 2407, - [6087] = 5587, - [6088] = 2210, + [5658] = 3678, + [5659] = 3689, + [5660] = 3783, + [5661] = 3678, + [5662] = 3723, + [5663] = 3780, + [5664] = 3811, + [5665] = 3667, + [5666] = 2959, + [5667] = 3741, + [5668] = 3765, + [5669] = 3742, + [5670] = 3749, + [5671] = 3757, + [5672] = 3782, + [5673] = 3696, + [5674] = 3808, + [5675] = 3789, + [5676] = 3777, + [5677] = 3809, + [5678] = 3661, + [5679] = 4319, + [5680] = 3727, + [5681] = 3756, + [5682] = 3839, + [5683] = 3796, + [5684] = 3825, + [5685] = 3754, + [5686] = 3823, + [5687] = 3781, + [5688] = 3753, + [5689] = 1855, + [5690] = 3750, + [5691] = 3849, + [5692] = 3756, + [5693] = 4443, + [5694] = 3711, + [5695] = 3776, + [5696] = 3761, + [5697] = 3677, + [5698] = 5698, + [5699] = 3666, + [5700] = 3680, + [5701] = 3668, + [5702] = 4440, + [5703] = 4084, + [5704] = 3758, + [5705] = 4085, + [5706] = 2864, + [5707] = 3723, + [5708] = 3791, + [5709] = 3717, + [5710] = 3759, + [5711] = 2911, + [5712] = 3666, + [5713] = 3770, + [5714] = 3668, + [5715] = 3698, + [5716] = 3815, + [5717] = 3791, + [5718] = 2911, + [5719] = 2959, + [5720] = 5720, + [5721] = 2867, + [5722] = 3776, + [5723] = 2872, + [5724] = 3829, + [5725] = 3847, + [5726] = 2864, + [5727] = 4087, + [5728] = 3815, + [5729] = 3780, + [5730] = 4089, + [5731] = 2009, + [5732] = 3841, + [5733] = 3698, + [5734] = 2780, + [5735] = 3806, + [5736] = 3696, + [5737] = 3844, + [5738] = 4441, + [5739] = 2788, + [5740] = 3846, + [5741] = 3821, + [5742] = 2867, + [5743] = 5743, + [5744] = 4431, + [5745] = 3817, + [5746] = 3819, + [5747] = 3760, + [5748] = 3814, + [5749] = 3844, + [5750] = 3689, + [5751] = 4320, + [5752] = 3758, + [5753] = 3796, + [5754] = 3737, + [5755] = 3827, + [5756] = 3684, + [5757] = 2872, + [5758] = 3748, + [5759] = 3786, + [5760] = 3848, + [5761] = 3784, + [5762] = 3786, + [5763] = 3695, + [5764] = 3821, + [5765] = 3784, + [5766] = 3814, + [5767] = 4090, + [5768] = 3830, + [5769] = 3741, + [5770] = 3742, + [5771] = 3841, + [5772] = 3775, + [5773] = 3749, + [5774] = 3685, + [5775] = 3757, + [5776] = 4086, + [5777] = 3745, + [5778] = 3695, + [5779] = 3829, + [5780] = 3847, + [5781] = 3782, + [5782] = 3780, + [5783] = 3706, + [5784] = 3759, + [5785] = 4442, + [5786] = 3766, + [5787] = 3761, + [5788] = 3777, + [5789] = 3789, + [5790] = 2701, + [5791] = 3729, + [5792] = 3824, + [5793] = 2742, + [5794] = 3846, + [5795] = 4432, + [5796] = 3748, + [5797] = 2001, + [5798] = 3755, + [5799] = 3777, + [5800] = 4092, + [5801] = 3783, + [5802] = 3667, + [5803] = 3808, + [5804] = 3809, + [5805] = 3677, + [5806] = 4083, + [5807] = 3768, + [5808] = 3727, + [5809] = 3839, + [5810] = 3675, + [5811] = 3680, + [5812] = 3754, + [5813] = 3794, + [5814] = 3775, + [5815] = 3753, + [5816] = 1855, + [5817] = 3823, + [5818] = 3806, + [5819] = 3794, + [5820] = 3750, + [5821] = 3775, + [5822] = 3616, + [5823] = 3737, + [5824] = 3745, + [5825] = 3684, + [5826] = 3791, + [5827] = 3781, + [5828] = 2036, + [5829] = 3803, + [5830] = 2053, + [5831] = 1889, + [5832] = 3846, + [5833] = 3560, + [5834] = 3717, + [5835] = 3738, + [5836] = 3821, + [5837] = 3790, + [5838] = 2129, + [5839] = 3823, + [5840] = 3758, + [5841] = 3744, + [5842] = 3744, + [5843] = 3740, + [5844] = 2701, + [5845] = 2742, + [5846] = 1928, + [5847] = 2042, + [5848] = 3738, + [5849] = 3790, + [5850] = 3744, + [5851] = 3740, + [5852] = 3848, + [5853] = 1853, + [5854] = 3847, + [5855] = 2043, + [5856] = 5856, + [5857] = 3794, + [5858] = 1891, + [5859] = 2046, + [5860] = 3811, + [5861] = 2069, + [5862] = 2055, + [5863] = 3748, + [5864] = 3740, + [5865] = 2780, + [5866] = 3760, + [5867] = 3790, + [5868] = 2047, + [5869] = 2048, + [5870] = 3817, + [5871] = 3819, + [5872] = 2788, + [5873] = 3830, + [5874] = 2035, + [5875] = 3759, + [5876] = 3829, + [5877] = 3166, + [5878] = 3806, + [5879] = 4219, + [5880] = 3560, + [5881] = 3808, + [5882] = 2033, + [5883] = 3814, + [5884] = 2049, + [5885] = 3729, + [5886] = 3750, + [5887] = 3809, + [5888] = 3841, + [5889] = 3815, + [5890] = 3844, + [5891] = 2063, + [5892] = 3827, + [5893] = 2034, + [5894] = 3711, + [5895] = 2127, + [5896] = 3753, + [5897] = 3727, + [5898] = 5898, + [5899] = 3839, + [5900] = 3745, + [5901] = 3825, + [5902] = 4478, + [5903] = 3754, + [5904] = 3824, + [5905] = 3738, + [5906] = 3166, + [5907] = 3738, + [5908] = 3790, + [5909] = 3744, + [5910] = 3740, + [5911] = 3737, + [5912] = 4469, + [5913] = 3661, + [5914] = 3765, + [5915] = 3706, + [5916] = 3560, + [5917] = 2184, + [5918] = 2112, + [5919] = 3827, + [5920] = 2872, + [5921] = 3823, + [5922] = 2091, + [5923] = 2092, + [5924] = 2959, + [5925] = 2121, + [5926] = 3753, + [5927] = 2084, + [5928] = 2093, + [5929] = 2094, + [5930] = 3791, + [5931] = 2095, + [5932] = 3811, + [5933] = 2701, + [5934] = 3803, + [5935] = 3750, + [5936] = 1855, + [5937] = 2114, + [5938] = 3711, + [5939] = 2098, + [5940] = 3775, + [5941] = 2085, + [5942] = 2117, + [5943] = 5943, + [5944] = 2097, + [5945] = 2118, + [5946] = 2742, + [5947] = 2134, + [5948] = 2099, + [5949] = 2100, + [5950] = 3806, + [5951] = 2102, + [5952] = 3821, + [5953] = 2103, + [5954] = 3758, + [5955] = 3830, + [5956] = 2107, + [5957] = 3766, + [5958] = 3814, + [5959] = 2108, + [5960] = 2701, + [5961] = 3848, + [5962] = 2071, + [5963] = 1889, + [5964] = 2073, + [5965] = 2104, + [5966] = 1891, + [5967] = 3808, + [5968] = 2742, + [5969] = 2911, + [5970] = 2082, + [5971] = 3754, + [5972] = 2101, + [5973] = 2788, + [5974] = 3809, + [5975] = 2089, + [5976] = 2109, + [5977] = 2867, + [5978] = 3829, + [5979] = 3847, + [5980] = 2086, + [5981] = 3825, + [5982] = 2090, + [5983] = 2110, + [5984] = 2111, + [5985] = 2074, + [5986] = 3759, + [5987] = 3815, + [5988] = 3780, + [5989] = 3737, + [5990] = 2780, + [5991] = 3760, + [5992] = 2213, + [5993] = 3841, + [5994] = 3794, + [5995] = 2120, + [5996] = 2077, + [5997] = 2078, + [5998] = 2079, + [5999] = 5999, + [6000] = 2788, + [6001] = 3745, + [6002] = 2080, + [6003] = 2864, + [6004] = 3817, + [6005] = 2911, + [6006] = 2959, + [6007] = 2867, + [6008] = 3727, + [6009] = 2872, + [6010] = 3846, + [6011] = 3729, + [6012] = 3824, + [6013] = 3839, + [6014] = 3819, + [6015] = 3844, + [6016] = 2780, + [6017] = 3748, + [6018] = 2864, + [6019] = 3765, + [6020] = 2070, + [6021] = 2213, + [6022] = 2701, + [6023] = 2754, + [6024] = 2701, + [6025] = 2184, + [6026] = 2742, + [6027] = 1889, + [6028] = 2780, + [6029] = 2754, + [6030] = 3560, + [6031] = 2780, + [6032] = 1891, + [6033] = 2788, + [6034] = 3560, + [6035] = 2788, + [6036] = 1879, + [6037] = 2742, + [6038] = 4089, + [6039] = 3711, + [6040] = 3738, + [6041] = 3711, + [6042] = 4083, + [6043] = 4092, + [6044] = 4086, + [6045] = 4092, + [6046] = 1889, + [6047] = 3711, + [6048] = 3744, + [6049] = 3494, + [6050] = 3790, + [6051] = 3560, + [6052] = 4087, + [6053] = 5943, + [6054] = 3740, + [6055] = 1889, + [6056] = 4083, + [6057] = 1889, + [6058] = 4090, + [6059] = 4085, + [6060] = 2839, + [6061] = 1891, + [6062] = 4090, + [6063] = 4084, + [6064] = 1891, + [6065] = 2799, + [6066] = 5943, + [6067] = 4089, + [6068] = 4087, + [6069] = 4084, + [6070] = 4085, + [6071] = 2799, + [6072] = 1853, + [6073] = 1964, + [6074] = 3740, + [6075] = 4086, + [6076] = 3711, + [6077] = 3511, + [6078] = 3738, + [6079] = 3744, + [6080] = 1975, + [6081] = 2839, + [6082] = 3790, + [6083] = 1891, + [6084] = 5943, + [6085] = 2883, + [6086] = 2882, + [6087] = 2002, + [6088] = 6088, [6089] = 6089, - [6090] = 5837, - [6091] = 135, - [6092] = 5804, - [6093] = 6064, - [6094] = 5580, - [6095] = 5587, + [6090] = 2005, + [6091] = 391, + [6092] = 6089, + [6093] = 403, + [6094] = 404, + [6095] = 361, [6096] = 6096, - [6097] = 6064, - [6098] = 1648, - [6099] = 2255, - [6100] = 6064, - [6101] = 5845, - [6102] = 5749, - [6103] = 1650, - [6104] = 1651, - [6105] = 1652, - [6106] = 5848, - [6107] = 1640, - [6108] = 5837, - [6109] = 5804, - [6110] = 1645, - [6111] = 5845, - [6112] = 1642, - [6113] = 5848, - [6114] = 1647, - [6115] = 1649, - [6116] = 2230, - [6117] = 6075, - [6118] = 2223, - [6119] = 136, - [6120] = 5580, - [6121] = 6075, - [6122] = 6122, - [6123] = 6123, - [6124] = 1644, - [6125] = 1653, - [6126] = 1639, - [6127] = 5607, - [6128] = 1641, - [6129] = 1643, - [6130] = 1646, - [6131] = 6131, - [6132] = 5499, - [6133] = 5845, - [6134] = 2210, - [6135] = 1708, - [6136] = 6136, - [6137] = 1722, - [6138] = 6138, - [6139] = 6139, - [6140] = 6140, - [6141] = 2242, - [6142] = 5845, - [6143] = 5837, - [6144] = 2262, - [6145] = 6145, - [6146] = 6146, - [6147] = 2212, - [6148] = 5499, - [6149] = 5848, - [6150] = 6150, - [6151] = 1576, - [6152] = 2474, - [6153] = 2223, - [6154] = 2230, - [6155] = 6155, - [6156] = 6150, - [6157] = 5837, - [6158] = 5804, - [6159] = 5499, - [6160] = 5837, - [6161] = 5804, - [6162] = 5845, - [6163] = 5848, - [6164] = 5837, - [6165] = 5804, - [6166] = 5845, - [6167] = 5848, - [6168] = 5804, - [6169] = 1726, - [6170] = 6170, - [6171] = 6171, - [6172] = 5848, - [6173] = 5804, - [6174] = 5587, - [6175] = 6175, - [6176] = 1975, - [6177] = 6177, - [6178] = 5845, - [6179] = 6016, - [6180] = 5597, - [6181] = 6181, - [6182] = 5848, - [6183] = 6183, + [6097] = 6089, + [6098] = 1966, + [6099] = 364, + [6100] = 375, + [6101] = 386, + [6102] = 397, + [6103] = 382, + [6104] = 1889, + [6105] = 450, + [6106] = 387, + [6107] = 2006, + [6108] = 6096, + [6109] = 6109, + [6110] = 398, + [6111] = 2882, + [6112] = 6109, + [6113] = 6089, + [6114] = 374, + [6115] = 2003, + [6116] = 6088, + [6117] = 6096, + [6118] = 2870, + [6119] = 401, + [6120] = 2923, + [6121] = 2871, + [6122] = 2923, + [6123] = 2924, + [6124] = 2870, + [6125] = 2924, + [6126] = 6096, + [6127] = 6109, + [6128] = 6096, + [6129] = 2007, + [6130] = 379, + [6131] = 1878, + [6132] = 6089, + [6133] = 6109, + [6134] = 6088, + [6135] = 400, + [6136] = 2883, + [6137] = 6096, + [6138] = 6089, + [6139] = 367, + [6140] = 1928, + [6141] = 462, + [6142] = 6109, + [6143] = 6088, + [6144] = 6109, + [6145] = 6096, + [6146] = 2871, + [6147] = 6088, + [6148] = 6109, + [6149] = 6088, + [6150] = 6089, + [6151] = 6088, + [6152] = 2004, + [6153] = 1891, + [6154] = 3511, + [6155] = 3744, + [6156] = 3744, + [6157] = 6157, + [6158] = 2005, + [6159] = 3560, + [6160] = 3738, + [6161] = 3744, + [6162] = 3790, + [6163] = 3790, + [6164] = 3560, + [6165] = 3740, + [6166] = 2002, + [6167] = 3740, + [6168] = 3740, + [6169] = 3744, + [6170] = 3790, + [6171] = 3738, + [6172] = 2006, + [6173] = 1889, + [6174] = 1891, + [6175] = 3738, + [6176] = 3738, + [6177] = 3494, + [6178] = 2003, + [6179] = 2004, + [6180] = 3740, + [6181] = 3790, + [6182] = 2007, + [6183] = 4090, [6184] = 6184, - [6185] = 6185, - [6186] = 6186, - [6187] = 6002, - [6188] = 6181, + [6185] = 1896, + [6186] = 4087, + [6187] = 4089, + [6188] = 4092, [6189] = 6189, - [6190] = 5804, - [6191] = 6181, - [6192] = 6192, - [6193] = 5580, - [6194] = 5837, - [6195] = 6181, - [6196] = 6006, - [6197] = 6007, - [6198] = 6013, - [6199] = 2273, - [6200] = 6055, - [6201] = 1922, - [6202] = 5597, - [6203] = 1926, - [6204] = 6181, - [6205] = 6181, - [6206] = 5996, + [6190] = 4087, + [6191] = 4089, + [6192] = 1889, + [6193] = 4083, + [6194] = 2911, + [6195] = 1891, + [6196] = 4084, + [6197] = 4085, + [6198] = 4086, + [6199] = 6199, + [6200] = 5943, + [6201] = 4083, + [6202] = 6202, + [6203] = 4084, + [6204] = 4085, + [6205] = 4086, + [6206] = 4090, [6207] = 6207, - [6208] = 6181, - [6209] = 6042, - [6210] = 6210, - [6211] = 1956, - [6212] = 1907, - [6213] = 6213, - [6214] = 6046, - [6215] = 1910, - [6216] = 6216, - [6217] = 6035, - [6218] = 6181, - [6219] = 6181, - [6220] = 5837, - [6221] = 5804, - [6222] = 5845, - [6223] = 5848, - [6224] = 5837, - [6225] = 6181, - [6226] = 5845, - [6227] = 5848, - [6228] = 6228, - [6229] = 6229, - [6230] = 1908, - [6231] = 6216, - [6232] = 1912, - [6233] = 1930, - [6234] = 6234, - [6235] = 5607, - [6236] = 5837, - [6237] = 6181, - [6238] = 6175, - [6239] = 6177, - [6240] = 6059, - [6241] = 6241, - [6242] = 6184, - [6243] = 6185, - [6244] = 5618, - [6245] = 6186, - [6246] = 6061, - [6247] = 5968, - [6248] = 6181, - [6249] = 1916, - [6250] = 5580, - [6251] = 6234, - [6252] = 6252, - [6253] = 6181, - [6254] = 6175, - [6255] = 6255, - [6256] = 5845, - [6257] = 6004, - [6258] = 6177, - [6259] = 5607, - [6260] = 5848, - [6261] = 1911, - [6262] = 5980, - [6263] = 6184, - [6264] = 6181, - [6265] = 6185, - [6266] = 6186, - [6267] = 6267, - [6268] = 2461, - [6269] = 6216, - [6270] = 5994, - [6271] = 5499, - [6272] = 6181, - [6273] = 6054, - [6274] = 6181, - [6275] = 5804, - [6276] = 2255, - [6277] = 6181, - [6278] = 2262, - [6279] = 6181, - [6280] = 6280, - [6281] = 6017, - [6282] = 5985, - [6283] = 6181, - [6284] = 2509, - [6285] = 2425, - [6286] = 2429, - [6287] = 2432, - [6288] = 2472, - [6289] = 2480, - [6290] = 6234, - [6291] = 6252, - [6292] = 5587, - [6293] = 6043, - [6294] = 5618, - [6295] = 6047, - [6296] = 6252, - [6297] = 6297, - [6298] = 6298, - [6299] = 5845, - [6300] = 5837, - [6301] = 5845, - [6302] = 6216, - [6303] = 6303, - [6304] = 6304, - [6305] = 6234, - [6306] = 6297, - [6307] = 6252, - [6308] = 6175, - [6309] = 6177, - [6310] = 6184, - [6311] = 6304, - [6312] = 6185, - [6313] = 6186, - [6314] = 6314, - [6315] = 6315, - [6316] = 5837, - [6317] = 5986, - [6318] = 5804, - [6319] = 5845, - [6320] = 5848, - [6321] = 5804, - [6322] = 6304, - [6323] = 5837, - [6324] = 6039, - [6325] = 6325, - [6326] = 5837, - [6327] = 5804, - [6328] = 5845, - [6329] = 5848, - [6330] = 5837, - [6331] = 6331, - [6332] = 6332, - [6333] = 6333, - [6334] = 5804, - [6335] = 6304, - [6336] = 5845, - [6337] = 5837, - [6338] = 5848, - [6339] = 5848, - [6340] = 6303, - [6341] = 6341, - [6342] = 6342, - [6343] = 6297, - [6344] = 6344, - [6345] = 5804, - [6346] = 6297, - [6347] = 6304, - [6348] = 6333, - [6349] = 6315, - [6350] = 6303, - [6351] = 5804, - [6352] = 6297, - [6353] = 6304, - [6354] = 5845, - [6355] = 6297, - [6356] = 6356, - [6357] = 5845, - [6358] = 5848, - [6359] = 5848, - [6360] = 6304, - [6361] = 6344, - [6362] = 6344, - [6363] = 6344, - [6364] = 6364, - [6365] = 6344, - [6366] = 6344, - [6367] = 6314, - [6368] = 6341, - [6369] = 6297, - [6370] = 5837, - [6371] = 5804, - [6372] = 6372, - [6373] = 6373, - [6374] = 5845, - [6375] = 5848, - [6376] = 6344, - [6377] = 5837, - [6378] = 6303, - [6379] = 6379, - [6380] = 5499, - [6381] = 5848, - [6382] = 6372, - [6383] = 6383, - [6384] = 5804, - [6385] = 1923, - [6386] = 5848, - [6387] = 6387, - [6388] = 6387, - [6389] = 6389, - [6390] = 6387, - [6391] = 6391, - [6392] = 6387, - [6393] = 6393, - [6394] = 6387, - [6395] = 6387, - [6396] = 6396, - [6397] = 1769, - [6398] = 6389, - [6399] = 6393, - [6400] = 6389, - [6401] = 6387, - [6402] = 6389, - [6403] = 6372, - [6404] = 2242, - [6405] = 6387, - [6406] = 6396, - [6407] = 6333, - [6408] = 5580, - [6409] = 6175, - [6410] = 6315, - [6411] = 2407, - [6412] = 6387, - [6413] = 6387, - [6414] = 1752, - [6415] = 2273, - [6416] = 6387, - [6417] = 6389, - [6418] = 6396, - [6419] = 6396, - [6420] = 5587, - [6421] = 1745, - [6422] = 6177, - [6423] = 6396, - [6424] = 5580, - [6425] = 6387, - [6426] = 6387, - [6427] = 6314, - [6428] = 5587, - [6429] = 6387, - [6430] = 5597, - [6431] = 6389, - [6432] = 6432, - [6433] = 6393, - [6434] = 5597, - [6435] = 5607, - [6436] = 5607, - [6437] = 5845, - [6438] = 6252, - [6439] = 6234, - [6440] = 5618, - [6441] = 6396, - [6442] = 1771, - [6443] = 2255, - [6444] = 6387, - [6445] = 6393, - [6446] = 6446, - [6447] = 6184, - [6448] = 2255, - [6449] = 6449, - [6450] = 6185, - [6451] = 6387, - [6452] = 6446, - [6453] = 6389, - [6454] = 2212, - [6455] = 5837, - [6456] = 5837, - [6457] = 5837, - [6458] = 6393, - [6459] = 5804, - [6460] = 5845, - [6461] = 2210, - [6462] = 5848, - [6463] = 6387, - [6464] = 5804, - [6465] = 5499, - [6466] = 5804, - [6467] = 2230, - [6468] = 6341, - [6469] = 6396, - [6470] = 2223, - [6471] = 6216, - [6472] = 6387, - [6473] = 5845, - [6474] = 6186, - [6475] = 6387, - [6476] = 2273, - [6477] = 5845, - [6478] = 5848, - [6479] = 6479, - [6480] = 5837, - [6481] = 5848, - [6482] = 6387, - [6483] = 5804, - [6484] = 5618, - [6485] = 6216, - [6486] = 6486, - [6487] = 6487, - [6488] = 6488, - [6489] = 6486, - [6490] = 6486, - [6491] = 6491, - [6492] = 6492, - [6493] = 6493, - [6494] = 6493, - [6495] = 6486, - [6496] = 6491, - [6497] = 6315, - [6498] = 6493, - [6499] = 6493, - [6500] = 6216, - [6501] = 6175, - [6502] = 6177, - [6503] = 6185, - [6504] = 6234, - [6505] = 6252, - [6506] = 6184, - [6507] = 6186, - [6508] = 6486, - [6509] = 6493, - [6510] = 6510, - [6511] = 6511, - [6512] = 2262, - [6513] = 6513, - [6514] = 6493, - [6515] = 6486, - [6516] = 6234, - [6517] = 6486, - [6518] = 6518, - [6519] = 6252, - [6520] = 5837, - [6521] = 6491, - [6522] = 5804, - [6523] = 5845, - [6524] = 5848, - [6525] = 5837, - [6526] = 5804, - [6527] = 5845, - [6528] = 5848, - [6529] = 5986, - [6530] = 6186, - [6531] = 6175, - [6532] = 6486, - [6533] = 6491, - [6534] = 6333, - [6535] = 6177, - [6536] = 6536, - [6537] = 6493, - [6538] = 6536, - [6539] = 6510, - [6540] = 6486, - [6541] = 6039, - [6542] = 6536, - [6543] = 6155, - [6544] = 6493, - [6545] = 6545, - [6546] = 6546, - [6547] = 6536, - [6548] = 6488, - [6549] = 6549, - [6550] = 6314, - [6551] = 6488, - [6552] = 6491, - [6553] = 6341, - [6554] = 6184, - [6555] = 6488, - [6556] = 6493, - [6557] = 6493, - [6558] = 6185, - [6559] = 6559, - [6560] = 6486, - [6561] = 6372, + [6208] = 2184, + [6209] = 2959, + [6210] = 1974, + [6211] = 6211, + [6212] = 2864, + [6213] = 2867, + [6214] = 6202, + [6215] = 2911, + [6216] = 6207, + [6217] = 6211, + [6218] = 6189, + [6219] = 2959, + [6220] = 2213, + [6221] = 2867, + [6222] = 6222, + [6223] = 2872, + [6224] = 2872, + [6225] = 4092, + [6226] = 2184, + [6227] = 2872, + [6228] = 2864, + [6229] = 4083, + [6230] = 4084, + [6231] = 4085, + [6232] = 4086, + [6233] = 2864, + [6234] = 2911, + [6235] = 2959, + [6236] = 2867, + [6237] = 4319, + [6238] = 2872, + [6239] = 4320, + [6240] = 4321, + [6241] = 2864, + [6242] = 4431, + [6243] = 4432, + [6244] = 4391, + [6245] = 4433, + [6246] = 4434, + [6247] = 4435, + [6248] = 4436, + [6249] = 4437, + [6250] = 4438, + [6251] = 4439, + [6252] = 4392, + [6253] = 4393, + [6254] = 2911, + [6255] = 4440, + [6256] = 4441, + [6257] = 4442, + [6258] = 4443, + [6259] = 4087, + [6260] = 4089, + [6261] = 4090, + [6262] = 4092, + [6263] = 2959, + [6264] = 1901, + [6265] = 2867, + [6266] = 1853, + [6267] = 2213, + [6268] = 3915, + [6269] = 3122, + [6270] = 4469, + [6271] = 6271, + [6272] = 6272, + [6273] = 6273, + [6274] = 6274, + [6275] = 6275, + [6276] = 3129, + [6277] = 6277, + [6278] = 3861, + [6279] = 6273, + [6280] = 1899, + [6281] = 6271, + [6282] = 6282, + [6283] = 6273, + [6284] = 6273, + [6285] = 6273, + [6286] = 6271, + [6287] = 1928, + [6288] = 2213, + [6289] = 6275, + [6290] = 6271, + [6291] = 1964, + [6292] = 6271, + [6293] = 6277, + [6294] = 6273, + [6295] = 3141, + [6296] = 1943, + [6297] = 3141, + [6298] = 3902, + [6299] = 1918, + [6300] = 2184, + [6301] = 3105, + [6302] = 3920, + [6303] = 6275, + [6304] = 1889, + [6305] = 3936, + [6306] = 1891, + [6307] = 3105, + [6308] = 4478, + [6309] = 6273, + [6310] = 1965, + [6311] = 1961, + [6312] = 1975, + [6313] = 3129, + [6314] = 3122, + [6315] = 1958, + [6316] = 1972, + [6317] = 4469, + [6318] = 4478, + [6319] = 4092, + [6320] = 2889, + [6321] = 4392, + [6322] = 2895, + [6323] = 2903, + [6324] = 4442, + [6325] = 4087, + [6326] = 4089, + [6327] = 4090, + [6328] = 1974, + [6329] = 3223, + [6330] = 4320, + [6331] = 3248, + [6332] = 4437, + [6333] = 4438, + [6334] = 4319, + [6335] = 1855, + [6336] = 2004, + [6337] = 4433, + [6338] = 4439, + [6339] = 4434, + [6340] = 6340, + [6341] = 4435, + [6342] = 2003, + [6343] = 4436, + [6344] = 6340, + [6345] = 4443, + [6346] = 2893, + [6347] = 2951, + [6348] = 2960, + [6349] = 256, + [6350] = 1889, + [6351] = 2910, + [6352] = 2897, + [6353] = 2976, + [6354] = 6340, + [6355] = 4431, + [6356] = 6340, + [6357] = 2845, + [6358] = 2913, + [6359] = 2002, + [6360] = 2005, + [6361] = 6340, + [6362] = 2980, + [6363] = 4393, + [6364] = 2007, + [6365] = 4083, + [6366] = 4440, + [6367] = 2929, + [6368] = 4084, + [6369] = 6340, + [6370] = 2006, + [6371] = 1891, + [6372] = 4085, + [6373] = 4321, + [6374] = 6374, + [6375] = 4086, + [6376] = 4087, + [6377] = 4089, + [6378] = 4090, + [6379] = 4092, + [6380] = 3223, + [6381] = 4083, + [6382] = 4441, + [6383] = 4084, + [6384] = 4085, + [6385] = 4086, + [6386] = 253, + [6387] = 4432, + [6388] = 2890, + [6389] = 3248, + [6390] = 6340, + [6391] = 4391, + [6392] = 1969, + [6393] = 2917, + [6394] = 3383, + [6395] = 2006, + [6396] = 4085, + [6397] = 4393, + [6398] = 6398, + [6399] = 4431, + [6400] = 4434, + [6401] = 3405, + [6402] = 4086, + [6403] = 4435, + [6404] = 3472, + [6405] = 2005, + [6406] = 2007, + [6407] = 4436, + [6408] = 2012, + [6409] = 1008, + [6410] = 3405, + [6411] = 1009, + [6412] = 4437, + [6413] = 1008, + [6414] = 4438, + [6415] = 3395, + [6416] = 4440, + [6417] = 2002, + [6418] = 4084, + [6419] = 3405, + [6420] = 3383, + [6421] = 1009, + [6422] = 3395, + [6423] = 6423, + [6424] = 4441, + [6425] = 4432, + [6426] = 4319, + [6427] = 6427, + [6428] = 4087, + [6429] = 4089, + [6430] = 4090, + [6431] = 4092, + [6432] = 4442, + [6433] = 4392, + [6434] = 3383, + [6435] = 3472, + [6436] = 6436, + [6437] = 4433, + [6438] = 2003, + [6439] = 3472, + [6440] = 4320, + [6441] = 2004, + [6442] = 4321, + [6443] = 3395, + [6444] = 4083, + [6445] = 4443, + [6446] = 4391, + [6447] = 4439, + [6448] = 6448, + [6449] = 3507, + [6450] = 2893, + [6451] = 3578, + [6452] = 2910, + [6453] = 2897, + [6454] = 3580, + [6455] = 6455, + [6456] = 6456, + [6457] = 3581, + [6458] = 3590, + [6459] = 6448, + [6460] = 2976, + [6461] = 2845, + [6462] = 6462, + [6463] = 6463, + [6464] = 3578, + [6465] = 6463, + [6466] = 3580, + [6467] = 3497, + [6468] = 3581, + [6469] = 3590, + [6470] = 3576, + [6471] = 6455, + [6472] = 6456, + [6473] = 6448, + [6474] = 2005, + [6475] = 3521, + [6476] = 1931, + [6477] = 3522, + [6478] = 3525, + [6479] = 3526, + [6480] = 6463, + [6481] = 3595, + [6482] = 3528, + [6483] = 3494, + [6484] = 3535, + [6485] = 1942, + [6486] = 3541, + [6487] = 6455, + [6488] = 3510, + [6489] = 6448, + [6490] = 3543, + [6491] = 2889, + [6492] = 3516, + [6493] = 6448, + [6494] = 1941, + [6495] = 3511, + [6496] = 6448, + [6497] = 3515, + [6498] = 6448, + [6499] = 256, + [6500] = 6448, + [6501] = 6448, + [6502] = 253, + [6503] = 6448, + [6504] = 6448, + [6505] = 6448, + [6506] = 6448, + [6507] = 6448, + [6508] = 6448, + [6509] = 3497, + [6510] = 6455, + [6511] = 4478, + [6512] = 6456, + [6513] = 3521, + [6514] = 3522, + [6515] = 6448, + [6516] = 3525, + [6517] = 3526, + [6518] = 1954, + [6519] = 1968, + [6520] = 6462, + [6521] = 2006, + [6522] = 6522, + [6523] = 1866, + [6524] = 3528, + [6525] = 1857, + [6526] = 1858, + [6527] = 1859, + [6528] = 1860, + [6529] = 3523, + [6530] = 1861, + [6531] = 1862, + [6532] = 6448, + [6533] = 6463, + [6534] = 3535, + [6535] = 4469, + [6536] = 3515, + [6537] = 6463, + [6538] = 3541, + [6539] = 3543, + [6540] = 3588, + [6541] = 6541, + [6542] = 3565, + [6543] = 3573, + [6544] = 2007, + [6545] = 2022, + [6546] = 2003, + [6547] = 6455, + [6548] = 6456, + [6549] = 1965, + [6550] = 2004, + [6551] = 6455, + [6552] = 1974, + [6553] = 6448, + [6554] = 2890, + [6555] = 3516, + [6556] = 3588, + [6557] = 3576, + [6558] = 3513, + [6559] = 6455, + [6560] = 6456, + [6561] = 6448, [6562] = 6562, - [6563] = 6563, - [6564] = 6563, - [6565] = 6184, - [6566] = 5848, - [6567] = 6563, - [6568] = 6186, - [6569] = 2407, - [6570] = 6175, - [6571] = 6177, - [6572] = 6572, - [6573] = 5804, - [6574] = 6185, - [6575] = 6563, - [6576] = 6563, - [6577] = 6577, - [6578] = 6563, - [6579] = 6563, - [6580] = 6252, - [6581] = 6563, - [6582] = 6563, - [6583] = 6563, - [6584] = 6216, - [6585] = 6585, - [6586] = 5837, - [6587] = 6234, - [6588] = 6563, - [6589] = 6563, - [6590] = 2391, - [6591] = 6591, - [6592] = 6592, + [6563] = 6463, + [6564] = 2903, + [6565] = 6456, + [6566] = 6455, + [6567] = 6455, + [6568] = 6456, + [6569] = 2166, + [6570] = 1975, + [6571] = 6448, + [6572] = 2951, + [6573] = 6462, + [6574] = 6462, + [6575] = 2960, + [6576] = 6576, + [6577] = 3595, + [6578] = 3494, + [6579] = 3523, + [6580] = 2917, + [6581] = 3511, + [6582] = 2895, + [6583] = 2039, + [6584] = 6463, + [6585] = 3565, + [6586] = 1972, + [6587] = 3573, + [6588] = 3507, + [6589] = 3492, + [6590] = 3492, + [6591] = 2166, + [6592] = 6463, [6593] = 6593, - [6594] = 6563, - [6595] = 6175, - [6596] = 5837, - [6597] = 6563, - [6598] = 6598, - [6599] = 5804, - [6600] = 5845, - [6601] = 5848, - [6602] = 6177, - [6603] = 6184, - [6604] = 6563, - [6605] = 6185, - [6606] = 6234, - [6607] = 5837, - [6608] = 6563, + [6594] = 2913, + [6595] = 3507, + [6596] = 6456, + [6597] = 2980, + [6598] = 2929, + [6599] = 3588, + [6600] = 3576, + [6601] = 6448, + [6602] = 1954, + [6603] = 1954, + [6604] = 3513, + [6605] = 1986, + [6606] = 1987, + [6607] = 2002, + [6608] = 6608, [6609] = 6609, - [6610] = 5804, - [6611] = 6611, - [6612] = 5845, - [6613] = 5848, - [6614] = 6563, - [6615] = 6216, - [6616] = 6186, - [6617] = 6563, - [6618] = 6563, - [6619] = 5845, - [6620] = 6620, - [6621] = 6563, - [6622] = 3859, - [6623] = 6252, - [6624] = 6624, - [6625] = 6314, - [6626] = 6626, - [6627] = 6234, - [6628] = 6628, - [6629] = 6252, - [6630] = 6175, - [6631] = 6177, - [6632] = 6632, - [6633] = 6626, - [6634] = 6628, - [6635] = 6635, - [6636] = 6184, - [6637] = 6628, - [6638] = 6638, - [6639] = 6184, - [6640] = 6632, - [6641] = 6185, - [6642] = 6186, - [6643] = 6643, - [6644] = 1568, - [6645] = 6645, - [6646] = 6628, - [6647] = 6647, - [6648] = 6626, - [6649] = 6628, - [6650] = 6175, - [6651] = 6177, - [6652] = 6632, - [6653] = 6653, - [6654] = 6632, - [6655] = 6626, - [6656] = 6186, - [6657] = 6628, - [6658] = 6626, - [6659] = 6234, - [6660] = 6632, - [6661] = 6252, - [6662] = 6662, - [6663] = 6663, - [6664] = 6216, - [6665] = 6665, - [6666] = 6184, - [6667] = 6667, + [6610] = 3595, + [6611] = 1990, + [6612] = 3510, + [6613] = 1995, + [6614] = 1964, + [6615] = 6615, + [6616] = 6616, + [6617] = 4393, + [6618] = 2004, + [6619] = 4393, + [6620] = 4440, + [6621] = 4441, + [6622] = 4442, + [6623] = 2007, + [6624] = 6616, + [6625] = 4443, + [6626] = 4443, + [6627] = 3689, + [6628] = 4319, + [6629] = 4442, + [6630] = 6630, + [6631] = 6631, + [6632] = 2002, + [6633] = 6199, + [6634] = 4431, + [6635] = 4440, + [6636] = 6636, + [6637] = 4391, + [6638] = 3668, + [6639] = 1969, + [6640] = 4432, + [6641] = 6641, + [6642] = 4320, + [6643] = 3666, + [6644] = 4435, + [6645] = 4436, + [6646] = 4437, + [6647] = 4438, + [6648] = 6616, + [6649] = 6616, + [6650] = 4439, + [6651] = 4087, + [6652] = 4089, + [6653] = 3668, + [6654] = 6654, + [6655] = 2006, + [6656] = 3678, + [6657] = 4083, + [6658] = 2003, + [6659] = 2004, + [6660] = 4392, + [6661] = 6661, + [6662] = 6616, + [6663] = 4393, + [6664] = 4320, + [6665] = 4431, + [6666] = 3695, + [6667] = 6661, [6668] = 6668, - [6669] = 6186, - [6670] = 1571, - [6671] = 6671, - [6672] = 6632, - [6673] = 6372, - [6674] = 6635, - [6675] = 6186, - [6676] = 5580, - [6677] = 6314, - [6678] = 5587, - [6679] = 5597, - [6680] = 5607, - [6681] = 6185, - [6682] = 6682, - [6683] = 6341, - [6684] = 6684, - [6685] = 6372, - [6686] = 6333, - [6687] = 6635, - [6688] = 6626, - [6689] = 1572, - [6690] = 6333, - [6691] = 6315, - [6692] = 6635, + [6669] = 2004, + [6670] = 4084, + [6671] = 6654, + [6672] = 2006, + [6673] = 4085, + [6674] = 6674, + [6675] = 6616, + [6676] = 4086, + [6677] = 4443, + [6678] = 2002, + [6679] = 4441, + [6680] = 4084, + [6681] = 6661, + [6682] = 4085, + [6683] = 4092, + [6684] = 4321, + [6685] = 6661, + [6686] = 2007, + [6687] = 6674, + [6688] = 6674, + [6689] = 6641, + [6690] = 3616, + [6691] = 4391, + [6692] = 6654, [6693] = 6693, - [6694] = 6632, - [6695] = 6216, - [6696] = 6175, - [6697] = 6697, + [6694] = 6674, + [6695] = 6695, + [6696] = 6661, + [6697] = 4090, [6698] = 6698, - [6699] = 6216, - [6700] = 6177, + [6699] = 3685, + [6700] = 4433, [6701] = 6701, - [6702] = 6315, - [6703] = 6635, - [6704] = 6185, - [6705] = 2255, - [6706] = 6706, - [6707] = 6707, - [6708] = 6708, - [6709] = 6709, - [6710] = 6710, - [6711] = 6635, - [6712] = 6712, - [6713] = 6184, - [6714] = 5580, - [6715] = 6341, - [6716] = 5587, - [6717] = 5597, - [6718] = 5607, - [6719] = 6719, - [6720] = 5618, - [6721] = 1573, - [6722] = 6722, - [6723] = 1575, - [6724] = 6635, + [6702] = 4092, + [6703] = 2002, + [6704] = 6674, + [6705] = 6616, + [6706] = 4090, + [6707] = 6616, + [6708] = 6616, + [6709] = 6698, + [6710] = 6654, + [6711] = 2005, + [6712] = 6674, + [6713] = 5195, + [6714] = 6714, + [6715] = 4434, + [6716] = 3685, + [6717] = 6616, + [6718] = 3666, + [6719] = 1855, + [6720] = 4441, + [6721] = 6721, + [6722] = 4321, + [6723] = 4435, + [6724] = 4433, [6725] = 6725, - [6726] = 6234, - [6727] = 6252, - [6728] = 6626, - [6729] = 1570, - [6730] = 6185, - [6731] = 6216, - [6732] = 2273, - [6733] = 6733, - [6734] = 6628, - [6735] = 1574, - [6736] = 6234, - [6737] = 6252, - [6738] = 6175, - [6739] = 6177, - [6740] = 5618, - [6741] = 6741, - [6742] = 5580, - [6743] = 6741, - [6744] = 6741, - [6745] = 6216, - [6746] = 6186, - [6747] = 6252, - [6748] = 6184, - [6749] = 6741, - [6750] = 5607, - [6751] = 6186, - [6752] = 6741, - [6753] = 6186, - [6754] = 6234, - [6755] = 6755, - [6756] = 6175, - [6757] = 6757, - [6758] = 6177, - [6759] = 6185, - [6760] = 6741, - [6761] = 6252, - [6762] = 6741, - [6763] = 6252, - [6764] = 6741, - [6765] = 6234, - [6766] = 6177, - [6767] = 5597, - [6768] = 6768, - [6769] = 6741, - [6770] = 6770, + [6726] = 1855, + [6727] = 2003, + [6728] = 4319, + [6729] = 2012, + [6730] = 4320, + [6731] = 4321, + [6732] = 4431, + [6733] = 4432, + [6734] = 4391, + [6735] = 3685, + [6736] = 4433, + [6737] = 4434, + [6738] = 4435, + [6739] = 4436, + [6740] = 4437, + [6741] = 4438, + [6742] = 4439, + [6743] = 4392, + [6744] = 6616, + [6745] = 4393, + [6746] = 6562, + [6747] = 3678, + [6748] = 4440, + [6749] = 4441, + [6750] = 4442, + [6751] = 4086, + [6752] = 4443, + [6753] = 6661, + [6754] = 4087, + [6755] = 4089, + [6756] = 2007, + [6757] = 4436, + [6758] = 2003, + [6759] = 6759, + [6760] = 2005, + [6761] = 6616, + [6762] = 4437, + [6763] = 6763, + [6764] = 6764, + [6765] = 6765, + [6766] = 4442, + [6767] = 4083, + [6768] = 3689, + [6769] = 6693, + [6770] = 6616, [6771] = 6771, - [6772] = 6772, - [6773] = 6773, - [6774] = 6757, - [6775] = 6184, - [6776] = 6741, - [6777] = 6216, - [6778] = 6741, - [6779] = 6741, - [6780] = 6184, - [6781] = 5618, - [6782] = 6782, - [6783] = 6741, + [6772] = 4440, + [6773] = 4319, + [6774] = 3689, + [6775] = 4319, + [6776] = 3666, + [6777] = 3668, + [6778] = 4438, + [6779] = 4320, + [6780] = 3695, + [6781] = 3616, + [6782] = 4321, + [6783] = 4434, [6784] = 6784, - [6785] = 5587, - [6786] = 6786, - [6787] = 6185, - [6788] = 6234, + [6785] = 4439, + [6786] = 2005, + [6787] = 6787, + [6788] = 4431, [6789] = 6789, - [6790] = 6175, - [6791] = 6791, - [6792] = 6792, + [6790] = 3678, + [6791] = 2006, + [6792] = 4392, [6793] = 6793, - [6794] = 6792, - [6795] = 6793, - [6796] = 6792, - [6797] = 6792, - [6798] = 6792, - [6799] = 6799, - [6800] = 6791, - [6801] = 6793, - [6802] = 6799, - [6803] = 6793, - [6804] = 6792, - [6805] = 6791, - [6806] = 6791, - [6807] = 6791, - [6808] = 6793, - [6809] = 6793, - [6810] = 6314, - [6811] = 6341, - [6812] = 6372, - [6813] = 6793, - [6814] = 6333, - [6815] = 6793, - [6816] = 6315, - [6817] = 6817, - [6818] = 6793, - [6819] = 6819, - [6820] = 6817, - [6821] = 6234, - [6822] = 6252, - [6823] = 6175, - [6824] = 6177, - [6825] = 6184, - [6826] = 6185, - [6827] = 6799, - [6828] = 6186, - [6829] = 6793, - [6830] = 6793, - [6831] = 6793, - [6832] = 2442, - [6833] = 6799, - [6834] = 6793, - [6835] = 6819, - [6836] = 2443, - [6837] = 6819, - [6838] = 6793, - [6839] = 6817, - [6840] = 6793, - [6841] = 6792, - [6842] = 6793, - [6843] = 6793, - [6844] = 6791, - [6845] = 6817, - [6846] = 6819, - [6847] = 6791, - [6848] = 6793, - [6849] = 6793, - [6850] = 6793, - [6851] = 6793, - [6852] = 6216, - [6853] = 6216, - [6854] = 6854, - [6855] = 6364, - [6856] = 6184, + [6794] = 4432, + [6795] = 6795, + [6796] = 3695, + [6797] = 6674, + [6798] = 4432, + [6799] = 4391, + [6800] = 6616, + [6801] = 4433, + [6802] = 4434, + [6803] = 4435, + [6804] = 1998, + [6805] = 6805, + [6806] = 6661, + [6807] = 4436, + [6808] = 4437, + [6809] = 6809, + [6810] = 4438, + [6811] = 6654, + [6812] = 4439, + [6813] = 4392, + [6814] = 6814, + [6815] = 6815, + [6816] = 6616, + [6817] = 6616, + [6818] = 6818, + [6819] = 3717, + [6820] = 6820, + [6821] = 6821, + [6822] = 2132, + [6823] = 6823, + [6824] = 6823, + [6825] = 6825, + [6826] = 6826, + [6827] = 6827, + [6828] = 6821, + [6829] = 6829, + [6830] = 6830, + [6831] = 6820, + [6832] = 6832, + [6833] = 6833, + [6834] = 4478, + [6835] = 6835, + [6836] = 6821, + [6837] = 6837, + [6838] = 6838, + [6839] = 6839, + [6840] = 6827, + [6841] = 6829, + [6842] = 1899, + [6843] = 6825, + [6844] = 6844, + [6845] = 6820, + [6846] = 6846, + [6847] = 6837, + [6848] = 2088, + [6849] = 6838, + [6850] = 6821, + [6851] = 6851, + [6852] = 6852, + [6853] = 6853, + [6854] = 2122, + [6855] = 6839, + [6856] = 6846, [6857] = 6857, - [6858] = 6858, - [6859] = 6177, + [6858] = 6837, + [6859] = 6851, [6860] = 6860, - [6861] = 6185, - [6862] = 6858, - [6863] = 6234, + [6861] = 6827, + [6862] = 6837, + [6863] = 6821, [6864] = 6864, - [6865] = 6175, - [6866] = 6186, - [6867] = 6858, - [6868] = 6184, - [6869] = 6234, - [6870] = 6870, - [6871] = 6871, - [6872] = 6234, - [6873] = 6858, - [6874] = 6186, - [6875] = 6234, - [6876] = 6876, - [6877] = 6877, - [6878] = 6184, - [6879] = 6879, - [6880] = 6880, - [6881] = 6216, - [6882] = 6175, - [6883] = 6883, - [6884] = 6252, - [6885] = 6885, - [6886] = 6314, - [6887] = 6887, - [6888] = 6888, - [6889] = 6889, - [6890] = 6854, - [6891] = 6885, - [6892] = 6892, - [6893] = 6858, - [6894] = 6331, - [6895] = 6177, - [6896] = 6234, - [6897] = 6888, - [6898] = 6315, - [6899] = 6858, - [6900] = 6860, - [6901] = 6379, - [6902] = 6252, - [6903] = 6885, - [6904] = 6860, - [6905] = 6905, - [6906] = 6854, - [6907] = 6888, - [6908] = 6184, - [6909] = 6185, - [6910] = 6910, - [6911] = 6186, - [6912] = 6912, - [6913] = 6252, - [6914] = 6888, + [6865] = 6865, + [6866] = 6838, + [6867] = 6867, + [6868] = 6820, + [6869] = 6844, + [6870] = 6830, + [6871] = 2125, + [6872] = 6837, + [6873] = 6829, + [6874] = 6852, + [6875] = 2003, + [6876] = 2004, + [6877] = 6829, + [6878] = 6826, + [6879] = 6833, + [6880] = 6833, + [6881] = 6829, + [6882] = 6857, + [6883] = 6818, + [6884] = 6820, + [6885] = 6821, + [6886] = 6838, + [6887] = 6827, + [6888] = 3661, + [6889] = 6835, + [6890] = 6846, + [6891] = 6837, + [6892] = 6846, + [6893] = 2072, + [6894] = 6865, + [6895] = 6821, + [6896] = 6839, + [6897] = 6826, + [6898] = 6898, + [6899] = 6837, + [6900] = 6818, + [6901] = 6826, + [6902] = 6864, + [6903] = 6821, + [6904] = 6820, + [6905] = 6846, + [6906] = 3706, + [6907] = 6827, + [6908] = 6865, + [6909] = 6898, + [6910] = 6844, + [6911] = 6852, + [6912] = 2166, + [6913] = 6846, + [6914] = 6857, [6915] = 6915, - [6916] = 6298, - [6917] = 6917, - [6918] = 6333, - [6919] = 6184, - [6920] = 6920, - [6921] = 6372, - [6922] = 6252, - [6923] = 6858, - [6924] = 6924, - [6925] = 6925, - [6926] = 6252, - [6927] = 6885, - [6928] = 6186, - [6929] = 6342, - [6930] = 6341, - [6931] = 6931, - [6932] = 6854, - [6933] = 6933, - [6934] = 6934, - [6935] = 6935, - [6936] = 6860, - [6937] = 6186, + [6916] = 6916, + [6917] = 6846, + [6918] = 6851, + [6919] = 2166, + [6920] = 6837, + [6921] = 6835, + [6922] = 6844, + [6923] = 6826, + [6924] = 2006, + [6925] = 6827, + [6926] = 6926, + [6927] = 6825, + [6928] = 6864, + [6929] = 6929, + [6930] = 6898, + [6931] = 6821, + [6932] = 6864, + [6933] = 6898, + [6934] = 6825, + [6935] = 6865, + [6936] = 6827, + [6937] = 6851, [6938] = 6938, - [6939] = 6939, - [6940] = 2223, - [6941] = 6941, - [6942] = 6942, - [6943] = 6942, - [6944] = 2212, - [6945] = 6945, - [6946] = 6945, - [6947] = 6947, - [6948] = 6252, - [6949] = 6184, - [6950] = 6950, - [6951] = 6947, - [6952] = 6952, - [6953] = 6175, - [6954] = 6947, - [6955] = 6939, - [6956] = 6947, - [6957] = 6186, - [6958] = 2230, - [6959] = 6941, - [6960] = 6177, - [6961] = 6961, - [6962] = 6962, - [6963] = 6963, - [6964] = 6216, - [6965] = 6965, - [6966] = 6966, - [6967] = 6966, - [6968] = 6939, - [6969] = 6969, - [6970] = 6939, - [6971] = 6969, - [6972] = 6939, - [6973] = 6969, - [6974] = 6939, - [6975] = 6969, - [6976] = 6939, - [6977] = 2242, - [6978] = 6185, + [6939] = 6844, + [6940] = 6940, + [6941] = 6852, + [6942] = 6837, + [6943] = 6837, + [6944] = 6940, + [6945] = 6846, + [6946] = 6852, + [6947] = 6829, + [6948] = 6865, + [6949] = 6844, + [6950] = 6827, + [6951] = 6839, + [6952] = 6852, + [6953] = 6953, + [6954] = 6864, + [6955] = 6898, + [6956] = 6865, + [6957] = 6821, + [6958] = 6833, + [6959] = 6829, + [6960] = 6839, + [6961] = 6851, + [6962] = 6826, + [6963] = 6827, + [6964] = 6821, + [6965] = 4469, + [6966] = 6839, + [6967] = 6857, + [6968] = 6898, + [6969] = 6865, + [6970] = 6844, + [6971] = 6821, + [6972] = 6851, + [6973] = 2012, + [6974] = 6857, + [6975] = 6852, + [6976] = 6830, + [6977] = 6827, + [6978] = 6827, [6979] = 6979, - [6980] = 6942, - [6981] = 6981, - [6982] = 6966, - [6983] = 6983, - [6984] = 6234, - [6985] = 2210, - [6986] = 6945, - [6987] = 6969, - [6988] = 6950, - [6989] = 6989, - [6990] = 6966, - [6991] = 6945, - [6992] = 6969, - [6993] = 6942, - [6994] = 6994, - [6995] = 6969, - [6996] = 6559, + [6980] = 6839, + [6981] = 6940, + [6982] = 6844, + [6983] = 6821, + [6984] = 6852, + [6985] = 6823, + [6986] = 6846, + [6987] = 6844, + [6988] = 6988, + [6989] = 6857, + [6990] = 6990, + [6991] = 6827, + [6992] = 6857, + [6993] = 2166, + [6994] = 4469, + [6995] = 2087, + [6996] = 3706, [6997] = 6997, [6998] = 6998, - [6999] = 6999, - [7000] = 6546, - [7001] = 6545, - [7002] = 7002, - [7003] = 7003, - [7004] = 6997, + [6999] = 6830, + [7000] = 6821, + [7001] = 3661, + [7002] = 6838, + [7003] = 6852, + [7004] = 6821, [7005] = 7005, - [7006] = 7005, - [7007] = 7005, - [7008] = 6185, - [7009] = 7009, - [7010] = 7010, - [7011] = 6999, - [7012] = 6184, - [7013] = 7013, - [7014] = 7014, - [7015] = 6997, - [7016] = 7016, - [7017] = 7005, - [7018] = 6234, - [7019] = 7019, - [7020] = 6997, - [7021] = 6997, - [7022] = 6186, - [7023] = 2407, - [7024] = 7024, - [7025] = 7025, - [7026] = 7002, - [7027] = 7003, - [7028] = 7005, - [7029] = 2407, - [7030] = 6252, - [7031] = 7031, - [7032] = 7032, - [7033] = 6999, - [7034] = 2262, - [7035] = 7035, - [7036] = 7036, - [7037] = 7005, - [7038] = 7038, - [7039] = 7039, - [7040] = 6216, - [7041] = 7009, - [7042] = 7042, - [7043] = 7005, + [7006] = 6857, + [7007] = 6864, + [7008] = 4478, + [7009] = 6825, + [7010] = 6818, + [7011] = 6857, + [7012] = 6825, + [7013] = 6827, + [7014] = 6898, + [7015] = 6820, + [7016] = 6821, + [7017] = 6865, + [7018] = 1969, + [7019] = 1956, + [7020] = 6838, + [7021] = 1966, + [7022] = 6851, + [7023] = 6826, + [7024] = 6821, + [7025] = 6857, + [7026] = 2166, + [7027] = 6838, + [7028] = 6940, + [7029] = 6837, + [7030] = 6846, + [7031] = 6821, + [7032] = 2002, + [7033] = 2026, + [7034] = 2067, + [7035] = 3717, + [7036] = 2156, + [7037] = 7037, + [7038] = 6820, + [7039] = 6820, + [7040] = 2123, + [7041] = 2075, + [7042] = 6830, + [7043] = 2124, [7044] = 7044, - [7045] = 7045, - [7046] = 7046, - [7047] = 7032, - [7048] = 7036, - [7049] = 7002, - [7050] = 7050, - [7051] = 7035, - [7052] = 7052, - [7053] = 7038, - [7054] = 7035, - [7055] = 6997, - [7056] = 6175, - [7057] = 7032, - [7058] = 7038, - [7059] = 7036, - [7060] = 6177, - [7061] = 7061, - [7062] = 7009, - [7063] = 6997, - [7064] = 7064, - [7065] = 7003, - [7066] = 7066, - [7067] = 7067, - [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, - [7072] = 7072, - [7073] = 7069, - [7074] = 7074, - [7075] = 6175, - [7076] = 7076, - [7077] = 2305, - [7078] = 7078, - [7079] = 7079, - [7080] = 6177, - [7081] = 7081, - [7082] = 7082, - [7083] = 7083, - [7084] = 7070, - [7085] = 7079, - [7086] = 7086, - [7087] = 7069, - [7088] = 7071, - [7089] = 6252, - [7090] = 7083, - [7091] = 7083, + [7045] = 6820, + [7046] = 6821, + [7047] = 6864, + [7048] = 6844, + [7049] = 6835, + [7050] = 6852, + [7051] = 7051, + [7052] = 6820, + [7053] = 7053, + [7054] = 6821, + [7055] = 6898, + [7056] = 2128, + [7057] = 2130, + [7058] = 6838, + [7059] = 6823, + [7060] = 6827, + [7061] = 6821, + [7062] = 6838, + [7063] = 6821, + [7064] = 6823, + [7065] = 6838, + [7066] = 2005, + [7067] = 2007, + [7068] = 6865, + [7069] = 6940, + [7070] = 6821, + [7071] = 6821, + [7072] = 6827, + [7073] = 6833, + [7074] = 6938, + [7075] = 6838, + [7076] = 6938, + [7077] = 6938, + [7078] = 6938, + [7079] = 6938, + [7080] = 6938, + [7081] = 6938, + [7082] = 6818, + [7083] = 6835, + [7084] = 2083, + [7085] = 6825, + [7086] = 1954, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 7090, + [7091] = 7091, [7092] = 7092, - [7093] = 7069, - [7094] = 7094, - [7095] = 7070, - [7096] = 5986, - [7097] = 7079, - [7098] = 2407, - [7099] = 6184, - [7100] = 7100, - [7101] = 2407, - [7102] = 7083, - [7103] = 6216, - [7104] = 7104, - [7105] = 7071, - [7106] = 7106, - [7107] = 7070, - [7108] = 7079, - [7109] = 7083, - [7110] = 7081, - [7111] = 7079, - [7112] = 2255, - [7113] = 7083, - [7114] = 7083, - [7115] = 7070, - [7116] = 7069, - [7117] = 7117, - [7118] = 7118, - [7119] = 7078, - [7120] = 7071, - [7121] = 7070, - [7122] = 6186, - [7123] = 7070, - [7124] = 7079, - [7125] = 7125, - [7126] = 7069, - [7127] = 7081, - [7128] = 6234, - [7129] = 7129, - [7130] = 7094, - [7131] = 7079, - [7132] = 7132, - [7133] = 6185, - [7134] = 7079, - [7135] = 7070, - [7136] = 7071, - [7137] = 7083, - [7138] = 7083, - [7139] = 7070, - [7140] = 7069, - [7141] = 7141, - [7142] = 7142, - [7143] = 2273, - [7144] = 7081, - [7145] = 7079, - [7146] = 7069, - [7147] = 7069, - [7148] = 7148, - [7149] = 7149, - [7150] = 7150, - [7151] = 7151, - [7152] = 7152, - [7153] = 7153, - [7154] = 7148, - [7155] = 7155, - [7156] = 7156, - [7157] = 7151, - [7158] = 7158, - [7159] = 7152, - [7160] = 7149, - [7161] = 5986, - [7162] = 7162, - [7163] = 7150, - [7164] = 7151, - [7165] = 7152, - [7166] = 7153, - [7167] = 7167, - [7168] = 7168, - [7169] = 7169, - [7170] = 7148, - [7171] = 7155, - [7172] = 7150, - [7173] = 7149, - [7174] = 2407, - [7175] = 7175, - [7176] = 7175, - [7177] = 7149, - [7178] = 7149, - [7179] = 7179, - [7180] = 7150, - [7181] = 7151, - [7182] = 7152, - [7183] = 7148, - [7184] = 7155, - [7185] = 7185, - [7186] = 7156, - [7187] = 7149, - [7188] = 7151, - [7189] = 7152, - [7190] = 7190, - [7191] = 7155, - [7192] = 7192, - [7193] = 7149, - [7194] = 7151, - [7195] = 7152, - [7196] = 7155, - [7197] = 7148, - [7198] = 7149, - [7199] = 7152, - [7200] = 7150, - [7201] = 7155, - [7202] = 7149, - [7203] = 7152, - [7204] = 7155, - [7205] = 7151, - [7206] = 7152, - [7207] = 7149, - [7208] = 7152, - [7209] = 7155, - [7210] = 7168, - [7211] = 7155, - [7212] = 7149, - [7213] = 7152, - [7214] = 7155, - [7215] = 7153, - [7216] = 7149, - [7217] = 7185, - [7218] = 7152, - [7219] = 7155, - [7220] = 7149, - [7221] = 7152, - [7222] = 7149, - [7223] = 7152, - [7224] = 7149, - [7225] = 7225, - [7226] = 7169, - [7227] = 7175, - [7228] = 7228, - [7229] = 7148, - [7230] = 7155, - [7231] = 7175, - [7232] = 7156, - [7233] = 7153, - [7234] = 7179, - [7235] = 7235, - [7236] = 7236, - [7237] = 7237, - [7238] = 7192, - [7239] = 7149, - [7240] = 7240, - [7241] = 7185, - [7242] = 7242, - [7243] = 7192, - [7244] = 7149, - [7245] = 7245, - [7246] = 7185, - [7247] = 7247, - [7248] = 7192, - [7249] = 7150, - [7250] = 7150, - [7251] = 7151, - [7252] = 7152, - [7253] = 7151, - [7254] = 7152, - [7255] = 7153, - [7256] = 7256, - [7257] = 7168, - [7258] = 7169, - [7259] = 7150, - [7260] = 7260, - [7261] = 7153, - [7262] = 7148, - [7263] = 7155, - [7264] = 7228, - [7265] = 7156, - [7266] = 7237, - [7267] = 7267, - [7268] = 7151, - [7269] = 7269, - [7270] = 7169, - [7271] = 7152, - [7272] = 7155, - [7273] = 7175, - [7274] = 7149, - [7275] = 7148, - [7276] = 7185, - [7277] = 7277, - [7278] = 7228, - [7279] = 7279, - [7280] = 7156, - [7281] = 7192, - [7282] = 7282, - [7283] = 7155, - [7284] = 7237, - [7285] = 7150, - [7286] = 7151, - [7287] = 7152, - [7288] = 7168, - [7289] = 7153, - [7290] = 7228, - [7291] = 7156, - [7292] = 7292, - [7293] = 7169, - [7294] = 7228, - [7295] = 7185, - [7296] = 7228, - [7297] = 7297, - [7298] = 7148, - [7299] = 7156, - [7300] = 7155, - [7301] = 7153, + [7093] = 3775, + [7094] = 2002, + [7095] = 7087, + [7096] = 7088, + [7097] = 7092, + [7098] = 7087, + [7099] = 2004, + [7100] = 2193, + [7101] = 2166, + [7102] = 7102, + [7103] = 7089, + [7104] = 7090, + [7105] = 7091, + [7106] = 3791, + [7107] = 3830, + [7108] = 7108, + [7109] = 7109, + [7110] = 7102, + [7111] = 3806, + [7112] = 7088, + [7113] = 3766, + [7114] = 3727, + [7115] = 3817, + [7116] = 7092, + [7117] = 3808, + [7118] = 3825, + [7119] = 7087, + [7120] = 3760, + [7121] = 3760, + [7122] = 3765, + [7123] = 3808, + [7124] = 3809, + [7125] = 7087, + [7126] = 7088, + [7127] = 7092, + [7128] = 3819, + [7129] = 7108, + [7130] = 1954, + [7131] = 7087, + [7132] = 7088, + [7133] = 7092, + [7134] = 3759, + [7135] = 3809, + [7136] = 3839, + [7137] = 7109, + [7138] = 2005, + [7139] = 3830, + [7140] = 3737, + [7141] = 3815, + [7142] = 7089, + [7143] = 7090, + [7144] = 7091, + [7145] = 3825, + [7146] = 7108, + [7147] = 7109, + [7148] = 7102, + [7149] = 2007, + [7150] = 2003, + [7151] = 3758, + [7152] = 7087, + [7153] = 7088, + [7154] = 7092, + [7155] = 3745, + [7156] = 3841, + [7157] = 3759, + [7158] = 3844, + [7159] = 3727, + [7160] = 3839, + [7161] = 3814, + [7162] = 3823, + [7163] = 3754, + [7164] = 3791, + [7165] = 3729, + [7166] = 7089, + [7167] = 7090, + [7168] = 7091, + [7169] = 7108, + [7170] = 7109, + [7171] = 7102, + [7172] = 3753, + [7173] = 3750, + [7174] = 3824, + [7175] = 3729, + [7176] = 7176, + [7177] = 7089, + [7178] = 7090, + [7179] = 7091, + [7180] = 3844, + [7181] = 7108, + [7182] = 7109, + [7183] = 7102, + [7184] = 7087, + [7185] = 7088, + [7186] = 7092, + [7187] = 3841, + [7188] = 7089, + [7189] = 7090, + [7190] = 7091, + [7191] = 7108, + [7192] = 7109, + [7193] = 7102, + [7194] = 3846, + [7195] = 7087, + [7196] = 7088, + [7197] = 7092, + [7198] = 3817, + [7199] = 3819, + [7200] = 7089, + [7201] = 7090, + [7202] = 7091, + [7203] = 7108, + [7204] = 7109, + [7205] = 7102, + [7206] = 3754, + [7207] = 3766, + [7208] = 3753, + [7209] = 3824, + [7210] = 3811, + [7211] = 3737, + [7212] = 7087, + [7213] = 7088, + [7214] = 7092, + [7215] = 3745, + [7216] = 3803, + [7217] = 3750, + [7218] = 1963, + [7219] = 7087, + [7220] = 7088, + [7221] = 7092, + [7222] = 7087, + [7223] = 7088, + [7224] = 7092, + [7225] = 1966, + [7226] = 7226, + [7227] = 2166, + [7228] = 7087, + [7229] = 7088, + [7230] = 7092, + [7231] = 3827, + [7232] = 3829, + [7233] = 3847, + [7234] = 7087, + [7235] = 3815, + [7236] = 3780, + [7237] = 7088, + [7238] = 7092, + [7239] = 2006, + [7240] = 7087, + [7241] = 3829, + [7242] = 7088, + [7243] = 7092, + [7244] = 3847, + [7245] = 3846, + [7246] = 2193, + [7247] = 7087, + [7248] = 2022, + [7249] = 2200, + [7250] = 7088, + [7251] = 7092, + [7252] = 7088, + [7253] = 3821, + [7254] = 3765, + [7255] = 3748, + [7256] = 2200, + [7257] = 2213, + [7258] = 3748, + [7259] = 3827, + [7260] = 3758, + [7261] = 3780, + [7262] = 3823, + [7263] = 3794, + [7264] = 3775, + [7265] = 3811, + [7266] = 3806, + [7267] = 2184, + [7268] = 7087, + [7269] = 7088, + [7270] = 7092, + [7271] = 7271, + [7272] = 7272, + [7273] = 3848, + [7274] = 7274, + [7275] = 3821, + [7276] = 3803, + [7277] = 7087, + [7278] = 7088, + [7279] = 7092, + [7280] = 3814, + [7281] = 7092, + [7282] = 3794, + [7283] = 3848, + [7284] = 7284, + [7285] = 7285, + [7286] = 7286, + [7287] = 7287, + [7288] = 7288, + [7289] = 7284, + [7290] = 7290, + [7291] = 7291, + [7292] = 2166, + [7293] = 7288, + [7294] = 1994, + [7295] = 7295, + [7296] = 7285, + [7297] = 7284, + [7298] = 7287, + [7299] = 1954, + [7300] = 7300, + [7301] = 7285, [7302] = 7302, - [7303] = 7303, - [7304] = 7228, - [7305] = 7237, - [7306] = 7169, - [7307] = 7307, - [7308] = 7167, - [7309] = 7309, - [7310] = 7310, - [7311] = 7311, - [7312] = 7179, - [7313] = 7237, - [7314] = 7149, - [7315] = 7185, - [7316] = 7192, - [7317] = 7317, - [7318] = 7150, - [7319] = 7151, - [7320] = 7152, - [7321] = 7153, - [7322] = 7322, - [7323] = 7323, - [7324] = 7324, - [7325] = 7150, - [7326] = 7148, - [7327] = 7169, - [7328] = 7237, - [7329] = 7148, - [7330] = 7307, - [7331] = 7167, - [7332] = 7179, - [7333] = 7155, - [7334] = 7307, - [7335] = 7179, - [7336] = 7307, - [7337] = 7179, - [7338] = 7307, - [7339] = 7179, - [7340] = 7307, - [7341] = 7341, - [7342] = 7307, - [7343] = 7179, - [7344] = 7307, - [7345] = 7179, - [7346] = 7307, - [7347] = 7150, - [7348] = 7148, - [7349] = 7349, - [7350] = 7350, - [7351] = 7237, - [7352] = 7352, - [7353] = 7175, - [7354] = 7354, - [7355] = 2421, - [7356] = 7356, - [7357] = 7357, - [7358] = 7358, - [7359] = 7359, - [7360] = 7360, - [7361] = 7361, - [7362] = 7362, - [7363] = 7363, - [7364] = 7364, - [7365] = 7365, - [7366] = 7366, - [7367] = 7367, - [7368] = 7368, - [7369] = 7369, - [7370] = 7370, - [7371] = 7371, - [7372] = 7372, - [7373] = 7373, - [7374] = 7374, - [7375] = 7375, - [7376] = 7376, - [7377] = 7377, - [7378] = 7378, - [7379] = 7379, - [7380] = 7380, - [7381] = 7357, - [7382] = 7358, - [7383] = 7364, - [7384] = 7384, - [7385] = 7385, - [7386] = 7384, - [7387] = 7387, - [7388] = 7388, + [7303] = 7302, + [7304] = 7288, + [7305] = 7287, + [7306] = 7285, + [7307] = 7287, + [7308] = 7284, + [7309] = 7284, + [7310] = 7288, + [7311] = 7285, + [7312] = 7284, + [7313] = 7302, + [7314] = 7285, + [7315] = 7302, + [7316] = 7285, + [7317] = 7302, + [7318] = 7284, + [7319] = 7302, + [7320] = 7288, + [7321] = 7288, + [7322] = 2022, + [7323] = 7288, + [7324] = 7288, + [7325] = 7284, + [7326] = 7302, + [7327] = 7302, + [7328] = 7287, + [7329] = 7285, + [7330] = 7284, + [7331] = 7284, + [7332] = 7284, + [7333] = 7287, + [7334] = 7285, + [7335] = 2005, + [7336] = 7285, + [7337] = 2166, + [7338] = 7288, + [7339] = 7284, + [7340] = 7287, + [7341] = 7285, + [7342] = 7288, + [7343] = 7288, + [7344] = 7288, + [7345] = 7285, + [7346] = 7285, + [7347] = 7288, + [7348] = 7285, + [7349] = 7285, + [7350] = 7285, + [7351] = 7286, + [7352] = 1969, + [7353] = 7285, + [7354] = 7285, + [7355] = 7285, + [7356] = 7285, + [7357] = 7285, + [7358] = 7284, + [7359] = 7285, + [7360] = 7284, + [7361] = 7285, + [7362] = 7285, + [7363] = 7288, + [7364] = 7302, + [7365] = 7285, + [7366] = 7287, + [7367] = 7285, + [7368] = 2007, + [7369] = 7288, + [7370] = 7285, + [7371] = 7288, + [7372] = 7287, + [7373] = 7288, + [7374] = 7300, + [7375] = 7302, + [7376] = 7284, + [7377] = 7295, + [7378] = 7288, + [7379] = 2166, + [7380] = 7302, + [7381] = 7284, + [7382] = 7287, + [7383] = 7383, + [7384] = 7285, + [7385] = 7284, + [7386] = 2166, + [7387] = 7287, + [7388] = 7285, [7389] = 7389, [7390] = 7390, [7391] = 7391, - [7392] = 7385, + [7392] = 7392, [7393] = 7393, [7394] = 7394, - [7395] = 7395, - [7396] = 7396, - [7397] = 7367, - [7398] = 7398, - [7399] = 7399, - [7400] = 7400, + [7395] = 7391, + [7396] = 2003, + [7397] = 1941, + [7398] = 7394, + [7399] = 2004, + [7400] = 7390, [7401] = 7401, - [7402] = 7402, - [7403] = 7403, - [7404] = 7404, - [7405] = 7405, - [7406] = 7406, - [7407] = 7407, - [7408] = 7367, - [7409] = 7374, - [7410] = 7376, - [7411] = 7411, - [7412] = 7412, - [7413] = 7413, - [7414] = 7414, - [7415] = 7371, - [7416] = 7416, - [7417] = 7417, - [7418] = 7363, - [7419] = 7419, - [7420] = 7420, - [7421] = 7421, - [7422] = 7374, - [7423] = 7380, - [7424] = 7424, - [7425] = 7395, + [7402] = 2001, + [7403] = 7390, + [7404] = 7392, + [7405] = 7389, + [7406] = 7391, + [7407] = 7394, + [7408] = 2166, + [7409] = 7401, + [7410] = 2193, + [7411] = 7392, + [7412] = 2193, + [7413] = 2193, + [7414] = 7391, + [7415] = 2200, + [7416] = 7394, + [7417] = 2002, + [7418] = 7401, + [7419] = 7392, + [7420] = 7391, + [7421] = 7401, + [7422] = 2200, + [7423] = 7401, + [7424] = 7390, + [7425] = 7392, [7426] = 7426, - [7427] = 7405, - [7428] = 7428, - [7429] = 7429, - [7430] = 7365, - [7431] = 7431, - [7432] = 7432, - [7433] = 7433, - [7434] = 7376, - [7435] = 7435, - [7436] = 7375, - [7437] = 7402, - [7438] = 7438, + [7427] = 7391, + [7428] = 7391, + [7429] = 7392, + [7430] = 7401, + [7431] = 2200, + [7432] = 2200, + [7433] = 2009, + [7434] = 2166, + [7435] = 4556, + [7436] = 1942, + [7437] = 7389, + [7438] = 7392, [7439] = 7439, - [7440] = 7403, - [7441] = 7388, - [7442] = 7404, - [7443] = 7388, - [7444] = 7412, - [7445] = 7431, - [7446] = 7394, - [7447] = 7388, - [7448] = 7448, + [7440] = 2005, + [7441] = 2007, + [7442] = 2193, + [7443] = 7394, + [7444] = 7394, + [7445] = 2006, + [7446] = 7401, + [7447] = 4201, + [7448] = 7401, [7449] = 7449, - [7450] = 7450, - [7451] = 7365, - [7452] = 7452, - [7453] = 2478, - [7454] = 7371, - [7455] = 7377, - [7456] = 7456, - [7457] = 7457, - [7458] = 7458, - [7459] = 7394, - [7460] = 7460, - [7461] = 7461, - [7462] = 7395, - [7463] = 7463, - [7464] = 7371, - [7465] = 7433, - [7466] = 7400, - [7467] = 7467, - [7468] = 7357, - [7469] = 7377, - [7470] = 7396, - [7471] = 7433, - [7472] = 7371, - [7473] = 7401, - [7474] = 7380, - [7475] = 7402, - [7476] = 7411, - [7477] = 7358, - [7478] = 7375, - [7479] = 7359, - [7480] = 7360, - [7481] = 7481, - [7482] = 7402, - [7483] = 7365, - [7484] = 7364, - [7485] = 7433, - [7486] = 7403, - [7487] = 7373, - [7488] = 7404, - [7489] = 7375, - [7490] = 239, - [7491] = 7357, - [7492] = 7358, - [7493] = 7364, - [7494] = 7385, - [7495] = 7393, - [7496] = 7403, - [7497] = 7411, - [7498] = 7400, - [7499] = 7499, - [7500] = 7384, - [7501] = 7501, - [7502] = 7401, - [7503] = 7402, - [7504] = 7403, - [7505] = 7371, - [7506] = 7506, - [7507] = 7404, - [7508] = 7394, - [7509] = 7431, - [7510] = 7396, - [7511] = 7366, - [7512] = 2487, - [7513] = 7400, - [7514] = 7401, - [7515] = 7402, - [7516] = 7403, - [7517] = 7404, - [7518] = 7428, - [7519] = 7519, - [7520] = 7367, - [7521] = 7374, - [7522] = 7376, - [7523] = 7373, - [7524] = 7413, - [7525] = 7388, - [7526] = 6879, - [7527] = 7419, - [7528] = 7420, - [7529] = 7380, - [7530] = 7426, - [7531] = 7405, - [7532] = 7359, - [7533] = 7428, - [7534] = 7429, - [7535] = 7359, - [7536] = 7371, - [7537] = 7537, - [7538] = 7375, - [7539] = 7402, - [7540] = 7375, - [7541] = 7359, - [7542] = 7367, - [7543] = 7360, - [7544] = 7374, - [7545] = 7403, - [7546] = 7363, - [7547] = 7376, - [7548] = 7365, - [7549] = 7412, - [7550] = 7393, - [7551] = 7371, - [7552] = 7411, - [7553] = 7499, - [7554] = 7413, - [7555] = 7413, - [7556] = 7404, - [7557] = 7557, - [7558] = 7558, - [7559] = 7429, - [7560] = 7560, - [7561] = 7377, - [7562] = 7366, - [7563] = 7388, - [7564] = 7371, - [7565] = 7377, - [7566] = 2411, - [7567] = 7567, - [7568] = 7375, - [7569] = 7426, - [7570] = 7375, - [7571] = 7373, - [7572] = 7405, - [7573] = 7558, - [7574] = 7388, - [7575] = 7402, - [7576] = 7375, - [7577] = 7396, - [7578] = 7403, - [7579] = 7579, - [7580] = 7404, - [7581] = 7581, - [7582] = 7582, - [7583] = 241, - [7584] = 7377, - [7585] = 7371, - [7586] = 7357, - [7587] = 7393, - [7588] = 7499, - [7589] = 7499, - [7590] = 7385, + [7450] = 7389, + [7451] = 2166, + [7452] = 2007, + [7453] = 2036, + [7454] = 2022, + [7455] = 2166, + [7456] = 2043, + [7457] = 2213, + [7458] = 2193, + [7459] = 1965, + [7460] = 2003, + [7461] = 2046, + [7462] = 2004, + [7463] = 2042, + [7464] = 2166, + [7465] = 2184, + [7466] = 2006, + [7467] = 2213, + [7468] = 2047, + [7469] = 2034, + [7470] = 2055, + [7471] = 2033, + [7472] = 2069, + [7473] = 2048, + [7474] = 1974, + [7475] = 1972, + [7476] = 2200, + [7477] = 2049, + [7478] = 2193, + [7479] = 2053, + [7480] = 2002, + [7481] = 2035, + [7482] = 2184, + [7483] = 2166, + [7484] = 2063, + [7485] = 2213, + [7486] = 2200, + [7487] = 2005, + [7488] = 2184, + [7489] = 2012, + [7490] = 2071, + [7491] = 2085, + [7492] = 2118, + [7493] = 1959, + [7494] = 2200, + [7495] = 2120, + [7496] = 2070, + [7497] = 2089, + [7498] = 2111, + [7499] = 2121, + [7500] = 2090, + [7501] = 2091, + [7502] = 2193, + [7503] = 2073, + [7504] = 2200, + [7505] = 2074, + [7506] = 2092, + [7507] = 2093, + [7508] = 2094, + [7509] = 2095, + [7510] = 2193, + [7511] = 2098, + [7512] = 2099, + [7513] = 2109, + [7514] = 2077, + [7515] = 2112, + [7516] = 2078, + [7517] = 2102, + [7518] = 2193, + [7519] = 2079, + [7520] = 2114, + [7521] = 2097, + [7522] = 2200, + [7523] = 2193, + [7524] = 2080, + [7525] = 2103, + [7526] = 2134, + [7527] = 2104, + [7528] = 2107, + [7529] = 2108, + [7530] = 2082, + [7531] = 2117, + [7532] = 2086, + [7533] = 2166, + [7534] = 2084, + [7535] = 2200, + [7536] = 2101, + [7537] = 2110, + [7538] = 2100, + [7539] = 2001, + [7540] = 2193, + [7541] = 2428, + [7542] = 2465, + [7543] = 2466, + [7544] = 2009, + [7545] = 2200, + [7546] = 2465, + [7547] = 2200, + [7548] = 2466, + [7549] = 2193, + [7550] = 2428, + [7551] = 2087, + [7552] = 2122, + [7553] = 2200, + [7554] = 2125, + [7555] = 7555, + [7556] = 2039, + [7557] = 2193, + [7558] = 1972, + [7559] = 2088, + [7560] = 2200, + [7561] = 7555, + [7562] = 7555, + [7563] = 7555, + [7564] = 2132, + [7565] = 2123, + [7566] = 2193, + [7567] = 2124, + [7568] = 7555, + [7569] = 2083, + [7570] = 7555, + [7571] = 2200, + [7572] = 7555, + [7573] = 1965, + [7574] = 2072, + [7575] = 2075, + [7576] = 2193, + [7577] = 1963, + [7578] = 2128, + [7579] = 7555, + [7580] = 2200, + [7581] = 2130, + [7582] = 2193, + [7583] = 7555, + [7584] = 2466, + [7585] = 2428, + [7586] = 2465, + [7587] = 7587, + [7588] = 2046, + [7589] = 2047, + [7590] = 2466, [7591] = 7591, - [7592] = 7358, - [7593] = 7433, - [7594] = 7364, - [7595] = 7366, - [7596] = 7360, - [7597] = 2523, - [7598] = 7598, - [7599] = 7371, - [7600] = 7371, - [7601] = 7384, - [7602] = 7602, - [7603] = 7603, - [7604] = 7604, - [7605] = 7605, - [7606] = 7606, - [7607] = 7385, - [7608] = 7359, - [7609] = 7360, - [7610] = 7610, - [7611] = 7393, - [7612] = 7499, - [7613] = 7613, - [7614] = 7366, - [7615] = 7365, - [7616] = 7375, - [7617] = 7402, - [7618] = 7366, - [7619] = 7403, - [7620] = 7404, - [7621] = 7357, - [7622] = 7358, - [7623] = 7373, - [7624] = 7624, - [7625] = 7364, - [7626] = 7375, - [7627] = 7428, - [7628] = 7628, - [7629] = 7629, - [7630] = 7416, - [7631] = 7357, - [7632] = 7358, - [7633] = 7371, - [7634] = 7364, - [7635] = 7377, - [7636] = 7385, - [7637] = 7393, - [7638] = 7499, - [7639] = 7639, - [7640] = 7404, - [7641] = 7366, - [7642] = 7375, - [7643] = 7643, - [7644] = 7394, - [7645] = 7396, - [7646] = 7393, - [7647] = 7499, - [7648] = 7400, - [7649] = 7401, - [7650] = 7402, - [7651] = 7403, - [7652] = 7404, - [7653] = 7499, - [7654] = 7433, - [7655] = 7367, - [7656] = 7374, - [7657] = 7376, - [7658] = 7413, - [7659] = 7499, - [7660] = 7375, - [7661] = 7499, - [7662] = 7402, - [7663] = 7499, - [7664] = 7664, - [7665] = 7419, - [7666] = 7420, - [7667] = 7667, - [7668] = 7380, - [7669] = 7669, - [7670] = 7670, - [7671] = 7426, - [7672] = 7672, - [7673] = 7405, - [7674] = 7403, - [7675] = 7428, - [7676] = 7429, - [7677] = 7404, - [7678] = 7394, - [7679] = 7373, - [7680] = 7680, - [7681] = 7395, - [7682] = 2491, - [7683] = 7396, - [7684] = 2499, - [7685] = 7419, - [7686] = 7416, - [7687] = 7420, - [7688] = 7375, + [7592] = 2214, + [7593] = 2428, + [7594] = 7594, + [7595] = 7595, + [7596] = 2428, + [7597] = 2465, + [7598] = 2193, + [7599] = 2048, + [7600] = 2465, + [7601] = 2465, + [7602] = 2042, + [7603] = 1994, + [7604] = 2466, + [7605] = 2069, + [7606] = 2428, + [7607] = 2033, + [7608] = 2200, + [7609] = 2034, + [7610] = 2053, + [7611] = 2035, + [7612] = 2055, + [7613] = 2036, + [7614] = 2043, + [7615] = 2466, + [7616] = 2465, + [7617] = 2466, + [7618] = 2465, + [7619] = 2466, + [7620] = 2428, + [7621] = 2428, + [7622] = 7622, + [7623] = 7623, + [7624] = 7623, + [7625] = 7625, + [7626] = 7626, + [7627] = 7626, + [7628] = 7626, + [7629] = 7623, + [7630] = 7625, + [7631] = 7623, + [7632] = 7623, + [7633] = 7623, + [7634] = 7625, + [7635] = 2039, + [7636] = 2466, + [7637] = 7625, + [7638] = 7623, + [7639] = 7626, + [7640] = 7623, + [7641] = 7626, + [7642] = 2428, + [7643] = 2465, + [7644] = 7625, + [7645] = 7626, + [7646] = 2466, + [7647] = 7625, + [7648] = 7626, + [7649] = 7626, + [7650] = 2428, + [7651] = 2156, + [7652] = 7622, + [7653] = 7626, + [7654] = 7626, + [7655] = 7625, + [7656] = 7625, + [7657] = 7626, + [7658] = 7626, + [7659] = 2465, + [7660] = 2428, + [7661] = 2465, + [7662] = 3560, + [7663] = 7625, + [7664] = 2428, + [7665] = 7623, + [7666] = 7625, + [7667] = 7626, + [7668] = 7625, + [7669] = 7626, + [7670] = 2466, + [7671] = 7626, + [7672] = 2465, + [7673] = 7625, + [7674] = 7623, + [7675] = 7625, + [7676] = 7622, + [7677] = 7626, + [7678] = 7623, + [7679] = 7625, + [7680] = 7623, + [7681] = 2466, + [7682] = 7625, + [7683] = 7623, + [7684] = 7623, + [7685] = 7623, + [7686] = 7625, + [7687] = 7623, + [7688] = 7688, [7689] = 7689, - [7690] = 7429, - [7691] = 7400, - [7692] = 7401, - [7693] = 7402, - [7694] = 7371, - [7695] = 7403, - [7696] = 7404, - [7697] = 7426, - [7698] = 7388, - [7699] = 7375, - [7700] = 7402, - [7701] = 7403, - [7702] = 7404, - [7703] = 7377, - [7704] = 7419, - [7705] = 7705, - [7706] = 7433, - [7707] = 7380, + [7690] = 7690, + [7691] = 7688, + [7692] = 7690, + [7693] = 7693, + [7694] = 7690, + [7695] = 7693, + [7696] = 7690, + [7697] = 7697, + [7698] = 7693, + [7699] = 7688, + [7700] = 2466, + [7701] = 7689, + [7702] = 7688, + [7703] = 7693, + [7704] = 7689, + [7705] = 7688, + [7706] = 7689, + [7707] = 7690, [7708] = 7708, - [7709] = 7420, - [7710] = 7431, - [7711] = 7367, - [7712] = 7371, - [7713] = 7433, - [7714] = 7374, - [7715] = 7402, - [7716] = 7376, - [7717] = 7412, - [7718] = 7413, - [7719] = 7359, - [7720] = 7402, - [7721] = 7558, - [7722] = 7722, - [7723] = 7359, - [7724] = 7360, - [7725] = 7428, - [7726] = 7726, - [7727] = 7371, - [7728] = 7728, - [7729] = 7581, - [7730] = 7403, - [7731] = 7375, - [7732] = 7373, - [7733] = 7402, - [7734] = 7403, - [7735] = 7404, - [7736] = 7375, - [7737] = 7737, - [7738] = 7404, - [7739] = 7403, - [7740] = 7740, - [7741] = 7741, - [7742] = 7357, - [7743] = 7358, - [7744] = 7371, - [7745] = 7360, - [7746] = 7364, - [7747] = 7747, - [7748] = 7748, - [7749] = 7404, - [7750] = 7371, - [7751] = 7385, - [7752] = 7371, - [7753] = 7371, - [7754] = 7371, - [7755] = 7393, - [7756] = 7756, - [7757] = 7411, - [7758] = 7499, - [7759] = 2407, - [7760] = 7371, - [7761] = 7411, - [7762] = 7429, - [7763] = 7763, - [7764] = 7394, - [7765] = 7765, - [7766] = 7363, - [7767] = 2449, - [7768] = 7768, - [7769] = 7400, - [7770] = 7770, - [7771] = 7401, - [7772] = 7402, - [7773] = 7403, - [7774] = 7404, - [7775] = 7367, - [7776] = 7374, - [7777] = 7376, - [7778] = 2450, - [7779] = 7413, - [7780] = 7780, - [7781] = 7781, - [7782] = 7782, - [7783] = 7419, - [7784] = 7419, - [7785] = 7785, - [7786] = 7786, - [7787] = 7420, - [7788] = 7788, - [7789] = 7380, - [7790] = 7790, - [7791] = 7420, - [7792] = 7426, + [7709] = 2428, + [7710] = 7693, + [7711] = 7688, + [7712] = 7697, + [7713] = 7689, + [7714] = 7693, + [7715] = 2465, + [7716] = 7689, + [7717] = 7688, + [7718] = 7697, + [7719] = 7693, + [7720] = 7693, + [7721] = 2465, + [7722] = 7697, + [7723] = 7697, + [7724] = 7688, + [7725] = 7690, + [7726] = 7708, + [7727] = 7697, + [7728] = 7697, + [7729] = 7690, + [7730] = 7693, + [7731] = 7688, + [7732] = 7689, + [7733] = 7697, + [7734] = 7688, + [7735] = 7690, + [7736] = 7708, + [7737] = 2466, + [7738] = 7697, + [7739] = 7693, + [7740] = 7688, + [7741] = 7693, + [7742] = 7693, + [7743] = 7688, + [7744] = 7689, + [7745] = 2428, + [7746] = 7746, + [7747] = 7688, + [7748] = 7688, + [7749] = 7689, + [7750] = 7697, + [7751] = 7697, + [7752] = 7690, + [7753] = 7690, + [7754] = 7689, + [7755] = 7688, + [7756] = 7693, + [7757] = 7689, + [7758] = 7693, + [7759] = 7689, + [7760] = 7697, + [7761] = 7689, + [7762] = 7690, + [7763] = 7693, + [7764] = 7708, + [7765] = 7693, + [7766] = 7697, + [7767] = 7688, + [7768] = 7690, + [7769] = 7697, + [7770] = 7697, + [7771] = 7697, + [7772] = 7688, + [7773] = 7690, + [7774] = 7708, + [7775] = 7689, + [7776] = 7690, + [7777] = 7690, + [7778] = 7693, + [7779] = 7689, + [7780] = 7689, + [7781] = 7693, + [7782] = 7690, + [7783] = 7689, + [7784] = 7697, + [7785] = 3560, + [7786] = 7689, + [7787] = 7688, + [7788] = 7697, + [7789] = 7690, + [7790] = 7690, + [7791] = 7791, + [7792] = 7791, [7793] = 7793, [7794] = 7794, - [7795] = 7405, - [7796] = 7796, - [7797] = 7428, - [7798] = 7581, - [7799] = 7380, - [7800] = 7426, - [7801] = 7405, - [7802] = 2416, - [7803] = 7803, - [7804] = 7804, - [7805] = 7805, - [7806] = 7806, - [7807] = 7807, - [7808] = 7808, - [7809] = 7809, - [7810] = 7810, - [7811] = 7806, - [7812] = 7812, - [7813] = 7813, - [7814] = 7814, - [7815] = 7813, - [7816] = 7816, - [7817] = 7817, - [7818] = 7818, - [7819] = 7808, - [7820] = 7820, - [7821] = 7806, - [7822] = 7822, - [7823] = 7823, - [7824] = 7824, - [7825] = 7825, - [7826] = 7812, - [7827] = 7827, - [7828] = 7814, - [7829] = 7829, - [7830] = 7816, - [7831] = 7806, - [7832] = 7832, - [7833] = 7833, - [7834] = 7805, - [7835] = 7835, - [7836] = 7836, - [7837] = 7806, - [7838] = 7838, - [7839] = 7808, - [7840] = 7832, - [7841] = 7841, - [7842] = 7842, - [7843] = 7838, - [7844] = 7836, - [7845] = 7836, - [7846] = 7846, - [7847] = 7817, - [7848] = 7808, + [7795] = 7794, + [7796] = 2839, + [7797] = 7791, + [7798] = 7794, + [7799] = 7793, + [7800] = 7794, + [7801] = 2428, + [7802] = 7791, + [7803] = 7791, + [7804] = 7791, + [7805] = 2465, + [7806] = 2428, + [7807] = 7794, + [7808] = 7794, + [7809] = 2465, + [7810] = 7791, + [7811] = 7791, + [7812] = 7793, + [7813] = 7793, + [7814] = 7794, + [7815] = 2428, + [7816] = 7791, + [7817] = 7793, + [7818] = 2129, + [7819] = 7791, + [7820] = 7791, + [7821] = 7794, + [7822] = 2466, + [7823] = 3105, + [7824] = 7793, + [7825] = 7791, + [7826] = 7794, + [7827] = 2466, + [7828] = 2465, + [7829] = 7791, + [7830] = 7830, + [7831] = 7791, + [7832] = 7791, + [7833] = 7793, + [7834] = 7791, + [7835] = 7794, + [7836] = 7793, + [7837] = 7794, + [7838] = 2799, + [7839] = 7791, + [7840] = 7791, + [7841] = 7793, + [7842] = 7794, + [7843] = 7794, + [7844] = 7794, + [7845] = 7793, + [7846] = 2428, + [7847] = 7793, + [7848] = 7793, [7849] = 7849, - [7850] = 7850, - [7851] = 7851, - [7852] = 7806, - [7853] = 7808, - [7854] = 7854, - [7855] = 7813, - [7856] = 7825, - [7857] = 7857, - [7858] = 7817, - [7859] = 7859, - [7860] = 7808, - [7861] = 7861, - [7862] = 7862, - [7863] = 7863, - [7864] = 7816, - [7865] = 7865, - [7866] = 7851, - [7867] = 7859, - [7868] = 7813, + [7850] = 7791, + [7851] = 7793, + [7852] = 7793, + [7853] = 7791, + [7854] = 7794, + [7855] = 2465, + [7856] = 7791, + [7857] = 2466, + [7858] = 7793, + [7859] = 7794, + [7860] = 7791, + [7861] = 2466, + [7862] = 7793, + [7863] = 7791, + [7864] = 7791, + [7865] = 7791, + [7866] = 7791, + [7867] = 7791, + [7868] = 2127, [7869] = 7869, - [7870] = 7870, - [7871] = 7817, - [7872] = 7838, - [7873] = 7857, - [7874] = 7874, - [7875] = 7865, - [7876] = 7851, - [7877] = 7824, - [7878] = 7832, - [7879] = 7807, - [7880] = 7808, - [7881] = 7808, - [7882] = 7882, - [7883] = 7838, - [7884] = 7884, - [7885] = 7836, - [7886] = 7838, - [7887] = 7887, - [7888] = 7849, - [7889] = 7807, - [7890] = 7814, - [7891] = 7891, - [7892] = 7818, - [7893] = 7836, - [7894] = 7806, - [7895] = 7813, - [7896] = 7817, - [7897] = 7887, - [7898] = 7898, - [7899] = 7899, - [7900] = 7832, - [7901] = 7869, - [7902] = 7849, - [7903] = 7817, - [7904] = 7808, - [7905] = 7861, - [7906] = 7906, - [7907] = 7824, - [7908] = 7859, - [7909] = 7808, - [7910] = 7910, - [7911] = 7803, - [7912] = 7912, - [7913] = 7913, - [7914] = 7914, - [7915] = 7805, - [7916] = 7808, - [7917] = 7829, - [7918] = 7910, - [7919] = 7810, - [7920] = 7846, - [7921] = 7869, - [7922] = 7922, - [7923] = 7869, - [7924] = 7924, - [7925] = 7865, - [7926] = 7851, - [7927] = 7865, - [7928] = 7851, - [7929] = 7863, - [7930] = 7823, - [7931] = 7869, - [7932] = 7812, - [7933] = 7806, - [7934] = 7808, - [7935] = 7887, - [7936] = 7807, - [7937] = 7891, - [7938] = 7814, - [7939] = 7806, - [7940] = 7865, - [7941] = 7851, - [7942] = 7816, - [7943] = 7898, - [7944] = 7944, - [7945] = 7899, - [7946] = 7832, - [7947] = 7806, - [7948] = 7813, - [7949] = 7949, - [7950] = 7950, - [7951] = 7857, - [7952] = 7803, - [7953] = 7912, - [7954] = 7861, - [7955] = 7914, - [7956] = 7810, - [7957] = 7824, - [7958] = 7829, - [7959] = 7859, - [7960] = 7960, - [7961] = 7804, - [7962] = 7805, + [7870] = 7869, + [7871] = 3105, + [7872] = 7869, + [7873] = 7873, + [7874] = 2428, + [7875] = 7875, + [7876] = 2466, + [7877] = 7873, + [7878] = 7869, + [7879] = 7869, + [7880] = 7873, + [7881] = 2465, + [7882] = 3129, + [7883] = 2917, + [7884] = 2895, + [7885] = 7885, + [7886] = 7886, + [7887] = 2980, + [7888] = 2929, + [7889] = 2890, + [7890] = 2903, + [7891] = 2872, + [7892] = 2951, + [7893] = 2960, + [7894] = 7886, + [7895] = 2910, + [7896] = 3494, + [7897] = 7885, + [7898] = 2976, + [7899] = 2845, + [7900] = 3823, + [7901] = 2889, + [7902] = 7902, + [7903] = 7886, + [7904] = 7885, + [7905] = 7905, + [7906] = 7886, + [7907] = 7907, + [7908] = 7886, + [7909] = 7885, + [7910] = 7885, + [7911] = 7885, + [7912] = 7886, + [7913] = 7885, + [7914] = 7886, + [7915] = 7885, + [7916] = 3141, + [7917] = 2911, + [7918] = 7886, + [7919] = 7885, + [7920] = 7886, + [7921] = 7885, + [7922] = 7886, + [7923] = 7885, + [7924] = 2864, + [7925] = 3815, + [7926] = 2911, + [7927] = 2959, + [7928] = 2867, + [7929] = 7929, + [7930] = 3511, + [7931] = 2872, + [7932] = 3560, + [7933] = 2754, + [7934] = 2864, + [7935] = 7886, + [7936] = 7886, + [7937] = 3122, + [7938] = 2959, + [7939] = 7885, + [7940] = 2893, + [7941] = 2897, + [7942] = 256, + [7943] = 253, + [7944] = 2867, + [7945] = 2913, + [7946] = 3740, + [7947] = 3738, + [7948] = 3790, + [7949] = 3744, + [7950] = 3740, + [7951] = 7951, + [7952] = 7952, + [7953] = 7953, + [7954] = 3830, + [7955] = 3560, + [7956] = 3738, + [7957] = 3790, + [7958] = 3744, + [7959] = 7959, + [7960] = 3560, + [7961] = 7959, + [7962] = 7962, [7963] = 7963, - [7964] = 7842, - [7965] = 7818, - [7966] = 7838, - [7967] = 7804, - [7968] = 7805, - [7969] = 7838, - [7970] = 7817, - [7971] = 7971, - [7972] = 7887, - [7973] = 7891, - [7974] = 7898, - [7975] = 7813, - [7976] = 7899, - [7977] = 7977, - [7978] = 7978, - [7979] = 7914, - [7980] = 7857, + [7964] = 7964, + [7965] = 7959, + [7966] = 7959, + [7967] = 7962, + [7968] = 7959, + [7969] = 7959, + [7970] = 7963, + [7971] = 2883, + [7972] = 7962, + [7973] = 7959, + [7974] = 7974, + [7975] = 7963, + [7976] = 7959, + [7977] = 7964, + [7978] = 7959, + [7979] = 7963, + [7980] = 7963, [7981] = 7981, - [7982] = 7863, - [7983] = 7812, - [7984] = 7817, - [7985] = 7912, - [7986] = 7814, - [7987] = 7987, - [7988] = 7914, - [7989] = 7859, - [7990] = 7859, - [7991] = 7829, - [7992] = 7808, - [7993] = 7993, - [7994] = 7842, - [7995] = 7887, - [7996] = 7996, - [7997] = 7807, - [7998] = 7823, - [7999] = 7891, - [8000] = 7891, - [8001] = 7898, - [8002] = 7898, - [8003] = 8003, - [8004] = 7869, - [8005] = 7816, - [8006] = 8006, - [8007] = 7806, - [8008] = 7865, - [8009] = 7806, - [8010] = 7851, - [8011] = 7805, - [8012] = 7912, - [8013] = 7912, - [8014] = 7914, - [8015] = 7838, - [8016] = 7829, - [8017] = 8017, - [8018] = 7898, - [8019] = 7891, - [8020] = 7814, - [8021] = 7818, - [8022] = 7898, - [8023] = 7813, - [8024] = 7814, - [8025] = 7899, - [8026] = 7891, - [8027] = 7818, - [8028] = 7912, - [8029] = 7849, - [8030] = 7914, - [8031] = 7861, - [8032] = 7824, - [8033] = 8033, - [8034] = 7832, - [8035] = 7891, - [8036] = 7806, - [8037] = 7898, - [8038] = 7912, - [8039] = 7910, - [8040] = 7810, - [8041] = 7823, - [8042] = 7898, + [7982] = 7959, + [7983] = 3223, + [7984] = 7962, + [7985] = 7963, + [7986] = 7959, + [7987] = 2923, + [7988] = 7963, + [7989] = 2924, + [7990] = 7959, + [7991] = 7962, + [7992] = 7963, + [7993] = 7959, + [7994] = 7959, + [7995] = 7959, + [7996] = 7959, + [7997] = 2882, + [7998] = 7959, + [7999] = 7959, + [8000] = 7959, + [8001] = 7959, + [8002] = 7974, + [8003] = 7959, + [8004] = 7959, + [8005] = 3738, + [8006] = 3790, + [8007] = 3744, + [8008] = 7963, + [8009] = 3740, + [8010] = 3248, + [8011] = 3738, + [8012] = 3790, + [8013] = 3744, + [8014] = 3740, + [8015] = 7963, + [8016] = 7953, + [8017] = 7963, + [8018] = 7962, + [8019] = 7962, + [8020] = 7959, + [8021] = 7974, + [8022] = 2870, + [8023] = 2871, + [8024] = 7959, + [8025] = 7964, + [8026] = 7963, + [8027] = 7981, + [8028] = 8028, + [8029] = 7981, + [8030] = 7959, + [8031] = 7959, + [8032] = 7959, + [8033] = 7959, + [8034] = 8034, + [8035] = 8035, + [8036] = 8036, + [8037] = 8037, + [8038] = 8038, + [8039] = 8039, + [8040] = 8038, + [8041] = 8041, + [8042] = 8042, [8043] = 8043, - [8044] = 7805, - [8045] = 7863, - [8046] = 7898, - [8047] = 7869, - [8048] = 7861, - [8049] = 7810, - [8050] = 7857, - [8051] = 7838, + [8044] = 8044, + [8045] = 8045, + [8046] = 8046, + [8047] = 8047, + [8048] = 8039, + [8049] = 8049, + [8050] = 8050, + [8051] = 8051, [8052] = 8052, - [8053] = 7899, - [8054] = 7899, - [8055] = 7824, - [8056] = 7865, - [8057] = 7806, - [8058] = 7807, + [8053] = 8053, + [8054] = 8054, + [8055] = 8041, + [8056] = 3560, + [8057] = 3560, + [8058] = 8035, [8059] = 8059, - [8060] = 8060, - [8061] = 7849, - [8062] = 7851, - [8063] = 7825, - [8064] = 7861, - [8065] = 7812, - [8066] = 7824, - [8067] = 7910, - [8068] = 7817, - [8069] = 7806, - [8070] = 8070, - [8071] = 7910, - [8072] = 7846, - [8073] = 7808, - [8074] = 7838, - [8075] = 7857, - [8076] = 8076, - [8077] = 7803, - [8078] = 7813, - [8079] = 7857, - [8080] = 7817, - [8081] = 7912, - [8082] = 7910, - [8083] = 8083, - [8084] = 7859, - [8085] = 7808, - [8086] = 7869, - [8087] = 7950, - [8088] = 7803, - [8089] = 7838, - [8090] = 7865, - [8091] = 7851, - [8092] = 7824, - [8093] = 8093, - [8094] = 7842, - [8095] = 7861, - [8096] = 7804, - [8097] = 7805, - [8098] = 8098, - [8099] = 7914, - [8100] = 7869, - [8101] = 8101, - [8102] = 7865, - [8103] = 7851, + [8060] = 8042, + [8061] = 8061, + [8062] = 8062, + [8063] = 8063, + [8064] = 8064, + [8065] = 8044, + [8066] = 8066, + [8067] = 8045, + [8068] = 8068, + [8069] = 8069, + [8070] = 8036, + [8071] = 8071, + [8072] = 8037, + [8073] = 8037, + [8074] = 8038, + [8075] = 8043, + [8076] = 8046, + [8077] = 8077, + [8078] = 8078, + [8079] = 8079, + [8080] = 8037, + [8081] = 8043, + [8082] = 8082, + [8083] = 8038, + [8084] = 8084, + [8085] = 8085, + [8086] = 8086, + [8087] = 8037, + [8088] = 8038, + [8089] = 1954, + [8090] = 8043, + [8091] = 8050, + [8092] = 8037, + [8093] = 8038, + [8094] = 8094, + [8095] = 8037, + [8096] = 8038, + [8097] = 8037, + [8098] = 8038, + [8099] = 8051, + [8100] = 8037, + [8101] = 8053, + [8102] = 8038, + [8103] = 3560, [8104] = 8104, - [8105] = 7814, - [8106] = 7818, - [8107] = 7812, + [8105] = 8105, + [8106] = 8043, + [8107] = 8104, [8108] = 8108, [8109] = 8109, - [8110] = 8110, - [8111] = 7865, - [8112] = 7851, - [8113] = 7842, - [8114] = 7869, + [8110] = 8105, + [8111] = 8104, + [8112] = 8105, + [8113] = 8105, + [8114] = 8114, [8115] = 8115, - [8116] = 7829, - [8117] = 7805, - [8118] = 7817, - [8119] = 7814, - [8120] = 7818, + [8116] = 8116, + [8117] = 8117, + [8118] = 4478, + [8119] = 8034, + [8120] = 3578, [8121] = 8121, - [8122] = 7922, - [8123] = 7810, - [8124] = 7812, - [8125] = 7838, - [8126] = 7814, - [8127] = 7865, - [8128] = 7851, - [8129] = 7824, - [8130] = 7816, - [8131] = 7849, - [8132] = 7825, - [8133] = 7861, - [8134] = 8134, - [8135] = 7824, - [8136] = 7814, - [8137] = 7861, - [8138] = 7865, - [8139] = 7910, - [8140] = 7824, - [8141] = 7805, - [8142] = 8142, - [8143] = 7806, - [8144] = 7861, - [8145] = 7824, - [8146] = 7922, - [8147] = 8147, - [8148] = 7910, - [8149] = 7846, - [8150] = 7922, + [8122] = 8121, + [8123] = 8121, + [8124] = 8124, + [8125] = 8121, + [8126] = 8121, + [8127] = 8127, + [8128] = 8054, + [8129] = 8121, + [8130] = 8130, + [8131] = 4478, + [8132] = 8132, + [8133] = 8115, + [8134] = 8117, + [8135] = 8121, + [8136] = 8136, + [8137] = 8137, + [8138] = 8132, + [8139] = 8139, + [8140] = 3598, + [8141] = 8136, + [8142] = 8136, + [8143] = 1969, + [8144] = 8137, + [8145] = 8145, + [8146] = 8064, + [8147] = 3490, + [8148] = 3580, + [8149] = 3581, + [8150] = 3590, [8151] = 8151, - [8152] = 7922, - [8153] = 7922, - [8154] = 8154, - [8155] = 7922, - [8156] = 7922, - [8157] = 7922, - [8158] = 7922, - [8159] = 7922, - [8160] = 7922, - [8161] = 7922, - [8162] = 7922, - [8163] = 7922, - [8164] = 7922, - [8165] = 7922, + [8152] = 8152, + [8153] = 8153, + [8154] = 8121, + [8155] = 3540, + [8156] = 3543, + [8157] = 8136, + [8158] = 8158, + [8159] = 8121, + [8160] = 3516, + [8161] = 8047, + [8162] = 3521, + [8163] = 3522, + [8164] = 3525, + [8165] = 3526, [8166] = 8166, - [8167] = 7805, - [8168] = 7808, - [8169] = 8169, - [8170] = 8170, - [8171] = 8171, - [8172] = 8172, - [8173] = 8173, - [8174] = 8174, - [8175] = 8175, - [8176] = 8176, - [8177] = 8177, - [8178] = 8178, - [8179] = 8179, - [8180] = 8180, - [8181] = 8181, - [8182] = 8182, - [8183] = 8183, - [8184] = 8184, - [8185] = 8185, - [8186] = 8181, + [8167] = 8121, + [8168] = 8121, + [8169] = 3535, + [8170] = 3513, + [8171] = 3560, + [8172] = 8121, + [8173] = 8121, + [8174] = 8121, + [8175] = 8121, + [8176] = 8121, + [8177] = 8121, + [8178] = 8121, + [8179] = 8130, + [8180] = 3510, + [8181] = 3523, + [8182] = 8136, + [8183] = 3515, + [8184] = 8137, + [8185] = 8145, + [8186] = 8186, [8187] = 8187, - [8188] = 8172, - [8189] = 8189, - [8190] = 8170, - [8191] = 7117, - [8192] = 8192, - [8193] = 8193, - [8194] = 8187, - [8195] = 8189, - [8196] = 8196, + [8188] = 8188, + [8189] = 8121, + [8190] = 3495, + [8191] = 8191, + [8192] = 8121, + [8193] = 8121, + [8194] = 8145, + [8195] = 3497, + [8196] = 8130, [8197] = 8197, - [8198] = 8181, - [8199] = 8199, - [8200] = 8200, - [8201] = 8201, - [8202] = 8202, - [8203] = 8203, + [8198] = 8152, + [8199] = 8137, + [8200] = 8136, + [8201] = 8121, + [8202] = 8121, + [8203] = 8136, [8204] = 8204, - [8205] = 8205, - [8206] = 8206, - [8207] = 8207, - [8208] = 8208, - [8209] = 8209, - [8210] = 8210, - [8211] = 8170, - [8212] = 8212, + [8205] = 8061, + [8206] = 8137, + [8207] = 8114, + [8208] = 3541, + [8209] = 8121, + [8210] = 2022, + [8211] = 8121, + [8212] = 3702, [8213] = 8213, - [8214] = 8214, + [8214] = 8059, [8215] = 8215, - [8216] = 8176, + [8216] = 3492, [8217] = 8217, [8218] = 8218, - [8219] = 8219, - [8220] = 8220, + [8219] = 8121, + [8220] = 8121, [8221] = 8221, - [8222] = 8199, - [8223] = 8172, - [8224] = 8197, - [8225] = 8225, - [8226] = 8226, - [8227] = 8227, - [8228] = 8199, - [8229] = 8178, - [8230] = 8230, - [8231] = 8231, - [8232] = 8210, + [8222] = 8066, + [8223] = 8068, + [8224] = 8069, + [8225] = 8071, + [8226] = 8077, + [8227] = 8079, + [8228] = 8082, + [8229] = 8084, + [8230] = 8121, + [8231] = 8085, + [8232] = 8086, [8233] = 8233, - [8234] = 8234, - [8235] = 8181, - [8236] = 8177, - [8237] = 8237, - [8238] = 8238, - [8239] = 8172, - [8240] = 8177, - [8241] = 8172, - [8242] = 8204, - [8243] = 8243, - [8244] = 8184, - [8245] = 8245, - [8246] = 8246, + [8234] = 3565, + [8235] = 3573, + [8236] = 2022, + [8237] = 1969, + [8238] = 8121, + [8239] = 3528, + [8240] = 3491, + [8241] = 8130, + [8242] = 3491, + [8243] = 3790, + [8244] = 2893, + [8245] = 3761, + [8246] = 3598, [8247] = 8247, - [8248] = 8248, - [8249] = 8249, + [8248] = 2976, + [8249] = 8247, [8250] = 8250, - [8251] = 8177, - [8252] = 8252, - [8253] = 8253, - [8254] = 8174, - [8255] = 8196, - [8256] = 8256, - [8257] = 8257, - [8258] = 8184, - [8259] = 8259, - [8260] = 8260, - [8261] = 8261, + [8251] = 8251, + [8252] = 2845, + [8253] = 3662, + [8254] = 2890, + [8255] = 3744, + [8256] = 3744, + [8257] = 3648, + [8258] = 8258, + [8259] = 2911, + [8260] = 2903, + [8261] = 2910, [8262] = 8262, - [8263] = 8259, - [8264] = 8264, - [8265] = 8265, - [8266] = 8262, - [8267] = 8267, - [8268] = 8268, - [8269] = 8267, + [8263] = 3511, + [8264] = 3740, + [8265] = 2897, + [8266] = 3738, + [8267] = 8250, + [8268] = 2867, + [8269] = 2864, [8270] = 8270, - [8271] = 8171, - [8272] = 8272, - [8273] = 8177, - [8274] = 8272, + [8271] = 3494, + [8272] = 2913, + [8273] = 8250, + [8274] = 8250, [8275] = 8275, - [8276] = 8276, - [8277] = 8189, - [8278] = 8278, - [8279] = 8225, - [8280] = 8280, - [8281] = 8260, - [8282] = 8206, - [8283] = 8283, - [8284] = 8284, - [8285] = 8285, - [8286] = 8227, - [8287] = 8181, - [8288] = 8210, - [8289] = 8247, - [8290] = 8172, - [8291] = 8291, - [8292] = 8199, - [8293] = 8260, - [8294] = 8181, - [8295] = 8295, - [8296] = 8296, - [8297] = 8172, - [8298] = 8284, - [8299] = 8200, - [8300] = 8204, - [8301] = 8301, - [8302] = 8302, - [8303] = 8214, - [8304] = 8206, - [8305] = 8305, - [8306] = 8306, - [8307] = 8307, - [8308] = 8308, - [8309] = 8249, - [8310] = 8310, - [8311] = 8204, - [8312] = 8259, - [8313] = 8313, - [8314] = 8176, - [8315] = 8315, - [8316] = 8316, - [8317] = 8174, - [8318] = 8248, - [8319] = 8319, - [8320] = 8227, - [8321] = 8321, - [8322] = 8322, - [8323] = 8171, - [8324] = 8270, - [8325] = 8233, - [8326] = 8172, + [8276] = 2959, + [8277] = 3755, + [8278] = 2951, + [8279] = 3540, + [8280] = 2960, + [8281] = 2929, + [8282] = 8282, + [8283] = 3560, + [8284] = 3738, + [8285] = 8275, + [8286] = 8286, + [8287] = 8250, + [8288] = 8275, + [8289] = 8275, + [8290] = 8275, + [8291] = 3490, + [8292] = 8247, + [8293] = 2872, + [8294] = 8247, + [8295] = 2917, + [8296] = 2895, + [8297] = 3248, + [8298] = 8250, + [8299] = 8247, + [8300] = 3790, + [8301] = 8275, + [8302] = 3495, + [8303] = 8250, + [8304] = 3223, + [8305] = 4083, + [8306] = 2864, + [8307] = 4087, + [8308] = 4089, + [8309] = 4084, + [8310] = 4085, + [8311] = 4090, + [8312] = 4086, + [8313] = 4092, + [8314] = 2911, + [8315] = 2959, + [8316] = 2867, + [8317] = 2872, + [8318] = 253, + [8319] = 2889, + [8320] = 256, + [8321] = 3740, + [8322] = 2980, + [8323] = 8323, + [8324] = 8323, + [8325] = 8323, + [8326] = 8323, [8327] = 8327, - [8328] = 8172, - [8329] = 8178, - [8330] = 8330, - [8331] = 8213, - [8332] = 8284, - [8333] = 8231, - [8334] = 8176, - [8335] = 8335, - [8336] = 8217, - [8337] = 8337, - [8338] = 8338, - [8339] = 8339, - [8340] = 8172, - [8341] = 8197, - [8342] = 8248, - [8343] = 8202, - [8344] = 8316, - [8345] = 8248, - [8346] = 8346, - [8347] = 8347, - [8348] = 8268, - [8349] = 8173, - [8350] = 8270, - [8351] = 8231, - [8352] = 8204, - [8353] = 8257, - [8354] = 8275, - [8355] = 8347, - [8356] = 8347, - [8357] = 8184, - [8358] = 8214, - [8359] = 8259, + [8328] = 4087, + [8329] = 3738, + [8330] = 3790, + [8331] = 3744, + [8332] = 3740, + [8333] = 3738, + [8334] = 8323, + [8335] = 3790, + [8336] = 8323, + [8337] = 3744, + [8338] = 3740, + [8339] = 8323, + [8340] = 8323, + [8341] = 2486, + [8342] = 8323, + [8343] = 8343, + [8344] = 8344, + [8345] = 8327, + [8346] = 8323, + [8347] = 8323, + [8348] = 8323, + [8349] = 2439, + [8350] = 4083, + [8351] = 4092, + [8352] = 2476, + [8353] = 8323, + [8354] = 4085, + [8355] = 8323, + [8356] = 8323, + [8357] = 8323, + [8358] = 4090, + [8359] = 4089, [8360] = 8360, - [8361] = 8243, - [8362] = 8181, - [8363] = 8199, - [8364] = 8347, - [8365] = 8247, - [8366] = 8366, - [8367] = 8367, - [8368] = 8215, - [8369] = 8301, - [8370] = 8295, - [8371] = 8296, - [8372] = 8319, - [8373] = 8373, - [8374] = 8374, - [8375] = 8327, - [8376] = 8185, - [8377] = 8377, - [8378] = 8187, - [8379] = 8268, - [8380] = 8380, - [8381] = 8310, - [8382] = 8382, - [8383] = 8176, - [8384] = 8227, + [8361] = 8323, + [8362] = 1855, + [8363] = 4086, + [8364] = 8364, + [8365] = 8323, + [8366] = 3648, + [8367] = 8323, + [8368] = 8323, + [8369] = 8323, + [8370] = 8370, + [8371] = 8371, + [8372] = 8323, + [8373] = 8323, + [8374] = 3796, + [8375] = 8323, + [8376] = 8323, + [8377] = 4084, + [8378] = 3560, + [8379] = 8323, + [8380] = 8323, + [8381] = 8323, + [8382] = 8323, + [8383] = 3115, + [8384] = 8384, [8385] = 8385, [8386] = 8386, - [8387] = 8272, - [8388] = 8248, - [8389] = 8172, - [8390] = 8233, - [8391] = 8202, - [8392] = 8203, - [8393] = 8189, - [8394] = 8276, + [8387] = 3494, + [8388] = 8388, + [8389] = 3510, + [8390] = 3744, + [8391] = 3497, + [8392] = 2959, + [8393] = 3515, + [8394] = 8394, [8395] = 8395, - [8396] = 8396, - [8397] = 8170, - [8398] = 8398, - [8399] = 8399, - [8400] = 8233, - [8401] = 8401, - [8402] = 8402, + [8396] = 3560, + [8397] = 3528, + [8398] = 2867, + [8399] = 3740, + [8400] = 3059, + [8401] = 3098, + [8402] = 3068, [8403] = 8403, [8404] = 8404, - [8405] = 8169, + [8405] = 3492, [8406] = 8406, - [8407] = 8185, - [8408] = 8408, - [8409] = 8210, - [8410] = 8187, - [8411] = 8268, + [8407] = 8407, + [8408] = 3541, + [8409] = 2872, + [8410] = 3543, + [8411] = 8404, [8412] = 8412, - [8413] = 8270, - [8414] = 8202, - [8415] = 8189, - [8416] = 8278, - [8417] = 8275, - [8418] = 8253, - [8419] = 8419, - [8420] = 8420, - [8421] = 8421, - [8422] = 8422, - [8423] = 8199, - [8424] = 8424, - [8425] = 8275, - [8426] = 8426, - [8427] = 8427, - [8428] = 8247, - [8429] = 8420, - [8430] = 8430, - [8431] = 8431, - [8432] = 8243, - [8433] = 8295, - [8434] = 8296, - [8435] = 8422, - [8436] = 8422, - [8437] = 8278, - [8438] = 8438, - [8439] = 8439, - [8440] = 8301, - [8441] = 8319, - [8442] = 8327, - [8443] = 8443, - [8444] = 8444, - [8445] = 8313, - [8446] = 8176, - [8447] = 8447, - [8448] = 8313, - [8449] = 8449, - [8450] = 8185, - [8451] = 8451, - [8452] = 8172, - [8453] = 8233, - [8454] = 8202, - [8455] = 8346, - [8456] = 8456, - [8457] = 8203, - [8458] = 8458, - [8459] = 8253, + [8413] = 3121, + [8414] = 8406, + [8415] = 8415, + [8416] = 8416, + [8417] = 3578, + [8418] = 3580, + [8419] = 8406, + [8420] = 8404, + [8421] = 3581, + [8422] = 3738, + [8423] = 2864, + [8424] = 3590, + [8425] = 8425, + [8426] = 8404, + [8427] = 3741, + [8428] = 8404, + [8429] = 3776, + [8430] = 3742, + [8431] = 3573, + [8432] = 3749, + [8433] = 3757, + [8434] = 3782, + [8435] = 8404, + [8436] = 3789, + [8437] = 3790, + [8438] = 2911, + [8439] = 8406, + [8440] = 3744, + [8441] = 2959, + [8442] = 8404, + [8443] = 2867, + [8444] = 3740, + [8445] = 8406, + [8446] = 3511, + [8447] = 2872, + [8448] = 3521, + [8449] = 3522, + [8450] = 3525, + [8451] = 3526, + [8452] = 3738, + [8453] = 8406, + [8454] = 3790, + [8455] = 3513, + [8456] = 2911, + [8457] = 3516, + [8458] = 2864, + [8459] = 8459, [8460] = 8460, - [8461] = 8316, - [8462] = 8185, - [8463] = 8257, - [8464] = 8170, - [8465] = 8187, - [8466] = 8213, - [8467] = 8184, - [8468] = 8257, - [8469] = 8272, + [8461] = 8461, + [8462] = 3535, + [8463] = 8463, + [8464] = 3097, + [8465] = 3109, + [8466] = 3523, + [8467] = 8467, + [8468] = 3126, + [8469] = 8469, [8470] = 8470, - [8471] = 8249, - [8472] = 8270, - [8473] = 8473, - [8474] = 8259, - [8475] = 8475, - [8476] = 8275, - [8477] = 8346, - [8478] = 8478, - [8479] = 8337, + [8471] = 8471, + [8472] = 8472, + [8473] = 3093, + [8474] = 3116, + [8475] = 3117, + [8476] = 3565, + [8477] = 8406, + [8478] = 3790, + [8479] = 3740, [8480] = 8480, [8481] = 8481, [8482] = 8482, - [8483] = 8276, - [8484] = 8451, - [8485] = 8412, - [8486] = 8486, - [8487] = 8487, - [8488] = 8339, - [8489] = 8295, - [8490] = 8296, - [8491] = 8491, - [8492] = 8492, - [8493] = 8493, - [8494] = 8494, - [8495] = 8233, - [8496] = 8496, - [8497] = 8497, - [8498] = 8316, - [8499] = 8499, - [8500] = 8202, - [8501] = 8501, - [8502] = 8502, - [8503] = 8178, - [8504] = 8270, - [8505] = 8339, - [8506] = 8275, - [8507] = 8507, - [8508] = 8179, - [8509] = 8296, - [8510] = 8510, - [8511] = 8272, - [8512] = 8233, - [8513] = 8181, - [8514] = 8203, - [8515] = 8189, - [8516] = 8278, + [8483] = 3738, + [8484] = 3790, + [8485] = 3744, + [8486] = 3740, + [8487] = 3790, + [8488] = 8488, + [8489] = 3738, + [8490] = 3790, + [8491] = 3744, + [8492] = 3740, + [8493] = 8481, + [8494] = 8481, + [8495] = 3738, + [8496] = 8482, + [8497] = 3560, + [8498] = 3744, + [8499] = 8481, + [8500] = 8482, + [8501] = 3738, + [8502] = 3790, + [8503] = 3744, + [8504] = 8481, + [8505] = 3740, + [8506] = 8482, + [8507] = 8481, + [8508] = 8481, + [8509] = 8482, + [8510] = 8213, + [8511] = 8482, + [8512] = 8512, + [8513] = 8482, + [8514] = 8481, + [8515] = 8482, + [8516] = 3740, [8517] = 8517, [8518] = 8518, - [8519] = 8202, - [8520] = 8412, - [8521] = 8270, - [8522] = 8275, - [8523] = 8185, - [8524] = 8296, - [8525] = 8203, + [8519] = 8519, + [8520] = 8520, + [8521] = 8521, + [8522] = 8482, + [8523] = 8517, + [8524] = 8524, + [8525] = 8517, [8526] = 8526, - [8527] = 8233, - [8528] = 8528, - [8529] = 8177, - [8530] = 8174, - [8531] = 8200, - [8532] = 8424, - [8533] = 8270, - [8534] = 8275, - [8535] = 8296, - [8536] = 8199, - [8537] = 8170, - [8538] = 8275, - [8539] = 8296, - [8540] = 8202, + [8527] = 8517, + [8528] = 8517, + [8529] = 8517, + [8530] = 8517, + [8531] = 8531, + [8532] = 8532, + [8533] = 3166, + [8534] = 3738, + [8535] = 8166, + [8536] = 3744, + [8537] = 8537, + [8538] = 3740, + [8539] = 8539, + [8540] = 8540, [8541] = 8541, - [8542] = 8275, - [8543] = 8296, - [8544] = 8275, - [8545] = 8296, - [8546] = 8275, - [8547] = 8296, - [8548] = 8275, - [8549] = 8296, - [8550] = 8275, - [8551] = 8296, - [8552] = 8275, - [8553] = 8296, - [8554] = 8554, - [8555] = 8276, - [8556] = 8316, - [8557] = 8557, - [8558] = 8541, - [8559] = 8265, - [8560] = 8560, - [8561] = 8561, - [8562] = 8347, - [8563] = 8541, - [8564] = 8564, - [8565] = 1771, - [8566] = 8330, - [8567] = 8567, - [8568] = 8568, - [8569] = 8569, - [8570] = 8253, - [8571] = 8571, - [8572] = 8572, - [8573] = 8573, - [8574] = 8574, - [8575] = 8575, - [8576] = 8576, - [8577] = 8577, - [8578] = 8578, - [8579] = 8206, - [8580] = 8580, - [8581] = 8197, - [8582] = 8305, - [8583] = 8283, - [8584] = 8285, - [8585] = 8451, - [8586] = 8171, + [8542] = 3738, + [8543] = 3790, + [8544] = 3744, + [8545] = 8481, + [8546] = 8546, + [8547] = 4092, + [8548] = 8548, + [8549] = 8549, + [8550] = 3740, + [8551] = 3662, + [8552] = 8552, + [8553] = 2959, + [8554] = 8548, + [8555] = 2872, + [8556] = 8556, + [8557] = 8548, + [8558] = 8556, + [8559] = 8552, + [8560] = 8546, + [8561] = 3738, + [8562] = 2864, + [8563] = 8546, + [8564] = 8549, + [8565] = 8556, + [8566] = 8552, + [8567] = 3790, + [8568] = 2911, + [8569] = 3744, + [8570] = 2959, + [8571] = 8549, + [8572] = 8552, + [8573] = 2867, + [8574] = 3740, + [8575] = 2872, + [8576] = 8549, + [8577] = 8556, + [8578] = 8548, + [8579] = 8549, + [8580] = 8556, + [8581] = 8581, + [8582] = 3511, + [8583] = 4083, + [8584] = 8549, + [8585] = 8548, + [8586] = 3790, [8587] = 8587, - [8588] = 8172, - [8589] = 8589, - [8590] = 8557, - [8591] = 8473, - [8592] = 8431, - [8593] = 8243, - [8594] = 8183, - [8595] = 8231, - [8596] = 8174, - [8597] = 8597, - [8598] = 5934, - [8599] = 8346, - [8600] = 8301, - [8601] = 8178, - [8602] = 8602, - [8603] = 8272, - [8604] = 8176, - [8605] = 8605, - [8606] = 8217, - [8607] = 8193, - [8608] = 8189, - [8609] = 8528, - [8610] = 8319, + [8588] = 8549, + [8589] = 2780, + [8590] = 8549, + [8591] = 4085, + [8592] = 8548, + [8593] = 8549, + [8594] = 8556, + [8595] = 8546, + [8596] = 2911, + [8597] = 3494, + [8598] = 8587, + [8599] = 8548, + [8600] = 8552, + [8601] = 2701, + [8602] = 8546, + [8603] = 3511, + [8604] = 8549, + [8605] = 8549, + [8606] = 8549, + [8607] = 8587, + [8608] = 3738, + [8609] = 8556, + [8610] = 8587, [8611] = 8611, - [8612] = 8295, - [8613] = 8313, - [8614] = 8327, - [8615] = 8487, - [8616] = 8307, - [8617] = 8617, - [8618] = 8210, - [8619] = 8619, - [8620] = 8491, - [8621] = 8276, - [8622] = 8622, - [8623] = 8196, - [8624] = 8478, - [8625] = 8625, - [8626] = 8626, - [8627] = 8412, - [8628] = 8628, - [8629] = 8510, - [8630] = 8630, - [8631] = 8478, - [8632] = 8567, - [8633] = 8313, - [8634] = 8634, - [8635] = 8635, - [8636] = 8181, - [8637] = 8637, - [8638] = 8189, - [8639] = 8639, - [8640] = 8572, + [8612] = 8549, + [8613] = 4087, + [8614] = 8549, + [8615] = 2864, + [8616] = 4090, + [8617] = 8549, + [8618] = 3494, + [8619] = 2788, + [8620] = 4086, + [8621] = 8549, + [8622] = 8546, + [8623] = 4089, + [8624] = 8549, + [8625] = 8587, + [8626] = 8549, + [8627] = 8587, + [8628] = 8552, + [8629] = 8587, + [8630] = 4084, + [8631] = 8549, + [8632] = 3744, + [8633] = 8611, + [8634] = 8549, + [8635] = 2867, + [8636] = 8549, + [8637] = 2742, + [8638] = 8549, + [8639] = 8549, + [8640] = 8552, [8641] = 8641, - [8642] = 8642, - [8643] = 8278, - [8644] = 8171, - [8645] = 8200, - [8646] = 8491, + [8642] = 8641, + [8643] = 8643, + [8644] = 8407, + [8645] = 8645, + [8646] = 8415, [8647] = 8647, - [8648] = 8172, - [8649] = 8564, - [8650] = 8181, - [8651] = 8248, - [8652] = 8652, - [8653] = 8653, - [8654] = 8253, - [8655] = 8257, - [8656] = 8184, - [8657] = 8259, - [8658] = 8199, - [8659] = 8659, - [8660] = 8567, - [8661] = 8630, - [8662] = 8662, - [8663] = 8663, - [8664] = 8206, + [8648] = 2012, + [8649] = 8649, + [8650] = 8645, + [8651] = 4084, + [8652] = 8407, + [8653] = 8641, + [8654] = 8654, + [8655] = 8654, + [8656] = 4085, + [8657] = 8649, + [8658] = 8658, + [8659] = 8649, + [8660] = 8645, + [8661] = 8661, + [8662] = 8641, + [8663] = 8641, + [8664] = 5698, [8665] = 8665, - [8666] = 8662, - [8667] = 8667, - [8668] = 8668, - [8669] = 8227, - [8670] = 8302, - [8671] = 8671, - [8672] = 8672, - [8673] = 8173, - [8674] = 8321, - [8675] = 8203, - [8676] = 8253, - [8677] = 8185, - [8678] = 8253, - [8679] = 8179, - [8680] = 8296, - [8681] = 8187, - [8682] = 8181, - [8683] = 8683, - [8684] = 8313, - [8685] = 8316, - [8686] = 8346, - [8687] = 8233, - [8688] = 8184, - [8689] = 8262, - [8690] = 8690, - [8691] = 8691, - [8692] = 8692, - [8693] = 8693, - [8694] = 8267, - [8695] = 8268, - [8696] = 8189, - [8697] = 8697, - [8698] = 8698, - [8699] = 1769, - [8700] = 8700, - [8701] = 8270, - [8702] = 8243, - [8703] = 8253, - [8704] = 8267, - [8705] = 8202, - [8706] = 8347, - [8707] = 8707, - [8708] = 8179, - [8709] = 8709, - [8710] = 8710, - [8711] = 8711, - [8712] = 8213, + [8666] = 8654, + [8667] = 4083, + [8668] = 1974, + [8669] = 8649, + [8670] = 8649, + [8671] = 8641, + [8672] = 8654, + [8673] = 4087, + [8674] = 8654, + [8675] = 4089, + [8676] = 8641, + [8677] = 8649, + [8678] = 4090, + [8679] = 4092, + [8680] = 8641, + [8681] = 8641, + [8682] = 8647, + [8683] = 8641, + [8684] = 8388, + [8685] = 8213, + [8686] = 8384, + [8687] = 8649, + [8688] = 8654, + [8689] = 8388, + [8690] = 8654, + [8691] = 4086, + [8692] = 8649, + [8693] = 8641, + [8694] = 8415, + [8695] = 8649, + [8696] = 8649, + [8697] = 8166, + [8698] = 8654, + [8699] = 8654, + [8700] = 8649, + [8701] = 8467, + [8702] = 8384, + [8703] = 8703, + [8704] = 8654, + [8705] = 8467, + [8706] = 8647, + [8707] = 8645, + [8708] = 8647, + [8709] = 4084, + [8710] = 4089, + [8711] = 4092, + [8712] = 4083, [8713] = 8713, - [8714] = 8275, + [8714] = 8714, [8715] = 8715, - [8716] = 8217, - [8717] = 8170, - [8718] = 8231, - [8719] = 8625, - [8720] = 8253, - [8721] = 8337, - [8722] = 8185, - [8723] = 8202, - [8724] = 8206, - [8725] = 8189, - [8726] = 8187, - [8727] = 8272, + [8716] = 8716, + [8717] = 3744, + [8718] = 1966, + [8719] = 3738, + [8720] = 8720, + [8721] = 8721, + [8722] = 3698, + [8723] = 8723, + [8724] = 3662, + [8725] = 3740, + [8726] = 8726, + [8727] = 4087, [8728] = 8728, - [8729] = 8301, + [8729] = 4086, [8730] = 8730, - [8731] = 8174, - [8732] = 8319, - [8733] = 8327, - [8734] = 8541, - [8735] = 8257, + [8731] = 4085, + [8732] = 4090, + [8733] = 8733, + [8734] = 3790, + [8735] = 8735, [8736] = 8736, - [8737] = 8313, + [8737] = 8737, [8738] = 8738, - [8739] = 8202, - [8740] = 8206, - [8741] = 8170, + [8739] = 8736, + [8740] = 4084, + [8741] = 4085, [8742] = 8742, - [8743] = 8172, - [8744] = 8744, - [8745] = 8257, - [8746] = 8746, - [8747] = 8200, - [8748] = 8259, - [8749] = 8557, - [8750] = 8560, - [8751] = 8561, - [8752] = 8564, - [8753] = 8313, - [8754] = 8330, + [8743] = 8736, + [8744] = 8738, + [8745] = 8745, + [8746] = 4087, + [8747] = 8747, + [8748] = 8748, + [8749] = 4089, + [8750] = 4086, + [8751] = 8738, + [8752] = 8736, + [8753] = 4090, + [8754] = 4092, [8755] = 8755, - [8756] = 8253, + [8756] = 8756, [8757] = 8757, - [8758] = 8758, - [8759] = 8493, - [8760] = 8305, - [8761] = 8276, - [8762] = 8285, - [8763] = 8560, - [8764] = 8587, - [8765] = 8765, - [8766] = 8189, - [8767] = 8169, - [8768] = 8431, - [8769] = 8231, - [8770] = 8412, - [8771] = 8233, - [8772] = 8510, - [8773] = 8189, - [8774] = 8528, - [8775] = 8347, - [8776] = 8249, - [8777] = 8625, - [8778] = 8630, - [8779] = 8567, - [8780] = 8780, - [8781] = 8557, - [8782] = 8560, - [8783] = 8564, - [8784] = 8784, - [8785] = 8330, - [8786] = 8199, - [8787] = 8260, - [8788] = 8305, - [8789] = 8789, - [8790] = 8285, - [8791] = 8346, - [8792] = 8587, - [8793] = 8170, - [8794] = 8169, - [8795] = 8431, - [8796] = 8313, - [8797] = 8528, - [8798] = 8451, - [8799] = 8799, - [8800] = 8625, - [8801] = 8630, - [8802] = 8611, - [8803] = 8557, - [8804] = 8560, - [8805] = 8564, - [8806] = 8276, - [8807] = 8330, - [8808] = 8339, - [8809] = 8184, - [8810] = 8305, - [8811] = 8285, - [8812] = 8491, - [8813] = 8587, - [8814] = 8814, - [8815] = 8169, - [8816] = 8431, - [8817] = 8259, - [8818] = 8528, - [8819] = 8572, - [8820] = 8491, - [8821] = 8625, - [8822] = 8630, - [8823] = 8823, - [8824] = 8557, - [8825] = 8560, - [8826] = 8564, - [8827] = 8386, - [8828] = 8330, + [8758] = 8736, + [8759] = 8759, + [8760] = 8745, + [8761] = 8761, + [8762] = 8762, + [8763] = 8763, + [8764] = 8764, + [8765] = 1866, + [8766] = 4087, + [8767] = 4089, + [8768] = 4090, + [8769] = 4092, + [8770] = 8736, + [8771] = 8736, + [8772] = 1857, + [8773] = 1858, + [8774] = 8736, + [8775] = 1859, + [8776] = 4083, + [8777] = 8738, + [8778] = 8778, + [8779] = 8779, + [8780] = 8736, + [8781] = 8781, + [8782] = 4084, + [8783] = 8745, + [8784] = 4085, + [8785] = 4086, + [8786] = 8736, + [8787] = 1860, + [8788] = 1861, + [8789] = 1862, + [8790] = 8790, + [8791] = 4087, + [8792] = 4089, + [8793] = 8736, + [8794] = 8794, + [8795] = 2022, + [8796] = 4090, + [8797] = 4092, + [8798] = 8736, + [8799] = 4083, + [8800] = 8800, + [8801] = 8745, + [8802] = 8738, + [8803] = 8745, + [8804] = 4084, + [8805] = 4085, + [8806] = 8745, + [8807] = 8738, + [8808] = 8736, + [8809] = 8736, + [8810] = 8810, + [8811] = 8811, + [8812] = 8812, + [8813] = 4086, + [8814] = 8738, + [8815] = 8815, + [8816] = 4083, + [8817] = 8736, + [8818] = 8736, + [8819] = 8745, + [8820] = 4087, + [8821] = 2132, + [8822] = 8822, + [8823] = 2911, + [8824] = 2072, + [8825] = 2872, + [8826] = 2122, + [8827] = 2125, + [8828] = 2075, [8829] = 8829, - [8830] = 8830, - [8831] = 8285, - [8832] = 8301, - [8833] = 8587, - [8834] = 8319, - [8835] = 8169, - [8836] = 8431, - [8837] = 8374, - [8838] = 8528, - [8839] = 8301, - [8840] = 8327, - [8841] = 8625, - [8842] = 8630, - [8843] = 8843, - [8844] = 8557, - [8845] = 8560, - [8846] = 8473, - [8847] = 8330, - [8848] = 8313, - [8849] = 8849, - [8850] = 8215, - [8851] = 8587, - [8852] = 8319, - [8853] = 8169, - [8854] = 8431, - [8855] = 8327, - [8856] = 8213, - [8857] = 8580, - [8858] = 8625, - [8859] = 8181, - [8860] = 8557, - [8861] = 8560, - [8862] = 8330, - [8863] = 8662, - [8864] = 8587, - [8865] = 8431, - [8866] = 8493, - [8867] = 8867, - [8868] = 8625, - [8869] = 8346, - [8870] = 8557, - [8871] = 8560, - [8872] = 8330, - [8873] = 8316, - [8874] = 8587, - [8875] = 8431, - [8876] = 8639, - [8877] = 8625, - [8878] = 8557, - [8879] = 8560, - [8880] = 8330, - [8881] = 8587, - [8882] = 8431, - [8883] = 8625, - [8884] = 8560, - [8885] = 8431, - [8886] = 8625, - [8887] = 8560, - [8888] = 8431, - [8889] = 8625, - [8890] = 8431, - [8891] = 8625, - [8892] = 8431, - [8893] = 8625, - [8894] = 8431, - [8895] = 8625, - [8896] = 8431, - [8897] = 8625, - [8898] = 8431, - [8899] = 8625, + [8830] = 2083, + [8831] = 4087, + [8832] = 4090, + [8833] = 4092, + [8834] = 8834, + [8835] = 2959, + [8836] = 2867, + [8837] = 4090, + [8838] = 4092, + [8839] = 4089, + [8840] = 2128, + [8841] = 2130, + [8842] = 8842, + [8843] = 2087, + [8844] = 8844, + [8845] = 2088, + [8846] = 8829, + [8847] = 8847, + [8848] = 2123, + [8849] = 2124, + [8850] = 4083, + [8851] = 4084, + [8852] = 4085, + [8853] = 4086, + [8854] = 2864, + [8855] = 4089, + [8856] = 8856, + [8857] = 8857, + [8858] = 8858, + [8859] = 4083, + [8860] = 8857, + [8861] = 4085, + [8862] = 8862, + [8863] = 2184, + [8864] = 8862, + [8865] = 8858, + [8866] = 8858, + [8867] = 2213, + [8868] = 4092, + [8869] = 8857, + [8870] = 8862, + [8871] = 4086, + [8872] = 8862, + [8873] = 8873, + [8874] = 8857, + [8875] = 4087, + [8876] = 4089, + [8877] = 4090, + [8878] = 8858, + [8879] = 4084, + [8880] = 8880, + [8881] = 4089, + [8882] = 8882, + [8883] = 8883, + [8884] = 8884, + [8885] = 8885, + [8886] = 8882, + [8887] = 8887, + [8888] = 8880, + [8889] = 4092, + [8890] = 8880, + [8891] = 4090, + [8892] = 8892, + [8893] = 8893, + [8894] = 8894, + [8895] = 8895, + [8896] = 8880, + [8897] = 4087, + [8898] = 8880, + [8899] = 8880, [8900] = 8900, - [8901] = 8321, - [8902] = 8561, - [8903] = 8502, - [8904] = 8576, - [8905] = 8172, - [8906] = 8179, - [8907] = 8907, - [8908] = 8374, - [8909] = 8248, - [8910] = 8262, - [8911] = 8267, - [8912] = 8199, - [8913] = 8424, + [8901] = 8901, + [8902] = 8902, + [8903] = 4089, + [8904] = 8892, + [8905] = 8905, + [8906] = 8880, + [8907] = 4087, + [8908] = 8908, + [8909] = 8512, + [8910] = 8532, + [8911] = 4087, + [8912] = 8912, + [8913] = 8913, [8914] = 8914, - [8915] = 8915, - [8916] = 8916, - [8917] = 8272, - [8918] = 8268, - [8919] = 8284, - [8920] = 8193, - [8921] = 8421, - [8922] = 8270, - [8923] = 8541, - [8924] = 8253, - [8925] = 8925, - [8926] = 8272, - [8927] = 8247, - [8928] = 8181, - [8929] = 8170, - [8930] = 8215, - [8931] = 8257, - [8932] = 8276, - [8933] = 8275, - [8934] = 8412, - [8935] = 5896, - [8936] = 8205, - [8937] = 8185, - [8938] = 8337, - [8939] = 8276, - [8940] = 8940, - [8941] = 8412, - [8942] = 8942, - [8943] = 8178, - [8944] = 8262, - [8945] = 8197, - [8946] = 8253, - [8947] = 8179, - [8948] = 8183, - [8949] = 8181, - [8950] = 8337, - [8951] = 8951, - [8952] = 8572, - [8953] = 8313, - [8954] = 8456, - [8955] = 8231, - [8956] = 8295, - [8957] = 8313, - [8958] = 8296, - [8959] = 8200, - [8960] = 8611, + [8915] = 4089, + [8916] = 8892, + [8917] = 8917, + [8918] = 8918, + [8919] = 8880, + [8920] = 8882, + [8921] = 1918, + [8922] = 8917, + [8923] = 4090, + [8924] = 8924, + [8925] = 8913, + [8926] = 4092, + [8927] = 8927, + [8928] = 8928, + [8929] = 8880, + [8930] = 8930, + [8931] = 4092, + [8932] = 8531, + [8933] = 8917, + [8934] = 8913, + [8935] = 8894, + [8936] = 8936, + [8937] = 8539, + [8938] = 8526, + [8939] = 8939, + [8940] = 8917, + [8941] = 8913, + [8942] = 4090, + [8943] = 8917, + [8944] = 8894, + [8945] = 8945, + [8946] = 8946, + [8947] = 8880, + [8948] = 8917, + [8949] = 8880, + [8950] = 8882, + [8951] = 8894, + [8952] = 8917, + [8953] = 8892, + [8954] = 8954, + [8955] = 8955, + [8956] = 2156, + [8957] = 8957, + [8958] = 8955, + [8959] = 8959, + [8960] = 8960, [8961] = 8961, [8962] = 8962, [8963] = 8963, - [8964] = 8185, - [8965] = 8965, - [8966] = 8253, - [8967] = 8572, - [8968] = 8580, - [8969] = 8567, - [8970] = 8970, - [8971] = 8316, - [8972] = 8267, - [8973] = 8541, - [8974] = 8587, - [8975] = 8491, - [8976] = 8976, - [8977] = 8276, - [8978] = 8200, + [8964] = 4087, + [8965] = 8959, + [8966] = 8966, + [8967] = 4089, + [8968] = 4090, + [8969] = 8959, + [8970] = 4092, + [8971] = 8971, + [8972] = 8963, + [8973] = 8959, + [8974] = 8960, + [8975] = 8960, + [8976] = 8963, + [8977] = 8977, + [8978] = 8978, [8979] = 8979, - [8980] = 8283, - [8981] = 8225, - [8982] = 8982, - [8983] = 8313, + [8980] = 8963, + [8981] = 8978, + [8982] = 8963, + [8983] = 8959, [8984] = 8984, [8985] = 8985, - [8986] = 8561, - [8987] = 8502, - [8988] = 8576, - [8989] = 8989, - [8990] = 8990, - [8991] = 8991, - [8992] = 5851, - [8993] = 8193, - [8994] = 8421, - [8995] = 5833, - [8996] = 8260, - [8997] = 8561, - [8998] = 8257, - [8999] = 8561, - [9000] = 8502, - [9001] = 8576, - [9002] = 8184, - [9003] = 8181, - [9004] = 8193, - [9005] = 8421, - [9006] = 8284, - [9007] = 8171, - [9008] = 8172, - [9009] = 8502, - [9010] = 8576, - [9011] = 8316, - [9012] = 8174, - [9013] = 8193, - [9014] = 8421, - [9015] = 8302, - [9016] = 8178, - [9017] = 8502, - [9018] = 8576, - [9019] = 8259, - [9020] = 8179, - [9021] = 8193, - [9022] = 8421, - [9023] = 8189, - [9024] = 8502, - [9025] = 8576, - [9026] = 8247, - [9027] = 8193, - [9028] = 8421, - [9029] = 8541, - [9030] = 8193, - [9031] = 8421, - [9032] = 9032, - [9033] = 8421, - [9034] = 8567, - [9035] = 8421, - [9036] = 8278, - [9037] = 8421, - [9038] = 8202, - [9039] = 8421, - [9040] = 8204, - [9041] = 8421, - [9042] = 8302, - [9043] = 8421, - [9044] = 8181, - [9045] = 8421, - [9046] = 9046, - [9047] = 8421, - [9048] = 8295, - [9049] = 8421, - [9050] = 8683, - [9051] = 8338, - [9052] = 8296, - [9053] = 8683, - [9054] = 8338, + [8986] = 8986, + [8987] = 4084, + [8988] = 8955, + [8989] = 8955, + [8990] = 8966, + [8991] = 8954, + [8992] = 8963, + [8993] = 8979, + [8994] = 2001, + [8995] = 8963, + [8996] = 2009, + [8997] = 8963, + [8998] = 8998, + [8999] = 8963, + [9000] = 8961, + [9001] = 8978, + [9002] = 8978, + [9003] = 8955, + [9004] = 8966, + [9005] = 8962, + [9006] = 8954, + [9007] = 8979, + [9008] = 8954, + [9009] = 8979, + [9010] = 8954, + [9011] = 8979, + [9012] = 8954, + [9013] = 8979, + [9014] = 8966, + [9015] = 8979, + [9016] = 8954, + [9017] = 8979, + [9018] = 8954, + [9019] = 8979, + [9020] = 8959, + [9021] = 4083, + [9022] = 8959, + [9023] = 9023, + [9024] = 8978, + [9025] = 9025, + [9026] = 8960, + [9027] = 4086, + [9028] = 8962, + [9029] = 9029, + [9030] = 9030, + [9031] = 4085, + [9032] = 8954, + [9033] = 8962, + [9034] = 9034, + [9035] = 9035, + [9036] = 9036, + [9037] = 9037, + [9038] = 9037, + [9039] = 9037, + [9040] = 9037, + [9041] = 9037, + [9042] = 9042, + [9043] = 9043, + [9044] = 9044, + [9045] = 9045, + [9046] = 9042, + [9047] = 9047, + [9048] = 9042, + [9049] = 9049, + [9050] = 9049, + [9051] = 9051, + [9052] = 9052, + [9053] = 9037, + [9054] = 9037, [9055] = 9055, - [9056] = 8683, - [9057] = 8338, - [9058] = 9058, - [9059] = 8683, - [9060] = 8338, - [9061] = 8205, - [9062] = 8683, - [9063] = 8338, - [9064] = 8181, - [9065] = 8338, - [9066] = 8338, - [9067] = 8338, - [9068] = 8338, - [9069] = 8338, - [9070] = 8338, - [9071] = 8338, - [9072] = 8338, - [9073] = 8338, - [9074] = 8338, - [9075] = 8338, - [9076] = 8210, - [9077] = 8214, - [9078] = 8262, - [9079] = 8386, - [9080] = 8171, - [9081] = 8182, - [9082] = 8182, - [9083] = 8182, - [9084] = 8182, - [9085] = 8182, - [9086] = 8420, + [9056] = 9037, + [9057] = 4083, + [9058] = 9037, + [9059] = 4086, + [9060] = 9049, + [9061] = 8658, + [9062] = 1963, + [9063] = 8661, + [9064] = 9049, + [9065] = 9065, + [9066] = 9066, + [9067] = 9067, + [9068] = 9037, + [9069] = 9037, + [9070] = 9070, + [9071] = 9071, + [9072] = 9072, + [9073] = 9073, + [9074] = 9074, + [9075] = 4090, + [9076] = 9049, + [9077] = 9077, + [9078] = 9078, + [9079] = 9037, + [9080] = 9080, + [9081] = 9081, + [9082] = 9078, + [9083] = 9065, + [9084] = 9080, + [9085] = 9037, + [9086] = 9086, + [9087] = 9066, + [9088] = 9088, + [9089] = 9086, + [9090] = 9090, + [9091] = 9091, + [9092] = 9037, + [9093] = 9071, + [9094] = 9042, + [9095] = 9090, + [9096] = 9096, + [9097] = 9037, + [9098] = 9037, + [9099] = 9037, + [9100] = 9043, + [9101] = 4087, + [9102] = 9037, + [9103] = 9103, + [9104] = 9104, + [9105] = 9042, + [9106] = 9071, + [9107] = 9090, + [9108] = 9037, + [9109] = 9078, + [9110] = 9049, + [9111] = 9037, + [9112] = 9080, + [9113] = 9037, + [9114] = 9086, + [9115] = 9042, + [9116] = 9067, + [9117] = 9037, + [9118] = 9042, + [9119] = 9037, + [9120] = 9037, + [9121] = 9065, + [9122] = 9066, + [9123] = 9067, + [9124] = 3662, + [9125] = 9037, + [9126] = 9126, + [9127] = 9037, + [9128] = 9043, + [9129] = 3662, + [9130] = 9043, + [9131] = 4089, + [9132] = 9037, + [9133] = 9133, + [9134] = 9043, + [9135] = 9043, + [9136] = 9037, + [9137] = 4092, + [9138] = 9037, + [9139] = 4084, + [9140] = 4085, + [9141] = 9037, + [9142] = 9049, + [9143] = 9037, + [9144] = 9037, + [9145] = 9145, + [9146] = 9146, + [9147] = 9145, + [9148] = 9148, + [9149] = 9149, + [9150] = 9150, + [9151] = 9151, + [9152] = 9152, + [9153] = 9145, + [9154] = 3511, + [9155] = 9155, + [9156] = 9148, + [9157] = 9157, + [9158] = 9146, + [9159] = 9152, + [9160] = 9145, + [9161] = 9146, + [9162] = 8166, + [9163] = 9150, + [9164] = 9148, + [9165] = 3494, + [9166] = 9146, + [9167] = 9167, + [9168] = 3662, + [9169] = 9148, + [9170] = 9170, + [9171] = 9171, + [9172] = 9150, + [9173] = 9146, + [9174] = 9146, + [9175] = 9146, + [9176] = 9152, + [9177] = 9177, + [9178] = 9146, + [9179] = 9152, + [9180] = 9151, + [9181] = 9150, + [9182] = 9151, + [9183] = 9146, + [9184] = 9145, + [9185] = 3105, + [9186] = 9157, + [9187] = 9157, + [9188] = 9146, + [9189] = 9189, + [9190] = 9167, + [9191] = 9191, + [9192] = 9150, + [9193] = 9152, + [9194] = 9146, + [9195] = 9150, + [9196] = 9152, + [9197] = 9157, + [9198] = 9150, + [9199] = 9151, + [9200] = 9146, + [9201] = 9189, + [9202] = 9150, + [9203] = 9150, + [9204] = 9150, + [9205] = 9157, + [9206] = 9189, + [9207] = 9146, + [9208] = 9167, + [9209] = 9209, + [9210] = 9151, + [9211] = 9151, + [9212] = 9212, + [9213] = 2042, + [9214] = 2069, + [9215] = 9215, + [9216] = 9145, + [9217] = 2033, + [9218] = 2034, + [9219] = 9148, + [9220] = 9146, + [9221] = 9189, + [9222] = 2036, + [9223] = 9148, + [9224] = 2043, + [9225] = 2046, + [9226] = 2047, + [9227] = 2048, + [9228] = 9157, + [9229] = 9145, + [9230] = 9167, + [9231] = 2053, + [9232] = 2055, + [9233] = 9146, + [9234] = 9152, + [9235] = 9157, + [9236] = 9150, + [9237] = 9150, + [9238] = 9145, + [9239] = 9146, + [9240] = 9157, + [9241] = 9148, + [9242] = 9167, + [9243] = 9148, + [9244] = 9148, + [9245] = 9146, + [9246] = 1994, + [9247] = 9151, + [9248] = 9146, + [9249] = 9249, + [9250] = 9250, + [9251] = 9189, + [9252] = 9189, + [9253] = 9167, + [9254] = 9152, + [9255] = 9167, + [9256] = 9146, + [9257] = 9257, + [9258] = 9258, + [9259] = 9145, + [9260] = 9146, + [9261] = 9261, + [9262] = 9151, + [9263] = 9146, + [9264] = 9151, + [9265] = 9189, + [9266] = 9146, + [9267] = 9157, + [9268] = 9268, + [9269] = 9269, + [9270] = 9152, + [9271] = 9151, + [9272] = 9146, + [9273] = 3662, + [9274] = 5698, + [9275] = 9146, + [9276] = 9189, + [9277] = 9146, + [9278] = 9189, + [9279] = 9167, + [9280] = 9146, + [9281] = 9152, + [9282] = 9146, + [9283] = 9146, + [9284] = 3604, + [9285] = 9150, + [9286] = 9167, + [9287] = 2035, + [9288] = 9288, + [9289] = 9289, + [9290] = 9290, + [9291] = 9291, + [9292] = 9292, + [9293] = 9288, + [9294] = 9294, + [9295] = 9295, + [9296] = 9288, + [9297] = 9297, + [9298] = 9298, + [9299] = 9299, + [9300] = 9300, + [9301] = 9299, + [9302] = 9294, + [9303] = 9303, + [9304] = 9303, + [9305] = 9294, + [9306] = 9300, + [9307] = 9307, + [9308] = 9308, + [9309] = 9288, + [9310] = 9289, + [9311] = 9311, + [9312] = 9299, + [9313] = 9291, + [9314] = 9292, + [9315] = 9291, + [9316] = 9288, + [9317] = 9307, + [9318] = 9307, + [9319] = 9311, + [9320] = 9320, + [9321] = 9321, + [9322] = 9322, + [9323] = 9307, + [9324] = 9321, + [9325] = 9295, + [9326] = 9321, + [9327] = 9327, + [9328] = 9289, + [9329] = 9329, + [9330] = 9295, + [9331] = 9298, + [9332] = 9332, + [9333] = 9300, + [9334] = 9308, + [9335] = 9295, + [9336] = 9298, + [9337] = 9321, + [9338] = 9338, + [9339] = 9339, + [9340] = 9340, + [9341] = 9294, + [9342] = 9292, + [9343] = 9298, + [9344] = 9288, + [9345] = 9345, + [9346] = 9346, + [9347] = 9307, + [9348] = 9300, + [9349] = 9307, + [9350] = 9350, + [9351] = 9351, + [9352] = 9322, + [9353] = 9295, + [9354] = 9308, + [9355] = 9300, + [9356] = 9294, + [9357] = 9299, + [9358] = 9292, + [9359] = 9294, + [9360] = 8166, + [9361] = 9361, + [9362] = 9362, + [9363] = 9307, + [9364] = 9364, + [9365] = 9300, + [9366] = 9366, + [9367] = 9289, + [9368] = 9289, + [9369] = 9321, + [9370] = 9294, + [9371] = 9327, + [9372] = 9311, + [9373] = 9295, + [9374] = 9374, + [9375] = 9375, + [9376] = 9291, + [9377] = 9321, + [9378] = 9321, + [9379] = 9322, + [9380] = 9311, + [9381] = 9292, + [9382] = 9321, + [9383] = 9288, + [9384] = 9384, + [9385] = 9291, + [9386] = 9321, + [9387] = 9291, + [9388] = 9320, + [9389] = 9288, + [9390] = 9327, + [9391] = 9292, + [9392] = 9339, + [9393] = 9289, + [9394] = 9294, + [9395] = 9288, + [9396] = 9298, + [9397] = 9294, + [9398] = 9292, + [9399] = 9295, + [9400] = 9339, + [9401] = 9320, + [9402] = 9339, + [9403] = 9295, + [9404] = 9322, + [9405] = 9299, + [9406] = 9406, + [9407] = 9320, + [9408] = 9339, + [9409] = 9291, + [9410] = 9321, + [9411] = 9311, + [9412] = 9412, + [9413] = 9321, + [9414] = 9320, + [9415] = 9339, + [9416] = 9321, + [9417] = 9294, + [9418] = 9418, + [9419] = 9300, + [9420] = 9320, + [9421] = 9339, + [9422] = 9422, + [9423] = 9423, + [9424] = 9311, + [9425] = 9288, + [9426] = 9320, + [9427] = 9339, + [9428] = 9311, + [9429] = 9299, + [9430] = 9320, + [9431] = 9431, + [9432] = 9288, + [9433] = 9311, + [9434] = 9321, + [9435] = 9320, + [9436] = 9321, + [9437] = 9298, + [9438] = 9292, + [9439] = 9294, + [9440] = 9322, + [9441] = 9288, + [9442] = 9321, + [9443] = 9294, + [9444] = 9292, + [9445] = 9308, + [9446] = 9446, + [9447] = 9288, + [9448] = 9288, + [9449] = 9294, + [9450] = 9295, + [9451] = 9295, + [9452] = 9452, + [9453] = 9321, + [9454] = 9303, + [9455] = 9303, + [9456] = 9295, + [9457] = 9311, + [9458] = 9292, + [9459] = 9288, + [9460] = 9460, + [9461] = 9322, + [9462] = 9294, + [9463] = 9295, + [9464] = 9321, + [9465] = 9288, + [9466] = 9299, + [9467] = 9311, + [9468] = 9288, + [9469] = 9308, + [9470] = 9295, + [9471] = 9471, + [9472] = 9300, + [9473] = 9300, + [9474] = 9303, + [9475] = 9294, + [9476] = 9289, + [9477] = 9321, + [9478] = 9294, + [9479] = 9345, + [9480] = 9308, + [9481] = 9481, + [9482] = 9307, + [9483] = 9288, + [9484] = 9321, + [9485] = 3662, + [9486] = 9294, + [9487] = 9307, + [9488] = 9488, + [9489] = 9345, + [9490] = 9321, + [9491] = 9292, + [9492] = 9294, + [9493] = 9299, + [9494] = 9311, + [9495] = 9299, + [9496] = 9496, + [9497] = 9339, + [9498] = 9311, + [9499] = 9295, + [9500] = 9294, + [9501] = 9303, + [9502] = 9292, + [9503] = 9503, + [9504] = 9299, + [9505] = 9288, + [9506] = 9322, + [9507] = 9303, + [9508] = 9294, + [9509] = 9292, + [9510] = 9311, + [9511] = 9292, + [9512] = 9321, + [9513] = 9321, + [9514] = 9288, + [9515] = 9515, + [9516] = 9516, + [9517] = 9289, + [9518] = 9321, + [9519] = 9294, + [9520] = 9289, + [9521] = 9288, + [9522] = 9288, + [9523] = 9311, + [9524] = 9299, + [9525] = 9288, + [9526] = 9345, + [9527] = 9298, + [9528] = 9528, + [9529] = 9528, + [9530] = 9530, + [9531] = 9531, + [9532] = 9532, + [9533] = 9533, + [9534] = 9534, + [9535] = 9535, + [9536] = 9536, + [9537] = 9537, + [9538] = 9538, + [9539] = 9539, + [9540] = 9540, + [9541] = 9541, + [9542] = 9542, + [9543] = 9543, + [9544] = 9544, + [9545] = 9545, + [9546] = 9546, + [9547] = 9528, + [9548] = 9548, + [9549] = 9549, + [9550] = 9550, + [9551] = 8905, + [9552] = 9552, + [9553] = 9553, + [9554] = 9530, + [9555] = 9531, + [9556] = 9556, + [9557] = 9557, + [9558] = 9558, + [9559] = 9535, + [9560] = 9536, + [9561] = 9541, + [9562] = 9530, + [9563] = 9545, + [9564] = 9546, + [9565] = 9528, + [9566] = 9531, + [9567] = 9567, + [9568] = 9553, + [9569] = 9569, + [9570] = 9570, + [9571] = 9530, + [9572] = 9531, + [9573] = 9573, + [9574] = 9574, + [9575] = 9535, + [9576] = 9536, + [9577] = 9577, + [9578] = 9541, + [9579] = 9545, + [9580] = 9546, + [9581] = 9528, + [9582] = 9582, + [9583] = 9532, + [9584] = 9534, + [9585] = 9541, + [9586] = 9545, + [9587] = 9546, + [9588] = 9528, + [9589] = 9535, + [9590] = 9536, + [9591] = 9537, + [9592] = 9538, + [9593] = 9593, + [9594] = 9594, + [9595] = 9541, + [9596] = 9545, + [9597] = 9546, + [9598] = 9528, + [9599] = 9535, + [9600] = 9536, + [9601] = 9593, + [9602] = 9602, + [9603] = 9533, + [9604] = 9569, + [9605] = 9541, + [9606] = 9545, + [9607] = 9546, + [9608] = 9528, + [9609] = 9609, + [9610] = 9556, + [9611] = 9557, + [9612] = 9612, + [9613] = 9613, + [9614] = 9614, + [9615] = 9541, + [9616] = 9541, + [9617] = 9545, + [9618] = 9546, + [9619] = 9528, + [9620] = 9533, + [9621] = 9621, + [9622] = 9622, + [9623] = 9623, + [9624] = 9624, + [9625] = 9573, + [9626] = 9541, + [9627] = 9545, + [9628] = 9546, + [9629] = 9528, + [9630] = 9630, + [9631] = 9567, + [9632] = 9632, + [9633] = 9569, + [9634] = 9541, + [9635] = 9545, + [9636] = 9546, + [9637] = 9528, + [9638] = 9638, + [9639] = 9541, + [9640] = 9545, + [9641] = 9546, + [9642] = 9528, + [9643] = 9643, + [9644] = 9644, + [9645] = 9545, + [9646] = 9558, + [9647] = 3729, + [9648] = 3824, + [9649] = 9541, + [9650] = 9545, + [9651] = 9546, + [9652] = 9528, + [9653] = 9530, + [9654] = 9654, + [9655] = 9655, + [9656] = 9656, + [9657] = 9657, + [9658] = 9658, + [9659] = 9638, + [9660] = 9643, + [9661] = 9545, + [9662] = 9546, + [9663] = 9528, + [9664] = 9546, + [9665] = 9542, + [9666] = 9543, + [9667] = 9544, + [9668] = 9612, + [9669] = 9548, + [9670] = 9549, + [9671] = 9553, + [9672] = 9672, + [9673] = 9528, + [9674] = 9674, + [9675] = 9675, + [9676] = 9676, + [9677] = 9677, + [9678] = 9531, + [9679] = 9677, + [9680] = 9680, + [9681] = 9541, + [9682] = 9682, + [9683] = 9532, + [9684] = 9534, + [9685] = 9537, + [9686] = 9538, + [9687] = 9687, + [9688] = 9556, + [9689] = 3808, + [9690] = 3809, + [9691] = 9557, + [9692] = 9692, + [9693] = 9674, + [9694] = 9567, + [9695] = 9569, + [9696] = 9696, + [9697] = 3727, + [9698] = 3839, + [9699] = 9699, + [9700] = 3754, + [9701] = 3753, + [9702] = 9540, + [9703] = 3750, + [9704] = 9704, + [9705] = 9705, + [9706] = 9706, + [9707] = 9707, + [9708] = 9708, + [9709] = 3662, + [9710] = 9710, + [9711] = 9657, + [9712] = 9712, + [9713] = 9713, + [9714] = 9714, + [9715] = 9621, + [9716] = 9622, + [9717] = 9623, + [9718] = 9718, + [9719] = 9630, + [9720] = 9530, + [9721] = 9531, + [9722] = 9722, + [9723] = 9723, + [9724] = 9724, + [9725] = 9632, + [9726] = 9530, + [9727] = 9531, + [9728] = 9728, + [9729] = 9729, + [9730] = 9730, + [9731] = 9731, + [9732] = 9621, + [9733] = 9530, + [9734] = 9622, + [9735] = 9573, + [9736] = 9736, + [9737] = 9573, + [9738] = 9623, + [9739] = 9739, + [9740] = 9582, + [9741] = 9741, + [9742] = 9630, + [9743] = 9530, + [9744] = 9531, + [9745] = 9745, + [9746] = 9531, + [9747] = 9747, + [9748] = 9748, + [9749] = 9582, + [9750] = 9535, + [9751] = 9536, + [9752] = 9582, + [9753] = 9593, + [9754] = 9754, + [9755] = 9533, + [9756] = 9756, + [9757] = 9632, + [9758] = 9612, + [9759] = 9541, + [9760] = 9621, + [9761] = 9622, + [9762] = 9623, + [9763] = 9630, + [9764] = 9632, + [9765] = 9765, + [9766] = 9532, + [9767] = 9534, + [9768] = 9768, + [9769] = 9769, + [9770] = 9655, + [9771] = 9731, + [9772] = 9655, + [9773] = 9656, + [9774] = 9774, + [9775] = 9674, + [9776] = 9638, + [9777] = 9643, + [9778] = 9545, + [9779] = 9546, + [9780] = 9528, + [9781] = 9542, + [9782] = 9543, + [9783] = 9544, + [9784] = 9573, + [9785] = 9548, + [9786] = 9549, + [9787] = 9787, + [9788] = 9657, + [9789] = 9553, + [9790] = 9674, + [9791] = 9535, + [9792] = 9536, + [9793] = 9532, + [9794] = 9534, + [9795] = 9537, + [9796] = 9538, + [9797] = 9593, + [9798] = 9798, + [9799] = 9556, + [9800] = 9557, + [9801] = 9567, + [9802] = 9569, + [9803] = 9674, + [9804] = 9677, + [9805] = 9582, + [9806] = 9806, + [9807] = 9533, + [9808] = 9530, + [9809] = 9531, + [9810] = 9810, + [9811] = 9540, + [9812] = 9812, + [9813] = 9612, + [9814] = 9814, + [9815] = 9815, + [9816] = 9541, + [9817] = 9655, + [9818] = 9818, + [9819] = 9530, + [9820] = 9531, + [9821] = 9821, + [9822] = 9822, + [9823] = 9573, + [9824] = 9824, + [9825] = 9825, + [9826] = 9621, + [9827] = 9622, + [9828] = 9546, + [9829] = 9623, + [9830] = 9573, + [9831] = 9582, + [9832] = 9630, + [9833] = 9542, + [9834] = 9656, + [9835] = 9582, + [9836] = 9836, + [9837] = 9837, + [9838] = 9674, + [9839] = 9543, + [9840] = 9677, + [9841] = 9632, + [9842] = 9824, + [9843] = 9535, + [9844] = 9844, + [9845] = 9536, + [9846] = 9593, + [9847] = 9540, + [9848] = 9533, + [9849] = 9849, + [9850] = 9850, + [9851] = 9612, + [9852] = 9541, + [9853] = 9853, + [9854] = 9535, + [9855] = 9536, + [9856] = 9538, + [9857] = 9621, + [9858] = 9622, + [9859] = 9623, + [9860] = 9630, + [9861] = 9593, + [9862] = 9677, + [9863] = 9863, + [9864] = 9602, + [9865] = 9535, + [9866] = 9866, + [9867] = 9535, + [9868] = 9540, + [9869] = 9536, + [9870] = 9655, + [9871] = 9656, + [9872] = 9593, + [9873] = 9873, + [9874] = 9602, + [9875] = 9638, + [9876] = 9643, + [9877] = 9545, + [9878] = 9546, + [9879] = 9533, + [9880] = 9528, + [9881] = 9533, + [9882] = 9542, + [9883] = 9543, + [9884] = 9544, + [9885] = 9677, + [9886] = 9548, + [9887] = 9553, + [9888] = 9536, + [9889] = 9540, + [9890] = 9655, + [9891] = 9891, + [9892] = 9656, + [9893] = 9612, + [9894] = 9541, + [9895] = 9532, + [9896] = 9534, + [9897] = 9537, + [9898] = 9538, + [9899] = 9899, + [9900] = 9556, + [9901] = 9557, + [9902] = 9677, + [9903] = 9643, + [9904] = 9567, + [9905] = 9621, + [9906] = 9569, + [9907] = 9622, + [9908] = 9623, + [9909] = 9638, + [9910] = 9630, + [9911] = 9540, + [9912] = 355, + [9913] = 9638, + [9914] = 9632, + [9915] = 9643, + [9916] = 9916, + [9917] = 9545, + [9918] = 9731, + [9919] = 9612, + [9920] = 9677, + [9921] = 9544, + [9922] = 9546, + [9923] = 9528, + [9924] = 9541, + [9925] = 9643, + [9926] = 9926, + [9927] = 9656, + [9928] = 9677, + [9929] = 9542, + [9930] = 9612, + [9931] = 9530, + [9932] = 9531, + [9933] = 9543, + [9934] = 9544, + [9935] = 9545, + [9936] = 9677, + [9937] = 9548, + [9938] = 9549, + [9939] = 9593, + [9940] = 9677, + [9941] = 9553, + [9942] = 9548, + [9943] = 9677, + [9944] = 9677, + [9945] = 9677, + [9946] = 9582, + [9947] = 9546, + [9948] = 9621, + [9949] = 9949, + [9950] = 9655, + [9951] = 9824, + [9952] = 9657, + [9953] = 9656, + [9954] = 9622, + [9955] = 9623, + [9956] = 9573, + [9957] = 9630, + [9958] = 9958, + [9959] = 9535, + [9960] = 9536, + [9961] = 9593, + [9962] = 9638, + [9963] = 9643, + [9964] = 9545, + [9965] = 9546, + [9966] = 9528, + [9967] = 9612, + [9968] = 9632, + [9969] = 9542, + [9970] = 9541, + [9971] = 9543, + [9972] = 9544, + [9973] = 9542, + [9974] = 9543, + [9975] = 9544, + [9976] = 9548, + [9977] = 9549, + [9978] = 9550, + [9979] = 9621, + [9980] = 9622, + [9981] = 9553, + [9982] = 9623, + [9983] = 9630, + [9984] = 9558, + [9985] = 9548, + [9986] = 9532, + [9987] = 9534, + [9988] = 9537, + [9989] = 9731, + [9990] = 9541, + [9991] = 9538, + [9992] = 9532, + [9993] = 9534, + [9994] = 9994, + [9995] = 9995, + [9996] = 9996, + [9997] = 9537, + [9998] = 9549, + [9999] = 9655, + [10000] = 9538, + [10001] = 9638, + [10002] = 9643, + [10003] = 9545, + [10004] = 9546, + [10005] = 9528, + [10006] = 9542, + [10007] = 9543, + [10008] = 9544, + [10009] = 9548, + [10010] = 9550, + [10011] = 9553, + [10012] = 9582, + [10013] = 9556, + [10014] = 9557, + [10015] = 9532, + [10016] = 9534, + [10017] = 9537, + [10018] = 9538, + [10019] = 9556, + [10020] = 9557, + [10021] = 3844, + [10022] = 9556, + [10023] = 9557, + [10024] = 9567, + [10025] = 9567, + [10026] = 9569, + [10027] = 9553, + [10028] = 10028, + [10029] = 9567, + [10030] = 9569, + [10031] = 10031, + [10032] = 10032, + [10033] = 10033, + [10034] = 10034, + [10035] = 9530, + [10036] = 9531, + [10037] = 10037, + [10038] = 10038, + [10039] = 9602, + [10040] = 9567, + [10041] = 9655, + [10042] = 9535, + [10043] = 9536, + [10044] = 9824, + [10045] = 9541, + [10046] = 9656, + [10047] = 10047, + [10048] = 10048, + [10049] = 9549, + [10050] = 9545, + [10051] = 9546, + [10052] = 9556, + [10053] = 9528, + [10054] = 9557, + [10055] = 10055, + [10056] = 10056, + [10057] = 9545, + [10058] = 10058, + [10059] = 357, + [10060] = 10060, + [10061] = 9550, + [10062] = 9638, + [10063] = 9537, + [10064] = 10064, + [10065] = 10065, + [10066] = 10066, + [10067] = 10067, + [10068] = 10068, + [10069] = 10069, + [10070] = 10070, + [10071] = 10071, + [10072] = 10072, + [10073] = 10073, + [10074] = 10074, + [10075] = 10075, + [10076] = 10076, + [10077] = 10077, + [10078] = 10078, + [10079] = 10079, + [10080] = 10080, + [10081] = 10081, + [10082] = 10082, + [10083] = 10083, + [10084] = 10084, + [10085] = 10069, + [10086] = 10071, + [10087] = 10087, + [10088] = 10088, + [10089] = 10089, + [10090] = 10090, + [10091] = 10091, + [10092] = 10092, + [10093] = 10073, + [10094] = 10094, + [10095] = 10095, + [10096] = 10096, + [10097] = 10097, + [10098] = 10091, + [10099] = 10099, + [10100] = 10100, + [10101] = 10091, + [10102] = 10078, + [10103] = 10103, + [10104] = 10094, + [10105] = 10094, + [10106] = 10106, + [10107] = 10094, + [10108] = 10108, + [10109] = 10109, + [10110] = 10110, + [10111] = 10111, + [10112] = 10084, + [10113] = 10091, + [10114] = 10099, + [10115] = 10115, + [10116] = 10096, + [10117] = 10117, + [10118] = 10078, + [10119] = 10119, + [10120] = 10076, + [10121] = 10121, + [10122] = 10078, + [10123] = 10074, + [10124] = 10076, + [10125] = 10080, + [10126] = 10126, + [10127] = 10127, + [10128] = 10128, + [10129] = 10089, + [10130] = 10094, + [10131] = 10096, + [10132] = 10088, + [10133] = 10133, + [10134] = 10066, + [10135] = 10091, + [10136] = 10087, + [10137] = 10088, + [10138] = 10100, + [10139] = 10075, + [10140] = 10121, + [10141] = 10092, + [10142] = 10108, + [10143] = 10064, + [10144] = 10080, + [10145] = 10097, + [10146] = 10080, + [10147] = 10099, + [10148] = 10083, + [10149] = 10149, + [10150] = 10082, + [10151] = 10083, + [10152] = 10108, + [10153] = 10153, + [10154] = 10078, + [10155] = 10089, + [10156] = 10117, + [10157] = 10083, + [10158] = 10083, + [10159] = 10080, + [10160] = 10074, + [10161] = 10126, + [10162] = 10069, + [10163] = 10071, + [10164] = 10117, + [10165] = 10084, + [10166] = 10094, + [10167] = 10078, + [10168] = 10168, + [10169] = 10095, + [10170] = 10170, + [10171] = 10066, + [10172] = 10088, + [10173] = 10069, + [10174] = 10092, + [10175] = 10071, + [10176] = 10117, + [10177] = 10092, + [10178] = 10097, + [10179] = 10094, + [10180] = 10067, + [10181] = 10181, + [10182] = 10182, + [10183] = 10082, + [10184] = 10077, + [10185] = 10185, + [10186] = 10117, + [10187] = 10096, + [10188] = 10073, + [10189] = 10094, + [10190] = 10111, + [10191] = 10074, + [10192] = 10084, + [10193] = 10193, + [10194] = 10089, + [10195] = 10069, + [10196] = 10071, + [10197] = 10090, + [10198] = 10094, + [10199] = 10100, + [10200] = 10200, + [10201] = 10096, + [10202] = 10170, + [10203] = 10084, + [10204] = 10088, + [10205] = 10095, + [10206] = 10092, + [10207] = 10207, + [10208] = 10066, + [10209] = 10209, + [10210] = 10210, + [10211] = 10106, + [10212] = 10100, + [10213] = 10213, + [10214] = 10117, + [10215] = 10185, + [10216] = 10084, + [10217] = 10217, + [10218] = 10218, + [10219] = 10074, + [10220] = 10082, + [10221] = 10221, + [10222] = 10088, + [10223] = 10126, + [10224] = 10084, + [10225] = 10111, + [10226] = 10082, + [10227] = 10095, + [10228] = 10108, + [10229] = 10111, + [10230] = 10074, + [10231] = 10066, + [10232] = 10094, + [10233] = 10233, + [10234] = 10126, + [10235] = 10170, + [10236] = 10100, + [10237] = 10074, + [10238] = 10074, + [10239] = 10149, + [10240] = 10095, + [10241] = 10067, + [10242] = 10242, + [10243] = 10106, + [10244] = 10076, + [10245] = 10074, + [10246] = 10069, + [10247] = 10075, + [10248] = 10071, + [10249] = 10074, + [10250] = 10082, + [10251] = 10126, + [10252] = 10074, + [10253] = 10091, + [10254] = 10084, + [10255] = 10255, + [10256] = 10074, + [10257] = 10257, + [10258] = 10258, + [10259] = 10074, + [10260] = 10095, + [10261] = 10074, + [10262] = 10074, + [10263] = 10074, + [10264] = 10077, + [10265] = 10074, + [10266] = 10266, + [10267] = 10074, + [10268] = 10075, + [10269] = 10269, + [10270] = 10073, + [10271] = 10168, + [10272] = 10078, + [10273] = 10089, + [10274] = 10149, + [10275] = 10094, + [10276] = 10109, + [10277] = 10096, + [10278] = 10126, + [10279] = 10076, + [10280] = 10280, + [10281] = 10066, + [10282] = 10080, + [10283] = 10126, + [10284] = 10074, + [10285] = 10082, + [10286] = 10075, + [10287] = 10090, + [10288] = 10100, + [10289] = 10080, + [10290] = 10094, + [10291] = 10097, + [10292] = 10170, + [10293] = 10168, + [10294] = 10073, + [10295] = 10103, + [10296] = 10117, + [10297] = 10067, + [10298] = 10087, + [10299] = 10082, + [10300] = 10083, + [10301] = 10090, + [10302] = 10067, + [10303] = 10069, + [10304] = 10071, + [10305] = 10067, + [10306] = 10108, + [10307] = 10181, + [10308] = 10181, + [10309] = 10069, + [10310] = 10071, + [10311] = 10311, + [10312] = 10073, + [10313] = 10091, + [10314] = 10066, + [10315] = 10067, + [10316] = 10316, + [10317] = 10069, + [10318] = 10099, + [10319] = 10242, + [10320] = 10149, + [10321] = 10321, + [10322] = 10126, + [10323] = 10181, + [10324] = 10117, + [10325] = 10075, + [10326] = 10326, + [10327] = 10181, + [10328] = 10084, + [10329] = 10108, + [10330] = 10181, + [10331] = 10331, + [10332] = 10332, + [10333] = 10083, + [10334] = 10074, + [10335] = 10076, + [10336] = 10077, + [10337] = 10106, + [10338] = 10338, + [10339] = 10087, + [10340] = 10340, + [10341] = 10242, + [10342] = 10342, + [10343] = 10088, + [10344] = 10344, + [10345] = 10149, + [10346] = 10067, + [10347] = 10069, + [10348] = 10071, + [10349] = 10349, + [10350] = 10100, + [10351] = 10066, + [10352] = 10069, + [10353] = 10100, + [10354] = 10078, + [10355] = 10071, + [10356] = 10078, + [10357] = 10073, + [10358] = 10087, + [10359] = 10071, + [10360] = 10111, + [10361] = 10088, + [10362] = 10067, + [10363] = 10092, + [10364] = 10077, + [10365] = 10126, + [10366] = 10185, + [10367] = 10367, + [10368] = 10103, + [10369] = 10083, + [10370] = 10084, + [10371] = 10083, + [10372] = 10097, + [10373] = 10373, + [10374] = 10374, + [10375] = 10092, + [10376] = 10121, + [10377] = 10089, + [10378] = 10378, + [10379] = 10379, + [10380] = 10168, + [10381] = 10095, + [10382] = 10073, + [10383] = 10077, + [10384] = 10106, + [10385] = 10242, + [10386] = 10386, + [10387] = 10089, + [10388] = 10094, + [10389] = 10111, + [10390] = 10126, + [10391] = 10097, + [10392] = 10064, + [10393] = 10067, + [10394] = 10100, + [10395] = 10091, + [10396] = 10185, + [10397] = 10067, + [10398] = 10398, + [10399] = 10094, + [10400] = 10075, + [10401] = 10401, + [10402] = 10103, + [10403] = 10168, + [10404] = 10096, + [10405] = 10067, + [10406] = 10106, + [10407] = 10407, + [10408] = 10069, + [10409] = 10071, + [10410] = 10410, + [10411] = 10100, + [10412] = 10084, + [10413] = 10091, + [10414] = 10091, + [10415] = 10094, + [10416] = 10078, + [10417] = 10094, + [10418] = 10096, + [10419] = 10332, + [10420] = 10109, + [10421] = 10091, + [10422] = 10168, + [10423] = 10078, + [10424] = 10083, + [10425] = 10109, + [10426] = 10069, + [10427] = 10071, + [10428] = 10428, + [10429] = 10066, + [10430] = 10066, + [10431] = 10170, + [10432] = 10121, + [10433] = 10084, + [10434] = 10067, + [10435] = 10106, + [10436] = 10069, + [10437] = 10071, + [10438] = 10100, + [10439] = 10064, + [10440] = 10078, + [10441] = 10066, + [10442] = 10100, + [10443] = 10064, + [10444] = 10444, + [10445] = 10445, + [10446] = 10170, + [10447] = 10094, + [10448] = 10064, + [10449] = 10126, + [10450] = 10096, + [10451] = 10451, + [10452] = 10064, + [10453] = 10126, + [10454] = 10064, + [10455] = 10108, + [10456] = 10100, + [10457] = 10064, + [10458] = 10111, + [10459] = 10064, + [10460] = 10064, + [10461] = 10064, + [10462] = 10064, + [10463] = 10100, + [10464] = 10064, + [10465] = 10064, + [10466] = 10064, + [10467] = 10064, + [10468] = 10064, + [10469] = 10064, + [10470] = 10064, + [10471] = 10064, + [10472] = 10067, + [10473] = 10099, + [10474] = 10094, + [10475] = 10149, + [10476] = 10476, + [10477] = 10477, + [10478] = 10073, + [10479] = 10242, + [10480] = 10185, + [10481] = 10083, + [10482] = 10482, + [10483] = 10483, + [10484] = 10484, + [10485] = 10485, + [10486] = 10486, + [10487] = 10487, + [10488] = 10488, + [10489] = 10489, + [10490] = 10490, + [10491] = 10491, + [10492] = 10492, + [10493] = 10493, + [10494] = 10494, + [10495] = 10495, + [10496] = 10496, + [10497] = 10497, + [10498] = 10498, + [10499] = 10499, + [10500] = 10500, + [10501] = 10501, + [10502] = 10502, + [10503] = 10503, + [10504] = 10504, + [10505] = 10505, + [10506] = 10485, + [10507] = 10507, + [10508] = 10508, + [10509] = 10482, + [10510] = 10510, + [10511] = 10511, + [10512] = 10512, + [10513] = 10513, + [10514] = 10514, + [10515] = 10515, + [10516] = 10484, + [10517] = 10517, + [10518] = 10486, + [10519] = 10519, + [10520] = 10520, + [10521] = 10490, + [10522] = 10522, + [10523] = 10523, + [10524] = 10524, + [10525] = 10508, + [10526] = 10526, + [10527] = 10527, + [10528] = 10528, + [10529] = 10499, + [10530] = 10498, + [10531] = 10487, + [10532] = 10532, + [10533] = 10533, + [10534] = 10534, + [10535] = 10528, + [10536] = 10536, + [10537] = 10537, + [10538] = 10538, + [10539] = 10539, + [10540] = 10540, + [10541] = 10533, + [10542] = 10542, + [10543] = 10538, + [10544] = 10544, + [10545] = 10545, + [10546] = 10546, + [10547] = 10547, + [10548] = 10548, + [10549] = 10549, + [10550] = 10550, + [10551] = 10551, + [10552] = 10540, + [10553] = 10553, + [10554] = 10507, + [10555] = 10555, + [10556] = 10556, + [10557] = 10482, + [10558] = 10558, + [10559] = 10508, + [10560] = 10560, + [10561] = 10504, + [10562] = 10562, + [10563] = 10563, + [10564] = 10564, + [10565] = 10498, + [10566] = 10526, + [10567] = 10528, + [10568] = 10568, + [10569] = 10536, + [10570] = 10570, + [10571] = 10520, + [10572] = 10572, + [10573] = 10573, + [10574] = 10490, + [10575] = 10498, + [10576] = 10576, + [10577] = 10507, + [10578] = 10553, + [10579] = 10579, + [10580] = 10544, + [10581] = 10581, + [10582] = 10533, + [10583] = 10542, + [10584] = 10498, + [10585] = 10513, + [10586] = 10528, + [10587] = 10587, + [10588] = 10588, + [10589] = 10589, + [10590] = 10524, + [10591] = 10591, + [10592] = 10507, + [10593] = 10589, + [10594] = 10570, + [10595] = 10588, + [10596] = 10596, + [10597] = 10538, + [10598] = 10494, + [10599] = 10498, + [10600] = 10504, + [10601] = 10526, + [10602] = 10536, + [10603] = 10570, + [10604] = 10573, + [10605] = 10528, + [10606] = 10483, + [10607] = 10538, + [10608] = 10608, + [10609] = 10513, + [10610] = 10511, + [10611] = 10611, + [10612] = 10612, + [10613] = 10540, + [10614] = 10614, + [10615] = 10562, + [10616] = 10616, + [10617] = 10544, + [10618] = 10618, + [10619] = 10568, + [10620] = 10620, + [10621] = 10486, + [10622] = 10533, + [10623] = 10495, + [10624] = 10496, + [10625] = 10625, + [10626] = 10626, + [10627] = 10540, + [10628] = 10490, + [10629] = 10505, + [10630] = 10485, + [10631] = 10631, + [10632] = 10556, + [10633] = 10533, + [10634] = 10634, + [10635] = 10502, + [10636] = 10636, + [10637] = 10637, + [10638] = 10544, + [10639] = 10562, + [10640] = 10640, + [10641] = 10560, + [10642] = 10483, + [10643] = 10643, + [10644] = 10545, + [10645] = 10528, + [10646] = 10538, + [10647] = 10647, + [10648] = 10540, + [10649] = 10544, + [10650] = 10556, + [10651] = 10651, + [10652] = 10652, + [10653] = 10555, + [10654] = 10495, + [10655] = 10498, + [10656] = 10563, + [10657] = 10496, + [10658] = 10482, + [10659] = 10659, + [10660] = 10581, + [10661] = 10533, + [10662] = 10570, + [10663] = 10542, + [10664] = 10549, + [10665] = 10596, + [10666] = 10550, + [10667] = 10558, + [10668] = 10668, + [10669] = 10669, + [10670] = 10618, + [10671] = 10671, + [10672] = 10672, + [10673] = 10549, + [10674] = 10524, + [10675] = 10550, + [10676] = 10676, + [10677] = 10634, + [10678] = 10678, + [10679] = 10558, + [10680] = 10596, + [10681] = 10652, + [10682] = 10505, + [10683] = 10536, + [10684] = 10564, + [10685] = 10573, + [10686] = 10485, + [10687] = 10687, + [10688] = 10688, + [10689] = 10513, + [10690] = 10690, + [10691] = 10691, + [10692] = 10672, + [10693] = 10555, + [10694] = 10694, + [10695] = 10695, + [10696] = 10492, + [10697] = 10533, + [10698] = 10698, + [10699] = 10542, + [10700] = 10618, + [10701] = 10493, + [10702] = 10702, + [10703] = 10495, + [10704] = 10507, + [10705] = 10498, + [10706] = 10706, + [10707] = 10555, + [10708] = 10505, + [10709] = 10485, + [10710] = 10511, + [10711] = 10545, + [10712] = 10712, + [10713] = 10713, + [10714] = 10572, + [10715] = 10562, + [10716] = 10533, + [10717] = 10717, + [10718] = 10718, + [10719] = 10563, + [10720] = 10659, + [10721] = 10698, + [10722] = 10507, + [10723] = 10482, + [10724] = 10502, + [10725] = 10508, + [10726] = 10726, + [10727] = 10562, + [10728] = 10728, + [10729] = 10690, + [10730] = 10508, + [10731] = 10731, + [10732] = 10732, + [10733] = 10672, + [10734] = 10734, + [10735] = 10524, + [10736] = 10555, + [10737] = 10618, + [10738] = 10504, + [10739] = 10526, + [10740] = 10482, + [10741] = 10570, + [10742] = 10536, + [10743] = 10743, + [10744] = 10573, + [10745] = 10745, + [10746] = 10483, + [10747] = 10747, + [10748] = 10513, + [10749] = 10749, + [10750] = 10717, + [10751] = 10751, + [10752] = 10752, + [10753] = 10753, + [10754] = 10496, + [10755] = 10755, + [10756] = 10756, + [10757] = 10486, + [10758] = 10758, + [10759] = 10581, + [10760] = 10495, + [10761] = 10564, + [10762] = 8047, + [10763] = 10616, + [10764] = 10498, + [10765] = 10505, + [10766] = 10485, + [10767] = 10634, + [10768] = 10545, + [10769] = 10579, + [10770] = 10751, + [10771] = 10771, + [10772] = 10533, + [10773] = 10494, + [10774] = 10774, + [10775] = 10540, + [10776] = 10563, + [10777] = 10625, + [10778] = 10486, + [10779] = 10779, + [10780] = 10780, + [10781] = 10781, + [10782] = 10698, + [10783] = 10587, + [10784] = 10560, + [10785] = 10785, + [10786] = 10494, + [10787] = 10652, + [10788] = 10555, + [10789] = 10482, + [10790] = 10790, + [10791] = 10498, + [10792] = 10524, + [10793] = 10596, + [10794] = 10643, + [10795] = 10690, + [10796] = 10581, + [10797] = 10536, + [10798] = 10798, + [10799] = 10573, + [10800] = 10498, + [10801] = 10549, + [10802] = 10550, + [10803] = 10513, + [10804] = 10558, + [10805] = 10496, + [10806] = 8064, + [10807] = 10544, + [10808] = 10808, + [10809] = 10809, + [10810] = 10504, + [10811] = 10752, + [10812] = 10812, + [10813] = 10526, + [10814] = 10495, + [10815] = 10815, + [10816] = 10816, + [10817] = 10817, + [10818] = 10570, + [10819] = 10505, + [10820] = 10485, + [10821] = 10483, + [10822] = 10581, + [10823] = 10533, + [10824] = 10542, + [10825] = 10500, + [10826] = 10482, + [10827] = 10563, + [10828] = 10498, + [10829] = 10533, + [10830] = 10562, + [10831] = 10507, + [10832] = 10832, + [10833] = 10546, + [10834] = 10834, + [10835] = 10533, + [10836] = 10486, + [10837] = 10524, + [10838] = 10528, + [10839] = 10839, + [10840] = 10536, + [10841] = 10538, + [10842] = 10573, + [10843] = 10843, + [10844] = 10513, + [10845] = 10540, + [10846] = 10544, + [10847] = 10847, + [10848] = 10495, + [10849] = 10490, + [10850] = 10485, + [10851] = 10555, + [10852] = 10852, + [10853] = 10853, + [10854] = 10498, + [10855] = 10555, + [10856] = 10482, + [10857] = 10570, + [10858] = 10549, + [10859] = 10550, + [10860] = 10616, + [10861] = 10524, + [10862] = 10558, + [10863] = 10863, + [10864] = 10864, + [10865] = 10573, + [10866] = 10513, + [10867] = 10560, + [10868] = 10508, + [10869] = 10869, + [10870] = 10485, + [10871] = 10871, + [10872] = 10834, + [10873] = 10483, + [10874] = 10874, + [10875] = 10555, + [10876] = 10616, + [10877] = 10573, + [10878] = 10513, + [10879] = 10752, + [10880] = 10880, + [10881] = 10485, + [10882] = 10882, + [10883] = 10482, + [10884] = 10589, + [10885] = 10486, + [10886] = 10886, + [10887] = 10887, + [10888] = 10573, + [10889] = 10513, + [10890] = 10485, + [10891] = 10570, + [10892] = 10672, + [10893] = 10893, + [10894] = 10528, + [10895] = 10895, + [10896] = 10513, + [10897] = 10485, + [10898] = 10898, + [10899] = 10690, + [10900] = 10589, + [10901] = 10901, + [10902] = 10533, + [10903] = 10513, + [10904] = 10485, + [10905] = 10905, + [10906] = 10483, + [10907] = 10618, + [10908] = 10863, + [10909] = 10513, + [10910] = 10485, + [10911] = 10533, + [10912] = 10494, + [10913] = 10549, + [10914] = 10513, + [10915] = 10485, + [10916] = 10550, + [10917] = 8061, + [10918] = 10513, + [10919] = 10485, + [10920] = 10558, + [10921] = 10659, + [10922] = 10513, + [10923] = 10485, + [10924] = 10564, + [10925] = 10538, + [10926] = 10513, + [10927] = 10485, + [10928] = 10562, + [10929] = 10929, + [10930] = 10513, + [10931] = 10485, + [10932] = 10579, + [10933] = 10852, + [10934] = 10513, + [10935] = 10485, + [10936] = 10672, + [10937] = 10513, + [10938] = 10485, + [10939] = 10812, + [10940] = 10940, + [10941] = 10625, + [10942] = 10533, + [10943] = 10616, + [10944] = 10753, + [10945] = 10945, + [10946] = 10946, + [10947] = 10636, + [10948] = 10948, + [10949] = 10898, + [10950] = 10950, + [10951] = 10951, + [10952] = 10492, + [10953] = 10493, + [10954] = 10869, + [10955] = 10955, + [10956] = 10492, + [10957] = 10652, + [10958] = 10958, + [10959] = 10497, + [10960] = 10564, + [10961] = 10961, + [10962] = 10538, + [10963] = 10963, + [10964] = 10964, + [10965] = 10669, + [10966] = 10690, + [10967] = 10579, + [10968] = 10968, + [10969] = 10969, + [10970] = 10702, + [10971] = 10616, + [10972] = 10596, + [10973] = 10533, + [10974] = 10589, + [10975] = 10495, + [10976] = 10976, + [10977] = 10852, + [10978] = 10498, + [10979] = 10834, + [10980] = 10591, + [10981] = 10981, + [10982] = 9047, + [10983] = 10983, + [10984] = 10834, + [10985] = 10549, + [10986] = 10687, + [10987] = 10676, + [10988] = 10643, + [10989] = 10989, + [10990] = 10990, + [10991] = 10690, + [10992] = 10550, + [10993] = 10964, + [10994] = 10994, + [10995] = 10995, + [10996] = 10951, + [10997] = 10946, + [10998] = 10533, + [10999] = 10496, + [11000] = 10678, + [11001] = 10562, + [11002] = 11002, + [11003] = 10507, + [11004] = 11004, + [11005] = 10852, + [11006] = 10555, + [11007] = 10558, + [11008] = 10564, + [11009] = 11009, + [11010] = 10834, + [11011] = 11011, + [11012] = 10570, + [11013] = 10834, + [11014] = 10672, + [11015] = 10555, + [11016] = 10545, + [11017] = 11017, + [11018] = 10555, + [11019] = 10498, + [11020] = 10486, + [11021] = 11021, + [11022] = 10564, + [11023] = 10880, + [11024] = 10581, + [11025] = 11025, + [11026] = 10579, + [11027] = 11027, + [11028] = 10564, + [11029] = 10688, + [11030] = 11030, + [11031] = 11031, + [11032] = 11032, + [11033] = 10498, + [11034] = 10498, + [11035] = 10690, + [11036] = 10816, + [11037] = 10533, + [11038] = 11038, + [11039] = 10545, + [11040] = 10659, + [11041] = 10484, + [11042] = 11042, + [11043] = 10487, + [11044] = 10812, + [11045] = 10749, + [11046] = 10562, + [11047] = 11047, + [11048] = 11048, + [11049] = 11049, + [11050] = 10546, + [11051] = 11051, + [11052] = 10494, + [11053] = 10502, + [11054] = 11054, + [11055] = 10596, + [11056] = 11056, + [11057] = 10752, + [11058] = 11058, + [11059] = 10749, + [11060] = 11060, + [11061] = 10555, + [11062] = 10834, + [11063] = 10563, + [11064] = 10572, + [11065] = 11065, + [11066] = 10502, + [11067] = 11067, + [11068] = 10751, + [11069] = 10555, + [11070] = 10508, + [11071] = 10659, + [11072] = 10562, + [11073] = 10752, + [11074] = 10555, + [11075] = 10482, + [11076] = 10969, + [11077] = 10493, + [11078] = 10816, + [11079] = 10562, + [11080] = 10498, + [11081] = 10528, + [11082] = 10555, + [11083] = 11083, + [11084] = 10484, + [11085] = 10672, + [11086] = 10570, + [11087] = 10551, + [11088] = 10570, + [11089] = 10482, + [11090] = 10562, + [11091] = 11091, + [11092] = 10564, + [11093] = 10487, + [11094] = 11094, + [11095] = 10570, + [11096] = 10659, + [11097] = 10482, + [11098] = 10555, + [11099] = 10581, + [11100] = 10555, + [11101] = 10556, + [11102] = 10753, + [11103] = 10946, + [11104] = 10636, + [11105] = 10948, + [11106] = 10898, + [11107] = 10490, + [11108] = 10951, + [11109] = 10717, + [11110] = 11110, + [11111] = 10497, + [11112] = 11110, + [11113] = 10961, + [11114] = 10863, + [11115] = 11115, + [11116] = 10964, + [11117] = 10669, + [11118] = 11118, + [11119] = 10969, + [11120] = 10702, + [11121] = 10589, + [11122] = 11110, + [11123] = 10643, + [11124] = 11118, + [11125] = 10676, + [11126] = 10652, + [11127] = 11127, + [11128] = 10588, + [11129] = 11017, + [11130] = 10880, + [11131] = 10524, + [11132] = 10749, + [11133] = 10753, + [11134] = 10636, + [11135] = 10898, + [11136] = 10568, + [11137] = 10951, + [11138] = 10500, + [11139] = 10540, + [11140] = 10497, + [11141] = 11141, + [11142] = 10961, + [11143] = 10482, + [11144] = 10964, + [11145] = 10749, + [11146] = 10969, + [11147] = 10702, + [11148] = 10749, + [11149] = 10676, + [11150] = 11150, + [11151] = 10548, + [11152] = 10502, + [11153] = 11017, + [11154] = 10880, + [11155] = 11155, + [11156] = 10753, + [11157] = 10636, + [11158] = 10898, + [11159] = 11159, + [11160] = 10951, + [11161] = 11161, + [11162] = 10752, + [11163] = 10497, + [11164] = 10961, + [11165] = 10625, + [11166] = 10964, + [11167] = 10961, + [11168] = 10969, + [11169] = 10702, + [11170] = 10533, + [11171] = 10676, + [11172] = 10948, + [11173] = 10502, + [11174] = 11017, + [11175] = 10880, + [11176] = 10482, + [11177] = 10753, + [11178] = 10636, + [11179] = 10898, + [11180] = 10625, + [11181] = 10951, + [11182] = 10500, + [11183] = 10482, + [11184] = 10961, + [11185] = 10542, + [11186] = 10964, + [11187] = 10698, + [11188] = 10969, + [11189] = 10702, + [11190] = 10563, + [11191] = 10676, + [11192] = 11192, + [11193] = 10616, + [11194] = 11017, + [11195] = 10880, + [11196] = 10532, + [11197] = 10753, + [11198] = 10636, + [11199] = 10898, + [11200] = 11067, + [11201] = 10951, + [11202] = 10520, + [11203] = 10863, + [11204] = 10961, + [11205] = 11205, + [11206] = 10964, + [11207] = 10553, + [11208] = 10969, + [11209] = 10702, + [11210] = 10869, + [11211] = 10676, + [11212] = 11212, + [11213] = 10698, + [11214] = 11017, + [11215] = 10880, + [11216] = 11216, + [11217] = 10753, + [11218] = 10636, + [11219] = 10898, + [11220] = 10500, + [11221] = 10951, + [11222] = 10587, + [11223] = 10961, + [11224] = 10482, + [11225] = 10964, + [11226] = 10702, + [11227] = 10752, + [11228] = 10676, + [11229] = 11229, + [11230] = 11017, + [11231] = 10880, + [11232] = 10591, + [11233] = 10753, + [11234] = 10636, + [11235] = 10573, + [11236] = 10951, + [11237] = 11118, + [11238] = 10625, + [11239] = 10964, + [11240] = 10702, + [11241] = 10545, + [11242] = 11017, + [11243] = 10753, + [11244] = 10636, + [11245] = 10951, + [11246] = 10964, + [11247] = 10702, + [11248] = 11017, + [11249] = 10753, + [11250] = 10636, + [11251] = 10951, + [11252] = 10964, + [11253] = 10702, + [11254] = 11017, + [11255] = 10753, + [11256] = 10636, + [11257] = 10702, + [11258] = 11017, + [11259] = 10753, + [11260] = 10636, + [11261] = 10702, + [11262] = 11017, + [11263] = 10753, + [11264] = 10636, + [11265] = 10702, + [11266] = 11017, + [11267] = 10753, + [11268] = 10636, + [11269] = 10702, + [11270] = 11017, + [11271] = 10753, + [11272] = 10636, + [11273] = 10702, + [11274] = 11017, + [11275] = 10753, + [11276] = 10636, + [11277] = 10702, + [11278] = 11017, + [11279] = 10753, + [11280] = 10636, + [11281] = 10702, + [11282] = 11017, + [11283] = 10753, + [11284] = 10636, + [11285] = 10702, + [11286] = 11017, + [11287] = 10753, + [11288] = 10636, + [11289] = 10702, + [11290] = 11017, + [11291] = 10636, + [11292] = 10702, + [11293] = 11017, + [11294] = 10636, + [11295] = 10636, + [11296] = 10636, + [11297] = 10625, + [11298] = 10546, + [11299] = 10948, + [11300] = 10839, + [11301] = 11054, + [11302] = 10752, + [11303] = 10678, + [11304] = 10688, + [11305] = 10528, + [11306] = 10698, + [11307] = 10538, + [11308] = 10507, + [11309] = 10698, + [11310] = 11310, + [11311] = 2701, + [11312] = 10532, + [11313] = 10659, + [11314] = 10528, + [11315] = 10538, + [11316] = 10669, + [11317] = 10540, + [11318] = 10544, + [11319] = 10540, + [11320] = 11320, + [11321] = 10528, + [11322] = 10544, + [11323] = 11323, + [11324] = 10588, + [11325] = 10556, + [11326] = 11326, + [11327] = 10618, + [11328] = 10652, + [11329] = 10698, + [11330] = 10812, + [11331] = 10511, + [11332] = 11332, + [11333] = 11333, + [11334] = 10579, + [11335] = 10568, + [11336] = 11336, + [11337] = 11337, + [11338] = 11338, + [11339] = 10687, + [11340] = 10570, + [11341] = 11341, + [11342] = 10512, + [11343] = 11343, + [11344] = 11141, + [11345] = 10563, + [11346] = 10486, + [11347] = 10625, + [11348] = 10533, + [11349] = 10498, + [11350] = 10869, + [11351] = 11150, + [11352] = 11352, + [11353] = 10672, + [11354] = 11354, + [11355] = 10528, + [11356] = 11356, + [11357] = 11357, + [11358] = 10486, + [11359] = 10968, + [11360] = 11161, + [11361] = 10498, + [11362] = 11362, + [11363] = 11363, + [11364] = 10596, + [11365] = 11365, + [11366] = 11366, + [11367] = 10542, + [11368] = 10533, + [11369] = 11369, + [11370] = 11370, + [11371] = 10507, + [11372] = 11009, + [11373] = 11373, + [11374] = 11141, + [11375] = 10490, + [11376] = 10533, + [11377] = 10492, + [11378] = 10570, + [11379] = 11379, + [11380] = 11380, + [11381] = 11381, + [11382] = 11382, + [11383] = 11383, + [11384] = 11384, + [11385] = 10486, + [11386] = 10950, + [11387] = 11387, + [11388] = 8114, + [11389] = 10528, + [11390] = 10564, + [11391] = 11391, + [11392] = 11392, + [11393] = 10562, + [11394] = 11394, + [11395] = 11395, + [11396] = 10562, + [11397] = 11397, + [11398] = 10618, + [11399] = 10507, + [11400] = 10555, + [11401] = 10544, + [11402] = 11402, + [11403] = 10579, + [11404] = 10551, + [11405] = 10948, + [11406] = 10839, + [11407] = 11054, + [11408] = 10500, + [11409] = 10968, + [11410] = 10749, + [11411] = 10669, + [11412] = 11412, + [11413] = 10687, + [11414] = 10512, + [11415] = 10493, + [11416] = 11416, + [11417] = 10564, + [11418] = 10560, + [11419] = 10948, + [11420] = 10839, + [11421] = 11054, + [11422] = 10482, + [11423] = 11423, + [11424] = 10625, + [11425] = 10669, + [11426] = 10687, + [11427] = 10512, + [11428] = 10950, + [11429] = 10652, + [11430] = 10555, + [11431] = 10839, + [11432] = 11054, + [11433] = 10524, + [11434] = 2742, + [11435] = 11435, + [11436] = 10687, + [11437] = 10512, + [11438] = 11438, + [11439] = 11439, + [11440] = 10839, + [11441] = 11054, + [11442] = 10749, + [11443] = 11443, + [11444] = 10555, + [11445] = 10687, + [11446] = 10512, + [11447] = 11447, + [11448] = 10839, + [11449] = 11054, + [11450] = 10482, + [11451] = 10533, + [11452] = 10687, + [11453] = 10512, + [11454] = 10570, + [11455] = 10548, + [11456] = 11456, + [11457] = 10687, + [11458] = 10512, + [11459] = 10698, + [11460] = 10483, + [11461] = 10512, + [11462] = 10589, + [11463] = 10512, + [11464] = 11150, + [11465] = 10512, + [11466] = 10504, + [11467] = 10512, + [11468] = 10526, + [11469] = 10512, + [11470] = 10536, + [11471] = 10512, + [11472] = 10570, + [11473] = 10512, + [11474] = 11474, + [11475] = 10512, + [11476] = 10573, + [11477] = 10512, + [11478] = 11478, + [11479] = 10512, + [11480] = 11161, + [11481] = 10512, + [11482] = 10528, + [11483] = 10512, + [11484] = 10538, + [11485] = 10512, + [11486] = 11486, + [11487] = 10494, + [11488] = 11488, + [11489] = 10500, + [11490] = 11229, + [11491] = 10482, + [11492] = 10513, + [11493] = 11493, + [11494] = 10528, + [11495] = 11495, + [11496] = 10540, + [11497] = 10816, + [11498] = 11498, + [11499] = 10695, + [11500] = 10484, + [11501] = 10487, + [11502] = 11502, + [11503] = 10505, + [11504] = 10562, + [11505] = 11229, + [11506] = 10695, + [11507] = 10643, + [11508] = 11229, + [11509] = 10695, + [11510] = 10544, + [11511] = 11229, + [11512] = 10695, + [11513] = 10482, + [11514] = 11229, + [11515] = 10695, + [11516] = 10533, + [11517] = 11229, + [11518] = 10695, + [11519] = 11519, + [11520] = 11229, + [11521] = 10695, + [11522] = 10542, + [11523] = 10695, + [11524] = 10695, + [11525] = 10695, + [11526] = 10695, + [11527] = 10695, + [11528] = 10695, + [11529] = 10695, + [11530] = 10695, + [11531] = 10695, + [11532] = 10695, + [11533] = 10695, + [11534] = 10695, + [11535] = 10695, + [11536] = 10690, + [11537] = 11537, + [11538] = 10816, + [11539] = 10562, + [11540] = 10672, + [11541] = 10749, + [11542] = 10551, + [11543] = 11030, + [11544] = 11030, + [11545] = 11030, + [11546] = 11030, + [11547] = 11030, + [11548] = 11030, + [11549] = 11030, + [11550] = 11017, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -14341,6067 +16906,7481 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(340); + if (eof) ADVANCE(439); ADVANCE_MAP( - '!', 407, - '"', 525, - '#', 286, - '%', 431, - '&', 441, - '\'', 516, - '(', 344, - ')', 347, - '*', 427, - '+', 421, - ',', 346, - '-', 410, - '.', 491, - '/', 429, - '0', 498, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 469, + '!', 506, + '"', 632, + '#', 385, + '%', 530, + '&', 542, + '\'', 623, + '(', 443, + ')', 446, + '*', 526, + '+', 520, + ',', 445, + '-', 509, + '.', 597, + '/', 528, + '0', 605, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 573, '\\', 2, - ']', 471, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + ']', 577, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(338); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(437); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); case 1: - if (lookahead == '\n') SKIP(163); + if (lookahead == '\n') SKIP(225); END_STATE(); case 2: - if (lookahead == '\n') SKIP(163); + if (lookahead == '\n') SKIP(225); if (lookahead == '\r') SKIP(1); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 3: - if (lookahead == '\n') SKIP(172); + if (lookahead == '\n') SKIP(236); END_STATE(); case 4: - if (lookahead == '\n') SKIP(172); + if (lookahead == '\n') SKIP(236); if (lookahead == '\r') SKIP(3); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 5: - if (lookahead == '\n') SKIP(171); + if (lookahead == '\n') SKIP(235); END_STATE(); case 6: - if (lookahead == '\n') SKIP(171); + if (lookahead == '\n') SKIP(235); if (lookahead == '\r') SKIP(5); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 7: - if (lookahead == '\n') SKIP(174); + if (lookahead == '\n') SKIP(238); END_STATE(); case 8: - if (lookahead == '\n') SKIP(174); + if (lookahead == '\n') SKIP(238); if (lookahead == '\r') SKIP(7); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 9: - if (lookahead == '\n') SKIP(173); + if (lookahead == '\n') SKIP(237); END_STATE(); case 10: - if (lookahead == '\n') SKIP(173); + if (lookahead == '\n') SKIP(237); if (lookahead == '\r') SKIP(9); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 11: - if (lookahead == '\n') SKIP(175); + if (lookahead == '\n') SKIP(239); END_STATE(); case 12: - if (lookahead == '\n') SKIP(175); + if (lookahead == '\n') SKIP(239); if (lookahead == '\r') SKIP(11); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 13: - if (lookahead == '\n') SKIP(176); + if (lookahead == '\n') SKIP(240); END_STATE(); case 14: - if (lookahead == '\n') SKIP(176); + if (lookahead == '\n') SKIP(240); if (lookahead == '\r') SKIP(13); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 15: - if (lookahead == '\n') SKIP(166); + if (lookahead == '\n') SKIP(228); END_STATE(); case 16: - if (lookahead == '\n') SKIP(166); + if (lookahead == '\n') SKIP(228); if (lookahead == '\r') SKIP(15); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 17: - if (lookahead == '\n') SKIP(167); + if (lookahead == '\n') SKIP(229); END_STATE(); case 18: - if (lookahead == '\n') SKIP(167); + if (lookahead == '\n') SKIP(229); if (lookahead == '\r') SKIP(17); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 19: - if (lookahead == '\n') SKIP(208); + if (lookahead == '\n') SKIP(230); END_STATE(); case 20: - if (lookahead == '\n') SKIP(208); + if (lookahead == '\n') SKIP(230); if (lookahead == '\r') SKIP(19); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 21: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(286); END_STATE(); case 22: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(286); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 23: - if (lookahead == '\n') SKIP(209); + if (lookahead == '\n') SKIP(334); END_STATE(); case 24: - if (lookahead == '\n') SKIP(209); + if (lookahead == '\n') SKIP(334); if (lookahead == '\r') SKIP(23); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 25: - if (lookahead == '\n') SKIP(169); + if (lookahead == '\n') SKIP(266); END_STATE(); case 26: - if (lookahead == '\n') SKIP(169); + if (lookahead == '\n') SKIP(266); if (lookahead == '\r') SKIP(25); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 27: - if (lookahead == '\n') SKIP(188); + if (lookahead == '\n') SKIP(233); END_STATE(); case 28: - if (lookahead == '\n') SKIP(188); + if (lookahead == '\n') SKIP(233); if (lookahead == '\r') SKIP(27); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 29: - if (lookahead == '\n') SKIP(184); + if (lookahead == '\n') SKIP(253); END_STATE(); case 30: - if (lookahead == '\n') SKIP(184); + if (lookahead == '\n') SKIP(253); if (lookahead == '\r') SKIP(29); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 31: - if (lookahead == '\n') SKIP(177); + if (lookahead == '\n') SKIP(241); END_STATE(); case 32: - if (lookahead == '\n') SKIP(177); + if (lookahead == '\n') SKIP(241); if (lookahead == '\r') SKIP(31); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 33: - if (lookahead == '\n') SKIP(195); + if (lookahead == '\n') SKIP(248); END_STATE(); case 34: - if (lookahead == '\n') SKIP(195); + if (lookahead == '\n') SKIP(248); if (lookahead == '\r') SKIP(33); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 35: - if (lookahead == '\n') SKIP(194); + if (lookahead == '\n') SKIP(267); END_STATE(); case 36: - if (lookahead == '\n') SKIP(194); + if (lookahead == '\n') SKIP(267); if (lookahead == '\r') SKIP(35); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 37: - if (lookahead == '\n') SKIP(211); + if (lookahead == '\n') SKIP(265); END_STATE(); case 38: - if (lookahead == '\n') SKIP(211); + if (lookahead == '\n') SKIP(265); if (lookahead == '\r') SKIP(37); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 39: - if (lookahead == '\n') SKIP(185); + if (lookahead == '\n') SKIP(289); END_STATE(); case 40: - if (lookahead == '\n') SKIP(185); + if (lookahead == '\n') SKIP(289); if (lookahead == '\r') SKIP(39); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 41: - if (lookahead == '\n') SKIP(189); + if (lookahead == '\n') SKIP(271); END_STATE(); case 42: - if (lookahead == '\n') SKIP(189); + if (lookahead == '\n') SKIP(271); if (lookahead == '\r') SKIP(41); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 43: - if (lookahead == '\n') SKIP(179); + if (lookahead == '\n') SKIP(243); END_STATE(); case 44: - if (lookahead == '\n') SKIP(179); + if (lookahead == '\n') SKIP(243); if (lookahead == '\r') SKIP(43); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 45: - if (lookahead == '\n') SKIP(198); + if (lookahead == '\n') SKIP(287); END_STATE(); case 46: - if (lookahead == '\n') SKIP(198); + if (lookahead == '\n') SKIP(287); if (lookahead == '\r') SKIP(45); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 47: - if (lookahead == '\n') SKIP(196); + if (lookahead == '\n') SKIP(249); END_STATE(); case 48: - if (lookahead == '\n') SKIP(196); + if (lookahead == '\n') SKIP(249); if (lookahead == '\r') SKIP(47); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 49: - if (lookahead == '\n') SKIP(214); + if (lookahead == '\n') SKIP(315); END_STATE(); case 50: - if (lookahead == '\n') SKIP(214); + if (lookahead == '\n') SKIP(315); if (lookahead == '\r') SKIP(49); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 51: - if (lookahead == '\n') SKIP(222); + if (lookahead == '\n') SKIP(273); END_STATE(); case 52: - if (lookahead == '\n') SKIP(222); + if (lookahead == '\n') SKIP(273); if (lookahead == '\r') SKIP(51); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 53: - if (lookahead == '\n') SKIP(210); + if (lookahead == '\n') SKIP(256); END_STATE(); case 54: - if (lookahead == '\n') SKIP(210); + if (lookahead == '\n') SKIP(256); if (lookahead == '\r') SKIP(53); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 55: - if (lookahead == '\n') SKIP(180); + if (lookahead == '\n') SKIP(255); END_STATE(); case 56: - if (lookahead == '\n') SKIP(180); + if (lookahead == '\n') SKIP(255); if (lookahead == '\r') SKIP(55); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 57: - if (lookahead == '\n') SKIP(218); + if (lookahead == '\n') SKIP(301); END_STATE(); case 58: - if (lookahead == '\n') SKIP(218); + if (lookahead == '\n') SKIP(301); if (lookahead == '\r') SKIP(57); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 59: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(270); END_STATE(); case 60: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(270); if (lookahead == '\r') SKIP(59); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 61: - if (lookahead == '\n') SKIP(240); + if (lookahead == '\n') SKIP(292); END_STATE(); case 62: - if (lookahead == '\n') SKIP(240); + if (lookahead == '\n') SKIP(292); if (lookahead == '\r') SKIP(61); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 63: - if (lookahead == '\n') SKIP(241); + if (lookahead == '\n') SKIP(309); END_STATE(); case 64: - if (lookahead == '\n') SKIP(241); + if (lookahead == '\n') SKIP(309); if (lookahead == '\r') SKIP(63); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 65: - if (lookahead == '\n') SKIP(186); + if (lookahead == '\n') SKIP(317); END_STATE(); case 66: - if (lookahead == '\n') SKIP(186); + if (lookahead == '\n') SKIP(317); if (lookahead == '\r') SKIP(65); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 67: - if (lookahead == '\n') SKIP(190); + if (lookahead == '\n') SKIP(305); END_STATE(); case 68: - if (lookahead == '\n') SKIP(190); + if (lookahead == '\n') SKIP(305); if (lookahead == '\r') SKIP(67); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 69: - if (lookahead == '\n') SKIP(202); + if (lookahead == '\n') SKIP(324); END_STATE(); case 70: - if (lookahead == '\n') SKIP(202); + if (lookahead == '\n') SKIP(324); if (lookahead == '\r') SKIP(69); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 71: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(291); END_STATE(); case 72: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(291); if (lookahead == '\r') SKIP(71); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 73: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(303); END_STATE(); case 74: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(303); if (lookahead == '\r') SKIP(73); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 75: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(244); END_STATE(); case 76: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(244); if (lookahead == '\r') SKIP(75); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 77: - if (lookahead == '\n') SKIP(221); + if (lookahead == '\n') SKIP(333); END_STATE(); case 78: - if (lookahead == '\n') SKIP(221); + if (lookahead == '\n') SKIP(333); if (lookahead == '\r') SKIP(77); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 79: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(314); END_STATE(); case 80: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(314); if (lookahead == '\r') SKIP(79); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 81: - if (lookahead == '\n') SKIP(213); + if (lookahead == '\n') SKIP(254); END_STATE(); case 82: - if (lookahead == '\n') SKIP(213); + if (lookahead == '\n') SKIP(254); if (lookahead == '\r') SKIP(81); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 83: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(251); END_STATE(); case 84: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(251); if (lookahead == '\r') SKIP(83); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 85: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(335); END_STATE(); case 86: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(335); if (lookahead == '\r') SKIP(85); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 87: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(259); END_STATE(); case 88: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(259); if (lookahead == '\r') SKIP(87); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 89: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(336); END_STATE(); case 90: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(336); if (lookahead == '\r') SKIP(89); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 91: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(257); END_STATE(); case 92: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(257); if (lookahead == '\r') SKIP(91); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 93: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(276); END_STATE(); case 94: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(276); if (lookahead == '\r') SKIP(93); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 95: - if (lookahead == '\n') SKIP(178); + if (lookahead == '\n') SKIP(268); END_STATE(); case 96: - if (lookahead == '\n') SKIP(178); + if (lookahead == '\n') SKIP(268); if (lookahead == '\r') SKIP(95); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 97: - if (lookahead == '\n') SKIP(99); + if (lookahead == '\n') SKIP(339); END_STATE(); case 98: - if (lookahead == '\n') SKIP(99); + if (lookahead == '\n') SKIP(339); if (lookahead == '\r') SKIP(97); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 99: - ADVANCE_MAP( - '\n', 349, - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 419, - '-', 409, - '/', 428, - '<', 454, - '=', 274, - '>', 445, - ); - if (lookahead == '\\') SKIP(98); - if (lookahead == '^') ADVANCE(437); - if (lookahead == '|') ADVANCE(436); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(99); + if (lookahead == '\n') SKIP(297); END_STATE(); case 100: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(297); + if (lookahead == '\r') SKIP(99); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 101: - if (lookahead == '\n') SKIP(246); - if (lookahead == '\r') SKIP(100); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(288); END_STATE(); case 102: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(288); + if (lookahead == '\r') SKIP(101); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 103: - if (lookahead == '\n') SKIP(250); - if (lookahead == '\r') SKIP(102); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(299); END_STATE(); case 104: - if (lookahead == '\n') SKIP(235); + if (lookahead == '\n') SKIP(299); + if (lookahead == '\r') SKIP(103); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 105: - if (lookahead == '\n') SKIP(235); - if (lookahead == '\r') SKIP(104); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(328); END_STATE(); case 106: - if (lookahead == '\n') SKIP(236); + if (lookahead == '\n') SKIP(328); + if (lookahead == '\r') SKIP(105); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 107: - if (lookahead == '\n') SKIP(236); - if (lookahead == '\r') SKIP(106); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(300); END_STATE(); case 108: - if (lookahead == '\n') SKIP(237); - if (lookahead == '"') ADVANCE(525); - if (lookahead == '/') ADVANCE(526); - if (lookahead == '\\') ADVANCE(109); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(529); - if (lookahead != 0) ADVANCE(530); + if (lookahead == '\n') SKIP(300); + if (lookahead == '\r') SKIP(107); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(532); - if (lookahead == '\r') ADVANCE(531); - if (lookahead == 'U') ADVANCE(336); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == 'x') ADVANCE(322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); - if (lookahead != 0) ADVANCE(531); + if (lookahead == '\n') SKIP(340); END_STATE(); case 110: - if (lookahead == '\n') SKIP(247); - if (lookahead == '\'') ADVANCE(516); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '\\') ADVANCE(518); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(520); - if (lookahead != 0) ADVANCE(517); + if (lookahead == '\n') SKIP(340); + if (lookahead == '\r') SKIP(109); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(115); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '/') ADVANCE(370); - if (lookahead == '\\') ADVANCE(365); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\n') SKIP(338); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(115); - if (lookahead == '/') ADVANCE(370); - if (lookahead == '\\') ADVANCE(365); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\n') SKIP(338); + if (lookahead == '\r') SKIP(111); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(114); - if (lookahead == '(') ADVANCE(405); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') SKIP(117); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252); + if (lookahead == '\n') SKIP(234); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(342); - if (lookahead == '(') ADVANCE(405); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') SKIP(117); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252); + if (lookahead == '\n') SKIP(234); + if (lookahead == '\r') SKIP(113); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(342); - if (lookahead == '/') ADVANCE(370); - if (lookahead == '\\') ADVANCE(365); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(264); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\n') SKIP(304); END_STATE(); case 116: - if (lookahead == '\n') SKIP(252); + if (lookahead == '\n') SKIP(304); + if (lookahead == '\r') SKIP(115); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 117: - if (lookahead == '\n') SKIP(252); - if (lookahead == '\r') SKIP(116); + if (lookahead == '\n') SKIP(296); END_STATE(); case 118: - if (lookahead == '\n') SKIP(164); + if (lookahead == '\n') SKIP(296); + if (lookahead == '\r') SKIP(117); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 119: - if (lookahead == '\n') SKIP(164); - if (lookahead == '\r') SKIP(118); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(307); END_STATE(); case 120: - if (lookahead == '\n') SKIP(168); + if (lookahead == '\n') SKIP(307); + if (lookahead == '\r') SKIP(119); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 121: - if (lookahead == '\n') SKIP(168); - if (lookahead == '\r') SKIP(120); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(341); END_STATE(); case 122: - if (lookahead == '\n') SKIP(203); + if (lookahead == '\n') SKIP(341); + if (lookahead == '\r') SKIP(121); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 123: - if (lookahead == '\n') SKIP(203); - if (lookahead == '\r') SKIP(122); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(337); END_STATE(); case 124: - if (lookahead == '\n') SKIP(204); + if (lookahead == '\n') SKIP(337); + if (lookahead == '\r') SKIP(123); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 125: - if (lookahead == '\n') SKIP(204); - if (lookahead == '\r') SKIP(124); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(313); END_STATE(); case 126: - if (lookahead == '\n') SKIP(199); + if (lookahead == '\n') SKIP(313); + if (lookahead == '\r') SKIP(125); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 127: - if (lookahead == '\n') SKIP(199); - if (lookahead == '\r') SKIP(126); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(342); END_STATE(); case 128: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(342); + if (lookahead == '\r') SKIP(127); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 129: - if (lookahead == '\n') SKIP(231); - if (lookahead == '\r') SKIP(128); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(348); END_STATE(); case 130: - if (lookahead == '\n') SKIP(182); + if (lookahead == '\n') SKIP(348); + if (lookahead == '\r') SKIP(129); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 131: - if (lookahead == '\n') SKIP(182); - if (lookahead == '\r') SKIP(130); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(343); END_STATE(); case 132: - if (lookahead == '\n') SKIP(212); + if (lookahead == '\n') SKIP(343); + if (lookahead == '\r') SKIP(131); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 133: - if (lookahead == '\n') SKIP(212); - if (lookahead == '\r') SKIP(132); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(242); END_STATE(); case 134: - if (lookahead == '\n') SKIP(228); + if (lookahead == '\n') SKIP(242); + if (lookahead == '\r') SKIP(133); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 135: - if (lookahead == '\n') SKIP(228); - if (lookahead == '\r') SKIP(134); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') SKIP(137); END_STATE(); case 136: - if (lookahead == '\n') SKIP(192); + if (lookahead == '\n') SKIP(137); + if (lookahead == '\r') SKIP(135); END_STATE(); case 137: - if (lookahead == '\n') SKIP(192); - if (lookahead == '\r') SKIP(136); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + ADVANCE_MAP( + '\n', 448, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 518, + '-', 508, + '/', 527, + '<', 555, + '=', 373, + '>', 546, + ); + if (lookahead == '\\') SKIP(136); + if (lookahead == '^') ADVANCE(536); + if (lookahead == '|') ADVANCE(535); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); END_STATE(); case 138: - if (lookahead == '\n') SKIP(201); + if (lookahead == '\n') SKIP(347); END_STATE(); case 139: - if (lookahead == '\n') SKIP(201); + if (lookahead == '\n') SKIP(347); if (lookahead == '\r') SKIP(138); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 140: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(329); END_STATE(); case 141: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(329); if (lookahead == '\r') SKIP(140); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 142: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(330); END_STATE(); case 143: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(330); if (lookahead == '\r') SKIP(142); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 144: - if (lookahead == '\n') SKIP(216); + if (lookahead == '\n') SKIP(331); + if (lookahead == '"') ADVANCE(632); + if (lookahead == '/') ADVANCE(633); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(636); + if (lookahead != 0) ADVANCE(637); END_STATE(); case 145: - if (lookahead == '\n') SKIP(216); - if (lookahead == '\r') SKIP(144); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') ADVANCE(639); + if (lookahead == '\r') ADVANCE(638); + if (lookahead == 'U') ADVANCE(435); + if (lookahead == 'u') ADVANCE(427); + if (lookahead == 'x') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); + if (lookahead != 0) ADVANCE(638); END_STATE(); case 146: - if (lookahead == '\n') SKIP(165); + if (lookahead == '\n') SKIP(344); + if (lookahead == '\'') ADVANCE(623); + if (lookahead == '/') ADVANCE(626); + if (lookahead == '\\') ADVANCE(625); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(627); + if (lookahead != 0) ADVANCE(624); END_STATE(); case 147: - if (lookahead == '\n') SKIP(165); - if (lookahead == '\r') SKIP(146); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '(') ADVANCE(443); + if (lookahead == '/') ADVANCE(469); + if (lookahead == '\\') ADVANCE(464); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(361); + if (lookahead != 0) ADVANCE(471); END_STATE(); case 148: - if (lookahead == '\n') SKIP(197); + if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\r') ADVANCE(151); + if (lookahead == '/') ADVANCE(469); + if (lookahead == '\\') ADVANCE(464); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(361); + if (lookahead != 0) ADVANCE(471); END_STATE(); case 149: - if (lookahead == '\n') SKIP(197); - if (lookahead == '\r') SKIP(148); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\r') ADVANCE(150); + if (lookahead == '(') ADVANCE(504); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '\\') SKIP(153); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(349); END_STATE(); case 150: - if (lookahead == '\n') SKIP(207); + if (lookahead == '\n') ADVANCE(441); + if (lookahead == '(') ADVANCE(504); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '\\') SKIP(153); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(349); END_STATE(); case 151: - if (lookahead == '\n') SKIP(207); - if (lookahead == '\r') SKIP(150); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == '\n') ADVANCE(441); + if (lookahead == '/') ADVANCE(469); + if (lookahead == '\\') ADVANCE(464); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(361); + if (lookahead != 0) ADVANCE(471); END_STATE(); case 152: - if (lookahead == '\n') SKIP(219); + if (lookahead == '\n') SKIP(349); END_STATE(); case 153: - if (lookahead == '\n') SKIP(219); + if (lookahead == '\n') SKIP(349); if (lookahead == '\r') SKIP(152); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); END_STATE(); case 154: - if (lookahead == '\n') SKIP(224); + if (lookahead == '\n') SKIP(226); END_STATE(); case 155: - if (lookahead == '\n') SKIP(224); + if (lookahead == '\n') SKIP(226); if (lookahead == '\r') SKIP(154); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 156: - if (lookahead == '\n') SKIP(217); + if (lookahead == '\n') SKIP(231); END_STATE(); case 157: - if (lookahead == '\n') SKIP(217); + if (lookahead == '\n') SKIP(231); if (lookahead == '\r') SKIP(156); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 158: - if (lookahead == '\n') SKIP(205); + if (lookahead == '\n') SKIP(232); END_STATE(); case 159: - if (lookahead == '\n') SKIP(205); + if (lookahead == '\n') SKIP(232); if (lookahead == '\r') SKIP(158); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 160: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(298); END_STATE(); case 161: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(298); if (lookahead == '\r') SKIP(160); - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 162: - if (lookahead == '\r') ADVANCE(640); - if (lookahead == '\\') ADVANCE(634); - if (lookahead != 0) ADVANCE(639); + if (lookahead == '\n') SKIP(272); END_STATE(); case 163: + if (lookahead == '\n') SKIP(272); + if (lookahead == '\r') SKIP(162); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 164: + if (lookahead == '\n') SKIP(250); + END_STATE(); + case 165: + if (lookahead == '\n') SKIP(250); + if (lookahead == '\r') SKIP(164); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 166: + if (lookahead == '\n') SKIP(282); + END_STATE(); + case 167: + if (lookahead == '\n') SKIP(282); + if (lookahead == '\r') SKIP(166); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 168: + if (lookahead == '\n') SKIP(302); + END_STATE(); + case 169: + if (lookahead == '\n') SKIP(302); + if (lookahead == '\r') SKIP(168); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 170: + if (lookahead == '\n') SKIP(325); + END_STATE(); + case 171: + if (lookahead == '\n') SKIP(325); + if (lookahead == '\r') SKIP(170); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 172: + if (lookahead == '\n') SKIP(321); + END_STATE(); + case 173: + if (lookahead == '\n') SKIP(321); + if (lookahead == '\r') SKIP(172); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 174: + if (lookahead == '\n') SKIP(312); + END_STATE(); + case 175: + if (lookahead == '\n') SKIP(312); + if (lookahead == '\r') SKIP(174); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 176: + if (lookahead == '\n') SKIP(316); + END_STATE(); + case 177: + if (lookahead == '\n') SKIP(316); + if (lookahead == '\r') SKIP(176); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 178: + if (lookahead == '\n') SKIP(246); + END_STATE(); + case 179: + if (lookahead == '\n') SKIP(246); + if (lookahead == '\r') SKIP(178); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 180: + if (lookahead == '\n') SKIP(263); + END_STATE(); + case 181: + if (lookahead == '\n') SKIP(263); + if (lookahead == '\r') SKIP(180); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 182: + if (lookahead == '\n') SKIP(261); + END_STATE(); + case 183: + if (lookahead == '\n') SKIP(261); + if (lookahead == '\r') SKIP(182); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 184: + if (lookahead == '\n') SKIP(275); + END_STATE(); + case 185: + if (lookahead == '\n') SKIP(275); + if (lookahead == '\r') SKIP(184); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 186: + if (lookahead == '\n') SKIP(277); + END_STATE(); + case 187: + if (lookahead == '\n') SKIP(277); + if (lookahead == '\r') SKIP(186); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 188: + if (lookahead == '\n') SKIP(318); + END_STATE(); + case 189: + if (lookahead == '\n') SKIP(318); + if (lookahead == '\r') SKIP(188); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 190: + if (lookahead == '\n') SKIP(319); + END_STATE(); + case 191: + if (lookahead == '\n') SKIP(319); + if (lookahead == '\r') SKIP(190); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 192: + if (lookahead == '\n') SKIP(294); + END_STATE(); + case 193: + if (lookahead == '\n') SKIP(294); + if (lookahead == '\r') SKIP(192); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 194: + if (lookahead == '\n') SKIP(308); + END_STATE(); + case 195: + if (lookahead == '\n') SKIP(308); + if (lookahead == '\r') SKIP(194); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 196: + if (lookahead == '\n') SKIP(227); + END_STATE(); + case 197: + if (lookahead == '\n') SKIP(227); + if (lookahead == '\r') SKIP(196); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 198: + if (lookahead == '\n') SKIP(290); + END_STATE(); + case 199: + if (lookahead == '\n') SKIP(290); + if (lookahead == '\r') SKIP(198); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 200: + if (lookahead == '\n') SKIP(269); + END_STATE(); + case 201: + if (lookahead == '\n') SKIP(269); + if (lookahead == '\r') SKIP(200); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 202: + if (lookahead == '\n') SKIP(320); + END_STATE(); + case 203: + if (lookahead == '\n') SKIP(320); + if (lookahead == '\r') SKIP(202); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 204: + if (lookahead == '\n') SKIP(311); + END_STATE(); + case 205: + if (lookahead == '\n') SKIP(311); + if (lookahead == '\r') SKIP(204); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 206: + if (lookahead == '\n') SKIP(285); + END_STATE(); + case 207: + if (lookahead == '\n') SKIP(285); + if (lookahead == '\r') SKIP(206); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 208: + if (lookahead == '\n') SKIP(295); + END_STATE(); + case 209: + if (lookahead == '\n') SKIP(295); + if (lookahead == '\r') SKIP(208); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 210: + if (lookahead == '\n') SKIP(323); + END_STATE(); + case 211: + if (lookahead == '\n') SKIP(323); + if (lookahead == '\r') SKIP(210); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 212: + if (lookahead == '\n') SKIP(280); + END_STATE(); + case 213: + if (lookahead == '\n') SKIP(280); + if (lookahead == '\r') SKIP(212); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 214: + if (lookahead == '\n') SKIP(327); + END_STATE(); + case 215: + if (lookahead == '\n') SKIP(327); + if (lookahead == '\r') SKIP(214); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 216: + if (lookahead == '\n') SKIP(281); + END_STATE(); + case 217: + if (lookahead == '\n') SKIP(281); + if (lookahead == '\r') SKIP(216); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 218: + if (lookahead == '\n') SKIP(278); + END_STATE(); + case 219: + if (lookahead == '\n') SKIP(278); + if (lookahead == '\r') SKIP(218); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 220: + if (lookahead == '\n') SKIP(279); + END_STATE(); + case 221: + if (lookahead == '\n') SKIP(279); + if (lookahead == '\r') SKIP(220); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 222: + if (lookahead == '\n') SKIP(283); + END_STATE(); + case 223: + if (lookahead == '\n') SKIP(283); + if (lookahead == '\r') SKIP(222); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 224: + if (lookahead == '\r') ADVANCE(747); + if (lookahead == '\\') ADVANCE(741); + if (lookahead != 0) ADVANCE(746); + END_STATE(); + case 225: ADVANCE_MAP( - '!', 407, - '"', 525, - '#', 286, - '%', 431, - '&', 441, - '\'', 516, - '(', 405, - ')', 347, - '*', 427, - '+', 421, - ',', 346, - '-', 410, - '.', 491, - '/', 429, - '0', 498, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 469, + '!', 506, + '"', 632, + '#', 385, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + ')', 446, + '*', 526, + '+', 520, + ',', 445, + '-', 509, + '.', 597, + '/', 528, + '0', 605, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 573, '\\', 2, - ']', 471, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + ']', 577, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(225); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 164: + case 226: ADVANCE_MAP( - '!', 407, - '"', 525, - '#', 295, - '%', 431, - '&', 441, - '\'', 516, - '(', 405, - ')', 347, - '*', 427, - '+', 421, - ',', 346, - '-', 411, - '.', 491, - '/', 429, - '0', 498, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, - '\\', 119, - ']', 471, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + '!', 506, + '"', 632, + '#', 394, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + ')', 446, + '*', 526, + '+', 520, + ',', 445, + '-', 510, + '.', 597, + '/', 528, + '0', 605, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, + '\\', 155, + ']', 383, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(226); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 165: + case 227: ADVANCE_MAP( - '!', 407, - '"', 525, - '#', 295, - '%', 430, - '&', 440, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - ',', 346, - '-', 412, - '.', 491, - '/', 428, - '0', 498, - ':', 461, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, - '\\', 147, - ']', 471, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 436, - '}', 466, - '~', 408, + '!', 506, + '"', 632, + '#', 394, + '%', 529, + '&', 541, + '\'', 623, + '(', 504, + ')', 446, + '*', 525, + '+', 521, + ',', 445, + '-', 511, + '.', 597, + '/', 527, + '0', 605, + ':', 563, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, + '\\', 197, + ']', 383, + '^', 539, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 535, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(227); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 166: + case 228: ADVANCE_MAP( - '!', 407, - '"', 525, - '%', 431, - '&', 441, - '\'', 516, - '(', 405, - ')', 347, - '*', 427, - '+', 421, - ',', 346, - '-', 410, - '.', 491, - '/', 429, - '0', 498, - ':', 271, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, + '!', 506, + '"', 632, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + ')', 446, + '*', 526, + '+', 520, + ',', 445, + '-', 509, + '.', 597, + '/', 528, + '0', 605, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, '\\', 16, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '~', 408, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 167: + case 229: ADVANCE_MAP( - '!', 407, - '"', 525, - '%', 431, - '&', 441, - '\'', 516, - '(', 405, - '*', 427, - '+', 421, - ',', 346, - '-', 411, - '.', 491, - '/', 429, - '0', 498, - ':', 271, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, + '!', 506, + '"', 632, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + '*', 526, + '+', 520, + ',', 445, + '-', 510, + '.', 597, + '/', 528, + '0', 605, + ':', 368, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, '\\', 18, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '~', 408, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 168: + case 230: ADVANCE_MAP( - '!', 407, - '"', 525, - '%', 430, - '&', 440, - '\'', 516, - '(', 405, - '*', 426, - '+', 422, - ',', 346, - '-', 412, - '.', 491, - '/', 428, - '0', 498, - ':', 271, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, - '\\', 121, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 436, - '~', 408, + '!', 506, + '"', 632, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + '*', 526, + '+', 520, + ',', 445, + '-', 510, + '.', 597, + '/', 528, + '0', 605, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, + '\\', 20, + ']', 577, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(230); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 169: + case 231: ADVANCE_MAP( - '!', 407, - '"', 238, - '%', 431, - '&', 441, - '(', 253, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '/', 429, - ':', 271, - '<', 451, - '=', 473, - '>', 446, - '[', 283, - '\\', 26, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '|', 435, - '~', 408, + '!', 506, + '"', 632, + '%', 529, + '&', 541, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + ',', 445, + '-', 511, + '.', 597, + '/', 527, + '0', 605, + ':', 368, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, + '\\', 157, + '^', 539, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 535, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 170: + case 232: ADVANCE_MAP( - '!', 407, - '"', 238, - '%', 431, - '&', 441, - '(', 253, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '[', 284, - '\\', 80, - '^', 438, - '|', 435, - '~', 408, + '!', 506, + '"', 632, + '%', 529, + '&', 541, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + ',', 445, + '-', 511, + '.', 597, + '/', 527, + '0', 605, + ':', 368, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, + '\\', 159, + ']', 577, + '^', 539, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 535, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 171: + case 233: + ADVANCE_MAP( + '!', 506, + '"', 332, + '%', 530, + '&', 542, + '(', 350, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '[', 370, + '\\', 28, + '^', 537, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '|', 534, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(233); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 234: + ADVANCE_MAP( + '!', 506, + '"', 332, + '%', 530, + '&', 542, + '(', 350, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '[', 382, + '\\', 114, + '^', 537, + '|', 534, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(234); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 235: ADVANCE_MAP( - '!', 406, - '"', 525, - '#', 286, - '&', 440, - '\'', 516, - '(', 405, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 315, - '/', 255, - '0', 498, - ':', 271, - ';', 459, - '<', 272, - '>', 275, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '#', 385, + '&', 541, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + ',', 445, + '-', 512, + '.', 414, + '/', 352, + '0', 605, + ':', 368, + ';', 560, + '<', 371, + '>', 374, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 6, - ']', 285, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 434, - '~', 408, + ']', 383, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 533, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(235); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 172: + case 236: ADVANCE_MAP( - '!', 406, - '"', 525, - '#', 290, - '%', 430, - '&', 440, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 492, - '/', 428, - '0', 498, - ':', 271, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '#', 389, + '%', 529, + '&', 541, + '\'', 623, + '(', 504, + ')', 446, + '*', 525, + '+', 521, + ',', 445, + '-', 512, + '.', 599, + '/', 527, + '0', 605, + ':', 368, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 4, - ']', 471, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 309, - '}', 466, - '~', 408, + ']', 577, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 408, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(236); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 173: + case 237: ADVANCE_MAP( - '!', 406, - '"', 525, - '#', 294, - '&', 439, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - '-', 413, - '.', 261, - '/', 255, - '0', 498, - ':', 271, - ';', 459, - '>', 277, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '#', 393, + '&', 540, + '\'', 623, + '(', 504, + ')', 446, + '*', 525, + '+', 521, + '-', 512, + '.', 358, + '/', 352, + '0', 605, + ':', 368, + ';', 560, + '>', 376, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 10, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '~', 408, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 174: + case 238: ADVANCE_MAP( - '!', 406, - '"', 525, - '#', 288, - '&', 440, - '\'', 516, - '(', 405, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 315, - '/', 255, - '0', 498, - ':', 271, - ';', 459, - '>', 444, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '#', 387, + '&', 541, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + ',', 445, + '-', 512, + '.', 414, + '/', 352, + '0', 605, + ':', 368, + ';', 560, + '>', 545, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 8, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '~', 408, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 175: + case 239: ADVANCE_MAP( - '!', 406, - '"', 525, - '&', 440, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 492, - '/', 255, - '0', 498, - ':', 271, - ';', 459, - '=', 472, - '>', 641, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, + '!', 505, + '"', 632, + '&', 541, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + '-', 512, + '.', 358, + '/', 352, + '0', 605, + ':', 368, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, '\\', 12, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '~', 408, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 176: + case 240: ADVANCE_MAP( - '!', 406, - '"', 525, - '&', 439, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 492, - '/', 255, - '0', 498, - ':', 461, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 467, + '!', 505, + '"', 632, + '&', 540, + '\'', 623, + '(', 504, + ')', 446, + '*', 525, + '+', 521, + ',', 445, + '-', 512, + '.', 599, + '/', 352, + '0', 605, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 571, '\\', 14, - ']', 471, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '}', 466, - '~', 408, + ']', 577, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 177: + case 241: ADVANCE_MAP( - '!', 406, - '"', 525, - '&', 439, - '\'', 516, - '(', 405, - '*', 426, - '+', 422, - '-', 412, - '.', 315, - '/', 255, - '0', 498, - ':', 271, - '<', 450, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '&', 540, + '\'', 623, + '(', 504, + '*', 525, + '+', 521, + '-', 511, + '.', 414, + '/', 352, + '0', 605, + ':', 368, + '<', 551, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 32, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '~', 408, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(177); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 178: + case 242: ADVANCE_MAP( - '!', 406, - '\'', 516, - '(', 405, - ')', 347, - '+', 424, - '-', 417, - '.', 315, - '/', 255, - '0', 498, - 'L', 560, - 'U', 561, - '\\', 96, - 'u', 562, - '~', 408, + '!', 505, + '\'', 623, + '(', 504, + ')', 446, + '+', 523, + '-', 516, + '.', 414, + '/', 352, + '0', 605, + 'L', 667, + 'U', 668, + '\\', 134, + 'u', 669, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(242); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 179: + case 243: ADVANCE_MAP( - '!', 273, - '"', 525, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, + '!', 372, + '"', 632, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, '\\', 44, - ']', 471, - '^', 438, - 'u', 550, - '{', 465, - '|', 435, - '}', 466, + ']', 383, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(243); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 180: + case 244: ADVANCE_MAP( - '!', 273, - '"', 525, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 56, - ']', 471, - '^', 438, - 'u', 550, - '|', 435, - '}', 466, + '!', 372, + '"', 632, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 76, + ']', 383, + '^', 537, + 'u', 657, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(244); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 181: + case 245: ADVANCE_MAP( - '!', 273, - '"', 525, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 652, - 'R', 653, - 'U', 654, - '[', 467, - '\\', 56, - ']', 471, - '^', 438, - 'u', 655, - '|', 435, - '}', 466, + '!', 372, + '"', 632, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 76, + ']', 383, + '^', 537, + 'u', 765, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180); + lookahead == ' ') SKIP(244); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 182: + case 246: ADVANCE_MAP( - '!', 273, - '"', 525, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 131, - ']', 471, - '^', 437, - 'u', 550, - '|', 436, - '}', 466, + '!', 372, + '"', 632, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 179, + ']', 383, + '^', 536, + 'u', 657, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(246); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 183: + case 247: ADVANCE_MAP( - '!', 273, - '"', 525, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - 'L', 652, - 'R', 653, - 'U', 654, - '[', 467, - '\\', 131, - ']', 471, - '^', 437, - 'u', 655, - '|', 436, - '}', 466, + '!', 372, + '"', 632, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 179, + ']', 383, + '^', 536, + 'u', 765, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182); + lookahead == ' ') SKIP(246); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 184: + case 248: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - ':', 271, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 468, - '\\', 30, - '^', 438, - 'u', 550, - '{', 465, - '|', 435, - '~', 408, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 572, + '\\', 34, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(248); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 185: + case 249: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - ':', 271, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 40, - '^', 438, - 'u', 550, - '{', 465, - '|', 435, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 574, + '\\', 48, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(185); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(249); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 186: + case 250: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 66, - '^', 438, - 'u', 550, - '|', 435, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 165, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(250); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 187: + case 251: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 652, - 'R', 653, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, 'U', 654, - '[', 467, - '\\', 66, - '^', 438, - 'u', 655, - '|', 435, + '[', 570, + '\\', 84, + '^', 537, + 'u', 657, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(251); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 252: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 84, + '^', 537, + 'u', 765, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186); + lookahead == ' ') SKIP(251); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 188: + case 253: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 468, - '\\', 28, - '^', 438, - 'u', 550, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 562, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 572, + '\\', 30, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(188); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(253); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 189: + case 254: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 271, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 42, - '^', 438, - 'u', 550, - '{', 465, - '|', 435, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 368, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 574, + '\\', 82, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(189); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(254); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 190: + case 255: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 68, - '^', 438, - 'u', 550, - '|', 435, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 56, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(255); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 191: + case 256: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'L', 652, - 'R', 653, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, 'U', 654, - '[', 467, - '\\', 68, - '^', 438, - 'u', 655, - '|', 435, + '[', 570, + '\\', 54, + ']', 577, + '^', 537, + 'u', 657, + '{', 568, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(256); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 257: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 92, + '^', 537, + 'u', 657, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(257); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 258: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 92, + '^', 537, + 'u', 765, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190); + lookahead == ' ') SKIP(257); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 192: + case 259: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - 'L', 543, - 'R', 545, - 'U', 547, - '[', 467, - '\\', 137, - '^', 437, - 'u', 550, - '|', 436, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 88, + ']', 577, + '^', 537, + 'u', 657, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(259); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 193: + case 260: ADVANCE_MAP( - '!', 273, - '"', 525, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - 'L', 652, - 'R', 653, + '!', 372, + '"', 632, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 88, + ']', 577, + '^', 537, + 'u', 765, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(259); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 261: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + 'L', 650, + 'R', 652, 'U', 654, - '[', 467, - '\\', 137, - '^', 437, - 'u', 655, - '|', 436, + '[', 570, + '\\', 183, + '^', 536, + 'u', 657, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(261); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 262: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 183, + '^', 536, + 'u', 765, + '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(261); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 194: + case 263: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'L', 650, + 'R', 652, + 'U', 654, + '[', 570, + '\\', 181, + ']', 577, + '^', 536, + 'u', 657, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(263); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 264: + ADVANCE_MAP( + '!', 372, + '"', 632, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + 'L', 762, + 'R', 763, + 'U', 764, + '[', 570, + '\\', 181, + ']', 577, + '^', 536, + 'u', 765, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(263); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 265: + ADVANCE_MAP( + '!', 372, + '#', 405, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 562, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 572, + '\\', 38, + ']', 577, + '^', 537, + '{', 568, + '|', 534, + '}', 569, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(265); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 266: ADVANCE_MAP( - '!', 273, - '#', 306, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 461, - ';', 459, - '<', 453, - '=', 473, - '>', 445, - '?', 476, - '[', 468, + '!', 372, + '#', 390, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 518, + ',', 445, + '-', 508, + '/', 527, + ':', 368, + ';', 560, + '<', 555, + '=', 373, + '>', 546, + '[', 572, + '\\', 26, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '|', 535, + '}', 569, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(266); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 267: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '0', 749, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 574, '\\', 36, - ']', 471, - '^', 437, - '{', 465, - '|', 436, - '}', 466, - '~', 408, + ']', 383, + '^', 537, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(267); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 195: + case 268: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '0', 642, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 468, - '\\', 34, - ']', 471, - '^', 438, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 571, + '\\', 96, + ']', 577, + '^', 537, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(195); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(268); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 196: + case 269: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 48, - ']', 471, - '^', 438, - '{', 465, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 201, + ']', 383, + '^', 537, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(269); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 197: + case 270: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 468, - '\\', 149, - ']', 471, - '^', 438, - '{', 465, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 562, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 60, + ']', 577, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(270); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 198: + case 271: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 46, - ']', 471, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 574, + '\\', 42, + ']', 577, + '^', 537, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(271); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 199: + case 272: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 127, - ']', 471, - '^', 438, - '{', 465, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 163, + ']', 383, + '^', 537, + '{', 568, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(272); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 200: + case 273: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 139, - ']', 471, - '^', 438, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 52, + ']', 383, + '^', 537, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 534, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(273); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 274: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 185, + ']', 383, + '^', 537, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201); + lookahead == ' ') SKIP(275); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 201: + case 275: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 139, - ']', 471, - '^', 438, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 185, + ']', 383, + '^', 537, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(275); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 202: + case 276: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 470, - '\\', 70, - ']', 471, - '^', 438, - '|', 435, - '}', 466, + '!', 372, + '#', 394, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 564, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 576, + '\\', 94, + ']', 383, + '^', 537, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(276); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 203: + case 277: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 461, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 123, - ']', 471, - '^', 437, - '{', 465, - '|', 436, - '}', 466, - '~', 408, + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 563, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 571, + '\\', 187, + ']', 577, + '^', 536, + '|', 535, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(277); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 204: + case 278: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 125, - ']', 471, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 436, - '}', 466, + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 563, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 219, + ']', 577, + '^', 536, + '{', 568, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(278); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 205: + case 279: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 159, - ']', 471, - '^', 437, - '{', 465, - '|', 436, - '}', 466, + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 563, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 221, + ']', 383, + '^', 536, + '{', 568, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(279); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 206: + case 280: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 574, + '\\', 213, + ']', 383, + '^', 536, + '{', 568, + '|', 535, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(280); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 281: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 217, + ']', 383, + '^', 536, + '{', 568, + '|', 535, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(281); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 282: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 167, + ']', 383, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 535, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(282); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 283: + ADVANCE_MAP( + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 223, + ']', 577, + '^', 536, + '{', 568, + '|', 535, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(283); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 284: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 151, - ']', 471, - '^', 437, - '|', 436, - '}', 466, + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 207, + ']', 383, + '^', 536, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(285); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 207: + case 285: ADVANCE_MAP( - '!', 273, - '#', 295, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 151, - ']', 471, - '^', 437, - '|', 436, - '}', 466, + '!', 372, + '#', 394, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 564, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 207, + ']', 383, + '^', 536, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(207); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(285); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 208: + case 286: ADVANCE_MAP( - '!', 273, - '#', 287, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 271, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 468, - '\\', 20, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 436, - '~', 408, + '!', 372, + '#', 386, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 368, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 572, + '\\', 22, + ']', 383, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 535, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(286); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 209: + case 287: ADVANCE_MAP( - '!', 273, - '#', 289, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 419, - ',', 346, - '-', 409, - '/', 428, - ':', 271, - ';', 459, - '<', 454, - '=', 274, - '>', 445, - '[', 468, - '\\', 24, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '|', 436, - '~', 408, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 572, + '\\', 46, + '^', 537, + '{', 568, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 210: + case 288: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 54, - '^', 438, - '{', 465, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 571, + '\\', 102, + '^', 537, + '|', 534, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(288); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 211: + case 289: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - ':', 271, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 468, - '\\', 38, - '^', 438, - '{', 465, - '|', 435, - '~', 408, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 562, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 574, + '\\', 40, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(289); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 212: + case 290: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - ':', 460, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 133, - '^', 438, - '{', 465, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 562, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 199, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(290); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 213: + case 291: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 469, - '\\', 82, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + ':', 561, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 72, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(213); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(291); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 214: + case 292: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 50, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 62, + '^', 537, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(292); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 215: + case 293: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 145, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 193, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); + lookahead == ' ') SKIP(294); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 216: + case 294: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 467, - '\\', 145, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 193, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(294); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 217: + case 295: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 414, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 470, - '\\', 157, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 576, + '\\', 209, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(217); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(295); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 218: + case 296: + ADVANCE_MAP( + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 513, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 575, + '\\', 118, + '^', 537, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(296); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 297: + ADVANCE_MAP( + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 562, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 574, + '\\', 100, + '^', 537, + '{', 568, + '|', 534, + '}', 569, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(297); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 298: + ADVANCE_MAP( + '!', 372, + '%', 530, + '&', 542, + '(', 504, + ')', 446, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 561, + ';', 560, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 574, + '\\', 161, + '^', 537, + '{', 568, + '|', 534, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(298); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 299: + ADVANCE_MAP( + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 571, + '\\', 104, + '^', 537, + '|', 534, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(299); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 300: + ADVANCE_MAP( + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 368, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 571, + '\\', 108, + ']', 383, + '^', 537, + '|', 534, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(300); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 301: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - ')', 347, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 461, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 467, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 562, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 570, '\\', 58, - '^', 438, - '{', 465, - '|', 435, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(301); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 219: + case 302: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ':', 460, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 467, - '\\', 153, - '^', 438, - '{', 465, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 561, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 570, + '\\', 169, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(302); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 220: + case 303: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - ';', 459, - '<', 451, - '=', 473, - '>', 446, - '?', 476, - '[', 469, - '\\', 84, - '^', 438, - '|', 435, - '}', 466, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ':', 561, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 74, + ']', 577, + '^', 537, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(220); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(303); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 221: + case 304: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 468, - '\\', 78, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + ';', 560, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 575, + '\\', 116, + '^', 537, + '|', 534, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(221); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(304); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 222: + case 305: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 467, - '\\', 52, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 570, + '\\', 68, + '^', 537, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(305); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 223: + case 306: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 467, - '\\', 155, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 570, + '\\', 120, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224); + lookahead == ' ') SKIP(307); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 224: + case 307: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 467, - '\\', 155, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 570, + '\\', 120, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(307); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 225: + case 308: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '(', 405, - '*', 427, - '+', 423, - ',', 346, - '-', 415, - '.', 490, - '/', 429, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - '[', 470, - '\\', 143, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + '[', 576, + '\\', 195, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(308); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 226: + case 309: ADVANCE_MAP( - '!', 273, - '%', 431, - '&', 441, - '*', 427, - '+', 425, - ',', 346, - '-', 418, - '.', 254, - '/', 429, - '<', 452, - '=', 473, - '>', 446, - '\\', 90, - '^', 438, - '|', 435, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 64, + ']', 577, + '^', 537, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(309); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 227: + case 310: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 461, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 60, - ']', 471, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 436, - '}', 466, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 205, + ']', 577, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(311); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 228: + case 311: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 271, - ';', 459, - '<', 453, - '=', 274, - '>', 445, - '?', 476, - '[', 467, - '\\', 135, - ']', 285, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 436, - '}', 466, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 570, + '\\', 205, + ']', 577, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(311); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 229: + case 312: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 461, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - '[', 467, - '\\', 141, - '^', 437, - '{', 465, - '|', 436, + '!', 372, + '%', 530, + '&', 542, + '(', 504, + '*', 526, + '+', 522, + ',', 445, + '-', 514, + '.', 596, + '/', 528, + '<', 552, + '=', 579, + '>', 547, + '?', 582, + '[', 576, + '\\', 175, + ']', 577, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(312); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 230: + case 313: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - ':', 460, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - '[', 467, - '\\', 72, - '^', 437, - '{', 465, - '|', 436, + '!', 372, + '%', 530, + '&', 542, + '*', 526, + '+', 524, + ',', 445, + '-', 517, + '.', 351, + '/', 528, + '<', 553, + '=', 579, + '>', 547, + '\\', 126, + '^', 537, + '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(313); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 231: + case 314: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - '[', 467, - '\\', 129, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 436, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 563, + ';', 560, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 80, + ']', 383, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 535, + '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 232: + case 315: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - '[', 467, - '\\', 161, - '^', 437, - '|', 436, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 562, + ';', 560, + '<', 554, + '=', 579, + '>', 546, + '?', 582, + '[', 572, + '\\', 50, + ']', 577, + '^', 536, + '{', 568, + '|', 535, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233); + lookahead == ' ') SKIP(315); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 316: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 562, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 570, + '\\', 177, + '^', 536, + '{', 568, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(316); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 317: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 368, + ';', 560, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 574, + '\\', 66, + '^', 536, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(317); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 318: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 368, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 571, + '\\', 189, + '^', 536, + '|', 535, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(318); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 319: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 368, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 571, + '\\', 191, + ']', 383, + '^', 536, + '|', 535, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(319); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 320: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + ':', 561, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 570, + '\\', 203, + '^', 536, + '{', 568, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 321: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 570, + '\\', 173, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(321); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 322: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 570, + '\\', 211, + '^', 536, + '|', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(323); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 233: + case 323: ADVANCE_MAP( - '!', 273, - '%', 430, - '&', 440, - '(', 405, - '*', 426, - '+', 420, - ',', 346, - '-', 416, - '.', 490, - '/', 428, - '<', 453, - '=', 274, - '>', 641, - '?', 476, - '[', 467, - '\\', 161, - '^', 437, - '|', 436, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 748, + '?', 582, + '[', 570, + '\\', 211, + '^', 536, + '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(323); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 234: + case 324: ADVANCE_MAP( - '"', 525, - '&', 440, - '(', 405, - '*', 426, - '/', 255, - ':', 271, - 'L', 544, - 'U', 548, - '[', 468, - '\\', 74, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 551, - 'v', 611, - '~', 408, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 574, + '\\', 70, + ']', 577, + '^', 536, + '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(324); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 235: + case 325: ADVANCE_MAP( - '"', 525, - ')', 347, - ',', 346, - '/', 255, - ':', 460, - 'L', 543, - 'R', 545, - 'U', 547, - '\\', 105, - 'u', 550, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 171, + ']', 577, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(325); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 236: + case 326: ADVANCE_MAP( - '"', 525, - '/', 255, - ':', 460, - '<', 279, - 'L', 544, - 'U', 548, - '\\', 107, - 'u', 552, + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 215, + ']', 577, + '^', 536, + '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(327); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 237: - if (lookahead == '"') ADVANCE(525); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') ADVANCE(109); + case 327: + ADVANCE_MAP( + '!', 372, + '%', 529, + '&', 541, + '(', 504, + '*', 525, + '+', 519, + ',', 445, + '-', 515, + '.', 596, + '/', 527, + '<', 554, + '=', 373, + '>', 546, + '?', 582, + '[', 570, + '\\', 215, + ']', 577, + '^', 536, + '|', 535, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237); + lookahead == ' ') SKIP(327); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 238: - if (lookahead == '"') ADVANCE(651); + case 328: + ADVANCE_MAP( + '"', 632, + '&', 541, + '(', 504, + '*', 525, + '/', 352, + ':', 368, + 'L', 651, + 'U', 655, + '[', 572, + '\\', 106, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 658, + 'v', 718, + '~', 507, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(328); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 239: + case 329: ADVANCE_MAP( - '#', 291, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - '+', 419, - ',', 346, - '-', 278, - '.', 260, - '/', 255, - ':', 461, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - '[', 468, - '\\', 22, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, - '|', 309, - '}', 466, - '~', 408, + '"', 632, + ')', 446, + ',', 445, + '/', 352, + ':', 561, + 'L', 650, + 'R', 652, + 'U', 654, + '\\', 141, + 'u', 657, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(239); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(329); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 240: + case 330: ADVANCE_MAP( - '#', 295, - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '-', 278, - '.', 260, - '/', 255, - ':', 461, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - '[', 468, - '\\', 62, - ']', 471, - '{', 465, - '|', 309, - '~', 408, + '"', 632, + '/', 352, + ':', 561, + '<', 378, + 'L', 651, + 'U', 655, + '\\', 143, + 'u', 659, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(330); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 241: + case 331: + if (lookahead == '"') ADVANCE(632); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(331); + END_STATE(); + case 332: + if (lookahead == '"') ADVANCE(761); + END_STATE(); + case 333: ADVANCE_MAP( - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '-', 278, - '.', 260, - '/', 255, - ':', 461, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - '[', 467, - '\\', 64, - '{', 465, - '|', 309, - '~', 408, + '#', 394, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '.', 357, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 571, + '\\', 78, + '{', 568, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(333); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 242: + case 334: ADVANCE_MAP( - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '-', 278, - '.', 260, - '/', 255, - ':', 460, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - '[', 468, - '\\', 76, - ']', 471, - '{', 465, - '|', 309, + '#', 388, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 518, + ',', 445, + '-', 508, + '.', 357, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 572, + '\\', 24, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 408, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(242); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(334); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 243: + case 335: ADVANCE_MAP( - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '-', 278, - '/', 255, - ':', 460, - ';', 459, - '=', 472, - '>', 641, - '[', 468, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '.', 357, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 572, '\\', 86, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, + '{', 568, + '|', 408, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(335); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 244: + case 336: ADVANCE_MAP( - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '.', 260, - '/', 255, - ':', 460, - ';', 459, - '=', 472, - '>', 641, - '[', 467, - '\\', 92, - '{', 465, - '|', 309, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '.', 357, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 574, + '\\', 90, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + '|', 408, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(336); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 245: + case 337: ADVANCE_MAP( - '&', 440, - '(', 405, - ')', 347, - '*', 426, - ',', 346, - '/', 255, - ';', 459, - '=', 472, - '>', 641, - '[', 467, - '\\', 88, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 606, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 'u', 599, - 'v', 611, - '{', 465, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '.', 357, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 570, + '\\', 124, + '{', 568, + '|', 408, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(337); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 246: + case 338: ADVANCE_MAP( - '&', 439, - '*', 426, - '.', 260, - '/', 255, - ':', 271, - '=', 472, - '\\', 101, - ']', 471, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '.', 357, + '/', 352, + ':', 561, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 574, + '\\', 112, + ']', 577, + '{', 568, + '|', 408, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(338); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 247: - if (lookahead == '\'') ADVANCE(516); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') ADVANCE(109); + case 339: + ADVANCE_MAP( + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '.', 357, + '/', 352, + ':', 561, + ';', 560, + '=', 578, + '>', 748, + '[', 574, + '\\', 98, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(339); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 248: - if (lookahead == '\'') ADVANCE(320); + case 340: + ADVANCE_MAP( + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '-', 377, + '/', 352, + ':', 562, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 574, + '\\', 110, + '{', 568, + '|', 408, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(340); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 341: + ADVANCE_MAP( + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '.', 598, + '/', 352, + ':', 561, + ';', 560, + '=', 578, + '>', 748, + '[', 570, + '\\', 122, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(341); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 342: + ADVANCE_MAP( + '&', 541, + '(', 504, + ')', 446, + '*', 525, + ',', 445, + '.', 357, + '/', 352, + ':', 561, + ';', 560, + '=', 578, + '>', 748, + '[', 570, + '\\', 128, + '{', 568, + '|', 408, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(342); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 343: + ADVANCE_MAP( + '&', 540, + '*', 525, + '.', 357, + '/', 352, + ':', 368, + '=', 578, + '[', 369, + '\\', 132, + ']', 577, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(343); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 344: + if (lookahead == '\'') ADVANCE(623); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '\\') ADVANCE(145); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(344); + END_STATE(); + case 345: + if (lookahead == '\'') ADVANCE(419); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(310); + lookahead == 'p') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); END_STATE(); - case 249: - if (lookahead == '\'') ADVANCE(316); - if (lookahead == '.') ADVANCE(505); + case 346: + if (lookahead == '\'') ADVANCE(415); + if (lookahead == '.') ADVANCE(612); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(310); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); + lookahead == 'e') ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(346); END_STATE(); - case 250: + case 347: ADVANCE_MAP( - '(', 405, - ')', 347, - ',', 346, - '/', 255, - ':', 460, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - '[', 469, - '\\', 103, - ']', 471, - '{', 465, + '(', 504, + ')', 446, + ',', 445, + '/', 352, + ':', 561, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + '[', 575, + '\\', 139, + ']', 577, + '{', 568, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(347); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 251: + case 348: ADVANCE_MAP( - '(', 405, - '/', 255, - ':', 271, - 'F', 568, - 'T', 572, - '[', 467, - '\\', 94, - 'f', 578, - 't', 619, - '{', 465, + '(', 504, + '/', 352, + ':', 368, + 'F', 675, + 'T', 679, + '[', 571, + '\\', 130, + 'f', 685, + 't', 726, + '{', 568, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(348); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 252: - if (lookahead == '(') ADVANCE(405); - if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') SKIP(117); + case 349: + if (lookahead == '(') ADVANCE(504); + if (lookahead == '/') ADVANCE(352); + if (lookahead == '\\') SKIP(153); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252); + lookahead == ' ') SKIP(349); END_STATE(); - case 253: - if (lookahead == ')') ADVANCE(649); + case 350: + if (lookahead == ')') ADVANCE(759); END_STATE(); - case 254: - if (lookahead == '*') ADVANCE(493); + case 351: + if (lookahead == '*') ADVANCE(600); END_STATE(); - case 255: - if (lookahead == '*') ADVANCE(258); - if (lookahead == '/') ADVANCE(639); + case 352: + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(746); END_STATE(); - case 256: - if (lookahead == '*') ADVANCE(648); + case 353: + if (lookahead == '*') ADVANCE(755); END_STATE(); - case 257: - if (lookahead == '*') ADVANCE(257); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0) ADVANCE(258); + case 354: + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(739); + if (lookahead != 0) ADVANCE(355); END_STATE(); - case 258: - if (lookahead == '*') ADVANCE(257); - if (lookahead != 0) ADVANCE(258); + case 355: + if (lookahead == '*') ADVANCE(354); + if (lookahead != 0) ADVANCE(355); END_STATE(); - case 259: - if (lookahead == '*') ADVANCE(257); - if (lookahead != 0) ADVANCE(363); + case 356: + if (lookahead == '*') ADVANCE(354); + if (lookahead != 0) ADVANCE(462); END_STATE(); - case 260: - if (lookahead == '.') ADVANCE(262); + case 357: + if (lookahead == '.') ADVANCE(359); END_STATE(); - case 261: - if (lookahead == '.') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + case 358: + if (lookahead == '.') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); END_STATE(); - case 262: - if (lookahead == '.') ADVANCE(345); + case 359: + if (lookahead == '.') ADVANCE(444); END_STATE(); - case 263: - if (lookahead == '.') ADVANCE(320); + case 360: + if (lookahead == '.') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); END_STATE(); - case 264: - if (lookahead == '/') ADVANCE(370); - if (lookahead == '\\') ADVANCE(365); + case 361: + if (lookahead == '/') ADVANCE(469); + if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(264); - if (lookahead != 0) ADVANCE(372); + lookahead == ' ') SKIP(361); + if (lookahead != 0) ADVANCE(471); END_STATE(); - case 265: - if (lookahead == '1') ADVANCE(269); + case 362: + if (lookahead == '1') ADVANCE(366); END_STATE(); - case 266: - if (lookahead == '2') ADVANCE(496); + case 363: + if (lookahead == '2') ADVANCE(603); END_STATE(); - case 267: - if (lookahead == '2') ADVANCE(270); - if (lookahead == '6') ADVANCE(496); + case 364: + if (lookahead == '2') ADVANCE(367); + if (lookahead == '6') ADVANCE(603); END_STATE(); - case 268: - if (lookahead == '4') ADVANCE(496); + case 365: + if (lookahead == '4') ADVANCE(603); END_STATE(); - case 269: - if (lookahead == '6') ADVANCE(496); + case 366: + if (lookahead == '6') ADVANCE(603); END_STATE(); - case 270: - if (lookahead == '8') ADVANCE(496); + case 367: + if (lookahead == '8') ADVANCE(603); END_STATE(); - case 271: - if (lookahead == ':') ADVANCE(462); + case 368: + if (lookahead == ':') ADVANCE(565); END_STATE(); - case 272: - if (lookahead == '<') ADVANCE(455); - if (lookahead == '=') ADVANCE(448); + case 369: + if (lookahead == ':') ADVANCE(757); END_STATE(); - case 273: - if (lookahead == '=') ADVANCE(443); + case 370: + if (lookahead == ':') ADVANCE(757); + if (lookahead == '[') ADVANCE(566); + if (lookahead == ']') ADVANCE(760); END_STATE(); - case 274: - if (lookahead == '=') ADVANCE(442); + case 371: + if (lookahead == '<') ADVANCE(556); + if (lookahead == '=') ADVANCE(549); END_STATE(); - case 275: - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(457); + case 372: + if (lookahead == '=') ADVANCE(544); END_STATE(); - case 276: - if (lookahead == '=') ADVANCE(483); + case 373: + if (lookahead == '=') ADVANCE(543); END_STATE(); - case 277: - if (lookahead == '>') ADVANCE(276); + case 374: + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(558); END_STATE(); - case 278: - if (lookahead == '>') ADVANCE(494); + case 375: + if (lookahead == '=') ADVANCE(589); END_STATE(); - case 279: - if (lookahead == '>') ADVANCE(538); - if (lookahead == '\\') ADVANCE(280); + case 376: + if (lookahead == '>') ADVANCE(375); + END_STATE(); + case 377: + if (lookahead == '>') ADVANCE(601); + END_STATE(); + case 378: + if (lookahead == '>') ADVANCE(645); + if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(279); + lookahead != '\n') ADVANCE(378); END_STATE(); - case 280: - if (lookahead == '>') ADVANCE(539); - if (lookahead == '\\') ADVANCE(280); + case 379: + if (lookahead == '>') ADVANCE(646); + if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(279); + lookahead != '\n') ADVANCE(378); END_STATE(); - case 281: - if (lookahead == 'F') ADVANCE(265); + case 380: + if (lookahead == 'F') ADVANCE(362); END_STATE(); - case 282: - if (lookahead == 'U') ADVANCE(335); - if (lookahead == 'u') ADVANCE(327); + case 381: + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 283: - if (lookahead == '[') ADVANCE(463); - if (lookahead == ']') ADVANCE(650); + case 382: + if (lookahead == ']') ADVANCE(760); END_STATE(); - case 284: - if (lookahead == ']') ADVANCE(650); + case 383: + if (lookahead == ']') ADVANCE(567); END_STATE(); - case 285: - if (lookahead == ']') ADVANCE(464); + case 384: + if (lookahead == '^') ADVANCE(756); END_STATE(); - case 286: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'e') ADVANCE(399); - if (lookahead == 'i') ADVANCE(387); + case 385: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(498); + if (lookahead == 'i') ADVANCE(486); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(286); + lookahead == ' ') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 287: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'e') ADVANCE(399); - if (lookahead == 'i') ADVANCE(388); + case 386: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(498); + if (lookahead == 'i') ADVANCE(487); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(287); + lookahead == ' ') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 288: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'e') ADVANCE(401); - if (lookahead == 'i') ADVANCE(387); + case 387: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(500); + if (lookahead == 'i') ADVANCE(486); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(288); + lookahead == ' ') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 289: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'e') ADVANCE(401); - if (lookahead == 'i') ADVANCE(388); + case 388: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(500); + if (lookahead == 'i') ADVANCE(487); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(289); + lookahead == ' ') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 290: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'i') ADVANCE(387); + case 389: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'i') ADVANCE(486); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(290); + lookahead == ' ') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 291: - if (lookahead == 'd') ADVANCE(379); - if (lookahead == 'i') ADVANCE(388); + case 390: + if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'i') ADVANCE(487); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(291); + lookahead == ' ') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 292: - if (lookahead == 'd') ADVANCE(304); + case 391: + if (lookahead == 'd') ADVANCE(403); END_STATE(); - case 293: - if (lookahead == 'd') ADVANCE(298); + case 392: + if (lookahead == 'd') ADVANCE(397); END_STATE(); - case 294: - if (lookahead == 'e') ADVANCE(308); + case 393: + if (lookahead == 'e') ADVANCE(407); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(294); + lookahead == ' ') ADVANCE(393); END_STATE(); - case 295: - if (lookahead == 'e') ADVANCE(307); + case 394: + if (lookahead == 'e') ADVANCE(406); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(295); + lookahead == ' ') ADVANCE(394); END_STATE(); - case 296: - if (lookahead == 'e') ADVANCE(354); + case 395: + if (lookahead == 'e') ADVANCE(453); END_STATE(); - case 297: - if (lookahead == 'e') ADVANCE(302); + case 396: + if (lookahead == 'e') ADVANCE(401); END_STATE(); - case 298: - if (lookahead == 'e') ADVANCE(303); + case 397: + if (lookahead == 'e') ADVANCE(402); END_STATE(); - case 299: - if (lookahead == 'f') ADVANCE(265); + case 398: + if (lookahead == 'f') ADVANCE(362); END_STATE(); - case 300: - if (lookahead == 'f') ADVANCE(350); + case 399: + if (lookahead == 'f') ADVANCE(449); END_STATE(); - case 301: - if (lookahead == 'f') ADVANCE(356); + case 400: + if (lookahead == 'f') ADVANCE(455); END_STATE(); - case 302: - if (lookahead == 'f') ADVANCE(358); + case 401: + if (lookahead == 'f') ADVANCE(457); END_STATE(); - case 303: - if (lookahead == 'f') ADVANCE(360); + case 402: + if (lookahead == 'f') ADVANCE(459); END_STATE(); - case 304: - if (lookahead == 'i') ADVANCE(300); + case 403: + if (lookahead == 'i') ADVANCE(399); END_STATE(); - case 305: - if (lookahead == 'i') ADVANCE(301); - if (lookahead == 's') ADVANCE(296); + case 404: + if (lookahead == 'i') ADVANCE(400); + if (lookahead == 's') ADVANCE(395); END_STATE(); - case 306: - if (lookahead == 'i') ADVANCE(388); + case 405: + if (lookahead == 'i') ADVANCE(487); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(306); + lookahead == ' ') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 307: - if (lookahead == 'l') ADVANCE(305); - if (lookahead == 'n') ADVANCE(292); + case 406: + if (lookahead == 'l') ADVANCE(404); + if (lookahead == 'n') ADVANCE(391); END_STATE(); - case 308: - if (lookahead == 'n') ADVANCE(292); + case 407: + if (lookahead == 'n') ADVANCE(391); END_STATE(); - case 309: - if (lookahead == '|') ADVANCE(432); + case 408: + if (lookahead == '|') ADVANCE(531); END_STATE(); - case 310: + case 409: if (lookahead == '+' || - lookahead == '-') ADVANCE(317); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(502); + lookahead == '-') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); END_STATE(); - case 311: + case 410: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(310); + lookahead == 'p') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); END_STATE(); - case 312: + case 411: if (lookahead == '0' || - lookahead == '1') ADVANCE(500); + lookahead == '1') ADVANCE(607); END_STATE(); - case 313: + case 412: if (lookahead == '8' || - lookahead == '9') ADVANCE(249); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(499); + lookahead == '9') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); END_STATE(); - case 314: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(501); + case 413: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 315: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + case 414: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); END_STATE(); - case 316: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(249); + case 415: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(346); END_STATE(); - case 317: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(502); + case 416: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); END_STATE(); - case 318: + case 417: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(738); END_STATE(); - case 319: + case 418: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); END_STATE(); - case 320: + case 419: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); END_STATE(); - case 321: + case 420: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); END_STATE(); - case 322: + case 421: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(644); END_STATE(); - case 323: + case 422: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(417); END_STATE(); - case 324: + case 423: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(321); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(420); END_STATE(); - case 325: + case 424: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(422); END_STATE(); - case 326: + case 425: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(324); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(423); END_STATE(); - case 327: + case 426: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(424); END_STATE(); - case 328: + case 427: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(425); END_STATE(); - case 329: + case 428: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(327); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(426); END_STATE(); - case 330: + case 429: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(427); END_STATE(); - case 331: + case 430: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(329); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(428); END_STATE(); - case 332: + case 431: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(330); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(429); END_STATE(); - case 333: + case 432: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(430); END_STATE(); - case 334: + case 433: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(332); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(431); END_STATE(); - case 335: + case 434: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(333); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(432); END_STATE(); - case 336: + case 435: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(433); END_STATE(); - case 337: + case 436: if (lookahead != 0 && - lookahead != '*') ADVANCE(372); + lookahead != '*') ADVANCE(471); END_STATE(); - case 338: - if (eof) ADVANCE(340); + case 437: + if (eof) ADVANCE(439); ADVANCE_MAP( - '!', 407, - '"', 525, - '#', 286, - '%', 431, - '&', 441, - '\'', 516, - '(', 405, - ')', 347, - '*', 427, - '+', 421, - ',', 346, - '-', 410, - '.', 491, - '/', 429, - '0', 498, - ':', 461, - ';', 459, - '<', 451, - '=', 473, - '>', 641, - '?', 476, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 469, + '!', 506, + '"', 632, + '#', 385, + '%', 530, + '&', 542, + '\'', 623, + '(', 504, + ')', 446, + '*', 526, + '+', 520, + ',', 445, + '-', 509, + '.', 597, + '/', 528, + '0', 605, + ':', 563, + ';', 560, + '<', 552, + '=', 579, + '>', 748, + '?', 582, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 573, '\\', 2, - ']', 471, - '^', 438, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 435, - '}', 466, - '~', 408, + ']', 577, + '^', 538, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 534, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(338); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(437); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 339: - if (eof) ADVANCE(340); + case 438: + if (eof) ADVANCE(439); ADVANCE_MAP( - '!', 406, - '"', 525, - '#', 290, - '%', 430, - '&', 440, - '\'', 516, - '(', 405, - ')', 347, - '*', 426, - '+', 422, - ',', 346, - '-', 413, - '.', 492, - '/', 428, - '0', 498, - ':', 271, - ';', 459, - '<', 450, - '=', 472, - '>', 641, - 'F', 568, - 'L', 542, - 'R', 545, - 'T', 572, - 'U', 546, - '[', 468, + '!', 505, + '"', 632, + '#', 389, + '%', 529, + '&', 541, + '\'', 623, + '(', 504, + ')', 446, + '*', 525, + '+', 521, + ',', 445, + '-', 512, + '.', 599, + '/', 527, + '0', 605, + ':', 368, + ';', 560, + '<', 551, + '=', 578, + '>', 748, + 'F', 675, + 'L', 649, + 'R', 652, + 'T', 679, + 'U', 653, + '[', 572, '\\', 4, - ']', 471, - '^', 437, - 'b', 614, - 'c', 593, - 'd', 610, - 'f', 577, - 'i', 607, - 'm', 579, - 'n', 627, - 'p', 624, - 's', 594, - 't', 619, - 'u', 549, - 'v', 611, - '{', 465, - '|', 309, - '}', 466, - '~', 408, + ']', 577, + '^', 384, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 684, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 't', 726, + 'u', 656, + 'v', 718, + '{', 568, + '|', 408, + '}', 569, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(339); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(631); + lookahead == ' ') SKIP(438); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 340: + case 439: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 341: + case 440: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 342: + case 441: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 343: + case 442: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 344: + case 443: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 345: + case 444: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 346: + case 445: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 347: + case 446: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 348: + case 447: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(383); - if (lookahead == 'n') ADVANCE(377); + if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'n') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 349: + case 448: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(349); + if (lookahead == '\n') ADVANCE(448); END_STATE(); - case 350: + case 449: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 351: + case 450: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 352: + case 451: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 353: + case 452: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 354: + case 453: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 355: + case 454: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 356: + case 455: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(297); - if (lookahead == 'n') ADVANCE(293); + if (lookahead == 'd') ADVANCE(396); + if (lookahead == 'n') ADVANCE(392); END_STATE(); - case 357: + case 456: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(385); - if (lookahead == 'n') ADVANCE(378); + if (lookahead == 'd') ADVANCE(484); + if (lookahead == 'n') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 358: + case 457: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 359: + case 458: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 360: + case 459: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 361: + case 460: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 362: + case 461: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(258); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '/') ADVANCE(632); - if (lookahead == '\\') ADVANCE(368); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\n') ADVANCE(355); + if (lookahead == '*') ADVANCE(461); + if (lookahead == '/') ADVANCE(739); + if (lookahead == '\\') ADVANCE(467); + if (lookahead != 0) ADVANCE(462); END_STATE(); - case 363: + case 462: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(258); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '/') ADVANCE(259); - if (lookahead == '\\') ADVANCE(368); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\n') ADVANCE(355); + if (lookahead == '*') ADVANCE(461); + if (lookahead == '/') ADVANCE(356); + if (lookahead == '\\') ADVANCE(467); + if (lookahead != 0) ADVANCE(462); END_STATE(); - case 364: + case 463: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '\r') ADVANCE(633); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(635); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\r') ADVANCE(740); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(742); + if (lookahead != 0) ADVANCE(744); END_STATE(); - case 365: + case 464: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(264); - if (lookahead == '\r') ADVANCE(366); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(367); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\n') SKIP(361); + if (lookahead == '\r') ADVANCE(465); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '\\') ADVANCE(466); + if (lookahead != 0) ADVANCE(471); END_STATE(); - case 366: + case 465: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(264); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(367); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\n') SKIP(361); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '\\') ADVANCE(466); + if (lookahead != 0) ADVANCE(471); END_STATE(); - case 367: + case 466: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(373); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(367); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '\r') ADVANCE(472); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '\\') ADVANCE(466); + if (lookahead != 0) ADVANCE(471); END_STATE(); - case 368: + case 467: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(371); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '/') ADVANCE(259); - if (lookahead == '\\') ADVANCE(368); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '\r') ADVANCE(470); + if (lookahead == '*') ADVANCE(461); + if (lookahead == '/') ADVANCE(356); + if (lookahead == '\\') ADVANCE(467); + if (lookahead != 0) ADVANCE(462); END_STATE(); - case 369: + case 468: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(638); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(635); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '\r') ADVANCE(745); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(742); + if (lookahead != 0) ADVANCE(744); END_STATE(); - case 370: + case 469: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(367); + if (lookahead == '*') ADVANCE(462); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(466); if (lookahead != 0 && - lookahead != '\n') ADVANCE(372); + lookahead != '\n') ADVANCE(471); END_STATE(); - case 371: + case 470: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '/') ADVANCE(259); - if (lookahead == '\\') ADVANCE(368); - if (lookahead != 0) ADVANCE(363); + if (lookahead == '*') ADVANCE(461); + if (lookahead == '/') ADVANCE(356); + if (lookahead == '\\') ADVANCE(467); + if (lookahead != 0) ADVANCE(462); END_STATE(); - case 372: + case 471: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(367); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '\\') ADVANCE(466); if (lookahead != 0 && - lookahead != '\n') ADVANCE(372); + lookahead != '\n') ADVANCE(471); END_STATE(); - case 373: + case 472: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(337); - if (lookahead == '\\') ADVANCE(367); - if (lookahead != 0) ADVANCE(372); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '\\') ADVANCE(466); + if (lookahead != 0) ADVANCE(471); END_STATE(); - case 374: + case 473: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(400); + if (lookahead == 'c') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 375: + case 474: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(398); + if (lookahead == 'd') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 376: + case 475: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(382); + if (lookahead == 'd') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 377: + case 476: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'd') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 378: + case 477: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(386); + if (lookahead == 'd') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 379: + case 478: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'e') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 380: + case 479: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(355); + if (lookahead == 'e') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 381: + case 480: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'e') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 382: + case 481: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'e') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 383: + case 482: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'e') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 384: + case 483: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(393); + if (lookahead == 'e') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 385: + case 484: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(394); + if (lookahead == 'e') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 386: + case 485: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'e') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 387: + case 486: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'n') ADVANCE(374); + if (lookahead == 'f') ADVANCE(447); + if (lookahead == 'n') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 388: + case 487: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(348); + if (lookahead == 'f') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 389: + case 488: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(396); + if (lookahead == 'f') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 390: + case 489: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(357); + if (lookahead == 'f') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 391: + case 490: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(351); + if (lookahead == 'f') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 392: + case 491: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(352); + if (lookahead == 'f') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 393: + case 492: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(353); + if (lookahead == 'f') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 394: + case 493: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(359); + if (lookahead == 'f') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 395: + case 494: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(361); + if (lookahead == 'f') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 396: + case 495: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(402); + if (lookahead == 'i') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 397: + case 496: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(390); - if (lookahead == 's') ADVANCE(380); + if (lookahead == 'i') ADVANCE(489); + if (lookahead == 's') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 398: + case 497: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(391); + if (lookahead == 'i') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 399: + case 498: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(397); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == 'l') ADVANCE(496); + if (lookahead == 'n') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 400: + case 499: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'l') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 401: + case 500: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == 'n') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 402: + case 501: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'n') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 403: + case 502: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(376); + if (lookahead == 'u') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 404: + case 503: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(404); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); END_STATE(); - case 405: + case 504: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 406: + case 505: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 407: + case 506: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(443); + if (lookahead == '=') ADVANCE(544); END_STATE(); - case 408: + case 507: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 409: + case 508: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 410: + case 509: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '>') ADVANCE(495); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '>') ADVANCE(602); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 411: + case 510: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '>') ADVANCE(494); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '>') ADVANCE(601); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 412: + case 511: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (lookahead == '>') ADVANCE(494); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (lookahead == '>') ADVANCE(601); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 413: + case 512: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 414: + case 513: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '>') ADVANCE(495); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '>') ADVANCE(602); END_STATE(); - case 415: + case 514: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '>') ADVANCE(494); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '>') ADVANCE(601); END_STATE(); - case 416: + case 515: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(488); - if (lookahead == '>') ADVANCE(494); + if (lookahead == '-') ADVANCE(594); + if (lookahead == '>') ADVANCE(601); END_STATE(); - case 417: + case 516: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 418: + case 517: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '>') ADVANCE(256); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '>') ADVANCE(353); END_STATE(); - case 419: + case 518: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 420: + case 519: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(489); + if (lookahead == '+') ADVANCE(595); END_STATE(); - case 421: + case 520: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(489); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (lookahead == '=') ADVANCE(480); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '+') ADVANCE(595); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (lookahead == '=') ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 422: + case 521: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(489); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '+') ADVANCE(595); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 423: + case 522: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(489); - if (lookahead == '=') ADVANCE(480); + if (lookahead == '+') ADVANCE(595); + if (lookahead == '=') ADVANCE(586); END_STATE(); - case 424: + case 523: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '0') ADVANCE(498); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '0') ADVANCE(605); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 425: + case 524: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(480); + if (lookahead == '=') ADVANCE(586); END_STATE(); - case 426: + case 525: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 427: + case 526: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(477); + if (lookahead == '=') ADVANCE(583); END_STATE(); - case 428: + case 527: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(258); - if (lookahead == '/') ADVANCE(639); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(746); END_STATE(); - case 429: + case 528: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(258); - if (lookahead == '/') ADVANCE(639); - if (lookahead == '=') ADVANCE(478); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(746); + if (lookahead == '=') ADVANCE(584); END_STATE(); - case 430: + case 529: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 431: + case 530: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(479); + if (lookahead == '=') ADVANCE(585); END_STATE(); - case 432: + case 531: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 433: + case 532: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 434: + case 533: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 435: + case 534: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(486); - if (lookahead == '|') ADVANCE(432); + if (lookahead == '=') ADVANCE(592); + if (lookahead == '|') ADVANCE(531); END_STATE(); - case 436: + case 535: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(432); + if (lookahead == '|') ADVANCE(531); END_STATE(); - case 437: + case 536: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 438: + case 537: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(485); + if (lookahead == '=') ADVANCE(591); END_STATE(); - case 439: + case 538: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(591); + if (lookahead == '^') ADVANCE(756); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(756); + END_STATE(); + case 540: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 440: + case 541: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(433); + if (lookahead == '&') ADVANCE(532); END_STATE(); - case 441: + case 542: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(433); - if (lookahead == '=') ADVANCE(484); + if (lookahead == '&') ADVANCE(532); + if (lookahead == '=') ADVANCE(590); END_STATE(); - case 442: + case 543: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 443: + case 544: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 444: + case 545: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 445: + case 546: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(457); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(558); END_STATE(); - case 446: + case 547: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(458); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(559); END_STATE(); - case 447: + case 548: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 448: + case 549: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 449: + case 550: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(487); + if (lookahead == '>') ADVANCE(593); END_STATE(); - case 450: + case 551: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 451: + case 552: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(456); - if (lookahead == '=') ADVANCE(449); + if (lookahead == '<') ADVANCE(557); + if (lookahead == '=') ADVANCE(550); END_STATE(); - case 452: + case 553: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(456); - if (lookahead == '=') ADVANCE(448); + if (lookahead == '<') ADVANCE(557); + if (lookahead == '=') ADVANCE(549); END_STATE(); - case 453: + case 554: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(455); - if (lookahead == '=') ADVANCE(449); + if (lookahead == '<') ADVANCE(556); + if (lookahead == '=') ADVANCE(550); END_STATE(); - case 454: + case 555: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(455); - if (lookahead == '=') ADVANCE(448); + if (lookahead == '<') ADVANCE(556); + if (lookahead == '=') ADVANCE(549); END_STATE(); - case 455: + case 556: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 456: + case 557: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(482); + if (lookahead == '=') ADVANCE(588); END_STATE(); - case 457: + case 558: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 458: + case 559: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(483); + if (lookahead == '=') ADVANCE(589); END_STATE(); - case 459: + case 560: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 460: + case 561: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 461: + case 562: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(462); + if (lookahead == ':') ADVANCE(565); END_STATE(); - case 462: + case 563: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(565); + if (lookahead == ']') ADVANCE(758); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ']') ADVANCE(758); + END_STATE(); + case 565: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 463: + case 566: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 464: + case 567: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 465: + case 568: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 466: + case 569: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 467: + case 570: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 468: + case 571: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(463); + if (lookahead == ':') ADVANCE(757); END_STATE(); - case 469: + case 572: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(463); - if (lookahead == ']') ADVANCE(650); + if (lookahead == ':') ADVANCE(757); + if (lookahead == '[') ADVANCE(566); END_STATE(); - case 470: + case 573: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(650); + if (lookahead == ':') ADVANCE(757); + if (lookahead == '[') ADVANCE(566); + if (lookahead == ']') ADVANCE(760); END_STATE(); - case 471: + case 574: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(566); + END_STATE(); + case 575: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(566); + if (lookahead == ']') ADVANCE(760); + END_STATE(); + case 576: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(760); + END_STATE(); + case 577: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 472: + case 578: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 473: + case 579: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(442); + if (lookahead == '=') ADVANCE(543); END_STATE(); - case 474: + case 580: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(567); - if (lookahead == '3') ADVANCE(565); - if (lookahead == '6') ADVANCE(566); - if (lookahead == '8') ADVANCE(576); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'p') ADVANCE(625); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '1') ADVANCE(674); + if (lookahead == '3') ADVANCE(672); + if (lookahead == '6') ADVANCE(673); + if (lookahead == '8') ADVANCE(683); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'p') ADVANCE(732); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 475: + case 581: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 476: + case 582: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 477: + case 583: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 478: + case 584: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 479: + case 585: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 480: + case 586: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 481: + case 587: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 482: + case 588: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 483: + case 589: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 484: + case 590: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 485: + case 591: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 486: + case 592: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 487: + case 593: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 488: + case 594: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 489: + case 595: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 490: + case 596: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '.') ADVANCE(262); + if (lookahead == '*') ADVANCE(600); + if (lookahead == '.') ADVANCE(359); END_STATE(); - case 491: + case 597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '.') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == '*') ADVANCE(600); + if (lookahead == '.') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); END_STATE(); - case 492: + case 598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (lookahead == '.') ADVANCE(359); END_STATE(); - case 493: + case 599: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + END_STATE(); + case 600: ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); - case 494: + case 601: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 495: + case 602: ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(648); + if (lookahead == '*') ADVANCE(755); END_STATE(); - case 496: + case 603: ACCEPT_TOKEN(sym_number_literal); END_STATE(); - case 497: + case 604: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 315, - 'B', 281, - 'b', 299, - 'E', 310, - 'e', 310, - 'F', 504, - 'f', 504, - 'L', 496, - 'l', 496, + '\'', 414, + 'B', 380, + 'b', 398, + 'E', 409, + 'e', 409, + 'F', 611, + 'f', 611, + 'L', 603, + 'l', 603, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); END_STATE(); - case 498: + case 605: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 313, - '.', 505, - 'L', 506, - 'l', 509, - 'B', 312, - 'b', 312, - 'E', 310, - 'e', 310, - 'U', 508, - 'u', 508, - 'X', 263, - 'x', 263, - 'Z', 511, - 'z', 511, - '8', 249, - '9', 249, + '\'', 412, + '.', 612, + 'L', 613, + 'l', 616, + 'B', 411, + 'b', 411, + 'E', 409, + 'e', 409, + 'U', 615, + 'u', 615, + 'X', 360, + 'x', 360, + 'Z', 618, + 'z', 618, + '8', 346, + '9', 346, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(499); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); END_STATE(); - case 499: + case 606: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 313, - '.', 505, - 'L', 506, - 'l', 509, - 'E', 310, - 'e', 310, - 'U', 508, - 'u', 508, - 'Z', 511, - 'z', 511, - '8', 249, - '9', 249, + '\'', 412, + '.', 612, + 'L', 613, + 'l', 616, + 'E', 409, + 'e', 409, + 'U', 615, + 'u', 615, + 'Z', 618, + 'z', 618, + '8', 346, + '9', 346, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(499); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); END_STATE(); - case 500: + case 607: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 312, - 'L', 506, - 'l', 509, - 'U', 508, - 'u', 508, - 'Z', 511, - 'z', 511, - '0', 500, - '1', 500, + '\'', 411, + 'L', 613, + 'l', 616, + 'U', 615, + 'u', 615, + 'Z', 618, + 'z', 618, + '0', 607, + '1', 607, ); END_STATE(); - case 501: + case 608: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 314, - '.', 505, - 'L', 506, - 'l', 509, - 'E', 310, - 'e', 310, - 'U', 508, - 'u', 508, - 'Z', 511, - 'z', 511, + '\'', 413, + '.', 612, + 'L', 613, + 'l', 616, + 'E', 409, + 'e', 409, + 'U', 615, + 'u', 615, + 'Z', 618, + 'z', 618, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(608); END_STATE(); - case 502: + case 609: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(317); - if (lookahead == 'B') ADVANCE(281); - if (lookahead == 'b') ADVANCE(299); + if (lookahead == '\'') ADVANCE(416); + if (lookahead == 'B') ADVANCE(380); + if (lookahead == 'b') ADVANCE(398); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(504); + lookahead == 'f') ADVANCE(611); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(502); + lookahead == 'l') ADVANCE(603); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); END_STATE(); - case 503: + case 610: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 319, - '.', 311, - 'L', 506, - 'l', 509, - 'P', 310, - 'p', 310, - 'U', 508, - 'u', 508, - 'Z', 511, - 'z', 511, + '\'', 418, + '.', 410, + 'L', 613, + 'l', 616, + 'P', 409, + 'p', 409, + 'U', 615, + 'u', 615, + 'Z', 618, + 'z', 618, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); END_STATE(); - case 504: + case 611: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '1') ADVANCE(267); - if (lookahead == '3') ADVANCE(266); - if (lookahead == '6') ADVANCE(268); + if (lookahead == '1') ADVANCE(364); + if (lookahead == '3') ADVANCE(363); + if (lookahead == '6') ADVANCE(365); END_STATE(); - case 505: + case 612: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'B', 281, - 'b', 299, - 'E', 310, - 'e', 310, - 'F', 504, - 'f', 504, - 'L', 496, - 'l', 496, + 'B', 380, + 'b', 398, + 'E', 409, + 'e', 409, + 'F', 611, + 'f', 611, + 'L', 603, + 'l', 603, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); END_STATE(); - case 506: + case 613: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(511); + if (lookahead == 'L') ADVANCE(618); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(496); + lookahead == 'u') ADVANCE(603); END_STATE(); - case 507: + case 614: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(496); + if (lookahead == 'L') ADVANCE(603); END_STATE(); - case 508: + case 615: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(507); - if (lookahead == 'l') ADVANCE(510); + if (lookahead == 'L') ADVANCE(614); + if (lookahead == 'l') ADVANCE(617); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(496); + lookahead == 'z') ADVANCE(603); END_STATE(); - case 509: + case 616: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(511); + if (lookahead == 'l') ADVANCE(618); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(496); + lookahead == 'u') ADVANCE(603); END_STATE(); - case 510: + case 617: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(496); + if (lookahead == 'l') ADVANCE(603); END_STATE(); - case 511: + case 618: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(496); + lookahead == 'u') ADVANCE(603); END_STATE(); - case 512: + case 619: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 513: + case 620: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 514: + case 621: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 515: + case 622: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 516: + case 623: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 517: + case 624: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 518: + case 625: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(532); - if (lookahead == '\r') ADVANCE(531); - if (lookahead == 'U') ADVANCE(336); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == 'x') ADVANCE(322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); - if (lookahead != 0) ADVANCE(531); + if (lookahead == '\n') ADVANCE(639); + if (lookahead == '\r') ADVANCE(638); + if (lookahead == 'U') ADVANCE(435); + if (lookahead == 'u') ADVANCE(427); + if (lookahead == 'x') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); + if (lookahead != 0) ADVANCE(638); END_STATE(); - case 519: + case 626: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(258); - if (lookahead == '/') ADVANCE(639); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(746); END_STATE(); - case 520: + case 627: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(145); END_STATE(); - case 521: + case 628: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 522: + case 629: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 523: + case 630: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 524: + case 631: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 525: + case 632: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 526: + case 633: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(530); + if (lookahead == '*') ADVANCE(635); + if (lookahead == '/') ADVANCE(637); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(637); END_STATE(); - case 527: + case 634: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(527); - if (lookahead == '/') ADVANCE(530); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(637); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(528); + lookahead != '\\') ADVANCE(635); END_STATE(); - case 528: + case 635: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(527); + if (lookahead == '*') ADVANCE(634); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(528); + lookahead != '\\') ADVANCE(635); END_STATE(); - case 529: + case 636: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(526); + if (lookahead == '/') ADVANCE(633); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(529); + lookahead == ' ') ADVANCE(636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(637); END_STATE(); - case 530: + case 637: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(637); END_STATE(); - case 531: + case 638: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 532: + case 639: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(145); END_STATE(); - case 533: + case 640: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); END_STATE(); - case 534: + case 641: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(640); END_STATE(); - case 535: + case 642: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); END_STATE(); - case 536: + case 643: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(535); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(642); END_STATE(); - case 537: + case 644: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(643); END_STATE(); - case 538: + case 645: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 539: + case 646: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(538); - if (lookahead == '\\') ADVANCE(280); + if (lookahead == '>') ADVANCE(645); + if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(279); + lookahead != '\n') ADVANCE(378); END_STATE(); - case 540: + case 647: ACCEPT_TOKEN(sym_true); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 541: + case 648: ACCEPT_TOKEN(sym_false); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 542: + case 649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(521); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == 'R') ADVANCE(553); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(628); + if (lookahead == '\'') ADVANCE(619); + if (lookahead == 'R') ADVANCE(660); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 543: + case 650: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(521); - if (lookahead == 'R') ADVANCE(553); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(628); + if (lookahead == 'R') ADVANCE(660); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 544: + case 651: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(521); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(628); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 545: + case 652: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(643); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(750); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 546: + case 653: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(523); - if (lookahead == '\'') ADVANCE(514); - if (lookahead == 'R') ADVANCE(554); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(630); + if (lookahead == '\'') ADVANCE(621); + if (lookahead == 'R') ADVANCE(661); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 547: + case 654: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(523); - if (lookahead == 'R') ADVANCE(554); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(630); + if (lookahead == 'R') ADVANCE(661); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 548: + case 655: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(523); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(630); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 549: + case 656: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(522); - if (lookahead == '\'') ADVANCE(513); - if (lookahead == '8') ADVANCE(555); - if (lookahead == 'R') ADVANCE(558); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(609); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '\'') ADVANCE(620); + if (lookahead == '8') ADVANCE(662); + if (lookahead == 'R') ADVANCE(665); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(716); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 550: + case 657: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(522); - if (lookahead == '8') ADVANCE(556); - if (lookahead == 'R') ADVANCE(558); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '8') ADVANCE(663); + if (lookahead == 'R') ADVANCE(665); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 551: + case 658: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(522); - if (lookahead == '8') ADVANCE(557); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(609); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '8') ADVANCE(664); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(716); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 552: + case 659: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(522); - if (lookahead == '8') ADVANCE(557); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '8') ADVANCE(664); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 553: + case 660: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(644); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(751); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 554: + case 661: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(646); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(753); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 555: + case 662: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(524); - if (lookahead == '\'') ADVANCE(515); - if (lookahead == 'R') ADVANCE(559); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(631); + if (lookahead == '\'') ADVANCE(622); + if (lookahead == 'R') ADVANCE(666); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 556: + case 663: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(524); - if (lookahead == 'R') ADVANCE(559); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(631); + if (lookahead == 'R') ADVANCE(666); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 557: + case 664: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(524); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 558: + case 665: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(645); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(752); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 559: + case 666: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(647); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '"') ADVANCE(754); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 560: + case 667: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\'') ADVANCE(619); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 561: + case 668: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(514); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\'') ADVANCE(621); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 562: + case 669: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(513); - if (lookahead == '8') ADVANCE(563); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\'') ADVANCE(620); + if (lookahead == '8') ADVANCE(670); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 563: + case 670: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(515); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\'') ADVANCE(622); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 564: + case 671: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(567); - if (lookahead == '3') ADVANCE(565); - if (lookahead == '6') ADVANCE(566); - if (lookahead == '8') ADVANCE(576); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'p') ADVANCE(625); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); - END_STATE(); - case 565: + if (lookahead == '1') ADVANCE(674); + if (lookahead == '3') ADVANCE(672); + if (lookahead == '6') ADVANCE(673); + if (lookahead == '8') ADVANCE(683); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'p') ADVANCE(732); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + END_STATE(); + case 672: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(576); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '2') ADVANCE(683); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 566: + case 673: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(576); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '4') ADVANCE(683); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 567: + case 674: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(576); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '6') ADVANCE(683); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 568: + case 675: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(571); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'A') ADVANCE(678); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 569: + case 676: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(540); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'E') ADVANCE(647); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 570: + case 677: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(541); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'E') ADVANCE(648); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 571: + case 678: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(573); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'L') ADVANCE(680); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 572: + case 679: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(574); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'R') ADVANCE(681); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 573: + case 680: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(570); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'S') ADVANCE(677); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 574: + case 681: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(569); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == 'U') ADVANCE(676); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 575: + case 682: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '_') ADVANCE(582); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == '_') ADVANCE(689); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 576: + case 683: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == '_') ADVANCE(622); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == '_') ADVANCE(729); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 577: + case 684: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(600); - if (lookahead == 'l') ADVANCE(612); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(707); + if (lookahead == 'l') ADVANCE(719); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 578: + case 685: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(600); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(707); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 579: + case 686: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(629); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(736); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 580: + case 687: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(616); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(723); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 581: + case 688: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(622); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(729); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 582: + case 689: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'a') ADVANCE(604); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'a') ADVANCE(711); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 583: + case 690: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'b') ADVANCE(605); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'b') ADVANCE(712); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 584: + case 691: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'd') ADVANCE(475); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'd') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 585: + case 692: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'd') ADVANCE(596); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'd') ADVANCE(703); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 586: + case 693: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'e') ADVANCE(540); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'e') ADVANCE(647); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 587: + case 694: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'e') ADVANCE(475); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'e') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 588: + case 695: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'e') ADVANCE(541); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'e') ADVANCE(648); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 589: + case 696: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'e') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'e') ADVANCE(683); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 590: + case 697: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'f') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'f') ADVANCE(683); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 591: + case 698: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'f') ADVANCE(590); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'f') ADVANCE(697); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 592: + case 699: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'g') ADVANCE(608); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'g') ADVANCE(715); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 593: + case 700: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'h') ADVANCE(580); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'h') ADVANCE(687); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 594: + case 701: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(630); - if (lookahead == 's') ADVANCE(595); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(737); + if (lookahead == 's') ADVANCE(702); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 595: + case 702: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(630); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(737); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 596: + case 703: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(591); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(698); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 597: + case 704: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(592); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(699); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 598: + case 705: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(584); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(691); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 599: + case 706: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'i') ADVANCE(609); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'i') ADVANCE(716); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 600: + case 707: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(620); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(727); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 601: + case 708: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(475); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 602: + case 709: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(615); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(722); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 603: + case 710: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(602); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(709); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 604: + case 711: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(597); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(704); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 605: + case 712: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(587); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(694); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 606: + case 713: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'l') ADVANCE(612); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'l') ADVANCE(719); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 607: + case 714: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'n') ADVANCE(621); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'n') ADVANCE(728); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 608: + case 715: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'n') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'n') ADVANCE(683); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 609: + case 716: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'n') ADVANCE(623); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'n') ADVANCE(730); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 610: + case 717: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'o') ADVANCE(626); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'o') ADVANCE(733); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 611: + case 718: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'o') ADVANCE(598); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'o') ADVANCE(705); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 612: + case 719: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'o') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'o') ADVANCE(688); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 613: + case 720: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'o') ADVANCE(601); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'o') ADVANCE(708); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 614: + case 721: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'o') ADVANCE(613); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'o') ADVANCE(720); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 615: + case 722: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'p') ADVANCE(625); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'p') ADVANCE(732); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 616: + case 723: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'r') ADVANCE(474); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'r') ADVANCE(580); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 617: + case 724: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'r') ADVANCE(585); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'r') ADVANCE(692); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 618: + case 725: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'r') ADVANCE(576); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'r') ADVANCE(683); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 619: + case 726: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'r') ADVANCE(628); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'r') ADVANCE(735); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 620: + case 727: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 's') ADVANCE(588); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 's') ADVANCE(695); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 621: + case 728: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 't') ADVANCE(474); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 't') ADVANCE(580); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 622: + case 729: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 't') ADVANCE(475); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 't') ADVANCE(581); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 623: + case 730: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 't') ADVANCE(564); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 't') ADVANCE(671); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 624: + case 731: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 't') ADVANCE(617); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 't') ADVANCE(724); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 625: + case 732: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 't') ADVANCE(618); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 't') ADVANCE(725); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 626: + case 733: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'u') ADVANCE(583); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'u') ADVANCE(690); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 627: + case 734: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'u') ADVANCE(603); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'u') ADVANCE(710); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 628: + case 735: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'u') ADVANCE(586); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'u') ADVANCE(693); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 629: + case 736: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'x') ADVANCE(575); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'x') ADVANCE(682); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 630: + case 737: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (lookahead == 'z') ADVANCE(589); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (lookahead == 'z') ADVANCE(696); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 631: + case 738: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(282); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + if (lookahead == '\\') ADVANCE(381); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 632: + case 739: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 633: + case 740: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(369); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(468); + if (lookahead != 0) ADVANCE(744); END_STATE(); - case 634: + case 741: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(640); - if (lookahead == '\\') ADVANCE(634); - if (lookahead != 0) ADVANCE(639); + if (lookahead == '\r') ADVANCE(747); + if (lookahead == '\\') ADVANCE(741); + if (lookahead != 0) ADVANCE(746); END_STATE(); - case 635: + case 742: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(638); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(635); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '\r') ADVANCE(745); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(742); + if (lookahead != 0) ADVANCE(744); END_STATE(); - case 636: + case 743: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '\\') ADVANCE(364); + if (lookahead == '*') ADVANCE(746); + if (lookahead == '\\') ADVANCE(463); if (lookahead != 0 && - lookahead != '\n') ADVANCE(637); + lookahead != '\n') ADVANCE(744); END_STATE(); - case 637: + case 744: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(369); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(468); if (lookahead != 0 && - lookahead != '\n') ADVANCE(637); + lookahead != '\n') ADVANCE(744); END_STATE(); - case 638: + case 745: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(636); - if (lookahead == '\\') ADVANCE(369); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '/') ADVANCE(743); + if (lookahead == '\\') ADVANCE(468); + if (lookahead != 0) ADVANCE(744); END_STATE(); - case 639: + case 746: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(162); + if (lookahead == '\\') ADVANCE(224); if (lookahead != 0 && - lookahead != '\n') ADVANCE(639); + lookahead != '\n') ADVANCE(746); END_STATE(); - case 640: + case 747: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(162); - if (lookahead != 0) ADVANCE(639); + if (lookahead == '\\') ADVANCE(224); + if (lookahead != 0) ADVANCE(746); END_STATE(); - case 641: + case 748: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 642: + case 749: ACCEPT_TOKEN(aux_sym_pure_virtual_clause_token1); END_STATE(); - case 643: + case 750: ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); - case 644: + case 751: ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); - case 645: + case 752: ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); - case 646: + case 753: ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); - case 647: + case 754: ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); - case 648: + case 755: ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 649: + case 756: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + END_STATE(); + case 757: + ACCEPT_TOKEN(anon_sym_LBRACK_COLON); + END_STATE(); + case 758: + ACCEPT_TOKEN(anon_sym_COLON_RBRACK); + END_STATE(); + case 759: ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 650: + case 760: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 651: + case 761: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 652: + case 762: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(521); - if (lookahead == 'R') ADVANCE(656); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(628); + if (lookahead == 'R') ADVANCE(766); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 653: + case 763: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(643); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(750); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 654: + case 764: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(523); - if (lookahead == 'R') ADVANCE(657); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(630); + if (lookahead == 'R') ADVANCE(767); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 655: + case 765: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(522); - if (lookahead == '8') ADVANCE(658); - if (lookahead == 'R') ADVANCE(659); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(629); + if (lookahead == '8') ADVANCE(768); + if (lookahead == 'R') ADVANCE(769); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 656: + case 766: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(644); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(751); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 657: + case 767: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(646); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(753); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 658: + case 768: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(524); - if (lookahead == 'R') ADVANCE(660); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(631); + if (lookahead == 'R') ADVANCE(770); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 659: + case 769: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(645); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(752); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 660: + case 770: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(647); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '"') ADVANCE(754); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); - case 661: + case 771: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(282); + if (lookahead == '\\') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(661); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); END_STATE(); default: return false; @@ -22372,9092 +26351,11556 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 339}, - [2] = {.lex_state = 339}, - [3] = {.lex_state = 339}, - [4] = {.lex_state = 339}, - [5] = {.lex_state = 339}, - [6] = {.lex_state = 339}, - [7] = {.lex_state = 339}, - [8] = {.lex_state = 339}, - [9] = {.lex_state = 339}, - [10] = {.lex_state = 339}, - [11] = {.lex_state = 339}, - [12] = {.lex_state = 339}, - [13] = {.lex_state = 171}, - [14] = {.lex_state = 171}, - [15] = {.lex_state = 171}, - [16] = {.lex_state = 171}, - [17] = {.lex_state = 171}, - [18] = {.lex_state = 171}, - [19] = {.lex_state = 171}, - [20] = {.lex_state = 171}, - [21] = {.lex_state = 171}, - [22] = {.lex_state = 171}, - [23] = {.lex_state = 171}, - [24] = {.lex_state = 171}, - [25] = {.lex_state = 171}, - [26] = {.lex_state = 171}, - [27] = {.lex_state = 171}, - [28] = {.lex_state = 171}, - [29] = {.lex_state = 171}, - [30] = {.lex_state = 171}, - [31] = {.lex_state = 171}, - [32] = {.lex_state = 171}, - [33] = {.lex_state = 171}, - [34] = {.lex_state = 339}, - [35] = {.lex_state = 339}, - [36] = {.lex_state = 339}, - [37] = {.lex_state = 339}, - [38] = {.lex_state = 339}, - [39] = {.lex_state = 174}, - [40] = {.lex_state = 339}, - [41] = {.lex_state = 339}, - [42] = {.lex_state = 339}, - [43] = {.lex_state = 339}, - [44] = {.lex_state = 339}, - [45] = {.lex_state = 339}, - [46] = {.lex_state = 174}, - [47] = {.lex_state = 339}, - [48] = {.lex_state = 339}, - [49] = {.lex_state = 339}, - [50] = {.lex_state = 339}, - [51] = {.lex_state = 339}, - [52] = {.lex_state = 339}, - [53] = {.lex_state = 339}, - [54] = {.lex_state = 339}, - [55] = {.lex_state = 339}, - [56] = {.lex_state = 339}, - [57] = {.lex_state = 339}, - [58] = {.lex_state = 339}, - [59] = {.lex_state = 339}, - [60] = {.lex_state = 339}, - [61] = {.lex_state = 339}, - [62] = {.lex_state = 339}, - [63] = {.lex_state = 339}, - [64] = {.lex_state = 339}, - [65] = {.lex_state = 339}, - [66] = {.lex_state = 339}, - [67] = {.lex_state = 174}, - [68] = {.lex_state = 339}, - [69] = {.lex_state = 339}, - [70] = {.lex_state = 339}, - [71] = {.lex_state = 339}, - [72] = {.lex_state = 339}, - [73] = {.lex_state = 339}, - [74] = {.lex_state = 339}, - [75] = {.lex_state = 339}, - [76] = {.lex_state = 339}, - [77] = {.lex_state = 339}, - [78] = {.lex_state = 339}, - [79] = {.lex_state = 339}, - [80] = {.lex_state = 339}, - [81] = {.lex_state = 339}, - [82] = {.lex_state = 339}, - [83] = {.lex_state = 339}, - [84] = {.lex_state = 339}, - [85] = {.lex_state = 171}, - [86] = {.lex_state = 171}, - [87] = {.lex_state = 171}, - [88] = {.lex_state = 171}, - [89] = {.lex_state = 171}, - [90] = {.lex_state = 339}, - [91] = {.lex_state = 339}, - [92] = {.lex_state = 339}, - [93] = {.lex_state = 339}, - [94] = {.lex_state = 339}, - [95] = {.lex_state = 339}, - [96] = {.lex_state = 339}, - [97] = {.lex_state = 174}, - [98] = {.lex_state = 174}, - [99] = {.lex_state = 174}, - [100] = {.lex_state = 339}, - [101] = {.lex_state = 174}, - [102] = {.lex_state = 174}, - [103] = {.lex_state = 339}, - [104] = {.lex_state = 339}, - [105] = {.lex_state = 173}, - [106] = {.lex_state = 173}, - [107] = {.lex_state = 173}, - [108] = {.lex_state = 173}, - [109] = {.lex_state = 173}, - [110] = {.lex_state = 173}, - [111] = {.lex_state = 173}, - [112] = {.lex_state = 173}, - [113] = {.lex_state = 173}, - [114] = {.lex_state = 173}, - [115] = {.lex_state = 173}, - [116] = {.lex_state = 173}, - [117] = {.lex_state = 173}, - [118] = {.lex_state = 173}, - [119] = {.lex_state = 173}, - [120] = {.lex_state = 173}, - [121] = {.lex_state = 173}, - [122] = {.lex_state = 173}, - [123] = {.lex_state = 173}, - [124] = {.lex_state = 175}, - [125] = {.lex_state = 175}, - [126] = {.lex_state = 175}, - [127] = {.lex_state = 173}, - [128] = {.lex_state = 173}, - [129] = {.lex_state = 173}, - [130] = {.lex_state = 173}, - [131] = {.lex_state = 173}, - [132] = {.lex_state = 173}, - [133] = {.lex_state = 173}, - [134] = {.lex_state = 173}, - [135] = {.lex_state = 339}, - [136] = {.lex_state = 339}, - [137] = {.lex_state = 164}, - [138] = {.lex_state = 164}, - [139] = {.lex_state = 173}, - [140] = {.lex_state = 176}, - [141] = {.lex_state = 173}, - [142] = {.lex_state = 176}, - [143] = {.lex_state = 176}, - [144] = {.lex_state = 173}, - [145] = {.lex_state = 176}, - [146] = {.lex_state = 176}, - [147] = {.lex_state = 176}, - [148] = {.lex_state = 173}, - [149] = {.lex_state = 173}, - [150] = {.lex_state = 173}, - [151] = {.lex_state = 176}, - [152] = {.lex_state = 176}, - [153] = {.lex_state = 176}, - [154] = {.lex_state = 176}, - [155] = {.lex_state = 176}, - [156] = {.lex_state = 176}, - [157] = {.lex_state = 164}, - [158] = {.lex_state = 176}, - [159] = {.lex_state = 176}, - [160] = {.lex_state = 176}, - [161] = {.lex_state = 176}, - [162] = {.lex_state = 176}, - [163] = {.lex_state = 176}, - [164] = {.lex_state = 176}, - [165] = {.lex_state = 176}, - [166] = {.lex_state = 176}, - [167] = {.lex_state = 176}, - [168] = {.lex_state = 173}, - [169] = {.lex_state = 176}, - [170] = {.lex_state = 176}, - [171] = {.lex_state = 176}, - [172] = {.lex_state = 176}, - [173] = {.lex_state = 173}, - [174] = {.lex_state = 173}, - [175] = {.lex_state = 173}, - [176] = {.lex_state = 173}, - [177] = {.lex_state = 173}, - [178] = {.lex_state = 173}, - [179] = {.lex_state = 173}, - [180] = {.lex_state = 173}, - [181] = {.lex_state = 173}, - [182] = {.lex_state = 173}, - [183] = {.lex_state = 173}, - [184] = {.lex_state = 173}, - [185] = {.lex_state = 173}, - [186] = {.lex_state = 173}, - [187] = {.lex_state = 173}, - [188] = {.lex_state = 173}, - [189] = {.lex_state = 173}, - [190] = {.lex_state = 173}, - [191] = {.lex_state = 173}, - [192] = {.lex_state = 173}, - [193] = {.lex_state = 173}, - [194] = {.lex_state = 173}, - [195] = {.lex_state = 173}, - [196] = {.lex_state = 173}, - [197] = {.lex_state = 173}, - [198] = {.lex_state = 173}, - [199] = {.lex_state = 173}, - [200] = {.lex_state = 173}, - [201] = {.lex_state = 173}, - [202] = {.lex_state = 173}, - [203] = {.lex_state = 173}, - [204] = {.lex_state = 173}, - [205] = {.lex_state = 173}, - [206] = {.lex_state = 173}, - [207] = {.lex_state = 173}, - [208] = {.lex_state = 173}, - [209] = {.lex_state = 173}, - [210] = {.lex_state = 173}, - [211] = {.lex_state = 173}, - [212] = {.lex_state = 173}, - [213] = {.lex_state = 173}, - [214] = {.lex_state = 173}, - [215] = {.lex_state = 173}, - [216] = {.lex_state = 173}, - [217] = {.lex_state = 173}, - [218] = {.lex_state = 166}, - [219] = {.lex_state = 173}, - [220] = {.lex_state = 173}, - [221] = {.lex_state = 173}, - [222] = {.lex_state = 173}, - [223] = {.lex_state = 173}, - [224] = {.lex_state = 171}, - [225] = {.lex_state = 167}, - [226] = {.lex_state = 164}, - [227] = {.lex_state = 171}, - [228] = {.lex_state = 339}, - [229] = {.lex_state = 171}, - [230] = {.lex_state = 339}, - [231] = {.lex_state = 171}, - [232] = {.lex_state = 339}, - [233] = {.lex_state = 339}, - [234] = {.lex_state = 339}, - [235] = {.lex_state = 339}, - [236] = {.lex_state = 171}, - [237] = {.lex_state = 171}, - [238] = {.lex_state = 166}, - [239] = {.lex_state = 171}, - [240] = {.lex_state = 171}, - [241] = {.lex_state = 171}, - [242] = {.lex_state = 171}, - [243] = {.lex_state = 171}, - [244] = {.lex_state = 171}, - [245] = {.lex_state = 171}, - [246] = {.lex_state = 171}, - [247] = {.lex_state = 171}, - [248] = {.lex_state = 171}, - [249] = {.lex_state = 171}, - [250] = {.lex_state = 339}, - [251] = {.lex_state = 171}, - [252] = {.lex_state = 171}, - [253] = {.lex_state = 171}, - [254] = {.lex_state = 171}, - [255] = {.lex_state = 171}, - [256] = {.lex_state = 171}, - [257] = {.lex_state = 171}, - [258] = {.lex_state = 171}, - [259] = {.lex_state = 171}, - [260] = {.lex_state = 171}, - [261] = {.lex_state = 171}, - [262] = {.lex_state = 171}, - [263] = {.lex_state = 171}, - [264] = {.lex_state = 171}, - [265] = {.lex_state = 171}, - [266] = {.lex_state = 171}, - [267] = {.lex_state = 171}, - [268] = {.lex_state = 171}, - [269] = {.lex_state = 171}, - [270] = {.lex_state = 171}, - [271] = {.lex_state = 171}, - [272] = {.lex_state = 171}, - [273] = {.lex_state = 171}, - [274] = {.lex_state = 171}, - [275] = {.lex_state = 171}, - [276] = {.lex_state = 171}, - [277] = {.lex_state = 171}, - [278] = {.lex_state = 171}, - [279] = {.lex_state = 171}, - [280] = {.lex_state = 171}, - [281] = {.lex_state = 339}, - [282] = {.lex_state = 171}, - [283] = {.lex_state = 171}, - [284] = {.lex_state = 171}, - [285] = {.lex_state = 339}, - [286] = {.lex_state = 171}, - [287] = {.lex_state = 339}, - [288] = {.lex_state = 339}, - [289] = {.lex_state = 339}, - [290] = {.lex_state = 171}, - [291] = {.lex_state = 171}, - [292] = {.lex_state = 208}, - [293] = {.lex_state = 171}, - [294] = {.lex_state = 339}, - [295] = {.lex_state = 176}, - [296] = {.lex_state = 171}, - [297] = {.lex_state = 171}, - [298] = {.lex_state = 173}, - [299] = {.lex_state = 171}, - [300] = {.lex_state = 171}, - [301] = {.lex_state = 171}, - [302] = {.lex_state = 171}, - [303] = {.lex_state = 176}, - [304] = {.lex_state = 171}, - [305] = {.lex_state = 339}, - [306] = {.lex_state = 339}, - [307] = {.lex_state = 339}, - [308] = {.lex_state = 339}, - [309] = {.lex_state = 339}, - [310] = {.lex_state = 171}, - [311] = {.lex_state = 171}, - [312] = {.lex_state = 339}, - [313] = {.lex_state = 208}, - [314] = {.lex_state = 171}, - [315] = {.lex_state = 171}, - [316] = {.lex_state = 171}, - [317] = {.lex_state = 208}, - [318] = {.lex_state = 208}, - [319] = {.lex_state = 208}, - [320] = {.lex_state = 171}, - [321] = {.lex_state = 171}, - [322] = {.lex_state = 339}, - [323] = {.lex_state = 171}, - [324] = {.lex_state = 171}, - [325] = {.lex_state = 171}, - [326] = {.lex_state = 171}, - [327] = {.lex_state = 171}, - [328] = {.lex_state = 171}, - [329] = {.lex_state = 339}, - [330] = {.lex_state = 171}, - [331] = {.lex_state = 208}, - [332] = {.lex_state = 208}, - [333] = {.lex_state = 171}, - [334] = {.lex_state = 171}, - [335] = {.lex_state = 171}, - [336] = {.lex_state = 339}, - [337] = {.lex_state = 176}, - [338] = {.lex_state = 339}, - [339] = {.lex_state = 339}, - [340] = {.lex_state = 339}, - [341] = {.lex_state = 171}, - [342] = {.lex_state = 339}, - [343] = {.lex_state = 339}, - [344] = {.lex_state = 339}, - [345] = {.lex_state = 171}, - [346] = {.lex_state = 339}, - [347] = {.lex_state = 171}, - [348] = {.lex_state = 208}, - [349] = {.lex_state = 171}, - [350] = {.lex_state = 171}, - [351] = {.lex_state = 171}, - [352] = {.lex_state = 208}, - [353] = {.lex_state = 208}, - [354] = {.lex_state = 208}, - [355] = {.lex_state = 339}, - [356] = {.lex_state = 208}, - [357] = {.lex_state = 208}, - [358] = {.lex_state = 339}, - [359] = {.lex_state = 208}, - [360] = {.lex_state = 171}, - [361] = {.lex_state = 171}, - [362] = {.lex_state = 208}, - [363] = {.lex_state = 176}, - [364] = {.lex_state = 208}, - [365] = {.lex_state = 339}, - [366] = {.lex_state = 171}, - [367] = {.lex_state = 339}, - [368] = {.lex_state = 171}, - [369] = {.lex_state = 171}, - [370] = {.lex_state = 171}, - [371] = {.lex_state = 171}, - [372] = {.lex_state = 171}, - [373] = {.lex_state = 171}, - [374] = {.lex_state = 171}, - [375] = {.lex_state = 171}, - [376] = {.lex_state = 339}, - [377] = {.lex_state = 339}, - [378] = {.lex_state = 339}, - [379] = {.lex_state = 176}, - [380] = {.lex_state = 339}, - [381] = {.lex_state = 171}, - [382] = {.lex_state = 171}, - [383] = {.lex_state = 339}, - [384] = {.lex_state = 176}, - [385] = {.lex_state = 173}, - [386] = {.lex_state = 339}, - [387] = {.lex_state = 339}, - [388] = {.lex_state = 171}, - [389] = {.lex_state = 176}, - [390] = {.lex_state = 173}, - [391] = {.lex_state = 339}, - [392] = {.lex_state = 171}, - [393] = {.lex_state = 171}, - [394] = {.lex_state = 176}, - [395] = {.lex_state = 171}, - [396] = {.lex_state = 339}, - [397] = {.lex_state = 176}, - [398] = {.lex_state = 339}, - [399] = {.lex_state = 176}, - [400] = {.lex_state = 339}, - [401] = {.lex_state = 171}, - [402] = {.lex_state = 171}, - [403] = {.lex_state = 176}, - [404] = {.lex_state = 171}, - [405] = {.lex_state = 171}, - [406] = {.lex_state = 339}, - [407] = {.lex_state = 176}, - [408] = {.lex_state = 339}, - [409] = {.lex_state = 339}, - [410] = {.lex_state = 176}, - [411] = {.lex_state = 339}, - [412] = {.lex_state = 176}, - [413] = {.lex_state = 171}, - [414] = {.lex_state = 176}, - [415] = {.lex_state = 339}, - [416] = {.lex_state = 171}, - [417] = {.lex_state = 176}, - [418] = {.lex_state = 171}, - [419] = {.lex_state = 171}, - [420] = {.lex_state = 176}, - [421] = {.lex_state = 171}, - [422] = {.lex_state = 171}, - [423] = {.lex_state = 339}, - [424] = {.lex_state = 171}, - [425] = {.lex_state = 171}, - [426] = {.lex_state = 171}, - [427] = {.lex_state = 171}, - [428] = {.lex_state = 171}, - [429] = {.lex_state = 171}, - [430] = {.lex_state = 174}, - [431] = {.lex_state = 339}, - [432] = {.lex_state = 339}, - [433] = {.lex_state = 171}, - [434] = {.lex_state = 171}, - [435] = {.lex_state = 171}, - [436] = {.lex_state = 339}, - [437] = {.lex_state = 339}, - [438] = {.lex_state = 174}, - [439] = {.lex_state = 171}, - [440] = {.lex_state = 171}, - [441] = {.lex_state = 171}, - [442] = {.lex_state = 171}, - [443] = {.lex_state = 171}, - [444] = {.lex_state = 339}, - [445] = {.lex_state = 174}, - [446] = {.lex_state = 175}, - [447] = {.lex_state = 175}, - [448] = {.lex_state = 339}, - [449] = {.lex_state = 173}, - [450] = {.lex_state = 173}, - [451] = {.lex_state = 339}, - [452] = {.lex_state = 339}, - [453] = {.lex_state = 176}, - [454] = {.lex_state = 173}, - [455] = {.lex_state = 339}, - [456] = {.lex_state = 174}, - [457] = {.lex_state = 173}, - [458] = {.lex_state = 173}, - [459] = {.lex_state = 173}, - [460] = {.lex_state = 339}, - [461] = {.lex_state = 173}, - [462] = {.lex_state = 174}, - [463] = {.lex_state = 339}, - [464] = {.lex_state = 176}, - [465] = {.lex_state = 339}, - [466] = {.lex_state = 176}, - [467] = {.lex_state = 176}, - [468] = {.lex_state = 174}, - [469] = {.lex_state = 176}, - [470] = {.lex_state = 339}, - [471] = {.lex_state = 176}, - [472] = {.lex_state = 176}, - [473] = {.lex_state = 176}, - [474] = {.lex_state = 174}, - [475] = {.lex_state = 174}, - [476] = {.lex_state = 174}, - [477] = {.lex_state = 176}, - [478] = {.lex_state = 176}, - [479] = {.lex_state = 176}, - [480] = {.lex_state = 173}, - [481] = {.lex_state = 176}, - [482] = {.lex_state = 339}, - [483] = {.lex_state = 176}, - [484] = {.lex_state = 339}, - [485] = {.lex_state = 339}, - [486] = {.lex_state = 339}, - [487] = {.lex_state = 339}, - [488] = {.lex_state = 339}, - [489] = {.lex_state = 339}, - [490] = {.lex_state = 339}, - [491] = {.lex_state = 339}, - [492] = {.lex_state = 339}, - [493] = {.lex_state = 339}, - [494] = {.lex_state = 339}, - [495] = {.lex_state = 339}, - [496] = {.lex_state = 339}, - [497] = {.lex_state = 339}, - [498] = {.lex_state = 339}, - [499] = {.lex_state = 339}, - [500] = {.lex_state = 339}, - [501] = {.lex_state = 339}, - [502] = {.lex_state = 339}, - [503] = {.lex_state = 339}, - [504] = {.lex_state = 339}, - [505] = {.lex_state = 339}, - [506] = {.lex_state = 339}, - [507] = {.lex_state = 339}, - [508] = {.lex_state = 339}, - [509] = {.lex_state = 339}, - [510] = {.lex_state = 339}, - [511] = {.lex_state = 339}, - [512] = {.lex_state = 339}, - [513] = {.lex_state = 339}, - [514] = {.lex_state = 339}, - [515] = {.lex_state = 339}, - [516] = {.lex_state = 339}, - [517] = {.lex_state = 339}, - [518] = {.lex_state = 339}, - [519] = {.lex_state = 339}, - [520] = {.lex_state = 339}, - [521] = {.lex_state = 339}, - [522] = {.lex_state = 339}, - [523] = {.lex_state = 339}, - [524] = {.lex_state = 339}, - [525] = {.lex_state = 339}, - [526] = {.lex_state = 339}, - [527] = {.lex_state = 339}, - [528] = {.lex_state = 339}, - [529] = {.lex_state = 339}, - [530] = {.lex_state = 339}, - [531] = {.lex_state = 339}, - [532] = {.lex_state = 339}, - [533] = {.lex_state = 339}, - [534] = {.lex_state = 339}, - [535] = {.lex_state = 339}, - [536] = {.lex_state = 174}, - [537] = {.lex_state = 339}, - [538] = {.lex_state = 339}, - [539] = {.lex_state = 174}, - [540] = {.lex_state = 174}, - [541] = {.lex_state = 174}, - [542] = {.lex_state = 174}, - [543] = {.lex_state = 174}, - [544] = {.lex_state = 174}, - [545] = {.lex_state = 174}, - [546] = {.lex_state = 339}, - [547] = {.lex_state = 339}, - [548] = {.lex_state = 174}, - [549] = {.lex_state = 339}, - [550] = {.lex_state = 339}, - [551] = {.lex_state = 174}, - [552] = {.lex_state = 174}, - [553] = {.lex_state = 174}, - [554] = {.lex_state = 174}, - [555] = {.lex_state = 339}, - [556] = {.lex_state = 174}, - [557] = {.lex_state = 174}, - [558] = {.lex_state = 174}, - [559] = {.lex_state = 174}, - [560] = {.lex_state = 339}, - [561] = {.lex_state = 339}, - [562] = {.lex_state = 174}, - [563] = {.lex_state = 174}, - [564] = {.lex_state = 174}, - [565] = {.lex_state = 174}, - [566] = {.lex_state = 174}, - [567] = {.lex_state = 174}, - [568] = {.lex_state = 174}, - [569] = {.lex_state = 174}, - [570] = {.lex_state = 339}, - [571] = {.lex_state = 339}, - [572] = {.lex_state = 174}, - [573] = {.lex_state = 174}, - [574] = {.lex_state = 339}, - [575] = {.lex_state = 174}, - [576] = {.lex_state = 174}, - [577] = {.lex_state = 174}, - [578] = {.lex_state = 174}, - [579] = {.lex_state = 174}, - [580] = {.lex_state = 174}, - [581] = {.lex_state = 174}, - [582] = {.lex_state = 174}, - [583] = {.lex_state = 339}, - [584] = {.lex_state = 339}, - [585] = {.lex_state = 174}, - [586] = {.lex_state = 174}, - [587] = {.lex_state = 339}, - [588] = {.lex_state = 339}, - [589] = {.lex_state = 339}, - [590] = {.lex_state = 174}, - [591] = {.lex_state = 174}, - [592] = {.lex_state = 174}, - [593] = {.lex_state = 339}, - [594] = {.lex_state = 174}, - [595] = {.lex_state = 339}, - [596] = {.lex_state = 339}, - [597] = {.lex_state = 339}, - [598] = {.lex_state = 339}, - [599] = {.lex_state = 339}, - [600] = {.lex_state = 339}, - [601] = {.lex_state = 339}, - [602] = {.lex_state = 339}, - [603] = {.lex_state = 339}, - [604] = {.lex_state = 339}, - [605] = {.lex_state = 339}, - [606] = {.lex_state = 339}, - [607] = {.lex_state = 339}, - [608] = {.lex_state = 339}, - [609] = {.lex_state = 339}, - [610] = {.lex_state = 339}, - [611] = {.lex_state = 339}, - [612] = {.lex_state = 339}, - [613] = {.lex_state = 339}, - [614] = {.lex_state = 339}, - [615] = {.lex_state = 339}, - [616] = {.lex_state = 339}, - [617] = {.lex_state = 339}, - [618] = {.lex_state = 339}, - [619] = {.lex_state = 339}, - [620] = {.lex_state = 339}, - [621] = {.lex_state = 339}, - [622] = {.lex_state = 339}, - [623] = {.lex_state = 339}, - [624] = {.lex_state = 339}, - [625] = {.lex_state = 208}, - [626] = {.lex_state = 339}, - [627] = {.lex_state = 339}, - [628] = {.lex_state = 339}, - [629] = {.lex_state = 339}, - [630] = {.lex_state = 339}, - [631] = {.lex_state = 339}, - [632] = {.lex_state = 339}, - [633] = {.lex_state = 339}, - [634] = {.lex_state = 339}, - [635] = {.lex_state = 339}, - [636] = {.lex_state = 339}, - [637] = {.lex_state = 339}, - [638] = {.lex_state = 339}, - [639] = {.lex_state = 339}, - [640] = {.lex_state = 339}, - [641] = {.lex_state = 339}, - [642] = {.lex_state = 339}, - [643] = {.lex_state = 339}, - [644] = {.lex_state = 339}, - [645] = {.lex_state = 339}, - [646] = {.lex_state = 339}, - [647] = {.lex_state = 339}, - [648] = {.lex_state = 339}, - [649] = {.lex_state = 339}, - [650] = {.lex_state = 339}, - [651] = {.lex_state = 339}, - [652] = {.lex_state = 339}, - [653] = {.lex_state = 339}, - [654] = {.lex_state = 339}, - [655] = {.lex_state = 339}, - [656] = {.lex_state = 339}, - [657] = {.lex_state = 339}, - [658] = {.lex_state = 339}, - [659] = {.lex_state = 339}, - [660] = {.lex_state = 339}, - [661] = {.lex_state = 339}, - [662] = {.lex_state = 339}, - [663] = {.lex_state = 339}, - [664] = {.lex_state = 339}, - [665] = {.lex_state = 339}, - [666] = {.lex_state = 339}, - [667] = {.lex_state = 339}, - [668] = {.lex_state = 339}, - [669] = {.lex_state = 174}, - [670] = {.lex_state = 339}, - [671] = {.lex_state = 174}, - [672] = {.lex_state = 174}, - [673] = {.lex_state = 174}, - [674] = {.lex_state = 174}, - [675] = {.lex_state = 174}, - [676] = {.lex_state = 174}, - [677] = {.lex_state = 174}, - [678] = {.lex_state = 174}, - [679] = {.lex_state = 174}, - [680] = {.lex_state = 174}, - [681] = {.lex_state = 174}, - [682] = {.lex_state = 174}, - [683] = {.lex_state = 174}, - [684] = {.lex_state = 174}, - [685] = {.lex_state = 174}, - [686] = {.lex_state = 174}, - [687] = {.lex_state = 174}, - [688] = {.lex_state = 174}, - [689] = {.lex_state = 174}, - [690] = {.lex_state = 174}, - [691] = {.lex_state = 174}, - [692] = {.lex_state = 339}, - [693] = {.lex_state = 174}, - [694] = {.lex_state = 339}, - [695] = {.lex_state = 339}, - [696] = {.lex_state = 339}, - [697] = {.lex_state = 339}, - [698] = {.lex_state = 174}, - [699] = {.lex_state = 339}, - [700] = {.lex_state = 339}, - [701] = {.lex_state = 339}, - [702] = {.lex_state = 339}, - [703] = {.lex_state = 339}, - [704] = {.lex_state = 339}, - [705] = {.lex_state = 174}, - [706] = {.lex_state = 174}, - [707] = {.lex_state = 174}, - [708] = {.lex_state = 339}, - [709] = {.lex_state = 174}, - [710] = {.lex_state = 174}, - [711] = {.lex_state = 174}, - [712] = {.lex_state = 174}, - [713] = {.lex_state = 339}, - [714] = {.lex_state = 339}, - [715] = {.lex_state = 339}, - [716] = {.lex_state = 174}, - [717] = {.lex_state = 339}, - [718] = {.lex_state = 339}, - [719] = {.lex_state = 339}, - [720] = {.lex_state = 339}, - [721] = {.lex_state = 174}, - [722] = {.lex_state = 174}, - [723] = {.lex_state = 339}, - [724] = {.lex_state = 339}, - [725] = {.lex_state = 174}, - [726] = {.lex_state = 339}, - [727] = {.lex_state = 339}, - [728] = {.lex_state = 339}, - [729] = {.lex_state = 339}, - [730] = {.lex_state = 339}, - [731] = {.lex_state = 339}, - [732] = {.lex_state = 339}, - [733] = {.lex_state = 339}, - [734] = {.lex_state = 339}, - [735] = {.lex_state = 339}, - [736] = {.lex_state = 174}, - [737] = {.lex_state = 339}, - [738] = {.lex_state = 339}, - [739] = {.lex_state = 174}, - [740] = {.lex_state = 339}, - [741] = {.lex_state = 339}, - [742] = {.lex_state = 339}, - [743] = {.lex_state = 174}, - [744] = {.lex_state = 174}, - [745] = {.lex_state = 174}, - [746] = {.lex_state = 339}, - [747] = {.lex_state = 174}, - [748] = {.lex_state = 174}, - [749] = {.lex_state = 339}, - [750] = {.lex_state = 339}, - [751] = {.lex_state = 174}, - [752] = {.lex_state = 339}, - [753] = {.lex_state = 174}, - [754] = {.lex_state = 339}, - [755] = {.lex_state = 174}, - [756] = {.lex_state = 174}, - [757] = {.lex_state = 174}, - [758] = {.lex_state = 339}, - [759] = {.lex_state = 339}, - [760] = {.lex_state = 339}, - [761] = {.lex_state = 339}, - [762] = {.lex_state = 339}, - [763] = {.lex_state = 174}, - [764] = {.lex_state = 339}, - [765] = {.lex_state = 339}, - [766] = {.lex_state = 339}, - [767] = {.lex_state = 339}, - [768] = {.lex_state = 339}, - [769] = {.lex_state = 339}, - [770] = {.lex_state = 339}, - [771] = {.lex_state = 339}, - [772] = {.lex_state = 339}, - [773] = {.lex_state = 339}, - [774] = {.lex_state = 174}, - [775] = {.lex_state = 339}, - [776] = {.lex_state = 339}, - [777] = {.lex_state = 174}, - [778] = {.lex_state = 174}, - [779] = {.lex_state = 174}, - [780] = {.lex_state = 174}, - [781] = {.lex_state = 174}, - [782] = {.lex_state = 174}, - [783] = {.lex_state = 174}, - [784] = {.lex_state = 339}, - [785] = {.lex_state = 339}, - [786] = {.lex_state = 339}, - [787] = {.lex_state = 339}, - [788] = {.lex_state = 174}, - [789] = {.lex_state = 174}, - [790] = {.lex_state = 339}, - [791] = {.lex_state = 339}, - [792] = {.lex_state = 339}, - [793] = {.lex_state = 339}, - [794] = {.lex_state = 339}, - [795] = {.lex_state = 339}, - [796] = {.lex_state = 174}, - [797] = {.lex_state = 339}, - [798] = {.lex_state = 174}, - [799] = {.lex_state = 174}, - [800] = {.lex_state = 174}, - [801] = {.lex_state = 339}, - [802] = {.lex_state = 339}, - [803] = {.lex_state = 174}, - [804] = {.lex_state = 174}, - [805] = {.lex_state = 174}, - [806] = {.lex_state = 174}, - [807] = {.lex_state = 174}, - [808] = {.lex_state = 174}, - [809] = {.lex_state = 174}, - [810] = {.lex_state = 174}, - [811] = {.lex_state = 174}, - [812] = {.lex_state = 339}, - [813] = {.lex_state = 174}, - [814] = {.lex_state = 174}, - [815] = {.lex_state = 174}, - [816] = {.lex_state = 174}, - [817] = {.lex_state = 339}, - [818] = {.lex_state = 165}, - [819] = {.lex_state = 239}, - [820] = {.lex_state = 239}, - [821] = {.lex_state = 239}, - [822] = {.lex_state = 209}, - [823] = {.lex_state = 239}, - [824] = {.lex_state = 239}, - [825] = {.lex_state = 239}, - [826] = {.lex_state = 239}, - [827] = {.lex_state = 239}, - [828] = {.lex_state = 239}, - [829] = {.lex_state = 209}, - [830] = {.lex_state = 209}, - [831] = {.lex_state = 239}, - [832] = {.lex_state = 239}, - [833] = {.lex_state = 239}, - [834] = {.lex_state = 239}, - [835] = {.lex_state = 239}, - [836] = {.lex_state = 239}, - [837] = {.lex_state = 239}, - [838] = {.lex_state = 239}, - [839] = {.lex_state = 239}, - [840] = {.lex_state = 239}, - [841] = {.lex_state = 239}, - [842] = {.lex_state = 239}, - [843] = {.lex_state = 165}, - [844] = {.lex_state = 165}, - [845] = {.lex_state = 165}, - [846] = {.lex_state = 168}, - [847] = {.lex_state = 165}, - [848] = {.lex_state = 165}, - [849] = {.lex_state = 169}, - [850] = {.lex_state = 169}, - [851] = {.lex_state = 339}, - [852] = {.lex_state = 176}, - [853] = {.lex_state = 176}, - [854] = {.lex_state = 339}, - [855] = {.lex_state = 176}, - [856] = {.lex_state = 208}, - [857] = {.lex_state = 208}, - [858] = {.lex_state = 208}, - [859] = {.lex_state = 208}, - [860] = {.lex_state = 208}, - [861] = {.lex_state = 208}, - [862] = {.lex_state = 208}, - [863] = {.lex_state = 176}, - [864] = {.lex_state = 339}, - [865] = {.lex_state = 176}, - [866] = {.lex_state = 208}, - [867] = {.lex_state = 176}, - [868] = {.lex_state = 176}, - [869] = {.lex_state = 176}, - [870] = {.lex_state = 176}, - [871] = {.lex_state = 208}, - [872] = {.lex_state = 176}, - [873] = {.lex_state = 176}, - [874] = {.lex_state = 176}, - [875] = {.lex_state = 176}, - [876] = {.lex_state = 208}, - [877] = {.lex_state = 176}, - [878] = {.lex_state = 176}, - [879] = {.lex_state = 208}, - [880] = {.lex_state = 208}, - [881] = {.lex_state = 176}, - [882] = {.lex_state = 208}, - [883] = {.lex_state = 176}, - [884] = {.lex_state = 176}, - [885] = {.lex_state = 176}, - [886] = {.lex_state = 176}, - [887] = {.lex_state = 176}, - [888] = {.lex_state = 176}, - [889] = {.lex_state = 176}, - [890] = {.lex_state = 176}, - [891] = {.lex_state = 208}, - [892] = {.lex_state = 188}, - [893] = {.lex_state = 188}, - [894] = {.lex_state = 188}, - [895] = {.lex_state = 188}, - [896] = {.lex_state = 188}, - [897] = {.lex_state = 173}, - [898] = {.lex_state = 175}, - [899] = {.lex_state = 188}, - [900] = {.lex_state = 173}, - [901] = {.lex_state = 188}, - [902] = {.lex_state = 188}, - [903] = {.lex_state = 175}, - [904] = {.lex_state = 188}, - [905] = {.lex_state = 188}, - [906] = {.lex_state = 188}, - [907] = {.lex_state = 188}, - [908] = {.lex_state = 176}, - [909] = {.lex_state = 188}, - [910] = {.lex_state = 173}, - [911] = {.lex_state = 173}, - [912] = {.lex_state = 173}, - [913] = {.lex_state = 173}, - [914] = {.lex_state = 173}, - [915] = {.lex_state = 173}, - [916] = {.lex_state = 173}, - [917] = {.lex_state = 173}, - [918] = {.lex_state = 173}, - [919] = {.lex_state = 173}, - [920] = {.lex_state = 173}, - [921] = {.lex_state = 173}, - [922] = {.lex_state = 173}, - [923] = {.lex_state = 173}, - [924] = {.lex_state = 208}, - [925] = {.lex_state = 173}, - [926] = {.lex_state = 173}, - [927] = {.lex_state = 173}, - [928] = {.lex_state = 173}, - [929] = {.lex_state = 173}, - [930] = {.lex_state = 173}, - [931] = {.lex_state = 173}, - [932] = {.lex_state = 173}, - [933] = {.lex_state = 175}, - [934] = {.lex_state = 175}, - [935] = {.lex_state = 173}, - [936] = {.lex_state = 173}, - [937] = {.lex_state = 173}, - [938] = {.lex_state = 173}, - [939] = {.lex_state = 173}, - [940] = {.lex_state = 173}, - [941] = {.lex_state = 173}, - [942] = {.lex_state = 173}, - [943] = {.lex_state = 173}, - [944] = {.lex_state = 173}, - [945] = {.lex_state = 173}, - [946] = {.lex_state = 173}, - [947] = {.lex_state = 173}, - [948] = {.lex_state = 173}, - [949] = {.lex_state = 173}, - [950] = {.lex_state = 173}, - [951] = {.lex_state = 173}, - [952] = {.lex_state = 173}, - [953] = {.lex_state = 173}, - [954] = {.lex_state = 173}, - [955] = {.lex_state = 173}, - [956] = {.lex_state = 173}, - [957] = {.lex_state = 173}, - [958] = {.lex_state = 173}, - [959] = {.lex_state = 173}, - [960] = {.lex_state = 173}, - [961] = {.lex_state = 173}, - [962] = {.lex_state = 184}, - [963] = {.lex_state = 177}, - [964] = {.lex_state = 176}, - [965] = {.lex_state = 176}, - [966] = {.lex_state = 176}, - [967] = {.lex_state = 177}, - [968] = {.lex_state = 176}, - [969] = {.lex_state = 176}, - [970] = {.lex_state = 176}, - [971] = {.lex_state = 176}, - [972] = {.lex_state = 177}, - [973] = {.lex_state = 176}, - [974] = {.lex_state = 176}, - [975] = {.lex_state = 177}, - [976] = {.lex_state = 176}, - [977] = {.lex_state = 177}, - [978] = {.lex_state = 176}, - [979] = {.lex_state = 177}, - [980] = {.lex_state = 177}, - [981] = {.lex_state = 176}, - [982] = {.lex_state = 177}, - [983] = {.lex_state = 177}, - [984] = {.lex_state = 177}, - [985] = {.lex_state = 176}, - [986] = {.lex_state = 176}, - [987] = {.lex_state = 177}, - [988] = {.lex_state = 177}, - [989] = {.lex_state = 176}, - [990] = {.lex_state = 176}, - [991] = {.lex_state = 177}, - [992] = {.lex_state = 177}, - [993] = {.lex_state = 177}, - [994] = {.lex_state = 176}, - [995] = {.lex_state = 176}, - [996] = {.lex_state = 177}, - [997] = {.lex_state = 177}, - [998] = {.lex_state = 177}, - [999] = {.lex_state = 177}, - [1000] = {.lex_state = 176}, - [1001] = {.lex_state = 188}, - [1002] = {.lex_state = 176}, - [1003] = {.lex_state = 177}, - [1004] = {.lex_state = 176}, - [1005] = {.lex_state = 176}, - [1006] = {.lex_state = 177}, - [1007] = {.lex_state = 176}, - [1008] = {.lex_state = 176}, - [1009] = {.lex_state = 176}, - [1010] = {.lex_state = 177}, - [1011] = {.lex_state = 177}, - [1012] = {.lex_state = 177}, - [1013] = {.lex_state = 177}, - [1014] = {.lex_state = 177}, - [1015] = {.lex_state = 176}, - [1016] = {.lex_state = 176}, - [1017] = {.lex_state = 176}, - [1018] = {.lex_state = 176}, - [1019] = {.lex_state = 176}, - [1020] = {.lex_state = 176}, - [1021] = {.lex_state = 176}, - [1022] = {.lex_state = 176}, - [1023] = {.lex_state = 176}, - [1024] = {.lex_state = 176}, - [1025] = {.lex_state = 176}, - [1026] = {.lex_state = 176}, - [1027] = {.lex_state = 176}, - [1028] = {.lex_state = 176}, - [1029] = {.lex_state = 176}, - [1030] = {.lex_state = 176}, - [1031] = {.lex_state = 208}, - [1032] = {.lex_state = 176}, - [1033] = {.lex_state = 176}, - [1034] = {.lex_state = 176}, - [1035] = {.lex_state = 176}, - [1036] = {.lex_state = 176}, - [1037] = {.lex_state = 176}, - [1038] = {.lex_state = 176}, - [1039] = {.lex_state = 176}, - [1040] = {.lex_state = 176}, - [1041] = {.lex_state = 176}, - [1042] = {.lex_state = 176}, - [1043] = {.lex_state = 176}, - [1044] = {.lex_state = 176}, - [1045] = {.lex_state = 176}, - [1046] = {.lex_state = 176}, - [1047] = {.lex_state = 176}, - [1048] = {.lex_state = 176}, - [1049] = {.lex_state = 176}, - [1050] = {.lex_state = 176}, - [1051] = {.lex_state = 176}, - [1052] = {.lex_state = 176}, - [1053] = {.lex_state = 176}, - [1054] = {.lex_state = 176}, - [1055] = {.lex_state = 176}, - [1056] = {.lex_state = 176}, - [1057] = {.lex_state = 176}, - [1058] = {.lex_state = 176}, - [1059] = {.lex_state = 176}, - [1060] = {.lex_state = 176}, - [1061] = {.lex_state = 176}, - [1062] = {.lex_state = 176}, - [1063] = {.lex_state = 176}, - [1064] = {.lex_state = 176}, - [1065] = {.lex_state = 176}, - [1066] = {.lex_state = 176}, - [1067] = {.lex_state = 176}, - [1068] = {.lex_state = 176}, - [1069] = {.lex_state = 176}, - [1070] = {.lex_state = 176}, - [1071] = {.lex_state = 176}, - [1072] = {.lex_state = 176}, - [1073] = {.lex_state = 176}, - [1074] = {.lex_state = 176}, - [1075] = {.lex_state = 176}, - [1076] = {.lex_state = 176}, - [1077] = {.lex_state = 176}, - [1078] = {.lex_state = 176}, - [1079] = {.lex_state = 176}, - [1080] = {.lex_state = 176}, - [1081] = {.lex_state = 176}, - [1082] = {.lex_state = 176}, - [1083] = {.lex_state = 176}, - [1084] = {.lex_state = 176}, - [1085] = {.lex_state = 176}, - [1086] = {.lex_state = 176}, - [1087] = {.lex_state = 176}, - [1088] = {.lex_state = 176}, - [1089] = {.lex_state = 176}, - [1090] = {.lex_state = 176}, - [1091] = {.lex_state = 176}, - [1092] = {.lex_state = 176}, - [1093] = {.lex_state = 176}, - [1094] = {.lex_state = 176}, - [1095] = {.lex_state = 176}, - [1096] = {.lex_state = 176}, - [1097] = {.lex_state = 176}, - [1098] = {.lex_state = 176}, - [1099] = {.lex_state = 176}, - [1100] = {.lex_state = 176}, - [1101] = {.lex_state = 176}, - [1102] = {.lex_state = 176}, - [1103] = {.lex_state = 176}, - [1104] = {.lex_state = 176}, - [1105] = {.lex_state = 176}, - [1106] = {.lex_state = 176}, - [1107] = {.lex_state = 176}, - [1108] = {.lex_state = 176}, - [1109] = {.lex_state = 176}, - [1110] = {.lex_state = 176}, - [1111] = {.lex_state = 176}, - [1112] = {.lex_state = 176}, - [1113] = {.lex_state = 176}, - [1114] = {.lex_state = 176}, - [1115] = {.lex_state = 176}, - [1116] = {.lex_state = 176}, - [1117] = {.lex_state = 176}, - [1118] = {.lex_state = 176}, - [1119] = {.lex_state = 176}, - [1120] = {.lex_state = 176}, - [1121] = {.lex_state = 176}, - [1122] = {.lex_state = 176}, - [1123] = {.lex_state = 176}, - [1124] = {.lex_state = 176}, - [1125] = {.lex_state = 176}, - [1126] = {.lex_state = 176}, - [1127] = {.lex_state = 176}, - [1128] = {.lex_state = 176}, - [1129] = {.lex_state = 176}, - [1130] = {.lex_state = 176}, - [1131] = {.lex_state = 176}, - [1132] = {.lex_state = 176}, - [1133] = {.lex_state = 176}, - [1134] = {.lex_state = 176}, - [1135] = {.lex_state = 176}, - [1136] = {.lex_state = 176}, - [1137] = {.lex_state = 176}, - [1138] = {.lex_state = 176}, - [1139] = {.lex_state = 176}, - [1140] = {.lex_state = 176}, - [1141] = {.lex_state = 176}, - [1142] = {.lex_state = 176}, - [1143] = {.lex_state = 176}, - [1144] = {.lex_state = 176}, - [1145] = {.lex_state = 176}, - [1146] = {.lex_state = 176}, - [1147] = {.lex_state = 176}, - [1148] = {.lex_state = 176}, - [1149] = {.lex_state = 176}, - [1150] = {.lex_state = 176}, - [1151] = {.lex_state = 176}, - [1152] = {.lex_state = 176}, - [1153] = {.lex_state = 176}, - [1154] = {.lex_state = 176}, - [1155] = {.lex_state = 176}, - [1156] = {.lex_state = 176}, - [1157] = {.lex_state = 176}, - [1158] = {.lex_state = 176}, - [1159] = {.lex_state = 176}, - [1160] = {.lex_state = 176}, - [1161] = {.lex_state = 176}, - [1162] = {.lex_state = 176}, - [1163] = {.lex_state = 176}, - [1164] = {.lex_state = 176}, - [1165] = {.lex_state = 176}, - [1166] = {.lex_state = 176}, - [1167] = {.lex_state = 176}, - [1168] = {.lex_state = 176}, - [1169] = {.lex_state = 176}, - [1170] = {.lex_state = 176}, - [1171] = {.lex_state = 176}, - [1172] = {.lex_state = 176}, - [1173] = {.lex_state = 176}, - [1174] = {.lex_state = 176}, - [1175] = {.lex_state = 176}, - [1176] = {.lex_state = 176}, - [1177] = {.lex_state = 176}, - [1178] = {.lex_state = 176}, - [1179] = {.lex_state = 176}, - [1180] = {.lex_state = 176}, - [1181] = {.lex_state = 176}, - [1182] = {.lex_state = 176}, - [1183] = {.lex_state = 176}, - [1184] = {.lex_state = 176}, - [1185] = {.lex_state = 176}, - [1186] = {.lex_state = 176}, - [1187] = {.lex_state = 176}, - [1188] = {.lex_state = 176}, - [1189] = {.lex_state = 176}, - [1190] = {.lex_state = 176}, - [1191] = {.lex_state = 176}, - [1192] = {.lex_state = 176}, - [1193] = {.lex_state = 176}, - [1194] = {.lex_state = 176}, - [1195] = {.lex_state = 176}, - [1196] = {.lex_state = 176}, - [1197] = {.lex_state = 176}, - [1198] = {.lex_state = 176}, - [1199] = {.lex_state = 176}, - [1200] = {.lex_state = 176}, - [1201] = {.lex_state = 176}, - [1202] = {.lex_state = 176}, - [1203] = {.lex_state = 176}, - [1204] = {.lex_state = 176}, - [1205] = {.lex_state = 176}, - [1206] = {.lex_state = 176}, - [1207] = {.lex_state = 176}, - [1208] = {.lex_state = 176}, - [1209] = {.lex_state = 176}, - [1210] = {.lex_state = 176}, - [1211] = {.lex_state = 176}, - [1212] = {.lex_state = 176}, - [1213] = {.lex_state = 176}, - [1214] = {.lex_state = 176}, - [1215] = {.lex_state = 176}, - [1216] = {.lex_state = 176}, - [1217] = {.lex_state = 176}, - [1218] = {.lex_state = 176}, - [1219] = {.lex_state = 176}, - [1220] = {.lex_state = 176}, - [1221] = {.lex_state = 176}, - [1222] = {.lex_state = 176}, - [1223] = {.lex_state = 176}, - [1224] = {.lex_state = 176}, - [1225] = {.lex_state = 176}, - [1226] = {.lex_state = 176}, - [1227] = {.lex_state = 176}, - [1228] = {.lex_state = 176}, - [1229] = {.lex_state = 176}, - [1230] = {.lex_state = 176}, - [1231] = {.lex_state = 176}, - [1232] = {.lex_state = 176}, - [1233] = {.lex_state = 176}, - [1234] = {.lex_state = 176}, - [1235] = {.lex_state = 176}, - [1236] = {.lex_state = 176}, - [1237] = {.lex_state = 176}, - [1238] = {.lex_state = 176}, - [1239] = {.lex_state = 176}, - [1240] = {.lex_state = 176}, - [1241] = {.lex_state = 176}, - [1242] = {.lex_state = 176}, - [1243] = {.lex_state = 176}, - [1244] = {.lex_state = 176}, - [1245] = {.lex_state = 176}, - [1246] = {.lex_state = 176}, - [1247] = {.lex_state = 176}, - [1248] = {.lex_state = 176}, - [1249] = {.lex_state = 176}, - [1250] = {.lex_state = 176}, - [1251] = {.lex_state = 176}, - [1252] = {.lex_state = 176}, - [1253] = {.lex_state = 176}, - [1254] = {.lex_state = 176}, - [1255] = {.lex_state = 176}, - [1256] = {.lex_state = 176}, - [1257] = {.lex_state = 176}, - [1258] = {.lex_state = 176}, - [1259] = {.lex_state = 176}, - [1260] = {.lex_state = 176}, - [1261] = {.lex_state = 176}, - [1262] = {.lex_state = 176}, - [1263] = {.lex_state = 176}, - [1264] = {.lex_state = 176}, - [1265] = {.lex_state = 176}, - [1266] = {.lex_state = 176}, - [1267] = {.lex_state = 176}, - [1268] = {.lex_state = 195}, - [1269] = {.lex_state = 176}, - [1270] = {.lex_state = 176}, - [1271] = {.lex_state = 176}, - [1272] = {.lex_state = 176}, - [1273] = {.lex_state = 176}, - [1274] = {.lex_state = 176}, - [1275] = {.lex_state = 176}, - [1276] = {.lex_state = 176}, - [1277] = {.lex_state = 176}, - [1278] = {.lex_state = 176}, - [1279] = {.lex_state = 176}, - [1280] = {.lex_state = 176}, - [1281] = {.lex_state = 176}, - [1282] = {.lex_state = 176}, - [1283] = {.lex_state = 176}, - [1284] = {.lex_state = 176}, - [1285] = {.lex_state = 176}, - [1286] = {.lex_state = 176}, - [1287] = {.lex_state = 176}, - [1288] = {.lex_state = 176}, - [1289] = {.lex_state = 176}, - [1290] = {.lex_state = 176}, - [1291] = {.lex_state = 176}, - [1292] = {.lex_state = 176}, - [1293] = {.lex_state = 176}, - [1294] = {.lex_state = 176}, - [1295] = {.lex_state = 176}, - [1296] = {.lex_state = 176}, - [1297] = {.lex_state = 176}, - [1298] = {.lex_state = 176}, - [1299] = {.lex_state = 176}, - [1300] = {.lex_state = 176}, - [1301] = {.lex_state = 176}, - [1302] = {.lex_state = 176}, - [1303] = {.lex_state = 176}, - [1304] = {.lex_state = 176}, - [1305] = {.lex_state = 176}, - [1306] = {.lex_state = 176}, - [1307] = {.lex_state = 176}, - [1308] = {.lex_state = 176}, - [1309] = {.lex_state = 176}, - [1310] = {.lex_state = 176}, - [1311] = {.lex_state = 176}, - [1312] = {.lex_state = 176}, - [1313] = {.lex_state = 176}, - [1314] = {.lex_state = 176}, - [1315] = {.lex_state = 176}, - [1316] = {.lex_state = 176}, - [1317] = {.lex_state = 176}, - [1318] = {.lex_state = 176}, - [1319] = {.lex_state = 176}, - [1320] = {.lex_state = 176}, - [1321] = {.lex_state = 176}, - [1322] = {.lex_state = 176}, - [1323] = {.lex_state = 176}, - [1324] = {.lex_state = 176}, - [1325] = {.lex_state = 176}, - [1326] = {.lex_state = 176}, - [1327] = {.lex_state = 176}, - [1328] = {.lex_state = 176}, - [1329] = {.lex_state = 176}, - [1330] = {.lex_state = 176}, - [1331] = {.lex_state = 176}, - [1332] = {.lex_state = 176}, - [1333] = {.lex_state = 176}, - [1334] = {.lex_state = 176}, - [1335] = {.lex_state = 176}, - [1336] = {.lex_state = 176}, - [1337] = {.lex_state = 176}, - [1338] = {.lex_state = 176}, - [1339] = {.lex_state = 176}, - [1340] = {.lex_state = 176}, - [1341] = {.lex_state = 176}, - [1342] = {.lex_state = 176}, - [1343] = {.lex_state = 176}, - [1344] = {.lex_state = 176}, - [1345] = {.lex_state = 176}, - [1346] = {.lex_state = 176}, - [1347] = {.lex_state = 176}, - [1348] = {.lex_state = 176}, - [1349] = {.lex_state = 176}, - [1350] = {.lex_state = 176}, - [1351] = {.lex_state = 176}, - [1352] = {.lex_state = 176}, - [1353] = {.lex_state = 176}, - [1354] = {.lex_state = 176}, - [1355] = {.lex_state = 176}, - [1356] = {.lex_state = 176}, - [1357] = {.lex_state = 176}, - [1358] = {.lex_state = 176}, - [1359] = {.lex_state = 176}, - [1360] = {.lex_state = 176}, - [1361] = {.lex_state = 176}, - [1362] = {.lex_state = 176}, - [1363] = {.lex_state = 176}, - [1364] = {.lex_state = 176}, - [1365] = {.lex_state = 176}, - [1366] = {.lex_state = 176}, - [1367] = {.lex_state = 176}, - [1368] = {.lex_state = 176}, - [1369] = {.lex_state = 176}, - [1370] = {.lex_state = 176}, - [1371] = {.lex_state = 176}, - [1372] = {.lex_state = 176}, - [1373] = {.lex_state = 176}, - [1374] = {.lex_state = 176}, - [1375] = {.lex_state = 176}, - [1376] = {.lex_state = 176}, - [1377] = {.lex_state = 176}, - [1378] = {.lex_state = 176}, - [1379] = {.lex_state = 176}, - [1380] = {.lex_state = 176}, - [1381] = {.lex_state = 176}, - [1382] = {.lex_state = 176}, - [1383] = {.lex_state = 176}, - [1384] = {.lex_state = 176}, - [1385] = {.lex_state = 176}, - [1386] = {.lex_state = 176}, - [1387] = {.lex_state = 176}, - [1388] = {.lex_state = 176}, - [1389] = {.lex_state = 176}, - [1390] = {.lex_state = 176}, - [1391] = {.lex_state = 176}, - [1392] = {.lex_state = 176}, - [1393] = {.lex_state = 176}, - [1394] = {.lex_state = 176}, - [1395] = {.lex_state = 176}, - [1396] = {.lex_state = 176}, - [1397] = {.lex_state = 176}, - [1398] = {.lex_state = 176}, - [1399] = {.lex_state = 176}, - [1400] = {.lex_state = 176}, - [1401] = {.lex_state = 176}, - [1402] = {.lex_state = 176}, - [1403] = {.lex_state = 176}, - [1404] = {.lex_state = 176}, - [1405] = {.lex_state = 176}, - [1406] = {.lex_state = 176}, - [1407] = {.lex_state = 176}, - [1408] = {.lex_state = 176}, - [1409] = {.lex_state = 176}, - [1410] = {.lex_state = 176}, - [1411] = {.lex_state = 176}, - [1412] = {.lex_state = 176}, - [1413] = {.lex_state = 176}, - [1414] = {.lex_state = 176}, - [1415] = {.lex_state = 176}, - [1416] = {.lex_state = 176}, - [1417] = {.lex_state = 176}, - [1418] = {.lex_state = 176}, - [1419] = {.lex_state = 176}, - [1420] = {.lex_state = 176}, - [1421] = {.lex_state = 176}, - [1422] = {.lex_state = 176}, - [1423] = {.lex_state = 176}, - [1424] = {.lex_state = 176}, - [1425] = {.lex_state = 176}, - [1426] = {.lex_state = 176}, - [1427] = {.lex_state = 176}, - [1428] = {.lex_state = 176}, - [1429] = {.lex_state = 176}, - [1430] = {.lex_state = 176}, - [1431] = {.lex_state = 176}, - [1432] = {.lex_state = 176}, - [1433] = {.lex_state = 176}, - [1434] = {.lex_state = 176}, - [1435] = {.lex_state = 176}, - [1436] = {.lex_state = 176}, - [1437] = {.lex_state = 176}, - [1438] = {.lex_state = 176}, - [1439] = {.lex_state = 176}, - [1440] = {.lex_state = 176}, - [1441] = {.lex_state = 176}, - [1442] = {.lex_state = 176}, - [1443] = {.lex_state = 176}, - [1444] = {.lex_state = 176}, - [1445] = {.lex_state = 176}, - [1446] = {.lex_state = 176}, - [1447] = {.lex_state = 176}, - [1448] = {.lex_state = 176}, - [1449] = {.lex_state = 176}, - [1450] = {.lex_state = 176}, - [1451] = {.lex_state = 176}, - [1452] = {.lex_state = 176}, - [1453] = {.lex_state = 176}, - [1454] = {.lex_state = 176}, - [1455] = {.lex_state = 176}, - [1456] = {.lex_state = 176}, - [1457] = {.lex_state = 176}, - [1458] = {.lex_state = 176}, - [1459] = {.lex_state = 176}, - [1460] = {.lex_state = 176}, - [1461] = {.lex_state = 176}, - [1462] = {.lex_state = 176}, - [1463] = {.lex_state = 176}, - [1464] = {.lex_state = 176}, - [1465] = {.lex_state = 176}, - [1466] = {.lex_state = 176}, - [1467] = {.lex_state = 176}, - [1468] = {.lex_state = 176}, - [1469] = {.lex_state = 176}, - [1470] = {.lex_state = 176}, - [1471] = {.lex_state = 176}, - [1472] = {.lex_state = 176}, - [1473] = {.lex_state = 176}, - [1474] = {.lex_state = 176}, - [1475] = {.lex_state = 176}, - [1476] = {.lex_state = 176}, - [1477] = {.lex_state = 176}, - [1478] = {.lex_state = 176}, - [1479] = {.lex_state = 176}, - [1480] = {.lex_state = 176}, - [1481] = {.lex_state = 176}, - [1482] = {.lex_state = 176}, - [1483] = {.lex_state = 176}, - [1484] = {.lex_state = 176}, - [1485] = {.lex_state = 176}, - [1486] = {.lex_state = 176}, - [1487] = {.lex_state = 176}, - [1488] = {.lex_state = 176}, - [1489] = {.lex_state = 176}, - [1490] = {.lex_state = 176}, - [1491] = {.lex_state = 176}, - [1492] = {.lex_state = 176}, - [1493] = {.lex_state = 176}, - [1494] = {.lex_state = 176}, - [1495] = {.lex_state = 176}, - [1496] = {.lex_state = 176}, - [1497] = {.lex_state = 176}, - [1498] = {.lex_state = 176}, - [1499] = {.lex_state = 176}, - [1500] = {.lex_state = 176}, - [1501] = {.lex_state = 176}, - [1502] = {.lex_state = 176}, - [1503] = {.lex_state = 176}, - [1504] = {.lex_state = 176}, - [1505] = {.lex_state = 176}, - [1506] = {.lex_state = 176}, - [1507] = {.lex_state = 176}, - [1508] = {.lex_state = 176}, - [1509] = {.lex_state = 176}, - [1510] = {.lex_state = 176}, - [1511] = {.lex_state = 176}, - [1512] = {.lex_state = 176}, - [1513] = {.lex_state = 176}, - [1514] = {.lex_state = 176}, - [1515] = {.lex_state = 176}, - [1516] = {.lex_state = 176}, - [1517] = {.lex_state = 176}, - [1518] = {.lex_state = 176}, - [1519] = {.lex_state = 176}, - [1520] = {.lex_state = 176}, - [1521] = {.lex_state = 176}, - [1522] = {.lex_state = 176}, - [1523] = {.lex_state = 176}, - [1524] = {.lex_state = 176}, - [1525] = {.lex_state = 176}, - [1526] = {.lex_state = 176}, - [1527] = {.lex_state = 176}, - [1528] = {.lex_state = 176}, - [1529] = {.lex_state = 176}, - [1530] = {.lex_state = 176}, - [1531] = {.lex_state = 176}, - [1532] = {.lex_state = 176}, - [1533] = {.lex_state = 176}, - [1534] = {.lex_state = 176}, - [1535] = {.lex_state = 176}, - [1536] = {.lex_state = 176}, - [1537] = {.lex_state = 176}, - [1538] = {.lex_state = 176}, - [1539] = {.lex_state = 176}, - [1540] = {.lex_state = 176}, - [1541] = {.lex_state = 176}, - [1542] = {.lex_state = 176}, - [1543] = {.lex_state = 176}, - [1544] = {.lex_state = 176}, - [1545] = {.lex_state = 176}, - [1546] = {.lex_state = 176}, - [1547] = {.lex_state = 176}, - [1548] = {.lex_state = 176}, - [1549] = {.lex_state = 176}, - [1550] = {.lex_state = 176}, - [1551] = {.lex_state = 176}, - [1552] = {.lex_state = 176}, - [1553] = {.lex_state = 176}, - [1554] = {.lex_state = 176}, - [1555] = {.lex_state = 176}, - [1556] = {.lex_state = 176}, - [1557] = {.lex_state = 176}, - [1558] = {.lex_state = 176}, - [1559] = {.lex_state = 176}, - [1560] = {.lex_state = 176}, - [1561] = {.lex_state = 176}, - [1562] = {.lex_state = 176}, - [1563] = {.lex_state = 176}, - [1564] = {.lex_state = 176}, - [1565] = {.lex_state = 176}, - [1566] = {.lex_state = 176}, - [1567] = {.lex_state = 176}, - [1568] = {.lex_state = 195}, - [1569] = {.lex_state = 195}, - [1570] = {.lex_state = 195}, - [1571] = {.lex_state = 195}, - [1572] = {.lex_state = 195}, - [1573] = {.lex_state = 195}, - [1574] = {.lex_state = 195}, - [1575] = {.lex_state = 195}, - [1576] = {.lex_state = 195}, - [1577] = {.lex_state = 195}, - [1578] = {.lex_state = 208}, - [1579] = {.lex_state = 208}, - [1580] = {.lex_state = 194}, - [1581] = {.lex_state = 194}, - [1582] = {.lex_state = 194}, - [1583] = {.lex_state = 194}, - [1584] = {.lex_state = 194}, - [1585] = {.lex_state = 194}, - [1586] = {.lex_state = 194}, - [1587] = {.lex_state = 173}, - [1588] = {.lex_state = 173}, - [1589] = {.lex_state = 173}, - [1590] = {.lex_state = 239}, - [1591] = {.lex_state = 239}, - [1592] = {.lex_state = 239}, - [1593] = {.lex_state = 239}, - [1594] = {.lex_state = 211}, - [1595] = {.lex_state = 184}, - [1596] = {.lex_state = 195}, - [1597] = {.lex_state = 211}, - [1598] = {.lex_state = 211}, - [1599] = {.lex_state = 208}, - [1600] = {.lex_state = 208}, - [1601] = {.lex_state = 185}, - [1602] = {.lex_state = 211}, - [1603] = {.lex_state = 211}, - [1604] = {.lex_state = 208}, - [1605] = {.lex_state = 208}, - [1606] = {.lex_state = 211}, - [1607] = {.lex_state = 211}, - [1608] = {.lex_state = 211}, - [1609] = {.lex_state = 211}, - [1610] = {.lex_state = 189}, - [1611] = {.lex_state = 195}, - [1612] = {.lex_state = 179}, - [1613] = {.lex_state = 198}, - [1614] = {.lex_state = 211}, - [1615] = {.lex_state = 211}, - [1616] = {.lex_state = 211}, - [1617] = {.lex_state = 211}, - [1618] = {.lex_state = 211}, - [1619] = {.lex_state = 211}, - [1620] = {.lex_state = 211}, - [1621] = {.lex_state = 211}, - [1622] = {.lex_state = 198}, - [1623] = {.lex_state = 198}, - [1624] = {.lex_state = 196}, - [1625] = {.lex_state = 198}, - [1626] = {.lex_state = 239}, - [1627] = {.lex_state = 196}, - [1628] = {.lex_state = 196}, - [1629] = {.lex_state = 196}, - [1630] = {.lex_state = 196}, - [1631] = {.lex_state = 196}, - [1632] = {.lex_state = 196}, - [1633] = {.lex_state = 198}, - [1634] = {.lex_state = 198}, - [1635] = {.lex_state = 194}, - [1636] = {.lex_state = 194}, - [1637] = {.lex_state = 198}, - [1638] = {.lex_state = 198}, - [1639] = {.lex_state = 239}, - [1640] = {.lex_state = 239}, - [1641] = {.lex_state = 239}, - [1642] = {.lex_state = 239}, - [1643] = {.lex_state = 239}, - [1644] = {.lex_state = 239}, - [1645] = {.lex_state = 239}, - [1646] = {.lex_state = 239}, - [1647] = {.lex_state = 239}, - [1648] = {.lex_state = 239}, - [1649] = {.lex_state = 239}, - [1650] = {.lex_state = 239}, - [1651] = {.lex_state = 239}, - [1652] = {.lex_state = 239}, - [1653] = {.lex_state = 239}, - [1654] = {.lex_state = 208}, - [1655] = {.lex_state = 198}, - [1656] = {.lex_state = 214}, - [1657] = {.lex_state = 208}, - [1658] = {.lex_state = 198}, - [1659] = {.lex_state = 208}, - [1660] = {.lex_state = 214}, - [1661] = {.lex_state = 208}, - [1662] = {.lex_state = 239}, - [1663] = {.lex_state = 208}, - [1664] = {.lex_state = 208}, - [1665] = {.lex_state = 208}, - [1666] = {.lex_state = 208}, - [1667] = {.lex_state = 208}, - [1668] = {.lex_state = 208}, - [1669] = {.lex_state = 208}, - [1670] = {.lex_state = 214}, - [1671] = {.lex_state = 208}, - [1672] = {.lex_state = 222}, - [1673] = {.lex_state = 222}, - [1674] = {.lex_state = 208}, - [1675] = {.lex_state = 208}, - [1676] = {.lex_state = 208}, - [1677] = {.lex_state = 208}, - [1678] = {.lex_state = 208}, - [1679] = {.lex_state = 208}, - [1680] = {.lex_state = 222}, - [1681] = {.lex_state = 214}, - [1682] = {.lex_state = 214}, - [1683] = {.lex_state = 239}, - [1684] = {.lex_state = 239}, - [1685] = {.lex_state = 214}, - [1686] = {.lex_state = 214}, - [1687] = {.lex_state = 239}, - [1688] = {.lex_state = 210}, - [1689] = {.lex_state = 222}, - [1690] = {.lex_state = 208}, - [1691] = {.lex_state = 214}, - [1692] = {.lex_state = 179}, - [1693] = {.lex_state = 208}, - [1694] = {.lex_state = 210}, - [1695] = {.lex_state = 208}, - [1696] = {.lex_state = 210}, - [1697] = {.lex_state = 210}, - [1698] = {.lex_state = 214}, - [1699] = {.lex_state = 194}, - [1700] = {.lex_state = 210}, - [1701] = {.lex_state = 204}, - [1702] = {.lex_state = 222}, - [1703] = {.lex_state = 210}, - [1704] = {.lex_state = 208}, - [1705] = {.lex_state = 208}, - [1706] = {.lex_state = 210}, - [1707] = {.lex_state = 214}, - [1708] = {.lex_state = 181}, - [1709] = {.lex_state = 208}, - [1710] = {.lex_state = 208}, - [1711] = {.lex_state = 208}, - [1712] = {.lex_state = 208}, - [1713] = {.lex_state = 222}, - [1714] = {.lex_state = 222}, - [1715] = {.lex_state = 218}, - [1716] = {.lex_state = 218}, - [1717] = {.lex_state = 218}, - [1718] = {.lex_state = 218}, - [1719] = {.lex_state = 218}, - [1720] = {.lex_state = 218}, - [1721] = {.lex_state = 218}, - [1722] = {.lex_state = 181}, - [1723] = {.lex_state = 173}, - [1724] = {.lex_state = 173}, - [1725] = {.lex_state = 208}, - [1726] = {.lex_state = 181}, - [1727] = {.lex_state = 204}, - [1728] = {.lex_state = 176}, - [1729] = {.lex_state = 214}, - [1730] = {.lex_state = 214}, - [1731] = {.lex_state = 204}, - [1732] = {.lex_state = 214}, - [1733] = {.lex_state = 208}, - [1734] = {.lex_state = 208}, - [1735] = {.lex_state = 208}, - [1736] = {.lex_state = 208}, - [1737] = {.lex_state = 204}, - [1738] = {.lex_state = 208}, - [1739] = {.lex_state = 208}, - [1740] = {.lex_state = 211}, - [1741] = {.lex_state = 214}, - [1742] = {.lex_state = 211}, - [1743] = {.lex_state = 208}, - [1744] = {.lex_state = 208}, - [1745] = {.lex_state = 181}, - [1746] = {.lex_state = 208}, - [1747] = {.lex_state = 208}, - [1748] = {.lex_state = 208}, - [1749] = {.lex_state = 208}, - [1750] = {.lex_state = 208}, - [1751] = {.lex_state = 208}, - [1752] = {.lex_state = 181}, - [1753] = {.lex_state = 208}, - [1754] = {.lex_state = 208}, - [1755] = {.lex_state = 208}, - [1756] = {.lex_state = 208}, - [1757] = {.lex_state = 208}, - [1758] = {.lex_state = 208}, - [1759] = {.lex_state = 208}, - [1760] = {.lex_state = 208}, - [1761] = {.lex_state = 208}, - [1762] = {.lex_state = 208}, - [1763] = {.lex_state = 227}, - [1764] = {.lex_state = 208}, - [1765] = {.lex_state = 208}, - [1766] = {.lex_state = 208}, - [1767] = {.lex_state = 208}, - [1768] = {.lex_state = 208}, - [1769] = {.lex_state = 181}, - [1770] = {.lex_state = 210}, - [1771] = {.lex_state = 181}, - [1772] = {.lex_state = 208}, - [1773] = {.lex_state = 208}, - [1774] = {.lex_state = 227}, - [1775] = {.lex_state = 208}, - [1776] = {.lex_state = 208}, - [1777] = {.lex_state = 208}, - [1778] = {.lex_state = 208}, - [1779] = {.lex_state = 208}, - [1780] = {.lex_state = 208}, - [1781] = {.lex_state = 208}, - [1782] = {.lex_state = 208}, - [1783] = {.lex_state = 208}, - [1784] = {.lex_state = 208}, - [1785] = {.lex_state = 208}, - [1786] = {.lex_state = 208}, - [1787] = {.lex_state = 208}, - [1788] = {.lex_state = 208}, - [1789] = {.lex_state = 208}, - [1790] = {.lex_state = 208}, - [1791] = {.lex_state = 208}, - [1792] = {.lex_state = 208}, - [1793] = {.lex_state = 227}, - [1794] = {.lex_state = 208}, - [1795] = {.lex_state = 208}, - [1796] = {.lex_state = 208}, - [1797] = {.lex_state = 208}, - [1798] = {.lex_state = 208}, - [1799] = {.lex_state = 208}, - [1800] = {.lex_state = 194}, - [1801] = {.lex_state = 208}, - [1802] = {.lex_state = 208}, - [1803] = {.lex_state = 208}, - [1804] = {.lex_state = 208}, - [1805] = {.lex_state = 208}, - [1806] = {.lex_state = 208}, - [1807] = {.lex_state = 208}, - [1808] = {.lex_state = 208}, - [1809] = {.lex_state = 208}, - [1810] = {.lex_state = 208}, - [1811] = {.lex_state = 194}, - [1812] = {.lex_state = 208}, - [1813] = {.lex_state = 208}, - [1814] = {.lex_state = 208}, - [1815] = {.lex_state = 208}, - [1816] = {.lex_state = 208}, - [1817] = {.lex_state = 208}, - [1818] = {.lex_state = 208}, - [1819] = {.lex_state = 208}, - [1820] = {.lex_state = 208}, - [1821] = {.lex_state = 208}, - [1822] = {.lex_state = 208}, - [1823] = {.lex_state = 208}, - [1824] = {.lex_state = 208}, - [1825] = {.lex_state = 208}, - [1826] = {.lex_state = 208}, - [1827] = {.lex_state = 208}, - [1828] = {.lex_state = 208}, - [1829] = {.lex_state = 208}, - [1830] = {.lex_state = 208}, - [1831] = {.lex_state = 208}, - [1832] = {.lex_state = 208}, - [1833] = {.lex_state = 208}, - [1834] = {.lex_state = 208}, - [1835] = {.lex_state = 208}, - [1836] = {.lex_state = 208}, - [1837] = {.lex_state = 208}, - [1838] = {.lex_state = 208}, - [1839] = {.lex_state = 208}, - [1840] = {.lex_state = 208}, - [1841] = {.lex_state = 208}, - [1842] = {.lex_state = 208}, - [1843] = {.lex_state = 227}, - [1844] = {.lex_state = 227}, - [1845] = {.lex_state = 194}, - [1846] = {.lex_state = 227}, - [1847] = {.lex_state = 194}, - [1848] = {.lex_state = 208}, - [1849] = {.lex_state = 194}, - [1850] = {.lex_state = 227}, - [1851] = {.lex_state = 194}, - [1852] = {.lex_state = 227}, - [1853] = {.lex_state = 227}, - [1854] = {.lex_state = 194}, - [1855] = {.lex_state = 194}, - [1856] = {.lex_state = 194}, - [1857] = {.lex_state = 194}, - [1858] = {.lex_state = 227}, - [1859] = {.lex_state = 208}, - [1860] = {.lex_state = 208}, - [1861] = {.lex_state = 194}, - [1862] = {.lex_state = 208}, - [1863] = {.lex_state = 208}, - [1864] = {.lex_state = 208}, - [1865] = {.lex_state = 208}, - [1866] = {.lex_state = 209}, - [1867] = {.lex_state = 239}, - [1868] = {.lex_state = 203}, - [1869] = {.lex_state = 210}, - [1870] = {.lex_state = 209}, - [1871] = {.lex_state = 239}, - [1872] = {.lex_state = 176}, - [1873] = {.lex_state = 204}, - [1874] = {.lex_state = 179}, - [1875] = {.lex_state = 218}, - [1876] = {.lex_state = 239}, - [1877] = {.lex_state = 209}, - [1878] = {.lex_state = 176}, - [1879] = {.lex_state = 209}, - [1880] = {.lex_state = 239}, - [1881] = {.lex_state = 239}, - [1882] = {.lex_state = 227}, - [1883] = {.lex_state = 196}, - [1884] = {.lex_state = 208}, - [1885] = {.lex_state = 227}, - [1886] = {.lex_state = 199}, - [1887] = {.lex_state = 227}, - [1888] = {.lex_state = 240}, - [1889] = {.lex_state = 196}, - [1890] = {.lex_state = 240}, - [1891] = {.lex_state = 240}, - [1892] = {.lex_state = 218}, - [1893] = {.lex_state = 240}, - [1894] = {.lex_state = 240}, - [1895] = {.lex_state = 240}, - [1896] = {.lex_state = 241}, - [1897] = {.lex_state = 241}, - [1898] = {.lex_state = 208}, - [1899] = {.lex_state = 208}, - [1900] = {.lex_state = 204}, - [1901] = {.lex_state = 204}, - [1902] = {.lex_state = 204}, - [1903] = {.lex_state = 204}, - [1904] = {.lex_state = 209}, - [1905] = {.lex_state = 204}, - [1906] = {.lex_state = 209}, - [1907] = {.lex_state = 197}, - [1908] = {.lex_state = 197}, - [1909] = {.lex_state = 208}, - [1910] = {.lex_state = 197}, - [1911] = {.lex_state = 197}, - [1912] = {.lex_state = 197}, - [1913] = {.lex_state = 196}, - [1914] = {.lex_state = 204}, - [1915] = {.lex_state = 204}, - [1916] = {.lex_state = 197}, - [1917] = {.lex_state = 204}, - [1918] = {.lex_state = 196}, - [1919] = {.lex_state = 204}, - [1920] = {.lex_state = 204}, - [1921] = {.lex_state = 204}, - [1922] = {.lex_state = 197}, - [1923] = {.lex_state = 181}, - [1924] = {.lex_state = 204}, - [1925] = {.lex_state = 209}, - [1926] = {.lex_state = 197}, - [1927] = {.lex_state = 204}, - [1928] = {.lex_state = 209}, - [1929] = {.lex_state = 204}, - [1930] = {.lex_state = 197}, - [1931] = {.lex_state = 196}, - [1932] = {.lex_state = 204}, - [1933] = {.lex_state = 240}, - [1934] = {.lex_state = 204}, - [1935] = {.lex_state = 204}, - [1936] = {.lex_state = 204}, - [1937] = {.lex_state = 204}, - [1938] = {.lex_state = 204}, - [1939] = {.lex_state = 204}, - [1940] = {.lex_state = 204}, - [1941] = {.lex_state = 204}, - [1942] = {.lex_state = 204}, - [1943] = {.lex_state = 239}, - [1944] = {.lex_state = 239}, - [1945] = {.lex_state = 239}, - [1946] = {.lex_state = 204}, - [1947] = {.lex_state = 204}, - [1948] = {.lex_state = 204}, - [1949] = {.lex_state = 204}, - [1950] = {.lex_state = 204}, - [1951] = {.lex_state = 204}, - [1952] = {.lex_state = 208}, - [1953] = {.lex_state = 209}, - [1954] = {.lex_state = 196}, - [1955] = {.lex_state = 196}, - [1956] = {.lex_state = 197}, - [1957] = {.lex_state = 208}, - [1958] = {.lex_state = 208}, - [1959] = {.lex_state = 208}, - [1960] = {.lex_state = 208}, - [1961] = {.lex_state = 208}, - [1962] = {.lex_state = 208}, - [1963] = {.lex_state = 204}, - [1964] = {.lex_state = 204}, - [1965] = {.lex_state = 204}, - [1966] = {.lex_state = 204}, - [1967] = {.lex_state = 204}, - [1968] = {.lex_state = 204}, - [1969] = {.lex_state = 239}, - [1970] = {.lex_state = 204}, - [1971] = {.lex_state = 204}, - [1972] = {.lex_state = 204}, - [1973] = {.lex_state = 204}, - [1974] = {.lex_state = 239}, - [1975] = {.lex_state = 197}, - [1976] = {.lex_state = 204}, - [1977] = {.lex_state = 204}, - [1978] = {.lex_state = 204}, - [1979] = {.lex_state = 239}, - [1980] = {.lex_state = 239}, - [1981] = {.lex_state = 209}, - [1982] = {.lex_state = 209}, - [1983] = {.lex_state = 209}, - [1984] = {.lex_state = 209}, - [1985] = {.lex_state = 209}, - [1986] = {.lex_state = 209}, - [1987] = {.lex_state = 188}, - [1988] = {.lex_state = 209}, - [1989] = {.lex_state = 209}, - [1990] = {.lex_state = 209}, - [1991] = {.lex_state = 209}, - [1992] = {.lex_state = 209}, - [1993] = {.lex_state = 209}, - [1994] = {.lex_state = 209}, - [1995] = {.lex_state = 181}, - [1996] = {.lex_state = 209}, - [1997] = {.lex_state = 181}, - [1998] = {.lex_state = 209}, - [1999] = {.lex_state = 239}, - [2000] = {.lex_state = 181}, - [2001] = {.lex_state = 209}, - [2002] = {.lex_state = 209}, - [2003] = {.lex_state = 209}, - [2004] = {.lex_state = 209}, - [2005] = {.lex_state = 209}, - [2006] = {.lex_state = 239}, - [2007] = {.lex_state = 239}, - [2008] = {.lex_state = 239}, - [2009] = {.lex_state = 209}, - [2010] = {.lex_state = 239}, - [2011] = {.lex_state = 209}, - [2012] = {.lex_state = 209}, - [2013] = {.lex_state = 239}, - [2014] = {.lex_state = 209}, - [2015] = {.lex_state = 209}, - [2016] = {.lex_state = 209}, - [2017] = {.lex_state = 209}, - [2018] = {.lex_state = 239}, - [2019] = {.lex_state = 239}, - [2020] = {.lex_state = 239}, - [2021] = {.lex_state = 239}, - [2022] = {.lex_state = 239}, - [2023] = {.lex_state = 239}, - [2024] = {.lex_state = 239}, - [2025] = {.lex_state = 239}, - [2026] = {.lex_state = 239}, - [2027] = {.lex_state = 241}, - [2028] = {.lex_state = 208}, - [2029] = {.lex_state = 209}, - [2030] = {.lex_state = 239}, - [2031] = {.lex_state = 179}, - [2032] = {.lex_state = 239}, - [2033] = {.lex_state = 239}, - [2034] = {.lex_state = 239}, - [2035] = {.lex_state = 209}, - [2036] = {.lex_state = 239}, - [2037] = {.lex_state = 239}, - [2038] = {.lex_state = 239}, - [2039] = {.lex_state = 199}, - [2040] = {.lex_state = 239}, - [2041] = {.lex_state = 239}, - [2042] = {.lex_state = 239}, - [2043] = {.lex_state = 239}, - [2044] = {.lex_state = 209}, - [2045] = {.lex_state = 209}, - [2046] = {.lex_state = 209}, - [2047] = {.lex_state = 239}, - [2048] = {.lex_state = 239}, - [2049] = {.lex_state = 239}, - [2050] = {.lex_state = 239}, - [2051] = {.lex_state = 239}, - [2052] = {.lex_state = 239}, - [2053] = {.lex_state = 239}, - [2054] = {.lex_state = 208}, - [2055] = {.lex_state = 203}, - [2056] = {.lex_state = 203}, - [2057] = {.lex_state = 239}, - [2058] = {.lex_state = 239}, - [2059] = {.lex_state = 239}, - [2060] = {.lex_state = 239}, - [2061] = {.lex_state = 239}, - [2062] = {.lex_state = 239}, - [2063] = {.lex_state = 239}, - [2064] = {.lex_state = 239}, - [2065] = {.lex_state = 239}, - [2066] = {.lex_state = 179}, - [2067] = {.lex_state = 239}, - [2068] = {.lex_state = 239}, - [2069] = {.lex_state = 239}, - [2070] = {.lex_state = 239}, - [2071] = {.lex_state = 239}, - [2072] = {.lex_state = 239}, - [2073] = {.lex_state = 239}, - [2074] = {.lex_state = 208}, - [2075] = {.lex_state = 239}, - [2076] = {.lex_state = 239}, - [2077] = {.lex_state = 205}, - [2078] = {.lex_state = 208}, - [2079] = {.lex_state = 241}, - [2080] = {.lex_state = 239}, - [2081] = {.lex_state = 209}, - [2082] = {.lex_state = 209}, - [2083] = {.lex_state = 209}, - [2084] = {.lex_state = 184}, - [2085] = {.lex_state = 184}, - [2086] = {.lex_state = 209}, - [2087] = {.lex_state = 209}, - [2088] = {.lex_state = 209}, - [2089] = {.lex_state = 209}, - [2090] = {.lex_state = 208}, - [2091] = {.lex_state = 209}, - [2092] = {.lex_state = 209}, - [2093] = {.lex_state = 209}, - [2094] = {.lex_state = 209}, - [2095] = {.lex_state = 208}, - [2096] = {.lex_state = 239}, - [2097] = {.lex_state = 239}, - [2098] = {.lex_state = 209}, - [2099] = {.lex_state = 209}, - [2100] = {.lex_state = 209}, - [2101] = {.lex_state = 239}, - [2102] = {.lex_state = 239}, - [2103] = {.lex_state = 239}, - [2104] = {.lex_state = 239}, - [2105] = {.lex_state = 239}, - [2106] = {.lex_state = 239}, - [2107] = {.lex_state = 209}, - [2108] = {.lex_state = 239}, - [2109] = {.lex_state = 239}, - [2110] = {.lex_state = 209}, - [2111] = {.lex_state = 209}, - [2112] = {.lex_state = 203}, - [2113] = {.lex_state = 239}, - [2114] = {.lex_state = 209}, - [2115] = {.lex_state = 209}, - [2116] = {.lex_state = 203}, - [2117] = {.lex_state = 209}, - [2118] = {.lex_state = 209}, - [2119] = {.lex_state = 209}, - [2120] = {.lex_state = 209}, - [2121] = {.lex_state = 209}, - [2122] = {.lex_state = 209}, - [2123] = {.lex_state = 209}, - [2124] = {.lex_state = 209}, - [2125] = {.lex_state = 209}, - [2126] = {.lex_state = 179}, - [2127] = {.lex_state = 239}, - [2128] = {.lex_state = 209}, - [2129] = {.lex_state = 239}, - [2130] = {.lex_state = 181}, - [2131] = {.lex_state = 239}, - [2132] = {.lex_state = 188}, - [2133] = {.lex_state = 239}, - [2134] = {.lex_state = 239}, - [2135] = {.lex_state = 209}, - [2136] = {.lex_state = 239}, - [2137] = {.lex_state = 209}, - [2138] = {.lex_state = 209}, - [2139] = {.lex_state = 209}, - [2140] = {.lex_state = 209}, - [2141] = {.lex_state = 209}, - [2142] = {.lex_state = 209}, - [2143] = {.lex_state = 196}, - [2144] = {.lex_state = 209}, - [2145] = {.lex_state = 209}, - [2146] = {.lex_state = 209}, - [2147] = {.lex_state = 208}, - [2148] = {.lex_state = 239}, - [2149] = {.lex_state = 239}, - [2150] = {.lex_state = 209}, - [2151] = {.lex_state = 209}, - [2152] = {.lex_state = 179}, - [2153] = {.lex_state = 209}, - [2154] = {.lex_state = 196}, - [2155] = {.lex_state = 239}, - [2156] = {.lex_state = 239}, - [2157] = {.lex_state = 209}, - [2158] = {.lex_state = 209}, - [2159] = {.lex_state = 209}, - [2160] = {.lex_state = 209}, - [2161] = {.lex_state = 239}, - [2162] = {.lex_state = 209}, - [2163] = {.lex_state = 209}, - [2164] = {.lex_state = 209}, - [2165] = {.lex_state = 209}, - [2166] = {.lex_state = 239}, - [2167] = {.lex_state = 209}, - [2168] = {.lex_state = 239}, - [2169] = {.lex_state = 239}, - [2170] = {.lex_state = 239}, - [2171] = {.lex_state = 239}, - [2172] = {.lex_state = 209}, - [2173] = {.lex_state = 239}, - [2174] = {.lex_state = 239}, - [2175] = {.lex_state = 209}, - [2176] = {.lex_state = 209}, - [2177] = {.lex_state = 209}, - [2178] = {.lex_state = 239}, - [2179] = {.lex_state = 209}, - [2180] = {.lex_state = 209}, - [2181] = {.lex_state = 239}, - [2182] = {.lex_state = 239}, - [2183] = {.lex_state = 239}, - [2184] = {.lex_state = 239}, - [2185] = {.lex_state = 239}, - [2186] = {.lex_state = 239}, - [2187] = {.lex_state = 209}, - [2188] = {.lex_state = 209}, - [2189] = {.lex_state = 239}, - [2190] = {.lex_state = 239}, - [2191] = {.lex_state = 239}, - [2192] = {.lex_state = 239}, - [2193] = {.lex_state = 239}, - [2194] = {.lex_state = 209}, - [2195] = {.lex_state = 209}, - [2196] = {.lex_state = 209}, - [2197] = {.lex_state = 209}, - [2198] = {.lex_state = 209}, - [2199] = {.lex_state = 196}, - [2200] = {.lex_state = 239}, - [2201] = {.lex_state = 239}, - [2202] = {.lex_state = 239}, - [2203] = {.lex_state = 239}, - [2204] = {.lex_state = 188}, - [2205] = {.lex_state = 205}, - [2206] = {.lex_state = 179}, - [2207] = {.lex_state = 179}, - [2208] = {.lex_state = 199}, - [2209] = {.lex_state = 205}, - [2210] = {.lex_state = 197}, - [2211] = {.lex_state = 179}, - [2212] = {.lex_state = 197}, - [2213] = {.lex_state = 205}, - [2214] = {.lex_state = 205}, - [2215] = {.lex_state = 187}, - [2216] = {.lex_state = 205}, - [2217] = {.lex_state = 179}, - [2218] = {.lex_state = 179}, - [2219] = {.lex_state = 205}, - [2220] = {.lex_state = 205}, - [2221] = {.lex_state = 185}, - [2222] = {.lex_state = 205}, - [2223] = {.lex_state = 197}, - [2224] = {.lex_state = 199}, - [2225] = {.lex_state = 205}, - [2226] = {.lex_state = 185}, - [2227] = {.lex_state = 205}, - [2228] = {.lex_state = 205}, - [2229] = {.lex_state = 179}, - [2230] = {.lex_state = 197}, - [2231] = {.lex_state = 199}, - [2232] = {.lex_state = 231}, - [2233] = {.lex_state = 179}, - [2234] = {.lex_state = 187}, - [2235] = {.lex_state = 196}, - [2236] = {.lex_state = 196}, - [2237] = {.lex_state = 187}, - [2238] = {.lex_state = 199}, - [2239] = {.lex_state = 205}, - [2240] = {.lex_state = 199}, - [2241] = {.lex_state = 205}, - [2242] = {.lex_state = 197}, - [2243] = {.lex_state = 179}, - [2244] = {.lex_state = 196}, - [2245] = {.lex_state = 208}, - [2246] = {.lex_state = 199}, - [2247] = {.lex_state = 208}, - [2248] = {.lex_state = 208}, - [2249] = {.lex_state = 208}, - [2250] = {.lex_state = 199}, - [2251] = {.lex_state = 181}, - [2252] = {.lex_state = 208}, - [2253] = {.lex_state = 189}, - [2254] = {.lex_state = 191}, - [2255] = {.lex_state = 208}, - [2256] = {.lex_state = 181}, - [2257] = {.lex_state = 208}, - [2258] = {.lex_state = 208}, - [2259] = {.lex_state = 208}, - [2260] = {.lex_state = 204}, - [2261] = {.lex_state = 208}, - [2262] = {.lex_state = 197}, - [2263] = {.lex_state = 205}, - [2264] = {.lex_state = 191}, - [2265] = {.lex_state = 199}, - [2266] = {.lex_state = 181}, - [2267] = {.lex_state = 179}, - [2268] = {.lex_state = 189}, - [2269] = {.lex_state = 181}, - [2270] = {.lex_state = 179}, - [2271] = {.lex_state = 179}, - [2272] = {.lex_state = 196}, - [2273] = {.lex_state = 208}, - [2274] = {.lex_state = 181}, - [2275] = {.lex_state = 199}, - [2276] = {.lex_state = 199}, - [2277] = {.lex_state = 199}, - [2278] = {.lex_state = 208}, - [2279] = {.lex_state = 191}, - [2280] = {.lex_state = 204}, - [2281] = {.lex_state = 208}, - [2282] = {.lex_state = 208}, - [2283] = {.lex_state = 203}, - [2284] = {.lex_state = 179}, - [2285] = {.lex_state = 197}, - [2286] = {.lex_state = 196}, - [2287] = {.lex_state = 199}, - [2288] = {.lex_state = 203}, - [2289] = {.lex_state = 199}, - [2290] = {.lex_state = 199}, - [2291] = {.lex_state = 181}, - [2292] = {.lex_state = 199}, - [2293] = {.lex_state = 199}, - [2294] = {.lex_state = 181}, - [2295] = {.lex_state = 199}, - [2296] = {.lex_state = 203}, - [2297] = {.lex_state = 196}, - [2298] = {.lex_state = 231}, - [2299] = {.lex_state = 199}, - [2300] = {.lex_state = 181}, - [2301] = {.lex_state = 181}, - [2302] = {.lex_state = 199}, - [2303] = {.lex_state = 196}, - [2304] = {.lex_state = 231}, - [2305] = {.lex_state = 196}, - [2306] = {.lex_state = 199}, - [2307] = {.lex_state = 196}, - [2308] = {.lex_state = 199}, - [2309] = {.lex_state = 187}, - [2310] = {.lex_state = 199}, - [2311] = {.lex_state = 199}, - [2312] = {.lex_state = 196}, - [2313] = {.lex_state = 199}, - [2314] = {.lex_state = 231}, - [2315] = {.lex_state = 205}, - [2316] = {.lex_state = 196}, - [2317] = {.lex_state = 239}, - [2318] = {.lex_state = 199}, - [2319] = {.lex_state = 199}, - [2320] = {.lex_state = 199}, - [2321] = {.lex_state = 199}, - [2322] = {.lex_state = 199}, - [2323] = {.lex_state = 199}, - [2324] = {.lex_state = 199}, - [2325] = {.lex_state = 202}, - [2326] = {.lex_state = 199}, - [2327] = {.lex_state = 199}, - [2328] = {.lex_state = 205}, - [2329] = {.lex_state = 199}, - [2330] = {.lex_state = 197}, - [2331] = {.lex_state = 196}, - [2332] = {.lex_state = 231}, - [2333] = {.lex_state = 181}, - [2334] = {.lex_state = 196}, - [2335] = {.lex_state = 199}, - [2336] = {.lex_state = 196}, - [2337] = {.lex_state = 199}, - [2338] = {.lex_state = 196}, - [2339] = {.lex_state = 197}, - [2340] = {.lex_state = 196}, - [2341] = {.lex_state = 196}, - [2342] = {.lex_state = 199}, - [2343] = {.lex_state = 199}, - [2344] = {.lex_state = 196}, - [2345] = {.lex_state = 199}, - [2346] = {.lex_state = 196}, - [2347] = {.lex_state = 196}, - [2348] = {.lex_state = 199}, - [2349] = {.lex_state = 199}, - [2350] = {.lex_state = 196}, - [2351] = {.lex_state = 199}, - [2352] = {.lex_state = 196}, - [2353] = {.lex_state = 196}, - [2354] = {.lex_state = 181}, - [2355] = {.lex_state = 196}, - [2356] = {.lex_state = 199}, - [2357] = {.lex_state = 199}, - [2358] = {.lex_state = 181}, - [2359] = {.lex_state = 199}, - [2360] = {.lex_state = 199}, - [2361] = {.lex_state = 196}, - [2362] = {.lex_state = 196}, - [2363] = {.lex_state = 187}, - [2364] = {.lex_state = 196}, - [2365] = {.lex_state = 199}, - [2366] = {.lex_state = 196}, - [2367] = {.lex_state = 199}, - [2368] = {.lex_state = 199}, - [2369] = {.lex_state = 196}, - [2370] = {.lex_state = 199}, - [2371] = {.lex_state = 199}, - [2372] = {.lex_state = 197}, - [2373] = {.lex_state = 199}, - [2374] = {.lex_state = 199}, - [2375] = {.lex_state = 199}, - [2376] = {.lex_state = 199}, - [2377] = {.lex_state = 199}, - [2378] = {.lex_state = 199}, - [2379] = {.lex_state = 199}, - [2380] = {.lex_state = 199}, - [2381] = {.lex_state = 196}, - [2382] = {.lex_state = 199}, - [2383] = {.lex_state = 199}, - [2384] = {.lex_state = 199}, - [2385] = {.lex_state = 239}, - [2386] = {.lex_state = 199}, - [2387] = {.lex_state = 187}, - [2388] = {.lex_state = 199}, - [2389] = {.lex_state = 199}, - [2390] = {.lex_state = 197}, - [2391] = {.lex_state = 199}, - [2392] = {.lex_state = 197}, - [2393] = {.lex_state = 187}, - [2394] = {.lex_state = 187}, - [2395] = {.lex_state = 205}, - [2396] = {.lex_state = 187}, - [2397] = {.lex_state = 231}, - [2398] = {.lex_state = 199}, - [2399] = {.lex_state = 196}, - [2400] = {.lex_state = 181}, - [2401] = {.lex_state = 199}, - [2402] = {.lex_state = 187}, - [2403] = {.lex_state = 187}, - [2404] = {.lex_state = 199}, - [2405] = {.lex_state = 191}, - [2406] = {.lex_state = 199}, - [2407] = {.lex_state = 199}, - [2408] = {.lex_state = 199}, - [2409] = {.lex_state = 199}, - [2410] = {.lex_state = 205}, - [2411] = {.lex_state = 199}, - [2412] = {.lex_state = 199}, - [2413] = {.lex_state = 199}, - [2414] = {.lex_state = 199}, - [2415] = {.lex_state = 199}, - [2416] = {.lex_state = 199}, - [2417] = {.lex_state = 199}, - [2418] = {.lex_state = 205}, - [2419] = {.lex_state = 230}, - [2420] = {.lex_state = 199}, - [2421] = {.lex_state = 199}, - [2422] = {.lex_state = 230}, - [2423] = {.lex_state = 199}, - [2424] = {.lex_state = 230}, - [2425] = {.lex_state = 197}, - [2426] = {.lex_state = 199}, - [2427] = {.lex_state = 230}, - [2428] = {.lex_state = 199}, - [2429] = {.lex_state = 197}, - [2430] = {.lex_state = 196}, - [2431] = {.lex_state = 199}, - [2432] = {.lex_state = 197}, - [2433] = {.lex_state = 199}, - [2434] = {.lex_state = 199}, - [2435] = {.lex_state = 187}, - [2436] = {.lex_state = 199}, - [2437] = {.lex_state = 199}, - [2438] = {.lex_state = 199}, - [2439] = {.lex_state = 230}, - [2440] = {.lex_state = 199}, - [2441] = {.lex_state = 199}, - [2442] = {.lex_state = 199}, - [2443] = {.lex_state = 199}, - [2444] = {.lex_state = 199}, - [2445] = {.lex_state = 199}, - [2446] = {.lex_state = 187}, - [2447] = {.lex_state = 199}, - [2448] = {.lex_state = 199}, - [2449] = {.lex_state = 199}, - [2450] = {.lex_state = 199}, - [2451] = {.lex_state = 199}, - [2452] = {.lex_state = 230}, - [2453] = {.lex_state = 199}, - [2454] = {.lex_state = 199}, - [2455] = {.lex_state = 205}, - [2456] = {.lex_state = 205}, - [2457] = {.lex_state = 205}, - [2458] = {.lex_state = 199}, - [2459] = {.lex_state = 230}, - [2460] = {.lex_state = 187}, - [2461] = {.lex_state = 197}, - [2462] = {.lex_state = 230}, - [2463] = {.lex_state = 230}, - [2464] = {.lex_state = 199}, - [2465] = {.lex_state = 199}, - [2466] = {.lex_state = 199}, - [2467] = {.lex_state = 230}, - [2468] = {.lex_state = 199}, - [2469] = {.lex_state = 199}, - [2470] = {.lex_state = 199}, - [2471] = {.lex_state = 240}, - [2472] = {.lex_state = 197}, - [2473] = {.lex_state = 199}, - [2474] = {.lex_state = 199}, - [2475] = {.lex_state = 187}, - [2476] = {.lex_state = 199}, - [2477] = {.lex_state = 199}, - [2478] = {.lex_state = 199}, - [2479] = {.lex_state = 199}, - [2480] = {.lex_state = 197}, - [2481] = {.lex_state = 199}, - [2482] = {.lex_state = 205}, - [2483] = {.lex_state = 199}, - [2484] = {.lex_state = 199}, - [2485] = {.lex_state = 199}, - [2486] = {.lex_state = 199}, - [2487] = {.lex_state = 199}, - [2488] = {.lex_state = 199}, - [2489] = {.lex_state = 199}, - [2490] = {.lex_state = 199}, - [2491] = {.lex_state = 199}, - [2492] = {.lex_state = 230}, - [2493] = {.lex_state = 199}, - [2494] = {.lex_state = 199}, - [2495] = {.lex_state = 191}, - [2496] = {.lex_state = 199}, - [2497] = {.lex_state = 199}, - [2498] = {.lex_state = 199}, - [2499] = {.lex_state = 199}, - [2500] = {.lex_state = 191}, - [2501] = {.lex_state = 199}, - [2502] = {.lex_state = 199}, - [2503] = {.lex_state = 230}, - [2504] = {.lex_state = 210}, - [2505] = {.lex_state = 205}, - [2506] = {.lex_state = 199}, - [2507] = {.lex_state = 199}, - [2508] = {.lex_state = 240}, - [2509] = {.lex_state = 197}, - [2510] = {.lex_state = 199}, - [2511] = {.lex_state = 230}, - [2512] = {.lex_state = 230}, - [2513] = {.lex_state = 199}, - [2514] = {.lex_state = 205}, - [2515] = {.lex_state = 199}, - [2516] = {.lex_state = 199}, - [2517] = {.lex_state = 205}, - [2518] = {.lex_state = 205}, - [2519] = {.lex_state = 199}, - [2520] = {.lex_state = 199}, - [2521] = {.lex_state = 199}, - [2522] = {.lex_state = 199}, - [2523] = {.lex_state = 199}, - [2524] = {.lex_state = 205}, - [2525] = {.lex_state = 199}, - [2526] = {.lex_state = 199}, - [2527] = {.lex_state = 199}, - [2528] = {.lex_state = 199}, - [2529] = {.lex_state = 199}, - [2530] = {.lex_state = 199}, - [2531] = {.lex_state = 191}, - [2532] = {.lex_state = 199}, - [2533] = {.lex_state = 199}, - [2534] = {.lex_state = 199}, - [2535] = {.lex_state = 199}, - [2536] = {.lex_state = 199}, - [2537] = {.lex_state = 199}, - [2538] = {.lex_state = 199}, - [2539] = {.lex_state = 199}, - [2540] = {.lex_state = 205}, - [2541] = {.lex_state = 191}, - [2542] = {.lex_state = 199}, - [2543] = {.lex_state = 199}, - [2544] = {.lex_state = 199}, - [2545] = {.lex_state = 240}, - [2546] = {.lex_state = 240}, - [2547] = {.lex_state = 210}, - [2548] = {.lex_state = 229}, - [2549] = {.lex_state = 240}, - [2550] = {.lex_state = 229}, - [2551] = {.lex_state = 229}, - [2552] = {.lex_state = 229}, - [2553] = {.lex_state = 240}, - [2554] = {.lex_state = 240}, - [2555] = {.lex_state = 229}, - [2556] = {.lex_state = 240}, - [2557] = {.lex_state = 229}, - [2558] = {.lex_state = 240}, - [2559] = {.lex_state = 229}, - [2560] = {.lex_state = 240}, - [2561] = {.lex_state = 240}, - [2562] = {.lex_state = 210}, - [2563] = {.lex_state = 240}, - [2564] = {.lex_state = 240}, - [2565] = {.lex_state = 191}, - [2566] = {.lex_state = 191}, - [2567] = {.lex_state = 218}, - [2568] = {.lex_state = 212}, - [2569] = {.lex_state = 240}, - [2570] = {.lex_state = 196}, - [2571] = {.lex_state = 191}, - [2572] = {.lex_state = 229}, - [2573] = {.lex_state = 191}, - [2574] = {.lex_state = 187}, - [2575] = {.lex_state = 240}, - [2576] = {.lex_state = 240}, - [2577] = {.lex_state = 240}, - [2578] = {.lex_state = 240}, - [2579] = {.lex_state = 240}, - [2580] = {.lex_state = 240}, - [2581] = {.lex_state = 240}, - [2582] = {.lex_state = 229}, - [2583] = {.lex_state = 229}, - [2584] = {.lex_state = 231}, - [2585] = {.lex_state = 240}, - [2586] = {.lex_state = 240}, + [1] = {.lex_state = 438}, + [2] = {.lex_state = 438}, + [3] = {.lex_state = 438}, + [4] = {.lex_state = 438}, + [5] = {.lex_state = 438}, + [6] = {.lex_state = 438}, + [7] = {.lex_state = 438}, + [8] = {.lex_state = 438}, + [9] = {.lex_state = 438}, + [10] = {.lex_state = 438}, + [11] = {.lex_state = 438}, + [12] = {.lex_state = 438}, + [13] = {.lex_state = 235}, + [14] = {.lex_state = 235}, + [15] = {.lex_state = 235}, + [16] = {.lex_state = 235}, + [17] = {.lex_state = 235}, + [18] = {.lex_state = 235}, + [19] = {.lex_state = 235}, + [20] = {.lex_state = 235}, + [21] = {.lex_state = 235}, + [22] = {.lex_state = 235}, + [23] = {.lex_state = 235}, + [24] = {.lex_state = 235}, + [25] = {.lex_state = 235}, + [26] = {.lex_state = 235}, + [27] = {.lex_state = 235}, + [28] = {.lex_state = 235}, + [29] = {.lex_state = 235}, + [30] = {.lex_state = 235}, + [31] = {.lex_state = 235}, + [32] = {.lex_state = 235}, + [33] = {.lex_state = 235}, + [34] = {.lex_state = 438}, + [35] = {.lex_state = 438}, + [36] = {.lex_state = 438}, + [37] = {.lex_state = 238}, + [38] = {.lex_state = 438}, + [39] = {.lex_state = 438}, + [40] = {.lex_state = 438}, + [41] = {.lex_state = 438}, + [42] = {.lex_state = 438}, + [43] = {.lex_state = 438}, + [44] = {.lex_state = 438}, + [45] = {.lex_state = 438}, + [46] = {.lex_state = 438}, + [47] = {.lex_state = 438}, + [48] = {.lex_state = 438}, + [49] = {.lex_state = 438}, + [50] = {.lex_state = 438}, + [51] = {.lex_state = 438}, + [52] = {.lex_state = 438}, + [53] = {.lex_state = 238}, + [54] = {.lex_state = 438}, + [55] = {.lex_state = 438}, + [56] = {.lex_state = 438}, + [57] = {.lex_state = 438}, + [58] = {.lex_state = 438}, + [59] = {.lex_state = 438}, + [60] = {.lex_state = 438}, + [61] = {.lex_state = 438}, + [62] = {.lex_state = 438}, + [63] = {.lex_state = 438}, + [64] = {.lex_state = 438}, + [65] = {.lex_state = 438}, + [66] = {.lex_state = 438}, + [67] = {.lex_state = 438}, + [68] = {.lex_state = 438}, + [69] = {.lex_state = 438}, + [70] = {.lex_state = 438}, + [71] = {.lex_state = 438}, + [72] = {.lex_state = 238}, + [73] = {.lex_state = 438}, + [74] = {.lex_state = 438}, + [75] = {.lex_state = 438}, + [76] = {.lex_state = 438}, + [77] = {.lex_state = 438}, + [78] = {.lex_state = 438}, + [79] = {.lex_state = 438}, + [80] = {.lex_state = 438}, + [81] = {.lex_state = 438}, + [82] = {.lex_state = 438}, + [83] = {.lex_state = 438}, + [84] = {.lex_state = 438}, + [85] = {.lex_state = 438}, + [86] = {.lex_state = 438}, + [87] = {.lex_state = 438}, + [88] = {.lex_state = 438}, + [89] = {.lex_state = 235}, + [90] = {.lex_state = 235}, + [91] = {.lex_state = 235}, + [92] = {.lex_state = 235}, + [93] = {.lex_state = 235}, + [94] = {.lex_state = 438}, + [95] = {.lex_state = 438}, + [96] = {.lex_state = 438}, + [97] = {.lex_state = 438}, + [98] = {.lex_state = 438}, + [99] = {.lex_state = 438}, + [100] = {.lex_state = 438}, + [101] = {.lex_state = 438}, + [102] = {.lex_state = 438}, + [103] = {.lex_state = 438}, + [104] = {.lex_state = 238}, + [105] = {.lex_state = 238}, + [106] = {.lex_state = 238}, + [107] = {.lex_state = 238}, + [108] = {.lex_state = 238}, + [109] = {.lex_state = 237}, + [110] = {.lex_state = 237}, + [111] = {.lex_state = 237}, + [112] = {.lex_state = 237}, + [113] = {.lex_state = 237}, + [114] = {.lex_state = 237}, + [115] = {.lex_state = 237}, + [116] = {.lex_state = 237}, + [117] = {.lex_state = 237}, + [118] = {.lex_state = 237}, + [119] = {.lex_state = 237}, + [120] = {.lex_state = 237}, + [121] = {.lex_state = 237}, + [122] = {.lex_state = 237}, + [123] = {.lex_state = 237}, + [124] = {.lex_state = 237}, + [125] = {.lex_state = 237}, + [126] = {.lex_state = 237}, + [127] = {.lex_state = 239}, + [128] = {.lex_state = 237}, + [129] = {.lex_state = 237}, + [130] = {.lex_state = 237}, + [131] = {.lex_state = 239}, + [132] = {.lex_state = 237}, + [133] = {.lex_state = 237}, + [134] = {.lex_state = 237}, + [135] = {.lex_state = 237}, + [136] = {.lex_state = 239}, + [137] = {.lex_state = 237}, + [138] = {.lex_state = 237}, + [139] = {.lex_state = 237}, + [140] = {.lex_state = 237}, + [141] = {.lex_state = 237}, + [142] = {.lex_state = 237}, + [143] = {.lex_state = 237}, + [144] = {.lex_state = 237}, + [145] = {.lex_state = 237}, + [146] = {.lex_state = 237}, + [147] = {.lex_state = 226}, + [148] = {.lex_state = 237}, + [149] = {.lex_state = 237}, + [150] = {.lex_state = 237}, + [151] = {.lex_state = 237}, + [152] = {.lex_state = 226}, + [153] = {.lex_state = 237}, + [154] = {.lex_state = 237}, + [155] = {.lex_state = 237}, + [156] = {.lex_state = 237}, + [157] = {.lex_state = 237}, + [158] = {.lex_state = 237}, + [159] = {.lex_state = 237}, + [160] = {.lex_state = 237}, + [161] = {.lex_state = 237}, + [162] = {.lex_state = 237}, + [163] = {.lex_state = 237}, + [164] = {.lex_state = 237}, + [165] = {.lex_state = 237}, + [166] = {.lex_state = 237}, + [167] = {.lex_state = 237}, + [168] = {.lex_state = 237}, + [169] = {.lex_state = 237}, + [170] = {.lex_state = 237}, + [171] = {.lex_state = 237}, + [172] = {.lex_state = 237}, + [173] = {.lex_state = 237}, + [174] = {.lex_state = 237}, + [175] = {.lex_state = 237}, + [176] = {.lex_state = 237}, + [177] = {.lex_state = 237}, + [178] = {.lex_state = 237}, + [179] = {.lex_state = 237}, + [180] = {.lex_state = 237}, + [181] = {.lex_state = 237}, + [182] = {.lex_state = 237}, + [183] = {.lex_state = 237}, + [184] = {.lex_state = 237}, + [185] = {.lex_state = 237}, + [186] = {.lex_state = 237}, + [187] = {.lex_state = 237}, + [188] = {.lex_state = 237}, + [189] = {.lex_state = 237}, + [190] = {.lex_state = 226}, + [191] = {.lex_state = 237}, + [192] = {.lex_state = 237}, + [193] = {.lex_state = 237}, + [194] = {.lex_state = 237}, + [195] = {.lex_state = 237}, + [196] = {.lex_state = 237}, + [197] = {.lex_state = 237}, + [198] = {.lex_state = 237}, + [199] = {.lex_state = 237}, + [200] = {.lex_state = 237}, + [201] = {.lex_state = 237}, + [202] = {.lex_state = 237}, + [203] = {.lex_state = 237}, + [204] = {.lex_state = 237}, + [205] = {.lex_state = 237}, + [206] = {.lex_state = 237}, + [207] = {.lex_state = 237}, + [208] = {.lex_state = 237}, + [209] = {.lex_state = 237}, + [210] = {.lex_state = 237}, + [211] = {.lex_state = 237}, + [212] = {.lex_state = 237}, + [213] = {.lex_state = 240}, + [214] = {.lex_state = 240}, + [215] = {.lex_state = 240}, + [216] = {.lex_state = 240}, + [217] = {.lex_state = 240}, + [218] = {.lex_state = 240}, + [219] = {.lex_state = 240}, + [220] = {.lex_state = 240}, + [221] = {.lex_state = 240}, + [222] = {.lex_state = 240}, + [223] = {.lex_state = 240}, + [224] = {.lex_state = 240}, + [225] = {.lex_state = 240}, + [226] = {.lex_state = 240}, + [227] = {.lex_state = 240}, + [228] = {.lex_state = 240}, + [229] = {.lex_state = 240}, + [230] = {.lex_state = 228}, + [231] = {.lex_state = 240}, + [232] = {.lex_state = 240}, + [233] = {.lex_state = 240}, + [234] = {.lex_state = 240}, + [235] = {.lex_state = 240}, + [236] = {.lex_state = 240}, + [237] = {.lex_state = 240}, + [238] = {.lex_state = 240}, + [239] = {.lex_state = 240}, + [240] = {.lex_state = 240}, + [241] = {.lex_state = 240}, + [242] = {.lex_state = 240}, + [243] = {.lex_state = 240}, + [244] = {.lex_state = 240}, + [245] = {.lex_state = 240}, + [246] = {.lex_state = 229}, + [247] = {.lex_state = 226}, + [248] = {.lex_state = 226}, + [249] = {.lex_state = 230}, + [250] = {.lex_state = 228}, + [251] = {.lex_state = 438}, + [252] = {.lex_state = 438}, + [253] = {.lex_state = 438}, + [254] = {.lex_state = 438}, + [255] = {.lex_state = 438}, + [256] = {.lex_state = 438}, + [257] = {.lex_state = 240}, + [258] = {.lex_state = 240}, + [259] = {.lex_state = 240}, + [260] = {.lex_state = 240}, + [261] = {.lex_state = 240}, + [262] = {.lex_state = 240}, + [263] = {.lex_state = 240}, + [264] = {.lex_state = 240}, + [265] = {.lex_state = 240}, + [266] = {.lex_state = 240}, + [267] = {.lex_state = 240}, + [268] = {.lex_state = 237}, + [269] = {.lex_state = 240}, + [270] = {.lex_state = 239}, + [271] = {.lex_state = 237}, + [272] = {.lex_state = 240}, + [273] = {.lex_state = 240}, + [274] = {.lex_state = 240}, + [275] = {.lex_state = 240}, + [276] = {.lex_state = 240}, + [277] = {.lex_state = 239}, + [278] = {.lex_state = 240}, + [279] = {.lex_state = 240}, + [280] = {.lex_state = 237}, + [281] = {.lex_state = 240}, + [282] = {.lex_state = 240}, + [283] = {.lex_state = 237}, + [284] = {.lex_state = 286}, + [285] = {.lex_state = 286}, + [286] = {.lex_state = 286}, + [287] = {.lex_state = 240}, + [288] = {.lex_state = 286}, + [289] = {.lex_state = 286}, + [290] = {.lex_state = 286}, + [291] = {.lex_state = 286}, + [292] = {.lex_state = 286}, + [293] = {.lex_state = 237}, + [294] = {.lex_state = 286}, + [295] = {.lex_state = 286}, + [296] = {.lex_state = 286}, + [297] = {.lex_state = 286}, + [298] = {.lex_state = 237}, + [299] = {.lex_state = 286}, + [300] = {.lex_state = 286}, + [301] = {.lex_state = 237}, + [302] = {.lex_state = 235}, + [303] = {.lex_state = 237}, + [304] = {.lex_state = 286}, + [305] = {.lex_state = 237}, + [306] = {.lex_state = 235}, + [307] = {.lex_state = 286}, + [308] = {.lex_state = 237}, + [309] = {.lex_state = 438}, + [310] = {.lex_state = 240}, + [311] = {.lex_state = 240}, + [312] = {.lex_state = 240}, + [313] = {.lex_state = 240}, + [314] = {.lex_state = 240}, + [315] = {.lex_state = 240}, + [316] = {.lex_state = 240}, + [317] = {.lex_state = 240}, + [318] = {.lex_state = 240}, + [319] = {.lex_state = 240}, + [320] = {.lex_state = 240}, + [321] = {.lex_state = 240}, + [322] = {.lex_state = 240}, + [323] = {.lex_state = 240}, + [324] = {.lex_state = 240}, + [325] = {.lex_state = 240}, + [326] = {.lex_state = 240}, + [327] = {.lex_state = 240}, + [328] = {.lex_state = 240}, + [329] = {.lex_state = 240}, + [330] = {.lex_state = 240}, + [331] = {.lex_state = 438}, + [332] = {.lex_state = 240}, + [333] = {.lex_state = 240}, + [334] = {.lex_state = 240}, + [335] = {.lex_state = 240}, + [336] = {.lex_state = 240}, + [337] = {.lex_state = 240}, + [338] = {.lex_state = 240}, + [339] = {.lex_state = 240}, + [340] = {.lex_state = 240}, + [341] = {.lex_state = 240}, + [342] = {.lex_state = 240}, + [343] = {.lex_state = 237}, + [344] = {.lex_state = 240}, + [345] = {.lex_state = 240}, + [346] = {.lex_state = 240}, + [347] = {.lex_state = 235}, + [348] = {.lex_state = 240}, + [349] = {.lex_state = 235}, + [350] = {.lex_state = 240}, + [351] = {.lex_state = 240}, + [352] = {.lex_state = 240}, + [353] = {.lex_state = 240}, + [354] = {.lex_state = 235}, + [355] = {.lex_state = 235}, + [356] = {.lex_state = 235}, + [357] = {.lex_state = 235}, + [358] = {.lex_state = 235}, + [359] = {.lex_state = 235}, + [360] = {.lex_state = 235}, + [361] = {.lex_state = 235}, + [362] = {.lex_state = 438}, + [363] = {.lex_state = 438}, + [364] = {.lex_state = 235}, + [365] = {.lex_state = 235}, + [366] = {.lex_state = 235}, + [367] = {.lex_state = 235}, + [368] = {.lex_state = 235}, + [369] = {.lex_state = 235}, + [370] = {.lex_state = 235}, + [371] = {.lex_state = 235}, + [372] = {.lex_state = 235}, + [373] = {.lex_state = 235}, + [374] = {.lex_state = 235}, + [375] = {.lex_state = 235}, + [376] = {.lex_state = 235}, + [377] = {.lex_state = 235}, + [378] = {.lex_state = 235}, + [379] = {.lex_state = 235}, + [380] = {.lex_state = 235}, + [381] = {.lex_state = 235}, + [382] = {.lex_state = 235}, + [383] = {.lex_state = 438}, + [384] = {.lex_state = 235}, + [385] = {.lex_state = 235}, + [386] = {.lex_state = 235}, + [387] = {.lex_state = 235}, + [388] = {.lex_state = 235}, + [389] = {.lex_state = 235}, + [390] = {.lex_state = 235}, + [391] = {.lex_state = 235}, + [392] = {.lex_state = 235}, + [393] = {.lex_state = 286}, + [394] = {.lex_state = 235}, + [395] = {.lex_state = 235}, + [396] = {.lex_state = 235}, + [397] = {.lex_state = 235}, + [398] = {.lex_state = 235}, + [399] = {.lex_state = 235}, + [400] = {.lex_state = 235}, + [401] = {.lex_state = 235}, + [402] = {.lex_state = 235}, + [403] = {.lex_state = 235}, + [404] = {.lex_state = 235}, + [405] = {.lex_state = 235}, + [406] = {.lex_state = 235}, + [407] = {.lex_state = 235}, + [408] = {.lex_state = 235}, + [409] = {.lex_state = 438}, + [410] = {.lex_state = 235}, + [411] = {.lex_state = 235}, + [412] = {.lex_state = 235}, + [413] = {.lex_state = 235}, + [414] = {.lex_state = 235}, + [415] = {.lex_state = 235}, + [416] = {.lex_state = 235}, + [417] = {.lex_state = 235}, + [418] = {.lex_state = 235}, + [419] = {.lex_state = 235}, + [420] = {.lex_state = 235}, + [421] = {.lex_state = 235}, + [422] = {.lex_state = 235}, + [423] = {.lex_state = 235}, + [424] = {.lex_state = 235}, + [425] = {.lex_state = 235}, + [426] = {.lex_state = 235}, + [427] = {.lex_state = 235}, + [428] = {.lex_state = 235}, + [429] = {.lex_state = 235}, + [430] = {.lex_state = 438}, + [431] = {.lex_state = 235}, + [432] = {.lex_state = 235}, + [433] = {.lex_state = 438}, + [434] = {.lex_state = 235}, + [435] = {.lex_state = 235}, + [436] = {.lex_state = 235}, + [437] = {.lex_state = 438}, + [438] = {.lex_state = 235}, + [439] = {.lex_state = 235}, + [440] = {.lex_state = 235}, + [441] = {.lex_state = 235}, + [442] = {.lex_state = 235}, + [443] = {.lex_state = 438}, + [444] = {.lex_state = 235}, + [445] = {.lex_state = 235}, + [446] = {.lex_state = 235}, + [447] = {.lex_state = 235}, + [448] = {.lex_state = 235}, + [449] = {.lex_state = 235}, + [450] = {.lex_state = 235}, + [451] = {.lex_state = 235}, + [452] = {.lex_state = 235}, + [453] = {.lex_state = 235}, + [454] = {.lex_state = 235}, + [455] = {.lex_state = 235}, + [456] = {.lex_state = 235}, + [457] = {.lex_state = 235}, + [458] = {.lex_state = 235}, + [459] = {.lex_state = 235}, + [460] = {.lex_state = 235}, + [461] = {.lex_state = 235}, + [462] = {.lex_state = 235}, + [463] = {.lex_state = 438}, + [464] = {.lex_state = 235}, + [465] = {.lex_state = 438}, + [466] = {.lex_state = 438}, + [467] = {.lex_state = 438}, + [468] = {.lex_state = 238}, + [469] = {.lex_state = 235}, + [470] = {.lex_state = 235}, + [471] = {.lex_state = 238}, + [472] = {.lex_state = 235}, + [473] = {.lex_state = 235}, + [474] = {.lex_state = 235}, + [475] = {.lex_state = 235}, + [476] = {.lex_state = 438}, + [477] = {.lex_state = 438}, + [478] = {.lex_state = 438}, + [479] = {.lex_state = 438}, + [480] = {.lex_state = 227}, + [481] = {.lex_state = 438}, + [482] = {.lex_state = 438}, + [483] = {.lex_state = 438}, + [484] = {.lex_state = 438}, + [485] = {.lex_state = 438}, + [486] = {.lex_state = 438}, + [487] = {.lex_state = 438}, + [488] = {.lex_state = 438}, + [489] = {.lex_state = 438}, + [490] = {.lex_state = 438}, + [491] = {.lex_state = 438}, + [492] = {.lex_state = 438}, + [493] = {.lex_state = 438}, + [494] = {.lex_state = 438}, + [495] = {.lex_state = 438}, + [496] = {.lex_state = 438}, + [497] = {.lex_state = 438}, + [498] = {.lex_state = 438}, + [499] = {.lex_state = 438}, + [500] = {.lex_state = 438}, + [501] = {.lex_state = 438}, + [502] = {.lex_state = 438}, + [503] = {.lex_state = 438}, + [504] = {.lex_state = 438}, + [505] = {.lex_state = 438}, + [506] = {.lex_state = 438}, + [507] = {.lex_state = 438}, + [508] = {.lex_state = 438}, + [509] = {.lex_state = 438}, + [510] = {.lex_state = 235}, + [511] = {.lex_state = 438}, + [512] = {.lex_state = 235}, + [513] = {.lex_state = 235}, + [514] = {.lex_state = 438}, + [515] = {.lex_state = 438}, + [516] = {.lex_state = 438}, + [517] = {.lex_state = 235}, + [518] = {.lex_state = 235}, + [519] = {.lex_state = 235}, + [520] = {.lex_state = 235}, + [521] = {.lex_state = 235}, + [522] = {.lex_state = 235}, + [523] = {.lex_state = 235}, + [524] = {.lex_state = 235}, + [525] = {.lex_state = 235}, + [526] = {.lex_state = 235}, + [527] = {.lex_state = 235}, + [528] = {.lex_state = 235}, + [529] = {.lex_state = 235}, + [530] = {.lex_state = 438}, + [531] = {.lex_state = 227}, + [532] = {.lex_state = 438}, + [533] = {.lex_state = 438}, + [534] = {.lex_state = 438}, + [535] = {.lex_state = 238}, + [536] = {.lex_state = 438}, + [537] = {.lex_state = 238}, + [538] = {.lex_state = 238}, + [539] = {.lex_state = 227}, + [540] = {.lex_state = 238}, + [541] = {.lex_state = 238}, + [542] = {.lex_state = 438}, + [543] = {.lex_state = 438}, + [544] = {.lex_state = 238}, + [545] = {.lex_state = 438}, + [546] = {.lex_state = 238}, + [547] = {.lex_state = 438}, + [548] = {.lex_state = 438}, + [549] = {.lex_state = 438}, + [550] = {.lex_state = 438}, + [551] = {.lex_state = 334}, + [552] = {.lex_state = 238}, + [553] = {.lex_state = 438}, + [554] = {.lex_state = 438}, + [555] = {.lex_state = 438}, + [556] = {.lex_state = 238}, + [557] = {.lex_state = 438}, + [558] = {.lex_state = 438}, + [559] = {.lex_state = 238}, + [560] = {.lex_state = 238}, + [561] = {.lex_state = 238}, + [562] = {.lex_state = 238}, + [563] = {.lex_state = 238}, + [564] = {.lex_state = 438}, + [565] = {.lex_state = 238}, + [566] = {.lex_state = 438}, + [567] = {.lex_state = 238}, + [568] = {.lex_state = 438}, + [569] = {.lex_state = 438}, + [570] = {.lex_state = 438}, + [571] = {.lex_state = 438}, + [572] = {.lex_state = 438}, + [573] = {.lex_state = 438}, + [574] = {.lex_state = 238}, + [575] = {.lex_state = 238}, + [576] = {.lex_state = 438}, + [577] = {.lex_state = 438}, + [578] = {.lex_state = 438}, + [579] = {.lex_state = 238}, + [580] = {.lex_state = 238}, + [581] = {.lex_state = 238}, + [582] = {.lex_state = 238}, + [583] = {.lex_state = 266}, + [584] = {.lex_state = 238}, + [585] = {.lex_state = 238}, + [586] = {.lex_state = 238}, + [587] = {.lex_state = 238}, + [588] = {.lex_state = 438}, + [589] = {.lex_state = 438}, + [590] = {.lex_state = 238}, + [591] = {.lex_state = 238}, + [592] = {.lex_state = 238}, + [593] = {.lex_state = 438}, + [594] = {.lex_state = 438}, + [595] = {.lex_state = 438}, + [596] = {.lex_state = 238}, + [597] = {.lex_state = 438}, + [598] = {.lex_state = 238}, + [599] = {.lex_state = 238}, + [600] = {.lex_state = 238}, + [601] = {.lex_state = 438}, + [602] = {.lex_state = 438}, + [603] = {.lex_state = 438}, + [604] = {.lex_state = 438}, + [605] = {.lex_state = 438}, + [606] = {.lex_state = 438}, + [607] = {.lex_state = 438}, + [608] = {.lex_state = 334}, + [609] = {.lex_state = 438}, + [610] = {.lex_state = 438}, + [611] = {.lex_state = 438}, + [612] = {.lex_state = 266}, + [613] = {.lex_state = 438}, + [614] = {.lex_state = 438}, + [615] = {.lex_state = 438}, + [616] = {.lex_state = 438}, + [617] = {.lex_state = 438}, + [618] = {.lex_state = 438}, + [619] = {.lex_state = 438}, + [620] = {.lex_state = 438}, + [621] = {.lex_state = 438}, + [622] = {.lex_state = 438}, + [623] = {.lex_state = 438}, + [624] = {.lex_state = 438}, + [625] = {.lex_state = 266}, + [626] = {.lex_state = 438}, + [627] = {.lex_state = 438}, + [628] = {.lex_state = 438}, + [629] = {.lex_state = 438}, + [630] = {.lex_state = 438}, + [631] = {.lex_state = 438}, + [632] = {.lex_state = 438}, + [633] = {.lex_state = 438}, + [634] = {.lex_state = 438}, + [635] = {.lex_state = 438}, + [636] = {.lex_state = 438}, + [637] = {.lex_state = 266}, + [638] = {.lex_state = 438}, + [639] = {.lex_state = 438}, + [640] = {.lex_state = 438}, + [641] = {.lex_state = 334}, + [642] = {.lex_state = 266}, + [643] = {.lex_state = 438}, + [644] = {.lex_state = 438}, + [645] = {.lex_state = 438}, + [646] = {.lex_state = 438}, + [647] = {.lex_state = 438}, + [648] = {.lex_state = 438}, + [649] = {.lex_state = 438}, + [650] = {.lex_state = 438}, + [651] = {.lex_state = 266}, + [652] = {.lex_state = 238}, + [653] = {.lex_state = 438}, + [654] = {.lex_state = 438}, + [655] = {.lex_state = 438}, + [656] = {.lex_state = 238}, + [657] = {.lex_state = 238}, + [658] = {.lex_state = 438}, + [659] = {.lex_state = 438}, + [660] = {.lex_state = 266}, + [661] = {.lex_state = 438}, + [662] = {.lex_state = 238}, + [663] = {.lex_state = 438}, + [664] = {.lex_state = 438}, + [665] = {.lex_state = 238}, + [666] = {.lex_state = 438}, + [667] = {.lex_state = 438}, + [668] = {.lex_state = 266}, + [669] = {.lex_state = 238}, + [670] = {.lex_state = 438}, + [671] = {.lex_state = 438}, + [672] = {.lex_state = 238}, + [673] = {.lex_state = 438}, + [674] = {.lex_state = 438}, + [675] = {.lex_state = 438}, + [676] = {.lex_state = 266}, + [677] = {.lex_state = 438}, + [678] = {.lex_state = 438}, + [679] = {.lex_state = 438}, + [680] = {.lex_state = 438}, + [681] = {.lex_state = 438}, + [682] = {.lex_state = 266}, + [683] = {.lex_state = 438}, + [684] = {.lex_state = 438}, + [685] = {.lex_state = 438}, + [686] = {.lex_state = 266}, + [687] = {.lex_state = 438}, + [688] = {.lex_state = 266}, + [689] = {.lex_state = 266}, + [690] = {.lex_state = 266}, + [691] = {.lex_state = 438}, + [692] = {.lex_state = 266}, + [693] = {.lex_state = 438}, + [694] = {.lex_state = 266}, + [695] = {.lex_state = 438}, + [696] = {.lex_state = 266}, + [697] = {.lex_state = 438}, + [698] = {.lex_state = 438}, + [699] = {.lex_state = 266}, + [700] = {.lex_state = 238}, + [701] = {.lex_state = 438}, + [702] = {.lex_state = 266}, + [703] = {.lex_state = 438}, + [704] = {.lex_state = 438}, + [705] = {.lex_state = 266}, + [706] = {.lex_state = 438}, + [707] = {.lex_state = 438}, + [708] = {.lex_state = 266}, + [709] = {.lex_state = 266}, + [710] = {.lex_state = 266}, + [711] = {.lex_state = 438}, + [712] = {.lex_state = 438}, + [713] = {.lex_state = 438}, + [714] = {.lex_state = 438}, + [715] = {.lex_state = 438}, + [716] = {.lex_state = 438}, + [717] = {.lex_state = 438}, + [718] = {.lex_state = 238}, + [719] = {.lex_state = 438}, + [720] = {.lex_state = 438}, + [721] = {.lex_state = 438}, + [722] = {.lex_state = 438}, + [723] = {.lex_state = 438}, + [724] = {.lex_state = 438}, + [725] = {.lex_state = 438}, + [726] = {.lex_state = 438}, + [727] = {.lex_state = 438}, + [728] = {.lex_state = 438}, + [729] = {.lex_state = 438}, + [730] = {.lex_state = 438}, + [731] = {.lex_state = 438}, + [732] = {.lex_state = 438}, + [733] = {.lex_state = 238}, + [734] = {.lex_state = 438}, + [735] = {.lex_state = 438}, + [736] = {.lex_state = 438}, + [737] = {.lex_state = 438}, + [738] = {.lex_state = 438}, + [739] = {.lex_state = 238}, + [740] = {.lex_state = 438}, + [741] = {.lex_state = 238}, + [742] = {.lex_state = 238}, + [743] = {.lex_state = 438}, + [744] = {.lex_state = 238}, + [745] = {.lex_state = 438}, + [746] = {.lex_state = 438}, + [747] = {.lex_state = 438}, + [748] = {.lex_state = 238}, + [749] = {.lex_state = 238}, + [750] = {.lex_state = 438}, + [751] = {.lex_state = 438}, + [752] = {.lex_state = 238}, + [753] = {.lex_state = 438}, + [754] = {.lex_state = 438}, + [755] = {.lex_state = 438}, + [756] = {.lex_state = 438}, + [757] = {.lex_state = 438}, + [758] = {.lex_state = 438}, + [759] = {.lex_state = 438}, + [760] = {.lex_state = 438}, + [761] = {.lex_state = 438}, + [762] = {.lex_state = 438}, + [763] = {.lex_state = 438}, + [764] = {.lex_state = 238}, + [765] = {.lex_state = 238}, + [766] = {.lex_state = 238}, + [767] = {.lex_state = 238}, + [768] = {.lex_state = 238}, + [769] = {.lex_state = 238}, + [770] = {.lex_state = 238}, + [771] = {.lex_state = 238}, + [772] = {.lex_state = 438}, + [773] = {.lex_state = 438}, + [774] = {.lex_state = 238}, + [775] = {.lex_state = 238}, + [776] = {.lex_state = 438}, + [777] = {.lex_state = 438}, + [778] = {.lex_state = 238}, + [779] = {.lex_state = 438}, + [780] = {.lex_state = 238}, + [781] = {.lex_state = 238}, + [782] = {.lex_state = 238}, + [783] = {.lex_state = 238}, + [784] = {.lex_state = 438}, + [785] = {.lex_state = 438}, + [786] = {.lex_state = 238}, + [787] = {.lex_state = 238}, + [788] = {.lex_state = 438}, + [789] = {.lex_state = 438}, + [790] = {.lex_state = 438}, + [791] = {.lex_state = 438}, + [792] = {.lex_state = 238}, + [793] = {.lex_state = 438}, + [794] = {.lex_state = 438}, + [795] = {.lex_state = 438}, + [796] = {.lex_state = 238}, + [797] = {.lex_state = 438}, + [798] = {.lex_state = 438}, + [799] = {.lex_state = 438}, + [800] = {.lex_state = 238}, + [801] = {.lex_state = 238}, + [802] = {.lex_state = 438}, + [803] = {.lex_state = 438}, + [804] = {.lex_state = 238}, + [805] = {.lex_state = 238}, + [806] = {.lex_state = 238}, + [807] = {.lex_state = 438}, + [808] = {.lex_state = 438}, + [809] = {.lex_state = 438}, + [810] = {.lex_state = 238}, + [811] = {.lex_state = 438}, + [812] = {.lex_state = 238}, + [813] = {.lex_state = 227}, + [814] = {.lex_state = 238}, + [815] = {.lex_state = 238}, + [816] = {.lex_state = 238}, + [817] = {.lex_state = 238}, + [818] = {.lex_state = 438}, + [819] = {.lex_state = 238}, + [820] = {.lex_state = 238}, + [821] = {.lex_state = 238}, + [822] = {.lex_state = 238}, + [823] = {.lex_state = 238}, + [824] = {.lex_state = 438}, + [825] = {.lex_state = 438}, + [826] = {.lex_state = 238}, + [827] = {.lex_state = 238}, + [828] = {.lex_state = 438}, + [829] = {.lex_state = 238}, + [830] = {.lex_state = 238}, + [831] = {.lex_state = 438}, + [832] = {.lex_state = 438}, + [833] = {.lex_state = 438}, + [834] = {.lex_state = 238}, + [835] = {.lex_state = 438}, + [836] = {.lex_state = 438}, + [837] = {.lex_state = 438}, + [838] = {.lex_state = 438}, + [839] = {.lex_state = 438}, + [840] = {.lex_state = 238}, + [841] = {.lex_state = 438}, + [842] = {.lex_state = 438}, + [843] = {.lex_state = 438}, + [844] = {.lex_state = 438}, + [845] = {.lex_state = 238}, + [846] = {.lex_state = 438}, + [847] = {.lex_state = 238}, + [848] = {.lex_state = 438}, + [849] = {.lex_state = 438}, + [850] = {.lex_state = 232}, + [851] = {.lex_state = 438}, + [852] = {.lex_state = 438}, + [853] = {.lex_state = 238}, + [854] = {.lex_state = 238}, + [855] = {.lex_state = 238}, + [856] = {.lex_state = 438}, + [857] = {.lex_state = 238}, + [858] = {.lex_state = 438}, + [859] = {.lex_state = 238}, + [860] = {.lex_state = 438}, + [861] = {.lex_state = 438}, + [862] = {.lex_state = 438}, + [863] = {.lex_state = 438}, + [864] = {.lex_state = 438}, + [865] = {.lex_state = 238}, + [866] = {.lex_state = 438}, + [867] = {.lex_state = 238}, + [868] = {.lex_state = 438}, + [869] = {.lex_state = 438}, + [870] = {.lex_state = 238}, + [871] = {.lex_state = 438}, + [872] = {.lex_state = 438}, + [873] = {.lex_state = 438}, + [874] = {.lex_state = 238}, + [875] = {.lex_state = 438}, + [876] = {.lex_state = 238}, + [877] = {.lex_state = 238}, + [878] = {.lex_state = 238}, + [879] = {.lex_state = 238}, + [880] = {.lex_state = 238}, + [881] = {.lex_state = 438}, + [882] = {.lex_state = 238}, + [883] = {.lex_state = 438}, + [884] = {.lex_state = 238}, + [885] = {.lex_state = 438}, + [886] = {.lex_state = 238}, + [887] = {.lex_state = 438}, + [888] = {.lex_state = 438}, + [889] = {.lex_state = 238}, + [890] = {.lex_state = 438}, + [891] = {.lex_state = 438}, + [892] = {.lex_state = 238}, + [893] = {.lex_state = 227}, + [894] = {.lex_state = 238}, + [895] = {.lex_state = 438}, + [896] = {.lex_state = 238}, + [897] = {.lex_state = 438}, + [898] = {.lex_state = 238}, + [899] = {.lex_state = 238}, + [900] = {.lex_state = 238}, + [901] = {.lex_state = 438}, + [902] = {.lex_state = 238}, + [903] = {.lex_state = 238}, + [904] = {.lex_state = 238}, + [905] = {.lex_state = 238}, + [906] = {.lex_state = 438}, + [907] = {.lex_state = 438}, + [908] = {.lex_state = 438}, + [909] = {.lex_state = 438}, + [910] = {.lex_state = 238}, + [911] = {.lex_state = 231}, + [912] = {.lex_state = 438}, + [913] = {.lex_state = 238}, + [914] = {.lex_state = 238}, + [915] = {.lex_state = 438}, + [916] = {.lex_state = 238}, + [917] = {.lex_state = 232}, + [918] = {.lex_state = 240}, + [919] = {.lex_state = 240}, + [920] = {.lex_state = 240}, + [921] = {.lex_state = 240}, + [922] = {.lex_state = 240}, + [923] = {.lex_state = 240}, + [924] = {.lex_state = 240}, + [925] = {.lex_state = 240}, + [926] = {.lex_state = 240}, + [927] = {.lex_state = 240}, + [928] = {.lex_state = 240}, + [929] = {.lex_state = 240}, + [930] = {.lex_state = 240}, + [931] = {.lex_state = 240}, + [932] = {.lex_state = 240}, + [933] = {.lex_state = 240}, + [934] = {.lex_state = 233}, + [935] = {.lex_state = 233}, + [936] = {.lex_state = 240}, + [937] = {.lex_state = 240}, + [938] = {.lex_state = 240}, + [939] = {.lex_state = 240}, + [940] = {.lex_state = 240}, + [941] = {.lex_state = 240}, + [942] = {.lex_state = 240}, + [943] = {.lex_state = 240}, + [944] = {.lex_state = 240}, + [945] = {.lex_state = 240}, + [946] = {.lex_state = 240}, + [947] = {.lex_state = 240}, + [948] = {.lex_state = 240}, + [949] = {.lex_state = 240}, + [950] = {.lex_state = 240}, + [951] = {.lex_state = 240}, + [952] = {.lex_state = 240}, + [953] = {.lex_state = 240}, + [954] = {.lex_state = 240}, + [955] = {.lex_state = 240}, + [956] = {.lex_state = 240}, + [957] = {.lex_state = 240}, + [958] = {.lex_state = 240}, + [959] = {.lex_state = 240}, + [960] = {.lex_state = 240}, + [961] = {.lex_state = 240}, + [962] = {.lex_state = 240}, + [963] = {.lex_state = 240}, + [964] = {.lex_state = 240}, + [965] = {.lex_state = 240}, + [966] = {.lex_state = 240}, + [967] = {.lex_state = 240}, + [968] = {.lex_state = 240}, + [969] = {.lex_state = 240}, + [970] = {.lex_state = 240}, + [971] = {.lex_state = 240}, + [972] = {.lex_state = 240}, + [973] = {.lex_state = 240}, + [974] = {.lex_state = 240}, + [975] = {.lex_state = 240}, + [976] = {.lex_state = 240}, + [977] = {.lex_state = 240}, + [978] = {.lex_state = 240}, + [979] = {.lex_state = 240}, + [980] = {.lex_state = 240}, + [981] = {.lex_state = 240}, + [982] = {.lex_state = 240}, + [983] = {.lex_state = 240}, + [984] = {.lex_state = 240}, + [985] = {.lex_state = 240}, + [986] = {.lex_state = 240}, + [987] = {.lex_state = 240}, + [988] = {.lex_state = 240}, + [989] = {.lex_state = 240}, + [990] = {.lex_state = 240}, + [991] = {.lex_state = 286}, + [992] = {.lex_state = 286}, + [993] = {.lex_state = 286}, + [994] = {.lex_state = 286}, + [995] = {.lex_state = 286}, + [996] = {.lex_state = 286}, + [997] = {.lex_state = 286}, + [998] = {.lex_state = 239}, + [999] = {.lex_state = 239}, + [1000] = {.lex_state = 286}, + [1001] = {.lex_state = 286}, + [1002] = {.lex_state = 286}, + [1003] = {.lex_state = 286}, + [1004] = {.lex_state = 286}, + [1005] = {.lex_state = 240}, + [1006] = {.lex_state = 286}, + [1007] = {.lex_state = 286}, + [1008] = {.lex_state = 438}, + [1009] = {.lex_state = 438}, + [1010] = {.lex_state = 239}, + [1011] = {.lex_state = 239}, + [1012] = {.lex_state = 438}, + [1013] = {.lex_state = 253}, + [1014] = {.lex_state = 253}, + [1015] = {.lex_state = 286}, + [1016] = {.lex_state = 237}, + [1017] = {.lex_state = 237}, + [1018] = {.lex_state = 253}, + [1019] = {.lex_state = 253}, + [1020] = {.lex_state = 241}, + [1021] = {.lex_state = 241}, + [1022] = {.lex_state = 241}, + [1023] = {.lex_state = 253}, + [1024] = {.lex_state = 253}, + [1025] = {.lex_state = 241}, + [1026] = {.lex_state = 240}, + [1027] = {.lex_state = 240}, + [1028] = {.lex_state = 241}, + [1029] = {.lex_state = 241}, + [1030] = {.lex_state = 241}, + [1031] = {.lex_state = 240}, + [1032] = {.lex_state = 241}, + [1033] = {.lex_state = 253}, + [1034] = {.lex_state = 240}, + [1035] = {.lex_state = 253}, + [1036] = {.lex_state = 240}, + [1037] = {.lex_state = 241}, + [1038] = {.lex_state = 241}, + [1039] = {.lex_state = 240}, + [1040] = {.lex_state = 241}, + [1041] = {.lex_state = 241}, + [1042] = {.lex_state = 240}, + [1043] = {.lex_state = 241}, + [1044] = {.lex_state = 241}, + [1045] = {.lex_state = 241}, + [1046] = {.lex_state = 241}, + [1047] = {.lex_state = 253}, + [1048] = {.lex_state = 241}, + [1049] = {.lex_state = 241}, + [1050] = {.lex_state = 253}, + [1051] = {.lex_state = 241}, + [1052] = {.lex_state = 241}, + [1053] = {.lex_state = 241}, + [1054] = {.lex_state = 241}, + [1055] = {.lex_state = 240}, + [1056] = {.lex_state = 241}, + [1057] = {.lex_state = 240}, + [1058] = {.lex_state = 241}, + [1059] = {.lex_state = 241}, + [1060] = {.lex_state = 241}, + [1061] = {.lex_state = 241}, + [1062] = {.lex_state = 241}, + [1063] = {.lex_state = 253}, + [1064] = {.lex_state = 241}, + [1065] = {.lex_state = 253}, + [1066] = {.lex_state = 241}, + [1067] = {.lex_state = 241}, + [1068] = {.lex_state = 241}, + [1069] = {.lex_state = 240}, + [1070] = {.lex_state = 240}, + [1071] = {.lex_state = 240}, + [1072] = {.lex_state = 240}, + [1073] = {.lex_state = 240}, + [1074] = {.lex_state = 240}, + [1075] = {.lex_state = 240}, + [1076] = {.lex_state = 240}, + [1077] = {.lex_state = 240}, + [1078] = {.lex_state = 240}, + [1079] = {.lex_state = 240}, + [1080] = {.lex_state = 237}, + [1081] = {.lex_state = 240}, + [1082] = {.lex_state = 253}, + [1083] = {.lex_state = 240}, + [1084] = {.lex_state = 240}, + [1085] = {.lex_state = 240}, + [1086] = {.lex_state = 240}, + [1087] = {.lex_state = 240}, + [1088] = {.lex_state = 240}, + [1089] = {.lex_state = 237}, + [1090] = {.lex_state = 240}, + [1091] = {.lex_state = 240}, + [1092] = {.lex_state = 240}, + [1093] = {.lex_state = 240}, + [1094] = {.lex_state = 240}, + [1095] = {.lex_state = 240}, + [1096] = {.lex_state = 240}, + [1097] = {.lex_state = 240}, + [1098] = {.lex_state = 240}, + [1099] = {.lex_state = 240}, + [1100] = {.lex_state = 240}, + [1101] = {.lex_state = 240}, + [1102] = {.lex_state = 237}, + [1103] = {.lex_state = 237}, + [1104] = {.lex_state = 237}, + [1105] = {.lex_state = 240}, + [1106] = {.lex_state = 240}, + [1107] = {.lex_state = 237}, + [1108] = {.lex_state = 237}, + [1109] = {.lex_state = 240}, + [1110] = {.lex_state = 240}, + [1111] = {.lex_state = 240}, + [1112] = {.lex_state = 240}, + [1113] = {.lex_state = 240}, + [1114] = {.lex_state = 240}, + [1115] = {.lex_state = 240}, + [1116] = {.lex_state = 237}, + [1117] = {.lex_state = 237}, + [1118] = {.lex_state = 237}, + [1119] = {.lex_state = 237}, + [1120] = {.lex_state = 237}, + [1121] = {.lex_state = 237}, + [1122] = {.lex_state = 237}, + [1123] = {.lex_state = 237}, + [1124] = {.lex_state = 237}, + [1125] = {.lex_state = 237}, + [1126] = {.lex_state = 237}, + [1127] = {.lex_state = 237}, + [1128] = {.lex_state = 237}, + [1129] = {.lex_state = 237}, + [1130] = {.lex_state = 237}, + [1131] = {.lex_state = 237}, + [1132] = {.lex_state = 237}, + [1133] = {.lex_state = 237}, + [1134] = {.lex_state = 237}, + [1135] = {.lex_state = 240}, + [1136] = {.lex_state = 237}, + [1137] = {.lex_state = 237}, + [1138] = {.lex_state = 237}, + [1139] = {.lex_state = 237}, + [1140] = {.lex_state = 237}, + [1141] = {.lex_state = 237}, + [1142] = {.lex_state = 237}, + [1143] = {.lex_state = 237}, + [1144] = {.lex_state = 240}, + [1145] = {.lex_state = 237}, + [1146] = {.lex_state = 237}, + [1147] = {.lex_state = 237}, + [1148] = {.lex_state = 237}, + [1149] = {.lex_state = 240}, + [1150] = {.lex_state = 237}, + [1151] = {.lex_state = 237}, + [1152] = {.lex_state = 237}, + [1153] = {.lex_state = 237}, + [1154] = {.lex_state = 237}, + [1155] = {.lex_state = 237}, + [1156] = {.lex_state = 237}, + [1157] = {.lex_state = 237}, + [1158] = {.lex_state = 237}, + [1159] = {.lex_state = 237}, + [1160] = {.lex_state = 237}, + [1161] = {.lex_state = 237}, + [1162] = {.lex_state = 286}, + [1163] = {.lex_state = 240}, + [1164] = {.lex_state = 240}, + [1165] = {.lex_state = 240}, + [1166] = {.lex_state = 240}, + [1167] = {.lex_state = 240}, + [1168] = {.lex_state = 240}, + [1169] = {.lex_state = 240}, + [1170] = {.lex_state = 240}, + [1171] = {.lex_state = 248}, + [1172] = {.lex_state = 240}, + [1173] = {.lex_state = 240}, + [1174] = {.lex_state = 240}, + [1175] = {.lex_state = 240}, + [1176] = {.lex_state = 240}, + [1177] = {.lex_state = 240}, + [1178] = {.lex_state = 240}, + [1179] = {.lex_state = 240}, + [1180] = {.lex_state = 240}, + [1181] = {.lex_state = 240}, + [1182] = {.lex_state = 240}, + [1183] = {.lex_state = 240}, + [1184] = {.lex_state = 240}, + [1185] = {.lex_state = 240}, + [1186] = {.lex_state = 240}, + [1187] = {.lex_state = 240}, + [1188] = {.lex_state = 240}, + [1189] = {.lex_state = 240}, + [1190] = {.lex_state = 240}, + [1191] = {.lex_state = 240}, + [1192] = {.lex_state = 240}, + [1193] = {.lex_state = 240}, + [1194] = {.lex_state = 240}, + [1195] = {.lex_state = 240}, + [1196] = {.lex_state = 240}, + [1197] = {.lex_state = 240}, + [1198] = {.lex_state = 240}, + [1199] = {.lex_state = 240}, + [1200] = {.lex_state = 240}, + [1201] = {.lex_state = 240}, + [1202] = {.lex_state = 253}, + [1203] = {.lex_state = 240}, + [1204] = {.lex_state = 240}, + [1205] = {.lex_state = 240}, + [1206] = {.lex_state = 240}, + [1207] = {.lex_state = 240}, + [1208] = {.lex_state = 240}, + [1209] = {.lex_state = 240}, + [1210] = {.lex_state = 240}, + [1211] = {.lex_state = 240}, + [1212] = {.lex_state = 240}, + [1213] = {.lex_state = 240}, + [1214] = {.lex_state = 240}, + [1215] = {.lex_state = 240}, + [1216] = {.lex_state = 240}, + [1217] = {.lex_state = 240}, + [1218] = {.lex_state = 240}, + [1219] = {.lex_state = 240}, + [1220] = {.lex_state = 240}, + [1221] = {.lex_state = 240}, + [1222] = {.lex_state = 240}, + [1223] = {.lex_state = 240}, + [1224] = {.lex_state = 240}, + [1225] = {.lex_state = 240}, + [1226] = {.lex_state = 240}, + [1227] = {.lex_state = 240}, + [1228] = {.lex_state = 240}, + [1229] = {.lex_state = 240}, + [1230] = {.lex_state = 240}, + [1231] = {.lex_state = 240}, + [1232] = {.lex_state = 240}, + [1233] = {.lex_state = 240}, + [1234] = {.lex_state = 240}, + [1235] = {.lex_state = 240}, + [1236] = {.lex_state = 240}, + [1237] = {.lex_state = 240}, + [1238] = {.lex_state = 240}, + [1239] = {.lex_state = 240}, + [1240] = {.lex_state = 240}, + [1241] = {.lex_state = 240}, + [1242] = {.lex_state = 240}, + [1243] = {.lex_state = 240}, + [1244] = {.lex_state = 240}, + [1245] = {.lex_state = 240}, + [1246] = {.lex_state = 240}, + [1247] = {.lex_state = 240}, + [1248] = {.lex_state = 240}, + [1249] = {.lex_state = 240}, + [1250] = {.lex_state = 240}, + [1251] = {.lex_state = 240}, + [1252] = {.lex_state = 240}, + [1253] = {.lex_state = 240}, + [1254] = {.lex_state = 240}, + [1255] = {.lex_state = 240}, + [1256] = {.lex_state = 240}, + [1257] = {.lex_state = 240}, + [1258] = {.lex_state = 240}, + [1259] = {.lex_state = 240}, + [1260] = {.lex_state = 240}, + [1261] = {.lex_state = 240}, + [1262] = {.lex_state = 240}, + [1263] = {.lex_state = 240}, + [1264] = {.lex_state = 240}, + [1265] = {.lex_state = 240}, + [1266] = {.lex_state = 240}, + [1267] = {.lex_state = 240}, + [1268] = {.lex_state = 240}, + [1269] = {.lex_state = 240}, + [1270] = {.lex_state = 240}, + [1271] = {.lex_state = 240}, + [1272] = {.lex_state = 240}, + [1273] = {.lex_state = 240}, + [1274] = {.lex_state = 240}, + [1275] = {.lex_state = 240}, + [1276] = {.lex_state = 240}, + [1277] = {.lex_state = 240}, + [1278] = {.lex_state = 240}, + [1279] = {.lex_state = 240}, + [1280] = {.lex_state = 240}, + [1281] = {.lex_state = 240}, + [1282] = {.lex_state = 240}, + [1283] = {.lex_state = 240}, + [1284] = {.lex_state = 240}, + [1285] = {.lex_state = 240}, + [1286] = {.lex_state = 240}, + [1287] = {.lex_state = 240}, + [1288] = {.lex_state = 240}, + [1289] = {.lex_state = 240}, + [1290] = {.lex_state = 240}, + [1291] = {.lex_state = 240}, + [1292] = {.lex_state = 240}, + [1293] = {.lex_state = 240}, + [1294] = {.lex_state = 240}, + [1295] = {.lex_state = 240}, + [1296] = {.lex_state = 240}, + [1297] = {.lex_state = 240}, + [1298] = {.lex_state = 240}, + [1299] = {.lex_state = 240}, + [1300] = {.lex_state = 240}, + [1301] = {.lex_state = 240}, + [1302] = {.lex_state = 240}, + [1303] = {.lex_state = 240}, + [1304] = {.lex_state = 240}, + [1305] = {.lex_state = 240}, + [1306] = {.lex_state = 240}, + [1307] = {.lex_state = 240}, + [1308] = {.lex_state = 240}, + [1309] = {.lex_state = 240}, + [1310] = {.lex_state = 240}, + [1311] = {.lex_state = 240}, + [1312] = {.lex_state = 240}, + [1313] = {.lex_state = 240}, + [1314] = {.lex_state = 240}, + [1315] = {.lex_state = 240}, + [1316] = {.lex_state = 240}, + [1317] = {.lex_state = 240}, + [1318] = {.lex_state = 240}, + [1319] = {.lex_state = 240}, + [1320] = {.lex_state = 240}, + [1321] = {.lex_state = 240}, + [1322] = {.lex_state = 240}, + [1323] = {.lex_state = 240}, + [1324] = {.lex_state = 240}, + [1325] = {.lex_state = 240}, + [1326] = {.lex_state = 240}, + [1327] = {.lex_state = 240}, + [1328] = {.lex_state = 240}, + [1329] = {.lex_state = 240}, + [1330] = {.lex_state = 240}, + [1331] = {.lex_state = 240}, + [1332] = {.lex_state = 240}, + [1333] = {.lex_state = 240}, + [1334] = {.lex_state = 240}, + [1335] = {.lex_state = 240}, + [1336] = {.lex_state = 240}, + [1337] = {.lex_state = 240}, + [1338] = {.lex_state = 240}, + [1339] = {.lex_state = 240}, + [1340] = {.lex_state = 240}, + [1341] = {.lex_state = 240}, + [1342] = {.lex_state = 240}, + [1343] = {.lex_state = 240}, + [1344] = {.lex_state = 240}, + [1345] = {.lex_state = 240}, + [1346] = {.lex_state = 240}, + [1347] = {.lex_state = 240}, + [1348] = {.lex_state = 240}, + [1349] = {.lex_state = 240}, + [1350] = {.lex_state = 240}, + [1351] = {.lex_state = 240}, + [1352] = {.lex_state = 240}, + [1353] = {.lex_state = 240}, + [1354] = {.lex_state = 240}, + [1355] = {.lex_state = 240}, + [1356] = {.lex_state = 240}, + [1357] = {.lex_state = 240}, + [1358] = {.lex_state = 240}, + [1359] = {.lex_state = 240}, + [1360] = {.lex_state = 240}, + [1361] = {.lex_state = 240}, + [1362] = {.lex_state = 240}, + [1363] = {.lex_state = 240}, + [1364] = {.lex_state = 240}, + [1365] = {.lex_state = 240}, + [1366] = {.lex_state = 240}, + [1367] = {.lex_state = 240}, + [1368] = {.lex_state = 240}, + [1369] = {.lex_state = 240}, + [1370] = {.lex_state = 240}, + [1371] = {.lex_state = 240}, + [1372] = {.lex_state = 240}, + [1373] = {.lex_state = 240}, + [1374] = {.lex_state = 240}, + [1375] = {.lex_state = 240}, + [1376] = {.lex_state = 240}, + [1377] = {.lex_state = 240}, + [1378] = {.lex_state = 240}, + [1379] = {.lex_state = 240}, + [1380] = {.lex_state = 240}, + [1381] = {.lex_state = 240}, + [1382] = {.lex_state = 240}, + [1383] = {.lex_state = 240}, + [1384] = {.lex_state = 240}, + [1385] = {.lex_state = 240}, + [1386] = {.lex_state = 240}, + [1387] = {.lex_state = 240}, + [1388] = {.lex_state = 240}, + [1389] = {.lex_state = 240}, + [1390] = {.lex_state = 240}, + [1391] = {.lex_state = 240}, + [1392] = {.lex_state = 240}, + [1393] = {.lex_state = 240}, + [1394] = {.lex_state = 240}, + [1395] = {.lex_state = 240}, + [1396] = {.lex_state = 240}, + [1397] = {.lex_state = 240}, + [1398] = {.lex_state = 240}, + [1399] = {.lex_state = 240}, + [1400] = {.lex_state = 240}, + [1401] = {.lex_state = 240}, + [1402] = {.lex_state = 240}, + [1403] = {.lex_state = 240}, + [1404] = {.lex_state = 240}, + [1405] = {.lex_state = 240}, + [1406] = {.lex_state = 240}, + [1407] = {.lex_state = 240}, + [1408] = {.lex_state = 240}, + [1409] = {.lex_state = 240}, + [1410] = {.lex_state = 240}, + [1411] = {.lex_state = 240}, + [1412] = {.lex_state = 240}, + [1413] = {.lex_state = 240}, + [1414] = {.lex_state = 240}, + [1415] = {.lex_state = 240}, + [1416] = {.lex_state = 240}, + [1417] = {.lex_state = 240}, + [1418] = {.lex_state = 240}, + [1419] = {.lex_state = 240}, + [1420] = {.lex_state = 240}, + [1421] = {.lex_state = 240}, + [1422] = {.lex_state = 240}, + [1423] = {.lex_state = 240}, + [1424] = {.lex_state = 240}, + [1425] = {.lex_state = 240}, + [1426] = {.lex_state = 240}, + [1427] = {.lex_state = 240}, + [1428] = {.lex_state = 240}, + [1429] = {.lex_state = 240}, + [1430] = {.lex_state = 240}, + [1431] = {.lex_state = 240}, + [1432] = {.lex_state = 240}, + [1433] = {.lex_state = 240}, + [1434] = {.lex_state = 240}, + [1435] = {.lex_state = 240}, + [1436] = {.lex_state = 240}, + [1437] = {.lex_state = 240}, + [1438] = {.lex_state = 240}, + [1439] = {.lex_state = 240}, + [1440] = {.lex_state = 240}, + [1441] = {.lex_state = 240}, + [1442] = {.lex_state = 240}, + [1443] = {.lex_state = 240}, + [1444] = {.lex_state = 240}, + [1445] = {.lex_state = 240}, + [1446] = {.lex_state = 240}, + [1447] = {.lex_state = 240}, + [1448] = {.lex_state = 240}, + [1449] = {.lex_state = 240}, + [1450] = {.lex_state = 240}, + [1451] = {.lex_state = 240}, + [1452] = {.lex_state = 240}, + [1453] = {.lex_state = 240}, + [1454] = {.lex_state = 240}, + [1455] = {.lex_state = 240}, + [1456] = {.lex_state = 240}, + [1457] = {.lex_state = 240}, + [1458] = {.lex_state = 240}, + [1459] = {.lex_state = 240}, + [1460] = {.lex_state = 240}, + [1461] = {.lex_state = 240}, + [1462] = {.lex_state = 240}, + [1463] = {.lex_state = 240}, + [1464] = {.lex_state = 240}, + [1465] = {.lex_state = 240}, + [1466] = {.lex_state = 240}, + [1467] = {.lex_state = 240}, + [1468] = {.lex_state = 240}, + [1469] = {.lex_state = 240}, + [1470] = {.lex_state = 240}, + [1471] = {.lex_state = 240}, + [1472] = {.lex_state = 240}, + [1473] = {.lex_state = 240}, + [1474] = {.lex_state = 240}, + [1475] = {.lex_state = 240}, + [1476] = {.lex_state = 240}, + [1477] = {.lex_state = 240}, + [1478] = {.lex_state = 240}, + [1479] = {.lex_state = 240}, + [1480] = {.lex_state = 240}, + [1481] = {.lex_state = 240}, + [1482] = {.lex_state = 240}, + [1483] = {.lex_state = 240}, + [1484] = {.lex_state = 240}, + [1485] = {.lex_state = 240}, + [1486] = {.lex_state = 240}, + [1487] = {.lex_state = 240}, + [1488] = {.lex_state = 240}, + [1489] = {.lex_state = 240}, + [1490] = {.lex_state = 240}, + [1491] = {.lex_state = 240}, + [1492] = {.lex_state = 240}, + [1493] = {.lex_state = 240}, + [1494] = {.lex_state = 240}, + [1495] = {.lex_state = 240}, + [1496] = {.lex_state = 240}, + [1497] = {.lex_state = 240}, + [1498] = {.lex_state = 240}, + [1499] = {.lex_state = 240}, + [1500] = {.lex_state = 240}, + [1501] = {.lex_state = 240}, + [1502] = {.lex_state = 240}, + [1503] = {.lex_state = 240}, + [1504] = {.lex_state = 240}, + [1505] = {.lex_state = 240}, + [1506] = {.lex_state = 240}, + [1507] = {.lex_state = 240}, + [1508] = {.lex_state = 240}, + [1509] = {.lex_state = 240}, + [1510] = {.lex_state = 240}, + [1511] = {.lex_state = 240}, + [1512] = {.lex_state = 240}, + [1513] = {.lex_state = 240}, + [1514] = {.lex_state = 240}, + [1515] = {.lex_state = 240}, + [1516] = {.lex_state = 240}, + [1517] = {.lex_state = 240}, + [1518] = {.lex_state = 240}, + [1519] = {.lex_state = 240}, + [1520] = {.lex_state = 240}, + [1521] = {.lex_state = 240}, + [1522] = {.lex_state = 240}, + [1523] = {.lex_state = 240}, + [1524] = {.lex_state = 240}, + [1525] = {.lex_state = 240}, + [1526] = {.lex_state = 240}, + [1527] = {.lex_state = 240}, + [1528] = {.lex_state = 240}, + [1529] = {.lex_state = 240}, + [1530] = {.lex_state = 240}, + [1531] = {.lex_state = 240}, + [1532] = {.lex_state = 240}, + [1533] = {.lex_state = 240}, + [1534] = {.lex_state = 240}, + [1535] = {.lex_state = 240}, + [1536] = {.lex_state = 240}, + [1537] = {.lex_state = 240}, + [1538] = {.lex_state = 240}, + [1539] = {.lex_state = 240}, + [1540] = {.lex_state = 240}, + [1541] = {.lex_state = 240}, + [1542] = {.lex_state = 240}, + [1543] = {.lex_state = 240}, + [1544] = {.lex_state = 240}, + [1545] = {.lex_state = 240}, + [1546] = {.lex_state = 240}, + [1547] = {.lex_state = 240}, + [1548] = {.lex_state = 240}, + [1549] = {.lex_state = 240}, + [1550] = {.lex_state = 240}, + [1551] = {.lex_state = 240}, + [1552] = {.lex_state = 240}, + [1553] = {.lex_state = 240}, + [1554] = {.lex_state = 240}, + [1555] = {.lex_state = 240}, + [1556] = {.lex_state = 240}, + [1557] = {.lex_state = 240}, + [1558] = {.lex_state = 240}, + [1559] = {.lex_state = 240}, + [1560] = {.lex_state = 240}, + [1561] = {.lex_state = 240}, + [1562] = {.lex_state = 240}, + [1563] = {.lex_state = 240}, + [1564] = {.lex_state = 240}, + [1565] = {.lex_state = 240}, + [1566] = {.lex_state = 240}, + [1567] = {.lex_state = 240}, + [1568] = {.lex_state = 240}, + [1569] = {.lex_state = 240}, + [1570] = {.lex_state = 240}, + [1571] = {.lex_state = 240}, + [1572] = {.lex_state = 240}, + [1573] = {.lex_state = 240}, + [1574] = {.lex_state = 240}, + [1575] = {.lex_state = 240}, + [1576] = {.lex_state = 240}, + [1577] = {.lex_state = 240}, + [1578] = {.lex_state = 240}, + [1579] = {.lex_state = 240}, + [1580] = {.lex_state = 240}, + [1581] = {.lex_state = 240}, + [1582] = {.lex_state = 240}, + [1583] = {.lex_state = 240}, + [1584] = {.lex_state = 240}, + [1585] = {.lex_state = 240}, + [1586] = {.lex_state = 240}, + [1587] = {.lex_state = 240}, + [1588] = {.lex_state = 240}, + [1589] = {.lex_state = 240}, + [1590] = {.lex_state = 240}, + [1591] = {.lex_state = 240}, + [1592] = {.lex_state = 240}, + [1593] = {.lex_state = 240}, + [1594] = {.lex_state = 240}, + [1595] = {.lex_state = 240}, + [1596] = {.lex_state = 240}, + [1597] = {.lex_state = 240}, + [1598] = {.lex_state = 240}, + [1599] = {.lex_state = 240}, + [1600] = {.lex_state = 240}, + [1601] = {.lex_state = 240}, + [1602] = {.lex_state = 240}, + [1603] = {.lex_state = 240}, + [1604] = {.lex_state = 240}, + [1605] = {.lex_state = 240}, + [1606] = {.lex_state = 240}, + [1607] = {.lex_state = 240}, + [1608] = {.lex_state = 240}, + [1609] = {.lex_state = 240}, + [1610] = {.lex_state = 240}, + [1611] = {.lex_state = 240}, + [1612] = {.lex_state = 240}, + [1613] = {.lex_state = 240}, + [1614] = {.lex_state = 240}, + [1615] = {.lex_state = 240}, + [1616] = {.lex_state = 240}, + [1617] = {.lex_state = 240}, + [1618] = {.lex_state = 240}, + [1619] = {.lex_state = 240}, + [1620] = {.lex_state = 240}, + [1621] = {.lex_state = 240}, + [1622] = {.lex_state = 240}, + [1623] = {.lex_state = 240}, + [1624] = {.lex_state = 240}, + [1625] = {.lex_state = 240}, + [1626] = {.lex_state = 240}, + [1627] = {.lex_state = 240}, + [1628] = {.lex_state = 240}, + [1629] = {.lex_state = 240}, + [1630] = {.lex_state = 240}, + [1631] = {.lex_state = 240}, + [1632] = {.lex_state = 240}, + [1633] = {.lex_state = 240}, + [1634] = {.lex_state = 240}, + [1635] = {.lex_state = 240}, + [1636] = {.lex_state = 240}, + [1637] = {.lex_state = 240}, + [1638] = {.lex_state = 240}, + [1639] = {.lex_state = 240}, + [1640] = {.lex_state = 240}, + [1641] = {.lex_state = 240}, + [1642] = {.lex_state = 240}, + [1643] = {.lex_state = 240}, + [1644] = {.lex_state = 240}, + [1645] = {.lex_state = 240}, + [1646] = {.lex_state = 240}, + [1647] = {.lex_state = 240}, + [1648] = {.lex_state = 240}, + [1649] = {.lex_state = 240}, + [1650] = {.lex_state = 240}, + [1651] = {.lex_state = 240}, + [1652] = {.lex_state = 240}, + [1653] = {.lex_state = 240}, + [1654] = {.lex_state = 240}, + [1655] = {.lex_state = 240}, + [1656] = {.lex_state = 240}, + [1657] = {.lex_state = 240}, + [1658] = {.lex_state = 240}, + [1659] = {.lex_state = 240}, + [1660] = {.lex_state = 240}, + [1661] = {.lex_state = 240}, + [1662] = {.lex_state = 240}, + [1663] = {.lex_state = 240}, + [1664] = {.lex_state = 240}, + [1665] = {.lex_state = 240}, + [1666] = {.lex_state = 240}, + [1667] = {.lex_state = 240}, + [1668] = {.lex_state = 240}, + [1669] = {.lex_state = 240}, + [1670] = {.lex_state = 240}, + [1671] = {.lex_state = 240}, + [1672] = {.lex_state = 240}, + [1673] = {.lex_state = 240}, + [1674] = {.lex_state = 240}, + [1675] = {.lex_state = 240}, + [1676] = {.lex_state = 240}, + [1677] = {.lex_state = 240}, + [1678] = {.lex_state = 240}, + [1679] = {.lex_state = 240}, + [1680] = {.lex_state = 240}, + [1681] = {.lex_state = 240}, + [1682] = {.lex_state = 240}, + [1683] = {.lex_state = 240}, + [1684] = {.lex_state = 240}, + [1685] = {.lex_state = 240}, + [1686] = {.lex_state = 240}, + [1687] = {.lex_state = 240}, + [1688] = {.lex_state = 240}, + [1689] = {.lex_state = 240}, + [1690] = {.lex_state = 240}, + [1691] = {.lex_state = 240}, + [1692] = {.lex_state = 240}, + [1693] = {.lex_state = 240}, + [1694] = {.lex_state = 240}, + [1695] = {.lex_state = 240}, + [1696] = {.lex_state = 240}, + [1697] = {.lex_state = 240}, + [1698] = {.lex_state = 240}, + [1699] = {.lex_state = 240}, + [1700] = {.lex_state = 240}, + [1701] = {.lex_state = 240}, + [1702] = {.lex_state = 240}, + [1703] = {.lex_state = 240}, + [1704] = {.lex_state = 240}, + [1705] = {.lex_state = 240}, + [1706] = {.lex_state = 240}, + [1707] = {.lex_state = 240}, + [1708] = {.lex_state = 240}, + [1709] = {.lex_state = 240}, + [1710] = {.lex_state = 240}, + [1711] = {.lex_state = 240}, + [1712] = {.lex_state = 240}, + [1713] = {.lex_state = 240}, + [1714] = {.lex_state = 240}, + [1715] = {.lex_state = 240}, + [1716] = {.lex_state = 240}, + [1717] = {.lex_state = 240}, + [1718] = {.lex_state = 240}, + [1719] = {.lex_state = 240}, + [1720] = {.lex_state = 240}, + [1721] = {.lex_state = 240}, + [1722] = {.lex_state = 240}, + [1723] = {.lex_state = 240}, + [1724] = {.lex_state = 240}, + [1725] = {.lex_state = 240}, + [1726] = {.lex_state = 240}, + [1727] = {.lex_state = 240}, + [1728] = {.lex_state = 240}, + [1729] = {.lex_state = 240}, + [1730] = {.lex_state = 240}, + [1731] = {.lex_state = 240}, + [1732] = {.lex_state = 240}, + [1733] = {.lex_state = 240}, + [1734] = {.lex_state = 240}, + [1735] = {.lex_state = 240}, + [1736] = {.lex_state = 240}, + [1737] = {.lex_state = 240}, + [1738] = {.lex_state = 240}, + [1739] = {.lex_state = 240}, + [1740] = {.lex_state = 240}, + [1741] = {.lex_state = 240}, + [1742] = {.lex_state = 240}, + [1743] = {.lex_state = 240}, + [1744] = {.lex_state = 240}, + [1745] = {.lex_state = 240}, + [1746] = {.lex_state = 240}, + [1747] = {.lex_state = 240}, + [1748] = {.lex_state = 240}, + [1749] = {.lex_state = 240}, + [1750] = {.lex_state = 240}, + [1751] = {.lex_state = 240}, + [1752] = {.lex_state = 240}, + [1753] = {.lex_state = 240}, + [1754] = {.lex_state = 240}, + [1755] = {.lex_state = 240}, + [1756] = {.lex_state = 240}, + [1757] = {.lex_state = 240}, + [1758] = {.lex_state = 240}, + [1759] = {.lex_state = 240}, + [1760] = {.lex_state = 240}, + [1761] = {.lex_state = 240}, + [1762] = {.lex_state = 240}, + [1763] = {.lex_state = 240}, + [1764] = {.lex_state = 240}, + [1765] = {.lex_state = 240}, + [1766] = {.lex_state = 240}, + [1767] = {.lex_state = 240}, + [1768] = {.lex_state = 240}, + [1769] = {.lex_state = 240}, + [1770] = {.lex_state = 240}, + [1771] = {.lex_state = 240}, + [1772] = {.lex_state = 240}, + [1773] = {.lex_state = 240}, + [1774] = {.lex_state = 240}, + [1775] = {.lex_state = 240}, + [1776] = {.lex_state = 240}, + [1777] = {.lex_state = 240}, + [1778] = {.lex_state = 240}, + [1779] = {.lex_state = 240}, + [1780] = {.lex_state = 240}, + [1781] = {.lex_state = 240}, + [1782] = {.lex_state = 240}, + [1783] = {.lex_state = 240}, + [1784] = {.lex_state = 240}, + [1785] = {.lex_state = 240}, + [1786] = {.lex_state = 240}, + [1787] = {.lex_state = 240}, + [1788] = {.lex_state = 240}, + [1789] = {.lex_state = 240}, + [1790] = {.lex_state = 240}, + [1791] = {.lex_state = 240}, + [1792] = {.lex_state = 240}, + [1793] = {.lex_state = 240}, + [1794] = {.lex_state = 240}, + [1795] = {.lex_state = 240}, + [1796] = {.lex_state = 240}, + [1797] = {.lex_state = 240}, + [1798] = {.lex_state = 240}, + [1799] = {.lex_state = 240}, + [1800] = {.lex_state = 240}, + [1801] = {.lex_state = 240}, + [1802] = {.lex_state = 240}, + [1803] = {.lex_state = 240}, + [1804] = {.lex_state = 240}, + [1805] = {.lex_state = 240}, + [1806] = {.lex_state = 240}, + [1807] = {.lex_state = 240}, + [1808] = {.lex_state = 240}, + [1809] = {.lex_state = 240}, + [1810] = {.lex_state = 240}, + [1811] = {.lex_state = 240}, + [1812] = {.lex_state = 240}, + [1813] = {.lex_state = 240}, + [1814] = {.lex_state = 240}, + [1815] = {.lex_state = 240}, + [1816] = {.lex_state = 240}, + [1817] = {.lex_state = 240}, + [1818] = {.lex_state = 240}, + [1819] = {.lex_state = 240}, + [1820] = {.lex_state = 240}, + [1821] = {.lex_state = 240}, + [1822] = {.lex_state = 240}, + [1823] = {.lex_state = 240}, + [1824] = {.lex_state = 240}, + [1825] = {.lex_state = 240}, + [1826] = {.lex_state = 240}, + [1827] = {.lex_state = 240}, + [1828] = {.lex_state = 240}, + [1829] = {.lex_state = 240}, + [1830] = {.lex_state = 240}, + [1831] = {.lex_state = 240}, + [1832] = {.lex_state = 240}, + [1833] = {.lex_state = 240}, + [1834] = {.lex_state = 240}, + [1835] = {.lex_state = 240}, + [1836] = {.lex_state = 240}, + [1837] = {.lex_state = 240}, + [1838] = {.lex_state = 240}, + [1839] = {.lex_state = 286}, + [1840] = {.lex_state = 286}, + [1841] = {.lex_state = 267}, + [1842] = {.lex_state = 267}, + [1843] = {.lex_state = 267}, + [1844] = {.lex_state = 286}, + [1845] = {.lex_state = 286}, + [1846] = {.lex_state = 286}, + [1847] = {.lex_state = 267}, + [1848] = {.lex_state = 286}, + [1849] = {.lex_state = 286}, + [1850] = {.lex_state = 286}, + [1851] = {.lex_state = 286}, + [1852] = {.lex_state = 286}, + [1853] = {.lex_state = 265}, + [1854] = {.lex_state = 334}, + [1855] = {.lex_state = 265}, + [1856] = {.lex_state = 334}, + [1857] = {.lex_state = 265}, + [1858] = {.lex_state = 265}, + [1859] = {.lex_state = 265}, + [1860] = {.lex_state = 265}, + [1861] = {.lex_state = 265}, + [1862] = {.lex_state = 265}, + [1863] = {.lex_state = 334}, + [1864] = {.lex_state = 334}, + [1865] = {.lex_state = 265}, + [1866] = {.lex_state = 265}, + [1867] = {.lex_state = 289}, + [1868] = {.lex_state = 265}, + [1869] = {.lex_state = 289}, + [1870] = {.lex_state = 267}, + [1871] = {.lex_state = 267}, + [1872] = {.lex_state = 271}, + [1873] = {.lex_state = 271}, + [1874] = {.lex_state = 298}, + [1875] = {.lex_state = 298}, + [1876] = {.lex_state = 286}, + [1877] = {.lex_state = 286}, + [1878] = {.lex_state = 237}, + [1879] = {.lex_state = 267}, + [1880] = {.lex_state = 286}, + [1881] = {.lex_state = 237}, + [1882] = {.lex_state = 286}, + [1883] = {.lex_state = 237}, + [1884] = {.lex_state = 243}, + [1885] = {.lex_state = 289}, + [1886] = {.lex_state = 243}, + [1887] = {.lex_state = 243}, + [1888] = {.lex_state = 289}, + [1889] = {.lex_state = 272}, + [1890] = {.lex_state = 272}, + [1891] = {.lex_state = 272}, + [1892] = {.lex_state = 272}, + [1893] = {.lex_state = 243}, + [1894] = {.lex_state = 287}, + [1895] = {.lex_state = 249}, + [1896] = {.lex_state = 267}, + [1897] = {.lex_state = 315}, + [1898] = {.lex_state = 287}, + [1899] = {.lex_state = 267}, + [1900] = {.lex_state = 315}, + [1901] = {.lex_state = 267}, + [1902] = {.lex_state = 265}, + [1903] = {.lex_state = 287}, + [1904] = {.lex_state = 287}, + [1905] = {.lex_state = 315}, + [1906] = {.lex_state = 315}, + [1907] = {.lex_state = 315}, + [1908] = {.lex_state = 315}, + [1909] = {.lex_state = 315}, + [1910] = {.lex_state = 243}, + [1911] = {.lex_state = 243}, + [1912] = {.lex_state = 287}, + [1913] = {.lex_state = 273}, + [1914] = {.lex_state = 287}, + [1915] = {.lex_state = 287}, + [1916] = {.lex_state = 287}, + [1917] = {.lex_state = 287}, + [1918] = {.lex_state = 267}, + [1919] = {.lex_state = 272}, + [1920] = {.lex_state = 250}, + [1921] = {.lex_state = 272}, + [1922] = {.lex_state = 272}, + [1923] = {.lex_state = 250}, + [1924] = {.lex_state = 265}, + [1925] = {.lex_state = 272}, + [1926] = {.lex_state = 272}, + [1927] = {.lex_state = 272}, + [1928] = {.lex_state = 272}, + [1929] = {.lex_state = 250}, + [1930] = {.lex_state = 256}, + [1931] = {.lex_state = 273}, + [1932] = {.lex_state = 255}, + [1933] = {.lex_state = 290}, + [1934] = {.lex_state = 256}, + [1935] = {.lex_state = 255}, + [1936] = {.lex_state = 290}, + [1937] = {.lex_state = 243}, + [1938] = {.lex_state = 255}, + [1939] = {.lex_state = 243}, + [1940] = {.lex_state = 243}, + [1941] = {.lex_state = 273}, + [1942] = {.lex_state = 267}, + [1943] = {.lex_state = 267}, + [1944] = {.lex_state = 287}, + [1945] = {.lex_state = 267}, + [1946] = {.lex_state = 287}, + [1947] = {.lex_state = 287}, + [1948] = {.lex_state = 287}, + [1949] = {.lex_state = 287}, + [1950] = {.lex_state = 287}, + [1951] = {.lex_state = 287}, + [1952] = {.lex_state = 301}, + [1953] = {.lex_state = 273}, + [1954] = {.lex_state = 287}, + [1955] = {.lex_state = 287}, + [1956] = {.lex_state = 315}, + [1957] = {.lex_state = 270}, + [1958] = {.lex_state = 267}, + [1959] = {.lex_state = 267}, + [1960] = {.lex_state = 270}, + [1961] = {.lex_state = 267}, + [1962] = {.lex_state = 301}, + [1963] = {.lex_state = 269}, + [1964] = {.lex_state = 272}, + [1965] = {.lex_state = 273}, + [1966] = {.lex_state = 272}, + [1967] = {.lex_state = 272}, + [1968] = {.lex_state = 287}, + [1969] = {.lex_state = 269}, + [1970] = {.lex_state = 280}, + [1971] = {.lex_state = 280}, + [1972] = {.lex_state = 273}, + [1973] = {.lex_state = 272}, + [1974] = {.lex_state = 269}, + [1975] = {.lex_state = 272}, + [1976] = {.lex_state = 280}, + [1977] = {.lex_state = 280}, + [1978] = {.lex_state = 290}, + [1979] = {.lex_state = 269}, + [1980] = {.lex_state = 269}, + [1981] = {.lex_state = 269}, + [1982] = {.lex_state = 269}, + [1983] = {.lex_state = 269}, + [1984] = {.lex_state = 269}, + [1985] = {.lex_state = 269}, + [1986] = {.lex_state = 269}, + [1987] = {.lex_state = 269}, + [1988] = {.lex_state = 273}, + [1989] = {.lex_state = 273}, + [1990] = {.lex_state = 269}, + [1991] = {.lex_state = 290}, + [1992] = {.lex_state = 290}, + [1993] = {.lex_state = 290}, + [1994] = {.lex_state = 272}, + [1995] = {.lex_state = 269}, + [1996] = {.lex_state = 270}, + [1997] = {.lex_state = 269}, + [1998] = {.lex_state = 272}, + [1999] = {.lex_state = 270}, + [2000] = {.lex_state = 286}, + [2001] = {.lex_state = 272}, + [2002] = {.lex_state = 272}, + [2003] = {.lex_state = 272}, + [2004] = {.lex_state = 272}, + [2005] = {.lex_state = 272}, + [2006] = {.lex_state = 272}, + [2007] = {.lex_state = 272}, + [2008] = {.lex_state = 270}, + [2009] = {.lex_state = 272}, + [2010] = {.lex_state = 286}, + [2011] = {.lex_state = 289}, + [2012] = {.lex_state = 270}, + [2013] = {.lex_state = 286}, + [2014] = {.lex_state = 286}, + [2015] = {.lex_state = 301}, + [2016] = {.lex_state = 272}, + [2017] = {.lex_state = 272}, + [2018] = {.lex_state = 272}, + [2019] = {.lex_state = 272}, + [2020] = {.lex_state = 272}, + [2021] = {.lex_state = 272}, + [2022] = {.lex_state = 269}, + [2023] = {.lex_state = 301}, + [2024] = {.lex_state = 273}, + [2025] = {.lex_state = 315}, + [2026] = {.lex_state = 269}, + [2027] = {.lex_state = 273}, + [2028] = {.lex_state = 286}, + [2029] = {.lex_state = 315}, + [2030] = {.lex_state = 269}, + [2031] = {.lex_state = 286}, + [2032] = {.lex_state = 298}, + [2033] = {.lex_state = 272}, + [2034] = {.lex_state = 272}, + [2035] = {.lex_state = 272}, + [2036] = {.lex_state = 272}, + [2037] = {.lex_state = 286}, + [2038] = {.lex_state = 286}, + [2039] = {.lex_state = 273}, + [2040] = {.lex_state = 271}, + [2041] = {.lex_state = 269}, + [2042] = {.lex_state = 272}, + [2043] = {.lex_state = 272}, + [2044] = {.lex_state = 269}, + [2045] = {.lex_state = 315}, + [2046] = {.lex_state = 272}, + [2047] = {.lex_state = 272}, + [2048] = {.lex_state = 272}, + [2049] = {.lex_state = 269}, + [2050] = {.lex_state = 286}, + [2051] = {.lex_state = 286}, + [2052] = {.lex_state = 315}, + [2053] = {.lex_state = 272}, + [2054] = {.lex_state = 286}, + [2055] = {.lex_state = 272}, + [2056] = {.lex_state = 286}, + [2057] = {.lex_state = 286}, + [2058] = {.lex_state = 286}, + [2059] = {.lex_state = 286}, + [2060] = {.lex_state = 286}, + [2061] = {.lex_state = 315}, + [2062] = {.lex_state = 269}, + [2063] = {.lex_state = 269}, + [2064] = {.lex_state = 286}, + [2065] = {.lex_state = 286}, + [2066] = {.lex_state = 269}, + [2067] = {.lex_state = 269}, + [2068] = {.lex_state = 269}, + [2069] = {.lex_state = 272}, + [2070] = {.lex_state = 272}, + [2071] = {.lex_state = 272}, + [2072] = {.lex_state = 270}, + [2073] = {.lex_state = 272}, + [2074] = {.lex_state = 272}, + [2075] = {.lex_state = 270}, + [2076] = {.lex_state = 272}, + [2077] = {.lex_state = 272}, + [2078] = {.lex_state = 272}, + [2079] = {.lex_state = 272}, + [2080] = {.lex_state = 272}, + [2081] = {.lex_state = 269}, + [2082] = {.lex_state = 272}, + [2083] = {.lex_state = 270}, + [2084] = {.lex_state = 272}, + [2085] = {.lex_state = 272}, + [2086] = {.lex_state = 272}, + [2087] = {.lex_state = 270}, + [2088] = {.lex_state = 270}, + [2089] = {.lex_state = 272}, + [2090] = {.lex_state = 272}, + [2091] = {.lex_state = 272}, + [2092] = {.lex_state = 272}, + [2093] = {.lex_state = 272}, + [2094] = {.lex_state = 272}, + [2095] = {.lex_state = 272}, + [2096] = {.lex_state = 269}, + [2097] = {.lex_state = 272}, + [2098] = {.lex_state = 272}, + [2099] = {.lex_state = 272}, + [2100] = {.lex_state = 272}, + [2101] = {.lex_state = 272}, + [2102] = {.lex_state = 272}, + [2103] = {.lex_state = 272}, + [2104] = {.lex_state = 272}, + [2105] = {.lex_state = 292}, + [2106] = {.lex_state = 290}, + [2107] = {.lex_state = 272}, + [2108] = {.lex_state = 272}, + [2109] = {.lex_state = 272}, + [2110] = {.lex_state = 272}, + [2111] = {.lex_state = 272}, + [2112] = {.lex_state = 272}, + [2113] = {.lex_state = 273}, + [2114] = {.lex_state = 272}, + [2115] = {.lex_state = 273}, + [2116] = {.lex_state = 273}, + [2117] = {.lex_state = 272}, + [2118] = {.lex_state = 272}, + [2119] = {.lex_state = 292}, + [2120] = {.lex_state = 272}, + [2121] = {.lex_state = 272}, + [2122] = {.lex_state = 270}, + [2123] = {.lex_state = 270}, + [2124] = {.lex_state = 270}, + [2125] = {.lex_state = 270}, + [2126] = {.lex_state = 272}, + [2127] = {.lex_state = 269}, + [2128] = {.lex_state = 270}, + [2129] = {.lex_state = 269}, + [2130] = {.lex_state = 270}, + [2131] = {.lex_state = 290}, + [2132] = {.lex_state = 270}, + [2133] = {.lex_state = 270}, + [2134] = {.lex_state = 272}, + [2135] = {.lex_state = 272}, + [2136] = {.lex_state = 309}, + [2137] = {.lex_state = 272}, + [2138] = {.lex_state = 272}, + [2139] = {.lex_state = 272}, + [2140] = {.lex_state = 272}, + [2141] = {.lex_state = 272}, + [2142] = {.lex_state = 272}, + [2143] = {.lex_state = 272}, + [2144] = {.lex_state = 317}, + [2145] = {.lex_state = 305}, + [2146] = {.lex_state = 272}, + [2147] = {.lex_state = 272}, + [2148] = {.lex_state = 272}, + [2149] = {.lex_state = 272}, + [2150] = {.lex_state = 272}, + [2151] = {.lex_state = 272}, + [2152] = {.lex_state = 280}, + [2153] = {.lex_state = 317}, + [2154] = {.lex_state = 324}, + [2155] = {.lex_state = 269}, + [2156] = {.lex_state = 272}, + [2157] = {.lex_state = 280}, + [2158] = {.lex_state = 272}, + [2159] = {.lex_state = 272}, + [2160] = {.lex_state = 272}, + [2161] = {.lex_state = 272}, + [2162] = {.lex_state = 309}, + [2163] = {.lex_state = 292}, + [2164] = {.lex_state = 272}, + [2165] = {.lex_state = 272}, + [2166] = {.lex_state = 267}, + [2167] = {.lex_state = 272}, + [2168] = {.lex_state = 272}, + [2169] = {.lex_state = 305}, + [2170] = {.lex_state = 289}, + [2171] = {.lex_state = 272}, + [2172] = {.lex_state = 272}, + [2173] = {.lex_state = 272}, + [2174] = {.lex_state = 272}, + [2175] = {.lex_state = 272}, + [2176] = {.lex_state = 267}, + [2177] = {.lex_state = 267}, + [2178] = {.lex_state = 272}, + [2179] = {.lex_state = 334}, + [2180] = {.lex_state = 324}, + [2181] = {.lex_state = 272}, + [2182] = {.lex_state = 272}, + [2183] = {.lex_state = 267}, + [2184] = {.lex_state = 272}, + [2185] = {.lex_state = 290}, + [2186] = {.lex_state = 305}, + [2187] = {.lex_state = 286}, + [2188] = {.lex_state = 290}, + [2189] = {.lex_state = 290}, + [2190] = {.lex_state = 286}, + [2191] = {.lex_state = 286}, + [2192] = {.lex_state = 290}, + [2193] = {.lex_state = 267}, + [2194] = {.lex_state = 286}, + [2195] = {.lex_state = 289}, + [2196] = {.lex_state = 286}, + [2197] = {.lex_state = 286}, + [2198] = {.lex_state = 270}, + [2199] = {.lex_state = 309}, + [2200] = {.lex_state = 267}, + [2201] = {.lex_state = 273}, + [2202] = {.lex_state = 286}, + [2203] = {.lex_state = 290}, + [2204] = {.lex_state = 267}, + [2205] = {.lex_state = 267}, + [2206] = {.lex_state = 289}, + [2207] = {.lex_state = 267}, + [2208] = {.lex_state = 267}, + [2209] = {.lex_state = 290}, + [2210] = {.lex_state = 267}, + [2211] = {.lex_state = 286}, + [2212] = {.lex_state = 286}, + [2213] = {.lex_state = 272}, + [2214] = {.lex_state = 272}, + [2215] = {.lex_state = 280}, + [2216] = {.lex_state = 289}, + [2217] = {.lex_state = 267}, + [2218] = {.lex_state = 286}, + [2219] = {.lex_state = 290}, + [2220] = {.lex_state = 292}, + [2221] = {.lex_state = 271}, + [2222] = {.lex_state = 292}, + [2223] = {.lex_state = 298}, + [2224] = {.lex_state = 301}, + [2225] = {.lex_state = 301}, + [2226] = {.lex_state = 301}, + [2227] = {.lex_state = 301}, + [2228] = {.lex_state = 301}, + [2229] = {.lex_state = 301}, + [2230] = {.lex_state = 270}, + [2231] = {.lex_state = 270}, + [2232] = {.lex_state = 270}, + [2233] = {.lex_state = 270}, + [2234] = {.lex_state = 270}, + [2235] = {.lex_state = 270}, + [2236] = {.lex_state = 273}, + [2237] = {.lex_state = 298}, + [2238] = {.lex_state = 289}, + [2239] = {.lex_state = 298}, + [2240] = {.lex_state = 292}, + [2241] = {.lex_state = 286}, + [2242] = {.lex_state = 270}, + [2243] = {.lex_state = 289}, + [2244] = {.lex_state = 289}, + [2245] = {.lex_state = 292}, + [2246] = {.lex_state = 289}, + [2247] = {.lex_state = 289}, + [2248] = {.lex_state = 289}, + [2249] = {.lex_state = 289}, + [2250] = {.lex_state = 292}, + [2251] = {.lex_state = 271}, + [2252] = {.lex_state = 271}, + [2253] = {.lex_state = 292}, + [2254] = {.lex_state = 272}, + [2255] = {.lex_state = 272}, + [2256] = {.lex_state = 289}, + [2257] = {.lex_state = 290}, + [2258] = {.lex_state = 301}, + [2259] = {.lex_state = 305}, + [2260] = {.lex_state = 271}, + [2261] = {.lex_state = 272}, + [2262] = {.lex_state = 272}, + [2263] = {.lex_state = 309}, + [2264] = {.lex_state = 272}, + [2265] = {.lex_state = 272}, + [2266] = {.lex_state = 272}, + [2267] = {.lex_state = 272}, + [2268] = {.lex_state = 281}, + [2269] = {.lex_state = 305}, + [2270] = {.lex_state = 272}, + [2271] = {.lex_state = 305}, + [2272] = {.lex_state = 309}, + [2273] = {.lex_state = 309}, + [2274] = {.lex_state = 309}, + [2275] = {.lex_state = 292}, + [2276] = {.lex_state = 301}, + [2277] = {.lex_state = 292}, + [2278] = {.lex_state = 292}, + [2279] = {.lex_state = 281}, + [2280] = {.lex_state = 305}, + [2281] = {.lex_state = 298}, + [2282] = {.lex_state = 281}, + [2283] = {.lex_state = 281}, + [2284] = {.lex_state = 309}, + [2285] = {.lex_state = 290}, + [2286] = {.lex_state = 290}, + [2287] = {.lex_state = 290}, + [2288] = {.lex_state = 289}, + [2289] = {.lex_state = 290}, + [2290] = {.lex_state = 290}, + [2291] = {.lex_state = 289}, + [2292] = {.lex_state = 290}, + [2293] = {.lex_state = 270}, + [2294] = {.lex_state = 290}, + [2295] = {.lex_state = 305}, + [2296] = {.lex_state = 290}, + [2297] = {.lex_state = 290}, + [2298] = {.lex_state = 290}, + [2299] = {.lex_state = 289}, + [2300] = {.lex_state = 289}, + [2301] = {.lex_state = 290}, + [2302] = {.lex_state = 290}, + [2303] = {.lex_state = 289}, + [2304] = {.lex_state = 289}, + [2305] = {.lex_state = 290}, + [2306] = {.lex_state = 290}, + [2307] = {.lex_state = 290}, + [2308] = {.lex_state = 290}, + [2309] = {.lex_state = 237}, + [2310] = {.lex_state = 291}, + [2311] = {.lex_state = 290}, + [2312] = {.lex_state = 309}, + [2313] = {.lex_state = 290}, + [2314] = {.lex_state = 290}, + [2315] = {.lex_state = 290}, + [2316] = {.lex_state = 290}, + [2317] = {.lex_state = 289}, + [2318] = {.lex_state = 290}, + [2319] = {.lex_state = 289}, + [2320] = {.lex_state = 290}, + [2321] = {.lex_state = 290}, + [2322] = {.lex_state = 289}, + [2323] = {.lex_state = 286}, + [2324] = {.lex_state = 289}, + [2325] = {.lex_state = 305}, + [2326] = {.lex_state = 290}, + [2327] = {.lex_state = 289}, + [2328] = {.lex_state = 290}, + [2329] = {.lex_state = 237}, + [2330] = {.lex_state = 290}, + [2331] = {.lex_state = 302}, + [2332] = {.lex_state = 315}, + [2333] = {.lex_state = 301}, + [2334] = {.lex_state = 301}, + [2335] = {.lex_state = 301}, + [2336] = {.lex_state = 292}, + [2337] = {.lex_state = 270}, + [2338] = {.lex_state = 270}, + [2339] = {.lex_state = 292}, + [2340] = {.lex_state = 292}, + [2341] = {.lex_state = 270}, + [2342] = {.lex_state = 290}, + [2343] = {.lex_state = 286}, + [2344] = {.lex_state = 301}, + [2345] = {.lex_state = 301}, + [2346] = {.lex_state = 301}, + [2347] = {.lex_state = 301}, + [2348] = {.lex_state = 301}, + [2349] = {.lex_state = 270}, + [2350] = {.lex_state = 315}, + [2351] = {.lex_state = 290}, + [2352] = {.lex_state = 270}, + [2353] = {.lex_state = 271}, + [2354] = {.lex_state = 315}, + [2355] = {.lex_state = 298}, + [2356] = {.lex_state = 280}, + [2357] = {.lex_state = 290}, + [2358] = {.lex_state = 290}, + [2359] = {.lex_state = 301}, + [2360] = {.lex_state = 271}, + [2361] = {.lex_state = 315}, + [2362] = {.lex_state = 270}, + [2363] = {.lex_state = 240}, + [2364] = {.lex_state = 267}, + [2365] = {.lex_state = 292}, + [2366] = {.lex_state = 315}, + [2367] = {.lex_state = 270}, + [2368] = {.lex_state = 290}, + [2369] = {.lex_state = 290}, + [2370] = {.lex_state = 298}, + [2371] = {.lex_state = 301}, + [2372] = {.lex_state = 298}, + [2373] = {.lex_state = 290}, + [2374] = {.lex_state = 290}, + [2375] = {.lex_state = 280}, + [2376] = {.lex_state = 298}, + [2377] = {.lex_state = 301}, + [2378] = {.lex_state = 298}, + [2379] = {.lex_state = 270}, + [2380] = {.lex_state = 301}, + [2381] = {.lex_state = 298}, + [2382] = {.lex_state = 298}, + [2383] = {.lex_state = 298}, + [2384] = {.lex_state = 271}, + [2385] = {.lex_state = 301}, + [2386] = {.lex_state = 271}, + [2387] = {.lex_state = 301}, + [2388] = {.lex_state = 301}, + [2389] = {.lex_state = 292}, + [2390] = {.lex_state = 290}, + [2391] = {.lex_state = 290}, + [2392] = {.lex_state = 290}, + [2393] = {.lex_state = 301}, + [2394] = {.lex_state = 267}, + [2395] = {.lex_state = 271}, + [2396] = {.lex_state = 315}, + [2397] = {.lex_state = 315}, + [2398] = {.lex_state = 289}, + [2399] = {.lex_state = 282}, + [2400] = {.lex_state = 291}, + [2401] = {.lex_state = 291}, + [2402] = {.lex_state = 301}, + [2403] = {.lex_state = 271}, + [2404] = {.lex_state = 289}, + [2405] = {.lex_state = 290}, + [2406] = {.lex_state = 271}, + [2407] = {.lex_state = 289}, + [2408] = {.lex_state = 303}, + [2409] = {.lex_state = 315}, + [2410] = {.lex_state = 315}, + [2411] = {.lex_state = 301}, + [2412] = {.lex_state = 301}, + [2413] = {.lex_state = 315}, + [2414] = {.lex_state = 315}, + [2415] = {.lex_state = 271}, + [2416] = {.lex_state = 315}, + [2417] = {.lex_state = 315}, + [2418] = {.lex_state = 289}, + [2419] = {.lex_state = 289}, + [2420] = {.lex_state = 243}, + [2421] = {.lex_state = 280}, + [2422] = {.lex_state = 301}, + [2423] = {.lex_state = 281}, + [2424] = {.lex_state = 286}, + [2425] = {.lex_state = 270}, + [2426] = {.lex_state = 270}, + [2427] = {.lex_state = 298}, + [2428] = {.lex_state = 267}, + [2429] = {.lex_state = 281}, + [2430] = {.lex_state = 305}, + [2431] = {.lex_state = 290}, + [2432] = {.lex_state = 292}, + [2433] = {.lex_state = 290}, + [2434] = {.lex_state = 301}, + [2435] = {.lex_state = 301}, + [2436] = {.lex_state = 280}, + [2437] = {.lex_state = 298}, + [2438] = {.lex_state = 298}, + [2439] = {.lex_state = 245}, + [2440] = {.lex_state = 309}, + [2441] = {.lex_state = 301}, + [2442] = {.lex_state = 298}, + [2443] = {.lex_state = 271}, + [2444] = {.lex_state = 290}, + [2445] = {.lex_state = 292}, + [2446] = {.lex_state = 271}, + [2447] = {.lex_state = 270}, + [2448] = {.lex_state = 267}, + [2449] = {.lex_state = 291}, + [2450] = {.lex_state = 270}, + [2451] = {.lex_state = 271}, + [2452] = {.lex_state = 267}, + [2453] = {.lex_state = 267}, + [2454] = {.lex_state = 286}, + [2455] = {.lex_state = 281}, + [2456] = {.lex_state = 270}, + [2457] = {.lex_state = 270}, + [2458] = {.lex_state = 271}, + [2459] = {.lex_state = 270}, + [2460] = {.lex_state = 267}, + [2461] = {.lex_state = 270}, + [2462] = {.lex_state = 270}, + [2463] = {.lex_state = 281}, + [2464] = {.lex_state = 267}, + [2465] = {.lex_state = 267}, + [2466] = {.lex_state = 267}, + [2467] = {.lex_state = 302}, + [2468] = {.lex_state = 302}, + [2469] = {.lex_state = 303}, + [2470] = {.lex_state = 303}, + [2471] = {.lex_state = 301}, + [2472] = {.lex_state = 267}, + [2473] = {.lex_state = 267}, + [2474] = {.lex_state = 267}, + [2475] = {.lex_state = 281}, + [2476] = {.lex_state = 245}, + [2477] = {.lex_state = 267}, + [2478] = {.lex_state = 301}, + [2479] = {.lex_state = 301}, + [2480] = {.lex_state = 301}, + [2481] = {.lex_state = 301}, + [2482] = {.lex_state = 267}, + [2483] = {.lex_state = 301}, + [2484] = {.lex_state = 301}, + [2485] = {.lex_state = 281}, + [2486] = {.lex_state = 245}, + [2487] = {.lex_state = 301}, + [2488] = {.lex_state = 286}, + [2489] = {.lex_state = 267}, + [2490] = {.lex_state = 267}, + [2491] = {.lex_state = 270}, + [2492] = {.lex_state = 267}, + [2493] = {.lex_state = 286}, + [2494] = {.lex_state = 281}, + [2495] = {.lex_state = 270}, + [2496] = {.lex_state = 290}, + [2497] = {.lex_state = 290}, + [2498] = {.lex_state = 289}, + [2499] = {.lex_state = 301}, + [2500] = {.lex_state = 315}, + [2501] = {.lex_state = 270}, + [2502] = {.lex_state = 290}, + [2503] = {.lex_state = 290}, + [2504] = {.lex_state = 290}, + [2505] = {.lex_state = 290}, + [2506] = {.lex_state = 290}, + [2507] = {.lex_state = 290}, + [2508] = {.lex_state = 290}, + [2509] = {.lex_state = 290}, + [2510] = {.lex_state = 290}, + [2511] = {.lex_state = 290}, + [2512] = {.lex_state = 289}, + [2513] = {.lex_state = 289}, + [2514] = {.lex_state = 290}, + [2515] = {.lex_state = 290}, + [2516] = {.lex_state = 290}, + [2517] = {.lex_state = 270}, + [2518] = {.lex_state = 290}, + [2519] = {.lex_state = 301}, + [2520] = {.lex_state = 290}, + [2521] = {.lex_state = 290}, + [2522] = {.lex_state = 290}, + [2523] = {.lex_state = 290}, + [2524] = {.lex_state = 286}, + [2525] = {.lex_state = 290}, + [2526] = {.lex_state = 289}, + [2527] = {.lex_state = 290}, + [2528] = {.lex_state = 289}, + [2529] = {.lex_state = 289}, + [2530] = {.lex_state = 270}, + [2531] = {.lex_state = 290}, + [2532] = {.lex_state = 289}, + [2533] = {.lex_state = 270}, + [2534] = {.lex_state = 290}, + [2535] = {.lex_state = 290}, + [2536] = {.lex_state = 290}, + [2537] = {.lex_state = 291}, + [2538] = {.lex_state = 301}, + [2539] = {.lex_state = 290}, + [2540] = {.lex_state = 333}, + [2541] = {.lex_state = 333}, + [2542] = {.lex_state = 290}, + [2543] = {.lex_state = 290}, + [2544] = {.lex_state = 290}, + [2545] = {.lex_state = 289}, + [2546] = {.lex_state = 282}, + [2547] = {.lex_state = 290}, + [2548] = {.lex_state = 303}, + [2549] = {.lex_state = 302}, + [2550] = {.lex_state = 280}, + [2551] = {.lex_state = 286}, + [2552] = {.lex_state = 290}, + [2553] = {.lex_state = 290}, + [2554] = {.lex_state = 290}, + [2555] = {.lex_state = 290}, + [2556] = {.lex_state = 290}, + [2557] = {.lex_state = 290}, + [2558] = {.lex_state = 290}, + [2559] = {.lex_state = 280}, + [2560] = {.lex_state = 280}, + [2561] = {.lex_state = 301}, + [2562] = {.lex_state = 301}, + [2563] = {.lex_state = 286}, + [2564] = {.lex_state = 289}, + [2565] = {.lex_state = 289}, + [2566] = {.lex_state = 270}, + [2567] = {.lex_state = 301}, + [2568] = {.lex_state = 290}, + [2569] = {.lex_state = 286}, + [2570] = {.lex_state = 301}, + [2571] = {.lex_state = 280}, + [2572] = {.lex_state = 286}, + [2573] = {.lex_state = 316}, + [2574] = {.lex_state = 278}, + [2575] = {.lex_state = 316}, + [2576] = {.lex_state = 278}, + [2577] = {.lex_state = 301}, + [2578] = {.lex_state = 270}, + [2579] = {.lex_state = 270}, + [2580] = {.lex_state = 270}, + [2581] = {.lex_state = 290}, + [2582] = {.lex_state = 301}, + [2583] = {.lex_state = 270}, + [2584] = {.lex_state = 286}, + [2585] = {.lex_state = 270}, + [2586] = {.lex_state = 290}, [2587] = {.lex_state = 240}, - [2588] = {.lex_state = 229}, - [2589] = {.lex_state = 240}, - [2590] = {.lex_state = 229}, - [2591] = {.lex_state = 240}, - [2592] = {.lex_state = 240}, - [2593] = {.lex_state = 240}, - [2594] = {.lex_state = 240}, - [2595] = {.lex_state = 240}, - [2596] = {.lex_state = 240}, - [2597] = {.lex_state = 240}, - [2598] = {.lex_state = 240}, - [2599] = {.lex_state = 240}, - [2600] = {.lex_state = 240}, - [2601] = {.lex_state = 240}, - [2602] = {.lex_state = 240}, - [2603] = {.lex_state = 240}, - [2604] = {.lex_state = 241}, - [2605] = {.lex_state = 241}, - [2606] = {.lex_state = 240}, - [2607] = {.lex_state = 195}, - [2608] = {.lex_state = 240}, - [2609] = {.lex_state = 240}, - [2610] = {.lex_state = 240}, + [2588] = {.lex_state = 290}, + [2589] = {.lex_state = 301}, + [2590] = {.lex_state = 286}, + [2591] = {.lex_state = 301}, + [2592] = {.lex_state = 282}, + [2593] = {.lex_state = 290}, + [2594] = {.lex_state = 290}, + [2595] = {.lex_state = 290}, + [2596] = {.lex_state = 270}, + [2597] = {.lex_state = 270}, + [2598] = {.lex_state = 270}, + [2599] = {.lex_state = 280}, + [2600] = {.lex_state = 290}, + [2601] = {.lex_state = 290}, + [2602] = {.lex_state = 290}, + [2603] = {.lex_state = 290}, + [2604] = {.lex_state = 292}, + [2605] = {.lex_state = 289}, + [2606] = {.lex_state = 291}, + [2607] = {.lex_state = 291}, + [2608] = {.lex_state = 290}, + [2609] = {.lex_state = 286}, + [2610] = {.lex_state = 289}, [2611] = {.lex_state = 240}, - [2612] = {.lex_state = 240}, - [2613] = {.lex_state = 240}, - [2614] = {.lex_state = 240}, - [2615] = {.lex_state = 240}, - [2616] = {.lex_state = 240}, - [2617] = {.lex_state = 239}, - [2618] = {.lex_state = 240}, - [2619] = {.lex_state = 230}, - [2620] = {.lex_state = 176}, - [2621] = {.lex_state = 183}, - [2622] = {.lex_state = 183}, - [2623] = {.lex_state = 199}, - [2624] = {.lex_state = 183}, - [2625] = {.lex_state = 210}, - [2626] = {.lex_state = 210}, - [2627] = {.lex_state = 210}, - [2628] = {.lex_state = 210}, - [2629] = {.lex_state = 187}, - [2630] = {.lex_state = 187}, - [2631] = {.lex_state = 199}, - [2632] = {.lex_state = 187}, - [2633] = {.lex_state = 218}, - [2634] = {.lex_state = 187}, - [2635] = {.lex_state = 240}, - [2636] = {.lex_state = 240}, - [2637] = {.lex_state = 240}, - [2638] = {.lex_state = 240}, - [2639] = {.lex_state = 219}, - [2640] = {.lex_state = 176}, - [2641] = {.lex_state = 230}, - [2642] = {.lex_state = 218}, - [2643] = {.lex_state = 240}, - [2644] = {.lex_state = 240}, - [2645] = {.lex_state = 240}, - [2646] = {.lex_state = 240}, - [2647] = {.lex_state = 240}, - [2648] = {.lex_state = 210}, - [2649] = {.lex_state = 234}, - [2650] = {.lex_state = 203}, - [2651] = {.lex_state = 218}, - [2652] = {.lex_state = 210}, - [2653] = {.lex_state = 210}, - [2654] = {.lex_state = 187}, - [2655] = {.lex_state = 210}, - [2656] = {.lex_state = 240}, - [2657] = {.lex_state = 234}, - [2658] = {.lex_state = 240}, - [2659] = {.lex_state = 203}, - [2660] = {.lex_state = 229}, - [2661] = {.lex_state = 210}, - [2662] = {.lex_state = 240}, - [2663] = {.lex_state = 240}, - [2664] = {.lex_state = 234}, - [2665] = {.lex_state = 240}, - [2666] = {.lex_state = 240}, - [2667] = {.lex_state = 210}, - [2668] = {.lex_state = 210}, - [2669] = {.lex_state = 210}, - [2670] = {.lex_state = 210}, - [2671] = {.lex_state = 210}, - [2672] = {.lex_state = 240}, - [2673] = {.lex_state = 230}, - [2674] = {.lex_state = 240}, - [2675] = {.lex_state = 218}, - [2676] = {.lex_state = 203}, - [2677] = {.lex_state = 210}, - [2678] = {.lex_state = 210}, - [2679] = {.lex_state = 187}, - [2680] = {.lex_state = 218}, - [2681] = {.lex_state = 230}, - [2682] = {.lex_state = 187}, - [2683] = {.lex_state = 234}, - [2684] = {.lex_state = 210}, - [2685] = {.lex_state = 210}, - [2686] = {.lex_state = 218}, - [2687] = {.lex_state = 187}, - [2688] = {.lex_state = 241}, - [2689] = {.lex_state = 212}, - [2690] = {.lex_state = 210}, - [2691] = {.lex_state = 240}, - [2692] = {.lex_state = 240}, - [2693] = {.lex_state = 203}, - [2694] = {.lex_state = 240}, - [2695] = {.lex_state = 240}, - [2696] = {.lex_state = 241}, - [2697] = {.lex_state = 212}, - [2698] = {.lex_state = 218}, - [2699] = {.lex_state = 230}, - [2700] = {.lex_state = 218}, - [2701] = {.lex_state = 240}, - [2702] = {.lex_state = 218}, - [2703] = {.lex_state = 176}, - [2704] = {.lex_state = 176}, - [2705] = {.lex_state = 176}, - [2706] = {.lex_state = 176}, - [2707] = {.lex_state = 176}, - [2708] = {.lex_state = 210}, - [2709] = {.lex_state = 176}, - [2710] = {.lex_state = 218}, - [2711] = {.lex_state = 218}, - [2712] = {.lex_state = 230}, - [2713] = {.lex_state = 218}, - [2714] = {.lex_state = 230}, - [2715] = {.lex_state = 230}, - [2716] = {.lex_state = 218}, - [2717] = {.lex_state = 176}, - [2718] = {.lex_state = 240}, - [2719] = {.lex_state = 229}, - [2720] = {.lex_state = 176}, - [2721] = {.lex_state = 218}, - [2722] = {.lex_state = 230}, - [2723] = {.lex_state = 230}, - [2724] = {.lex_state = 176}, - [2725] = {.lex_state = 218}, - [2726] = {.lex_state = 176}, - [2727] = {.lex_state = 176}, - [2728] = {.lex_state = 219}, - [2729] = {.lex_state = 176}, - [2730] = {.lex_state = 230}, - [2731] = {.lex_state = 210}, - [2732] = {.lex_state = 218}, - [2733] = {.lex_state = 240}, - [2734] = {.lex_state = 176}, - [2735] = {.lex_state = 176}, - [2736] = {.lex_state = 176}, - [2737] = {.lex_state = 176}, - [2738] = {.lex_state = 212}, - [2739] = {.lex_state = 240}, - [2740] = {.lex_state = 230}, - [2741] = {.lex_state = 176}, - [2742] = {.lex_state = 229}, - [2743] = {.lex_state = 218}, - [2744] = {.lex_state = 240}, - [2745] = {.lex_state = 218}, - [2746] = {.lex_state = 176}, - [2747] = {.lex_state = 230}, - [2748] = {.lex_state = 230}, - [2749] = {.lex_state = 230}, - [2750] = {.lex_state = 218}, - [2751] = {.lex_state = 176}, - [2752] = {.lex_state = 212}, - [2753] = {.lex_state = 240}, - [2754] = {.lex_state = 230}, - [2755] = {.lex_state = 210}, - [2756] = {.lex_state = 176}, - [2757] = {.lex_state = 210}, - [2758] = {.lex_state = 196}, - [2759] = {.lex_state = 196}, - [2760] = {.lex_state = 196}, - [2761] = {.lex_state = 230}, - [2762] = {.lex_state = 196}, - [2763] = {.lex_state = 196}, - [2764] = {.lex_state = 196}, - [2765] = {.lex_state = 196}, - [2766] = {.lex_state = 230}, - [2767] = {.lex_state = 230}, - [2768] = {.lex_state = 210}, - [2769] = {.lex_state = 210}, - [2770] = {.lex_state = 210}, - [2771] = {.lex_state = 210}, - [2772] = {.lex_state = 228}, - [2773] = {.lex_state = 210}, - [2774] = {.lex_state = 210}, - [2775] = {.lex_state = 210}, - [2776] = {.lex_state = 196}, - [2777] = {.lex_state = 196}, - [2778] = {.lex_state = 196}, - [2779] = {.lex_state = 230}, - [2780] = {.lex_state = 230}, - [2781] = {.lex_state = 230}, - [2782] = {.lex_state = 239}, - [2783] = {.lex_state = 230}, - [2784] = {.lex_state = 230}, - [2785] = {.lex_state = 210}, - [2786] = {.lex_state = 219}, - [2787] = {.lex_state = 240}, - [2788] = {.lex_state = 230}, - [2789] = {.lex_state = 183}, - [2790] = {.lex_state = 230}, - [2791] = {.lex_state = 218}, - [2792] = {.lex_state = 230}, - [2793] = {.lex_state = 230}, - [2794] = {.lex_state = 228}, - [2795] = {.lex_state = 240}, - [2796] = {.lex_state = 230}, - [2797] = {.lex_state = 230}, - [2798] = {.lex_state = 230}, - [2799] = {.lex_state = 210}, - [2800] = {.lex_state = 239}, - [2801] = {.lex_state = 228}, - [2802] = {.lex_state = 230}, - [2803] = {.lex_state = 230}, - [2804] = {.lex_state = 210}, - [2805] = {.lex_state = 183}, - [2806] = {.lex_state = 230}, - [2807] = {.lex_state = 219}, - [2808] = {.lex_state = 230}, - [2809] = {.lex_state = 230}, - [2810] = {.lex_state = 230}, - [2811] = {.lex_state = 230}, - [2812] = {.lex_state = 230}, - [2813] = {.lex_state = 230}, - [2814] = {.lex_state = 230}, - [2815] = {.lex_state = 230}, - [2816] = {.lex_state = 230}, - [2817] = {.lex_state = 230}, - [2818] = {.lex_state = 183}, - [2819] = {.lex_state = 230}, - [2820] = {.lex_state = 230}, - [2821] = {.lex_state = 230}, - [2822] = {.lex_state = 230}, - [2823] = {.lex_state = 230}, - [2824] = {.lex_state = 230}, - [2825] = {.lex_state = 230}, - [2826] = {.lex_state = 240}, - [2827] = {.lex_state = 196}, - [2828] = {.lex_state = 196}, - [2829] = {.lex_state = 183}, - [2830] = {.lex_state = 230}, - [2831] = {.lex_state = 196}, - [2832] = {.lex_state = 196}, - [2833] = {.lex_state = 230}, - [2834] = {.lex_state = 230}, - [2835] = {.lex_state = 196}, - [2836] = {.lex_state = 196}, - [2837] = {.lex_state = 230}, - [2838] = {.lex_state = 196}, - [2839] = {.lex_state = 196}, - [2840] = {.lex_state = 230}, - [2841] = {.lex_state = 210}, - [2842] = {.lex_state = 240}, - [2843] = {.lex_state = 194}, - [2844] = {.lex_state = 194}, - [2845] = {.lex_state = 194}, - [2846] = {.lex_state = 194}, - [2847] = {.lex_state = 194}, - [2848] = {.lex_state = 210}, - [2849] = {.lex_state = 210}, - [2850] = {.lex_state = 200}, - [2851] = {.lex_state = 210}, - [2852] = {.lex_state = 212}, - [2853] = {.lex_state = 200}, - [2854] = {.lex_state = 218}, - [2855] = {.lex_state = 210}, - [2856] = {.lex_state = 210}, - [2857] = {.lex_state = 210}, - [2858] = {.lex_state = 210}, - [2859] = {.lex_state = 194}, - [2860] = {.lex_state = 194}, - [2861] = {.lex_state = 210}, - [2862] = {.lex_state = 210}, - [2863] = {.lex_state = 194}, - [2864] = {.lex_state = 210}, - [2865] = {.lex_state = 194}, - [2866] = {.lex_state = 242}, - [2867] = {.lex_state = 240}, - [2868] = {.lex_state = 194}, - [2869] = {.lex_state = 203}, - [2870] = {.lex_state = 240}, - [2871] = {.lex_state = 194}, - [2872] = {.lex_state = 194}, - [2873] = {.lex_state = 203}, - [2874] = {.lex_state = 194}, - [2875] = {.lex_state = 194}, - [2876] = {.lex_state = 240}, - [2877] = {.lex_state = 210}, - [2878] = {.lex_state = 210}, - [2879] = {.lex_state = 194}, - [2880] = {.lex_state = 210}, - [2881] = {.lex_state = 242}, - [2882] = {.lex_state = 194}, - [2883] = {.lex_state = 194}, - [2884] = {.lex_state = 194}, - [2885] = {.lex_state = 194}, - [2886] = {.lex_state = 242}, - [2887] = {.lex_state = 194}, - [2888] = {.lex_state = 210}, - [2889] = {.lex_state = 194}, - [2890] = {.lex_state = 210}, - [2891] = {.lex_state = 240}, - [2892] = {.lex_state = 211}, - [2893] = {.lex_state = 210}, - [2894] = {.lex_state = 200}, - [2895] = {.lex_state = 210}, - [2896] = {.lex_state = 196}, - [2897] = {.lex_state = 203}, - [2898] = {.lex_state = 203}, - [2899] = {.lex_state = 203}, - [2900] = {.lex_state = 203}, - [2901] = {.lex_state = 203}, - [2902] = {.lex_state = 203}, - [2903] = {.lex_state = 240}, - [2904] = {.lex_state = 210}, - [2905] = {.lex_state = 203}, - [2906] = {.lex_state = 229}, - [2907] = {.lex_state = 240}, - [2908] = {.lex_state = 203}, - [2909] = {.lex_state = 195}, - [2910] = {.lex_state = 203}, - [2911] = {.lex_state = 210}, - [2912] = {.lex_state = 203}, - [2913] = {.lex_state = 203}, - [2914] = {.lex_state = 194}, - [2915] = {.lex_state = 240}, - [2916] = {.lex_state = 203}, - [2917] = {.lex_state = 210}, - [2918] = {.lex_state = 196}, - [2919] = {.lex_state = 196}, - [2920] = {.lex_state = 203}, - [2921] = {.lex_state = 242}, - [2922] = {.lex_state = 210}, - [2923] = {.lex_state = 196}, - [2924] = {.lex_state = 210}, - [2925] = {.lex_state = 203}, - [2926] = {.lex_state = 203}, - [2927] = {.lex_state = 210}, - [2928] = {.lex_state = 203}, - [2929] = {.lex_state = 218}, - [2930] = {.lex_state = 240}, - [2931] = {.lex_state = 210}, - [2932] = {.lex_state = 240}, - [2933] = {.lex_state = 242}, - [2934] = {.lex_state = 200}, - [2935] = {.lex_state = 196}, - [2936] = {.lex_state = 196}, - [2937] = {.lex_state = 240}, - [2938] = {.lex_state = 218}, - [2939] = {.lex_state = 196}, - [2940] = {.lex_state = 210}, - [2941] = {.lex_state = 203}, - [2942] = {.lex_state = 218}, - [2943] = {.lex_state = 240}, - [2944] = {.lex_state = 203}, - [2945] = {.lex_state = 203}, - [2946] = {.lex_state = 210}, - [2947] = {.lex_state = 203}, - [2948] = {.lex_state = 203}, - [2949] = {.lex_state = 203}, - [2950] = {.lex_state = 203}, - [2951] = {.lex_state = 210}, - [2952] = {.lex_state = 194}, - [2953] = {.lex_state = 203}, - [2954] = {.lex_state = 210}, - [2955] = {.lex_state = 203}, - [2956] = {.lex_state = 196}, - [2957] = {.lex_state = 203}, - [2958] = {.lex_state = 210}, - [2959] = {.lex_state = 196}, - [2960] = {.lex_state = 196}, - [2961] = {.lex_state = 211}, - [2962] = {.lex_state = 196}, - [2963] = {.lex_state = 196}, - [2964] = {.lex_state = 203}, - [2965] = {.lex_state = 211}, - [2966] = {.lex_state = 242}, - [2967] = {.lex_state = 210}, - [2968] = {.lex_state = 211}, - [2969] = {.lex_state = 210}, - [2970] = {.lex_state = 240}, - [2971] = {.lex_state = 211}, - [2972] = {.lex_state = 203}, - [2973] = {.lex_state = 210}, - [2974] = {.lex_state = 196}, - [2975] = {.lex_state = 242}, - [2976] = {.lex_state = 196}, - [2977] = {.lex_state = 203}, - [2978] = {.lex_state = 210}, - [2979] = {.lex_state = 203}, - [2980] = {.lex_state = 211}, - [2981] = {.lex_state = 203}, - [2982] = {.lex_state = 196}, - [2983] = {.lex_state = 203}, - [2984] = {.lex_state = 196}, - [2985] = {.lex_state = 196}, - [2986] = {.lex_state = 196}, - [2987] = {.lex_state = 203}, - [2988] = {.lex_state = 196}, - [2989] = {.lex_state = 203}, - [2990] = {.lex_state = 210}, - [2991] = {.lex_state = 212}, - [2992] = {.lex_state = 203}, - [2993] = {.lex_state = 210}, - [2994] = {.lex_state = 203}, - [2995] = {.lex_state = 203}, - [2996] = {.lex_state = 210}, - [2997] = {.lex_state = 212}, - [2998] = {.lex_state = 203}, - [2999] = {.lex_state = 203}, - [3000] = {.lex_state = 203}, - [3001] = {.lex_state = 196}, - [3002] = {.lex_state = 210}, - [3003] = {.lex_state = 210}, - [3004] = {.lex_state = 210}, - [3005] = {.lex_state = 221}, - [3006] = {.lex_state = 211}, - [3007] = {.lex_state = 221}, - [3008] = {.lex_state = 221}, - [3009] = {.lex_state = 211}, - [3010] = {.lex_state = 240}, - [3011] = {.lex_state = 210}, - [3012] = {.lex_state = 203}, - [3013] = {.lex_state = 208}, - [3014] = {.lex_state = 194}, - [3015] = {.lex_state = 210}, - [3016] = {.lex_state = 194}, - [3017] = {.lex_state = 210}, - [3018] = {.lex_state = 176}, - [3019] = {.lex_state = 210}, - [3020] = {.lex_state = 240}, - [3021] = {.lex_state = 240}, - [3022] = {.lex_state = 240}, - [3023] = {.lex_state = 208}, - [3024] = {.lex_state = 170}, - [3025] = {.lex_state = 240}, - [3026] = {.lex_state = 210}, - [3027] = {.lex_state = 240}, - [3028] = {.lex_state = 240}, - [3029] = {.lex_state = 196}, - [3030] = {.lex_state = 210}, - [3031] = {.lex_state = 196}, - [3032] = {.lex_state = 196}, - [3033] = {.lex_state = 196}, - [3034] = {.lex_state = 196}, - [3035] = {.lex_state = 170}, - [3036] = {.lex_state = 210}, - [3037] = {.lex_state = 240}, - [3038] = {.lex_state = 240}, - [3039] = {.lex_state = 240}, - [3040] = {.lex_state = 218}, - [3041] = {.lex_state = 218}, - [3042] = {.lex_state = 240}, - [3043] = {.lex_state = 210}, - [3044] = {.lex_state = 240}, - [3045] = {.lex_state = 240}, - [3046] = {.lex_state = 218}, - [3047] = {.lex_state = 194}, - [3048] = {.lex_state = 170}, - [3049] = {.lex_state = 240}, - [3050] = {.lex_state = 218}, - [3051] = {.lex_state = 240}, - [3052] = {.lex_state = 218}, - [3053] = {.lex_state = 170}, - [3054] = {.lex_state = 170}, - [3055] = {.lex_state = 208}, - [3056] = {.lex_state = 240}, - [3057] = {.lex_state = 208}, - [3058] = {.lex_state = 218}, - [3059] = {.lex_state = 240}, - [3060] = {.lex_state = 208}, - [3061] = {.lex_state = 239}, - [3062] = {.lex_state = 196}, - [3063] = {.lex_state = 218}, - [3064] = {.lex_state = 218}, - [3065] = {.lex_state = 208}, - [3066] = {.lex_state = 218}, - [3067] = {.lex_state = 218}, - [3068] = {.lex_state = 196}, - [3069] = {.lex_state = 208}, - [3070] = {.lex_state = 240}, - [3071] = {.lex_state = 196}, - [3072] = {.lex_state = 196}, - [3073] = {.lex_state = 196}, - [3074] = {.lex_state = 196}, - [3075] = {.lex_state = 196}, - [3076] = {.lex_state = 196}, - [3077] = {.lex_state = 196}, - [3078] = {.lex_state = 208}, - [3079] = {.lex_state = 211}, - [3080] = {.lex_state = 194}, - [3081] = {.lex_state = 240}, - [3082] = {.lex_state = 194}, - [3083] = {.lex_state = 240}, - [3084] = {.lex_state = 218}, - [3085] = {.lex_state = 208}, - [3086] = {.lex_state = 218}, - [3087] = {.lex_state = 218}, - [3088] = {.lex_state = 208}, - [3089] = {.lex_state = 218}, - [3090] = {.lex_state = 208}, - [3091] = {.lex_state = 196}, - [3092] = {.lex_state = 208}, - [3093] = {.lex_state = 240}, - [3094] = {.lex_state = 240}, - [3095] = {.lex_state = 170}, - [3096] = {.lex_state = 194}, - [3097] = {.lex_state = 196}, - [3098] = {.lex_state = 208}, - [3099] = {.lex_state = 196}, - [3100] = {.lex_state = 208}, - [3101] = {.lex_state = 218}, - [3102] = {.lex_state = 218}, - [3103] = {.lex_state = 208}, - [3104] = {.lex_state = 221}, - [3105] = {.lex_state = 183}, - [3106] = {.lex_state = 210}, - [3107] = {.lex_state = 221}, - [3108] = {.lex_state = 208}, - [3109] = {.lex_state = 208}, - [3110] = {.lex_state = 218}, - [3111] = {.lex_state = 210}, - [3112] = {.lex_state = 195}, - [3113] = {.lex_state = 210}, - [3114] = {.lex_state = 210}, - [3115] = {.lex_state = 210}, - [3116] = {.lex_state = 210}, - [3117] = {.lex_state = 210}, - [3118] = {.lex_state = 210}, - [3119] = {.lex_state = 240}, - [3120] = {.lex_state = 211}, - [3121] = {.lex_state = 210}, - [3122] = {.lex_state = 210}, - [3123] = {.lex_state = 210}, - [3124] = {.lex_state = 210}, - [3125] = {.lex_state = 210}, - [3126] = {.lex_state = 211}, - [3127] = {.lex_state = 210}, - [3128] = {.lex_state = 183}, - [3129] = {.lex_state = 210}, - [3130] = {.lex_state = 210}, - [3131] = {.lex_state = 213}, - [3132] = {.lex_state = 210}, - [3133] = {.lex_state = 210}, - [3134] = {.lex_state = 210}, - [3135] = {.lex_state = 196}, - [3136] = {.lex_state = 208}, - [3137] = {.lex_state = 210}, - [3138] = {.lex_state = 218}, - [3139] = {.lex_state = 210}, - [3140] = {.lex_state = 210}, - [3141] = {.lex_state = 218}, - [3142] = {.lex_state = 218}, - [3143] = {.lex_state = 218}, - [3144] = {.lex_state = 208}, - [3145] = {.lex_state = 200}, - [3146] = {.lex_state = 220}, - [3147] = {.lex_state = 183}, - [3148] = {.lex_state = 195}, - [3149] = {.lex_state = 218}, - [3150] = {.lex_state = 200}, - [3151] = {.lex_state = 218}, - [3152] = {.lex_state = 203}, - [3153] = {.lex_state = 218}, - [3154] = {.lex_state = 240}, - [3155] = {.lex_state = 210}, - [3156] = {.lex_state = 240}, - [3157] = {.lex_state = 221}, - [3158] = {.lex_state = 218}, - [3159] = {.lex_state = 218}, - [3160] = {.lex_state = 218}, - [3161] = {.lex_state = 210}, - [3162] = {.lex_state = 208}, - [3163] = {.lex_state = 210}, - [3164] = {.lex_state = 210}, - [3165] = {.lex_state = 240}, - [3166] = {.lex_state = 210}, - [3167] = {.lex_state = 210}, - [3168] = {.lex_state = 210}, - [3169] = {.lex_state = 218}, - [3170] = {.lex_state = 210}, - [3171] = {.lex_state = 210}, - [3172] = {.lex_state = 183}, - [3173] = {.lex_state = 210}, - [3174] = {.lex_state = 221}, - [3175] = {.lex_state = 183}, - [3176] = {.lex_state = 210}, - [3177] = {.lex_state = 210}, - [3178] = {.lex_state = 210}, - [3179] = {.lex_state = 199}, - [3180] = {.lex_state = 210}, - [3181] = {.lex_state = 210}, - [3182] = {.lex_state = 211}, - [3183] = {.lex_state = 218}, - [3184] = {.lex_state = 210}, - [3185] = {.lex_state = 205}, - [3186] = {.lex_state = 205}, - [3187] = {.lex_state = 205}, - [3188] = {.lex_state = 210}, - [3189] = {.lex_state = 218}, - [3190] = {.lex_state = 210}, - [3191] = {.lex_state = 211}, - [3192] = {.lex_state = 210}, - [3193] = {.lex_state = 210}, - [3194] = {.lex_state = 210}, - [3195] = {.lex_state = 196}, - [3196] = {.lex_state = 218}, - [3197] = {.lex_state = 218}, - [3198] = {.lex_state = 218}, - [3199] = {.lex_state = 218}, - [3200] = {.lex_state = 218}, - [3201] = {.lex_state = 218}, - [3202] = {.lex_state = 218}, - [3203] = {.lex_state = 218}, - [3204] = {.lex_state = 210}, - [3205] = {.lex_state = 218}, - [3206] = {.lex_state = 218}, - [3207] = {.lex_state = 218}, - [3208] = {.lex_state = 210}, - [3209] = {.lex_state = 211}, - [3210] = {.lex_state = 211}, - [3211] = {.lex_state = 211}, - [3212] = {.lex_state = 218}, - [3213] = {.lex_state = 210}, - [3214] = {.lex_state = 205}, - [3215] = {.lex_state = 210}, - [3216] = {.lex_state = 211}, - [3217] = {.lex_state = 211}, - [3218] = {.lex_state = 218}, - [3219] = {.lex_state = 211}, - [3220] = {.lex_state = 218}, - [3221] = {.lex_state = 210}, - [3222] = {.lex_state = 210}, - [3223] = {.lex_state = 210}, - [3224] = {.lex_state = 211}, - [3225] = {.lex_state = 211}, - [3226] = {.lex_state = 211}, - [3227] = {.lex_state = 218}, - [3228] = {.lex_state = 240}, - [3229] = {.lex_state = 211}, - [3230] = {.lex_state = 218}, - [3231] = {.lex_state = 210}, - [3232] = {.lex_state = 211}, - [3233] = {.lex_state = 218}, - [3234] = {.lex_state = 210}, - [3235] = {.lex_state = 211}, - [3236] = {.lex_state = 218}, - [3237] = {.lex_state = 240}, - [3238] = {.lex_state = 210}, - [3239] = {.lex_state = 210}, - [3240] = {.lex_state = 208}, - [3241] = {.lex_state = 203}, - [3242] = {.lex_state = 210}, - [3243] = {.lex_state = 210}, - [3244] = {.lex_state = 195}, - [3245] = {.lex_state = 210}, - [3246] = {.lex_state = 210}, - [3247] = {.lex_state = 194}, - [3248] = {.lex_state = 210}, - [3249] = {.lex_state = 210}, - [3250] = {.lex_state = 210}, - [3251] = {.lex_state = 205}, - [3252] = {.lex_state = 205}, - [3253] = {.lex_state = 240}, - [3254] = {.lex_state = 240}, - [3255] = {.lex_state = 210}, - [3256] = {.lex_state = 195}, - [3257] = {.lex_state = 205}, - [3258] = {.lex_state = 211}, - [3259] = {.lex_state = 211}, - [3260] = {.lex_state = 205}, - [3261] = {.lex_state = 205}, - [3262] = {.lex_state = 218}, - [3263] = {.lex_state = 240}, - [3264] = {.lex_state = 210}, - [3265] = {.lex_state = 218}, - [3266] = {.lex_state = 210}, - [3267] = {.lex_state = 240}, - [3268] = {.lex_state = 210}, - [3269] = {.lex_state = 240}, - [3270] = {.lex_state = 240}, - [3271] = {.lex_state = 196}, - [3272] = {.lex_state = 210}, - [3273] = {.lex_state = 210}, - [3274] = {.lex_state = 195}, - [3275] = {.lex_state = 210}, - [3276] = {.lex_state = 210}, - [3277] = {.lex_state = 211}, - [3278] = {.lex_state = 210}, - [3279] = {.lex_state = 210}, - [3280] = {.lex_state = 210}, - [3281] = {.lex_state = 205}, - [3282] = {.lex_state = 210}, - [3283] = {.lex_state = 210}, - [3284] = {.lex_state = 210}, - [3285] = {.lex_state = 242}, - [3286] = {.lex_state = 210}, - [3287] = {.lex_state = 210}, - [3288] = {.lex_state = 240}, - [3289] = {.lex_state = 218}, - [3290] = {.lex_state = 218}, - [3291] = {.lex_state = 210}, - [3292] = {.lex_state = 211}, - [3293] = {.lex_state = 210}, - [3294] = {.lex_state = 194}, - [3295] = {.lex_state = 211}, - [3296] = {.lex_state = 205}, - [3297] = {.lex_state = 210}, - [3298] = {.lex_state = 210}, - [3299] = {.lex_state = 194}, - [3300] = {.lex_state = 243}, - [3301] = {.lex_state = 215}, - [3302] = {.lex_state = 205}, - [3303] = {.lex_state = 210}, - [3304] = {.lex_state = 240}, - [3305] = {.lex_state = 211}, - [3306] = {.lex_state = 196}, - [3307] = {.lex_state = 210}, - [3308] = {.lex_state = 211}, - [3309] = {.lex_state = 210}, - [3310] = {.lex_state = 210}, - [3311] = {.lex_state = 194}, - [3312] = {.lex_state = 210}, - [3313] = {.lex_state = 218}, - [3314] = {.lex_state = 211}, - [3315] = {.lex_state = 210}, - [3316] = {.lex_state = 211}, - [3317] = {.lex_state = 208}, - [3318] = {.lex_state = 217}, - [3319] = {.lex_state = 211}, - [3320] = {.lex_state = 205}, - [3321] = {.lex_state = 218}, - [3322] = {.lex_state = 210}, - [3323] = {.lex_state = 218}, - [3324] = {.lex_state = 195}, - [3325] = {.lex_state = 211}, - [3326] = {.lex_state = 210}, - [3327] = {.lex_state = 195}, - [3328] = {.lex_state = 210}, - [3329] = {.lex_state = 218}, - [3330] = {.lex_state = 218}, - [3331] = {.lex_state = 215}, - [3332] = {.lex_state = 210}, - [3333] = {.lex_state = 240}, - [3334] = {.lex_state = 196}, - [3335] = {.lex_state = 218}, - [3336] = {.lex_state = 195}, - [3337] = {.lex_state = 240}, - [3338] = {.lex_state = 240}, - [3339] = {.lex_state = 240}, - [3340] = {.lex_state = 240}, - [3341] = {.lex_state = 240}, - [3342] = {.lex_state = 208}, - [3343] = {.lex_state = 199}, - [3344] = {.lex_state = 199}, - [3345] = {.lex_state = 199}, - [3346] = {.lex_state = 199}, - [3347] = {.lex_state = 199}, - [3348] = {.lex_state = 199}, - [3349] = {.lex_state = 199}, - [3350] = {.lex_state = 199}, - [3351] = {.lex_state = 199}, - [3352] = {.lex_state = 199}, - [3353] = {.lex_state = 199}, - [3354] = {.lex_state = 199}, - [3355] = {.lex_state = 199}, - [3356] = {.lex_state = 199}, - [3357] = {.lex_state = 199}, - [3358] = {.lex_state = 199}, - [3359] = {.lex_state = 199}, - [3360] = {.lex_state = 199}, - [3361] = {.lex_state = 199}, - [3362] = {.lex_state = 199}, - [3363] = {.lex_state = 199}, - [3364] = {.lex_state = 199}, - [3365] = {.lex_state = 218}, - [3366] = {.lex_state = 199}, - [3367] = {.lex_state = 210}, - [3368] = {.lex_state = 211}, - [3369] = {.lex_state = 210}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 199}, - [3372] = {.lex_state = 210}, - [3373] = {.lex_state = 210}, - [3374] = {.lex_state = 210}, - [3375] = {.lex_state = 210}, - [3376] = {.lex_state = 205}, - [3377] = {.lex_state = 210}, - [3378] = {.lex_state = 210}, - [3379] = {.lex_state = 205}, - [3380] = {.lex_state = 205}, - [3381] = {.lex_state = 210}, - [3382] = {.lex_state = 211}, - [3383] = {.lex_state = 211}, - [3384] = {.lex_state = 240}, - [3385] = {.lex_state = 194}, - [3386] = {.lex_state = 210}, - [3387] = {.lex_state = 240}, - [3388] = {.lex_state = 210}, - [3389] = {.lex_state = 210}, - [3390] = {.lex_state = 210}, - [3391] = {.lex_state = 210}, - [3392] = {.lex_state = 218}, - [3393] = {.lex_state = 210}, - [3394] = {.lex_state = 210}, - [3395] = {.lex_state = 221}, - [3396] = {.lex_state = 210}, - [3397] = {.lex_state = 210}, - [3398] = {.lex_state = 210}, - [3399] = {.lex_state = 210}, - [3400] = {.lex_state = 210}, - [3401] = {.lex_state = 210}, - [3402] = {.lex_state = 196}, - [3403] = {.lex_state = 210}, - [3404] = {.lex_state = 183}, - [3405] = {.lex_state = 210}, - [3406] = {.lex_state = 193}, - [3407] = {.lex_state = 210}, - [3408] = {.lex_state = 210}, - [3409] = {.lex_state = 210}, - [3410] = {.lex_state = 210}, - [3411] = {.lex_state = 210}, - [3412] = {.lex_state = 210}, - [3413] = {.lex_state = 194}, - [3414] = {.lex_state = 210}, - [3415] = {.lex_state = 183}, - [3416] = {.lex_state = 210}, - [3417] = {.lex_state = 210}, - [3418] = {.lex_state = 210}, - [3419] = {.lex_state = 218}, - [3420] = {.lex_state = 210}, - [3421] = {.lex_state = 210}, - [3422] = {.lex_state = 210}, - [3423] = {.lex_state = 210}, - [3424] = {.lex_state = 210}, - [3425] = {.lex_state = 210}, - [3426] = {.lex_state = 218}, - [3427] = {.lex_state = 225}, - [3428] = {.lex_state = 210}, - [3429] = {.lex_state = 218}, - [3430] = {.lex_state = 218}, - [3431] = {.lex_state = 203}, - [3432] = {.lex_state = 183}, - [3433] = {.lex_state = 193}, - [3434] = {.lex_state = 210}, - [3435] = {.lex_state = 210}, - [3436] = {.lex_state = 210}, - [3437] = {.lex_state = 210}, - [3438] = {.lex_state = 218}, - [3439] = {.lex_state = 218}, - [3440] = {.lex_state = 210}, - [3441] = {.lex_state = 218}, - [3442] = {.lex_state = 218}, - [3443] = {.lex_state = 218}, - [3444] = {.lex_state = 221}, - [3445] = {.lex_state = 218}, - [3446] = {.lex_state = 210}, - [3447] = {.lex_state = 210}, - [3448] = {.lex_state = 210}, - [3449] = {.lex_state = 210}, - [3450] = {.lex_state = 218}, - [3451] = {.lex_state = 210}, - [3452] = {.lex_state = 210}, - [3453] = {.lex_state = 210}, - [3454] = {.lex_state = 240}, - [3455] = {.lex_state = 210}, - [3456] = {.lex_state = 183}, - [3457] = {.lex_state = 210}, - [3458] = {.lex_state = 210}, - [3459] = {.lex_state = 210}, - [3460] = {.lex_state = 210}, - [3461] = {.lex_state = 210}, - [3462] = {.lex_state = 218}, - [3463] = {.lex_state = 218}, - [3464] = {.lex_state = 221}, - [3465] = {.lex_state = 210}, - [3466] = {.lex_state = 242}, - [3467] = {.lex_state = 218}, - [3468] = {.lex_state = 218}, - [3469] = {.lex_state = 218}, - [3470] = {.lex_state = 210}, - [3471] = {.lex_state = 210}, - [3472] = {.lex_state = 218}, - [3473] = {.lex_state = 218}, - [3474] = {.lex_state = 221}, - [3475] = {.lex_state = 221}, - [3476] = {.lex_state = 210}, - [3477] = {.lex_state = 221}, - [3478] = {.lex_state = 242}, - [3479] = {.lex_state = 240}, - [3480] = {.lex_state = 210}, - [3481] = {.lex_state = 183}, - [3482] = {.lex_state = 242}, - [3483] = {.lex_state = 221}, - [3484] = {.lex_state = 240}, - [3485] = {.lex_state = 221}, - [3486] = {.lex_state = 240}, - [3487] = {.lex_state = 210}, - [3488] = {.lex_state = 221}, - [3489] = {.lex_state = 240}, - [3490] = {.lex_state = 221}, - [3491] = {.lex_state = 210}, - [3492] = {.lex_state = 218}, - [3493] = {.lex_state = 210}, - [3494] = {.lex_state = 210}, - [3495] = {.lex_state = 210}, - [3496] = {.lex_state = 210}, - [3497] = {.lex_state = 199}, - [3498] = {.lex_state = 210}, - [3499] = {.lex_state = 203}, - [3500] = {.lex_state = 210}, - [3501] = {.lex_state = 210}, - [3502] = {.lex_state = 242}, - [3503] = {.lex_state = 218}, - [3504] = {.lex_state = 210}, - [3505] = {.lex_state = 242}, - [3506] = {.lex_state = 210}, - [3507] = {.lex_state = 210}, - [3508] = {.lex_state = 210}, - [3509] = {.lex_state = 218}, - [3510] = {.lex_state = 218}, - [3511] = {.lex_state = 218}, - [3512] = {.lex_state = 218}, - [3513] = {.lex_state = 210}, - [3514] = {.lex_state = 218}, - [3515] = {.lex_state = 218}, - [3516] = {.lex_state = 218}, - [3517] = {.lex_state = 223}, - [3518] = {.lex_state = 218}, - [3519] = {.lex_state = 210}, - [3520] = {.lex_state = 218}, - [3521] = {.lex_state = 210}, - [3522] = {.lex_state = 210}, - [3523] = {.lex_state = 210}, - [3524] = {.lex_state = 210}, - [3525] = {.lex_state = 210}, - [3526] = {.lex_state = 221}, - [3527] = {.lex_state = 221}, - [3528] = {.lex_state = 210}, - [3529] = {.lex_state = 210}, - [3530] = {.lex_state = 210}, - [3531] = {.lex_state = 210}, - [3532] = {.lex_state = 218}, - [3533] = {.lex_state = 218}, - [3534] = {.lex_state = 218}, - [3535] = {.lex_state = 218}, - [3536] = {.lex_state = 210}, - [3537] = {.lex_state = 218}, - [3538] = {.lex_state = 218}, - [3539] = {.lex_state = 240}, - [3540] = {.lex_state = 218}, - [3541] = {.lex_state = 240}, - [3542] = {.lex_state = 218}, - [3543] = {.lex_state = 240}, - [3544] = {.lex_state = 242}, - [3545] = {.lex_state = 210}, - [3546] = {.lex_state = 210}, - [3547] = {.lex_state = 210}, - [3548] = {.lex_state = 193}, - [3549] = {.lex_state = 210}, - [3550] = {.lex_state = 242}, - [3551] = {.lex_state = 242}, - [3552] = {.lex_state = 210}, - [3553] = {.lex_state = 210}, - [3554] = {.lex_state = 210}, - [3555] = {.lex_state = 210}, - [3556] = {.lex_state = 210}, - [3557] = {.lex_state = 210}, - [3558] = {.lex_state = 221}, - [3559] = {.lex_state = 205}, - [3560] = {.lex_state = 210}, - [3561] = {.lex_state = 210}, - [3562] = {.lex_state = 210}, - [3563] = {.lex_state = 210}, - [3564] = {.lex_state = 221}, - [3565] = {.lex_state = 223}, - [3566] = {.lex_state = 218}, - [3567] = {.lex_state = 221}, - [3568] = {.lex_state = 221}, - [3569] = {.lex_state = 203}, - [3570] = {.lex_state = 218}, - [3571] = {.lex_state = 210}, - [3572] = {.lex_state = 210}, - [3573] = {.lex_state = 218}, - [3574] = {.lex_state = 210}, - [3575] = {.lex_state = 218}, - [3576] = {.lex_state = 210}, - [3577] = {.lex_state = 203}, - [3578] = {.lex_state = 203}, - [3579] = {.lex_state = 194}, - [3580] = {.lex_state = 210}, - [3581] = {.lex_state = 218}, - [3582] = {.lex_state = 205}, - [3583] = {.lex_state = 194}, - [3584] = {.lex_state = 199}, - [3585] = {.lex_state = 203}, - [3586] = {.lex_state = 218}, - [3587] = {.lex_state = 218}, - [3588] = {.lex_state = 218}, - [3589] = {.lex_state = 203}, - [3590] = {.lex_state = 240}, - [3591] = {.lex_state = 218}, - [3592] = {.lex_state = 218}, - [3593] = {.lex_state = 218}, - [3594] = {.lex_state = 203}, - [3595] = {.lex_state = 203}, - [3596] = {.lex_state = 218}, - [3597] = {.lex_state = 218}, - [3598] = {.lex_state = 203}, - [3599] = {.lex_state = 196}, - [3600] = {.lex_state = 218}, - [3601] = {.lex_state = 218}, - [3602] = {.lex_state = 218}, - [3603] = {.lex_state = 183}, - [3604] = {.lex_state = 218}, - [3605] = {.lex_state = 203}, - [3606] = {.lex_state = 183}, - [3607] = {.lex_state = 203}, - [3608] = {.lex_state = 210}, - [3609] = {.lex_state = 218}, - [3610] = {.lex_state = 218}, - [3611] = {.lex_state = 218}, - [3612] = {.lex_state = 218}, - [3613] = {.lex_state = 218}, - [3614] = {.lex_state = 210}, - [3615] = {.lex_state = 210}, - [3616] = {.lex_state = 218}, - [3617] = {.lex_state = 218}, - [3618] = {.lex_state = 218}, - [3619] = {.lex_state = 210}, - [3620] = {.lex_state = 203}, - [3621] = {.lex_state = 183}, - [3622] = {.lex_state = 218}, - [3623] = {.lex_state = 183}, - [3624] = {.lex_state = 195}, - [3625] = {.lex_state = 218}, - [3626] = {.lex_state = 210}, - [3627] = {.lex_state = 210}, - [3628] = {.lex_state = 218}, - [3629] = {.lex_state = 218}, - [3630] = {.lex_state = 218}, - [3631] = {.lex_state = 218}, - [3632] = {.lex_state = 218}, - [3633] = {.lex_state = 199}, - [3634] = {.lex_state = 218}, - [3635] = {.lex_state = 218}, - [3636] = {.lex_state = 210}, - [3637] = {.lex_state = 218}, - [3638] = {.lex_state = 218}, - [3639] = {.lex_state = 218}, - [3640] = {.lex_state = 218}, - [3641] = {.lex_state = 218}, - [3642] = {.lex_state = 218}, - [3643] = {.lex_state = 218}, - [3644] = {.lex_state = 218}, - [3645] = {.lex_state = 218}, - [3646] = {.lex_state = 218}, - [3647] = {.lex_state = 218}, - [3648] = {.lex_state = 218}, - [3649] = {.lex_state = 218}, - [3650] = {.lex_state = 218}, - [3651] = {.lex_state = 218}, - [3652] = {.lex_state = 203}, - [3653] = {.lex_state = 218}, - [3654] = {.lex_state = 218}, - [3655] = {.lex_state = 210}, - [3656] = {.lex_state = 218}, - [3657] = {.lex_state = 218}, - [3658] = {.lex_state = 218}, - [3659] = {.lex_state = 218}, - [3660] = {.lex_state = 218}, - [3661] = {.lex_state = 196}, - [3662] = {.lex_state = 218}, - [3663] = {.lex_state = 210}, - [3664] = {.lex_state = 210}, - [3665] = {.lex_state = 218}, - [3666] = {.lex_state = 196}, - [3667] = {.lex_state = 218}, - [3668] = {.lex_state = 218}, - [3669] = {.lex_state = 218}, - [3670] = {.lex_state = 218}, - [3671] = {.lex_state = 218}, - [3672] = {.lex_state = 218}, - [3673] = {.lex_state = 218}, - [3674] = {.lex_state = 218}, - [3675] = {.lex_state = 218}, - [3676] = {.lex_state = 218}, - [3677] = {.lex_state = 199}, - [3678] = {.lex_state = 210}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 218}, - [3681] = {.lex_state = 218}, - [3682] = {.lex_state = 218}, - [3683] = {.lex_state = 210}, - [3684] = {.lex_state = 199}, - [3685] = {.lex_state = 218}, - [3686] = {.lex_state = 199}, - [3687] = {.lex_state = 218}, - [3688] = {.lex_state = 218}, - [3689] = {.lex_state = 210}, - [3690] = {.lex_state = 199}, - [3691] = {.lex_state = 194}, - [3692] = {.lex_state = 218}, - [3693] = {.lex_state = 218}, - [3694] = {.lex_state = 218}, - [3695] = {.lex_state = 218}, - [3696] = {.lex_state = 218}, - [3697] = {.lex_state = 199}, - [3698] = {.lex_state = 199}, - [3699] = {.lex_state = 196}, - [3700] = {.lex_state = 210}, - [3701] = {.lex_state = 218}, - [3702] = {.lex_state = 218}, - [3703] = {.lex_state = 210}, - [3704] = {.lex_state = 210}, - [3705] = {.lex_state = 194}, - [3706] = {.lex_state = 196}, - [3707] = {.lex_state = 210}, - [3708] = {.lex_state = 218}, - [3709] = {.lex_state = 218}, - [3710] = {.lex_state = 210}, - [3711] = {.lex_state = 210}, - [3712] = {.lex_state = 210}, - [3713] = {.lex_state = 208}, - [3714] = {.lex_state = 210}, - [3715] = {.lex_state = 210}, - [3716] = {.lex_state = 210}, - [3717] = {.lex_state = 208}, - [3718] = {.lex_state = 183}, - [3719] = {.lex_state = 183}, - [3720] = {.lex_state = 203}, - [3721] = {.lex_state = 205}, - [3722] = {.lex_state = 240}, - [3723] = {.lex_state = 183}, - [3724] = {.lex_state = 194}, - [3725] = {.lex_state = 183}, - [3726] = {.lex_state = 208}, - [3727] = {.lex_state = 208}, - [3728] = {.lex_state = 240}, - [3729] = {.lex_state = 240}, - [3730] = {.lex_state = 210}, - [3731] = {.lex_state = 210}, - [3732] = {.lex_state = 210}, - [3733] = {.lex_state = 210}, - [3734] = {.lex_state = 210}, - [3735] = {.lex_state = 210}, - [3736] = {.lex_state = 210}, - [3737] = {.lex_state = 208}, - [3738] = {.lex_state = 208}, - [3739] = {.lex_state = 210}, - [3740] = {.lex_state = 203}, - [3741] = {.lex_state = 208}, - [3742] = {.lex_state = 210}, - [3743] = {.lex_state = 203}, - [3744] = {.lex_state = 203}, - [3745] = {.lex_state = 215}, - [3746] = {.lex_state = 205}, - [3747] = {.lex_state = 208}, - [3748] = {.lex_state = 193}, - [3749] = {.lex_state = 203}, - [3750] = {.lex_state = 208}, - [3751] = {.lex_state = 208}, - [3752] = {.lex_state = 203}, - [3753] = {.lex_state = 208}, - [3754] = {.lex_state = 210}, - [3755] = {.lex_state = 208}, - [3756] = {.lex_state = 210}, - [3757] = {.lex_state = 203}, - [3758] = {.lex_state = 203}, - [3759] = {.lex_state = 210}, - [3760] = {.lex_state = 210}, - [3761] = {.lex_state = 208}, - [3762] = {.lex_state = 210}, - [3763] = {.lex_state = 210}, - [3764] = {.lex_state = 208}, - [3765] = {.lex_state = 203}, - [3766] = {.lex_state = 203}, - [3767] = {.lex_state = 210}, - [3768] = {.lex_state = 210}, - [3769] = {.lex_state = 208}, - [3770] = {.lex_state = 210}, - [3771] = {.lex_state = 210}, - [3772] = {.lex_state = 208}, - [3773] = {.lex_state = 208}, - [3774] = {.lex_state = 210}, - [3775] = {.lex_state = 208}, - [3776] = {.lex_state = 208}, - [3777] = {.lex_state = 203}, - [3778] = {.lex_state = 208}, - [3779] = {.lex_state = 210}, - [3780] = {.lex_state = 203}, - [3781] = {.lex_state = 203}, - [3782] = {.lex_state = 203}, - [3783] = {.lex_state = 203}, - [3784] = {.lex_state = 210}, - [3785] = {.lex_state = 203}, - [3786] = {.lex_state = 215}, - [3787] = {.lex_state = 208}, - [3788] = {.lex_state = 203}, - [3789] = {.lex_state = 196}, - [3790] = {.lex_state = 243}, - [3791] = {.lex_state = 208}, - [3792] = {.lex_state = 203}, - [3793] = {.lex_state = 243}, - [3794] = {.lex_state = 208}, - [3795] = {.lex_state = 210}, - [3796] = {.lex_state = 203}, - [3797] = {.lex_state = 208}, - [3798] = {.lex_state = 210}, - [3799] = {.lex_state = 208}, - [3800] = {.lex_state = 210}, - [3801] = {.lex_state = 208}, - [3802] = {.lex_state = 210}, - [3803] = {.lex_state = 210}, - [3804] = {.lex_state = 208}, - [3805] = {.lex_state = 210}, - [3806] = {.lex_state = 242}, - [3807] = {.lex_state = 208}, - [3808] = {.lex_state = 208}, - [3809] = {.lex_state = 242}, - [3810] = {.lex_state = 208}, - [3811] = {.lex_state = 208}, - [3812] = {.lex_state = 208}, - [3813] = {.lex_state = 203}, - [3814] = {.lex_state = 208}, - [3815] = {.lex_state = 208}, - [3816] = {.lex_state = 208}, - [3817] = {.lex_state = 208}, - [3818] = {.lex_state = 208}, - [3819] = {.lex_state = 208}, - [3820] = {.lex_state = 208}, - [3821] = {.lex_state = 210}, - [3822] = {.lex_state = 208}, - [3823] = {.lex_state = 210}, - [3824] = {.lex_state = 210}, - [3825] = {.lex_state = 208}, - [3826] = {.lex_state = 208}, - [3827] = {.lex_state = 208}, - [3828] = {.lex_state = 208}, - [3829] = {.lex_state = 208}, - [3830] = {.lex_state = 208}, - [3831] = {.lex_state = 208}, - [3832] = {.lex_state = 208}, - [3833] = {.lex_state = 205}, - [3834] = {.lex_state = 208}, - [3835] = {.lex_state = 210}, - [3836] = {.lex_state = 208}, - [3837] = {.lex_state = 240}, - [3838] = {.lex_state = 240}, - [3839] = {.lex_state = 210}, - [3840] = {.lex_state = 210}, - [3841] = {.lex_state = 210}, - [3842] = {.lex_state = 208}, - [3843] = {.lex_state = 208}, - [3844] = {.lex_state = 205}, - [3845] = {.lex_state = 208}, - [3846] = {.lex_state = 208}, - [3847] = {.lex_state = 208}, - [3848] = {.lex_state = 208}, - [3849] = {.lex_state = 208}, - [3850] = {.lex_state = 208}, - [3851] = {.lex_state = 208}, - [3852] = {.lex_state = 208}, - [3853] = {.lex_state = 208}, - [3854] = {.lex_state = 208}, - [3855] = {.lex_state = 208}, - [3856] = {.lex_state = 208}, - [3857] = {.lex_state = 208}, - [3858] = {.lex_state = 208}, - [3859] = {.lex_state = 208}, - [3860] = {.lex_state = 208}, - [3861] = {.lex_state = 205}, - [3862] = {.lex_state = 208}, - [3863] = {.lex_state = 205}, - [3864] = {.lex_state = 208}, - [3865] = {.lex_state = 208}, - [3866] = {.lex_state = 203}, - [3867] = {.lex_state = 208}, - [3868] = {.lex_state = 208}, - [3869] = {.lex_state = 208}, - [3870] = {.lex_state = 208}, - [3871] = {.lex_state = 208}, - [3872] = {.lex_state = 208}, - [3873] = {.lex_state = 210}, - [3874] = {.lex_state = 210}, - [3875] = {.lex_state = 210}, - [3876] = {.lex_state = 208}, - [3877] = {.lex_state = 210}, - [3878] = {.lex_state = 205}, - [3879] = {.lex_state = 210}, - [3880] = {.lex_state = 205}, - [3881] = {.lex_state = 210}, - [3882] = {.lex_state = 210}, - [3883] = {.lex_state = 205}, - [3884] = {.lex_state = 210}, - [3885] = {.lex_state = 210}, - [3886] = {.lex_state = 208}, - [3887] = {.lex_state = 208}, - [3888] = {.lex_state = 210}, - [3889] = {.lex_state = 210}, - [3890] = {.lex_state = 210}, - [3891] = {.lex_state = 208}, - [3892] = {.lex_state = 208}, - [3893] = {.lex_state = 242}, - [3894] = {.lex_state = 210}, - [3895] = {.lex_state = 208}, - [3896] = {.lex_state = 208}, - [3897] = {.lex_state = 193}, - [3898] = {.lex_state = 193}, - [3899] = {.lex_state = 208}, - [3900] = {.lex_state = 205}, - [3901] = {.lex_state = 205}, - [3902] = {.lex_state = 210}, - [3903] = {.lex_state = 210}, - [3904] = {.lex_state = 210}, - [3905] = {.lex_state = 208}, - [3906] = {.lex_state = 210}, - [3907] = {.lex_state = 210}, - [3908] = {.lex_state = 208}, - [3909] = {.lex_state = 210}, - [3910] = {.lex_state = 241}, - [3911] = {.lex_state = 241}, - [3912] = {.lex_state = 210}, - [3913] = {.lex_state = 205}, - [3914] = {.lex_state = 210}, - [3915] = {.lex_state = 208}, - [3916] = {.lex_state = 210}, - [3917] = {.lex_state = 205}, - [3918] = {.lex_state = 210}, - [3919] = {.lex_state = 210}, - [3920] = {.lex_state = 205}, - [3921] = {.lex_state = 208}, - [3922] = {.lex_state = 210}, - [3923] = {.lex_state = 208}, - [3924] = {.lex_state = 210}, - [3925] = {.lex_state = 208}, - [3926] = {.lex_state = 205}, - [3927] = {.lex_state = 205}, - [3928] = {.lex_state = 241}, - [3929] = {.lex_state = 205}, - [3930] = {.lex_state = 208}, - [3931] = {.lex_state = 208}, - [3932] = {.lex_state = 205}, - [3933] = {.lex_state = 240}, - [3934] = {.lex_state = 205}, - [3935] = {.lex_state = 205}, - [3936] = {.lex_state = 205}, - [3937] = {.lex_state = 208}, - [3938] = {.lex_state = 210}, - [3939] = {.lex_state = 208}, - [3940] = {.lex_state = 205}, - [3941] = {.lex_state = 210}, - [3942] = {.lex_state = 208}, - [3943] = {.lex_state = 205}, - [3944] = {.lex_state = 210}, - [3945] = {.lex_state = 210}, - [3946] = {.lex_state = 210}, - [3947] = {.lex_state = 210}, - [3948] = {.lex_state = 205}, - [3949] = {.lex_state = 205}, - [3950] = {.lex_state = 205}, - [3951] = {.lex_state = 210}, - [3952] = {.lex_state = 205}, - [3953] = {.lex_state = 205}, - [3954] = {.lex_state = 210}, - [3955] = {.lex_state = 240}, - [3956] = {.lex_state = 240}, - [3957] = {.lex_state = 210}, - [3958] = {.lex_state = 240}, - [3959] = {.lex_state = 240}, - [3960] = {.lex_state = 210}, - [3961] = {.lex_state = 240}, - [3962] = {.lex_state = 240}, - [3963] = {.lex_state = 240}, - [3964] = {.lex_state = 240}, - [3965] = {.lex_state = 240}, - [3966] = {.lex_state = 240}, - [3967] = {.lex_state = 240}, - [3968] = {.lex_state = 240}, - [3969] = {.lex_state = 193}, - [3970] = {.lex_state = 210}, - [3971] = {.lex_state = 193}, - [3972] = {.lex_state = 210}, - [3973] = {.lex_state = 208}, - [3974] = {.lex_state = 210}, - [3975] = {.lex_state = 210}, - [3976] = {.lex_state = 210}, - [3977] = {.lex_state = 210}, - [3978] = {.lex_state = 205}, - [3979] = {.lex_state = 210}, - [3980] = {.lex_state = 210}, - [3981] = {.lex_state = 242}, - [3982] = {.lex_state = 210}, - [3983] = {.lex_state = 210}, - [3984] = {.lex_state = 205}, - [3985] = {.lex_state = 208}, - [3986] = {.lex_state = 210}, - [3987] = {.lex_state = 210}, - [3988] = {.lex_state = 210}, - [3989] = {.lex_state = 205}, - [3990] = {.lex_state = 205}, - [3991] = {.lex_state = 210}, - [3992] = {.lex_state = 210}, - [3993] = {.lex_state = 210}, - [3994] = {.lex_state = 210}, - [3995] = {.lex_state = 205}, - [3996] = {.lex_state = 205}, - [3997] = {.lex_state = 205}, - [3998] = {.lex_state = 205}, - [3999] = {.lex_state = 208}, - [4000] = {.lex_state = 205}, - [4001] = {.lex_state = 210}, - [4002] = {.lex_state = 203}, - [4003] = {.lex_state = 210}, - [4004] = {.lex_state = 205}, - [4005] = {.lex_state = 210}, - [4006] = {.lex_state = 203}, - [4007] = {.lex_state = 203}, - [4008] = {.lex_state = 203}, - [4009] = {.lex_state = 203}, - [4010] = {.lex_state = 194}, - [4011] = {.lex_state = 194}, - [4012] = {.lex_state = 240}, - [4013] = {.lex_state = 203}, - [4014] = {.lex_state = 203}, - [4015] = {.lex_state = 203}, - [4016] = {.lex_state = 203}, - [4017] = {.lex_state = 203}, - [4018] = {.lex_state = 203}, - [4019] = {.lex_state = 193}, - [4020] = {.lex_state = 203}, - [4021] = {.lex_state = 203}, - [4022] = {.lex_state = 203}, - [4023] = {.lex_state = 203}, - [4024] = {.lex_state = 229}, - [4025] = {.lex_state = 205}, - [4026] = {.lex_state = 205}, - [4027] = {.lex_state = 203}, - [4028] = {.lex_state = 243}, - [4029] = {.lex_state = 193}, - [4030] = {.lex_state = 203}, - [4031] = {.lex_state = 194}, - [4032] = {.lex_state = 193}, - [4033] = {.lex_state = 203}, - [4034] = {.lex_state = 203}, - [4035] = {.lex_state = 203}, - [4036] = {.lex_state = 203}, - [4037] = {.lex_state = 241}, - [4038] = {.lex_state = 193}, - [4039] = {.lex_state = 205}, - [4040] = {.lex_state = 194}, - [4041] = {.lex_state = 203}, - [4042] = {.lex_state = 203}, - [4043] = {.lex_state = 203}, - [4044] = {.lex_state = 203}, - [4045] = {.lex_state = 205}, - [4046] = {.lex_state = 203}, - [4047] = {.lex_state = 203}, - [4048] = {.lex_state = 203}, - [4049] = {.lex_state = 203}, - [4050] = {.lex_state = 240}, - [4051] = {.lex_state = 203}, - [4052] = {.lex_state = 203}, - [4053] = {.lex_state = 203}, - [4054] = {.lex_state = 241}, - [4055] = {.lex_state = 203}, - [4056] = {.lex_state = 203}, - [4057] = {.lex_state = 229}, - [4058] = {.lex_state = 241}, + [2612] = {.lex_state = 270}, + [2613] = {.lex_state = 280}, + [2614] = {.lex_state = 301}, + [2615] = {.lex_state = 286}, + [2616] = {.lex_state = 282}, + [2617] = {.lex_state = 290}, + [2618] = {.lex_state = 286}, + [2619] = {.lex_state = 290}, + [2620] = {.lex_state = 286}, + [2621] = {.lex_state = 286}, + [2622] = {.lex_state = 286}, + [2623] = {.lex_state = 286}, + [2624] = {.lex_state = 290}, + [2625] = {.lex_state = 290}, + [2626] = {.lex_state = 301}, + [2627] = {.lex_state = 281}, + [2628] = {.lex_state = 286}, + [2629] = {.lex_state = 286}, + [2630] = {.lex_state = 286}, + [2631] = {.lex_state = 286}, + [2632] = {.lex_state = 286}, + [2633] = {.lex_state = 286}, + [2634] = {.lex_state = 282}, + [2635] = {.lex_state = 333}, + [2636] = {.lex_state = 286}, + [2637] = {.lex_state = 286}, + [2638] = {.lex_state = 286}, + [2639] = {.lex_state = 314}, + [2640] = {.lex_state = 286}, + [2641] = {.lex_state = 270}, + [2642] = {.lex_state = 301}, + [2643] = {.lex_state = 270}, + [2644] = {.lex_state = 270}, + [2645] = {.lex_state = 286}, + [2646] = {.lex_state = 286}, + [2647] = {.lex_state = 286}, + [2648] = {.lex_state = 286}, + [2649] = {.lex_state = 286}, + [2650] = {.lex_state = 286}, + [2651] = {.lex_state = 281}, + [2652] = {.lex_state = 286}, + [2653] = {.lex_state = 301}, + [2654] = {.lex_state = 281}, + [2655] = {.lex_state = 289}, + [2656] = {.lex_state = 286}, + [2657] = {.lex_state = 286}, + [2658] = {.lex_state = 301}, + [2659] = {.lex_state = 270}, + [2660] = {.lex_state = 314}, + [2661] = {.lex_state = 314}, + [2662] = {.lex_state = 314}, + [2663] = {.lex_state = 270}, + [2664] = {.lex_state = 286}, + [2665] = {.lex_state = 286}, + [2666] = {.lex_state = 286}, + [2667] = {.lex_state = 270}, + [2668] = {.lex_state = 270}, + [2669] = {.lex_state = 289}, + [2670] = {.lex_state = 314}, + [2671] = {.lex_state = 333}, + [2672] = {.lex_state = 314}, + [2673] = {.lex_state = 333}, + [2674] = {.lex_state = 301}, + [2675] = {.lex_state = 301}, + [2676] = {.lex_state = 286}, + [2677] = {.lex_state = 290}, + [2678] = {.lex_state = 282}, + [2679] = {.lex_state = 270}, + [2680] = {.lex_state = 301}, + [2681] = {.lex_state = 314}, + [2682] = {.lex_state = 270}, + [2683] = {.lex_state = 286}, + [2684] = {.lex_state = 270}, + [2685] = {.lex_state = 270}, + [2686] = {.lex_state = 286}, + [2687] = {.lex_state = 286}, + [2688] = {.lex_state = 314}, + [2689] = {.lex_state = 314}, + [2690] = {.lex_state = 314}, + [2691] = {.lex_state = 286}, + [2692] = {.lex_state = 286}, + [2693] = {.lex_state = 286}, + [2694] = {.lex_state = 270}, + [2695] = {.lex_state = 286}, + [2696] = {.lex_state = 286}, + [2697] = {.lex_state = 270}, + [2698] = {.lex_state = 286}, + [2699] = {.lex_state = 301}, + [2700] = {.lex_state = 286}, + [2701] = {.lex_state = 245}, + [2702] = {.lex_state = 286}, + [2703] = {.lex_state = 291}, + [2704] = {.lex_state = 279}, + [2705] = {.lex_state = 286}, + [2706] = {.lex_state = 286}, + [2707] = {.lex_state = 301}, + [2708] = {.lex_state = 301}, + [2709] = {.lex_state = 286}, + [2710] = {.lex_state = 286}, + [2711] = {.lex_state = 286}, + [2712] = {.lex_state = 286}, + [2713] = {.lex_state = 286}, + [2714] = {.lex_state = 286}, + [2715] = {.lex_state = 286}, + [2716] = {.lex_state = 286}, + [2717] = {.lex_state = 301}, + [2718] = {.lex_state = 286}, + [2719] = {.lex_state = 286}, + [2720] = {.lex_state = 286}, + [2721] = {.lex_state = 333}, + [2722] = {.lex_state = 286}, + [2723] = {.lex_state = 290}, + [2724] = {.lex_state = 286}, + [2725] = {.lex_state = 286}, + [2726] = {.lex_state = 286}, + [2727] = {.lex_state = 286}, + [2728] = {.lex_state = 290}, + [2729] = {.lex_state = 286}, + [2730] = {.lex_state = 286}, + [2731] = {.lex_state = 286}, + [2732] = {.lex_state = 286}, + [2733] = {.lex_state = 301}, + [2734] = {.lex_state = 286}, + [2735] = {.lex_state = 286}, + [2736] = {.lex_state = 286}, + [2737] = {.lex_state = 286}, + [2738] = {.lex_state = 286}, + [2739] = {.lex_state = 286}, + [2740] = {.lex_state = 286}, + [2741] = {.lex_state = 286}, + [2742] = {.lex_state = 245}, + [2743] = {.lex_state = 301}, + [2744] = {.lex_state = 286}, + [2745] = {.lex_state = 301}, + [2746] = {.lex_state = 286}, + [2747] = {.lex_state = 286}, + [2748] = {.lex_state = 286}, + [2749] = {.lex_state = 290}, + [2750] = {.lex_state = 286}, + [2751] = {.lex_state = 286}, + [2752] = {.lex_state = 286}, + [2753] = {.lex_state = 286}, + [2754] = {.lex_state = 267}, + [2755] = {.lex_state = 286}, + [2756] = {.lex_state = 286}, + [2757] = {.lex_state = 286}, + [2758] = {.lex_state = 286}, + [2759] = {.lex_state = 286}, + [2760] = {.lex_state = 286}, + [2761] = {.lex_state = 286}, + [2762] = {.lex_state = 290}, + [2763] = {.lex_state = 286}, + [2764] = {.lex_state = 286}, + [2765] = {.lex_state = 286}, + [2766] = {.lex_state = 290}, + [2767] = {.lex_state = 286}, + [2768] = {.lex_state = 290}, + [2769] = {.lex_state = 286}, + [2770] = {.lex_state = 333}, + [2771] = {.lex_state = 286}, + [2772] = {.lex_state = 333}, + [2773] = {.lex_state = 286}, + [2774] = {.lex_state = 286}, + [2775] = {.lex_state = 286}, + [2776] = {.lex_state = 290}, + [2777] = {.lex_state = 286}, + [2778] = {.lex_state = 286}, + [2779] = {.lex_state = 286}, + [2780] = {.lex_state = 245}, + [2781] = {.lex_state = 286}, + [2782] = {.lex_state = 290}, + [2783] = {.lex_state = 286}, + [2784] = {.lex_state = 286}, + [2785] = {.lex_state = 286}, + [2786] = {.lex_state = 286}, + [2787] = {.lex_state = 286}, + [2788] = {.lex_state = 245}, + [2789] = {.lex_state = 286}, + [2790] = {.lex_state = 286}, + [2791] = {.lex_state = 286}, + [2792] = {.lex_state = 281}, + [2793] = {.lex_state = 286}, + [2794] = {.lex_state = 301}, + [2795] = {.lex_state = 290}, + [2796] = {.lex_state = 289}, + [2797] = {.lex_state = 282}, + [2798] = {.lex_state = 289}, + [2799] = {.lex_state = 267}, + [2800] = {.lex_state = 301}, + [2801] = {.lex_state = 301}, + [2802] = {.lex_state = 290}, + [2803] = {.lex_state = 289}, + [2804] = {.lex_state = 282}, + [2805] = {.lex_state = 266}, + [2806] = {.lex_state = 301}, + [2807] = {.lex_state = 290}, + [2808] = {.lex_state = 270}, + [2809] = {.lex_state = 270}, + [2810] = {.lex_state = 270}, + [2811] = {.lex_state = 290}, + [2812] = {.lex_state = 266}, + [2813] = {.lex_state = 301}, + [2814] = {.lex_state = 290}, + [2815] = {.lex_state = 290}, + [2816] = {.lex_state = 289}, + [2817] = {.lex_state = 289}, + [2818] = {.lex_state = 270}, + [2819] = {.lex_state = 290}, + [2820] = {.lex_state = 334}, + [2821] = {.lex_state = 334}, + [2822] = {.lex_state = 334}, + [2823] = {.lex_state = 301}, + [2824] = {.lex_state = 279}, + [2825] = {.lex_state = 290}, + [2826] = {.lex_state = 290}, + [2827] = {.lex_state = 270}, + [2828] = {.lex_state = 289}, + [2829] = {.lex_state = 290}, + [2830] = {.lex_state = 290}, + [2831] = {.lex_state = 266}, + [2832] = {.lex_state = 290}, + [2833] = {.lex_state = 270}, + [2834] = {.lex_state = 290}, + [2835] = {.lex_state = 290}, + [2836] = {.lex_state = 266}, + [2837] = {.lex_state = 290}, + [2838] = {.lex_state = 282}, + [2839] = {.lex_state = 267}, + [2840] = {.lex_state = 290}, + [2841] = {.lex_state = 334}, + [2842] = {.lex_state = 290}, + [2843] = {.lex_state = 290}, + [2844] = {.lex_state = 267}, + [2845] = {.lex_state = 286}, + [2846] = {.lex_state = 290}, + [2847] = {.lex_state = 278}, + [2848] = {.lex_state = 314}, + [2849] = {.lex_state = 267}, + [2850] = {.lex_state = 290}, + [2851] = {.lex_state = 290}, + [2852] = {.lex_state = 290}, + [2853] = {.lex_state = 290}, + [2854] = {.lex_state = 278}, + [2855] = {.lex_state = 314}, + [2856] = {.lex_state = 270}, + [2857] = {.lex_state = 271}, + [2858] = {.lex_state = 267}, + [2859] = {.lex_state = 290}, + [2860] = {.lex_state = 290}, + [2861] = {.lex_state = 290}, + [2862] = {.lex_state = 290}, + [2863] = {.lex_state = 270}, + [2864] = {.lex_state = 272}, + [2865] = {.lex_state = 270}, + [2866] = {.lex_state = 281}, + [2867] = {.lex_state = 272}, + [2868] = {.lex_state = 290}, + [2869] = {.lex_state = 290}, + [2870] = {.lex_state = 267}, + [2871] = {.lex_state = 267}, + [2872] = {.lex_state = 272}, + [2873] = {.lex_state = 290}, + [2874] = {.lex_state = 314}, + [2875] = {.lex_state = 290}, + [2876] = {.lex_state = 290}, + [2877] = {.lex_state = 290}, + [2878] = {.lex_state = 290}, + [2879] = {.lex_state = 301}, + [2880] = {.lex_state = 301}, + [2881] = {.lex_state = 271}, + [2882] = {.lex_state = 267}, + [2883] = {.lex_state = 267}, + [2884] = {.lex_state = 301}, + [2885] = {.lex_state = 314}, + [2886] = {.lex_state = 316}, + [2887] = {.lex_state = 290}, + [2888] = {.lex_state = 298}, + [2889] = {.lex_state = 286}, + [2890] = {.lex_state = 286}, + [2891] = {.lex_state = 286}, + [2892] = {.lex_state = 243}, + [2893] = {.lex_state = 286}, + [2894] = {.lex_state = 290}, + [2895] = {.lex_state = 286}, + [2896] = {.lex_state = 290}, + [2897] = {.lex_state = 286}, + [2898] = {.lex_state = 301}, + [2899] = {.lex_state = 270}, + [2900] = {.lex_state = 290}, + [2901] = {.lex_state = 290}, + [2902] = {.lex_state = 286}, + [2903] = {.lex_state = 286}, + [2904] = {.lex_state = 281}, + [2905] = {.lex_state = 281}, + [2906] = {.lex_state = 281}, + [2907] = {.lex_state = 298}, + [2908] = {.lex_state = 281}, + [2909] = {.lex_state = 281}, + [2910] = {.lex_state = 286}, + [2911] = {.lex_state = 272}, + [2912] = {.lex_state = 298}, + [2913] = {.lex_state = 286}, + [2914] = {.lex_state = 290}, + [2915] = {.lex_state = 278}, + [2916] = {.lex_state = 267}, + [2917] = {.lex_state = 286}, + [2918] = {.lex_state = 290}, + [2919] = {.lex_state = 267}, + [2920] = {.lex_state = 267}, + [2921] = {.lex_state = 298}, + [2922] = {.lex_state = 290}, + [2923] = {.lex_state = 267}, + [2924] = {.lex_state = 267}, + [2925] = {.lex_state = 290}, + [2926] = {.lex_state = 290}, + [2927] = {.lex_state = 298}, + [2928] = {.lex_state = 298}, + [2929] = {.lex_state = 286}, + [2930] = {.lex_state = 290}, + [2931] = {.lex_state = 290}, + [2932] = {.lex_state = 272}, + [2933] = {.lex_state = 290}, + [2934] = {.lex_state = 271}, + [2935] = {.lex_state = 290}, + [2936] = {.lex_state = 290}, + [2937] = {.lex_state = 281}, + [2938] = {.lex_state = 281}, + [2939] = {.lex_state = 290}, + [2940] = {.lex_state = 281}, + [2941] = {.lex_state = 281}, + [2942] = {.lex_state = 290}, + [2943] = {.lex_state = 271}, + [2944] = {.lex_state = 281}, + [2945] = {.lex_state = 290}, + [2946] = {.lex_state = 290}, + [2947] = {.lex_state = 290}, + [2948] = {.lex_state = 290}, + [2949] = {.lex_state = 314}, + [2950] = {.lex_state = 290}, + [2951] = {.lex_state = 286}, + [2952] = {.lex_state = 281}, + [2953] = {.lex_state = 290}, + [2954] = {.lex_state = 290}, + [2955] = {.lex_state = 290}, + [2956] = {.lex_state = 290}, + [2957] = {.lex_state = 290}, + [2958] = {.lex_state = 290}, + [2959] = {.lex_state = 272}, + [2960] = {.lex_state = 286}, + [2961] = {.lex_state = 272}, + [2962] = {.lex_state = 316}, + [2963] = {.lex_state = 290}, + [2964] = {.lex_state = 272}, + [2965] = {.lex_state = 271}, + [2966] = {.lex_state = 290}, + [2967] = {.lex_state = 290}, + [2968] = {.lex_state = 272}, + [2969] = {.lex_state = 290}, + [2970] = {.lex_state = 290}, + [2971] = {.lex_state = 290}, + [2972] = {.lex_state = 278}, + [2973] = {.lex_state = 301}, + [2974] = {.lex_state = 301}, + [2975] = {.lex_state = 272}, + [2976] = {.lex_state = 286}, + [2977] = {.lex_state = 271}, + [2978] = {.lex_state = 270}, + [2979] = {.lex_state = 290}, + [2980] = {.lex_state = 286}, + [2981] = {.lex_state = 301}, + [2982] = {.lex_state = 270}, + [2983] = {.lex_state = 270}, + [2984] = {.lex_state = 279}, + [2985] = {.lex_state = 290}, + [2986] = {.lex_state = 270}, + [2987] = {.lex_state = 270}, + [2988] = {.lex_state = 290}, + [2989] = {.lex_state = 301}, + [2990] = {.lex_state = 301}, + [2991] = {.lex_state = 266}, + [2992] = {.lex_state = 301}, + [2993] = {.lex_state = 282}, + [2994] = {.lex_state = 282}, + [2995] = {.lex_state = 270}, + [2996] = {.lex_state = 270}, + [2997] = {.lex_state = 282}, + [2998] = {.lex_state = 282}, + [2999] = {.lex_state = 270}, + [3000] = {.lex_state = 279}, + [3001] = {.lex_state = 282}, + [3002] = {.lex_state = 282}, + [3003] = {.lex_state = 282}, + [3004] = {.lex_state = 270}, + [3005] = {.lex_state = 270}, + [3006] = {.lex_state = 270}, + [3007] = {.lex_state = 301}, + [3008] = {.lex_state = 333}, + [3009] = {.lex_state = 282}, + [3010] = {.lex_state = 301}, + [3011] = {.lex_state = 270}, + [3012] = {.lex_state = 282}, + [3013] = {.lex_state = 333}, + [3014] = {.lex_state = 282}, + [3015] = {.lex_state = 301}, + [3016] = {.lex_state = 301}, + [3017] = {.lex_state = 301}, + [3018] = {.lex_state = 301}, + [3019] = {.lex_state = 301}, + [3020] = {.lex_state = 282}, + [3021] = {.lex_state = 282}, + [3022] = {.lex_state = 301}, + [3023] = {.lex_state = 270}, + [3024] = {.lex_state = 301}, + [3025] = {.lex_state = 334}, + [3026] = {.lex_state = 270}, + [3027] = {.lex_state = 270}, + [3028] = {.lex_state = 270}, + [3029] = {.lex_state = 270}, + [3030] = {.lex_state = 282}, + [3031] = {.lex_state = 282}, + [3032] = {.lex_state = 270}, + [3033] = {.lex_state = 270}, + [3034] = {.lex_state = 301}, + [3035] = {.lex_state = 282}, + [3036] = {.lex_state = 282}, + [3037] = {.lex_state = 301}, + [3038] = {.lex_state = 266}, + [3039] = {.lex_state = 301}, + [3040] = {.lex_state = 301}, + [3041] = {.lex_state = 301}, + [3042] = {.lex_state = 270}, + [3043] = {.lex_state = 270}, + [3044] = {.lex_state = 270}, + [3045] = {.lex_state = 270}, + [3046] = {.lex_state = 282}, + [3047] = {.lex_state = 301}, + [3048] = {.lex_state = 270}, + [3049] = {.lex_state = 270}, + [3050] = {.lex_state = 270}, + [3051] = {.lex_state = 270}, + [3052] = {.lex_state = 270}, + [3053] = {.lex_state = 270}, + [3054] = {.lex_state = 282}, + [3055] = {.lex_state = 301}, + [3056] = {.lex_state = 270}, + [3057] = {.lex_state = 301}, + [3058] = {.lex_state = 282}, + [3059] = {.lex_state = 271}, + [3060] = {.lex_state = 270}, + [3061] = {.lex_state = 282}, + [3062] = {.lex_state = 301}, + [3063] = {.lex_state = 270}, + [3064] = {.lex_state = 270}, + [3065] = {.lex_state = 270}, + [3066] = {.lex_state = 270}, + [3067] = {.lex_state = 282}, + [3068] = {.lex_state = 271}, + [3069] = {.lex_state = 282}, + [3070] = {.lex_state = 270}, + [3071] = {.lex_state = 270}, + [3072] = {.lex_state = 270}, + [3073] = {.lex_state = 270}, + [3074] = {.lex_state = 301}, + [3075] = {.lex_state = 324}, + [3076] = {.lex_state = 282}, + [3077] = {.lex_state = 282}, + [3078] = {.lex_state = 282}, + [3079] = {.lex_state = 282}, + [3080] = {.lex_state = 282}, + [3081] = {.lex_state = 282}, + [3082] = {.lex_state = 282}, + [3083] = {.lex_state = 301}, + [3084] = {.lex_state = 301}, + [3085] = {.lex_state = 334}, + [3086] = {.lex_state = 282}, + [3087] = {.lex_state = 282}, + [3088] = {.lex_state = 282}, + [3089] = {.lex_state = 301}, + [3090] = {.lex_state = 334}, + [3091] = {.lex_state = 301}, + [3092] = {.lex_state = 290}, + [3093] = {.lex_state = 271}, + [3094] = {.lex_state = 290}, + [3095] = {.lex_state = 282}, + [3096] = {.lex_state = 282}, + [3097] = {.lex_state = 271}, + [3098] = {.lex_state = 271}, + [3099] = {.lex_state = 334}, + [3100] = {.lex_state = 282}, + [3101] = {.lex_state = 270}, + [3102] = {.lex_state = 282}, + [3103] = {.lex_state = 301}, + [3104] = {.lex_state = 301}, + [3105] = {.lex_state = 267}, + [3106] = {.lex_state = 317}, + [3107] = {.lex_state = 301}, + [3108] = {.lex_state = 301}, + [3109] = {.lex_state = 271}, + [3110] = {.lex_state = 301}, + [3111] = {.lex_state = 301}, + [3112] = {.lex_state = 282}, + [3113] = {.lex_state = 301}, + [3114] = {.lex_state = 282}, + [3115] = {.lex_state = 271}, + [3116] = {.lex_state = 271}, + [3117] = {.lex_state = 271}, + [3118] = {.lex_state = 282}, + [3119] = {.lex_state = 290}, + [3120] = {.lex_state = 290}, + [3121] = {.lex_state = 271}, + [3122] = {.lex_state = 267}, + [3123] = {.lex_state = 282}, + [3124] = {.lex_state = 290}, + [3125] = {.lex_state = 301}, + [3126] = {.lex_state = 271}, + [3127] = {.lex_state = 301}, + [3128] = {.lex_state = 282}, + [3129] = {.lex_state = 267}, + [3130] = {.lex_state = 334}, + [3131] = {.lex_state = 266}, + [3132] = {.lex_state = 290}, + [3133] = {.lex_state = 334}, + [3134] = {.lex_state = 266}, + [3135] = {.lex_state = 282}, + [3136] = {.lex_state = 301}, + [3137] = {.lex_state = 266}, + [3138] = {.lex_state = 301}, + [3139] = {.lex_state = 301}, + [3140] = {.lex_state = 301}, + [3141] = {.lex_state = 267}, + [3142] = {.lex_state = 270}, + [3143] = {.lex_state = 334}, + [3144] = {.lex_state = 334}, + [3145] = {.lex_state = 334}, + [3146] = {.lex_state = 334}, + [3147] = {.lex_state = 334}, + [3148] = {.lex_state = 334}, + [3149] = {.lex_state = 266}, + [3150] = {.lex_state = 270}, + [3151] = {.lex_state = 334}, + [3152] = {.lex_state = 278}, + [3153] = {.lex_state = 266}, + [3154] = {.lex_state = 334}, + [3155] = {.lex_state = 334}, + [3156] = {.lex_state = 334}, + [3157] = {.lex_state = 334}, + [3158] = {.lex_state = 334}, + [3159] = {.lex_state = 334}, + [3160] = {.lex_state = 334}, + [3161] = {.lex_state = 334}, + [3162] = {.lex_state = 334}, + [3163] = {.lex_state = 334}, + [3164] = {.lex_state = 266}, + [3165] = {.lex_state = 334}, + [3166] = {.lex_state = 245}, + [3167] = {.lex_state = 334}, + [3168] = {.lex_state = 266}, + [3169] = {.lex_state = 286}, + [3170] = {.lex_state = 279}, + [3171] = {.lex_state = 289}, + [3172] = {.lex_state = 278}, + [3173] = {.lex_state = 266}, + [3174] = {.lex_state = 266}, + [3175] = {.lex_state = 266}, + [3176] = {.lex_state = 278}, + [3177] = {.lex_state = 266}, + [3178] = {.lex_state = 266}, + [3179] = {.lex_state = 266}, + [3180] = {.lex_state = 266}, + [3181] = {.lex_state = 266}, + [3182] = {.lex_state = 334}, + [3183] = {.lex_state = 334}, + [3184] = {.lex_state = 266}, + [3185] = {.lex_state = 266}, + [3186] = {.lex_state = 266}, + [3187] = {.lex_state = 266}, + [3188] = {.lex_state = 266}, + [3189] = {.lex_state = 266}, + [3190] = {.lex_state = 266}, + [3191] = {.lex_state = 266}, + [3192] = {.lex_state = 266}, + [3193] = {.lex_state = 266}, + [3194] = {.lex_state = 334}, + [3195] = {.lex_state = 266}, + [3196] = {.lex_state = 334}, + [3197] = {.lex_state = 334}, + [3198] = {.lex_state = 334}, + [3199] = {.lex_state = 334}, + [3200] = {.lex_state = 266}, + [3201] = {.lex_state = 266}, + [3202] = {.lex_state = 266}, + [3203] = {.lex_state = 286}, + [3204] = {.lex_state = 245}, + [3205] = {.lex_state = 334}, + [3206] = {.lex_state = 334}, + [3207] = {.lex_state = 266}, + [3208] = {.lex_state = 266}, + [3209] = {.lex_state = 266}, + [3210] = {.lex_state = 334}, + [3211] = {.lex_state = 334}, + [3212] = {.lex_state = 334}, + [3213] = {.lex_state = 334}, + [3214] = {.lex_state = 266}, + [3215] = {.lex_state = 334}, + [3216] = {.lex_state = 266}, + [3217] = {.lex_state = 266}, + [3218] = {.lex_state = 266}, + [3219] = {.lex_state = 334}, + [3220] = {.lex_state = 334}, + [3221] = {.lex_state = 266}, + [3222] = {.lex_state = 334}, + [3223] = {.lex_state = 272}, + [3224] = {.lex_state = 266}, + [3225] = {.lex_state = 266}, + [3226] = {.lex_state = 266}, + [3227] = {.lex_state = 266}, + [3228] = {.lex_state = 266}, + [3229] = {.lex_state = 334}, + [3230] = {.lex_state = 334}, + [3231] = {.lex_state = 266}, + [3232] = {.lex_state = 266}, + [3233] = {.lex_state = 289}, + [3234] = {.lex_state = 266}, + [3235] = {.lex_state = 334}, + [3236] = {.lex_state = 334}, + [3237] = {.lex_state = 266}, + [3238] = {.lex_state = 334}, + [3239] = {.lex_state = 278}, + [3240] = {.lex_state = 266}, + [3241] = {.lex_state = 266}, + [3242] = {.lex_state = 266}, + [3243] = {.lex_state = 334}, + [3244] = {.lex_state = 266}, + [3245] = {.lex_state = 334}, + [3246] = {.lex_state = 334}, + [3247] = {.lex_state = 334}, + [3248] = {.lex_state = 272}, + [3249] = {.lex_state = 266}, + [3250] = {.lex_state = 289}, + [3251] = {.lex_state = 301}, + [3252] = {.lex_state = 286}, + [3253] = {.lex_state = 334}, + [3254] = {.lex_state = 334}, + [3255] = {.lex_state = 334}, + [3256] = {.lex_state = 334}, + [3257] = {.lex_state = 334}, + [3258] = {.lex_state = 334}, + [3259] = {.lex_state = 289}, + [3260] = {.lex_state = 243}, + [3261] = {.lex_state = 334}, + [3262] = {.lex_state = 290}, + [3263] = {.lex_state = 289}, + [3264] = {.lex_state = 290}, + [3265] = {.lex_state = 266}, + [3266] = {.lex_state = 334}, + [3267] = {.lex_state = 334}, + [3268] = {.lex_state = 266}, + [3269] = {.lex_state = 266}, + [3270] = {.lex_state = 282}, + [3271] = {.lex_state = 334}, + [3272] = {.lex_state = 334}, + [3273] = {.lex_state = 266}, + [3274] = {.lex_state = 334}, + [3275] = {.lex_state = 270}, + [3276] = {.lex_state = 266}, + [3277] = {.lex_state = 266}, + [3278] = {.lex_state = 266}, + [3279] = {.lex_state = 334}, + [3280] = {.lex_state = 266}, + [3281] = {.lex_state = 334}, + [3282] = {.lex_state = 266}, + [3283] = {.lex_state = 266}, + [3284] = {.lex_state = 334}, + [3285] = {.lex_state = 334}, + [3286] = {.lex_state = 266}, + [3287] = {.lex_state = 278}, + [3288] = {.lex_state = 266}, + [3289] = {.lex_state = 266}, + [3290] = {.lex_state = 266}, + [3291] = {.lex_state = 266}, + [3292] = {.lex_state = 266}, + [3293] = {.lex_state = 282}, + [3294] = {.lex_state = 334}, + [3295] = {.lex_state = 266}, + [3296] = {.lex_state = 334}, + [3297] = {.lex_state = 266}, + [3298] = {.lex_state = 334}, + [3299] = {.lex_state = 266}, + [3300] = {.lex_state = 266}, + [3301] = {.lex_state = 282}, + [3302] = {.lex_state = 266}, + [3303] = {.lex_state = 266}, + [3304] = {.lex_state = 266}, + [3305] = {.lex_state = 266}, + [3306] = {.lex_state = 266}, + [3307] = {.lex_state = 290}, + [3308] = {.lex_state = 334}, + [3309] = {.lex_state = 334}, + [3310] = {.lex_state = 266}, + [3311] = {.lex_state = 266}, + [3312] = {.lex_state = 266}, + [3313] = {.lex_state = 266}, + [3314] = {.lex_state = 334}, + [3315] = {.lex_state = 278}, + [3316] = {.lex_state = 278}, + [3317] = {.lex_state = 334}, + [3318] = {.lex_state = 278}, + [3319] = {.lex_state = 266}, + [3320] = {.lex_state = 278}, + [3321] = {.lex_state = 266}, + [3322] = {.lex_state = 278}, + [3323] = {.lex_state = 266}, + [3324] = {.lex_state = 266}, + [3325] = {.lex_state = 266}, + [3326] = {.lex_state = 266}, + [3327] = {.lex_state = 266}, + [3328] = {.lex_state = 289}, + [3329] = {.lex_state = 334}, + [3330] = {.lex_state = 334}, + [3331] = {.lex_state = 334}, + [3332] = {.lex_state = 266}, + [3333] = {.lex_state = 281}, + [3334] = {.lex_state = 266}, + [3335] = {.lex_state = 334}, + [3336] = {.lex_state = 334}, + [3337] = {.lex_state = 334}, + [3338] = {.lex_state = 266}, + [3339] = {.lex_state = 334}, + [3340] = {.lex_state = 334}, + [3341] = {.lex_state = 334}, + [3342] = {.lex_state = 278}, + [3343] = {.lex_state = 334}, + [3344] = {.lex_state = 334}, + [3345] = {.lex_state = 334}, + [3346] = {.lex_state = 266}, + [3347] = {.lex_state = 266}, + [3348] = {.lex_state = 334}, + [3349] = {.lex_state = 266}, + [3350] = {.lex_state = 266}, + [3351] = {.lex_state = 266}, + [3352] = {.lex_state = 334}, + [3353] = {.lex_state = 266}, + [3354] = {.lex_state = 334}, + [3355] = {.lex_state = 334}, + [3356] = {.lex_state = 334}, + [3357] = {.lex_state = 266}, + [3358] = {.lex_state = 334}, + [3359] = {.lex_state = 334}, + [3360] = {.lex_state = 266}, + [3361] = {.lex_state = 278}, + [3362] = {.lex_state = 278}, + [3363] = {.lex_state = 334}, + [3364] = {.lex_state = 334}, + [3365] = {.lex_state = 266}, + [3366] = {.lex_state = 334}, + [3367] = {.lex_state = 334}, + [3368] = {.lex_state = 334}, + [3369] = {.lex_state = 334}, + [3370] = {.lex_state = 334}, + [3371] = {.lex_state = 334}, + [3372] = {.lex_state = 334}, + [3373] = {.lex_state = 334}, + [3374] = {.lex_state = 334}, + [3375] = {.lex_state = 334}, + [3376] = {.lex_state = 334}, + [3377] = {.lex_state = 266}, + [3378] = {.lex_state = 321}, + [3379] = {.lex_state = 245}, + [3380] = {.lex_state = 290}, + [3381] = {.lex_state = 290}, + [3382] = {.lex_state = 290}, + [3383] = {.lex_state = 272}, + [3384] = {.lex_state = 281}, + [3385] = {.lex_state = 280}, + [3386] = {.lex_state = 290}, + [3387] = {.lex_state = 290}, + [3388] = {.lex_state = 290}, + [3389] = {.lex_state = 281}, + [3390] = {.lex_state = 281}, + [3391] = {.lex_state = 290}, + [3392] = {.lex_state = 249}, + [3393] = {.lex_state = 281}, + [3394] = {.lex_state = 249}, + [3395] = {.lex_state = 272}, + [3396] = {.lex_state = 290}, + [3397] = {.lex_state = 281}, + [3398] = {.lex_state = 281}, + [3399] = {.lex_state = 281}, + [3400] = {.lex_state = 245}, + [3401] = {.lex_state = 281}, + [3402] = {.lex_state = 281}, + [3403] = {.lex_state = 325}, + [3404] = {.lex_state = 245}, + [3405] = {.lex_state = 272}, + [3406] = {.lex_state = 254}, + [3407] = {.lex_state = 281}, + [3408] = {.lex_state = 267}, + [3409] = {.lex_state = 290}, + [3410] = {.lex_state = 290}, + [3411] = {.lex_state = 278}, + [3412] = {.lex_state = 278}, + [3413] = {.lex_state = 290}, + [3414] = {.lex_state = 254}, + [3415] = {.lex_state = 290}, + [3416] = {.lex_state = 290}, + [3417] = {.lex_state = 290}, + [3418] = {.lex_state = 290}, + [3419] = {.lex_state = 281}, + [3420] = {.lex_state = 281}, + [3421] = {.lex_state = 243}, + [3422] = {.lex_state = 278}, + [3423] = {.lex_state = 278}, + [3424] = {.lex_state = 278}, + [3425] = {.lex_state = 278}, + [3426] = {.lex_state = 281}, + [3427] = {.lex_state = 280}, + [3428] = {.lex_state = 278}, + [3429] = {.lex_state = 278}, + [3430] = {.lex_state = 278}, + [3431] = {.lex_state = 281}, + [3432] = {.lex_state = 281}, + [3433] = {.lex_state = 281}, + [3434] = {.lex_state = 280}, + [3435] = {.lex_state = 267}, + [3436] = {.lex_state = 281}, + [3437] = {.lex_state = 281}, + [3438] = {.lex_state = 325}, + [3439] = {.lex_state = 278}, + [3440] = {.lex_state = 281}, + [3441] = {.lex_state = 290}, + [3442] = {.lex_state = 290}, + [3443] = {.lex_state = 290}, + [3444] = {.lex_state = 290}, + [3445] = {.lex_state = 334}, + [3446] = {.lex_state = 243}, + [3447] = {.lex_state = 290}, + [3448] = {.lex_state = 290}, + [3449] = {.lex_state = 278}, + [3450] = {.lex_state = 290}, + [3451] = {.lex_state = 290}, + [3452] = {.lex_state = 290}, + [3453] = {.lex_state = 290}, + [3454] = {.lex_state = 278}, + [3455] = {.lex_state = 243}, + [3456] = {.lex_state = 278}, + [3457] = {.lex_state = 280}, + [3458] = {.lex_state = 281}, + [3459] = {.lex_state = 281}, + [3460] = {.lex_state = 290}, + [3461] = {.lex_state = 290}, + [3462] = {.lex_state = 334}, + [3463] = {.lex_state = 254}, + [3464] = {.lex_state = 281}, + [3465] = {.lex_state = 281}, + [3466] = {.lex_state = 281}, + [3467] = {.lex_state = 290}, + [3468] = {.lex_state = 281}, + [3469] = {.lex_state = 281}, + [3470] = {.lex_state = 281}, + [3471] = {.lex_state = 290}, + [3472] = {.lex_state = 272}, + [3473] = {.lex_state = 290}, + [3474] = {.lex_state = 290}, + [3475] = {.lex_state = 290}, + [3476] = {.lex_state = 290}, + [3477] = {.lex_state = 290}, + [3478] = {.lex_state = 290}, + [3479] = {.lex_state = 290}, + [3480] = {.lex_state = 290}, + [3481] = {.lex_state = 290}, + [3482] = {.lex_state = 334}, + [3483] = {.lex_state = 281}, + [3484] = {.lex_state = 281}, + [3485] = {.lex_state = 281}, + [3486] = {.lex_state = 281}, + [3487] = {.lex_state = 321}, + [3488] = {.lex_state = 281}, + [3489] = {.lex_state = 272}, + [3490] = {.lex_state = 267}, + [3491] = {.lex_state = 267}, + [3492] = {.lex_state = 272}, + [3493] = {.lex_state = 272}, + [3494] = {.lex_state = 272}, + [3495] = {.lex_state = 267}, + [3496] = {.lex_state = 272}, + [3497] = {.lex_state = 272}, + [3498] = {.lex_state = 272}, + [3499] = {.lex_state = 272}, + [3500] = {.lex_state = 272}, + [3501] = {.lex_state = 272}, + [3502] = {.lex_state = 272}, + [3503] = {.lex_state = 243}, + [3504] = {.lex_state = 286}, + [3505] = {.lex_state = 243}, + [3506] = {.lex_state = 269}, + [3507] = {.lex_state = 272}, + [3508] = {.lex_state = 272}, + [3509] = {.lex_state = 269}, + [3510] = {.lex_state = 272}, + [3511] = {.lex_state = 286}, + [3512] = {.lex_state = 280}, + [3513] = {.lex_state = 272}, + [3514] = {.lex_state = 256}, + [3515] = {.lex_state = 272}, + [3516] = {.lex_state = 272}, + [3517] = {.lex_state = 280}, + [3518] = {.lex_state = 280}, + [3519] = {.lex_state = 280}, + [3520] = {.lex_state = 286}, + [3521] = {.lex_state = 272}, + [3522] = {.lex_state = 272}, + [3523] = {.lex_state = 272}, + [3524] = {.lex_state = 286}, + [3525] = {.lex_state = 272}, + [3526] = {.lex_state = 272}, + [3527] = {.lex_state = 286}, + [3528] = {.lex_state = 272}, + [3529] = {.lex_state = 281}, + [3530] = {.lex_state = 281}, + [3531] = {.lex_state = 252}, + [3532] = {.lex_state = 286}, + [3533] = {.lex_state = 282}, + [3534] = {.lex_state = 281}, + [3535] = {.lex_state = 272}, + [3536] = {.lex_state = 245}, + [3537] = {.lex_state = 250}, + [3538] = {.lex_state = 290}, + [3539] = {.lex_state = 283}, + [3540] = {.lex_state = 267}, + [3541] = {.lex_state = 272}, + [3542] = {.lex_state = 245}, + [3543] = {.lex_state = 272}, + [3544] = {.lex_state = 245}, + [3545] = {.lex_state = 256}, + [3546] = {.lex_state = 272}, + [3547] = {.lex_state = 272}, + [3548] = {.lex_state = 280}, + [3549] = {.lex_state = 243}, + [3550] = {.lex_state = 272}, + [3551] = {.lex_state = 280}, + [3552] = {.lex_state = 252}, + [3553] = {.lex_state = 321}, + [3554] = {.lex_state = 279}, + [3555] = {.lex_state = 286}, + [3556] = {.lex_state = 286}, + [3557] = {.lex_state = 252}, + [3558] = {.lex_state = 278}, + [3559] = {.lex_state = 325}, + [3560] = {.lex_state = 272}, + [3561] = {.lex_state = 279}, + [3562] = {.lex_state = 243}, + [3563] = {.lex_state = 243}, + [3564] = {.lex_state = 245}, + [3565] = {.lex_state = 272}, + [3566] = {.lex_state = 272}, + [3567] = {.lex_state = 272}, + [3568] = {.lex_state = 272}, + [3569] = {.lex_state = 280}, + [3570] = {.lex_state = 333}, + [3571] = {.lex_state = 333}, + [3572] = {.lex_state = 272}, + [3573] = {.lex_state = 272}, + [3574] = {.lex_state = 272}, + [3575] = {.lex_state = 272}, + [3576] = {.lex_state = 272}, + [3577] = {.lex_state = 250}, + [3578] = {.lex_state = 272}, + [3579] = {.lex_state = 286}, + [3580] = {.lex_state = 272}, + [3581] = {.lex_state = 272}, + [3582] = {.lex_state = 286}, + [3583] = {.lex_state = 286}, + [3584] = {.lex_state = 286}, + [3585] = {.lex_state = 286}, + [3586] = {.lex_state = 243}, + [3587] = {.lex_state = 286}, + [3588] = {.lex_state = 272}, + [3589] = {.lex_state = 335}, + [3590] = {.lex_state = 272}, + [3591] = {.lex_state = 286}, + [3592] = {.lex_state = 272}, + [3593] = {.lex_state = 286}, + [3594] = {.lex_state = 335}, + [3595] = {.lex_state = 272}, + [3596] = {.lex_state = 286}, + [3597] = {.lex_state = 280}, + [3598] = {.lex_state = 267}, + [3599] = {.lex_state = 243}, + [3600] = {.lex_state = 260}, + [3601] = {.lex_state = 336}, + [3602] = {.lex_state = 255}, + [3603] = {.lex_state = 260}, + [3604] = {.lex_state = 269}, + [3605] = {.lex_state = 269}, + [3606] = {.lex_state = 243}, + [3607] = {.lex_state = 256}, + [3608] = {.lex_state = 269}, + [3609] = {.lex_state = 245}, + [3610] = {.lex_state = 258}, + [3611] = {.lex_state = 269}, + [3612] = {.lex_state = 281}, + [3613] = {.lex_state = 281}, + [3614] = {.lex_state = 282}, + [3615] = {.lex_state = 324}, + [3616] = {.lex_state = 272}, + [3617] = {.lex_state = 335}, + [3618] = {.lex_state = 269}, + [3619] = {.lex_state = 278}, + [3620] = {.lex_state = 324}, + [3621] = {.lex_state = 256}, + [3622] = {.lex_state = 316}, + [3623] = {.lex_state = 281}, + [3624] = {.lex_state = 278}, + [3625] = {.lex_state = 258}, + [3626] = {.lex_state = 278}, + [3627] = {.lex_state = 278}, + [3628] = {.lex_state = 316}, + [3629] = {.lex_state = 316}, + [3630] = {.lex_state = 316}, + [3631] = {.lex_state = 316}, + [3632] = {.lex_state = 316}, + [3633] = {.lex_state = 324}, + [3634] = {.lex_state = 278}, + [3635] = {.lex_state = 281}, + [3636] = {.lex_state = 278}, + [3637] = {.lex_state = 260}, + [3638] = {.lex_state = 278}, + [3639] = {.lex_state = 278}, + [3640] = {.lex_state = 278}, + [3641] = {.lex_state = 278}, + [3642] = {.lex_state = 278}, + [3643] = {.lex_state = 278}, + [3644] = {.lex_state = 316}, + [3645] = {.lex_state = 278}, + [3646] = {.lex_state = 335}, + [3647] = {.lex_state = 317}, + [3648] = {.lex_state = 267}, + [3649] = {.lex_state = 335}, + [3650] = {.lex_state = 335}, + [3651] = {.lex_state = 317}, + [3652] = {.lex_state = 258}, + [3653] = {.lex_state = 317}, + [3654] = {.lex_state = 256}, + [3655] = {.lex_state = 256}, + [3656] = {.lex_state = 255}, + [3657] = {.lex_state = 281}, + [3658] = {.lex_state = 278}, + [3659] = {.lex_state = 333}, + [3660] = {.lex_state = 252}, + [3661] = {.lex_state = 269}, + [3662] = {.lex_state = 272}, + [3663] = {.lex_state = 333}, + [3664] = {.lex_state = 281}, + [3665] = {.lex_state = 272}, + [3666] = {.lex_state = 272}, + [3667] = {.lex_state = 272}, + [3668] = {.lex_state = 272}, + [3669] = {.lex_state = 325}, + [3670] = {.lex_state = 321}, + [3671] = {.lex_state = 281}, + [3672] = {.lex_state = 245}, + [3673] = {.lex_state = 269}, + [3674] = {.lex_state = 245}, + [3675] = {.lex_state = 272}, + [3676] = {.lex_state = 333}, + [3677] = {.lex_state = 272}, + [3678] = {.lex_state = 272}, + [3679] = {.lex_state = 321}, + [3680] = {.lex_state = 272}, + [3681] = {.lex_state = 336}, + [3682] = {.lex_state = 335}, + [3683] = {.lex_state = 321}, + [3684] = {.lex_state = 272}, + [3685] = {.lex_state = 272}, + [3686] = {.lex_state = 272}, + [3687] = {.lex_state = 281}, + [3688] = {.lex_state = 279}, + [3689] = {.lex_state = 272}, + [3690] = {.lex_state = 321}, + [3691] = {.lex_state = 281}, + [3692] = {.lex_state = 333}, + [3693] = {.lex_state = 281}, + [3694] = {.lex_state = 281}, + [3695] = {.lex_state = 272}, + [3696] = {.lex_state = 272}, + [3697] = {.lex_state = 325}, + [3698] = {.lex_state = 272}, + [3699] = {.lex_state = 333}, + [3700] = {.lex_state = 333}, + [3701] = {.lex_state = 272}, + [3702] = {.lex_state = 276}, + [3703] = {.lex_state = 316}, + [3704] = {.lex_state = 245}, + [3705] = {.lex_state = 281}, + [3706] = {.lex_state = 269}, + [3707] = {.lex_state = 281}, + [3708] = {.lex_state = 245}, + [3709] = {.lex_state = 334}, + [3710] = {.lex_state = 334}, + [3711] = {.lex_state = 268}, + [3712] = {.lex_state = 335}, + [3713] = {.lex_state = 281}, + [3714] = {.lex_state = 325}, + [3715] = {.lex_state = 317}, + [3716] = {.lex_state = 325}, + [3717] = {.lex_state = 272}, + [3718] = {.lex_state = 279}, + [3719] = {.lex_state = 324}, + [3720] = {.lex_state = 281}, + [3721] = {.lex_state = 245}, + [3722] = {.lex_state = 272}, + [3723] = {.lex_state = 272}, + [3724] = {.lex_state = 260}, + [3725] = {.lex_state = 281}, + [3726] = {.lex_state = 281}, + [3727] = {.lex_state = 272}, + [3728] = {.lex_state = 281}, + [3729] = {.lex_state = 272}, + [3730] = {.lex_state = 281}, + [3731] = {.lex_state = 281}, + [3732] = {.lex_state = 281}, + [3733] = {.lex_state = 252}, + [3734] = {.lex_state = 278}, + [3735] = {.lex_state = 245}, + [3736] = {.lex_state = 325}, + [3737] = {.lex_state = 272}, + [3738] = {.lex_state = 272}, + [3739] = {.lex_state = 281}, + [3740] = {.lex_state = 272}, + [3741] = {.lex_state = 272}, + [3742] = {.lex_state = 272}, + [3743] = {.lex_state = 281}, + [3744] = {.lex_state = 272}, + [3745] = {.lex_state = 272}, + [3746] = {.lex_state = 281}, + [3747] = {.lex_state = 278}, + [3748] = {.lex_state = 272}, + [3749] = {.lex_state = 272}, + [3750] = {.lex_state = 272}, + [3751] = {.lex_state = 245}, + [3752] = {.lex_state = 245}, + [3753] = {.lex_state = 272}, + [3754] = {.lex_state = 272}, + [3755] = {.lex_state = 272}, + [3756] = {.lex_state = 272}, + [3757] = {.lex_state = 272}, + [3758] = {.lex_state = 272}, + [3759] = {.lex_state = 272}, + [3760] = {.lex_state = 272}, + [3761] = {.lex_state = 272}, + [3762] = {.lex_state = 281}, + [3763] = {.lex_state = 272}, + [3764] = {.lex_state = 278}, + [3765] = {.lex_state = 272}, + [3766] = {.lex_state = 272}, + [3767] = {.lex_state = 272}, + [3768] = {.lex_state = 272}, + [3769] = {.lex_state = 252}, + [3770] = {.lex_state = 272}, + [3771] = {.lex_state = 279}, + [3772] = {.lex_state = 321}, + [3773] = {.lex_state = 272}, + [3774] = {.lex_state = 281}, + [3775] = {.lex_state = 272}, + [3776] = {.lex_state = 272}, + [3777] = {.lex_state = 272}, + [3778] = {.lex_state = 281}, + [3779] = {.lex_state = 268}, + [3780] = {.lex_state = 272}, + [3781] = {.lex_state = 272}, + [3782] = {.lex_state = 272}, + [3783] = {.lex_state = 272}, + [3784] = {.lex_state = 272}, + [3785] = {.lex_state = 321}, + [3786] = {.lex_state = 272}, + [3787] = {.lex_state = 281}, + [3788] = {.lex_state = 278}, + [3789] = {.lex_state = 272}, + [3790] = {.lex_state = 272}, + [3791] = {.lex_state = 272}, + [3792] = {.lex_state = 252}, + [3793] = {.lex_state = 281}, + [3794] = {.lex_state = 272}, + [3795] = {.lex_state = 281}, + [3796] = {.lex_state = 272}, + [3797] = {.lex_state = 281}, + [3798] = {.lex_state = 252}, + [3799] = {.lex_state = 272}, + [3800] = {.lex_state = 252}, + [3801] = {.lex_state = 278}, + [3802] = {.lex_state = 258}, + [3803] = {.lex_state = 272}, + [3804] = {.lex_state = 272}, + [3805] = {.lex_state = 252}, + [3806] = {.lex_state = 272}, + [3807] = {.lex_state = 272}, + [3808] = {.lex_state = 272}, + [3809] = {.lex_state = 272}, + [3810] = {.lex_state = 272}, + [3811] = {.lex_state = 272}, + [3812] = {.lex_state = 272}, + [3813] = {.lex_state = 272}, + [3814] = {.lex_state = 272}, + [3815] = {.lex_state = 272}, + [3816] = {.lex_state = 281}, + [3817] = {.lex_state = 272}, + [3818] = {.lex_state = 281}, + [3819] = {.lex_state = 272}, + [3820] = {.lex_state = 272}, + [3821] = {.lex_state = 272}, + [3822] = {.lex_state = 281}, + [3823] = {.lex_state = 272}, + [3824] = {.lex_state = 272}, + [3825] = {.lex_state = 272}, + [3826] = {.lex_state = 278}, + [3827] = {.lex_state = 272}, + [3828] = {.lex_state = 272}, + [3829] = {.lex_state = 272}, + [3830] = {.lex_state = 272}, + [3831] = {.lex_state = 272}, + [3832] = {.lex_state = 281}, + [3833] = {.lex_state = 281}, + [3834] = {.lex_state = 281}, + [3835] = {.lex_state = 281}, + [3836] = {.lex_state = 252}, + [3837] = {.lex_state = 281}, + [3838] = {.lex_state = 272}, + [3839] = {.lex_state = 272}, + [3840] = {.lex_state = 325}, + [3841] = {.lex_state = 272}, + [3842] = {.lex_state = 272}, + [3843] = {.lex_state = 278}, + [3844] = {.lex_state = 272}, + [3845] = {.lex_state = 272}, + [3846] = {.lex_state = 272}, + [3847] = {.lex_state = 272}, + [3848] = {.lex_state = 272}, + [3849] = {.lex_state = 272}, + [3850] = {.lex_state = 258}, + [3851] = {.lex_state = 283}, + [3852] = {.lex_state = 240}, + [3853] = {.lex_state = 324}, + [3854] = {.lex_state = 278}, + [3855] = {.lex_state = 324}, + [3856] = {.lex_state = 324}, + [3857] = {.lex_state = 278}, + [3858] = {.lex_state = 320}, + [3859] = {.lex_state = 268}, + [3860] = {.lex_state = 240}, + [3861] = {.lex_state = 335}, + [3862] = {.lex_state = 278}, + [3863] = {.lex_state = 317}, + [3864] = {.lex_state = 278}, + [3865] = {.lex_state = 324}, + [3866] = {.lex_state = 258}, + [3867] = {.lex_state = 317}, + [3868] = {.lex_state = 258}, + [3869] = {.lex_state = 258}, + [3870] = {.lex_state = 252}, + [3871] = {.lex_state = 271}, + [3872] = {.lex_state = 271}, + [3873] = {.lex_state = 324}, + [3874] = {.lex_state = 317}, + [3875] = {.lex_state = 317}, + [3876] = {.lex_state = 271}, + [3877] = {.lex_state = 271}, + [3878] = {.lex_state = 271}, + [3879] = {.lex_state = 271}, + [3880] = {.lex_state = 260}, + [3881] = {.lex_state = 260}, + [3882] = {.lex_state = 260}, + [3883] = {.lex_state = 260}, + [3884] = {.lex_state = 324}, + [3885] = {.lex_state = 324}, + [3886] = {.lex_state = 280}, + [3887] = {.lex_state = 278}, + [3888] = {.lex_state = 317}, + [3889] = {.lex_state = 324}, + [3890] = {.lex_state = 252}, + [3891] = {.lex_state = 316}, + [3892] = {.lex_state = 316}, + [3893] = {.lex_state = 240}, + [3894] = {.lex_state = 280}, + [3895] = {.lex_state = 317}, + [3896] = {.lex_state = 316}, + [3897] = {.lex_state = 316}, + [3898] = {.lex_state = 252}, + [3899] = {.lex_state = 290}, + [3900] = {.lex_state = 271}, + [3901] = {.lex_state = 317}, + [3902] = {.lex_state = 335}, + [3903] = {.lex_state = 316}, + [3904] = {.lex_state = 335}, + [3905] = {.lex_state = 317}, + [3906] = {.lex_state = 252}, + [3907] = {.lex_state = 281}, + [3908] = {.lex_state = 289}, + [3909] = {.lex_state = 316}, + [3910] = {.lex_state = 316}, + [3911] = {.lex_state = 335}, + [3912] = {.lex_state = 316}, + [3913] = {.lex_state = 316}, + [3914] = {.lex_state = 316}, + [3915] = {.lex_state = 335}, + [3916] = {.lex_state = 316}, + [3917] = {.lex_state = 316}, + [3918] = {.lex_state = 278}, + [3919] = {.lex_state = 278}, + [3920] = {.lex_state = 335}, + [3921] = {.lex_state = 316}, + [3922] = {.lex_state = 316}, + [3923] = {.lex_state = 316}, + [3924] = {.lex_state = 316}, + [3925] = {.lex_state = 316}, + [3926] = {.lex_state = 316}, + [3927] = {.lex_state = 272}, + [3928] = {.lex_state = 272}, + [3929] = {.lex_state = 278}, + [3930] = {.lex_state = 278}, + [3931] = {.lex_state = 316}, + [3932] = {.lex_state = 240}, + [3933] = {.lex_state = 316}, + [3934] = {.lex_state = 316}, + [3935] = {.lex_state = 278}, + [3936] = {.lex_state = 335}, + [3937] = {.lex_state = 272}, + [3938] = {.lex_state = 260}, + [3939] = {.lex_state = 280}, + [3940] = {.lex_state = 260}, + [3941] = {.lex_state = 278}, + [3942] = {.lex_state = 278}, + [3943] = {.lex_state = 278}, + [3944] = {.lex_state = 260}, + [3945] = {.lex_state = 260}, + [3946] = {.lex_state = 278}, + [3947] = {.lex_state = 278}, + [3948] = {.lex_state = 278}, + [3949] = {.lex_state = 278}, + [3950] = {.lex_state = 278}, + [3951] = {.lex_state = 278}, + [3952] = {.lex_state = 278}, + [3953] = {.lex_state = 278}, + [3954] = {.lex_state = 339}, + [3955] = {.lex_state = 280}, + [3956] = {.lex_state = 278}, + [3957] = {.lex_state = 280}, + [3958] = {.lex_state = 278}, + [3959] = {.lex_state = 317}, + [3960] = {.lex_state = 278}, + [3961] = {.lex_state = 317}, + [3962] = {.lex_state = 324}, + [3963] = {.lex_state = 278}, + [3964] = {.lex_state = 324}, + [3965] = {.lex_state = 316}, + [3966] = {.lex_state = 297}, + [3967] = {.lex_state = 278}, + [3968] = {.lex_state = 316}, + [3969] = {.lex_state = 280}, + [3970] = {.lex_state = 271}, + [3971] = {.lex_state = 280}, + [3972] = {.lex_state = 280}, + [3973] = {.lex_state = 278}, + [3974] = {.lex_state = 278}, + [3975] = {.lex_state = 334}, + [3976] = {.lex_state = 278}, + [3977] = {.lex_state = 247}, + [3978] = {.lex_state = 258}, + [3979] = {.lex_state = 258}, + [3980] = {.lex_state = 280}, + [3981] = {.lex_state = 316}, + [3982] = {.lex_state = 316}, + [3983] = {.lex_state = 301}, + [3984] = {.lex_state = 270}, + [3985] = {.lex_state = 280}, + [3986] = {.lex_state = 280}, + [3987] = {.lex_state = 280}, + [3988] = {.lex_state = 321}, + [3989] = {.lex_state = 316}, + [3990] = {.lex_state = 333}, + [3991] = {.lex_state = 333}, + [3992] = {.lex_state = 278}, + [3993] = {.lex_state = 280}, + [3994] = {.lex_state = 317}, + [3995] = {.lex_state = 278}, + [3996] = {.lex_state = 317}, + [3997] = {.lex_state = 258}, + [3998] = {.lex_state = 272}, + [3999] = {.lex_state = 335}, + [4000] = {.lex_state = 278}, + [4001] = {.lex_state = 288}, + [4002] = {.lex_state = 289}, + [4003] = {.lex_state = 289}, + [4004] = {.lex_state = 247}, + [4005] = {.lex_state = 279}, + [4006] = {.lex_state = 278}, + [4007] = {.lex_state = 258}, + [4008] = {.lex_state = 240}, + [4009] = {.lex_state = 324}, + [4010] = {.lex_state = 278}, + [4011] = {.lex_state = 324}, + [4012] = {.lex_state = 278}, + [4013] = {.lex_state = 325}, + [4014] = {.lex_state = 278}, + [4015] = {.lex_state = 247}, + [4016] = {.lex_state = 280}, + [4017] = {.lex_state = 280}, + [4018] = {.lex_state = 280}, + [4019] = {.lex_state = 298}, + [4020] = {.lex_state = 283}, + [4021] = {.lex_state = 283}, + [4022] = {.lex_state = 280}, + [4023] = {.lex_state = 278}, + [4024] = {.lex_state = 278}, + [4025] = {.lex_state = 278}, + [4026] = {.lex_state = 316}, + [4027] = {.lex_state = 316}, + [4028] = {.lex_state = 316}, + [4029] = {.lex_state = 316}, + [4030] = {.lex_state = 278}, + [4031] = {.lex_state = 320}, + [4032] = {.lex_state = 320}, + [4033] = {.lex_state = 316}, + [4034] = {.lex_state = 316}, + [4035] = {.lex_state = 334}, + [4036] = {.lex_state = 316}, + [4037] = {.lex_state = 252}, + [4038] = {.lex_state = 278}, + [4039] = {.lex_state = 280}, + [4040] = {.lex_state = 278}, + [4041] = {.lex_state = 278}, + [4042] = {.lex_state = 278}, + [4043] = {.lex_state = 278}, + [4044] = {.lex_state = 272}, + [4045] = {.lex_state = 240}, + [4046] = {.lex_state = 252}, + [4047] = {.lex_state = 252}, + [4048] = {.lex_state = 316}, + [4049] = {.lex_state = 252}, + [4050] = {.lex_state = 278}, + [4051] = {.lex_state = 278}, + [4052] = {.lex_state = 240}, + [4053] = {.lex_state = 240}, + [4054] = {.lex_state = 240}, + [4055] = {.lex_state = 240}, + [4056] = {.lex_state = 240}, + [4057] = {.lex_state = 240}, + [4058] = {.lex_state = 240}, [4059] = {.lex_state = 240}, - [4060] = {.lex_state = 240}, - [4061] = {.lex_state = 241}, - [4062] = {.lex_state = 205}, - [4063] = {.lex_state = 203}, - [4064] = {.lex_state = 205}, - [4065] = {.lex_state = 205}, - [4066] = {.lex_state = 205}, - [4067] = {.lex_state = 241}, - [4068] = {.lex_state = 229}, - [4069] = {.lex_state = 205}, - [4070] = {.lex_state = 203}, - [4071] = {.lex_state = 241}, - [4072] = {.lex_state = 203}, - [4073] = {.lex_state = 205}, - [4074] = {.lex_state = 203}, - [4075] = {.lex_state = 203}, - [4076] = {.lex_state = 203}, - [4077] = {.lex_state = 208}, - [4078] = {.lex_state = 208}, - [4079] = {.lex_state = 203}, - [4080] = {.lex_state = 208}, + [4060] = {.lex_state = 268}, + [4061] = {.lex_state = 335}, + [4062] = {.lex_state = 335}, + [4063] = {.lex_state = 240}, + [4064] = {.lex_state = 289}, + [4065] = {.lex_state = 289}, + [4066] = {.lex_state = 240}, + [4067] = {.lex_state = 316}, + [4068] = {.lex_state = 333}, + [4069] = {.lex_state = 289}, + [4070] = {.lex_state = 333}, + [4071] = {.lex_state = 240}, + [4072] = {.lex_state = 278}, + [4073] = {.lex_state = 333}, + [4074] = {.lex_state = 333}, + [4075] = {.lex_state = 335}, + [4076] = {.lex_state = 335}, + [4077] = {.lex_state = 333}, + [4078] = {.lex_state = 271}, + [4079] = {.lex_state = 271}, + [4080] = {.lex_state = 281}, [4081] = {.lex_state = 240}, - [4082] = {.lex_state = 208}, - [4083] = {.lex_state = 203}, - [4084] = {.lex_state = 208}, - [4085] = {.lex_state = 208}, - [4086] = {.lex_state = 208}, - [4087] = {.lex_state = 208}, - [4088] = {.lex_state = 208}, - [4089] = {.lex_state = 208}, - [4090] = {.lex_state = 240}, - [4091] = {.lex_state = 241}, - [4092] = {.lex_state = 208}, - [4093] = {.lex_state = 243}, - [4094] = {.lex_state = 203}, - [4095] = {.lex_state = 208}, - [4096] = {.lex_state = 203}, - [4097] = {.lex_state = 203}, - [4098] = {.lex_state = 208}, - [4099] = {.lex_state = 241}, - [4100] = {.lex_state = 203}, - [4101] = {.lex_state = 208}, - [4102] = {.lex_state = 208}, - [4103] = {.lex_state = 241}, - [4104] = {.lex_state = 208}, - [4105] = {.lex_state = 208}, - [4106] = {.lex_state = 208}, - [4107] = {.lex_state = 203}, - [4108] = {.lex_state = 242}, - [4109] = {.lex_state = 208}, - [4110] = {.lex_state = 241}, - [4111] = {.lex_state = 203}, - [4112] = {.lex_state = 203}, - [4113] = {.lex_state = 203}, - [4114] = {.lex_state = 203}, - [4115] = {.lex_state = 208}, - [4116] = {.lex_state = 208}, - [4117] = {.lex_state = 208}, - [4118] = {.lex_state = 240}, - [4119] = {.lex_state = 208}, - [4120] = {.lex_state = 203}, - [4121] = {.lex_state = 208}, - [4122] = {.lex_state = 240}, - [4123] = {.lex_state = 208}, - [4124] = {.lex_state = 243}, - [4125] = {.lex_state = 241}, - [4126] = {.lex_state = 208}, - [4127] = {.lex_state = 203}, - [4128] = {.lex_state = 208}, - [4129] = {.lex_state = 208}, - [4130] = {.lex_state = 203}, - [4131] = {.lex_state = 243}, - [4132] = {.lex_state = 208}, - [4133] = {.lex_state = 203}, - [4134] = {.lex_state = 208}, - [4135] = {.lex_state = 242}, - [4136] = {.lex_state = 203}, - [4137] = {.lex_state = 208}, - [4138] = {.lex_state = 208}, - [4139] = {.lex_state = 208}, - [4140] = {.lex_state = 203}, - [4141] = {.lex_state = 208}, - [4142] = {.lex_state = 203}, - [4143] = {.lex_state = 203}, - [4144] = {.lex_state = 242}, - [4145] = {.lex_state = 203}, - [4146] = {.lex_state = 243}, - [4147] = {.lex_state = 242}, - [4148] = {.lex_state = 208}, - [4149] = {.lex_state = 203}, - [4150] = {.lex_state = 203}, - [4151] = {.lex_state = 229}, - [4152] = {.lex_state = 203}, - [4153] = {.lex_state = 194}, - [4154] = {.lex_state = 194}, - [4155] = {.lex_state = 203}, - [4156] = {.lex_state = 203}, - [4157] = {.lex_state = 203}, - [4158] = {.lex_state = 194}, - [4159] = {.lex_state = 241}, - [4160] = {.lex_state = 203}, - [4161] = {.lex_state = 203}, - [4162] = {.lex_state = 242}, - [4163] = {.lex_state = 203}, - [4164] = {.lex_state = 242}, - [4165] = {.lex_state = 203}, - [4166] = {.lex_state = 203}, - [4167] = {.lex_state = 230}, - [4168] = {.lex_state = 203}, - [4169] = {.lex_state = 230}, - [4170] = {.lex_state = 203}, - [4171] = {.lex_state = 203}, - [4172] = {.lex_state = 194}, - [4173] = {.lex_state = 241}, - [4174] = {.lex_state = 242}, - [4175] = {.lex_state = 194}, - [4176] = {.lex_state = 242}, - [4177] = {.lex_state = 242}, - [4178] = {.lex_state = 242}, - [4179] = {.lex_state = 242}, - [4180] = {.lex_state = 203}, - [4181] = {.lex_state = 242}, - [4182] = {.lex_state = 242}, - [4183] = {.lex_state = 240}, - [4184] = {.lex_state = 242}, - [4185] = {.lex_state = 203}, - [4186] = {.lex_state = 242}, - [4187] = {.lex_state = 205}, - [4188] = {.lex_state = 203}, - [4189] = {.lex_state = 242}, - [4190] = {.lex_state = 203}, - [4191] = {.lex_state = 240}, - [4192] = {.lex_state = 240}, - [4193] = {.lex_state = 194}, - [4194] = {.lex_state = 203}, - [4195] = {.lex_state = 240}, - [4196] = {.lex_state = 240}, - [4197] = {.lex_state = 203}, - [4198] = {.lex_state = 240}, - [4199] = {.lex_state = 203}, - [4200] = {.lex_state = 203}, - [4201] = {.lex_state = 203}, - [4202] = {.lex_state = 240}, - [4203] = {.lex_state = 203}, - [4204] = {.lex_state = 240}, - [4205] = {.lex_state = 240}, - [4206] = {.lex_state = 205}, - [4207] = {.lex_state = 205}, - [4208] = {.lex_state = 205}, - [4209] = {.lex_state = 203}, - [4210] = {.lex_state = 194}, - [4211] = {.lex_state = 203}, - [4212] = {.lex_state = 194}, - [4213] = {.lex_state = 203}, - [4214] = {.lex_state = 203}, - [4215] = {.lex_state = 205}, - [4216] = {.lex_state = 241}, - [4217] = {.lex_state = 203}, - [4218] = {.lex_state = 203}, - [4219] = {.lex_state = 241}, - [4220] = {.lex_state = 194}, - [4221] = {.lex_state = 203}, - [4222] = {.lex_state = 241}, - [4223] = {.lex_state = 243}, - [4224] = {.lex_state = 203}, - [4225] = {.lex_state = 203}, - [4226] = {.lex_state = 203}, - [4227] = {.lex_state = 203}, - [4228] = {.lex_state = 203}, - [4229] = {.lex_state = 242}, - [4230] = {.lex_state = 203}, - [4231] = {.lex_state = 206}, - [4232] = {.lex_state = 203}, - [4233] = {.lex_state = 194}, - [4234] = {.lex_state = 203}, - [4235] = {.lex_state = 242}, - [4236] = {.lex_state = 194}, - [4237] = {.lex_state = 203}, - [4238] = {.lex_state = 203}, - [4239] = {.lex_state = 194}, - [4240] = {.lex_state = 241}, - [4241] = {.lex_state = 203}, - [4242] = {.lex_state = 203}, - [4243] = {.lex_state = 203}, - [4244] = {.lex_state = 241}, - [4245] = {.lex_state = 203}, - [4246] = {.lex_state = 194}, - [4247] = {.lex_state = 194}, - [4248] = {.lex_state = 203}, - [4249] = {.lex_state = 203}, - [4250] = {.lex_state = 203}, - [4251] = {.lex_state = 203}, - [4252] = {.lex_state = 245}, - [4253] = {.lex_state = 203}, - [4254] = {.lex_state = 194}, - [4255] = {.lex_state = 194}, - [4256] = {.lex_state = 205}, - [4257] = {.lex_state = 194}, - [4258] = {.lex_state = 243}, - [4259] = {.lex_state = 203}, - [4260] = {.lex_state = 194}, - [4261] = {.lex_state = 203}, - [4262] = {.lex_state = 203}, - [4263] = {.lex_state = 194}, - [4264] = {.lex_state = 203}, - [4265] = {.lex_state = 203}, - [4266] = {.lex_state = 203}, - [4267] = {.lex_state = 194}, - [4268] = {.lex_state = 203}, - [4269] = {.lex_state = 203}, - [4270] = {.lex_state = 194}, - [4271] = {.lex_state = 205}, - [4272] = {.lex_state = 245}, - [4273] = {.lex_state = 203}, - [4274] = {.lex_state = 203}, - [4275] = {.lex_state = 206}, - [4276] = {.lex_state = 203}, - [4277] = {.lex_state = 203}, - [4278] = {.lex_state = 242}, - [4279] = {.lex_state = 203}, - [4280] = {.lex_state = 203}, - [4281] = {.lex_state = 240}, - [4282] = {.lex_state = 242}, - [4283] = {.lex_state = 240}, - [4284] = {.lex_state = 194}, - [4285] = {.lex_state = 203}, - [4286] = {.lex_state = 203}, - [4287] = {.lex_state = 203}, - [4288] = {.lex_state = 242}, - [4289] = {.lex_state = 203}, - [4290] = {.lex_state = 240}, - [4291] = {.lex_state = 206}, - [4292] = {.lex_state = 203}, - [4293] = {.lex_state = 203}, - [4294] = {.lex_state = 240}, - [4295] = {.lex_state = 230}, - [4296] = {.lex_state = 230}, - [4297] = {.lex_state = 240}, - [4298] = {.lex_state = 240}, - [4299] = {.lex_state = 230}, - [4300] = {.lex_state = 203}, - [4301] = {.lex_state = 230}, - [4302] = {.lex_state = 230}, - [4303] = {.lex_state = 230}, - [4304] = {.lex_state = 230}, - [4305] = {.lex_state = 230}, - [4306] = {.lex_state = 230}, - [4307] = {.lex_state = 240}, - [4308] = {.lex_state = 230}, - [4309] = {.lex_state = 203}, - [4310] = {.lex_state = 240}, - [4311] = {.lex_state = 230}, - [4312] = {.lex_state = 245}, - [4313] = {.lex_state = 241}, - [4314] = {.lex_state = 206}, - [4315] = {.lex_state = 230}, - [4316] = {.lex_state = 230}, - [4317] = {.lex_state = 230}, - [4318] = {.lex_state = 240}, - [4319] = {.lex_state = 230}, - [4320] = {.lex_state = 230}, - [4321] = {.lex_state = 241}, - [4322] = {.lex_state = 241}, - [4323] = {.lex_state = 230}, - [4324] = {.lex_state = 194}, - [4325] = {.lex_state = 203}, - [4326] = {.lex_state = 203}, - [4327] = {.lex_state = 203}, - [4328] = {.lex_state = 203}, - [4329] = {.lex_state = 203}, - [4330] = {.lex_state = 242}, - [4331] = {.lex_state = 203}, - [4332] = {.lex_state = 242}, - [4333] = {.lex_state = 203}, - [4334] = {.lex_state = 203}, - [4335] = {.lex_state = 242}, - [4336] = {.lex_state = 242}, - [4337] = {.lex_state = 242}, - [4338] = {.lex_state = 203}, - [4339] = {.lex_state = 203}, - [4340] = {.lex_state = 203}, - [4341] = {.lex_state = 203}, - [4342] = {.lex_state = 241}, - [4343] = {.lex_state = 203}, - [4344] = {.lex_state = 241}, - [4345] = {.lex_state = 242}, - [4346] = {.lex_state = 204}, - [4347] = {.lex_state = 203}, - [4348] = {.lex_state = 203}, - [4349] = {.lex_state = 203}, - [4350] = {.lex_state = 230}, - [4351] = {.lex_state = 203}, - [4352] = {.lex_state = 205}, - [4353] = {.lex_state = 242}, - [4354] = {.lex_state = 242}, - [4355] = {.lex_state = 242}, - [4356] = {.lex_state = 203}, - [4357] = {.lex_state = 203}, - [4358] = {.lex_state = 203}, - [4359] = {.lex_state = 242}, - [4360] = {.lex_state = 203}, - [4361] = {.lex_state = 242}, - [4362] = {.lex_state = 204}, - [4363] = {.lex_state = 203}, - [4364] = {.lex_state = 203}, - [4365] = {.lex_state = 203}, - [4366] = {.lex_state = 203}, - [4367] = {.lex_state = 203}, - [4368] = {.lex_state = 230}, - [4369] = {.lex_state = 203}, - [4370] = {.lex_state = 203}, - [4371] = {.lex_state = 241}, - [4372] = {.lex_state = 203}, - [4373] = {.lex_state = 242}, - [4374] = {.lex_state = 203}, - [4375] = {.lex_state = 203}, - [4376] = {.lex_state = 242}, - [4377] = {.lex_state = 203}, - [4378] = {.lex_state = 203}, - [4379] = {.lex_state = 203}, - [4380] = {.lex_state = 242}, - [4381] = {.lex_state = 203}, - [4382] = {.lex_state = 203}, - [4383] = {.lex_state = 242}, - [4384] = {.lex_state = 242}, - [4385] = {.lex_state = 205}, - [4386] = {.lex_state = 242}, - [4387] = {.lex_state = 242}, - [4388] = {.lex_state = 242}, - [4389] = {.lex_state = 242}, - [4390] = {.lex_state = 203}, - [4391] = {.lex_state = 242}, - [4392] = {.lex_state = 230}, - [4393] = {.lex_state = 230}, - [4394] = {.lex_state = 241}, - [4395] = {.lex_state = 241}, - [4396] = {.lex_state = 241}, - [4397] = {.lex_state = 241}, - [4398] = {.lex_state = 241}, - [4399] = {.lex_state = 241}, - [4400] = {.lex_state = 203}, - [4401] = {.lex_state = 203}, - [4402] = {.lex_state = 242}, - [4403] = {.lex_state = 203}, - [4404] = {.lex_state = 242}, - [4405] = {.lex_state = 203}, - [4406] = {.lex_state = 194}, - [4407] = {.lex_state = 230}, - [4408] = {.lex_state = 203}, - [4409] = {.lex_state = 203}, - [4410] = {.lex_state = 203}, - [4411] = {.lex_state = 194}, - [4412] = {.lex_state = 226}, - [4413] = {.lex_state = 203}, - [4414] = {.lex_state = 230}, - [4415] = {.lex_state = 230}, - [4416] = {.lex_state = 230}, - [4417] = {.lex_state = 245}, - [4418] = {.lex_state = 230}, - [4419] = {.lex_state = 203}, - [4420] = {.lex_state = 203}, - [4421] = {.lex_state = 203}, - [4422] = {.lex_state = 230}, - [4423] = {.lex_state = 203}, - [4424] = {.lex_state = 230}, - [4425] = {.lex_state = 203}, - [4426] = {.lex_state = 230}, - [4427] = {.lex_state = 203}, - [4428] = {.lex_state = 203}, - [4429] = {.lex_state = 241}, - [4430] = {.lex_state = 241}, - [4431] = {.lex_state = 194}, - [4432] = {.lex_state = 230}, - [4433] = {.lex_state = 203}, - [4434] = {.lex_state = 203}, - [4435] = {.lex_state = 242}, - [4436] = {.lex_state = 194}, - [4437] = {.lex_state = 240}, - [4438] = {.lex_state = 203}, - [4439] = {.lex_state = 203}, - [4440] = {.lex_state = 241}, - [4441] = {.lex_state = 231}, - [4442] = {.lex_state = 241}, - [4443] = {.lex_state = 241}, - [4444] = {.lex_state = 241}, - [4445] = {.lex_state = 203}, - [4446] = {.lex_state = 230}, - [4447] = {.lex_state = 230}, - [4448] = {.lex_state = 241}, - [4449] = {.lex_state = 242}, - [4450] = {.lex_state = 203}, - [4451] = {.lex_state = 194}, - [4452] = {.lex_state = 230}, - [4453] = {.lex_state = 230}, - [4454] = {.lex_state = 194}, - [4455] = {.lex_state = 203}, - [4456] = {.lex_state = 203}, - [4457] = {.lex_state = 230}, - [4458] = {.lex_state = 203}, - [4459] = {.lex_state = 206}, - [4460] = {.lex_state = 231}, - [4461] = {.lex_state = 241}, - [4462] = {.lex_state = 203}, - [4463] = {.lex_state = 241}, - [4464] = {.lex_state = 230}, - [4465] = {.lex_state = 194}, - [4466] = {.lex_state = 241}, - [4467] = {.lex_state = 194}, - [4468] = {.lex_state = 194}, - [4469] = {.lex_state = 194}, - [4470] = {.lex_state = 194}, - [4471] = {.lex_state = 194}, - [4472] = {.lex_state = 203}, - [4473] = {.lex_state = 203}, - [4474] = {.lex_state = 241}, - [4475] = {.lex_state = 230}, - [4476] = {.lex_state = 203}, - [4477] = {.lex_state = 203}, - [4478] = {.lex_state = 203}, - [4479] = {.lex_state = 230}, - [4480] = {.lex_state = 241}, - [4481] = {.lex_state = 230}, - [4482] = {.lex_state = 206}, - [4483] = {.lex_state = 230}, - [4484] = {.lex_state = 230}, - [4485] = {.lex_state = 245}, - [4486] = {.lex_state = 241}, - [4487] = {.lex_state = 230}, - [4488] = {.lex_state = 203}, - [4489] = {.lex_state = 205}, - [4490] = {.lex_state = 205}, - [4491] = {.lex_state = 194}, - [4492] = {.lex_state = 203}, - [4493] = {.lex_state = 205}, - [4494] = {.lex_state = 203}, - [4495] = {.lex_state = 205}, - [4496] = {.lex_state = 205}, - [4497] = {.lex_state = 205}, - [4498] = {.lex_state = 230}, - [4499] = {.lex_state = 205}, - [4500] = {.lex_state = 205}, - [4501] = {.lex_state = 230}, - [4502] = {.lex_state = 205}, - [4503] = {.lex_state = 205}, - [4504] = {.lex_state = 242}, - [4505] = {.lex_state = 205}, - [4506] = {.lex_state = 203}, - [4507] = {.lex_state = 205}, - [4508] = {.lex_state = 230}, - [4509] = {.lex_state = 203}, - [4510] = {.lex_state = 203}, - [4511] = {.lex_state = 205}, - [4512] = {.lex_state = 241}, - [4513] = {.lex_state = 203}, - [4514] = {.lex_state = 241}, - [4515] = {.lex_state = 229}, - [4516] = {.lex_state = 203}, - [4517] = {.lex_state = 203}, - [4518] = {.lex_state = 203}, - [4519] = {.lex_state = 203}, - [4520] = {.lex_state = 203}, - [4521] = {.lex_state = 203}, - [4522] = {.lex_state = 203}, - [4523] = {.lex_state = 203}, - [4524] = {.lex_state = 203}, - [4525] = {.lex_state = 203}, - [4526] = {.lex_state = 203}, - [4527] = {.lex_state = 203}, - [4528] = {.lex_state = 203}, - [4529] = {.lex_state = 203}, - [4530] = {.lex_state = 203}, - [4531] = {.lex_state = 205}, - [4532] = {.lex_state = 203}, - [4533] = {.lex_state = 203}, - [4534] = {.lex_state = 203}, - [4535] = {.lex_state = 203}, - [4536] = {.lex_state = 205}, - [4537] = {.lex_state = 241}, - [4538] = {.lex_state = 203}, - [4539] = {.lex_state = 203}, - [4540] = {.lex_state = 203}, - [4541] = {.lex_state = 230}, - [4542] = {.lex_state = 203}, - [4543] = {.lex_state = 205}, - [4544] = {.lex_state = 203}, - [4545] = {.lex_state = 203}, - [4546] = {.lex_state = 205}, - [4547] = {.lex_state = 203}, - [4548] = {.lex_state = 203}, - [4549] = {.lex_state = 203}, - [4550] = {.lex_state = 230}, - [4551] = {.lex_state = 203}, - [4552] = {.lex_state = 203}, - [4553] = {.lex_state = 230}, - [4554] = {.lex_state = 230}, - [4555] = {.lex_state = 241}, - [4556] = {.lex_state = 205}, - [4557] = {.lex_state = 203}, - [4558] = {.lex_state = 230}, - [4559] = {.lex_state = 203}, - [4560] = {.lex_state = 242}, - [4561] = {.lex_state = 203}, - [4562] = {.lex_state = 203}, - [4563] = {.lex_state = 245}, - [4564] = {.lex_state = 230}, - [4565] = {.lex_state = 203}, - [4566] = {.lex_state = 203}, - [4567] = {.lex_state = 242}, - [4568] = {.lex_state = 205}, - [4569] = {.lex_state = 203}, - [4570] = {.lex_state = 205}, - [4571] = {.lex_state = 230}, - [4572] = {.lex_state = 205}, - [4573] = {.lex_state = 205}, - [4574] = {.lex_state = 205}, - [4575] = {.lex_state = 205}, - [4576] = {.lex_state = 205}, - [4577] = {.lex_state = 241}, - [4578] = {.lex_state = 230}, - [4579] = {.lex_state = 203}, - [4580] = {.lex_state = 203}, - [4581] = {.lex_state = 205}, - [4582] = {.lex_state = 203}, - [4583] = {.lex_state = 230}, - [4584] = {.lex_state = 203}, - [4585] = {.lex_state = 203}, - [4586] = {.lex_state = 230}, - [4587] = {.lex_state = 203}, - [4588] = {.lex_state = 203}, - [4589] = {.lex_state = 203}, - [4590] = {.lex_state = 203}, - [4591] = {.lex_state = 203}, - [4592] = {.lex_state = 205}, - [4593] = {.lex_state = 230}, - [4594] = {.lex_state = 203}, - [4595] = {.lex_state = 203}, - [4596] = {.lex_state = 230}, - [4597] = {.lex_state = 230}, - [4598] = {.lex_state = 244}, - [4599] = {.lex_state = 203}, - [4600] = {.lex_state = 230}, - [4601] = {.lex_state = 205}, - [4602] = {.lex_state = 230}, - [4603] = {.lex_state = 205}, - [4604] = {.lex_state = 241}, - [4605] = {.lex_state = 242}, - [4606] = {.lex_state = 205}, - [4607] = {.lex_state = 205}, - [4608] = {.lex_state = 205}, - [4609] = {.lex_state = 241}, - [4610] = {.lex_state = 230}, - [4611] = {.lex_state = 241}, - [4612] = {.lex_state = 230}, - [4613] = {.lex_state = 203}, - [4614] = {.lex_state = 241}, - [4615] = {.lex_state = 203}, - [4616] = {.lex_state = 203}, - [4617] = {.lex_state = 230}, - [4618] = {.lex_state = 230}, - [4619] = {.lex_state = 241}, - [4620] = {.lex_state = 205}, - [4621] = {.lex_state = 203}, - [4622] = {.lex_state = 241}, - [4623] = {.lex_state = 245}, - [4624] = {.lex_state = 241}, - [4625] = {.lex_state = 230}, - [4626] = {.lex_state = 203}, - [4627] = {.lex_state = 205}, - [4628] = {.lex_state = 203}, - [4629] = {.lex_state = 203}, - [4630] = {.lex_state = 203}, - [4631] = {.lex_state = 230}, - [4632] = {.lex_state = 203}, - [4633] = {.lex_state = 230}, - [4634] = {.lex_state = 205}, - [4635] = {.lex_state = 230}, - [4636] = {.lex_state = 203}, - [4637] = {.lex_state = 203}, - [4638] = {.lex_state = 205}, - [4639] = {.lex_state = 203}, - [4640] = {.lex_state = 205}, - [4641] = {.lex_state = 230}, - [4642] = {.lex_state = 203}, - [4643] = {.lex_state = 203}, - [4644] = {.lex_state = 203}, - [4645] = {.lex_state = 205}, - [4646] = {.lex_state = 241}, - [4647] = {.lex_state = 203}, - [4648] = {.lex_state = 230}, - [4649] = {.lex_state = 241}, - [4650] = {.lex_state = 203}, - [4651] = {.lex_state = 203}, - [4652] = {.lex_state = 230}, - [4653] = {.lex_state = 203}, - [4654] = {.lex_state = 244}, - [4655] = {.lex_state = 203}, - [4656] = {.lex_state = 241}, - [4657] = {.lex_state = 203}, - [4658] = {.lex_state = 208}, - [4659] = {.lex_state = 203}, - [4660] = {.lex_state = 203}, - [4661] = {.lex_state = 241}, - [4662] = {.lex_state = 241}, - [4663] = {.lex_state = 241}, - [4664] = {.lex_state = 241}, - [4665] = {.lex_state = 241}, - [4666] = {.lex_state = 241}, - [4667] = {.lex_state = 241}, - [4668] = {.lex_state = 241}, - [4669] = {.lex_state = 241}, - [4670] = {.lex_state = 241}, - [4671] = {.lex_state = 241}, - [4672] = {.lex_state = 241}, - [4673] = {.lex_state = 241}, - [4674] = {.lex_state = 204}, - [4675] = {.lex_state = 208}, - [4676] = {.lex_state = 205}, - [4677] = {.lex_state = 203}, - [4678] = {.lex_state = 242}, - [4679] = {.lex_state = 208}, - [4680] = {.lex_state = 230}, - [4681] = {.lex_state = 205}, - [4682] = {.lex_state = 203}, - [4683] = {.lex_state = 203}, - [4684] = {.lex_state = 203}, - [4685] = {.lex_state = 203}, - [4686] = {.lex_state = 203}, - [4687] = {.lex_state = 203}, - [4688] = {.lex_state = 203}, - [4689] = {.lex_state = 208}, - [4690] = {.lex_state = 203}, - [4691] = {.lex_state = 239}, - [4692] = {.lex_state = 203}, - [4693] = {.lex_state = 203}, - [4694] = {.lex_state = 203}, - [4695] = {.lex_state = 203}, - [4696] = {.lex_state = 203}, - [4697] = {.lex_state = 203}, - [4698] = {.lex_state = 203}, - [4699] = {.lex_state = 203}, - [4700] = {.lex_state = 203}, - [4701] = {.lex_state = 203}, - [4702] = {.lex_state = 203}, - [4703] = {.lex_state = 242}, - [4704] = {.lex_state = 203}, - [4705] = {.lex_state = 208}, - [4706] = {.lex_state = 205}, - [4707] = {.lex_state = 203}, - [4708] = {.lex_state = 203}, - [4709] = {.lex_state = 203}, - [4710] = {.lex_state = 203}, - [4711] = {.lex_state = 203}, - [4712] = {.lex_state = 203}, - [4713] = {.lex_state = 203}, - [4714] = {.lex_state = 203}, - [4715] = {.lex_state = 203}, - [4716] = {.lex_state = 208}, - [4717] = {.lex_state = 203}, - [4718] = {.lex_state = 203}, - [4719] = {.lex_state = 203}, - [4720] = {.lex_state = 203}, - [4721] = {.lex_state = 203}, - [4722] = {.lex_state = 203}, - [4723] = {.lex_state = 208}, - [4724] = {.lex_state = 203}, - [4725] = {.lex_state = 203}, - [4726] = {.lex_state = 203}, - [4727] = {.lex_state = 203}, - [4728] = {.lex_state = 240}, - [4729] = {.lex_state = 205}, - [4730] = {.lex_state = 203}, - [4731] = {.lex_state = 203}, - [4732] = {.lex_state = 203}, - [4733] = {.lex_state = 203}, - [4734] = {.lex_state = 203}, - [4735] = {.lex_state = 203}, - [4736] = {.lex_state = 203}, - [4737] = {.lex_state = 203}, - [4738] = {.lex_state = 203}, - [4739] = {.lex_state = 203}, - [4740] = {.lex_state = 203}, - [4741] = {.lex_state = 203}, - [4742] = {.lex_state = 203}, - [4743] = {.lex_state = 203}, - [4744] = {.lex_state = 203}, - [4745] = {.lex_state = 203}, - [4746] = {.lex_state = 203}, - [4747] = {.lex_state = 242}, - [4748] = {.lex_state = 232}, - [4749] = {.lex_state = 205}, - [4750] = {.lex_state = 203}, - [4751] = {.lex_state = 203}, - [4752] = {.lex_state = 203}, - [4753] = {.lex_state = 203}, - [4754] = {.lex_state = 203}, - [4755] = {.lex_state = 203}, - [4756] = {.lex_state = 203}, - [4757] = {.lex_state = 203}, - [4758] = {.lex_state = 203}, - [4759] = {.lex_state = 203}, - [4760] = {.lex_state = 203}, - [4761] = {.lex_state = 242}, - [4762] = {.lex_state = 203}, - [4763] = {.lex_state = 203}, - [4764] = {.lex_state = 203}, - [4765] = {.lex_state = 203}, - [4766] = {.lex_state = 203}, - [4767] = {.lex_state = 203}, - [4768] = {.lex_state = 203}, - [4769] = {.lex_state = 203}, - [4770] = {.lex_state = 203}, - [4771] = {.lex_state = 203}, - [4772] = {.lex_state = 203}, - [4773] = {.lex_state = 203}, - [4774] = {.lex_state = 203}, - [4775] = {.lex_state = 203}, - [4776] = {.lex_state = 203}, - [4777] = {.lex_state = 203}, - [4778] = {.lex_state = 203}, - [4779] = {.lex_state = 203}, - [4780] = {.lex_state = 203}, - [4781] = {.lex_state = 203}, - [4782] = {.lex_state = 203}, - [4783] = {.lex_state = 203}, - [4784] = {.lex_state = 203}, - [4785] = {.lex_state = 208}, - [4786] = {.lex_state = 208}, - [4787] = {.lex_state = 203}, - [4788] = {.lex_state = 208}, - [4789] = {.lex_state = 203}, - [4790] = {.lex_state = 203}, - [4791] = {.lex_state = 208}, - [4792] = {.lex_state = 203}, - [4793] = {.lex_state = 208}, - [4794] = {.lex_state = 208}, - [4795] = {.lex_state = 208}, - [4796] = {.lex_state = 208}, - [4797] = {.lex_state = 241}, - [4798] = {.lex_state = 241}, - [4799] = {.lex_state = 241}, - [4800] = {.lex_state = 241}, - [4801] = {.lex_state = 241}, - [4802] = {.lex_state = 241}, - [4803] = {.lex_state = 203}, - [4804] = {.lex_state = 203}, - [4805] = {.lex_state = 208}, - [4806] = {.lex_state = 203}, - [4807] = {.lex_state = 208}, - [4808] = {.lex_state = 208}, - [4809] = {.lex_state = 208}, - [4810] = {.lex_state = 203}, - [4811] = {.lex_state = 203}, - [4812] = {.lex_state = 203}, - [4813] = {.lex_state = 203}, - [4814] = {.lex_state = 208}, - [4815] = {.lex_state = 203}, - [4816] = {.lex_state = 242}, - [4817] = {.lex_state = 241}, - [4818] = {.lex_state = 203}, - [4819] = {.lex_state = 240}, - [4820] = {.lex_state = 240}, - [4821] = {.lex_state = 240}, - [4822] = {.lex_state = 203}, - [4823] = {.lex_state = 232}, - [4824] = {.lex_state = 203}, - [4825] = {.lex_state = 240}, - [4826] = {.lex_state = 203}, - [4827] = {.lex_state = 240}, - [4828] = {.lex_state = 240}, - [4829] = {.lex_state = 203}, - [4830] = {.lex_state = 203}, - [4831] = {.lex_state = 208}, - [4832] = {.lex_state = 203}, - [4833] = {.lex_state = 203}, - [4834] = {.lex_state = 203}, - [4835] = {.lex_state = 203}, - [4836] = {.lex_state = 203}, - [4837] = {.lex_state = 203}, - [4838] = {.lex_state = 203}, - [4839] = {.lex_state = 240}, - [4840] = {.lex_state = 240}, - [4841] = {.lex_state = 244}, - [4842] = {.lex_state = 241}, - [4843] = {.lex_state = 244}, - [4844] = {.lex_state = 242}, - [4845] = {.lex_state = 242}, - [4846] = {.lex_state = 242}, - [4847] = {.lex_state = 230}, - [4848] = {.lex_state = 230}, - [4849] = {.lex_state = 230}, - [4850] = {.lex_state = 230}, - [4851] = {.lex_state = 230}, - [4852] = {.lex_state = 242}, - [4853] = {.lex_state = 230}, - [4854] = {.lex_state = 242}, - [4855] = {.lex_state = 242}, - [4856] = {.lex_state = 242}, - [4857] = {.lex_state = 230}, - [4858] = {.lex_state = 194}, - [4859] = {.lex_state = 230}, - [4860] = {.lex_state = 203}, - [4861] = {.lex_state = 203}, - [4862] = {.lex_state = 242}, - [4863] = {.lex_state = 230}, - [4864] = {.lex_state = 242}, - [4865] = {.lex_state = 242}, - [4866] = {.lex_state = 242}, - [4867] = {.lex_state = 230}, - [4868] = {.lex_state = 230}, - [4869] = {.lex_state = 242}, - [4870] = {.lex_state = 242}, - [4871] = {.lex_state = 240}, - [4872] = {.lex_state = 230}, - [4873] = {.lex_state = 230}, - [4874] = {.lex_state = 230}, - [4875] = {.lex_state = 203}, - [4876] = {.lex_state = 230}, - [4877] = {.lex_state = 230}, - [4878] = {.lex_state = 230}, - [4879] = {.lex_state = 203}, - [4880] = {.lex_state = 230}, - [4881] = {.lex_state = 242}, - [4882] = {.lex_state = 242}, - [4883] = {.lex_state = 230}, - [4884] = {.lex_state = 206}, - [4885] = {.lex_state = 230}, - [4886] = {.lex_state = 230}, - [4887] = {.lex_state = 230}, - [4888] = {.lex_state = 230}, - [4889] = {.lex_state = 230}, - [4890] = {.lex_state = 230}, - [4891] = {.lex_state = 203}, - [4892] = {.lex_state = 242}, - [4893] = {.lex_state = 230}, - [4894] = {.lex_state = 230}, - [4895] = {.lex_state = 203}, - [4896] = {.lex_state = 203}, - [4897] = {.lex_state = 230}, - [4898] = {.lex_state = 203}, - [4899] = {.lex_state = 231}, - [4900] = {.lex_state = 230}, - [4901] = {.lex_state = 230}, - [4902] = {.lex_state = 203}, - [4903] = {.lex_state = 230}, - [4904] = {.lex_state = 230}, - [4905] = {.lex_state = 230}, - [4906] = {.lex_state = 242}, - [4907] = {.lex_state = 204}, - [4908] = {.lex_state = 242}, - [4909] = {.lex_state = 242}, - [4910] = {.lex_state = 242}, - [4911] = {.lex_state = 242}, - [4912] = {.lex_state = 242}, - [4913] = {.lex_state = 230}, - [4914] = {.lex_state = 230}, - [4915] = {.lex_state = 230}, - [4916] = {.lex_state = 230}, - [4917] = {.lex_state = 230}, - [4918] = {.lex_state = 241}, - [4919] = {.lex_state = 230}, - [4920] = {.lex_state = 240}, - [4921] = {.lex_state = 242}, - [4922] = {.lex_state = 242}, - [4923] = {.lex_state = 205}, - [4924] = {.lex_state = 242}, - [4925] = {.lex_state = 242}, - [4926] = {.lex_state = 242}, - [4927] = {.lex_state = 242}, - [4928] = {.lex_state = 242}, - [4929] = {.lex_state = 205}, - [4930] = {.lex_state = 203}, - [4931] = {.lex_state = 194}, - [4932] = {.lex_state = 242}, - [4933] = {.lex_state = 242}, - [4934] = {.lex_state = 205}, - [4935] = {.lex_state = 203}, - [4936] = {.lex_state = 242}, - [4937] = {.lex_state = 194}, - [4938] = {.lex_state = 241}, - [4939] = {.lex_state = 194}, - [4940] = {.lex_state = 242}, - [4941] = {.lex_state = 242}, - [4942] = {.lex_state = 203}, - [4943] = {.lex_state = 242}, - [4944] = {.lex_state = 242}, - [4945] = {.lex_state = 240}, - [4946] = {.lex_state = 242}, - [4947] = {.lex_state = 194}, - [4948] = {.lex_state = 240}, - [4949] = {.lex_state = 194}, - [4950] = {.lex_state = 240}, - [4951] = {.lex_state = 242}, - [4952] = {.lex_state = 242}, - [4953] = {.lex_state = 194}, - [4954] = {.lex_state = 242}, - [4955] = {.lex_state = 242}, - [4956] = {.lex_state = 242}, - [4957] = {.lex_state = 194}, - [4958] = {.lex_state = 241}, - [4959] = {.lex_state = 241}, - [4960] = {.lex_state = 240}, - [4961] = {.lex_state = 194}, - [4962] = {.lex_state = 239}, - [4963] = {.lex_state = 205}, - [4964] = {.lex_state = 203}, - [4965] = {.lex_state = 242}, - [4966] = {.lex_state = 242}, - [4967] = {.lex_state = 242}, - [4968] = {.lex_state = 242}, - [4969] = {.lex_state = 242}, - [4970] = {.lex_state = 242}, - [4971] = {.lex_state = 242}, - [4972] = {.lex_state = 242}, - [4973] = {.lex_state = 242}, - [4974] = {.lex_state = 194}, - [4975] = {.lex_state = 242}, - [4976] = {.lex_state = 242}, - [4977] = {.lex_state = 242}, - [4978] = {.lex_state = 242}, - [4979] = {.lex_state = 242}, - [4980] = {.lex_state = 242}, - [4981] = {.lex_state = 205}, - [4982] = {.lex_state = 242}, - [4983] = {.lex_state = 242}, - [4984] = {.lex_state = 203}, - [4985] = {.lex_state = 194}, - [4986] = {.lex_state = 240}, - [4987] = {.lex_state = 242}, - [4988] = {.lex_state = 203}, - [4989] = {.lex_state = 205}, - [4990] = {.lex_state = 194}, - [4991] = {.lex_state = 240}, - [4992] = {.lex_state = 203}, - [4993] = {.lex_state = 242}, - [4994] = {.lex_state = 241}, - [4995] = {.lex_state = 194}, - [4996] = {.lex_state = 242}, - [4997] = {.lex_state = 241}, - [4998] = {.lex_state = 241}, - [4999] = {.lex_state = 242}, - [5000] = {.lex_state = 239}, - [5001] = {.lex_state = 240}, - [5002] = {.lex_state = 241}, - [5003] = {.lex_state = 241}, - [5004] = {.lex_state = 241}, - [5005] = {.lex_state = 241}, - [5006] = {.lex_state = 242}, - [5007] = {.lex_state = 241}, - [5008] = {.lex_state = 242}, - [5009] = {.lex_state = 240}, - [5010] = {.lex_state = 241}, - [5011] = {.lex_state = 240}, - [5012] = {.lex_state = 240}, - [5013] = {.lex_state = 240}, - [5014] = {.lex_state = 242}, - [5015] = {.lex_state = 204}, - [5016] = {.lex_state = 203}, - [5017] = {.lex_state = 203}, - [5018] = {.lex_state = 241}, - [5019] = {.lex_state = 240}, - [5020] = {.lex_state = 239}, - [5021] = {.lex_state = 241}, - [5022] = {.lex_state = 194}, - [5023] = {.lex_state = 203}, - [5024] = {.lex_state = 203}, - [5025] = {.lex_state = 241}, - [5026] = {.lex_state = 241}, - [5027] = {.lex_state = 194}, - [5028] = {.lex_state = 239}, - [5029] = {.lex_state = 242}, - [5030] = {.lex_state = 242}, - [5031] = {.lex_state = 240}, - [5032] = {.lex_state = 241}, - [5033] = {.lex_state = 204}, - [5034] = {.lex_state = 240}, - [5035] = {.lex_state = 241}, - [5036] = {.lex_state = 240}, - [5037] = {.lex_state = 203}, - [5038] = {.lex_state = 194}, - [5039] = {.lex_state = 205}, - [5040] = {.lex_state = 205}, - [5041] = {.lex_state = 241}, - [5042] = {.lex_state = 230}, - [5043] = {.lex_state = 240}, - [5044] = {.lex_state = 241}, - [5045] = {.lex_state = 242}, - [5046] = {.lex_state = 208}, - [5047] = {.lex_state = 230}, - [5048] = {.lex_state = 203}, - [5049] = {.lex_state = 241}, - [5050] = {.lex_state = 242}, - [5051] = {.lex_state = 241}, - [5052] = {.lex_state = 242}, - [5053] = {.lex_state = 242}, - [5054] = {.lex_state = 241}, - [5055] = {.lex_state = 241}, - [5056] = {.lex_state = 208}, - [5057] = {.lex_state = 241}, - [5058] = {.lex_state = 241}, - [5059] = {.lex_state = 242}, - [5060] = {.lex_state = 241}, - [5061] = {.lex_state = 194}, - [5062] = {.lex_state = 208}, - [5063] = {.lex_state = 195}, - [5064] = {.lex_state = 240}, - [5065] = {.lex_state = 195}, - [5066] = {.lex_state = 240}, - [5067] = {.lex_state = 241}, - [5068] = {.lex_state = 242}, - [5069] = {.lex_state = 208}, - [5070] = {.lex_state = 241}, - [5071] = {.lex_state = 195}, - [5072] = {.lex_state = 241}, - [5073] = {.lex_state = 195}, - [5074] = {.lex_state = 240}, - [5075] = {.lex_state = 241}, - [5076] = {.lex_state = 240}, - [5077] = {.lex_state = 208}, - [5078] = {.lex_state = 241}, - [5079] = {.lex_state = 241}, - [5080] = {.lex_state = 241}, - [5081] = {.lex_state = 241}, - [5082] = {.lex_state = 241}, - [5083] = {.lex_state = 208}, - [5084] = {.lex_state = 195}, - [5085] = {.lex_state = 241}, - [5086] = {.lex_state = 195}, - [5087] = {.lex_state = 241}, - [5088] = {.lex_state = 208}, - [5089] = {.lex_state = 241}, - [5090] = {.lex_state = 240}, - [5091] = {.lex_state = 241}, - [5092] = {.lex_state = 241}, - [5093] = {.lex_state = 242}, - [5094] = {.lex_state = 241}, - [5095] = {.lex_state = 241}, - [5096] = {.lex_state = 241}, - [5097] = {.lex_state = 208}, - [5098] = {.lex_state = 241}, - [5099] = {.lex_state = 208}, - [5100] = {.lex_state = 241}, - [5101] = {.lex_state = 241}, - [5102] = {.lex_state = 208}, - [5103] = {.lex_state = 242}, - [5104] = {.lex_state = 242}, - [5105] = {.lex_state = 195}, - [5106] = {.lex_state = 208}, - [5107] = {.lex_state = 208}, - [5108] = {.lex_state = 241}, - [5109] = {.lex_state = 241}, - [5110] = {.lex_state = 205}, - [5111] = {.lex_state = 208}, - [5112] = {.lex_state = 241}, - [5113] = {.lex_state = 208}, - [5114] = {.lex_state = 208}, - [5115] = {.lex_state = 241}, - [5116] = {.lex_state = 241}, - [5117] = {.lex_state = 205}, - [5118] = {.lex_state = 240}, - [5119] = {.lex_state = 205}, - [5120] = {.lex_state = 195}, - [5121] = {.lex_state = 205}, - [5122] = {.lex_state = 195}, - [5123] = {.lex_state = 240}, - [5124] = {.lex_state = 195}, - [5125] = {.lex_state = 241}, - [5126] = {.lex_state = 240}, - [5127] = {.lex_state = 241}, - [5128] = {.lex_state = 240}, - [5129] = {.lex_state = 241}, - [5130] = {.lex_state = 208}, - [5131] = {.lex_state = 241}, - [5132] = {.lex_state = 195}, - [5133] = {.lex_state = 208}, - [5134] = {.lex_state = 240}, - [5135] = {.lex_state = 208}, - [5136] = {.lex_state = 205}, - [5137] = {.lex_state = 241}, - [5138] = {.lex_state = 208}, - [5139] = {.lex_state = 240}, - [5140] = {.lex_state = 240}, - [5141] = {.lex_state = 194}, - [5142] = {.lex_state = 241}, - [5143] = {.lex_state = 241}, - [5144] = {.lex_state = 241}, - [5145] = {.lex_state = 205}, - [5146] = {.lex_state = 241}, - [5147] = {.lex_state = 205}, - [5148] = {.lex_state = 241}, - [5149] = {.lex_state = 241}, - [5150] = {.lex_state = 195}, - [5151] = {.lex_state = 241}, - [5152] = {.lex_state = 241}, - [5153] = {.lex_state = 241}, - [5154] = {.lex_state = 241}, - [5155] = {.lex_state = 208}, - [5156] = {.lex_state = 195}, - [5157] = {.lex_state = 195}, - [5158] = {.lex_state = 195}, - [5159] = {.lex_state = 195}, - [5160] = {.lex_state = 195}, - [5161] = {.lex_state = 195}, - [5162] = {.lex_state = 195}, - [5163] = {.lex_state = 195}, - [5164] = {.lex_state = 195}, - [5165] = {.lex_state = 195}, - [5166] = {.lex_state = 195}, - [5167] = {.lex_state = 195}, - [5168] = {.lex_state = 195}, - [5169] = {.lex_state = 195}, - [5170] = {.lex_state = 195}, - [5171] = {.lex_state = 195}, - [5172] = {.lex_state = 195}, - [5173] = {.lex_state = 195}, - [5174] = {.lex_state = 195}, - [5175] = {.lex_state = 195}, - [5176] = {.lex_state = 195}, - [5177] = {.lex_state = 195}, - [5178] = {.lex_state = 195}, - [5179] = {.lex_state = 195}, - [5180] = {.lex_state = 195}, - [5181] = {.lex_state = 195}, - [5182] = {.lex_state = 195}, - [5183] = {.lex_state = 195}, - [5184] = {.lex_state = 195}, - [5185] = {.lex_state = 195}, - [5186] = {.lex_state = 195}, - [5187] = {.lex_state = 195}, - [5188] = {.lex_state = 195}, - [5189] = {.lex_state = 195}, - [5190] = {.lex_state = 195}, - [5191] = {.lex_state = 195}, - [5192] = {.lex_state = 195}, - [5193] = {.lex_state = 195}, - [5194] = {.lex_state = 195}, - [5195] = {.lex_state = 195}, - [5196] = {.lex_state = 195}, - [5197] = {.lex_state = 195}, - [5198] = {.lex_state = 195}, - [5199] = {.lex_state = 195}, - [5200] = {.lex_state = 195}, - [5201] = {.lex_state = 195}, - [5202] = {.lex_state = 195}, - [5203] = {.lex_state = 195}, - [5204] = {.lex_state = 195}, - [5205] = {.lex_state = 195}, - [5206] = {.lex_state = 195}, - [5207] = {.lex_state = 195}, - [5208] = {.lex_state = 195}, - [5209] = {.lex_state = 195}, - [5210] = {.lex_state = 195}, - [5211] = {.lex_state = 195}, - [5212] = {.lex_state = 195}, - [5213] = {.lex_state = 195}, - [5214] = {.lex_state = 195}, - [5215] = {.lex_state = 240}, - [5216] = {.lex_state = 240}, - [5217] = {.lex_state = 242}, - [5218] = {.lex_state = 242}, - [5219] = {.lex_state = 240}, - [5220] = {.lex_state = 240}, - [5221] = {.lex_state = 195}, - [5222] = {.lex_state = 195}, - [5223] = {.lex_state = 195}, - [5224] = {.lex_state = 195}, - [5225] = {.lex_state = 195}, - [5226] = {.lex_state = 195}, - [5227] = {.lex_state = 195}, - [5228] = {.lex_state = 195}, - [5229] = {.lex_state = 195}, - [5230] = {.lex_state = 195}, - [5231] = {.lex_state = 195}, - [5232] = {.lex_state = 195}, - [5233] = {.lex_state = 195}, - [5234] = {.lex_state = 195}, - [5235] = {.lex_state = 195}, - [5236] = {.lex_state = 241}, - [5237] = {.lex_state = 195}, - [5238] = {.lex_state = 195}, - [5239] = {.lex_state = 195}, - [5240] = {.lex_state = 195}, - [5241] = {.lex_state = 195}, - [5242] = {.lex_state = 195}, - [5243] = {.lex_state = 195}, - [5244] = {.lex_state = 195}, - [5245] = {.lex_state = 195}, - [5246] = {.lex_state = 195}, - [5247] = {.lex_state = 195}, - [5248] = {.lex_state = 195}, - [5249] = {.lex_state = 195}, - [5250] = {.lex_state = 195}, - [5251] = {.lex_state = 195}, - [5252] = {.lex_state = 195}, - [5253] = {.lex_state = 195}, - [5254] = {.lex_state = 195}, - [5255] = {.lex_state = 195}, - [5256] = {.lex_state = 208}, - [5257] = {.lex_state = 208}, - [5258] = {.lex_state = 195}, - [5259] = {.lex_state = 195}, - [5260] = {.lex_state = 195}, - [5261] = {.lex_state = 208}, - [5262] = {.lex_state = 208}, - [5263] = {.lex_state = 195}, - [5264] = {.lex_state = 195}, - [5265] = {.lex_state = 195}, - [5266] = {.lex_state = 208}, - [5267] = {.lex_state = 208}, - [5268] = {.lex_state = 239}, - [5269] = {.lex_state = 208}, - [5270] = {.lex_state = 195}, - [5271] = {.lex_state = 208}, - [5272] = {.lex_state = 208}, - [5273] = {.lex_state = 195}, - [5274] = {.lex_state = 208}, - [5275] = {.lex_state = 208}, - [5276] = {.lex_state = 208}, - [5277] = {.lex_state = 208}, - [5278] = {.lex_state = 195}, - [5279] = {.lex_state = 195}, - [5280] = {.lex_state = 208}, - [5281] = {.lex_state = 208}, - [5282] = {.lex_state = 208}, - [5283] = {.lex_state = 208}, - [5284] = {.lex_state = 208}, - [5285] = {.lex_state = 208}, - [5286] = {.lex_state = 208}, - [5287] = {.lex_state = 195}, - [5288] = {.lex_state = 208}, - [5289] = {.lex_state = 195}, - [5290] = {.lex_state = 208}, - [5291] = {.lex_state = 208}, - [5292] = {.lex_state = 195}, - [5293] = {.lex_state = 240}, - [5294] = {.lex_state = 240}, - [5295] = {.lex_state = 208}, - [5296] = {.lex_state = 208}, - [5297] = {.lex_state = 208}, - [5298] = {.lex_state = 239}, - [5299] = {.lex_state = 208}, - [5300] = {.lex_state = 208}, - [5301] = {.lex_state = 208}, - [5302] = {.lex_state = 195}, - [5303] = {.lex_state = 195}, - [5304] = {.lex_state = 240}, - [5305] = {.lex_state = 240}, - [5306] = {.lex_state = 208}, - [5307] = {.lex_state = 208}, - [5308] = {.lex_state = 195}, - [5309] = {.lex_state = 240}, - [5310] = {.lex_state = 240}, - [5311] = {.lex_state = 208}, - [5312] = {.lex_state = 195}, - [5313] = {.lex_state = 195}, - [5314] = {.lex_state = 208}, - [5315] = {.lex_state = 195}, - [5316] = {.lex_state = 195}, - [5317] = {.lex_state = 208}, - [5318] = {.lex_state = 208}, - [5319] = {.lex_state = 208}, - [5320] = {.lex_state = 195}, - [5321] = {.lex_state = 240}, - [5322] = {.lex_state = 208}, - [5323] = {.lex_state = 208}, - [5324] = {.lex_state = 195}, - [5325] = {.lex_state = 208}, - [5326] = {.lex_state = 208}, - [5327] = {.lex_state = 208}, - [5328] = {.lex_state = 208}, - [5329] = {.lex_state = 208}, - [5330] = {.lex_state = 208}, - [5331] = {.lex_state = 208}, - [5332] = {.lex_state = 208}, - [5333] = {.lex_state = 208}, - [5334] = {.lex_state = 208}, - [5335] = {.lex_state = 195}, - [5336] = {.lex_state = 195}, - [5337] = {.lex_state = 240}, - [5338] = {.lex_state = 208}, - [5339] = {.lex_state = 195}, - [5340] = {.lex_state = 208}, - [5341] = {.lex_state = 208}, - [5342] = {.lex_state = 195}, - [5343] = {.lex_state = 195}, - [5344] = {.lex_state = 208}, - [5345] = {.lex_state = 208}, - [5346] = {.lex_state = 208}, - [5347] = {.lex_state = 208}, - [5348] = {.lex_state = 208}, - [5349] = {.lex_state = 195}, - [5350] = {.lex_state = 195}, - [5351] = {.lex_state = 203}, - [5352] = {.lex_state = 242}, - [5353] = {.lex_state = 197}, - [5354] = {.lex_state = 197}, - [5355] = {.lex_state = 208}, - [5356] = {.lex_state = 197}, - [5357] = {.lex_state = 197}, - [5358] = {.lex_state = 197}, - [5359] = {.lex_state = 197}, - [5360] = {.lex_state = 203}, - [5361] = {.lex_state = 203}, - [5362] = {.lex_state = 203}, - [5363] = {.lex_state = 203}, - [5364] = {.lex_state = 203}, - [5365] = {.lex_state = 203}, - [5366] = {.lex_state = 242}, - [5367] = {.lex_state = 203}, - [5368] = {.lex_state = 208}, - [5369] = {.lex_state = 203}, - [5370] = {.lex_state = 203}, - [5371] = {.lex_state = 203}, - [5372] = {.lex_state = 195}, - [5373] = {.lex_state = 203}, - [5374] = {.lex_state = 203}, - [5375] = {.lex_state = 203}, - [5376] = {.lex_state = 203}, - [5377] = {.lex_state = 203}, - [5378] = {.lex_state = 203}, - [5379] = {.lex_state = 203}, - [5380] = {.lex_state = 203}, - [5381] = {.lex_state = 208}, - [5382] = {.lex_state = 203}, - [5383] = {.lex_state = 203}, - [5384] = {.lex_state = 197}, - [5385] = {.lex_state = 203}, - [5386] = {.lex_state = 203}, - [5387] = {.lex_state = 203}, - [5388] = {.lex_state = 203}, - [5389] = {.lex_state = 203}, - [5390] = {.lex_state = 203}, - [5391] = {.lex_state = 203}, - [5392] = {.lex_state = 203}, - [5393] = {.lex_state = 195}, - [5394] = {.lex_state = 203}, - [5395] = {.lex_state = 203}, - [5396] = {.lex_state = 203}, - [5397] = {.lex_state = 203}, - [5398] = {.lex_state = 203}, - [5399] = {.lex_state = 203}, - [5400] = {.lex_state = 203}, - [5401] = {.lex_state = 203}, - [5402] = {.lex_state = 242}, - [5403] = {.lex_state = 203}, - [5404] = {.lex_state = 205}, - [5405] = {.lex_state = 205}, - [5406] = {.lex_state = 208}, - [5407] = {.lex_state = 208}, - [5408] = {.lex_state = 197}, - [5409] = {.lex_state = 208}, - [5410] = {.lex_state = 208}, - [5411] = {.lex_state = 208}, - [5412] = {.lex_state = 208}, - [5413] = {.lex_state = 208}, - [5414] = {.lex_state = 208}, - [5415] = {.lex_state = 208}, - [5416] = {.lex_state = 208}, - [5417] = {.lex_state = 208}, - [5418] = {.lex_state = 208}, - [5419] = {.lex_state = 208}, - [5420] = {.lex_state = 208}, - [5421] = {.lex_state = 203}, - [5422] = {.lex_state = 242}, - [5423] = {.lex_state = 242}, - [5424] = {.lex_state = 203}, - [5425] = {.lex_state = 203}, - [5426] = {.lex_state = 203}, - [5427] = {.lex_state = 242}, - [5428] = {.lex_state = 203}, - [5429] = {.lex_state = 242}, - [5430] = {.lex_state = 242}, - [5431] = {.lex_state = 240}, - [5432] = {.lex_state = 240}, - [5433] = {.lex_state = 242}, - [5434] = {.lex_state = 242}, - [5435] = {.lex_state = 240}, - [5436] = {.lex_state = 242}, - [5437] = {.lex_state = 242}, - [5438] = {.lex_state = 242}, - [5439] = {.lex_state = 242}, - [5440] = {.lex_state = 240}, - [5441] = {.lex_state = 241}, - [5442] = {.lex_state = 242}, - [5443] = {.lex_state = 240}, - [5444] = {.lex_state = 242}, - [5445] = {.lex_state = 242}, - [5446] = {.lex_state = 240}, - [5447] = {.lex_state = 242}, - [5448] = {.lex_state = 240}, - [5449] = {.lex_state = 240}, - [5450] = {.lex_state = 208}, - [5451] = {.lex_state = 195}, - [5452] = {.lex_state = 195}, - [5453] = {.lex_state = 241}, - [5454] = {.lex_state = 240}, - [5455] = {.lex_state = 240}, - [5456] = {.lex_state = 195}, - [5457] = {.lex_state = 195}, - [5458] = {.lex_state = 195}, - [5459] = {.lex_state = 239}, - [5460] = {.lex_state = 195}, - [5461] = {.lex_state = 195}, - [5462] = {.lex_state = 195}, - [5463] = {.lex_state = 195}, - [5464] = {.lex_state = 240}, - [5465] = {.lex_state = 195}, - [5466] = {.lex_state = 195}, - [5467] = {.lex_state = 240}, - [5468] = {.lex_state = 240}, - [5469] = {.lex_state = 240}, - [5470] = {.lex_state = 240}, - [5471] = {.lex_state = 240}, - [5472] = {.lex_state = 195}, - [5473] = {.lex_state = 195}, - [5474] = {.lex_state = 240}, - [5475] = {.lex_state = 240}, - [5476] = {.lex_state = 240}, - [5477] = {.lex_state = 240}, - [5478] = {.lex_state = 240}, - [5479] = {.lex_state = 240}, - [5480] = {.lex_state = 195}, - [5481] = {.lex_state = 195}, - [5482] = {.lex_state = 195}, - [5483] = {.lex_state = 240}, - [5484] = {.lex_state = 195}, - [5485] = {.lex_state = 240}, - [5486] = {.lex_state = 195}, - [5487] = {.lex_state = 240}, - [5488] = {.lex_state = 203}, - [5489] = {.lex_state = 208}, - [5490] = {.lex_state = 240}, - [5491] = {.lex_state = 208}, - [5492] = {.lex_state = 208}, - [5493] = {.lex_state = 240}, - [5494] = {.lex_state = 240}, - [5495] = {.lex_state = 240}, - [5496] = {.lex_state = 240}, - [5497] = {.lex_state = 208}, - [5498] = {.lex_state = 240}, - [5499] = {.lex_state = 240}, - [5500] = {.lex_state = 195}, - [5501] = {.lex_state = 195}, - [5502] = {.lex_state = 195}, - [5503] = {.lex_state = 251}, - [5504] = {.lex_state = 251}, - [5505] = {.lex_state = 251}, - [5506] = {.lex_state = 251}, - [5507] = {.lex_state = 240}, - [5508] = {.lex_state = 240}, - [5509] = {.lex_state = 240}, - [5510] = {.lex_state = 240}, - [5511] = {.lex_state = 242}, - [5512] = {.lex_state = 195}, - [5513] = {.lex_state = 195}, - [5514] = {.lex_state = 242}, - [5515] = {.lex_state = 240}, - [5516] = {.lex_state = 240}, - [5517] = {.lex_state = 251}, - [5518] = {.lex_state = 240}, - [5519] = {.lex_state = 240}, - [5520] = {.lex_state = 195}, - [5521] = {.lex_state = 195}, - [5522] = {.lex_state = 195}, - [5523] = {.lex_state = 195}, - [5524] = {.lex_state = 240}, - [5525] = {.lex_state = 251}, - [5526] = {.lex_state = 240}, - [5527] = {.lex_state = 251}, - [5528] = {.lex_state = 203}, - [5529] = {.lex_state = 195}, - [5530] = {.lex_state = 195}, - [5531] = {.lex_state = 240}, - [5532] = {.lex_state = 195}, - [5533] = {.lex_state = 195}, - [5534] = {.lex_state = 194}, - [5535] = {.lex_state = 197}, - [5536] = {.lex_state = 197}, - [5537] = {.lex_state = 197}, - [5538] = {.lex_state = 197}, - [5539] = {.lex_state = 197}, - [5540] = {.lex_state = 197}, - [5541] = {.lex_state = 242}, - [5542] = {.lex_state = 195}, - [5543] = {.lex_state = 194}, - [5544] = {.lex_state = 240}, - [5545] = {.lex_state = 240}, - [5546] = {.lex_state = 197}, - [5547] = {.lex_state = 197}, - [5548] = {.lex_state = 195}, - [5549] = {.lex_state = 197}, - [5550] = {.lex_state = 242}, - [5551] = {.lex_state = 197}, - [5552] = {.lex_state = 242}, - [5553] = {.lex_state = 197}, - [5554] = {.lex_state = 197}, - [5555] = {.lex_state = 195}, - [5556] = {.lex_state = 195}, - [5557] = {.lex_state = 240}, - [5558] = {.lex_state = 240}, - [5559] = {.lex_state = 195}, - [5560] = {.lex_state = 195}, - [5561] = {.lex_state = 240}, - [5562] = {.lex_state = 195}, - [5563] = {.lex_state = 242}, - [5564] = {.lex_state = 195}, - [5565] = {.lex_state = 240}, - [5566] = {.lex_state = 195}, - [5567] = {.lex_state = 240}, - [5568] = {.lex_state = 240}, - [5569] = {.lex_state = 240}, - [5570] = {.lex_state = 195}, - [5571] = {.lex_state = 240}, - [5572] = {.lex_state = 195}, - [5573] = {.lex_state = 195}, - [5574] = {.lex_state = 240}, - [5575] = {.lex_state = 240}, - [5576] = {.lex_state = 240}, - [5577] = {.lex_state = 240}, - [5578] = {.lex_state = 195}, - [5579] = {.lex_state = 251}, - [5580] = {.lex_state = 240}, - [5581] = {.lex_state = 251}, - [5582] = {.lex_state = 241}, - [5583] = {.lex_state = 251}, - [5584] = {.lex_state = 251}, - [5585] = {.lex_state = 251}, - [5586] = {.lex_state = 251}, - [5587] = {.lex_state = 240}, - [5588] = {.lex_state = 251}, - [5589] = {.lex_state = 251}, - [5590] = {.lex_state = 251}, - [5591] = {.lex_state = 251}, - [5592] = {.lex_state = 251}, - [5593] = {.lex_state = 251}, - [5594] = {.lex_state = 251}, - [5595] = {.lex_state = 251}, - [5596] = {.lex_state = 251}, - [5597] = {.lex_state = 240}, - [5598] = {.lex_state = 251}, - [5599] = {.lex_state = 251}, - [5600] = {.lex_state = 194}, - [5601] = {.lex_state = 251}, - [5602] = {.lex_state = 251}, - [5603] = {.lex_state = 251}, - [5604] = {.lex_state = 240}, - [5605] = {.lex_state = 242}, - [5606] = {.lex_state = 251}, - [5607] = {.lex_state = 240}, - [5608] = {.lex_state = 251}, - [5609] = {.lex_state = 251}, - [5610] = {.lex_state = 251}, - [5611] = {.lex_state = 251}, - [5612] = {.lex_state = 251}, - [5613] = {.lex_state = 240}, - [5614] = {.lex_state = 251}, - [5615] = {.lex_state = 209}, - [5616] = {.lex_state = 240}, - [5617] = {.lex_state = 251}, - [5618] = {.lex_state = 240}, - [5619] = {.lex_state = 251}, - [5620] = {.lex_state = 240}, - [5621] = {.lex_state = 242}, - [5622] = {.lex_state = 194}, - [5623] = {.lex_state = 242}, - [5624] = {.lex_state = 240}, - [5625] = {.lex_state = 251}, - [5626] = {.lex_state = 240}, - [5627] = {.lex_state = 251}, - [5628] = {.lex_state = 251}, - [5629] = {.lex_state = 251}, - [5630] = {.lex_state = 240}, - [5631] = {.lex_state = 251}, - [5632] = {.lex_state = 251}, - [5633] = {.lex_state = 251}, - [5634] = {.lex_state = 251}, - [5635] = {.lex_state = 240}, - [5636] = {.lex_state = 251}, - [5637] = {.lex_state = 251}, - [5638] = {.lex_state = 240}, - [5639] = {.lex_state = 251}, - [5640] = {.lex_state = 251}, - [5641] = {.lex_state = 251}, - [5642] = {.lex_state = 240}, - [5643] = {.lex_state = 194}, - [5644] = {.lex_state = 251}, - [5645] = {.lex_state = 251}, - [5646] = {.lex_state = 240}, - [5647] = {.lex_state = 195}, - [5648] = {.lex_state = 195}, - [5649] = {.lex_state = 195}, - [5650] = {.lex_state = 194}, - [5651] = {.lex_state = 195}, - [5652] = {.lex_state = 195}, - [5653] = {.lex_state = 195}, - [5654] = {.lex_state = 195}, - [5655] = {.lex_state = 195}, - [5656] = {.lex_state = 195}, - [5657] = {.lex_state = 195}, - [5658] = {.lex_state = 195}, - [5659] = {.lex_state = 195}, - [5660] = {.lex_state = 195}, - [5661] = {.lex_state = 240}, - [5662] = {.lex_state = 195}, - [5663] = {.lex_state = 195}, - [5664] = {.lex_state = 209}, - [5665] = {.lex_state = 195}, - [5666] = {.lex_state = 195}, - [5667] = {.lex_state = 195}, - [5668] = {.lex_state = 209}, - [5669] = {.lex_state = 240}, - [5670] = {.lex_state = 195}, - [5671] = {.lex_state = 195}, - [5672] = {.lex_state = 195}, - [5673] = {.lex_state = 195}, - [5674] = {.lex_state = 195}, - [5675] = {.lex_state = 195}, - [5676] = {.lex_state = 195}, - [5677] = {.lex_state = 195}, - [5678] = {.lex_state = 195}, - [5679] = {.lex_state = 195}, - [5680] = {.lex_state = 195}, - [5681] = {.lex_state = 195}, - [5682] = {.lex_state = 195}, - [5683] = {.lex_state = 195}, - [5684] = {.lex_state = 195}, - [5685] = {.lex_state = 195}, - [5686] = {.lex_state = 242}, - [5687] = {.lex_state = 195}, - [5688] = {.lex_state = 195}, - [5689] = {.lex_state = 195}, - [5690] = {.lex_state = 195}, - [5691] = {.lex_state = 195}, - [5692] = {.lex_state = 195}, - [5693] = {.lex_state = 194}, - [5694] = {.lex_state = 240}, - [5695] = {.lex_state = 195}, - [5696] = {.lex_state = 195}, - [5697] = {.lex_state = 195}, - [5698] = {.lex_state = 195}, - [5699] = {.lex_state = 195}, - [5700] = {.lex_state = 195}, - [5701] = {.lex_state = 195}, - [5702] = {.lex_state = 195}, - [5703] = {.lex_state = 195}, - [5704] = {.lex_state = 195}, - [5705] = {.lex_state = 195}, - [5706] = {.lex_state = 195}, - [5707] = {.lex_state = 195}, - [5708] = {.lex_state = 195}, - [5709] = {.lex_state = 195}, - [5710] = {.lex_state = 195}, - [5711] = {.lex_state = 195}, - [5712] = {.lex_state = 195}, - [5713] = {.lex_state = 195}, - [5714] = {.lex_state = 195}, - [5715] = {.lex_state = 195}, - [5716] = {.lex_state = 195}, - [5717] = {.lex_state = 195}, - [5718] = {.lex_state = 195}, - [5719] = {.lex_state = 195}, - [5720] = {.lex_state = 195}, - [5721] = {.lex_state = 195}, - [5722] = {.lex_state = 195}, - [5723] = {.lex_state = 195}, - [5724] = {.lex_state = 195}, - [5725] = {.lex_state = 195}, - [5726] = {.lex_state = 195}, - [5727] = {.lex_state = 195}, - [5728] = {.lex_state = 195}, - [5729] = {.lex_state = 242}, - [5730] = {.lex_state = 240}, - [5731] = {.lex_state = 242}, - [5732] = {.lex_state = 242}, - [5733] = {.lex_state = 242}, - [5734] = {.lex_state = 242}, - [5735] = {.lex_state = 195}, - [5736] = {.lex_state = 195}, - [5737] = {.lex_state = 195}, - [5738] = {.lex_state = 195}, - [5739] = {.lex_state = 195}, - [5740] = {.lex_state = 195}, - [5741] = {.lex_state = 242}, - [5742] = {.lex_state = 195}, - [5743] = {.lex_state = 195}, - [5744] = {.lex_state = 195}, - [5745] = {.lex_state = 195}, - [5746] = {.lex_state = 242}, - [5747] = {.lex_state = 240}, - [5748] = {.lex_state = 242}, - [5749] = {.lex_state = 242}, - [5750] = {.lex_state = 195}, - [5751] = {.lex_state = 178}, - [5752] = {.lex_state = 242}, - [5753] = {.lex_state = 194}, - [5754] = {.lex_state = 195}, - [5755] = {.lex_state = 195}, - [5756] = {.lex_state = 242}, - [5757] = {.lex_state = 195}, - [5758] = {.lex_state = 242}, - [5759] = {.lex_state = 242}, - [5760] = {.lex_state = 242}, - [5761] = {.lex_state = 194}, - [5762] = {.lex_state = 242}, - [5763] = {.lex_state = 195}, - [5764] = {.lex_state = 195}, - [5765] = {.lex_state = 209}, - [5766] = {.lex_state = 242}, - [5767] = {.lex_state = 195}, - [5768] = {.lex_state = 242}, - [5769] = {.lex_state = 242}, - [5770] = {.lex_state = 242}, - [5771] = {.lex_state = 242}, - [5772] = {.lex_state = 242}, - [5773] = {.lex_state = 195}, - [5774] = {.lex_state = 242}, - [5775] = {.lex_state = 195}, - [5776] = {.lex_state = 242}, - [5777] = {.lex_state = 194}, - [5778] = {.lex_state = 242}, - [5779] = {.lex_state = 242}, - [5780] = {.lex_state = 242}, - [5781] = {.lex_state = 195}, - [5782] = {.lex_state = 195}, - [5783] = {.lex_state = 195}, - [5784] = {.lex_state = 242}, - [5785] = {.lex_state = 242}, - [5786] = {.lex_state = 240}, - [5787] = {.lex_state = 242}, - [5788] = {.lex_state = 242}, - [5789] = {.lex_state = 195}, - [5790] = {.lex_state = 242}, - [5791] = {.lex_state = 242}, - [5792] = {.lex_state = 242}, - [5793] = {.lex_state = 242}, - [5794] = {.lex_state = 178}, - [5795] = {.lex_state = 242}, - [5796] = {.lex_state = 242}, - [5797] = {.lex_state = 195}, - [5798] = {.lex_state = 195}, - [5799] = {.lex_state = 195}, - [5800] = {.lex_state = 195}, - [5801] = {.lex_state = 194}, - [5802] = {.lex_state = 178}, - [5803] = {.lex_state = 99}, - [5804] = {.lex_state = 240}, - [5805] = {.lex_state = 246}, - [5806] = {.lex_state = 209}, - [5807] = {.lex_state = 209}, - [5808] = {.lex_state = 208}, - [5809] = {.lex_state = 194}, - [5810] = {.lex_state = 209}, - [5811] = {.lex_state = 194}, - [5812] = {.lex_state = 209}, - [5813] = {.lex_state = 178}, - [5814] = {.lex_state = 194}, - [5815] = {.lex_state = 246}, - [5816] = {.lex_state = 194}, - [5817] = {.lex_state = 178}, - [5818] = {.lex_state = 195}, - [5819] = {.lex_state = 209}, - [5820] = {.lex_state = 242}, - [5821] = {.lex_state = 241}, - [5822] = {.lex_state = 195}, - [5823] = {.lex_state = 195}, - [5824] = {.lex_state = 195}, - [5825] = {.lex_state = 195}, - [5826] = {.lex_state = 209}, - [5827] = {.lex_state = 178}, - [5828] = {.lex_state = 246}, - [5829] = {.lex_state = 208}, - [5830] = {.lex_state = 209}, - [5831] = {.lex_state = 246}, - [5832] = {.lex_state = 178}, - [5833] = {.lex_state = 209}, - [5834] = {.lex_state = 209}, - [5835] = {.lex_state = 208}, - [5836] = {.lex_state = 246}, - [5837] = {.lex_state = 242}, - [5838] = {.lex_state = 195}, - [5839] = {.lex_state = 178}, - [5840] = {.lex_state = 178}, - [5841] = {.lex_state = 194}, - [5842] = {.lex_state = 194}, - [5843] = {.lex_state = 242}, - [5844] = {.lex_state = 195}, - [5845] = {.lex_state = 242}, - [5846] = {.lex_state = 195}, - [5847] = {.lex_state = 195}, - [5848] = {.lex_state = 242}, - [5849] = {.lex_state = 195}, - [5850] = {.lex_state = 203}, - [5851] = {.lex_state = 209}, - [5852] = {.lex_state = 209}, - [5853] = {.lex_state = 240}, - [5854] = {.lex_state = 240}, - [5855] = {.lex_state = 240}, - [5856] = {.lex_state = 240}, - [5857] = {.lex_state = 194}, - [5858] = {.lex_state = 246}, - [5859] = {.lex_state = 242}, - [5860] = {.lex_state = 246}, - [5861] = {.lex_state = 242}, - [5862] = {.lex_state = 242}, - [5863] = {.lex_state = 242}, - [5864] = {.lex_state = 178}, - [5865] = {.lex_state = 242}, - [5866] = {.lex_state = 242}, - [5867] = {.lex_state = 209}, - [5868] = {.lex_state = 209}, - [5869] = {.lex_state = 240}, - [5870] = {.lex_state = 240}, - [5871] = {.lex_state = 240}, - [5872] = {.lex_state = 178}, - [5873] = {.lex_state = 178}, - [5874] = {.lex_state = 178}, - [5875] = {.lex_state = 195}, - [5876] = {.lex_state = 178}, - [5877] = {.lex_state = 194}, - [5878] = {.lex_state = 246}, - [5879] = {.lex_state = 246}, - [5880] = {.lex_state = 246}, - [5881] = {.lex_state = 246}, - [5882] = {.lex_state = 178}, - [5883] = {.lex_state = 246}, - [5884] = {.lex_state = 178}, - [5885] = {.lex_state = 203}, - [5886] = {.lex_state = 246}, - [5887] = {.lex_state = 178}, - [5888] = {.lex_state = 195}, - [5889] = {.lex_state = 178}, - [5890] = {.lex_state = 178}, - [5891] = {.lex_state = 246}, - [5892] = {.lex_state = 178}, - [5893] = {.lex_state = 178}, - [5894] = {.lex_state = 208}, - [5895] = {.lex_state = 246}, - [5896] = {.lex_state = 209}, - [5897] = {.lex_state = 208}, - [5898] = {.lex_state = 246}, - [5899] = {.lex_state = 242}, - [5900] = {.lex_state = 178}, - [5901] = {.lex_state = 178}, - [5902] = {.lex_state = 241}, - [5903] = {.lex_state = 178}, - [5904] = {.lex_state = 178}, - [5905] = {.lex_state = 242}, - [5906] = {.lex_state = 178}, - [5907] = {.lex_state = 242}, - [5908] = {.lex_state = 178}, - [5909] = {.lex_state = 242}, - [5910] = {.lex_state = 242}, - [5911] = {.lex_state = 242}, - [5912] = {.lex_state = 242}, - [5913] = {.lex_state = 242}, - [5914] = {.lex_state = 178}, - [5915] = {.lex_state = 178}, - [5916] = {.lex_state = 242}, - [5917] = {.lex_state = 246}, - [5918] = {.lex_state = 208}, - [5919] = {.lex_state = 208}, - [5920] = {.lex_state = 246}, - [5921] = {.lex_state = 178}, - [5922] = {.lex_state = 208}, - [5923] = {.lex_state = 208}, - [5924] = {.lex_state = 178}, - [5925] = {.lex_state = 209}, - [5926] = {.lex_state = 194}, - [5927] = {.lex_state = 194}, - [5928] = {.lex_state = 178}, - [5929] = {.lex_state = 208}, - [5930] = {.lex_state = 246}, - [5931] = {.lex_state = 208}, - [5932] = {.lex_state = 246}, - [5933] = {.lex_state = 178}, - [5934] = {.lex_state = 209}, - [5935] = {.lex_state = 208}, - [5936] = {.lex_state = 208}, - [5937] = {.lex_state = 208}, - [5938] = {.lex_state = 208}, - [5939] = {.lex_state = 208}, - [5940] = {.lex_state = 208}, - [5941] = {.lex_state = 178}, - [5942] = {.lex_state = 209}, - [5943] = {.lex_state = 246}, - [5944] = {.lex_state = 246}, - [5945] = {.lex_state = 178}, - [5946] = {.lex_state = 194}, - [5947] = {.lex_state = 246}, - [5948] = {.lex_state = 178}, - [5949] = {.lex_state = 178}, - [5950] = {.lex_state = 178}, - [5951] = {.lex_state = 194}, - [5952] = {.lex_state = 209}, - [5953] = {.lex_state = 246}, - [5954] = {.lex_state = 178}, - [5955] = {.lex_state = 178}, - [5956] = {.lex_state = 178}, - [5957] = {.lex_state = 209}, - [5958] = {.lex_state = 246}, - [5959] = {.lex_state = 246}, - [5960] = {.lex_state = 209}, - [5961] = {.lex_state = 194}, - [5962] = {.lex_state = 194}, - [5963] = {.lex_state = 246}, - [5964] = {.lex_state = 246}, - [5965] = {.lex_state = 178}, - [5966] = {.lex_state = 208}, - [5967] = {.lex_state = 99}, - [5968] = {.lex_state = 242}, - [5969] = {.lex_state = 194}, - [5970] = {.lex_state = 99}, - [5971] = {.lex_state = 208}, - [5972] = {.lex_state = 99}, - [5973] = {.lex_state = 99}, - [5974] = {.lex_state = 99}, - [5975] = {.lex_state = 99}, - [5976] = {.lex_state = 99}, - [5977] = {.lex_state = 208}, - [5978] = {.lex_state = 209}, - [5979] = {.lex_state = 194}, - [5980] = {.lex_state = 242}, - [5981] = {.lex_state = 195}, - [5982] = {.lex_state = 195}, - [5983] = {.lex_state = 195}, - [5984] = {.lex_state = 195}, - [5985] = {.lex_state = 242}, - [5986] = {.lex_state = 240}, - [5987] = {.lex_state = 208}, - [5988] = {.lex_state = 195}, - [5989] = {.lex_state = 195}, - [5990] = {.lex_state = 195}, - [5991] = {.lex_state = 195}, - [5992] = {.lex_state = 208}, - [5993] = {.lex_state = 99}, - [5994] = {.lex_state = 242}, - [5995] = {.lex_state = 99}, - [5996] = {.lex_state = 242}, - [5997] = {.lex_state = 194}, - [5998] = {.lex_state = 99}, - [5999] = {.lex_state = 208}, - [6000] = {.lex_state = 99}, - [6001] = {.lex_state = 99}, - [6002] = {.lex_state = 242}, - [6003] = {.lex_state = 242}, - [6004] = {.lex_state = 242}, - [6005] = {.lex_state = 99}, - [6006] = {.lex_state = 242}, - [6007] = {.lex_state = 242}, - [6008] = {.lex_state = 99}, - [6009] = {.lex_state = 99}, - [6010] = {.lex_state = 208}, - [6011] = {.lex_state = 194}, - [6012] = {.lex_state = 195}, - [6013] = {.lex_state = 242}, - [6014] = {.lex_state = 250}, - [6015] = {.lex_state = 99}, - [6016] = {.lex_state = 242}, - [6017] = {.lex_state = 242}, - [6018] = {.lex_state = 240}, - [6019] = {.lex_state = 208}, - [6020] = {.lex_state = 99}, - [6021] = {.lex_state = 99}, - [6022] = {.lex_state = 99}, - [6023] = {.lex_state = 99}, - [6024] = {.lex_state = 99}, - [6025] = {.lex_state = 194}, - [6026] = {.lex_state = 99}, - [6027] = {.lex_state = 99}, - [6028] = {.lex_state = 208}, - [6029] = {.lex_state = 194}, - [6030] = {.lex_state = 208}, - [6031] = {.lex_state = 99}, - [6032] = {.lex_state = 99}, - [6033] = {.lex_state = 99}, - [6034] = {.lex_state = 241}, - [6035] = {.lex_state = 242}, - [6036] = {.lex_state = 99}, - [6037] = {.lex_state = 241}, - [6038] = {.lex_state = 240}, - [6039] = {.lex_state = 240}, - [6040] = {.lex_state = 209}, - [6041] = {.lex_state = 241}, - [6042] = {.lex_state = 242}, - [6043] = {.lex_state = 242}, - [6044] = {.lex_state = 208}, - [6045] = {.lex_state = 208}, - [6046] = {.lex_state = 242}, - [6047] = {.lex_state = 242}, - [6048] = {.lex_state = 195}, - [6049] = {.lex_state = 195}, - [6050] = {.lex_state = 99}, - [6051] = {.lex_state = 195}, - [6052] = {.lex_state = 99}, - [6053] = {.lex_state = 99}, - [6054] = {.lex_state = 242}, - [6055] = {.lex_state = 242}, - [6056] = {.lex_state = 194}, - [6057] = {.lex_state = 208}, - [6058] = {.lex_state = 99}, - [6059] = {.lex_state = 242}, - [6060] = {.lex_state = 99}, - [6061] = {.lex_state = 242}, - [6062] = {.lex_state = 195}, - [6063] = {.lex_state = 99}, - [6064] = {.lex_state = 195}, - [6065] = {.lex_state = 195}, - [6066] = {.lex_state = 241}, - [6067] = {.lex_state = 195}, - [6068] = {.lex_state = 240}, - [6069] = {.lex_state = 241}, - [6070] = {.lex_state = 242}, - [6071] = {.lex_state = 195}, - [6072] = {.lex_state = 242}, - [6073] = {.lex_state = 241}, - [6074] = {.lex_state = 195}, - [6075] = {.lex_state = 240}, - [6076] = {.lex_state = 242}, - [6077] = {.lex_state = 242}, - [6078] = {.lex_state = 240}, - [6079] = {.lex_state = 242}, - [6080] = {.lex_state = 244}, - [6081] = {.lex_state = 241}, - [6082] = {.lex_state = 241}, - [6083] = {.lex_state = 240}, - [6084] = {.lex_state = 241}, - [6085] = {.lex_state = 240}, - [6086] = {.lex_state = 242}, - [6087] = {.lex_state = 241}, - [6088] = {.lex_state = 240}, - [6089] = {.lex_state = 195}, - [6090] = {.lex_state = 240}, - [6091] = {.lex_state = 241}, - [6092] = {.lex_state = 240}, - [6093] = {.lex_state = 195}, - [6094] = {.lex_state = 241}, - [6095] = {.lex_state = 241}, - [6096] = {.lex_state = 240}, - [6097] = {.lex_state = 195}, - [6098] = {.lex_state = 241}, - [6099] = {.lex_state = 241}, - [6100] = {.lex_state = 195}, - [6101] = {.lex_state = 240}, - [6102] = {.lex_state = 244}, - [6103] = {.lex_state = 241}, - [6104] = {.lex_state = 241}, - [6105] = {.lex_state = 241}, - [6106] = {.lex_state = 240}, - [6107] = {.lex_state = 241}, - [6108] = {.lex_state = 240}, - [6109] = {.lex_state = 240}, - [6110] = {.lex_state = 241}, - [6111] = {.lex_state = 240}, - [6112] = {.lex_state = 241}, - [6113] = {.lex_state = 240}, - [6114] = {.lex_state = 241}, - [6115] = {.lex_state = 241}, - [6116] = {.lex_state = 240}, - [6117] = {.lex_state = 240}, - [6118] = {.lex_state = 240}, - [6119] = {.lex_state = 241}, - [6120] = {.lex_state = 241}, - [6121] = {.lex_state = 240}, - [6122] = {.lex_state = 195}, - [6123] = {.lex_state = 195}, - [6124] = {.lex_state = 241}, - [6125] = {.lex_state = 241}, - [6126] = {.lex_state = 241}, - [6127] = {.lex_state = 241}, - [6128] = {.lex_state = 241}, - [6129] = {.lex_state = 241}, - [6130] = {.lex_state = 241}, - [6131] = {.lex_state = 195}, - [6132] = {.lex_state = 205}, - [6133] = {.lex_state = 242}, - [6134] = {.lex_state = 195}, - [6135] = {.lex_state = 235}, - [6136] = {.lex_state = 195}, - [6137] = {.lex_state = 235}, - [6138] = {.lex_state = 194}, - [6139] = {.lex_state = 246}, - [6140] = {.lex_state = 246}, - [6141] = {.lex_state = 195}, - [6142] = {.lex_state = 242}, - [6143] = {.lex_state = 242}, - [6144] = {.lex_state = 240}, - [6145] = {.lex_state = 240}, - [6146] = {.lex_state = 235}, - [6147] = {.lex_state = 195}, - [6148] = {.lex_state = 175}, - [6149] = {.lex_state = 242}, - [6150] = {.lex_state = 194}, - [6151] = {.lex_state = 240}, - [6152] = {.lex_state = 242}, - [6153] = {.lex_state = 195}, - [6154] = {.lex_state = 195}, - [6155] = {.lex_state = 240}, - [6156] = {.lex_state = 194}, - [6157] = {.lex_state = 242}, - [6158] = {.lex_state = 242}, - [6159] = {.lex_state = 241}, - [6160] = {.lex_state = 241}, - [6161] = {.lex_state = 241}, - [6162] = {.lex_state = 241}, - [6163] = {.lex_state = 241}, - [6164] = {.lex_state = 241}, - [6165] = {.lex_state = 241}, - [6166] = {.lex_state = 241}, - [6167] = {.lex_state = 241}, - [6168] = {.lex_state = 242}, - [6169] = {.lex_state = 235}, - [6170] = {.lex_state = 194}, - [6171] = {.lex_state = 195}, - [6172] = {.lex_state = 242}, - [6173] = {.lex_state = 195}, - [6174] = {.lex_state = 199}, - [6175] = {.lex_state = 242}, - [6176] = {.lex_state = 242}, - [6177] = {.lex_state = 242}, - [6178] = {.lex_state = 195}, - [6179] = {.lex_state = 244}, - [6180] = {.lex_state = 199}, - [6181] = {.lex_state = 208}, - [6182] = {.lex_state = 195}, - [6183] = {.lex_state = 242}, - [6184] = {.lex_state = 242}, - [6185] = {.lex_state = 242}, - [6186] = {.lex_state = 242}, - [6187] = {.lex_state = 244}, - [6188] = {.lex_state = 208}, - [6189] = {.lex_state = 242}, - [6190] = {.lex_state = 195}, - [6191] = {.lex_state = 208}, - [6192] = {.lex_state = 242}, - [6193] = {.lex_state = 199}, - [6194] = {.lex_state = 195}, - [6195] = {.lex_state = 208}, - [6196] = {.lex_state = 244}, - [6197] = {.lex_state = 244}, - [6198] = {.lex_state = 244}, - [6199] = {.lex_state = 199}, - [6200] = {.lex_state = 244}, - [6201] = {.lex_state = 242}, - [6202] = {.lex_state = 199}, - [6203] = {.lex_state = 242}, - [6204] = {.lex_state = 208}, - [6205] = {.lex_state = 208}, - [6206] = {.lex_state = 244}, - [6207] = {.lex_state = 242}, - [6208] = {.lex_state = 208}, - [6209] = {.lex_state = 244}, - [6210] = {.lex_state = 242}, - [6211] = {.lex_state = 242}, - [6212] = {.lex_state = 242}, - [6213] = {.lex_state = 242}, - [6214] = {.lex_state = 244}, - [6215] = {.lex_state = 242}, - [6216] = {.lex_state = 240}, - [6217] = {.lex_state = 244}, - [6218] = {.lex_state = 208}, - [6219] = {.lex_state = 208}, - [6220] = {.lex_state = 195}, - [6221] = {.lex_state = 195}, - [6222] = {.lex_state = 195}, - [6223] = {.lex_state = 195}, - [6224] = {.lex_state = 195}, - [6225] = {.lex_state = 208}, - [6226] = {.lex_state = 195}, - [6227] = {.lex_state = 195}, - [6228] = {.lex_state = 242}, - [6229] = {.lex_state = 242}, - [6230] = {.lex_state = 242}, - [6231] = {.lex_state = 242}, - [6232] = {.lex_state = 242}, - [6233] = {.lex_state = 242}, - [6234] = {.lex_state = 240}, - [6235] = {.lex_state = 199}, - [6236] = {.lex_state = 195}, - [6237] = {.lex_state = 208}, - [6238] = {.lex_state = 240}, - [6239] = {.lex_state = 240}, - [6240] = {.lex_state = 244}, - [6241] = {.lex_state = 242}, - [6242] = {.lex_state = 240}, - [6243] = {.lex_state = 240}, - [6244] = {.lex_state = 199}, - [6245] = {.lex_state = 240}, - [6246] = {.lex_state = 244}, - [6247] = {.lex_state = 244}, - [6248] = {.lex_state = 208}, - [6249] = {.lex_state = 242}, - [6250] = {.lex_state = 199}, - [6251] = {.lex_state = 242}, - [6252] = {.lex_state = 242}, - [6253] = {.lex_state = 208}, - [6254] = {.lex_state = 242}, - [6255] = {.lex_state = 195}, - [6256] = {.lex_state = 195}, - [6257] = {.lex_state = 244}, - [6258] = {.lex_state = 242}, - [6259] = {.lex_state = 199}, - [6260] = {.lex_state = 195}, - [6261] = {.lex_state = 242}, - [6262] = {.lex_state = 244}, - [6263] = {.lex_state = 242}, - [6264] = {.lex_state = 208}, - [6265] = {.lex_state = 242}, - [6266] = {.lex_state = 242}, - [6267] = {.lex_state = 242}, - [6268] = {.lex_state = 242}, - [6269] = {.lex_state = 242}, - [6270] = {.lex_state = 244}, - [6271] = {.lex_state = 175}, - [6272] = {.lex_state = 208}, - [6273] = {.lex_state = 244}, - [6274] = {.lex_state = 208}, - [6275] = {.lex_state = 195}, - [6276] = {.lex_state = 199}, - [6277] = {.lex_state = 208}, - [6278] = {.lex_state = 195}, - [6279] = {.lex_state = 208}, - [6280] = {.lex_state = 242}, - [6281] = {.lex_state = 244}, - [6282] = {.lex_state = 244}, - [6283] = {.lex_state = 208}, - [6284] = {.lex_state = 242}, - [6285] = {.lex_state = 242}, - [6286] = {.lex_state = 242}, - [6287] = {.lex_state = 242}, - [6288] = {.lex_state = 242}, - [6289] = {.lex_state = 242}, - [6290] = {.lex_state = 242}, - [6291] = {.lex_state = 242}, - [6292] = {.lex_state = 199}, - [6293] = {.lex_state = 244}, - [6294] = {.lex_state = 199}, - [6295] = {.lex_state = 244}, - [6296] = {.lex_state = 240}, - [6297] = {.lex_state = 188}, - [6298] = {.lex_state = 242}, - [6299] = {.lex_state = 196}, - [6300] = {.lex_state = 241}, - [6301] = {.lex_state = 241}, - [6302] = {.lex_state = 195}, - [6303] = {.lex_state = 195}, - [6304] = {.lex_state = 188}, - [6305] = {.lex_state = 195}, - [6306] = {.lex_state = 188}, - [6307] = {.lex_state = 195}, - [6308] = {.lex_state = 195}, - [6309] = {.lex_state = 195}, - [6310] = {.lex_state = 195}, - [6311] = {.lex_state = 188}, - [6312] = {.lex_state = 195}, - [6313] = {.lex_state = 195}, - [6314] = {.lex_state = 240}, - [6315] = {.lex_state = 240}, - [6316] = {.lex_state = 218}, - [6317] = {.lex_state = 240}, - [6318] = {.lex_state = 218}, - [6319] = {.lex_state = 218}, - [6320] = {.lex_state = 218}, - [6321] = {.lex_state = 196}, - [6322] = {.lex_state = 188}, - [6323] = {.lex_state = 196}, - [6324] = {.lex_state = 240}, - [6325] = {.lex_state = 195}, - [6326] = {.lex_state = 218}, - [6327] = {.lex_state = 218}, - [6328] = {.lex_state = 218}, - [6329] = {.lex_state = 218}, - [6330] = {.lex_state = 196}, - [6331] = {.lex_state = 242}, - [6332] = {.lex_state = 195}, - [6333] = {.lex_state = 240}, - [6334] = {.lex_state = 196}, - [6335] = {.lex_state = 188}, - [6336] = {.lex_state = 196}, - [6337] = {.lex_state = 196}, - [6338] = {.lex_state = 196}, - [6339] = {.lex_state = 196}, - [6340] = {.lex_state = 195}, - [6341] = {.lex_state = 240}, - [6342] = {.lex_state = 242}, - [6343] = {.lex_state = 188}, - [6344] = {.lex_state = 188}, - [6345] = {.lex_state = 241}, - [6346] = {.lex_state = 188}, - [6347] = {.lex_state = 188}, - [6348] = {.lex_state = 242}, - [6349] = {.lex_state = 242}, - [6350] = {.lex_state = 195}, - [6351] = {.lex_state = 196}, - [6352] = {.lex_state = 188}, - [6353] = {.lex_state = 188}, - [6354] = {.lex_state = 241}, - [6355] = {.lex_state = 188}, - [6356] = {.lex_state = 195}, - [6357] = {.lex_state = 196}, - [6358] = {.lex_state = 241}, - [6359] = {.lex_state = 196}, - [6360] = {.lex_state = 188}, - [6361] = {.lex_state = 188}, - [6362] = {.lex_state = 188}, - [6363] = {.lex_state = 188}, - [6364] = {.lex_state = 242}, - [6365] = {.lex_state = 188}, - [6366] = {.lex_state = 188}, - [6367] = {.lex_state = 242}, - [6368] = {.lex_state = 242}, - [6369] = {.lex_state = 188}, - [6370] = {.lex_state = 196}, - [6371] = {.lex_state = 196}, - [6372] = {.lex_state = 240}, - [6373] = {.lex_state = 188}, - [6374] = {.lex_state = 196}, - [6375] = {.lex_state = 196}, - [6376] = {.lex_state = 188}, - [6377] = {.lex_state = 241}, - [6378] = {.lex_state = 195}, - [6379] = {.lex_state = 242}, - [6380] = {.lex_state = 203}, - [6381] = {.lex_state = 241}, - [6382] = {.lex_state = 242}, - [6383] = {.lex_state = 195}, - [6384] = {.lex_state = 241}, - [6385] = {.lex_state = 181}, - [6386] = {.lex_state = 240}, - [6387] = {.lex_state = 195}, - [6388] = {.lex_state = 195}, - [6389] = {.lex_state = 242}, - [6390] = {.lex_state = 195}, - [6391] = {.lex_state = 195}, - [6392] = {.lex_state = 195}, - [6393] = {.lex_state = 195}, - [6394] = {.lex_state = 195}, - [6395] = {.lex_state = 195}, - [6396] = {.lex_state = 242}, - [6397] = {.lex_state = 235}, - [6398] = {.lex_state = 242}, - [6399] = {.lex_state = 195}, - [6400] = {.lex_state = 242}, - [6401] = {.lex_state = 195}, - [6402] = {.lex_state = 242}, - [6403] = {.lex_state = 195}, - [6404] = {.lex_state = 242}, - [6405] = {.lex_state = 195}, - [6406] = {.lex_state = 242}, - [6407] = {.lex_state = 195}, - [6408] = {.lex_state = 218}, - [6409] = {.lex_state = 240}, - [6410] = {.lex_state = 195}, - [6411] = {.lex_state = 242}, - [6412] = {.lex_state = 195}, - [6413] = {.lex_state = 195}, - [6414] = {.lex_state = 235}, - [6415] = {.lex_state = 218}, - [6416] = {.lex_state = 195}, - [6417] = {.lex_state = 242}, - [6418] = {.lex_state = 242}, - [6419] = {.lex_state = 242}, - [6420] = {.lex_state = 218}, - [6421] = {.lex_state = 235}, - [6422] = {.lex_state = 240}, - [6423] = {.lex_state = 242}, - [6424] = {.lex_state = 218}, - [6425] = {.lex_state = 195}, - [6426] = {.lex_state = 195}, - [6427] = {.lex_state = 195}, - [6428] = {.lex_state = 218}, - [6429] = {.lex_state = 195}, - [6430] = {.lex_state = 218}, - [6431] = {.lex_state = 242}, - [6432] = {.lex_state = 195}, - [6433] = {.lex_state = 195}, - [6434] = {.lex_state = 218}, - [6435] = {.lex_state = 218}, - [6436] = {.lex_state = 218}, - [6437] = {.lex_state = 240}, - [6438] = {.lex_state = 240}, - [6439] = {.lex_state = 240}, - [6440] = {.lex_state = 218}, - [6441] = {.lex_state = 242}, - [6442] = {.lex_state = 235}, - [6443] = {.lex_state = 195}, - [6444] = {.lex_state = 195}, - [6445] = {.lex_state = 195}, - [6446] = {.lex_state = 240}, - [6447] = {.lex_state = 240}, - [6448] = {.lex_state = 218}, - [6449] = {.lex_state = 195}, - [6450] = {.lex_state = 240}, - [6451] = {.lex_state = 195}, - [6452] = {.lex_state = 240}, - [6453] = {.lex_state = 242}, - [6454] = {.lex_state = 242}, - [6455] = {.lex_state = 240}, - [6456] = {.lex_state = 218}, - [6457] = {.lex_state = 218}, - [6458] = {.lex_state = 195}, - [6459] = {.lex_state = 218}, - [6460] = {.lex_state = 218}, - [6461] = {.lex_state = 242}, - [6462] = {.lex_state = 218}, - [6463] = {.lex_state = 195}, - [6464] = {.lex_state = 240}, - [6465] = {.lex_state = 204}, - [6466] = {.lex_state = 218}, - [6467] = {.lex_state = 242}, - [6468] = {.lex_state = 195}, - [6469] = {.lex_state = 242}, - [6470] = {.lex_state = 242}, - [6471] = {.lex_state = 240}, - [6472] = {.lex_state = 195}, - [6473] = {.lex_state = 240}, - [6474] = {.lex_state = 240}, - [6475] = {.lex_state = 195}, - [6476] = {.lex_state = 195}, - [6477] = {.lex_state = 218}, - [6478] = {.lex_state = 240}, - [6479] = {.lex_state = 195}, - [6480] = {.lex_state = 240}, - [6481] = {.lex_state = 218}, - [6482] = {.lex_state = 195}, - [6483] = {.lex_state = 240}, - [6484] = {.lex_state = 218}, - [6485] = {.lex_state = 242}, - [6486] = {.lex_state = 194}, - [6487] = {.lex_state = 195}, - [6488] = {.lex_state = 242}, - [6489] = {.lex_state = 194}, - [6490] = {.lex_state = 194}, - [6491] = {.lex_state = 195}, - [6492] = {.lex_state = 175}, - [6493] = {.lex_state = 194}, - [6494] = {.lex_state = 194}, - [6495] = {.lex_state = 194}, - [6496] = {.lex_state = 195}, - [6497] = {.lex_state = 240}, - [6498] = {.lex_state = 194}, - [6499] = {.lex_state = 194}, - [6500] = {.lex_state = 241}, - [6501] = {.lex_state = 241}, - [6502] = {.lex_state = 241}, - [6503] = {.lex_state = 241}, - [6504] = {.lex_state = 241}, - [6505] = {.lex_state = 241}, - [6506] = {.lex_state = 241}, - [6507] = {.lex_state = 241}, - [6508] = {.lex_state = 194}, - [6509] = {.lex_state = 194}, - [6510] = {.lex_state = 175}, - [6511] = {.lex_state = 195}, - [6512] = {.lex_state = 242}, - [6513] = {.lex_state = 195}, - [6514] = {.lex_state = 194}, - [6515] = {.lex_state = 194}, - [6516] = {.lex_state = 242}, - [6517] = {.lex_state = 194}, - [6518] = {.lex_state = 195}, - [6519] = {.lex_state = 242}, - [6520] = {.lex_state = 197}, - [6521] = {.lex_state = 195}, - [6522] = {.lex_state = 197}, - [6523] = {.lex_state = 197}, - [6524] = {.lex_state = 197}, - [6525] = {.lex_state = 197}, - [6526] = {.lex_state = 197}, - [6527] = {.lex_state = 197}, - [6528] = {.lex_state = 197}, - [6529] = {.lex_state = 240}, - [6530] = {.lex_state = 242}, - [6531] = {.lex_state = 242}, - [6532] = {.lex_state = 194}, - [6533] = {.lex_state = 195}, - [6534] = {.lex_state = 240}, - [6535] = {.lex_state = 242}, - [6536] = {.lex_state = 242}, - [6537] = {.lex_state = 194}, - [6538] = {.lex_state = 242}, - [6539] = {.lex_state = 175}, - [6540] = {.lex_state = 194}, - [6541] = {.lex_state = 240}, - [6542] = {.lex_state = 242}, - [6543] = {.lex_state = 242}, - [6544] = {.lex_state = 194}, - [6545] = {.lex_state = 242}, - [6546] = {.lex_state = 242}, - [6547] = {.lex_state = 242}, - [6548] = {.lex_state = 242}, - [6549] = {.lex_state = 195}, - [6550] = {.lex_state = 240}, - [6551] = {.lex_state = 242}, - [6552] = {.lex_state = 195}, - [6553] = {.lex_state = 240}, - [6554] = {.lex_state = 242}, - [6555] = {.lex_state = 242}, - [6556] = {.lex_state = 194}, - [6557] = {.lex_state = 194}, - [6558] = {.lex_state = 242}, - [6559] = {.lex_state = 242}, - [6560] = {.lex_state = 194}, - [6561] = {.lex_state = 240}, - [6562] = {.lex_state = 242}, - [6563] = {.lex_state = 195}, - [6564] = {.lex_state = 195}, - [6565] = {.lex_state = 195}, - [6566] = {.lex_state = 196}, - [6567] = {.lex_state = 195}, - [6568] = {.lex_state = 195}, - [6569] = {.lex_state = 240}, - [6570] = {.lex_state = 195}, - [6571] = {.lex_state = 195}, - [6572] = {.lex_state = 242}, - [6573] = {.lex_state = 196}, - [6574] = {.lex_state = 195}, - [6575] = {.lex_state = 195}, - [6576] = {.lex_state = 195}, - [6577] = {.lex_state = 242}, - [6578] = {.lex_state = 195}, - [6579] = {.lex_state = 195}, - [6580] = {.lex_state = 195}, - [6581] = {.lex_state = 195}, - [6582] = {.lex_state = 195}, - [6583] = {.lex_state = 195}, - [6584] = {.lex_state = 195}, - [6585] = {.lex_state = 0}, - [6586] = {.lex_state = 196}, - [6587] = {.lex_state = 195}, - [6588] = {.lex_state = 195}, - [6589] = {.lex_state = 195}, - [6590] = {.lex_state = 242}, - [6591] = {.lex_state = 242}, - [6592] = {.lex_state = 242}, - [6593] = {.lex_state = 242}, - [6594] = {.lex_state = 195}, - [6595] = {.lex_state = 195}, - [6596] = {.lex_state = 199}, - [6597] = {.lex_state = 195}, - [6598] = {.lex_state = 242}, - [6599] = {.lex_state = 199}, - [6600] = {.lex_state = 199}, - [6601] = {.lex_state = 199}, - [6602] = {.lex_state = 195}, - [6603] = {.lex_state = 195}, - [6604] = {.lex_state = 195}, - [6605] = {.lex_state = 195}, - [6606] = {.lex_state = 195}, - [6607] = {.lex_state = 199}, - [6608] = {.lex_state = 195}, - [6609] = {.lex_state = 242}, - [6610] = {.lex_state = 199}, - [6611] = {.lex_state = 242}, - [6612] = {.lex_state = 199}, - [6613] = {.lex_state = 199}, - [6614] = {.lex_state = 195}, - [6615] = {.lex_state = 195}, - [6616] = {.lex_state = 195}, - [6617] = {.lex_state = 195}, - [6618] = {.lex_state = 195}, - [6619] = {.lex_state = 196}, - [6620] = {.lex_state = 195}, - [6621] = {.lex_state = 195}, - [6622] = {.lex_state = 203}, - [6623] = {.lex_state = 195}, - [6624] = {.lex_state = 195}, - [6625] = {.lex_state = 195}, - [6626] = {.lex_state = 195}, - [6627] = {.lex_state = 196}, - [6628] = {.lex_state = 195}, - [6629] = {.lex_state = 196}, - [6630] = {.lex_state = 241}, - [6631] = {.lex_state = 241}, - [6632] = {.lex_state = 195}, - [6633] = {.lex_state = 195}, - [6634] = {.lex_state = 195}, - [6635] = {.lex_state = 195}, - [6636] = {.lex_state = 196}, - [6637] = {.lex_state = 195}, - [6638] = {.lex_state = 240}, - [6639] = {.lex_state = 218}, - [6640] = {.lex_state = 195}, - [6641] = {.lex_state = 241}, - [6642] = {.lex_state = 196}, - [6643] = {.lex_state = 195}, - [6644] = {.lex_state = 242}, - [6645] = {.lex_state = 195}, - [6646] = {.lex_state = 195}, - [6647] = {.lex_state = 195}, - [6648] = {.lex_state = 195}, - [6649] = {.lex_state = 195}, - [6650] = {.lex_state = 196}, - [6651] = {.lex_state = 196}, - [6652] = {.lex_state = 195}, - [6653] = {.lex_state = 240}, - [6654] = {.lex_state = 195}, - [6655] = {.lex_state = 195}, - [6656] = {.lex_state = 218}, - [6657] = {.lex_state = 195}, - [6658] = {.lex_state = 195}, - [6659] = {.lex_state = 196}, - [6660] = {.lex_state = 195}, - [6661] = {.lex_state = 196}, - [6662] = {.lex_state = 195}, - [6663] = {.lex_state = 195}, - [6664] = {.lex_state = 218}, - [6665] = {.lex_state = 195}, - [6666] = {.lex_state = 196}, - [6667] = {.lex_state = 195}, - [6668] = {.lex_state = 195}, - [6669] = {.lex_state = 196}, - [6670] = {.lex_state = 242}, - [6671] = {.lex_state = 195}, - [6672] = {.lex_state = 195}, - [6673] = {.lex_state = 195}, - [6674] = {.lex_state = 195}, - [6675] = {.lex_state = 241}, - [6676] = {.lex_state = 197}, - [6677] = {.lex_state = 195}, - [6678] = {.lex_state = 197}, - [6679] = {.lex_state = 197}, - [6680] = {.lex_state = 197}, - [6681] = {.lex_state = 196}, - [6682] = {.lex_state = 240}, - [6683] = {.lex_state = 195}, - [6684] = {.lex_state = 236}, - [6685] = {.lex_state = 195}, - [6686] = {.lex_state = 195}, - [6687] = {.lex_state = 195}, - [6688] = {.lex_state = 195}, - [6689] = {.lex_state = 242}, - [6690] = {.lex_state = 195}, - [6691] = {.lex_state = 195}, - [6692] = {.lex_state = 195}, - [6693] = {.lex_state = 236}, - [6694] = {.lex_state = 195}, - [6695] = {.lex_state = 196}, - [6696] = {.lex_state = 218}, - [6697] = {.lex_state = 195}, - [6698] = {.lex_state = 195}, - [6699] = {.lex_state = 241}, - [6700] = {.lex_state = 218}, - [6701] = {.lex_state = 240}, - [6702] = {.lex_state = 195}, - [6703] = {.lex_state = 195}, - [6704] = {.lex_state = 218}, - [6705] = {.lex_state = 197}, - [6706] = {.lex_state = 195}, - [6707] = {.lex_state = 195}, - [6708] = {.lex_state = 195}, - [6709] = {.lex_state = 195}, - [6710] = {.lex_state = 195}, - [6711] = {.lex_state = 195}, - [6712] = {.lex_state = 195}, - [6713] = {.lex_state = 241}, - [6714] = {.lex_state = 197}, - [6715] = {.lex_state = 195}, - [6716] = {.lex_state = 197}, - [6717] = {.lex_state = 197}, - [6718] = {.lex_state = 197}, - [6719] = {.lex_state = 240}, - [6720] = {.lex_state = 197}, - [6721] = {.lex_state = 242}, - [6722] = {.lex_state = 194}, - [6723] = {.lex_state = 242}, - [6724] = {.lex_state = 195}, - [6725] = {.lex_state = 195}, - [6726] = {.lex_state = 218}, - [6727] = {.lex_state = 218}, - [6728] = {.lex_state = 195}, - [6729] = {.lex_state = 242}, - [6730] = {.lex_state = 196}, - [6731] = {.lex_state = 196}, - [6732] = {.lex_state = 197}, - [6733] = {.lex_state = 195}, - [6734] = {.lex_state = 195}, - [6735] = {.lex_state = 242}, - [6736] = {.lex_state = 241}, - [6737] = {.lex_state = 241}, - [6738] = {.lex_state = 196}, - [6739] = {.lex_state = 196}, - [6740] = {.lex_state = 197}, - [6741] = {.lex_state = 194}, - [6742] = {.lex_state = 196}, - [6743] = {.lex_state = 194}, - [6744] = {.lex_state = 194}, - [6745] = {.lex_state = 218}, - [6746] = {.lex_state = 241}, - [6747] = {.lex_state = 218}, - [6748] = {.lex_state = 218}, - [6749] = {.lex_state = 194}, - [6750] = {.lex_state = 196}, - [6751] = {.lex_state = 218}, - [6752] = {.lex_state = 194}, - [6753] = {.lex_state = 240}, - [6754] = {.lex_state = 241}, - [6755] = {.lex_state = 181}, - [6756] = {.lex_state = 218}, - [6757] = {.lex_state = 196}, - [6758] = {.lex_state = 218}, - [6759] = {.lex_state = 218}, - [6760] = {.lex_state = 194}, - [6761] = {.lex_state = 240}, - [6762] = {.lex_state = 194}, - [6763] = {.lex_state = 241}, - [6764] = {.lex_state = 194}, - [6765] = {.lex_state = 240}, - [6766] = {.lex_state = 240}, - [6767] = {.lex_state = 196}, - [6768] = {.lex_state = 195}, - [6769] = {.lex_state = 194}, - [6770] = {.lex_state = 195}, - [6771] = {.lex_state = 195}, - [6772] = {.lex_state = 195}, - [6773] = {.lex_state = 181}, - [6774] = {.lex_state = 218}, - [6775] = {.lex_state = 240}, - [6776] = {.lex_state = 194}, - [6777] = {.lex_state = 240}, - [6778] = {.lex_state = 194}, - [6779] = {.lex_state = 194}, - [6780] = {.lex_state = 241}, - [6781] = {.lex_state = 196}, - [6782] = {.lex_state = 339}, - [6783] = {.lex_state = 194}, - [6784] = {.lex_state = 195}, - [6785] = {.lex_state = 196}, - [6786] = {.lex_state = 195}, - [6787] = {.lex_state = 240}, - [6788] = {.lex_state = 218}, - [6789] = {.lex_state = 195}, - [6790] = {.lex_state = 240}, - [6791] = {.lex_state = 195}, - [6792] = {.lex_state = 195}, - [6793] = {.lex_state = 195}, - [6794] = {.lex_state = 195}, - [6795] = {.lex_state = 195}, - [6796] = {.lex_state = 195}, - [6797] = {.lex_state = 195}, - [6798] = {.lex_state = 195}, - [6799] = {.lex_state = 195}, - [6800] = {.lex_state = 195}, - [6801] = {.lex_state = 195}, - [6802] = {.lex_state = 195}, - [6803] = {.lex_state = 195}, - [6804] = {.lex_state = 195}, - [6805] = {.lex_state = 195}, - [6806] = {.lex_state = 195}, - [6807] = {.lex_state = 195}, - [6808] = {.lex_state = 195}, - [6809] = {.lex_state = 195}, - [6810] = {.lex_state = 339}, - [6811] = {.lex_state = 339}, - [6812] = {.lex_state = 339}, - [6813] = {.lex_state = 195}, - [6814] = {.lex_state = 339}, - [6815] = {.lex_state = 195}, - [6816] = {.lex_state = 339}, - [6817] = {.lex_state = 195}, - [6818] = {.lex_state = 195}, - [6819] = {.lex_state = 236}, - [6820] = {.lex_state = 195}, - [6821] = {.lex_state = 197}, - [6822] = {.lex_state = 197}, - [6823] = {.lex_state = 197}, - [6824] = {.lex_state = 197}, - [6825] = {.lex_state = 197}, - [6826] = {.lex_state = 197}, - [6827] = {.lex_state = 195}, - [6828] = {.lex_state = 197}, - [6829] = {.lex_state = 195}, - [6830] = {.lex_state = 195}, - [6831] = {.lex_state = 195}, - [6832] = {.lex_state = 230}, - [6833] = {.lex_state = 195}, - [6834] = {.lex_state = 195}, - [6835] = {.lex_state = 236}, - [6836] = {.lex_state = 230}, - [6837] = {.lex_state = 236}, - [6838] = {.lex_state = 195}, - [6839] = {.lex_state = 195}, - [6840] = {.lex_state = 195}, - [6841] = {.lex_state = 195}, - [6842] = {.lex_state = 195}, - [6843] = {.lex_state = 195}, - [6844] = {.lex_state = 195}, - [6845] = {.lex_state = 195}, - [6846] = {.lex_state = 236}, - [6847] = {.lex_state = 195}, - [6848] = {.lex_state = 195}, - [6849] = {.lex_state = 195}, - [6850] = {.lex_state = 195}, - [6851] = {.lex_state = 195}, - [6852] = {.lex_state = 197}, - [6853] = {.lex_state = 199}, - [6854] = {.lex_state = 339}, - [6855] = {.lex_state = 339}, - [6856] = {.lex_state = 218}, - [6857] = {.lex_state = 195}, - [6858] = {.lex_state = 339}, - [6859] = {.lex_state = 175}, - [6860] = {.lex_state = 339}, - [6861] = {.lex_state = 175}, - [6862] = {.lex_state = 339}, - [6863] = {.lex_state = 175}, - [6864] = {.lex_state = 195}, - [6865] = {.lex_state = 175}, - [6866] = {.lex_state = 196}, - [6867] = {.lex_state = 339}, - [6868] = {.lex_state = 175}, - [6869] = {.lex_state = 218}, - [6870] = {.lex_state = 194}, - [6871] = {.lex_state = 195}, - [6872] = {.lex_state = 241}, - [6873] = {.lex_state = 339}, - [6874] = {.lex_state = 241}, - [6875] = {.lex_state = 196}, - [6876] = {.lex_state = 197}, - [6877] = {.lex_state = 339}, - [6878] = {.lex_state = 241}, - [6879] = {.lex_state = 240}, - [6880] = {.lex_state = 339}, - [6881] = {.lex_state = 175}, - [6882] = {.lex_state = 199}, - [6883] = {.lex_state = 195}, - [6884] = {.lex_state = 241}, - [6885] = {.lex_state = 339}, - [6886] = {.lex_state = 197}, - [6887] = {.lex_state = 339}, - [6888] = {.lex_state = 339}, - [6889] = {.lex_state = 175}, - [6890] = {.lex_state = 339}, - [6891] = {.lex_state = 339}, - [6892] = {.lex_state = 339}, - [6893] = {.lex_state = 339}, - [6894] = {.lex_state = 339}, - [6895] = {.lex_state = 199}, - [6896] = {.lex_state = 199}, - [6897] = {.lex_state = 339}, - [6898] = {.lex_state = 197}, - [6899] = {.lex_state = 339}, - [6900] = {.lex_state = 339}, - [6901] = {.lex_state = 339}, - [6902] = {.lex_state = 199}, - [6903] = {.lex_state = 339}, - [6904] = {.lex_state = 339}, - [6905] = {.lex_state = 195}, - [6906] = {.lex_state = 339}, - [6907] = {.lex_state = 339}, - [6908] = {.lex_state = 199}, - [6909] = {.lex_state = 199}, - [6910] = {.lex_state = 195}, - [6911] = {.lex_state = 199}, - [6912] = {.lex_state = 175}, - [6913] = {.lex_state = 196}, - [6914] = {.lex_state = 339}, - [6915] = {.lex_state = 241}, - [6916] = {.lex_state = 339}, - [6917] = {.lex_state = 339}, - [6918] = {.lex_state = 197}, - [6919] = {.lex_state = 196}, - [6920] = {.lex_state = 195}, - [6921] = {.lex_state = 197}, - [6922] = {.lex_state = 218}, - [6923] = {.lex_state = 339}, - [6924] = {.lex_state = 194}, - [6925] = {.lex_state = 195}, - [6926] = {.lex_state = 175}, - [6927] = {.lex_state = 339}, - [6928] = {.lex_state = 218}, - [6929] = {.lex_state = 339}, - [6930] = {.lex_state = 197}, - [6931] = {.lex_state = 195}, - [6932] = {.lex_state = 339}, - [6933] = {.lex_state = 195}, - [6934] = {.lex_state = 195}, - [6935] = {.lex_state = 195}, - [6936] = {.lex_state = 339}, - [6937] = {.lex_state = 175}, - [6938] = {.lex_state = 195}, - [6939] = {.lex_state = 195}, - [6940] = {.lex_state = 197}, - [6941] = {.lex_state = 195}, - [6942] = {.lex_state = 195}, - [6943] = {.lex_state = 195}, - [6944] = {.lex_state = 197}, - [6945] = {.lex_state = 339}, - [6946] = {.lex_state = 339}, - [6947] = {.lex_state = 339}, - [6948] = {.lex_state = 175}, - [6949] = {.lex_state = 175}, - [6950] = {.lex_state = 241}, - [6951] = {.lex_state = 339}, - [6952] = {.lex_state = 339}, - [6953] = {.lex_state = 175}, - [6954] = {.lex_state = 339}, - [6955] = {.lex_state = 195}, - [6956] = {.lex_state = 339}, - [6957] = {.lex_state = 175}, - [6958] = {.lex_state = 197}, - [6959] = {.lex_state = 195}, - [6960] = {.lex_state = 175}, - [6961] = {.lex_state = 218}, - [6962] = {.lex_state = 175}, - [6963] = {.lex_state = 195}, - [6964] = {.lex_state = 175}, - [6965] = {.lex_state = 175}, - [6966] = {.lex_state = 195}, - [6967] = {.lex_state = 195}, - [6968] = {.lex_state = 195}, - [6969] = {.lex_state = 195}, - [6970] = {.lex_state = 195}, - [6971] = {.lex_state = 195}, - [6972] = {.lex_state = 195}, - [6973] = {.lex_state = 195}, - [6974] = {.lex_state = 195}, - [6975] = {.lex_state = 195}, - [6976] = {.lex_state = 195}, - [6977] = {.lex_state = 197}, - [6978] = {.lex_state = 175}, - [6979] = {.lex_state = 218}, - [6980] = {.lex_state = 195}, - [6981] = {.lex_state = 339}, - [6982] = {.lex_state = 195}, - [6983] = {.lex_state = 339}, - [6984] = {.lex_state = 175}, - [6985] = {.lex_state = 197}, - [6986] = {.lex_state = 339}, - [6987] = {.lex_state = 195}, - [6988] = {.lex_state = 241}, - [6989] = {.lex_state = 218}, - [6990] = {.lex_state = 195}, - [6991] = {.lex_state = 339}, - [6992] = {.lex_state = 195}, - [6993] = {.lex_state = 195}, - [6994] = {.lex_state = 339}, - [6995] = {.lex_state = 195}, - [6996] = {.lex_state = 339}, - [6997] = {.lex_state = 240}, - [6998] = {.lex_state = 208}, - [6999] = {.lex_state = 195}, - [7000] = {.lex_state = 339}, - [7001] = {.lex_state = 339}, - [7002] = {.lex_state = 195}, - [7003] = {.lex_state = 195}, - [7004] = {.lex_state = 240}, - [7005] = {.lex_state = 240}, - [7006] = {.lex_state = 240}, - [7007] = {.lex_state = 240}, - [7008] = {.lex_state = 196}, - [7009] = {.lex_state = 195}, - [7010] = {.lex_state = 0}, - [7011] = {.lex_state = 195}, - [7012] = {.lex_state = 196}, - [7013] = {.lex_state = 194}, - [7014] = {.lex_state = 194}, - [7015] = {.lex_state = 240}, - [7016] = {.lex_state = 194}, - [7017] = {.lex_state = 240}, - [7018] = {.lex_state = 196}, - [7019] = {.lex_state = 208}, - [7020] = {.lex_state = 240}, - [7021] = {.lex_state = 240}, - [7022] = {.lex_state = 196}, - [7023] = {.lex_state = 339}, - [7024] = {.lex_state = 194}, - [7025] = {.lex_state = 194}, - [7026] = {.lex_state = 195}, - [7027] = {.lex_state = 195}, - [7028] = {.lex_state = 240}, - [7029] = {.lex_state = 339}, - [7030] = {.lex_state = 196}, - [7031] = {.lex_state = 194}, - [7032] = {.lex_state = 195}, - [7033] = {.lex_state = 195}, - [7034] = {.lex_state = 197}, - [7035] = {.lex_state = 195}, - [7036] = {.lex_state = 195}, - [7037] = {.lex_state = 240}, - [7038] = {.lex_state = 195}, - [7039] = {.lex_state = 194}, - [7040] = {.lex_state = 196}, - [7041] = {.lex_state = 195}, - [7042] = {.lex_state = 208}, - [7043] = {.lex_state = 240}, - [7044] = {.lex_state = 0}, - [7045] = {.lex_state = 195}, - [7046] = {.lex_state = 194}, - [7047] = {.lex_state = 195}, - [7048] = {.lex_state = 195}, - [7049] = {.lex_state = 195}, - [7050] = {.lex_state = 208}, - [7051] = {.lex_state = 195}, - [7052] = {.lex_state = 208}, - [7053] = {.lex_state = 195}, - [7054] = {.lex_state = 195}, - [7055] = {.lex_state = 240}, - [7056] = {.lex_state = 196}, - [7057] = {.lex_state = 195}, - [7058] = {.lex_state = 195}, - [7059] = {.lex_state = 195}, - [7060] = {.lex_state = 196}, - [7061] = {.lex_state = 194}, - [7062] = {.lex_state = 195}, - [7063] = {.lex_state = 240}, - [7064] = {.lex_state = 194}, - [7065] = {.lex_state = 195}, - [7066] = {.lex_state = 208}, - [7067] = {.lex_state = 194}, - [7068] = {.lex_state = 240}, - [7069] = {.lex_state = 195}, - [7070] = {.lex_state = 195}, - [7071] = {.lex_state = 195}, - [7072] = {.lex_state = 195}, - [7073] = {.lex_state = 195}, - [7074] = {.lex_state = 195}, - [7075] = {.lex_state = 198}, - [7076] = {.lex_state = 197}, - [7077] = {.lex_state = 339}, - [7078] = {.lex_state = 175}, - [7079] = {.lex_state = 195}, - [7080] = {.lex_state = 198}, - [7081] = {.lex_state = 195}, - [7082] = {.lex_state = 197}, - [7083] = {.lex_state = 195}, - [7084] = {.lex_state = 195}, - [7085] = {.lex_state = 195}, - [7086] = {.lex_state = 195}, - [7087] = {.lex_state = 195}, - [7088] = {.lex_state = 195}, - [7089] = {.lex_state = 198}, - [7090] = {.lex_state = 195}, - [7091] = {.lex_state = 195}, - [7092] = {.lex_state = 171}, - [7093] = {.lex_state = 195}, - [7094] = {.lex_state = 175}, - [7095] = {.lex_state = 195}, - [7096] = {.lex_state = 339}, - [7097] = {.lex_state = 195}, - [7098] = {.lex_state = 339}, - [7099] = {.lex_state = 198}, - [7100] = {.lex_state = 197}, - [7101] = {.lex_state = 339}, - [7102] = {.lex_state = 195}, - [7103] = {.lex_state = 198}, - [7104] = {.lex_state = 197}, - [7105] = {.lex_state = 195}, - [7106] = {.lex_state = 195}, - [7107] = {.lex_state = 195}, - [7108] = {.lex_state = 195}, - [7109] = {.lex_state = 195}, - [7110] = {.lex_state = 195}, - [7111] = {.lex_state = 195}, - [7112] = {.lex_state = 195}, - [7113] = {.lex_state = 195}, - [7114] = {.lex_state = 195}, - [7115] = {.lex_state = 195}, - [7116] = {.lex_state = 195}, - [7117] = {.lex_state = 195}, - [7118] = {.lex_state = 195}, - [7119] = {.lex_state = 175}, - [7120] = {.lex_state = 195}, - [7121] = {.lex_state = 195}, - [7122] = {.lex_state = 198}, - [7123] = {.lex_state = 195}, - [7124] = {.lex_state = 195}, - [7125] = {.lex_state = 195}, - [7126] = {.lex_state = 195}, - [7127] = {.lex_state = 195}, - [7128] = {.lex_state = 198}, - [7129] = {.lex_state = 171}, - [7130] = {.lex_state = 175}, - [7131] = {.lex_state = 195}, - [7132] = {.lex_state = 195}, - [7133] = {.lex_state = 198}, - [7134] = {.lex_state = 195}, - [7135] = {.lex_state = 195}, - [7136] = {.lex_state = 195}, - [7137] = {.lex_state = 195}, - [7138] = {.lex_state = 195}, - [7139] = {.lex_state = 195}, - [7140] = {.lex_state = 195}, - [7141] = {.lex_state = 197}, - [7142] = {.lex_state = 195}, - [7143] = {.lex_state = 195}, - [7144] = {.lex_state = 195}, - [7145] = {.lex_state = 195}, - [7146] = {.lex_state = 195}, - [7147] = {.lex_state = 195}, - [7148] = {.lex_state = 198}, - [7149] = {.lex_state = 108}, - [7150] = {.lex_state = 198}, - [7151] = {.lex_state = 110}, - [7152] = {.lex_state = 108}, - [7153] = {.lex_state = 339}, - [7154] = {.lex_state = 198}, - [7155] = {.lex_state = 0}, - [7156] = {.lex_state = 240}, - [7157] = {.lex_state = 110}, - [7158] = {.lex_state = 197}, - [7159] = {.lex_state = 108}, - [7160] = {.lex_state = 108}, - [7161] = {.lex_state = 339}, - [7162] = {.lex_state = 218}, - [7163] = {.lex_state = 198}, - [7164] = {.lex_state = 110}, - [7165] = {.lex_state = 108}, - [7166] = {.lex_state = 339}, - [7167] = {.lex_state = 195}, - [7168] = {.lex_state = 339}, - [7169] = {.lex_state = 339}, - [7170] = {.lex_state = 198}, - [7171] = {.lex_state = 0}, - [7172] = {.lex_state = 198}, - [7173] = {.lex_state = 108}, - [7174] = {.lex_state = 339}, - [7175] = {.lex_state = 195}, - [7176] = {.lex_state = 195}, - [7177] = {.lex_state = 108}, - [7178] = {.lex_state = 108}, - [7179] = {.lex_state = 339}, - [7180] = {.lex_state = 198}, - [7181] = {.lex_state = 110}, - [7182] = {.lex_state = 108}, - [7183] = {.lex_state = 198}, - [7184] = {.lex_state = 0}, - [7185] = {.lex_state = 111}, - [7186] = {.lex_state = 240}, - [7187] = {.lex_state = 108}, - [7188] = {.lex_state = 110}, - [7189] = {.lex_state = 108}, - [7190] = {.lex_state = 195}, - [7191] = {.lex_state = 0}, - [7192] = {.lex_state = 339}, - [7193] = {.lex_state = 108}, - [7194] = {.lex_state = 110}, - [7195] = {.lex_state = 108}, - [7196] = {.lex_state = 0}, - [7197] = {.lex_state = 198}, - [7198] = {.lex_state = 108}, - [7199] = {.lex_state = 108}, - [7200] = {.lex_state = 198}, - [7201] = {.lex_state = 0}, - [7202] = {.lex_state = 108}, - [7203] = {.lex_state = 108}, - [7204] = {.lex_state = 0}, - [7205] = {.lex_state = 110}, - [7206] = {.lex_state = 108}, - [7207] = {.lex_state = 108}, - [7208] = {.lex_state = 108}, - [7209] = {.lex_state = 0}, - [7210] = {.lex_state = 339}, - [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 108}, - [7213] = {.lex_state = 108}, - [7214] = {.lex_state = 0}, - [7215] = {.lex_state = 339}, - [7216] = {.lex_state = 108}, - [7217] = {.lex_state = 111}, - [7218] = {.lex_state = 108}, - [7219] = {.lex_state = 0}, - [7220] = {.lex_state = 108}, - [7221] = {.lex_state = 108}, - [7222] = {.lex_state = 108}, - [7223] = {.lex_state = 108}, - [7224] = {.lex_state = 108}, - [7225] = {.lex_state = 0}, - [7226] = {.lex_state = 339}, - [7227] = {.lex_state = 195}, - [7228] = {.lex_state = 198}, - [7229] = {.lex_state = 198}, - [7230] = {.lex_state = 0}, - [7231] = {.lex_state = 195}, - [7232] = {.lex_state = 240}, - [7233] = {.lex_state = 339}, - [7234] = {.lex_state = 339}, - [7235] = {.lex_state = 195}, - [7236] = {.lex_state = 195}, - [7237] = {.lex_state = 339}, - [7238] = {.lex_state = 339}, - [7239] = {.lex_state = 108}, - [7240] = {.lex_state = 195}, - [7241] = {.lex_state = 111}, - [7242] = {.lex_state = 199}, - [7243] = {.lex_state = 339}, - [7244] = {.lex_state = 108}, - [7245] = {.lex_state = 0}, - [7246] = {.lex_state = 111}, - [7247] = {.lex_state = 195}, - [7248] = {.lex_state = 339}, - [7249] = {.lex_state = 198}, - [7250] = {.lex_state = 198}, - [7251] = {.lex_state = 110}, - [7252] = {.lex_state = 108}, - [7253] = {.lex_state = 110}, - [7254] = {.lex_state = 108}, - [7255] = {.lex_state = 339}, - [7256] = {.lex_state = 0}, - [7257] = {.lex_state = 339}, - [7258] = {.lex_state = 339}, - [7259] = {.lex_state = 198}, - [7260] = {.lex_state = 240}, - [7261] = {.lex_state = 339}, - [7262] = {.lex_state = 198}, - [7263] = {.lex_state = 0}, - [7264] = {.lex_state = 198}, - [7265] = {.lex_state = 240}, - [7266] = {.lex_state = 339}, - [7267] = {.lex_state = 110}, - [7268] = {.lex_state = 110}, - [7269] = {.lex_state = 108}, - [7270] = {.lex_state = 339}, - [7271] = {.lex_state = 108}, - [7272] = {.lex_state = 0}, - [7273] = {.lex_state = 195}, - [7274] = {.lex_state = 108}, - [7275] = {.lex_state = 198}, - [7276] = {.lex_state = 111}, - [7277] = {.lex_state = 198}, - [7278] = {.lex_state = 198}, - [7279] = {.lex_state = 198}, - [7280] = {.lex_state = 240}, - [7281] = {.lex_state = 339}, - [7282] = {.lex_state = 339}, - [7283] = {.lex_state = 0}, - [7284] = {.lex_state = 339}, - [7285] = {.lex_state = 198}, - [7286] = {.lex_state = 110}, - [7287] = {.lex_state = 108}, - [7288] = {.lex_state = 339}, - [7289] = {.lex_state = 339}, - [7290] = {.lex_state = 198}, - [7291] = {.lex_state = 240}, - [7292] = {.lex_state = 171}, - [7293] = {.lex_state = 339}, - [7294] = {.lex_state = 198}, - [7295] = {.lex_state = 111}, - [7296] = {.lex_state = 198}, - [7297] = {.lex_state = 0}, - [7298] = {.lex_state = 198}, - [7299] = {.lex_state = 240}, - [7300] = {.lex_state = 0}, - [7301] = {.lex_state = 339}, - [7302] = {.lex_state = 240}, - [7303] = {.lex_state = 171}, - [7304] = {.lex_state = 198}, - [7305] = {.lex_state = 339}, - [7306] = {.lex_state = 339}, - [7307] = {.lex_state = 339}, - [7308] = {.lex_state = 195}, - [7309] = {.lex_state = 240}, - [7310] = {.lex_state = 195}, - [7311] = {.lex_state = 195}, - [7312] = {.lex_state = 339}, - [7313] = {.lex_state = 339}, - [7314] = {.lex_state = 108}, - [7315] = {.lex_state = 111}, - [7316] = {.lex_state = 339}, - [7317] = {.lex_state = 198}, - [7318] = {.lex_state = 198}, - [7319] = {.lex_state = 110}, - [7320] = {.lex_state = 108}, - [7321] = {.lex_state = 339}, - [7322] = {.lex_state = 198}, - [7323] = {.lex_state = 198}, - [7324] = {.lex_state = 198}, - [7325] = {.lex_state = 198}, - [7326] = {.lex_state = 198}, - [7327] = {.lex_state = 339}, - [7328] = {.lex_state = 339}, - [7329] = {.lex_state = 198}, - [7330] = {.lex_state = 339}, - [7331] = {.lex_state = 195}, - [7332] = {.lex_state = 339}, - [7333] = {.lex_state = 0}, - [7334] = {.lex_state = 339}, - [7335] = {.lex_state = 339}, - [7336] = {.lex_state = 339}, - [7337] = {.lex_state = 339}, - [7338] = {.lex_state = 339}, - [7339] = {.lex_state = 339}, - [7340] = {.lex_state = 339}, - [7341] = {.lex_state = 195}, - [7342] = {.lex_state = 339}, - [7343] = {.lex_state = 339}, - [7344] = {.lex_state = 339}, - [7345] = {.lex_state = 339}, - [7346] = {.lex_state = 339}, - [7347] = {.lex_state = 198}, - [7348] = {.lex_state = 198}, - [7349] = {.lex_state = 198}, - [7350] = {.lex_state = 198}, - [7351] = {.lex_state = 339}, - [7352] = {.lex_state = 198}, - [7353] = {.lex_state = 195}, - [7354] = {.lex_state = 0}, - [7355] = {.lex_state = 195}, - [7356] = {.lex_state = 0}, - [7357] = {.lex_state = 0}, - [7358] = {.lex_state = 0}, - [7359] = {.lex_state = 171}, - [7360] = {.lex_state = 0}, - [7361] = {.lex_state = 195}, - [7362] = {.lex_state = 0}, - [7363] = {.lex_state = 0}, - [7364] = {.lex_state = 0}, - [7365] = {.lex_state = 0}, - [7366] = {.lex_state = 195}, - [7367] = {.lex_state = 0}, - [7368] = {.lex_state = 0}, - [7369] = {.lex_state = 0}, - [7370] = {.lex_state = 0}, - [7371] = {.lex_state = 195}, - [7372] = {.lex_state = 0}, - [7373] = {.lex_state = 198}, - [7374] = {.lex_state = 0}, - [7375] = {.lex_state = 0}, - [7376] = {.lex_state = 0}, - [7377] = {.lex_state = 195}, - [7378] = {.lex_state = 0}, - [7379] = {.lex_state = 175}, - [7380] = {.lex_state = 0}, - [7381] = {.lex_state = 0}, - [7382] = {.lex_state = 0}, - [7383] = {.lex_state = 0}, - [7384] = {.lex_state = 0}, - [7385] = {.lex_state = 195}, - [7386] = {.lex_state = 0}, - [7387] = {.lex_state = 0}, - [7388] = {.lex_state = 171}, - [7389] = {.lex_state = 0}, - [7390] = {.lex_state = 0}, - [7391] = {.lex_state = 0}, - [7392] = {.lex_state = 195}, - [7393] = {.lex_state = 195}, - [7394] = {.lex_state = 0}, - [7395] = {.lex_state = 0}, - [7396] = {.lex_state = 0}, - [7397] = {.lex_state = 0}, - [7398] = {.lex_state = 0}, - [7399] = {.lex_state = 0}, - [7400] = {.lex_state = 198}, - [7401] = {.lex_state = 198}, - [7402] = {.lex_state = 0}, - [7403] = {.lex_state = 0}, - [7404] = {.lex_state = 0}, - [7405] = {.lex_state = 198}, - [7406] = {.lex_state = 0}, - [7407] = {.lex_state = 0}, - [7408] = {.lex_state = 0}, - [7409] = {.lex_state = 0}, - [7410] = {.lex_state = 0}, - [7411] = {.lex_state = 195}, - [7412] = {.lex_state = 0}, - [7413] = {.lex_state = 195}, - [7414] = {.lex_state = 0}, - [7415] = {.lex_state = 195}, - [7416] = {.lex_state = 0}, - [7417] = {.lex_state = 0}, - [7418] = {.lex_state = 0}, - [7419] = {.lex_state = 198}, - [7420] = {.lex_state = 198}, - [7421] = {.lex_state = 0}, - [7422] = {.lex_state = 0}, - [7423] = {.lex_state = 0}, - [7424] = {.lex_state = 0}, - [7425] = {.lex_state = 0}, - [7426] = {.lex_state = 198}, - [7427] = {.lex_state = 198}, - [7428] = {.lex_state = 198}, - [7429] = {.lex_state = 0}, - [7430] = {.lex_state = 0}, - [7431] = {.lex_state = 113}, - [7432] = {.lex_state = 195}, - [7433] = {.lex_state = 0}, - [7434] = {.lex_state = 0}, - [7435] = {.lex_state = 0}, - [7436] = {.lex_state = 0}, - [7437] = {.lex_state = 0}, - [7438] = {.lex_state = 0}, - [7439] = {.lex_state = 0}, - [7440] = {.lex_state = 0}, - [7441] = {.lex_state = 171}, - [7442] = {.lex_state = 0}, - [7443] = {.lex_state = 171}, - [7444] = {.lex_state = 0}, - [7445] = {.lex_state = 113}, - [7446] = {.lex_state = 0}, - [7447] = {.lex_state = 171}, - [7448] = {.lex_state = 0}, - [7449] = {.lex_state = 0}, - [7450] = {.lex_state = 195}, - [7451] = {.lex_state = 0}, - [7452] = {.lex_state = 175}, - [7453] = {.lex_state = 195}, - [7454] = {.lex_state = 195}, - [7455] = {.lex_state = 195}, - [7456] = {.lex_state = 0}, - [7457] = {.lex_state = 218}, - [7458] = {.lex_state = 0}, - [7459] = {.lex_state = 0}, - [7460] = {.lex_state = 0}, - [7461] = {.lex_state = 0}, - [7462] = {.lex_state = 0}, - [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 195}, - [7465] = {.lex_state = 0}, - [7466] = {.lex_state = 198}, - [7467] = {.lex_state = 0}, - [7468] = {.lex_state = 0}, - [7469] = {.lex_state = 195}, - [7470] = {.lex_state = 0}, - [7471] = {.lex_state = 0}, - [7472] = {.lex_state = 195}, - [7473] = {.lex_state = 198}, - [7474] = {.lex_state = 0}, - [7475] = {.lex_state = 0}, - [7476] = {.lex_state = 195}, - [7477] = {.lex_state = 0}, - [7478] = {.lex_state = 0}, - [7479] = {.lex_state = 171}, - [7480] = {.lex_state = 0}, - [7481] = {.lex_state = 0}, - [7482] = {.lex_state = 0}, - [7483] = {.lex_state = 0}, - [7484] = {.lex_state = 0}, - [7485] = {.lex_state = 0}, - [7486] = {.lex_state = 0}, - [7487] = {.lex_state = 198}, - [7488] = {.lex_state = 0}, - [7489] = {.lex_state = 0}, - [7490] = {.lex_state = 195}, - [7491] = {.lex_state = 0}, - [7492] = {.lex_state = 0}, - [7493] = {.lex_state = 0}, - [7494] = {.lex_state = 195}, - [7495] = {.lex_state = 195}, - [7496] = {.lex_state = 0}, - [7497] = {.lex_state = 195}, - [7498] = {.lex_state = 198}, - [7499] = {.lex_state = 110}, - [7500] = {.lex_state = 0}, - [7501] = {.lex_state = 0}, - [7502] = {.lex_state = 198}, - [7503] = {.lex_state = 0}, - [7504] = {.lex_state = 0}, - [7505] = {.lex_state = 195}, - [7506] = {.lex_state = 0}, - [7507] = {.lex_state = 0}, - [7508] = {.lex_state = 0}, - [7509] = {.lex_state = 113}, - [7510] = {.lex_state = 0}, - [7511] = {.lex_state = 195}, - [7512] = {.lex_state = 195}, - [7513] = {.lex_state = 198}, - [7514] = {.lex_state = 198}, - [7515] = {.lex_state = 0}, - [7516] = {.lex_state = 0}, - [7517] = {.lex_state = 0}, - [7518] = {.lex_state = 198}, - [7519] = {.lex_state = 0}, - [7520] = {.lex_state = 0}, - [7521] = {.lex_state = 0}, - [7522] = {.lex_state = 0}, - [7523] = {.lex_state = 198}, - [7524] = {.lex_state = 195}, - [7525] = {.lex_state = 171}, - [7526] = {.lex_state = 339}, - [7527] = {.lex_state = 198}, - [7528] = {.lex_state = 198}, - [7529] = {.lex_state = 0}, - [7530] = {.lex_state = 198}, - [7531] = {.lex_state = 198}, - [7532] = {.lex_state = 171}, - [7533] = {.lex_state = 198}, - [7534] = {.lex_state = 0}, - [7535] = {.lex_state = 171}, - [7536] = {.lex_state = 195}, - [7537] = {.lex_state = 0}, - [7538] = {.lex_state = 0}, - [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 0}, - [7541] = {.lex_state = 171}, - [7542] = {.lex_state = 0}, - [7543] = {.lex_state = 0}, - [7544] = {.lex_state = 0}, - [7545] = {.lex_state = 0}, - [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 0}, - [7548] = {.lex_state = 0}, - [7549] = {.lex_state = 0}, - [7550] = {.lex_state = 195}, - [7551] = {.lex_state = 195}, - [7552] = {.lex_state = 195}, - [7553] = {.lex_state = 110}, - [7554] = {.lex_state = 195}, - [7555] = {.lex_state = 195}, - [7556] = {.lex_state = 0}, - [7557] = {.lex_state = 0}, - [7558] = {.lex_state = 0}, - [7559] = {.lex_state = 0}, - [7560] = {.lex_state = 0}, - [7561] = {.lex_state = 195}, - [7562] = {.lex_state = 195}, - [7563] = {.lex_state = 171}, - [7564] = {.lex_state = 195}, - [7565] = {.lex_state = 195}, - [7566] = {.lex_state = 195}, - [7567] = {.lex_state = 0}, - [7568] = {.lex_state = 0}, - [7569] = {.lex_state = 198}, - [7570] = {.lex_state = 0}, - [7571] = {.lex_state = 198}, - [7572] = {.lex_state = 198}, - [7573] = {.lex_state = 0}, - [7574] = {.lex_state = 171}, - [7575] = {.lex_state = 0}, - [7576] = {.lex_state = 0}, - [7577] = {.lex_state = 0}, - [7578] = {.lex_state = 0}, - [7579] = {.lex_state = 339}, - [7580] = {.lex_state = 0}, - [7581] = {.lex_state = 0}, - [7582] = {.lex_state = 0}, - [7583] = {.lex_state = 195}, - [7584] = {.lex_state = 195}, - [7585] = {.lex_state = 195}, - [7586] = {.lex_state = 0}, - [7587] = {.lex_state = 195}, - [7588] = {.lex_state = 110}, - [7589] = {.lex_state = 110}, - [7590] = {.lex_state = 195}, - [7591] = {.lex_state = 164}, - [7592] = {.lex_state = 0}, - [7593] = {.lex_state = 0}, - [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 195}, - [7596] = {.lex_state = 0}, - [7597] = {.lex_state = 195}, - [7598] = {.lex_state = 0}, - [7599] = {.lex_state = 195}, - [7600] = {.lex_state = 195}, - [7601] = {.lex_state = 0}, - [7602] = {.lex_state = 0}, - [7603] = {.lex_state = 195}, - [7604] = {.lex_state = 0}, - [7605] = {.lex_state = 195}, - [7606] = {.lex_state = 195}, - [7607] = {.lex_state = 195}, - [7608] = {.lex_state = 171}, - [7609] = {.lex_state = 0}, - [7610] = {.lex_state = 0}, - [7611] = {.lex_state = 195}, - [7612] = {.lex_state = 110}, - [7613] = {.lex_state = 195}, - [7614] = {.lex_state = 195}, - [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 0}, - [7617] = {.lex_state = 0}, - [7618] = {.lex_state = 195}, - [7619] = {.lex_state = 0}, - [7620] = {.lex_state = 0}, - [7621] = {.lex_state = 0}, - [7622] = {.lex_state = 0}, - [7623] = {.lex_state = 198}, - [7624] = {.lex_state = 0}, - [7625] = {.lex_state = 0}, - [7626] = {.lex_state = 0}, - [7627] = {.lex_state = 198}, - [7628] = {.lex_state = 0}, - [7629] = {.lex_state = 0}, - [7630] = {.lex_state = 0}, - [7631] = {.lex_state = 0}, - [7632] = {.lex_state = 0}, - [7633] = {.lex_state = 195}, - [7634] = {.lex_state = 0}, - [7635] = {.lex_state = 195}, - [7636] = {.lex_state = 195}, - [7637] = {.lex_state = 195}, - [7638] = {.lex_state = 110}, - [7639] = {.lex_state = 195}, - [7640] = {.lex_state = 0}, - [7641] = {.lex_state = 195}, - [7642] = {.lex_state = 0}, - [7643] = {.lex_state = 175}, - [7644] = {.lex_state = 0}, - [7645] = {.lex_state = 0}, - [7646] = {.lex_state = 195}, - [7647] = {.lex_state = 110}, - [7648] = {.lex_state = 198}, - [7649] = {.lex_state = 198}, - [7650] = {.lex_state = 0}, - [7651] = {.lex_state = 0}, - [7652] = {.lex_state = 0}, - [7653] = {.lex_state = 110}, - [7654] = {.lex_state = 0}, - [7655] = {.lex_state = 0}, - [7656] = {.lex_state = 0}, - [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 195}, - [7659] = {.lex_state = 110}, - [7660] = {.lex_state = 0}, - [7661] = {.lex_state = 110}, - [7662] = {.lex_state = 0}, - [7663] = {.lex_state = 110}, - [7664] = {.lex_state = 198}, - [7665] = {.lex_state = 198}, - [7666] = {.lex_state = 198}, - [7667] = {.lex_state = 0}, - [7668] = {.lex_state = 0}, - [7669] = {.lex_state = 171}, - [7670] = {.lex_state = 0}, - [7671] = {.lex_state = 198}, - [7672] = {.lex_state = 0}, - [7673] = {.lex_state = 198}, - [7674] = {.lex_state = 0}, - [7675] = {.lex_state = 198}, - [7676] = {.lex_state = 0}, - [7677] = {.lex_state = 0}, - [7678] = {.lex_state = 0}, - [7679] = {.lex_state = 198}, - [7680] = {.lex_state = 0}, - [7681] = {.lex_state = 0}, - [7682] = {.lex_state = 195}, - [7683] = {.lex_state = 0}, - [7684] = {.lex_state = 195}, - [7685] = {.lex_state = 198}, - [7686] = {.lex_state = 0}, - [7687] = {.lex_state = 198}, - [7688] = {.lex_state = 0}, - [7689] = {.lex_state = 0}, - [7690] = {.lex_state = 0}, - [7691] = {.lex_state = 198}, - [7692] = {.lex_state = 198}, - [7693] = {.lex_state = 0}, - [7694] = {.lex_state = 195}, - [7695] = {.lex_state = 0}, - [7696] = {.lex_state = 0}, - [7697] = {.lex_state = 198}, - [7698] = {.lex_state = 171}, - [7699] = {.lex_state = 0}, - [7700] = {.lex_state = 0}, - [7701] = {.lex_state = 0}, - [7702] = {.lex_state = 0}, - [7703] = {.lex_state = 195}, - [7704] = {.lex_state = 198}, - [7705] = {.lex_state = 0}, - [7706] = {.lex_state = 0}, - [7707] = {.lex_state = 0}, - [7708] = {.lex_state = 198}, - [7709] = {.lex_state = 198}, - [7710] = {.lex_state = 113}, - [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 195}, - [7713] = {.lex_state = 0}, - [7714] = {.lex_state = 0}, - [7715] = {.lex_state = 0}, - [7716] = {.lex_state = 0}, - [7717] = {.lex_state = 0}, - [7718] = {.lex_state = 195}, - [7719] = {.lex_state = 171}, - [7720] = {.lex_state = 0}, - [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 0}, - [7723] = {.lex_state = 171}, - [7724] = {.lex_state = 0}, - [7725] = {.lex_state = 198}, - [7726] = {.lex_state = 0}, - [7727] = {.lex_state = 195}, - [7728] = {.lex_state = 195}, - [7729] = {.lex_state = 0}, - [7730] = {.lex_state = 0}, - [7731] = {.lex_state = 0}, - [7732] = {.lex_state = 198}, - [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 0}, - [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 0}, - [7737] = {.lex_state = 0}, - [7738] = {.lex_state = 0}, - [7739] = {.lex_state = 0}, - [7740] = {.lex_state = 0}, - [7741] = {.lex_state = 0}, - [7742] = {.lex_state = 0}, - [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 195}, - [7745] = {.lex_state = 0}, - [7746] = {.lex_state = 0}, - [7747] = {.lex_state = 195}, - [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 0}, - [7750] = {.lex_state = 195}, - [7751] = {.lex_state = 195}, - [7752] = {.lex_state = 195}, - [7753] = {.lex_state = 195}, - [7754] = {.lex_state = 195}, - [7755] = {.lex_state = 195}, - [7756] = {.lex_state = 0}, - [7757] = {.lex_state = 195}, - [7758] = {.lex_state = 110}, - [7759] = {.lex_state = 339}, - [7760] = {.lex_state = 195}, - [7761] = {.lex_state = 195}, - [7762] = {.lex_state = 0}, - [7763] = {.lex_state = 198}, - [7764] = {.lex_state = 0}, - [7765] = {.lex_state = 198}, - [7766] = {.lex_state = 0}, - [7767] = {.lex_state = 195}, - [7768] = {.lex_state = 0}, - [7769] = {.lex_state = 198}, - [7770] = {.lex_state = 0}, - [7771] = {.lex_state = 198}, - [7772] = {.lex_state = 0}, - [7773] = {.lex_state = 0}, - [7774] = {.lex_state = 0}, - [7775] = {.lex_state = 0}, - [7776] = {.lex_state = 0}, - [7777] = {.lex_state = 0}, - [7778] = {.lex_state = 195}, - [7779] = {.lex_state = 195}, - [7780] = {.lex_state = 0}, - [7781] = {.lex_state = 0}, - [7782] = {.lex_state = 0}, - [7783] = {.lex_state = 198}, - [7784] = {.lex_state = 198}, - [7785] = {.lex_state = 198}, - [7786] = {.lex_state = 198}, - [7787] = {.lex_state = 198}, - [7788] = {.lex_state = 0}, - [7789] = {.lex_state = 0}, - [7790] = {.lex_state = 0}, - [7791] = {.lex_state = 198}, - [7792] = {.lex_state = 198}, - [7793] = {.lex_state = 0}, - [7794] = {.lex_state = 198}, - [7795] = {.lex_state = 198}, - [7796] = {.lex_state = 198}, - [7797] = {.lex_state = 198}, - [7798] = {.lex_state = 0}, - [7799] = {.lex_state = 0}, - [7800] = {.lex_state = 198}, - [7801] = {.lex_state = 198}, - [7802] = {.lex_state = 195}, - [7803] = {.lex_state = 339}, - [7804] = {.lex_state = 339}, - [7805] = {.lex_state = 0}, - [7806] = {.lex_state = 195}, - [7807] = {.lex_state = 339}, - [7808] = {.lex_state = 339}, - [7809] = {.lex_state = 0}, - [7810] = {.lex_state = 0}, - [7811] = {.lex_state = 195}, - [7812] = {.lex_state = 112}, - [7813] = {.lex_state = 0}, - [7814] = {.lex_state = 0}, - [7815] = {.lex_state = 0}, - [7816] = {.lex_state = 0}, - [7817] = {.lex_state = 0}, - [7818] = {.lex_state = 0}, - [7819] = {.lex_state = 339}, - [7820] = {.lex_state = 0}, - [7821] = {.lex_state = 195}, - [7822] = {.lex_state = 0}, - [7823] = {.lex_state = 0}, - [7824] = {.lex_state = 0}, - [7825] = {.lex_state = 0}, - [7826] = {.lex_state = 112}, - [7827] = {.lex_state = 112}, - [7828] = {.lex_state = 0}, - [7829] = {.lex_state = 339}, - [7830] = {.lex_state = 0}, - [7831] = {.lex_state = 195}, - [7832] = {.lex_state = 339}, - [7833] = {.lex_state = 171}, - [7834] = {.lex_state = 0}, - [7835] = {.lex_state = 0}, - [7836] = {.lex_state = 0}, - [7837] = {.lex_state = 195}, - [7838] = {.lex_state = 0}, - [7839] = {.lex_state = 339}, - [7840] = {.lex_state = 339}, - [7841] = {.lex_state = 0}, - [7842] = {.lex_state = 339}, - [7843] = {.lex_state = 0}, - [7844] = {.lex_state = 0}, - [7845] = {.lex_state = 0}, - [7846] = {.lex_state = 0}, - [7847] = {.lex_state = 0}, - [7848] = {.lex_state = 339}, - [7849] = {.lex_state = 0}, - [7850] = {.lex_state = 0}, - [7851] = {.lex_state = 0}, - [7852] = {.lex_state = 195}, - [7853] = {.lex_state = 339}, - [7854] = {.lex_state = 0}, - [7855] = {.lex_state = 0}, - [7856] = {.lex_state = 0}, - [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 0}, - [7859] = {.lex_state = 112}, - [7860] = {.lex_state = 339}, - [7861] = {.lex_state = 0}, - [7862] = {.lex_state = 0}, - [7863] = {.lex_state = 0}, - [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0}, - [7866] = {.lex_state = 0}, - [7867] = {.lex_state = 112}, - [7868] = {.lex_state = 0}, - [7869] = {.lex_state = 0}, - [7870] = {.lex_state = 0}, - [7871] = {.lex_state = 0}, - [7872] = {.lex_state = 0}, - [7873] = {.lex_state = 0}, - [7874] = {.lex_state = 0}, - [7875] = {.lex_state = 0}, - [7876] = {.lex_state = 0}, - [7877] = {.lex_state = 0}, - [7878] = {.lex_state = 339}, - [7879] = {.lex_state = 339}, - [7880] = {.lex_state = 339}, - [7881] = {.lex_state = 339}, - [7882] = {.lex_state = 0}, - [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 0}, - [7885] = {.lex_state = 0}, - [7886] = {.lex_state = 0}, - [7887] = {.lex_state = 339}, - [7888] = {.lex_state = 0}, - [7889] = {.lex_state = 339}, - [7890] = {.lex_state = 0}, - [7891] = {.lex_state = 0}, - [7892] = {.lex_state = 0}, - [7893] = {.lex_state = 0}, - [7894] = {.lex_state = 195}, - [7895] = {.lex_state = 0}, - [7896] = {.lex_state = 0}, - [7897] = {.lex_state = 339}, - [7898] = {.lex_state = 339}, - [7899] = {.lex_state = 0}, - [7900] = {.lex_state = 339}, - [7901] = {.lex_state = 0}, - [7902] = {.lex_state = 0}, - [7903] = {.lex_state = 0}, - [7904] = {.lex_state = 339}, - [7905] = {.lex_state = 0}, - [7906] = {.lex_state = 339}, - [7907] = {.lex_state = 0}, - [7908] = {.lex_state = 112}, - [7909] = {.lex_state = 339}, - [7910] = {.lex_state = 0}, - [7911] = {.lex_state = 339}, - [7912] = {.lex_state = 339}, - [7913] = {.lex_state = 171}, - [7914] = {.lex_state = 0}, - [7915] = {.lex_state = 0}, - [7916] = {.lex_state = 339}, - [7917] = {.lex_state = 339}, - [7918] = {.lex_state = 0}, - [7919] = {.lex_state = 0}, - [7920] = {.lex_state = 0}, - [7921] = {.lex_state = 0}, - [7922] = {.lex_state = 339, .external_lex_state = 2}, - [7923] = {.lex_state = 0}, - [7924] = {.lex_state = 0}, - [7925] = {.lex_state = 0}, - [7926] = {.lex_state = 0}, - [7927] = {.lex_state = 0}, - [7928] = {.lex_state = 0}, - [7929] = {.lex_state = 0}, - [7930] = {.lex_state = 0}, - [7931] = {.lex_state = 0}, - [7932] = {.lex_state = 112}, - [7933] = {.lex_state = 195}, - [7934] = {.lex_state = 339}, - [7935] = {.lex_state = 339}, - [7936] = {.lex_state = 339}, - [7937] = {.lex_state = 0}, - [7938] = {.lex_state = 0}, - [7939] = {.lex_state = 195}, - [7940] = {.lex_state = 0}, - [7941] = {.lex_state = 0}, - [7942] = {.lex_state = 0}, - [7943] = {.lex_state = 339}, - [7944] = {.lex_state = 0}, - [7945] = {.lex_state = 0}, - [7946] = {.lex_state = 339}, - [7947] = {.lex_state = 195}, - [7948] = {.lex_state = 0}, - [7949] = {.lex_state = 0}, - [7950] = {.lex_state = 195}, - [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 339}, - [7953] = {.lex_state = 339}, - [7954] = {.lex_state = 0}, - [7955] = {.lex_state = 0}, - [7956] = {.lex_state = 0}, - [7957] = {.lex_state = 0}, - [7958] = {.lex_state = 339}, - [7959] = {.lex_state = 112}, - [7960] = {.lex_state = 0}, - [7961] = {.lex_state = 339}, - [7962] = {.lex_state = 0}, - [7963] = {.lex_state = 0}, - [7964] = {.lex_state = 339}, - [7965] = {.lex_state = 0}, - [7966] = {.lex_state = 0}, - [7967] = {.lex_state = 339}, - [7968] = {.lex_state = 0}, - [7969] = {.lex_state = 0}, - [7970] = {.lex_state = 0}, - [7971] = {.lex_state = 0}, - [7972] = {.lex_state = 339}, - [7973] = {.lex_state = 0}, - [7974] = {.lex_state = 339}, - [7975] = {.lex_state = 0}, - [7976] = {.lex_state = 0}, - [7977] = {.lex_state = 0}, - [7978] = {.lex_state = 0}, - [7979] = {.lex_state = 0}, - [7980] = {.lex_state = 0}, - [7981] = {.lex_state = 0}, - [7982] = {.lex_state = 0}, - [7983] = {.lex_state = 112}, - [7984] = {.lex_state = 0}, - [7985] = {.lex_state = 339}, - [7986] = {.lex_state = 0}, - [7987] = {.lex_state = 0}, - [7988] = {.lex_state = 0}, - [7989] = {.lex_state = 112}, - [7990] = {.lex_state = 112}, - [7991] = {.lex_state = 339}, - [7992] = {.lex_state = 339}, - [7993] = {.lex_state = 171}, - [7994] = {.lex_state = 339}, - [7995] = {.lex_state = 339}, - [7996] = {.lex_state = 0}, - [7997] = {.lex_state = 339}, - [7998] = {.lex_state = 0}, - [7999] = {.lex_state = 0}, - [8000] = {.lex_state = 0}, - [8001] = {.lex_state = 339}, - [8002] = {.lex_state = 339}, - [8003] = {.lex_state = 195}, - [8004] = {.lex_state = 0}, - [8005] = {.lex_state = 0}, - [8006] = {.lex_state = 0}, - [8007] = {.lex_state = 195}, - [8008] = {.lex_state = 0}, - [8009] = {.lex_state = 195}, - [8010] = {.lex_state = 0}, - [8011] = {.lex_state = 0}, - [8012] = {.lex_state = 339}, - [8013] = {.lex_state = 339}, - [8014] = {.lex_state = 0}, - [8015] = {.lex_state = 0}, - [8016] = {.lex_state = 339}, - [8017] = {.lex_state = 195}, - [8018] = {.lex_state = 339}, - [8019] = {.lex_state = 0}, - [8020] = {.lex_state = 0}, - [8021] = {.lex_state = 0}, - [8022] = {.lex_state = 339}, - [8023] = {.lex_state = 0}, - [8024] = {.lex_state = 0}, - [8025] = {.lex_state = 0}, - [8026] = {.lex_state = 0}, - [8027] = {.lex_state = 0}, - [8028] = {.lex_state = 339}, - [8029] = {.lex_state = 0}, - [8030] = {.lex_state = 0}, - [8031] = {.lex_state = 0}, - [8032] = {.lex_state = 0}, - [8033] = {.lex_state = 0}, - [8034] = {.lex_state = 339}, - [8035] = {.lex_state = 0}, - [8036] = {.lex_state = 195}, - [8037] = {.lex_state = 339}, - [8038] = {.lex_state = 339}, - [8039] = {.lex_state = 0}, - [8040] = {.lex_state = 0}, - [8041] = {.lex_state = 0}, - [8042] = {.lex_state = 339}, - [8043] = {.lex_state = 0}, - [8044] = {.lex_state = 0}, - [8045] = {.lex_state = 0}, - [8046] = {.lex_state = 339}, - [8047] = {.lex_state = 0}, - [8048] = {.lex_state = 0}, - [8049] = {.lex_state = 0}, - [8050] = {.lex_state = 0}, - [8051] = {.lex_state = 0}, - [8052] = {.lex_state = 0}, - [8053] = {.lex_state = 0}, - [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 0}, - [8056] = {.lex_state = 0}, - [8057] = {.lex_state = 195}, - [8058] = {.lex_state = 339}, - [8059] = {.lex_state = 0}, - [8060] = {.lex_state = 112}, - [8061] = {.lex_state = 0}, - [8062] = {.lex_state = 0}, - [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 0}, - [8065] = {.lex_state = 112}, - [8066] = {.lex_state = 0}, - [8067] = {.lex_state = 0}, - [8068] = {.lex_state = 0}, - [8069] = {.lex_state = 195}, - [8070] = {.lex_state = 0}, - [8071] = {.lex_state = 0}, - [8072] = {.lex_state = 0}, - [8073] = {.lex_state = 339}, - [8074] = {.lex_state = 0}, - [8075] = {.lex_state = 0}, - [8076] = {.lex_state = 0}, - [8077] = {.lex_state = 339}, - [8078] = {.lex_state = 0}, - [8079] = {.lex_state = 0}, - [8080] = {.lex_state = 0}, - [8081] = {.lex_state = 339}, - [8082] = {.lex_state = 0}, - [8083] = {.lex_state = 0}, - [8084] = {.lex_state = 112}, - [8085] = {.lex_state = 339}, - [8086] = {.lex_state = 0}, - [8087] = {.lex_state = 195}, - [8088] = {.lex_state = 339}, - [8089] = {.lex_state = 0}, - [8090] = {.lex_state = 0}, - [8091] = {.lex_state = 0}, - [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 195}, - [8094] = {.lex_state = 339}, - [8095] = {.lex_state = 0}, - [8096] = {.lex_state = 339}, - [8097] = {.lex_state = 0}, - [8098] = {.lex_state = 0}, - [8099] = {.lex_state = 0}, - [8100] = {.lex_state = 0}, - [8101] = {.lex_state = 171}, - [8102] = {.lex_state = 0}, - [8103] = {.lex_state = 0}, - [8104] = {.lex_state = 0}, - [8105] = {.lex_state = 0}, - [8106] = {.lex_state = 0}, - [8107] = {.lex_state = 112}, - [8108] = {.lex_state = 0}, - [8109] = {.lex_state = 0}, - [8110] = {.lex_state = 0}, - [8111] = {.lex_state = 0}, - [8112] = {.lex_state = 0}, - [8113] = {.lex_state = 339}, - [8114] = {.lex_state = 0}, - [8115] = {.lex_state = 171}, - [8116] = {.lex_state = 339}, - [8117] = {.lex_state = 0}, - [8118] = {.lex_state = 0}, - [8119] = {.lex_state = 0}, - [8120] = {.lex_state = 0}, - [8121] = {.lex_state = 0}, - [8122] = {.lex_state = 339, .external_lex_state = 2}, - [8123] = {.lex_state = 0}, - [8124] = {.lex_state = 112}, - [8125] = {.lex_state = 0}, - [8126] = {.lex_state = 0}, - [8127] = {.lex_state = 0}, - [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 0}, - [8130] = {.lex_state = 0}, - [8131] = {.lex_state = 0}, - [8132] = {.lex_state = 0}, - [8133] = {.lex_state = 0}, - [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 0}, - [8136] = {.lex_state = 0}, - [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 0}, - [8139] = {.lex_state = 0}, - [8140] = {.lex_state = 0}, - [8141] = {.lex_state = 0}, - [8142] = {.lex_state = 0}, - [8143] = {.lex_state = 195}, - [8144] = {.lex_state = 0}, - [8145] = {.lex_state = 0}, - [8146] = {.lex_state = 339, .external_lex_state = 2}, - [8147] = {.lex_state = 0}, - [8148] = {.lex_state = 0}, - [8149] = {.lex_state = 0}, - [8150] = {.lex_state = 339, .external_lex_state = 2}, - [8151] = {.lex_state = 0}, - [8152] = {.lex_state = 339, .external_lex_state = 2}, - [8153] = {.lex_state = 339, .external_lex_state = 2}, - [8154] = {.lex_state = 195}, - [8155] = {.lex_state = 339, .external_lex_state = 2}, - [8156] = {.lex_state = 339, .external_lex_state = 2}, - [8157] = {.lex_state = 339, .external_lex_state = 2}, - [8158] = {.lex_state = 339, .external_lex_state = 2}, - [8159] = {.lex_state = 339, .external_lex_state = 2}, - [8160] = {.lex_state = 339, .external_lex_state = 2}, - [8161] = {.lex_state = 339, .external_lex_state = 2}, - [8162] = {.lex_state = 339, .external_lex_state = 2}, - [8163] = {.lex_state = 339, .external_lex_state = 2}, - [8164] = {.lex_state = 339, .external_lex_state = 2}, - [8165] = {.lex_state = 339, .external_lex_state = 2}, - [8166] = {.lex_state = 112}, - [8167] = {.lex_state = 0}, - [8168] = {.lex_state = 339}, - [8169] = {.lex_state = 339}, - [8170] = {.lex_state = 0}, - [8171] = {.lex_state = 0}, - [8172] = {.lex_state = 0}, - [8173] = {.lex_state = 0}, - [8174] = {.lex_state = 0}, - [8175] = {.lex_state = 0}, - [8176] = {.lex_state = 195}, - [8177] = {.lex_state = 195}, - [8178] = {.lex_state = 0}, - [8179] = {.lex_state = 0}, - [8180] = {.lex_state = 0}, - [8181] = {.lex_state = 0}, - [8182] = {.lex_state = 339}, - [8183] = {.lex_state = 0}, - [8184] = {.lex_state = 0}, - [8185] = {.lex_state = 0}, - [8186] = {.lex_state = 0}, - [8187] = {.lex_state = 0}, - [8188] = {.lex_state = 0}, - [8189] = {.lex_state = 0}, - [8190] = {.lex_state = 0}, - [8191] = {.lex_state = 198}, - [8192] = {.lex_state = 171}, - [8193] = {.lex_state = 195}, - [8194] = {.lex_state = 0}, - [8195] = {.lex_state = 0}, - [8196] = {.lex_state = 0}, - [8197] = {.lex_state = 0}, - [8198] = {.lex_state = 0}, - [8199] = {.lex_state = 0}, - [8200] = {.lex_state = 0}, - [8201] = {.lex_state = 171}, - [8202] = {.lex_state = 0}, - [8203] = {.lex_state = 0}, - [8204] = {.lex_state = 195}, - [8205] = {.lex_state = 0}, - [8206] = {.lex_state = 0}, - [8207] = {.lex_state = 0}, - [8208] = {.lex_state = 339}, - [8209] = {.lex_state = 0}, - [8210] = {.lex_state = 0}, - [8211] = {.lex_state = 0}, - [8212] = {.lex_state = 0}, - [8213] = {.lex_state = 0}, - [8214] = {.lex_state = 113}, - [8215] = {.lex_state = 173}, - [8216] = {.lex_state = 195}, - [8217] = {.lex_state = 195}, - [8218] = {.lex_state = 339}, - [8219] = {.lex_state = 0}, - [8220] = {.lex_state = 171}, - [8221] = {.lex_state = 209}, - [8222] = {.lex_state = 0}, - [8223] = {.lex_state = 0}, - [8224] = {.lex_state = 0}, - [8225] = {.lex_state = 198}, - [8226] = {.lex_state = 0}, - [8227] = {.lex_state = 195}, - [8228] = {.lex_state = 0}, - [8229] = {.lex_state = 0}, - [8230] = {.lex_state = 195}, - [8231] = {.lex_state = 339}, - [8232] = {.lex_state = 0}, - [8233] = {.lex_state = 339}, - [8234] = {.lex_state = 0}, - [8235] = {.lex_state = 0}, - [8236] = {.lex_state = 195}, - [8237] = {.lex_state = 173}, - [8238] = {.lex_state = 0}, - [8239] = {.lex_state = 0}, - [8240] = {.lex_state = 195}, - [8241] = {.lex_state = 0}, - [8242] = {.lex_state = 195}, - [8243] = {.lex_state = 198}, - [8244] = {.lex_state = 0}, - [8245] = {.lex_state = 171}, - [8246] = {.lex_state = 339}, - [8247] = {.lex_state = 195}, - [8248] = {.lex_state = 113}, - [8249] = {.lex_state = 173}, - [8250] = {.lex_state = 195}, - [8251] = {.lex_state = 195}, - [8252] = {.lex_state = 195}, - [8253] = {.lex_state = 0}, - [8254] = {.lex_state = 0}, - [8255] = {.lex_state = 0}, - [8256] = {.lex_state = 195}, - [8257] = {.lex_state = 0}, - [8258] = {.lex_state = 0}, - [8259] = {.lex_state = 0}, - [8260] = {.lex_state = 0}, - [8261] = {.lex_state = 339}, - [8262] = {.lex_state = 0}, - [8263] = {.lex_state = 0}, - [8264] = {.lex_state = 339}, - [8265] = {.lex_state = 339}, - [8266] = {.lex_state = 0}, - [8267] = {.lex_state = 0}, - [8268] = {.lex_state = 195}, - [8269] = {.lex_state = 0}, - [8270] = {.lex_state = 195}, - [8271] = {.lex_state = 0}, - [8272] = {.lex_state = 0}, - [8273] = {.lex_state = 195}, - [8274] = {.lex_state = 0}, - [8275] = {.lex_state = 0}, - [8276] = {.lex_state = 0}, - [8277] = {.lex_state = 0}, - [8278] = {.lex_state = 0}, - [8279] = {.lex_state = 198}, - [8280] = {.lex_state = 173}, - [8281] = {.lex_state = 0}, - [8282] = {.lex_state = 0}, - [8283] = {.lex_state = 173}, - [8284] = {.lex_state = 0}, - [8285] = {.lex_state = 339}, - [8286] = {.lex_state = 195}, - [8287] = {.lex_state = 0}, - [8288] = {.lex_state = 0}, - [8289] = {.lex_state = 195}, - [8290] = {.lex_state = 0}, - [8291] = {.lex_state = 0}, - [8292] = {.lex_state = 0}, - [8293] = {.lex_state = 0}, - [8294] = {.lex_state = 0}, - [8295] = {.lex_state = 0}, - [8296] = {.lex_state = 0, .external_lex_state = 2}, - [8297] = {.lex_state = 0}, - [8298] = {.lex_state = 0}, - [8299] = {.lex_state = 0}, - [8300] = {.lex_state = 195}, - [8301] = {.lex_state = 0}, - [8302] = {.lex_state = 0}, - [8303] = {.lex_state = 113}, - [8304] = {.lex_state = 0}, - [8305] = {.lex_state = 195}, - [8306] = {.lex_state = 239}, - [8307] = {.lex_state = 0}, - [8308] = {.lex_state = 173}, - [8309] = {.lex_state = 173}, - [8310] = {.lex_state = 0}, - [8311] = {.lex_state = 195}, - [8312] = {.lex_state = 0}, - [8313] = {.lex_state = 198}, - [8314] = {.lex_state = 195}, - [8315] = {.lex_state = 195}, - [8316] = {.lex_state = 0}, - [8317] = {.lex_state = 0}, - [8318] = {.lex_state = 113}, - [8319] = {.lex_state = 0}, - [8320] = {.lex_state = 195}, - [8321] = {.lex_state = 0}, - [8322] = {.lex_state = 195}, - [8323] = {.lex_state = 0}, - [8324] = {.lex_state = 195}, - [8325] = {.lex_state = 339}, - [8326] = {.lex_state = 0}, - [8327] = {.lex_state = 0}, - [8328] = {.lex_state = 0}, - [8329] = {.lex_state = 0}, - [8330] = {.lex_state = 339}, - [8331] = {.lex_state = 0}, - [8332] = {.lex_state = 0}, - [8333] = {.lex_state = 339}, - [8334] = {.lex_state = 195}, - [8335] = {.lex_state = 0}, - [8336] = {.lex_state = 195}, - [8337] = {.lex_state = 0}, - [8338] = {.lex_state = 339}, - [8339] = {.lex_state = 173}, - [8340] = {.lex_state = 0}, - [8341] = {.lex_state = 0}, - [8342] = {.lex_state = 113}, - [8343] = {.lex_state = 0}, - [8344] = {.lex_state = 0}, - [8345] = {.lex_state = 113}, - [8346] = {.lex_state = 113}, - [8347] = {.lex_state = 113}, - [8348] = {.lex_state = 195}, - [8349] = {.lex_state = 0}, - [8350] = {.lex_state = 195}, - [8351] = {.lex_state = 339}, - [8352] = {.lex_state = 195}, - [8353] = {.lex_state = 0}, - [8354] = {.lex_state = 0}, - [8355] = {.lex_state = 113}, - [8356] = {.lex_state = 113}, - [8357] = {.lex_state = 0}, - [8358] = {.lex_state = 113}, - [8359] = {.lex_state = 0}, - [8360] = {.lex_state = 0}, - [8361] = {.lex_state = 198}, - [8362] = {.lex_state = 0}, - [8363] = {.lex_state = 0}, - [8364] = {.lex_state = 113}, - [8365] = {.lex_state = 195}, - [8366] = {.lex_state = 0}, - [8367] = {.lex_state = 198}, - [8368] = {.lex_state = 173}, - [8369] = {.lex_state = 0}, - [8370] = {.lex_state = 0}, - [8371] = {.lex_state = 0, .external_lex_state = 2}, - [8372] = {.lex_state = 0}, - [8373] = {.lex_state = 0}, - [8374] = {.lex_state = 0}, - [8375] = {.lex_state = 0}, - [8376] = {.lex_state = 0}, - [8377] = {.lex_state = 195}, - [8378] = {.lex_state = 0}, - [8379] = {.lex_state = 195}, - [8380] = {.lex_state = 171}, - [8381] = {.lex_state = 0}, - [8382] = {.lex_state = 339}, - [8383] = {.lex_state = 195}, - [8384] = {.lex_state = 195}, - [8385] = {.lex_state = 339}, - [8386] = {.lex_state = 173}, - [8387] = {.lex_state = 0}, - [8388] = {.lex_state = 113}, - [8389] = {.lex_state = 0}, - [8390] = {.lex_state = 339}, - [8391] = {.lex_state = 0}, - [8392] = {.lex_state = 0}, - [8393] = {.lex_state = 0}, - [8394] = {.lex_state = 0}, - [8395] = {.lex_state = 0}, - [8396] = {.lex_state = 195}, - [8397] = {.lex_state = 0}, - [8398] = {.lex_state = 0}, - [8399] = {.lex_state = 0}, - [8400] = {.lex_state = 339}, - [8401] = {.lex_state = 0}, - [8402] = {.lex_state = 0}, - [8403] = {.lex_state = 195}, - [8404] = {.lex_state = 0}, - [8405] = {.lex_state = 339}, - [8406] = {.lex_state = 0}, - [8407] = {.lex_state = 0}, - [8408] = {.lex_state = 173}, - [8409] = {.lex_state = 0}, - [8410] = {.lex_state = 0}, - [8411] = {.lex_state = 195}, - [8412] = {.lex_state = 0}, - [8413] = {.lex_state = 195}, - [8414] = {.lex_state = 0}, - [8415] = {.lex_state = 0}, - [8416] = {.lex_state = 0}, - [8417] = {.lex_state = 0}, - [8418] = {.lex_state = 0}, - [8419] = {.lex_state = 0}, - [8420] = {.lex_state = 0}, - [8421] = {.lex_state = 0, .external_lex_state = 3}, - [8422] = {.lex_state = 0}, - [8423] = {.lex_state = 0}, - [8424] = {.lex_state = 173}, - [8425] = {.lex_state = 0}, - [8426] = {.lex_state = 0}, - [8427] = {.lex_state = 0}, - [8428] = {.lex_state = 195}, - [8429] = {.lex_state = 0}, - [8430] = {.lex_state = 0}, - [8431] = {.lex_state = 0, .external_lex_state = 3}, - [8432] = {.lex_state = 198}, - [8433] = {.lex_state = 0}, - [8434] = {.lex_state = 0, .external_lex_state = 2}, - [8435] = {.lex_state = 0}, - [8436] = {.lex_state = 0}, - [8437] = {.lex_state = 0}, - [8438] = {.lex_state = 0}, - [8439] = {.lex_state = 0}, - [8440] = {.lex_state = 0}, - [8441] = {.lex_state = 0}, - [8442] = {.lex_state = 0}, - [8443] = {.lex_state = 0}, - [8444] = {.lex_state = 0}, - [8445] = {.lex_state = 198}, - [8446] = {.lex_state = 195}, - [8447] = {.lex_state = 0}, - [8448] = {.lex_state = 198}, - [8449] = {.lex_state = 0}, - [8450] = {.lex_state = 0}, - [8451] = {.lex_state = 173}, - [8452] = {.lex_state = 0}, - [8453] = {.lex_state = 339}, - [8454] = {.lex_state = 0}, - [8455] = {.lex_state = 113}, - [8456] = {.lex_state = 195}, - [8457] = {.lex_state = 0}, - [8458] = {.lex_state = 195}, - [8459] = {.lex_state = 0}, - [8460] = {.lex_state = 0}, - [8461] = {.lex_state = 0}, - [8462] = {.lex_state = 0}, - [8463] = {.lex_state = 0}, - [8464] = {.lex_state = 0}, - [8465] = {.lex_state = 0}, - [8466] = {.lex_state = 0}, - [8467] = {.lex_state = 0}, - [8468] = {.lex_state = 0}, - [8469] = {.lex_state = 0}, - [8470] = {.lex_state = 0}, - [8471] = {.lex_state = 173}, - [8472] = {.lex_state = 195}, - [8473] = {.lex_state = 173}, - [8474] = {.lex_state = 0}, - [8475] = {.lex_state = 173}, - [8476] = {.lex_state = 0}, - [8477] = {.lex_state = 113}, - [8478] = {.lex_state = 0}, - [8479] = {.lex_state = 0}, - [8480] = {.lex_state = 0}, - [8481] = {.lex_state = 173}, - [8482] = {.lex_state = 195}, - [8483] = {.lex_state = 0}, - [8484] = {.lex_state = 173}, - [8485] = {.lex_state = 0}, - [8486] = {.lex_state = 0}, - [8487] = {.lex_state = 195}, - [8488] = {.lex_state = 173}, - [8489] = {.lex_state = 0}, - [8490] = {.lex_state = 0, .external_lex_state = 2}, - [8491] = {.lex_state = 0}, - [8492] = {.lex_state = 174}, - [8493] = {.lex_state = 0}, - [8494] = {.lex_state = 195}, - [8495] = {.lex_state = 339}, - [8496] = {.lex_state = 173}, - [8497] = {.lex_state = 173}, - [8498] = {.lex_state = 0}, - [8499] = {.lex_state = 195}, - [8500] = {.lex_state = 0}, - [8501] = {.lex_state = 0}, - [8502] = {.lex_state = 339}, - [8503] = {.lex_state = 0}, - [8504] = {.lex_state = 195}, - [8505] = {.lex_state = 173}, - [8506] = {.lex_state = 0}, - [8507] = {.lex_state = 0}, - [8508] = {.lex_state = 0}, - [8509] = {.lex_state = 0, .external_lex_state = 2}, - [8510] = {.lex_state = 0}, - [8511] = {.lex_state = 0}, - [8512] = {.lex_state = 339}, - [8513] = {.lex_state = 0}, - [8514] = {.lex_state = 0}, - [8515] = {.lex_state = 0}, - [8516] = {.lex_state = 0}, - [8517] = {.lex_state = 0}, - [8518] = {.lex_state = 339}, - [8519] = {.lex_state = 0}, - [8520] = {.lex_state = 0}, - [8521] = {.lex_state = 195}, - [8522] = {.lex_state = 0}, - [8523] = {.lex_state = 0}, - [8524] = {.lex_state = 0, .external_lex_state = 2}, - [8525] = {.lex_state = 0}, - [8526] = {.lex_state = 0}, - [8527] = {.lex_state = 339}, - [8528] = {.lex_state = 0}, - [8529] = {.lex_state = 195}, - [8530] = {.lex_state = 0}, - [8531] = {.lex_state = 0}, - [8532] = {.lex_state = 173}, - [8533] = {.lex_state = 195}, - [8534] = {.lex_state = 0}, - [8535] = {.lex_state = 0, .external_lex_state = 2}, - [8536] = {.lex_state = 0}, - [8537] = {.lex_state = 0}, - [8538] = {.lex_state = 0}, - [8539] = {.lex_state = 0, .external_lex_state = 2}, - [8540] = {.lex_state = 0}, - [8541] = {.lex_state = 0}, - [8542] = {.lex_state = 0}, - [8543] = {.lex_state = 0, .external_lex_state = 2}, - [8544] = {.lex_state = 0}, - [8545] = {.lex_state = 0, .external_lex_state = 2}, - [8546] = {.lex_state = 0}, - [8547] = {.lex_state = 0, .external_lex_state = 2}, - [8548] = {.lex_state = 0}, - [8549] = {.lex_state = 0, .external_lex_state = 2}, - [8550] = {.lex_state = 0}, - [8551] = {.lex_state = 0, .external_lex_state = 2}, - [8552] = {.lex_state = 0}, - [8553] = {.lex_state = 0, .external_lex_state = 2}, - [8554] = {.lex_state = 0}, - [8555] = {.lex_state = 0}, - [8556] = {.lex_state = 0}, - [8557] = {.lex_state = 339}, - [8558] = {.lex_state = 0}, - [8559] = {.lex_state = 339}, - [8560] = {.lex_state = 339}, - [8561] = {.lex_state = 339}, - [8562] = {.lex_state = 113}, - [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 339}, - [8565] = {.lex_state = 113}, - [8566] = {.lex_state = 339}, - [8567] = {.lex_state = 0}, - [8568] = {.lex_state = 173}, - [8569] = {.lex_state = 0}, - [8570] = {.lex_state = 0}, - [8571] = {.lex_state = 0}, - [8572] = {.lex_state = 0}, - [8573] = {.lex_state = 195}, - [8574] = {.lex_state = 0}, - [8575] = {.lex_state = 0}, - [8576] = {.lex_state = 195}, - [8577] = {.lex_state = 0}, - [8578] = {.lex_state = 195}, - [8579] = {.lex_state = 0}, - [8580] = {.lex_state = 0}, - [8581] = {.lex_state = 0}, - [8582] = {.lex_state = 195}, - [8583] = {.lex_state = 173}, - [8584] = {.lex_state = 339}, - [8585] = {.lex_state = 173}, - [8586] = {.lex_state = 0}, - [8587] = {.lex_state = 339}, - [8588] = {.lex_state = 0}, - [8589] = {.lex_state = 173}, - [8590] = {.lex_state = 339}, - [8591] = {.lex_state = 173}, - [8592] = {.lex_state = 0, .external_lex_state = 3}, - [8593] = {.lex_state = 198}, - [8594] = {.lex_state = 0}, - [8595] = {.lex_state = 339}, - [8596] = {.lex_state = 0}, - [8597] = {.lex_state = 0}, - [8598] = {.lex_state = 113}, - [8599] = {.lex_state = 113}, - [8600] = {.lex_state = 0}, - [8601] = {.lex_state = 0}, - [8602] = {.lex_state = 0}, - [8603] = {.lex_state = 0}, - [8604] = {.lex_state = 195}, - [8605] = {.lex_state = 0}, - [8606] = {.lex_state = 195}, - [8607] = {.lex_state = 195}, - [8608] = {.lex_state = 0}, - [8609] = {.lex_state = 0}, - [8610] = {.lex_state = 0}, - [8611] = {.lex_state = 0}, - [8612] = {.lex_state = 0}, - [8613] = {.lex_state = 198}, - [8614] = {.lex_state = 0}, - [8615] = {.lex_state = 195}, - [8616] = {.lex_state = 0}, - [8617] = {.lex_state = 0}, - [8618] = {.lex_state = 0}, - [8619] = {.lex_state = 0}, - [8620] = {.lex_state = 0}, - [8621] = {.lex_state = 0}, - [8622] = {.lex_state = 0}, - [8623] = {.lex_state = 0}, - [8624] = {.lex_state = 0}, - [8625] = {.lex_state = 0}, - [8626] = {.lex_state = 0}, - [8627] = {.lex_state = 0}, - [8628] = {.lex_state = 195}, - [8629] = {.lex_state = 0}, - [8630] = {.lex_state = 198}, - [8631] = {.lex_state = 0}, - [8632] = {.lex_state = 0}, - [8633] = {.lex_state = 198}, - [8634] = {.lex_state = 0}, - [8635] = {.lex_state = 0}, - [8636] = {.lex_state = 0}, - [8637] = {.lex_state = 0}, - [8638] = {.lex_state = 0}, - [8639] = {.lex_state = 339}, - [8640] = {.lex_state = 0}, - [8641] = {.lex_state = 173}, - [8642] = {.lex_state = 0}, - [8643] = {.lex_state = 0}, - [8644] = {.lex_state = 0}, - [8645] = {.lex_state = 0}, - [8646] = {.lex_state = 0}, - [8647] = {.lex_state = 0}, - [8648] = {.lex_state = 0}, - [8649] = {.lex_state = 339}, - [8650] = {.lex_state = 0}, - [8651] = {.lex_state = 113}, - [8652] = {.lex_state = 0}, - [8653] = {.lex_state = 195}, - [8654] = {.lex_state = 0}, - [8655] = {.lex_state = 0}, - [8656] = {.lex_state = 0}, - [8657] = {.lex_state = 0}, - [8658] = {.lex_state = 0}, - [8659] = {.lex_state = 0}, - [8660] = {.lex_state = 0}, - [8661] = {.lex_state = 198}, - [8662] = {.lex_state = 195}, - [8663] = {.lex_state = 173}, - [8664] = {.lex_state = 0}, - [8665] = {.lex_state = 0}, - [8666] = {.lex_state = 195}, - [8667] = {.lex_state = 195}, - [8668] = {.lex_state = 0}, - [8669] = {.lex_state = 195}, - [8670] = {.lex_state = 0}, - [8671] = {.lex_state = 339}, - [8672] = {.lex_state = 195}, - [8673] = {.lex_state = 0}, - [8674] = {.lex_state = 0}, - [8675] = {.lex_state = 0}, - [8676] = {.lex_state = 0}, - [8677] = {.lex_state = 0}, - [8678] = {.lex_state = 0}, - [8679] = {.lex_state = 0}, - [8680] = {.lex_state = 0, .external_lex_state = 2}, - [8681] = {.lex_state = 0}, - [8682] = {.lex_state = 0}, - [8683] = {.lex_state = 339}, - [8684] = {.lex_state = 198}, - [8685] = {.lex_state = 0}, - [8686] = {.lex_state = 113}, - [8687] = {.lex_state = 339}, - [8688] = {.lex_state = 0}, - [8689] = {.lex_state = 0}, - [8690] = {.lex_state = 0}, - [8691] = {.lex_state = 0}, - [8692] = {.lex_state = 0}, - [8693] = {.lex_state = 339}, - [8694] = {.lex_state = 0}, - [8695] = {.lex_state = 195}, - [8696] = {.lex_state = 0}, - [8697] = {.lex_state = 0}, - [8698] = {.lex_state = 173}, - [8699] = {.lex_state = 113}, - [8700] = {.lex_state = 0}, - [8701] = {.lex_state = 195}, - [8702] = {.lex_state = 198}, - [8703] = {.lex_state = 0}, - [8704] = {.lex_state = 0}, - [8705] = {.lex_state = 0}, - [8706] = {.lex_state = 113}, - [8707] = {.lex_state = 195}, - [8708] = {.lex_state = 0}, - [8709] = {.lex_state = 195}, - [8710] = {.lex_state = 0}, - [8711] = {.lex_state = 173}, - [8712] = {.lex_state = 0}, - [8713] = {.lex_state = 195}, - [8714] = {.lex_state = 0}, - [8715] = {.lex_state = 0}, - [8716] = {.lex_state = 195}, - [8717] = {.lex_state = 0}, - [8718] = {.lex_state = 339}, - [8719] = {.lex_state = 0}, + [4082] = {.lex_state = 240}, + [4083] = {.lex_state = 272}, + [4084] = {.lex_state = 272}, + [4085] = {.lex_state = 272}, + [4086] = {.lex_state = 272}, + [4087] = {.lex_state = 272}, + [4088] = {.lex_state = 335}, + [4089] = {.lex_state = 272}, + [4090] = {.lex_state = 272}, + [4091] = {.lex_state = 335}, + [4092] = {.lex_state = 272}, + [4093] = {.lex_state = 335}, + [4094] = {.lex_state = 335}, + [4095] = {.lex_state = 335}, + [4096] = {.lex_state = 335}, + [4097] = {.lex_state = 240}, + [4098] = {.lex_state = 333}, + [4099] = {.lex_state = 333}, + [4100] = {.lex_state = 240}, + [4101] = {.lex_state = 333}, + [4102] = {.lex_state = 272}, + [4103] = {.lex_state = 333}, + [4104] = {.lex_state = 333}, + [4105] = {.lex_state = 333}, + [4106] = {.lex_state = 240}, + [4107] = {.lex_state = 240}, + [4108] = {.lex_state = 333}, + [4109] = {.lex_state = 335}, + [4110] = {.lex_state = 333}, + [4111] = {.lex_state = 333}, + [4112] = {.lex_state = 333}, + [4113] = {.lex_state = 333}, + [4114] = {.lex_state = 333}, + [4115] = {.lex_state = 333}, + [4116] = {.lex_state = 335}, + [4117] = {.lex_state = 333}, + [4118] = {.lex_state = 333}, + [4119] = {.lex_state = 333}, + [4120] = {.lex_state = 333}, + [4121] = {.lex_state = 335}, + [4122] = {.lex_state = 289}, + [4123] = {.lex_state = 333}, + [4124] = {.lex_state = 316}, + [4125] = {.lex_state = 299}, + [4126] = {.lex_state = 328}, + [4127] = {.lex_state = 333}, + [4128] = {.lex_state = 333}, + [4129] = {.lex_state = 328}, + [4130] = {.lex_state = 289}, + [4131] = {.lex_state = 300}, + [4132] = {.lex_state = 289}, + [4133] = {.lex_state = 272}, + [4134] = {.lex_state = 272}, + [4135] = {.lex_state = 272}, + [4136] = {.lex_state = 272}, + [4137] = {.lex_state = 240}, + [4138] = {.lex_state = 272}, + [4139] = {.lex_state = 240}, + [4140] = {.lex_state = 272}, + [4141] = {.lex_state = 272}, + [4142] = {.lex_state = 272}, + [4143] = {.lex_state = 272}, + [4144] = {.lex_state = 272}, + [4145] = {.lex_state = 272}, + [4146] = {.lex_state = 272}, + [4147] = {.lex_state = 272}, + [4148] = {.lex_state = 272}, + [4149] = {.lex_state = 272}, + [4150] = {.lex_state = 328}, + [4151] = {.lex_state = 320}, + [4152] = {.lex_state = 333}, + [4153] = {.lex_state = 333}, + [4154] = {.lex_state = 328}, + [4155] = {.lex_state = 333}, + [4156] = {.lex_state = 333}, + [4157] = {.lex_state = 333}, + [4158] = {.lex_state = 333}, + [4159] = {.lex_state = 333}, + [4160] = {.lex_state = 298}, + [4161] = {.lex_state = 298}, + [4162] = {.lex_state = 240}, + [4163] = {.lex_state = 278}, + [4164] = {.lex_state = 240}, + [4165] = {.lex_state = 335}, + [4166] = {.lex_state = 268}, + [4167] = {.lex_state = 252}, + [4168] = {.lex_state = 335}, + [4169] = {.lex_state = 290}, + [4170] = {.lex_state = 316}, + [4171] = {.lex_state = 271}, + [4172] = {.lex_state = 281}, + [4173] = {.lex_state = 271}, + [4174] = {.lex_state = 271}, + [4175] = {.lex_state = 252}, + [4176] = {.lex_state = 335}, + [4177] = {.lex_state = 316}, + [4178] = {.lex_state = 289}, + [4179] = {.lex_state = 335}, + [4180] = {.lex_state = 316}, + [4181] = {.lex_state = 316}, + [4182] = {.lex_state = 252}, + [4183] = {.lex_state = 278}, + [4184] = {.lex_state = 278}, + [4185] = {.lex_state = 290}, + [4186] = {.lex_state = 298}, + [4187] = {.lex_state = 290}, + [4188] = {.lex_state = 252}, + [4189] = {.lex_state = 316}, + [4190] = {.lex_state = 290}, + [4191] = {.lex_state = 278}, + [4192] = {.lex_state = 316}, + [4193] = {.lex_state = 340}, + [4194] = {.lex_state = 290}, + [4195] = {.lex_state = 271}, + [4196] = {.lex_state = 271}, + [4197] = {.lex_state = 316}, + [4198] = {.lex_state = 290}, + [4199] = {.lex_state = 271}, + [4200] = {.lex_state = 335}, + [4201] = {.lex_state = 335}, + [4202] = {.lex_state = 252}, + [4203] = {.lex_state = 335}, + [4204] = {.lex_state = 316}, + [4205] = {.lex_state = 290}, + [4206] = {.lex_state = 278}, + [4207] = {.lex_state = 290}, + [4208] = {.lex_state = 298}, + [4209] = {.lex_state = 298}, + [4210] = {.lex_state = 290}, + [4211] = {.lex_state = 316}, + [4212] = {.lex_state = 290}, + [4213] = {.lex_state = 298}, + [4214] = {.lex_state = 298}, + [4215] = {.lex_state = 298}, + [4216] = {.lex_state = 278}, + [4217] = {.lex_state = 278}, + [4218] = {.lex_state = 278}, + [4219] = {.lex_state = 335}, + [4220] = {.lex_state = 290}, + [4221] = {.lex_state = 339}, + [4222] = {.lex_state = 290}, + [4223] = {.lex_state = 247}, + [4224] = {.lex_state = 301}, + [4225] = {.lex_state = 270}, + [4226] = {.lex_state = 270}, + [4227] = {.lex_state = 270}, + [4228] = {.lex_state = 334}, + [4229] = {.lex_state = 301}, + [4230] = {.lex_state = 290}, + [4231] = {.lex_state = 339}, + [4232] = {.lex_state = 290}, + [4233] = {.lex_state = 270}, + [4234] = {.lex_state = 338}, + [4235] = {.lex_state = 316}, + [4236] = {.lex_state = 270}, + [4237] = {.lex_state = 290}, + [4238] = {.lex_state = 339}, + [4239] = {.lex_state = 247}, + [4240] = {.lex_state = 301}, + [4241] = {.lex_state = 290}, + [4242] = {.lex_state = 301}, + [4243] = {.lex_state = 338}, + [4244] = {.lex_state = 289}, + [4245] = {.lex_state = 270}, + [4246] = {.lex_state = 270}, + [4247] = {.lex_state = 289}, + [4248] = {.lex_state = 270}, + [4249] = {.lex_state = 270}, + [4250] = {.lex_state = 316}, + [4251] = {.lex_state = 316}, + [4252] = {.lex_state = 316}, + [4253] = {.lex_state = 301}, + [4254] = {.lex_state = 316}, + [4255] = {.lex_state = 316}, + [4256] = {.lex_state = 335}, + [4257] = {.lex_state = 316}, + [4258] = {.lex_state = 335}, + [4259] = {.lex_state = 290}, + [4260] = {.lex_state = 316}, + [4261] = {.lex_state = 316}, + [4262] = {.lex_state = 247}, + [4263] = {.lex_state = 316}, + [4264] = {.lex_state = 290}, + [4265] = {.lex_state = 301}, + [4266] = {.lex_state = 316}, + [4267] = {.lex_state = 301}, + [4268] = {.lex_state = 288}, + [4269] = {.lex_state = 280}, + [4270] = {.lex_state = 339}, + [4271] = {.lex_state = 291}, + [4272] = {.lex_state = 301}, + [4273] = {.lex_state = 290}, + [4274] = {.lex_state = 290}, + [4275] = {.lex_state = 316}, + [4276] = {.lex_state = 278}, + [4277] = {.lex_state = 278}, + [4278] = {.lex_state = 291}, + [4279] = {.lex_state = 278}, + [4280] = {.lex_state = 278}, + [4281] = {.lex_state = 316}, + [4282] = {.lex_state = 278}, + [4283] = {.lex_state = 278}, + [4284] = {.lex_state = 278}, + [4285] = {.lex_state = 316}, + [4286] = {.lex_state = 278}, + [4287] = {.lex_state = 278}, + [4288] = {.lex_state = 278}, + [4289] = {.lex_state = 278}, + [4290] = {.lex_state = 278}, + [4291] = {.lex_state = 247}, + [4292] = {.lex_state = 301}, + [4293] = {.lex_state = 272}, + [4294] = {.lex_state = 303}, + [4295] = {.lex_state = 316}, + [4296] = {.lex_state = 270}, + [4297] = {.lex_state = 340}, + [4298] = {.lex_state = 316}, + [4299] = {.lex_state = 340}, + [4300] = {.lex_state = 340}, + [4301] = {.lex_state = 316}, + [4302] = {.lex_state = 315}, + [4303] = {.lex_state = 270}, + [4304] = {.lex_state = 315}, + [4305] = {.lex_state = 270}, + [4306] = {.lex_state = 316}, + [4307] = {.lex_state = 272}, + [4308] = {.lex_state = 270}, + [4309] = {.lex_state = 270}, + [4310] = {.lex_state = 270}, + [4311] = {.lex_state = 270}, + [4312] = {.lex_state = 240}, + [4313] = {.lex_state = 315}, + [4314] = {.lex_state = 315}, + [4315] = {.lex_state = 316}, + [4316] = {.lex_state = 316}, + [4317] = {.lex_state = 316}, + [4318] = {.lex_state = 316}, + [4319] = {.lex_state = 272}, + [4320] = {.lex_state = 272}, + [4321] = {.lex_state = 272}, + [4322] = {.lex_state = 316}, + [4323] = {.lex_state = 316}, + [4324] = {.lex_state = 315}, + [4325] = {.lex_state = 301}, + [4326] = {.lex_state = 270}, + [4327] = {.lex_state = 270}, + [4328] = {.lex_state = 289}, + [4329] = {.lex_state = 316}, + [4330] = {.lex_state = 315}, + [4331] = {.lex_state = 315}, + [4332] = {.lex_state = 316}, + [4333] = {.lex_state = 272}, + [4334] = {.lex_state = 316}, + [4335] = {.lex_state = 272}, + [4336] = {.lex_state = 272}, + [4337] = {.lex_state = 272}, + [4338] = {.lex_state = 272}, + [4339] = {.lex_state = 272}, + [4340] = {.lex_state = 272}, + [4341] = {.lex_state = 272}, + [4342] = {.lex_state = 315}, + [4343] = {.lex_state = 316}, + [4344] = {.lex_state = 316}, + [4345] = {.lex_state = 316}, + [4346] = {.lex_state = 315}, + [4347] = {.lex_state = 315}, + [4348] = {.lex_state = 315}, + [4349] = {.lex_state = 270}, + [4350] = {.lex_state = 335}, + [4351] = {.lex_state = 316}, + [4352] = {.lex_state = 315}, + [4353] = {.lex_state = 315}, + [4354] = {.lex_state = 301}, + [4355] = {.lex_state = 335}, + [4356] = {.lex_state = 316}, + [4357] = {.lex_state = 315}, + [4358] = {.lex_state = 316}, + [4359] = {.lex_state = 315}, + [4360] = {.lex_state = 315}, + [4361] = {.lex_state = 272}, + [4362] = {.lex_state = 272}, + [4363] = {.lex_state = 289}, + [4364] = {.lex_state = 316}, + [4365] = {.lex_state = 289}, + [4366] = {.lex_state = 289}, + [4367] = {.lex_state = 289}, + [4368] = {.lex_state = 340}, + [4369] = {.lex_state = 315}, + [4370] = {.lex_state = 315}, + [4371] = {.lex_state = 302}, + [4372] = {.lex_state = 280}, + [4373] = {.lex_state = 316}, + [4374] = {.lex_state = 280}, + [4375] = {.lex_state = 316}, + [4376] = {.lex_state = 316}, + [4377] = {.lex_state = 301}, + [4378] = {.lex_state = 301}, + [4379] = {.lex_state = 315}, + [4380] = {.lex_state = 272}, + [4381] = {.lex_state = 289}, + [4382] = {.lex_state = 272}, + [4383] = {.lex_state = 289}, + [4384] = {.lex_state = 289}, + [4385] = {.lex_state = 316}, + [4386] = {.lex_state = 315}, + [4387] = {.lex_state = 315}, + [4388] = {.lex_state = 340}, + [4389] = {.lex_state = 340}, + [4390] = {.lex_state = 340}, + [4391] = {.lex_state = 272}, + [4392] = {.lex_state = 272}, + [4393] = {.lex_state = 272}, + [4394] = {.lex_state = 316}, + [4395] = {.lex_state = 316}, + [4396] = {.lex_state = 316}, + [4397] = {.lex_state = 272}, + [4398] = {.lex_state = 316}, + [4399] = {.lex_state = 316}, + [4400] = {.lex_state = 316}, + [4401] = {.lex_state = 316}, + [4402] = {.lex_state = 316}, + [4403] = {.lex_state = 272}, + [4404] = {.lex_state = 316}, + [4405] = {.lex_state = 289}, + [4406] = {.lex_state = 316}, + [4407] = {.lex_state = 316}, + [4408] = {.lex_state = 316}, + [4409] = {.lex_state = 301}, + [4410] = {.lex_state = 301}, + [4411] = {.lex_state = 316}, + [4412] = {.lex_state = 301}, + [4413] = {.lex_state = 303}, + [4414] = {.lex_state = 301}, + [4415] = {.lex_state = 316}, + [4416] = {.lex_state = 272}, + [4417] = {.lex_state = 272}, + [4418] = {.lex_state = 272}, + [4419] = {.lex_state = 301}, + [4420] = {.lex_state = 272}, + [4421] = {.lex_state = 272}, + [4422] = {.lex_state = 272}, + [4423] = {.lex_state = 272}, + [4424] = {.lex_state = 301}, + [4425] = {.lex_state = 302}, + [4426] = {.lex_state = 335}, + [4427] = {.lex_state = 272}, + [4428] = {.lex_state = 316}, + [4429] = {.lex_state = 289}, + [4430] = {.lex_state = 316}, + [4431] = {.lex_state = 272}, + [4432] = {.lex_state = 272}, + [4433] = {.lex_state = 272}, + [4434] = {.lex_state = 272}, + [4435] = {.lex_state = 272}, + [4436] = {.lex_state = 272}, + [4437] = {.lex_state = 272}, + [4438] = {.lex_state = 272}, + [4439] = {.lex_state = 272}, + [4440] = {.lex_state = 272}, + [4441] = {.lex_state = 272}, + [4442] = {.lex_state = 272}, + [4443] = {.lex_state = 272}, + [4444] = {.lex_state = 335}, + [4445] = {.lex_state = 271}, + [4446] = {.lex_state = 324}, + [4447] = {.lex_state = 290}, + [4448] = {.lex_state = 290}, + [4449] = {.lex_state = 335}, + [4450] = {.lex_state = 290}, + [4451] = {.lex_state = 290}, + [4452] = {.lex_state = 290}, + [4453] = {.lex_state = 286}, + [4454] = {.lex_state = 286}, + [4455] = {.lex_state = 290}, + [4456] = {.lex_state = 286}, + [4457] = {.lex_state = 290}, + [4458] = {.lex_state = 290}, + [4459] = {.lex_state = 317}, + [4460] = {.lex_state = 290}, + [4461] = {.lex_state = 286}, + [4462] = {.lex_state = 286}, + [4463] = {.lex_state = 317}, + [4464] = {.lex_state = 317}, + [4465] = {.lex_state = 290}, + [4466] = {.lex_state = 278}, + [4467] = {.lex_state = 317}, + [4468] = {.lex_state = 340}, + [4469] = {.lex_state = 274}, + [4470] = {.lex_state = 280}, + [4471] = {.lex_state = 290}, + [4472] = {.lex_state = 280}, + [4473] = {.lex_state = 280}, + [4474] = {.lex_state = 274}, + [4475] = {.lex_state = 280}, + [4476] = {.lex_state = 290}, + [4477] = {.lex_state = 335}, + [4478] = {.lex_state = 274}, + [4479] = {.lex_state = 335}, + [4480] = {.lex_state = 298}, + [4481] = {.lex_state = 324}, + [4482] = {.lex_state = 280}, + [4483] = {.lex_state = 280}, + [4484] = {.lex_state = 280}, + [4485] = {.lex_state = 271}, + [4486] = {.lex_state = 338}, + [4487] = {.lex_state = 280}, + [4488] = {.lex_state = 271}, + [4489] = {.lex_state = 324}, + [4490] = {.lex_state = 338}, + [4491] = {.lex_state = 340}, + [4492] = {.lex_state = 290}, + [4493] = {.lex_state = 317}, + [4494] = {.lex_state = 338}, + [4495] = {.lex_state = 286}, + [4496] = {.lex_state = 280}, + [4497] = {.lex_state = 298}, + [4498] = {.lex_state = 290}, + [4499] = {.lex_state = 298}, + [4500] = {.lex_state = 286}, + [4501] = {.lex_state = 315}, + [4502] = {.lex_state = 315}, + [4503] = {.lex_state = 317}, + [4504] = {.lex_state = 271}, + [4505] = {.lex_state = 338}, + [4506] = {.lex_state = 280}, + [4507] = {.lex_state = 290}, + [4508] = {.lex_state = 324}, + [4509] = {.lex_state = 338}, + [4510] = {.lex_state = 290}, + [4511] = {.lex_state = 290}, + [4512] = {.lex_state = 280}, + [4513] = {.lex_state = 335}, + [4514] = {.lex_state = 290}, + [4515] = {.lex_state = 324}, + [4516] = {.lex_state = 324}, + [4517] = {.lex_state = 335}, + [4518] = {.lex_state = 298}, + [4519] = {.lex_state = 280}, + [4520] = {.lex_state = 335}, + [4521] = {.lex_state = 335}, + [4522] = {.lex_state = 274}, + [4523] = {.lex_state = 316}, + [4524] = {.lex_state = 290}, + [4525] = {.lex_state = 286}, + [4526] = {.lex_state = 286}, + [4527] = {.lex_state = 286}, + [4528] = {.lex_state = 272}, + [4529] = {.lex_state = 290}, + [4530] = {.lex_state = 272}, + [4531] = {.lex_state = 335}, + [4532] = {.lex_state = 301}, + [4533] = {.lex_state = 335}, + [4534] = {.lex_state = 270}, + [4535] = {.lex_state = 301}, + [4536] = {.lex_state = 301}, + [4537] = {.lex_state = 270}, + [4538] = {.lex_state = 270}, + [4539] = {.lex_state = 301}, + [4540] = {.lex_state = 270}, + [4541] = {.lex_state = 301}, + [4542] = {.lex_state = 301}, + [4543] = {.lex_state = 301}, + [4544] = {.lex_state = 301}, + [4545] = {.lex_state = 301}, + [4546] = {.lex_state = 335}, + [4547] = {.lex_state = 270}, + [4548] = {.lex_state = 270}, + [4549] = {.lex_state = 270}, + [4550] = {.lex_state = 270}, + [4551] = {.lex_state = 290}, + [4552] = {.lex_state = 290}, + [4553] = {.lex_state = 272}, + [4554] = {.lex_state = 280}, + [4555] = {.lex_state = 286}, + [4556] = {.lex_state = 335}, + [4557] = {.lex_state = 278}, + [4558] = {.lex_state = 280}, + [4559] = {.lex_state = 301}, + [4560] = {.lex_state = 279}, + [4561] = {.lex_state = 279}, + [4562] = {.lex_state = 286}, + [4563] = {.lex_state = 290}, + [4564] = {.lex_state = 291}, + [4565] = {.lex_state = 272}, + [4566] = {.lex_state = 290}, + [4567] = {.lex_state = 290}, + [4568] = {.lex_state = 286}, + [4569] = {.lex_state = 335}, + [4570] = {.lex_state = 335}, + [4571] = {.lex_state = 286}, + [4572] = {.lex_state = 290}, + [4573] = {.lex_state = 335}, + [4574] = {.lex_state = 272}, + [4575] = {.lex_state = 278}, + [4576] = {.lex_state = 272}, + [4577] = {.lex_state = 272}, + [4578] = {.lex_state = 272}, + [4579] = {.lex_state = 272}, + [4580] = {.lex_state = 286}, + [4581] = {.lex_state = 272}, + [4582] = {.lex_state = 272}, + [4583] = {.lex_state = 272}, + [4584] = {.lex_state = 272}, + [4585] = {.lex_state = 272}, + [4586] = {.lex_state = 272}, + [4587] = {.lex_state = 316}, + [4588] = {.lex_state = 286}, + [4589] = {.lex_state = 280}, + [4590] = {.lex_state = 286}, + [4591] = {.lex_state = 339}, + [4592] = {.lex_state = 335}, + [4593] = {.lex_state = 335}, + [4594] = {.lex_state = 335}, + [4595] = {.lex_state = 272}, + [4596] = {.lex_state = 290}, + [4597] = {.lex_state = 278}, + [4598] = {.lex_state = 286}, + [4599] = {.lex_state = 290}, + [4600] = {.lex_state = 289}, + [4601] = {.lex_state = 280}, + [4602] = {.lex_state = 290}, + [4603] = {.lex_state = 290}, + [4604] = {.lex_state = 290}, + [4605] = {.lex_state = 286}, + [4606] = {.lex_state = 272}, + [4607] = {.lex_state = 290}, + [4608] = {.lex_state = 290}, + [4609] = {.lex_state = 289}, + [4610] = {.lex_state = 286}, + [4611] = {.lex_state = 270}, + [4612] = {.lex_state = 316}, + [4613] = {.lex_state = 335}, + [4614] = {.lex_state = 335}, + [4615] = {.lex_state = 272}, + [4616] = {.lex_state = 316}, + [4617] = {.lex_state = 286}, + [4618] = {.lex_state = 286}, + [4619] = {.lex_state = 289}, + [4620] = {.lex_state = 335}, + [4621] = {.lex_state = 272}, + [4622] = {.lex_state = 280}, + [4623] = {.lex_state = 280}, + [4624] = {.lex_state = 297}, + [4625] = {.lex_state = 270}, + [4626] = {.lex_state = 289}, + [4627] = {.lex_state = 289}, + [4628] = {.lex_state = 316}, + [4629] = {.lex_state = 286}, + [4630] = {.lex_state = 289}, + [4631] = {.lex_state = 286}, + [4632] = {.lex_state = 291}, + [4633] = {.lex_state = 289}, + [4634] = {.lex_state = 286}, + [4635] = {.lex_state = 289}, + [4636] = {.lex_state = 290}, + [4637] = {.lex_state = 335}, + [4638] = {.lex_state = 286}, + [4639] = {.lex_state = 290}, + [4640] = {.lex_state = 286}, + [4641] = {.lex_state = 286}, + [4642] = {.lex_state = 339}, + [4643] = {.lex_state = 278}, + [4644] = {.lex_state = 335}, + [4645] = {.lex_state = 290}, + [4646] = {.lex_state = 335}, + [4647] = {.lex_state = 286}, + [4648] = {.lex_state = 335}, + [4649] = {.lex_state = 278}, + [4650] = {.lex_state = 272}, + [4651] = {.lex_state = 286}, + [4652] = {.lex_state = 286}, + [4653] = {.lex_state = 290}, + [4654] = {.lex_state = 286}, + [4655] = {.lex_state = 316}, + [4656] = {.lex_state = 286}, + [4657] = {.lex_state = 290}, + [4658] = {.lex_state = 290}, + [4659] = {.lex_state = 290}, + [4660] = {.lex_state = 290}, + [4661] = {.lex_state = 286}, + [4662] = {.lex_state = 290}, + [4663] = {.lex_state = 286}, + [4664] = {.lex_state = 267}, + [4665] = {.lex_state = 290}, + [4666] = {.lex_state = 335}, + [4667] = {.lex_state = 271}, + [4668] = {.lex_state = 271}, + [4669] = {.lex_state = 271}, + [4670] = {.lex_state = 270}, + [4671] = {.lex_state = 271}, + [4672] = {.lex_state = 290}, + [4673] = {.lex_state = 335}, + [4674] = {.lex_state = 272}, + [4675] = {.lex_state = 271}, + [4676] = {.lex_state = 290}, + [4677] = {.lex_state = 340}, + [4678] = {.lex_state = 272}, + [4679] = {.lex_state = 290}, + [4680] = {.lex_state = 335}, + [4681] = {.lex_state = 290}, + [4682] = {.lex_state = 290}, + [4683] = {.lex_state = 290}, + [4684] = {.lex_state = 335}, + [4685] = {.lex_state = 290}, + [4686] = {.lex_state = 272}, + [4687] = {.lex_state = 272}, + [4688] = {.lex_state = 272}, + [4689] = {.lex_state = 272}, + [4690] = {.lex_state = 272}, + [4691] = {.lex_state = 340}, + [4692] = {.lex_state = 272}, + [4693] = {.lex_state = 272}, + [4694] = {.lex_state = 272}, + [4695] = {.lex_state = 272}, + [4696] = {.lex_state = 298}, + [4697] = {.lex_state = 290}, + [4698] = {.lex_state = 301}, + [4699] = {.lex_state = 234}, + [4700] = {.lex_state = 271}, + [4701] = {.lex_state = 286}, + [4702] = {.lex_state = 290}, + [4703] = {.lex_state = 286}, + [4704] = {.lex_state = 335}, + [4705] = {.lex_state = 286}, + [4706] = {.lex_state = 335}, + [4707] = {.lex_state = 297}, + [4708] = {.lex_state = 335}, + [4709] = {.lex_state = 281}, + [4710] = {.lex_state = 301}, + [4711] = {.lex_state = 272}, + [4712] = {.lex_state = 286}, + [4713] = {.lex_state = 286}, + [4714] = {.lex_state = 335}, + [4715] = {.lex_state = 298}, + [4716] = {.lex_state = 272}, + [4717] = {.lex_state = 272}, + [4718] = {.lex_state = 272}, + [4719] = {.lex_state = 267}, + [4720] = {.lex_state = 272}, + [4721] = {.lex_state = 290}, + [4722] = {.lex_state = 290}, + [4723] = {.lex_state = 298}, + [4724] = {.lex_state = 272}, + [4725] = {.lex_state = 340}, + [4726] = {.lex_state = 290}, + [4727] = {.lex_state = 301}, + [4728] = {.lex_state = 234}, + [4729] = {.lex_state = 289}, + [4730] = {.lex_state = 286}, + [4731] = {.lex_state = 289}, + [4732] = {.lex_state = 335}, + [4733] = {.lex_state = 301}, + [4734] = {.lex_state = 286}, + [4735] = {.lex_state = 286}, + [4736] = {.lex_state = 270}, + [4737] = {.lex_state = 297}, + [4738] = {.lex_state = 234}, + [4739] = {.lex_state = 335}, + [4740] = {.lex_state = 290}, + [4741] = {.lex_state = 286}, + [4742] = {.lex_state = 335}, + [4743] = {.lex_state = 335}, + [4744] = {.lex_state = 290}, + [4745] = {.lex_state = 289}, + [4746] = {.lex_state = 335}, + [4747] = {.lex_state = 298}, + [4748] = {.lex_state = 335}, + [4749] = {.lex_state = 234}, + [4750] = {.lex_state = 335}, + [4751] = {.lex_state = 272}, + [4752] = {.lex_state = 272}, + [4753] = {.lex_state = 234}, + [4754] = {.lex_state = 286}, + [4755] = {.lex_state = 290}, + [4756] = {.lex_state = 290}, + [4757] = {.lex_state = 290}, + [4758] = {.lex_state = 298}, + [4759] = {.lex_state = 290}, + [4760] = {.lex_state = 290}, + [4761] = {.lex_state = 290}, + [4762] = {.lex_state = 281}, + [4763] = {.lex_state = 289}, + [4764] = {.lex_state = 272}, + [4765] = {.lex_state = 286}, + [4766] = {.lex_state = 272}, + [4767] = {.lex_state = 335}, + [4768] = {.lex_state = 272}, + [4769] = {.lex_state = 286}, + [4770] = {.lex_state = 335}, + [4771] = {.lex_state = 297}, + [4772] = {.lex_state = 297}, + [4773] = {.lex_state = 335}, + [4774] = {.lex_state = 335}, + [4775] = {.lex_state = 335}, + [4776] = {.lex_state = 289}, + [4777] = {.lex_state = 286}, + [4778] = {.lex_state = 290}, + [4779] = {.lex_state = 290}, + [4780] = {.lex_state = 290}, + [4781] = {.lex_state = 335}, + [4782] = {.lex_state = 286}, + [4783] = {.lex_state = 247}, + [4784] = {.lex_state = 290}, + [4785] = {.lex_state = 286}, + [4786] = {.lex_state = 335}, + [4787] = {.lex_state = 286}, + [4788] = {.lex_state = 286}, + [4789] = {.lex_state = 286}, + [4790] = {.lex_state = 335}, + [4791] = {.lex_state = 286}, + [4792] = {.lex_state = 286}, + [4793] = {.lex_state = 286}, + [4794] = {.lex_state = 286}, + [4795] = {.lex_state = 286}, + [4796] = {.lex_state = 286}, + [4797] = {.lex_state = 286}, + [4798] = {.lex_state = 286}, + [4799] = {.lex_state = 290}, + [4800] = {.lex_state = 290}, + [4801] = {.lex_state = 290}, + [4802] = {.lex_state = 316}, + [4803] = {.lex_state = 286}, + [4804] = {.lex_state = 286}, + [4805] = {.lex_state = 286}, + [4806] = {.lex_state = 286}, + [4807] = {.lex_state = 286}, + [4808] = {.lex_state = 335}, + [4809] = {.lex_state = 335}, + [4810] = {.lex_state = 335}, + [4811] = {.lex_state = 335}, + [4812] = {.lex_state = 335}, + [4813] = {.lex_state = 335}, + [4814] = {.lex_state = 340}, + [4815] = {.lex_state = 335}, + [4816] = {.lex_state = 335}, + [4817] = {.lex_state = 335}, + [4818] = {.lex_state = 297}, + [4819] = {.lex_state = 297}, + [4820] = {.lex_state = 340}, + [4821] = {.lex_state = 297}, + [4822] = {.lex_state = 340}, + [4823] = {.lex_state = 340}, + [4824] = {.lex_state = 270}, + [4825] = {.lex_state = 286}, + [4826] = {.lex_state = 290}, + [4827] = {.lex_state = 290}, + [4828] = {.lex_state = 286}, + [4829] = {.lex_state = 335}, + [4830] = {.lex_state = 286}, + [4831] = {.lex_state = 272}, + [4832] = {.lex_state = 270}, + [4833] = {.lex_state = 289}, + [4834] = {.lex_state = 298}, + [4835] = {.lex_state = 290}, + [4836] = {.lex_state = 286}, + [4837] = {.lex_state = 286}, + [4838] = {.lex_state = 290}, + [4839] = {.lex_state = 290}, + [4840] = {.lex_state = 272}, + [4841] = {.lex_state = 272}, + [4842] = {.lex_state = 286}, + [4843] = {.lex_state = 286}, + [4844] = {.lex_state = 290}, + [4845] = {.lex_state = 286}, + [4846] = {.lex_state = 290}, + [4847] = {.lex_state = 290}, + [4848] = {.lex_state = 286}, + [4849] = {.lex_state = 286}, + [4850] = {.lex_state = 286}, + [4851] = {.lex_state = 290}, + [4852] = {.lex_state = 316}, + [4853] = {.lex_state = 286}, + [4854] = {.lex_state = 286}, + [4855] = {.lex_state = 271}, + [4856] = {.lex_state = 286}, + [4857] = {.lex_state = 286}, + [4858] = {.lex_state = 286}, + [4859] = {.lex_state = 335}, + [4860] = {.lex_state = 286}, + [4861] = {.lex_state = 286}, + [4862] = {.lex_state = 286}, + [4863] = {.lex_state = 286}, + [4864] = {.lex_state = 286}, + [4865] = {.lex_state = 286}, + [4866] = {.lex_state = 335}, + [4867] = {.lex_state = 335}, + [4868] = {.lex_state = 278}, + [4869] = {.lex_state = 340}, + [4870] = {.lex_state = 335}, + [4871] = {.lex_state = 286}, + [4872] = {.lex_state = 286}, + [4873] = {.lex_state = 335}, + [4874] = {.lex_state = 335}, + [4875] = {.lex_state = 234}, + [4876] = {.lex_state = 278}, + [4877] = {.lex_state = 286}, + [4878] = {.lex_state = 286}, + [4879] = {.lex_state = 272}, + [4880] = {.lex_state = 286}, + [4881] = {.lex_state = 286}, + [4882] = {.lex_state = 286}, + [4883] = {.lex_state = 286}, + [4884] = {.lex_state = 286}, + [4885] = {.lex_state = 286}, + [4886] = {.lex_state = 286}, + [4887] = {.lex_state = 286}, + [4888] = {.lex_state = 286}, + [4889] = {.lex_state = 286}, + [4890] = {.lex_state = 286}, + [4891] = {.lex_state = 286}, + [4892] = {.lex_state = 286}, + [4893] = {.lex_state = 335}, + [4894] = {.lex_state = 234}, + [4895] = {.lex_state = 286}, + [4896] = {.lex_state = 286}, + [4897] = {.lex_state = 286}, + [4898] = {.lex_state = 267}, + [4899] = {.lex_state = 298}, + [4900] = {.lex_state = 335}, + [4901] = {.lex_state = 335}, + [4902] = {.lex_state = 272}, + [4903] = {.lex_state = 290}, + [4904] = {.lex_state = 290}, + [4905] = {.lex_state = 286}, + [4906] = {.lex_state = 286}, + [4907] = {.lex_state = 286}, + [4908] = {.lex_state = 286}, + [4909] = {.lex_state = 286}, + [4910] = {.lex_state = 286}, + [4911] = {.lex_state = 286}, + [4912] = {.lex_state = 286}, + [4913] = {.lex_state = 286}, + [4914] = {.lex_state = 286}, + [4915] = {.lex_state = 286}, + [4916] = {.lex_state = 286}, + [4917] = {.lex_state = 290}, + [4918] = {.lex_state = 267}, + [4919] = {.lex_state = 247}, + [4920] = {.lex_state = 267}, + [4921] = {.lex_state = 290}, + [4922] = {.lex_state = 286}, + [4923] = {.lex_state = 340}, + [4924] = {.lex_state = 290}, + [4925] = {.lex_state = 286}, + [4926] = {.lex_state = 272}, + [4927] = {.lex_state = 286}, + [4928] = {.lex_state = 301}, + [4929] = {.lex_state = 286}, + [4930] = {.lex_state = 286}, + [4931] = {.lex_state = 286}, + [4932] = {.lex_state = 286}, + [4933] = {.lex_state = 286}, + [4934] = {.lex_state = 286}, + [4935] = {.lex_state = 286}, + [4936] = {.lex_state = 286}, + [4937] = {.lex_state = 286}, + [4938] = {.lex_state = 286}, + [4939] = {.lex_state = 301}, + [4940] = {.lex_state = 281}, + [4941] = {.lex_state = 301}, + [4942] = {.lex_state = 301}, + [4943] = {.lex_state = 286}, + [4944] = {.lex_state = 286}, + [4945] = {.lex_state = 301}, + [4946] = {.lex_state = 335}, + [4947] = {.lex_state = 278}, + [4948] = {.lex_state = 304}, + [4949] = {.lex_state = 286}, + [4950] = {.lex_state = 281}, + [4951] = {.lex_state = 281}, + [4952] = {.lex_state = 281}, + [4953] = {.lex_state = 280}, + [4954] = {.lex_state = 286}, + [4955] = {.lex_state = 338}, + [4956] = {.lex_state = 301}, + [4957] = {.lex_state = 286}, + [4958] = {.lex_state = 290}, + [4959] = {.lex_state = 270}, + [4960] = {.lex_state = 290}, + [4961] = {.lex_state = 290}, + [4962] = {.lex_state = 290}, + [4963] = {.lex_state = 290}, + [4964] = {.lex_state = 301}, + [4965] = {.lex_state = 301}, + [4966] = {.lex_state = 270}, + [4967] = {.lex_state = 270}, + [4968] = {.lex_state = 290}, + [4969] = {.lex_state = 317}, + [4970] = {.lex_state = 301}, + [4971] = {.lex_state = 301}, + [4972] = {.lex_state = 290}, + [4973] = {.lex_state = 290}, + [4974] = {.lex_state = 270}, + [4975] = {.lex_state = 270}, + [4976] = {.lex_state = 290}, + [4977] = {.lex_state = 281}, + [4978] = {.lex_state = 301}, + [4979] = {.lex_state = 247}, + [4980] = {.lex_state = 301}, + [4981] = {.lex_state = 301}, + [4982] = {.lex_state = 301}, + [4983] = {.lex_state = 270}, + [4984] = {.lex_state = 301}, + [4985] = {.lex_state = 317}, + [4986] = {.lex_state = 270}, + [4987] = {.lex_state = 290}, + [4988] = {.lex_state = 270}, + [4989] = {.lex_state = 270}, + [4990] = {.lex_state = 270}, + [4991] = {.lex_state = 296}, + [4992] = {.lex_state = 290}, + [4993] = {.lex_state = 301}, + [4994] = {.lex_state = 301}, + [4995] = {.lex_state = 270}, + [4996] = {.lex_state = 270}, + [4997] = {.lex_state = 270}, + [4998] = {.lex_state = 270}, + [4999] = {.lex_state = 270}, + [5000] = {.lex_state = 270}, + [5001] = {.lex_state = 290}, + [5002] = {.lex_state = 270}, + [5003] = {.lex_state = 270}, + [5004] = {.lex_state = 289}, + [5005] = {.lex_state = 270}, + [5006] = {.lex_state = 301}, + [5007] = {.lex_state = 286}, + [5008] = {.lex_state = 270}, + [5009] = {.lex_state = 290}, + [5010] = {.lex_state = 281}, + [5011] = {.lex_state = 290}, + [5012] = {.lex_state = 274}, + [5013] = {.lex_state = 280}, + [5014] = {.lex_state = 301}, + [5015] = {.lex_state = 290}, + [5016] = {.lex_state = 298}, + [5017] = {.lex_state = 271}, + [5018] = {.lex_state = 301}, + [5019] = {.lex_state = 286}, + [5020] = {.lex_state = 290}, + [5021] = {.lex_state = 301}, + [5022] = {.lex_state = 301}, + [5023] = {.lex_state = 301}, + [5024] = {.lex_state = 290}, + [5025] = {.lex_state = 270}, + [5026] = {.lex_state = 270}, + [5027] = {.lex_state = 286}, + [5028] = {.lex_state = 270}, + [5029] = {.lex_state = 290}, + [5030] = {.lex_state = 315}, + [5031] = {.lex_state = 286}, + [5032] = {.lex_state = 270}, + [5033] = {.lex_state = 301}, + [5034] = {.lex_state = 290}, + [5035] = {.lex_state = 290}, + [5036] = {.lex_state = 281}, + [5037] = {.lex_state = 290}, + [5038] = {.lex_state = 290}, + [5039] = {.lex_state = 338}, + [5040] = {.lex_state = 290}, + [5041] = {.lex_state = 290}, + [5042] = {.lex_state = 289}, + [5043] = {.lex_state = 338}, + [5044] = {.lex_state = 335}, + [5045] = {.lex_state = 301}, + [5046] = {.lex_state = 338}, + [5047] = {.lex_state = 301}, + [5048] = {.lex_state = 286}, + [5049] = {.lex_state = 290}, + [5050] = {.lex_state = 290}, + [5051] = {.lex_state = 290}, + [5052] = {.lex_state = 290}, + [5053] = {.lex_state = 290}, + [5054] = {.lex_state = 290}, + [5055] = {.lex_state = 338}, + [5056] = {.lex_state = 247}, + [5057] = {.lex_state = 301}, + [5058] = {.lex_state = 290}, + [5059] = {.lex_state = 286}, + [5060] = {.lex_state = 270}, + [5061] = {.lex_state = 290}, + [5062] = {.lex_state = 281}, + [5063] = {.lex_state = 301}, + [5064] = {.lex_state = 272}, + [5065] = {.lex_state = 290}, + [5066] = {.lex_state = 270}, + [5067] = {.lex_state = 270}, + [5068] = {.lex_state = 301}, + [5069] = {.lex_state = 281}, + [5070] = {.lex_state = 290}, + [5071] = {.lex_state = 290}, + [5072] = {.lex_state = 301}, + [5073] = {.lex_state = 281}, + [5074] = {.lex_state = 301}, + [5075] = {.lex_state = 301}, + [5076] = {.lex_state = 281}, + [5077] = {.lex_state = 274}, + [5078] = {.lex_state = 247}, + [5079] = {.lex_state = 286}, + [5080] = {.lex_state = 281}, + [5081] = {.lex_state = 270}, + [5082] = {.lex_state = 301}, + [5083] = {.lex_state = 286}, + [5084] = {.lex_state = 270}, + [5085] = {.lex_state = 338}, + [5086] = {.lex_state = 290}, + [5087] = {.lex_state = 301}, + [5088] = {.lex_state = 301}, + [5089] = {.lex_state = 286}, + [5090] = {.lex_state = 290}, + [5091] = {.lex_state = 290}, + [5092] = {.lex_state = 301}, + [5093] = {.lex_state = 270}, + [5094] = {.lex_state = 290}, + [5095] = {.lex_state = 270}, + [5096] = {.lex_state = 286}, + [5097] = {.lex_state = 301}, + [5098] = {.lex_state = 270}, + [5099] = {.lex_state = 270}, + [5100] = {.lex_state = 338}, + [5101] = {.lex_state = 338}, + [5102] = {.lex_state = 290}, + [5103] = {.lex_state = 286}, + [5104] = {.lex_state = 290}, + [5105] = {.lex_state = 290}, + [5106] = {.lex_state = 286}, + [5107] = {.lex_state = 270}, + [5108] = {.lex_state = 301}, + [5109] = {.lex_state = 338}, + [5110] = {.lex_state = 338}, + [5111] = {.lex_state = 270}, + [5112] = {.lex_state = 338}, + [5113] = {.lex_state = 290}, + [5114] = {.lex_state = 301}, + [5115] = {.lex_state = 270}, + [5116] = {.lex_state = 338}, + [5117] = {.lex_state = 270}, + [5118] = {.lex_state = 301}, + [5119] = {.lex_state = 290}, + [5120] = {.lex_state = 338}, + [5121] = {.lex_state = 270}, + [5122] = {.lex_state = 286}, + [5123] = {.lex_state = 281}, + [5124] = {.lex_state = 301}, + [5125] = {.lex_state = 267}, + [5126] = {.lex_state = 338}, + [5127] = {.lex_state = 286}, + [5128] = {.lex_state = 290}, + [5129] = {.lex_state = 281}, + [5130] = {.lex_state = 270}, + [5131] = {.lex_state = 270}, + [5132] = {.lex_state = 281}, + [5133] = {.lex_state = 270}, + [5134] = {.lex_state = 286}, + [5135] = {.lex_state = 301}, + [5136] = {.lex_state = 286}, + [5137] = {.lex_state = 290}, + [5138] = {.lex_state = 290}, + [5139] = {.lex_state = 267}, + [5140] = {.lex_state = 286}, + [5141] = {.lex_state = 338}, + [5142] = {.lex_state = 270}, + [5143] = {.lex_state = 286}, + [5144] = {.lex_state = 301}, + [5145] = {.lex_state = 286}, + [5146] = {.lex_state = 301}, + [5147] = {.lex_state = 286}, + [5148] = {.lex_state = 270}, + [5149] = {.lex_state = 270}, + [5150] = {.lex_state = 286}, + [5151] = {.lex_state = 267}, + [5152] = {.lex_state = 281}, + [5153] = {.lex_state = 270}, + [5154] = {.lex_state = 301}, + [5155] = {.lex_state = 286}, + [5156] = {.lex_state = 290}, + [5157] = {.lex_state = 301}, + [5158] = {.lex_state = 286}, + [5159] = {.lex_state = 270}, + [5160] = {.lex_state = 281}, + [5161] = {.lex_state = 272}, + [5162] = {.lex_state = 290}, + [5163] = {.lex_state = 270}, + [5164] = {.lex_state = 281}, + [5165] = {.lex_state = 281}, + [5166] = {.lex_state = 340}, + [5167] = {.lex_state = 335}, + [5168] = {.lex_state = 335}, + [5169] = {.lex_state = 335}, + [5170] = {.lex_state = 333}, + [5171] = {.lex_state = 270}, + [5172] = {.lex_state = 290}, + [5173] = {.lex_state = 270}, + [5174] = {.lex_state = 333}, + [5175] = {.lex_state = 270}, + [5176] = {.lex_state = 301}, + [5177] = {.lex_state = 289}, + [5178] = {.lex_state = 301}, + [5179] = {.lex_state = 247}, + [5180] = {.lex_state = 301}, + [5181] = {.lex_state = 293}, + [5182] = {.lex_state = 289}, + [5183] = {.lex_state = 289}, + [5184] = {.lex_state = 289}, + [5185] = {.lex_state = 317}, + [5186] = {.lex_state = 301}, + [5187] = {.lex_state = 301}, + [5188] = {.lex_state = 290}, + [5189] = {.lex_state = 301}, + [5190] = {.lex_state = 289}, + [5191] = {.lex_state = 301}, + [5192] = {.lex_state = 301}, + [5193] = {.lex_state = 267}, + [5194] = {.lex_state = 301}, + [5195] = {.lex_state = 267}, + [5196] = {.lex_state = 267}, + [5197] = {.lex_state = 281}, + [5198] = {.lex_state = 290}, + [5199] = {.lex_state = 270}, + [5200] = {.lex_state = 333}, + [5201] = {.lex_state = 290}, + [5202] = {.lex_state = 281}, + [5203] = {.lex_state = 333}, + [5204] = {.lex_state = 289}, + [5205] = {.lex_state = 335}, + [5206] = {.lex_state = 290}, + [5207] = {.lex_state = 335}, + [5208] = {.lex_state = 335}, + [5209] = {.lex_state = 270}, + [5210] = {.lex_state = 289}, + [5211] = {.lex_state = 289}, + [5212] = {.lex_state = 333}, + [5213] = {.lex_state = 301}, + [5214] = {.lex_state = 281}, + [5215] = {.lex_state = 289}, + [5216] = {.lex_state = 317}, + [5217] = {.lex_state = 289}, + [5218] = {.lex_state = 270}, + [5219] = {.lex_state = 290}, + [5220] = {.lex_state = 301}, + [5221] = {.lex_state = 280}, + [5222] = {.lex_state = 270}, + [5223] = {.lex_state = 270}, + [5224] = {.lex_state = 333}, + [5225] = {.lex_state = 333}, + [5226] = {.lex_state = 290}, + [5227] = {.lex_state = 301}, + [5228] = {.lex_state = 333}, + [5229] = {.lex_state = 281}, + [5230] = {.lex_state = 281}, + [5231] = {.lex_state = 338}, + [5232] = {.lex_state = 270}, + [5233] = {.lex_state = 290}, + [5234] = {.lex_state = 293}, + [5235] = {.lex_state = 333}, + [5236] = {.lex_state = 290}, + [5237] = {.lex_state = 267}, + [5238] = {.lex_state = 247}, + [5239] = {.lex_state = 333}, + [5240] = {.lex_state = 270}, + [5241] = {.lex_state = 290}, + [5242] = {.lex_state = 281}, + [5243] = {.lex_state = 270}, + [5244] = {.lex_state = 272}, + [5245] = {.lex_state = 270}, + [5246] = {.lex_state = 270}, + [5247] = {.lex_state = 270}, + [5248] = {.lex_state = 270}, + [5249] = {.lex_state = 333}, + [5250] = {.lex_state = 290}, + [5251] = {.lex_state = 270}, + [5252] = {.lex_state = 333}, + [5253] = {.lex_state = 270}, + [5254] = {.lex_state = 270}, + [5255] = {.lex_state = 289}, + [5256] = {.lex_state = 280}, + [5257] = {.lex_state = 301}, + [5258] = {.lex_state = 281}, + [5259] = {.lex_state = 279}, + [5260] = {.lex_state = 267}, + [5261] = {.lex_state = 333}, + [5262] = {.lex_state = 290}, + [5263] = {.lex_state = 340}, + [5264] = {.lex_state = 340}, + [5265] = {.lex_state = 333}, + [5266] = {.lex_state = 290}, + [5267] = {.lex_state = 270}, + [5268] = {.lex_state = 267}, + [5269] = {.lex_state = 290}, + [5270] = {.lex_state = 270}, + [5271] = {.lex_state = 281}, + [5272] = {.lex_state = 290}, + [5273] = {.lex_state = 281}, + [5274] = {.lex_state = 281}, + [5275] = {.lex_state = 281}, + [5276] = {.lex_state = 289}, + [5277] = {.lex_state = 290}, + [5278] = {.lex_state = 289}, + [5279] = {.lex_state = 333}, + [5280] = {.lex_state = 289}, + [5281] = {.lex_state = 289}, + [5282] = {.lex_state = 289}, + [5283] = {.lex_state = 333}, + [5284] = {.lex_state = 289}, + [5285] = {.lex_state = 290}, + [5286] = {.lex_state = 290}, + [5287] = {.lex_state = 301}, + [5288] = {.lex_state = 270}, + [5289] = {.lex_state = 301}, + [5290] = {.lex_state = 247}, + [5291] = {.lex_state = 333}, + [5292] = {.lex_state = 290}, + [5293] = {.lex_state = 289}, + [5294] = {.lex_state = 289}, + [5295] = {.lex_state = 290}, + [5296] = {.lex_state = 333}, + [5297] = {.lex_state = 281}, + [5298] = {.lex_state = 338}, + [5299] = {.lex_state = 335}, + [5300] = {.lex_state = 333}, + [5301] = {.lex_state = 301}, + [5302] = {.lex_state = 301}, + [5303] = {.lex_state = 270}, + [5304] = {.lex_state = 281}, + [5305] = {.lex_state = 281}, + [5306] = {.lex_state = 272}, + [5307] = {.lex_state = 272}, + [5308] = {.lex_state = 272}, + [5309] = {.lex_state = 272}, + [5310] = {.lex_state = 272}, + [5311] = {.lex_state = 272}, + [5312] = {.lex_state = 272}, + [5313] = {.lex_state = 272}, + [5314] = {.lex_state = 272}, + [5315] = {.lex_state = 272}, + [5316] = {.lex_state = 272}, + [5317] = {.lex_state = 272}, + [5318] = {.lex_state = 272}, + [5319] = {.lex_state = 272}, + [5320] = {.lex_state = 272}, + [5321] = {.lex_state = 301}, + [5322] = {.lex_state = 272}, + [5323] = {.lex_state = 272}, + [5324] = {.lex_state = 272}, + [5325] = {.lex_state = 272}, + [5326] = {.lex_state = 290}, + [5327] = {.lex_state = 295}, + [5328] = {.lex_state = 281}, + [5329] = {.lex_state = 281}, + [5330] = {.lex_state = 281}, + [5331] = {.lex_state = 281}, + [5332] = {.lex_state = 281}, + [5333] = {.lex_state = 289}, + [5334] = {.lex_state = 301}, + [5335] = {.lex_state = 301}, + [5336] = {.lex_state = 270}, + [5337] = {.lex_state = 270}, + [5338] = {.lex_state = 301}, + [5339] = {.lex_state = 301}, + [5340] = {.lex_state = 301}, + [5341] = {.lex_state = 301}, + [5342] = {.lex_state = 270}, + [5343] = {.lex_state = 301}, + [5344] = {.lex_state = 301}, + [5345] = {.lex_state = 301}, + [5346] = {.lex_state = 301}, + [5347] = {.lex_state = 301}, + [5348] = {.lex_state = 333}, + [5349] = {.lex_state = 335}, + [5350] = {.lex_state = 270}, + [5351] = {.lex_state = 290}, + [5352] = {.lex_state = 290}, + [5353] = {.lex_state = 338}, + [5354] = {.lex_state = 301}, + [5355] = {.lex_state = 289}, + [5356] = {.lex_state = 289}, + [5357] = {.lex_state = 289}, + [5358] = {.lex_state = 290}, + [5359] = {.lex_state = 333}, + [5360] = {.lex_state = 301}, + [5361] = {.lex_state = 270}, + [5362] = {.lex_state = 289}, + [5363] = {.lex_state = 301}, + [5364] = {.lex_state = 281}, + [5365] = {.lex_state = 281}, + [5366] = {.lex_state = 335}, + [5367] = {.lex_state = 270}, + [5368] = {.lex_state = 270}, + [5369] = {.lex_state = 333}, + [5370] = {.lex_state = 270}, + [5371] = {.lex_state = 281}, + [5372] = {.lex_state = 333}, + [5373] = {.lex_state = 281}, + [5374] = {.lex_state = 335}, + [5375] = {.lex_state = 333}, + [5376] = {.lex_state = 301}, + [5377] = {.lex_state = 270}, + [5378] = {.lex_state = 333}, + [5379] = {.lex_state = 290}, + [5380] = {.lex_state = 270}, + [5381] = {.lex_state = 281}, + [5382] = {.lex_state = 301}, + [5383] = {.lex_state = 338}, + [5384] = {.lex_state = 335}, + [5385] = {.lex_state = 270}, + [5386] = {.lex_state = 335}, + [5387] = {.lex_state = 281}, + [5388] = {.lex_state = 272}, + [5389] = {.lex_state = 272}, + [5390] = {.lex_state = 272}, + [5391] = {.lex_state = 272}, + [5392] = {.lex_state = 272}, + [5393] = {.lex_state = 272}, + [5394] = {.lex_state = 272}, + [5395] = {.lex_state = 272}, + [5396] = {.lex_state = 272}, + [5397] = {.lex_state = 272}, + [5398] = {.lex_state = 272}, + [5399] = {.lex_state = 272}, + [5400] = {.lex_state = 272}, + [5401] = {.lex_state = 272}, + [5402] = {.lex_state = 272}, + [5403] = {.lex_state = 272}, + [5404] = {.lex_state = 272}, + [5405] = {.lex_state = 272}, + [5406] = {.lex_state = 272}, + [5407] = {.lex_state = 272}, + [5408] = {.lex_state = 301}, + [5409] = {.lex_state = 272}, + [5410] = {.lex_state = 272}, + [5411] = {.lex_state = 272}, + [5412] = {.lex_state = 272}, + [5413] = {.lex_state = 270}, + [5414] = {.lex_state = 270}, + [5415] = {.lex_state = 270}, + [5416] = {.lex_state = 301}, + [5417] = {.lex_state = 301}, + [5418] = {.lex_state = 270}, + [5419] = {.lex_state = 270}, + [5420] = {.lex_state = 272}, + [5421] = {.lex_state = 289}, + [5422] = {.lex_state = 333}, + [5423] = {.lex_state = 301}, + [5424] = {.lex_state = 301}, + [5425] = {.lex_state = 270}, + [5426] = {.lex_state = 247}, + [5427] = {.lex_state = 340}, + [5428] = {.lex_state = 272}, + [5429] = {.lex_state = 270}, + [5430] = {.lex_state = 267}, + [5431] = {.lex_state = 290}, + [5432] = {.lex_state = 338}, + [5433] = {.lex_state = 290}, + [5434] = {.lex_state = 290}, + [5435] = {.lex_state = 267}, + [5436] = {.lex_state = 290}, + [5437] = {.lex_state = 272}, + [5438] = {.lex_state = 290}, + [5439] = {.lex_state = 290}, + [5440] = {.lex_state = 262}, + [5441] = {.lex_state = 280}, + [5442] = {.lex_state = 290}, + [5443] = {.lex_state = 290}, + [5444] = {.lex_state = 290}, + [5445] = {.lex_state = 290}, + [5446] = {.lex_state = 290}, + [5447] = {.lex_state = 301}, + [5448] = {.lex_state = 264}, + [5449] = {.lex_state = 290}, + [5450] = {.lex_state = 262}, + [5451] = {.lex_state = 301}, + [5452] = {.lex_state = 290}, + [5453] = {.lex_state = 290}, + [5454] = {.lex_state = 281}, + [5455] = {.lex_state = 290}, + [5456] = {.lex_state = 267}, + [5457] = {.lex_state = 290}, + [5458] = {.lex_state = 281}, + [5459] = {.lex_state = 290}, + [5460] = {.lex_state = 338}, + [5461] = {.lex_state = 290}, + [5462] = {.lex_state = 290}, + [5463] = {.lex_state = 290}, + [5464] = {.lex_state = 290}, + [5465] = {.lex_state = 290}, + [5466] = {.lex_state = 264}, + [5467] = {.lex_state = 290}, + [5468] = {.lex_state = 281}, + [5469] = {.lex_state = 290}, + [5470] = {.lex_state = 298}, + [5471] = {.lex_state = 298}, + [5472] = {.lex_state = 290}, + [5473] = {.lex_state = 290}, + [5474] = {.lex_state = 290}, + [5475] = {.lex_state = 290}, + [5476] = {.lex_state = 301}, + [5477] = {.lex_state = 262}, + [5478] = {.lex_state = 290}, + [5479] = {.lex_state = 290}, + [5480] = {.lex_state = 301}, + [5481] = {.lex_state = 290}, + [5482] = {.lex_state = 290}, + [5483] = {.lex_state = 301}, + [5484] = {.lex_state = 270}, + [5485] = {.lex_state = 298}, + [5486] = {.lex_state = 290}, + [5487] = {.lex_state = 290}, + [5488] = {.lex_state = 290}, + [5489] = {.lex_state = 290}, + [5490] = {.lex_state = 335}, + [5491] = {.lex_state = 290}, + [5492] = {.lex_state = 290}, + [5493] = {.lex_state = 290}, + [5494] = {.lex_state = 303}, + [5495] = {.lex_state = 338}, + [5496] = {.lex_state = 290}, + [5497] = {.lex_state = 301}, + [5498] = {.lex_state = 290}, + [5499] = {.lex_state = 290}, + [5500] = {.lex_state = 290}, + [5501] = {.lex_state = 267}, + [5502] = {.lex_state = 298}, + [5503] = {.lex_state = 290}, + [5504] = {.lex_state = 290}, + [5505] = {.lex_state = 247}, + [5506] = {.lex_state = 290}, + [5507] = {.lex_state = 290}, + [5508] = {.lex_state = 290}, + [5509] = {.lex_state = 290}, + [5510] = {.lex_state = 306}, + [5511] = {.lex_state = 298}, + [5512] = {.lex_state = 301}, + [5513] = {.lex_state = 290}, + [5514] = {.lex_state = 290}, + [5515] = {.lex_state = 270}, + [5516] = {.lex_state = 290}, + [5517] = {.lex_state = 301}, + [5518] = {.lex_state = 290}, + [5519] = {.lex_state = 264}, + [5520] = {.lex_state = 301}, + [5521] = {.lex_state = 298}, + [5522] = {.lex_state = 290}, + [5523] = {.lex_state = 290}, + [5524] = {.lex_state = 290}, + [5525] = {.lex_state = 270}, + [5526] = {.lex_state = 290}, + [5527] = {.lex_state = 290}, + [5528] = {.lex_state = 306}, + [5529] = {.lex_state = 290}, + [5530] = {.lex_state = 281}, + [5531] = {.lex_state = 290}, + [5532] = {.lex_state = 298}, + [5533] = {.lex_state = 298}, + [5534] = {.lex_state = 290}, + [5535] = {.lex_state = 290}, + [5536] = {.lex_state = 290}, + [5537] = {.lex_state = 290}, + [5538] = {.lex_state = 290}, + [5539] = {.lex_state = 290}, + [5540] = {.lex_state = 290}, + [5541] = {.lex_state = 290}, + [5542] = {.lex_state = 290}, + [5543] = {.lex_state = 290}, + [5544] = {.lex_state = 290}, + [5545] = {.lex_state = 290}, + [5546] = {.lex_state = 290}, + [5547] = {.lex_state = 290}, + [5548] = {.lex_state = 290}, + [5549] = {.lex_state = 303}, + [5550] = {.lex_state = 312}, + [5551] = {.lex_state = 303}, + [5552] = {.lex_state = 290}, + [5553] = {.lex_state = 303}, + [5554] = {.lex_state = 270}, + [5555] = {.lex_state = 270}, + [5556] = {.lex_state = 310}, + [5557] = {.lex_state = 298}, + [5558] = {.lex_state = 290}, + [5559] = {.lex_state = 310}, + [5560] = {.lex_state = 303}, + [5561] = {.lex_state = 267}, + [5562] = {.lex_state = 290}, + [5563] = {.lex_state = 290}, + [5564] = {.lex_state = 290}, + [5565] = {.lex_state = 338}, + [5566] = {.lex_state = 290}, + [5567] = {.lex_state = 290}, + [5568] = {.lex_state = 290}, + [5569] = {.lex_state = 290}, + [5570] = {.lex_state = 290}, + [5571] = {.lex_state = 290}, + [5572] = {.lex_state = 303}, + [5573] = {.lex_state = 290}, + [5574] = {.lex_state = 290}, + [5575] = {.lex_state = 267}, + [5576] = {.lex_state = 267}, + [5577] = {.lex_state = 303}, + [5578] = {.lex_state = 290}, + [5579] = {.lex_state = 290}, + [5580] = {.lex_state = 290}, + [5581] = {.lex_state = 290}, + [5582] = {.lex_state = 290}, + [5583] = {.lex_state = 290}, + [5584] = {.lex_state = 290}, + [5585] = {.lex_state = 290}, + [5586] = {.lex_state = 301}, + [5587] = {.lex_state = 272}, + [5588] = {.lex_state = 290}, + [5589] = {.lex_state = 290}, + [5590] = {.lex_state = 290}, + [5591] = {.lex_state = 270}, + [5592] = {.lex_state = 281}, + [5593] = {.lex_state = 267}, + [5594] = {.lex_state = 308}, + [5595] = {.lex_state = 279}, + [5596] = {.lex_state = 290}, + [5597] = {.lex_state = 290}, + [5598] = {.lex_state = 290}, + [5599] = {.lex_state = 290}, + [5600] = {.lex_state = 290}, + [5601] = {.lex_state = 298}, + [5602] = {.lex_state = 267}, + [5603] = {.lex_state = 290}, + [5604] = {.lex_state = 290}, + [5605] = {.lex_state = 267}, + [5606] = {.lex_state = 267}, + [5607] = {.lex_state = 298}, + [5608] = {.lex_state = 290}, + [5609] = {.lex_state = 290}, + [5610] = {.lex_state = 315}, + [5611] = {.lex_state = 315}, + [5612] = {.lex_state = 270}, + [5613] = {.lex_state = 290}, + [5614] = {.lex_state = 290}, + [5615] = {.lex_state = 338}, + [5616] = {.lex_state = 290}, + [5617] = {.lex_state = 270}, + [5618] = {.lex_state = 290}, + [5619] = {.lex_state = 270}, + [5620] = {.lex_state = 270}, + [5621] = {.lex_state = 301}, + [5622] = {.lex_state = 301}, + [5623] = {.lex_state = 290}, + [5624] = {.lex_state = 270}, + [5625] = {.lex_state = 270}, + [5626] = {.lex_state = 301}, + [5627] = {.lex_state = 301}, + [5628] = {.lex_state = 270}, + [5629] = {.lex_state = 270}, + [5630] = {.lex_state = 290}, + [5631] = {.lex_state = 290}, + [5632] = {.lex_state = 301}, + [5633] = {.lex_state = 301}, + [5634] = {.lex_state = 290}, + [5635] = {.lex_state = 270}, + [5636] = {.lex_state = 290}, + [5637] = {.lex_state = 290}, + [5638] = {.lex_state = 290}, + [5639] = {.lex_state = 290}, + [5640] = {.lex_state = 290}, + [5641] = {.lex_state = 290}, + [5642] = {.lex_state = 270}, + [5643] = {.lex_state = 290}, + [5644] = {.lex_state = 290}, + [5645] = {.lex_state = 301}, + [5646] = {.lex_state = 270}, + [5647] = {.lex_state = 270}, + [5648] = {.lex_state = 301}, + [5649] = {.lex_state = 301}, + [5650] = {.lex_state = 270}, + [5651] = {.lex_state = 270}, + [5652] = {.lex_state = 270}, + [5653] = {.lex_state = 272}, + [5654] = {.lex_state = 301}, + [5655] = {.lex_state = 270}, + [5656] = {.lex_state = 270}, + [5657] = {.lex_state = 267}, + [5658] = {.lex_state = 290}, + [5659] = {.lex_state = 290}, + [5660] = {.lex_state = 301}, + [5661] = {.lex_state = 281}, + [5662] = {.lex_state = 301}, + [5663] = {.lex_state = 283}, + [5664] = {.lex_state = 301}, + [5665] = {.lex_state = 270}, + [5666] = {.lex_state = 281}, + [5667] = {.lex_state = 270}, + [5668] = {.lex_state = 301}, + [5669] = {.lex_state = 270}, + [5670] = {.lex_state = 270}, + [5671] = {.lex_state = 270}, + [5672] = {.lex_state = 270}, + [5673] = {.lex_state = 301}, + [5674] = {.lex_state = 270}, + [5675] = {.lex_state = 270}, + [5676] = {.lex_state = 272}, + [5677] = {.lex_state = 270}, + [5678] = {.lex_state = 279}, + [5679] = {.lex_state = 290}, + [5680] = {.lex_state = 270}, + [5681] = {.lex_state = 270}, + [5682] = {.lex_state = 270}, + [5683] = {.lex_state = 270}, + [5684] = {.lex_state = 270}, + [5685] = {.lex_state = 270}, + [5686] = {.lex_state = 301}, + [5687] = {.lex_state = 301}, + [5688] = {.lex_state = 270}, + [5689] = {.lex_state = 290}, + [5690] = {.lex_state = 270}, + [5691] = {.lex_state = 270}, + [5692] = {.lex_state = 301}, + [5693] = {.lex_state = 290}, + [5694] = {.lex_state = 277}, + [5695] = {.lex_state = 301}, + [5696] = {.lex_state = 270}, + [5697] = {.lex_state = 270}, + [5698] = {.lex_state = 286}, + [5699] = {.lex_state = 281}, + [5700] = {.lex_state = 270}, + [5701] = {.lex_state = 281}, + [5702] = {.lex_state = 290}, + [5703] = {.lex_state = 290}, + [5704] = {.lex_state = 301}, + [5705] = {.lex_state = 290}, + [5706] = {.lex_state = 281}, + [5707] = {.lex_state = 270}, + [5708] = {.lex_state = 283}, + [5709] = {.lex_state = 281}, + [5710] = {.lex_state = 301}, + [5711] = {.lex_state = 281}, + [5712] = {.lex_state = 290}, + [5713] = {.lex_state = 270}, + [5714] = {.lex_state = 290}, + [5715] = {.lex_state = 301}, + [5716] = {.lex_state = 301}, + [5717] = {.lex_state = 301}, + [5718] = {.lex_state = 281}, + [5719] = {.lex_state = 281}, + [5720] = {.lex_state = 270}, + [5721] = {.lex_state = 281}, + [5722] = {.lex_state = 270}, + [5723] = {.lex_state = 281}, + [5724] = {.lex_state = 270}, + [5725] = {.lex_state = 270}, + [5726] = {.lex_state = 281}, + [5727] = {.lex_state = 290}, + [5728] = {.lex_state = 270}, + [5729] = {.lex_state = 270}, + [5730] = {.lex_state = 290}, + [5731] = {.lex_state = 338}, + [5732] = {.lex_state = 301}, + [5733] = {.lex_state = 270}, + [5734] = {.lex_state = 247}, + [5735] = {.lex_state = 301}, + [5736] = {.lex_state = 270}, + [5737] = {.lex_state = 270}, + [5738] = {.lex_state = 290}, + [5739] = {.lex_state = 247}, + [5740] = {.lex_state = 270}, + [5741] = {.lex_state = 270}, + [5742] = {.lex_state = 281}, + [5743] = {.lex_state = 333}, + [5744] = {.lex_state = 290}, + [5745] = {.lex_state = 301}, + [5746] = {.lex_state = 301}, + [5747] = {.lex_state = 270}, + [5748] = {.lex_state = 270}, + [5749] = {.lex_state = 301}, + [5750] = {.lex_state = 281}, + [5751] = {.lex_state = 290}, + [5752] = {.lex_state = 270}, + [5753] = {.lex_state = 301}, + [5754] = {.lex_state = 301}, + [5755] = {.lex_state = 301}, + [5756] = {.lex_state = 270}, + [5757] = {.lex_state = 281}, + [5758] = {.lex_state = 270}, + [5759] = {.lex_state = 301}, + [5760] = {.lex_state = 270}, + [5761] = {.lex_state = 301}, + [5762] = {.lex_state = 270}, + [5763] = {.lex_state = 281}, + [5764] = {.lex_state = 301}, + [5765] = {.lex_state = 270}, + [5766] = {.lex_state = 301}, + [5767] = {.lex_state = 290}, + [5768] = {.lex_state = 301}, + [5769] = {.lex_state = 301}, + [5770] = {.lex_state = 301}, + [5771] = {.lex_state = 270}, + [5772] = {.lex_state = 283}, + [5773] = {.lex_state = 301}, + [5774] = {.lex_state = 281}, + [5775] = {.lex_state = 301}, + [5776] = {.lex_state = 290}, + [5777] = {.lex_state = 301}, + [5778] = {.lex_state = 290}, + [5779] = {.lex_state = 301}, + [5780] = {.lex_state = 301}, + [5781] = {.lex_state = 301}, + [5782] = {.lex_state = 301}, + [5783] = {.lex_state = 279}, + [5784] = {.lex_state = 270}, + [5785] = {.lex_state = 290}, + [5786] = {.lex_state = 283}, + [5787] = {.lex_state = 301}, + [5788] = {.lex_state = 301}, + [5789] = {.lex_state = 301}, + [5790] = {.lex_state = 247}, + [5791] = {.lex_state = 301}, + [5792] = {.lex_state = 301}, + [5793] = {.lex_state = 247}, + [5794] = {.lex_state = 301}, + [5795] = {.lex_state = 290}, + [5796] = {.lex_state = 301}, + [5797] = {.lex_state = 338}, + [5798] = {.lex_state = 301}, + [5799] = {.lex_state = 272}, + [5800] = {.lex_state = 290}, + [5801] = {.lex_state = 270}, + [5802] = {.lex_state = 301}, + [5803] = {.lex_state = 301}, + [5804] = {.lex_state = 301}, + [5805] = {.lex_state = 301}, + [5806] = {.lex_state = 290}, + [5807] = {.lex_state = 270}, + [5808] = {.lex_state = 301}, + [5809] = {.lex_state = 301}, + [5810] = {.lex_state = 270}, + [5811] = {.lex_state = 301}, + [5812] = {.lex_state = 301}, + [5813] = {.lex_state = 270}, + [5814] = {.lex_state = 270}, + [5815] = {.lex_state = 301}, + [5816] = {.lex_state = 315}, + [5817] = {.lex_state = 270}, + [5818] = {.lex_state = 270}, + [5819] = {.lex_state = 301}, + [5820] = {.lex_state = 301}, + [5821] = {.lex_state = 301}, + [5822] = {.lex_state = 290}, + [5823] = {.lex_state = 270}, + [5824] = {.lex_state = 270}, + [5825] = {.lex_state = 301}, + [5826] = {.lex_state = 270}, + [5827] = {.lex_state = 270}, + [5828] = {.lex_state = 338}, + [5829] = {.lex_state = 281}, + [5830] = {.lex_state = 338}, + [5831] = {.lex_state = 338}, + [5832] = {.lex_state = 281}, + [5833] = {.lex_state = 281}, + [5834] = {.lex_state = 290}, + [5835] = {.lex_state = 281}, + [5836] = {.lex_state = 281}, + [5837] = {.lex_state = 281}, + [5838] = {.lex_state = 335}, + [5839] = {.lex_state = 281}, + [5840] = {.lex_state = 281}, + [5841] = {.lex_state = 281}, + [5842] = {.lex_state = 281}, + [5843] = {.lex_state = 281}, + [5844] = {.lex_state = 247}, + [5845] = {.lex_state = 247}, + [5846] = {.lex_state = 341}, + [5847] = {.lex_state = 338}, + [5848] = {.lex_state = 281}, + [5849] = {.lex_state = 281}, + [5850] = {.lex_state = 281}, + [5851] = {.lex_state = 281}, + [5852] = {.lex_state = 281}, + [5853] = {.lex_state = 335}, + [5854] = {.lex_state = 281}, + [5855] = {.lex_state = 338}, + [5856] = {.lex_state = 272}, + [5857] = {.lex_state = 281}, + [5858] = {.lex_state = 338}, + [5859] = {.lex_state = 338}, + [5860] = {.lex_state = 281}, + [5861] = {.lex_state = 338}, + [5862] = {.lex_state = 338}, + [5863] = {.lex_state = 281}, + [5864] = {.lex_state = 281}, + [5865] = {.lex_state = 247}, + [5866] = {.lex_state = 281}, + [5867] = {.lex_state = 281}, + [5868] = {.lex_state = 338}, + [5869] = {.lex_state = 338}, + [5870] = {.lex_state = 281}, + [5871] = {.lex_state = 281}, + [5872] = {.lex_state = 247}, + [5873] = {.lex_state = 281}, + [5874] = {.lex_state = 338}, + [5875] = {.lex_state = 281}, + [5876] = {.lex_state = 281}, + [5877] = {.lex_state = 262}, + [5878] = {.lex_state = 281}, + [5879] = {.lex_state = 340}, + [5880] = {.lex_state = 281}, + [5881] = {.lex_state = 281}, + [5882] = {.lex_state = 338}, + [5883] = {.lex_state = 281}, + [5884] = {.lex_state = 340}, + [5885] = {.lex_state = 281}, + [5886] = {.lex_state = 281}, + [5887] = {.lex_state = 281}, + [5888] = {.lex_state = 281}, + [5889] = {.lex_state = 281}, + [5890] = {.lex_state = 281}, + [5891] = {.lex_state = 340}, + [5892] = {.lex_state = 281}, + [5893] = {.lex_state = 338}, + [5894] = {.lex_state = 277}, + [5895] = {.lex_state = 335}, + [5896] = {.lex_state = 281}, + [5897] = {.lex_state = 281}, + [5898] = {.lex_state = 315}, + [5899] = {.lex_state = 281}, + [5900] = {.lex_state = 281}, + [5901] = {.lex_state = 281}, + [5902] = {.lex_state = 293}, + [5903] = {.lex_state = 281}, + [5904] = {.lex_state = 281}, + [5905] = {.lex_state = 281}, + [5906] = {.lex_state = 264}, + [5907] = {.lex_state = 281}, + [5908] = {.lex_state = 281}, + [5909] = {.lex_state = 281}, + [5910] = {.lex_state = 281}, + [5911] = {.lex_state = 281}, + [5912] = {.lex_state = 293}, + [5913] = {.lex_state = 290}, + [5914] = {.lex_state = 281}, + [5915] = {.lex_state = 290}, + [5916] = {.lex_state = 281}, + [5917] = {.lex_state = 281}, + [5918] = {.lex_state = 338}, + [5919] = {.lex_state = 290}, + [5920] = {.lex_state = 281}, + [5921] = {.lex_state = 290}, + [5922] = {.lex_state = 338}, + [5923] = {.lex_state = 338}, + [5924] = {.lex_state = 281}, + [5925] = {.lex_state = 338}, + [5926] = {.lex_state = 290}, + [5927] = {.lex_state = 338}, + [5928] = {.lex_state = 338}, + [5929] = {.lex_state = 338}, + [5930] = {.lex_state = 290}, + [5931] = {.lex_state = 338}, + [5932] = {.lex_state = 290}, + [5933] = {.lex_state = 264}, + [5934] = {.lex_state = 290}, + [5935] = {.lex_state = 290}, + [5936] = {.lex_state = 335}, + [5937] = {.lex_state = 338}, + [5938] = {.lex_state = 277}, + [5939] = {.lex_state = 338}, + [5940] = {.lex_state = 290}, + [5941] = {.lex_state = 338}, + [5942] = {.lex_state = 338}, + [5943] = {.lex_state = 333}, + [5944] = {.lex_state = 338}, + [5945] = {.lex_state = 338}, + [5946] = {.lex_state = 264}, + [5947] = {.lex_state = 338}, + [5948] = {.lex_state = 338}, + [5949] = {.lex_state = 338}, + [5950] = {.lex_state = 290}, + [5951] = {.lex_state = 338}, + [5952] = {.lex_state = 290}, + [5953] = {.lex_state = 338}, + [5954] = {.lex_state = 290}, + [5955] = {.lex_state = 290}, + [5956] = {.lex_state = 338}, + [5957] = {.lex_state = 290}, + [5958] = {.lex_state = 290}, + [5959] = {.lex_state = 338}, + [5960] = {.lex_state = 262}, + [5961] = {.lex_state = 290}, + [5962] = {.lex_state = 338}, + [5963] = {.lex_state = 337}, + [5964] = {.lex_state = 338}, + [5965] = {.lex_state = 338}, + [5966] = {.lex_state = 337}, + [5967] = {.lex_state = 290}, + [5968] = {.lex_state = 262}, + [5969] = {.lex_state = 281}, + [5970] = {.lex_state = 338}, + [5971] = {.lex_state = 290}, + [5972] = {.lex_state = 338}, + [5973] = {.lex_state = 264}, + [5974] = {.lex_state = 290}, + [5975] = {.lex_state = 338}, + [5976] = {.lex_state = 338}, + [5977] = {.lex_state = 281}, + [5978] = {.lex_state = 290}, + [5979] = {.lex_state = 290}, + [5980] = {.lex_state = 338}, + [5981] = {.lex_state = 290}, + [5982] = {.lex_state = 338}, + [5983] = {.lex_state = 338}, + [5984] = {.lex_state = 338}, + [5985] = {.lex_state = 338}, + [5986] = {.lex_state = 290}, + [5987] = {.lex_state = 290}, + [5988] = {.lex_state = 290}, + [5989] = {.lex_state = 290}, + [5990] = {.lex_state = 262}, + [5991] = {.lex_state = 290}, + [5992] = {.lex_state = 281}, + [5993] = {.lex_state = 290}, + [5994] = {.lex_state = 290}, + [5995] = {.lex_state = 338}, + [5996] = {.lex_state = 338}, + [5997] = {.lex_state = 338}, + [5998] = {.lex_state = 338}, + [5999] = {.lex_state = 333}, + [6000] = {.lex_state = 262}, + [6001] = {.lex_state = 290}, + [6002] = {.lex_state = 338}, + [6003] = {.lex_state = 281}, + [6004] = {.lex_state = 290}, + [6005] = {.lex_state = 281}, + [6006] = {.lex_state = 281}, + [6007] = {.lex_state = 281}, + [6008] = {.lex_state = 290}, + [6009] = {.lex_state = 281}, + [6010] = {.lex_state = 290}, + [6011] = {.lex_state = 290}, + [6012] = {.lex_state = 290}, + [6013] = {.lex_state = 290}, + [6014] = {.lex_state = 290}, + [6015] = {.lex_state = 290}, + [6016] = {.lex_state = 264}, + [6017] = {.lex_state = 290}, + [6018] = {.lex_state = 281}, + [6019] = {.lex_state = 290}, + [6020] = {.lex_state = 338}, + [6021] = {.lex_state = 281}, + [6022] = {.lex_state = 264}, + [6023] = {.lex_state = 317}, + [6024] = {.lex_state = 262}, + [6025] = {.lex_state = 281}, + [6026] = {.lex_state = 262}, + [6027] = {.lex_state = 281}, + [6028] = {.lex_state = 262}, + [6029] = {.lex_state = 324}, + [6030] = {.lex_state = 278}, + [6031] = {.lex_state = 264}, + [6032] = {.lex_state = 281}, + [6033] = {.lex_state = 264}, + [6034] = {.lex_state = 316}, + [6035] = {.lex_state = 262}, + [6036] = {.lex_state = 338}, + [6037] = {.lex_state = 264}, + [6038] = {.lex_state = 281}, + [6039] = {.lex_state = 277}, + [6040] = {.lex_state = 281}, + [6041] = {.lex_state = 319}, + [6042] = {.lex_state = 281}, + [6043] = {.lex_state = 281}, + [6044] = {.lex_state = 281}, + [6045] = {.lex_state = 281}, + [6046] = {.lex_state = 316}, + [6047] = {.lex_state = 277}, + [6048] = {.lex_state = 281}, + [6049] = {.lex_state = 281}, + [6050] = {.lex_state = 281}, + [6051] = {.lex_state = 281}, + [6052] = {.lex_state = 281}, + [6053] = {.lex_state = 333}, + [6054] = {.lex_state = 281}, + [6055] = {.lex_state = 337}, + [6056] = {.lex_state = 281}, + [6057] = {.lex_state = 281}, + [6058] = {.lex_state = 281}, + [6059] = {.lex_state = 281}, + [6060] = {.lex_state = 317}, + [6061] = {.lex_state = 337}, + [6062] = {.lex_state = 281}, + [6063] = {.lex_state = 281}, + [6064] = {.lex_state = 281}, + [6065] = {.lex_state = 317}, + [6066] = {.lex_state = 333}, + [6067] = {.lex_state = 281}, + [6068] = {.lex_state = 281}, + [6069] = {.lex_state = 281}, + [6070] = {.lex_state = 281}, + [6071] = {.lex_state = 324}, + [6072] = {.lex_state = 335}, + [6073] = {.lex_state = 341}, + [6074] = {.lex_state = 281}, + [6075] = {.lex_state = 281}, + [6076] = {.lex_state = 318}, + [6077] = {.lex_state = 281}, + [6078] = {.lex_state = 281}, + [6079] = {.lex_state = 281}, + [6080] = {.lex_state = 341}, + [6081] = {.lex_state = 324}, + [6082] = {.lex_state = 281}, + [6083] = {.lex_state = 316}, + [6084] = {.lex_state = 333}, + [6085] = {.lex_state = 317}, + [6086] = {.lex_state = 324}, + [6087] = {.lex_state = 338}, + [6088] = {.lex_state = 286}, + [6089] = {.lex_state = 286}, + [6090] = {.lex_state = 338}, + [6091] = {.lex_state = 286}, + [6092] = {.lex_state = 286}, + [6093] = {.lex_state = 286}, + [6094] = {.lex_state = 286}, + [6095] = {.lex_state = 286}, + [6096] = {.lex_state = 286}, + [6097] = {.lex_state = 286}, + [6098] = {.lex_state = 280}, + [6099] = {.lex_state = 286}, + [6100] = {.lex_state = 286}, + [6101] = {.lex_state = 286}, + [6102] = {.lex_state = 286}, + [6103] = {.lex_state = 286}, + [6104] = {.lex_state = 316}, + [6105] = {.lex_state = 286}, + [6106] = {.lex_state = 286}, + [6107] = {.lex_state = 338}, + [6108] = {.lex_state = 286}, + [6109] = {.lex_state = 286}, + [6110] = {.lex_state = 286}, + [6111] = {.lex_state = 317}, + [6112] = {.lex_state = 286}, + [6113] = {.lex_state = 286}, + [6114] = {.lex_state = 286}, + [6115] = {.lex_state = 338}, + [6116] = {.lex_state = 286}, + [6117] = {.lex_state = 286}, + [6118] = {.lex_state = 317}, + [6119] = {.lex_state = 286}, + [6120] = {.lex_state = 317}, + [6121] = {.lex_state = 317}, + [6122] = {.lex_state = 324}, + [6123] = {.lex_state = 317}, + [6124] = {.lex_state = 324}, + [6125] = {.lex_state = 324}, + [6126] = {.lex_state = 286}, + [6127] = {.lex_state = 286}, + [6128] = {.lex_state = 286}, + [6129] = {.lex_state = 338}, + [6130] = {.lex_state = 286}, + [6131] = {.lex_state = 286}, + [6132] = {.lex_state = 286}, + [6133] = {.lex_state = 286}, + [6134] = {.lex_state = 286}, + [6135] = {.lex_state = 286}, + [6136] = {.lex_state = 324}, + [6137] = {.lex_state = 286}, + [6138] = {.lex_state = 286}, + [6139] = {.lex_state = 286}, + [6140] = {.lex_state = 338}, + [6141] = {.lex_state = 286}, + [6142] = {.lex_state = 286}, + [6143] = {.lex_state = 286}, + [6144] = {.lex_state = 286}, + [6145] = {.lex_state = 286}, + [6146] = {.lex_state = 324}, + [6147] = {.lex_state = 286}, + [6148] = {.lex_state = 286}, + [6149] = {.lex_state = 286}, + [6150] = {.lex_state = 286}, + [6151] = {.lex_state = 286}, + [6152] = {.lex_state = 338}, + [6153] = {.lex_state = 316}, + [6154] = {.lex_state = 281}, + [6155] = {.lex_state = 278}, + [6156] = {.lex_state = 278}, + [6157] = {.lex_state = 315}, + [6158] = {.lex_state = 338}, + [6159] = {.lex_state = 278}, + [6160] = {.lex_state = 278}, + [6161] = {.lex_state = 316}, + [6162] = {.lex_state = 278}, + [6163] = {.lex_state = 316}, + [6164] = {.lex_state = 316}, + [6165] = {.lex_state = 278}, + [6166] = {.lex_state = 338}, + [6167] = {.lex_state = 316}, + [6168] = {.lex_state = 316}, + [6169] = {.lex_state = 316}, + [6170] = {.lex_state = 278}, + [6171] = {.lex_state = 316}, + [6172] = {.lex_state = 338}, + [6173] = {.lex_state = 281}, + [6174] = {.lex_state = 281}, + [6175] = {.lex_state = 278}, + [6176] = {.lex_state = 316}, + [6177] = {.lex_state = 281}, + [6178] = {.lex_state = 338}, + [6179] = {.lex_state = 338}, + [6180] = {.lex_state = 278}, + [6181] = {.lex_state = 316}, + [6182] = {.lex_state = 338}, + [6183] = {.lex_state = 281}, + [6184] = {.lex_state = 315}, + [6185] = {.lex_state = 338}, + [6186] = {.lex_state = 281}, + [6187] = {.lex_state = 281}, + [6188] = {.lex_state = 281}, + [6189] = {.lex_state = 315}, + [6190] = {.lex_state = 281}, + [6191] = {.lex_state = 281}, + [6192] = {.lex_state = 337}, + [6193] = {.lex_state = 281}, + [6194] = {.lex_state = 278}, + [6195] = {.lex_state = 337}, + [6196] = {.lex_state = 281}, + [6197] = {.lex_state = 281}, + [6198] = {.lex_state = 281}, + [6199] = {.lex_state = 281}, + [6200] = {.lex_state = 333}, + [6201] = {.lex_state = 281}, + [6202] = {.lex_state = 315}, + [6203] = {.lex_state = 281}, + [6204] = {.lex_state = 281}, + [6205] = {.lex_state = 281}, + [6206] = {.lex_state = 281}, + [6207] = {.lex_state = 315}, + [6208] = {.lex_state = 283}, + [6209] = {.lex_state = 278}, + [6210] = {.lex_state = 337}, + [6211] = {.lex_state = 315}, + [6212] = {.lex_state = 316}, + [6213] = {.lex_state = 278}, + [6214] = {.lex_state = 315}, + [6215] = {.lex_state = 316}, + [6216] = {.lex_state = 315}, + [6217] = {.lex_state = 315}, + [6218] = {.lex_state = 315}, + [6219] = {.lex_state = 316}, + [6220] = {.lex_state = 283}, + [6221] = {.lex_state = 316}, + [6222] = {.lex_state = 315}, + [6223] = {.lex_state = 316}, + [6224] = {.lex_state = 278}, + [6225] = {.lex_state = 281}, + [6226] = {.lex_state = 320}, + [6227] = {.lex_state = 316}, + [6228] = {.lex_state = 316}, + [6229] = {.lex_state = 281}, + [6230] = {.lex_state = 281}, + [6231] = {.lex_state = 281}, + [6232] = {.lex_state = 281}, + [6233] = {.lex_state = 278}, + [6234] = {.lex_state = 278}, + [6235] = {.lex_state = 278}, + [6236] = {.lex_state = 278}, + [6237] = {.lex_state = 281}, + [6238] = {.lex_state = 278}, + [6239] = {.lex_state = 281}, + [6240] = {.lex_state = 281}, + [6241] = {.lex_state = 278}, + [6242] = {.lex_state = 281}, + [6243] = {.lex_state = 281}, + [6244] = {.lex_state = 281}, + [6245] = {.lex_state = 281}, + [6246] = {.lex_state = 281}, + [6247] = {.lex_state = 281}, + [6248] = {.lex_state = 281}, + [6249] = {.lex_state = 281}, + [6250] = {.lex_state = 281}, + [6251] = {.lex_state = 281}, + [6252] = {.lex_state = 281}, + [6253] = {.lex_state = 281}, + [6254] = {.lex_state = 316}, + [6255] = {.lex_state = 281}, + [6256] = {.lex_state = 281}, + [6257] = {.lex_state = 281}, + [6258] = {.lex_state = 281}, + [6259] = {.lex_state = 281}, + [6260] = {.lex_state = 281}, + [6261] = {.lex_state = 281}, + [6262] = {.lex_state = 281}, + [6263] = {.lex_state = 316}, + [6264] = {.lex_state = 338}, + [6265] = {.lex_state = 316}, + [6266] = {.lex_state = 340}, + [6267] = {.lex_state = 320}, + [6268] = {.lex_state = 280}, + [6269] = {.lex_state = 317}, + [6270] = {.lex_state = 284}, + [6271] = {.lex_state = 333}, + [6272] = {.lex_state = 333}, + [6273] = {.lex_state = 333}, + [6274] = {.lex_state = 333}, + [6275] = {.lex_state = 281}, + [6276] = {.lex_state = 317}, + [6277] = {.lex_state = 333}, + [6278] = {.lex_state = 280}, + [6279] = {.lex_state = 333}, + [6280] = {.lex_state = 341}, + [6281] = {.lex_state = 333}, + [6282] = {.lex_state = 333}, + [6283] = {.lex_state = 333}, + [6284] = {.lex_state = 333}, + [6285] = {.lex_state = 333}, + [6286] = {.lex_state = 333}, + [6287] = {.lex_state = 333}, + [6288] = {.lex_state = 280}, + [6289] = {.lex_state = 281}, + [6290] = {.lex_state = 333}, + [6291] = {.lex_state = 338}, + [6292] = {.lex_state = 333}, + [6293] = {.lex_state = 333}, + [6294] = {.lex_state = 333}, + [6295] = {.lex_state = 317}, + [6296] = {.lex_state = 338}, + [6297] = {.lex_state = 324}, + [6298] = {.lex_state = 280}, + [6299] = {.lex_state = 338}, + [6300] = {.lex_state = 280}, + [6301] = {.lex_state = 324}, + [6302] = {.lex_state = 280}, + [6303] = {.lex_state = 281}, + [6304] = {.lex_state = 316}, + [6305] = {.lex_state = 280}, + [6306] = {.lex_state = 316}, + [6307] = {.lex_state = 317}, + [6308] = {.lex_state = 284}, + [6309] = {.lex_state = 333}, + [6310] = {.lex_state = 341}, + [6311] = {.lex_state = 338}, + [6312] = {.lex_state = 338}, + [6313] = {.lex_state = 324}, + [6314] = {.lex_state = 324}, + [6315] = {.lex_state = 338}, + [6316] = {.lex_state = 341}, + [6317] = {.lex_state = 284}, + [6318] = {.lex_state = 284}, + [6319] = {.lex_state = 278}, + [6320] = {.lex_state = 316}, + [6321] = {.lex_state = 281}, + [6322] = {.lex_state = 316}, + [6323] = {.lex_state = 316}, + [6324] = {.lex_state = 281}, + [6325] = {.lex_state = 278}, + [6326] = {.lex_state = 278}, + [6327] = {.lex_state = 278}, + [6328] = {.lex_state = 337}, + [6329] = {.lex_state = 316}, + [6330] = {.lex_state = 281}, + [6331] = {.lex_state = 316}, + [6332] = {.lex_state = 281}, + [6333] = {.lex_state = 281}, + [6334] = {.lex_state = 281}, + [6335] = {.lex_state = 317}, + [6336] = {.lex_state = 338}, + [6337] = {.lex_state = 281}, + [6338] = {.lex_state = 281}, + [6339] = {.lex_state = 281}, + [6340] = {.lex_state = 333}, + [6341] = {.lex_state = 281}, + [6342] = {.lex_state = 338}, + [6343] = {.lex_state = 281}, + [6344] = {.lex_state = 333}, + [6345] = {.lex_state = 281}, + [6346] = {.lex_state = 316}, + [6347] = {.lex_state = 316}, + [6348] = {.lex_state = 316}, + [6349] = {.lex_state = 316}, + [6350] = {.lex_state = 281}, + [6351] = {.lex_state = 316}, + [6352] = {.lex_state = 316}, + [6353] = {.lex_state = 316}, + [6354] = {.lex_state = 333}, + [6355] = {.lex_state = 281}, + [6356] = {.lex_state = 333}, + [6357] = {.lex_state = 316}, + [6358] = {.lex_state = 316}, + [6359] = {.lex_state = 338}, + [6360] = {.lex_state = 338}, + [6361] = {.lex_state = 333}, + [6362] = {.lex_state = 316}, + [6363] = {.lex_state = 281}, + [6364] = {.lex_state = 338}, + [6365] = {.lex_state = 316}, + [6366] = {.lex_state = 281}, + [6367] = {.lex_state = 316}, + [6368] = {.lex_state = 316}, + [6369] = {.lex_state = 333}, + [6370] = {.lex_state = 338}, + [6371] = {.lex_state = 281}, + [6372] = {.lex_state = 316}, + [6373] = {.lex_state = 281}, + [6374] = {.lex_state = 333}, + [6375] = {.lex_state = 316}, + [6376] = {.lex_state = 316}, + [6377] = {.lex_state = 316}, + [6378] = {.lex_state = 316}, + [6379] = {.lex_state = 316}, + [6380] = {.lex_state = 278}, + [6381] = {.lex_state = 278}, + [6382] = {.lex_state = 281}, + [6383] = {.lex_state = 278}, + [6384] = {.lex_state = 278}, + [6385] = {.lex_state = 278}, + [6386] = {.lex_state = 316}, + [6387] = {.lex_state = 281}, + [6388] = {.lex_state = 316}, + [6389] = {.lex_state = 278}, + [6390] = {.lex_state = 333}, + [6391] = {.lex_state = 281}, + [6392] = {.lex_state = 337}, + [6393] = {.lex_state = 316}, + [6394] = {.lex_state = 281}, + [6395] = {.lex_state = 337}, + [6396] = {.lex_state = 281}, + [6397] = {.lex_state = 281}, + [6398] = {.lex_state = 281}, + [6399] = {.lex_state = 281}, + [6400] = {.lex_state = 281}, + [6401] = {.lex_state = 281}, + [6402] = {.lex_state = 281}, + [6403] = {.lex_state = 281}, + [6404] = {.lex_state = 281}, + [6405] = {.lex_state = 337}, + [6406] = {.lex_state = 337}, + [6407] = {.lex_state = 281}, + [6408] = {.lex_state = 337}, + [6409] = {.lex_state = 317}, + [6410] = {.lex_state = 278}, + [6411] = {.lex_state = 324}, + [6412] = {.lex_state = 281}, + [6413] = {.lex_state = 324}, + [6414] = {.lex_state = 281}, + [6415] = {.lex_state = 278}, + [6416] = {.lex_state = 281}, + [6417] = {.lex_state = 337}, + [6418] = {.lex_state = 281}, + [6419] = {.lex_state = 316}, + [6420] = {.lex_state = 278}, + [6421] = {.lex_state = 317}, + [6422] = {.lex_state = 281}, + [6423] = {.lex_state = 335}, + [6424] = {.lex_state = 281}, + [6425] = {.lex_state = 281}, + [6426] = {.lex_state = 281}, + [6427] = {.lex_state = 281}, + [6428] = {.lex_state = 281}, + [6429] = {.lex_state = 281}, + [6430] = {.lex_state = 281}, + [6431] = {.lex_state = 281}, + [6432] = {.lex_state = 281}, + [6433] = {.lex_state = 281}, + [6434] = {.lex_state = 316}, + [6435] = {.lex_state = 278}, + [6436] = {.lex_state = 281}, + [6437] = {.lex_state = 281}, + [6438] = {.lex_state = 337}, + [6439] = {.lex_state = 316}, + [6440] = {.lex_state = 281}, + [6441] = {.lex_state = 337}, + [6442] = {.lex_state = 281}, + [6443] = {.lex_state = 316}, + [6444] = {.lex_state = 281}, + [6445] = {.lex_state = 281}, + [6446] = {.lex_state = 281}, + [6447] = {.lex_state = 281}, + [6448] = {.lex_state = 316}, + [6449] = {.lex_state = 281}, + [6450] = {.lex_state = 278}, + [6451] = {.lex_state = 316}, + [6452] = {.lex_state = 278}, + [6453] = {.lex_state = 278}, + [6454] = {.lex_state = 316}, + [6455] = {.lex_state = 281}, + [6456] = {.lex_state = 281}, + [6457] = {.lex_state = 316}, + [6458] = {.lex_state = 316}, + [6459] = {.lex_state = 316}, + [6460] = {.lex_state = 278}, + [6461] = {.lex_state = 278}, + [6462] = {.lex_state = 278}, + [6463] = {.lex_state = 281}, + [6464] = {.lex_state = 278}, + [6465] = {.lex_state = 281}, + [6466] = {.lex_state = 278}, + [6467] = {.lex_state = 316}, + [6468] = {.lex_state = 278}, + [6469] = {.lex_state = 278}, + [6470] = {.lex_state = 316}, + [6471] = {.lex_state = 281}, + [6472] = {.lex_state = 281}, + [6473] = {.lex_state = 316}, + [6474] = {.lex_state = 281}, + [6475] = {.lex_state = 316}, + [6476] = {.lex_state = 341}, + [6477] = {.lex_state = 316}, + [6478] = {.lex_state = 316}, + [6479] = {.lex_state = 316}, + [6480] = {.lex_state = 281}, + [6481] = {.lex_state = 316}, + [6482] = {.lex_state = 316}, + [6483] = {.lex_state = 316}, + [6484] = {.lex_state = 316}, + [6485] = {.lex_state = 341}, + [6486] = {.lex_state = 316}, + [6487] = {.lex_state = 281}, + [6488] = {.lex_state = 316}, + [6489] = {.lex_state = 316}, + [6490] = {.lex_state = 316}, + [6491] = {.lex_state = 278}, + [6492] = {.lex_state = 316}, + [6493] = {.lex_state = 316}, + [6494] = {.lex_state = 341}, + [6495] = {.lex_state = 316}, + [6496] = {.lex_state = 316}, + [6497] = {.lex_state = 316}, + [6498] = {.lex_state = 316}, + [6499] = {.lex_state = 278}, + [6500] = {.lex_state = 316}, + [6501] = {.lex_state = 316}, + [6502] = {.lex_state = 278}, + [6503] = {.lex_state = 316}, + [6504] = {.lex_state = 316}, + [6505] = {.lex_state = 316}, + [6506] = {.lex_state = 316}, + [6507] = {.lex_state = 316}, + [6508] = {.lex_state = 316}, + [6509] = {.lex_state = 278}, + [6510] = {.lex_state = 281}, + [6511] = {.lex_state = 284}, + [6512] = {.lex_state = 281}, + [6513] = {.lex_state = 278}, + [6514] = {.lex_state = 278}, + [6515] = {.lex_state = 316}, + [6516] = {.lex_state = 278}, + [6517] = {.lex_state = 278}, + [6518] = {.lex_state = 316}, + [6519] = {.lex_state = 337}, + [6520] = {.lex_state = 278}, + [6521] = {.lex_state = 281}, + [6522] = {.lex_state = 281}, + [6523] = {.lex_state = 337}, + [6524] = {.lex_state = 278}, + [6525] = {.lex_state = 337}, + [6526] = {.lex_state = 337}, + [6527] = {.lex_state = 337}, + [6528] = {.lex_state = 337}, + [6529] = {.lex_state = 316}, + [6530] = {.lex_state = 337}, + [6531] = {.lex_state = 337}, + [6532] = {.lex_state = 316}, + [6533] = {.lex_state = 281}, + [6534] = {.lex_state = 278}, + [6535] = {.lex_state = 284}, + [6536] = {.lex_state = 278}, + [6537] = {.lex_state = 281}, + [6538] = {.lex_state = 278}, + [6539] = {.lex_state = 278}, + [6540] = {.lex_state = 278}, + [6541] = {.lex_state = 313}, + [6542] = {.lex_state = 316}, + [6543] = {.lex_state = 316}, + [6544] = {.lex_state = 281}, + [6545] = {.lex_state = 337}, + [6546] = {.lex_state = 281}, + [6547] = {.lex_state = 281}, + [6548] = {.lex_state = 281}, + [6549] = {.lex_state = 321}, + [6550] = {.lex_state = 281}, + [6551] = {.lex_state = 281}, + [6552] = {.lex_state = 337}, + [6553] = {.lex_state = 316}, + [6554] = {.lex_state = 278}, + [6555] = {.lex_state = 278}, + [6556] = {.lex_state = 281}, + [6557] = {.lex_state = 278}, + [6558] = {.lex_state = 278}, + [6559] = {.lex_state = 281}, + [6560] = {.lex_state = 281}, + [6561] = {.lex_state = 316}, + [6562] = {.lex_state = 281}, + [6563] = {.lex_state = 281}, + [6564] = {.lex_state = 278}, + [6565] = {.lex_state = 281}, + [6566] = {.lex_state = 281}, + [6567] = {.lex_state = 281}, + [6568] = {.lex_state = 281}, + [6569] = {.lex_state = 338}, + [6570] = {.lex_state = 333}, + [6571] = {.lex_state = 316}, + [6572] = {.lex_state = 278}, + [6573] = {.lex_state = 278}, + [6574] = {.lex_state = 278}, + [6575] = {.lex_state = 278}, + [6576] = {.lex_state = 334}, + [6577] = {.lex_state = 278}, + [6578] = {.lex_state = 278}, + [6579] = {.lex_state = 278}, + [6580] = {.lex_state = 278}, + [6581] = {.lex_state = 278}, + [6582] = {.lex_state = 278}, + [6583] = {.lex_state = 341}, + [6584] = {.lex_state = 281}, + [6585] = {.lex_state = 278}, + [6586] = {.lex_state = 321}, + [6587] = {.lex_state = 278}, + [6588] = {.lex_state = 278}, + [6589] = {.lex_state = 278}, + [6590] = {.lex_state = 316}, + [6591] = {.lex_state = 338}, + [6592] = {.lex_state = 281}, + [6593] = {.lex_state = 281}, + [6594] = {.lex_state = 278}, + [6595] = {.lex_state = 316}, + [6596] = {.lex_state = 281}, + [6597] = {.lex_state = 278}, + [6598] = {.lex_state = 278}, + [6599] = {.lex_state = 316}, + [6600] = {.lex_state = 281}, + [6601] = {.lex_state = 316}, + [6602] = {.lex_state = 278}, + [6603] = {.lex_state = 337}, + [6604] = {.lex_state = 316}, + [6605] = {.lex_state = 337}, + [6606] = {.lex_state = 337}, + [6607] = {.lex_state = 281}, + [6608] = {.lex_state = 281}, + [6609] = {.lex_state = 281}, + [6610] = {.lex_state = 281}, + [6611] = {.lex_state = 337}, + [6612] = {.lex_state = 278}, + [6613] = {.lex_state = 337}, + [6614] = {.lex_state = 333}, + [6615] = {.lex_state = 281}, + [6616] = {.lex_state = 281}, + [6617] = {.lex_state = 281}, + [6618] = {.lex_state = 281}, + [6619] = {.lex_state = 278}, + [6620] = {.lex_state = 281}, + [6621] = {.lex_state = 281}, + [6622] = {.lex_state = 281}, + [6623] = {.lex_state = 337}, + [6624] = {.lex_state = 281}, + [6625] = {.lex_state = 281}, + [6626] = {.lex_state = 278}, + [6627] = {.lex_state = 278}, + [6628] = {.lex_state = 278}, + [6629] = {.lex_state = 278}, + [6630] = {.lex_state = 278}, + [6631] = {.lex_state = 278}, + [6632] = {.lex_state = 316}, + [6633] = {.lex_state = 281}, + [6634] = {.lex_state = 316}, + [6635] = {.lex_state = 316}, + [6636] = {.lex_state = 281}, + [6637] = {.lex_state = 316}, + [6638] = {.lex_state = 316}, + [6639] = {.lex_state = 337}, + [6640] = {.lex_state = 316}, + [6641] = {.lex_state = 316}, + [6642] = {.lex_state = 316}, + [6643] = {.lex_state = 278}, + [6644] = {.lex_state = 316}, + [6645] = {.lex_state = 316}, + [6646] = {.lex_state = 316}, + [6647] = {.lex_state = 316}, + [6648] = {.lex_state = 281}, + [6649] = {.lex_state = 281}, + [6650] = {.lex_state = 316}, + [6651] = {.lex_state = 316}, + [6652] = {.lex_state = 316}, + [6653] = {.lex_state = 278}, + [6654] = {.lex_state = 281}, + [6655] = {.lex_state = 316}, + [6656] = {.lex_state = 278}, + [6657] = {.lex_state = 316}, + [6658] = {.lex_state = 337}, + [6659] = {.lex_state = 316}, + [6660] = {.lex_state = 316}, + [6661] = {.lex_state = 281}, + [6662] = {.lex_state = 281}, + [6663] = {.lex_state = 316}, + [6664] = {.lex_state = 278}, + [6665] = {.lex_state = 278}, + [6666] = {.lex_state = 278}, + [6667] = {.lex_state = 281}, + [6668] = {.lex_state = 278}, + [6669] = {.lex_state = 337}, + [6670] = {.lex_state = 316}, + [6671] = {.lex_state = 281}, + [6672] = {.lex_state = 281}, + [6673] = {.lex_state = 316}, + [6674] = {.lex_state = 281}, + [6675] = {.lex_state = 281}, + [6676] = {.lex_state = 316}, + [6677] = {.lex_state = 316}, + [6678] = {.lex_state = 281}, + [6679] = {.lex_state = 316}, + [6680] = {.lex_state = 278}, + [6681] = {.lex_state = 281}, + [6682] = {.lex_state = 278}, + [6683] = {.lex_state = 316}, + [6684] = {.lex_state = 278}, + [6685] = {.lex_state = 281}, + [6686] = {.lex_state = 281}, + [6687] = {.lex_state = 281}, + [6688] = {.lex_state = 281}, + [6689] = {.lex_state = 281}, + [6690] = {.lex_state = 316}, + [6691] = {.lex_state = 278}, + [6692] = {.lex_state = 281}, + [6693] = {.lex_state = 281}, + [6694] = {.lex_state = 281}, + [6695] = {.lex_state = 281}, + [6696] = {.lex_state = 281}, + [6697] = {.lex_state = 316}, + [6698] = {.lex_state = 281}, + [6699] = {.lex_state = 278}, + [6700] = {.lex_state = 278}, + [6701] = {.lex_state = 281}, + [6702] = {.lex_state = 278}, + [6703] = {.lex_state = 337}, + [6704] = {.lex_state = 281}, + [6705] = {.lex_state = 281}, + [6706] = {.lex_state = 278}, + [6707] = {.lex_state = 281}, + [6708] = {.lex_state = 281}, + [6709] = {.lex_state = 316}, + [6710] = {.lex_state = 281}, + [6711] = {.lex_state = 316}, + [6712] = {.lex_state = 281}, + [6713] = {.lex_state = 280}, + [6714] = {.lex_state = 281}, + [6715] = {.lex_state = 278}, + [6716] = {.lex_state = 316}, + [6717] = {.lex_state = 281}, + [6718] = {.lex_state = 316}, + [6719] = {.lex_state = 278}, + [6720] = {.lex_state = 278}, + [6721] = {.lex_state = 281}, + [6722] = {.lex_state = 316}, + [6723] = {.lex_state = 278}, + [6724] = {.lex_state = 316}, + [6725] = {.lex_state = 278}, + [6726] = {.lex_state = 316}, + [6727] = {.lex_state = 281}, + [6728] = {.lex_state = 281}, + [6729] = {.lex_state = 337}, + [6730] = {.lex_state = 281}, + [6731] = {.lex_state = 281}, + [6732] = {.lex_state = 281}, + [6733] = {.lex_state = 281}, + [6734] = {.lex_state = 281}, + [6735] = {.lex_state = 281}, + [6736] = {.lex_state = 281}, + [6737] = {.lex_state = 281}, + [6738] = {.lex_state = 281}, + [6739] = {.lex_state = 281}, + [6740] = {.lex_state = 281}, + [6741] = {.lex_state = 281}, + [6742] = {.lex_state = 281}, + [6743] = {.lex_state = 281}, + [6744] = {.lex_state = 281}, + [6745] = {.lex_state = 281}, + [6746] = {.lex_state = 281}, + [6747] = {.lex_state = 281}, + [6748] = {.lex_state = 281}, + [6749] = {.lex_state = 281}, + [6750] = {.lex_state = 281}, + [6751] = {.lex_state = 278}, + [6752] = {.lex_state = 281}, + [6753] = {.lex_state = 281}, + [6754] = {.lex_state = 278}, + [6755] = {.lex_state = 278}, + [6756] = {.lex_state = 316}, + [6757] = {.lex_state = 278}, + [6758] = {.lex_state = 316}, + [6759] = {.lex_state = 281}, + [6760] = {.lex_state = 337}, + [6761] = {.lex_state = 281}, + [6762] = {.lex_state = 278}, + [6763] = {.lex_state = 281}, + [6764] = {.lex_state = 316}, + [6765] = {.lex_state = 281}, + [6766] = {.lex_state = 316}, + [6767] = {.lex_state = 278}, + [6768] = {.lex_state = 316}, + [6769] = {.lex_state = 316}, + [6770] = {.lex_state = 281}, + [6771] = {.lex_state = 281}, + [6772] = {.lex_state = 278}, + [6773] = {.lex_state = 316}, + [6774] = {.lex_state = 281}, + [6775] = {.lex_state = 281}, + [6776] = {.lex_state = 281}, + [6777] = {.lex_state = 281}, + [6778] = {.lex_state = 278}, + [6779] = {.lex_state = 281}, + [6780] = {.lex_state = 281}, + [6781] = {.lex_state = 278}, + [6782] = {.lex_state = 281}, + [6783] = {.lex_state = 316}, + [6784] = {.lex_state = 281}, + [6785] = {.lex_state = 278}, + [6786] = {.lex_state = 281}, + [6787] = {.lex_state = 281}, + [6788] = {.lex_state = 281}, + [6789] = {.lex_state = 281}, + [6790] = {.lex_state = 316}, + [6791] = {.lex_state = 337}, + [6792] = {.lex_state = 278}, + [6793] = {.lex_state = 281}, + [6794] = {.lex_state = 281}, + [6795] = {.lex_state = 281}, + [6796] = {.lex_state = 316}, + [6797] = {.lex_state = 281}, + [6798] = {.lex_state = 278}, + [6799] = {.lex_state = 281}, + [6800] = {.lex_state = 281}, + [6801] = {.lex_state = 281}, + [6802] = {.lex_state = 281}, + [6803] = {.lex_state = 281}, + [6804] = {.lex_state = 342}, + [6805] = {.lex_state = 281}, + [6806] = {.lex_state = 281}, + [6807] = {.lex_state = 281}, + [6808] = {.lex_state = 281}, + [6809] = {.lex_state = 281}, + [6810] = {.lex_state = 281}, + [6811] = {.lex_state = 281}, + [6812] = {.lex_state = 281}, + [6813] = {.lex_state = 281}, + [6814] = {.lex_state = 278}, + [6815] = {.lex_state = 281}, + [6816] = {.lex_state = 281}, + [6817] = {.lex_state = 281}, + [6818] = {.lex_state = 281}, + [6819] = {.lex_state = 316}, + [6820] = {.lex_state = 286}, + [6821] = {.lex_state = 281}, + [6822] = {.lex_state = 337}, + [6823] = {.lex_state = 281}, + [6824] = {.lex_state = 281}, + [6825] = {.lex_state = 286}, + [6826] = {.lex_state = 281}, + [6827] = {.lex_state = 281}, + [6828] = {.lex_state = 281}, + [6829] = {.lex_state = 286}, + [6830] = {.lex_state = 278}, + [6831] = {.lex_state = 286}, + [6832] = {.lex_state = 281}, + [6833] = {.lex_state = 281}, + [6834] = {.lex_state = 326}, + [6835] = {.lex_state = 281}, + [6836] = {.lex_state = 281}, + [6837] = {.lex_state = 281}, + [6838] = {.lex_state = 286}, + [6839] = {.lex_state = 286}, + [6840] = {.lex_state = 281}, + [6841] = {.lex_state = 286}, + [6842] = {.lex_state = 333}, + [6843] = {.lex_state = 286}, + [6844] = {.lex_state = 278}, + [6845] = {.lex_state = 286}, + [6846] = {.lex_state = 278}, + [6847] = {.lex_state = 281}, + [6848] = {.lex_state = 337}, + [6849] = {.lex_state = 286}, + [6850] = {.lex_state = 281}, + [6851] = {.lex_state = 281}, + [6852] = {.lex_state = 278}, + [6853] = {.lex_state = 278}, + [6854] = {.lex_state = 337}, + [6855] = {.lex_state = 286}, + [6856] = {.lex_state = 278}, + [6857] = {.lex_state = 278}, + [6858] = {.lex_state = 281}, + [6859] = {.lex_state = 281}, + [6860] = {.lex_state = 281}, + [6861] = {.lex_state = 281}, + [6862] = {.lex_state = 281}, + [6863] = {.lex_state = 281}, + [6864] = {.lex_state = 281}, + [6865] = {.lex_state = 281}, + [6866] = {.lex_state = 286}, + [6867] = {.lex_state = 281}, + [6868] = {.lex_state = 286}, + [6869] = {.lex_state = 278}, + [6870] = {.lex_state = 278}, + [6871] = {.lex_state = 337}, + [6872] = {.lex_state = 281}, + [6873] = {.lex_state = 286}, + [6874] = {.lex_state = 278}, + [6875] = {.lex_state = 316}, + [6876] = {.lex_state = 316}, + [6877] = {.lex_state = 286}, + [6878] = {.lex_state = 281}, + [6879] = {.lex_state = 281}, + [6880] = {.lex_state = 281}, + [6881] = {.lex_state = 286}, + [6882] = {.lex_state = 278}, + [6883] = {.lex_state = 281}, + [6884] = {.lex_state = 286}, + [6885] = {.lex_state = 281}, + [6886] = {.lex_state = 286}, + [6887] = {.lex_state = 281}, + [6888] = {.lex_state = 278}, + [6889] = {.lex_state = 281}, + [6890] = {.lex_state = 278}, + [6891] = {.lex_state = 281}, + [6892] = {.lex_state = 278}, + [6893] = {.lex_state = 337}, + [6894] = {.lex_state = 281}, + [6895] = {.lex_state = 281}, + [6896] = {.lex_state = 286}, + [6897] = {.lex_state = 281}, + [6898] = {.lex_state = 278}, + [6899] = {.lex_state = 281}, + [6900] = {.lex_state = 281}, + [6901] = {.lex_state = 281}, + [6902] = {.lex_state = 281}, + [6903] = {.lex_state = 281}, + [6904] = {.lex_state = 286}, + [6905] = {.lex_state = 278}, + [6906] = {.lex_state = 278}, + [6907] = {.lex_state = 281}, + [6908] = {.lex_state = 281}, + [6909] = {.lex_state = 278}, + [6910] = {.lex_state = 278}, + [6911] = {.lex_state = 278}, + [6912] = {.lex_state = 338}, + [6913] = {.lex_state = 278}, + [6914] = {.lex_state = 278}, + [6915] = {.lex_state = 281}, + [6916] = {.lex_state = 281}, + [6917] = {.lex_state = 278}, + [6918] = {.lex_state = 281}, + [6919] = {.lex_state = 338}, + [6920] = {.lex_state = 281}, + [6921] = {.lex_state = 281}, + [6922] = {.lex_state = 278}, + [6923] = {.lex_state = 281}, + [6924] = {.lex_state = 316}, + [6925] = {.lex_state = 281}, + [6926] = {.lex_state = 281}, + [6927] = {.lex_state = 286}, + [6928] = {.lex_state = 281}, + [6929] = {.lex_state = 281}, + [6930] = {.lex_state = 278}, + [6931] = {.lex_state = 281}, + [6932] = {.lex_state = 281}, + [6933] = {.lex_state = 278}, + [6934] = {.lex_state = 286}, + [6935] = {.lex_state = 281}, + [6936] = {.lex_state = 281}, + [6937] = {.lex_state = 281}, + [6938] = {.lex_state = 281}, + [6939] = {.lex_state = 278}, + [6940] = {.lex_state = 278}, + [6941] = {.lex_state = 278}, + [6942] = {.lex_state = 281}, + [6943] = {.lex_state = 281}, + [6944] = {.lex_state = 278}, + [6945] = {.lex_state = 278}, + [6946] = {.lex_state = 278}, + [6947] = {.lex_state = 286}, + [6948] = {.lex_state = 281}, + [6949] = {.lex_state = 278}, + [6950] = {.lex_state = 281}, + [6951] = {.lex_state = 286}, + [6952] = {.lex_state = 278}, + [6953] = {.lex_state = 281}, + [6954] = {.lex_state = 281}, + [6955] = {.lex_state = 278}, + [6956] = {.lex_state = 281}, + [6957] = {.lex_state = 281}, + [6958] = {.lex_state = 281}, + [6959] = {.lex_state = 286}, + [6960] = {.lex_state = 286}, + [6961] = {.lex_state = 281}, + [6962] = {.lex_state = 281}, + [6963] = {.lex_state = 281}, + [6964] = {.lex_state = 281}, + [6965] = {.lex_state = 326}, + [6966] = {.lex_state = 286}, + [6967] = {.lex_state = 278}, + [6968] = {.lex_state = 278}, + [6969] = {.lex_state = 281}, + [6970] = {.lex_state = 278}, + [6971] = {.lex_state = 281}, + [6972] = {.lex_state = 281}, + [6973] = {.lex_state = 337}, + [6974] = {.lex_state = 278}, + [6975] = {.lex_state = 278}, + [6976] = {.lex_state = 278}, + [6977] = {.lex_state = 281}, + [6978] = {.lex_state = 281}, + [6979] = {.lex_state = 278}, + [6980] = {.lex_state = 286}, + [6981] = {.lex_state = 278}, + [6982] = {.lex_state = 278}, + [6983] = {.lex_state = 281}, + [6984] = {.lex_state = 278}, + [6985] = {.lex_state = 281}, + [6986] = {.lex_state = 278}, + [6987] = {.lex_state = 278}, + [6988] = {.lex_state = 281}, + [6989] = {.lex_state = 278}, + [6990] = {.lex_state = 281}, + [6991] = {.lex_state = 281}, + [6992] = {.lex_state = 278}, + [6993] = {.lex_state = 338}, + [6994] = {.lex_state = 322}, + [6995] = {.lex_state = 337}, + [6996] = {.lex_state = 316}, + [6997] = {.lex_state = 278}, + [6998] = {.lex_state = 338}, + [6999] = {.lex_state = 278}, + [7000] = {.lex_state = 281}, + [7001] = {.lex_state = 316}, + [7002] = {.lex_state = 286}, + [7003] = {.lex_state = 278}, + [7004] = {.lex_state = 281}, + [7005] = {.lex_state = 278}, + [7006] = {.lex_state = 278}, + [7007] = {.lex_state = 281}, + [7008] = {.lex_state = 322}, + [7009] = {.lex_state = 286}, + [7010] = {.lex_state = 281}, + [7011] = {.lex_state = 278}, + [7012] = {.lex_state = 286}, + [7013] = {.lex_state = 281}, + [7014] = {.lex_state = 278}, + [7015] = {.lex_state = 286}, + [7016] = {.lex_state = 281}, + [7017] = {.lex_state = 281}, + [7018] = {.lex_state = 334}, + [7019] = {.lex_state = 337}, + [7020] = {.lex_state = 286}, + [7021] = {.lex_state = 342}, + [7022] = {.lex_state = 281}, + [7023] = {.lex_state = 281}, + [7024] = {.lex_state = 281}, + [7025] = {.lex_state = 278}, + [7026] = {.lex_state = 338}, + [7027] = {.lex_state = 286}, + [7028] = {.lex_state = 278}, + [7029] = {.lex_state = 281}, + [7030] = {.lex_state = 278}, + [7031] = {.lex_state = 281}, + [7032] = {.lex_state = 316}, + [7033] = {.lex_state = 337}, + [7034] = {.lex_state = 337}, + [7035] = {.lex_state = 278}, + [7036] = {.lex_state = 337}, + [7037] = {.lex_state = 281}, + [7038] = {.lex_state = 286}, + [7039] = {.lex_state = 286}, + [7040] = {.lex_state = 337}, + [7041] = {.lex_state = 337}, + [7042] = {.lex_state = 278}, + [7043] = {.lex_state = 337}, + [7044] = {.lex_state = 278}, + [7045] = {.lex_state = 286}, + [7046] = {.lex_state = 281}, + [7047] = {.lex_state = 281}, + [7048] = {.lex_state = 278}, + [7049] = {.lex_state = 281}, + [7050] = {.lex_state = 278}, + [7051] = {.lex_state = 278}, + [7052] = {.lex_state = 286}, + [7053] = {.lex_state = 281}, + [7054] = {.lex_state = 281}, + [7055] = {.lex_state = 278}, + [7056] = {.lex_state = 337}, + [7057] = {.lex_state = 337}, + [7058] = {.lex_state = 286}, + [7059] = {.lex_state = 281}, + [7060] = {.lex_state = 281}, + [7061] = {.lex_state = 281}, + [7062] = {.lex_state = 286}, + [7063] = {.lex_state = 281}, + [7064] = {.lex_state = 281}, + [7065] = {.lex_state = 286}, + [7066] = {.lex_state = 316}, + [7067] = {.lex_state = 316}, + [7068] = {.lex_state = 281}, + [7069] = {.lex_state = 278}, + [7070] = {.lex_state = 281}, + [7071] = {.lex_state = 281}, + [7072] = {.lex_state = 281}, + [7073] = {.lex_state = 281}, + [7074] = {.lex_state = 281}, + [7075] = {.lex_state = 286}, + [7076] = {.lex_state = 281}, + [7077] = {.lex_state = 281}, + [7078] = {.lex_state = 281}, + [7079] = {.lex_state = 281}, + [7080] = {.lex_state = 281}, + [7081] = {.lex_state = 281}, + [7082] = {.lex_state = 281}, + [7083] = {.lex_state = 281}, + [7084] = {.lex_state = 337}, + [7085] = {.lex_state = 286}, + [7086] = {.lex_state = 337}, + [7087] = {.lex_state = 265}, + [7088] = {.lex_state = 265}, + [7089] = {.lex_state = 265}, + [7090] = {.lex_state = 265}, + [7091] = {.lex_state = 265}, + [7092] = {.lex_state = 265}, + [7093] = {.lex_state = 316}, + [7094] = {.lex_state = 281}, + [7095] = {.lex_state = 265}, + [7096] = {.lex_state = 265}, + [7097] = {.lex_state = 265}, + [7098] = {.lex_state = 265}, + [7099] = {.lex_state = 281}, + [7100] = {.lex_state = 338}, + [7101] = {.lex_state = 280}, + [7102] = {.lex_state = 265}, + [7103] = {.lex_state = 265}, + [7104] = {.lex_state = 265}, + [7105] = {.lex_state = 265}, + [7106] = {.lex_state = 316}, + [7107] = {.lex_state = 316}, + [7108] = {.lex_state = 265}, + [7109] = {.lex_state = 265}, + [7110] = {.lex_state = 265}, + [7111] = {.lex_state = 316}, + [7112] = {.lex_state = 265}, + [7113] = {.lex_state = 281}, + [7114] = {.lex_state = 278}, + [7115] = {.lex_state = 316}, + [7116] = {.lex_state = 265}, + [7117] = {.lex_state = 278}, + [7118] = {.lex_state = 278}, + [7119] = {.lex_state = 265}, + [7120] = {.lex_state = 278}, + [7121] = {.lex_state = 316}, + [7122] = {.lex_state = 278}, + [7123] = {.lex_state = 316}, + [7124] = {.lex_state = 316}, + [7125] = {.lex_state = 265}, + [7126] = {.lex_state = 265}, + [7127] = {.lex_state = 265}, + [7128] = {.lex_state = 316}, + [7129] = {.lex_state = 265}, + [7130] = {.lex_state = 337}, + [7131] = {.lex_state = 265}, + [7132] = {.lex_state = 265}, + [7133] = {.lex_state = 265}, + [7134] = {.lex_state = 316}, + [7135] = {.lex_state = 278}, + [7136] = {.lex_state = 278}, + [7137] = {.lex_state = 265}, + [7138] = {.lex_state = 281}, + [7139] = {.lex_state = 278}, + [7140] = {.lex_state = 278}, + [7141] = {.lex_state = 278}, + [7142] = {.lex_state = 265}, + [7143] = {.lex_state = 265}, + [7144] = {.lex_state = 265}, + [7145] = {.lex_state = 316}, + [7146] = {.lex_state = 265}, + [7147] = {.lex_state = 265}, + [7148] = {.lex_state = 265}, + [7149] = {.lex_state = 281}, + [7150] = {.lex_state = 281}, + [7151] = {.lex_state = 278}, + [7152] = {.lex_state = 265}, + [7153] = {.lex_state = 265}, + [7154] = {.lex_state = 265}, + [7155] = {.lex_state = 278}, + [7156] = {.lex_state = 316}, + [7157] = {.lex_state = 278}, + [7158] = {.lex_state = 316}, + [7159] = {.lex_state = 316}, + [7160] = {.lex_state = 316}, + [7161] = {.lex_state = 316}, + [7162] = {.lex_state = 316}, + [7163] = {.lex_state = 278}, + [7164] = {.lex_state = 281}, + [7165] = {.lex_state = 278}, + [7166] = {.lex_state = 265}, + [7167] = {.lex_state = 265}, + [7168] = {.lex_state = 265}, + [7169] = {.lex_state = 265}, + [7170] = {.lex_state = 265}, + [7171] = {.lex_state = 265}, + [7172] = {.lex_state = 278}, + [7173] = {.lex_state = 278}, + [7174] = {.lex_state = 278}, + [7175] = {.lex_state = 316}, + [7176] = {.lex_state = 281}, + [7177] = {.lex_state = 265}, + [7178] = {.lex_state = 265}, + [7179] = {.lex_state = 265}, + [7180] = {.lex_state = 278}, + [7181] = {.lex_state = 265}, + [7182] = {.lex_state = 265}, + [7183] = {.lex_state = 265}, + [7184] = {.lex_state = 265}, + [7185] = {.lex_state = 265}, + [7186] = {.lex_state = 265}, + [7187] = {.lex_state = 278}, + [7188] = {.lex_state = 265}, + [7189] = {.lex_state = 265}, + [7190] = {.lex_state = 265}, + [7191] = {.lex_state = 265}, + [7192] = {.lex_state = 265}, + [7193] = {.lex_state = 265}, + [7194] = {.lex_state = 316}, + [7195] = {.lex_state = 265}, + [7196] = {.lex_state = 265}, + [7197] = {.lex_state = 265}, + [7198] = {.lex_state = 278}, + [7199] = {.lex_state = 278}, + [7200] = {.lex_state = 265}, + [7201] = {.lex_state = 265}, + [7202] = {.lex_state = 265}, + [7203] = {.lex_state = 265}, + [7204] = {.lex_state = 265}, + [7205] = {.lex_state = 265}, + [7206] = {.lex_state = 316}, + [7207] = {.lex_state = 316}, + [7208] = {.lex_state = 316}, + [7209] = {.lex_state = 316}, + [7210] = {.lex_state = 278}, + [7211] = {.lex_state = 316}, + [7212] = {.lex_state = 265}, + [7213] = {.lex_state = 265}, + [7214] = {.lex_state = 265}, + [7215] = {.lex_state = 316}, + [7216] = {.lex_state = 316}, + [7217] = {.lex_state = 316}, + [7218] = {.lex_state = 337}, + [7219] = {.lex_state = 265}, + [7220] = {.lex_state = 265}, + [7221] = {.lex_state = 265}, + [7222] = {.lex_state = 265}, + [7223] = {.lex_state = 265}, + [7224] = {.lex_state = 265}, + [7225] = {.lex_state = 282}, + [7226] = {.lex_state = 284}, + [7227] = {.lex_state = 280}, + [7228] = {.lex_state = 265}, + [7229] = {.lex_state = 265}, + [7230] = {.lex_state = 265}, + [7231] = {.lex_state = 316}, + [7232] = {.lex_state = 278}, + [7233] = {.lex_state = 278}, + [7234] = {.lex_state = 265}, + [7235] = {.lex_state = 316}, + [7236] = {.lex_state = 281}, + [7237] = {.lex_state = 265}, + [7238] = {.lex_state = 265}, + [7239] = {.lex_state = 281}, + [7240] = {.lex_state = 265}, + [7241] = {.lex_state = 316}, + [7242] = {.lex_state = 265}, + [7243] = {.lex_state = 265}, + [7244] = {.lex_state = 316}, + [7245] = {.lex_state = 278}, + [7246] = {.lex_state = 338}, + [7247] = {.lex_state = 265}, + [7248] = {.lex_state = 337}, + [7249] = {.lex_state = 338}, + [7250] = {.lex_state = 265}, + [7251] = {.lex_state = 265}, + [7252] = {.lex_state = 265}, + [7253] = {.lex_state = 316}, + [7254] = {.lex_state = 316}, + [7255] = {.lex_state = 278}, + [7256] = {.lex_state = 338}, + [7257] = {.lex_state = 342}, + [7258] = {.lex_state = 316}, + [7259] = {.lex_state = 278}, + [7260] = {.lex_state = 316}, + [7261] = {.lex_state = 316}, + [7262] = {.lex_state = 278}, + [7263] = {.lex_state = 278}, + [7264] = {.lex_state = 281}, + [7265] = {.lex_state = 316}, + [7266] = {.lex_state = 278}, + [7267] = {.lex_state = 342}, + [7268] = {.lex_state = 265}, + [7269] = {.lex_state = 265}, + [7270] = {.lex_state = 265}, + [7271] = {.lex_state = 278}, + [7272] = {.lex_state = 280}, + [7273] = {.lex_state = 278}, + [7274] = {.lex_state = 278}, + [7275] = {.lex_state = 278}, + [7276] = {.lex_state = 278}, + [7277] = {.lex_state = 265}, + [7278] = {.lex_state = 265}, + [7279] = {.lex_state = 265}, + [7280] = {.lex_state = 278}, + [7281] = {.lex_state = 265}, + [7282] = {.lex_state = 316}, + [7283] = {.lex_state = 316}, + [7284] = {.lex_state = 286}, + [7285] = {.lex_state = 286}, + [7286] = {.lex_state = 315}, + [7287] = {.lex_state = 286}, + [7288] = {.lex_state = 265}, + [7289] = {.lex_state = 286}, + [7290] = {.lex_state = 281}, + [7291] = {.lex_state = 286}, + [7292] = {.lex_state = 340}, + [7293] = {.lex_state = 265}, + [7294] = {.lex_state = 337}, + [7295] = {.lex_state = 315}, + [7296] = {.lex_state = 286}, + [7297] = {.lex_state = 286}, + [7298] = {.lex_state = 286}, + [7299] = {.lex_state = 334}, + [7300] = {.lex_state = 315}, + [7301] = {.lex_state = 286}, + [7302] = {.lex_state = 286}, + [7303] = {.lex_state = 286}, + [7304] = {.lex_state = 265}, + [7305] = {.lex_state = 286}, + [7306] = {.lex_state = 286}, + [7307] = {.lex_state = 286}, + [7308] = {.lex_state = 286}, + [7309] = {.lex_state = 286}, + [7310] = {.lex_state = 265}, + [7311] = {.lex_state = 286}, + [7312] = {.lex_state = 286}, + [7313] = {.lex_state = 286}, + [7314] = {.lex_state = 286}, + [7315] = {.lex_state = 286}, + [7316] = {.lex_state = 286}, + [7317] = {.lex_state = 286}, + [7318] = {.lex_state = 286}, + [7319] = {.lex_state = 286}, + [7320] = {.lex_state = 265}, + [7321] = {.lex_state = 265}, + [7322] = {.lex_state = 334}, + [7323] = {.lex_state = 265}, + [7324] = {.lex_state = 265}, + [7325] = {.lex_state = 286}, + [7326] = {.lex_state = 286}, + [7327] = {.lex_state = 286}, + [7328] = {.lex_state = 286}, + [7329] = {.lex_state = 286}, + [7330] = {.lex_state = 286}, + [7331] = {.lex_state = 286}, + [7332] = {.lex_state = 286}, + [7333] = {.lex_state = 286}, + [7334] = {.lex_state = 286}, + [7335] = {.lex_state = 337}, + [7336] = {.lex_state = 286}, + [7337] = {.lex_state = 340}, + [7338] = {.lex_state = 265}, + [7339] = {.lex_state = 286}, + [7340] = {.lex_state = 286}, + [7341] = {.lex_state = 286}, + [7342] = {.lex_state = 265}, + [7343] = {.lex_state = 265}, + [7344] = {.lex_state = 265}, + [7345] = {.lex_state = 286}, + [7346] = {.lex_state = 286}, + [7347] = {.lex_state = 265}, + [7348] = {.lex_state = 286}, + [7349] = {.lex_state = 286}, + [7350] = {.lex_state = 286}, + [7351] = {.lex_state = 315}, + [7352] = {.lex_state = 337}, + [7353] = {.lex_state = 286}, + [7354] = {.lex_state = 286}, + [7355] = {.lex_state = 286}, + [7356] = {.lex_state = 286}, + [7357] = {.lex_state = 286}, + [7358] = {.lex_state = 286}, + [7359] = {.lex_state = 286}, + [7360] = {.lex_state = 286}, + [7361] = {.lex_state = 286}, + [7362] = {.lex_state = 286}, + [7363] = {.lex_state = 265}, + [7364] = {.lex_state = 286}, + [7365] = {.lex_state = 286}, + [7366] = {.lex_state = 286}, + [7367] = {.lex_state = 286}, + [7368] = {.lex_state = 337}, + [7369] = {.lex_state = 265}, + [7370] = {.lex_state = 286}, + [7371] = {.lex_state = 265}, + [7372] = {.lex_state = 286}, + [7373] = {.lex_state = 265}, + [7374] = {.lex_state = 315}, + [7375] = {.lex_state = 286}, + [7376] = {.lex_state = 286}, + [7377] = {.lex_state = 315}, + [7378] = {.lex_state = 265}, + [7379] = {.lex_state = 340}, + [7380] = {.lex_state = 286}, + [7381] = {.lex_state = 286}, + [7382] = {.lex_state = 286}, + [7383] = {.lex_state = 286}, + [7384] = {.lex_state = 286}, + [7385] = {.lex_state = 286}, + [7386] = {.lex_state = 340}, + [7387] = {.lex_state = 286}, + [7388] = {.lex_state = 286}, + [7389] = {.lex_state = 333}, + [7390] = {.lex_state = 333}, + [7391] = {.lex_state = 333}, + [7392] = {.lex_state = 333}, + [7393] = {.lex_state = 333}, + [7394] = {.lex_state = 333}, + [7395] = {.lex_state = 333}, + [7396] = {.lex_state = 316}, + [7397] = {.lex_state = 333}, + [7398] = {.lex_state = 333}, + [7399] = {.lex_state = 316}, + [7400] = {.lex_state = 333}, + [7401] = {.lex_state = 333}, + [7402] = {.lex_state = 337}, + [7403] = {.lex_state = 333}, + [7404] = {.lex_state = 333}, + [7405] = {.lex_state = 333}, + [7406] = {.lex_state = 333}, + [7407] = {.lex_state = 333}, + [7408] = {.lex_state = 317}, + [7409] = {.lex_state = 333}, + [7410] = {.lex_state = 338}, + [7411] = {.lex_state = 333}, + [7412] = {.lex_state = 338}, + [7413] = {.lex_state = 338}, + [7414] = {.lex_state = 333}, + [7415] = {.lex_state = 338}, + [7416] = {.lex_state = 333}, + [7417] = {.lex_state = 316}, + [7418] = {.lex_state = 333}, + [7419] = {.lex_state = 333}, + [7420] = {.lex_state = 333}, + [7421] = {.lex_state = 333}, + [7422] = {.lex_state = 338}, + [7423] = {.lex_state = 333}, + [7424] = {.lex_state = 333}, + [7425] = {.lex_state = 333}, + [7426] = {.lex_state = 333}, + [7427] = {.lex_state = 333}, + [7428] = {.lex_state = 333}, + [7429] = {.lex_state = 333}, + [7430] = {.lex_state = 333}, + [7431] = {.lex_state = 338}, + [7432] = {.lex_state = 338}, + [7433] = {.lex_state = 337}, + [7434] = {.lex_state = 317}, + [7435] = {.lex_state = 280}, + [7436] = {.lex_state = 333}, + [7437] = {.lex_state = 333}, + [7438] = {.lex_state = 333}, + [7439] = {.lex_state = 333}, + [7440] = {.lex_state = 316}, + [7441] = {.lex_state = 316}, + [7442] = {.lex_state = 338}, + [7443] = {.lex_state = 333}, + [7444] = {.lex_state = 333}, + [7445] = {.lex_state = 316}, + [7446] = {.lex_state = 333}, + [7447] = {.lex_state = 280}, + [7448] = {.lex_state = 333}, + [7449] = {.lex_state = 333}, + [7450] = {.lex_state = 333}, + [7451] = {.lex_state = 317}, + [7452] = {.lex_state = 281}, + [7453] = {.lex_state = 337}, + [7454] = {.lex_state = 337}, + [7455] = {.lex_state = 317}, + [7456] = {.lex_state = 337}, + [7457] = {.lex_state = 281}, + [7458] = {.lex_state = 267}, + [7459] = {.lex_state = 286}, + [7460] = {.lex_state = 281}, + [7461] = {.lex_state = 337}, + [7462] = {.lex_state = 281}, + [7463] = {.lex_state = 337}, + [7464] = {.lex_state = 280}, + [7465] = {.lex_state = 320}, + [7466] = {.lex_state = 281}, + [7467] = {.lex_state = 282}, + [7468] = {.lex_state = 337}, + [7469] = {.lex_state = 337}, + [7470] = {.lex_state = 337}, + [7471] = {.lex_state = 337}, + [7472] = {.lex_state = 337}, + [7473] = {.lex_state = 337}, + [7474] = {.lex_state = 334}, + [7475] = {.lex_state = 286}, + [7476] = {.lex_state = 267}, + [7477] = {.lex_state = 337}, + [7478] = {.lex_state = 267}, + [7479] = {.lex_state = 337}, + [7480] = {.lex_state = 281}, + [7481] = {.lex_state = 337}, + [7482] = {.lex_state = 282}, + [7483] = {.lex_state = 280}, + [7484] = {.lex_state = 337}, + [7485] = {.lex_state = 320}, + [7486] = {.lex_state = 267}, + [7487] = {.lex_state = 281}, + [7488] = {.lex_state = 281}, + [7489] = {.lex_state = 334}, + [7490] = {.lex_state = 337}, + [7491] = {.lex_state = 337}, + [7492] = {.lex_state = 337}, + [7493] = {.lex_state = 337}, + [7494] = {.lex_state = 340}, + [7495] = {.lex_state = 337}, + [7496] = {.lex_state = 337}, + [7497] = {.lex_state = 337}, + [7498] = {.lex_state = 337}, + [7499] = {.lex_state = 337}, + [7500] = {.lex_state = 337}, + [7501] = {.lex_state = 337}, + [7502] = {.lex_state = 340}, + [7503] = {.lex_state = 337}, + [7504] = {.lex_state = 340}, + [7505] = {.lex_state = 337}, + [7506] = {.lex_state = 337}, + [7507] = {.lex_state = 337}, + [7508] = {.lex_state = 337}, + [7509] = {.lex_state = 337}, + [7510] = {.lex_state = 340}, + [7511] = {.lex_state = 337}, + [7512] = {.lex_state = 337}, + [7513] = {.lex_state = 337}, + [7514] = {.lex_state = 337}, + [7515] = {.lex_state = 337}, + [7516] = {.lex_state = 337}, + [7517] = {.lex_state = 337}, + [7518] = {.lex_state = 340}, + [7519] = {.lex_state = 337}, + [7520] = {.lex_state = 337}, + [7521] = {.lex_state = 337}, + [7522] = {.lex_state = 340}, + [7523] = {.lex_state = 340}, + [7524] = {.lex_state = 337}, + [7525] = {.lex_state = 337}, + [7526] = {.lex_state = 337}, + [7527] = {.lex_state = 337}, + [7528] = {.lex_state = 337}, + [7529] = {.lex_state = 337}, + [7530] = {.lex_state = 337}, + [7531] = {.lex_state = 337}, + [7532] = {.lex_state = 337}, + [7533] = {.lex_state = 280}, + [7534] = {.lex_state = 337}, + [7535] = {.lex_state = 340}, + [7536] = {.lex_state = 337}, + [7537] = {.lex_state = 337}, + [7538] = {.lex_state = 337}, + [7539] = {.lex_state = 286}, + [7540] = {.lex_state = 298}, + [7541] = {.lex_state = 338}, + [7542] = {.lex_state = 338}, + [7543] = {.lex_state = 338}, + [7544] = {.lex_state = 286}, + [7545] = {.lex_state = 298}, + [7546] = {.lex_state = 338}, + [7547] = {.lex_state = 298}, + [7548] = {.lex_state = 338}, + [7549] = {.lex_state = 298}, + [7550] = {.lex_state = 338}, + [7551] = {.lex_state = 286}, + [7552] = {.lex_state = 286}, + [7553] = {.lex_state = 298}, + [7554] = {.lex_state = 286}, + [7555] = {.lex_state = 348}, + [7556] = {.lex_state = 286}, + [7557] = {.lex_state = 267}, + [7558] = {.lex_state = 334}, + [7559] = {.lex_state = 286}, + [7560] = {.lex_state = 267}, + [7561] = {.lex_state = 348}, + [7562] = {.lex_state = 348}, + [7563] = {.lex_state = 348}, + [7564] = {.lex_state = 286}, + [7565] = {.lex_state = 286}, + [7566] = {.lex_state = 298}, + [7567] = {.lex_state = 286}, + [7568] = {.lex_state = 348}, + [7569] = {.lex_state = 286}, + [7570] = {.lex_state = 348}, + [7571] = {.lex_state = 267}, + [7572] = {.lex_state = 348}, + [7573] = {.lex_state = 334}, + [7574] = {.lex_state = 286}, + [7575] = {.lex_state = 286}, + [7576] = {.lex_state = 267}, + [7577] = {.lex_state = 286}, + [7578] = {.lex_state = 286}, + [7579] = {.lex_state = 348}, + [7580] = {.lex_state = 298}, + [7581] = {.lex_state = 286}, + [7582] = {.lex_state = 298}, + [7583] = {.lex_state = 348}, + [7584] = {.lex_state = 338}, + [7585] = {.lex_state = 338}, + [7586] = {.lex_state = 338}, + [7587] = {.lex_state = 286}, + [7588] = {.lex_state = 286}, + [7589] = {.lex_state = 286}, + [7590] = {.lex_state = 338}, + [7591] = {.lex_state = 286}, + [7592] = {.lex_state = 281}, + [7593] = {.lex_state = 338}, + [7594] = {.lex_state = 286}, + [7595] = {.lex_state = 286}, + [7596] = {.lex_state = 338}, + [7597] = {.lex_state = 338}, + [7598] = {.lex_state = 267}, + [7599] = {.lex_state = 286}, + [7600] = {.lex_state = 338}, + [7601] = {.lex_state = 338}, + [7602] = {.lex_state = 286}, + [7603] = {.lex_state = 286}, + [7604] = {.lex_state = 338}, + [7605] = {.lex_state = 286}, + [7606] = {.lex_state = 338}, + [7607] = {.lex_state = 286}, + [7608] = {.lex_state = 267}, + [7609] = {.lex_state = 286}, + [7610] = {.lex_state = 286}, + [7611] = {.lex_state = 286}, + [7612] = {.lex_state = 286}, + [7613] = {.lex_state = 286}, + [7614] = {.lex_state = 286}, + [7615] = {.lex_state = 338}, + [7616] = {.lex_state = 267}, + [7617] = {.lex_state = 267}, + [7618] = {.lex_state = 267}, + [7619] = {.lex_state = 267}, + [7620] = {.lex_state = 267}, + [7621] = {.lex_state = 267}, + [7622] = {.lex_state = 315}, + [7623] = {.lex_state = 348}, + [7624] = {.lex_state = 348}, + [7625] = {.lex_state = 348}, + [7626] = {.lex_state = 348}, + [7627] = {.lex_state = 348}, + [7628] = {.lex_state = 348}, + [7629] = {.lex_state = 348}, + [7630] = {.lex_state = 348}, + [7631] = {.lex_state = 348}, + [7632] = {.lex_state = 348}, + [7633] = {.lex_state = 348}, + [7634] = {.lex_state = 348}, + [7635] = {.lex_state = 334}, + [7636] = {.lex_state = 340}, + [7637] = {.lex_state = 348}, + [7638] = {.lex_state = 348}, + [7639] = {.lex_state = 348}, + [7640] = {.lex_state = 348}, + [7641] = {.lex_state = 348}, + [7642] = {.lex_state = 340}, + [7643] = {.lex_state = 340}, + [7644] = {.lex_state = 348}, + [7645] = {.lex_state = 348}, + [7646] = {.lex_state = 340}, + [7647] = {.lex_state = 348}, + [7648] = {.lex_state = 348}, + [7649] = {.lex_state = 348}, + [7650] = {.lex_state = 340}, + [7651] = {.lex_state = 286}, + [7652] = {.lex_state = 315}, + [7653] = {.lex_state = 348}, + [7654] = {.lex_state = 348}, + [7655] = {.lex_state = 348}, + [7656] = {.lex_state = 348}, + [7657] = {.lex_state = 348}, + [7658] = {.lex_state = 348}, + [7659] = {.lex_state = 340}, + [7660] = {.lex_state = 340}, + [7661] = {.lex_state = 340}, + [7662] = {.lex_state = 338}, + [7663] = {.lex_state = 348}, + [7664] = {.lex_state = 340}, + [7665] = {.lex_state = 348}, + [7666] = {.lex_state = 348}, + [7667] = {.lex_state = 348}, + [7668] = {.lex_state = 348}, + [7669] = {.lex_state = 348}, + [7670] = {.lex_state = 340}, + [7671] = {.lex_state = 348}, + [7672] = {.lex_state = 340}, + [7673] = {.lex_state = 348}, + [7674] = {.lex_state = 348}, + [7675] = {.lex_state = 348}, + [7676] = {.lex_state = 315}, + [7677] = {.lex_state = 348}, + [7678] = {.lex_state = 348}, + [7679] = {.lex_state = 348}, + [7680] = {.lex_state = 348}, + [7681] = {.lex_state = 340}, + [7682] = {.lex_state = 348}, + [7683] = {.lex_state = 348}, + [7684] = {.lex_state = 348}, + [7685] = {.lex_state = 348}, + [7686] = {.lex_state = 348}, + [7687] = {.lex_state = 348}, + [7688] = {.lex_state = 265}, + [7689] = {.lex_state = 265}, + [7690] = {.lex_state = 265}, + [7691] = {.lex_state = 265}, + [7692] = {.lex_state = 265}, + [7693] = {.lex_state = 265}, + [7694] = {.lex_state = 265}, + [7695] = {.lex_state = 265}, + [7696] = {.lex_state = 265}, + [7697] = {.lex_state = 265}, + [7698] = {.lex_state = 265}, + [7699] = {.lex_state = 265}, + [7700] = {.lex_state = 298}, + [7701] = {.lex_state = 265}, + [7702] = {.lex_state = 265}, + [7703] = {.lex_state = 265}, + [7704] = {.lex_state = 265}, + [7705] = {.lex_state = 265}, + [7706] = {.lex_state = 265}, + [7707] = {.lex_state = 265}, + [7708] = {.lex_state = 286}, + [7709] = {.lex_state = 298}, + [7710] = {.lex_state = 265}, + [7711] = {.lex_state = 265}, + [7712] = {.lex_state = 265}, + [7713] = {.lex_state = 265}, + [7714] = {.lex_state = 265}, + [7715] = {.lex_state = 298}, + [7716] = {.lex_state = 265}, + [7717] = {.lex_state = 265}, + [7718] = {.lex_state = 265}, + [7719] = {.lex_state = 265}, + [7720] = {.lex_state = 265}, + [7721] = {.lex_state = 298}, + [7722] = {.lex_state = 265}, + [7723] = {.lex_state = 265}, + [7724] = {.lex_state = 265}, + [7725] = {.lex_state = 265}, + [7726] = {.lex_state = 286}, + [7727] = {.lex_state = 265}, + [7728] = {.lex_state = 265}, + [7729] = {.lex_state = 265}, + [7730] = {.lex_state = 265}, + [7731] = {.lex_state = 265}, + [7732] = {.lex_state = 265}, + [7733] = {.lex_state = 265}, + [7734] = {.lex_state = 265}, + [7735] = {.lex_state = 265}, + [7736] = {.lex_state = 286}, + [7737] = {.lex_state = 298}, + [7738] = {.lex_state = 265}, + [7739] = {.lex_state = 265}, + [7740] = {.lex_state = 265}, + [7741] = {.lex_state = 265}, + [7742] = {.lex_state = 265}, + [7743] = {.lex_state = 265}, + [7744] = {.lex_state = 265}, + [7745] = {.lex_state = 298}, + [7746] = {.lex_state = 315}, + [7747] = {.lex_state = 265}, + [7748] = {.lex_state = 265}, + [7749] = {.lex_state = 265}, + [7750] = {.lex_state = 265}, + [7751] = {.lex_state = 265}, + [7752] = {.lex_state = 265}, + [7753] = {.lex_state = 265}, + [7754] = {.lex_state = 265}, + [7755] = {.lex_state = 265}, + [7756] = {.lex_state = 265}, + [7757] = {.lex_state = 265}, + [7758] = {.lex_state = 265}, + [7759] = {.lex_state = 265}, + [7760] = {.lex_state = 265}, + [7761] = {.lex_state = 265}, + [7762] = {.lex_state = 265}, + [7763] = {.lex_state = 265}, + [7764] = {.lex_state = 286}, + [7765] = {.lex_state = 265}, + [7766] = {.lex_state = 265}, + [7767] = {.lex_state = 265}, + [7768] = {.lex_state = 265}, + [7769] = {.lex_state = 265}, + [7770] = {.lex_state = 265}, + [7771] = {.lex_state = 265}, + [7772] = {.lex_state = 265}, + [7773] = {.lex_state = 265}, + [7774] = {.lex_state = 286}, + [7775] = {.lex_state = 265}, + [7776] = {.lex_state = 265}, + [7777] = {.lex_state = 265}, + [7778] = {.lex_state = 265}, + [7779] = {.lex_state = 265}, + [7780] = {.lex_state = 265}, + [7781] = {.lex_state = 265}, + [7782] = {.lex_state = 265}, + [7783] = {.lex_state = 265}, + [7784] = {.lex_state = 265}, + [7785] = {.lex_state = 338}, + [7786] = {.lex_state = 265}, + [7787] = {.lex_state = 265}, + [7788] = {.lex_state = 265}, + [7789] = {.lex_state = 265}, + [7790] = {.lex_state = 265}, + [7791] = {.lex_state = 315}, + [7792] = {.lex_state = 315}, + [7793] = {.lex_state = 343}, + [7794] = {.lex_state = 343}, + [7795] = {.lex_state = 343}, + [7796] = {.lex_state = 338}, + [7797] = {.lex_state = 315}, + [7798] = {.lex_state = 343}, + [7799] = {.lex_state = 343}, + [7800] = {.lex_state = 343}, + [7801] = {.lex_state = 298}, + [7802] = {.lex_state = 315}, + [7803] = {.lex_state = 315}, + [7804] = {.lex_state = 315}, + [7805] = {.lex_state = 267}, + [7806] = {.lex_state = 267}, + [7807] = {.lex_state = 343}, + [7808] = {.lex_state = 343}, + [7809] = {.lex_state = 267}, + [7810] = {.lex_state = 315}, + [7811] = {.lex_state = 315}, + [7812] = {.lex_state = 343}, + [7813] = {.lex_state = 343}, + [7814] = {.lex_state = 343}, + [7815] = {.lex_state = 298}, + [7816] = {.lex_state = 315}, + [7817] = {.lex_state = 343}, + [7818] = {.lex_state = 316}, + [7819] = {.lex_state = 315}, + [7820] = {.lex_state = 315}, + [7821] = {.lex_state = 343}, + [7822] = {.lex_state = 267}, + [7823] = {.lex_state = 265}, + [7824] = {.lex_state = 343}, + [7825] = {.lex_state = 315}, + [7826] = {.lex_state = 343}, + [7827] = {.lex_state = 267}, + [7828] = {.lex_state = 298}, + [7829] = {.lex_state = 315}, + [7830] = {.lex_state = 343}, + [7831] = {.lex_state = 315}, + [7832] = {.lex_state = 315}, + [7833] = {.lex_state = 343}, + [7834] = {.lex_state = 315}, + [7835] = {.lex_state = 343}, + [7836] = {.lex_state = 343}, + [7837] = {.lex_state = 343}, + [7838] = {.lex_state = 338}, + [7839] = {.lex_state = 315}, + [7840] = {.lex_state = 315}, + [7841] = {.lex_state = 343}, + [7842] = {.lex_state = 343}, + [7843] = {.lex_state = 343}, + [7844] = {.lex_state = 343}, + [7845] = {.lex_state = 343}, + [7846] = {.lex_state = 267}, + [7847] = {.lex_state = 343}, + [7848] = {.lex_state = 343}, + [7849] = {.lex_state = 343}, + [7850] = {.lex_state = 315}, + [7851] = {.lex_state = 343}, + [7852] = {.lex_state = 343}, + [7853] = {.lex_state = 315}, + [7854] = {.lex_state = 343}, + [7855] = {.lex_state = 298}, + [7856] = {.lex_state = 315}, + [7857] = {.lex_state = 298}, + [7858] = {.lex_state = 343}, + [7859] = {.lex_state = 343}, + [7860] = {.lex_state = 315}, + [7861] = {.lex_state = 298}, + [7862] = {.lex_state = 343}, + [7863] = {.lex_state = 315}, + [7864] = {.lex_state = 315}, + [7865] = {.lex_state = 315}, + [7866] = {.lex_state = 315}, + [7867] = {.lex_state = 315}, + [7868] = {.lex_state = 316}, + [7869] = {.lex_state = 315}, + [7870] = {.lex_state = 315}, + [7871] = {.lex_state = 338}, + [7872] = {.lex_state = 315}, + [7873] = {.lex_state = 338}, + [7874] = {.lex_state = 267}, + [7875] = {.lex_state = 315}, + [7876] = {.lex_state = 267}, + [7877] = {.lex_state = 338}, + [7878] = {.lex_state = 315}, + [7879] = {.lex_state = 315}, + [7880] = {.lex_state = 338}, + [7881] = {.lex_state = 267}, + [7882] = {.lex_state = 338}, + [7883] = {.lex_state = 338}, + [7884] = {.lex_state = 338}, + [7885] = {.lex_state = 267}, + [7886] = {.lex_state = 335}, + [7887] = {.lex_state = 338}, + [7888] = {.lex_state = 338}, + [7889] = {.lex_state = 338}, + [7890] = {.lex_state = 338}, + [7891] = {.lex_state = 338}, + [7892] = {.lex_state = 338}, + [7893] = {.lex_state = 338}, + [7894] = {.lex_state = 335}, + [7895] = {.lex_state = 338}, + [7896] = {.lex_state = 338}, + [7897] = {.lex_state = 267}, + [7898] = {.lex_state = 338}, + [7899] = {.lex_state = 338}, + [7900] = {.lex_state = 286}, + [7901] = {.lex_state = 338}, + [7902] = {.lex_state = 265}, + [7903] = {.lex_state = 335}, + [7904] = {.lex_state = 267}, + [7905] = {.lex_state = 265}, + [7906] = {.lex_state = 335}, + [7907] = {.lex_state = 265}, + [7908] = {.lex_state = 335}, + [7909] = {.lex_state = 267}, + [7910] = {.lex_state = 267}, + [7911] = {.lex_state = 267}, + [7912] = {.lex_state = 335}, + [7913] = {.lex_state = 267}, + [7914] = {.lex_state = 335}, + [7915] = {.lex_state = 267}, + [7916] = {.lex_state = 338}, + [7917] = {.lex_state = 338}, + [7918] = {.lex_state = 335}, + [7919] = {.lex_state = 267}, + [7920] = {.lex_state = 335}, + [7921] = {.lex_state = 267}, + [7922] = {.lex_state = 335}, + [7923] = {.lex_state = 267}, + [7924] = {.lex_state = 338}, + [7925] = {.lex_state = 286}, + [7926] = {.lex_state = 338}, + [7927] = {.lex_state = 338}, + [7928] = {.lex_state = 338}, + [7929] = {.lex_state = 265}, + [7930] = {.lex_state = 338}, + [7931] = {.lex_state = 338}, + [7932] = {.lex_state = 338}, + [7933] = {.lex_state = 338}, + [7934] = {.lex_state = 338}, + [7935] = {.lex_state = 335}, + [7936] = {.lex_state = 335}, + [7937] = {.lex_state = 338}, + [7938] = {.lex_state = 338}, + [7939] = {.lex_state = 267}, + [7940] = {.lex_state = 338}, + [7941] = {.lex_state = 338}, + [7942] = {.lex_state = 338}, + [7943] = {.lex_state = 338}, + [7944] = {.lex_state = 338}, + [7945] = {.lex_state = 338}, + [7946] = {.lex_state = 338}, + [7947] = {.lex_state = 338}, + [7948] = {.lex_state = 338}, + [7949] = {.lex_state = 338}, + [7950] = {.lex_state = 338}, + [7951] = {.lex_state = 343}, + [7952] = {.lex_state = 343}, + [7953] = {.lex_state = 266}, + [7954] = {.lex_state = 286}, + [7955] = {.lex_state = 337}, + [7956] = {.lex_state = 338}, + [7957] = {.lex_state = 338}, + [7958] = {.lex_state = 338}, + [7959] = {.lex_state = 286}, + [7960] = {.lex_state = 281}, + [7961] = {.lex_state = 286}, + [7962] = {.lex_state = 340}, + [7963] = {.lex_state = 267}, + [7964] = {.lex_state = 315}, + [7965] = {.lex_state = 286}, + [7966] = {.lex_state = 286}, + [7967] = {.lex_state = 340}, + [7968] = {.lex_state = 286}, + [7969] = {.lex_state = 286}, + [7970] = {.lex_state = 267}, + [7971] = {.lex_state = 338}, + [7972] = {.lex_state = 340}, + [7973] = {.lex_state = 286}, + [7974] = {.lex_state = 242}, + [7975] = {.lex_state = 267}, + [7976] = {.lex_state = 286}, + [7977] = {.lex_state = 315}, + [7978] = {.lex_state = 286}, + [7979] = {.lex_state = 267}, + [7980] = {.lex_state = 267}, + [7981] = {.lex_state = 266}, + [7982] = {.lex_state = 286}, + [7983] = {.lex_state = 338}, + [7984] = {.lex_state = 340}, + [7985] = {.lex_state = 267}, + [7986] = {.lex_state = 286}, + [7987] = {.lex_state = 338}, + [7988] = {.lex_state = 267}, + [7989] = {.lex_state = 338}, + [7990] = {.lex_state = 286}, + [7991] = {.lex_state = 340}, + [7992] = {.lex_state = 267}, + [7993] = {.lex_state = 286}, + [7994] = {.lex_state = 286}, + [7995] = {.lex_state = 286}, + [7996] = {.lex_state = 286}, + [7997] = {.lex_state = 338}, + [7998] = {.lex_state = 286}, + [7999] = {.lex_state = 286}, + [8000] = {.lex_state = 286}, + [8001] = {.lex_state = 286}, + [8002] = {.lex_state = 242}, + [8003] = {.lex_state = 286}, + [8004] = {.lex_state = 286}, + [8005] = {.lex_state = 338}, + [8006] = {.lex_state = 338}, + [8007] = {.lex_state = 338}, + [8008] = {.lex_state = 267}, + [8009] = {.lex_state = 338}, + [8010] = {.lex_state = 338}, + [8011] = {.lex_state = 338}, + [8012] = {.lex_state = 338}, + [8013] = {.lex_state = 338}, + [8014] = {.lex_state = 338}, + [8015] = {.lex_state = 267}, + [8016] = {.lex_state = 137}, + [8017] = {.lex_state = 267}, + [8018] = {.lex_state = 340}, + [8019] = {.lex_state = 340}, + [8020] = {.lex_state = 286}, + [8021] = {.lex_state = 242}, + [8022] = {.lex_state = 338}, + [8023] = {.lex_state = 338}, + [8024] = {.lex_state = 286}, + [8025] = {.lex_state = 315}, + [8026] = {.lex_state = 267}, + [8027] = {.lex_state = 266}, + [8028] = {.lex_state = 265}, + [8029] = {.lex_state = 266}, + [8030] = {.lex_state = 286}, + [8031] = {.lex_state = 286}, + [8032] = {.lex_state = 286}, + [8033] = {.lex_state = 286}, + [8034] = {.lex_state = 242}, + [8035] = {.lex_state = 242}, + [8036] = {.lex_state = 242}, + [8037] = {.lex_state = 286}, + [8038] = {.lex_state = 286}, + [8039] = {.lex_state = 242}, + [8040] = {.lex_state = 286}, + [8041] = {.lex_state = 242}, + [8042] = {.lex_state = 242}, + [8043] = {.lex_state = 265}, + [8044] = {.lex_state = 242}, + [8045] = {.lex_state = 242}, + [8046] = {.lex_state = 242}, + [8047] = {.lex_state = 266}, + [8048] = {.lex_state = 242}, + [8049] = {.lex_state = 242}, + [8050] = {.lex_state = 242}, + [8051] = {.lex_state = 242}, + [8052] = {.lex_state = 242}, + [8053] = {.lex_state = 242}, + [8054] = {.lex_state = 266}, + [8055] = {.lex_state = 242}, + [8056] = {.lex_state = 337}, + [8057] = {.lex_state = 281}, + [8058] = {.lex_state = 242}, + [8059] = {.lex_state = 266}, + [8060] = {.lex_state = 242}, + [8061] = {.lex_state = 266}, + [8062] = {.lex_state = 242}, + [8063] = {.lex_state = 242}, + [8064] = {.lex_state = 266}, + [8065] = {.lex_state = 242}, + [8066] = {.lex_state = 266}, + [8067] = {.lex_state = 242}, + [8068] = {.lex_state = 266}, + [8069] = {.lex_state = 266}, + [8070] = {.lex_state = 242}, + [8071] = {.lex_state = 266}, + [8072] = {.lex_state = 286}, + [8073] = {.lex_state = 286}, + [8074] = {.lex_state = 286}, + [8075] = {.lex_state = 265}, + [8076] = {.lex_state = 242}, + [8077] = {.lex_state = 266}, + [8078] = {.lex_state = 242}, + [8079] = {.lex_state = 266}, + [8080] = {.lex_state = 286}, + [8081] = {.lex_state = 265}, + [8082] = {.lex_state = 266}, + [8083] = {.lex_state = 286}, + [8084] = {.lex_state = 266}, + [8085] = {.lex_state = 266}, + [8086] = {.lex_state = 266}, + [8087] = {.lex_state = 286}, + [8088] = {.lex_state = 286}, + [8089] = {.lex_state = 335}, + [8090] = {.lex_state = 265}, + [8091] = {.lex_state = 242}, + [8092] = {.lex_state = 286}, + [8093] = {.lex_state = 286}, + [8094] = {.lex_state = 266}, + [8095] = {.lex_state = 286}, + [8096] = {.lex_state = 286}, + [8097] = {.lex_state = 286}, + [8098] = {.lex_state = 286}, + [8099] = {.lex_state = 242}, + [8100] = {.lex_state = 286}, + [8101] = {.lex_state = 242}, + [8102] = {.lex_state = 286}, + [8103] = {.lex_state = 316}, + [8104] = {.lex_state = 242}, + [8105] = {.lex_state = 242}, + [8106] = {.lex_state = 265}, + [8107] = {.lex_state = 242}, + [8108] = {.lex_state = 242}, + [8109] = {.lex_state = 242}, + [8110] = {.lex_state = 242}, + [8111] = {.lex_state = 242}, + [8112] = {.lex_state = 242}, + [8113] = {.lex_state = 242}, + [8114] = {.lex_state = 266}, + [8115] = {.lex_state = 266}, + [8116] = {.lex_state = 242}, + [8117] = {.lex_state = 266}, + [8118] = {.lex_state = 266}, + [8119] = {.lex_state = 242}, + [8120] = {.lex_state = 338}, + [8121] = {.lex_state = 265}, + [8122] = {.lex_state = 265}, + [8123] = {.lex_state = 265}, + [8124] = {.lex_state = 267}, + [8125] = {.lex_state = 265}, + [8126] = {.lex_state = 265}, + [8127] = {.lex_state = 267}, + [8128] = {.lex_state = 137}, + [8129] = {.lex_state = 265}, + [8130] = {.lex_state = 137}, + [8131] = {.lex_state = 137}, + [8132] = {.lex_state = 266}, + [8133] = {.lex_state = 137}, + [8134] = {.lex_state = 137}, + [8135] = {.lex_state = 265}, + [8136] = {.lex_state = 286}, + [8137] = {.lex_state = 286}, + [8138] = {.lex_state = 266}, + [8139] = {.lex_state = 267}, + [8140] = {.lex_state = 338}, + [8141] = {.lex_state = 286}, + [8142] = {.lex_state = 286}, + [8143] = {.lex_state = 335}, + [8144] = {.lex_state = 286}, + [8145] = {.lex_state = 137}, + [8146] = {.lex_state = 137}, + [8147] = {.lex_state = 338}, + [8148] = {.lex_state = 338}, + [8149] = {.lex_state = 338}, + [8150] = {.lex_state = 338}, + [8151] = {.lex_state = 265}, + [8152] = {.lex_state = 338}, + [8153] = {.lex_state = 265}, + [8154] = {.lex_state = 265}, + [8155] = {.lex_state = 338}, + [8156] = {.lex_state = 338}, + [8157] = {.lex_state = 286}, + [8158] = {.lex_state = 286}, + [8159] = {.lex_state = 265}, + [8160] = {.lex_state = 338}, + [8161] = {.lex_state = 137}, + [8162] = {.lex_state = 338}, + [8163] = {.lex_state = 338}, + [8164] = {.lex_state = 338}, + [8165] = {.lex_state = 338}, + [8166] = {.lex_state = 340}, + [8167] = {.lex_state = 265}, + [8168] = {.lex_state = 265}, + [8169] = {.lex_state = 338}, + [8170] = {.lex_state = 338}, + [8171] = {.lex_state = 316}, + [8172] = {.lex_state = 265}, + [8173] = {.lex_state = 265}, + [8174] = {.lex_state = 265}, + [8175] = {.lex_state = 265}, + [8176] = {.lex_state = 265}, + [8177] = {.lex_state = 265}, + [8178] = {.lex_state = 265}, + [8179] = {.lex_state = 137}, + [8180] = {.lex_state = 338}, + [8181] = {.lex_state = 338}, + [8182] = {.lex_state = 286}, + [8183] = {.lex_state = 338}, + [8184] = {.lex_state = 286}, + [8185] = {.lex_state = 137}, + [8186] = {.lex_state = 267}, + [8187] = {.lex_state = 137}, + [8188] = {.lex_state = 137}, + [8189] = {.lex_state = 265}, + [8190] = {.lex_state = 338}, + [8191] = {.lex_state = 265}, + [8192] = {.lex_state = 265}, + [8193] = {.lex_state = 265}, + [8194] = {.lex_state = 137}, + [8195] = {.lex_state = 338}, + [8196] = {.lex_state = 137}, + [8197] = {.lex_state = 267}, + [8198] = {.lex_state = 338}, + [8199] = {.lex_state = 286}, + [8200] = {.lex_state = 286}, + [8201] = {.lex_state = 265}, + [8202] = {.lex_state = 265}, + [8203] = {.lex_state = 286}, + [8204] = {.lex_state = 137}, + [8205] = {.lex_state = 137}, + [8206] = {.lex_state = 286}, + [8207] = {.lex_state = 137}, + [8208] = {.lex_state = 338}, + [8209] = {.lex_state = 265}, + [8210] = {.lex_state = 337}, + [8211] = {.lex_state = 265}, + [8212] = {.lex_state = 347}, + [8213] = {.lex_state = 340}, + [8214] = {.lex_state = 137}, + [8215] = {.lex_state = 137}, + [8216] = {.lex_state = 338}, + [8217] = {.lex_state = 137}, + [8218] = {.lex_state = 265}, + [8219] = {.lex_state = 265}, + [8220] = {.lex_state = 265}, + [8221] = {.lex_state = 137}, + [8222] = {.lex_state = 137}, + [8223] = {.lex_state = 137}, + [8224] = {.lex_state = 137}, + [8225] = {.lex_state = 137}, + [8226] = {.lex_state = 137}, + [8227] = {.lex_state = 137}, + [8228] = {.lex_state = 137}, + [8229] = {.lex_state = 137}, + [8230] = {.lex_state = 265}, + [8231] = {.lex_state = 137}, + [8232] = {.lex_state = 137}, + [8233] = {.lex_state = 137}, + [8234] = {.lex_state = 338}, + [8235] = {.lex_state = 338}, + [8236] = {.lex_state = 335}, + [8237] = {.lex_state = 337}, + [8238] = {.lex_state = 265}, + [8239] = {.lex_state = 338}, + [8240] = {.lex_state = 338}, + [8241] = {.lex_state = 137}, + [8242] = {.lex_state = 271}, + [8243] = {.lex_state = 338}, + [8244] = {.lex_state = 337}, + [8245] = {.lex_state = 338}, + [8246] = {.lex_state = 271}, + [8247] = {.lex_state = 340}, + [8248] = {.lex_state = 337}, + [8249] = {.lex_state = 340}, + [8250] = {.lex_state = 267}, + [8251] = {.lex_state = 340}, + [8252] = {.lex_state = 337}, + [8253] = {.lex_state = 338}, + [8254] = {.lex_state = 337}, + [8255] = {.lex_state = 338}, + [8256] = {.lex_state = 338}, + [8257] = {.lex_state = 338}, + [8258] = {.lex_state = 265}, + [8259] = {.lex_state = 337}, + [8260] = {.lex_state = 337}, + [8261] = {.lex_state = 337}, + [8262] = {.lex_state = 265}, + [8263] = {.lex_state = 337}, + [8264] = {.lex_state = 338}, + [8265] = {.lex_state = 337}, + [8266] = {.lex_state = 338}, + [8267] = {.lex_state = 267}, + [8268] = {.lex_state = 337}, + [8269] = {.lex_state = 337}, + [8270] = {.lex_state = 265}, + [8271] = {.lex_state = 337}, + [8272] = {.lex_state = 337}, + [8273] = {.lex_state = 267}, + [8274] = {.lex_state = 267}, + [8275] = {.lex_state = 265}, + [8276] = {.lex_state = 337}, + [8277] = {.lex_state = 338}, + [8278] = {.lex_state = 337}, + [8279] = {.lex_state = 271}, + [8280] = {.lex_state = 337}, + [8281] = {.lex_state = 337}, + [8282] = {.lex_state = 265}, + [8283] = {.lex_state = 281}, + [8284] = {.lex_state = 338}, + [8285] = {.lex_state = 265}, + [8286] = {.lex_state = 338}, + [8287] = {.lex_state = 267}, + [8288] = {.lex_state = 265}, + [8289] = {.lex_state = 265}, + [8290] = {.lex_state = 265}, + [8291] = {.lex_state = 271}, + [8292] = {.lex_state = 340}, + [8293] = {.lex_state = 337}, + [8294] = {.lex_state = 340}, + [8295] = {.lex_state = 337}, + [8296] = {.lex_state = 337}, + [8297] = {.lex_state = 342}, + [8298] = {.lex_state = 267}, + [8299] = {.lex_state = 340}, + [8300] = {.lex_state = 338}, + [8301] = {.lex_state = 265}, + [8302] = {.lex_state = 271}, + [8303] = {.lex_state = 267}, + [8304] = {.lex_state = 342}, + [8305] = {.lex_state = 338}, + [8306] = {.lex_state = 337}, + [8307] = {.lex_state = 338}, + [8308] = {.lex_state = 338}, + [8309] = {.lex_state = 338}, + [8310] = {.lex_state = 338}, + [8311] = {.lex_state = 338}, + [8312] = {.lex_state = 338}, + [8313] = {.lex_state = 338}, + [8314] = {.lex_state = 337}, + [8315] = {.lex_state = 337}, + [8316] = {.lex_state = 337}, + [8317] = {.lex_state = 337}, + [8318] = {.lex_state = 337}, + [8319] = {.lex_state = 337}, + [8320] = {.lex_state = 337}, + [8321] = {.lex_state = 338}, + [8322] = {.lex_state = 337}, + [8323] = {.lex_state = 265}, + [8324] = {.lex_state = 265}, + [8325] = {.lex_state = 265}, + [8326] = {.lex_state = 265}, + [8327] = {.lex_state = 315}, + [8328] = {.lex_state = 338}, + [8329] = {.lex_state = 337}, + [8330] = {.lex_state = 337}, + [8331] = {.lex_state = 337}, + [8332] = {.lex_state = 337}, + [8333] = {.lex_state = 337}, + [8334] = {.lex_state = 265}, + [8335] = {.lex_state = 337}, + [8336] = {.lex_state = 265}, + [8337] = {.lex_state = 337}, + [8338] = {.lex_state = 337}, + [8339] = {.lex_state = 265}, + [8340] = {.lex_state = 265}, + [8341] = {.lex_state = 329}, + [8342] = {.lex_state = 265}, + [8343] = {.lex_state = 267}, + [8344] = {.lex_state = 340}, + [8345] = {.lex_state = 315}, + [8346] = {.lex_state = 265}, + [8347] = {.lex_state = 265}, + [8348] = {.lex_state = 265}, + [8349] = {.lex_state = 329}, + [8350] = {.lex_state = 338}, + [8351] = {.lex_state = 338}, + [8352] = {.lex_state = 329}, + [8353] = {.lex_state = 265}, + [8354] = {.lex_state = 338}, + [8355] = {.lex_state = 265}, + [8356] = {.lex_state = 265}, + [8357] = {.lex_state = 265}, + [8358] = {.lex_state = 338}, + [8359] = {.lex_state = 338}, + [8360] = {.lex_state = 315}, + [8361] = {.lex_state = 265}, + [8362] = {.lex_state = 340}, + [8363] = {.lex_state = 338}, + [8364] = {.lex_state = 315}, + [8365] = {.lex_state = 265}, + [8366] = {.lex_state = 271}, + [8367] = {.lex_state = 265}, + [8368] = {.lex_state = 265}, + [8369] = {.lex_state = 265}, + [8370] = {.lex_state = 267}, + [8371] = {.lex_state = 329}, + [8372] = {.lex_state = 265}, + [8373] = {.lex_state = 265}, + [8374] = {.lex_state = 338}, + [8375] = {.lex_state = 265}, + [8376] = {.lex_state = 265}, + [8377] = {.lex_state = 338}, + [8378] = {.lex_state = 337}, + [8379] = {.lex_state = 265}, + [8380] = {.lex_state = 265}, + [8381] = {.lex_state = 265}, + [8382] = {.lex_state = 265}, + [8383] = {.lex_state = 338}, + [8384] = {.lex_state = 338}, + [8385] = {.lex_state = 338}, + [8386] = {.lex_state = 338}, + [8387] = {.lex_state = 272}, + [8388] = {.lex_state = 338}, + [8389] = {.lex_state = 342}, + [8390] = {.lex_state = 272}, + [8391] = {.lex_state = 342}, + [8392] = {.lex_state = 272}, + [8393] = {.lex_state = 342}, + [8394] = {.lex_state = 338}, + [8395] = {.lex_state = 265}, + [8396] = {.lex_state = 316}, + [8397] = {.lex_state = 342}, + [8398] = {.lex_state = 272}, + [8399] = {.lex_state = 272}, + [8400] = {.lex_state = 338}, + [8401] = {.lex_state = 338}, + [8402] = {.lex_state = 338}, + [8403] = {.lex_state = 265}, + [8404] = {.lex_state = 265}, + [8405] = {.lex_state = 342}, + [8406] = {.lex_state = 265}, + [8407] = {.lex_state = 338}, + [8408] = {.lex_state = 342}, + [8409] = {.lex_state = 272}, + [8410] = {.lex_state = 342}, + [8411] = {.lex_state = 265}, + [8412] = {.lex_state = 338}, + [8413] = {.lex_state = 338}, + [8414] = {.lex_state = 265}, + [8415] = {.lex_state = 338}, + [8416] = {.lex_state = 265}, + [8417] = {.lex_state = 342}, + [8418] = {.lex_state = 342}, + [8419] = {.lex_state = 265}, + [8420] = {.lex_state = 265}, + [8421] = {.lex_state = 342}, + [8422] = {.lex_state = 272}, + [8423] = {.lex_state = 272}, + [8424] = {.lex_state = 342}, + [8425] = {.lex_state = 338}, + [8426] = {.lex_state = 265}, + [8427] = {.lex_state = 338}, + [8428] = {.lex_state = 265}, + [8429] = {.lex_state = 338}, + [8430] = {.lex_state = 338}, + [8431] = {.lex_state = 342}, + [8432] = {.lex_state = 338}, + [8433] = {.lex_state = 338}, + [8434] = {.lex_state = 338}, + [8435] = {.lex_state = 265}, + [8436] = {.lex_state = 338}, + [8437] = {.lex_state = 272}, + [8438] = {.lex_state = 272}, + [8439] = {.lex_state = 265}, + [8440] = {.lex_state = 272}, + [8441] = {.lex_state = 272}, + [8442] = {.lex_state = 265}, + [8443] = {.lex_state = 272}, + [8444] = {.lex_state = 272}, + [8445] = {.lex_state = 265}, + [8446] = {.lex_state = 272}, + [8447] = {.lex_state = 272}, + [8448] = {.lex_state = 342}, + [8449] = {.lex_state = 342}, + [8450] = {.lex_state = 342}, + [8451] = {.lex_state = 342}, + [8452] = {.lex_state = 272}, + [8453] = {.lex_state = 265}, + [8454] = {.lex_state = 272}, + [8455] = {.lex_state = 342}, + [8456] = {.lex_state = 272}, + [8457] = {.lex_state = 342}, + [8458] = {.lex_state = 272}, + [8459] = {.lex_state = 338}, + [8460] = {.lex_state = 338}, + [8461] = {.lex_state = 265}, + [8462] = {.lex_state = 342}, + [8463] = {.lex_state = 338}, + [8464] = {.lex_state = 338}, + [8465] = {.lex_state = 338}, + [8466] = {.lex_state = 342}, + [8467] = {.lex_state = 338}, + [8468] = {.lex_state = 338}, + [8469] = {.lex_state = 338}, + [8470] = {.lex_state = 338}, + [8471] = {.lex_state = 338}, + [8472] = {.lex_state = 265}, + [8473] = {.lex_state = 338}, + [8474] = {.lex_state = 338}, + [8475] = {.lex_state = 338}, + [8476] = {.lex_state = 342}, + [8477] = {.lex_state = 265}, + [8478] = {.lex_state = 337}, + [8479] = {.lex_state = 272}, + [8480] = {.lex_state = 267}, + [8481] = {.lex_state = 253}, + [8482] = {.lex_state = 253}, + [8483] = {.lex_state = 301}, + [8484] = {.lex_state = 301}, + [8485] = {.lex_state = 301}, + [8486] = {.lex_state = 301}, + [8487] = {.lex_state = 337}, + [8488] = {.lex_state = 265}, + [8489] = {.lex_state = 301}, + [8490] = {.lex_state = 301}, + [8491] = {.lex_state = 301}, + [8492] = {.lex_state = 301}, + [8493] = {.lex_state = 253}, + [8494] = {.lex_state = 253}, + [8495] = {.lex_state = 337}, + [8496] = {.lex_state = 253}, + [8497] = {.lex_state = 281}, + [8498] = {.lex_state = 337}, + [8499] = {.lex_state = 253}, + [8500] = {.lex_state = 253}, + [8501] = {.lex_state = 272}, + [8502] = {.lex_state = 272}, + [8503] = {.lex_state = 272}, + [8504] = {.lex_state = 253}, + [8505] = {.lex_state = 272}, + [8506] = {.lex_state = 253}, + [8507] = {.lex_state = 253}, + [8508] = {.lex_state = 253}, + [8509] = {.lex_state = 253}, + [8510] = {.lex_state = 340}, + [8511] = {.lex_state = 253}, + [8512] = {.lex_state = 338}, + [8513] = {.lex_state = 253}, + [8514] = {.lex_state = 253}, + [8515] = {.lex_state = 253}, + [8516] = {.lex_state = 337}, + [8517] = {.lex_state = 253}, + [8518] = {.lex_state = 267}, + [8519] = {.lex_state = 265}, + [8520] = {.lex_state = 253}, + [8521] = {.lex_state = 265}, + [8522] = {.lex_state = 253}, + [8523] = {.lex_state = 253}, + [8524] = {.lex_state = 267}, + [8525] = {.lex_state = 253}, + [8526] = {.lex_state = 338}, + [8527] = {.lex_state = 253}, + [8528] = {.lex_state = 253}, + [8529] = {.lex_state = 253}, + [8530] = {.lex_state = 253}, + [8531] = {.lex_state = 338}, + [8532] = {.lex_state = 338}, + [8533] = {.lex_state = 245}, + [8534] = {.lex_state = 337}, + [8535] = {.lex_state = 340}, + [8536] = {.lex_state = 337}, + [8537] = {.lex_state = 265}, + [8538] = {.lex_state = 337}, + [8539] = {.lex_state = 338}, + [8540] = {.lex_state = 267}, + [8541] = {.lex_state = 265}, + [8542] = {.lex_state = 272}, + [8543] = {.lex_state = 272}, + [8544] = {.lex_state = 272}, + [8545] = {.lex_state = 253}, + [8546] = {.lex_state = 267}, + [8547] = {.lex_state = 338}, + [8548] = {.lex_state = 338}, + [8549] = {.lex_state = 265}, + [8550] = {.lex_state = 301}, + [8551] = {.lex_state = 338}, + [8552] = {.lex_state = 265}, + [8553] = {.lex_state = 301}, + [8554] = {.lex_state = 338}, + [8555] = {.lex_state = 301}, + [8556] = {.lex_state = 265}, + [8557] = {.lex_state = 338}, + [8558] = {.lex_state = 265}, + [8559] = {.lex_state = 265}, + [8560] = {.lex_state = 267}, + [8561] = {.lex_state = 301}, + [8562] = {.lex_state = 301}, + [8563] = {.lex_state = 267}, + [8564] = {.lex_state = 265}, + [8565] = {.lex_state = 265}, + [8566] = {.lex_state = 265}, + [8567] = {.lex_state = 301}, + [8568] = {.lex_state = 301}, + [8569] = {.lex_state = 301}, + [8570] = {.lex_state = 301}, + [8571] = {.lex_state = 265}, + [8572] = {.lex_state = 265}, + [8573] = {.lex_state = 301}, + [8574] = {.lex_state = 301}, + [8575] = {.lex_state = 301}, + [8576] = {.lex_state = 265}, + [8577] = {.lex_state = 265}, + [8578] = {.lex_state = 338}, + [8579] = {.lex_state = 265}, + [8580] = {.lex_state = 265}, + [8581] = {.lex_state = 338}, + [8582] = {.lex_state = 301}, + [8583] = {.lex_state = 338}, + [8584] = {.lex_state = 265}, + [8585] = {.lex_state = 338}, + [8586] = {.lex_state = 301}, + [8587] = {.lex_state = 338}, + [8588] = {.lex_state = 265}, + [8589] = {.lex_state = 329}, + [8590] = {.lex_state = 265}, + [8591] = {.lex_state = 338}, + [8592] = {.lex_state = 338}, + [8593] = {.lex_state = 265}, + [8594] = {.lex_state = 265}, + [8595] = {.lex_state = 267}, + [8596] = {.lex_state = 301}, + [8597] = {.lex_state = 267}, + [8598] = {.lex_state = 338}, + [8599] = {.lex_state = 338}, + [8600] = {.lex_state = 265}, + [8601] = {.lex_state = 329}, + [8602] = {.lex_state = 267}, + [8603] = {.lex_state = 267}, + [8604] = {.lex_state = 265}, + [8605] = {.lex_state = 265}, + [8606] = {.lex_state = 265}, + [8607] = {.lex_state = 338}, + [8608] = {.lex_state = 301}, + [8609] = {.lex_state = 265}, + [8610] = {.lex_state = 338}, + [8611] = {.lex_state = 340}, + [8612] = {.lex_state = 265}, + [8613] = {.lex_state = 338}, + [8614] = {.lex_state = 265}, + [8615] = {.lex_state = 301}, + [8616] = {.lex_state = 338}, + [8617] = {.lex_state = 265}, + [8618] = {.lex_state = 301}, + [8619] = {.lex_state = 329}, + [8620] = {.lex_state = 338}, + [8621] = {.lex_state = 265}, + [8622] = {.lex_state = 267}, + [8623] = {.lex_state = 338}, + [8624] = {.lex_state = 265}, + [8625] = {.lex_state = 338}, + [8626] = {.lex_state = 265}, + [8627] = {.lex_state = 338}, + [8628] = {.lex_state = 265}, + [8629] = {.lex_state = 338}, + [8630] = {.lex_state = 338}, + [8631] = {.lex_state = 265}, + [8632] = {.lex_state = 301}, + [8633] = {.lex_state = 340}, + [8634] = {.lex_state = 265}, + [8635] = {.lex_state = 301}, + [8636] = {.lex_state = 265}, + [8637] = {.lex_state = 329}, + [8638] = {.lex_state = 265}, + [8639] = {.lex_state = 265}, + [8640] = {.lex_state = 265}, + [8641] = {.lex_state = 265}, + [8642] = {.lex_state = 265}, + [8643] = {.lex_state = 267}, + [8644] = {.lex_state = 338}, + [8645] = {.lex_state = 338}, + [8646] = {.lex_state = 340}, + [8647] = {.lex_state = 338}, + [8648] = {.lex_state = 333}, + [8649] = {.lex_state = 265}, + [8650] = {.lex_state = 338}, + [8651] = {.lex_state = 337}, + [8652] = {.lex_state = 340}, + [8653] = {.lex_state = 265}, + [8654] = {.lex_state = 281}, + [8655] = {.lex_state = 281}, + [8656] = {.lex_state = 337}, + [8657] = {.lex_state = 265}, + [8658] = {.lex_state = 338}, + [8659] = {.lex_state = 265}, + [8660] = {.lex_state = 338}, + [8661] = {.lex_state = 338}, + [8662] = {.lex_state = 265}, + [8663] = {.lex_state = 265}, + [8664] = {.lex_state = 333}, + [8665] = {.lex_state = 267}, + [8666] = {.lex_state = 281}, + [8667] = {.lex_state = 337}, + [8668] = {.lex_state = 333}, + [8669] = {.lex_state = 265}, + [8670] = {.lex_state = 265}, + [8671] = {.lex_state = 265}, + [8672] = {.lex_state = 281}, + [8673] = {.lex_state = 337}, + [8674] = {.lex_state = 281}, + [8675] = {.lex_state = 337}, + [8676] = {.lex_state = 265}, + [8677] = {.lex_state = 265}, + [8678] = {.lex_state = 337}, + [8679] = {.lex_state = 337}, + [8680] = {.lex_state = 265}, + [8681] = {.lex_state = 265}, + [8682] = {.lex_state = 338}, + [8683] = {.lex_state = 265}, + [8684] = {.lex_state = 338}, + [8685] = {.lex_state = 340}, + [8686] = {.lex_state = 340}, + [8687] = {.lex_state = 265}, + [8688] = {.lex_state = 281}, + [8689] = {.lex_state = 340}, + [8690] = {.lex_state = 281}, + [8691] = {.lex_state = 337}, + [8692] = {.lex_state = 265}, + [8693] = {.lex_state = 265}, + [8694] = {.lex_state = 338}, + [8695] = {.lex_state = 265}, + [8696] = {.lex_state = 265}, + [8697] = {.lex_state = 340}, + [8698] = {.lex_state = 281}, + [8699] = {.lex_state = 281}, + [8700] = {.lex_state = 265}, + [8701] = {.lex_state = 338}, + [8702] = {.lex_state = 338}, + [8703] = {.lex_state = 281}, + [8704] = {.lex_state = 281}, + [8705] = {.lex_state = 340}, + [8706] = {.lex_state = 338}, + [8707] = {.lex_state = 338}, + [8708] = {.lex_state = 338}, + [8709] = {.lex_state = 272}, + [8710] = {.lex_state = 272}, + [8711] = {.lex_state = 272}, + [8712] = {.lex_state = 272}, + [8713] = {.lex_state = 338}, + [8714] = {.lex_state = 338}, + [8715] = {.lex_state = 338}, + [8716] = {.lex_state = 338}, + [8717] = {.lex_state = 272}, + [8718] = {.lex_state = 298}, + [8719] = {.lex_state = 272}, [8720] = {.lex_state = 0}, - [8721] = {.lex_state = 0}, - [8722] = {.lex_state = 0}, - [8723] = {.lex_state = 0}, - [8724] = {.lex_state = 0}, - [8725] = {.lex_state = 0}, - [8726] = {.lex_state = 0}, - [8727] = {.lex_state = 0}, - [8728] = {.lex_state = 0}, - [8729] = {.lex_state = 0}, - [8730] = {.lex_state = 339}, - [8731] = {.lex_state = 0}, - [8732] = {.lex_state = 0}, - [8733] = {.lex_state = 0}, - [8734] = {.lex_state = 0}, - [8735] = {.lex_state = 0}, - [8736] = {.lex_state = 0}, - [8737] = {.lex_state = 198}, - [8738] = {.lex_state = 0}, - [8739] = {.lex_state = 0}, - [8740] = {.lex_state = 0}, - [8741] = {.lex_state = 0}, - [8742] = {.lex_state = 0}, - [8743] = {.lex_state = 0}, - [8744] = {.lex_state = 0}, - [8745] = {.lex_state = 0}, - [8746] = {.lex_state = 195}, - [8747] = {.lex_state = 0}, - [8748] = {.lex_state = 0}, - [8749] = {.lex_state = 339}, - [8750] = {.lex_state = 339}, - [8751] = {.lex_state = 339}, - [8752] = {.lex_state = 339}, - [8753] = {.lex_state = 198}, - [8754] = {.lex_state = 339}, - [8755] = {.lex_state = 0}, - [8756] = {.lex_state = 0}, - [8757] = {.lex_state = 173}, - [8758] = {.lex_state = 173}, - [8759] = {.lex_state = 0}, - [8760] = {.lex_state = 195}, - [8761] = {.lex_state = 0}, - [8762] = {.lex_state = 339}, - [8763] = {.lex_state = 339}, - [8764] = {.lex_state = 339}, - [8765] = {.lex_state = 173}, - [8766] = {.lex_state = 0}, - [8767] = {.lex_state = 339}, - [8768] = {.lex_state = 0, .external_lex_state = 3}, - [8769] = {.lex_state = 339}, - [8770] = {.lex_state = 0}, - [8771] = {.lex_state = 339}, - [8772] = {.lex_state = 0}, - [8773] = {.lex_state = 0}, - [8774] = {.lex_state = 0}, - [8775] = {.lex_state = 113}, - [8776] = {.lex_state = 173}, - [8777] = {.lex_state = 0}, - [8778] = {.lex_state = 198}, - [8779] = {.lex_state = 0}, - [8780] = {.lex_state = 173}, - [8781] = {.lex_state = 339}, - [8782] = {.lex_state = 339}, - [8783] = {.lex_state = 339}, - [8784] = {.lex_state = 195}, - [8785] = {.lex_state = 339}, - [8786] = {.lex_state = 0}, - [8787] = {.lex_state = 0}, - [8788] = {.lex_state = 195}, - [8789] = {.lex_state = 0}, - [8790] = {.lex_state = 339}, - [8791] = {.lex_state = 113}, - [8792] = {.lex_state = 339}, - [8793] = {.lex_state = 0}, - [8794] = {.lex_state = 339}, - [8795] = {.lex_state = 0, .external_lex_state = 3}, - [8796] = {.lex_state = 198}, - [8797] = {.lex_state = 0}, - [8798] = {.lex_state = 173}, - [8799] = {.lex_state = 339}, - [8800] = {.lex_state = 0}, - [8801] = {.lex_state = 198}, - [8802] = {.lex_state = 0}, - [8803] = {.lex_state = 339}, - [8804] = {.lex_state = 339}, - [8805] = {.lex_state = 339}, - [8806] = {.lex_state = 0}, - [8807] = {.lex_state = 339}, - [8808] = {.lex_state = 173}, - [8809] = {.lex_state = 0}, - [8810] = {.lex_state = 195}, - [8811] = {.lex_state = 339}, - [8812] = {.lex_state = 0}, - [8813] = {.lex_state = 339}, - [8814] = {.lex_state = 173}, - [8815] = {.lex_state = 339}, - [8816] = {.lex_state = 0, .external_lex_state = 3}, - [8817] = {.lex_state = 0}, - [8818] = {.lex_state = 0}, - [8819] = {.lex_state = 0}, - [8820] = {.lex_state = 0}, - [8821] = {.lex_state = 0}, - [8822] = {.lex_state = 198}, - [8823] = {.lex_state = 195}, - [8824] = {.lex_state = 339}, - [8825] = {.lex_state = 339}, - [8826] = {.lex_state = 339}, - [8827] = {.lex_state = 173}, - [8828] = {.lex_state = 339}, - [8829] = {.lex_state = 173}, - [8830] = {.lex_state = 0}, - [8831] = {.lex_state = 339}, - [8832] = {.lex_state = 0}, - [8833] = {.lex_state = 339}, - [8834] = {.lex_state = 0}, - [8835] = {.lex_state = 339}, - [8836] = {.lex_state = 0, .external_lex_state = 3}, - [8837] = {.lex_state = 0}, - [8838] = {.lex_state = 0}, - [8839] = {.lex_state = 0}, - [8840] = {.lex_state = 0}, - [8841] = {.lex_state = 0}, - [8842] = {.lex_state = 198}, - [8843] = {.lex_state = 0}, - [8844] = {.lex_state = 339}, - [8845] = {.lex_state = 339}, - [8846] = {.lex_state = 173}, - [8847] = {.lex_state = 339}, - [8848] = {.lex_state = 198}, - [8849] = {.lex_state = 0}, - [8850] = {.lex_state = 173}, - [8851] = {.lex_state = 339}, - [8852] = {.lex_state = 0}, - [8853] = {.lex_state = 339}, - [8854] = {.lex_state = 0, .external_lex_state = 3}, - [8855] = {.lex_state = 0}, - [8856] = {.lex_state = 0}, - [8857] = {.lex_state = 0}, - [8858] = {.lex_state = 0}, - [8859] = {.lex_state = 0}, - [8860] = {.lex_state = 339}, - [8861] = {.lex_state = 339}, - [8862] = {.lex_state = 339}, - [8863] = {.lex_state = 195}, - [8864] = {.lex_state = 339}, - [8865] = {.lex_state = 0, .external_lex_state = 3}, - [8866] = {.lex_state = 0}, - [8867] = {.lex_state = 195}, - [8868] = {.lex_state = 0}, - [8869] = {.lex_state = 113}, - [8870] = {.lex_state = 339}, - [8871] = {.lex_state = 339}, - [8872] = {.lex_state = 339}, - [8873] = {.lex_state = 0}, - [8874] = {.lex_state = 339}, - [8875] = {.lex_state = 0, .external_lex_state = 3}, - [8876] = {.lex_state = 339}, - [8877] = {.lex_state = 0}, - [8878] = {.lex_state = 339}, - [8879] = {.lex_state = 339}, - [8880] = {.lex_state = 339}, - [8881] = {.lex_state = 339}, - [8882] = {.lex_state = 0, .external_lex_state = 3}, - [8883] = {.lex_state = 0}, - [8884] = {.lex_state = 339}, - [8885] = {.lex_state = 0, .external_lex_state = 3}, - [8886] = {.lex_state = 0}, - [8887] = {.lex_state = 339}, - [8888] = {.lex_state = 0, .external_lex_state = 3}, - [8889] = {.lex_state = 0}, - [8890] = {.lex_state = 0, .external_lex_state = 3}, - [8891] = {.lex_state = 0}, - [8892] = {.lex_state = 0, .external_lex_state = 3}, - [8893] = {.lex_state = 0}, - [8894] = {.lex_state = 0, .external_lex_state = 3}, - [8895] = {.lex_state = 0}, - [8896] = {.lex_state = 0, .external_lex_state = 3}, - [8897] = {.lex_state = 0}, - [8898] = {.lex_state = 0, .external_lex_state = 3}, - [8899] = {.lex_state = 0}, - [8900] = {.lex_state = 0}, - [8901] = {.lex_state = 0}, - [8902] = {.lex_state = 339}, - [8903] = {.lex_state = 339}, - [8904] = {.lex_state = 195}, - [8905] = {.lex_state = 0}, - [8906] = {.lex_state = 0}, - [8907] = {.lex_state = 0}, - [8908] = {.lex_state = 0}, - [8909] = {.lex_state = 113}, - [8910] = {.lex_state = 0}, - [8911] = {.lex_state = 0}, - [8912] = {.lex_state = 0}, - [8913] = {.lex_state = 173}, - [8914] = {.lex_state = 0}, - [8915] = {.lex_state = 0}, - [8916] = {.lex_state = 0}, - [8917] = {.lex_state = 0}, - [8918] = {.lex_state = 195}, - [8919] = {.lex_state = 0}, - [8920] = {.lex_state = 195}, - [8921] = {.lex_state = 0, .external_lex_state = 3}, - [8922] = {.lex_state = 195}, - [8923] = {.lex_state = 0}, - [8924] = {.lex_state = 0}, - [8925] = {.lex_state = 339}, - [8926] = {.lex_state = 0}, - [8927] = {.lex_state = 195}, - [8928] = {.lex_state = 0}, - [8929] = {.lex_state = 0}, - [8930] = {.lex_state = 173}, - [8931] = {.lex_state = 0}, - [8932] = {.lex_state = 0}, - [8933] = {.lex_state = 0}, - [8934] = {.lex_state = 0}, - [8935] = {.lex_state = 113}, - [8936] = {.lex_state = 0}, - [8937] = {.lex_state = 0}, - [8938] = {.lex_state = 0}, - [8939] = {.lex_state = 0}, - [8940] = {.lex_state = 195}, - [8941] = {.lex_state = 0}, - [8942] = {.lex_state = 339}, - [8943] = {.lex_state = 0}, - [8944] = {.lex_state = 0}, - [8945] = {.lex_state = 0}, - [8946] = {.lex_state = 0}, - [8947] = {.lex_state = 0}, - [8948] = {.lex_state = 0}, - [8949] = {.lex_state = 0}, - [8950] = {.lex_state = 0}, - [8951] = {.lex_state = 0}, - [8952] = {.lex_state = 0}, - [8953] = {.lex_state = 198}, - [8954] = {.lex_state = 195}, - [8955] = {.lex_state = 339}, - [8956] = {.lex_state = 0}, - [8957] = {.lex_state = 198}, - [8958] = {.lex_state = 0, .external_lex_state = 2}, - [8959] = {.lex_state = 0}, - [8960] = {.lex_state = 0}, - [8961] = {.lex_state = 0}, - [8962] = {.lex_state = 173}, - [8963] = {.lex_state = 173}, - [8964] = {.lex_state = 0}, - [8965] = {.lex_state = 173}, - [8966] = {.lex_state = 0}, - [8967] = {.lex_state = 0}, - [8968] = {.lex_state = 0}, - [8969] = {.lex_state = 0}, - [8970] = {.lex_state = 198}, - [8971] = {.lex_state = 0}, - [8972] = {.lex_state = 0}, - [8973] = {.lex_state = 0}, - [8974] = {.lex_state = 339}, - [8975] = {.lex_state = 0}, - [8976] = {.lex_state = 339}, - [8977] = {.lex_state = 0}, - [8978] = {.lex_state = 0}, - [8979] = {.lex_state = 173}, - [8980] = {.lex_state = 173}, - [8981] = {.lex_state = 198}, - [8982] = {.lex_state = 195}, - [8983] = {.lex_state = 198}, - [8984] = {.lex_state = 173}, - [8985] = {.lex_state = 195}, - [8986] = {.lex_state = 339}, - [8987] = {.lex_state = 339}, - [8988] = {.lex_state = 195}, - [8989] = {.lex_state = 0}, - [8990] = {.lex_state = 0}, - [8991] = {.lex_state = 173}, - [8992] = {.lex_state = 113}, - [8993] = {.lex_state = 195}, - [8994] = {.lex_state = 0, .external_lex_state = 3}, - [8995] = {.lex_state = 113}, - [8996] = {.lex_state = 0}, - [8997] = {.lex_state = 339}, - [8998] = {.lex_state = 0}, - [8999] = {.lex_state = 339}, - [9000] = {.lex_state = 339}, - [9001] = {.lex_state = 195}, - [9002] = {.lex_state = 0}, - [9003] = {.lex_state = 0}, - [9004] = {.lex_state = 195}, - [9005] = {.lex_state = 0, .external_lex_state = 3}, - [9006] = {.lex_state = 0}, - [9007] = {.lex_state = 0}, - [9008] = {.lex_state = 0}, - [9009] = {.lex_state = 339}, - [9010] = {.lex_state = 195}, - [9011] = {.lex_state = 0}, - [9012] = {.lex_state = 0}, - [9013] = {.lex_state = 195}, - [9014] = {.lex_state = 0, .external_lex_state = 3}, - [9015] = {.lex_state = 0}, - [9016] = {.lex_state = 0}, - [9017] = {.lex_state = 339}, - [9018] = {.lex_state = 195}, - [9019] = {.lex_state = 0}, - [9020] = {.lex_state = 0}, - [9021] = {.lex_state = 195}, - [9022] = {.lex_state = 0, .external_lex_state = 3}, - [9023] = {.lex_state = 0}, - [9024] = {.lex_state = 339}, - [9025] = {.lex_state = 195}, - [9026] = {.lex_state = 195}, - [9027] = {.lex_state = 195}, - [9028] = {.lex_state = 0, .external_lex_state = 3}, - [9029] = {.lex_state = 0}, - [9030] = {.lex_state = 195}, - [9031] = {.lex_state = 0, .external_lex_state = 3}, - [9032] = {.lex_state = 0}, - [9033] = {.lex_state = 0, .external_lex_state = 3}, - [9034] = {.lex_state = 0}, - [9035] = {.lex_state = 0, .external_lex_state = 3}, - [9036] = {.lex_state = 0}, - [9037] = {.lex_state = 0, .external_lex_state = 3}, - [9038] = {.lex_state = 0}, - [9039] = {.lex_state = 0, .external_lex_state = 3}, - [9040] = {.lex_state = 195}, - [9041] = {.lex_state = 0, .external_lex_state = 3}, - [9042] = {.lex_state = 0}, - [9043] = {.lex_state = 0, .external_lex_state = 3}, - [9044] = {.lex_state = 0}, - [9045] = {.lex_state = 0, .external_lex_state = 3}, - [9046] = {.lex_state = 0}, - [9047] = {.lex_state = 0, .external_lex_state = 3}, - [9048] = {.lex_state = 0}, - [9049] = {.lex_state = 0, .external_lex_state = 3}, - [9050] = {.lex_state = 339}, - [9051] = {.lex_state = 339}, - [9052] = {.lex_state = 0, .external_lex_state = 2}, - [9053] = {.lex_state = 339}, - [9054] = {.lex_state = 339}, - [9055] = {.lex_state = 0}, - [9056] = {.lex_state = 339}, - [9057] = {.lex_state = 339}, - [9058] = {.lex_state = 0}, - [9059] = {.lex_state = 339}, - [9060] = {.lex_state = 339}, - [9061] = {.lex_state = 0}, - [9062] = {.lex_state = 339}, - [9063] = {.lex_state = 339}, - [9064] = {.lex_state = 0}, - [9065] = {.lex_state = 339}, - [9066] = {.lex_state = 339}, - [9067] = {.lex_state = 339}, - [9068] = {.lex_state = 339}, - [9069] = {.lex_state = 339}, - [9070] = {.lex_state = 339}, - [9071] = {.lex_state = 339}, - [9072] = {.lex_state = 339}, - [9073] = {.lex_state = 339}, - [9074] = {.lex_state = 339}, - [9075] = {.lex_state = 339}, - [9076] = {.lex_state = 0}, - [9077] = {.lex_state = 113}, - [9078] = {.lex_state = 0}, - [9079] = {.lex_state = 173}, - [9080] = {.lex_state = 0}, - [9081] = {.lex_state = 339}, - [9082] = {.lex_state = 339}, - [9083] = {.lex_state = 339}, - [9084] = {.lex_state = 339}, - [9085] = {.lex_state = 339}, - [9086] = {.lex_state = 0}, + [8721] = {.lex_state = 338}, + [8722] = {.lex_state = 338}, + [8723] = {.lex_state = 338}, + [8724] = {.lex_state = 340}, + [8725] = {.lex_state = 272}, + [8726] = {.lex_state = 338}, + [8727] = {.lex_state = 272}, + [8728] = {.lex_state = 267}, + [8729] = {.lex_state = 272}, + [8730] = {.lex_state = 338}, + [8731] = {.lex_state = 272}, + [8732] = {.lex_state = 272}, + [8733] = {.lex_state = 338}, + [8734] = {.lex_state = 272}, + [8735] = {.lex_state = 267}, + [8736] = {.lex_state = 315}, + [8737] = {.lex_state = 335}, + [8738] = {.lex_state = 267}, + [8739] = {.lex_state = 315}, + [8740] = {.lex_state = 337}, + [8741] = {.lex_state = 337}, + [8742] = {.lex_state = 335}, + [8743] = {.lex_state = 315}, + [8744] = {.lex_state = 267}, + [8745] = {.lex_state = 267}, + [8746] = {.lex_state = 337}, + [8747] = {.lex_state = 267}, + [8748] = {.lex_state = 267}, + [8749] = {.lex_state = 337}, + [8750] = {.lex_state = 337}, + [8751] = {.lex_state = 267}, + [8752] = {.lex_state = 315}, + [8753] = {.lex_state = 337}, + [8754] = {.lex_state = 337}, + [8755] = {.lex_state = 267}, + [8756] = {.lex_state = 265}, + [8757] = {.lex_state = 267}, + [8758] = {.lex_state = 315}, + [8759] = {.lex_state = 267}, + [8760] = {.lex_state = 267}, + [8761] = {.lex_state = 267}, + [8762] = {.lex_state = 267}, + [8763] = {.lex_state = 335}, + [8764] = {.lex_state = 267}, + [8765] = {.lex_state = 338}, + [8766] = {.lex_state = 301}, + [8767] = {.lex_state = 301}, + [8768] = {.lex_state = 301}, + [8769] = {.lex_state = 301}, + [8770] = {.lex_state = 315}, + [8771] = {.lex_state = 315}, + [8772] = {.lex_state = 338}, + [8773] = {.lex_state = 338}, + [8774] = {.lex_state = 315}, + [8775] = {.lex_state = 338}, + [8776] = {.lex_state = 301}, + [8777] = {.lex_state = 267}, + [8778] = {.lex_state = 330}, + [8779] = {.lex_state = 267}, + [8780] = {.lex_state = 315}, + [8781] = {.lex_state = 330}, + [8782] = {.lex_state = 301}, + [8783] = {.lex_state = 267}, + [8784] = {.lex_state = 301}, + [8785] = {.lex_state = 301}, + [8786] = {.lex_state = 315}, + [8787] = {.lex_state = 338}, + [8788] = {.lex_state = 338}, + [8789] = {.lex_state = 338}, + [8790] = {.lex_state = 335}, + [8791] = {.lex_state = 272}, + [8792] = {.lex_state = 272}, + [8793] = {.lex_state = 315}, + [8794] = {.lex_state = 267}, + [8795] = {.lex_state = 333}, + [8796] = {.lex_state = 272}, + [8797] = {.lex_state = 272}, + [8798] = {.lex_state = 315}, + [8799] = {.lex_state = 272}, + [8800] = {.lex_state = 267}, + [8801] = {.lex_state = 267}, + [8802] = {.lex_state = 267}, + [8803] = {.lex_state = 267}, + [8804] = {.lex_state = 272}, + [8805] = {.lex_state = 272}, + [8806] = {.lex_state = 267}, + [8807] = {.lex_state = 267}, + [8808] = {.lex_state = 315}, + [8809] = {.lex_state = 315}, + [8810] = {.lex_state = 335}, + [8811] = {.lex_state = 267}, + [8812] = {.lex_state = 267}, + [8813] = {.lex_state = 272}, + [8814] = {.lex_state = 267}, + [8815] = {.lex_state = 267}, + [8816] = {.lex_state = 337}, + [8817] = {.lex_state = 315}, + [8818] = {.lex_state = 315}, + [8819] = {.lex_state = 267}, + [8820] = {.lex_state = 301}, + [8821] = {.lex_state = 298}, + [8822] = {.lex_state = 267}, + [8823] = {.lex_state = 272}, + [8824] = {.lex_state = 298}, + [8825] = {.lex_state = 272}, + [8826] = {.lex_state = 298}, + [8827] = {.lex_state = 298}, + [8828] = {.lex_state = 298}, + [8829] = {.lex_state = 272}, + [8830] = {.lex_state = 298}, + [8831] = {.lex_state = 337}, + [8832] = {.lex_state = 337}, + [8833] = {.lex_state = 337}, + [8834] = {.lex_state = 245}, + [8835] = {.lex_state = 272}, + [8836] = {.lex_state = 272}, + [8837] = {.lex_state = 301}, + [8838] = {.lex_state = 301}, + [8839] = {.lex_state = 337}, + [8840] = {.lex_state = 298}, + [8841] = {.lex_state = 298}, + [8842] = {.lex_state = 336}, + [8843] = {.lex_state = 298}, + [8844] = {.lex_state = 245}, + [8845] = {.lex_state = 298}, + [8846] = {.lex_state = 301}, + [8847] = {.lex_state = 267}, + [8848] = {.lex_state = 298}, + [8849] = {.lex_state = 298}, + [8850] = {.lex_state = 301}, + [8851] = {.lex_state = 301}, + [8852] = {.lex_state = 301}, + [8853] = {.lex_state = 301}, + [8854] = {.lex_state = 272}, + [8855] = {.lex_state = 301}, + [8856] = {.lex_state = 315}, + [8857] = {.lex_state = 265}, + [8858] = {.lex_state = 265}, + [8859] = {.lex_state = 272}, + [8860] = {.lex_state = 265}, + [8861] = {.lex_state = 272}, + [8862] = {.lex_state = 330}, + [8863] = {.lex_state = 298}, + [8864] = {.lex_state = 330}, + [8865] = {.lex_state = 265}, + [8866] = {.lex_state = 265}, + [8867] = {.lex_state = 298}, + [8868] = {.lex_state = 272}, + [8869] = {.lex_state = 265}, + [8870] = {.lex_state = 330}, + [8871] = {.lex_state = 272}, + [8872] = {.lex_state = 330}, + [8873] = {.lex_state = 315}, + [8874] = {.lex_state = 265}, + [8875] = {.lex_state = 272}, + [8876] = {.lex_state = 272}, + [8877] = {.lex_state = 272}, + [8878] = {.lex_state = 265}, + [8879] = {.lex_state = 272}, + [8880] = {.lex_state = 265}, + [8881] = {.lex_state = 301}, + [8882] = {.lex_state = 267}, + [8883] = {.lex_state = 267}, + [8884] = {.lex_state = 267}, + [8885] = {.lex_state = 267}, + [8886] = {.lex_state = 267}, + [8887] = {.lex_state = 267}, + [8888] = {.lex_state = 265}, + [8889] = {.lex_state = 272}, + [8890] = {.lex_state = 265}, + [8891] = {.lex_state = 337}, + [8892] = {.lex_state = 267}, + [8893] = {.lex_state = 267}, + [8894] = {.lex_state = 267}, + [8895] = {.lex_state = 267}, + [8896] = {.lex_state = 265}, + [8897] = {.lex_state = 272}, + [8898] = {.lex_state = 265}, + [8899] = {.lex_state = 265}, + [8900] = {.lex_state = 267}, + [8901] = {.lex_state = 267}, + [8902] = {.lex_state = 267}, + [8903] = {.lex_state = 272}, + [8904] = {.lex_state = 267}, + [8905] = {.lex_state = 333}, + [8906] = {.lex_state = 265}, + [8907] = {.lex_state = 337}, + [8908] = {.lex_state = 267}, + [8909] = {.lex_state = 267}, + [8910] = {.lex_state = 267}, + [8911] = {.lex_state = 301}, + [8912] = {.lex_state = 337}, + [8913] = {.lex_state = 267}, + [8914] = {.lex_state = 267}, + [8915] = {.lex_state = 337}, + [8916] = {.lex_state = 267}, + [8917] = {.lex_state = 438}, + [8918] = {.lex_state = 438}, + [8919] = {.lex_state = 265}, + [8920] = {.lex_state = 267}, + [8921] = {.lex_state = 298}, + [8922] = {.lex_state = 438}, + [8923] = {.lex_state = 301}, + [8924] = {.lex_state = 267}, + [8925] = {.lex_state = 267}, + [8926] = {.lex_state = 337}, + [8927] = {.lex_state = 267}, + [8928] = {.lex_state = 267}, + [8929] = {.lex_state = 265}, + [8930] = {.lex_state = 267}, + [8931] = {.lex_state = 301}, + [8932] = {.lex_state = 267}, + [8933] = {.lex_state = 438}, + [8934] = {.lex_state = 267}, + [8935] = {.lex_state = 267}, + [8936] = {.lex_state = 267}, + [8937] = {.lex_state = 267}, + [8938] = {.lex_state = 267}, + [8939] = {.lex_state = 267}, + [8940] = {.lex_state = 438}, + [8941] = {.lex_state = 267}, + [8942] = {.lex_state = 272}, + [8943] = {.lex_state = 438}, + [8944] = {.lex_state = 267}, + [8945] = {.lex_state = 243}, + [8946] = {.lex_state = 243}, + [8947] = {.lex_state = 265}, + [8948] = {.lex_state = 438}, + [8949] = {.lex_state = 265}, + [8950] = {.lex_state = 267}, + [8951] = {.lex_state = 267}, + [8952] = {.lex_state = 438}, + [8953] = {.lex_state = 267}, + [8954] = {.lex_state = 267}, + [8955] = {.lex_state = 267}, + [8956] = {.lex_state = 298}, + [8957] = {.lex_state = 267}, + [8958] = {.lex_state = 267}, + [8959] = {.lex_state = 333}, + [8960] = {.lex_state = 265}, + [8961] = {.lex_state = 337}, + [8962] = {.lex_state = 265}, + [8963] = {.lex_state = 267}, + [8964] = {.lex_state = 255}, + [8965] = {.lex_state = 333}, + [8966] = {.lex_state = 265}, + [8967] = {.lex_state = 255}, + [8968] = {.lex_state = 255}, + [8969] = {.lex_state = 333}, + [8970] = {.lex_state = 255}, + [8971] = {.lex_state = 341}, + [8972] = {.lex_state = 267}, + [8973] = {.lex_state = 333}, + [8974] = {.lex_state = 265}, + [8975] = {.lex_state = 265}, + [8976] = {.lex_state = 267}, + [8977] = {.lex_state = 267}, + [8978] = {.lex_state = 267}, + [8979] = {.lex_state = 267}, + [8980] = {.lex_state = 267}, + [8981] = {.lex_state = 267}, + [8982] = {.lex_state = 267}, + [8983] = {.lex_state = 333}, + [8984] = {.lex_state = 298}, + [8985] = {.lex_state = 298}, + [8986] = {.lex_state = 267}, + [8987] = {.lex_state = 255}, + [8988] = {.lex_state = 267}, + [8989] = {.lex_state = 267}, + [8990] = {.lex_state = 265}, + [8991] = {.lex_state = 267}, + [8992] = {.lex_state = 267}, + [8993] = {.lex_state = 267}, + [8994] = {.lex_state = 298}, + [8995] = {.lex_state = 267}, + [8996] = {.lex_state = 298}, + [8997] = {.lex_state = 267}, + [8998] = {.lex_state = 438}, + [8999] = {.lex_state = 267}, + [9000] = {.lex_state = 337}, + [9001] = {.lex_state = 267}, + [9002] = {.lex_state = 267}, + [9003] = {.lex_state = 267}, + [9004] = {.lex_state = 265}, + [9005] = {.lex_state = 265}, + [9006] = {.lex_state = 267}, + [9007] = {.lex_state = 267}, + [9008] = {.lex_state = 267}, + [9009] = {.lex_state = 267}, + [9010] = {.lex_state = 267}, + [9011] = {.lex_state = 267}, + [9012] = {.lex_state = 267}, + [9013] = {.lex_state = 267}, + [9014] = {.lex_state = 265}, + [9015] = {.lex_state = 267}, + [9016] = {.lex_state = 267}, + [9017] = {.lex_state = 267}, + [9018] = {.lex_state = 267}, + [9019] = {.lex_state = 267}, + [9020] = {.lex_state = 333}, + [9021] = {.lex_state = 255}, + [9022] = {.lex_state = 333}, + [9023] = {.lex_state = 438}, + [9024] = {.lex_state = 267}, + [9025] = {.lex_state = 298}, + [9026] = {.lex_state = 265}, + [9027] = {.lex_state = 255}, + [9028] = {.lex_state = 265}, + [9029] = {.lex_state = 333}, + [9030] = {.lex_state = 341}, + [9031] = {.lex_state = 255}, + [9032] = {.lex_state = 267}, + [9033] = {.lex_state = 265}, + [9034] = {.lex_state = 438}, + [9035] = {.lex_state = 267}, + [9036] = {.lex_state = 286}, + [9037] = {.lex_state = 265}, + [9038] = {.lex_state = 265}, + [9039] = {.lex_state = 265}, + [9040] = {.lex_state = 265}, + [9041] = {.lex_state = 265}, + [9042] = {.lex_state = 333}, + [9043] = {.lex_state = 265}, + [9044] = {.lex_state = 265}, + [9045] = {.lex_state = 286}, + [9046] = {.lex_state = 333}, + [9047] = {.lex_state = 265}, + [9048] = {.lex_state = 333}, + [9049] = {.lex_state = 333}, + [9050] = {.lex_state = 333}, + [9051] = {.lex_state = 286}, + [9052] = {.lex_state = 265}, + [9053] = {.lex_state = 265}, + [9054] = {.lex_state = 265}, + [9055] = {.lex_state = 265}, + [9056] = {.lex_state = 265}, + [9057] = {.lex_state = 272}, + [9058] = {.lex_state = 265}, + [9059] = {.lex_state = 272}, + [9060] = {.lex_state = 333}, + [9061] = {.lex_state = 336}, + [9062] = {.lex_state = 301}, + [9063] = {.lex_state = 336}, + [9064] = {.lex_state = 333}, + [9065] = {.lex_state = 267}, + [9066] = {.lex_state = 267}, + [9067] = {.lex_state = 267}, + [9068] = {.lex_state = 265}, + [9069] = {.lex_state = 265}, + [9070] = {.lex_state = 0}, + [9071] = {.lex_state = 267}, + [9072] = {.lex_state = 286}, + [9073] = {.lex_state = 265}, + [9074] = {.lex_state = 286}, + [9075] = {.lex_state = 272}, + [9076] = {.lex_state = 333}, + [9077] = {.lex_state = 265}, + [9078] = {.lex_state = 267}, + [9079] = {.lex_state = 265}, + [9080] = {.lex_state = 267}, + [9081] = {.lex_state = 265}, + [9082] = {.lex_state = 267}, + [9083] = {.lex_state = 267}, + [9084] = {.lex_state = 267}, + [9085] = {.lex_state = 265}, + [9086] = {.lex_state = 267}, + [9087] = {.lex_state = 267}, + [9088] = {.lex_state = 265}, + [9089] = {.lex_state = 267}, + [9090] = {.lex_state = 267}, + [9091] = {.lex_state = 265}, + [9092] = {.lex_state = 265}, + [9093] = {.lex_state = 267}, + [9094] = {.lex_state = 333}, + [9095] = {.lex_state = 267}, + [9096] = {.lex_state = 265}, + [9097] = {.lex_state = 265}, + [9098] = {.lex_state = 265}, + [9099] = {.lex_state = 265}, + [9100] = {.lex_state = 265}, + [9101] = {.lex_state = 272}, + [9102] = {.lex_state = 265}, + [9103] = {.lex_state = 0}, + [9104] = {.lex_state = 265}, + [9105] = {.lex_state = 333}, + [9106] = {.lex_state = 267}, + [9107] = {.lex_state = 267}, + [9108] = {.lex_state = 265}, + [9109] = {.lex_state = 267}, + [9110] = {.lex_state = 333}, + [9111] = {.lex_state = 265}, + [9112] = {.lex_state = 267}, + [9113] = {.lex_state = 265}, + [9114] = {.lex_state = 267}, + [9115] = {.lex_state = 333}, + [9116] = {.lex_state = 267}, + [9117] = {.lex_state = 265}, + [9118] = {.lex_state = 333}, + [9119] = {.lex_state = 265}, + [9120] = {.lex_state = 265}, + [9121] = {.lex_state = 267}, + [9122] = {.lex_state = 267}, + [9123] = {.lex_state = 267}, + [9124] = {.lex_state = 336}, + [9125] = {.lex_state = 265}, + [9126] = {.lex_state = 265}, + [9127] = {.lex_state = 265}, + [9128] = {.lex_state = 265}, + [9129] = {.lex_state = 336}, + [9130] = {.lex_state = 265}, + [9131] = {.lex_state = 272}, + [9132] = {.lex_state = 265}, + [9133] = {.lex_state = 286}, + [9134] = {.lex_state = 265}, + [9135] = {.lex_state = 265}, + [9136] = {.lex_state = 265}, + [9137] = {.lex_state = 272}, + [9138] = {.lex_state = 265}, + [9139] = {.lex_state = 272}, + [9140] = {.lex_state = 272}, + [9141] = {.lex_state = 265}, + [9142] = {.lex_state = 333}, + [9143] = {.lex_state = 265}, + [9144] = {.lex_state = 265}, + [9145] = {.lex_state = 267}, + [9146] = {.lex_state = 265}, + [9147] = {.lex_state = 267}, + [9148] = {.lex_state = 267}, + [9149] = {.lex_state = 267}, + [9150] = {.lex_state = 333}, + [9151] = {.lex_state = 243}, + [9152] = {.lex_state = 243}, + [9153] = {.lex_state = 267}, + [9154] = {.lex_state = 267}, + [9155] = {.lex_state = 267}, + [9156] = {.lex_state = 267}, + [9157] = {.lex_state = 438}, + [9158] = {.lex_state = 265}, + [9159] = {.lex_state = 243}, + [9160] = {.lex_state = 267}, + [9161] = {.lex_state = 265}, + [9162] = {.lex_state = 438}, + [9163] = {.lex_state = 333}, + [9164] = {.lex_state = 267}, + [9165] = {.lex_state = 267}, + [9166] = {.lex_state = 265}, + [9167] = {.lex_state = 267}, + [9168] = {.lex_state = 336}, + [9169] = {.lex_state = 267}, + [9170] = {.lex_state = 235}, + [9171] = {.lex_state = 333}, + [9172] = {.lex_state = 333}, + [9173] = {.lex_state = 265}, + [9174] = {.lex_state = 265}, + [9175] = {.lex_state = 265}, + [9176] = {.lex_state = 243}, + [9177] = {.lex_state = 267}, + [9178] = {.lex_state = 265}, + [9179] = {.lex_state = 243}, + [9180] = {.lex_state = 243}, + [9181] = {.lex_state = 333}, + [9182] = {.lex_state = 243}, + [9183] = {.lex_state = 265}, + [9184] = {.lex_state = 267}, + [9185] = {.lex_state = 335}, + [9186] = {.lex_state = 438}, + [9187] = {.lex_state = 438}, + [9188] = {.lex_state = 265}, + [9189] = {.lex_state = 267}, + [9190] = {.lex_state = 267}, + [9191] = {.lex_state = 267}, + [9192] = {.lex_state = 333}, + [9193] = {.lex_state = 243}, + [9194] = {.lex_state = 265}, + [9195] = {.lex_state = 333}, + [9196] = {.lex_state = 243}, + [9197] = {.lex_state = 438}, + [9198] = {.lex_state = 333}, + [9199] = {.lex_state = 243}, + [9200] = {.lex_state = 265}, + [9201] = {.lex_state = 267}, + [9202] = {.lex_state = 333}, + [9203] = {.lex_state = 333}, + [9204] = {.lex_state = 333}, + [9205] = {.lex_state = 438}, + [9206] = {.lex_state = 267}, + [9207] = {.lex_state = 265}, + [9208] = {.lex_state = 267}, + [9209] = {.lex_state = 265}, + [9210] = {.lex_state = 243}, + [9211] = {.lex_state = 243}, + [9212] = {.lex_state = 267}, + [9213] = {.lex_state = 298}, + [9214] = {.lex_state = 298}, + [9215] = {.lex_state = 235}, + [9216] = {.lex_state = 267}, + [9217] = {.lex_state = 298}, + [9218] = {.lex_state = 298}, + [9219] = {.lex_state = 267}, + [9220] = {.lex_state = 265}, + [9221] = {.lex_state = 267}, + [9222] = {.lex_state = 298}, + [9223] = {.lex_state = 267}, + [9224] = {.lex_state = 298}, + [9225] = {.lex_state = 298}, + [9226] = {.lex_state = 298}, + [9227] = {.lex_state = 298}, + [9228] = {.lex_state = 438}, + [9229] = {.lex_state = 267}, + [9230] = {.lex_state = 267}, + [9231] = {.lex_state = 298}, + [9232] = {.lex_state = 298}, + [9233] = {.lex_state = 265}, + [9234] = {.lex_state = 243}, + [9235] = {.lex_state = 438}, + [9236] = {.lex_state = 333}, + [9237] = {.lex_state = 333}, + [9238] = {.lex_state = 267}, + [9239] = {.lex_state = 265}, + [9240] = {.lex_state = 438}, + [9241] = {.lex_state = 267}, + [9242] = {.lex_state = 267}, + [9243] = {.lex_state = 267}, + [9244] = {.lex_state = 267}, + [9245] = {.lex_state = 265}, + [9246] = {.lex_state = 298}, + [9247] = {.lex_state = 243}, + [9248] = {.lex_state = 265}, + [9249] = {.lex_state = 267}, + [9250] = {.lex_state = 267}, + [9251] = {.lex_state = 267}, + [9252] = {.lex_state = 267}, + [9253] = {.lex_state = 267}, + [9254] = {.lex_state = 243}, + [9255] = {.lex_state = 267}, + [9256] = {.lex_state = 265}, + [9257] = {.lex_state = 267}, + [9258] = {.lex_state = 267}, + [9259] = {.lex_state = 267}, + [9260] = {.lex_state = 265}, + [9261] = {.lex_state = 265}, + [9262] = {.lex_state = 243}, + [9263] = {.lex_state = 265}, + [9264] = {.lex_state = 243}, + [9265] = {.lex_state = 267}, + [9266] = {.lex_state = 265}, + [9267] = {.lex_state = 438}, + [9268] = {.lex_state = 267}, + [9269] = {.lex_state = 267}, + [9270] = {.lex_state = 243}, + [9271] = {.lex_state = 243}, + [9272] = {.lex_state = 265}, + [9273] = {.lex_state = 336}, + [9274] = {.lex_state = 281}, + [9275] = {.lex_state = 265}, + [9276] = {.lex_state = 267}, + [9277] = {.lex_state = 265}, + [9278] = {.lex_state = 267}, + [9279] = {.lex_state = 267}, + [9280] = {.lex_state = 265}, + [9281] = {.lex_state = 243}, + [9282] = {.lex_state = 265}, + [9283] = {.lex_state = 265}, + [9284] = {.lex_state = 438}, + [9285] = {.lex_state = 333}, + [9286] = {.lex_state = 267}, + [9287] = {.lex_state = 298}, + [9288] = {.lex_state = 144}, + [9289] = {.lex_state = 0}, + [9290] = {.lex_state = 146}, + [9291] = {.lex_state = 438}, + [9292] = {.lex_state = 146}, + [9293] = {.lex_state = 144}, + [9294] = {.lex_state = 0}, + [9295] = {.lex_state = 267}, + [9296] = {.lex_state = 144}, + [9297] = {.lex_state = 235}, + [9298] = {.lex_state = 267}, + [9299] = {.lex_state = 438}, + [9300] = {.lex_state = 438}, + [9301] = {.lex_state = 438}, + [9302] = {.lex_state = 0}, + [9303] = {.lex_state = 147}, + [9304] = {.lex_state = 147}, + [9305] = {.lex_state = 0}, + [9306] = {.lex_state = 438}, + [9307] = {.lex_state = 438}, + [9308] = {.lex_state = 267}, + [9309] = {.lex_state = 144}, + [9310] = {.lex_state = 0}, + [9311] = {.lex_state = 267}, + [9312] = {.lex_state = 438}, + [9313] = {.lex_state = 438}, + [9314] = {.lex_state = 146}, + [9315] = {.lex_state = 438}, + [9316] = {.lex_state = 144}, + [9317] = {.lex_state = 438}, + [9318] = {.lex_state = 438}, + [9319] = {.lex_state = 267}, + [9320] = {.lex_state = 438}, + [9321] = {.lex_state = 144}, + [9322] = {.lex_state = 438}, + [9323] = {.lex_state = 438}, + [9324] = {.lex_state = 144}, + [9325] = {.lex_state = 267}, + [9326] = {.lex_state = 144}, + [9327] = {.lex_state = 267}, + [9328] = {.lex_state = 0}, + [9329] = {.lex_state = 267}, + [9330] = {.lex_state = 267}, + [9331] = {.lex_state = 267}, + [9332] = {.lex_state = 267}, + [9333] = {.lex_state = 438}, + [9334] = {.lex_state = 267}, + [9335] = {.lex_state = 267}, + [9336] = {.lex_state = 267}, + [9337] = {.lex_state = 144}, + [9338] = {.lex_state = 235}, + [9339] = {.lex_state = 438}, + [9340] = {.lex_state = 267}, + [9341] = {.lex_state = 0}, + [9342] = {.lex_state = 146}, + [9343] = {.lex_state = 267}, + [9344] = {.lex_state = 144}, + [9345] = {.lex_state = 438}, + [9346] = {.lex_state = 0}, + [9347] = {.lex_state = 438}, + [9348] = {.lex_state = 438}, + [9349] = {.lex_state = 438}, + [9350] = {.lex_state = 144}, + [9351] = {.lex_state = 267}, + [9352] = {.lex_state = 438}, + [9353] = {.lex_state = 267}, + [9354] = {.lex_state = 267}, + [9355] = {.lex_state = 438}, + [9356] = {.lex_state = 0}, + [9357] = {.lex_state = 438}, + [9358] = {.lex_state = 146}, + [9359] = {.lex_state = 0}, + [9360] = {.lex_state = 438}, + [9361] = {.lex_state = 267}, + [9362] = {.lex_state = 267}, + [9363] = {.lex_state = 438}, + [9364] = {.lex_state = 267}, + [9365] = {.lex_state = 438}, + [9366] = {.lex_state = 0}, + [9367] = {.lex_state = 0}, + [9368] = {.lex_state = 0}, + [9369] = {.lex_state = 144}, + [9370] = {.lex_state = 0}, + [9371] = {.lex_state = 267}, + [9372] = {.lex_state = 267}, + [9373] = {.lex_state = 267}, + [9374] = {.lex_state = 267}, + [9375] = {.lex_state = 333}, + [9376] = {.lex_state = 438}, + [9377] = {.lex_state = 144}, + [9378] = {.lex_state = 144}, + [9379] = {.lex_state = 438}, + [9380] = {.lex_state = 267}, + [9381] = {.lex_state = 146}, + [9382] = {.lex_state = 144}, + [9383] = {.lex_state = 144}, + [9384] = {.lex_state = 0}, + [9385] = {.lex_state = 438}, + [9386] = {.lex_state = 144}, + [9387] = {.lex_state = 438}, + [9388] = {.lex_state = 438}, + [9389] = {.lex_state = 144}, + [9390] = {.lex_state = 267}, + [9391] = {.lex_state = 146}, + [9392] = {.lex_state = 438}, + [9393] = {.lex_state = 0}, + [9394] = {.lex_state = 0}, + [9395] = {.lex_state = 144}, + [9396] = {.lex_state = 267}, + [9397] = {.lex_state = 0}, + [9398] = {.lex_state = 146}, + [9399] = {.lex_state = 267}, + [9400] = {.lex_state = 438}, + [9401] = {.lex_state = 438}, + [9402] = {.lex_state = 438}, + [9403] = {.lex_state = 267}, + [9404] = {.lex_state = 438}, + [9405] = {.lex_state = 438}, + [9406] = {.lex_state = 267}, + [9407] = {.lex_state = 438}, + [9408] = {.lex_state = 438}, + [9409] = {.lex_state = 438}, + [9410] = {.lex_state = 144}, + [9411] = {.lex_state = 267}, + [9412] = {.lex_state = 438}, + [9413] = {.lex_state = 144}, + [9414] = {.lex_state = 438}, + [9415] = {.lex_state = 438}, + [9416] = {.lex_state = 144}, + [9417] = {.lex_state = 0}, + [9418] = {.lex_state = 267}, + [9419] = {.lex_state = 438}, + [9420] = {.lex_state = 438}, + [9421] = {.lex_state = 438}, + [9422] = {.lex_state = 267}, + [9423] = {.lex_state = 267}, + [9424] = {.lex_state = 267}, + [9425] = {.lex_state = 144}, + [9426] = {.lex_state = 438}, + [9427] = {.lex_state = 438}, + [9428] = {.lex_state = 267}, + [9429] = {.lex_state = 438}, + [9430] = {.lex_state = 438}, + [9431] = {.lex_state = 0}, + [9432] = {.lex_state = 144}, + [9433] = {.lex_state = 267}, + [9434] = {.lex_state = 144}, + [9435] = {.lex_state = 438}, + [9436] = {.lex_state = 144}, + [9437] = {.lex_state = 267}, + [9438] = {.lex_state = 146}, + [9439] = {.lex_state = 0}, + [9440] = {.lex_state = 438}, + [9441] = {.lex_state = 144}, + [9442] = {.lex_state = 144}, + [9443] = {.lex_state = 0}, + [9444] = {.lex_state = 146}, + [9445] = {.lex_state = 267}, + [9446] = {.lex_state = 267}, + [9447] = {.lex_state = 144}, + [9448] = {.lex_state = 144}, + [9449] = {.lex_state = 0}, + [9450] = {.lex_state = 267}, + [9451] = {.lex_state = 267}, + [9452] = {.lex_state = 267}, + [9453] = {.lex_state = 144}, + [9454] = {.lex_state = 147}, + [9455] = {.lex_state = 147}, + [9456] = {.lex_state = 267}, + [9457] = {.lex_state = 267}, + [9458] = {.lex_state = 146}, + [9459] = {.lex_state = 144}, + [9460] = {.lex_state = 267}, + [9461] = {.lex_state = 438}, + [9462] = {.lex_state = 0}, + [9463] = {.lex_state = 267}, + [9464] = {.lex_state = 144}, + [9465] = {.lex_state = 144}, + [9466] = {.lex_state = 438}, + [9467] = {.lex_state = 267}, + [9468] = {.lex_state = 144}, + [9469] = {.lex_state = 267}, + [9470] = {.lex_state = 267}, + [9471] = {.lex_state = 267}, + [9472] = {.lex_state = 438}, + [9473] = {.lex_state = 438}, + [9474] = {.lex_state = 147}, + [9475] = {.lex_state = 0}, + [9476] = {.lex_state = 0}, + [9477] = {.lex_state = 144}, + [9478] = {.lex_state = 0}, + [9479] = {.lex_state = 438}, + [9480] = {.lex_state = 267}, + [9481] = {.lex_state = 438}, + [9482] = {.lex_state = 438}, + [9483] = {.lex_state = 144}, + [9484] = {.lex_state = 144}, + [9485] = {.lex_state = 438}, + [9486] = {.lex_state = 0}, + [9487] = {.lex_state = 438}, + [9488] = {.lex_state = 298}, + [9489] = {.lex_state = 438}, + [9490] = {.lex_state = 144}, + [9491] = {.lex_state = 146}, + [9492] = {.lex_state = 0}, + [9493] = {.lex_state = 438}, + [9494] = {.lex_state = 267}, + [9495] = {.lex_state = 438}, + [9496] = {.lex_state = 267}, + [9497] = {.lex_state = 438}, + [9498] = {.lex_state = 267}, + [9499] = {.lex_state = 267}, + [9500] = {.lex_state = 0}, + [9501] = {.lex_state = 147}, + [9502] = {.lex_state = 146}, + [9503] = {.lex_state = 267}, + [9504] = {.lex_state = 438}, + [9505] = {.lex_state = 144}, + [9506] = {.lex_state = 438}, + [9507] = {.lex_state = 147}, + [9508] = {.lex_state = 0}, + [9509] = {.lex_state = 146}, + [9510] = {.lex_state = 267}, + [9511] = {.lex_state = 146}, + [9512] = {.lex_state = 144}, + [9513] = {.lex_state = 144}, + [9514] = {.lex_state = 144}, + [9515] = {.lex_state = 267}, + [9516] = {.lex_state = 333}, + [9517] = {.lex_state = 0}, + [9518] = {.lex_state = 144}, + [9519] = {.lex_state = 0}, + [9520] = {.lex_state = 0}, + [9521] = {.lex_state = 144}, + [9522] = {.lex_state = 144}, + [9523] = {.lex_state = 267}, + [9524] = {.lex_state = 438}, + [9525] = {.lex_state = 144}, + [9526] = {.lex_state = 438}, + [9527] = {.lex_state = 267}, + [9528] = {.lex_state = 0}, + [9529] = {.lex_state = 0}, + [9530] = {.lex_state = 235}, + [9531] = {.lex_state = 235}, + [9532] = {.lex_state = 267}, + [9533] = {.lex_state = 0}, + [9534] = {.lex_state = 267}, + [9535] = {.lex_state = 235}, + [9536] = {.lex_state = 235}, + [9537] = {.lex_state = 0}, + [9538] = {.lex_state = 0}, + [9539] = {.lex_state = 0}, + [9540] = {.lex_state = 267}, + [9541] = {.lex_state = 0}, + [9542] = {.lex_state = 0}, + [9543] = {.lex_state = 0}, + [9544] = {.lex_state = 0}, + [9545] = {.lex_state = 0}, + [9546] = {.lex_state = 0}, + [9547] = {.lex_state = 0}, + [9548] = {.lex_state = 0}, + [9549] = {.lex_state = 267}, + [9550] = {.lex_state = 0}, + [9551] = {.lex_state = 438}, + [9552] = {.lex_state = 267}, + [9553] = {.lex_state = 0}, + [9554] = {.lex_state = 235}, + [9555] = {.lex_state = 235}, + [9556] = {.lex_state = 267}, + [9557] = {.lex_state = 267}, + [9558] = {.lex_state = 0}, + [9559] = {.lex_state = 235}, + [9560] = {.lex_state = 235}, + [9561] = {.lex_state = 0}, + [9562] = {.lex_state = 235}, + [9563] = {.lex_state = 0}, + [9564] = {.lex_state = 0}, + [9565] = {.lex_state = 0}, + [9566] = {.lex_state = 235}, + [9567] = {.lex_state = 267}, + [9568] = {.lex_state = 0}, + [9569] = {.lex_state = 0}, + [9570] = {.lex_state = 267}, + [9571] = {.lex_state = 235}, + [9572] = {.lex_state = 235}, + [9573] = {.lex_state = 267}, + [9574] = {.lex_state = 0}, + [9575] = {.lex_state = 235}, + [9576] = {.lex_state = 235}, + [9577] = {.lex_state = 0}, + [9578] = {.lex_state = 0}, + [9579] = {.lex_state = 0}, + [9580] = {.lex_state = 0}, + [9581] = {.lex_state = 0}, + [9582] = {.lex_state = 0}, + [9583] = {.lex_state = 267}, + [9584] = {.lex_state = 267}, + [9585] = {.lex_state = 0}, + [9586] = {.lex_state = 0}, + [9587] = {.lex_state = 0}, + [9588] = {.lex_state = 0}, + [9589] = {.lex_state = 235}, + [9590] = {.lex_state = 235}, + [9591] = {.lex_state = 0}, + [9592] = {.lex_state = 0}, + [9593] = {.lex_state = 0}, + [9594] = {.lex_state = 267}, + [9595] = {.lex_state = 0}, + [9596] = {.lex_state = 0}, + [9597] = {.lex_state = 0}, + [9598] = {.lex_state = 0}, + [9599] = {.lex_state = 235}, + [9600] = {.lex_state = 235}, + [9601] = {.lex_state = 0}, + [9602] = {.lex_state = 0}, + [9603] = {.lex_state = 0}, + [9604] = {.lex_state = 0}, + [9605] = {.lex_state = 0}, + [9606] = {.lex_state = 0}, + [9607] = {.lex_state = 0}, + [9608] = {.lex_state = 0}, + [9609] = {.lex_state = 267}, + [9610] = {.lex_state = 267}, + [9611] = {.lex_state = 267}, + [9612] = {.lex_state = 267}, + [9613] = {.lex_state = 267}, + [9614] = {.lex_state = 267}, + [9615] = {.lex_state = 0}, + [9616] = {.lex_state = 0}, + [9617] = {.lex_state = 0}, + [9618] = {.lex_state = 0}, + [9619] = {.lex_state = 0}, + [9620] = {.lex_state = 0}, + [9621] = {.lex_state = 0}, + [9622] = {.lex_state = 0}, + [9623] = {.lex_state = 0}, + [9624] = {.lex_state = 0}, + [9625] = {.lex_state = 267}, + [9626] = {.lex_state = 0}, + [9627] = {.lex_state = 0}, + [9628] = {.lex_state = 0}, + [9629] = {.lex_state = 0}, + [9630] = {.lex_state = 0}, + [9631] = {.lex_state = 267}, + [9632] = {.lex_state = 267}, + [9633] = {.lex_state = 0}, + [9634] = {.lex_state = 0}, + [9635] = {.lex_state = 0}, + [9636] = {.lex_state = 0}, + [9637] = {.lex_state = 0}, + [9638] = {.lex_state = 267}, + [9639] = {.lex_state = 0}, + [9640] = {.lex_state = 0}, + [9641] = {.lex_state = 0}, + [9642] = {.lex_state = 0}, + [9643] = {.lex_state = 267}, + [9644] = {.lex_state = 0}, + [9645] = {.lex_state = 0}, + [9646] = {.lex_state = 0}, + [9647] = {.lex_state = 267}, + [9648] = {.lex_state = 267}, + [9649] = {.lex_state = 0}, + [9650] = {.lex_state = 0}, + [9651] = {.lex_state = 0}, + [9652] = {.lex_state = 0}, + [9653] = {.lex_state = 235}, + [9654] = {.lex_state = 0}, + [9655] = {.lex_state = 0}, + [9656] = {.lex_state = 0}, + [9657] = {.lex_state = 149}, + [9658] = {.lex_state = 0}, + [9659] = {.lex_state = 267}, + [9660] = {.lex_state = 267}, + [9661] = {.lex_state = 0}, + [9662] = {.lex_state = 0}, + [9663] = {.lex_state = 0}, + [9664] = {.lex_state = 0}, + [9665] = {.lex_state = 0}, + [9666] = {.lex_state = 0}, + [9667] = {.lex_state = 0}, + [9668] = {.lex_state = 267}, + [9669] = {.lex_state = 0}, + [9670] = {.lex_state = 267}, + [9671] = {.lex_state = 0}, + [9672] = {.lex_state = 0}, + [9673] = {.lex_state = 0}, + [9674] = {.lex_state = 267}, + [9675] = {.lex_state = 267}, + [9676] = {.lex_state = 267}, + [9677] = {.lex_state = 146}, + [9678] = {.lex_state = 235}, + [9679] = {.lex_state = 146}, + [9680] = {.lex_state = 0}, + [9681] = {.lex_state = 0}, + [9682] = {.lex_state = 0}, + [9683] = {.lex_state = 267}, + [9684] = {.lex_state = 267}, + [9685] = {.lex_state = 0}, + [9686] = {.lex_state = 0}, + [9687] = {.lex_state = 0}, + [9688] = {.lex_state = 267}, + [9689] = {.lex_state = 267}, + [9690] = {.lex_state = 267}, + [9691] = {.lex_state = 267}, + [9692] = {.lex_state = 0}, + [9693] = {.lex_state = 267}, + [9694] = {.lex_state = 267}, + [9695] = {.lex_state = 0}, + [9696] = {.lex_state = 267}, + [9697] = {.lex_state = 267}, + [9698] = {.lex_state = 267}, + [9699] = {.lex_state = 0}, + [9700] = {.lex_state = 267}, + [9701] = {.lex_state = 267}, + [9702] = {.lex_state = 267}, + [9703] = {.lex_state = 267}, + [9704] = {.lex_state = 0}, + [9705] = {.lex_state = 0}, + [9706] = {.lex_state = 0}, + [9707] = {.lex_state = 0}, + [9708] = {.lex_state = 341}, + [9709] = {.lex_state = 438}, + [9710] = {.lex_state = 0}, + [9711] = {.lex_state = 149}, + [9712] = {.lex_state = 267}, + [9713] = {.lex_state = 298}, + [9714] = {.lex_state = 0}, + [9715] = {.lex_state = 0}, + [9716] = {.lex_state = 0}, + [9717] = {.lex_state = 0}, + [9718] = {.lex_state = 0}, + [9719] = {.lex_state = 0}, + [9720] = {.lex_state = 235}, + [9721] = {.lex_state = 235}, + [9722] = {.lex_state = 267}, + [9723] = {.lex_state = 0}, + [9724] = {.lex_state = 0}, + [9725] = {.lex_state = 267}, + [9726] = {.lex_state = 235}, + [9727] = {.lex_state = 235}, + [9728] = {.lex_state = 0}, + [9729] = {.lex_state = 0}, + [9730] = {.lex_state = 0}, + [9731] = {.lex_state = 0}, + [9732] = {.lex_state = 0}, + [9733] = {.lex_state = 235}, + [9734] = {.lex_state = 0}, + [9735] = {.lex_state = 267}, + [9736] = {.lex_state = 0}, + [9737] = {.lex_state = 267}, + [9738] = {.lex_state = 0}, + [9739] = {.lex_state = 341}, + [9740] = {.lex_state = 0}, + [9741] = {.lex_state = 0}, + [9742] = {.lex_state = 0}, + [9743] = {.lex_state = 235}, + [9744] = {.lex_state = 235}, + [9745] = {.lex_state = 235}, + [9746] = {.lex_state = 235}, + [9747] = {.lex_state = 235}, + [9748] = {.lex_state = 0}, + [9749] = {.lex_state = 0}, + [9750] = {.lex_state = 235}, + [9751] = {.lex_state = 235}, + [9752] = {.lex_state = 0}, + [9753] = {.lex_state = 0}, + [9754] = {.lex_state = 0}, + [9755] = {.lex_state = 0}, + [9756] = {.lex_state = 0}, + [9757] = {.lex_state = 267}, + [9758] = {.lex_state = 267}, + [9759] = {.lex_state = 0}, + [9760] = {.lex_state = 0}, + [9761] = {.lex_state = 0}, + [9762] = {.lex_state = 0}, + [9763] = {.lex_state = 0}, + [9764] = {.lex_state = 267}, + [9765] = {.lex_state = 0}, + [9766] = {.lex_state = 267}, + [9767] = {.lex_state = 267}, + [9768] = {.lex_state = 0}, + [9769] = {.lex_state = 0}, + [9770] = {.lex_state = 0}, + [9771] = {.lex_state = 0}, + [9772] = {.lex_state = 0}, + [9773] = {.lex_state = 0}, + [9774] = {.lex_state = 0}, + [9775] = {.lex_state = 267}, + [9776] = {.lex_state = 267}, + [9777] = {.lex_state = 267}, + [9778] = {.lex_state = 0}, + [9779] = {.lex_state = 0}, + [9780] = {.lex_state = 0}, + [9781] = {.lex_state = 0}, + [9782] = {.lex_state = 0}, + [9783] = {.lex_state = 0}, + [9784] = {.lex_state = 267}, + [9785] = {.lex_state = 0}, + [9786] = {.lex_state = 267}, + [9787] = {.lex_state = 0}, + [9788] = {.lex_state = 149}, + [9789] = {.lex_state = 0}, + [9790] = {.lex_state = 267}, + [9791] = {.lex_state = 235}, + [9792] = {.lex_state = 235}, + [9793] = {.lex_state = 267}, + [9794] = {.lex_state = 267}, + [9795] = {.lex_state = 0}, + [9796] = {.lex_state = 0}, + [9797] = {.lex_state = 0}, + [9798] = {.lex_state = 0}, + [9799] = {.lex_state = 267}, + [9800] = {.lex_state = 267}, + [9801] = {.lex_state = 267}, + [9802] = {.lex_state = 0}, + [9803] = {.lex_state = 267}, + [9804] = {.lex_state = 146}, + [9805] = {.lex_state = 0}, + [9806] = {.lex_state = 0}, + [9807] = {.lex_state = 0}, + [9808] = {.lex_state = 235}, + [9809] = {.lex_state = 235}, + [9810] = {.lex_state = 0}, + [9811] = {.lex_state = 267}, + [9812] = {.lex_state = 267}, + [9813] = {.lex_state = 267}, + [9814] = {.lex_state = 0}, + [9815] = {.lex_state = 267}, + [9816] = {.lex_state = 0}, + [9817] = {.lex_state = 0}, + [9818] = {.lex_state = 0}, + [9819] = {.lex_state = 235}, + [9820] = {.lex_state = 235}, + [9821] = {.lex_state = 0}, + [9822] = {.lex_state = 0}, + [9823] = {.lex_state = 267}, + [9824] = {.lex_state = 0}, + [9825] = {.lex_state = 0}, + [9826] = {.lex_state = 0}, + [9827] = {.lex_state = 0}, + [9828] = {.lex_state = 0}, + [9829] = {.lex_state = 0}, + [9830] = {.lex_state = 267}, + [9831] = {.lex_state = 0}, + [9832] = {.lex_state = 0}, + [9833] = {.lex_state = 0}, + [9834] = {.lex_state = 0}, + [9835] = {.lex_state = 0}, + [9836] = {.lex_state = 0}, + [9837] = {.lex_state = 0}, + [9838] = {.lex_state = 267}, + [9839] = {.lex_state = 0}, + [9840] = {.lex_state = 146}, + [9841] = {.lex_state = 267}, + [9842] = {.lex_state = 0}, + [9843] = {.lex_state = 235}, + [9844] = {.lex_state = 0}, + [9845] = {.lex_state = 235}, + [9846] = {.lex_state = 0}, + [9847] = {.lex_state = 267}, + [9848] = {.lex_state = 0}, + [9849] = {.lex_state = 0}, + [9850] = {.lex_state = 0}, + [9851] = {.lex_state = 267}, + [9852] = {.lex_state = 0}, + [9853] = {.lex_state = 267}, + [9854] = {.lex_state = 235}, + [9855] = {.lex_state = 235}, + [9856] = {.lex_state = 0}, + [9857] = {.lex_state = 0}, + [9858] = {.lex_state = 0}, + [9859] = {.lex_state = 0}, + [9860] = {.lex_state = 0}, + [9861] = {.lex_state = 0}, + [9862] = {.lex_state = 146}, + [9863] = {.lex_state = 267}, + [9864] = {.lex_state = 0}, + [9865] = {.lex_state = 235}, + [9866] = {.lex_state = 267}, + [9867] = {.lex_state = 235}, + [9868] = {.lex_state = 267}, + [9869] = {.lex_state = 235}, + [9870] = {.lex_state = 0}, + [9871] = {.lex_state = 0}, + [9872] = {.lex_state = 0}, + [9873] = {.lex_state = 267}, + [9874] = {.lex_state = 0}, + [9875] = {.lex_state = 267}, + [9876] = {.lex_state = 267}, + [9877] = {.lex_state = 0}, + [9878] = {.lex_state = 0}, + [9879] = {.lex_state = 0}, + [9880] = {.lex_state = 0}, + [9881] = {.lex_state = 0}, + [9882] = {.lex_state = 0}, + [9883] = {.lex_state = 0}, + [9884] = {.lex_state = 0}, + [9885] = {.lex_state = 146}, + [9886] = {.lex_state = 0}, + [9887] = {.lex_state = 0}, + [9888] = {.lex_state = 235}, + [9889] = {.lex_state = 267}, + [9890] = {.lex_state = 0}, + [9891] = {.lex_state = 341}, + [9892] = {.lex_state = 0}, + [9893] = {.lex_state = 267}, + [9894] = {.lex_state = 0}, + [9895] = {.lex_state = 267}, + [9896] = {.lex_state = 267}, + [9897] = {.lex_state = 0}, + [9898] = {.lex_state = 0}, + [9899] = {.lex_state = 0}, + [9900] = {.lex_state = 267}, + [9901] = {.lex_state = 267}, + [9902] = {.lex_state = 146}, + [9903] = {.lex_state = 267}, + [9904] = {.lex_state = 267}, + [9905] = {.lex_state = 0}, + [9906] = {.lex_state = 0}, + [9907] = {.lex_state = 0}, + [9908] = {.lex_state = 0}, + [9909] = {.lex_state = 267}, + [9910] = {.lex_state = 0}, + [9911] = {.lex_state = 267}, + [9912] = {.lex_state = 267}, + [9913] = {.lex_state = 267}, + [9914] = {.lex_state = 267}, + [9915] = {.lex_state = 267}, + [9916] = {.lex_state = 0}, + [9917] = {.lex_state = 0}, + [9918] = {.lex_state = 0}, + [9919] = {.lex_state = 267}, + [9920] = {.lex_state = 146}, + [9921] = {.lex_state = 0}, + [9922] = {.lex_state = 0}, + [9923] = {.lex_state = 0}, + [9924] = {.lex_state = 0}, + [9925] = {.lex_state = 267}, + [9926] = {.lex_state = 0}, + [9927] = {.lex_state = 0}, + [9928] = {.lex_state = 146}, + [9929] = {.lex_state = 0}, + [9930] = {.lex_state = 267}, + [9931] = {.lex_state = 235}, + [9932] = {.lex_state = 235}, + [9933] = {.lex_state = 0}, + [9934] = {.lex_state = 0}, + [9935] = {.lex_state = 0}, + [9936] = {.lex_state = 146}, + [9937] = {.lex_state = 0}, + [9938] = {.lex_state = 267}, + [9939] = {.lex_state = 0}, + [9940] = {.lex_state = 146}, + [9941] = {.lex_state = 0}, + [9942] = {.lex_state = 0}, + [9943] = {.lex_state = 146}, + [9944] = {.lex_state = 146}, + [9945] = {.lex_state = 146}, + [9946] = {.lex_state = 0}, + [9947] = {.lex_state = 0}, + [9948] = {.lex_state = 0}, + [9949] = {.lex_state = 0}, + [9950] = {.lex_state = 0}, + [9951] = {.lex_state = 0}, + [9952] = {.lex_state = 149}, + [9953] = {.lex_state = 0}, + [9954] = {.lex_state = 0}, + [9955] = {.lex_state = 0}, + [9956] = {.lex_state = 267}, + [9957] = {.lex_state = 0}, + [9958] = {.lex_state = 0}, + [9959] = {.lex_state = 235}, + [9960] = {.lex_state = 235}, + [9961] = {.lex_state = 0}, + [9962] = {.lex_state = 267}, + [9963] = {.lex_state = 267}, + [9964] = {.lex_state = 0}, + [9965] = {.lex_state = 0}, + [9966] = {.lex_state = 0}, + [9967] = {.lex_state = 267}, + [9968] = {.lex_state = 267}, + [9969] = {.lex_state = 0}, + [9970] = {.lex_state = 0}, + [9971] = {.lex_state = 0}, + [9972] = {.lex_state = 0}, + [9973] = {.lex_state = 0}, + [9974] = {.lex_state = 0}, + [9975] = {.lex_state = 0}, + [9976] = {.lex_state = 0}, + [9977] = {.lex_state = 267}, + [9978] = {.lex_state = 0}, + [9979] = {.lex_state = 0}, + [9980] = {.lex_state = 0}, + [9981] = {.lex_state = 0}, + [9982] = {.lex_state = 0}, + [9983] = {.lex_state = 0}, + [9984] = {.lex_state = 0}, + [9985] = {.lex_state = 0}, + [9986] = {.lex_state = 267}, + [9987] = {.lex_state = 267}, + [9988] = {.lex_state = 0}, + [9989] = {.lex_state = 0}, + [9990] = {.lex_state = 0}, + [9991] = {.lex_state = 0}, + [9992] = {.lex_state = 267}, + [9993] = {.lex_state = 267}, + [9994] = {.lex_state = 0}, + [9995] = {.lex_state = 0}, + [9996] = {.lex_state = 0}, + [9997] = {.lex_state = 0}, + [9998] = {.lex_state = 267}, + [9999] = {.lex_state = 0}, + [10000] = {.lex_state = 0}, + [10001] = {.lex_state = 267}, + [10002] = {.lex_state = 267}, + [10003] = {.lex_state = 0}, + [10004] = {.lex_state = 0}, + [10005] = {.lex_state = 0}, + [10006] = {.lex_state = 0}, + [10007] = {.lex_state = 0}, + [10008] = {.lex_state = 0}, + [10009] = {.lex_state = 0}, + [10010] = {.lex_state = 0}, + [10011] = {.lex_state = 0}, + [10012] = {.lex_state = 0}, + [10013] = {.lex_state = 267}, + [10014] = {.lex_state = 267}, + [10015] = {.lex_state = 267}, + [10016] = {.lex_state = 267}, + [10017] = {.lex_state = 0}, + [10018] = {.lex_state = 0}, + [10019] = {.lex_state = 267}, + [10020] = {.lex_state = 267}, + [10021] = {.lex_state = 267}, + [10022] = {.lex_state = 267}, + [10023] = {.lex_state = 267}, + [10024] = {.lex_state = 267}, + [10025] = {.lex_state = 267}, + [10026] = {.lex_state = 0}, + [10027] = {.lex_state = 0}, + [10028] = {.lex_state = 0}, + [10029] = {.lex_state = 267}, + [10030] = {.lex_state = 0}, + [10031] = {.lex_state = 0}, + [10032] = {.lex_state = 0}, + [10033] = {.lex_state = 0}, + [10034] = {.lex_state = 0}, + [10035] = {.lex_state = 235}, + [10036] = {.lex_state = 235}, + [10037] = {.lex_state = 0}, + [10038] = {.lex_state = 0}, + [10039] = {.lex_state = 0}, + [10040] = {.lex_state = 267}, + [10041] = {.lex_state = 0}, + [10042] = {.lex_state = 235}, + [10043] = {.lex_state = 235}, + [10044] = {.lex_state = 0}, + [10045] = {.lex_state = 0}, + [10046] = {.lex_state = 0}, + [10047] = {.lex_state = 0}, + [10048] = {.lex_state = 0}, + [10049] = {.lex_state = 267}, + [10050] = {.lex_state = 0}, + [10051] = {.lex_state = 0}, + [10052] = {.lex_state = 267}, + [10053] = {.lex_state = 0}, + [10054] = {.lex_state = 267}, + [10055] = {.lex_state = 438}, + [10056] = {.lex_state = 267}, + [10057] = {.lex_state = 0}, + [10058] = {.lex_state = 0}, + [10059] = {.lex_state = 267}, + [10060] = {.lex_state = 226}, + [10061] = {.lex_state = 0}, + [10062] = {.lex_state = 267}, + [10063] = {.lex_state = 0}, + [10064] = {.lex_state = 438, .external_lex_state = 2}, + [10065] = {.lex_state = 235}, + [10066] = {.lex_state = 0}, + [10067] = {.lex_state = 0}, + [10068] = {.lex_state = 0}, + [10069] = {.lex_state = 0}, + [10070] = {.lex_state = 0}, + [10071] = {.lex_state = 0}, + [10072] = {.lex_state = 0}, + [10073] = {.lex_state = 0}, + [10074] = {.lex_state = 438}, + [10075] = {.lex_state = 0}, + [10076] = {.lex_state = 0}, + [10077] = {.lex_state = 438}, + [10078] = {.lex_state = 0}, + [10079] = {.lex_state = 0}, + [10080] = {.lex_state = 0}, + [10081] = {.lex_state = 0}, + [10082] = {.lex_state = 0}, + [10083] = {.lex_state = 0}, + [10084] = {.lex_state = 0}, + [10085] = {.lex_state = 0}, + [10086] = {.lex_state = 0}, + [10087] = {.lex_state = 438}, + [10088] = {.lex_state = 438}, + [10089] = {.lex_state = 148}, + [10090] = {.lex_state = 0}, + [10091] = {.lex_state = 0}, + [10092] = {.lex_state = 0}, + [10093] = {.lex_state = 0}, + [10094] = {.lex_state = 438}, + [10095] = {.lex_state = 0}, + [10096] = {.lex_state = 438}, + [10097] = {.lex_state = 438}, + [10098] = {.lex_state = 0}, + [10099] = {.lex_state = 438}, + [10100] = {.lex_state = 0}, + [10101] = {.lex_state = 0}, + [10102] = {.lex_state = 0}, + [10103] = {.lex_state = 0}, + [10104] = {.lex_state = 438}, + [10105] = {.lex_state = 438}, + [10106] = {.lex_state = 0}, + [10107] = {.lex_state = 438}, + [10108] = {.lex_state = 0}, + [10109] = {.lex_state = 0}, + [10110] = {.lex_state = 0}, + [10111] = {.lex_state = 148}, + [10112] = {.lex_state = 0}, + [10113] = {.lex_state = 0}, + [10114] = {.lex_state = 438}, + [10115] = {.lex_state = 235}, + [10116] = {.lex_state = 438}, + [10117] = {.lex_state = 0}, + [10118] = {.lex_state = 0}, + [10119] = {.lex_state = 235}, + [10120] = {.lex_state = 0}, + [10121] = {.lex_state = 0}, + [10122] = {.lex_state = 0}, + [10123] = {.lex_state = 438}, + [10124] = {.lex_state = 0}, + [10125] = {.lex_state = 0}, + [10126] = {.lex_state = 0}, + [10127] = {.lex_state = 438}, + [10128] = {.lex_state = 0}, + [10129] = {.lex_state = 148}, + [10130] = {.lex_state = 438}, + [10131] = {.lex_state = 438}, + [10132] = {.lex_state = 438}, + [10133] = {.lex_state = 235}, + [10134] = {.lex_state = 0}, + [10135] = {.lex_state = 0}, + [10136] = {.lex_state = 438}, + [10137] = {.lex_state = 438}, + [10138] = {.lex_state = 0}, + [10139] = {.lex_state = 0}, + [10140] = {.lex_state = 0}, + [10141] = {.lex_state = 0}, + [10142] = {.lex_state = 0}, + [10143] = {.lex_state = 438, .external_lex_state = 2}, + [10144] = {.lex_state = 0}, + [10145] = {.lex_state = 438}, + [10146] = {.lex_state = 0}, + [10147] = {.lex_state = 438}, + [10148] = {.lex_state = 0}, + [10149] = {.lex_state = 438}, + [10150] = {.lex_state = 0}, + [10151] = {.lex_state = 0}, + [10152] = {.lex_state = 0}, + [10153] = {.lex_state = 0}, + [10154] = {.lex_state = 0}, + [10155] = {.lex_state = 148}, + [10156] = {.lex_state = 0}, + [10157] = {.lex_state = 0}, + [10158] = {.lex_state = 0}, + [10159] = {.lex_state = 0}, + [10160] = {.lex_state = 438}, + [10161] = {.lex_state = 0}, + [10162] = {.lex_state = 0}, + [10163] = {.lex_state = 0}, + [10164] = {.lex_state = 0}, + [10165] = {.lex_state = 0}, + [10166] = {.lex_state = 438}, + [10167] = {.lex_state = 0}, + [10168] = {.lex_state = 0}, + [10169] = {.lex_state = 0}, + [10170] = {.lex_state = 438}, + [10171] = {.lex_state = 0}, + [10172] = {.lex_state = 438}, + [10173] = {.lex_state = 0}, + [10174] = {.lex_state = 0}, + [10175] = {.lex_state = 0}, + [10176] = {.lex_state = 0}, + [10177] = {.lex_state = 0}, + [10178] = {.lex_state = 438}, + [10179] = {.lex_state = 438}, + [10180] = {.lex_state = 0}, + [10181] = {.lex_state = 0}, + [10182] = {.lex_state = 0}, + [10183] = {.lex_state = 0}, + [10184] = {.lex_state = 438}, + [10185] = {.lex_state = 0}, + [10186] = {.lex_state = 0}, + [10187] = {.lex_state = 438}, + [10188] = {.lex_state = 0}, + [10189] = {.lex_state = 438}, + [10190] = {.lex_state = 148}, + [10191] = {.lex_state = 438}, + [10192] = {.lex_state = 0}, + [10193] = {.lex_state = 0}, + [10194] = {.lex_state = 148}, + [10195] = {.lex_state = 0}, + [10196] = {.lex_state = 0}, + [10197] = {.lex_state = 0}, + [10198] = {.lex_state = 438}, + [10199] = {.lex_state = 0}, + [10200] = {.lex_state = 0}, + [10201] = {.lex_state = 438}, + [10202] = {.lex_state = 438}, + [10203] = {.lex_state = 0}, + [10204] = {.lex_state = 438}, + [10205] = {.lex_state = 0}, + [10206] = {.lex_state = 0}, + [10207] = {.lex_state = 148}, + [10208] = {.lex_state = 0}, + [10209] = {.lex_state = 0}, + [10210] = {.lex_state = 0}, + [10211] = {.lex_state = 0}, + [10212] = {.lex_state = 0}, + [10213] = {.lex_state = 0}, + [10214] = {.lex_state = 0}, + [10215] = {.lex_state = 0}, + [10216] = {.lex_state = 0}, + [10217] = {.lex_state = 438}, + [10218] = {.lex_state = 0}, + [10219] = {.lex_state = 438}, + [10220] = {.lex_state = 0}, + [10221] = {.lex_state = 0}, + [10222] = {.lex_state = 438}, + [10223] = {.lex_state = 0}, + [10224] = {.lex_state = 0}, + [10225] = {.lex_state = 148}, + [10226] = {.lex_state = 0}, + [10227] = {.lex_state = 0}, + [10228] = {.lex_state = 0}, + [10229] = {.lex_state = 148}, + [10230] = {.lex_state = 438}, + [10231] = {.lex_state = 0}, + [10232] = {.lex_state = 438}, + [10233] = {.lex_state = 0}, + [10234] = {.lex_state = 0}, + [10235] = {.lex_state = 438}, + [10236] = {.lex_state = 0}, + [10237] = {.lex_state = 438}, + [10238] = {.lex_state = 438}, + [10239] = {.lex_state = 438}, + [10240] = {.lex_state = 0}, + [10241] = {.lex_state = 0}, + [10242] = {.lex_state = 438}, + [10243] = {.lex_state = 0}, + [10244] = {.lex_state = 0}, + [10245] = {.lex_state = 438}, + [10246] = {.lex_state = 0}, + [10247] = {.lex_state = 0}, + [10248] = {.lex_state = 0}, + [10249] = {.lex_state = 438}, + [10250] = {.lex_state = 0}, + [10251] = {.lex_state = 0}, + [10252] = {.lex_state = 438}, + [10253] = {.lex_state = 0}, + [10254] = {.lex_state = 0}, + [10255] = {.lex_state = 235}, + [10256] = {.lex_state = 438}, + [10257] = {.lex_state = 0}, + [10258] = {.lex_state = 267}, + [10259] = {.lex_state = 438}, + [10260] = {.lex_state = 0}, + [10261] = {.lex_state = 438}, + [10262] = {.lex_state = 438}, + [10263] = {.lex_state = 438}, + [10264] = {.lex_state = 438}, + [10265] = {.lex_state = 438}, + [10266] = {.lex_state = 235}, + [10267] = {.lex_state = 438}, + [10268] = {.lex_state = 0}, + [10269] = {.lex_state = 148}, + [10270] = {.lex_state = 0}, + [10271] = {.lex_state = 0}, + [10272] = {.lex_state = 0}, + [10273] = {.lex_state = 148}, + [10274] = {.lex_state = 438}, + [10275] = {.lex_state = 438}, + [10276] = {.lex_state = 0}, + [10277] = {.lex_state = 438}, + [10278] = {.lex_state = 0}, + [10279] = {.lex_state = 0}, + [10280] = {.lex_state = 0}, + [10281] = {.lex_state = 0}, + [10282] = {.lex_state = 0}, + [10283] = {.lex_state = 0}, + [10284] = {.lex_state = 438}, + [10285] = {.lex_state = 0}, + [10286] = {.lex_state = 0}, + [10287] = {.lex_state = 0}, + [10288] = {.lex_state = 0}, + [10289] = {.lex_state = 0}, + [10290] = {.lex_state = 438}, + [10291] = {.lex_state = 438}, + [10292] = {.lex_state = 438}, + [10293] = {.lex_state = 0}, + [10294] = {.lex_state = 0}, + [10295] = {.lex_state = 0}, + [10296] = {.lex_state = 0}, + [10297] = {.lex_state = 0}, + [10298] = {.lex_state = 438}, + [10299] = {.lex_state = 0}, + [10300] = {.lex_state = 0}, + [10301] = {.lex_state = 0}, + [10302] = {.lex_state = 0}, + [10303] = {.lex_state = 0}, + [10304] = {.lex_state = 0}, + [10305] = {.lex_state = 0}, + [10306] = {.lex_state = 0}, + [10307] = {.lex_state = 0}, + [10308] = {.lex_state = 0}, + [10309] = {.lex_state = 0}, + [10310] = {.lex_state = 0}, + [10311] = {.lex_state = 0}, + [10312] = {.lex_state = 0}, + [10313] = {.lex_state = 0}, + [10314] = {.lex_state = 0}, + [10315] = {.lex_state = 0}, + [10316] = {.lex_state = 0}, + [10317] = {.lex_state = 0}, + [10318] = {.lex_state = 438}, + [10319] = {.lex_state = 438}, + [10320] = {.lex_state = 438}, + [10321] = {.lex_state = 0}, + [10322] = {.lex_state = 0}, + [10323] = {.lex_state = 0}, + [10324] = {.lex_state = 0}, + [10325] = {.lex_state = 0}, + [10326] = {.lex_state = 267}, + [10327] = {.lex_state = 0}, + [10328] = {.lex_state = 0}, + [10329] = {.lex_state = 0}, + [10330] = {.lex_state = 0}, + [10331] = {.lex_state = 0}, + [10332] = {.lex_state = 267}, + [10333] = {.lex_state = 0}, + [10334] = {.lex_state = 438}, + [10335] = {.lex_state = 0}, + [10336] = {.lex_state = 438}, + [10337] = {.lex_state = 0}, + [10338] = {.lex_state = 0}, + [10339] = {.lex_state = 438}, + [10340] = {.lex_state = 0}, + [10341] = {.lex_state = 438}, + [10342] = {.lex_state = 0}, + [10343] = {.lex_state = 438}, + [10344] = {.lex_state = 0}, + [10345] = {.lex_state = 438}, + [10346] = {.lex_state = 0}, + [10347] = {.lex_state = 0}, + [10348] = {.lex_state = 0}, + [10349] = {.lex_state = 267}, + [10350] = {.lex_state = 0}, + [10351] = {.lex_state = 0}, + [10352] = {.lex_state = 0}, + [10353] = {.lex_state = 0}, + [10354] = {.lex_state = 0}, + [10355] = {.lex_state = 0}, + [10356] = {.lex_state = 0}, + [10357] = {.lex_state = 0}, + [10358] = {.lex_state = 438}, + [10359] = {.lex_state = 0}, + [10360] = {.lex_state = 148}, + [10361] = {.lex_state = 438}, + [10362] = {.lex_state = 0}, + [10363] = {.lex_state = 0}, + [10364] = {.lex_state = 438}, + [10365] = {.lex_state = 0}, + [10366] = {.lex_state = 0}, + [10367] = {.lex_state = 0}, + [10368] = {.lex_state = 0}, + [10369] = {.lex_state = 0}, + [10370] = {.lex_state = 0}, + [10371] = {.lex_state = 0}, + [10372] = {.lex_state = 438}, + [10373] = {.lex_state = 0}, + [10374] = {.lex_state = 0}, + [10375] = {.lex_state = 0}, + [10376] = {.lex_state = 0}, + [10377] = {.lex_state = 148}, + [10378] = {.lex_state = 0}, + [10379] = {.lex_state = 148}, + [10380] = {.lex_state = 0}, + [10381] = {.lex_state = 0}, + [10382] = {.lex_state = 0}, + [10383] = {.lex_state = 438}, + [10384] = {.lex_state = 0}, + [10385] = {.lex_state = 438}, + [10386] = {.lex_state = 0}, + [10387] = {.lex_state = 148}, + [10388] = {.lex_state = 438}, + [10389] = {.lex_state = 148}, + [10390] = {.lex_state = 0}, + [10391] = {.lex_state = 438}, + [10392] = {.lex_state = 438, .external_lex_state = 2}, + [10393] = {.lex_state = 0}, + [10394] = {.lex_state = 0}, + [10395] = {.lex_state = 0}, + [10396] = {.lex_state = 0}, + [10397] = {.lex_state = 0}, + [10398] = {.lex_state = 0}, + [10399] = {.lex_state = 438}, + [10400] = {.lex_state = 0}, + [10401] = {.lex_state = 0}, + [10402] = {.lex_state = 0}, + [10403] = {.lex_state = 0}, + [10404] = {.lex_state = 438}, + [10405] = {.lex_state = 0}, + [10406] = {.lex_state = 0}, + [10407] = {.lex_state = 267}, + [10408] = {.lex_state = 0}, + [10409] = {.lex_state = 0}, + [10410] = {.lex_state = 0}, + [10411] = {.lex_state = 0}, + [10412] = {.lex_state = 0}, + [10413] = {.lex_state = 0}, + [10414] = {.lex_state = 0}, + [10415] = {.lex_state = 438}, + [10416] = {.lex_state = 0}, + [10417] = {.lex_state = 438}, + [10418] = {.lex_state = 438}, + [10419] = {.lex_state = 267}, + [10420] = {.lex_state = 0}, + [10421] = {.lex_state = 0}, + [10422] = {.lex_state = 0}, + [10423] = {.lex_state = 0}, + [10424] = {.lex_state = 0}, + [10425] = {.lex_state = 0}, + [10426] = {.lex_state = 0}, + [10427] = {.lex_state = 0}, + [10428] = {.lex_state = 0}, + [10429] = {.lex_state = 0}, + [10430] = {.lex_state = 0}, + [10431] = {.lex_state = 438}, + [10432] = {.lex_state = 0}, + [10433] = {.lex_state = 0}, + [10434] = {.lex_state = 0}, + [10435] = {.lex_state = 0}, + [10436] = {.lex_state = 0}, + [10437] = {.lex_state = 0}, + [10438] = {.lex_state = 0}, + [10439] = {.lex_state = 438, .external_lex_state = 2}, + [10440] = {.lex_state = 0}, + [10441] = {.lex_state = 0}, + [10442] = {.lex_state = 0}, + [10443] = {.lex_state = 438, .external_lex_state = 2}, + [10444] = {.lex_state = 0}, + [10445] = {.lex_state = 0}, + [10446] = {.lex_state = 438}, + [10447] = {.lex_state = 438}, + [10448] = {.lex_state = 438, .external_lex_state = 2}, + [10449] = {.lex_state = 0}, + [10450] = {.lex_state = 438}, + [10451] = {.lex_state = 0}, + [10452] = {.lex_state = 438, .external_lex_state = 2}, + [10453] = {.lex_state = 0}, + [10454] = {.lex_state = 438, .external_lex_state = 2}, + [10455] = {.lex_state = 0}, + [10456] = {.lex_state = 0}, + [10457] = {.lex_state = 438, .external_lex_state = 2}, + [10458] = {.lex_state = 148}, + [10459] = {.lex_state = 438, .external_lex_state = 2}, + [10460] = {.lex_state = 438, .external_lex_state = 2}, + [10461] = {.lex_state = 438, .external_lex_state = 2}, + [10462] = {.lex_state = 438, .external_lex_state = 2}, + [10463] = {.lex_state = 0}, + [10464] = {.lex_state = 438, .external_lex_state = 2}, + [10465] = {.lex_state = 438, .external_lex_state = 2}, + [10466] = {.lex_state = 438, .external_lex_state = 2}, + [10467] = {.lex_state = 438, .external_lex_state = 2}, + [10468] = {.lex_state = 438, .external_lex_state = 2}, + [10469] = {.lex_state = 438, .external_lex_state = 2}, + [10470] = {.lex_state = 438, .external_lex_state = 2}, + [10471] = {.lex_state = 438, .external_lex_state = 2}, + [10472] = {.lex_state = 0}, + [10473] = {.lex_state = 438}, + [10474] = {.lex_state = 438}, + [10475] = {.lex_state = 438}, + [10476] = {.lex_state = 0}, + [10477] = {.lex_state = 0}, + [10478] = {.lex_state = 0}, + [10479] = {.lex_state = 438}, + [10480] = {.lex_state = 0}, + [10481] = {.lex_state = 0}, + [10482] = {.lex_state = 0}, + [10483] = {.lex_state = 0}, + [10484] = {.lex_state = 0}, + [10485] = {.lex_state = 0, .external_lex_state = 2}, + [10486] = {.lex_state = 0}, + [10487] = {.lex_state = 0}, + [10488] = {.lex_state = 0}, + [10489] = {.lex_state = 235}, + [10490] = {.lex_state = 149}, + [10491] = {.lex_state = 0}, + [10492] = {.lex_state = 0}, + [10493] = {.lex_state = 0}, + [10494] = {.lex_state = 149}, + [10495] = {.lex_state = 267}, + [10496] = {.lex_state = 0}, + [10497] = {.lex_state = 267}, + [10498] = {.lex_state = 0}, + [10499] = {.lex_state = 267}, + [10500] = {.lex_state = 0}, + [10501] = {.lex_state = 0}, + [10502] = {.lex_state = 0}, + [10503] = {.lex_state = 0}, + [10504] = {.lex_state = 0}, + [10505] = {.lex_state = 0}, + [10506] = {.lex_state = 0, .external_lex_state = 2}, + [10507] = {.lex_state = 0}, + [10508] = {.lex_state = 267}, + [10509] = {.lex_state = 0}, + [10510] = {.lex_state = 0}, + [10511] = {.lex_state = 237}, + [10512] = {.lex_state = 0, .external_lex_state = 3}, + [10513] = {.lex_state = 0}, + [10514] = {.lex_state = 0}, + [10515] = {.lex_state = 0}, + [10516] = {.lex_state = 0}, + [10517] = {.lex_state = 438}, + [10518] = {.lex_state = 0}, + [10519] = {.lex_state = 0}, + [10520] = {.lex_state = 0}, + [10521] = {.lex_state = 149}, + [10522] = {.lex_state = 0}, + [10523] = {.lex_state = 0}, + [10524] = {.lex_state = 438}, + [10525] = {.lex_state = 267}, + [10526] = {.lex_state = 0}, + [10527] = {.lex_state = 267}, + [10528] = {.lex_state = 0}, + [10529] = {.lex_state = 267}, + [10530] = {.lex_state = 0}, + [10531] = {.lex_state = 0}, + [10532] = {.lex_state = 237}, + [10533] = {.lex_state = 0}, + [10534] = {.lex_state = 286}, + [10535] = {.lex_state = 0}, + [10536] = {.lex_state = 267}, + [10537] = {.lex_state = 0}, + [10538] = {.lex_state = 0}, + [10539] = {.lex_state = 0}, + [10540] = {.lex_state = 0}, + [10541] = {.lex_state = 0}, + [10542] = {.lex_state = 0}, + [10543] = {.lex_state = 0}, + [10544] = {.lex_state = 0}, + [10545] = {.lex_state = 267}, + [10546] = {.lex_state = 267}, + [10547] = {.lex_state = 0}, + [10548] = {.lex_state = 267}, + [10549] = {.lex_state = 0}, + [10550] = {.lex_state = 0}, + [10551] = {.lex_state = 149}, + [10552] = {.lex_state = 0}, + [10553] = {.lex_state = 0}, + [10554] = {.lex_state = 0}, + [10555] = {.lex_state = 0}, + [10556] = {.lex_state = 267}, + [10557] = {.lex_state = 0}, + [10558] = {.lex_state = 0}, + [10559] = {.lex_state = 267}, + [10560] = {.lex_state = 0}, + [10561] = {.lex_state = 0}, + [10562] = {.lex_state = 267}, + [10563] = {.lex_state = 438}, + [10564] = {.lex_state = 0}, + [10565] = {.lex_state = 0}, + [10566] = {.lex_state = 0}, + [10567] = {.lex_state = 0}, + [10568] = {.lex_state = 0}, + [10569] = {.lex_state = 267}, + [10570] = {.lex_state = 0}, + [10571] = {.lex_state = 0}, + [10572] = {.lex_state = 237}, + [10573] = {.lex_state = 267}, + [10574] = {.lex_state = 149}, + [10575] = {.lex_state = 0}, + [10576] = {.lex_state = 267}, + [10577] = {.lex_state = 0}, + [10578] = {.lex_state = 0}, + [10579] = {.lex_state = 0}, + [10580] = {.lex_state = 0}, + [10581] = {.lex_state = 0}, + [10582] = {.lex_state = 0}, + [10583] = {.lex_state = 0}, + [10584] = {.lex_state = 0}, + [10585] = {.lex_state = 0}, + [10586] = {.lex_state = 0}, + [10587] = {.lex_state = 0}, + [10588] = {.lex_state = 0}, + [10589] = {.lex_state = 438}, + [10590] = {.lex_state = 438}, + [10591] = {.lex_state = 0}, + [10592] = {.lex_state = 0}, + [10593] = {.lex_state = 438}, + [10594] = {.lex_state = 0}, + [10595] = {.lex_state = 0}, + [10596] = {.lex_state = 267}, + [10597] = {.lex_state = 0}, + [10598] = {.lex_state = 149}, + [10599] = {.lex_state = 0}, + [10600] = {.lex_state = 0}, + [10601] = {.lex_state = 0}, + [10602] = {.lex_state = 267}, + [10603] = {.lex_state = 0}, + [10604] = {.lex_state = 267}, + [10605] = {.lex_state = 0}, + [10606] = {.lex_state = 0}, + [10607] = {.lex_state = 0}, + [10608] = {.lex_state = 267}, + [10609] = {.lex_state = 0}, + [10610] = {.lex_state = 237}, + [10611] = {.lex_state = 237}, + [10612] = {.lex_state = 237}, + [10613] = {.lex_state = 0}, + [10614] = {.lex_state = 235}, + [10615] = {.lex_state = 267}, + [10616] = {.lex_state = 149}, + [10617] = {.lex_state = 0}, + [10618] = {.lex_state = 0}, + [10619] = {.lex_state = 0}, + [10620] = {.lex_state = 0}, + [10621] = {.lex_state = 0}, + [10622] = {.lex_state = 0}, + [10623] = {.lex_state = 267}, + [10624] = {.lex_state = 0}, + [10625] = {.lex_state = 0}, + [10626] = {.lex_state = 267}, + [10627] = {.lex_state = 0}, + [10628] = {.lex_state = 149}, + [10629] = {.lex_state = 0}, + [10630] = {.lex_state = 0, .external_lex_state = 2}, + [10631] = {.lex_state = 0}, + [10632] = {.lex_state = 267}, + [10633] = {.lex_state = 0}, + [10634] = {.lex_state = 0}, + [10635] = {.lex_state = 0}, + [10636] = {.lex_state = 438}, + [10637] = {.lex_state = 0}, + [10638] = {.lex_state = 0}, + [10639] = {.lex_state = 267}, + [10640] = {.lex_state = 267}, + [10641] = {.lex_state = 0}, + [10642] = {.lex_state = 0}, + [10643] = {.lex_state = 0}, + [10644] = {.lex_state = 267}, + [10645] = {.lex_state = 0}, + [10646] = {.lex_state = 0}, + [10647] = {.lex_state = 267}, + [10648] = {.lex_state = 0}, + [10649] = {.lex_state = 0}, + [10650] = {.lex_state = 267}, + [10651] = {.lex_state = 0}, + [10652] = {.lex_state = 0}, + [10653] = {.lex_state = 0}, + [10654] = {.lex_state = 267}, + [10655] = {.lex_state = 0}, + [10656] = {.lex_state = 438}, + [10657] = {.lex_state = 0}, + [10658] = {.lex_state = 0}, + [10659] = {.lex_state = 0}, + [10660] = {.lex_state = 0}, + [10661] = {.lex_state = 0}, + [10662] = {.lex_state = 0}, + [10663] = {.lex_state = 0}, + [10664] = {.lex_state = 0}, + [10665] = {.lex_state = 267}, + [10666] = {.lex_state = 0}, + [10667] = {.lex_state = 0}, + [10668] = {.lex_state = 237}, + [10669] = {.lex_state = 438}, + [10670] = {.lex_state = 0}, + [10671] = {.lex_state = 0}, + [10672] = {.lex_state = 0}, + [10673] = {.lex_state = 0}, + [10674] = {.lex_state = 438}, + [10675] = {.lex_state = 0}, + [10676] = {.lex_state = 0}, + [10677] = {.lex_state = 0}, + [10678] = {.lex_state = 0}, + [10679] = {.lex_state = 0}, + [10680] = {.lex_state = 267}, + [10681] = {.lex_state = 0}, + [10682] = {.lex_state = 0}, + [10683] = {.lex_state = 267}, + [10684] = {.lex_state = 0}, + [10685] = {.lex_state = 267}, + [10686] = {.lex_state = 0, .external_lex_state = 2}, + [10687] = {.lex_state = 267}, + [10688] = {.lex_state = 0}, + [10689] = {.lex_state = 0}, + [10690] = {.lex_state = 0}, + [10691] = {.lex_state = 237}, + [10692] = {.lex_state = 0}, + [10693] = {.lex_state = 0}, + [10694] = {.lex_state = 0}, + [10695] = {.lex_state = 438}, + [10696] = {.lex_state = 0}, + [10697] = {.lex_state = 0}, + [10698] = {.lex_state = 0}, + [10699] = {.lex_state = 0}, + [10700] = {.lex_state = 0}, + [10701] = {.lex_state = 0}, + [10702] = {.lex_state = 0, .external_lex_state = 3}, + [10703] = {.lex_state = 267}, + [10704] = {.lex_state = 0}, + [10705] = {.lex_state = 0}, + [10706] = {.lex_state = 267}, + [10707] = {.lex_state = 0}, + [10708] = {.lex_state = 0}, + [10709] = {.lex_state = 0, .external_lex_state = 2}, + [10710] = {.lex_state = 237}, + [10711] = {.lex_state = 267}, + [10712] = {.lex_state = 0}, + [10713] = {.lex_state = 267}, + [10714] = {.lex_state = 237}, + [10715] = {.lex_state = 267}, + [10716] = {.lex_state = 0}, + [10717] = {.lex_state = 267}, + [10718] = {.lex_state = 0}, + [10719] = {.lex_state = 438}, + [10720] = {.lex_state = 0}, + [10721] = {.lex_state = 0}, + [10722] = {.lex_state = 0}, + [10723] = {.lex_state = 0}, + [10724] = {.lex_state = 0}, + [10725] = {.lex_state = 267}, + [10726] = {.lex_state = 0}, + [10727] = {.lex_state = 267}, + [10728] = {.lex_state = 0}, + [10729] = {.lex_state = 0}, + [10730] = {.lex_state = 267}, + [10731] = {.lex_state = 267}, + [10732] = {.lex_state = 235}, + [10733] = {.lex_state = 0}, + [10734] = {.lex_state = 267}, + [10735] = {.lex_state = 438}, + [10736] = {.lex_state = 0}, + [10737] = {.lex_state = 0}, + [10738] = {.lex_state = 0}, + [10739] = {.lex_state = 0}, + [10740] = {.lex_state = 0}, + [10741] = {.lex_state = 0}, + [10742] = {.lex_state = 267}, + [10743] = {.lex_state = 237}, + [10744] = {.lex_state = 267}, + [10745] = {.lex_state = 0}, + [10746] = {.lex_state = 0}, + [10747] = {.lex_state = 0}, + [10748] = {.lex_state = 0}, + [10749] = {.lex_state = 0}, + [10750] = {.lex_state = 267}, + [10751] = {.lex_state = 0}, + [10752] = {.lex_state = 0}, + [10753] = {.lex_state = 438}, + [10754] = {.lex_state = 0}, + [10755] = {.lex_state = 0}, + [10756] = {.lex_state = 0}, + [10757] = {.lex_state = 0}, + [10758] = {.lex_state = 0}, + [10759] = {.lex_state = 0}, + [10760] = {.lex_state = 267}, + [10761] = {.lex_state = 0}, + [10762] = {.lex_state = 149}, + [10763] = {.lex_state = 149}, + [10764] = {.lex_state = 0}, + [10765] = {.lex_state = 0}, + [10766] = {.lex_state = 0, .external_lex_state = 2}, + [10767] = {.lex_state = 0}, + [10768] = {.lex_state = 267}, + [10769] = {.lex_state = 0}, + [10770] = {.lex_state = 0}, + [10771] = {.lex_state = 0}, + [10772] = {.lex_state = 0}, + [10773] = {.lex_state = 149}, + [10774] = {.lex_state = 235}, + [10775] = {.lex_state = 0}, + [10776] = {.lex_state = 438}, + [10777] = {.lex_state = 0}, + [10778] = {.lex_state = 0}, + [10779] = {.lex_state = 0}, + [10780] = {.lex_state = 237}, + [10781] = {.lex_state = 438}, + [10782] = {.lex_state = 0}, + [10783] = {.lex_state = 0}, + [10784] = {.lex_state = 0}, + [10785] = {.lex_state = 0}, + [10786] = {.lex_state = 149}, + [10787] = {.lex_state = 0}, + [10788] = {.lex_state = 0}, + [10789] = {.lex_state = 0}, + [10790] = {.lex_state = 0}, + [10791] = {.lex_state = 0}, + [10792] = {.lex_state = 438}, + [10793] = {.lex_state = 267}, + [10794] = {.lex_state = 0}, + [10795] = {.lex_state = 0}, + [10796] = {.lex_state = 0}, + [10797] = {.lex_state = 267}, + [10798] = {.lex_state = 237}, + [10799] = {.lex_state = 267}, + [10800] = {.lex_state = 0}, + [10801] = {.lex_state = 0}, + [10802] = {.lex_state = 0}, + [10803] = {.lex_state = 0}, + [10804] = {.lex_state = 0}, + [10805] = {.lex_state = 0}, + [10806] = {.lex_state = 149}, + [10807] = {.lex_state = 0}, + [10808] = {.lex_state = 0}, + [10809] = {.lex_state = 237}, + [10810] = {.lex_state = 0}, + [10811] = {.lex_state = 0}, + [10812] = {.lex_state = 237}, + [10813] = {.lex_state = 0}, + [10814] = {.lex_state = 267}, + [10815] = {.lex_state = 237}, + [10816] = {.lex_state = 267}, + [10817] = {.lex_state = 237}, + [10818] = {.lex_state = 0}, + [10819] = {.lex_state = 0}, + [10820] = {.lex_state = 0, .external_lex_state = 2}, + [10821] = {.lex_state = 0}, + [10822] = {.lex_state = 0}, + [10823] = {.lex_state = 0}, + [10824] = {.lex_state = 0}, + [10825] = {.lex_state = 0}, + [10826] = {.lex_state = 0}, + [10827] = {.lex_state = 438}, + [10828] = {.lex_state = 0}, + [10829] = {.lex_state = 0}, + [10830] = {.lex_state = 267}, + [10831] = {.lex_state = 0}, + [10832] = {.lex_state = 267}, + [10833] = {.lex_state = 267}, + [10834] = {.lex_state = 0}, + [10835] = {.lex_state = 0}, + [10836] = {.lex_state = 0}, + [10837] = {.lex_state = 438}, + [10838] = {.lex_state = 0}, + [10839] = {.lex_state = 438}, + [10840] = {.lex_state = 267}, + [10841] = {.lex_state = 0}, + [10842] = {.lex_state = 267}, + [10843] = {.lex_state = 237}, + [10844] = {.lex_state = 0}, + [10845] = {.lex_state = 0}, + [10846] = {.lex_state = 0}, + [10847] = {.lex_state = 0}, + [10848] = {.lex_state = 267}, + [10849] = {.lex_state = 149}, + [10850] = {.lex_state = 0, .external_lex_state = 2}, + [10851] = {.lex_state = 0}, + [10852] = {.lex_state = 0}, + [10853] = {.lex_state = 0}, + [10854] = {.lex_state = 0}, + [10855] = {.lex_state = 0}, + [10856] = {.lex_state = 0}, + [10857] = {.lex_state = 0}, + [10858] = {.lex_state = 0}, + [10859] = {.lex_state = 0}, + [10860] = {.lex_state = 149}, + [10861] = {.lex_state = 438}, + [10862] = {.lex_state = 0}, + [10863] = {.lex_state = 237}, + [10864] = {.lex_state = 237}, + [10865] = {.lex_state = 267}, + [10866] = {.lex_state = 0}, + [10867] = {.lex_state = 0}, + [10868] = {.lex_state = 267}, + [10869] = {.lex_state = 237}, + [10870] = {.lex_state = 0, .external_lex_state = 2}, + [10871] = {.lex_state = 0}, + [10872] = {.lex_state = 0}, + [10873] = {.lex_state = 0}, + [10874] = {.lex_state = 235}, + [10875] = {.lex_state = 0}, + [10876] = {.lex_state = 149}, + [10877] = {.lex_state = 267}, + [10878] = {.lex_state = 0}, + [10879] = {.lex_state = 0}, + [10880] = {.lex_state = 267}, + [10881] = {.lex_state = 0, .external_lex_state = 2}, + [10882] = {.lex_state = 267}, + [10883] = {.lex_state = 0}, + [10884] = {.lex_state = 438}, + [10885] = {.lex_state = 0}, + [10886] = {.lex_state = 0}, + [10887] = {.lex_state = 0}, + [10888] = {.lex_state = 267}, + [10889] = {.lex_state = 0}, + [10890] = {.lex_state = 0, .external_lex_state = 2}, + [10891] = {.lex_state = 0}, + [10892] = {.lex_state = 0}, + [10893] = {.lex_state = 0}, + [10894] = {.lex_state = 0}, + [10895] = {.lex_state = 267}, + [10896] = {.lex_state = 0}, + [10897] = {.lex_state = 0, .external_lex_state = 2}, + [10898] = {.lex_state = 438}, + [10899] = {.lex_state = 0}, + [10900] = {.lex_state = 438}, + [10901] = {.lex_state = 0}, + [10902] = {.lex_state = 0}, + [10903] = {.lex_state = 0}, + [10904] = {.lex_state = 0, .external_lex_state = 2}, + [10905] = {.lex_state = 438}, + [10906] = {.lex_state = 0}, + [10907] = {.lex_state = 0}, + [10908] = {.lex_state = 237}, + [10909] = {.lex_state = 0}, + [10910] = {.lex_state = 0, .external_lex_state = 2}, + [10911] = {.lex_state = 0}, + [10912] = {.lex_state = 149}, + [10913] = {.lex_state = 0}, + [10914] = {.lex_state = 0}, + [10915] = {.lex_state = 0, .external_lex_state = 2}, + [10916] = {.lex_state = 0}, + [10917] = {.lex_state = 149}, + [10918] = {.lex_state = 0}, + [10919] = {.lex_state = 0, .external_lex_state = 2}, + [10920] = {.lex_state = 0}, + [10921] = {.lex_state = 0}, + [10922] = {.lex_state = 0}, + [10923] = {.lex_state = 0, .external_lex_state = 2}, + [10924] = {.lex_state = 0}, + [10925] = {.lex_state = 0}, + [10926] = {.lex_state = 0}, + [10927] = {.lex_state = 0, .external_lex_state = 2}, + [10928] = {.lex_state = 267}, + [10929] = {.lex_state = 267}, + [10930] = {.lex_state = 0}, + [10931] = {.lex_state = 0, .external_lex_state = 2}, + [10932] = {.lex_state = 0}, + [10933] = {.lex_state = 0}, + [10934] = {.lex_state = 0}, + [10935] = {.lex_state = 0, .external_lex_state = 2}, + [10936] = {.lex_state = 0}, + [10937] = {.lex_state = 0}, + [10938] = {.lex_state = 0, .external_lex_state = 2}, + [10939] = {.lex_state = 237}, + [10940] = {.lex_state = 237}, + [10941] = {.lex_state = 0}, + [10942] = {.lex_state = 0}, + [10943] = {.lex_state = 149}, + [10944] = {.lex_state = 438}, + [10945] = {.lex_state = 0}, + [10946] = {.lex_state = 438}, + [10947] = {.lex_state = 438}, + [10948] = {.lex_state = 438}, + [10949] = {.lex_state = 438}, + [10950] = {.lex_state = 267}, + [10951] = {.lex_state = 438}, + [10952] = {.lex_state = 0}, + [10953] = {.lex_state = 0}, + [10954] = {.lex_state = 237}, + [10955] = {.lex_state = 237}, + [10956] = {.lex_state = 0}, + [10957] = {.lex_state = 0}, + [10958] = {.lex_state = 0}, + [10959] = {.lex_state = 267}, + [10960] = {.lex_state = 0}, + [10961] = {.lex_state = 438}, + [10962] = {.lex_state = 0}, + [10963] = {.lex_state = 0}, + [10964] = {.lex_state = 438}, + [10965] = {.lex_state = 438}, + [10966] = {.lex_state = 0}, + [10967] = {.lex_state = 0}, + [10968] = {.lex_state = 0}, + [10969] = {.lex_state = 438}, + [10970] = {.lex_state = 0, .external_lex_state = 3}, + [10971] = {.lex_state = 149}, + [10972] = {.lex_state = 267}, + [10973] = {.lex_state = 0}, + [10974] = {.lex_state = 438}, + [10975] = {.lex_state = 267}, + [10976] = {.lex_state = 0}, + [10977] = {.lex_state = 0}, + [10978] = {.lex_state = 0}, + [10979] = {.lex_state = 0}, + [10980] = {.lex_state = 0}, + [10981] = {.lex_state = 0}, + [10982] = {.lex_state = 267}, + [10983] = {.lex_state = 267}, + [10984] = {.lex_state = 0}, + [10985] = {.lex_state = 0}, + [10986] = {.lex_state = 267}, + [10987] = {.lex_state = 0}, + [10988] = {.lex_state = 0}, + [10989] = {.lex_state = 237}, + [10990] = {.lex_state = 237}, + [10991] = {.lex_state = 0}, + [10992] = {.lex_state = 0}, + [10993] = {.lex_state = 438}, + [10994] = {.lex_state = 0}, + [10995] = {.lex_state = 0}, + [10996] = {.lex_state = 438}, + [10997] = {.lex_state = 438}, + [10998] = {.lex_state = 0}, + [10999] = {.lex_state = 0}, + [11000] = {.lex_state = 0}, + [11001] = {.lex_state = 267}, + [11002] = {.lex_state = 438}, + [11003] = {.lex_state = 0}, + [11004] = {.lex_state = 267}, + [11005] = {.lex_state = 0}, + [11006] = {.lex_state = 0}, + [11007] = {.lex_state = 0}, + [11008] = {.lex_state = 0}, + [11009] = {.lex_state = 438}, + [11010] = {.lex_state = 0}, + [11011] = {.lex_state = 0}, + [11012] = {.lex_state = 0}, + [11013] = {.lex_state = 0}, + [11014] = {.lex_state = 0}, + [11015] = {.lex_state = 0}, + [11016] = {.lex_state = 267}, + [11017] = {.lex_state = 0}, + [11018] = {.lex_state = 0}, + [11019] = {.lex_state = 0}, + [11020] = {.lex_state = 0}, + [11021] = {.lex_state = 0}, + [11022] = {.lex_state = 0}, + [11023] = {.lex_state = 267}, + [11024] = {.lex_state = 0}, + [11025] = {.lex_state = 0}, + [11026] = {.lex_state = 0}, + [11027] = {.lex_state = 0}, + [11028] = {.lex_state = 0}, + [11029] = {.lex_state = 0}, + [11030] = {.lex_state = 438}, + [11031] = {.lex_state = 0}, + [11032] = {.lex_state = 0}, + [11033] = {.lex_state = 0}, + [11034] = {.lex_state = 0}, + [11035] = {.lex_state = 0}, + [11036] = {.lex_state = 267}, + [11037] = {.lex_state = 0}, + [11038] = {.lex_state = 0}, + [11039] = {.lex_state = 267}, + [11040] = {.lex_state = 0}, + [11041] = {.lex_state = 0}, + [11042] = {.lex_state = 0}, + [11043] = {.lex_state = 0}, + [11044] = {.lex_state = 237}, + [11045] = {.lex_state = 0}, + [11046] = {.lex_state = 267}, + [11047] = {.lex_state = 267}, + [11048] = {.lex_state = 237}, + [11049] = {.lex_state = 0}, + [11050] = {.lex_state = 267}, + [11051] = {.lex_state = 0}, + [11052] = {.lex_state = 149}, + [11053] = {.lex_state = 0}, + [11054] = {.lex_state = 267}, + [11055] = {.lex_state = 267}, + [11056] = {.lex_state = 0}, + [11057] = {.lex_state = 0}, + [11058] = {.lex_state = 267}, + [11059] = {.lex_state = 0}, + [11060] = {.lex_state = 237}, + [11061] = {.lex_state = 0}, + [11062] = {.lex_state = 0}, + [11063] = {.lex_state = 438}, + [11064] = {.lex_state = 237}, + [11065] = {.lex_state = 0}, + [11066] = {.lex_state = 0}, + [11067] = {.lex_state = 0}, + [11068] = {.lex_state = 0}, + [11069] = {.lex_state = 0}, + [11070] = {.lex_state = 267}, + [11071] = {.lex_state = 0}, + [11072] = {.lex_state = 267}, + [11073] = {.lex_state = 0}, + [11074] = {.lex_state = 0}, + [11075] = {.lex_state = 0}, + [11076] = {.lex_state = 438}, + [11077] = {.lex_state = 0}, + [11078] = {.lex_state = 267}, + [11079] = {.lex_state = 267}, + [11080] = {.lex_state = 0}, + [11081] = {.lex_state = 0}, + [11082] = {.lex_state = 0}, + [11083] = {.lex_state = 438}, + [11084] = {.lex_state = 0}, + [11085] = {.lex_state = 0}, + [11086] = {.lex_state = 0}, + [11087] = {.lex_state = 149}, + [11088] = {.lex_state = 0}, + [11089] = {.lex_state = 0}, + [11090] = {.lex_state = 267}, + [11091] = {.lex_state = 238}, + [11092] = {.lex_state = 0}, + [11093] = {.lex_state = 0}, + [11094] = {.lex_state = 237}, + [11095] = {.lex_state = 0}, + [11096] = {.lex_state = 0}, + [11097] = {.lex_state = 0}, + [11098] = {.lex_state = 0}, + [11099] = {.lex_state = 0}, + [11100] = {.lex_state = 0}, + [11101] = {.lex_state = 267}, + [11102] = {.lex_state = 438}, + [11103] = {.lex_state = 438}, + [11104] = {.lex_state = 438}, + [11105] = {.lex_state = 438}, + [11106] = {.lex_state = 438}, + [11107] = {.lex_state = 149}, + [11108] = {.lex_state = 438}, + [11109] = {.lex_state = 267}, + [11110] = {.lex_state = 237}, + [11111] = {.lex_state = 267}, + [11112] = {.lex_state = 237}, + [11113] = {.lex_state = 438}, + [11114] = {.lex_state = 237}, + [11115] = {.lex_state = 237}, + [11116] = {.lex_state = 438}, + [11117] = {.lex_state = 438}, + [11118] = {.lex_state = 237}, + [11119] = {.lex_state = 438}, + [11120] = {.lex_state = 0, .external_lex_state = 3}, + [11121] = {.lex_state = 438}, + [11122] = {.lex_state = 237}, + [11123] = {.lex_state = 0}, + [11124] = {.lex_state = 237}, + [11125] = {.lex_state = 0}, + [11126] = {.lex_state = 0}, + [11127] = {.lex_state = 438}, + [11128] = {.lex_state = 0}, + [11129] = {.lex_state = 0}, + [11130] = {.lex_state = 267}, + [11131] = {.lex_state = 438}, + [11132] = {.lex_state = 0}, + [11133] = {.lex_state = 438}, + [11134] = {.lex_state = 438}, + [11135] = {.lex_state = 438}, + [11136] = {.lex_state = 0}, + [11137] = {.lex_state = 438}, + [11138] = {.lex_state = 0}, + [11139] = {.lex_state = 0}, + [11140] = {.lex_state = 267}, + [11141] = {.lex_state = 0}, + [11142] = {.lex_state = 438}, + [11143] = {.lex_state = 0}, + [11144] = {.lex_state = 438}, + [11145] = {.lex_state = 0}, + [11146] = {.lex_state = 438}, + [11147] = {.lex_state = 0, .external_lex_state = 3}, + [11148] = {.lex_state = 0}, + [11149] = {.lex_state = 0}, + [11150] = {.lex_state = 0}, + [11151] = {.lex_state = 267}, + [11152] = {.lex_state = 0}, + [11153] = {.lex_state = 0}, + [11154] = {.lex_state = 267}, + [11155] = {.lex_state = 0}, + [11156] = {.lex_state = 438}, + [11157] = {.lex_state = 438}, + [11158] = {.lex_state = 438}, + [11159] = {.lex_state = 267}, + [11160] = {.lex_state = 438}, + [11161] = {.lex_state = 0}, + [11162] = {.lex_state = 0}, + [11163] = {.lex_state = 267}, + [11164] = {.lex_state = 438}, + [11165] = {.lex_state = 0}, + [11166] = {.lex_state = 438}, + [11167] = {.lex_state = 438}, + [11168] = {.lex_state = 438}, + [11169] = {.lex_state = 0, .external_lex_state = 3}, + [11170] = {.lex_state = 0}, + [11171] = {.lex_state = 0}, + [11172] = {.lex_state = 438}, + [11173] = {.lex_state = 0}, + [11174] = {.lex_state = 0}, + [11175] = {.lex_state = 267}, + [11176] = {.lex_state = 0}, + [11177] = {.lex_state = 438}, + [11178] = {.lex_state = 438}, + [11179] = {.lex_state = 438}, + [11180] = {.lex_state = 0}, + [11181] = {.lex_state = 438}, + [11182] = {.lex_state = 0}, + [11183] = {.lex_state = 0}, + [11184] = {.lex_state = 438}, + [11185] = {.lex_state = 0}, + [11186] = {.lex_state = 438}, + [11187] = {.lex_state = 0}, + [11188] = {.lex_state = 438}, + [11189] = {.lex_state = 0, .external_lex_state = 3}, + [11190] = {.lex_state = 438}, + [11191] = {.lex_state = 0}, + [11192] = {.lex_state = 0}, + [11193] = {.lex_state = 149}, + [11194] = {.lex_state = 0}, + [11195] = {.lex_state = 267}, + [11196] = {.lex_state = 237}, + [11197] = {.lex_state = 438}, + [11198] = {.lex_state = 438}, + [11199] = {.lex_state = 438}, + [11200] = {.lex_state = 0}, + [11201] = {.lex_state = 438}, + [11202] = {.lex_state = 0}, + [11203] = {.lex_state = 237}, + [11204] = {.lex_state = 438}, + [11205] = {.lex_state = 0}, + [11206] = {.lex_state = 438}, + [11207] = {.lex_state = 0}, + [11208] = {.lex_state = 438}, + [11209] = {.lex_state = 0, .external_lex_state = 3}, + [11210] = {.lex_state = 237}, + [11211] = {.lex_state = 0}, + [11212] = {.lex_state = 0}, + [11213] = {.lex_state = 0}, + [11214] = {.lex_state = 0}, + [11215] = {.lex_state = 267}, + [11216] = {.lex_state = 0}, + [11217] = {.lex_state = 438}, + [11218] = {.lex_state = 438}, + [11219] = {.lex_state = 438}, + [11220] = {.lex_state = 0}, + [11221] = {.lex_state = 438}, + [11222] = {.lex_state = 0}, + [11223] = {.lex_state = 438}, + [11224] = {.lex_state = 0}, + [11225] = {.lex_state = 438}, + [11226] = {.lex_state = 0, .external_lex_state = 3}, + [11227] = {.lex_state = 0}, + [11228] = {.lex_state = 0}, + [11229] = {.lex_state = 438}, + [11230] = {.lex_state = 0}, + [11231] = {.lex_state = 267}, + [11232] = {.lex_state = 0}, + [11233] = {.lex_state = 438}, + [11234] = {.lex_state = 438}, + [11235] = {.lex_state = 267}, + [11236] = {.lex_state = 438}, + [11237] = {.lex_state = 237}, + [11238] = {.lex_state = 0}, + [11239] = {.lex_state = 438}, + [11240] = {.lex_state = 0, .external_lex_state = 3}, + [11241] = {.lex_state = 267}, + [11242] = {.lex_state = 0}, + [11243] = {.lex_state = 438}, + [11244] = {.lex_state = 438}, + [11245] = {.lex_state = 438}, + [11246] = {.lex_state = 438}, + [11247] = {.lex_state = 0, .external_lex_state = 3}, + [11248] = {.lex_state = 0}, + [11249] = {.lex_state = 438}, + [11250] = {.lex_state = 438}, + [11251] = {.lex_state = 438}, + [11252] = {.lex_state = 438}, + [11253] = {.lex_state = 0, .external_lex_state = 3}, + [11254] = {.lex_state = 0}, + [11255] = {.lex_state = 438}, + [11256] = {.lex_state = 438}, + [11257] = {.lex_state = 0, .external_lex_state = 3}, + [11258] = {.lex_state = 0}, + [11259] = {.lex_state = 438}, + [11260] = {.lex_state = 438}, + [11261] = {.lex_state = 0, .external_lex_state = 3}, + [11262] = {.lex_state = 0}, + [11263] = {.lex_state = 438}, + [11264] = {.lex_state = 438}, + [11265] = {.lex_state = 0, .external_lex_state = 3}, + [11266] = {.lex_state = 0}, + [11267] = {.lex_state = 438}, + [11268] = {.lex_state = 438}, + [11269] = {.lex_state = 0, .external_lex_state = 3}, + [11270] = {.lex_state = 0}, + [11271] = {.lex_state = 438}, + [11272] = {.lex_state = 438}, + [11273] = {.lex_state = 0, .external_lex_state = 3}, + [11274] = {.lex_state = 0}, + [11275] = {.lex_state = 438}, + [11276] = {.lex_state = 438}, + [11277] = {.lex_state = 0, .external_lex_state = 3}, + [11278] = {.lex_state = 0}, + [11279] = {.lex_state = 438}, + [11280] = {.lex_state = 438}, + [11281] = {.lex_state = 0, .external_lex_state = 3}, + [11282] = {.lex_state = 0}, + [11283] = {.lex_state = 438}, + [11284] = {.lex_state = 438}, + [11285] = {.lex_state = 0, .external_lex_state = 3}, + [11286] = {.lex_state = 0}, + [11287] = {.lex_state = 438}, + [11288] = {.lex_state = 438}, + [11289] = {.lex_state = 0, .external_lex_state = 3}, + [11290] = {.lex_state = 0}, + [11291] = {.lex_state = 438}, + [11292] = {.lex_state = 0, .external_lex_state = 3}, + [11293] = {.lex_state = 0}, + [11294] = {.lex_state = 438}, + [11295] = {.lex_state = 438}, + [11296] = {.lex_state = 438}, + [11297] = {.lex_state = 0}, + [11298] = {.lex_state = 267}, + [11299] = {.lex_state = 438}, + [11300] = {.lex_state = 438}, + [11301] = {.lex_state = 267}, + [11302] = {.lex_state = 0}, + [11303] = {.lex_state = 0}, + [11304] = {.lex_state = 0}, + [11305] = {.lex_state = 0}, + [11306] = {.lex_state = 0}, + [11307] = {.lex_state = 0}, + [11308] = {.lex_state = 0}, + [11309] = {.lex_state = 0}, + [11310] = {.lex_state = 0}, + [11311] = {.lex_state = 149}, + [11312] = {.lex_state = 237}, + [11313] = {.lex_state = 0}, + [11314] = {.lex_state = 0}, + [11315] = {.lex_state = 0}, + [11316] = {.lex_state = 438}, + [11317] = {.lex_state = 0}, + [11318] = {.lex_state = 0}, + [11319] = {.lex_state = 0}, + [11320] = {.lex_state = 0}, + [11321] = {.lex_state = 0}, + [11322] = {.lex_state = 0}, + [11323] = {.lex_state = 267}, + [11324] = {.lex_state = 0}, + [11325] = {.lex_state = 267}, + [11326] = {.lex_state = 267}, + [11327] = {.lex_state = 0}, + [11328] = {.lex_state = 0}, + [11329] = {.lex_state = 0}, + [11330] = {.lex_state = 237}, + [11331] = {.lex_state = 237}, + [11332] = {.lex_state = 237}, + [11333] = {.lex_state = 0}, + [11334] = {.lex_state = 0}, + [11335] = {.lex_state = 0}, + [11336] = {.lex_state = 267}, + [11337] = {.lex_state = 267}, + [11338] = {.lex_state = 438}, + [11339] = {.lex_state = 267}, + [11340] = {.lex_state = 0}, + [11341] = {.lex_state = 267}, + [11342] = {.lex_state = 0, .external_lex_state = 3}, + [11343] = {.lex_state = 0}, + [11344] = {.lex_state = 0}, + [11345] = {.lex_state = 438}, + [11346] = {.lex_state = 0}, + [11347] = {.lex_state = 0}, + [11348] = {.lex_state = 0}, + [11349] = {.lex_state = 0}, + [11350] = {.lex_state = 237}, + [11351] = {.lex_state = 0}, + [11352] = {.lex_state = 267}, + [11353] = {.lex_state = 0}, + [11354] = {.lex_state = 0}, + [11355] = {.lex_state = 0}, + [11356] = {.lex_state = 0}, + [11357] = {.lex_state = 267}, + [11358] = {.lex_state = 0}, + [11359] = {.lex_state = 0}, + [11360] = {.lex_state = 0}, + [11361] = {.lex_state = 0}, + [11362] = {.lex_state = 0}, + [11363] = {.lex_state = 0}, + [11364] = {.lex_state = 267}, + [11365] = {.lex_state = 0}, + [11366] = {.lex_state = 0}, + [11367] = {.lex_state = 0}, + [11368] = {.lex_state = 0}, + [11369] = {.lex_state = 438}, + [11370] = {.lex_state = 0}, + [11371] = {.lex_state = 0}, + [11372] = {.lex_state = 438}, + [11373] = {.lex_state = 0}, + [11374] = {.lex_state = 0}, + [11375] = {.lex_state = 149}, + [11376] = {.lex_state = 0}, + [11377] = {.lex_state = 0}, + [11378] = {.lex_state = 0}, + [11379] = {.lex_state = 237}, + [11380] = {.lex_state = 0}, + [11381] = {.lex_state = 0}, + [11382] = {.lex_state = 0}, + [11383] = {.lex_state = 0}, + [11384] = {.lex_state = 0}, + [11385] = {.lex_state = 0}, + [11386] = {.lex_state = 267}, + [11387] = {.lex_state = 267}, + [11388] = {.lex_state = 149}, + [11389] = {.lex_state = 0}, + [11390] = {.lex_state = 0}, + [11391] = {.lex_state = 0}, + [11392] = {.lex_state = 0}, + [11393] = {.lex_state = 267}, + [11394] = {.lex_state = 438}, + [11395] = {.lex_state = 0}, + [11396] = {.lex_state = 267}, + [11397] = {.lex_state = 267}, + [11398] = {.lex_state = 0}, + [11399] = {.lex_state = 0}, + [11400] = {.lex_state = 0}, + [11401] = {.lex_state = 0}, + [11402] = {.lex_state = 0}, + [11403] = {.lex_state = 0}, + [11404] = {.lex_state = 149}, + [11405] = {.lex_state = 438}, + [11406] = {.lex_state = 438}, + [11407] = {.lex_state = 267}, + [11408] = {.lex_state = 0}, + [11409] = {.lex_state = 0}, + [11410] = {.lex_state = 0}, + [11411] = {.lex_state = 438}, + [11412] = {.lex_state = 267}, + [11413] = {.lex_state = 267}, + [11414] = {.lex_state = 0, .external_lex_state = 3}, + [11415] = {.lex_state = 0}, + [11416] = {.lex_state = 438}, + [11417] = {.lex_state = 0}, + [11418] = {.lex_state = 0}, + [11419] = {.lex_state = 438}, + [11420] = {.lex_state = 438}, + [11421] = {.lex_state = 267}, + [11422] = {.lex_state = 0}, + [11423] = {.lex_state = 0}, + [11424] = {.lex_state = 0}, + [11425] = {.lex_state = 438}, + [11426] = {.lex_state = 267}, + [11427] = {.lex_state = 0, .external_lex_state = 3}, + [11428] = {.lex_state = 267}, + [11429] = {.lex_state = 0}, + [11430] = {.lex_state = 0}, + [11431] = {.lex_state = 438}, + [11432] = {.lex_state = 267}, + [11433] = {.lex_state = 438}, + [11434] = {.lex_state = 149}, + [11435] = {.lex_state = 0}, + [11436] = {.lex_state = 267}, + [11437] = {.lex_state = 0, .external_lex_state = 3}, + [11438] = {.lex_state = 0}, + [11439] = {.lex_state = 0}, + [11440] = {.lex_state = 438}, + [11441] = {.lex_state = 267}, + [11442] = {.lex_state = 0}, + [11443] = {.lex_state = 237}, + [11444] = {.lex_state = 0}, + [11445] = {.lex_state = 267}, + [11446] = {.lex_state = 0, .external_lex_state = 3}, + [11447] = {.lex_state = 267}, + [11448] = {.lex_state = 438}, + [11449] = {.lex_state = 267}, + [11450] = {.lex_state = 0}, + [11451] = {.lex_state = 0}, + [11452] = {.lex_state = 267}, + [11453] = {.lex_state = 0, .external_lex_state = 3}, + [11454] = {.lex_state = 0}, + [11455] = {.lex_state = 267}, + [11456] = {.lex_state = 334}, + [11457] = {.lex_state = 267}, + [11458] = {.lex_state = 0, .external_lex_state = 3}, + [11459] = {.lex_state = 0}, + [11460] = {.lex_state = 0}, + [11461] = {.lex_state = 0, .external_lex_state = 3}, + [11462] = {.lex_state = 438}, + [11463] = {.lex_state = 0, .external_lex_state = 3}, + [11464] = {.lex_state = 0}, + [11465] = {.lex_state = 0, .external_lex_state = 3}, + [11466] = {.lex_state = 0}, + [11467] = {.lex_state = 0, .external_lex_state = 3}, + [11468] = {.lex_state = 0}, + [11469] = {.lex_state = 0, .external_lex_state = 3}, + [11470] = {.lex_state = 267}, + [11471] = {.lex_state = 0, .external_lex_state = 3}, + [11472] = {.lex_state = 0}, + [11473] = {.lex_state = 0, .external_lex_state = 3}, + [11474] = {.lex_state = 237}, + [11475] = {.lex_state = 0, .external_lex_state = 3}, + [11476] = {.lex_state = 267}, + [11477] = {.lex_state = 0, .external_lex_state = 3}, + [11478] = {.lex_state = 237}, + [11479] = {.lex_state = 0, .external_lex_state = 3}, + [11480] = {.lex_state = 0}, + [11481] = {.lex_state = 0, .external_lex_state = 3}, + [11482] = {.lex_state = 0}, + [11483] = {.lex_state = 0, .external_lex_state = 3}, + [11484] = {.lex_state = 0}, + [11485] = {.lex_state = 0, .external_lex_state = 3}, + [11486] = {.lex_state = 334}, + [11487] = {.lex_state = 149}, + [11488] = {.lex_state = 0}, + [11489] = {.lex_state = 0}, + [11490] = {.lex_state = 438}, + [11491] = {.lex_state = 0}, + [11492] = {.lex_state = 0}, + [11493] = {.lex_state = 438}, + [11494] = {.lex_state = 0}, + [11495] = {.lex_state = 438}, + [11496] = {.lex_state = 0}, + [11497] = {.lex_state = 267}, + [11498] = {.lex_state = 0}, + [11499] = {.lex_state = 438}, + [11500] = {.lex_state = 0}, + [11501] = {.lex_state = 0}, + [11502] = {.lex_state = 438}, + [11503] = {.lex_state = 0}, + [11504] = {.lex_state = 267}, + [11505] = {.lex_state = 438}, + [11506] = {.lex_state = 438}, + [11507] = {.lex_state = 0}, + [11508] = {.lex_state = 438}, + [11509] = {.lex_state = 438}, + [11510] = {.lex_state = 0}, + [11511] = {.lex_state = 438}, + [11512] = {.lex_state = 438}, + [11513] = {.lex_state = 0}, + [11514] = {.lex_state = 438}, + [11515] = {.lex_state = 438}, + [11516] = {.lex_state = 0}, + [11517] = {.lex_state = 438}, + [11518] = {.lex_state = 438}, + [11519] = {.lex_state = 267}, + [11520] = {.lex_state = 438}, + [11521] = {.lex_state = 438}, + [11522] = {.lex_state = 0}, + [11523] = {.lex_state = 438}, + [11524] = {.lex_state = 438}, + [11525] = {.lex_state = 438}, + [11526] = {.lex_state = 438}, + [11527] = {.lex_state = 438}, + [11528] = {.lex_state = 438}, + [11529] = {.lex_state = 438}, + [11530] = {.lex_state = 438}, + [11531] = {.lex_state = 438}, + [11532] = {.lex_state = 438}, + [11533] = {.lex_state = 438}, + [11534] = {.lex_state = 438}, + [11535] = {.lex_state = 438}, + [11536] = {.lex_state = 0}, + [11537] = {.lex_state = 237}, + [11538] = {.lex_state = 267}, + [11539] = {.lex_state = 267}, + [11540] = {.lex_state = 0}, + [11541] = {.lex_state = 0}, + [11542] = {.lex_state = 149}, + [11543] = {.lex_state = 438}, + [11544] = {.lex_state = 438}, + [11545] = {.lex_state = 438}, + [11546] = {.lex_state = 438}, + [11547] = {.lex_state = 438}, + [11548] = {.lex_state = 438}, + [11549] = {.lex_state = 438}, + [11550] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -31610,6 +38053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(1), [anon_sym_offsetof] = ACTIONS(1), [anon_sym__Generic] = ACTIONS(1), + [anon_sym_typename] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym___asm__] = ACTIONS(1), [anon_sym___asm] = ACTIONS(1), @@ -31638,7 +38082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(1), [anon_sym_override] = ACTIONS(1), [anon_sym_explicit] = ACTIONS(1), - [anon_sym_typename] = ACTIONS(1), [anon_sym_export] = ACTIONS(1), [anon_sym_module] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), @@ -31669,13 +38112,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1), [anon_sym_requires] = ACTIONS(1), [anon_sym_DASH_GT_STAR] = ACTIONS(1), + [anon_sym_CARET_CARET] = ACTIONS(1), + [anon_sym_LBRACK_COLON] = ACTIONS(1), + [anon_sym_COLON_RBRACK] = ACTIONS(1), [anon_sym_LBRACK_RBRACK] = ACTIONS(1), [sym_this] = ACTIONS(1), [sym_raw_string_delimiter] = ACTIONS(1), [sym_raw_string_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_translation_unit] = STATE(8291), + [sym_translation_unit] = STATE(10785), [sym__top_level_item] = STATE(34), [sym_preproc_include] = STATE(34), [sym_preproc_def] = STATE(34), @@ -31686,30 +38132,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(34), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6542), - [sym_array_declarator] = STATE(6229), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8682), + [sym_array_declarator] = STATE(8469), [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(524), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(645), [sym__top_level_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym__top_level_expression_statement] = STATE(34), @@ -31723,38 +38169,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(34), [sym_continue_statement] = STATE(34), [sym_goto_statement] = STATE(34), - [sym_expression] = STATE(4838), - [sym__string] = STATE(4884), - [sym_conditional_expression] = STATE(4964), - [sym_assignment_expression] = STATE(4964), - [sym_pointer_expression] = STATE(3789), - [sym_unary_expression] = STATE(4964), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(4964), - [sym_cast_expression] = STATE(4964), - [sym_sizeof_expression] = STATE(4964), - [sym_alignof_expression] = STATE(4964), - [sym_offsetof_expression] = STATE(4964), - [sym_generic_expression] = STATE(4964), - [sym_subscript_expression] = STATE(3789), - [sym_call_expression] = STATE(3789), - [sym_gnu_asm_expression] = STATE(4964), - [sym_extension_expression] = STATE(4964), - [sym_field_expression] = STATE(3789), - [sym_compound_literal_expression] = STATE(4964), - [sym_parenthesized_expression] = STATE(3789), - [sym_char_literal] = STATE(4884), - [sym_concatenated_string] = STATE(4884), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(4964), + [sym_expression] = STATE(7176), + [sym__string] = STATE(7226), + [sym_conditional_expression] = STATE(7290), + [sym_assignment_expression] = STATE(7290), + [sym_pointer_expression] = STATE(5856), + [sym_unary_expression] = STATE(7290), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(7290), + [sym_cast_expression] = STATE(7290), + [sym_sizeof_expression] = STATE(7290), + [sym_alignof_expression] = STATE(7290), + [sym_offsetof_expression] = STATE(7290), + [sym_generic_expression] = STATE(7290), + [sym_subscript_expression] = STATE(5856), + [sym_call_expression] = STATE(5856), + [sym_gnu_asm_expression] = STATE(7290), + [sym_extension_expression] = STATE(7290), + [sym_field_expression] = STATE(5856), + [sym_compound_literal_expression] = STATE(7290), + [sym_parenthesized_expression] = STATE(5856), + [sym_char_literal] = STATE(7226), + [sym_concatenated_string] = STATE(7226), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(7290), [sym__empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1811), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2354), + [sym_dependent_type] = STATE(4714), [sym_module_declaration] = STATE(34), [sym_export_declaration] = STATE(34), [sym_import_declaration] = STATE(34), @@ -31762,49 +38208,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(34), [sym_template_declaration] = STATE(34), [sym_template_instantiation] = STATE(34), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1811), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2354), [sym_operator_cast_definition] = STATE(34), [sym_operator_cast_declaration] = STATE(34), [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4858), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(7272), [sym_namespace_definition] = STATE(34), [sym_namespace_alias_definition] = STATE(34), [sym_using_declaration] = STATE(34), [sym_alias_declaration] = STATE(34), [sym_static_assert_declaration] = STATE(34), + [sym_consteval_block_declaration] = STATE(34), [sym_concept_definition] = STATE(34), [sym_for_range_loop] = STATE(34), [sym_co_return_statement] = STATE(34), [sym_co_yield_statement] = STATE(34), [sym_throw_statement] = STATE(34), [sym_try_statement] = STATE(34), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(4964), - [sym_new_expression] = STATE(4964), - [sym_delete_expression] = STATE(4964), - [sym_requires_clause] = STATE(4964), - [sym_requires_expression] = STATE(4964), - [sym_lambda_expression] = STATE(4964), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(4964), - [sym_parameter_pack_expansion] = STATE(4964), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3624), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3789), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(7290), + [sym_new_expression] = STATE(7290), + [sym_delete_expression] = STATE(7290), + [sym_requires_clause] = STATE(7290), + [sym_requires_expression] = STATE(7290), + [sym_lambda_expression] = STATE(7290), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(7290), + [sym_parameter_pack_expansion] = STATE(7290), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5657), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_reflect_expression] = STATE(7290), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(7274), + [sym_expansion_statement] = STATE(34), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5856), [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1811), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2354), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -31864,225 +38317,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), + [anon_sym_consteval] = ACTIONS(69), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(115), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(121), - [sym_false] = ACTIONS(121), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_import] = ACTIONS(137), - [anon_sym_template] = ACTIONS(139), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(149), - [anon_sym_static_assert] = ACTIONS(151), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(119), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(125), + [sym_false] = ACTIONS(125), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(135), + [anon_sym_module] = ACTIONS(137), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(125), }, [STATE(2)] = { - [sym__block_item] = STATE(37), - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(59), + [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(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(59), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32091,14 +38553,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -32109,16 +38571,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(199), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -32135,225 +38597,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(3)] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(84), + [sym_preproc_include] = STATE(84), + [sym_preproc_def] = STATE(84), + [sym_preproc_function_def] = STATE(84), + [sym_preproc_call] = STATE(84), + [sym_preproc_if] = STATE(84), + [sym_preproc_ifdef] = STATE(84), + [sym_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(84), + [sym_namespace_alias_definition] = STATE(84), + [sym_using_declaration] = STATE(84), + [sym_alias_declaration] = STATE(84), + [sym_static_assert_declaration] = STATE(84), + [sym_consteval_block_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32362,14 +38833,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -32380,16 +38851,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(255), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -32406,225 +38877,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(4)] = { - [sym__block_item] = STATE(62), - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(62), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(61), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_consteval_block_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32633,14 +39113,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -32651,16 +39131,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -32677,225 +39157,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(5)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_consteval_block_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32904,14 +39393,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -32922,16 +39411,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(259), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -32948,225 +39437,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(6)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_consteval_block_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33175,14 +39673,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -33193,16 +39691,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -33219,225 +39717,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(7)] = { - [sym__block_item] = STATE(53), - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(53), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(53), - [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(53), - [sym_operator_cast_declaration] = STATE(53), - [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(51), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_consteval_block_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33446,14 +39953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -33464,16 +39971,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -33490,225 +39997,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(8)] = { - [sym__block_item] = STATE(66), - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(66), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_preproc_if] = STATE(65), + [sym_preproc_ifdef] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(65), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_consteval_block_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33717,14 +40233,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -33735,16 +40251,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -33761,225 +40277,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(9)] = { - [sym__block_item] = STATE(64), - [sym_preproc_include] = STATE(64), - [sym_preproc_def] = STATE(64), - [sym_preproc_function_def] = STATE(64), - [sym_preproc_call] = STATE(64), - [sym_preproc_if] = STATE(64), - [sym_preproc_ifdef] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(64), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(64), - [sym_namespace_alias_definition] = STATE(64), - [sym_using_declaration] = STATE(64), - [sym_alias_declaration] = STATE(64), - [sym_static_assert_declaration] = STATE(64), - [sym_concept_definition] = STATE(64), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_consteval_block_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33988,14 +40513,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -34006,16 +40531,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(267), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -34032,225 +40557,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(10)] = { - [sym__block_item] = STATE(66), - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(66), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_preproc_if] = STATE(65), + [sym_preproc_ifdef] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(65), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_consteval_block_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34259,14 +40793,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -34277,16 +40811,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -34303,225 +40837,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(11)] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(84), + [sym_preproc_include] = STATE(84), + [sym_preproc_def] = STATE(84), + [sym_preproc_function_def] = STATE(84), + [sym_preproc_call] = STATE(84), + [sym_preproc_if] = STATE(84), + [sym_preproc_ifdef] = STATE(84), + [sym_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(84), + [sym_namespace_alias_definition] = STATE(84), + [sym_using_declaration] = STATE(84), + [sym_alias_declaration] = STATE(84), + [sym_static_assert_declaration] = STATE(84), + [sym_consteval_block_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34530,14 +41073,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -34548,16 +41091,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -34574,225 +41117,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(12)] = { - [sym__block_item] = STATE(37), - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4327), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(167), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(59), + [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(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(59), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6427), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(179), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34801,14 +41353,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -34819,16 +41371,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(201), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -34845,82 +41397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(13)] = { [sym__block_item] = STATE(33), @@ -34930,141 +41484,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8309), - [sym_preproc_elif] = STATE(8309), - [sym_preproc_elifdef] = STATE(8309), + [sym_preproc_else] = STATE(10812), + [sym_preproc_elif] = STATE(10812), + [sym_preproc_elifdef] = STATE(10812), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35073,14 +41634,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -35091,7 +41652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -35099,7 +41660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -35116,81 +41677,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(14)] = { [sym__block_item] = STATE(27), @@ -35200,141 +41763,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(8585), - [sym_preproc_elif] = STATE(8585), - [sym_preproc_elifdef] = STATE(8585), + [sym_preproc_else] = STATE(11114), + [sym_preproc_elif] = STATE(11114), + [sym_preproc_elifdef] = STATE(11114), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(27), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(27), [sym_template_instantiation] = STATE(27), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(27), [sym_operator_cast_declaration] = STATE(27), [sym_constructor_or_destructor_definition] = STATE(27), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [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_consteval_block_declaration] = STATE(27), [sym_concept_definition] = STATE(27), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35343,14 +41913,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -35361,7 +41931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -35369,7 +41939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -35386,81 +41956,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(15)] = { [sym__block_item] = STATE(17), @@ -35470,141 +42042,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(8850), - [sym_preproc_elif] = STATE(8850), - [sym_preproc_elifdef] = STATE(8850), + [sym_preproc_else] = STATE(10511), + [sym_preproc_elif] = STATE(10511), + [sym_preproc_elifdef] = STATE(10511), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(17), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(17), [sym_template_instantiation] = STATE(17), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(17), [sym_operator_cast_declaration] = STATE(17), [sym_constructor_or_destructor_definition] = STATE(17), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [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_consteval_block_declaration] = STATE(17), [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35613,14 +42192,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -35631,7 +42210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -35639,7 +42218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -35656,81 +42235,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(16)] = { [sym__block_item] = STATE(13), @@ -35740,141 +42321,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(13), [sym_preproc_if] = STATE(13), [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(8451), - [sym_preproc_elif] = STATE(8451), - [sym_preproc_elifdef] = STATE(8451), + [sym_preproc_else] = STATE(11203), + [sym_preproc_elif] = STATE(11203), + [sym_preproc_elifdef] = STATE(11203), [sym_function_definition] = STATE(13), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(13), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(13), [sym_template_instantiation] = STATE(13), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(13), [sym_operator_cast_declaration] = STATE(13), [sym_constructor_or_destructor_definition] = STATE(13), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(13), [sym_namespace_alias_definition] = STATE(13), [sym_using_declaration] = STATE(13), [sym_alias_declaration] = STATE(13), [sym_static_assert_declaration] = STATE(13), + [sym_consteval_block_declaration] = STATE(13), [sym_concept_definition] = STATE(13), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35883,14 +42471,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -35901,7 +42489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -35909,7 +42497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -35926,81 +42514,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(17)] = { [sym__block_item] = STATE(33), @@ -36010,141 +42600,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8505), - [sym_preproc_elif] = STATE(8505), - [sym_preproc_elifdef] = STATE(8505), + [sym_preproc_else] = STATE(11210), + [sym_preproc_elif] = STATE(11210), + [sym_preproc_elifdef] = STATE(11210), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36153,14 +42750,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -36171,7 +42768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -36179,7 +42776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -36196,81 +42793,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(18)] = { [sym__block_item] = STATE(33), @@ -36280,141 +42879,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8339), - [sym_preproc_elif] = STATE(8339), - [sym_preproc_elifdef] = STATE(8339), + [sym_preproc_else] = STATE(11350), + [sym_preproc_elif] = STATE(11350), + [sym_preproc_elifdef] = STATE(11350), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36423,14 +43029,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -36441,7 +43047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -36449,7 +43055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -36466,81 +43072,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(19)] = { [sym__block_item] = STATE(20), @@ -36550,141 +43158,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(8930), - [sym_preproc_elif] = STATE(8930), - [sym_preproc_elifdef] = STATE(8930), + [sym_preproc_else] = STATE(10610), + [sym_preproc_elif] = STATE(10610), + [sym_preproc_elifdef] = STATE(10610), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(20), [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(20), [sym_operator_cast_declaration] = STATE(20), [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(20), [sym_namespace_alias_definition] = STATE(20), [sym_using_declaration] = STATE(20), [sym_alias_declaration] = STATE(20), [sym_static_assert_declaration] = STATE(20), + [sym_consteval_block_declaration] = STATE(20), [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36693,14 +43308,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -36711,7 +43326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -36719,7 +43334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -36736,81 +43351,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(20)] = { [sym__block_item] = STATE(33), @@ -36820,141 +43437,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8488), - [sym_preproc_elif] = STATE(8488), - [sym_preproc_elifdef] = STATE(8488), + [sym_preproc_else] = STATE(10869), + [sym_preproc_elif] = STATE(10869), + [sym_preproc_elifdef] = STATE(10869), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36963,14 +43587,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -36981,7 +43605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -36989,7 +43613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -37006,81 +43630,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(21)] = { [sym__block_item] = STATE(23), @@ -37090,141 +43716,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(23), [sym_preproc_if] = STATE(23), [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(8484), - [sym_preproc_elif] = STATE(8484), - [sym_preproc_elifdef] = STATE(8484), + [sym_preproc_else] = STATE(10863), + [sym_preproc_elif] = STATE(10863), + [sym_preproc_elifdef] = STATE(10863), [sym_function_definition] = STATE(23), [sym_declaration] = STATE(23), [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(23), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(23), [sym_template_instantiation] = STATE(23), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(23), [sym_operator_cast_declaration] = STATE(23), [sym_constructor_or_destructor_definition] = STATE(23), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [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_consteval_block_declaration] = STATE(23), [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37233,14 +43866,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -37251,7 +43884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -37259,7 +43892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -37276,81 +43909,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(22)] = { [sym__block_item] = STATE(18), @@ -37360,141 +43995,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(18), [sym_preproc_if] = STATE(18), [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(8215), - [sym_preproc_elif] = STATE(8215), - [sym_preproc_elifdef] = STATE(8215), + [sym_preproc_else] = STATE(10710), + [sym_preproc_elif] = STATE(10710), + [sym_preproc_elifdef] = STATE(10710), [sym_function_definition] = STATE(18), [sym_declaration] = STATE(18), [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(18), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(18), [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(18), [sym_operator_cast_declaration] = STATE(18), [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [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_consteval_block_declaration] = STATE(18), [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37503,14 +44145,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -37521,7 +44163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -37529,7 +44171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -37546,81 +44188,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(23)] = { [sym__block_item] = STATE(33), @@ -37630,141 +44274,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8776), - [sym_preproc_elif] = STATE(8776), - [sym_preproc_elifdef] = STATE(8776), + [sym_preproc_else] = STATE(11044), + [sym_preproc_elif] = STATE(11044), + [sym_preproc_elifdef] = STATE(11044), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37773,14 +44424,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -37791,7 +44442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -37799,7 +44450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -37816,81 +44467,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(24)] = { [sym__block_item] = STATE(26), @@ -37900,141 +44553,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(26), [sym_preproc_if] = STATE(26), [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(8368), - [sym_preproc_elif] = STATE(8368), - [sym_preproc_elifdef] = STATE(8368), + [sym_preproc_else] = STATE(11331), + [sym_preproc_elif] = STATE(11331), + [sym_preproc_elifdef] = STATE(11331), [sym_function_definition] = STATE(26), [sym_declaration] = STATE(26), [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(26), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(26), [sym_template_instantiation] = STATE(26), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(26), [sym_operator_cast_declaration] = STATE(26), [sym_constructor_or_destructor_definition] = STATE(26), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(26), [sym_namespace_alias_definition] = STATE(26), [sym_using_declaration] = STATE(26), [sym_alias_declaration] = STATE(26), [sym_static_assert_declaration] = STATE(26), + [sym_consteval_block_declaration] = STATE(26), [sym_concept_definition] = STATE(26), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38043,14 +44703,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -38061,7 +44721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -38069,7 +44729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -38086,81 +44746,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(25)] = { [sym__block_item] = STATE(28), @@ -38170,141 +44832,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(8798), - [sym_preproc_elif] = STATE(8798), - [sym_preproc_elifdef] = STATE(8798), + [sym_preproc_else] = STATE(10908), + [sym_preproc_elif] = STATE(10908), + [sym_preproc_elifdef] = STATE(10908), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), [sym_alias_declaration] = STATE(28), [sym_static_assert_declaration] = STATE(28), + [sym_consteval_block_declaration] = STATE(28), [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38313,14 +44982,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -38331,7 +45000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -38339,7 +45008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -38356,81 +45025,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(26)] = { [sym__block_item] = STATE(33), @@ -38440,141 +45111,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8808), - [sym_preproc_elif] = STATE(8808), - [sym_preproc_elifdef] = STATE(8808), + [sym_preproc_else] = STATE(10954), + [sym_preproc_elif] = STATE(10954), + [sym_preproc_elifdef] = STATE(10954), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38583,14 +45261,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -38601,7 +45279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -38609,7 +45287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -38626,81 +45304,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(27)] = { [sym__block_item] = STATE(33), @@ -38710,141 +45390,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8471), - [sym_preproc_elif] = STATE(8471), - [sym_preproc_elifdef] = STATE(8471), + [sym_preproc_else] = STATE(10939), + [sym_preproc_elif] = STATE(10939), + [sym_preproc_elifdef] = STATE(10939), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38853,14 +45540,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -38871,7 +45558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -38879,7 +45566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -38896,81 +45583,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(28)] = { [sym__block_item] = STATE(33), @@ -38980,141 +45669,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8249), - [sym_preproc_elif] = STATE(8249), - [sym_preproc_elifdef] = STATE(8249), + [sym_preproc_else] = STATE(11330), + [sym_preproc_elif] = STATE(11330), + [sym_preproc_elifdef] = STATE(11330), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39123,14 +45819,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -39141,7 +45837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39149,7 +45845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -39166,81 +45862,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(29)] = { [sym__block_item] = STATE(31), @@ -39250,141 +45948,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(31), [sym_preproc_if] = STATE(31), [sym_preproc_ifdef] = STATE(31), - [sym_preproc_else] = STATE(8979), - [sym_preproc_elif] = STATE(8979), - [sym_preproc_elifdef] = STATE(8979), + [sym_preproc_else] = STATE(10955), + [sym_preproc_elif] = STATE(10955), + [sym_preproc_elifdef] = STATE(10955), [sym_function_definition] = STATE(31), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(31), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(31), [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(31), [sym_operator_cast_declaration] = STATE(31), [sym_constructor_or_destructor_definition] = STATE(31), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(31), [sym_namespace_alias_definition] = STATE(31), [sym_using_declaration] = STATE(31), [sym_alias_declaration] = STATE(31), [sym_static_assert_declaration] = STATE(31), + [sym_consteval_block_declaration] = STATE(31), [sym_concept_definition] = STATE(31), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39393,14 +46098,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -39411,7 +46116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39419,7 +46124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -39436,81 +46141,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(30)] = { [sym__block_item] = STATE(32), @@ -39520,141 +46227,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(32), [sym_preproc_if] = STATE(32), [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(8641), - [sym_preproc_elif] = STATE(8641), - [sym_preproc_elifdef] = STATE(8641), + [sym_preproc_else] = STATE(10815), + [sym_preproc_elif] = STATE(10815), + [sym_preproc_elifdef] = STATE(10815), [sym_function_definition] = STATE(32), [sym_declaration] = STATE(32), [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(32), [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(32), [sym_operator_cast_declaration] = STATE(32), [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(32), [sym_namespace_alias_definition] = STATE(32), [sym_using_declaration] = STATE(32), [sym_alias_declaration] = STATE(32), [sym_static_assert_declaration] = STATE(32), + [sym_consteval_block_declaration] = STATE(32), [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39663,14 +46377,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -39681,7 +46395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39689,7 +46403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -39706,81 +46420,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(31)] = { [sym__block_item] = STATE(33), @@ -39790,141 +46506,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8698), - [sym_preproc_elif] = STATE(8698), - [sym_preproc_elifdef] = STATE(8698), + [sym_preproc_else] = STATE(10817), + [sym_preproc_elif] = STATE(10817), + [sym_preproc_elifdef] = STATE(10817), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39933,14 +46656,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -39951,7 +46674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39959,7 +46682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -39976,81 +46699,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(32)] = { [sym__block_item] = STATE(33), @@ -40060,141 +46785,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(33), [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(8408), - [sym_preproc_elif] = STATE(8408), - [sym_preproc_elifdef] = STATE(8408), + [sym_preproc_else] = STATE(11115), + [sym_preproc_elif] = STATE(11115), + [sym_preproc_elifdef] = STATE(11115), [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(267), - [aux_sym_preproc_include_token1] = ACTIONS(269), - [aux_sym_preproc_def_token1] = ACTIONS(271), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(275), + [aux_sym_preproc_include_token1] = ACTIONS(277), + [aux_sym_preproc_def_token1] = ACTIONS(279), + [aux_sym_preproc_if_token1] = ACTIONS(281), + [aux_sym_preproc_if_token2] = ACTIONS(389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(285), + [aux_sym_preproc_else_token1] = ACTIONS(287), + [aux_sym_preproc_elif_token1] = ACTIONS(289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(291), + [sym_preproc_directive] = ACTIONS(293), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40203,14 +46935,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(297), + [anon_sym_typedef] = ACTIONS(299), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(301), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), + [anon_sym_using] = ACTIONS(303), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -40221,7 +46953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -40229,7 +46961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), + [anon_sym_inline] = ACTIONS(307), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -40246,81 +46978,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(309), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(337), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_static_assert] = ACTIONS(345), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(33)] = { [sym__block_item] = STATE(33), @@ -40333,261 +47067,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6538), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8647), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(512), [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1849), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2409), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1849), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2409), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), [sym_alias_declaration] = STATE(33), [sym_static_assert_declaration] = STATE(33), + [sym_consteval_block_declaration] = STATE(33), [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1849), - [sym_identifier] = ACTIONS(381), - [aux_sym_preproc_include_token1] = ACTIONS(384), - [aux_sym_preproc_def_token1] = ACTIONS(387), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [aux_sym_preproc_if_token2] = ACTIONS(393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(395), - [aux_sym_preproc_else_token1] = ACTIONS(393), - [aux_sym_preproc_elif_token1] = ACTIONS(393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(393), - [aux_sym_preproc_elifdef_token2] = ACTIONS(393), - [sym_preproc_directive] = ACTIONS(398), - [anon_sym_LPAREN2] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_TILDE] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym___extension__] = ACTIONS(425), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_virtual] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(437), - [anon_sym___attribute] = ACTIONS(437), - [anon_sym_using] = ACTIONS(440), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(446), - [anon_sym___declspec] = ACTIONS(449), - [anon_sym___based] = ACTIONS(452), - [anon_sym___cdecl] = ACTIONS(455), - [anon_sym___clrcall] = ACTIONS(455), - [anon_sym___stdcall] = ACTIONS(455), - [anon_sym___fastcall] = ACTIONS(455), - [anon_sym___thiscall] = ACTIONS(455), - [anon_sym___vectorcall] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_signed] = ACTIONS(461), - [anon_sym_unsigned] = ACTIONS(461), - [anon_sym_long] = ACTIONS(461), - [anon_sym_short] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_static] = ACTIONS(467), - [anon_sym_register] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(470), - [anon_sym___inline] = ACTIONS(467), - [anon_sym___inline__] = ACTIONS(467), - [anon_sym___forceinline] = ACTIONS(467), - [anon_sym_thread_local] = ACTIONS(467), - [anon_sym___thread] = ACTIONS(467), - [anon_sym_const] = ACTIONS(473), - [anon_sym_constexpr] = ACTIONS(473), - [anon_sym_volatile] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(473), - [anon_sym___restrict__] = ACTIONS(473), - [anon_sym__Atomic] = ACTIONS(473), - [anon_sym__Noreturn] = ACTIONS(473), - [anon_sym_noreturn] = ACTIONS(473), - [anon_sym__Nonnull] = ACTIONS(473), - [anon_sym_mutable] = ACTIONS(473), - [anon_sym_constinit] = ACTIONS(473), - [anon_sym_consteval] = ACTIONS(473), - [anon_sym_alignas] = ACTIONS(476), - [anon_sym__Alignas] = ACTIONS(476), - [sym_primitive_type] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_class] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_union] = ACTIONS(491), - [anon_sym_if] = ACTIONS(494), - [anon_sym_switch] = ACTIONS(497), - [anon_sym_case] = ACTIONS(500), - [anon_sym_default] = ACTIONS(503), - [anon_sym_while] = ACTIONS(506), - [anon_sym_do] = ACTIONS(509), - [anon_sym_for] = ACTIONS(512), - [anon_sym_return] = ACTIONS(515), - [anon_sym_break] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(524), - [anon_sym___try] = ACTIONS(527), - [anon_sym___leave] = ACTIONS(530), - [anon_sym_not] = ACTIONS(410), - [anon_sym_compl] = ACTIONS(410), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_sizeof] = ACTIONS(536), - [anon_sym___alignof__] = ACTIONS(539), - [anon_sym___alignof] = ACTIONS(539), - [anon_sym__alignof] = ACTIONS(539), - [anon_sym_alignof] = ACTIONS(539), - [anon_sym__Alignof] = ACTIONS(539), - [anon_sym_offsetof] = ACTIONS(542), - [anon_sym__Generic] = ACTIONS(545), - [anon_sym_asm] = ACTIONS(548), - [anon_sym___asm__] = ACTIONS(548), - [anon_sym___asm] = ACTIONS(548), - [sym_number_literal] = ACTIONS(551), - [anon_sym_L_SQUOTE] = ACTIONS(554), - [anon_sym_u_SQUOTE] = ACTIONS(554), - [anon_sym_U_SQUOTE] = ACTIONS(554), - [anon_sym_u8_SQUOTE] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(554), - [anon_sym_L_DQUOTE] = ACTIONS(557), - [anon_sym_u_DQUOTE] = ACTIONS(557), - [anon_sym_U_DQUOTE] = ACTIONS(557), - [anon_sym_u8_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [anon_sym_NULL] = ACTIONS(563), - [anon_sym_nullptr] = ACTIONS(563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(566), - [anon_sym_decltype] = ACTIONS(569), - [anon_sym_explicit] = ACTIONS(572), - [anon_sym_typename] = ACTIONS(575), - [anon_sym_template] = ACTIONS(578), - [anon_sym_operator] = ACTIONS(581), - [anon_sym_try] = ACTIONS(584), - [anon_sym_delete] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_namespace] = ACTIONS(593), - [anon_sym_static_assert] = ACTIONS(596), - [anon_sym_concept] = ACTIONS(599), - [anon_sym_co_return] = ACTIONS(602), - [anon_sym_co_yield] = ACTIONS(605), - [anon_sym_R_DQUOTE] = ACTIONS(608), - [anon_sym_LR_DQUOTE] = ACTIONS(608), - [anon_sym_uR_DQUOTE] = ACTIONS(608), - [anon_sym_UR_DQUOTE] = ACTIONS(608), - [anon_sym_u8R_DQUOTE] = ACTIONS(608), - [anon_sym_co_await] = ACTIONS(611), - [anon_sym_new] = ACTIONS(614), - [anon_sym_requires] = ACTIONS(617), - [sym_this] = ACTIONS(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(391), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(397), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(403), + [aux_sym_preproc_elif_token1] = ACTIONS(403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(403), + [sym_preproc_directive] = ACTIONS(408), + [anon_sym_LPAREN2] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym___extension__] = ACTIONS(435), + [anon_sym_typedef] = ACTIONS(438), + [anon_sym_virtual] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(444), + [anon_sym___attribute__] = ACTIONS(447), + [anon_sym___attribute] = ACTIONS(447), + [anon_sym_using] = ACTIONS(450), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(456), + [anon_sym___declspec] = ACTIONS(459), + [anon_sym___based] = ACTIONS(462), + [anon_sym___cdecl] = ACTIONS(465), + [anon_sym___clrcall] = ACTIONS(465), + [anon_sym___stdcall] = ACTIONS(465), + [anon_sym___fastcall] = ACTIONS(465), + [anon_sym___thiscall] = ACTIONS(465), + [anon_sym___vectorcall] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_signed] = ACTIONS(471), + [anon_sym_unsigned] = ACTIONS(471), + [anon_sym_long] = ACTIONS(471), + [anon_sym_short] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_static] = ACTIONS(477), + [anon_sym_register] = ACTIONS(477), + [anon_sym_inline] = ACTIONS(480), + [anon_sym___inline] = ACTIONS(477), + [anon_sym___inline__] = ACTIONS(477), + [anon_sym___forceinline] = ACTIONS(477), + [anon_sym_thread_local] = ACTIONS(477), + [anon_sym___thread] = ACTIONS(477), + [anon_sym_const] = ACTIONS(483), + [anon_sym_constexpr] = ACTIONS(483), + [anon_sym_volatile] = ACTIONS(483), + [anon_sym_restrict] = ACTIONS(483), + [anon_sym___restrict__] = ACTIONS(483), + [anon_sym__Atomic] = ACTIONS(483), + [anon_sym__Noreturn] = ACTIONS(483), + [anon_sym_noreturn] = ACTIONS(483), + [anon_sym__Nonnull] = ACTIONS(483), + [anon_sym_mutable] = ACTIONS(483), + [anon_sym_constinit] = ACTIONS(483), + [anon_sym_consteval] = ACTIONS(486), + [anon_sym_alignas] = ACTIONS(489), + [anon_sym__Alignas] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_class] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(501), + [anon_sym_union] = ACTIONS(504), + [anon_sym_if] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_case] = ACTIONS(513), + [anon_sym_default] = ACTIONS(516), + [anon_sym_while] = ACTIONS(519), + [anon_sym_do] = ACTIONS(522), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(528), + [anon_sym_break] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_goto] = ACTIONS(537), + [anon_sym___try] = ACTIONS(540), + [anon_sym___leave] = ACTIONS(543), + [anon_sym_not] = ACTIONS(420), + [anon_sym_compl] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_sizeof] = ACTIONS(549), + [anon_sym___alignof__] = ACTIONS(552), + [anon_sym___alignof] = ACTIONS(552), + [anon_sym__alignof] = ACTIONS(552), + [anon_sym_alignof] = ACTIONS(552), + [anon_sym__Alignof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_typename] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(564), + [anon_sym___asm__] = ACTIONS(564), + [anon_sym___asm] = ACTIONS(564), + [sym_number_literal] = ACTIONS(567), + [anon_sym_L_SQUOTE] = ACTIONS(570), + [anon_sym_u_SQUOTE] = ACTIONS(570), + [anon_sym_U_SQUOTE] = ACTIONS(570), + [anon_sym_u8_SQUOTE] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_L_DQUOTE] = ACTIONS(573), + [anon_sym_u_DQUOTE] = ACTIONS(573), + [anon_sym_U_DQUOTE] = ACTIONS(573), + [anon_sym_u8_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [anon_sym_NULL] = ACTIONS(579), + [anon_sym_nullptr] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(582), + [anon_sym_decltype] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_template] = ACTIONS(591), + [anon_sym_operator] = ACTIONS(594), + [anon_sym_try] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(606), + [anon_sym_static_assert] = ACTIONS(609), + [anon_sym_concept] = ACTIONS(612), + [anon_sym_co_return] = ACTIONS(615), + [anon_sym_co_yield] = ACTIONS(618), + [anon_sym_R_DQUOTE] = ACTIONS(621), + [anon_sym_LR_DQUOTE] = ACTIONS(621), + [anon_sym_uR_DQUOTE] = ACTIONS(621), + [anon_sym_UR_DQUOTE] = ACTIONS(621), + [anon_sym_u8R_DQUOTE] = ACTIONS(621), + [anon_sym_co_await] = ACTIONS(624), + [anon_sym_new] = ACTIONS(627), + [anon_sym_requires] = ACTIONS(630), + [anon_sym_CARET_CARET] = ACTIONS(633), + [anon_sym_LBRACK_COLON] = ACTIONS(636), + [sym_this] = ACTIONS(576), }, [STATE(34)] = { [sym__top_level_item] = STATE(35), @@ -40600,30 +47343,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6542), - [sym_array_declarator] = STATE(6229), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8682), + [sym_array_declarator] = STATE(8469), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(524), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(645), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40637,38 +47380,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym_expression] = STATE(4838), - [sym__string] = STATE(4884), - [sym_conditional_expression] = STATE(4964), - [sym_assignment_expression] = STATE(4964), - [sym_pointer_expression] = STATE(3789), - [sym_unary_expression] = STATE(4964), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(4964), - [sym_cast_expression] = STATE(4964), - [sym_sizeof_expression] = STATE(4964), - [sym_alignof_expression] = STATE(4964), - [sym_offsetof_expression] = STATE(4964), - [sym_generic_expression] = STATE(4964), - [sym_subscript_expression] = STATE(3789), - [sym_call_expression] = STATE(3789), - [sym_gnu_asm_expression] = STATE(4964), - [sym_extension_expression] = STATE(4964), - [sym_field_expression] = STATE(3789), - [sym_compound_literal_expression] = STATE(4964), - [sym_parenthesized_expression] = STATE(3789), - [sym_char_literal] = STATE(4884), - [sym_concatenated_string] = STATE(4884), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(4964), + [sym_expression] = STATE(7176), + [sym__string] = STATE(7226), + [sym_conditional_expression] = STATE(7290), + [sym_assignment_expression] = STATE(7290), + [sym_pointer_expression] = STATE(5856), + [sym_unary_expression] = STATE(7290), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(7290), + [sym_cast_expression] = STATE(7290), + [sym_sizeof_expression] = STATE(7290), + [sym_alignof_expression] = STATE(7290), + [sym_offsetof_expression] = STATE(7290), + [sym_generic_expression] = STATE(7290), + [sym_subscript_expression] = STATE(5856), + [sym_call_expression] = STATE(5856), + [sym_gnu_asm_expression] = STATE(7290), + [sym_extension_expression] = STATE(7290), + [sym_field_expression] = STATE(5856), + [sym_compound_literal_expression] = STATE(7290), + [sym_parenthesized_expression] = STATE(5856), + [sym_char_literal] = STATE(7226), + [sym_concatenated_string] = STATE(7226), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(7290), [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1811), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2354), + [sym_dependent_type] = STATE(4714), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40676,50 +47419,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(35), [sym_template_declaration] = STATE(35), [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1811), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2354), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4858), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(7272), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), [sym_alias_declaration] = STATE(35), [sym_static_assert_declaration] = STATE(35), + [sym_consteval_block_declaration] = STATE(35), [sym_concept_definition] = STATE(35), [sym_for_range_loop] = STATE(35), [sym_co_return_statement] = STATE(35), [sym_co_yield_statement] = STATE(35), [sym_throw_statement] = STATE(35), [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(4964), - [sym_new_expression] = STATE(4964), - [sym_delete_expression] = STATE(4964), - [sym_requires_clause] = STATE(4964), - [sym_requires_expression] = STATE(4964), - [sym_lambda_expression] = STATE(4964), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(4964), - [sym_parameter_pack_expansion] = STATE(4964), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3624), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3789), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(7290), + [sym_new_expression] = STATE(7290), + [sym_delete_expression] = STATE(7290), + [sym_requires_clause] = STATE(7290), + [sym_requires_expression] = STATE(7290), + [sym_lambda_expression] = STATE(7290), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(7290), + [sym_parameter_pack_expansion] = STATE(7290), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5657), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_reflect_expression] = STATE(7290), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(7274), + [sym_expansion_statement] = STATE(35), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5856), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1811), - [ts_builtin_sym_end] = ACTIONS(620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2354), + [ts_builtin_sym_end] = ACTIONS(639), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -40778,82 +47528,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), + [anon_sym_consteval] = ACTIONS(69), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(115), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(121), - [sym_false] = ACTIONS(121), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(133), - [anon_sym_module] = ACTIONS(135), - [anon_sym_import] = ACTIONS(137), - [anon_sym_template] = ACTIONS(139), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(149), - [anon_sym_static_assert] = ACTIONS(151), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(119), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(125), + [sym_false] = ACTIONS(125), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(135), + [anon_sym_module] = ACTIONS(137), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(125), }, [STATE(35)] = { [sym__top_level_item] = STATE(35), @@ -40866,30 +47618,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6542), - [sym_array_declarator] = STATE(6229), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8682), + [sym_array_declarator] = STATE(8469), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(524), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(645), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40903,38 +47655,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym_expression] = STATE(4838), - [sym__string] = STATE(4884), - [sym_conditional_expression] = STATE(4964), - [sym_assignment_expression] = STATE(4964), - [sym_pointer_expression] = STATE(3789), - [sym_unary_expression] = STATE(4964), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(4964), - [sym_cast_expression] = STATE(4964), - [sym_sizeof_expression] = STATE(4964), - [sym_alignof_expression] = STATE(4964), - [sym_offsetof_expression] = STATE(4964), - [sym_generic_expression] = STATE(4964), - [sym_subscript_expression] = STATE(3789), - [sym_call_expression] = STATE(3789), - [sym_gnu_asm_expression] = STATE(4964), - [sym_extension_expression] = STATE(4964), - [sym_field_expression] = STATE(3789), - [sym_compound_literal_expression] = STATE(4964), - [sym_parenthesized_expression] = STATE(3789), - [sym_char_literal] = STATE(4884), - [sym_concatenated_string] = STATE(4884), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(4964), + [sym_expression] = STATE(7176), + [sym__string] = STATE(7226), + [sym_conditional_expression] = STATE(7290), + [sym_assignment_expression] = STATE(7290), + [sym_pointer_expression] = STATE(5856), + [sym_unary_expression] = STATE(7290), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(7290), + [sym_cast_expression] = STATE(7290), + [sym_sizeof_expression] = STATE(7290), + [sym_alignof_expression] = STATE(7290), + [sym_offsetof_expression] = STATE(7290), + [sym_generic_expression] = STATE(7290), + [sym_subscript_expression] = STATE(5856), + [sym_call_expression] = STATE(5856), + [sym_gnu_asm_expression] = STATE(7290), + [sym_extension_expression] = STATE(7290), + [sym_field_expression] = STATE(5856), + [sym_compound_literal_expression] = STATE(7290), + [sym_parenthesized_expression] = STATE(5856), + [sym_char_literal] = STATE(7226), + [sym_concatenated_string] = STATE(7226), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(7290), [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1811), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2354), + [sym_dependent_type] = STATE(4714), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40942,320 +47694,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(35), [sym_template_declaration] = STATE(35), [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1811), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2354), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4858), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(7272), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), [sym_alias_declaration] = STATE(35), [sym_static_assert_declaration] = STATE(35), + [sym_consteval_block_declaration] = STATE(35), [sym_concept_definition] = STATE(35), [sym_for_range_loop] = STATE(35), [sym_co_return_statement] = STATE(35), [sym_co_yield_statement] = STATE(35), [sym_throw_statement] = STATE(35), [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(4964), - [sym_new_expression] = STATE(4964), - [sym_delete_expression] = STATE(4964), - [sym_requires_clause] = STATE(4964), - [sym_requires_expression] = STATE(4964), - [sym_lambda_expression] = STATE(4964), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(4964), - [sym_parameter_pack_expansion] = STATE(4964), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3624), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3789), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(7290), + [sym_new_expression] = STATE(7290), + [sym_delete_expression] = STATE(7290), + [sym_requires_clause] = STATE(7290), + [sym_requires_expression] = STATE(7290), + [sym_lambda_expression] = STATE(7290), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(7290), + [sym_parameter_pack_expansion] = STATE(7290), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5657), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_reflect_expression] = STATE(7290), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(7274), + [sym_expansion_statement] = STATE(35), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5856), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1811), - [ts_builtin_sym_end] = ACTIONS(622), - [sym_identifier] = ACTIONS(624), - [aux_sym_preproc_include_token1] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(630), - [aux_sym_preproc_if_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(636), - [sym_preproc_directive] = ACTIONS(639), - [anon_sym_LPAREN2] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym___extension__] = ACTIONS(666), - [anon_sym_typedef] = ACTIONS(669), - [anon_sym_virtual] = ACTIONS(672), - [anon_sym_extern] = ACTIONS(675), - [anon_sym___attribute__] = ACTIONS(678), - [anon_sym___attribute] = ACTIONS(678), - [anon_sym_using] = ACTIONS(681), - [anon_sym_COLON_COLON] = ACTIONS(684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(687), - [anon_sym___declspec] = ACTIONS(690), - [anon_sym___based] = ACTIONS(693), - [anon_sym___cdecl] = ACTIONS(696), - [anon_sym___clrcall] = ACTIONS(696), - [anon_sym___stdcall] = ACTIONS(696), - [anon_sym___fastcall] = ACTIONS(696), - [anon_sym___thiscall] = ACTIONS(696), - [anon_sym___vectorcall] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_signed] = ACTIONS(702), - [anon_sym_unsigned] = ACTIONS(702), - [anon_sym_long] = ACTIONS(702), - [anon_sym_short] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_static] = ACTIONS(708), - [anon_sym_register] = ACTIONS(708), - [anon_sym_inline] = ACTIONS(711), - [anon_sym___inline] = ACTIONS(708), - [anon_sym___inline__] = ACTIONS(708), - [anon_sym___forceinline] = ACTIONS(708), - [anon_sym_thread_local] = ACTIONS(708), - [anon_sym___thread] = ACTIONS(708), - [anon_sym_const] = ACTIONS(714), - [anon_sym_constexpr] = ACTIONS(714), - [anon_sym_volatile] = ACTIONS(714), - [anon_sym_restrict] = ACTIONS(714), - [anon_sym___restrict__] = ACTIONS(714), - [anon_sym__Atomic] = ACTIONS(714), - [anon_sym__Noreturn] = ACTIONS(714), - [anon_sym_noreturn] = ACTIONS(714), - [anon_sym__Nonnull] = ACTIONS(714), - [anon_sym_mutable] = ACTIONS(714), - [anon_sym_constinit] = ACTIONS(714), - [anon_sym_consteval] = ACTIONS(714), - [anon_sym_alignas] = ACTIONS(717), - [anon_sym__Alignas] = ACTIONS(717), - [sym_primitive_type] = ACTIONS(720), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_class] = ACTIONS(726), - [anon_sym_struct] = ACTIONS(729), - [anon_sym_union] = ACTIONS(732), - [anon_sym_if] = ACTIONS(735), - [anon_sym_switch] = ACTIONS(738), - [anon_sym_case] = ACTIONS(741), - [anon_sym_default] = ACTIONS(744), - [anon_sym_while] = ACTIONS(747), - [anon_sym_do] = ACTIONS(750), - [anon_sym_for] = ACTIONS(753), - [anon_sym_return] = ACTIONS(756), - [anon_sym_break] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(762), - [anon_sym_goto] = ACTIONS(765), - [anon_sym_not] = ACTIONS(651), - [anon_sym_compl] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_sizeof] = ACTIONS(771), - [anon_sym___alignof__] = ACTIONS(774), - [anon_sym___alignof] = ACTIONS(774), - [anon_sym__alignof] = ACTIONS(774), - [anon_sym_alignof] = ACTIONS(774), - [anon_sym__Alignof] = ACTIONS(774), - [anon_sym_offsetof] = ACTIONS(777), - [anon_sym__Generic] = ACTIONS(780), - [anon_sym_asm] = ACTIONS(783), - [anon_sym___asm__] = ACTIONS(783), - [anon_sym___asm] = ACTIONS(783), - [sym_number_literal] = ACTIONS(786), - [anon_sym_L_SQUOTE] = ACTIONS(789), - [anon_sym_u_SQUOTE] = ACTIONS(789), - [anon_sym_U_SQUOTE] = ACTIONS(789), - [anon_sym_u8_SQUOTE] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(789), - [anon_sym_L_DQUOTE] = ACTIONS(792), - [anon_sym_u_DQUOTE] = ACTIONS(792), - [anon_sym_U_DQUOTE] = ACTIONS(792), - [anon_sym_u8_DQUOTE] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(792), - [sym_true] = ACTIONS(795), - [sym_false] = ACTIONS(795), - [anon_sym_NULL] = ACTIONS(798), - [anon_sym_nullptr] = ACTIONS(798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(801), - [anon_sym_decltype] = ACTIONS(804), - [anon_sym_explicit] = ACTIONS(807), - [anon_sym_typename] = ACTIONS(810), - [anon_sym_export] = ACTIONS(813), - [anon_sym_module] = ACTIONS(816), - [anon_sym_import] = ACTIONS(819), - [anon_sym_template] = ACTIONS(822), - [anon_sym_operator] = ACTIONS(825), - [anon_sym_try] = ACTIONS(828), - [anon_sym_delete] = ACTIONS(831), - [anon_sym_throw] = ACTIONS(834), - [anon_sym_namespace] = ACTIONS(837), - [anon_sym_static_assert] = ACTIONS(840), - [anon_sym_concept] = ACTIONS(843), - [anon_sym_co_return] = ACTIONS(846), - [anon_sym_co_yield] = ACTIONS(849), - [anon_sym_R_DQUOTE] = ACTIONS(852), - [anon_sym_LR_DQUOTE] = ACTIONS(852), - [anon_sym_uR_DQUOTE] = ACTIONS(852), - [anon_sym_UR_DQUOTE] = ACTIONS(852), - [anon_sym_u8R_DQUOTE] = ACTIONS(852), - [anon_sym_co_await] = ACTIONS(855), - [anon_sym_new] = ACTIONS(858), - [anon_sym_requires] = ACTIONS(861), - [sym_this] = ACTIONS(795), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2354), + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [aux_sym_preproc_include_token1] = ACTIONS(646), + [aux_sym_preproc_def_token1] = ACTIONS(649), + [aux_sym_preproc_if_token1] = ACTIONS(652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(655), + [sym_preproc_directive] = ACTIONS(658), + [anon_sym_LPAREN2] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym___extension__] = ACTIONS(685), + [anon_sym_typedef] = ACTIONS(688), + [anon_sym_virtual] = ACTIONS(691), + [anon_sym_extern] = ACTIONS(694), + [anon_sym___attribute__] = ACTIONS(697), + [anon_sym___attribute] = ACTIONS(697), + [anon_sym_using] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(706), + [anon_sym___declspec] = ACTIONS(709), + [anon_sym___based] = ACTIONS(712), + [anon_sym___cdecl] = ACTIONS(715), + [anon_sym___clrcall] = ACTIONS(715), + [anon_sym___stdcall] = ACTIONS(715), + [anon_sym___fastcall] = ACTIONS(715), + [anon_sym___thiscall] = ACTIONS(715), + [anon_sym___vectorcall] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_signed] = ACTIONS(721), + [anon_sym_unsigned] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_short] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_static] = ACTIONS(727), + [anon_sym_register] = ACTIONS(727), + [anon_sym_inline] = ACTIONS(730), + [anon_sym___inline] = ACTIONS(727), + [anon_sym___inline__] = ACTIONS(727), + [anon_sym___forceinline] = ACTIONS(727), + [anon_sym_thread_local] = ACTIONS(727), + [anon_sym___thread] = ACTIONS(727), + [anon_sym_const] = ACTIONS(733), + [anon_sym_constexpr] = ACTIONS(733), + [anon_sym_volatile] = ACTIONS(733), + [anon_sym_restrict] = ACTIONS(733), + [anon_sym___restrict__] = ACTIONS(733), + [anon_sym__Atomic] = ACTIONS(733), + [anon_sym__Noreturn] = ACTIONS(733), + [anon_sym_noreturn] = ACTIONS(733), + [anon_sym__Nonnull] = ACTIONS(733), + [anon_sym_mutable] = ACTIONS(733), + [anon_sym_constinit] = ACTIONS(733), + [anon_sym_consteval] = ACTIONS(736), + [anon_sym_alignas] = ACTIONS(739), + [anon_sym__Alignas] = ACTIONS(739), + [sym_primitive_type] = ACTIONS(742), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_class] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(751), + [anon_sym_union] = ACTIONS(754), + [anon_sym_if] = ACTIONS(757), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_case] = ACTIONS(763), + [anon_sym_default] = ACTIONS(766), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(772), + [anon_sym_for] = ACTIONS(775), + [anon_sym_return] = ACTIONS(778), + [anon_sym_break] = ACTIONS(781), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_goto] = ACTIONS(787), + [anon_sym_not] = ACTIONS(670), + [anon_sym_compl] = ACTIONS(670), + [anon_sym_DASH_DASH] = ACTIONS(790), + [anon_sym_PLUS_PLUS] = ACTIONS(790), + [anon_sym_sizeof] = ACTIONS(793), + [anon_sym___alignof__] = ACTIONS(796), + [anon_sym___alignof] = ACTIONS(796), + [anon_sym__alignof] = ACTIONS(796), + [anon_sym_alignof] = ACTIONS(796), + [anon_sym__Alignof] = ACTIONS(796), + [anon_sym_offsetof] = ACTIONS(799), + [anon_sym__Generic] = ACTIONS(802), + [anon_sym_typename] = ACTIONS(805), + [anon_sym_asm] = ACTIONS(808), + [anon_sym___asm__] = ACTIONS(808), + [anon_sym___asm] = ACTIONS(808), + [sym_number_literal] = ACTIONS(811), + [anon_sym_L_SQUOTE] = ACTIONS(814), + [anon_sym_u_SQUOTE] = ACTIONS(814), + [anon_sym_U_SQUOTE] = ACTIONS(814), + [anon_sym_u8_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_L_DQUOTE] = ACTIONS(817), + [anon_sym_u_DQUOTE] = ACTIONS(817), + [anon_sym_U_DQUOTE] = ACTIONS(817), + [anon_sym_u8_DQUOTE] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [sym_true] = ACTIONS(820), + [sym_false] = ACTIONS(820), + [anon_sym_NULL] = ACTIONS(823), + [anon_sym_nullptr] = ACTIONS(823), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(826), + [anon_sym_decltype] = ACTIONS(829), + [anon_sym_explicit] = ACTIONS(832), + [anon_sym_export] = ACTIONS(835), + [anon_sym_module] = ACTIONS(838), + [anon_sym_import] = ACTIONS(841), + [anon_sym_template] = ACTIONS(844), + [anon_sym_operator] = ACTIONS(847), + [anon_sym_try] = ACTIONS(850), + [anon_sym_delete] = ACTIONS(853), + [anon_sym_throw] = ACTIONS(856), + [anon_sym_namespace] = ACTIONS(859), + [anon_sym_static_assert] = ACTIONS(862), + [anon_sym_concept] = ACTIONS(865), + [anon_sym_co_return] = ACTIONS(868), + [anon_sym_co_yield] = ACTIONS(871), + [anon_sym_R_DQUOTE] = ACTIONS(874), + [anon_sym_LR_DQUOTE] = ACTIONS(874), + [anon_sym_uR_DQUOTE] = ACTIONS(874), + [anon_sym_UR_DQUOTE] = ACTIONS(874), + [anon_sym_u8R_DQUOTE] = ACTIONS(874), + [anon_sym_co_await] = ACTIONS(877), + [anon_sym_new] = ACTIONS(880), + [anon_sym_requires] = ACTIONS(883), + [anon_sym_CARET_CARET] = ACTIONS(886), + [anon_sym_LBRACK_COLON] = ACTIONS(889), + [sym_this] = ACTIONS(820), }, [STATE(36)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_consteval_block_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41264,14 +48032,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41282,8 +48050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(896), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41291,7 +48059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41308,217 +48076,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(37)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6279), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2620), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8706), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(652), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4324), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(859), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2413), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(9049), + [sym__constructor_specifiers] = STATE(2413), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_consteval_block_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9049), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(898), + [aux_sym_preproc_include_token1] = ACTIONS(901), + [aux_sym_preproc_def_token1] = ACTIONS(904), + [aux_sym_preproc_if_token1] = ACTIONS(907), + [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym___extension__] = ACTIONS(919), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_virtual] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(925), + [anon_sym___attribute__] = ACTIONS(447), + [anon_sym___attribute] = ACTIONS(447), + [anon_sym_using] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(456), + [anon_sym___declspec] = ACTIONS(459), + [anon_sym___based] = ACTIONS(462), + [anon_sym___cdecl] = ACTIONS(465), + [anon_sym___clrcall] = ACTIONS(465), + [anon_sym___stdcall] = ACTIONS(465), + [anon_sym___fastcall] = ACTIONS(465), + [anon_sym___thiscall] = ACTIONS(465), + [anon_sym___vectorcall] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_signed] = ACTIONS(471), + [anon_sym_unsigned] = ACTIONS(471), + [anon_sym_long] = ACTIONS(471), + [anon_sym_short] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_static] = ACTIONS(477), + [anon_sym_register] = ACTIONS(477), + [anon_sym_inline] = ACTIONS(934), + [anon_sym___inline] = ACTIONS(477), + [anon_sym___inline__] = ACTIONS(477), + [anon_sym___forceinline] = ACTIONS(477), + [anon_sym_thread_local] = ACTIONS(477), + [anon_sym___thread] = ACTIONS(477), + [anon_sym_const] = ACTIONS(483), + [anon_sym_constexpr] = ACTIONS(483), + [anon_sym_volatile] = ACTIONS(483), + [anon_sym_restrict] = ACTIONS(483), + [anon_sym___restrict__] = ACTIONS(483), + [anon_sym__Atomic] = ACTIONS(483), + [anon_sym__Noreturn] = ACTIONS(483), + [anon_sym_noreturn] = ACTIONS(483), + [anon_sym__Nonnull] = ACTIONS(483), + [anon_sym_mutable] = ACTIONS(483), + [anon_sym_constinit] = ACTIONS(483), + [anon_sym_consteval] = ACTIONS(937), + [anon_sym_alignas] = ACTIONS(489), + [anon_sym__Alignas] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_class] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(501), + [anon_sym_union] = ACTIONS(504), + [anon_sym_if] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(949), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(955), + [anon_sym_for] = ACTIONS(958), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_goto] = ACTIONS(970), + [anon_sym___try] = ACTIONS(973), + [anon_sym___leave] = ACTIONS(976), + [anon_sym_not] = ACTIONS(420), + [anon_sym_compl] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_sizeof] = ACTIONS(549), + [anon_sym___alignof__] = ACTIONS(552), + [anon_sym___alignof] = ACTIONS(552), + [anon_sym__alignof] = ACTIONS(552), + [anon_sym_alignof] = ACTIONS(552), + [anon_sym__Alignof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_typename] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(564), + [anon_sym___asm__] = ACTIONS(564), + [anon_sym___asm] = ACTIONS(564), + [sym_number_literal] = ACTIONS(567), + [anon_sym_L_SQUOTE] = ACTIONS(570), + [anon_sym_u_SQUOTE] = ACTIONS(570), + [anon_sym_U_SQUOTE] = ACTIONS(570), + [anon_sym_u8_SQUOTE] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_L_DQUOTE] = ACTIONS(573), + [anon_sym_u_DQUOTE] = ACTIONS(573), + [anon_sym_U_DQUOTE] = ACTIONS(573), + [anon_sym_u8_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [anon_sym_NULL] = ACTIONS(579), + [anon_sym_nullptr] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(582), + [anon_sym_decltype] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_template] = ACTIONS(979), + [anon_sym_operator] = ACTIONS(594), + [anon_sym_try] = ACTIONS(982), + [anon_sym_delete] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(985), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_static_assert] = ACTIONS(991), + [anon_sym_concept] = ACTIONS(994), + [anon_sym_co_return] = ACTIONS(997), + [anon_sym_co_yield] = ACTIONS(1000), + [anon_sym_R_DQUOTE] = ACTIONS(621), + [anon_sym_LR_DQUOTE] = ACTIONS(621), + [anon_sym_uR_DQUOTE] = ACTIONS(621), + [anon_sym_UR_DQUOTE] = ACTIONS(621), + [anon_sym_u8R_DQUOTE] = ACTIONS(621), + [anon_sym_co_await] = ACTIONS(624), + [anon_sym_new] = ACTIONS(627), + [anon_sym_requires] = ACTIONS(630), + [anon_sym_CARET_CARET] = ACTIONS(633), + [anon_sym_LBRACK_COLON] = ACTIONS(636), + [sym_this] = ACTIONS(576), + }, + [STATE(38)] = { + [sym__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_consteval_block_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41527,14 +48576,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41545,8 +48594,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1003), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41554,7 +48603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41571,217 +48620,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(38)] = { - [sym__block_item] = STATE(62), - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(62), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(39)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41790,14 +48848,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41808,8 +48866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1005), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41817,7 +48875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41834,480 +48892,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(39)] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4811), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1958), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6547), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(536), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2887), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(744), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1854), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(7063), - [sym__constructor_specifiers] = STATE(1854), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(39), - [sym_namespace_alias_definition] = STATE(39), - [sym_using_declaration] = STATE(39), - [sym_alias_declaration] = STATE(39), - [sym_static_assert_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7063), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(141), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1854), - [sym_identifier] = ACTIONS(874), - [aux_sym_preproc_include_token1] = ACTIONS(877), - [aux_sym_preproc_def_token1] = ACTIONS(880), - [aux_sym_preproc_if_token1] = ACTIONS(883), - [aux_sym_preproc_if_token2] = ACTIONS(393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(886), - [sym_preproc_directive] = ACTIONS(889), - [anon_sym_LPAREN2] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_TILDE] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(892), - [anon_sym___extension__] = ACTIONS(895), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_virtual] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(901), - [anon_sym___attribute__] = ACTIONS(437), - [anon_sym___attribute] = ACTIONS(437), - [anon_sym_using] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(446), - [anon_sym___declspec] = ACTIONS(449), - [anon_sym___based] = ACTIONS(452), - [anon_sym___cdecl] = ACTIONS(455), - [anon_sym___clrcall] = ACTIONS(455), - [anon_sym___stdcall] = ACTIONS(455), - [anon_sym___fastcall] = ACTIONS(455), - [anon_sym___thiscall] = ACTIONS(455), - [anon_sym___vectorcall] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_signed] = ACTIONS(461), - [anon_sym_unsigned] = ACTIONS(461), - [anon_sym_long] = ACTIONS(461), - [anon_sym_short] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_static] = ACTIONS(467), - [anon_sym_register] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(910), - [anon_sym___inline] = ACTIONS(467), - [anon_sym___inline__] = ACTIONS(467), - [anon_sym___forceinline] = ACTIONS(467), - [anon_sym_thread_local] = ACTIONS(467), - [anon_sym___thread] = ACTIONS(467), - [anon_sym_const] = ACTIONS(473), - [anon_sym_constexpr] = ACTIONS(473), - [anon_sym_volatile] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(473), - [anon_sym___restrict__] = ACTIONS(473), - [anon_sym__Atomic] = ACTIONS(473), - [anon_sym__Noreturn] = ACTIONS(473), - [anon_sym_noreturn] = ACTIONS(473), - [anon_sym__Nonnull] = ACTIONS(473), - [anon_sym_mutable] = ACTIONS(473), - [anon_sym_constinit] = ACTIONS(473), - [anon_sym_consteval] = ACTIONS(473), - [anon_sym_alignas] = ACTIONS(476), - [anon_sym__Alignas] = ACTIONS(476), - [sym_primitive_type] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_class] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_union] = ACTIONS(491), - [anon_sym_if] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(916), - [anon_sym_case] = ACTIONS(919), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(925), - [anon_sym_do] = ACTIONS(928), - [anon_sym_for] = ACTIONS(931), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_goto] = ACTIONS(943), - [anon_sym___try] = ACTIONS(946), - [anon_sym___leave] = ACTIONS(949), - [anon_sym_not] = ACTIONS(410), - [anon_sym_compl] = ACTIONS(410), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_sizeof] = ACTIONS(536), - [anon_sym___alignof__] = ACTIONS(539), - [anon_sym___alignof] = ACTIONS(539), - [anon_sym__alignof] = ACTIONS(539), - [anon_sym_alignof] = ACTIONS(539), - [anon_sym__Alignof] = ACTIONS(539), - [anon_sym_offsetof] = ACTIONS(542), - [anon_sym__Generic] = ACTIONS(545), - [anon_sym_asm] = ACTIONS(548), - [anon_sym___asm__] = ACTIONS(548), - [anon_sym___asm] = ACTIONS(548), - [sym_number_literal] = ACTIONS(551), - [anon_sym_L_SQUOTE] = ACTIONS(554), - [anon_sym_u_SQUOTE] = ACTIONS(554), - [anon_sym_U_SQUOTE] = ACTIONS(554), - [anon_sym_u8_SQUOTE] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(554), - [anon_sym_L_DQUOTE] = ACTIONS(557), - [anon_sym_u_DQUOTE] = ACTIONS(557), - [anon_sym_U_DQUOTE] = ACTIONS(557), - [anon_sym_u8_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [anon_sym_NULL] = ACTIONS(563), - [anon_sym_nullptr] = ACTIONS(563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(566), - [anon_sym_decltype] = ACTIONS(569), - [anon_sym_explicit] = ACTIONS(572), - [anon_sym_typename] = ACTIONS(575), - [anon_sym_template] = ACTIONS(952), - [anon_sym_operator] = ACTIONS(581), - [anon_sym_try] = ACTIONS(955), - [anon_sym_delete] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(961), - [anon_sym_static_assert] = ACTIONS(964), - [anon_sym_concept] = ACTIONS(967), - [anon_sym_co_return] = ACTIONS(970), - [anon_sym_co_yield] = ACTIONS(973), - [anon_sym_R_DQUOTE] = ACTIONS(608), - [anon_sym_LR_DQUOTE] = ACTIONS(608), - [anon_sym_uR_DQUOTE] = ACTIONS(608), - [anon_sym_UR_DQUOTE] = ACTIONS(608), - [anon_sym_u8R_DQUOTE] = ACTIONS(608), - [anon_sym_co_await] = ACTIONS(611), - [anon_sym_new] = ACTIONS(614), - [anon_sym_requires] = ACTIONS(617), - [sym_this] = ACTIONS(560), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(40)] = { - [sym__block_item] = STATE(57), - [sym_preproc_include] = STATE(57), - [sym_preproc_def] = STATE(57), - [sym_preproc_function_def] = STATE(57), - [sym_preproc_call] = STATE(57), - [sym_preproc_if] = STATE(57), - [sym_preproc_ifdef] = STATE(57), - [sym_function_definition] = STATE(57), - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(57), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42316,14 +49120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42334,8 +49138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1007), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42343,7 +49147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42360,217 +49164,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(41)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1015), + [aux_sym_preproc_if_token1] = ACTIONS(1018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym___extension__] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1033), + [anon_sym_virtual] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(447), + [anon_sym___attribute] = ACTIONS(447), + [anon_sym_using] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(456), + [anon_sym___declspec] = ACTIONS(459), + [anon_sym___based] = ACTIONS(462), + [anon_sym___cdecl] = ACTIONS(465), + [anon_sym___clrcall] = ACTIONS(465), + [anon_sym___stdcall] = ACTIONS(465), + [anon_sym___fastcall] = ACTIONS(465), + [anon_sym___thiscall] = ACTIONS(465), + [anon_sym___vectorcall] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_signed] = ACTIONS(471), + [anon_sym_unsigned] = ACTIONS(471), + [anon_sym_long] = ACTIONS(471), + [anon_sym_short] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_static] = ACTIONS(477), + [anon_sym_register] = ACTIONS(477), + [anon_sym_inline] = ACTIONS(1047), + [anon_sym___inline] = ACTIONS(477), + [anon_sym___inline__] = ACTIONS(477), + [anon_sym___forceinline] = ACTIONS(477), + [anon_sym_thread_local] = ACTIONS(477), + [anon_sym___thread] = ACTIONS(477), + [anon_sym_const] = ACTIONS(483), + [anon_sym_constexpr] = ACTIONS(483), + [anon_sym_volatile] = ACTIONS(483), + [anon_sym_restrict] = ACTIONS(483), + [anon_sym___restrict__] = ACTIONS(483), + [anon_sym__Atomic] = ACTIONS(483), + [anon_sym__Noreturn] = ACTIONS(483), + [anon_sym_noreturn] = ACTIONS(483), + [anon_sym__Nonnull] = ACTIONS(483), + [anon_sym_mutable] = ACTIONS(483), + [anon_sym_constinit] = ACTIONS(483), + [anon_sym_consteval] = ACTIONS(1050), + [anon_sym_alignas] = ACTIONS(489), + [anon_sym__Alignas] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_class] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(501), + [anon_sym_union] = ACTIONS(504), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1059), + [anon_sym_default] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1077), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1083), + [anon_sym___try] = ACTIONS(1086), + [anon_sym___leave] = ACTIONS(1089), + [anon_sym_not] = ACTIONS(420), + [anon_sym_compl] = ACTIONS(420), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_sizeof] = ACTIONS(549), + [anon_sym___alignof__] = ACTIONS(552), + [anon_sym___alignof] = ACTIONS(552), + [anon_sym__alignof] = ACTIONS(552), + [anon_sym_alignof] = ACTIONS(552), + [anon_sym__Alignof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_typename] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(564), + [anon_sym___asm__] = ACTIONS(564), + [anon_sym___asm] = ACTIONS(564), + [sym_number_literal] = ACTIONS(567), + [anon_sym_L_SQUOTE] = ACTIONS(570), + [anon_sym_u_SQUOTE] = ACTIONS(570), + [anon_sym_U_SQUOTE] = ACTIONS(570), + [anon_sym_u8_SQUOTE] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_L_DQUOTE] = ACTIONS(573), + [anon_sym_u_DQUOTE] = ACTIONS(573), + [anon_sym_U_DQUOTE] = ACTIONS(573), + [anon_sym_u8_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [anon_sym_NULL] = ACTIONS(579), + [anon_sym_nullptr] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(582), + [anon_sym_decltype] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_template] = ACTIONS(1092), + [anon_sym_operator] = ACTIONS(594), + [anon_sym_try] = ACTIONS(1095), + [anon_sym_delete] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_static_assert] = ACTIONS(1104), + [anon_sym_concept] = ACTIONS(1107), + [anon_sym_co_return] = ACTIONS(1110), + [anon_sym_co_yield] = ACTIONS(1113), + [anon_sym_R_DQUOTE] = ACTIONS(621), + [anon_sym_LR_DQUOTE] = ACTIONS(621), + [anon_sym_uR_DQUOTE] = ACTIONS(621), + [anon_sym_UR_DQUOTE] = ACTIONS(621), + [anon_sym_u8R_DQUOTE] = ACTIONS(621), + [anon_sym_co_await] = ACTIONS(624), + [anon_sym_new] = ACTIONS(627), + [anon_sym_requires] = ACTIONS(630), + [anon_sym_CARET_CARET] = ACTIONS(633), + [anon_sym_LBRACK_COLON] = ACTIONS(636), + [sym_this] = ACTIONS(576), + }, + [STATE(42)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42579,14 +49664,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42597,8 +49682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1116), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42606,7 +49691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42623,217 +49708,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(42)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(43)] = { + [sym__block_item] = STATE(61), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_consteval_block_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42842,14 +49936,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42860,8 +49954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1118), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42869,7 +49963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42886,217 +49980,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(43)] = { - [sym__block_item] = STATE(45), - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(45), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(44)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43105,14 +50208,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43123,8 +50226,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1120), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43132,7 +50235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43149,216 +50252,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(44)] = { - [sym__block_item] = STATE(537), - [sym_preproc_include] = STATE(537), - [sym_preproc_def] = STATE(537), - [sym_preproc_function_def] = STATE(537), - [sym_preproc_call] = STATE(537), - [sym_preproc_if] = STATE(537), - [sym_preproc_ifdef] = STATE(537), - [sym_function_definition] = STATE(537), - [sym_declaration] = STATE(537), - [sym_type_definition] = STATE(537), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), - [sym_linkage_specification] = STATE(537), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6542), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(367), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(589), - [sym_statement] = STATE(537), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(537), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1811), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(537), - [sym_template_instantiation] = STATE(537), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1811), - [sym_operator_cast_definition] = STATE(537), - [sym_operator_cast_declaration] = STATE(537), - [sym_constructor_or_destructor_definition] = STATE(537), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(537), - [sym_namespace_alias_definition] = STATE(537), - [sym_using_declaration] = STATE(537), - [sym_alias_declaration] = STATE(537), - [sym_static_assert_declaration] = STATE(537), - [sym_concept_definition] = STATE(537), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), + [STATE(45)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1811), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43367,14 +50480,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43385,7 +50498,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1122), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43393,7 +50507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(65), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43410,219 +50524,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_module] = ACTIONS(994), - [anon_sym_import] = ACTIONS(996), - [anon_sym_template] = ACTIONS(139), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(149), - [anon_sym_static_assert] = ACTIONS(151), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(45)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(46)] = { + [sym__block_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(48), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_consteval_block_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43631,14 +50752,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43649,8 +50770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1124), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43658,7 +50779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43675,218 +50796,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(46)] = { - [sym__block_item] = STATE(67), - [sym_preproc_include] = STATE(67), - [sym_preproc_def] = STATE(67), - [sym_preproc_function_def] = STATE(67), - [sym_preproc_call] = STATE(67), - [sym_preproc_if] = STATE(67), - [sym_preproc_ifdef] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4811), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1958), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6547), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(536), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2887), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(744), - [sym_statement] = STATE(67), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1854), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(7063), - [sym__constructor_specifiers] = STATE(1854), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7063), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(141), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1854), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1002), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), - [sym_preproc_directive] = ACTIONS(1012), + [STATE(47)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43895,14 +51024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1016), - [anon_sym_typedef] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1022), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43913,7 +51042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1126), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43921,7 +51051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(1026), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43938,217 +51068,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1054), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1060), - [anon_sym_static_assert] = ACTIONS(1062), - [anon_sym_concept] = ACTIONS(1064), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(47)] = { - [sym__block_item] = STATE(48), - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(48), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(48)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44157,14 +51296,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44175,8 +51314,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1128), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44184,7 +51323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44201,83 +51340,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(48)] = { + [STATE(49)] = { [sym__block_item] = STATE(51), [sym_preproc_include] = STATE(51), [sym_preproc_def] = STATE(51), @@ -44288,130 +51429,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(51), [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(51), [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(51), [sym_operator_cast_declaration] = STATE(51), [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(51), [sym_namespace_alias_definition] = STATE(51), [sym_using_declaration] = STATE(51), [sym_alias_declaration] = STATE(51), [sym_static_assert_declaration] = STATE(51), + [sym_consteval_block_declaration] = STATE(51), [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44420,14 +51568,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44438,8 +51586,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1130), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44447,7 +51595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44464,217 +51612,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(49)] = { - [sym__block_item] = STATE(50), - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(50), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(50)] = { + [sym__block_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(44), + [sym_namespace_alias_definition] = STATE(44), + [sym_using_declaration] = STATE(44), + [sym_alias_declaration] = STATE(44), + [sym_static_assert_declaration] = STATE(44), + [sym_consteval_block_declaration] = STATE(44), + [sym_concept_definition] = STATE(44), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44683,14 +51840,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44701,8 +51858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1132), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44710,7 +51867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44727,217 +51884,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(50)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [STATE(51)] = { + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44946,14 +52112,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44964,8 +52130,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1134), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44973,7 +52139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44990,480 +52156,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(51)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(1078), - [aux_sym_preproc_include_token1] = ACTIONS(1081), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1090), - [sym_preproc_directive] = ACTIONS(1093), - [anon_sym_LPAREN2] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_TILDE] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym___extension__] = ACTIONS(1099), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_virtual] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(1105), - [anon_sym___attribute__] = ACTIONS(437), - [anon_sym___attribute] = ACTIONS(437), - [anon_sym_using] = ACTIONS(1108), - [anon_sym_COLON_COLON] = ACTIONS(443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(446), - [anon_sym___declspec] = ACTIONS(449), - [anon_sym___based] = ACTIONS(452), - [anon_sym___cdecl] = ACTIONS(455), - [anon_sym___clrcall] = ACTIONS(455), - [anon_sym___stdcall] = ACTIONS(455), - [anon_sym___fastcall] = ACTIONS(455), - [anon_sym___thiscall] = ACTIONS(455), - [anon_sym___vectorcall] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_signed] = ACTIONS(461), - [anon_sym_unsigned] = ACTIONS(461), - [anon_sym_long] = ACTIONS(461), - [anon_sym_short] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_static] = ACTIONS(467), - [anon_sym_register] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(467), - [anon_sym___inline__] = ACTIONS(467), - [anon_sym___forceinline] = ACTIONS(467), - [anon_sym_thread_local] = ACTIONS(467), - [anon_sym___thread] = ACTIONS(467), - [anon_sym_const] = ACTIONS(473), - [anon_sym_constexpr] = ACTIONS(473), - [anon_sym_volatile] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(473), - [anon_sym___restrict__] = ACTIONS(473), - [anon_sym__Atomic] = ACTIONS(473), - [anon_sym__Noreturn] = ACTIONS(473), - [anon_sym_noreturn] = ACTIONS(473), - [anon_sym__Nonnull] = ACTIONS(473), - [anon_sym_mutable] = ACTIONS(473), - [anon_sym_constinit] = ACTIONS(473), - [anon_sym_consteval] = ACTIONS(473), - [anon_sym_alignas] = ACTIONS(476), - [anon_sym__Alignas] = ACTIONS(476), - [sym_primitive_type] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_class] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_union] = ACTIONS(491), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_goto] = ACTIONS(1149), - [anon_sym___try] = ACTIONS(1152), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_not] = ACTIONS(410), - [anon_sym_compl] = ACTIONS(410), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_sizeof] = ACTIONS(536), - [anon_sym___alignof__] = ACTIONS(539), - [anon_sym___alignof] = ACTIONS(539), - [anon_sym__alignof] = ACTIONS(539), - [anon_sym_alignof] = ACTIONS(539), - [anon_sym__Alignof] = ACTIONS(539), - [anon_sym_offsetof] = ACTIONS(542), - [anon_sym__Generic] = ACTIONS(545), - [anon_sym_asm] = ACTIONS(548), - [anon_sym___asm__] = ACTIONS(548), - [anon_sym___asm] = ACTIONS(548), - [sym_number_literal] = ACTIONS(551), - [anon_sym_L_SQUOTE] = ACTIONS(554), - [anon_sym_u_SQUOTE] = ACTIONS(554), - [anon_sym_U_SQUOTE] = ACTIONS(554), - [anon_sym_u8_SQUOTE] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(554), - [anon_sym_L_DQUOTE] = ACTIONS(557), - [anon_sym_u_DQUOTE] = ACTIONS(557), - [anon_sym_U_DQUOTE] = ACTIONS(557), - [anon_sym_u8_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [anon_sym_NULL] = ACTIONS(563), - [anon_sym_nullptr] = ACTIONS(563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(566), - [anon_sym_decltype] = ACTIONS(569), - [anon_sym_explicit] = ACTIONS(572), - [anon_sym_typename] = ACTIONS(575), - [anon_sym_template] = ACTIONS(1158), - [anon_sym_operator] = ACTIONS(581), - [anon_sym_try] = ACTIONS(1161), - [anon_sym_delete] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_namespace] = ACTIONS(1167), - [anon_sym_static_assert] = ACTIONS(1170), - [anon_sym_concept] = ACTIONS(1173), - [anon_sym_co_return] = ACTIONS(1176), - [anon_sym_co_yield] = ACTIONS(1179), - [anon_sym_R_DQUOTE] = ACTIONS(608), - [anon_sym_LR_DQUOTE] = ACTIONS(608), - [anon_sym_uR_DQUOTE] = ACTIONS(608), - [anon_sym_UR_DQUOTE] = ACTIONS(608), - [anon_sym_u8R_DQUOTE] = ACTIONS(608), - [anon_sym_co_await] = ACTIONS(611), - [anon_sym_new] = ACTIONS(614), - [anon_sym_requires] = ACTIONS(617), - [sym_this] = ACTIONS(560), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(52)] = { - [sym__block_item] = STATE(53), - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(53), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(53), - [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(53), - [sym_operator_cast_declaration] = STATE(53), - [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(55), + [sym_namespace_alias_definition] = STATE(55), + [sym_using_declaration] = STATE(55), + [sym_alias_declaration] = STATE(55), + [sym_static_assert_declaration] = STATE(55), + [sym_consteval_block_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45472,14 +52384,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45490,8 +52402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1136), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45499,7 +52411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45516,217 +52428,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(53)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6279), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2620), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8706), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(652), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4324), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(859), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2413), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(9049), + [sym__constructor_specifiers] = STATE(2413), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_consteval_block_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9049), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1140), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1144), + [aux_sym_preproc_if_token2] = ACTIONS(1146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), + [sym_preproc_directive] = ACTIONS(1150), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45735,14 +52657,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1156), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(1158), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1160), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45753,8 +52675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45762,7 +52683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(1164), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45779,217 +52700,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(1166), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(1194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_static_assert] = ACTIONS(1202), + [anon_sym_concept] = ACTIONS(1204), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(54)] = { - [sym__block_item] = STATE(56), - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(56), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(47), + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(47), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(47), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(47), + [sym_template_instantiation] = STATE(47), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(47), + [sym_operator_cast_declaration] = STATE(47), + [sym_constructor_or_destructor_definition] = STATE(47), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(47), + [sym_namespace_alias_definition] = STATE(47), + [sym_using_declaration] = STATE(47), + [sym_alias_declaration] = STATE(47), + [sym_static_assert_declaration] = STATE(47), + [sym_consteval_block_declaration] = STATE(47), + [sym_concept_definition] = STATE(47), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45998,14 +52928,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46016,8 +52946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1210), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46025,7 +52955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46042,217 +52972,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(55)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46261,14 +53200,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46279,8 +53218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1212), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46288,7 +53227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46305,217 +53244,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(56)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(648), + [sym_preproc_include] = STATE(648), + [sym_preproc_def] = STATE(648), + [sym_preproc_function_def] = STATE(648), + [sym_preproc_call] = STATE(648), + [sym_preproc_if] = STATE(648), + [sym_preproc_ifdef] = STATE(648), + [sym_function_definition] = STATE(648), + [sym_declaration] = STATE(648), + [sym_type_definition] = STATE(648), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), + [sym_linkage_specification] = STATE(648), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8682), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(496), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(653), + [sym_statement] = STATE(648), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(648), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2354), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(648), + [sym_template_instantiation] = STATE(648), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2354), + [sym_operator_cast_definition] = STATE(648), + [sym_operator_cast_declaration] = STATE(648), + [sym_constructor_or_destructor_definition] = STATE(648), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(648), + [sym_namespace_alias_definition] = STATE(648), + [sym_using_declaration] = STATE(648), + [sym_alias_declaration] = STATE(648), + [sym_static_assert_declaration] = STATE(648), + [sym_consteval_block_declaration] = STATE(648), + [sym_concept_definition] = STATE(648), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2354), + [sym_identifier] = ACTIONS(1214), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46524,14 +53471,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46542,8 +53489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46551,7 +53497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46568,217 +53514,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(69), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_module] = ACTIONS(1224), + [anon_sym_import] = ACTIONS(1226), + [anon_sym_template] = ACTIONS(141), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(57)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(58), + [sym_preproc_include] = STATE(58), + [sym_preproc_def] = STATE(58), + [sym_preproc_function_def] = STATE(58), + [sym_preproc_call] = STATE(58), + [sym_preproc_if] = STATE(58), + [sym_preproc_ifdef] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(58), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(58), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(58), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(58), + [sym_template_instantiation] = STATE(58), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(58), + [sym_operator_cast_declaration] = STATE(58), + [sym_constructor_or_destructor_definition] = STATE(58), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(58), + [sym_concept_definition] = STATE(58), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(58), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46787,14 +53744,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46805,8 +53762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1228), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46814,7 +53771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46831,217 +53788,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(58)] = { - [sym__block_item] = STATE(59), - [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(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(59), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47050,14 +54016,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47068,8 +54034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1230), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47077,7 +54043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47094,217 +54060,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(59)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47313,14 +54288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47331,8 +54306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1232), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47340,7 +54315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47357,217 +54332,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(60)] = { - [sym__block_item] = STATE(61), - [sym_preproc_include] = STATE(61), - [sym_preproc_def] = STATE(61), - [sym_preproc_function_def] = STATE(61), - [sym_preproc_call] = STATE(61), - [sym_preproc_if] = STATE(61), - [sym_preproc_ifdef] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(61), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47576,14 +54560,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47594,8 +54578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1234), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47603,7 +54587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47620,217 +54604,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(61)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47839,14 +54832,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47857,8 +54850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1236), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47866,7 +54859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47883,217 +54876,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(62)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(63), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(63), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_consteval_block_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48102,14 +55104,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48120,8 +55122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1238), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48129,7 +55131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48146,217 +55148,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(63)] = { - [sym__block_item] = STATE(64), - [sym_preproc_include] = STATE(64), - [sym_preproc_def] = STATE(64), - [sym_preproc_function_def] = STATE(64), - [sym_preproc_call] = STATE(64), - [sym_preproc_if] = STATE(64), - [sym_preproc_ifdef] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(64), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(64), - [sym_namespace_alias_definition] = STATE(64), - [sym_using_declaration] = STATE(64), - [sym_alias_declaration] = STATE(64), - [sym_static_assert_declaration] = STATE(64), - [sym_concept_definition] = STATE(64), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48365,14 +55376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48383,8 +55394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1240), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48392,7 +55403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48409,217 +55420,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(64)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_preproc_if] = STATE(65), + [sym_preproc_ifdef] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(65), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_consteval_block_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48628,14 +55648,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48646,8 +55666,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1242), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48655,7 +55675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48672,217 +55692,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(65)] = { - [sym__block_item] = STATE(66), - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(66), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48891,14 +55920,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48909,8 +55938,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1244), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48918,7 +55947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48935,217 +55964,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(66)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(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(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(67), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49154,14 +56192,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49172,8 +56210,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1246), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49181,7 +56219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49198,218 +56236,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(67)] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4811), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1958), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6547), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(536), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2887), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(744), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1854), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(7063), - [sym__constructor_specifiers] = STATE(1854), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(39), - [sym_namespace_alias_definition] = STATE(39), - [sym_using_declaration] = STATE(39), - [sym_alias_declaration] = STATE(39), - [sym_static_assert_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7063), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(141), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1854), - [sym_identifier] = ACTIONS(1000), - [aux_sym_preproc_include_token1] = ACTIONS(1002), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1006), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1010), - [sym_preproc_directive] = ACTIONS(1012), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49418,14 +56464,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1016), - [anon_sym_typedef] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1022), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49436,7 +56482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1248), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49444,7 +56491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(1026), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49461,81 +56508,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1054), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1060), - [anon_sym_static_assert] = ACTIONS(1062), - [anon_sym_concept] = ACTIONS(1064), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(68)] = { [sym__block_item] = STATE(69), @@ -49548,130 +56597,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(69), [sym_declaration] = STATE(69), [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(69), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(69), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(69), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(69), [sym_template_instantiation] = STATE(69), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(69), [sym_operator_cast_declaration] = STATE(69), [sym_constructor_or_destructor_definition] = STATE(69), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(69), [sym_namespace_alias_definition] = STATE(69), [sym_using_declaration] = STATE(69), [sym_alias_declaration] = STATE(69), [sym_static_assert_declaration] = STATE(69), + [sym_consteval_block_declaration] = STATE(69), [sym_concept_definition] = STATE(69), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(69), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49680,14 +56736,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49698,8 +56754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1250), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49707,7 +56763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49724,217 +56780,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(69)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49943,14 +57008,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49961,8 +57026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1252), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49970,7 +57035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49987,81 +57052,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(70)] = { [sym__block_item] = STATE(71), @@ -50074,130 +57141,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(71), [sym_declaration] = STATE(71), [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(71), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(71), [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(71), [sym_operator_cast_declaration] = STATE(71), [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(71), [sym_namespace_alias_definition] = STATE(71), [sym_using_declaration] = STATE(71), [sym_alias_declaration] = STATE(71), [sym_static_assert_declaration] = STATE(71), + [sym_consteval_block_declaration] = STATE(71), [sym_concept_definition] = STATE(71), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50206,14 +57280,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50224,8 +57298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1254), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50233,7 +57307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50250,217 +57324,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(71)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50469,14 +57552,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50487,8 +57570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1256), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50496,7 +57579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50513,217 +57596,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(72)] = { - [sym__block_item] = STATE(73), - [sym_preproc_include] = STATE(73), - [sym_preproc_def] = STATE(73), - [sym_preproc_function_def] = STATE(73), - [sym_preproc_call] = STATE(73), - [sym_preproc_if] = STATE(73), - [sym_preproc_ifdef] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(73), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(73), - [sym_namespace_alias_definition] = STATE(73), - [sym_using_declaration] = STATE(73), - [sym_alias_declaration] = STATE(73), - [sym_static_assert_declaration] = STATE(73), - [sym_concept_definition] = STATE(73), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(53), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6279), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2620), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8706), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(652), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4324), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(859), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2413), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(9049), + [sym__constructor_specifiers] = STATE(2413), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9049), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(156), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2413), + [sym_identifier] = ACTIONS(1138), + [aux_sym_preproc_include_token1] = ACTIONS(1140), + [aux_sym_preproc_def_token1] = ACTIONS(1142), + [aux_sym_preproc_if_token1] = ACTIONS(1144), + [aux_sym_preproc_if_token2] = ACTIONS(1258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), + [sym_preproc_directive] = ACTIONS(1150), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50732,14 +57825,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1156), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(1158), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1160), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50750,8 +57843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50759,7 +57851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(1164), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50776,217 +57868,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(1166), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(1194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_static_assert] = ACTIONS(1202), + [anon_sym_concept] = ACTIONS(1204), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(73)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(74), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(74), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_consteval_block_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50995,14 +58096,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51013,8 +58114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1260), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51022,7 +58123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51039,217 +58140,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(74)] = { - [sym__block_item] = STATE(75), - [sym_preproc_include] = STATE(75), - [sym_preproc_def] = STATE(75), - [sym_preproc_function_def] = STATE(75), - [sym_preproc_call] = STATE(75), - [sym_preproc_if] = STATE(75), - [sym_preproc_ifdef] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(75), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(75), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(75), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(75), - [sym_template_instantiation] = STATE(75), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(75), - [sym_operator_cast_declaration] = STATE(75), - [sym_constructor_or_destructor_definition] = STATE(75), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(75), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51258,14 +58368,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51276,8 +58386,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1262), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51285,7 +58395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51302,217 +58412,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(75)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(76), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(76), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51521,14 +58640,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51539,8 +58658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1264), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51548,7 +58667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51565,217 +58684,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(76)] = { - [sym__block_item] = STATE(36), - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(36), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(36), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(36), - [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(36), - [sym_operator_cast_declaration] = STATE(36), - [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51784,14 +58912,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51802,8 +58930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1266), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51811,7 +58939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51828,81 +58956,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(77)] = { [sym__block_item] = STATE(78), @@ -51915,130 +59045,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(78), [sym_declaration] = STATE(78), [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(78), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(78), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(78), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(78), [sym_template_instantiation] = STATE(78), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(78), [sym_operator_cast_declaration] = STATE(78), [sym_constructor_or_destructor_definition] = STATE(78), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(78), [sym_namespace_alias_definition] = STATE(78), [sym_using_declaration] = STATE(78), [sym_alias_declaration] = STATE(78), [sym_static_assert_declaration] = STATE(78), + [sym_consteval_block_declaration] = STATE(78), [sym_concept_definition] = STATE(78), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(78), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52047,14 +59184,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52065,8 +59202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1268), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52074,7 +59211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52091,217 +59228,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(78)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52310,14 +59456,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52328,8 +59474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1270), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52337,7 +59483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52354,81 +59500,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(79)] = { [sym__block_item] = STATE(80), @@ -52441,130 +59589,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(80), [sym_declaration] = STATE(80), [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(80), [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(80), [sym_operator_cast_declaration] = STATE(80), [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(80), [sym_namespace_alias_definition] = STATE(80), [sym_using_declaration] = STATE(80), [sym_alias_declaration] = STATE(80), [sym_static_assert_declaration] = STATE(80), + [sym_consteval_block_declaration] = STATE(80), [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52573,14 +59728,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52591,8 +59746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1272), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52600,7 +59755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52617,217 +59772,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(80)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52836,14 +60000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52854,8 +60018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1274), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52863,7 +60027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52880,81 +60044,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(81)] = { [sym__block_item] = STATE(82), @@ -52967,130 +60133,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(82), [sym_declaration] = STATE(82), [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), [sym_linkage_specification] = STATE(82), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), [sym__empty_declaration] = STATE(82), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), [sym_template_declaration] = STATE(82), [sym_template_instantiation] = STATE(82), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), [sym_operator_cast_definition] = STATE(82), [sym_operator_cast_declaration] = STATE(82), [sym_constructor_or_destructor_definition] = STATE(82), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), [sym_namespace_definition] = STATE(82), [sym_namespace_alias_definition] = STATE(82), [sym_using_declaration] = STATE(82), [sym_alias_declaration] = STATE(82), [sym_static_assert_declaration] = STATE(82), + [sym_consteval_block_declaration] = STATE(82), [sym_concept_definition] = STATE(82), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), [aux_sym_preproc_if_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -53099,14 +60272,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -53117,8 +60290,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1276), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53126,7 +60299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53143,217 +60316,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(82)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -53362,14 +60544,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -53380,8 +60562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1278), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53389,7 +60571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53406,217 +60588,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(83)] = { - [sym__block_item] = STATE(37), - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [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(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(84), + [sym_preproc_include] = STATE(84), + [sym_preproc_def] = STATE(84), + [sym_preproc_function_def] = STATE(84), + [sym_preproc_call] = STATE(84), + [sym_preproc_if] = STATE(84), + [sym_preproc_ifdef] = STATE(84), + [sym_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(84), + [sym_namespace_alias_definition] = STATE(84), + [sym_using_declaration] = STATE(84), + [sym_alias_declaration] = STATE(84), + [sym_static_assert_declaration] = STATE(84), + [sym_consteval_block_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -53625,14 +60816,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -53643,8 +60834,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1280), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53652,7 +60843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53669,217 +60860,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(84)] = { - [sym__block_item] = STATE(55), - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(864), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6536), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(792), - [sym_statement] = STATE(55), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_explicit_function_specifier] = STATE(1845), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1845), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(4491), - [sym_namespace_definition] = STATE(55), - [sym_namespace_alias_definition] = STATE(55), - [sym_using_declaration] = STATE(55), - [sym_alias_declaration] = STATE(55), - [sym_static_assert_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5622), - [sym_qualified_identifier] = STATE(3256), - [sym_qualified_type_identifier] = STATE(2943), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_preproc_if_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1845), - [sym_identifier] = ACTIONS(864), - [aux_sym_preproc_include_token1] = ACTIONS(169), - [aux_sym_preproc_def_token1] = ACTIONS(171), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(177), - [sym_preproc_directive] = ACTIONS(179), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -53888,14 +61088,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -53906,8 +61106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1282), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53915,7 +61115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53932,217 +61132,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_static_assert] = ACTIONS(239), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(85)] = { - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym_seh_try_statement] = STATE(87), - [sym_seh_leave_statement] = STATE(87), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(87), - [sym_co_return_statement] = STATE(87), - [sym_co_yield_statement] = STATE(87), - [sym_throw_statement] = STATE(87), - [sym_try_statement] = STATE(87), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [aux_sym_preproc_else_token1] = ACTIONS(1250), - [aux_sym_preproc_elif_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym__block_item] = STATE(86), + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_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(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(86), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_consteval_block_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(86), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1284), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -54159,218 +61404,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1250), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1250), - [anon_sym_static_assert] = ACTIONS(1250), - [anon_sym_concept] = ACTIONS(1250), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(86)] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym_seh_try_statement] = STATE(88), - [sym_seh_leave_statement] = STATE(88), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [aux_sym_preproc_else_token1] = ACTIONS(1270), - [aux_sym_preproc_elif_token1] = ACTIONS(1270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym__block_item] = STATE(41), + [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_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1270), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1286), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -54387,218 +61676,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1270), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1270), - [anon_sym_static_assert] = ACTIONS(1270), - [anon_sym_concept] = ACTIONS(1270), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(87)] = { - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [aux_sym_preproc_else_token1] = ACTIONS(1274), - [aux_sym_preproc_elif_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym__block_item] = STATE(59), + [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(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(59), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [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_consteval_block_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1288), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -54615,218 +61948,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1274), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1274), - [anon_sym_static_assert] = ACTIONS(1274), - [anon_sym_concept] = ACTIONS(1274), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(88)] = { - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token2] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [aux_sym_preproc_else_token1] = ACTIONS(1278), - [aux_sym_preproc_elif_token1] = ACTIONS(1278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym__block_item] = STATE(60), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(1012), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(818), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_explicit_function_specifier] = STATE(2396), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6713), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_consteval_block_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7676), + [sym_qualified_identifier] = STATE(5268), + [sym_qualified_type_identifier] = STATE(4449), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1278), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1290), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -54843,439 +62220,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_consteval] = ACTIONS(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1278), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(1278), - [anon_sym_static_assert] = ACTIONS(1278), - [anon_sym_concept] = ACTIONS(1278), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(239), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_static_assert] = ACTIONS(247), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(89)] = { - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [aux_sym_preproc_else_token1] = ACTIONS(1285), - [aux_sym_preproc_elif_token1] = ACTIONS(1285), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_virtual] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___attribute] = ACTIONS(1319), - [anon_sym_using] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___based] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_mutable] = ACTIONS(1340), - [anon_sym_constinit] = ACTIONS(1340), - [anon_sym_consteval] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1385), - [anon_sym___try] = ACTIONS(1388), - [anon_sym___leave] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1293), - [anon_sym_compl] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1403), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [anon_sym___asm] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1427), - [anon_sym_decltype] = ACTIONS(1430), - [anon_sym_explicit] = ACTIONS(1285), - [anon_sym_typename] = ACTIONS(1433), - [anon_sym_template] = ACTIONS(1436), - [anon_sym_operator] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1439), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1285), - [anon_sym_static_assert] = ACTIONS(1285), - [anon_sym_concept] = ACTIONS(1285), - [anon_sym_co_return] = ACTIONS(1448), - [anon_sym_co_yield] = ACTIONS(1451), - [anon_sym_R_DQUOTE] = ACTIONS(1454), - [anon_sym_LR_DQUOTE] = ACTIONS(1454), - [anon_sym_uR_DQUOTE] = ACTIONS(1454), - [anon_sym_UR_DQUOTE] = ACTIONS(1454), - [anon_sym_u8R_DQUOTE] = ACTIONS(1454), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_requires] = ACTIONS(1463), - [sym_this] = ACTIONS(1421), - }, - [STATE(90)] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(93), - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(91), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym_seh_try_statement] = STATE(91), + [sym_seh_leave_statement] = STATE(91), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(91), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [aux_sym_preproc_else_token1] = ACTIONS(1294), + [aux_sym_preproc_elif_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(299), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1270), + [anon_sym_using] = ACTIONS(1294), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55296,213 +62456,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1270), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_import] = ACTIONS(1270), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1270), - [anon_sym_static_assert] = ACTIONS(1270), - [anon_sym_concept] = ACTIONS(1270), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1294), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_operator] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym_concept] = ACTIONS(1294), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(91)] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(90)] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(92), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(299), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1314), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55523,213 +62692,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1274), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_import] = ACTIONS(1274), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1274), - [anon_sym_static_assert] = ACTIONS(1274), - [anon_sym_concept] = ACTIONS(1274), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1314), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_operator] = ACTIONS(1314), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym_concept] = ACTIONS(1314), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(92)] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym_seh_try_statement] = STATE(91), - [sym_seh_leave_statement] = STATE(91), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(91)] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym_seh_try_statement] = STATE(93), + [sym_seh_leave_statement] = STATE(93), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(93), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(299), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1318), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55750,213 +62928,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1250), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(1250), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1250), - [anon_sym_static_assert] = ACTIONS(1250), - [anon_sym_concept] = ACTIONS(1250), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1318), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_operator] = ACTIONS(1318), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym_concept] = ACTIONS(1318), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(93)] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(92)] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym_seh_try_statement] = STATE(93), + [sym_seh_leave_statement] = STATE(93), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(93), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(299), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1278), + [anon_sym_using] = ACTIONS(1322), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -55977,102 +63164,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1278), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_import] = ACTIONS(1278), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1278), - [anon_sym_static_assert] = ACTIONS(1278), - [anon_sym_concept] = ACTIONS(1278), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1322), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_operator] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym_concept] = ACTIONS(1322), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(93)] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym_seh_try_statement] = STATE(93), + [sym_seh_leave_statement] = STATE(93), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(93), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [aux_sym_preproc_else_token1] = ACTIONS(1329), + [aux_sym_preproc_elif_token1] = ACTIONS(1329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_virtual] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1363), + [anon_sym___attribute] = ACTIONS(1363), + [anon_sym_using] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___based] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym__Nonnull] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_alignas] = ACTIONS(1387), + [anon_sym__Alignas] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1429), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1435), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_compl] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1447), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_typename] = ACTIONS(1453), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1465), + [anon_sym_u_DQUOTE] = ACTIONS(1465), + [anon_sym_U_DQUOTE] = ACTIONS(1465), + [anon_sym_u8_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1471), + [anon_sym_nullptr] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1474), + [anon_sym_decltype] = ACTIONS(1477), + [anon_sym_explicit] = ACTIONS(1329), + [anon_sym_template] = ACTIONS(1480), + [anon_sym_operator] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1489), + [anon_sym_namespace] = ACTIONS(1329), + [anon_sym_static_assert] = ACTIONS(1329), + [anon_sym_concept] = ACTIONS(1329), + [anon_sym_co_return] = ACTIONS(1492), + [anon_sym_co_yield] = ACTIONS(1495), + [anon_sym_R_DQUOTE] = ACTIONS(1498), + [anon_sym_LR_DQUOTE] = ACTIONS(1498), + [anon_sym_uR_DQUOTE] = ACTIONS(1498), + [anon_sym_UR_DQUOTE] = ACTIONS(1498), + [anon_sym_u8R_DQUOTE] = ACTIONS(1498), + [anon_sym_co_await] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1504), + [anon_sym_requires] = ACTIONS(1507), + [anon_sym_CARET_CARET] = ACTIONS(1510), + [anon_sym_LBRACK_COLON] = ACTIONS(1513), + [sym_this] = ACTIONS(1468), }, [STATE(94)] = { [sym_declaration] = STATE(94), [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), [sym_attributed_statement] = STATE(94), [sym_labeled_statement] = STATE(94), [sym_expression_statement] = STATE(94), @@ -56087,330 +63509,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(94), [sym_seh_try_statement] = STATE(94), [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), + [sym_expression] = STATE(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(94), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1479), - [anon_sym_virtual] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___attribute] = ACTIONS(1319), - [anon_sym_using] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___based] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_mutable] = ACTIONS(1340), - [anon_sym_constinit] = ACTIONS(1340), - [anon_sym_consteval] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1509), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_not] = ACTIONS(1293), - [anon_sym_compl] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1403), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [anon_sym___asm] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1427), - [anon_sym_decltype] = ACTIONS(1430), - [anon_sym_explicit] = ACTIONS(1285), - [anon_sym_typename] = ACTIONS(1433), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_import] = ACTIONS(1285), - [anon_sym_template] = ACTIONS(1436), - [anon_sym_operator] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1521), - [anon_sym_namespace] = ACTIONS(1285), - [anon_sym_static_assert] = ACTIONS(1285), - [anon_sym_concept] = ACTIONS(1285), - [anon_sym_co_return] = ACTIONS(1524), - [anon_sym_co_yield] = ACTIONS(1527), - [anon_sym_R_DQUOTE] = ACTIONS(1454), - [anon_sym_LR_DQUOTE] = ACTIONS(1454), - [anon_sym_uR_DQUOTE] = ACTIONS(1454), - [anon_sym_UR_DQUOTE] = ACTIONS(1454), - [anon_sym_u8R_DQUOTE] = ACTIONS(1454), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_requires] = ACTIONS(1463), - [sym_this] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1525), + [anon_sym_virtual] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1363), + [anon_sym___attribute] = ACTIONS(1363), + [anon_sym_using] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___based] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym__Nonnull] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_alignas] = ACTIONS(1387), + [anon_sym__Alignas] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1555), + [anon_sym___try] = ACTIONS(1558), + [anon_sym___leave] = ACTIONS(1561), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_compl] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1447), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_typename] = ACTIONS(1453), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1465), + [anon_sym_u_DQUOTE] = ACTIONS(1465), + [anon_sym_U_DQUOTE] = ACTIONS(1465), + [anon_sym_u8_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1471), + [anon_sym_nullptr] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1474), + [anon_sym_decltype] = ACTIONS(1477), + [anon_sym_explicit] = ACTIONS(1329), + [anon_sym_export] = ACTIONS(1329), + [anon_sym_module] = ACTIONS(1329), + [anon_sym_import] = ACTIONS(1329), + [anon_sym_template] = ACTIONS(1564), + [anon_sym_operator] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1567), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1570), + [anon_sym_namespace] = ACTIONS(1329), + [anon_sym_static_assert] = ACTIONS(1329), + [anon_sym_concept] = ACTIONS(1329), + [anon_sym_co_return] = ACTIONS(1573), + [anon_sym_co_yield] = ACTIONS(1576), + [anon_sym_R_DQUOTE] = ACTIONS(1498), + [anon_sym_LR_DQUOTE] = ACTIONS(1498), + [anon_sym_uR_DQUOTE] = ACTIONS(1498), + [anon_sym_UR_DQUOTE] = ACTIONS(1498), + [anon_sym_u8R_DQUOTE] = ACTIONS(1498), + [anon_sym_co_await] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1504), + [anon_sym_requires] = ACTIONS(1507), + [anon_sym_CARET_CARET] = ACTIONS(1510), + [anon_sym_LBRACK_COLON] = ACTIONS(1513), + [sym_this] = ACTIONS(1468), }, [STATE(95)] = { - [sym_declaration] = STATE(96), - [sym_type_definition] = STATE(96), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(96), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym_expression] = STATE(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(94), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1581), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1278), + [anon_sym_using] = ACTIONS(1322), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym___based] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -56431,434 +63867,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1278), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1278), - [anon_sym_static_assert] = ACTIONS(1278), - [anon_sym_concept] = ACTIONS(1278), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1322), + [anon_sym_export] = ACTIONS(1322), + [anon_sym_module] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(1322), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_operator] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym_concept] = ACTIONS(1322), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(96)] = { - [sym_declaration] = STATE(96), - [sym_type_definition] = STATE(96), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(96), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(1534), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym___extension__] = ACTIONS(1540), - [anon_sym_typedef] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___attribute] = ACTIONS(1319), - [anon_sym_using] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___based] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_mutable] = ACTIONS(1340), - [anon_sym_constinit] = ACTIONS(1340), - [anon_sym_consteval] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_goto] = ACTIONS(1573), - [anon_sym___try] = ACTIONS(1576), - [anon_sym___leave] = ACTIONS(1579), - [anon_sym_not] = ACTIONS(1293), - [anon_sym_compl] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1403), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [anon_sym___asm] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1427), - [anon_sym_decltype] = ACTIONS(1430), - [anon_sym_explicit] = ACTIONS(1285), - [anon_sym_typename] = ACTIONS(1433), - [anon_sym_template] = ACTIONS(1436), - [anon_sym_operator] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1582), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1585), - [anon_sym_namespace] = ACTIONS(1285), - [anon_sym_static_assert] = ACTIONS(1285), - [anon_sym_concept] = ACTIONS(1285), - [anon_sym_co_return] = ACTIONS(1588), - [anon_sym_co_yield] = ACTIONS(1591), - [anon_sym_R_DQUOTE] = ACTIONS(1454), - [anon_sym_LR_DQUOTE] = ACTIONS(1454), - [anon_sym_uR_DQUOTE] = ACTIONS(1454), - [anon_sym_UR_DQUOTE] = ACTIONS(1454), - [anon_sym_u8R_DQUOTE] = ACTIONS(1454), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_requires] = ACTIONS(1463), - [sym_this] = ACTIONS(1421), - }, - [STATE(97)] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [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(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1594), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym_seh_try_statement] = STATE(95), + [sym_seh_leave_statement] = STATE(95), + [sym_expression] = STATE(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(95), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(95), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1581), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1314), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym___based] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -56879,210 +64102,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1274), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1274), - [anon_sym_static_assert] = ACTIONS(1274), - [anon_sym_concept] = ACTIONS(1274), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(1314), + [anon_sym_module] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(1314), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_operator] = ACTIONS(1314), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym_concept] = ACTIONS(1314), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(98)] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [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(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1594), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token2] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(97)] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym_expression] = STATE(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(94), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1581), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1278), + [anon_sym_using] = ACTIONS(1318), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym___based] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57103,99 +64337,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1278), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1278), - [anon_sym_static_assert] = ACTIONS(1278), - [anon_sym_concept] = ACTIONS(1278), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1318), + [anon_sym_export] = ACTIONS(1318), + [anon_sym_module] = ACTIONS(1318), + [anon_sym_import] = ACTIONS(1318), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_operator] = ACTIONS(1318), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym_concept] = ACTIONS(1318), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(99)] = { + [STATE(98)] = { [sym_declaration] = STATE(97), [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), [sym_attributed_statement] = STATE(97), [sym_labeled_statement] = STATE(97), [sym_expression_statement] = STATE(97), @@ -57210,103 +64449,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(97), [sym_seh_try_statement] = STATE(97), [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), + [sym_expression] = STATE(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(97), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), [aux_sym_case_statement_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(1594), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token2] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1579), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1581), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1294), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym___based] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57327,210 +64572,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1250), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1250), - [anon_sym_static_assert] = ACTIONS(1250), - [anon_sym_concept] = ACTIONS(1250), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1294), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_import] = ACTIONS(1294), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_operator] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym_concept] = ACTIONS(1294), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(100)] = { - [sym_declaration] = STATE(104), - [sym_type_definition] = STATE(104), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(104), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [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(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1250), - [aux_sym_preproc_def_token1] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1250), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(99)] = { + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym_seh_try_statement] = STATE(100), + [sym_seh_leave_statement] = STATE(100), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(100), + [sym_co_return_statement] = STATE(100), + [sym_co_yield_statement] = STATE(100), + [sym_throw_statement] = STATE(100), + [sym_try_statement] = STATE(100), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(100), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1314), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1250), - [anon_sym___cdecl] = ACTIONS(1250), - [anon_sym___clrcall] = ACTIONS(1250), - [anon_sym___stdcall] = ACTIONS(1250), - [anon_sym___fastcall] = ACTIONS(1250), - [anon_sym___thiscall] = ACTIONS(1250), - [anon_sym___vectorcall] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym___based] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1316), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57551,99 +64807,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1250), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1250), - [anon_sym_static_assert] = ACTIONS(1250), - [anon_sym_concept] = ACTIONS(1250), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1314), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_operator] = ACTIONS(1314), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym_concept] = ACTIONS(1314), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(101)] = { + [STATE(100)] = { [sym_declaration] = STATE(101), [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), [sym_attributed_statement] = STATE(101), [sym_labeled_statement] = STATE(101), [sym_expression_statement] = STATE(101), @@ -57658,327 +64916,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(101), [sym_seh_try_statement] = STATE(101), [sym_seh_leave_statement] = STATE(101), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(101), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1598), - [aux_sym_preproc_include_token1] = ACTIONS(1285), - [aux_sym_preproc_def_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [sym_preproc_directive] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym___extension__] = ACTIONS(1604), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_virtual] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___attribute] = ACTIONS(1319), - [anon_sym_using] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___based] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_mutable] = ACTIONS(1340), - [anon_sym_constinit] = ACTIONS(1340), - [anon_sym_consteval] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym___try] = ACTIONS(1640), - [anon_sym___leave] = ACTIONS(1643), - [anon_sym_not] = ACTIONS(1293), - [anon_sym_compl] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1403), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [anon_sym___asm] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1427), - [anon_sym_decltype] = ACTIONS(1430), - [anon_sym_explicit] = ACTIONS(1285), - [anon_sym_typename] = ACTIONS(1433), - [anon_sym_template] = ACTIONS(1436), - [anon_sym_operator] = ACTIONS(1285), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1649), - [anon_sym_namespace] = ACTIONS(1285), - [anon_sym_static_assert] = ACTIONS(1285), - [anon_sym_concept] = ACTIONS(1285), - [anon_sym_co_return] = ACTIONS(1652), - [anon_sym_co_yield] = ACTIONS(1655), - [anon_sym_R_DQUOTE] = ACTIONS(1454), - [anon_sym_LR_DQUOTE] = ACTIONS(1454), - [anon_sym_uR_DQUOTE] = ACTIONS(1454), - [anon_sym_UR_DQUOTE] = ACTIONS(1454), - [anon_sym_u8R_DQUOTE] = ACTIONS(1454), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_requires] = ACTIONS(1463), - [sym_this] = ACTIONS(1421), - }, - [STATE(102)] = { - [sym_declaration] = STATE(98), - [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym_seh_try_statement] = STATE(98), - [sym_seh_leave_statement] = STATE(98), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(98), - [sym_co_return_statement] = STATE(98), - [sym_co_yield_statement] = STATE(98), - [sym_throw_statement] = STATE(98), - [sym_try_statement] = STATE(98), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(1594), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1018), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1270), + [anon_sym_using] = ACTIONS(1322), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym___based] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1324), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -57999,210 +65039,450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1270), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_namespace] = ACTIONS(1270), - [anon_sym_static_assert] = ACTIONS(1270), - [anon_sym_concept] = ACTIONS(1270), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1322), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_operator] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym_concept] = ACTIONS(1322), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(103)] = { - [sym_declaration] = STATE(95), - [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym_seh_try_statement] = STATE(95), - [sym_seh_leave_statement] = STATE(95), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(101)] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(101), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1591), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym___extension__] = ACTIONS(1597), + [anon_sym_typedef] = ACTIONS(1600), + [anon_sym_virtual] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1363), + [anon_sym___attribute] = ACTIONS(1363), + [anon_sym_using] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___based] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym__Nonnull] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_alignas] = ACTIONS(1387), + [anon_sym__Alignas] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1630), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1636), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_compl] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1447), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_typename] = ACTIONS(1453), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1465), + [anon_sym_u_DQUOTE] = ACTIONS(1465), + [anon_sym_U_DQUOTE] = ACTIONS(1465), + [anon_sym_u8_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1471), + [anon_sym_nullptr] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1474), + [anon_sym_decltype] = ACTIONS(1477), + [anon_sym_explicit] = ACTIONS(1329), + [anon_sym_template] = ACTIONS(1639), + [anon_sym_operator] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1642), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1645), + [anon_sym_namespace] = ACTIONS(1329), + [anon_sym_static_assert] = ACTIONS(1329), + [anon_sym_concept] = ACTIONS(1329), + [anon_sym_co_return] = ACTIONS(1648), + [anon_sym_co_yield] = ACTIONS(1651), + [anon_sym_R_DQUOTE] = ACTIONS(1498), + [anon_sym_LR_DQUOTE] = ACTIONS(1498), + [anon_sym_uR_DQUOTE] = ACTIONS(1498), + [anon_sym_UR_DQUOTE] = ACTIONS(1498), + [anon_sym_u8R_DQUOTE] = ACTIONS(1498), + [anon_sym_co_await] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1504), + [anon_sym_requires] = ACTIONS(1507), + [anon_sym_CARET_CARET] = ACTIONS(1510), + [anon_sym_LBRACK_COLON] = ACTIONS(1513), + [sym_this] = ACTIONS(1468), + }, + [STATE(102)] = { + [sym_declaration] = STATE(103), + [sym_type_definition] = STATE(103), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(103), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(103), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1270), + [anon_sym_using] = ACTIONS(1294), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym___based] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1300), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58223,210 +65503,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1270), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1270), - [anon_sym_static_assert] = ACTIONS(1270), - [anon_sym_concept] = ACTIONS(1270), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1294), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_operator] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym_concept] = ACTIONS(1294), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(104)] = { - [sym_declaration] = STATE(96), - [sym_type_definition] = STATE(96), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(96), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(103)] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(101), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1318), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym___based] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(1320), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58447,194 +65735,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(1274), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(1274), - [anon_sym_static_assert] = ACTIONS(1274), - [anon_sym_concept] = ACTIONS(1274), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1318), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_operator] = ACTIONS(1318), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_namespace] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym_concept] = ACTIONS(1318), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(105)] = { - [sym_declaration] = STATE(614), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(614), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4423), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8076), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(104)] = { + [sym_declaration] = STATE(105), + [sym_type_definition] = STATE(105), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(105), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(105), + [sym_labeled_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_if_statement] = STATE(105), + [sym_switch_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_break_statement] = STATE(105), + [sym_continue_statement] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym_seh_try_statement] = STATE(105), + [sym_seh_leave_statement] = STATE(105), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(105), + [sym_co_return_statement] = STATE(105), + [sym_co_yield_statement] = STATE(105), + [sym_throw_statement] = STATE(105), + [sym_try_statement] = STATE(105), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(105), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(105), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1656), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1294), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym___based] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58655,188 +65967,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1294), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_operator] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym_concept] = ACTIONS(1294), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(106)] = { - [sym_declaration] = STATE(109), - [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(109), - [sym_labeled_statement] = STATE(109), - [sym_expression_statement] = STATE(109), - [sym_if_statement] = STATE(109), - [sym_switch_statement] = STATE(109), - [sym_while_statement] = STATE(109), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(109), - [sym_return_statement] = STATE(109), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(109), - [sym_goto_statement] = STATE(109), - [sym_seh_try_statement] = STATE(109), - [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(105)] = { + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(107), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(107), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1656), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1318), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym___based] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -58857,186 +66199,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1318), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_operator] = ACTIONS(1318), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym_concept] = ACTIONS(1318), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(107)] = { - [sym_declaration] = STATE(554), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4754), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(536), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(554), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1594), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(106)] = { + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(108), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(108), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1656), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1314), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym___based] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59057,188 +66431,450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1314), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_operator] = ACTIONS(1314), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym_concept] = ACTIONS(1314), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(108)] = { - [sym_declaration] = STATE(106), - [sym_type_definition] = STATE(106), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(106), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [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(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(106), + [STATE(107)] = { + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(107), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(107), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(107), [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1329), + [aux_sym_preproc_def_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [sym_preproc_directive] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym___extension__] = ACTIONS(1666), + [anon_sym_typedef] = ACTIONS(1669), + [anon_sym_virtual] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1363), + [anon_sym___attribute] = ACTIONS(1363), + [anon_sym_using] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___based] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym__Nonnull] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_alignas] = ACTIONS(1387), + [anon_sym__Alignas] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_goto] = ACTIONS(1699), + [anon_sym___try] = ACTIONS(1702), + [anon_sym___leave] = ACTIONS(1705), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_compl] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1447), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_typename] = ACTIONS(1453), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1465), + [anon_sym_u_DQUOTE] = ACTIONS(1465), + [anon_sym_U_DQUOTE] = ACTIONS(1465), + [anon_sym_u8_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1471), + [anon_sym_nullptr] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1474), + [anon_sym_decltype] = ACTIONS(1477), + [anon_sym_explicit] = ACTIONS(1329), + [anon_sym_template] = ACTIONS(1708), + [anon_sym_operator] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1329), + [anon_sym_static_assert] = ACTIONS(1329), + [anon_sym_concept] = ACTIONS(1329), + [anon_sym_co_return] = ACTIONS(1717), + [anon_sym_co_yield] = ACTIONS(1720), + [anon_sym_R_DQUOTE] = ACTIONS(1498), + [anon_sym_LR_DQUOTE] = ACTIONS(1498), + [anon_sym_uR_DQUOTE] = ACTIONS(1498), + [anon_sym_UR_DQUOTE] = ACTIONS(1498), + [anon_sym_u8R_DQUOTE] = ACTIONS(1498), + [anon_sym_co_await] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1504), + [anon_sym_requires] = ACTIONS(1507), + [anon_sym_CARET_CARET] = ACTIONS(1510), + [anon_sym_LBRACK_COLON] = ACTIONS(1513), + [sym_this] = ACTIONS(1468), + }, + [STATE(108)] = { + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(107), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(107), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1656), + [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1322), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym___based] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59259,387 +66895,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1322), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_operator] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym_concept] = ACTIONS(1322), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(109)] = { - [sym_declaration] = STATE(109), - [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(109), - [sym_labeled_statement] = STATE(109), - [sym_expression_statement] = STATE(109), - [sym_if_statement] = STATE(109), - [sym_switch_statement] = STATE(109), - [sym_while_statement] = STATE(109), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(109), - [sym_return_statement] = STATE(109), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(109), - [sym_goto_statement] = STATE(109), - [sym_seh_try_statement] = STATE(109), - [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym___extension__] = ACTIONS(1706), - [anon_sym_typedef] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym___attribute] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [anon_sym__Nonnull] = ACTIONS(1340), - [anon_sym_mutable] = ACTIONS(1340), - [anon_sym_constinit] = ACTIONS(1340), - [anon_sym_consteval] = ACTIONS(1340), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_goto] = ACTIONS(1739), - [anon_sym___try] = ACTIONS(1742), - [anon_sym___leave] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1293), - [anon_sym_compl] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1397), - [anon_sym___alignof__] = ACTIONS(1400), - [anon_sym___alignof] = ACTIONS(1400), - [anon_sym__alignof] = ACTIONS(1400), - [anon_sym_alignof] = ACTIONS(1400), - [anon_sym__Alignof] = ACTIONS(1400), - [anon_sym_offsetof] = ACTIONS(1403), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [anon_sym___asm] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1418), - [anon_sym_u_DQUOTE] = ACTIONS(1418), - [anon_sym_U_DQUOTE] = ACTIONS(1418), - [anon_sym_u8_DQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1427), - [anon_sym_decltype] = ACTIONS(1430), - [anon_sym_typename] = ACTIONS(1433), - [anon_sym_template] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1748), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_co_return] = ACTIONS(1754), - [anon_sym_co_yield] = ACTIONS(1757), - [anon_sym_R_DQUOTE] = ACTIONS(1454), - [anon_sym_LR_DQUOTE] = ACTIONS(1454), - [anon_sym_uR_DQUOTE] = ACTIONS(1454), - [anon_sym_UR_DQUOTE] = ACTIONS(1454), - [anon_sym_u8R_DQUOTE] = ACTIONS(1454), - [anon_sym_co_await] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_requires] = ACTIONS(1463), - [sym_this] = ACTIONS(1421), - }, - [STATE(110)] = { - [sym_declaration] = STATE(944), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(925), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(944), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(680), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(680), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6608), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10331), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(197), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59660,188 +67111,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(110)] = { + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(110), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym___extension__] = ACTIONS(1731), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_virtual] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1363), + [anon_sym___attribute] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym__Nonnull] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_alignas] = ACTIONS(1387), + [anon_sym__Alignas] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_goto] = ACTIONS(1764), + [anon_sym___try] = ACTIONS(1767), + [anon_sym___leave] = ACTIONS(1770), + [anon_sym_not] = ACTIONS(1337), + [anon_sym_compl] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1447), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_typename] = ACTIONS(1453), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [anon_sym___asm] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1465), + [anon_sym_u_DQUOTE] = ACTIONS(1465), + [anon_sym_U_DQUOTE] = ACTIONS(1465), + [anon_sym_u8_DQUOTE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1471), + [anon_sym_nullptr] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1474), + [anon_sym_decltype] = ACTIONS(1477), + [anon_sym_template] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1776), + [anon_sym_delete] = ACTIONS(1486), + [anon_sym_throw] = ACTIONS(1779), + [anon_sym_co_return] = ACTIONS(1782), + [anon_sym_co_yield] = ACTIONS(1785), + [anon_sym_R_DQUOTE] = ACTIONS(1498), + [anon_sym_LR_DQUOTE] = ACTIONS(1498), + [anon_sym_uR_DQUOTE] = ACTIONS(1498), + [anon_sym_UR_DQUOTE] = ACTIONS(1498), + [anon_sym_u8R_DQUOTE] = ACTIONS(1498), + [anon_sym_co_await] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1504), + [anon_sym_requires] = ACTIONS(1507), + [anon_sym_CARET_CARET] = ACTIONS(1510), + [anon_sym_LBRACK_COLON] = ACTIONS(1513), + [sym_this] = ACTIONS(1468), }, [STATE(111)] = { - [sym_declaration] = STATE(109), - [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(109), - [sym_labeled_statement] = STATE(109), - [sym_expression_statement] = STATE(109), - [sym_if_statement] = STATE(109), - [sym_switch_statement] = STATE(109), - [sym_while_statement] = STATE(109), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(109), - [sym_return_statement] = STATE(109), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(109), - [sym_goto_statement] = STATE(109), - [sym_seh_try_statement] = STATE(109), - [sym_seh_leave_statement] = STATE(109), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(118), + [sym_type_definition] = STATE(118), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(118), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(118), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1792), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -59862,187 +67530,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(112)] = { - [sym_declaration] = STATE(111), - [sym_type_definition] = STATE(111), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(111), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [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(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [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(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(1660), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(119), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1792), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60063,186 +67739,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(113)] = { - [sym_declaration] = STATE(614), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4686), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(614), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(500), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(500), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60263,187 +67947,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(114)] = { - [sym_declaration] = STATE(432), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(367), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(432), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(742), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6271), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(652), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(742), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60464,187 +68156,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(115)] = { - [sym_declaration] = STATE(262), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4737), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(263), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(262), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(500), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6290), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(496), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(500), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60665,187 +68365,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(116)] = { - [sym_declaration] = STATE(432), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4738), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(950), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_compound_statement] = STATE(512), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(432), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(680), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6286), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(550), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(680), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(894), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -60866,171 +68574,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(117)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(8689), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8694), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(1157), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(1142), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1157), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61051,154 +68783,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(118)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(8944), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8972), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(110), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1792), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61219,154 +68993,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(119)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(8262), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8269), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6281), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [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(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(110), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_case_statement_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1792), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61387,154 +69202,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(120)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(9078), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8704), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(399), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6292), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(1150), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_compound_statement] = STATE(360), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(399), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(305), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61555,154 +69410,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(121)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(8910), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8911), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(10561), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10566), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1854), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61723,154 +69602,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(122)] = { - [sym_declaration] = STATE(390), - [sym_type_definition] = STATE(4141), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(4141), - [sym__for_statement_body] = STATE(8266), - [sym_expression] = STATE(4651), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8652), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(4141), - [sym__for_range_loop_body] = STATE(8267), - [sym_init_statement] = STATE(1909), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(10504), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10526), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym___extension__] = ACTIONS(1778), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1854), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -61891,153 +69777,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(123)] = { - [sym_declaration] = STATE(1587), - [sym_type_definition] = STATE(1587), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4734), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression_statement] = STATE(1587), - [sym_expression] = STATE(4439), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(7971), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_alias_declaration] = STATE(1587), - [sym_init_statement] = STATE(134), - [sym_condition_declaration] = STATE(8366), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(10600), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10601), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1854), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62058,160 +69952,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(124)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(5364), - [sym__declarator] = STATE(6887), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8678), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3382), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5926), - [sym_qualified_identifier] = STATE(3383), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(10810), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10813), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -62224,161 +70127,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, [STATE(125)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(5364), - [sym__declarator] = STATE(6887), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(8436), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2993), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8436), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8720), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3382), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8809), - [sym__binary_fold] = STATE(8817), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5926), - [sym_qualified_identifier] = STATE(3383), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8866), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(10738), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10739), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(126)] = { + [sym_declaration] = STATE(280), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6293), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym__for_statement_body] = STATE(11466), + [sym_expression] = STATE(6636), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10523), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(11468), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(127)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(7449), + [sym__declarator] = STATE(8939), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10894), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5293), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7791), + [sym_qualified_identifier] = STATE(5294), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -62391,161 +70650,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(126)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(5364), - [sym__declarator] = STATE(6887), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8459), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3382), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5926), - [sym_qualified_identifier] = STATE(3383), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), + [STATE(128)] = { + [sym_declaration] = STATE(1878), + [sym_type_definition] = STATE(1878), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6274), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(1878), + [sym_expression] = STATE(6522), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10153), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(1878), + [sym_init_statement] = STATE(146), + [sym_condition_declaration] = STATE(10886), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(1792), + [anon_sym_typedef] = ACTIONS(1794), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(129)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10805), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(130)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10754), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(131)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(7449), + [sym__declarator] = STATE(8939), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(10595), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4645), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10595), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10605), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5293), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10607), + [sym__unary_right_fold] = STATE(10613), + [sym__binary_fold] = STATE(10617), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7791), + [sym_qualified_identifier] = STATE(5294), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10619), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -62558,153 +71346,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(127)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_compound_statement] = STATE(7596), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7500), - [sym_expression] = STATE(4413), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7596), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7500), - [sym_optional_parameter_declaration] = STATE(7500), - [sym_variadic_parameter_declaration] = STATE(7500), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5814), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(132)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10999), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1854), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62725,151 +71521,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(128)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3234), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8998), - [sym__unary_right_fold] = STATE(9002), - [sym__binary_fold] = STATE(9019), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(133)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10624), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -62890,151 +71695,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(129)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3322), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(134)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10657), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63055,151 +71869,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(130)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3204), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8931), - [sym__unary_right_fold] = STATE(8184), - [sym__binary_fold] = STATE(8263), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(135)] = { + [sym_declaration] = STATE(6131), + [sym_type_definition] = STATE(6131), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6277), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression_statement] = STATE(6131), + [sym_expression] = STATE(6661), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10681), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_alias_declaration] = STATE(6131), + [sym__for_range_loop_body] = STATE(10496), + [sym_init_statement] = STATE(2572), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2025), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63220,48 +72043,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(136)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(7449), + [sym__declarator] = STATE(8939), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11305), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5293), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7791), + [sym_qualified_identifier] = STATE(5294), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1924), [anon_sym_delete] = ACTIONS(1926), [anon_sym_R_DQUOTE] = ACTIONS(1928), [anon_sym_LR_DQUOTE] = ACTIONS(1928), @@ -63271,100 +72268,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_co_await] = ACTIONS(1930), [anon_sym_new] = ACTIONS(1932), [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(131)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3243), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8257), - [sym__unary_right_fold] = STATE(8258), - [sym__binary_fold] = STATE(8259), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(137)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_compound_statement] = STATE(9939), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9742), + [sym_expression] = STATE(6567), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9939), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9742), + [sym_optional_parameter_declaration] = STATE(9742), + [sym_variadic_parameter_declaration] = STATE(9742), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7803), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2366), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1950), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1952), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63385,151 +72390,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(1962), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(1964), }, - [STATE(132)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3238), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(138)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5172), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63550,151 +72562,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, - [STATE(133)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_expression] = STATE(3250), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(7830), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8809), - [sym__binary_fold] = STATE(8817), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5809), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3523), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1898), - [anon_sym_virtual] = ACTIONS(1870), + [STATE(139)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5277), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10841), + [sym__unary_right_fold] = STATE(10845), + [sym__binary_fold] = STATE(10846), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63715,145 +72734,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, - [STATE(134)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5378), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_expression] = STATE(4557), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8406), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2937), - [sym_template_function] = STATE(3996), - [sym_condition_declaration] = STATE(8406), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5946), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(2943), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1658), - [anon_sym_virtual] = ACTIONS(1262), + [STATE(140)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5250), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10597), + [sym__unary_right_fold] = STATE(10627), + [sym__binary_fold] = STATE(10638), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -63874,647 +72906,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(71), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(135)] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1936), - [anon_sym_RPAREN] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym___try] = ACTIONS(1938), - [anon_sym___except] = ACTIONS(1938), - [anon_sym___finally] = ACTIONS(1938), - [anon_sym___leave] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1938), - [anon_sym_compl] = ACTIONS(1938), - [anon_sym_or] = ACTIONS(1938), - [anon_sym_and] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1938), - [anon_sym___alignof__] = ACTIONS(1938), - [anon_sym___alignof] = ACTIONS(1938), - [anon_sym__alignof] = ACTIONS(1938), - [anon_sym_alignof] = ACTIONS(1938), - [anon_sym__Alignof] = ACTIONS(1938), - [anon_sym_offsetof] = ACTIONS(1938), - [anon_sym__Generic] = ACTIONS(1938), - [anon_sym_asm] = ACTIONS(1938), - [anon_sym___asm__] = ACTIONS(1938), - [anon_sym___asm] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [anon_sym_NULL] = ACTIONS(1938), - [anon_sym_nullptr] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_final] = ACTIONS(1938), - [anon_sym_override] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_export] = ACTIONS(1938), - [anon_sym_module] = ACTIONS(1938), - [anon_sym_import] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_GT2] = ACTIONS(1936), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_delete] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_namespace] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_concept] = ACTIONS(1938), - [anon_sym_co_return] = ACTIONS(1938), - [anon_sym_co_yield] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_R_DQUOTE] = ACTIONS(1936), - [anon_sym_LR_DQUOTE] = ACTIONS(1936), - [anon_sym_uR_DQUOTE] = ACTIONS(1936), - [anon_sym_UR_DQUOTE] = ACTIONS(1936), - [anon_sym_u8R_DQUOTE] = ACTIONS(1936), - [anon_sym_co_await] = ACTIONS(1938), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_requires] = ACTIONS(1938), - [sym_this] = ACTIONS(1938), - }, - [STATE(136)] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1940), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___except] = ACTIONS(1942), - [anon_sym___finally] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_or] = ACTIONS(1942), - [anon_sym_and] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_final] = ACTIONS(1942), - [anon_sym_override] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_import] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1940), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(137)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1944), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(138)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), [anon_sym_delete] = ACTIONS(2010), [anon_sym_R_DQUOTE] = ACTIONS(2012), [anon_sym_LR_DQUOTE] = ACTIONS(2012), @@ -64523,236 +72956,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u8R_DQUOTE] = ACTIONS(2012), [anon_sym_co_await] = ACTIONS(2014), [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, - [STATE(139)] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(604), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_switch] = ACTIONS(2059), - [anon_sym_case] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_goto] = ACTIONS(2086), - [anon_sym___try] = ACTIONS(2089), - [anon_sym___leave] = ACTIONS(2092), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2134), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_co_return] = ACTIONS(2143), - [anon_sym_co_yield] = ACTIONS(2146), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), - }, - [STATE(140)] = { - [sym_compound_statement] = STATE(8436), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2993), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8436), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8720), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8809), - [sym__binary_fold] = STATE(8817), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8866), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(141)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5201), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10962), + [sym__unary_right_fold] = STATE(11139), + [sym__binary_fold] = STATE(11401), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -64765,286 +73078,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(141)] = { - [sym_attribute_declaration] = STATE(173), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(544), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2171), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, [STATE(142)] = { - [sym_compound_statement] = STATE(8422), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2954), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8422), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8415), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8257), - [sym__unary_right_fold] = STATE(8258), - [sym__binary_fold] = STATE(8259), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8493), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5269), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10646), + [sym__unary_right_fold] = STATE(10648), + [sym__binary_fold] = STATE(10649), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -65057,140 +73250,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, [STATE(143)] = { - [sym_compound_statement] = STATE(8436), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2993), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8436), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(9023), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8809), - [sym__binary_fold] = STATE(8817), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8866), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5352), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -65203,286 +73422,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, [STATE(144)] = { - [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(270), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(145)] = { - [sym_compound_statement] = STATE(8436), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2993), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8436), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8515), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8998), - [sym__unary_right_fold] = STATE(9002), - [sym__binary_fold] = STATE(9019), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8866), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5236), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10538), + [sym__unary_right_fold] = STATE(10540), + [sym__binary_fold] = STATE(10544), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -65495,140 +73594,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, - [STATE(146)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8773), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(145)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_expression] = STATE(5286), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10607), + [sym__unary_right_fold] = STATE(10613), + [sym__binary_fold] = STATE(10617), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7811), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(1954), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5895), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1978), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -65641,140 +73766,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2022), + [sym_this] = ACTIONS(2004), }, - [STATE(147)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8676), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(146)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7393), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_expression] = STATE(6701), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10747), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4477), + [sym_template_function] = STATE(5900), + [sym_condition_declaration] = STATE(10747), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7866), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(4449), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4517), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1723), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -65787,13239 +73932,10376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(147)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [aux_sym_preproc_if_token2] = ACTIONS(2026), + [aux_sym_preproc_else_token1] = ACTIONS(2026), + [aux_sym_preproc_elif_token1] = ACTIONS(2024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, [STATE(148)] = { [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(270), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(672), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_switch] = ACTIONS(2191), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_goto] = ACTIONS(2218), - [anon_sym___try] = ACTIONS(2221), - [anon_sym___leave] = ACTIONS(2224), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2230), - [anon_sym_co_return] = ACTIONS(2233), - [anon_sym_co_yield] = ACTIONS(2236), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_using] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_goto] = ACTIONS(2148), + [anon_sym___try] = ACTIONS(2151), + [anon_sym___leave] = ACTIONS(2154), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2199), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_co_return] = ACTIONS(2208), + [anon_sym_co_yield] = ACTIONS(2211), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), }, [STATE(149)] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(411), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_attribute_declaration] = STATE(154), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(666), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2236), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, [STATE(150)] = { [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(411), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(372), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_goto] = ACTIONS(2282), - [anon_sym___try] = ACTIONS(2285), - [anon_sym___leave] = ACTIONS(2288), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_co_return] = ACTIONS(2297), - [anon_sym_co_yield] = ACTIONS(2300), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_using] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_switch] = ACTIONS(2256), + [anon_sym_case] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_goto] = ACTIONS(2283), + [anon_sym___try] = ACTIONS(2286), + [anon_sym___leave] = ACTIONS(2289), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2298), + [anon_sym_co_return] = ACTIONS(2301), + [anon_sym_co_yield] = ACTIONS(2304), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), }, [STATE(151)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8393), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(430), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, [STATE(152)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8277), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [sym_expression] = STATE(3678), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2313), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [anon_sym_COLON_RBRACK] = ACTIONS(2026), + [sym_this] = ACTIONS(2058), }, [STATE(153)] = { - [sym_compound_statement] = STATE(8436), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2993), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8436), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8966), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8998), - [sym__unary_right_fold] = STATE(9002), - [sym__binary_fold] = STATE(9019), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8866), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(154)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8678), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(155)] = { - [sym_compound_statement] = STATE(8422), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2954), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8422), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8638), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8931), - [sym__unary_right_fold] = STATE(8184), - [sym__binary_fold] = STATE(8263), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8493), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(156)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8418), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(157)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym___attribute__] = ACTIONS(1944), - [anon_sym___attribute] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(158)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8766), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(159)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8195), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(160)] = { - [sym_compound_statement] = STATE(8422), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2954), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8422), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8253), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8257), - [sym__unary_right_fold] = STATE(8258), - [sym__binary_fold] = STATE(8259), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8493), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(161)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8703), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(162)] = { - [sym_compound_statement] = STATE(8422), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2954), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8422), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8924), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8931), - [sym__unary_right_fold] = STATE(8184), - [sym__binary_fold] = STATE(8263), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8493), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(163)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8189), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(164)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8570), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(165)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8459), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(166)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8696), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(167)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8756), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(168)] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(604), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_attribute_declaration] = STATE(150), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(372), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2341), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(169)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8654), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(170)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8608), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(171)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8946), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(172)] = { - [sym_compound_statement] = STATE(8435), - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(2895), - [sym__string] = STATE(3301), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_type_descriptor] = STATE(8725), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(7864), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5877), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(5528), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(154)] = { + [sym_attribute_declaration] = STATE(154), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(666), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(2343), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_using] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2358), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_goto] = ACTIONS(2382), + [anon_sym___try] = ACTIONS(2385), + [anon_sym___leave] = ACTIONS(2388), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2394), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2397), + [anon_sym_co_return] = ACTIONS(2400), + [anon_sym_co_yield] = ACTIONS(2403), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), }, - [STATE(173)] = { - [sym_attribute_declaration] = STATE(173), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(544), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(2331), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_switch] = ACTIONS(2343), - [anon_sym_case] = ACTIONS(2346), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2364), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_goto] = ACTIONS(2370), - [anon_sym___try] = ACTIONS(2373), - [anon_sym___leave] = ACTIONS(2376), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_co_return] = ACTIONS(2385), - [anon_sym_co_yield] = ACTIONS(2388), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), + [STATE(155)] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(430), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(2406), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_using] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym___try] = ACTIONS(2448), + [anon_sym___leave] = ACTIONS(2451), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2466), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), }, - [STATE(174)] = { + [STATE(156)] = { [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(270), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(672), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2471), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(175)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(8788), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(157)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(10497), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(176)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(336), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(158)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(494), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(177)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(250), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(159)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(357), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(178)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(339), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(160)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(179)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(241), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(161)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(677), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(180)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(242), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(162)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(377), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(181)] = { - [sym_attribute_declaration] = STATE(139), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(604), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(163)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(389), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(182)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(340), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(164)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(392), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(183)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(239), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(165)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(373), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(184)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(8305), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(166)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(9912), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(185)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(254), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(167)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(494), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(186)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(256), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(168)] = { + [sym_attribute_declaration] = STATE(150), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(372), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(187)] = { - [sym_attribute_declaration] = STATE(174), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_statement] = STATE(257), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym_expression] = STATE(4510), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9076), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(263), - [sym_co_return_statement] = STATE(263), - [sym_co_yield_statement] = STATE(263), - [sym_throw_statement] = STATE(263), - [sym_try_statement] = STATE(263), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(169)] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(430), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(2477), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_goto] = ACTIONS(2445), + [anon_sym___try] = ACTIONS(2495), + [anon_sym___leave] = ACTIONS(2388), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_co_return] = ACTIONS(2463), + [anon_sym_co_yield] = ACTIONS(2466), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), + }, + [STATE(170)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(10059), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(301), - [anon_sym_switch] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(307), - [anon_sym_while] = ACTIONS(309), - [anon_sym_do] = ACTIONS(311), - [anon_sym_for] = ACTIONS(313), - [anon_sym_return] = ACTIONS(315), - [anon_sym_break] = ACTIONS(317), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_goto] = ACTIONS(321), - [anon_sym___try] = ACTIONS(323), - [anon_sym___leave] = ACTIONS(325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_co_return] = ACTIONS(339), - [anon_sym_co_yield] = ACTIONS(341), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(188)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(7583), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(171)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(482), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(189)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(383), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(172)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(484), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(190)] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(411), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_switch] = ACTIONS(2255), - [anon_sym_case] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_goto] = ACTIONS(2282), - [anon_sym___try] = ACTIONS(2411), - [anon_sym___leave] = ACTIONS(2092), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2294), - [anon_sym_co_return] = ACTIONS(2297), - [anon_sym_co_yield] = ACTIONS(2300), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(191)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(7490), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(173)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(485), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(192)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(336), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(174)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(491), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(193)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(339), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(175)] = { + [sym_attribute_declaration] = STATE(148), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(672), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(194)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(340), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(176)] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(430), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(195)] = { - [sym_attribute_declaration] = STATE(173), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(544), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(177)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1129), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(196)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(383), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(178)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(482), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(197)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(551), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(179)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1134), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(198)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(468), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(180)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(538), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(199)] = { - [sym_attribute_declaration] = STATE(212), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(285), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(212), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(181)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(362), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(200)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(565), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(182)] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(430), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(201)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(567), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(183)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(545), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(202)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(568), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(184)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1080), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(203)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(916), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(185)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(11163), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(204)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(941), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(186)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(484), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(205)] = { - [sym_attribute_declaration] = STATE(205), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(917), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(2416), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym___extension__] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2428), - [anon_sym_case] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2440), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_goto] = ACTIONS(2449), - [anon_sym___try] = ACTIONS(2452), - [anon_sym___leave] = ACTIONS(2455), - [anon_sym_not] = ACTIONS(2027), - [anon_sym_compl] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2098), - [anon_sym___alignof__] = ACTIONS(2101), - [anon_sym___alignof] = ACTIONS(2101), - [anon_sym__alignof] = ACTIONS(2101), - [anon_sym_alignof] = ACTIONS(2101), - [anon_sym__Alignof] = ACTIONS(2101), - [anon_sym_offsetof] = ACTIONS(2104), - [anon_sym__Generic] = ACTIONS(2107), - [anon_sym_asm] = ACTIONS(2110), - [anon_sym___asm__] = ACTIONS(2110), - [anon_sym___asm] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2113), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_u_DQUOTE] = ACTIONS(2119), - [anon_sym_U_DQUOTE] = ACTIONS(2119), - [anon_sym_u8_DQUOTE] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [anon_sym_NULL] = ACTIONS(2125), - [anon_sym_nullptr] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2128), - [anon_sym_template] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2137), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_co_return] = ACTIONS(2464), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_R_DQUOTE] = ACTIONS(2149), - [anon_sym_LR_DQUOTE] = ACTIONS(2149), - [anon_sym_uR_DQUOTE] = ACTIONS(2149), - [anon_sym_UR_DQUOTE] = ACTIONS(2149), - [anon_sym_u8R_DQUOTE] = ACTIONS(2149), - [anon_sym_co_await] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_requires] = ACTIONS(2158), - [sym_this] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(206)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(463), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(187)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(722), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(207)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(912), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(188)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(485), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(208)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(611), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(189)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(546), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(209)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(949), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(190)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(191)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(491), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(210)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(953), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(192)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(560), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(211)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(954), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(193)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(562), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(212)] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_statement] = STATE(411), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym_expression] = STATE(4579), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8210), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(194)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(563), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(81), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(990), - [anon_sym___leave] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(213)] = { - [sym_attribute_declaration] = STATE(190), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(411), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(195)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(567), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(214)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(470), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(196)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(724), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(215)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(642), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(197)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1125), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(216)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(644), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(198)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(725), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(217)] = { - [sym_attribute_declaration] = STATE(181), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(645), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(199)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(543), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_case] = ACTIONS(203), - [anon_sym_default] = ACTIONS(205), - [anon_sym_while] = ACTIONS(207), - [anon_sym_do] = ACTIONS(209), - [anon_sym_for] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_break] = ACTIONS(215), - [anon_sym_continue] = ACTIONS(217), - [anon_sym_goto] = ACTIONS(219), - [anon_sym___try] = ACTIONS(221), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(235), - [anon_sym_co_return] = ACTIONS(243), - [anon_sym_co_yield] = ACTIONS(245), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(218)] = { - [sym_expression] = STATE(3132), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_initializer_list] = STATE(3487), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [anon_sym_DASH_GT_STAR] = ACTIONS(1946), - [sym_this] = ACTIONS(1842), - }, - [STATE(219)] = { - [sym_attribute_declaration] = STATE(205), - [sym_compound_statement] = STATE(925), - [sym_attributed_statement] = STATE(925), - [sym_statement] = STATE(917), - [sym_labeled_statement] = STATE(925), - [sym_expression_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_switch_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_do_statement] = STATE(925), - [sym_for_statement] = STATE(925), - [sym_return_statement] = STATE(925), - [sym_break_statement] = STATE(925), - [sym_continue_statement] = STATE(925), - [sym_goto_statement] = STATE(925), - [sym_seh_try_statement] = STATE(925), - [sym_seh_leave_statement] = STATE(925), - [sym_expression] = STATE(4569), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8288), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(925), - [sym_co_return_statement] = STATE(925), - [sym_co_yield_statement] = STATE(925), - [sym_throw_statement] = STATE(925), - [sym_try_statement] = STATE(925), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(200)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1104), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_co_return] = ACTIONS(1696), - [anon_sym_co_yield] = ACTIONS(1698), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(220)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(8582), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(201)] = { + [sym_attribute_declaration] = STATE(208), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(208), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(221)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(8810), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(202)] = { + [sym_attribute_declaration] = STATE(207), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(735), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(222)] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(512), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(8760), - [sym_labeled_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [sym_if_statement] = STATE(512), - [sym_switch_statement] = STATE(512), - [sym_case_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_seh_try_statement] = STATE(512), - [sym_seh_leave_statement] = STATE(512), - [sym_expression] = STATE(4636), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(512), - [sym_co_return_statement] = STATE(512), - [sym_co_yield_statement] = STATE(512), - [sym_throw_statement] = STATE(512), - [sym_try_statement] = STATE(512), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(203)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(496), + [sym_attributed_statement] = STATE(496), + [sym_statement] = STATE(383), + [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(6685), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10787), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [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(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(496), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(101), - [anon_sym___try] = ACTIONS(1772), - [anon_sym___leave] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1222), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(147), - [anon_sym_co_return] = ACTIONS(155), - [anon_sym_co_yield] = ACTIONS(157), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(223)] = { - [sym_attribute_declaration] = STATE(195), - [sym_compound_statement] = STATE(536), - [sym_attributed_statement] = STATE(536), - [sym_statement] = STATE(462), - [sym_labeled_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_case_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_seh_try_statement] = STATE(536), - [sym_seh_leave_statement] = STATE(536), - [sym_expression] = STATE(4549), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8232), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_for_range_loop] = STATE(536), - [sym_co_return_statement] = STATE(536), - [sym_co_yield_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_attributed_declarator_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(204)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(355), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym___try] = ACTIONS(1050), - [anon_sym___leave] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(1058), - [anon_sym_co_return] = ACTIONS(1066), - [anon_sym_co_yield] = ACTIONS(1068), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(224)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token2] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [aux_sym_preproc_else_token1] = ACTIONS(2478), - [aux_sym_preproc_elif_token1] = ACTIONS(2478), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym___cdecl] = ACTIONS(2478), - [anon_sym___clrcall] = ACTIONS(2478), - [anon_sym___stdcall] = ACTIONS(2478), - [anon_sym___fastcall] = ACTIONS(2478), - [anon_sym___thiscall] = ACTIONS(2478), - [anon_sym___vectorcall] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym___try] = ACTIONS(2478), - [anon_sym___leave] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2478), - [anon_sym___alignof__] = ACTIONS(2478), - [anon_sym___alignof] = ACTIONS(2478), - [anon_sym__alignof] = ACTIONS(2478), - [anon_sym_alignof] = ACTIONS(2478), - [anon_sym__Alignof] = ACTIONS(2478), - [anon_sym_offsetof] = ACTIONS(2478), - [anon_sym__Generic] = ACTIONS(2478), - [anon_sym_asm] = ACTIONS(2478), - [anon_sym___asm__] = ACTIONS(2478), - [anon_sym___asm] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_L_SQUOTE] = ACTIONS(2480), - [anon_sym_u_SQUOTE] = ACTIONS(2480), - [anon_sym_U_SQUOTE] = ACTIONS(2480), - [anon_sym_u8_SQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_nullptr] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - }, - [STATE(225)] = { - [sym_expression] = STATE(3212), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_initializer_list] = STATE(3630), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1944), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1944), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(1946), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(226)] = { - [sym_expression] = STATE(3362), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_and_eq] = ACTIONS(1944), - [anon_sym_or_eq] = ACTIONS(1944), - [anon_sym_xor_eq] = ACTIONS(1944), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(227)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_include_token1] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token2] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [aux_sym_preproc_else_token1] = ACTIONS(2543), - [aux_sym_preproc_elif_token1] = ACTIONS(2543), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym___cdecl] = ACTIONS(2543), - [anon_sym___clrcall] = ACTIONS(2543), - [anon_sym___stdcall] = ACTIONS(2543), - [anon_sym___fastcall] = ACTIONS(2543), - [anon_sym___thiscall] = ACTIONS(2543), - [anon_sym___vectorcall] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_switch] = ACTIONS(2543), - [anon_sym_case] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_goto] = ACTIONS(2543), - [anon_sym___try] = ACTIONS(2543), - [anon_sym___leave] = ACTIONS(2543), - [anon_sym_not] = ACTIONS(2543), - [anon_sym_compl] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_sizeof] = ACTIONS(2543), - [anon_sym___alignof__] = ACTIONS(2543), - [anon_sym___alignof] = ACTIONS(2543), - [anon_sym__alignof] = ACTIONS(2543), - [anon_sym_alignof] = ACTIONS(2543), - [anon_sym__Alignof] = ACTIONS(2543), - [anon_sym_offsetof] = ACTIONS(2543), - [anon_sym__Generic] = ACTIONS(2543), - [anon_sym_asm] = ACTIONS(2543), - [anon_sym___asm__] = ACTIONS(2543), - [anon_sym___asm] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_L_SQUOTE] = ACTIONS(2545), - [anon_sym_u_SQUOTE] = ACTIONS(2545), - [anon_sym_U_SQUOTE] = ACTIONS(2545), - [anon_sym_u8_SQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_L_DQUOTE] = ACTIONS(2545), - [anon_sym_u_DQUOTE] = ACTIONS(2545), - [anon_sym_U_DQUOTE] = ACTIONS(2545), - [anon_sym_u8_DQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2543), - [anon_sym_nullptr] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_throw] = ACTIONS(2543), - [anon_sym_namespace] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_concept] = ACTIONS(2543), - [anon_sym_co_return] = ACTIONS(2543), - [anon_sym_co_yield] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_R_DQUOTE] = ACTIONS(2545), - [anon_sym_LR_DQUOTE] = ACTIONS(2545), - [anon_sym_uR_DQUOTE] = ACTIONS(2545), - [anon_sym_UR_DQUOTE] = ACTIONS(2545), - [anon_sym_u8R_DQUOTE] = ACTIONS(2545), - [anon_sym_co_await] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_requires] = ACTIONS(2543), - [sym_this] = ACTIONS(2543), + [STATE(205)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1136), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2527), + [anon_sym_LPAREN2] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym___extension__] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_goto] = ACTIONS(2560), + [anon_sym___try] = ACTIONS(2563), + [anon_sym___leave] = ACTIONS(2566), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_compl] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2160), + [anon_sym___alignof__] = ACTIONS(2163), + [anon_sym___alignof] = ACTIONS(2163), + [anon_sym__alignof] = ACTIONS(2163), + [anon_sym_alignof] = ACTIONS(2163), + [anon_sym__Alignof] = ACTIONS(2163), + [anon_sym_offsetof] = ACTIONS(2166), + [anon_sym__Generic] = ACTIONS(2169), + [anon_sym_typename] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym___asm__] = ACTIONS(2175), + [anon_sym___asm] = ACTIONS(2175), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_L_SQUOTE] = ACTIONS(2181), + [anon_sym_u_SQUOTE] = ACTIONS(2181), + [anon_sym_U_SQUOTE] = ACTIONS(2181), + [anon_sym_u8_SQUOTE] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [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(2187), + [sym_false] = ACTIONS(2187), + [anon_sym_NULL] = ACTIONS(2190), + [anon_sym_nullptr] = ACTIONS(2190), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2193), + [anon_sym_template] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_delete] = ACTIONS(2202), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2578), + [anon_sym_co_yield] = ACTIONS(2581), + [anon_sym_R_DQUOTE] = ACTIONS(2214), + [anon_sym_LR_DQUOTE] = ACTIONS(2214), + [anon_sym_uR_DQUOTE] = ACTIONS(2214), + [anon_sym_UR_DQUOTE] = ACTIONS(2214), + [anon_sym_u8R_DQUOTE] = ACTIONS(2214), + [anon_sym_co_await] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2220), + [anon_sym_requires] = ACTIONS(2223), + [anon_sym_CARET_CARET] = ACTIONS(2226), + [anon_sym_LBRACK_COLON] = ACTIONS(2229), + [sym_this] = ACTIONS(2187), }, - [STATE(228)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(2552), + [STATE(206)] = { + [sym_attribute_declaration] = STATE(168), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_statement] = STATE(388), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym_seh_try_statement] = STATE(360), + [sym_seh_leave_statement] = STATE(360), + [sym_expression] = STATE(6667), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11429), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(360), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(313), + [anon_sym_case] = ACTIONS(315), + [anon_sym_default] = ACTIONS(317), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(321), + [anon_sym_for] = ACTIONS(323), + [anon_sym_return] = ACTIONS(325), + [anon_sym_break] = ACTIONS(327), + [anon_sym_continue] = ACTIONS(329), + [anon_sym_goto] = ACTIONS(331), + [anon_sym___try] = ACTIONS(333), + [anon_sym___leave] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2571), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1312), + [anon_sym_try] = ACTIONS(339), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(341), + [anon_sym_co_return] = ACTIONS(349), + [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(229)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [aux_sym_preproc_else_token1] = ACTIONS(2588), - [aux_sym_preproc_elif_token1] = ACTIONS(2588), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym___try] = ACTIONS(2588), - [anon_sym___leave] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [anon_sym___alignof__] = ACTIONS(2588), - [anon_sym___alignof] = ACTIONS(2588), - [anon_sym__alignof] = ACTIONS(2588), - [anon_sym_alignof] = ACTIONS(2588), - [anon_sym__Alignof] = ACTIONS(2588), - [anon_sym_offsetof] = ACTIONS(2588), - [anon_sym__Generic] = ACTIONS(2588), - [anon_sym_asm] = ACTIONS(2588), - [anon_sym___asm__] = ACTIONS(2588), - [anon_sym___asm] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [anon_sym_NULL] = ACTIONS(2588), - [anon_sym_nullptr] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - }, - [STATE(230)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(2552), + [STATE(207)] = { + [sym_attribute_declaration] = STATE(154), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(666), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2592), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2571), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(231)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_include_token1] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token2] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [aux_sym_preproc_else_token1] = ACTIONS(2594), - [aux_sym_preproc_elif_token1] = ACTIONS(2594), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym___cdecl] = ACTIONS(2594), - [anon_sym___clrcall] = ACTIONS(2594), - [anon_sym___stdcall] = ACTIONS(2594), - [anon_sym___fastcall] = ACTIONS(2594), - [anon_sym___thiscall] = ACTIONS(2594), - [anon_sym___vectorcall] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym___try] = ACTIONS(2594), - [anon_sym___leave] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(2594), - [anon_sym_compl] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [anon_sym___alignof__] = ACTIONS(2594), - [anon_sym___alignof] = ACTIONS(2594), - [anon_sym__alignof] = ACTIONS(2594), - [anon_sym_alignof] = ACTIONS(2594), - [anon_sym__Alignof] = ACTIONS(2594), - [anon_sym_offsetof] = ACTIONS(2594), - [anon_sym__Generic] = ACTIONS(2594), - [anon_sym_asm] = ACTIONS(2594), - [anon_sym___asm__] = ACTIONS(2594), - [anon_sym___asm] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_L_SQUOTE] = ACTIONS(2596), - [anon_sym_u_SQUOTE] = ACTIONS(2596), - [anon_sym_U_SQUOTE] = ACTIONS(2596), - [anon_sym_u8_SQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_L_DQUOTE] = ACTIONS(2596), - [anon_sym_u_DQUOTE] = ACTIONS(2596), - [anon_sym_U_DQUOTE] = ACTIONS(2596), - [anon_sym_u8_DQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [anon_sym_NULL] = ACTIONS(2594), - [anon_sym_nullptr] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_concept] = ACTIONS(2594), - [anon_sym_co_return] = ACTIONS(2594), - [anon_sym_co_yield] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_R_DQUOTE] = ACTIONS(2596), - [anon_sym_LR_DQUOTE] = ACTIONS(2596), - [anon_sym_uR_DQUOTE] = ACTIONS(2596), - [anon_sym_UR_DQUOTE] = ACTIONS(2596), - [anon_sym_u8R_DQUOTE] = ACTIONS(2596), - [anon_sym_co_await] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_requires] = ACTIONS(2594), - [sym_this] = ACTIONS(2594), - }, - [STATE(232)] = { - [sym_catch_clause] = STATE(235), - [aux_sym_constructor_try_statement_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_include_token1] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym___cdecl] = ACTIONS(2543), - [anon_sym___clrcall] = ACTIONS(2543), - [anon_sym___stdcall] = ACTIONS(2543), - [anon_sym___fastcall] = ACTIONS(2543), - [anon_sym___thiscall] = ACTIONS(2543), - [anon_sym___vectorcall] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_switch] = ACTIONS(2543), - [anon_sym_case] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_goto] = ACTIONS(2543), - [anon_sym___try] = ACTIONS(2543), - [anon_sym___leave] = ACTIONS(2543), - [anon_sym_not] = ACTIONS(2543), - [anon_sym_compl] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_sizeof] = ACTIONS(2543), - [anon_sym___alignof__] = ACTIONS(2543), - [anon_sym___alignof] = ACTIONS(2543), - [anon_sym__alignof] = ACTIONS(2543), - [anon_sym_alignof] = ACTIONS(2543), - [anon_sym__Alignof] = ACTIONS(2543), - [anon_sym_offsetof] = ACTIONS(2543), - [anon_sym__Generic] = ACTIONS(2543), - [anon_sym_asm] = ACTIONS(2543), - [anon_sym___asm__] = ACTIONS(2543), - [anon_sym___asm] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_L_SQUOTE] = ACTIONS(2545), - [anon_sym_u_SQUOTE] = ACTIONS(2545), - [anon_sym_U_SQUOTE] = ACTIONS(2545), - [anon_sym_u8_SQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_L_DQUOTE] = ACTIONS(2545), - [anon_sym_u_DQUOTE] = ACTIONS(2545), - [anon_sym_U_DQUOTE] = ACTIONS(2545), - [anon_sym_u8_DQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2543), - [anon_sym_nullptr] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_export] = ACTIONS(2543), - [anon_sym_module] = ACTIONS(2543), - [anon_sym_import] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_throw] = ACTIONS(2543), - [anon_sym_namespace] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_concept] = ACTIONS(2543), - [anon_sym_co_return] = ACTIONS(2543), - [anon_sym_co_yield] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(2598), - [anon_sym_R_DQUOTE] = ACTIONS(2545), - [anon_sym_LR_DQUOTE] = ACTIONS(2545), - [anon_sym_uR_DQUOTE] = ACTIONS(2545), - [anon_sym_UR_DQUOTE] = ACTIONS(2545), - [anon_sym_u8R_DQUOTE] = ACTIONS(2545), - [anon_sym_co_await] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_requires] = ACTIONS(2543), - [sym_this] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(241), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(243), + [anon_sym_co_return] = ACTIONS(251), + [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(233)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(2552), + [STATE(208)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1142), + [sym_statement] = STATE(1136), + [sym_labeled_statement] = STATE(1142), + [sym_expression_statement] = STATE(1142), + [sym_if_statement] = STATE(1142), + [sym_switch_statement] = STATE(1142), + [sym_case_statement] = STATE(1142), + [sym_while_statement] = STATE(1142), + [sym_do_statement] = STATE(1142), + [sym_for_statement] = STATE(1142), + [sym_return_statement] = STATE(1142), + [sym_break_statement] = STATE(1142), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1142), + [sym_seh_try_statement] = STATE(1142), + [sym_seh_leave_statement] = STATE(1142), + [sym_expression] = STATE(6681), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11126), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(1142), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1142), + [sym_throw_statement] = STATE(1142), + [sym_try_statement] = STATE(1142), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(1142), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2600), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1814), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1818), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2571), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1824), + [anon_sym_co_return] = ACTIONS(1826), + [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(234)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(2552), + [STATE(209)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(10959), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_explicit] = ACTIONS(2571), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(235)] = { - [sym_catch_clause] = STATE(235), - [aux_sym_constructor_try_statement_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym___cdecl] = ACTIONS(2478), - [anon_sym___clrcall] = ACTIONS(2478), - [anon_sym___stdcall] = ACTIONS(2478), - [anon_sym___fastcall] = ACTIONS(2478), - [anon_sym___thiscall] = ACTIONS(2478), - [anon_sym___vectorcall] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym___try] = ACTIONS(2478), - [anon_sym___leave] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2478), - [anon_sym___alignof__] = ACTIONS(2478), - [anon_sym___alignof] = ACTIONS(2478), - [anon_sym__alignof] = ACTIONS(2478), - [anon_sym_alignof] = ACTIONS(2478), - [anon_sym__Alignof] = ACTIONS(2478), - [anon_sym_offsetof] = ACTIONS(2478), - [anon_sym__Generic] = ACTIONS(2478), - [anon_sym_asm] = ACTIONS(2478), - [anon_sym___asm__] = ACTIONS(2478), - [anon_sym___asm] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_L_SQUOTE] = ACTIONS(2480), - [anon_sym_u_SQUOTE] = ACTIONS(2480), - [anon_sym_U_SQUOTE] = ACTIONS(2480), - [anon_sym_u8_SQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_nullptr] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2604), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), + [STATE(210)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(11111), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(236)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [aux_sym_preproc_else_token1] = ACTIONS(1938), - [aux_sym_preproc_elif_token1] = ACTIONS(1938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym___try] = ACTIONS(1938), - [anon_sym___leave] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1938), - [anon_sym_compl] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1938), - [anon_sym___alignof__] = ACTIONS(1938), - [anon_sym___alignof] = ACTIONS(1938), - [anon_sym__alignof] = ACTIONS(1938), - [anon_sym_alignof] = ACTIONS(1938), - [anon_sym__Alignof] = ACTIONS(1938), - [anon_sym_offsetof] = ACTIONS(1938), - [anon_sym__Generic] = ACTIONS(1938), - [anon_sym_asm] = ACTIONS(1938), - [anon_sym___asm__] = ACTIONS(1938), - [anon_sym___asm] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [anon_sym_NULL] = ACTIONS(1938), - [anon_sym_nullptr] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_delete] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_namespace] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_concept] = ACTIONS(1938), - [anon_sym_co_return] = ACTIONS(1938), - [anon_sym_co_yield] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_R_DQUOTE] = ACTIONS(1936), - [anon_sym_LR_DQUOTE] = ACTIONS(1936), - [anon_sym_uR_DQUOTE] = ACTIONS(1936), - [anon_sym_UR_DQUOTE] = ACTIONS(1936), - [anon_sym_u8R_DQUOTE] = ACTIONS(1936), - [anon_sym_co_await] = ACTIONS(1938), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_requires] = ACTIONS(1938), - [sym_this] = ACTIONS(1938), + [STATE(211)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(550), + [sym_attributed_statement] = STATE(550), + [sym_statement] = STATE(11140), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym_seh_try_statement] = STATE(550), + [sym_seh_leave_statement] = STATE(550), + [sym_expression] = STATE(6753), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11328), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(550), + [sym_co_yield_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(550), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1842), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(237)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), + [STATE(212)] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(652), + [sym_attributed_statement] = STATE(652), + [sym_statement] = STATE(733), + [sym_labeled_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(652), + [sym_switch_statement] = STATE(652), + [sym_case_statement] = STATE(652), + [sym_while_statement] = STATE(652), + [sym_do_statement] = STATE(652), + [sym_for_statement] = STATE(652), + [sym_return_statement] = STATE(652), + [sym_break_statement] = STATE(652), + [sym_continue_statement] = STATE(652), + [sym_goto_statement] = STATE(652), + [sym_seh_try_statement] = STATE(652), + [sym_seh_leave_statement] = STATE(652), + [sym_expression] = STATE(6696), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10652), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_for_range_loop] = STATE(652), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(652), + [sym_throw_statement] = STATE(652), + [sym_try_statement] = STATE(652), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_expansion_statement] = STATE(652), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1188), + [anon_sym___try] = ACTIONS(1190), + [anon_sym___leave] = ACTIONS(1192), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(1196), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_co_return] = ACTIONS(1206), + [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(238)] = { - [sym_expression] = STATE(3614), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_initializer_list] = STATE(4005), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1944), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_STAR_EQ] = ACTIONS(1946), - [anon_sym_SLASH_EQ] = ACTIONS(1946), - [anon_sym_PERCENT_EQ] = ACTIONS(1946), - [anon_sym_PLUS_EQ] = ACTIONS(1946), - [anon_sym_DASH_EQ] = ACTIONS(1946), - [anon_sym_LT_LT_EQ] = ACTIONS(1946), - [anon_sym_GT_GT_EQ] = ACTIONS(1946), - [anon_sym_AMP_EQ] = ACTIONS(1946), - [anon_sym_CARET_EQ] = ACTIONS(1946), - [anon_sym_PIPE_EQ] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), + [STATE(213)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11340), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), [anon_sym_delete] = ACTIONS(1926), [anon_sym_R_DQUOTE] = ACTIONS(1928), [anon_sym_LR_DQUOTE] = ACTIONS(1928), @@ -79029,7590 +84311,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_co_await] = ACTIONS(1930), [anon_sym_new] = ACTIONS(1932), [anon_sym_requires] = ACTIONS(1934), - [anon_sym_DASH_GT_STAR] = ACTIONS(1946), - [sym_this] = ACTIONS(1922), - }, - [STATE(239)] = { - [sym_else_clause] = STATE(253), - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token2] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [aux_sym_preproc_else_token1] = ACTIONS(2615), - [aux_sym_preproc_elif_token1] = ACTIONS(2615), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym___extension__] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym___attribute] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym___inline] = ACTIONS(2615), - [anon_sym___inline__] = ACTIONS(2615), - [anon_sym___forceinline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym___thread] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym___restrict__] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym__Noreturn] = ACTIONS(2615), - [anon_sym_noreturn] = ACTIONS(2615), - [anon_sym__Nonnull] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_alignas] = ACTIONS(2615), - [anon_sym__Alignas] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym___try] = ACTIONS(2615), - [anon_sym___leave] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [anon_sym___alignof__] = ACTIONS(2615), - [anon_sym___alignof] = ACTIONS(2615), - [anon_sym__alignof] = ACTIONS(2615), - [anon_sym_alignof] = ACTIONS(2615), - [anon_sym__Alignof] = ACTIONS(2615), - [anon_sym_offsetof] = ACTIONS(2615), - [anon_sym__Generic] = ACTIONS(2615), - [anon_sym_asm] = ACTIONS(2615), - [anon_sym___asm__] = ACTIONS(2615), - [anon_sym___asm] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [anon_sym_NULL] = ACTIONS(2615), - [anon_sym_nullptr] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(240)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [aux_sym_preproc_else_token1] = ACTIONS(2621), - [aux_sym_preproc_elif_token1] = ACTIONS(2621), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym___try] = ACTIONS(2621), - [anon_sym___leave] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_compl] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [anon_sym___alignof__] = ACTIONS(2621), - [anon_sym___alignof] = ACTIONS(2621), - [anon_sym__alignof] = ACTIONS(2621), - [anon_sym_alignof] = ACTIONS(2621), - [anon_sym__Alignof] = ACTIONS(2621), - [anon_sym_offsetof] = ACTIONS(2621), - [anon_sym__Generic] = ACTIONS(2621), - [anon_sym_asm] = ACTIONS(2621), - [anon_sym___asm__] = ACTIONS(2621), - [anon_sym___asm] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [anon_sym_NULL] = ACTIONS(2621), - [anon_sym_nullptr] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_R_DQUOTE] = ACTIONS(2623), - [anon_sym_LR_DQUOTE] = ACTIONS(2623), - [anon_sym_uR_DQUOTE] = ACTIONS(2623), - [anon_sym_UR_DQUOTE] = ACTIONS(2623), - [anon_sym_u8R_DQUOTE] = ACTIONS(2623), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), + [STATE(214)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10741), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(241)] = { - [sym_else_clause] = STATE(284), - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token2] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [aux_sym_preproc_else_token1] = ACTIONS(2625), - [aux_sym_preproc_elif_token1] = ACTIONS(2625), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym___extension__] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym___attribute] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym___inline] = ACTIONS(2625), - [anon_sym___inline__] = ACTIONS(2625), - [anon_sym___forceinline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym___thread] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym___restrict__] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym__Noreturn] = ACTIONS(2625), - [anon_sym_noreturn] = ACTIONS(2625), - [anon_sym__Nonnull] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_alignas] = ACTIONS(2625), - [anon_sym__Alignas] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym___try] = ACTIONS(2625), - [anon_sym___leave] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_compl] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [anon_sym___alignof__] = ACTIONS(2625), - [anon_sym___alignof] = ACTIONS(2625), - [anon_sym__alignof] = ACTIONS(2625), - [anon_sym_alignof] = ACTIONS(2625), - [anon_sym__Alignof] = ACTIONS(2625), - [anon_sym_offsetof] = ACTIONS(2625), - [anon_sym__Generic] = ACTIONS(2625), - [anon_sym_asm] = ACTIONS(2625), - [anon_sym___asm__] = ACTIONS(2625), - [anon_sym___asm] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [anon_sym_NULL] = ACTIONS(2625), - [anon_sym_nullptr] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_R_DQUOTE] = ACTIONS(2627), - [anon_sym_LR_DQUOTE] = ACTIONS(2627), - [anon_sym_uR_DQUOTE] = ACTIONS(2627), - [anon_sym_UR_DQUOTE] = ACTIONS(2627), - [anon_sym_u8R_DQUOTE] = ACTIONS(2627), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), + [STATE(215)] = { + [sym_compound_statement] = STATE(11128), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4552), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11128), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10528), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10962), + [sym__unary_right_fold] = STATE(11139), + [sym__binary_fold] = STATE(11401), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11335), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(242)] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token2] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [aux_sym_preproc_else_token1] = ACTIONS(2629), - [aux_sym_preproc_elif_token1] = ACTIONS(2629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym___extension__] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym___attribute] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym___inline] = ACTIONS(2629), - [anon_sym___inline__] = ACTIONS(2629), - [anon_sym___forceinline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym___thread] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym___restrict__] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym__Noreturn] = ACTIONS(2629), - [anon_sym_noreturn] = ACTIONS(2629), - [anon_sym__Nonnull] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_alignas] = ACTIONS(2629), - [anon_sym__Alignas] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2629), - [anon_sym___leave] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_compl] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [anon_sym___alignof__] = ACTIONS(2629), - [anon_sym___alignof] = ACTIONS(2629), - [anon_sym__alignof] = ACTIONS(2629), - [anon_sym_alignof] = ACTIONS(2629), - [anon_sym__Alignof] = ACTIONS(2629), - [anon_sym_offsetof] = ACTIONS(2629), - [anon_sym__Generic] = ACTIONS(2629), - [anon_sym_asm] = ACTIONS(2629), - [anon_sym___asm__] = ACTIONS(2629), - [anon_sym___asm] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_nullptr] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_R_DQUOTE] = ACTIONS(2631), - [anon_sym_LR_DQUOTE] = ACTIONS(2631), - [anon_sym_uR_DQUOTE] = ACTIONS(2631), - [anon_sym_UR_DQUOTE] = ACTIONS(2631), - [anon_sym_u8R_DQUOTE] = ACTIONS(2631), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), + [STATE(216)] = { + [sym_compound_statement] = STATE(11128), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4552), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11128), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10891), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10962), + [sym__unary_right_fold] = STATE(11139), + [sym__binary_fold] = STATE(11401), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11335), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(243)] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token2] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2633), - [aux_sym_preproc_elif_token1] = ACTIONS(2633), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym___extension__] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym___attribute] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym___inline] = ACTIONS(2633), - [anon_sym___inline__] = ACTIONS(2633), - [anon_sym___forceinline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym___thread] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym___restrict__] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym__Noreturn] = ACTIONS(2633), - [anon_sym_noreturn] = ACTIONS(2633), - [anon_sym__Nonnull] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_alignas] = ACTIONS(2633), - [anon_sym__Alignas] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym___try] = ACTIONS(2633), - [anon_sym___leave] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_compl] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [anon_sym___alignof__] = ACTIONS(2633), - [anon_sym___alignof] = ACTIONS(2633), - [anon_sym__alignof] = ACTIONS(2633), - [anon_sym_alignof] = ACTIONS(2633), - [anon_sym__Alignof] = ACTIONS(2633), - [anon_sym_offsetof] = ACTIONS(2633), - [anon_sym__Generic] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym___asm__] = ACTIONS(2633), - [anon_sym___asm] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [anon_sym_NULL] = ACTIONS(2633), - [anon_sym_nullptr] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_R_DQUOTE] = ACTIONS(2635), - [anon_sym_LR_DQUOTE] = ACTIONS(2635), - [anon_sym_uR_DQUOTE] = ACTIONS(2635), - [anon_sym_UR_DQUOTE] = ACTIONS(2635), - [anon_sym_u8R_DQUOTE] = ACTIONS(2635), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), + [STATE(217)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10894), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(244)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [aux_sym_preproc_else_token1] = ACTIONS(2637), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(245)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [aux_sym_preproc_else_token1] = ACTIONS(2637), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(246)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [aux_sym_preproc_else_token1] = ACTIONS(2641), - [aux_sym_preproc_elif_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(247)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [aux_sym_preproc_else_token1] = ACTIONS(2641), - [aux_sym_preproc_elif_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(248)] = { - [sym_identifier] = ACTIONS(2645), - [aux_sym_preproc_include_token1] = ACTIONS(2645), - [aux_sym_preproc_def_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token2] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), - [aux_sym_preproc_else_token1] = ACTIONS(2645), - [aux_sym_preproc_elif_token1] = ACTIONS(2645), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2645), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2645), - [sym_preproc_directive] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym___extension__] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2645), - [anon_sym_virtual] = ACTIONS(2645), - [anon_sym_extern] = ACTIONS(2645), - [anon_sym___attribute__] = ACTIONS(2645), - [anon_sym___attribute] = ACTIONS(2645), - [anon_sym_using] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), - [anon_sym___declspec] = ACTIONS(2645), - [anon_sym___based] = ACTIONS(2645), - [anon_sym___cdecl] = ACTIONS(2645), - [anon_sym___clrcall] = ACTIONS(2645), - [anon_sym___stdcall] = ACTIONS(2645), - [anon_sym___fastcall] = ACTIONS(2645), - [anon_sym___thiscall] = ACTIONS(2645), - [anon_sym___vectorcall] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2645), - [anon_sym_unsigned] = ACTIONS(2645), - [anon_sym_long] = ACTIONS(2645), - [anon_sym_short] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_register] = ACTIONS(2645), - [anon_sym_inline] = ACTIONS(2645), - [anon_sym___inline] = ACTIONS(2645), - [anon_sym___inline__] = ACTIONS(2645), - [anon_sym___forceinline] = ACTIONS(2645), - [anon_sym_thread_local] = ACTIONS(2645), - [anon_sym___thread] = ACTIONS(2645), - [anon_sym_const] = ACTIONS(2645), - [anon_sym_constexpr] = ACTIONS(2645), - [anon_sym_volatile] = ACTIONS(2645), - [anon_sym_restrict] = ACTIONS(2645), - [anon_sym___restrict__] = ACTIONS(2645), - [anon_sym__Atomic] = ACTIONS(2645), - [anon_sym__Noreturn] = ACTIONS(2645), - [anon_sym_noreturn] = ACTIONS(2645), - [anon_sym__Nonnull] = ACTIONS(2645), - [anon_sym_mutable] = ACTIONS(2645), - [anon_sym_constinit] = ACTIONS(2645), - [anon_sym_consteval] = ACTIONS(2645), - [anon_sym_alignas] = ACTIONS(2645), - [anon_sym__Alignas] = ACTIONS(2645), - [sym_primitive_type] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_union] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2645), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_default] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_goto] = ACTIONS(2645), - [anon_sym___try] = ACTIONS(2645), - [anon_sym___leave] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_compl] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(2645), - [anon_sym___alignof__] = ACTIONS(2645), - [anon_sym___alignof] = ACTIONS(2645), - [anon_sym__alignof] = ACTIONS(2645), - [anon_sym_alignof] = ACTIONS(2645), - [anon_sym__Alignof] = ACTIONS(2645), - [anon_sym_offsetof] = ACTIONS(2645), - [anon_sym__Generic] = ACTIONS(2645), - [anon_sym_asm] = ACTIONS(2645), - [anon_sym___asm__] = ACTIONS(2645), - [anon_sym___asm] = ACTIONS(2645), - [sym_number_literal] = ACTIONS(2647), - [anon_sym_L_SQUOTE] = ACTIONS(2647), - [anon_sym_u_SQUOTE] = ACTIONS(2647), - [anon_sym_U_SQUOTE] = ACTIONS(2647), - [anon_sym_u8_SQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_L_DQUOTE] = ACTIONS(2647), - [anon_sym_u_DQUOTE] = ACTIONS(2647), - [anon_sym_U_DQUOTE] = ACTIONS(2647), - [anon_sym_u8_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [anon_sym_NULL] = ACTIONS(2645), - [anon_sym_nullptr] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2645), - [anon_sym_decltype] = ACTIONS(2645), - [anon_sym_explicit] = ACTIONS(2645), - [anon_sym_typename] = ACTIONS(2645), - [anon_sym_template] = ACTIONS(2645), - [anon_sym_operator] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_delete] = ACTIONS(2645), - [anon_sym_throw] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_static_assert] = ACTIONS(2645), - [anon_sym_concept] = ACTIONS(2645), - [anon_sym_co_return] = ACTIONS(2645), - [anon_sym_co_yield] = ACTIONS(2645), - [anon_sym_R_DQUOTE] = ACTIONS(2647), - [anon_sym_LR_DQUOTE] = ACTIONS(2647), - [anon_sym_uR_DQUOTE] = ACTIONS(2647), - [anon_sym_UR_DQUOTE] = ACTIONS(2647), - [anon_sym_u8R_DQUOTE] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_requires] = ACTIONS(2645), - [sym_this] = ACTIONS(2645), - }, - [STATE(249)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [aux_sym_preproc_else_token1] = ACTIONS(2649), - [aux_sym_preproc_elif_token1] = ACTIONS(2649), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym___try] = ACTIONS(2649), - [anon_sym___leave] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [anon_sym___alignof__] = ACTIONS(2649), - [anon_sym___alignof] = ACTIONS(2649), - [anon_sym__alignof] = ACTIONS(2649), - [anon_sym_alignof] = ACTIONS(2649), - [anon_sym__Alignof] = ACTIONS(2649), - [anon_sym_offsetof] = ACTIONS(2649), - [anon_sym__Generic] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym___asm__] = ACTIONS(2649), - [anon_sym___asm] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [anon_sym_nullptr] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - }, - [STATE(250)] = { - [sym_else_clause] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym___extension__] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym___attribute] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym___inline] = ACTIONS(2625), - [anon_sym___inline__] = ACTIONS(2625), - [anon_sym___forceinline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym___thread] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym___restrict__] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym__Noreturn] = ACTIONS(2625), - [anon_sym_noreturn] = ACTIONS(2625), - [anon_sym__Nonnull] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_alignas] = ACTIONS(2625), - [anon_sym__Alignas] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym___try] = ACTIONS(2625), - [anon_sym___leave] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_compl] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [anon_sym___alignof__] = ACTIONS(2625), - [anon_sym___alignof] = ACTIONS(2625), - [anon_sym__alignof] = ACTIONS(2625), - [anon_sym_alignof] = ACTIONS(2625), - [anon_sym__Alignof] = ACTIONS(2625), - [anon_sym_offsetof] = ACTIONS(2625), - [anon_sym__Generic] = ACTIONS(2625), - [anon_sym_asm] = ACTIONS(2625), - [anon_sym___asm__] = ACTIONS(2625), - [anon_sym___asm] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [anon_sym_NULL] = ACTIONS(2625), - [anon_sym_nullptr] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_export] = ACTIONS(2625), - [anon_sym_module] = ACTIONS(2625), - [anon_sym_import] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_R_DQUOTE] = ACTIONS(2627), - [anon_sym_LR_DQUOTE] = ACTIONS(2627), - [anon_sym_uR_DQUOTE] = ACTIONS(2627), - [anon_sym_UR_DQUOTE] = ACTIONS(2627), - [anon_sym_u8R_DQUOTE] = ACTIONS(2627), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - }, - [STATE(251)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [aux_sym_preproc_else_token1] = ACTIONS(2655), - [aux_sym_preproc_elif_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - }, - [STATE(252)] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token2] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [aux_sym_preproc_else_token1] = ACTIONS(2659), - [aux_sym_preproc_elif_token1] = ACTIONS(2659), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - }, - [STATE(253)] = { - [sym_identifier] = ACTIONS(2663), - [aux_sym_preproc_include_token1] = ACTIONS(2663), - [aux_sym_preproc_def_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token2] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), - [aux_sym_preproc_else_token1] = ACTIONS(2663), - [aux_sym_preproc_elif_token1] = ACTIONS(2663), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2663), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2663), - [sym_preproc_directive] = ACTIONS(2663), - [anon_sym_LPAREN2] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_AMP_AMP] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym___extension__] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2663), - [anon_sym_virtual] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym___attribute__] = ACTIONS(2663), - [anon_sym___attribute] = ACTIONS(2663), - [anon_sym_using] = ACTIONS(2663), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), - [anon_sym___declspec] = ACTIONS(2663), - [anon_sym___based] = ACTIONS(2663), - [anon_sym___cdecl] = ACTIONS(2663), - [anon_sym___clrcall] = ACTIONS(2663), - [anon_sym___stdcall] = ACTIONS(2663), - [anon_sym___fastcall] = ACTIONS(2663), - [anon_sym___thiscall] = ACTIONS(2663), - [anon_sym___vectorcall] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym___inline] = ACTIONS(2663), - [anon_sym___inline__] = ACTIONS(2663), - [anon_sym___forceinline] = ACTIONS(2663), - [anon_sym_thread_local] = ACTIONS(2663), - [anon_sym___thread] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_constexpr] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym___restrict__] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym__Noreturn] = ACTIONS(2663), - [anon_sym_noreturn] = ACTIONS(2663), - [anon_sym__Nonnull] = ACTIONS(2663), - [anon_sym_mutable] = ACTIONS(2663), - [anon_sym_constinit] = ACTIONS(2663), - [anon_sym_consteval] = ACTIONS(2663), - [anon_sym_alignas] = ACTIONS(2663), - [anon_sym__Alignas] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2663), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym___try] = ACTIONS(2663), - [anon_sym___leave] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_compl] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_sizeof] = ACTIONS(2663), - [anon_sym___alignof__] = ACTIONS(2663), - [anon_sym___alignof] = ACTIONS(2663), - [anon_sym__alignof] = ACTIONS(2663), - [anon_sym_alignof] = ACTIONS(2663), - [anon_sym__Alignof] = ACTIONS(2663), - [anon_sym_offsetof] = ACTIONS(2663), - [anon_sym__Generic] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym___asm__] = ACTIONS(2663), - [anon_sym___asm] = ACTIONS(2663), - [sym_number_literal] = ACTIONS(2665), - [anon_sym_L_SQUOTE] = ACTIONS(2665), - [anon_sym_u_SQUOTE] = ACTIONS(2665), - [anon_sym_U_SQUOTE] = ACTIONS(2665), - [anon_sym_u8_SQUOTE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_L_DQUOTE] = ACTIONS(2665), - [anon_sym_u_DQUOTE] = ACTIONS(2665), - [anon_sym_U_DQUOTE] = ACTIONS(2665), - [anon_sym_u8_DQUOTE] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [anon_sym_NULL] = ACTIONS(2663), - [anon_sym_nullptr] = ACTIONS(2663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2663), - [anon_sym_decltype] = ACTIONS(2663), - [anon_sym_explicit] = ACTIONS(2663), - [anon_sym_typename] = ACTIONS(2663), - [anon_sym_template] = ACTIONS(2663), - [anon_sym_operator] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2663), - [anon_sym_throw] = ACTIONS(2663), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_static_assert] = ACTIONS(2663), - [anon_sym_concept] = ACTIONS(2663), - [anon_sym_co_return] = ACTIONS(2663), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2665), - [anon_sym_LR_DQUOTE] = ACTIONS(2665), - [anon_sym_uR_DQUOTE] = ACTIONS(2665), - [anon_sym_UR_DQUOTE] = ACTIONS(2665), - [anon_sym_u8R_DQUOTE] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(2663), - [anon_sym_requires] = ACTIONS(2663), - [sym_this] = ACTIONS(2663), - }, - [STATE(254)] = { - [sym_identifier] = ACTIONS(2667), - [aux_sym_preproc_include_token1] = ACTIONS(2667), - [aux_sym_preproc_def_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token2] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), - [aux_sym_preproc_else_token1] = ACTIONS(2667), - [aux_sym_preproc_elif_token1] = ACTIONS(2667), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2667), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2667), - [sym_preproc_directive] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym___extension__] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2667), - [anon_sym_virtual] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym___attribute__] = ACTIONS(2667), - [anon_sym___attribute] = ACTIONS(2667), - [anon_sym_using] = ACTIONS(2667), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), - [anon_sym___declspec] = ACTIONS(2667), - [anon_sym___based] = ACTIONS(2667), - [anon_sym___cdecl] = ACTIONS(2667), - [anon_sym___clrcall] = ACTIONS(2667), - [anon_sym___stdcall] = ACTIONS(2667), - [anon_sym___fastcall] = ACTIONS(2667), - [anon_sym___thiscall] = ACTIONS(2667), - [anon_sym___vectorcall] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym___inline] = ACTIONS(2667), - [anon_sym___inline__] = ACTIONS(2667), - [anon_sym___forceinline] = ACTIONS(2667), - [anon_sym_thread_local] = ACTIONS(2667), - [anon_sym___thread] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_constexpr] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym___restrict__] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym__Noreturn] = ACTIONS(2667), - [anon_sym_noreturn] = ACTIONS(2667), - [anon_sym__Nonnull] = ACTIONS(2667), - [anon_sym_mutable] = ACTIONS(2667), - [anon_sym_constinit] = ACTIONS(2667), - [anon_sym_consteval] = ACTIONS(2667), - [anon_sym_alignas] = ACTIONS(2667), - [anon_sym__Alignas] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_switch] = ACTIONS(2667), - [anon_sym_case] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym___try] = ACTIONS(2667), - [anon_sym___leave] = ACTIONS(2667), - [anon_sym_not] = ACTIONS(2667), - [anon_sym_compl] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(2667), - [anon_sym___alignof__] = ACTIONS(2667), - [anon_sym___alignof] = ACTIONS(2667), - [anon_sym__alignof] = ACTIONS(2667), - [anon_sym_alignof] = ACTIONS(2667), - [anon_sym__Alignof] = ACTIONS(2667), - [anon_sym_offsetof] = ACTIONS(2667), - [anon_sym__Generic] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym___asm__] = ACTIONS(2667), - [anon_sym___asm] = ACTIONS(2667), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_L_SQUOTE] = ACTIONS(2669), - [anon_sym_u_SQUOTE] = ACTIONS(2669), - [anon_sym_U_SQUOTE] = ACTIONS(2669), - [anon_sym_u8_SQUOTE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_L_DQUOTE] = ACTIONS(2669), - [anon_sym_u_DQUOTE] = ACTIONS(2669), - [anon_sym_U_DQUOTE] = ACTIONS(2669), - [anon_sym_u8_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [anon_sym_NULL] = ACTIONS(2667), - [anon_sym_nullptr] = ACTIONS(2667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2667), - [anon_sym_decltype] = ACTIONS(2667), - [anon_sym_explicit] = ACTIONS(2667), - [anon_sym_typename] = ACTIONS(2667), - [anon_sym_template] = ACTIONS(2667), - [anon_sym_operator] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_delete] = ACTIONS(2667), - [anon_sym_throw] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_static_assert] = ACTIONS(2667), - [anon_sym_concept] = ACTIONS(2667), - [anon_sym_co_return] = ACTIONS(2667), - [anon_sym_co_yield] = ACTIONS(2667), - [anon_sym_R_DQUOTE] = ACTIONS(2669), - [anon_sym_LR_DQUOTE] = ACTIONS(2669), - [anon_sym_uR_DQUOTE] = ACTIONS(2669), - [anon_sym_UR_DQUOTE] = ACTIONS(2669), - [anon_sym_u8R_DQUOTE] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_requires] = ACTIONS(2667), - [sym_this] = ACTIONS(2667), - }, - [STATE(255)] = { - [sym_identifier] = ACTIONS(2671), - [aux_sym_preproc_include_token1] = ACTIONS(2671), - [aux_sym_preproc_def_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token2] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), - [aux_sym_preproc_else_token1] = ACTIONS(2671), - [aux_sym_preproc_elif_token1] = ACTIONS(2671), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2671), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2671), - [sym_preproc_directive] = ACTIONS(2671), - [anon_sym_LPAREN2] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym___extension__] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2671), - [anon_sym_virtual] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym___attribute__] = ACTIONS(2671), - [anon_sym___attribute] = ACTIONS(2671), - [anon_sym_using] = ACTIONS(2671), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), - [anon_sym___declspec] = ACTIONS(2671), - [anon_sym___based] = ACTIONS(2671), - [anon_sym___cdecl] = ACTIONS(2671), - [anon_sym___clrcall] = ACTIONS(2671), - [anon_sym___stdcall] = ACTIONS(2671), - [anon_sym___fastcall] = ACTIONS(2671), - [anon_sym___thiscall] = ACTIONS(2671), - [anon_sym___vectorcall] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym___inline] = ACTIONS(2671), - [anon_sym___inline__] = ACTIONS(2671), - [anon_sym___forceinline] = ACTIONS(2671), - [anon_sym_thread_local] = ACTIONS(2671), - [anon_sym___thread] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_constexpr] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym___restrict__] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym__Noreturn] = ACTIONS(2671), - [anon_sym_noreturn] = ACTIONS(2671), - [anon_sym__Nonnull] = ACTIONS(2671), - [anon_sym_mutable] = ACTIONS(2671), - [anon_sym_constinit] = ACTIONS(2671), - [anon_sym_consteval] = ACTIONS(2671), - [anon_sym_alignas] = ACTIONS(2671), - [anon_sym__Alignas] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_switch] = ACTIONS(2671), - [anon_sym_case] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_do] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym___try] = ACTIONS(2671), - [anon_sym___leave] = ACTIONS(2671), - [anon_sym_not] = ACTIONS(2671), - [anon_sym_compl] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_sizeof] = ACTIONS(2671), - [anon_sym___alignof__] = ACTIONS(2671), - [anon_sym___alignof] = ACTIONS(2671), - [anon_sym__alignof] = ACTIONS(2671), - [anon_sym_alignof] = ACTIONS(2671), - [anon_sym__Alignof] = ACTIONS(2671), - [anon_sym_offsetof] = ACTIONS(2671), - [anon_sym__Generic] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym___asm__] = ACTIONS(2671), - [anon_sym___asm] = ACTIONS(2671), - [sym_number_literal] = ACTIONS(2673), - [anon_sym_L_SQUOTE] = ACTIONS(2673), - [anon_sym_u_SQUOTE] = ACTIONS(2673), - [anon_sym_U_SQUOTE] = ACTIONS(2673), - [anon_sym_u8_SQUOTE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2673), - [anon_sym_L_DQUOTE] = ACTIONS(2673), - [anon_sym_u_DQUOTE] = ACTIONS(2673), - [anon_sym_U_DQUOTE] = ACTIONS(2673), - [anon_sym_u8_DQUOTE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [anon_sym_NULL] = ACTIONS(2671), - [anon_sym_nullptr] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2671), - [anon_sym_decltype] = ACTIONS(2671), - [anon_sym_explicit] = ACTIONS(2671), - [anon_sym_typename] = ACTIONS(2671), - [anon_sym_template] = ACTIONS(2671), - [anon_sym_operator] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_delete] = ACTIONS(2671), - [anon_sym_throw] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_static_assert] = ACTIONS(2671), - [anon_sym_concept] = ACTIONS(2671), - [anon_sym_co_return] = ACTIONS(2671), - [anon_sym_co_yield] = ACTIONS(2671), - [anon_sym_R_DQUOTE] = ACTIONS(2673), - [anon_sym_LR_DQUOTE] = ACTIONS(2673), - [anon_sym_uR_DQUOTE] = ACTIONS(2673), - [anon_sym_UR_DQUOTE] = ACTIONS(2673), - [anon_sym_u8R_DQUOTE] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2671), - [anon_sym_requires] = ACTIONS(2671), - [sym_this] = ACTIONS(2671), - }, - [STATE(256)] = { - [sym_identifier] = ACTIONS(2675), - [aux_sym_preproc_include_token1] = ACTIONS(2675), - [aux_sym_preproc_def_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token2] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), - [aux_sym_preproc_else_token1] = ACTIONS(2675), - [aux_sym_preproc_elif_token1] = ACTIONS(2675), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2675), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2675), - [sym_preproc_directive] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_PLUS] = ACTIONS(2675), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym___extension__] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2675), - [anon_sym_virtual] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym___attribute__] = ACTIONS(2675), - [anon_sym___attribute] = ACTIONS(2675), - [anon_sym_using] = ACTIONS(2675), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), - [anon_sym___declspec] = ACTIONS(2675), - [anon_sym___based] = ACTIONS(2675), - [anon_sym___cdecl] = ACTIONS(2675), - [anon_sym___clrcall] = ACTIONS(2675), - [anon_sym___stdcall] = ACTIONS(2675), - [anon_sym___fastcall] = ACTIONS(2675), - [anon_sym___thiscall] = ACTIONS(2675), - [anon_sym___vectorcall] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2675), - [anon_sym_unsigned] = ACTIONS(2675), - [anon_sym_long] = ACTIONS(2675), - [anon_sym_short] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_register] = ACTIONS(2675), - [anon_sym_inline] = ACTIONS(2675), - [anon_sym___inline] = ACTIONS(2675), - [anon_sym___inline__] = ACTIONS(2675), - [anon_sym___forceinline] = ACTIONS(2675), - [anon_sym_thread_local] = ACTIONS(2675), - [anon_sym___thread] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_constexpr] = ACTIONS(2675), - [anon_sym_volatile] = ACTIONS(2675), - [anon_sym_restrict] = ACTIONS(2675), - [anon_sym___restrict__] = ACTIONS(2675), - [anon_sym__Atomic] = ACTIONS(2675), - [anon_sym__Noreturn] = ACTIONS(2675), - [anon_sym_noreturn] = ACTIONS(2675), - [anon_sym__Nonnull] = ACTIONS(2675), - [anon_sym_mutable] = ACTIONS(2675), - [anon_sym_constinit] = ACTIONS(2675), - [anon_sym_consteval] = ACTIONS(2675), - [anon_sym_alignas] = ACTIONS(2675), - [anon_sym__Alignas] = ACTIONS(2675), - [sym_primitive_type] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2675), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_do] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_goto] = ACTIONS(2675), - [anon_sym___try] = ACTIONS(2675), - [anon_sym___leave] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_compl] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(2675), - [anon_sym___alignof__] = ACTIONS(2675), - [anon_sym___alignof] = ACTIONS(2675), - [anon_sym__alignof] = ACTIONS(2675), - [anon_sym_alignof] = ACTIONS(2675), - [anon_sym__Alignof] = ACTIONS(2675), - [anon_sym_offsetof] = ACTIONS(2675), - [anon_sym__Generic] = ACTIONS(2675), - [anon_sym_asm] = ACTIONS(2675), - [anon_sym___asm__] = ACTIONS(2675), - [anon_sym___asm] = ACTIONS(2675), - [sym_number_literal] = ACTIONS(2677), - [anon_sym_L_SQUOTE] = ACTIONS(2677), - [anon_sym_u_SQUOTE] = ACTIONS(2677), - [anon_sym_U_SQUOTE] = ACTIONS(2677), - [anon_sym_u8_SQUOTE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2677), - [anon_sym_L_DQUOTE] = ACTIONS(2677), - [anon_sym_u_DQUOTE] = ACTIONS(2677), - [anon_sym_U_DQUOTE] = ACTIONS(2677), - [anon_sym_u8_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_true] = ACTIONS(2675), - [sym_false] = ACTIONS(2675), - [anon_sym_NULL] = ACTIONS(2675), - [anon_sym_nullptr] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2675), - [anon_sym_decltype] = ACTIONS(2675), - [anon_sym_explicit] = ACTIONS(2675), - [anon_sym_typename] = ACTIONS(2675), - [anon_sym_template] = ACTIONS(2675), - [anon_sym_operator] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_delete] = ACTIONS(2675), - [anon_sym_throw] = ACTIONS(2675), - [anon_sym_namespace] = ACTIONS(2675), - [anon_sym_static_assert] = ACTIONS(2675), - [anon_sym_concept] = ACTIONS(2675), - [anon_sym_co_return] = ACTIONS(2675), - [anon_sym_co_yield] = ACTIONS(2675), - [anon_sym_R_DQUOTE] = ACTIONS(2677), - [anon_sym_LR_DQUOTE] = ACTIONS(2677), - [anon_sym_uR_DQUOTE] = ACTIONS(2677), - [anon_sym_UR_DQUOTE] = ACTIONS(2677), - [anon_sym_u8R_DQUOTE] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2675), - [anon_sym_new] = ACTIONS(2675), - [anon_sym_requires] = ACTIONS(2675), - [sym_this] = ACTIONS(2675), - }, - [STATE(257)] = { - [sym_identifier] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token2] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [aux_sym_preproc_else_token1] = ACTIONS(2679), - [aux_sym_preproc_elif_token1] = ACTIONS(2679), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2679), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym___extension__] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_virtual] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym___attribute__] = ACTIONS(2679), - [anon_sym___attribute] = ACTIONS(2679), - [anon_sym_using] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym___based] = ACTIONS(2679), - [anon_sym___cdecl] = ACTIONS(2679), - [anon_sym___clrcall] = ACTIONS(2679), - [anon_sym___stdcall] = ACTIONS(2679), - [anon_sym___fastcall] = ACTIONS(2679), - [anon_sym___thiscall] = ACTIONS(2679), - [anon_sym___vectorcall] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym___inline] = ACTIONS(2679), - [anon_sym___inline__] = ACTIONS(2679), - [anon_sym___forceinline] = ACTIONS(2679), - [anon_sym_thread_local] = ACTIONS(2679), - [anon_sym___thread] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_restrict] = ACTIONS(2679), - [anon_sym___restrict__] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [anon_sym__Noreturn] = ACTIONS(2679), - [anon_sym_noreturn] = ACTIONS(2679), - [anon_sym__Nonnull] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [anon_sym_constinit] = ACTIONS(2679), - [anon_sym_consteval] = ACTIONS(2679), - [anon_sym_alignas] = ACTIONS(2679), - [anon_sym__Alignas] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_case] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2679), - [anon_sym___leave] = ACTIONS(2679), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_compl] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym___alignof__] = ACTIONS(2679), - [anon_sym___alignof] = ACTIONS(2679), - [anon_sym__alignof] = ACTIONS(2679), - [anon_sym_alignof] = ACTIONS(2679), - [anon_sym__Alignof] = ACTIONS(2679), - [anon_sym_offsetof] = ACTIONS(2679), - [anon_sym__Generic] = ACTIONS(2679), - [anon_sym_asm] = ACTIONS(2679), - [anon_sym___asm__] = ACTIONS(2679), - [anon_sym___asm] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_L_SQUOTE] = ACTIONS(2681), - [anon_sym_u_SQUOTE] = ACTIONS(2681), - [anon_sym_U_SQUOTE] = ACTIONS(2681), - [anon_sym_u8_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_L_DQUOTE] = ACTIONS(2681), - [anon_sym_u_DQUOTE] = ACTIONS(2681), - [anon_sym_U_DQUOTE] = ACTIONS(2681), - [anon_sym_u8_DQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_nullptr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2679), - [anon_sym_decltype] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_operator] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_throw] = ACTIONS(2679), - [anon_sym_namespace] = ACTIONS(2679), - [anon_sym_static_assert] = ACTIONS(2679), - [anon_sym_concept] = ACTIONS(2679), - [anon_sym_co_return] = ACTIONS(2679), - [anon_sym_co_yield] = ACTIONS(2679), - [anon_sym_R_DQUOTE] = ACTIONS(2681), - [anon_sym_LR_DQUOTE] = ACTIONS(2681), - [anon_sym_uR_DQUOTE] = ACTIONS(2681), - [anon_sym_UR_DQUOTE] = ACTIONS(2681), - [anon_sym_u8R_DQUOTE] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_requires] = ACTIONS(2679), - [sym_this] = ACTIONS(2679), - }, - [STATE(258)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [aux_sym_preproc_else_token1] = ACTIONS(2683), - [aux_sym_preproc_elif_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(259)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token2] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [aux_sym_preproc_else_token1] = ACTIONS(2687), - [aux_sym_preproc_elif_token1] = ACTIONS(2687), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [STATE(260)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(261)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(262)] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2695), - [aux_sym_preproc_elif_token1] = ACTIONS(2695), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - }, - [STATE(263)] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [aux_sym_preproc_else_token1] = ACTIONS(2699), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - }, - [STATE(264)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [aux_sym_preproc_else_token1] = ACTIONS(2683), - [aux_sym_preproc_elif_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(265)] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [aux_sym_preproc_else_token1] = ACTIONS(2703), - [aux_sym_preproc_elif_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [STATE(266)] = { - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [aux_sym_preproc_else_token1] = ACTIONS(2707), - [aux_sym_preproc_elif_token1] = ACTIONS(2707), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), - }, - [STATE(267)] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [aux_sym_preproc_else_token1] = ACTIONS(2711), - [aux_sym_preproc_elif_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [STATE(268)] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token2] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [aux_sym_preproc_else_token1] = ACTIONS(2715), - [aux_sym_preproc_elif_token1] = ACTIONS(2715), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), - }, - [STATE(269)] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token2] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [aux_sym_preproc_else_token1] = ACTIONS(2719), - [aux_sym_preproc_elif_token1] = ACTIONS(2719), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), - }, - [STATE(270)] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token2] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [aux_sym_preproc_else_token1] = ACTIONS(2723), - [aux_sym_preproc_elif_token1] = ACTIONS(2723), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), - }, - [STATE(271)] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token2] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [aux_sym_preproc_else_token1] = ACTIONS(2727), - [aux_sym_preproc_elif_token1] = ACTIONS(2727), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), - }, - [STATE(272)] = { - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token2] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [aux_sym_preproc_else_token1] = ACTIONS(2731), - [aux_sym_preproc_elif_token1] = ACTIONS(2731), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), - }, - [STATE(273)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token2] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [aux_sym_preproc_else_token1] = ACTIONS(2735), - [aux_sym_preproc_elif_token1] = ACTIONS(2735), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), - }, - [STATE(274)] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token2] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [aux_sym_preproc_else_token1] = ACTIONS(2739), - [aux_sym_preproc_elif_token1] = ACTIONS(2739), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - }, - [STATE(275)] = { - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token2] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [aux_sym_preproc_else_token1] = ACTIONS(2743), - [aux_sym_preproc_elif_token1] = ACTIONS(2743), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [STATE(276)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [aux_sym_preproc_else_token1] = ACTIONS(2747), - [aux_sym_preproc_elif_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - }, - [STATE(277)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [aux_sym_preproc_else_token1] = ACTIONS(2751), - [aux_sym_preproc_elif_token1] = ACTIONS(2751), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), - }, - [STATE(278)] = { - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token2] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [aux_sym_preproc_else_token1] = ACTIONS(2755), - [aux_sym_preproc_elif_token1] = ACTIONS(2755), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), - }, - [STATE(279)] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token2] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [aux_sym_preproc_else_token1] = ACTIONS(2759), - [aux_sym_preproc_elif_token1] = ACTIONS(2759), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), - }, - [STATE(280)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(281)] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym___try] = ACTIONS(2621), - [anon_sym___leave] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_compl] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [anon_sym___alignof__] = ACTIONS(2621), - [anon_sym___alignof] = ACTIONS(2621), - [anon_sym__alignof] = ACTIONS(2621), - [anon_sym_alignof] = ACTIONS(2621), - [anon_sym__Alignof] = ACTIONS(2621), - [anon_sym_offsetof] = ACTIONS(2621), - [anon_sym__Generic] = ACTIONS(2621), - [anon_sym_asm] = ACTIONS(2621), - [anon_sym___asm__] = ACTIONS(2621), - [anon_sym___asm] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [anon_sym_NULL] = ACTIONS(2621), - [anon_sym_nullptr] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_export] = ACTIONS(2621), - [anon_sym_module] = ACTIONS(2621), - [anon_sym_import] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_R_DQUOTE] = ACTIONS(2623), - [anon_sym_LR_DQUOTE] = ACTIONS(2623), - [anon_sym_uR_DQUOTE] = ACTIONS(2623), - [anon_sym_UR_DQUOTE] = ACTIONS(2623), - [anon_sym_u8R_DQUOTE] = ACTIONS(2623), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - }, - [STATE(282)] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token2] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [aux_sym_preproc_else_token1] = ACTIONS(2765), - [aux_sym_preproc_elif_token1] = ACTIONS(2765), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym___extension__] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym___attribute] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym___inline] = ACTIONS(2765), - [anon_sym___inline__] = ACTIONS(2765), - [anon_sym___forceinline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym___thread] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym___restrict__] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym__Noreturn] = ACTIONS(2765), - [anon_sym_noreturn] = ACTIONS(2765), - [anon_sym__Nonnull] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_alignas] = ACTIONS(2765), - [anon_sym__Alignas] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2765), - [anon_sym___leave] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [anon_sym___alignof__] = ACTIONS(2765), - [anon_sym___alignof] = ACTIONS(2765), - [anon_sym__alignof] = ACTIONS(2765), - [anon_sym_alignof] = ACTIONS(2765), - [anon_sym__Alignof] = ACTIONS(2765), - [anon_sym_offsetof] = ACTIONS(2765), - [anon_sym__Generic] = ACTIONS(2765), - [anon_sym_asm] = ACTIONS(2765), - [anon_sym___asm__] = ACTIONS(2765), - [anon_sym___asm] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [anon_sym_NULL] = ACTIONS(2765), - [anon_sym_nullptr] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - }, - [STATE(283)] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [aux_sym_preproc_else_token1] = ACTIONS(2769), - [aux_sym_preproc_elif_token1] = ACTIONS(2769), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym___extension__] = ACTIONS(2769), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym___attribute] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym___inline] = ACTIONS(2769), - [anon_sym___inline__] = ACTIONS(2769), - [anon_sym___forceinline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym___thread] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym___restrict__] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym__Noreturn] = ACTIONS(2769), - [anon_sym_noreturn] = ACTIONS(2769), - [anon_sym__Nonnull] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_alignas] = ACTIONS(2769), - [anon_sym__Alignas] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym___try] = ACTIONS(2769), - [anon_sym___leave] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [anon_sym___alignof__] = ACTIONS(2769), - [anon_sym___alignof] = ACTIONS(2769), - [anon_sym__alignof] = ACTIONS(2769), - [anon_sym_alignof] = ACTIONS(2769), - [anon_sym__Alignof] = ACTIONS(2769), - [anon_sym_offsetof] = ACTIONS(2769), - [anon_sym__Generic] = ACTIONS(2769), - [anon_sym_asm] = ACTIONS(2769), - [anon_sym___asm__] = ACTIONS(2769), - [anon_sym___asm] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [anon_sym_NULL] = ACTIONS(2769), - [anon_sym_nullptr] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - }, - [STATE(284)] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [aux_sym_preproc_else_token1] = ACTIONS(2773), - [aux_sym_preproc_elif_token1] = ACTIONS(2773), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym___extension__] = ACTIONS(2773), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym___attribute] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym___inline] = ACTIONS(2773), - [anon_sym___inline__] = ACTIONS(2773), - [anon_sym___forceinline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym___thread] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym___restrict__] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym__Noreturn] = ACTIONS(2773), - [anon_sym_noreturn] = ACTIONS(2773), - [anon_sym__Nonnull] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_alignas] = ACTIONS(2773), - [anon_sym__Alignas] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym___try] = ACTIONS(2773), - [anon_sym___leave] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [anon_sym___alignof__] = ACTIONS(2773), - [anon_sym___alignof] = ACTIONS(2773), - [anon_sym__alignof] = ACTIONS(2773), - [anon_sym_alignof] = ACTIONS(2773), - [anon_sym__Alignof] = ACTIONS(2773), - [anon_sym_offsetof] = ACTIONS(2773), - [anon_sym__Generic] = ACTIONS(2773), - [anon_sym_asm] = ACTIONS(2773), - [anon_sym___asm__] = ACTIONS(2773), - [anon_sym___asm] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [anon_sym_NULL] = ACTIONS(2773), - [anon_sym_nullptr] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - }, - [STATE(285)] = { - [sym_else_clause] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym___extension__] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym___attribute] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym___inline] = ACTIONS(2615), - [anon_sym___inline__] = ACTIONS(2615), - [anon_sym___forceinline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym___thread] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym___restrict__] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym__Noreturn] = ACTIONS(2615), - [anon_sym_noreturn] = ACTIONS(2615), - [anon_sym__Nonnull] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_alignas] = ACTIONS(2615), - [anon_sym__Alignas] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym___try] = ACTIONS(2615), - [anon_sym___leave] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [anon_sym___alignof__] = ACTIONS(2615), - [anon_sym___alignof] = ACTIONS(2615), - [anon_sym__alignof] = ACTIONS(2615), - [anon_sym_alignof] = ACTIONS(2615), - [anon_sym__Alignof] = ACTIONS(2615), - [anon_sym_offsetof] = ACTIONS(2615), - [anon_sym__Generic] = ACTIONS(2615), - [anon_sym_asm] = ACTIONS(2615), - [anon_sym___asm__] = ACTIONS(2615), - [anon_sym___asm] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [anon_sym_NULL] = ACTIONS(2615), - [anon_sym_nullptr] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_export] = ACTIONS(2615), - [anon_sym_module] = ACTIONS(2615), - [anon_sym_import] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), - }, - [STATE(286)] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [aux_sym_preproc_else_token1] = ACTIONS(2777), - [aux_sym_preproc_elif_token1] = ACTIONS(2777), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym___extension__] = ACTIONS(2777), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [anon_sym___alignof__] = ACTIONS(2777), - [anon_sym___alignof] = ACTIONS(2777), - [anon_sym__alignof] = ACTIONS(2777), - [anon_sym_alignof] = ACTIONS(2777), - [anon_sym__Alignof] = ACTIONS(2777), - [anon_sym_offsetof] = ACTIONS(2777), - [anon_sym__Generic] = ACTIONS(2777), - [anon_sym_asm] = ACTIONS(2777), - [anon_sym___asm__] = ACTIONS(2777), - [anon_sym___asm] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [anon_sym_NULL] = ACTIONS(2777), - [anon_sym_nullptr] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - }, - [STATE(287)] = { - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2663), - [aux_sym_preproc_include_token1] = ACTIONS(2663), - [aux_sym_preproc_def_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), - [sym_preproc_directive] = ACTIONS(2663), - [anon_sym_LPAREN2] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_AMP_AMP] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym___extension__] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2663), - [anon_sym_virtual] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym___attribute__] = ACTIONS(2663), - [anon_sym___attribute] = ACTIONS(2663), - [anon_sym_using] = ACTIONS(2663), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), - [anon_sym___declspec] = ACTIONS(2663), - [anon_sym___based] = ACTIONS(2663), - [anon_sym___cdecl] = ACTIONS(2663), - [anon_sym___clrcall] = ACTIONS(2663), - [anon_sym___stdcall] = ACTIONS(2663), - [anon_sym___fastcall] = ACTIONS(2663), - [anon_sym___thiscall] = ACTIONS(2663), - [anon_sym___vectorcall] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym___inline] = ACTIONS(2663), - [anon_sym___inline__] = ACTIONS(2663), - [anon_sym___forceinline] = ACTIONS(2663), - [anon_sym_thread_local] = ACTIONS(2663), - [anon_sym___thread] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_constexpr] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym___restrict__] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym__Noreturn] = ACTIONS(2663), - [anon_sym_noreturn] = ACTIONS(2663), - [anon_sym__Nonnull] = ACTIONS(2663), - [anon_sym_mutable] = ACTIONS(2663), - [anon_sym_constinit] = ACTIONS(2663), - [anon_sym_consteval] = ACTIONS(2663), - [anon_sym_alignas] = ACTIONS(2663), - [anon_sym__Alignas] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2663), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym___try] = ACTIONS(2663), - [anon_sym___leave] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_compl] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_sizeof] = ACTIONS(2663), - [anon_sym___alignof__] = ACTIONS(2663), - [anon_sym___alignof] = ACTIONS(2663), - [anon_sym__alignof] = ACTIONS(2663), - [anon_sym_alignof] = ACTIONS(2663), - [anon_sym__Alignof] = ACTIONS(2663), - [anon_sym_offsetof] = ACTIONS(2663), - [anon_sym__Generic] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym___asm__] = ACTIONS(2663), - [anon_sym___asm] = ACTIONS(2663), - [sym_number_literal] = ACTIONS(2665), - [anon_sym_L_SQUOTE] = ACTIONS(2665), - [anon_sym_u_SQUOTE] = ACTIONS(2665), - [anon_sym_U_SQUOTE] = ACTIONS(2665), - [anon_sym_u8_SQUOTE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_L_DQUOTE] = ACTIONS(2665), - [anon_sym_u_DQUOTE] = ACTIONS(2665), - [anon_sym_U_DQUOTE] = ACTIONS(2665), - [anon_sym_u8_DQUOTE] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [anon_sym_NULL] = ACTIONS(2663), - [anon_sym_nullptr] = ACTIONS(2663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2663), - [anon_sym_decltype] = ACTIONS(2663), - [anon_sym_explicit] = ACTIONS(2663), - [anon_sym_typename] = ACTIONS(2663), - [anon_sym_export] = ACTIONS(2663), - [anon_sym_module] = ACTIONS(2663), - [anon_sym_import] = ACTIONS(2663), - [anon_sym_template] = ACTIONS(2663), - [anon_sym_operator] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2663), - [anon_sym_throw] = ACTIONS(2663), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_static_assert] = ACTIONS(2663), - [anon_sym_concept] = ACTIONS(2663), - [anon_sym_co_return] = ACTIONS(2663), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2665), - [anon_sym_LR_DQUOTE] = ACTIONS(2665), - [anon_sym_uR_DQUOTE] = ACTIONS(2665), - [anon_sym_UR_DQUOTE] = ACTIONS(2665), - [anon_sym_u8R_DQUOTE] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(2663), - [anon_sym_requires] = ACTIONS(2663), - [sym_this] = ACTIONS(2663), - }, - [STATE(288)] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_export] = ACTIONS(2711), - [anon_sym_module] = ACTIONS(2711), - [anon_sym_import] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [STATE(289)] = { - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_export] = ACTIONS(2751), - [anon_sym_module] = ACTIONS(2751), - [anon_sym_import] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), - }, - [STATE(290)] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token2] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [aux_sym_preproc_else_token1] = ACTIONS(2781), - [aux_sym_preproc_elif_token1] = ACTIONS(2781), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym___extension__] = ACTIONS(2781), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym___attribute] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym___inline] = ACTIONS(2781), - [anon_sym___inline__] = ACTIONS(2781), - [anon_sym___forceinline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym___thread] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym___restrict__] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym__Noreturn] = ACTIONS(2781), - [anon_sym_noreturn] = ACTIONS(2781), - [anon_sym__Nonnull] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_alignas] = ACTIONS(2781), - [anon_sym__Alignas] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym___try] = ACTIONS(2781), - [anon_sym___leave] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [anon_sym___alignof__] = ACTIONS(2781), - [anon_sym___alignof] = ACTIONS(2781), - [anon_sym__alignof] = ACTIONS(2781), - [anon_sym_alignof] = ACTIONS(2781), - [anon_sym__Alignof] = ACTIONS(2781), - [anon_sym_offsetof] = ACTIONS(2781), - [anon_sym__Generic] = ACTIONS(2781), - [anon_sym_asm] = ACTIONS(2781), - [anon_sym___asm__] = ACTIONS(2781), - [anon_sym___asm] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [anon_sym_NULL] = ACTIONS(2781), - [anon_sym_nullptr] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - }, - [STATE(291)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [aux_sym_preproc_else_token1] = ACTIONS(2785), - [aux_sym_preproc_elif_token1] = ACTIONS(2785), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym___try] = ACTIONS(2785), - [anon_sym___leave] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [anon_sym___alignof__] = ACTIONS(2785), - [anon_sym___alignof] = ACTIONS(2785), - [anon_sym__alignof] = ACTIONS(2785), - [anon_sym_alignof] = ACTIONS(2785), - [anon_sym__Alignof] = ACTIONS(2785), - [anon_sym_offsetof] = ACTIONS(2785), - [anon_sym__Generic] = ACTIONS(2785), - [anon_sym_asm] = ACTIONS(2785), - [anon_sym___asm__] = ACTIONS(2785), - [anon_sym___asm] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [anon_sym_NULL] = ACTIONS(2785), - [anon_sym_nullptr] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - }, - [STATE(292)] = { - [sym_preproc_def] = STATE(332), - [sym_preproc_function_def] = STATE(332), - [sym_preproc_call] = STATE(332), - [sym_preproc_if_in_field_declaration_list] = STATE(332), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(332), - [sym_preproc_else_in_field_declaration_list] = STATE(8424), - [sym_preproc_elif_in_field_declaration_list] = STATE(8424), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8424), - [sym_type_definition] = STATE(332), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(332), - [sym_field_declaration] = STATE(332), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(332), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(332), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(332), - [sym_operator_cast_declaration] = STATE(332), - [sym_constructor_or_destructor_definition] = STATE(332), - [sym_constructor_or_destructor_declaration] = STATE(332), - [sym_friend_declaration] = STATE(332), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(332), - [sym_alias_declaration] = STATE(332), - [sym_static_assert_declaration] = STATE(332), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(332), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(218)] = { + [sym_compound_statement] = STATE(10595), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4645), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10595), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10535), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10538), + [sym__unary_right_fold] = STATE(10540), + [sym__binary_fold] = STATE(10544), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10619), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -86623,380 +85025,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(293)] = { - [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_virtual] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym___attribute] = ACTIONS(2849), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym__Alignas] = 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_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), - [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_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_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = 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), - }, - [STATE(294)] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym___extension__] = ACTIONS(2773), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym___attribute] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym___inline] = ACTIONS(2773), - [anon_sym___inline__] = ACTIONS(2773), - [anon_sym___forceinline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym___thread] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym___restrict__] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym__Noreturn] = ACTIONS(2773), - [anon_sym_noreturn] = ACTIONS(2773), - [anon_sym__Nonnull] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_alignas] = ACTIONS(2773), - [anon_sym__Alignas] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym___try] = ACTIONS(2773), - [anon_sym___leave] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [anon_sym___alignof__] = ACTIONS(2773), - [anon_sym___alignof] = ACTIONS(2773), - [anon_sym__alignof] = ACTIONS(2773), - [anon_sym_alignof] = ACTIONS(2773), - [anon_sym__Alignof] = ACTIONS(2773), - [anon_sym_offsetof] = ACTIONS(2773), - [anon_sym__Generic] = ACTIONS(2773), - [anon_sym_asm] = ACTIONS(2773), - [anon_sym___asm__] = ACTIONS(2773), - [anon_sym___asm] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [anon_sym_NULL] = ACTIONS(2773), - [anon_sym_nullptr] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_export] = ACTIONS(2773), - [anon_sym_module] = ACTIONS(2773), - [anon_sym_import] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(295)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4416), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7272), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7540), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(219)] = { + [sym_compound_statement] = STATE(10595), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4645), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10595), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11454), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10538), + [sym__unary_right_fold] = STATE(10540), + [sym__binary_fold] = STATE(10544), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10619), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -87009,1114 +85178,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(2907), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(296)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [aux_sym_preproc_else_token1] = ACTIONS(2919), - [aux_sym_preproc_elif_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(297)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [aux_sym_preproc_else_token1] = ACTIONS(2923), - [aux_sym_preproc_elif_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(298)] = { - [sym_expression] = STATE(4544), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8642), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym___extension__] = ACTIONS(2932), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2944), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(299)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [aux_sym_preproc_else_token1] = ACTIONS(2923), - [aux_sym_preproc_elif_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(300)] = { - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token2] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [aux_sym_preproc_else_token1] = ACTIONS(2947), - [aux_sym_preproc_elif_token1] = ACTIONS(2947), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym___try] = ACTIONS(2947), - [anon_sym___leave] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), - }, - [STATE(301)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [aux_sym_preproc_else_token1] = ACTIONS(2951), - [aux_sym_preproc_elif_token1] = ACTIONS(2951), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym___try] = ACTIONS(2951), - [anon_sym___leave] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), - }, - [STATE(302)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [aux_sym_preproc_else_token1] = ACTIONS(2955), - [aux_sym_preproc_elif_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym___try] = ACTIONS(2955), - [anon_sym___leave] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(303)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4483), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7211), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7688), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(220)] = { + [sym_compound_statement] = STATE(11324), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4566), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11324), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10586), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10597), + [sym__unary_right_fold] = STATE(10627), + [sym__binary_fold] = STATE(10638), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10568), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -88129,1430 +85331,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(2959), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(304)] = { - [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), - [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_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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(305)] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(306)] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(307)] = { - [ts_builtin_sym_end] = ACTIONS(2643), - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_module] = ACTIONS(2641), - [anon_sym_import] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(308)] = { - [ts_builtin_sym_end] = ACTIONS(2643), - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_module] = ACTIONS(2641), - [anon_sym_import] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(309)] = { - [sym_catch_clause] = STATE(235), - [aux_sym_constructor_try_statement_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [anon_sym___alignof__] = ACTIONS(2588), - [anon_sym___alignof] = ACTIONS(2588), - [anon_sym__alignof] = ACTIONS(2588), - [anon_sym_alignof] = ACTIONS(2588), - [anon_sym__Alignof] = ACTIONS(2588), - [anon_sym_offsetof] = ACTIONS(2588), - [anon_sym__Generic] = ACTIONS(2588), - [anon_sym_asm] = ACTIONS(2588), - [anon_sym___asm__] = ACTIONS(2588), - [anon_sym___asm] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [anon_sym_NULL] = ACTIONS(2588), - [anon_sym_nullptr] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_import] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(2598), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - }, - [STATE(310)] = { - [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), - [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_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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(311)] = { - [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), - [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_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_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(312)] = { - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_export] = ACTIONS(2715), - [anon_sym_module] = ACTIONS(2715), - [anon_sym_import] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(313)] = { - [sym_preproc_def] = STATE(318), - [sym_preproc_function_def] = STATE(318), - [sym_preproc_call] = STATE(318), - [sym_preproc_if_in_field_declaration_list] = STATE(318), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(318), - [sym_preproc_else_in_field_declaration_list] = STATE(8532), - [sym_preproc_elif_in_field_declaration_list] = STATE(8532), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8532), - [sym_type_definition] = STATE(318), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(318), - [sym_field_declaration] = STATE(318), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(318), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(318), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(318), - [sym_operator_cast_declaration] = STATE(318), - [sym_constructor_or_destructor_definition] = STATE(318), - [sym_constructor_or_destructor_declaration] = STATE(318), - [sym_friend_declaration] = STATE(318), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(318), - [sym_alias_declaration] = STATE(318), - [sym_static_assert_declaration] = STATE(318), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(318), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(221)] = { + [sym_compound_statement] = STATE(11324), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4566), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11324), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11086), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10597), + [sym__unary_right_fold] = STATE(10627), + [sym__binary_fold] = STATE(10638), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10568), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -89563,556 +85484,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(314)] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(315)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(2977), - [aux_sym_preproc_elif_token1] = ACTIONS(2977), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_elifdef_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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(316)] = { - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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_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), - [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_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_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), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(317)] = { - [sym_preproc_def] = STATE(319), - [sym_preproc_function_def] = STATE(319), - [sym_preproc_call] = STATE(319), - [sym_preproc_if_in_field_declaration_list] = STATE(319), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(319), - [sym_preproc_else_in_field_declaration_list] = STATE(8827), - [sym_preproc_elif_in_field_declaration_list] = STATE(8827), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8827), - [sym_type_definition] = STATE(319), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(319), - [sym_field_declaration] = STATE(319), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(319), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(319), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(319), - [sym_operator_cast_declaration] = STATE(319), - [sym_constructor_or_destructor_definition] = STATE(319), - [sym_constructor_or_destructor_declaration] = STATE(319), - [sym_friend_declaration] = STATE(319), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(319), - [sym_alias_declaration] = STATE(319), - [sym_static_assert_declaration] = STATE(319), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(319), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(222)] = { + [sym_compound_statement] = STATE(11128), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4552), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11128), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10645), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10646), + [sym__unary_right_fold] = STATE(10648), + [sym__binary_fold] = STATE(10649), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11335), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -90123,136 +85637,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(318)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8846), - [sym_preproc_elif_in_field_declaration_list] = STATE(8846), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8846), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(223)] = { + [sym_compound_statement] = STATE(11128), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4552), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11128), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10857), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10646), + [sym__unary_right_fold] = STATE(10648), + [sym__binary_fold] = STATE(10649), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11335), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -90263,136 +85790,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(319)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8283), - [sym_preproc_elif_in_field_declaration_list] = STATE(8283), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8283), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2993), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(224)] = { + [sym_compound_statement] = STATE(11324), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4566), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11324), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11482), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10841), + [sym__unary_right_fold] = STATE(10845), + [sym__binary_fold] = STATE(10846), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10568), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -90403,1676 +85943,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(320)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_include_token1] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token2] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [aux_sym_preproc_else_token1] = ACTIONS(2995), - [aux_sym_preproc_elif_token1] = ACTIONS(2995), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym___cdecl] = ACTIONS(2995), - [anon_sym___clrcall] = ACTIONS(2995), - [anon_sym___stdcall] = ACTIONS(2995), - [anon_sym___fastcall] = ACTIONS(2995), - [anon_sym___thiscall] = ACTIONS(2995), - [anon_sym___vectorcall] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_switch] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_default] = ACTIONS(2995), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_do] = ACTIONS(2995), - [anon_sym_for] = ACTIONS(2995), - [anon_sym_return] = ACTIONS(2995), - [anon_sym_break] = ACTIONS(2995), - [anon_sym_continue] = ACTIONS(2995), - [anon_sym_goto] = ACTIONS(2995), - [anon_sym___try] = ACTIONS(2995), - [anon_sym___leave] = ACTIONS(2995), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(2995), - [anon_sym___alignof__] = ACTIONS(2995), - [anon_sym___alignof] = ACTIONS(2995), - [anon_sym__alignof] = ACTIONS(2995), - [anon_sym_alignof] = ACTIONS(2995), - [anon_sym__Alignof] = ACTIONS(2995), - [anon_sym_offsetof] = ACTIONS(2995), - [anon_sym__Generic] = ACTIONS(2995), - [anon_sym_asm] = ACTIONS(2995), - [anon_sym___asm__] = ACTIONS(2995), - [anon_sym___asm] = ACTIONS(2995), - [sym_number_literal] = ACTIONS(2997), - [anon_sym_L_SQUOTE] = ACTIONS(2997), - [anon_sym_u_SQUOTE] = ACTIONS(2997), - [anon_sym_U_SQUOTE] = ACTIONS(2997), - [anon_sym_u8_SQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_L_DQUOTE] = ACTIONS(2997), - [anon_sym_u_DQUOTE] = ACTIONS(2997), - [anon_sym_U_DQUOTE] = ACTIONS(2997), - [anon_sym_u8_DQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [sym_true] = ACTIONS(2995), - [sym_false] = ACTIONS(2995), - [anon_sym_NULL] = ACTIONS(2995), - [anon_sym_nullptr] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_throw] = ACTIONS(2995), - [anon_sym_namespace] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), - [anon_sym_concept] = ACTIONS(2995), - [anon_sym_co_return] = ACTIONS(2995), - [anon_sym_co_yield] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2997), - [anon_sym_LR_DQUOTE] = ACTIONS(2997), - [anon_sym_uR_DQUOTE] = ACTIONS(2997), - [anon_sym_UR_DQUOTE] = ACTIONS(2997), - [anon_sym_u8R_DQUOTE] = ACTIONS(2997), - [anon_sym_co_await] = ACTIONS(2995), - [anon_sym_new] = ACTIONS(2995), - [anon_sym_requires] = ACTIONS(2995), - [sym_this] = ACTIONS(2995), - }, - [STATE(321)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_include_token1] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token2] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [aux_sym_preproc_else_token1] = ACTIONS(2999), - [aux_sym_preproc_elif_token1] = ACTIONS(2999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym___cdecl] = ACTIONS(2999), - [anon_sym___clrcall] = ACTIONS(2999), - [anon_sym___stdcall] = ACTIONS(2999), - [anon_sym___fastcall] = ACTIONS(2999), - [anon_sym___thiscall] = ACTIONS(2999), - [anon_sym___vectorcall] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_switch] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_default] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_goto] = ACTIONS(2999), - [anon_sym___try] = ACTIONS(2999), - [anon_sym___leave] = ACTIONS(2999), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_compl] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(2999), - [anon_sym___alignof__] = ACTIONS(2999), - [anon_sym___alignof] = ACTIONS(2999), - [anon_sym__alignof] = ACTIONS(2999), - [anon_sym_alignof] = ACTIONS(2999), - [anon_sym__Alignof] = ACTIONS(2999), - [anon_sym_offsetof] = ACTIONS(2999), - [anon_sym__Generic] = ACTIONS(2999), - [anon_sym_asm] = ACTIONS(2999), - [anon_sym___asm__] = ACTIONS(2999), - [anon_sym___asm] = ACTIONS(2999), - [sym_number_literal] = ACTIONS(3001), - [anon_sym_L_SQUOTE] = ACTIONS(3001), - [anon_sym_u_SQUOTE] = ACTIONS(3001), - [anon_sym_U_SQUOTE] = ACTIONS(3001), - [anon_sym_u8_SQUOTE] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_L_DQUOTE] = ACTIONS(3001), - [anon_sym_u_DQUOTE] = ACTIONS(3001), - [anon_sym_U_DQUOTE] = ACTIONS(3001), - [anon_sym_u8_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [anon_sym_NULL] = ACTIONS(2999), - [anon_sym_nullptr] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_namespace] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), - [anon_sym_concept] = ACTIONS(2999), - [anon_sym_co_return] = ACTIONS(2999), - [anon_sym_co_yield] = ACTIONS(2999), - [anon_sym_R_DQUOTE] = ACTIONS(3001), - [anon_sym_LR_DQUOTE] = ACTIONS(3001), - [anon_sym_uR_DQUOTE] = ACTIONS(3001), - [anon_sym_UR_DQUOTE] = ACTIONS(3001), - [anon_sym_u8R_DQUOTE] = ACTIONS(3001), - [anon_sym_co_await] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_requires] = ACTIONS(2999), - [sym_this] = ACTIONS(2999), - }, - [STATE(322)] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym___try] = ACTIONS(2649), - [anon_sym___leave] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [anon_sym___alignof__] = ACTIONS(2649), - [anon_sym___alignof] = ACTIONS(2649), - [anon_sym__alignof] = ACTIONS(2649), - [anon_sym_alignof] = ACTIONS(2649), - [anon_sym__Alignof] = ACTIONS(2649), - [anon_sym_offsetof] = ACTIONS(2649), - [anon_sym__Generic] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym___asm__] = ACTIONS(2649), - [anon_sym___asm] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [anon_sym_nullptr] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_export] = ACTIONS(2649), - [anon_sym_module] = ACTIONS(2649), - [anon_sym_import] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - }, - [STATE(323)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_include_token1] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token2] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [aux_sym_preproc_else_token1] = ACTIONS(3003), - [aux_sym_preproc_elif_token1] = ACTIONS(3003), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym___cdecl] = ACTIONS(3003), - [anon_sym___clrcall] = ACTIONS(3003), - [anon_sym___stdcall] = ACTIONS(3003), - [anon_sym___fastcall] = ACTIONS(3003), - [anon_sym___thiscall] = ACTIONS(3003), - [anon_sym___vectorcall] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_switch] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_goto] = ACTIONS(3003), - [anon_sym___try] = ACTIONS(3003), - [anon_sym___leave] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3003), - [anon_sym_compl] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3003), - [anon_sym___alignof__] = ACTIONS(3003), - [anon_sym___alignof] = ACTIONS(3003), - [anon_sym__alignof] = ACTIONS(3003), - [anon_sym_alignof] = ACTIONS(3003), - [anon_sym__Alignof] = ACTIONS(3003), - [anon_sym_offsetof] = ACTIONS(3003), - [anon_sym__Generic] = ACTIONS(3003), - [anon_sym_asm] = ACTIONS(3003), - [anon_sym___asm__] = ACTIONS(3003), - [anon_sym___asm] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_L_SQUOTE] = ACTIONS(3005), - [anon_sym_u_SQUOTE] = ACTIONS(3005), - [anon_sym_U_SQUOTE] = ACTIONS(3005), - [anon_sym_u8_SQUOTE] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_L_DQUOTE] = ACTIONS(3005), - [anon_sym_u_DQUOTE] = ACTIONS(3005), - [anon_sym_U_DQUOTE] = ACTIONS(3005), - [anon_sym_u8_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [anon_sym_NULL] = ACTIONS(3003), - [anon_sym_nullptr] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - [anon_sym_concept] = ACTIONS(3003), - [anon_sym_co_return] = ACTIONS(3003), - [anon_sym_co_yield] = ACTIONS(3003), - [anon_sym_R_DQUOTE] = ACTIONS(3005), - [anon_sym_LR_DQUOTE] = ACTIONS(3005), - [anon_sym_uR_DQUOTE] = ACTIONS(3005), - [anon_sym_UR_DQUOTE] = ACTIONS(3005), - [anon_sym_u8R_DQUOTE] = ACTIONS(3005), - [anon_sym_co_await] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_requires] = ACTIONS(3003), - [sym_this] = ACTIONS(3003), - }, - [STATE(324)] = { - [sym_identifier] = ACTIONS(3007), - [aux_sym_preproc_include_token1] = ACTIONS(3007), - [aux_sym_preproc_def_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token2] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3007), - [aux_sym_preproc_else_token1] = ACTIONS(3007), - [aux_sym_preproc_elif_token1] = ACTIONS(3007), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3007), - [sym_preproc_directive] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3007), - [anon_sym_virtual] = ACTIONS(3007), - [anon_sym_extern] = ACTIONS(3007), - [anon_sym___attribute__] = ACTIONS(3007), - [anon_sym___attribute] = ACTIONS(3007), - [anon_sym_using] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3009), - [anon_sym___declspec] = ACTIONS(3007), - [anon_sym___based] = ACTIONS(3007), - [anon_sym___cdecl] = ACTIONS(3007), - [anon_sym___clrcall] = ACTIONS(3007), - [anon_sym___stdcall] = ACTIONS(3007), - [anon_sym___fastcall] = ACTIONS(3007), - [anon_sym___thiscall] = ACTIONS(3007), - [anon_sym___vectorcall] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_signed] = ACTIONS(3007), - [anon_sym_unsigned] = ACTIONS(3007), - [anon_sym_long] = ACTIONS(3007), - [anon_sym_short] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_register] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym___inline] = ACTIONS(3007), - [anon_sym___inline__] = ACTIONS(3007), - [anon_sym___forceinline] = ACTIONS(3007), - [anon_sym_thread_local] = ACTIONS(3007), - [anon_sym___thread] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_constexpr] = ACTIONS(3007), - [anon_sym_volatile] = ACTIONS(3007), - [anon_sym_restrict] = ACTIONS(3007), - [anon_sym___restrict__] = ACTIONS(3007), - [anon_sym__Atomic] = ACTIONS(3007), - [anon_sym__Noreturn] = ACTIONS(3007), - [anon_sym_noreturn] = ACTIONS(3007), - [anon_sym__Nonnull] = ACTIONS(3007), - [anon_sym_mutable] = ACTIONS(3007), - [anon_sym_constinit] = ACTIONS(3007), - [anon_sym_consteval] = ACTIONS(3007), - [anon_sym_alignas] = ACTIONS(3007), - [anon_sym__Alignas] = ACTIONS(3007), - [sym_primitive_type] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_switch] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym___try] = ACTIONS(3007), - [anon_sym___leave] = ACTIONS(3007), - [anon_sym_not] = ACTIONS(3007), - [anon_sym_compl] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_sizeof] = ACTIONS(3007), - [anon_sym___alignof__] = ACTIONS(3007), - [anon_sym___alignof] = ACTIONS(3007), - [anon_sym__alignof] = ACTIONS(3007), - [anon_sym_alignof] = ACTIONS(3007), - [anon_sym__Alignof] = ACTIONS(3007), - [anon_sym_offsetof] = ACTIONS(3007), - [anon_sym__Generic] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym___asm__] = ACTIONS(3007), - [anon_sym___asm] = ACTIONS(3007), - [sym_number_literal] = ACTIONS(3009), - [anon_sym_L_SQUOTE] = ACTIONS(3009), - [anon_sym_u_SQUOTE] = ACTIONS(3009), - [anon_sym_U_SQUOTE] = ACTIONS(3009), - [anon_sym_u8_SQUOTE] = ACTIONS(3009), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_L_DQUOTE] = ACTIONS(3009), - [anon_sym_u_DQUOTE] = ACTIONS(3009), - [anon_sym_U_DQUOTE] = ACTIONS(3009), - [anon_sym_u8_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [anon_sym_NULL] = ACTIONS(3007), - [anon_sym_nullptr] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3007), - [anon_sym_decltype] = ACTIONS(3007), - [anon_sym_explicit] = ACTIONS(3007), - [anon_sym_typename] = ACTIONS(3007), - [anon_sym_template] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_delete] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_static_assert] = ACTIONS(3007), - [anon_sym_concept] = ACTIONS(3007), - [anon_sym_co_return] = ACTIONS(3007), - [anon_sym_co_yield] = ACTIONS(3007), - [anon_sym_R_DQUOTE] = ACTIONS(3009), - [anon_sym_LR_DQUOTE] = ACTIONS(3009), - [anon_sym_uR_DQUOTE] = ACTIONS(3009), - [anon_sym_UR_DQUOTE] = ACTIONS(3009), - [anon_sym_u8R_DQUOTE] = ACTIONS(3009), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_requires] = ACTIONS(3007), - [sym_this] = ACTIONS(3007), - }, - [STATE(325)] = { - [sym_identifier] = ACTIONS(3011), - [aux_sym_preproc_include_token1] = ACTIONS(3011), - [aux_sym_preproc_def_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token2] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3011), - [aux_sym_preproc_else_token1] = ACTIONS(3011), - [aux_sym_preproc_elif_token1] = ACTIONS(3011), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3011), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3011), - [sym_preproc_directive] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = ACTIONS(3011), - [anon_sym___attribute] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3013), - [anon_sym___declspec] = ACTIONS(3011), - [anon_sym___based] = ACTIONS(3011), - [anon_sym___cdecl] = ACTIONS(3011), - [anon_sym___clrcall] = ACTIONS(3011), - [anon_sym___stdcall] = ACTIONS(3011), - [anon_sym___fastcall] = ACTIONS(3011), - [anon_sym___thiscall] = ACTIONS(3011), - [anon_sym___vectorcall] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_signed] = ACTIONS(3011), - [anon_sym_unsigned] = ACTIONS(3011), - [anon_sym_long] = ACTIONS(3011), - [anon_sym_short] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_register] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym___inline] = ACTIONS(3011), - [anon_sym___inline__] = ACTIONS(3011), - [anon_sym___forceinline] = ACTIONS(3011), - [anon_sym_thread_local] = ACTIONS(3011), - [anon_sym___thread] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_constexpr] = ACTIONS(3011), - [anon_sym_volatile] = ACTIONS(3011), - [anon_sym_restrict] = ACTIONS(3011), - [anon_sym___restrict__] = ACTIONS(3011), - [anon_sym__Atomic] = ACTIONS(3011), - [anon_sym__Noreturn] = ACTIONS(3011), - [anon_sym_noreturn] = ACTIONS(3011), - [anon_sym__Nonnull] = ACTIONS(3011), - [anon_sym_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym__Alignas] = ACTIONS(3011), - [sym_primitive_type] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_switch] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_default] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_do] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym___try] = ACTIONS(3011), - [anon_sym___leave] = ACTIONS(3011), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_compl] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3011), - [anon_sym___alignof] = ACTIONS(3011), - [anon_sym__alignof] = ACTIONS(3011), - [anon_sym_alignof] = ACTIONS(3011), - [anon_sym__Alignof] = ACTIONS(3011), - [anon_sym_offsetof] = ACTIONS(3011), - [anon_sym__Generic] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym___asm__] = ACTIONS(3011), - [anon_sym___asm] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(3013), - [anon_sym_L_SQUOTE] = ACTIONS(3013), - [anon_sym_u_SQUOTE] = ACTIONS(3013), - [anon_sym_U_SQUOTE] = ACTIONS(3013), - [anon_sym_u8_SQUOTE] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_L_DQUOTE] = ACTIONS(3013), - [anon_sym_u_DQUOTE] = ACTIONS(3013), - [anon_sym_U_DQUOTE] = ACTIONS(3013), - [anon_sym_u8_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [anon_sym_NULL] = ACTIONS(3011), - [anon_sym_nullptr] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_delete] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_namespace] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - [anon_sym_concept] = ACTIONS(3011), - [anon_sym_co_return] = ACTIONS(3011), - [anon_sym_co_yield] = ACTIONS(3011), - [anon_sym_R_DQUOTE] = ACTIONS(3013), - [anon_sym_LR_DQUOTE] = ACTIONS(3013), - [anon_sym_uR_DQUOTE] = ACTIONS(3013), - [anon_sym_UR_DQUOTE] = ACTIONS(3013), - [anon_sym_u8R_DQUOTE] = ACTIONS(3013), - [anon_sym_co_await] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_requires] = ACTIONS(3011), - [sym_this] = ACTIONS(3011), - }, - [STATE(326)] = { - [sym_identifier] = ACTIONS(3015), - [aux_sym_preproc_include_token1] = ACTIONS(3015), - [aux_sym_preproc_def_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token2] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3015), - [aux_sym_preproc_else_token1] = ACTIONS(3015), - [aux_sym_preproc_elif_token1] = ACTIONS(3015), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3015), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3015), - [sym_preproc_directive] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym___extension__] = ACTIONS(3015), - [anon_sym_typedef] = ACTIONS(3015), - [anon_sym_virtual] = ACTIONS(3015), - [anon_sym_extern] = ACTIONS(3015), - [anon_sym___attribute__] = ACTIONS(3015), - [anon_sym___attribute] = ACTIONS(3015), - [anon_sym_using] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3017), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3017), - [anon_sym___declspec] = ACTIONS(3015), - [anon_sym___based] = ACTIONS(3015), - [anon_sym___cdecl] = ACTIONS(3015), - [anon_sym___clrcall] = ACTIONS(3015), - [anon_sym___stdcall] = ACTIONS(3015), - [anon_sym___fastcall] = ACTIONS(3015), - [anon_sym___thiscall] = ACTIONS(3015), - [anon_sym___vectorcall] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_signed] = ACTIONS(3015), - [anon_sym_unsigned] = ACTIONS(3015), - [anon_sym_long] = ACTIONS(3015), - [anon_sym_short] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_register] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym___inline] = ACTIONS(3015), - [anon_sym___inline__] = ACTIONS(3015), - [anon_sym___forceinline] = ACTIONS(3015), - [anon_sym_thread_local] = ACTIONS(3015), - [anon_sym___thread] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_constexpr] = ACTIONS(3015), - [anon_sym_volatile] = ACTIONS(3015), - [anon_sym_restrict] = ACTIONS(3015), - [anon_sym___restrict__] = ACTIONS(3015), - [anon_sym__Atomic] = ACTIONS(3015), - [anon_sym__Noreturn] = ACTIONS(3015), - [anon_sym_noreturn] = ACTIONS(3015), - [anon_sym__Nonnull] = ACTIONS(3015), - [anon_sym_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = ACTIONS(3015), - [anon_sym_alignas] = ACTIONS(3015), - [anon_sym__Alignas] = ACTIONS(3015), - [sym_primitive_type] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_do] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym___try] = ACTIONS(3015), - [anon_sym___leave] = ACTIONS(3015), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_compl] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_sizeof] = ACTIONS(3015), - [anon_sym___alignof__] = ACTIONS(3015), - [anon_sym___alignof] = ACTIONS(3015), - [anon_sym__alignof] = ACTIONS(3015), - [anon_sym_alignof] = ACTIONS(3015), - [anon_sym__Alignof] = ACTIONS(3015), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym___asm__] = ACTIONS(3015), - [anon_sym___asm] = ACTIONS(3015), - [sym_number_literal] = ACTIONS(3017), - [anon_sym_L_SQUOTE] = ACTIONS(3017), - [anon_sym_u_SQUOTE] = ACTIONS(3017), - [anon_sym_U_SQUOTE] = ACTIONS(3017), - [anon_sym_u8_SQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_L_DQUOTE] = ACTIONS(3017), - [anon_sym_u_DQUOTE] = ACTIONS(3017), - [anon_sym_U_DQUOTE] = ACTIONS(3017), - [anon_sym_u8_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [anon_sym_NULL] = ACTIONS(3015), - [anon_sym_nullptr] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3015), - [anon_sym_decltype] = ACTIONS(3015), - [anon_sym_explicit] = ACTIONS(3015), - [anon_sym_typename] = ACTIONS(3015), - [anon_sym_template] = ACTIONS(3015), - [anon_sym_operator] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_delete] = ACTIONS(3015), - [anon_sym_throw] = ACTIONS(3015), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_static_assert] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3015), - [anon_sym_co_return] = ACTIONS(3015), - [anon_sym_co_yield] = ACTIONS(3015), - [anon_sym_R_DQUOTE] = ACTIONS(3017), - [anon_sym_LR_DQUOTE] = ACTIONS(3017), - [anon_sym_uR_DQUOTE] = ACTIONS(3017), - [anon_sym_UR_DQUOTE] = ACTIONS(3017), - [anon_sym_u8R_DQUOTE] = ACTIONS(3017), - [anon_sym_co_await] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_requires] = ACTIONS(3015), - [sym_this] = ACTIONS(3015), - }, - [STATE(327)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [aux_sym_preproc_else_token1] = ACTIONS(3019), - [aux_sym_preproc_elif_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), - }, - [STATE(328)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [aux_sym_preproc_else_token1] = ACTIONS(3023), - [aux_sym_preproc_elif_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), - }, - [STATE(329)] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_export] = ACTIONS(2655), - [anon_sym_module] = ACTIONS(2655), - [anon_sym_import] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - }, - [STATE(330)] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token2] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [aux_sym_preproc_else_token1] = ACTIONS(3027), - [aux_sym_preproc_elif_token1] = ACTIONS(3027), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(331)] = { - [sym_preproc_def] = STATE(356), - [sym_preproc_function_def] = STATE(356), - [sym_preproc_call] = STATE(356), - [sym_preproc_if_in_field_declaration_list] = STATE(356), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(356), - [sym_preproc_else_in_field_declaration_list] = STATE(8386), - [sym_preproc_elif_in_field_declaration_list] = STATE(8386), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8386), - [sym_type_definition] = STATE(356), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(356), - [sym_field_declaration] = STATE(356), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(356), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(356), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(356), - [sym_operator_cast_declaration] = STATE(356), - [sym_constructor_or_destructor_definition] = STATE(356), - [sym_constructor_or_destructor_declaration] = STATE(356), - [sym_friend_declaration] = STATE(356), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(356), - [sym_alias_declaration] = STATE(356), - [sym_static_assert_declaration] = STATE(356), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(356), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3031), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(225)] = { + [sym_compound_statement] = STATE(11324), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4566), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(11324), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10603), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10841), + [sym__unary_right_fold] = STATE(10845), + [sym__binary_fold] = STATE(10846), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10568), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -92083,136 +86096,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(332)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8473), - [sym_preproc_elif_in_field_declaration_list] = STATE(8473), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8473), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(226)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10838), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -92223,660 +86249,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(333)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_include_token1] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token2] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3037), - [aux_sym_preproc_elif_token1] = ACTIONS(3037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym___cdecl] = ACTIONS(3037), - [anon_sym___clrcall] = ACTIONS(3037), - [anon_sym___stdcall] = ACTIONS(3037), - [anon_sym___fastcall] = ACTIONS(3037), - [anon_sym___thiscall] = ACTIONS(3037), - [anon_sym___vectorcall] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_switch] = ACTIONS(3037), - [anon_sym_case] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym___try] = ACTIONS(3037), - [anon_sym___leave] = ACTIONS(3037), - [anon_sym_not] = ACTIONS(3037), - [anon_sym_compl] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(3037), - [anon_sym___alignof__] = ACTIONS(3037), - [anon_sym___alignof] = ACTIONS(3037), - [anon_sym__alignof] = ACTIONS(3037), - [anon_sym_alignof] = ACTIONS(3037), - [anon_sym__Alignof] = ACTIONS(3037), - [anon_sym_offsetof] = ACTIONS(3037), - [anon_sym__Generic] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym___asm__] = ACTIONS(3037), - [anon_sym___asm] = ACTIONS(3037), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_L_SQUOTE] = ACTIONS(3039), - [anon_sym_u_SQUOTE] = ACTIONS(3039), - [anon_sym_U_SQUOTE] = ACTIONS(3039), - [anon_sym_u8_SQUOTE] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_L_DQUOTE] = ACTIONS(3039), - [anon_sym_u_DQUOTE] = ACTIONS(3039), - [anon_sym_U_DQUOTE] = ACTIONS(3039), - [anon_sym_u8_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [anon_sym_NULL] = ACTIONS(3037), - [anon_sym_nullptr] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_delete] = ACTIONS(3037), - [anon_sym_throw] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), - [anon_sym_concept] = ACTIONS(3037), - [anon_sym_co_return] = ACTIONS(3037), - [anon_sym_co_yield] = ACTIONS(3037), - [anon_sym_R_DQUOTE] = ACTIONS(3039), - [anon_sym_LR_DQUOTE] = ACTIONS(3039), - [anon_sym_uR_DQUOTE] = ACTIONS(3039), - [anon_sym_UR_DQUOTE] = ACTIONS(3039), - [anon_sym_u8R_DQUOTE] = ACTIONS(3039), - [anon_sym_co_await] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3037), - [sym_this] = ACTIONS(3037), - }, - [STATE(334)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_include_token1] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token2] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [aux_sym_preproc_else_token1] = ACTIONS(3041), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym___cdecl] = ACTIONS(3041), - [anon_sym___clrcall] = ACTIONS(3041), - [anon_sym___stdcall] = ACTIONS(3041), - [anon_sym___fastcall] = ACTIONS(3041), - [anon_sym___thiscall] = ACTIONS(3041), - [anon_sym___vectorcall] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym___try] = ACTIONS(3041), - [anon_sym___leave] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3041), - [anon_sym_compl] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym___alignof__] = ACTIONS(3041), - [anon_sym___alignof] = ACTIONS(3041), - [anon_sym__alignof] = ACTIONS(3041), - [anon_sym_alignof] = ACTIONS(3041), - [anon_sym__Alignof] = ACTIONS(3041), - [anon_sym_offsetof] = ACTIONS(3041), - [anon_sym__Generic] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym___asm__] = ACTIONS(3041), - [anon_sym___asm] = ACTIONS(3041), - [sym_number_literal] = ACTIONS(3043), - [anon_sym_L_SQUOTE] = ACTIONS(3043), - [anon_sym_u_SQUOTE] = ACTIONS(3043), - [anon_sym_U_SQUOTE] = ACTIONS(3043), - [anon_sym_u8_SQUOTE] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_L_DQUOTE] = ACTIONS(3043), - [anon_sym_u_DQUOTE] = ACTIONS(3043), - [anon_sym_U_DQUOTE] = ACTIONS(3043), - [anon_sym_u8_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [anon_sym_NULL] = ACTIONS(3041), - [anon_sym_nullptr] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_delete] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3041), - [anon_sym_co_return] = ACTIONS(3041), - [anon_sym_co_yield] = ACTIONS(3041), - [anon_sym_R_DQUOTE] = ACTIONS(3043), - [anon_sym_LR_DQUOTE] = ACTIONS(3043), - [anon_sym_uR_DQUOTE] = ACTIONS(3043), - [anon_sym_UR_DQUOTE] = ACTIONS(3043), - [anon_sym_u8R_DQUOTE] = ACTIONS(3043), - [anon_sym_co_await] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_requires] = ACTIONS(3041), - [sym_this] = ACTIONS(3041), - }, - [STATE(335)] = { - [sym_identifier] = ACTIONS(3045), - [aux_sym_preproc_include_token1] = ACTIONS(3045), - [aux_sym_preproc_def_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token2] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3045), - [aux_sym_preproc_else_token1] = ACTIONS(3045), - [aux_sym_preproc_elif_token1] = ACTIONS(3045), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3045), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3045), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = ACTIONS(3045), - [anon_sym___attribute] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3047), - [anon_sym___declspec] = ACTIONS(3045), - [anon_sym___based] = ACTIONS(3045), - [anon_sym___cdecl] = ACTIONS(3045), - [anon_sym___clrcall] = ACTIONS(3045), - [anon_sym___stdcall] = ACTIONS(3045), - [anon_sym___fastcall] = ACTIONS(3045), - [anon_sym___thiscall] = ACTIONS(3045), - [anon_sym___vectorcall] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_signed] = ACTIONS(3045), - [anon_sym_unsigned] = ACTIONS(3045), - [anon_sym_long] = ACTIONS(3045), - [anon_sym_short] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_inline] = ACTIONS(3045), - [anon_sym___inline] = ACTIONS(3045), - [anon_sym___inline__] = ACTIONS(3045), - [anon_sym___forceinline] = ACTIONS(3045), - [anon_sym_thread_local] = ACTIONS(3045), - [anon_sym___thread] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_constexpr] = ACTIONS(3045), - [anon_sym_volatile] = ACTIONS(3045), - [anon_sym_restrict] = ACTIONS(3045), - [anon_sym___restrict__] = ACTIONS(3045), - [anon_sym__Atomic] = ACTIONS(3045), - [anon_sym__Noreturn] = ACTIONS(3045), - [anon_sym_noreturn] = ACTIONS(3045), - [anon_sym__Nonnull] = ACTIONS(3045), - [anon_sym_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym__Alignas] = ACTIONS(3045), - [sym_primitive_type] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_switch] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym___try] = ACTIONS(3045), - [anon_sym___leave] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_compl] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_sizeof] = ACTIONS(3045), - [anon_sym___alignof__] = ACTIONS(3045), - [anon_sym___alignof] = ACTIONS(3045), - [anon_sym__alignof] = ACTIONS(3045), - [anon_sym_alignof] = ACTIONS(3045), - [anon_sym__Alignof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3045), - [anon_sym__Generic] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym___asm__] = ACTIONS(3045), - [anon_sym___asm] = ACTIONS(3045), - [sym_number_literal] = ACTIONS(3047), - [anon_sym_L_SQUOTE] = ACTIONS(3047), - [anon_sym_u_SQUOTE] = ACTIONS(3047), - [anon_sym_U_SQUOTE] = ACTIONS(3047), - [anon_sym_u8_SQUOTE] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_L_DQUOTE] = ACTIONS(3047), - [anon_sym_u_DQUOTE] = ACTIONS(3047), - [anon_sym_U_DQUOTE] = ACTIONS(3047), - [anon_sym_u8_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [anon_sym_NULL] = ACTIONS(3045), - [anon_sym_nullptr] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_delete] = ACTIONS(3045), - [anon_sym_throw] = ACTIONS(3045), - [anon_sym_namespace] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - [anon_sym_concept] = ACTIONS(3045), - [anon_sym_co_return] = ACTIONS(3045), - [anon_sym_co_yield] = ACTIONS(3045), - [anon_sym_R_DQUOTE] = ACTIONS(3047), - [anon_sym_LR_DQUOTE] = ACTIONS(3047), - [anon_sym_uR_DQUOTE] = ACTIONS(3047), - [anon_sym_UR_DQUOTE] = ACTIONS(3047), - [anon_sym_u8R_DQUOTE] = ACTIONS(3047), - [anon_sym_co_await] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3045), - [anon_sym_requires] = ACTIONS(3045), - [sym_this] = ACTIONS(3045), - }, - [STATE(336)] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2667), - [aux_sym_preproc_include_token1] = ACTIONS(2667), - [aux_sym_preproc_def_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), - [sym_preproc_directive] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym___extension__] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2667), - [anon_sym_virtual] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym___attribute__] = ACTIONS(2667), - [anon_sym___attribute] = ACTIONS(2667), - [anon_sym_using] = ACTIONS(2667), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), - [anon_sym___declspec] = ACTIONS(2667), - [anon_sym___based] = ACTIONS(2667), - [anon_sym___cdecl] = ACTIONS(2667), - [anon_sym___clrcall] = ACTIONS(2667), - [anon_sym___stdcall] = ACTIONS(2667), - [anon_sym___fastcall] = ACTIONS(2667), - [anon_sym___thiscall] = ACTIONS(2667), - [anon_sym___vectorcall] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym___inline] = ACTIONS(2667), - [anon_sym___inline__] = ACTIONS(2667), - [anon_sym___forceinline] = ACTIONS(2667), - [anon_sym_thread_local] = ACTIONS(2667), - [anon_sym___thread] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_constexpr] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym___restrict__] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym__Noreturn] = ACTIONS(2667), - [anon_sym_noreturn] = ACTIONS(2667), - [anon_sym__Nonnull] = ACTIONS(2667), - [anon_sym_mutable] = ACTIONS(2667), - [anon_sym_constinit] = ACTIONS(2667), - [anon_sym_consteval] = ACTIONS(2667), - [anon_sym_alignas] = ACTIONS(2667), - [anon_sym__Alignas] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_switch] = ACTIONS(2667), - [anon_sym_case] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym___try] = ACTIONS(2667), - [anon_sym___leave] = ACTIONS(2667), - [anon_sym_not] = ACTIONS(2667), - [anon_sym_compl] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(2667), - [anon_sym___alignof__] = ACTIONS(2667), - [anon_sym___alignof] = ACTIONS(2667), - [anon_sym__alignof] = ACTIONS(2667), - [anon_sym_alignof] = ACTIONS(2667), - [anon_sym__Alignof] = ACTIONS(2667), - [anon_sym_offsetof] = ACTIONS(2667), - [anon_sym__Generic] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym___asm__] = ACTIONS(2667), - [anon_sym___asm] = ACTIONS(2667), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_L_SQUOTE] = ACTIONS(2669), - [anon_sym_u_SQUOTE] = ACTIONS(2669), - [anon_sym_U_SQUOTE] = ACTIONS(2669), - [anon_sym_u8_SQUOTE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_L_DQUOTE] = ACTIONS(2669), - [anon_sym_u_DQUOTE] = ACTIONS(2669), - [anon_sym_U_DQUOTE] = ACTIONS(2669), - [anon_sym_u8_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [anon_sym_NULL] = ACTIONS(2667), - [anon_sym_nullptr] = ACTIONS(2667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2667), - [anon_sym_decltype] = ACTIONS(2667), - [anon_sym_explicit] = ACTIONS(2667), - [anon_sym_typename] = ACTIONS(2667), - [anon_sym_export] = ACTIONS(2667), - [anon_sym_module] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2667), - [anon_sym_template] = ACTIONS(2667), - [anon_sym_operator] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_delete] = ACTIONS(2667), - [anon_sym_throw] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_static_assert] = ACTIONS(2667), - [anon_sym_concept] = ACTIONS(2667), - [anon_sym_co_return] = ACTIONS(2667), - [anon_sym_co_yield] = ACTIONS(2667), - [anon_sym_R_DQUOTE] = ACTIONS(2669), - [anon_sym_LR_DQUOTE] = ACTIONS(2669), - [anon_sym_uR_DQUOTE] = ACTIONS(2669), - [anon_sym_UR_DQUOTE] = ACTIONS(2669), - [anon_sym_u8R_DQUOTE] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_requires] = ACTIONS(2667), - [sym_this] = ACTIONS(2667), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(337)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4426), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7283), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7576), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(227)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11314), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -92889,1570 +86402,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3049), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(338)] = { - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2671), - [aux_sym_preproc_include_token1] = ACTIONS(2671), - [aux_sym_preproc_def_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), - [sym_preproc_directive] = ACTIONS(2671), - [anon_sym_LPAREN2] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym___extension__] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2671), - [anon_sym_virtual] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym___attribute__] = ACTIONS(2671), - [anon_sym___attribute] = ACTIONS(2671), - [anon_sym_using] = ACTIONS(2671), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), - [anon_sym___declspec] = ACTIONS(2671), - [anon_sym___based] = ACTIONS(2671), - [anon_sym___cdecl] = ACTIONS(2671), - [anon_sym___clrcall] = ACTIONS(2671), - [anon_sym___stdcall] = ACTIONS(2671), - [anon_sym___fastcall] = ACTIONS(2671), - [anon_sym___thiscall] = ACTIONS(2671), - [anon_sym___vectorcall] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym___inline] = ACTIONS(2671), - [anon_sym___inline__] = ACTIONS(2671), - [anon_sym___forceinline] = ACTIONS(2671), - [anon_sym_thread_local] = ACTIONS(2671), - [anon_sym___thread] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_constexpr] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym___restrict__] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym__Noreturn] = ACTIONS(2671), - [anon_sym_noreturn] = ACTIONS(2671), - [anon_sym__Nonnull] = ACTIONS(2671), - [anon_sym_mutable] = ACTIONS(2671), - [anon_sym_constinit] = ACTIONS(2671), - [anon_sym_consteval] = ACTIONS(2671), - [anon_sym_alignas] = ACTIONS(2671), - [anon_sym__Alignas] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_switch] = ACTIONS(2671), - [anon_sym_case] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_do] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym___try] = ACTIONS(2671), - [anon_sym___leave] = ACTIONS(2671), - [anon_sym_not] = ACTIONS(2671), - [anon_sym_compl] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_sizeof] = ACTIONS(2671), - [anon_sym___alignof__] = ACTIONS(2671), - [anon_sym___alignof] = ACTIONS(2671), - [anon_sym__alignof] = ACTIONS(2671), - [anon_sym_alignof] = ACTIONS(2671), - [anon_sym__Alignof] = ACTIONS(2671), - [anon_sym_offsetof] = ACTIONS(2671), - [anon_sym__Generic] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym___asm__] = ACTIONS(2671), - [anon_sym___asm] = ACTIONS(2671), - [sym_number_literal] = ACTIONS(2673), - [anon_sym_L_SQUOTE] = ACTIONS(2673), - [anon_sym_u_SQUOTE] = ACTIONS(2673), - [anon_sym_U_SQUOTE] = ACTIONS(2673), - [anon_sym_u8_SQUOTE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2673), - [anon_sym_L_DQUOTE] = ACTIONS(2673), - [anon_sym_u_DQUOTE] = ACTIONS(2673), - [anon_sym_U_DQUOTE] = ACTIONS(2673), - [anon_sym_u8_DQUOTE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [anon_sym_NULL] = ACTIONS(2671), - [anon_sym_nullptr] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2671), - [anon_sym_decltype] = ACTIONS(2671), - [anon_sym_explicit] = ACTIONS(2671), - [anon_sym_typename] = ACTIONS(2671), - [anon_sym_export] = ACTIONS(2671), - [anon_sym_module] = ACTIONS(2671), - [anon_sym_import] = ACTIONS(2671), - [anon_sym_template] = ACTIONS(2671), - [anon_sym_operator] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_delete] = ACTIONS(2671), - [anon_sym_throw] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_static_assert] = ACTIONS(2671), - [anon_sym_concept] = ACTIONS(2671), - [anon_sym_co_return] = ACTIONS(2671), - [anon_sym_co_yield] = ACTIONS(2671), - [anon_sym_R_DQUOTE] = ACTIONS(2673), - [anon_sym_LR_DQUOTE] = ACTIONS(2673), - [anon_sym_uR_DQUOTE] = ACTIONS(2673), - [anon_sym_UR_DQUOTE] = ACTIONS(2673), - [anon_sym_u8R_DQUOTE] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2671), - [anon_sym_requires] = ACTIONS(2671), - [sym_this] = ACTIONS(2671), - }, - [STATE(339)] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2675), - [aux_sym_preproc_include_token1] = ACTIONS(2675), - [aux_sym_preproc_def_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), - [sym_preproc_directive] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_PLUS] = ACTIONS(2675), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym___extension__] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2675), - [anon_sym_virtual] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym___attribute__] = ACTIONS(2675), - [anon_sym___attribute] = ACTIONS(2675), - [anon_sym_using] = ACTIONS(2675), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), - [anon_sym___declspec] = ACTIONS(2675), - [anon_sym___based] = ACTIONS(2675), - [anon_sym___cdecl] = ACTIONS(2675), - [anon_sym___clrcall] = ACTIONS(2675), - [anon_sym___stdcall] = ACTIONS(2675), - [anon_sym___fastcall] = ACTIONS(2675), - [anon_sym___thiscall] = ACTIONS(2675), - [anon_sym___vectorcall] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2675), - [anon_sym_unsigned] = ACTIONS(2675), - [anon_sym_long] = ACTIONS(2675), - [anon_sym_short] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_register] = ACTIONS(2675), - [anon_sym_inline] = ACTIONS(2675), - [anon_sym___inline] = ACTIONS(2675), - [anon_sym___inline__] = ACTIONS(2675), - [anon_sym___forceinline] = ACTIONS(2675), - [anon_sym_thread_local] = ACTIONS(2675), - [anon_sym___thread] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_constexpr] = ACTIONS(2675), - [anon_sym_volatile] = ACTIONS(2675), - [anon_sym_restrict] = ACTIONS(2675), - [anon_sym___restrict__] = ACTIONS(2675), - [anon_sym__Atomic] = ACTIONS(2675), - [anon_sym__Noreturn] = ACTIONS(2675), - [anon_sym_noreturn] = ACTIONS(2675), - [anon_sym__Nonnull] = ACTIONS(2675), - [anon_sym_mutable] = ACTIONS(2675), - [anon_sym_constinit] = ACTIONS(2675), - [anon_sym_consteval] = ACTIONS(2675), - [anon_sym_alignas] = ACTIONS(2675), - [anon_sym__Alignas] = ACTIONS(2675), - [sym_primitive_type] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2675), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_do] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_goto] = ACTIONS(2675), - [anon_sym___try] = ACTIONS(2675), - [anon_sym___leave] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_compl] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(2675), - [anon_sym___alignof__] = ACTIONS(2675), - [anon_sym___alignof] = ACTIONS(2675), - [anon_sym__alignof] = ACTIONS(2675), - [anon_sym_alignof] = ACTIONS(2675), - [anon_sym__Alignof] = ACTIONS(2675), - [anon_sym_offsetof] = ACTIONS(2675), - [anon_sym__Generic] = ACTIONS(2675), - [anon_sym_asm] = ACTIONS(2675), - [anon_sym___asm__] = ACTIONS(2675), - [anon_sym___asm] = ACTIONS(2675), - [sym_number_literal] = ACTIONS(2677), - [anon_sym_L_SQUOTE] = ACTIONS(2677), - [anon_sym_u_SQUOTE] = ACTIONS(2677), - [anon_sym_U_SQUOTE] = ACTIONS(2677), - [anon_sym_u8_SQUOTE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2677), - [anon_sym_L_DQUOTE] = ACTIONS(2677), - [anon_sym_u_DQUOTE] = ACTIONS(2677), - [anon_sym_U_DQUOTE] = ACTIONS(2677), - [anon_sym_u8_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_true] = ACTIONS(2675), - [sym_false] = ACTIONS(2675), - [anon_sym_NULL] = ACTIONS(2675), - [anon_sym_nullptr] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2675), - [anon_sym_decltype] = ACTIONS(2675), - [anon_sym_explicit] = ACTIONS(2675), - [anon_sym_typename] = ACTIONS(2675), - [anon_sym_export] = ACTIONS(2675), - [anon_sym_module] = ACTIONS(2675), - [anon_sym_import] = ACTIONS(2675), - [anon_sym_template] = ACTIONS(2675), - [anon_sym_operator] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_delete] = ACTIONS(2675), - [anon_sym_throw] = ACTIONS(2675), - [anon_sym_namespace] = ACTIONS(2675), - [anon_sym_static_assert] = ACTIONS(2675), - [anon_sym_concept] = ACTIONS(2675), - [anon_sym_co_return] = ACTIONS(2675), - [anon_sym_co_yield] = ACTIONS(2675), - [anon_sym_R_DQUOTE] = ACTIONS(2677), - [anon_sym_LR_DQUOTE] = ACTIONS(2677), - [anon_sym_uR_DQUOTE] = ACTIONS(2677), - [anon_sym_UR_DQUOTE] = ACTIONS(2677), - [anon_sym_u8R_DQUOTE] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2675), - [anon_sym_new] = ACTIONS(2675), - [anon_sym_requires] = ACTIONS(2675), - [sym_this] = ACTIONS(2675), - }, - [STATE(340)] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym___extension__] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_virtual] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym___attribute__] = ACTIONS(2679), - [anon_sym___attribute] = ACTIONS(2679), - [anon_sym_using] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym___based] = ACTIONS(2679), - [anon_sym___cdecl] = ACTIONS(2679), - [anon_sym___clrcall] = ACTIONS(2679), - [anon_sym___stdcall] = ACTIONS(2679), - [anon_sym___fastcall] = ACTIONS(2679), - [anon_sym___thiscall] = ACTIONS(2679), - [anon_sym___vectorcall] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym___inline] = ACTIONS(2679), - [anon_sym___inline__] = ACTIONS(2679), - [anon_sym___forceinline] = ACTIONS(2679), - [anon_sym_thread_local] = ACTIONS(2679), - [anon_sym___thread] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_restrict] = ACTIONS(2679), - [anon_sym___restrict__] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [anon_sym__Noreturn] = ACTIONS(2679), - [anon_sym_noreturn] = ACTIONS(2679), - [anon_sym__Nonnull] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [anon_sym_constinit] = ACTIONS(2679), - [anon_sym_consteval] = ACTIONS(2679), - [anon_sym_alignas] = ACTIONS(2679), - [anon_sym__Alignas] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_case] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2679), - [anon_sym___leave] = ACTIONS(2679), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_compl] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym___alignof__] = ACTIONS(2679), - [anon_sym___alignof] = ACTIONS(2679), - [anon_sym__alignof] = ACTIONS(2679), - [anon_sym_alignof] = ACTIONS(2679), - [anon_sym__Alignof] = ACTIONS(2679), - [anon_sym_offsetof] = ACTIONS(2679), - [anon_sym__Generic] = ACTIONS(2679), - [anon_sym_asm] = ACTIONS(2679), - [anon_sym___asm__] = ACTIONS(2679), - [anon_sym___asm] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_L_SQUOTE] = ACTIONS(2681), - [anon_sym_u_SQUOTE] = ACTIONS(2681), - [anon_sym_U_SQUOTE] = ACTIONS(2681), - [anon_sym_u8_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_L_DQUOTE] = ACTIONS(2681), - [anon_sym_u_DQUOTE] = ACTIONS(2681), - [anon_sym_U_DQUOTE] = ACTIONS(2681), - [anon_sym_u8_DQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_nullptr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2679), - [anon_sym_decltype] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_export] = ACTIONS(2679), - [anon_sym_module] = ACTIONS(2679), - [anon_sym_import] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_operator] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_throw] = ACTIONS(2679), - [anon_sym_namespace] = ACTIONS(2679), - [anon_sym_static_assert] = ACTIONS(2679), - [anon_sym_concept] = ACTIONS(2679), - [anon_sym_co_return] = ACTIONS(2679), - [anon_sym_co_yield] = ACTIONS(2679), - [anon_sym_R_DQUOTE] = ACTIONS(2681), - [anon_sym_LR_DQUOTE] = ACTIONS(2681), - [anon_sym_uR_DQUOTE] = ACTIONS(2681), - [anon_sym_UR_DQUOTE] = ACTIONS(2681), - [anon_sym_u8R_DQUOTE] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_requires] = ACTIONS(2679), - [sym_this] = ACTIONS(2679), - }, - [STATE(341)] = { - [sym_identifier] = ACTIONS(3051), - [aux_sym_preproc_include_token1] = ACTIONS(3051), - [aux_sym_preproc_def_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token2] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), - [aux_sym_preproc_else_token1] = ACTIONS(3051), - [aux_sym_preproc_elif_token1] = ACTIONS(3051), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3051), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3051), - [sym_preproc_directive] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3051), - [anon_sym_typedef] = ACTIONS(3051), - [anon_sym_virtual] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3051), - [anon_sym___attribute__] = ACTIONS(3051), - [anon_sym___attribute] = ACTIONS(3051), - [anon_sym_using] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), - [anon_sym___declspec] = ACTIONS(3051), - [anon_sym___based] = ACTIONS(3051), - [anon_sym___cdecl] = ACTIONS(3051), - [anon_sym___clrcall] = ACTIONS(3051), - [anon_sym___stdcall] = ACTIONS(3051), - [anon_sym___fastcall] = ACTIONS(3051), - [anon_sym___thiscall] = ACTIONS(3051), - [anon_sym___vectorcall] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3051), - [anon_sym_unsigned] = ACTIONS(3051), - [anon_sym_long] = ACTIONS(3051), - [anon_sym_short] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_static] = ACTIONS(3051), - [anon_sym_register] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym___inline] = ACTIONS(3051), - [anon_sym___inline__] = ACTIONS(3051), - [anon_sym___forceinline] = ACTIONS(3051), - [anon_sym_thread_local] = ACTIONS(3051), - [anon_sym___thread] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_constexpr] = ACTIONS(3051), - [anon_sym_volatile] = ACTIONS(3051), - [anon_sym_restrict] = ACTIONS(3051), - [anon_sym___restrict__] = ACTIONS(3051), - [anon_sym__Atomic] = ACTIONS(3051), - [anon_sym__Noreturn] = ACTIONS(3051), - [anon_sym_noreturn] = ACTIONS(3051), - [anon_sym__Nonnull] = ACTIONS(3051), - [anon_sym_mutable] = ACTIONS(3051), - [anon_sym_constinit] = ACTIONS(3051), - [anon_sym_consteval] = ACTIONS(3051), - [anon_sym_alignas] = ACTIONS(3051), - [anon_sym__Alignas] = ACTIONS(3051), - [sym_primitive_type] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_class] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_switch] = ACTIONS(3051), - [anon_sym_case] = ACTIONS(3051), - [anon_sym_default] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_do] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym___try] = ACTIONS(3051), - [anon_sym___leave] = ACTIONS(3051), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3051), - [anon_sym___alignof__] = ACTIONS(3051), - [anon_sym___alignof] = ACTIONS(3051), - [anon_sym__alignof] = ACTIONS(3051), - [anon_sym_alignof] = ACTIONS(3051), - [anon_sym__Alignof] = ACTIONS(3051), - [anon_sym_offsetof] = ACTIONS(3051), - [anon_sym__Generic] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym___asm__] = ACTIONS(3051), - [anon_sym___asm] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(3053), - [anon_sym_L_SQUOTE] = ACTIONS(3053), - [anon_sym_u_SQUOTE] = ACTIONS(3053), - [anon_sym_U_SQUOTE] = ACTIONS(3053), - [anon_sym_u8_SQUOTE] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3053), - [anon_sym_L_DQUOTE] = ACTIONS(3053), - [anon_sym_u_DQUOTE] = ACTIONS(3053), - [anon_sym_U_DQUOTE] = ACTIONS(3053), - [anon_sym_u8_DQUOTE] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(3053), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [anon_sym_NULL] = ACTIONS(3051), - [anon_sym_nullptr] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3051), - [anon_sym_decltype] = ACTIONS(3051), - [anon_sym_explicit] = ACTIONS(3051), - [anon_sym_typename] = ACTIONS(3051), - [anon_sym_template] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_delete] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_namespace] = ACTIONS(3051), - [anon_sym_static_assert] = ACTIONS(3051), - [anon_sym_concept] = ACTIONS(3051), - [anon_sym_co_return] = ACTIONS(3051), - [anon_sym_co_yield] = ACTIONS(3051), - [anon_sym_R_DQUOTE] = ACTIONS(3053), - [anon_sym_LR_DQUOTE] = ACTIONS(3053), - [anon_sym_uR_DQUOTE] = ACTIONS(3053), - [anon_sym_UR_DQUOTE] = ACTIONS(3053), - [anon_sym_u8R_DQUOTE] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3051), - [anon_sym_new] = ACTIONS(3051), - [anon_sym_requires] = ACTIONS(3051), - [sym_this] = ACTIONS(3051), - }, - [STATE(342)] = { - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_export] = ACTIONS(2687), - [anon_sym_module] = ACTIONS(2687), - [anon_sym_import] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [STATE(343)] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_export] = ACTIONS(2691), - [anon_sym_module] = ACTIONS(2691), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(344)] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_export] = ACTIONS(2691), - [anon_sym_module] = ACTIONS(2691), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(345)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_include_token1] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token2] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [aux_sym_preproc_else_token1] = ACTIONS(3055), - [aux_sym_preproc_elif_token1] = ACTIONS(3055), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym___cdecl] = ACTIONS(3055), - [anon_sym___clrcall] = ACTIONS(3055), - [anon_sym___stdcall] = ACTIONS(3055), - [anon_sym___fastcall] = ACTIONS(3055), - [anon_sym___thiscall] = ACTIONS(3055), - [anon_sym___vectorcall] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3055), - [anon_sym_default] = ACTIONS(3055), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_do] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym___try] = ACTIONS(3055), - [anon_sym___leave] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(3055), - [anon_sym_compl] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3055), - [anon_sym___alignof__] = ACTIONS(3055), - [anon_sym___alignof] = ACTIONS(3055), - [anon_sym__alignof] = ACTIONS(3055), - [anon_sym_alignof] = ACTIONS(3055), - [anon_sym__Alignof] = ACTIONS(3055), - [anon_sym_offsetof] = ACTIONS(3055), - [anon_sym__Generic] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym___asm__] = ACTIONS(3055), - [anon_sym___asm] = ACTIONS(3055), - [sym_number_literal] = ACTIONS(3057), - [anon_sym_L_SQUOTE] = ACTIONS(3057), - [anon_sym_u_SQUOTE] = ACTIONS(3057), - [anon_sym_U_SQUOTE] = ACTIONS(3057), - [anon_sym_u8_SQUOTE] = ACTIONS(3057), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_L_DQUOTE] = ACTIONS(3057), - [anon_sym_u_DQUOTE] = ACTIONS(3057), - [anon_sym_U_DQUOTE] = ACTIONS(3057), - [anon_sym_u8_DQUOTE] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [anon_sym_NULL] = ACTIONS(3055), - [anon_sym_nullptr] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_delete] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_namespace] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), - [anon_sym_concept] = ACTIONS(3055), - [anon_sym_co_return] = ACTIONS(3055), - [anon_sym_co_yield] = ACTIONS(3055), - [anon_sym_R_DQUOTE] = ACTIONS(3057), - [anon_sym_LR_DQUOTE] = ACTIONS(3057), - [anon_sym_uR_DQUOTE] = ACTIONS(3057), - [anon_sym_UR_DQUOTE] = ACTIONS(3057), - [anon_sym_u8R_DQUOTE] = ACTIONS(3057), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_requires] = ACTIONS(3055), - [sym_this] = ACTIONS(3055), - }, - [STATE(346)] = { - [sym_catch_clause] = STATE(235), - [aux_sym_constructor_try_statement_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_include_token1] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym___cdecl] = ACTIONS(2594), - [anon_sym___clrcall] = ACTIONS(2594), - [anon_sym___stdcall] = ACTIONS(2594), - [anon_sym___fastcall] = ACTIONS(2594), - [anon_sym___thiscall] = ACTIONS(2594), - [anon_sym___vectorcall] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(2594), - [anon_sym_compl] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [anon_sym___alignof__] = ACTIONS(2594), - [anon_sym___alignof] = ACTIONS(2594), - [anon_sym__alignof] = ACTIONS(2594), - [anon_sym_alignof] = ACTIONS(2594), - [anon_sym__Alignof] = ACTIONS(2594), - [anon_sym_offsetof] = ACTIONS(2594), - [anon_sym__Generic] = ACTIONS(2594), - [anon_sym_asm] = ACTIONS(2594), - [anon_sym___asm__] = ACTIONS(2594), - [anon_sym___asm] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_L_SQUOTE] = ACTIONS(2596), - [anon_sym_u_SQUOTE] = ACTIONS(2596), - [anon_sym_U_SQUOTE] = ACTIONS(2596), - [anon_sym_u8_SQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_L_DQUOTE] = ACTIONS(2596), - [anon_sym_u_DQUOTE] = ACTIONS(2596), - [anon_sym_U_DQUOTE] = ACTIONS(2596), - [anon_sym_u8_DQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [anon_sym_NULL] = ACTIONS(2594), - [anon_sym_nullptr] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_concept] = ACTIONS(2594), - [anon_sym_co_return] = ACTIONS(2594), - [anon_sym_co_yield] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(2598), - [anon_sym_R_DQUOTE] = ACTIONS(2596), - [anon_sym_LR_DQUOTE] = ACTIONS(2596), - [anon_sym_uR_DQUOTE] = ACTIONS(2596), - [anon_sym_UR_DQUOTE] = ACTIONS(2596), - [anon_sym_u8R_DQUOTE] = ACTIONS(2596), - [anon_sym_co_await] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_requires] = ACTIONS(2594), - [sym_this] = ACTIONS(2594), - }, - [STATE(347)] = { - [sym_identifier] = ACTIONS(3059), - [aux_sym_preproc_include_token1] = ACTIONS(3059), - [aux_sym_preproc_def_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token2] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), - [aux_sym_preproc_else_token1] = ACTIONS(3059), - [aux_sym_preproc_elif_token1] = ACTIONS(3059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3059), - [sym_preproc_directive] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym___extension__] = ACTIONS(3059), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(3059), - [anon_sym_extern] = ACTIONS(3059), - [anon_sym___attribute__] = ACTIONS(3059), - [anon_sym___attribute] = ACTIONS(3059), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3061), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), - [anon_sym___declspec] = ACTIONS(3059), - [anon_sym___based] = ACTIONS(3059), - [anon_sym___cdecl] = ACTIONS(3059), - [anon_sym___clrcall] = ACTIONS(3059), - [anon_sym___stdcall] = ACTIONS(3059), - [anon_sym___fastcall] = ACTIONS(3059), - [anon_sym___thiscall] = ACTIONS(3059), - [anon_sym___vectorcall] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_signed] = ACTIONS(3059), - [anon_sym_unsigned] = ACTIONS(3059), - [anon_sym_long] = ACTIONS(3059), - [anon_sym_short] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_register] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym___inline] = ACTIONS(3059), - [anon_sym___inline__] = ACTIONS(3059), - [anon_sym___forceinline] = ACTIONS(3059), - [anon_sym_thread_local] = ACTIONS(3059), - [anon_sym___thread] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_constexpr] = ACTIONS(3059), - [anon_sym_volatile] = ACTIONS(3059), - [anon_sym_restrict] = ACTIONS(3059), - [anon_sym___restrict__] = ACTIONS(3059), - [anon_sym__Atomic] = ACTIONS(3059), - [anon_sym__Noreturn] = ACTIONS(3059), - [anon_sym_noreturn] = ACTIONS(3059), - [anon_sym__Nonnull] = ACTIONS(3059), - [anon_sym_mutable] = ACTIONS(3059), - [anon_sym_constinit] = ACTIONS(3059), - [anon_sym_consteval] = ACTIONS(3059), - [anon_sym_alignas] = ACTIONS(3059), - [anon_sym__Alignas] = ACTIONS(3059), - [sym_primitive_type] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_switch] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_do] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym___try] = ACTIONS(3059), - [anon_sym___leave] = ACTIONS(3059), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_compl] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_sizeof] = ACTIONS(3059), - [anon_sym___alignof__] = ACTIONS(3059), - [anon_sym___alignof] = ACTIONS(3059), - [anon_sym__alignof] = ACTIONS(3059), - [anon_sym_alignof] = ACTIONS(3059), - [anon_sym__Alignof] = ACTIONS(3059), - [anon_sym_offsetof] = ACTIONS(3059), - [anon_sym__Generic] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym___asm__] = ACTIONS(3059), - [anon_sym___asm] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_L_SQUOTE] = ACTIONS(3061), - [anon_sym_u_SQUOTE] = ACTIONS(3061), - [anon_sym_U_SQUOTE] = ACTIONS(3061), - [anon_sym_u8_SQUOTE] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(3061), - [anon_sym_L_DQUOTE] = ACTIONS(3061), - [anon_sym_u_DQUOTE] = ACTIONS(3061), - [anon_sym_U_DQUOTE] = ACTIONS(3061), - [anon_sym_u8_DQUOTE] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [anon_sym_NULL] = ACTIONS(3059), - [anon_sym_nullptr] = ACTIONS(3059), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3059), - [anon_sym_decltype] = ACTIONS(3059), - [anon_sym_explicit] = ACTIONS(3059), - [anon_sym_typename] = ACTIONS(3059), - [anon_sym_template] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_delete] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_namespace] = ACTIONS(3059), - [anon_sym_static_assert] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3059), - [anon_sym_co_return] = ACTIONS(3059), - [anon_sym_co_yield] = ACTIONS(3059), - [anon_sym_R_DQUOTE] = ACTIONS(3061), - [anon_sym_LR_DQUOTE] = ACTIONS(3061), - [anon_sym_uR_DQUOTE] = ACTIONS(3061), - [anon_sym_UR_DQUOTE] = ACTIONS(3061), - [anon_sym_u8R_DQUOTE] = ACTIONS(3061), - [anon_sym_co_await] = ACTIONS(3059), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_requires] = ACTIONS(3059), - [sym_this] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(348)] = { - [sym_preproc_def] = STATE(353), - [sym_preproc_function_def] = STATE(353), - [sym_preproc_call] = STATE(353), - [sym_preproc_if_in_field_declaration_list] = STATE(353), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(353), - [sym_preproc_else_in_field_declaration_list] = STATE(8913), - [sym_preproc_elif_in_field_declaration_list] = STATE(8913), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8913), - [sym_type_definition] = STATE(353), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(353), - [sym_field_declaration] = STATE(353), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(353), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(353), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(353), - [sym_operator_cast_declaration] = STATE(353), - [sym_constructor_or_destructor_definition] = STATE(353), - [sym_constructor_or_destructor_declaration] = STATE(353), - [sym_friend_declaration] = STATE(353), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(353), - [sym_alias_declaration] = STATE(353), - [sym_static_assert_declaration] = STATE(353), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(353), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(228)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11305), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -94463,556 +86555,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(349)] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [aux_sym_preproc_else_token1] = ACTIONS(3067), - [aux_sym_preproc_elif_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(350)] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [aux_sym_preproc_else_token1] = ACTIONS(3071), - [aux_sym_preproc_elif_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), + [STATE(229)] = { + [sym_compound_statement] = STATE(10595), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4645), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10595), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10605), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10607), + [sym__unary_right_fold] = STATE(10613), + [sym__binary_fold] = STATE(10617), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10619), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(351)] = { - [sym_identifier] = ACTIONS(3075), - [aux_sym_preproc_include_token1] = ACTIONS(3075), - [aux_sym_preproc_def_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token2] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), - [aux_sym_preproc_else_token1] = ACTIONS(3075), - [aux_sym_preproc_elif_token1] = ACTIONS(3075), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3075), - [sym_preproc_directive] = ACTIONS(3075), - [anon_sym_LPAREN2] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym___extension__] = ACTIONS(3075), - [anon_sym_typedef] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_extern] = ACTIONS(3075), - [anon_sym___attribute__] = ACTIONS(3075), - [anon_sym___attribute] = ACTIONS(3075), - [anon_sym_using] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), - [anon_sym___declspec] = ACTIONS(3075), - [anon_sym___based] = ACTIONS(3075), - [anon_sym___cdecl] = ACTIONS(3075), - [anon_sym___clrcall] = ACTIONS(3075), - [anon_sym___stdcall] = ACTIONS(3075), - [anon_sym___fastcall] = ACTIONS(3075), - [anon_sym___thiscall] = ACTIONS(3075), - [anon_sym___vectorcall] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym___inline] = ACTIONS(3075), - [anon_sym___inline__] = ACTIONS(3075), - [anon_sym___forceinline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym___thread] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym___restrict__] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym__Noreturn] = ACTIONS(3075), - [anon_sym_noreturn] = ACTIONS(3075), - [anon_sym__Nonnull] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_alignas] = ACTIONS(3075), - [anon_sym__Alignas] = ACTIONS(3075), - [sym_primitive_type] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_switch] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_default] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_goto] = ACTIONS(3075), - [anon_sym___try] = ACTIONS(3075), - [anon_sym___leave] = ACTIONS(3075), - [anon_sym_not] = ACTIONS(3075), - [anon_sym_compl] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_sizeof] = ACTIONS(3075), - [anon_sym___alignof__] = ACTIONS(3075), - [anon_sym___alignof] = ACTIONS(3075), - [anon_sym__alignof] = ACTIONS(3075), - [anon_sym_alignof] = ACTIONS(3075), - [anon_sym__Alignof] = ACTIONS(3075), - [anon_sym_offsetof] = ACTIONS(3075), - [anon_sym__Generic] = ACTIONS(3075), - [anon_sym_asm] = ACTIONS(3075), - [anon_sym___asm__] = ACTIONS(3075), - [anon_sym___asm] = ACTIONS(3075), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_L_SQUOTE] = ACTIONS(3077), - [anon_sym_u_SQUOTE] = ACTIONS(3077), - [anon_sym_U_SQUOTE] = ACTIONS(3077), - [anon_sym_u8_SQUOTE] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(3077), - [anon_sym_L_DQUOTE] = ACTIONS(3077), - [anon_sym_u_DQUOTE] = ACTIONS(3077), - [anon_sym_U_DQUOTE] = ACTIONS(3077), - [anon_sym_u8_DQUOTE] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [anon_sym_NULL] = ACTIONS(3075), - [anon_sym_nullptr] = ACTIONS(3075), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_explicit] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_static_assert] = ACTIONS(3075), - [anon_sym_concept] = ACTIONS(3075), - [anon_sym_co_return] = ACTIONS(3075), - [anon_sym_co_yield] = ACTIONS(3075), - [anon_sym_R_DQUOTE] = ACTIONS(3077), - [anon_sym_LR_DQUOTE] = ACTIONS(3077), - [anon_sym_uR_DQUOTE] = ACTIONS(3077), - [anon_sym_UR_DQUOTE] = ACTIONS(3077), - [anon_sym_u8R_DQUOTE] = ACTIONS(3077), - [anon_sym_co_await] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_requires] = ACTIONS(3075), - [sym_this] = ACTIONS(3075), + [STATE(230)] = { + [sym_expression] = STATE(5128), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_initializer_list] = STATE(5529), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_DASH_GT_STAR] = ACTIONS(2026), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(352)] = { - [sym_preproc_def] = STATE(354), - [sym_preproc_function_def] = STATE(354), - [sym_preproc_call] = STATE(354), - [sym_preproc_if_in_field_declaration_list] = STATE(354), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(354), - [sym_preproc_else_in_field_declaration_list] = STATE(9079), - [sym_preproc_elif_in_field_declaration_list] = STATE(9079), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(9079), - [sym_type_definition] = STATE(354), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(354), - [sym_field_declaration] = STATE(354), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(354), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(354), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(354), - [sym_operator_cast_declaration] = STATE(354), - [sym_constructor_or_destructor_definition] = STATE(354), - [sym_constructor_or_destructor_declaration] = STATE(354), - [sym_friend_declaration] = STATE(354), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(354), - [sym_alias_declaration] = STATE(354), - [sym_static_assert_declaration] = STATE(354), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(354), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(231)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11494), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -95023,136 +87014,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(353)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8591), - [sym_preproc_elif_in_field_declaration_list] = STATE(8591), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8591), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3083), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(232)] = { + [sym_compound_statement] = STATE(10595), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4645), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10595), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10818), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10607), + [sym__unary_right_fold] = STATE(10613), + [sym__binary_fold] = STATE(10617), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(10619), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -95163,136 +87167,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(354)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8980), - [sym_preproc_elif_in_field_declaration_list] = STATE(8980), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8980), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3085), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(233)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11321), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -95303,276 +87320,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(355)] = { - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_export] = ACTIONS(2735), - [anon_sym_module] = ACTIONS(2735), - [anon_sym_import] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(356)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8583), - [sym_preproc_elif_in_field_declaration_list] = STATE(8583), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8583), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(234)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11012), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -95583,136 +87473,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(357)] = { - [sym_preproc_def] = STATE(362), - [sym_preproc_function_def] = STATE(362), - [sym_preproc_call] = STATE(362), - [sym_preproc_if_in_field_declaration_list] = STATE(362), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(362), - [sym_preproc_else_in_field_declaration_list] = STATE(8589), - [sym_preproc_elif_in_field_declaration_list] = STATE(8589), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8589), - [sym_type_definition] = STATE(362), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(362), - [sym_field_declaration] = STATE(362), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(362), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(362), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(362), - [sym_operator_cast_declaration] = STATE(362), - [sym_constructor_or_destructor_definition] = STATE(362), - [sym_constructor_or_destructor_declaration] = STATE(362), - [sym_friend_declaration] = STATE(362), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(362), - [sym_alias_declaration] = STATE(362), - [sym_static_assert_declaration] = STATE(362), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(362), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(235)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11081), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -95723,276 +87626,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(358)] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_export] = ACTIONS(2747), - [anon_sym_module] = ACTIONS(2747), - [anon_sym_import] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(359)] = { - [sym_preproc_def] = STATE(364), - [sym_preproc_function_def] = STATE(364), - [sym_preproc_call] = STATE(364), - [sym_preproc_if_in_field_declaration_list] = STATE(364), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(364), - [sym_preproc_else_in_field_declaration_list] = STATE(8814), - [sym_preproc_elif_in_field_declaration_list] = STATE(8814), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8814), - [sym_type_definition] = STATE(364), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(364), - [sym_field_declaration] = STATE(364), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(364), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(364), - [sym__constructor_specifiers] = STATE(1855), - [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(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(364), - [sym_alias_declaration] = STATE(364), - [sym_static_assert_declaration] = STATE(364), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(236)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11378), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -96003,416 +87779,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(360)] = { - [sym_identifier] = ACTIONS(3097), - [aux_sym_preproc_include_token1] = ACTIONS(3097), - [aux_sym_preproc_def_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token2] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), - [aux_sym_preproc_else_token1] = ACTIONS(3097), - [aux_sym_preproc_elif_token1] = ACTIONS(3097), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3097), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3097), - [sym_preproc_directive] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym___extension__] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3097), - [anon_sym_virtual] = ACTIONS(3097), - [anon_sym_extern] = ACTIONS(3097), - [anon_sym___attribute__] = ACTIONS(3097), - [anon_sym___attribute] = ACTIONS(3097), - [anon_sym_using] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), - [anon_sym___declspec] = ACTIONS(3097), - [anon_sym___based] = ACTIONS(3097), - [anon_sym___cdecl] = ACTIONS(3097), - [anon_sym___clrcall] = ACTIONS(3097), - [anon_sym___stdcall] = ACTIONS(3097), - [anon_sym___fastcall] = ACTIONS(3097), - [anon_sym___thiscall] = ACTIONS(3097), - [anon_sym___vectorcall] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_signed] = ACTIONS(3097), - [anon_sym_unsigned] = ACTIONS(3097), - [anon_sym_long] = ACTIONS(3097), - [anon_sym_short] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3097), - [anon_sym_register] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym___inline] = ACTIONS(3097), - [anon_sym___inline__] = ACTIONS(3097), - [anon_sym___forceinline] = ACTIONS(3097), - [anon_sym_thread_local] = ACTIONS(3097), - [anon_sym___thread] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_constexpr] = ACTIONS(3097), - [anon_sym_volatile] = ACTIONS(3097), - [anon_sym_restrict] = ACTIONS(3097), - [anon_sym___restrict__] = ACTIONS(3097), - [anon_sym__Atomic] = ACTIONS(3097), - [anon_sym__Noreturn] = ACTIONS(3097), - [anon_sym_noreturn] = ACTIONS(3097), - [anon_sym__Nonnull] = ACTIONS(3097), - [anon_sym_mutable] = ACTIONS(3097), - [anon_sym_constinit] = ACTIONS(3097), - [anon_sym_consteval] = ACTIONS(3097), - [anon_sym_alignas] = ACTIONS(3097), - [anon_sym__Alignas] = ACTIONS(3097), - [sym_primitive_type] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_switch] = ACTIONS(3097), - [anon_sym_case] = ACTIONS(3097), - [anon_sym_default] = ACTIONS(3097), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym___try] = ACTIONS(3097), - [anon_sym___leave] = ACTIONS(3097), - [anon_sym_not] = ACTIONS(3097), - [anon_sym_compl] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_sizeof] = ACTIONS(3097), - [anon_sym___alignof__] = ACTIONS(3097), - [anon_sym___alignof] = ACTIONS(3097), - [anon_sym__alignof] = ACTIONS(3097), - [anon_sym_alignof] = ACTIONS(3097), - [anon_sym__Alignof] = ACTIONS(3097), - [anon_sym_offsetof] = ACTIONS(3097), - [anon_sym__Generic] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym___asm__] = ACTIONS(3097), - [anon_sym___asm] = ACTIONS(3097), - [sym_number_literal] = ACTIONS(3099), - [anon_sym_L_SQUOTE] = ACTIONS(3099), - [anon_sym_u_SQUOTE] = ACTIONS(3099), - [anon_sym_U_SQUOTE] = ACTIONS(3099), - [anon_sym_u8_SQUOTE] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_L_DQUOTE] = ACTIONS(3099), - [anon_sym_u_DQUOTE] = ACTIONS(3099), - [anon_sym_U_DQUOTE] = ACTIONS(3099), - [anon_sym_u8_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [anon_sym_NULL] = ACTIONS(3097), - [anon_sym_nullptr] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3097), - [anon_sym_decltype] = ACTIONS(3097), - [anon_sym_explicit] = ACTIONS(3097), - [anon_sym_typename] = ACTIONS(3097), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_delete] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_namespace] = ACTIONS(3097), - [anon_sym_static_assert] = ACTIONS(3097), - [anon_sym_concept] = ACTIONS(3097), - [anon_sym_co_return] = ACTIONS(3097), - [anon_sym_co_yield] = ACTIONS(3097), - [anon_sym_R_DQUOTE] = ACTIONS(3099), - [anon_sym_LR_DQUOTE] = ACTIONS(3099), - [anon_sym_uR_DQUOTE] = ACTIONS(3099), - [anon_sym_UR_DQUOTE] = ACTIONS(3099), - [anon_sym_u8R_DQUOTE] = ACTIONS(3099), - [anon_sym_co_await] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_requires] = ACTIONS(3097), - [sym_this] = ACTIONS(3097), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(361)] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [aux_sym_preproc_else_token1] = ACTIONS(3101), - [aux_sym_preproc_elif_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym___attribute] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym__Nonnull] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym__Alignas] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [anon_sym___asm] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - }, - [STATE(362)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8829), - [sym_preproc_elif_in_field_declaration_list] = STATE(8829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8829), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(237)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11355), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -96423,100 +87932,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(363)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4464), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7230), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7375), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(238)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10662), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96529,170 +88085,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3107), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(364)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_preproc_else_in_field_declaration_list] = STATE(8965), - [sym_preproc_elif_in_field_declaration_list] = STATE(8965), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(8965), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2791), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2799), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2817), - [anon_sym_typedef] = ACTIONS(2819), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(239)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10567), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -96703,2060 +88238,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(2847), - }, - [STATE(365)] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym___extension__] = ACTIONS(2777), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [anon_sym___alignof__] = ACTIONS(2777), - [anon_sym___alignof] = ACTIONS(2777), - [anon_sym__alignof] = ACTIONS(2777), - [anon_sym_alignof] = ACTIONS(2777), - [anon_sym__Alignof] = ACTIONS(2777), - [anon_sym_offsetof] = ACTIONS(2777), - [anon_sym__Generic] = ACTIONS(2777), - [anon_sym_asm] = ACTIONS(2777), - [anon_sym___asm__] = ACTIONS(2777), - [anon_sym___asm] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [anon_sym_NULL] = ACTIONS(2777), - [anon_sym_nullptr] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_export] = ACTIONS(2777), - [anon_sym_module] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - }, - [STATE(366)] = { - [sym_identifier] = ACTIONS(3111), - [aux_sym_preproc_include_token1] = ACTIONS(3111), - [aux_sym_preproc_def_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token2] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), - [aux_sym_preproc_else_token1] = ACTIONS(3111), - [aux_sym_preproc_elif_token1] = ACTIONS(3111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3111), - [sym_preproc_directive] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym___attribute] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym___based] = ACTIONS(3111), - [anon_sym___cdecl] = ACTIONS(3111), - [anon_sym___clrcall] = ACTIONS(3111), - [anon_sym___stdcall] = ACTIONS(3111), - [anon_sym___fastcall] = ACTIONS(3111), - [anon_sym___thiscall] = ACTIONS(3111), - [anon_sym___vectorcall] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym___inline] = ACTIONS(3111), - [anon_sym___inline__] = ACTIONS(3111), - [anon_sym___forceinline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym___thread] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym___restrict__] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym__Noreturn] = ACTIONS(3111), - [anon_sym_noreturn] = ACTIONS(3111), - [anon_sym__Nonnull] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym__Alignas] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3111), - [anon_sym_switch] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_default] = ACTIONS(3111), - [anon_sym_while] = ACTIONS(3111), - [anon_sym_do] = ACTIONS(3111), - [anon_sym_for] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3111), - [anon_sym_break] = ACTIONS(3111), - [anon_sym_continue] = ACTIONS(3111), - [anon_sym_goto] = ACTIONS(3111), - [anon_sym___try] = ACTIONS(3111), - [anon_sym___leave] = ACTIONS(3111), - [anon_sym_not] = ACTIONS(3111), - [anon_sym_compl] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3111), - [anon_sym___alignof__] = ACTIONS(3111), - [anon_sym___alignof] = ACTIONS(3111), - [anon_sym__alignof] = ACTIONS(3111), - [anon_sym_alignof] = ACTIONS(3111), - [anon_sym__Alignof] = ACTIONS(3111), - [anon_sym_offsetof] = ACTIONS(3111), - [anon_sym__Generic] = ACTIONS(3111), - [anon_sym_asm] = ACTIONS(3111), - [anon_sym___asm__] = ACTIONS(3111), - [anon_sym___asm] = ACTIONS(3111), - [sym_number_literal] = ACTIONS(3113), - [anon_sym_L_SQUOTE] = ACTIONS(3113), - [anon_sym_u_SQUOTE] = ACTIONS(3113), - [anon_sym_U_SQUOTE] = ACTIONS(3113), - [anon_sym_u8_SQUOTE] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(3113), - [anon_sym_L_DQUOTE] = ACTIONS(3113), - [anon_sym_u_DQUOTE] = ACTIONS(3113), - [anon_sym_U_DQUOTE] = ACTIONS(3113), - [anon_sym_u8_DQUOTE] = ACTIONS(3113), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym_true] = ACTIONS(3111), - [sym_false] = ACTIONS(3111), - [anon_sym_NULL] = ACTIONS(3111), - [anon_sym_nullptr] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_delete] = ACTIONS(3111), - [anon_sym_throw] = ACTIONS(3111), - [anon_sym_namespace] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3111), - [anon_sym_co_return] = ACTIONS(3111), - [anon_sym_co_yield] = ACTIONS(3111), - [anon_sym_R_DQUOTE] = ACTIONS(3113), - [anon_sym_LR_DQUOTE] = ACTIONS(3113), - [anon_sym_uR_DQUOTE] = ACTIONS(3113), - [anon_sym_UR_DQUOTE] = ACTIONS(3113), - [anon_sym_u8R_DQUOTE] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3111), - [anon_sym_new] = ACTIONS(3111), - [anon_sym_requires] = ACTIONS(3111), - [sym_this] = ACTIONS(3111), - }, - [STATE(367)] = { - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_export] = ACTIONS(2699), - [anon_sym_module] = ACTIONS(2699), - [anon_sym_import] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - }, - [STATE(368)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_include_token1] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token2] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [aux_sym_preproc_else_token1] = ACTIONS(3115), - [aux_sym_preproc_elif_token1] = ACTIONS(3115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym___cdecl] = ACTIONS(3115), - [anon_sym___clrcall] = ACTIONS(3115), - [anon_sym___stdcall] = ACTIONS(3115), - [anon_sym___fastcall] = ACTIONS(3115), - [anon_sym___thiscall] = ACTIONS(3115), - [anon_sym___vectorcall] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym___try] = ACTIONS(3115), - [anon_sym___leave] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3115), - [anon_sym_compl] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym___alignof__] = ACTIONS(3115), - [anon_sym___alignof] = ACTIONS(3115), - [anon_sym__alignof] = ACTIONS(3115), - [anon_sym_alignof] = ACTIONS(3115), - [anon_sym__Alignof] = ACTIONS(3115), - [anon_sym_offsetof] = ACTIONS(3115), - [anon_sym__Generic] = ACTIONS(3115), - [anon_sym_asm] = ACTIONS(3115), - [anon_sym___asm__] = ACTIONS(3115), - [anon_sym___asm] = ACTIONS(3115), - [sym_number_literal] = ACTIONS(3117), - [anon_sym_L_SQUOTE] = ACTIONS(3117), - [anon_sym_u_SQUOTE] = ACTIONS(3117), - [anon_sym_U_SQUOTE] = ACTIONS(3117), - [anon_sym_u8_SQUOTE] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(3117), - [anon_sym_L_DQUOTE] = ACTIONS(3117), - [anon_sym_u_DQUOTE] = ACTIONS(3117), - [anon_sym_U_DQUOTE] = ACTIONS(3117), - [anon_sym_u8_DQUOTE] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_true] = ACTIONS(3115), - [sym_false] = ACTIONS(3115), - [anon_sym_NULL] = ACTIONS(3115), - [anon_sym_nullptr] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_delete] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3115), - [anon_sym_co_return] = ACTIONS(3115), - [anon_sym_co_yield] = ACTIONS(3115), - [anon_sym_R_DQUOTE] = ACTIONS(3117), - [anon_sym_LR_DQUOTE] = ACTIONS(3117), - [anon_sym_uR_DQUOTE] = ACTIONS(3117), - [anon_sym_UR_DQUOTE] = ACTIONS(3117), - [anon_sym_u8R_DQUOTE] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_requires] = ACTIONS(3115), - [sym_this] = ACTIONS(3115), - }, - [STATE(369)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_include_token1] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token2] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [aux_sym_preproc_else_token1] = ACTIONS(3119), - [aux_sym_preproc_elif_token1] = ACTIONS(3119), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym___cdecl] = ACTIONS(3119), - [anon_sym___clrcall] = ACTIONS(3119), - [anon_sym___stdcall] = ACTIONS(3119), - [anon_sym___fastcall] = ACTIONS(3119), - [anon_sym___thiscall] = ACTIONS(3119), - [anon_sym___vectorcall] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym___try] = ACTIONS(3119), - [anon_sym___leave] = ACTIONS(3119), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_compl] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym___alignof__] = ACTIONS(3119), - [anon_sym___alignof] = ACTIONS(3119), - [anon_sym__alignof] = ACTIONS(3119), - [anon_sym_alignof] = ACTIONS(3119), - [anon_sym__Alignof] = ACTIONS(3119), - [anon_sym_offsetof] = ACTIONS(3119), - [anon_sym__Generic] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym___asm__] = ACTIONS(3119), - [anon_sym___asm] = ACTIONS(3119), - [sym_number_literal] = ACTIONS(3121), - [anon_sym_L_SQUOTE] = ACTIONS(3121), - [anon_sym_u_SQUOTE] = ACTIONS(3121), - [anon_sym_U_SQUOTE] = ACTIONS(3121), - [anon_sym_u8_SQUOTE] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3121), - [anon_sym_L_DQUOTE] = ACTIONS(3121), - [anon_sym_u_DQUOTE] = ACTIONS(3121), - [anon_sym_U_DQUOTE] = ACTIONS(3121), - [anon_sym_u8_DQUOTE] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [anon_sym_NULL] = ACTIONS(3119), - [anon_sym_nullptr] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_delete] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), - [anon_sym_concept] = ACTIONS(3119), - [anon_sym_co_return] = ACTIONS(3119), - [anon_sym_co_yield] = ACTIONS(3119), - [anon_sym_R_DQUOTE] = ACTIONS(3121), - [anon_sym_LR_DQUOTE] = ACTIONS(3121), - [anon_sym_uR_DQUOTE] = ACTIONS(3121), - [anon_sym_UR_DQUOTE] = ACTIONS(3121), - [anon_sym_u8R_DQUOTE] = ACTIONS(3121), - [anon_sym_co_await] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_requires] = ACTIONS(3119), - [sym_this] = ACTIONS(3119), - }, - [STATE(370)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_include_token1] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token2] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [aux_sym_preproc_else_token1] = ACTIONS(3123), - [aux_sym_preproc_elif_token1] = ACTIONS(3123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym___cdecl] = ACTIONS(3123), - [anon_sym___clrcall] = ACTIONS(3123), - [anon_sym___stdcall] = ACTIONS(3123), - [anon_sym___fastcall] = ACTIONS(3123), - [anon_sym___thiscall] = ACTIONS(3123), - [anon_sym___vectorcall] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym___try] = ACTIONS(3123), - [anon_sym___leave] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3123), - [anon_sym_compl] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym___alignof__] = ACTIONS(3123), - [anon_sym___alignof] = ACTIONS(3123), - [anon_sym__alignof] = ACTIONS(3123), - [anon_sym_alignof] = ACTIONS(3123), - [anon_sym__Alignof] = ACTIONS(3123), - [anon_sym_offsetof] = ACTIONS(3123), - [anon_sym__Generic] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym___asm__] = ACTIONS(3123), - [anon_sym___asm] = ACTIONS(3123), - [sym_number_literal] = ACTIONS(3125), - [anon_sym_L_SQUOTE] = ACTIONS(3125), - [anon_sym_u_SQUOTE] = ACTIONS(3125), - [anon_sym_U_SQUOTE] = ACTIONS(3125), - [anon_sym_u8_SQUOTE] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3125), - [anon_sym_L_DQUOTE] = ACTIONS(3125), - [anon_sym_u_DQUOTE] = ACTIONS(3125), - [anon_sym_U_DQUOTE] = ACTIONS(3125), - [anon_sym_u8_DQUOTE] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [anon_sym_NULL] = ACTIONS(3123), - [anon_sym_nullptr] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_delete] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(3123), - [anon_sym_co_return] = ACTIONS(3123), - [anon_sym_co_yield] = ACTIONS(3123), - [anon_sym_R_DQUOTE] = ACTIONS(3125), - [anon_sym_LR_DQUOTE] = ACTIONS(3125), - [anon_sym_uR_DQUOTE] = ACTIONS(3125), - [anon_sym_UR_DQUOTE] = ACTIONS(3125), - [anon_sym_u8R_DQUOTE] = ACTIONS(3125), - [anon_sym_co_await] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_requires] = ACTIONS(3123), - [sym_this] = ACTIONS(3123), - }, - [STATE(371)] = { - [sym_identifier] = ACTIONS(3127), - [aux_sym_preproc_include_token1] = ACTIONS(3127), - [aux_sym_preproc_def_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token2] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), - [aux_sym_preproc_else_token1] = ACTIONS(3127), - [aux_sym_preproc_elif_token1] = ACTIONS(3127), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3127), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3127), - [sym_preproc_directive] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym___extension__] = ACTIONS(3127), - [anon_sym_typedef] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym___attribute__] = ACTIONS(3127), - [anon_sym___attribute] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), - [anon_sym___declspec] = ACTIONS(3127), - [anon_sym___based] = ACTIONS(3127), - [anon_sym___cdecl] = ACTIONS(3127), - [anon_sym___clrcall] = ACTIONS(3127), - [anon_sym___stdcall] = ACTIONS(3127), - [anon_sym___fastcall] = ACTIONS(3127), - [anon_sym___thiscall] = ACTIONS(3127), - [anon_sym___vectorcall] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_signed] = ACTIONS(3127), - [anon_sym_unsigned] = ACTIONS(3127), - [anon_sym_long] = ACTIONS(3127), - [anon_sym_short] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_register] = ACTIONS(3127), - [anon_sym_inline] = ACTIONS(3127), - [anon_sym___inline] = ACTIONS(3127), - [anon_sym___inline__] = ACTIONS(3127), - [anon_sym___forceinline] = ACTIONS(3127), - [anon_sym_thread_local] = ACTIONS(3127), - [anon_sym___thread] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_constexpr] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_restrict] = ACTIONS(3127), - [anon_sym___restrict__] = ACTIONS(3127), - [anon_sym__Atomic] = ACTIONS(3127), - [anon_sym__Noreturn] = ACTIONS(3127), - [anon_sym_noreturn] = ACTIONS(3127), - [anon_sym__Nonnull] = ACTIONS(3127), - [anon_sym_mutable] = ACTIONS(3127), - [anon_sym_constinit] = ACTIONS(3127), - [anon_sym_consteval] = ACTIONS(3127), - [anon_sym_alignas] = ACTIONS(3127), - [anon_sym__Alignas] = ACTIONS(3127), - [sym_primitive_type] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym___try] = ACTIONS(3127), - [anon_sym___leave] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_compl] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym___alignof__] = ACTIONS(3127), - [anon_sym___alignof] = ACTIONS(3127), - [anon_sym__alignof] = ACTIONS(3127), - [anon_sym_alignof] = ACTIONS(3127), - [anon_sym__Alignof] = ACTIONS(3127), - [anon_sym_offsetof] = ACTIONS(3127), - [anon_sym__Generic] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym___asm__] = ACTIONS(3127), - [anon_sym___asm] = ACTIONS(3127), - [sym_number_literal] = ACTIONS(3129), - [anon_sym_L_SQUOTE] = ACTIONS(3129), - [anon_sym_u_SQUOTE] = ACTIONS(3129), - [anon_sym_U_SQUOTE] = ACTIONS(3129), - [anon_sym_u8_SQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_L_DQUOTE] = ACTIONS(3129), - [anon_sym_u_DQUOTE] = ACTIONS(3129), - [anon_sym_U_DQUOTE] = ACTIONS(3129), - [anon_sym_u8_DQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [anon_sym_NULL] = ACTIONS(3127), - [anon_sym_nullptr] = ACTIONS(3127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3127), - [anon_sym_decltype] = ACTIONS(3127), - [anon_sym_explicit] = ACTIONS(3127), - [anon_sym_typename] = ACTIONS(3127), - [anon_sym_template] = ACTIONS(3127), - [anon_sym_operator] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_delete] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_static_assert] = ACTIONS(3127), - [anon_sym_concept] = ACTIONS(3127), - [anon_sym_co_return] = ACTIONS(3127), - [anon_sym_co_yield] = ACTIONS(3127), - [anon_sym_R_DQUOTE] = ACTIONS(3129), - [anon_sym_LR_DQUOTE] = ACTIONS(3129), - [anon_sym_uR_DQUOTE] = ACTIONS(3129), - [anon_sym_UR_DQUOTE] = ACTIONS(3129), - [anon_sym_u8R_DQUOTE] = ACTIONS(3129), - [anon_sym_co_await] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_requires] = ACTIONS(3127), - [sym_this] = ACTIONS(3127), - }, - [STATE(372)] = { - [sym_identifier] = ACTIONS(3131), - [aux_sym_preproc_include_token1] = ACTIONS(3131), - [aux_sym_preproc_def_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token2] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), - [aux_sym_preproc_else_token1] = ACTIONS(3131), - [aux_sym_preproc_elif_token1] = ACTIONS(3131), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3131), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3131), - [sym_preproc_directive] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym___extension__] = ACTIONS(3131), - [anon_sym_typedef] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym___attribute__] = ACTIONS(3131), - [anon_sym___attribute] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), - [anon_sym___declspec] = ACTIONS(3131), - [anon_sym___based] = ACTIONS(3131), - [anon_sym___cdecl] = ACTIONS(3131), - [anon_sym___clrcall] = ACTIONS(3131), - [anon_sym___stdcall] = ACTIONS(3131), - [anon_sym___fastcall] = ACTIONS(3131), - [anon_sym___thiscall] = ACTIONS(3131), - [anon_sym___vectorcall] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_signed] = ACTIONS(3131), - [anon_sym_unsigned] = ACTIONS(3131), - [anon_sym_long] = ACTIONS(3131), - [anon_sym_short] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_register] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym___inline] = ACTIONS(3131), - [anon_sym___inline__] = ACTIONS(3131), - [anon_sym___forceinline] = ACTIONS(3131), - [anon_sym_thread_local] = ACTIONS(3131), - [anon_sym___thread] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_constexpr] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_restrict] = ACTIONS(3131), - [anon_sym___restrict__] = ACTIONS(3131), - [anon_sym__Atomic] = ACTIONS(3131), - [anon_sym__Noreturn] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym__Nonnull] = ACTIONS(3131), - [anon_sym_mutable] = ACTIONS(3131), - [anon_sym_constinit] = ACTIONS(3131), - [anon_sym_consteval] = ACTIONS(3131), - [anon_sym_alignas] = ACTIONS(3131), - [anon_sym__Alignas] = ACTIONS(3131), - [sym_primitive_type] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym___try] = ACTIONS(3131), - [anon_sym___leave] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_compl] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym___alignof__] = ACTIONS(3131), - [anon_sym___alignof] = ACTIONS(3131), - [anon_sym__alignof] = ACTIONS(3131), - [anon_sym_alignof] = ACTIONS(3131), - [anon_sym__Alignof] = ACTIONS(3131), - [anon_sym_offsetof] = ACTIONS(3131), - [anon_sym__Generic] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym___asm__] = ACTIONS(3131), - [anon_sym___asm] = ACTIONS(3131), - [sym_number_literal] = ACTIONS(3133), - [anon_sym_L_SQUOTE] = ACTIONS(3133), - [anon_sym_u_SQUOTE] = ACTIONS(3133), - [anon_sym_U_SQUOTE] = ACTIONS(3133), - [anon_sym_u8_SQUOTE] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3133), - [anon_sym_L_DQUOTE] = ACTIONS(3133), - [anon_sym_u_DQUOTE] = ACTIONS(3133), - [anon_sym_U_DQUOTE] = ACTIONS(3133), - [anon_sym_u8_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [anon_sym_NULL] = ACTIONS(3131), - [anon_sym_nullptr] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3131), - [anon_sym_decltype] = ACTIONS(3131), - [anon_sym_explicit] = ACTIONS(3131), - [anon_sym_typename] = ACTIONS(3131), - [anon_sym_template] = ACTIONS(3131), - [anon_sym_operator] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_delete] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_static_assert] = ACTIONS(3131), - [anon_sym_concept] = ACTIONS(3131), - [anon_sym_co_return] = ACTIONS(3131), - [anon_sym_co_yield] = ACTIONS(3131), - [anon_sym_R_DQUOTE] = ACTIONS(3133), - [anon_sym_LR_DQUOTE] = ACTIONS(3133), - [anon_sym_uR_DQUOTE] = ACTIONS(3133), - [anon_sym_UR_DQUOTE] = ACTIONS(3133), - [anon_sym_u8R_DQUOTE] = ACTIONS(3133), - [anon_sym_co_await] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_requires] = ACTIONS(3131), - [sym_this] = ACTIONS(3131), - }, - [STATE(373)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [aux_sym_preproc_else_token1] = ACTIONS(3135), - [aux_sym_preproc_elif_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(374)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [aux_sym_preproc_else_token1] = ACTIONS(3135), - [aux_sym_preproc_elif_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(375)] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [aux_sym_preproc_else_token1] = ACTIONS(3139), - [aux_sym_preproc_elif_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym___attribute] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym__Nonnull] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym__Alignas] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [anon_sym___asm] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - }, - [STATE(376)] = { - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_export] = ACTIONS(2743), - [anon_sym_module] = ACTIONS(2743), - [anon_sym_import] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [STATE(377)] = { - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_export] = ACTIONS(2719), - [anon_sym_module] = ACTIONS(2719), - [anon_sym_import] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), - }, - [STATE(378)] = { - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_export] = ACTIONS(2727), - [anon_sym_module] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(379)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4484), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7263), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7489), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(240)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10570), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98769,694 +88391,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3143), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(380)] = { - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_export] = ACTIONS(2731), - [anon_sym_module] = ACTIONS(2731), - [anon_sym_import] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), - }, - [STATE(381)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_include_token1] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token2] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [aux_sym_preproc_else_token1] = ACTIONS(3145), - [aux_sym_preproc_elif_token1] = ACTIONS(3145), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym___cdecl] = ACTIONS(3145), - [anon_sym___clrcall] = ACTIONS(3145), - [anon_sym___stdcall] = ACTIONS(3145), - [anon_sym___fastcall] = ACTIONS(3145), - [anon_sym___thiscall] = ACTIONS(3145), - [anon_sym___vectorcall] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym___try] = ACTIONS(3145), - [anon_sym___leave] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3145), - [anon_sym_compl] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym___alignof__] = ACTIONS(3145), - [anon_sym___alignof] = ACTIONS(3145), - [anon_sym__alignof] = ACTIONS(3145), - [anon_sym_alignof] = ACTIONS(3145), - [anon_sym__Alignof] = ACTIONS(3145), - [anon_sym_offsetof] = ACTIONS(3145), - [anon_sym__Generic] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym___asm__] = ACTIONS(3145), - [anon_sym___asm] = ACTIONS(3145), - [sym_number_literal] = ACTIONS(3147), - [anon_sym_L_SQUOTE] = ACTIONS(3147), - [anon_sym_u_SQUOTE] = ACTIONS(3147), - [anon_sym_U_SQUOTE] = ACTIONS(3147), - [anon_sym_u8_SQUOTE] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_L_DQUOTE] = ACTIONS(3147), - [anon_sym_u_DQUOTE] = ACTIONS(3147), - [anon_sym_U_DQUOTE] = ACTIONS(3147), - [anon_sym_u8_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [anon_sym_NULL] = ACTIONS(3145), - [anon_sym_nullptr] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), - [anon_sym_concept] = ACTIONS(3145), - [anon_sym_co_return] = ACTIONS(3145), - [anon_sym_co_yield] = ACTIONS(3145), - [anon_sym_R_DQUOTE] = ACTIONS(3147), - [anon_sym_LR_DQUOTE] = ACTIONS(3147), - [anon_sym_uR_DQUOTE] = ACTIONS(3147), - [anon_sym_UR_DQUOTE] = ACTIONS(3147), - [anon_sym_u8R_DQUOTE] = ACTIONS(3147), - [anon_sym_co_await] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_requires] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - }, - [STATE(382)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_include_token1] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token2] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [aux_sym_preproc_else_token1] = ACTIONS(3149), - [aux_sym_preproc_elif_token1] = ACTIONS(3149), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym___cdecl] = ACTIONS(3149), - [anon_sym___clrcall] = ACTIONS(3149), - [anon_sym___stdcall] = ACTIONS(3149), - [anon_sym___fastcall] = ACTIONS(3149), - [anon_sym___thiscall] = ACTIONS(3149), - [anon_sym___vectorcall] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_case] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym___try] = ACTIONS(3149), - [anon_sym___leave] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3149), - [anon_sym_compl] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym___alignof__] = ACTIONS(3149), - [anon_sym___alignof] = ACTIONS(3149), - [anon_sym__alignof] = ACTIONS(3149), - [anon_sym_alignof] = ACTIONS(3149), - [anon_sym__Alignof] = ACTIONS(3149), - [anon_sym_offsetof] = ACTIONS(3149), - [anon_sym__Generic] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym___asm__] = ACTIONS(3149), - [anon_sym___asm] = ACTIONS(3149), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_L_SQUOTE] = ACTIONS(3151), - [anon_sym_u_SQUOTE] = ACTIONS(3151), - [anon_sym_U_SQUOTE] = ACTIONS(3151), - [anon_sym_u8_SQUOTE] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_L_DQUOTE] = ACTIONS(3151), - [anon_sym_u_DQUOTE] = ACTIONS(3151), - [anon_sym_U_DQUOTE] = ACTIONS(3151), - [anon_sym_u8_DQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [anon_sym_NULL] = ACTIONS(3149), - [anon_sym_nullptr] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_delete] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), - [anon_sym_concept] = ACTIONS(3149), - [anon_sym_co_return] = ACTIONS(3149), - [anon_sym_co_yield] = ACTIONS(3149), - [anon_sym_R_DQUOTE] = ACTIONS(3151), - [anon_sym_LR_DQUOTE] = ACTIONS(3151), - [anon_sym_uR_DQUOTE] = ACTIONS(3151), - [anon_sym_UR_DQUOTE] = ACTIONS(3151), - [anon_sym_u8R_DQUOTE] = ACTIONS(3151), - [anon_sym_co_await] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_requires] = ACTIONS(3149), - [sym_this] = ACTIONS(3149), - }, - [STATE(383)] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym___extension__] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym___attribute] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym___inline] = ACTIONS(2629), - [anon_sym___inline__] = ACTIONS(2629), - [anon_sym___forceinline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym___thread] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym___restrict__] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym__Noreturn] = ACTIONS(2629), - [anon_sym_noreturn] = ACTIONS(2629), - [anon_sym__Nonnull] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_alignas] = ACTIONS(2629), - [anon_sym__Alignas] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2629), - [anon_sym___leave] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_compl] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [anon_sym___alignof__] = ACTIONS(2629), - [anon_sym___alignof] = ACTIONS(2629), - [anon_sym__alignof] = ACTIONS(2629), - [anon_sym_alignof] = ACTIONS(2629), - [anon_sym__Alignof] = ACTIONS(2629), - [anon_sym_offsetof] = ACTIONS(2629), - [anon_sym__Generic] = ACTIONS(2629), - [anon_sym_asm] = ACTIONS(2629), - [anon_sym___asm__] = ACTIONS(2629), - [anon_sym___asm] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_nullptr] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_module] = ACTIONS(2629), - [anon_sym_import] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_R_DQUOTE] = ACTIONS(2631), - [anon_sym_LR_DQUOTE] = ACTIONS(2631), - [anon_sym_uR_DQUOTE] = ACTIONS(2631), - [anon_sym_UR_DQUOTE] = ACTIONS(2631), - [anon_sym_u8R_DQUOTE] = ACTIONS(2631), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(384)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4422), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7300), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7626), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(241)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11088), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -99469,694 +88544,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3153), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(385)] = { - [sym_expression] = STATE(4506), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(9055), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(3169), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(386)] = { - [sym_catch_clause] = STATE(396), - [aux_sym_constructor_try_statement_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_include_token1] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym___cdecl] = ACTIONS(2543), - [anon_sym___clrcall] = ACTIONS(2543), - [anon_sym___stdcall] = ACTIONS(2543), - [anon_sym___fastcall] = ACTIONS(2543), - [anon_sym___thiscall] = ACTIONS(2543), - [anon_sym___vectorcall] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_switch] = ACTIONS(2543), - [anon_sym_case] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_goto] = ACTIONS(2543), - [anon_sym___try] = ACTIONS(2543), - [anon_sym___leave] = ACTIONS(2543), - [anon_sym_not] = ACTIONS(2543), - [anon_sym_compl] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_sizeof] = ACTIONS(2543), - [anon_sym___alignof__] = ACTIONS(2543), - [anon_sym___alignof] = ACTIONS(2543), - [anon_sym__alignof] = ACTIONS(2543), - [anon_sym_alignof] = ACTIONS(2543), - [anon_sym__Alignof] = ACTIONS(2543), - [anon_sym_offsetof] = ACTIONS(2543), - [anon_sym__Generic] = ACTIONS(2543), - [anon_sym_asm] = ACTIONS(2543), - [anon_sym___asm__] = ACTIONS(2543), - [anon_sym___asm] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_L_SQUOTE] = ACTIONS(2545), - [anon_sym_u_SQUOTE] = ACTIONS(2545), - [anon_sym_U_SQUOTE] = ACTIONS(2545), - [anon_sym_u8_SQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_L_DQUOTE] = ACTIONS(2545), - [anon_sym_u_DQUOTE] = ACTIONS(2545), - [anon_sym_U_DQUOTE] = ACTIONS(2545), - [anon_sym_u8_DQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2543), - [anon_sym_nullptr] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_throw] = ACTIONS(2543), - [anon_sym_namespace] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_concept] = ACTIONS(2543), - [anon_sym_co_return] = ACTIONS(2543), - [anon_sym_co_yield] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(2545), - [anon_sym_LR_DQUOTE] = ACTIONS(2545), - [anon_sym_uR_DQUOTE] = ACTIONS(2545), - [anon_sym_UR_DQUOTE] = ACTIONS(2545), - [anon_sym_u8R_DQUOTE] = ACTIONS(2545), - [anon_sym_co_await] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_requires] = ACTIONS(2543), - [sym_this] = ACTIONS(2543), - }, - [STATE(387)] = { - [ts_builtin_sym_end] = ACTIONS(2757), - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_export] = ACTIONS(2755), - [anon_sym_module] = ACTIONS(2755), - [anon_sym_import] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), - }, - [STATE(388)] = { - [sym_identifier] = ACTIONS(3177), - [aux_sym_preproc_include_token1] = ACTIONS(3177), - [aux_sym_preproc_def_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token2] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3177), - [aux_sym_preproc_else_token1] = ACTIONS(3177), - [aux_sym_preproc_elif_token1] = ACTIONS(3177), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3177), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3177), - [sym_preproc_directive] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3177), - [anon_sym_typedef] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym___attribute__] = ACTIONS(3177), - [anon_sym___attribute] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3179), - [anon_sym___declspec] = ACTIONS(3177), - [anon_sym___based] = ACTIONS(3177), - [anon_sym___cdecl] = ACTIONS(3177), - [anon_sym___clrcall] = ACTIONS(3177), - [anon_sym___stdcall] = ACTIONS(3177), - [anon_sym___fastcall] = ACTIONS(3177), - [anon_sym___thiscall] = ACTIONS(3177), - [anon_sym___vectorcall] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3177), - [anon_sym_unsigned] = ACTIONS(3177), - [anon_sym_long] = ACTIONS(3177), - [anon_sym_short] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_register] = ACTIONS(3177), - [anon_sym_inline] = ACTIONS(3177), - [anon_sym___inline] = ACTIONS(3177), - [anon_sym___inline__] = ACTIONS(3177), - [anon_sym___forceinline] = ACTIONS(3177), - [anon_sym_thread_local] = ACTIONS(3177), - [anon_sym___thread] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_constexpr] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_restrict] = ACTIONS(3177), - [anon_sym___restrict__] = ACTIONS(3177), - [anon_sym__Atomic] = ACTIONS(3177), - [anon_sym__Noreturn] = ACTIONS(3177), - [anon_sym_noreturn] = ACTIONS(3177), - [anon_sym__Nonnull] = ACTIONS(3177), - [anon_sym_mutable] = ACTIONS(3177), - [anon_sym_constinit] = ACTIONS(3177), - [anon_sym_consteval] = ACTIONS(3177), - [anon_sym_alignas] = ACTIONS(3177), - [anon_sym__Alignas] = ACTIONS(3177), - [sym_primitive_type] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_case] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym___try] = ACTIONS(3177), - [anon_sym___leave] = ACTIONS(3177), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_compl] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym___alignof__] = ACTIONS(3177), - [anon_sym___alignof] = ACTIONS(3177), - [anon_sym__alignof] = ACTIONS(3177), - [anon_sym_alignof] = ACTIONS(3177), - [anon_sym__Alignof] = ACTIONS(3177), - [anon_sym_offsetof] = ACTIONS(3177), - [anon_sym__Generic] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym___asm__] = ACTIONS(3177), - [anon_sym___asm] = ACTIONS(3177), - [sym_number_literal] = ACTIONS(3179), - [anon_sym_L_SQUOTE] = ACTIONS(3179), - [anon_sym_u_SQUOTE] = ACTIONS(3179), - [anon_sym_U_SQUOTE] = ACTIONS(3179), - [anon_sym_u8_SQUOTE] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_L_DQUOTE] = ACTIONS(3179), - [anon_sym_u_DQUOTE] = ACTIONS(3179), - [anon_sym_U_DQUOTE] = ACTIONS(3179), - [anon_sym_u8_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [anon_sym_NULL] = ACTIONS(3177), - [anon_sym_nullptr] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3177), - [anon_sym_decltype] = ACTIONS(3177), - [anon_sym_explicit] = ACTIONS(3177), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(3177), - [anon_sym_operator] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_delete] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_static_assert] = ACTIONS(3177), - [anon_sym_concept] = ACTIONS(3177), - [anon_sym_co_return] = ACTIONS(3177), - [anon_sym_co_yield] = ACTIONS(3177), - [anon_sym_R_DQUOTE] = ACTIONS(3179), - [anon_sym_LR_DQUOTE] = ACTIONS(3179), - [anon_sym_uR_DQUOTE] = ACTIONS(3179), - [anon_sym_UR_DQUOTE] = ACTIONS(3179), - [anon_sym_u8R_DQUOTE] = ACTIONS(3179), - [anon_sym_co_await] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_requires] = ACTIONS(3177), - [sym_this] = ACTIONS(3177), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(389)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4453), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7333), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7736), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(242)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11472), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -100169,694 +88697,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3181), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(390)] = { - [sym_expression] = STATE(4589), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8395), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym___extension__] = ACTIONS(3188), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym___attribute] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = 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(1266), - [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__Nonnull] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym__Alignas] = ACTIONS(3191), - [sym_primitive_type] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3191), - [anon_sym_decltype] = ACTIONS(3201), - [anon_sym_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(391)] = { - [ts_builtin_sym_end] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym___extension__] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym___attribute] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym___inline] = ACTIONS(2765), - [anon_sym___inline__] = ACTIONS(2765), - [anon_sym___forceinline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym___thread] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym___restrict__] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym__Noreturn] = ACTIONS(2765), - [anon_sym_noreturn] = ACTIONS(2765), - [anon_sym__Nonnull] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_alignas] = ACTIONS(2765), - [anon_sym__Alignas] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2765), - [anon_sym___leave] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [anon_sym___alignof__] = ACTIONS(2765), - [anon_sym___alignof] = ACTIONS(2765), - [anon_sym__alignof] = ACTIONS(2765), - [anon_sym_alignof] = ACTIONS(2765), - [anon_sym__Alignof] = ACTIONS(2765), - [anon_sym_offsetof] = ACTIONS(2765), - [anon_sym__Generic] = ACTIONS(2765), - [anon_sym_asm] = ACTIONS(2765), - [anon_sym___asm__] = ACTIONS(2765), - [anon_sym___asm] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [anon_sym_NULL] = ACTIONS(2765), - [anon_sym_nullptr] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_export] = ACTIONS(2765), - [anon_sym_module] = ACTIONS(2765), - [anon_sym_import] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - }, - [STATE(392)] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_elifdef_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_virtual] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym___attribute] = ACTIONS(3207), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(393)] = { - [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), - [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_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_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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), - [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_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_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), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(394)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4481), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7155), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7568), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(243)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11389), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -100869,414 +88850,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3215), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(395)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_include_token1] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token2] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [aux_sym_preproc_else_token1] = ACTIONS(3217), - [aux_sym_preproc_elif_token1] = ACTIONS(3217), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym___cdecl] = ACTIONS(3217), - [anon_sym___clrcall] = ACTIONS(3217), - [anon_sym___stdcall] = ACTIONS(3217), - [anon_sym___fastcall] = ACTIONS(3217), - [anon_sym___thiscall] = ACTIONS(3217), - [anon_sym___vectorcall] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym___try] = ACTIONS(3217), - [anon_sym___leave] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3217), - [anon_sym_compl] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym___alignof__] = ACTIONS(3217), - [anon_sym___alignof] = ACTIONS(3217), - [anon_sym__alignof] = ACTIONS(3217), - [anon_sym_alignof] = ACTIONS(3217), - [anon_sym__Alignof] = ACTIONS(3217), - [anon_sym_offsetof] = ACTIONS(3217), - [anon_sym__Generic] = ACTIONS(3217), - [anon_sym_asm] = ACTIONS(3217), - [anon_sym___asm__] = ACTIONS(3217), - [anon_sym___asm] = ACTIONS(3217), - [sym_number_literal] = ACTIONS(3219), - [anon_sym_L_SQUOTE] = ACTIONS(3219), - [anon_sym_u_SQUOTE] = ACTIONS(3219), - [anon_sym_U_SQUOTE] = ACTIONS(3219), - [anon_sym_u8_SQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_L_DQUOTE] = ACTIONS(3219), - [anon_sym_u_DQUOTE] = ACTIONS(3219), - [anon_sym_U_DQUOTE] = ACTIONS(3219), - [anon_sym_u8_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [anon_sym_NULL] = ACTIONS(3217), - [anon_sym_nullptr] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - [anon_sym_concept] = ACTIONS(3217), - [anon_sym_co_return] = ACTIONS(3217), - [anon_sym_co_yield] = ACTIONS(3217), - [anon_sym_R_DQUOTE] = ACTIONS(3219), - [anon_sym_LR_DQUOTE] = ACTIONS(3219), - [anon_sym_uR_DQUOTE] = ACTIONS(3219), - [anon_sym_UR_DQUOTE] = ACTIONS(3219), - [anon_sym_u8R_DQUOTE] = ACTIONS(3219), - [anon_sym_co_await] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_requires] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - }, - [STATE(396)] = { - [sym_catch_clause] = STATE(396), - [aux_sym_constructor_try_statement_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym___cdecl] = ACTIONS(2478), - [anon_sym___clrcall] = ACTIONS(2478), - [anon_sym___stdcall] = ACTIONS(2478), - [anon_sym___fastcall] = ACTIONS(2478), - [anon_sym___thiscall] = ACTIONS(2478), - [anon_sym___vectorcall] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym___try] = ACTIONS(2478), - [anon_sym___leave] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2478), - [anon_sym___alignof__] = ACTIONS(2478), - [anon_sym___alignof] = ACTIONS(2478), - [anon_sym__alignof] = ACTIONS(2478), - [anon_sym_alignof] = ACTIONS(2478), - [anon_sym__Alignof] = ACTIONS(2478), - [anon_sym_offsetof] = ACTIONS(2478), - [anon_sym__Generic] = ACTIONS(2478), - [anon_sym_asm] = ACTIONS(2478), - [anon_sym___asm__] = ACTIONS(2478), - [anon_sym___asm] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_L_SQUOTE] = ACTIONS(2480), - [anon_sym_u_SQUOTE] = ACTIONS(2480), - [anon_sym_U_SQUOTE] = ACTIONS(2480), - [anon_sym_u8_SQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_nullptr] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(3221), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(397)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4446), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7171), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7642), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(244)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(11095), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101289,274 +89003,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3224), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(398)] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_export] = ACTIONS(2659), - [anon_sym_module] = ACTIONS(2659), - [anon_sym_import] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(399)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4447), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7184), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7436), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(245)] = { + [sym_compound_statement] = STATE(10588), + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(4607), + [sym__string] = STATE(5234), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(10594), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7853), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(3907), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2985), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(7868), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(2584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101569,1114 +89156,1797 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3226), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(1904), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(400)] = { - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2739), - [anon_sym_module] = ACTIONS(2739), - [anon_sym_import] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), + [STATE(246)] = { + [sym_expression] = STATE(5354), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_initializer_list] = STATE(5704), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2024), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2024), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(401)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_include_token1] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token2] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [aux_sym_preproc_else_token1] = ACTIONS(3228), - [aux_sym_preproc_elif_token1] = ACTIONS(3228), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym___cdecl] = ACTIONS(3228), - [anon_sym___clrcall] = ACTIONS(3228), - [anon_sym___stdcall] = ACTIONS(3228), - [anon_sym___fastcall] = ACTIONS(3228), - [anon_sym___thiscall] = ACTIONS(3228), - [anon_sym___vectorcall] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_goto] = ACTIONS(3228), - [anon_sym___try] = ACTIONS(3228), - [anon_sym___leave] = ACTIONS(3228), - [anon_sym_not] = ACTIONS(3228), - [anon_sym_compl] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_sizeof] = ACTIONS(3228), - [anon_sym___alignof__] = ACTIONS(3228), - [anon_sym___alignof] = ACTIONS(3228), - [anon_sym__alignof] = ACTIONS(3228), - [anon_sym_alignof] = ACTIONS(3228), - [anon_sym__Alignof] = ACTIONS(3228), - [anon_sym_offsetof] = ACTIONS(3228), - [anon_sym__Generic] = ACTIONS(3228), - [anon_sym_asm] = ACTIONS(3228), - [anon_sym___asm__] = ACTIONS(3228), - [anon_sym___asm] = ACTIONS(3228), - [sym_number_literal] = ACTIONS(3230), - [anon_sym_L_SQUOTE] = ACTIONS(3230), - [anon_sym_u_SQUOTE] = ACTIONS(3230), - [anon_sym_U_SQUOTE] = ACTIONS(3230), - [anon_sym_u8_SQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [anon_sym_NULL] = ACTIONS(3228), - [anon_sym_nullptr] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), - [anon_sym_concept] = ACTIONS(3228), - [anon_sym_co_return] = ACTIONS(3228), - [anon_sym_co_yield] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(3230), - [anon_sym_LR_DQUOTE] = ACTIONS(3230), - [anon_sym_uR_DQUOTE] = ACTIONS(3230), - [anon_sym_UR_DQUOTE] = ACTIONS(3230), - [anon_sym_u8R_DQUOTE] = ACTIONS(3230), - [anon_sym_co_await] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_requires] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), + [STATE(247)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(402)] = { - [sym_identifier] = ACTIONS(3232), - [aux_sym_preproc_include_token1] = ACTIONS(3232), - [aux_sym_preproc_def_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token2] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [aux_sym_preproc_else_token1] = ACTIONS(3232), - [aux_sym_preproc_elif_token1] = ACTIONS(3232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_AMP] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3232), - [anon_sym_typedef] = ACTIONS(3232), - [anon_sym_virtual] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(3232), - [anon_sym___attribute__] = ACTIONS(3232), - [anon_sym___attribute] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3234), - [anon_sym___declspec] = ACTIONS(3232), - [anon_sym___based] = ACTIONS(3232), - [anon_sym___cdecl] = ACTIONS(3232), - [anon_sym___clrcall] = ACTIONS(3232), - [anon_sym___stdcall] = ACTIONS(3232), - [anon_sym___fastcall] = ACTIONS(3232), - [anon_sym___thiscall] = ACTIONS(3232), - [anon_sym___vectorcall] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_register] = ACTIONS(3232), - [anon_sym_inline] = ACTIONS(3232), - [anon_sym___inline] = ACTIONS(3232), - [anon_sym___inline__] = ACTIONS(3232), - [anon_sym___forceinline] = ACTIONS(3232), - [anon_sym_thread_local] = ACTIONS(3232), - [anon_sym___thread] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_constexpr] = ACTIONS(3232), - [anon_sym_volatile] = ACTIONS(3232), - [anon_sym_restrict] = ACTIONS(3232), - [anon_sym___restrict__] = ACTIONS(3232), - [anon_sym__Atomic] = ACTIONS(3232), - [anon_sym__Noreturn] = ACTIONS(3232), - [anon_sym_noreturn] = ACTIONS(3232), - [anon_sym__Nonnull] = ACTIONS(3232), - [anon_sym_mutable] = ACTIONS(3232), - [anon_sym_constinit] = ACTIONS(3232), - [anon_sym_consteval] = ACTIONS(3232), - [anon_sym_alignas] = ACTIONS(3232), - [anon_sym__Alignas] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3232), - [anon_sym_union] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_goto] = ACTIONS(3232), - [anon_sym___try] = ACTIONS(3232), - [anon_sym___leave] = ACTIONS(3232), - [anon_sym_not] = ACTIONS(3232), - [anon_sym_compl] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_sizeof] = ACTIONS(3232), - [anon_sym___alignof__] = ACTIONS(3232), - [anon_sym___alignof] = ACTIONS(3232), - [anon_sym__alignof] = ACTIONS(3232), - [anon_sym_alignof] = ACTIONS(3232), - [anon_sym__Alignof] = ACTIONS(3232), - [anon_sym_offsetof] = ACTIONS(3232), - [anon_sym__Generic] = ACTIONS(3232), - [anon_sym_asm] = ACTIONS(3232), - [anon_sym___asm__] = ACTIONS(3232), - [anon_sym___asm] = ACTIONS(3232), - [sym_number_literal] = ACTIONS(3234), - [anon_sym_L_SQUOTE] = ACTIONS(3234), - [anon_sym_u_SQUOTE] = ACTIONS(3234), - [anon_sym_U_SQUOTE] = ACTIONS(3234), - [anon_sym_u8_SQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_L_DQUOTE] = ACTIONS(3234), - [anon_sym_u_DQUOTE] = ACTIONS(3234), - [anon_sym_U_DQUOTE] = ACTIONS(3234), - [anon_sym_u8_DQUOTE] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3232), - [anon_sym_nullptr] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3232), - [anon_sym_decltype] = ACTIONS(3232), - [anon_sym_explicit] = ACTIONS(3232), - [anon_sym_typename] = ACTIONS(3232), - [anon_sym_template] = ACTIONS(3232), - [anon_sym_operator] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_static_assert] = ACTIONS(3232), - [anon_sym_concept] = ACTIONS(3232), - [anon_sym_co_return] = ACTIONS(3232), - [anon_sym_co_yield] = ACTIONS(3232), - [anon_sym_R_DQUOTE] = ACTIONS(3234), - [anon_sym_LR_DQUOTE] = ACTIONS(3234), - [anon_sym_uR_DQUOTE] = ACTIONS(3234), - [anon_sym_UR_DQUOTE] = ACTIONS(3234), - [anon_sym_u8R_DQUOTE] = ACTIONS(3234), - [anon_sym_co_await] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_requires] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), + [STATE(248)] = { + [sym_expression] = STATE(5407), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(403)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4415), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7191), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7478), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3236), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(249)] = { + [sym_expression] = STATE(5370), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_initializer_list] = STATE(5752), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_and_eq] = ACTIONS(2024), + [anon_sym_or_eq] = ACTIONS(2024), + [anon_sym_xor_eq] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(404)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_include_token1] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token2] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [aux_sym_preproc_else_token1] = ACTIONS(3238), - [aux_sym_preproc_elif_token1] = ACTIONS(3238), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym___cdecl] = ACTIONS(3238), - [anon_sym___clrcall] = ACTIONS(3238), - [anon_sym___stdcall] = ACTIONS(3238), - [anon_sym___fastcall] = ACTIONS(3238), - [anon_sym___thiscall] = ACTIONS(3238), - [anon_sym___vectorcall] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_goto] = ACTIONS(3238), - [anon_sym___try] = ACTIONS(3238), - [anon_sym___leave] = ACTIONS(3238), - [anon_sym_not] = ACTIONS(3238), - [anon_sym_compl] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym___alignof__] = ACTIONS(3238), - [anon_sym___alignof] = ACTIONS(3238), - [anon_sym__alignof] = ACTIONS(3238), - [anon_sym_alignof] = ACTIONS(3238), - [anon_sym__Alignof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [anon_sym__Generic] = ACTIONS(3238), - [anon_sym_asm] = ACTIONS(3238), - [anon_sym___asm__] = ACTIONS(3238), - [anon_sym___asm] = ACTIONS(3238), - [sym_number_literal] = ACTIONS(3240), - [anon_sym_L_SQUOTE] = ACTIONS(3240), - [anon_sym_u_SQUOTE] = ACTIONS(3240), - [anon_sym_U_SQUOTE] = ACTIONS(3240), - [anon_sym_u8_SQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_L_DQUOTE] = ACTIONS(3240), - [anon_sym_u_DQUOTE] = ACTIONS(3240), - [anon_sym_U_DQUOTE] = ACTIONS(3240), - [anon_sym_u8_DQUOTE] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [anon_sym_NULL] = ACTIONS(3238), - [anon_sym_nullptr] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), - [anon_sym_concept] = ACTIONS(3238), - [anon_sym_co_return] = ACTIONS(3238), - [anon_sym_co_yield] = ACTIONS(3238), - [anon_sym_R_DQUOTE] = ACTIONS(3240), - [anon_sym_LR_DQUOTE] = ACTIONS(3240), - [anon_sym_uR_DQUOTE] = ACTIONS(3240), - [anon_sym_UR_DQUOTE] = ACTIONS(3240), - [anon_sym_u8R_DQUOTE] = ACTIONS(3240), - [anon_sym_co_await] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_requires] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), + [STATE(250)] = { + [sym_expression] = STATE(5658), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_initializer_list] = STATE(5954), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_STAR_EQ] = ACTIONS(2026), + [anon_sym_SLASH_EQ] = ACTIONS(2026), + [anon_sym_PERCENT_EQ] = ACTIONS(2026), + [anon_sym_PLUS_EQ] = ACTIONS(2026), + [anon_sym_DASH_EQ] = ACTIONS(2026), + [anon_sym_LT_LT_EQ] = ACTIONS(2026), + [anon_sym_GT_GT_EQ] = ACTIONS(2026), + [anon_sym_AMP_EQ] = ACTIONS(2026), + [anon_sym_CARET_EQ] = ACTIONS(2026), + [anon_sym_PIPE_EQ] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_DASH_GT_STAR] = ACTIONS(2026), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(405)] = { - [sym_identifier] = ACTIONS(3242), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token2] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), - [aux_sym_preproc_else_token1] = ACTIONS(3242), - [aux_sym_preproc_elif_token1] = ACTIONS(3242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3242), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3242), - [sym_preproc_directive] = ACTIONS(3242), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_virtual] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym___attribute__] = ACTIONS(3242), - [anon_sym___attribute] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3242), - [anon_sym___based] = ACTIONS(3242), - [anon_sym___cdecl] = ACTIONS(3242), - [anon_sym___clrcall] = ACTIONS(3242), - [anon_sym___stdcall] = ACTIONS(3242), - [anon_sym___fastcall] = ACTIONS(3242), - [anon_sym___thiscall] = ACTIONS(3242), - [anon_sym___vectorcall] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3242), - [anon_sym_unsigned] = ACTIONS(3242), - [anon_sym_long] = ACTIONS(3242), - [anon_sym_short] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_register] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym___inline] = ACTIONS(3242), - [anon_sym___inline__] = ACTIONS(3242), - [anon_sym___forceinline] = ACTIONS(3242), - [anon_sym_thread_local] = ACTIONS(3242), - [anon_sym___thread] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_constexpr] = ACTIONS(3242), - [anon_sym_volatile] = ACTIONS(3242), - [anon_sym_restrict] = ACTIONS(3242), - [anon_sym___restrict__] = ACTIONS(3242), - [anon_sym__Atomic] = ACTIONS(3242), - [anon_sym__Noreturn] = ACTIONS(3242), - [anon_sym_noreturn] = ACTIONS(3242), - [anon_sym__Nonnull] = ACTIONS(3242), - [anon_sym_mutable] = ACTIONS(3242), - [anon_sym_constinit] = ACTIONS(3242), - [anon_sym_consteval] = ACTIONS(3242), - [anon_sym_alignas] = ACTIONS(3242), - [anon_sym__Alignas] = ACTIONS(3242), - [sym_primitive_type] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3242), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_goto] = ACTIONS(3242), - [anon_sym___try] = ACTIONS(3242), - [anon_sym___leave] = ACTIONS(3242), - [anon_sym_not] = ACTIONS(3242), - [anon_sym_compl] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3242), - [anon_sym___alignof__] = ACTIONS(3242), - [anon_sym___alignof] = ACTIONS(3242), - [anon_sym__alignof] = ACTIONS(3242), - [anon_sym_alignof] = ACTIONS(3242), - [anon_sym__Alignof] = ACTIONS(3242), - [anon_sym_offsetof] = ACTIONS(3242), - [anon_sym__Generic] = ACTIONS(3242), - [anon_sym_asm] = ACTIONS(3242), - [anon_sym___asm__] = ACTIONS(3242), - [anon_sym___asm] = ACTIONS(3242), - [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(3242), - [sym_false] = ACTIONS(3242), - [anon_sym_NULL] = ACTIONS(3242), - [anon_sym_nullptr] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3242), - [anon_sym_decltype] = ACTIONS(3242), - [anon_sym_explicit] = ACTIONS(3242), - [anon_sym_typename] = ACTIONS(3242), - [anon_sym_template] = ACTIONS(3242), - [anon_sym_operator] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_static_assert] = ACTIONS(3242), - [anon_sym_concept] = ACTIONS(3242), - [anon_sym_co_return] = ACTIONS(3242), - [anon_sym_co_yield] = ACTIONS(3242), - [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(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_requires] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), + [STATE(251)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_explicit] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(406)] = { - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_export] = ACTIONS(2759), - [anon_sym_module] = ACTIONS(2759), - [anon_sym_import] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), + [STATE(252)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_explicit] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(407)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4424), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7196), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7538), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(253)] = { + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(2793), + [anon_sym_RPAREN] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___except] = ACTIONS(2795), + [anon_sym___finally] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_export] = ACTIONS(2795), + [anon_sym_module] = ACTIONS(2795), + [anon_sym_import] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2793), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_this] = ACTIONS(2795), + }, + [STATE(254)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_explicit] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(255)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_explicit] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(256)] = { + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___except] = ACTIONS(2803), + [anon_sym___finally] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2803), + [anon_sym_and] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_import] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), + }, + [STATE(257)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6498), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9359), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9561), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102689,414 +90959,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3248), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2861), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(408)] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym___extension__] = ACTIONS(2769), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym___attribute] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym___inline] = ACTIONS(2769), - [anon_sym___inline__] = ACTIONS(2769), - [anon_sym___forceinline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym___thread] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym___restrict__] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym__Noreturn] = ACTIONS(2769), - [anon_sym_noreturn] = ACTIONS(2769), - [anon_sym__Nonnull] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_alignas] = ACTIONS(2769), - [anon_sym__Alignas] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym___try] = ACTIONS(2769), - [anon_sym___leave] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [anon_sym___alignof__] = ACTIONS(2769), - [anon_sym___alignof] = ACTIONS(2769), - [anon_sym__alignof] = ACTIONS(2769), - [anon_sym_alignof] = ACTIONS(2769), - [anon_sym__Alignof] = ACTIONS(2769), - [anon_sym_offsetof] = ACTIONS(2769), - [anon_sym__Generic] = ACTIONS(2769), - [anon_sym_asm] = ACTIONS(2769), - [anon_sym___asm__] = ACTIONS(2769), - [anon_sym___asm] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [anon_sym_NULL] = ACTIONS(2769), - [anon_sym_nullptr] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_export] = ACTIONS(2769), - [anon_sym_module] = ACTIONS(2769), - [anon_sym_import] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - }, - [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2645), - [aux_sym_preproc_include_token1] = ACTIONS(2645), - [aux_sym_preproc_def_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), - [sym_preproc_directive] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym___extension__] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2645), - [anon_sym_virtual] = ACTIONS(2645), - [anon_sym_extern] = ACTIONS(2645), - [anon_sym___attribute__] = ACTIONS(2645), - [anon_sym___attribute] = ACTIONS(2645), - [anon_sym_using] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), - [anon_sym___declspec] = ACTIONS(2645), - [anon_sym___based] = ACTIONS(2645), - [anon_sym___cdecl] = ACTIONS(2645), - [anon_sym___clrcall] = ACTIONS(2645), - [anon_sym___stdcall] = ACTIONS(2645), - [anon_sym___fastcall] = ACTIONS(2645), - [anon_sym___thiscall] = ACTIONS(2645), - [anon_sym___vectorcall] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2645), - [anon_sym_unsigned] = ACTIONS(2645), - [anon_sym_long] = ACTIONS(2645), - [anon_sym_short] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_register] = ACTIONS(2645), - [anon_sym_inline] = ACTIONS(2645), - [anon_sym___inline] = ACTIONS(2645), - [anon_sym___inline__] = ACTIONS(2645), - [anon_sym___forceinline] = ACTIONS(2645), - [anon_sym_thread_local] = ACTIONS(2645), - [anon_sym___thread] = ACTIONS(2645), - [anon_sym_const] = ACTIONS(2645), - [anon_sym_constexpr] = ACTIONS(2645), - [anon_sym_volatile] = ACTIONS(2645), - [anon_sym_restrict] = ACTIONS(2645), - [anon_sym___restrict__] = ACTIONS(2645), - [anon_sym__Atomic] = ACTIONS(2645), - [anon_sym__Noreturn] = ACTIONS(2645), - [anon_sym_noreturn] = ACTIONS(2645), - [anon_sym__Nonnull] = ACTIONS(2645), - [anon_sym_mutable] = ACTIONS(2645), - [anon_sym_constinit] = ACTIONS(2645), - [anon_sym_consteval] = ACTIONS(2645), - [anon_sym_alignas] = ACTIONS(2645), - [anon_sym__Alignas] = ACTIONS(2645), - [sym_primitive_type] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_union] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2645), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_default] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_goto] = ACTIONS(2645), - [anon_sym___try] = ACTIONS(2645), - [anon_sym___leave] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_compl] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(2645), - [anon_sym___alignof__] = ACTIONS(2645), - [anon_sym___alignof] = ACTIONS(2645), - [anon_sym__alignof] = ACTIONS(2645), - [anon_sym_alignof] = ACTIONS(2645), - [anon_sym__Alignof] = ACTIONS(2645), - [anon_sym_offsetof] = ACTIONS(2645), - [anon_sym__Generic] = ACTIONS(2645), - [anon_sym_asm] = ACTIONS(2645), - [anon_sym___asm__] = ACTIONS(2645), - [anon_sym___asm] = ACTIONS(2645), - [sym_number_literal] = ACTIONS(2647), - [anon_sym_L_SQUOTE] = ACTIONS(2647), - [anon_sym_u_SQUOTE] = ACTIONS(2647), - [anon_sym_U_SQUOTE] = ACTIONS(2647), - [anon_sym_u8_SQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_L_DQUOTE] = ACTIONS(2647), - [anon_sym_u_DQUOTE] = ACTIONS(2647), - [anon_sym_U_DQUOTE] = ACTIONS(2647), - [anon_sym_u8_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [anon_sym_NULL] = ACTIONS(2645), - [anon_sym_nullptr] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2645), - [anon_sym_decltype] = ACTIONS(2645), - [anon_sym_explicit] = ACTIONS(2645), - [anon_sym_typename] = ACTIONS(2645), - [anon_sym_export] = ACTIONS(2645), - [anon_sym_module] = ACTIONS(2645), - [anon_sym_import] = ACTIONS(2645), - [anon_sym_template] = ACTIONS(2645), - [anon_sym_operator] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_delete] = ACTIONS(2645), - [anon_sym_throw] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_static_assert] = ACTIONS(2645), - [anon_sym_concept] = ACTIONS(2645), - [anon_sym_co_return] = ACTIONS(2645), - [anon_sym_co_yield] = ACTIONS(2645), - [anon_sym_R_DQUOTE] = ACTIONS(2647), - [anon_sym_LR_DQUOTE] = ACTIONS(2647), - [anon_sym_uR_DQUOTE] = ACTIONS(2647), - [anon_sym_UR_DQUOTE] = ACTIONS(2647), - [anon_sym_u8R_DQUOTE] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_requires] = ACTIONS(2645), - [sym_this] = ACTIONS(2645), - }, - [STATE(410)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4432), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7201), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7570), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(258)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6448), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9370), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9595), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103109,274 +91106,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3250), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(411)] = { - [ts_builtin_sym_end] = ACTIONS(2725), - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_export] = ACTIONS(2723), - [anon_sym_module] = ACTIONS(2723), - [anon_sym_import] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2877), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(412)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4452), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7204), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7616), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(259)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6503), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9397), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9605), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103389,274 +91253,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3252), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(413)] = { - [sym_identifier] = ACTIONS(3254), - [aux_sym_preproc_include_token1] = ACTIONS(3254), - [aux_sym_preproc_def_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token2] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3254), - [aux_sym_preproc_else_token1] = ACTIONS(3254), - [aux_sym_preproc_elif_token1] = ACTIONS(3254), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3254), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3254), - [sym_preproc_directive] = ACTIONS(3254), - [anon_sym_LPAREN2] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym___extension__] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_virtual] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym___attribute__] = ACTIONS(3254), - [anon_sym___attribute] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_COLON_COLON] = ACTIONS(3256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3256), - [anon_sym___declspec] = ACTIONS(3254), - [anon_sym___based] = ACTIONS(3254), - [anon_sym___cdecl] = ACTIONS(3254), - [anon_sym___clrcall] = ACTIONS(3254), - [anon_sym___stdcall] = ACTIONS(3254), - [anon_sym___fastcall] = ACTIONS(3254), - [anon_sym___thiscall] = ACTIONS(3254), - [anon_sym___vectorcall] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_signed] = ACTIONS(3254), - [anon_sym_unsigned] = ACTIONS(3254), - [anon_sym_long] = ACTIONS(3254), - [anon_sym_short] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_register] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym___inline] = ACTIONS(3254), - [anon_sym___inline__] = ACTIONS(3254), - [anon_sym___forceinline] = ACTIONS(3254), - [anon_sym_thread_local] = ACTIONS(3254), - [anon_sym___thread] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_constexpr] = ACTIONS(3254), - [anon_sym_volatile] = ACTIONS(3254), - [anon_sym_restrict] = ACTIONS(3254), - [anon_sym___restrict__] = ACTIONS(3254), - [anon_sym__Atomic] = ACTIONS(3254), - [anon_sym__Noreturn] = ACTIONS(3254), - [anon_sym_noreturn] = ACTIONS(3254), - [anon_sym__Nonnull] = ACTIONS(3254), - [anon_sym_mutable] = ACTIONS(3254), - [anon_sym_constinit] = ACTIONS(3254), - [anon_sym_consteval] = ACTIONS(3254), - [anon_sym_alignas] = ACTIONS(3254), - [anon_sym__Alignas] = ACTIONS(3254), - [sym_primitive_type] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym___try] = ACTIONS(3254), - [anon_sym___leave] = ACTIONS(3254), - [anon_sym_not] = ACTIONS(3254), - [anon_sym_compl] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_sizeof] = ACTIONS(3254), - [anon_sym___alignof__] = ACTIONS(3254), - [anon_sym___alignof] = ACTIONS(3254), - [anon_sym__alignof] = ACTIONS(3254), - [anon_sym_alignof] = ACTIONS(3254), - [anon_sym__Alignof] = ACTIONS(3254), - [anon_sym_offsetof] = ACTIONS(3254), - [anon_sym__Generic] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym___asm__] = ACTIONS(3254), - [anon_sym___asm] = ACTIONS(3254), - [sym_number_literal] = ACTIONS(3256), - [anon_sym_L_SQUOTE] = ACTIONS(3256), - [anon_sym_u_SQUOTE] = ACTIONS(3256), - [anon_sym_U_SQUOTE] = ACTIONS(3256), - [anon_sym_u8_SQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_L_DQUOTE] = ACTIONS(3256), - [anon_sym_u_DQUOTE] = ACTIONS(3256), - [anon_sym_U_DQUOTE] = ACTIONS(3256), - [anon_sym_u8_DQUOTE] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [anon_sym_NULL] = ACTIONS(3254), - [anon_sym_nullptr] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3254), - [anon_sym_decltype] = ACTIONS(3254), - [anon_sym_explicit] = ACTIONS(3254), - [anon_sym_typename] = ACTIONS(3254), - [anon_sym_template] = ACTIONS(3254), - [anon_sym_operator] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_static_assert] = ACTIONS(3254), - [anon_sym_concept] = ACTIONS(3254), - [anon_sym_co_return] = ACTIONS(3254), - [anon_sym_co_yield] = ACTIONS(3254), - [anon_sym_R_DQUOTE] = ACTIONS(3256), - [anon_sym_LR_DQUOTE] = ACTIONS(3256), - [anon_sym_uR_DQUOTE] = ACTIONS(3256), - [anon_sym_UR_DQUOTE] = ACTIONS(3256), - [anon_sym_u8R_DQUOTE] = ACTIONS(3256), - [anon_sym_co_await] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_requires] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2879), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(414)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4475), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7209), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7660), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(260)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6504), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9439), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9616), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103669,414 +91400,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3258), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(415)] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_export] = ACTIONS(2703), - [anon_sym_module] = ACTIONS(2703), - [anon_sym_import] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2881), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(416)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_include_token1] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token2] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [aux_sym_preproc_else_token1] = ACTIONS(3260), - [aux_sym_preproc_elif_token1] = ACTIONS(3260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym___cdecl] = ACTIONS(3260), - [anon_sym___clrcall] = ACTIONS(3260), - [anon_sym___stdcall] = ACTIONS(3260), - [anon_sym___fastcall] = ACTIONS(3260), - [anon_sym___thiscall] = ACTIONS(3260), - [anon_sym___vectorcall] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_goto] = ACTIONS(3260), - [anon_sym___try] = ACTIONS(3260), - [anon_sym___leave] = ACTIONS(3260), - [anon_sym_not] = ACTIONS(3260), - [anon_sym_compl] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_sizeof] = ACTIONS(3260), - [anon_sym___alignof__] = ACTIONS(3260), - [anon_sym___alignof] = ACTIONS(3260), - [anon_sym__alignof] = ACTIONS(3260), - [anon_sym_alignof] = ACTIONS(3260), - [anon_sym__Alignof] = ACTIONS(3260), - [anon_sym_offsetof] = ACTIONS(3260), - [anon_sym__Generic] = ACTIONS(3260), - [anon_sym_asm] = ACTIONS(3260), - [anon_sym___asm__] = ACTIONS(3260), - [anon_sym___asm] = ACTIONS(3260), - [sym_number_literal] = ACTIONS(3262), - [anon_sym_L_SQUOTE] = ACTIONS(3262), - [anon_sym_u_SQUOTE] = ACTIONS(3262), - [anon_sym_U_SQUOTE] = ACTIONS(3262), - [anon_sym_u8_SQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_L_DQUOTE] = ACTIONS(3262), - [anon_sym_u_DQUOTE] = ACTIONS(3262), - [anon_sym_U_DQUOTE] = ACTIONS(3262), - [anon_sym_u8_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [anon_sym_NULL] = ACTIONS(3260), - [anon_sym_nullptr] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), - [anon_sym_concept] = ACTIONS(3260), - [anon_sym_co_return] = ACTIONS(3260), - [anon_sym_co_yield] = ACTIONS(3260), - [anon_sym_R_DQUOTE] = ACTIONS(3262), - [anon_sym_LR_DQUOTE] = ACTIONS(3262), - [anon_sym_uR_DQUOTE] = ACTIONS(3262), - [anon_sym_UR_DQUOTE] = ACTIONS(3262), - [anon_sym_u8R_DQUOTE] = ACTIONS(3262), - [anon_sym_co_await] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_requires] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - }, - [STATE(417)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4479), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7214), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7699), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(261)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6505), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9449), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9626), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104089,414 +91547,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3264), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(418)] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_elifdef_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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(419)] = { - [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), - [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_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_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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), - [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_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_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), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2883), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(420)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4407), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7219), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(7731), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(262)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6506), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9462), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9634), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104509,4605 +91694,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(3274), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(421)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_include_token1] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token2] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [aux_sym_preproc_else_token1] = ACTIONS(3276), - [aux_sym_preproc_elif_token1] = ACTIONS(3276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym___cdecl] = ACTIONS(3276), - [anon_sym___clrcall] = ACTIONS(3276), - [anon_sym___stdcall] = ACTIONS(3276), - [anon_sym___fastcall] = ACTIONS(3276), - [anon_sym___thiscall] = ACTIONS(3276), - [anon_sym___vectorcall] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_goto] = ACTIONS(3276), - [anon_sym___try] = ACTIONS(3276), - [anon_sym___leave] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3276), - [anon_sym_compl] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_sizeof] = ACTIONS(3276), - [anon_sym___alignof__] = ACTIONS(3276), - [anon_sym___alignof] = ACTIONS(3276), - [anon_sym__alignof] = ACTIONS(3276), - [anon_sym_alignof] = ACTIONS(3276), - [anon_sym__Alignof] = ACTIONS(3276), - [anon_sym_offsetof] = ACTIONS(3276), - [anon_sym__Generic] = ACTIONS(3276), - [anon_sym_asm] = ACTIONS(3276), - [anon_sym___asm__] = ACTIONS(3276), - [anon_sym___asm] = ACTIONS(3276), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_L_SQUOTE] = ACTIONS(3278), - [anon_sym_u_SQUOTE] = ACTIONS(3278), - [anon_sym_U_SQUOTE] = ACTIONS(3278), - [anon_sym_u8_SQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_L_DQUOTE] = ACTIONS(3278), - [anon_sym_u_DQUOTE] = ACTIONS(3278), - [anon_sym_U_DQUOTE] = ACTIONS(3278), - [anon_sym_u8_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [anon_sym_NULL] = ACTIONS(3276), - [anon_sym_nullptr] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), - [anon_sym_concept] = ACTIONS(3276), - [anon_sym_co_return] = ACTIONS(3276), - [anon_sym_co_yield] = ACTIONS(3276), - [anon_sym_R_DQUOTE] = ACTIONS(3278), - [anon_sym_LR_DQUOTE] = ACTIONS(3278), - [anon_sym_uR_DQUOTE] = ACTIONS(3278), - [anon_sym_UR_DQUOTE] = ACTIONS(3278), - [anon_sym_u8R_DQUOTE] = ACTIONS(3278), - [anon_sym_co_await] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_requires] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - }, - [STATE(422)] = { - [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_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(423)] = { - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_export] = ACTIONS(2683), - [anon_sym_module] = ACTIONS(2683), - [anon_sym_import] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(424)] = { - [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_virtual] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym___attribute] = ACTIONS(3284), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(425)] = { - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(426)] = { - [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_virtual] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym___attribute] = ACTIONS(3292), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(427)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_include_token1] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token2] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [aux_sym_preproc_else_token1] = ACTIONS(3296), - [aux_sym_preproc_elif_token1] = ACTIONS(3296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym___cdecl] = ACTIONS(3296), - [anon_sym___clrcall] = ACTIONS(3296), - [anon_sym___stdcall] = ACTIONS(3296), - [anon_sym___fastcall] = ACTIONS(3296), - [anon_sym___thiscall] = ACTIONS(3296), - [anon_sym___vectorcall] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_goto] = ACTIONS(3296), - [anon_sym___try] = ACTIONS(3296), - [anon_sym___leave] = ACTIONS(3296), - [anon_sym_not] = ACTIONS(3296), - [anon_sym_compl] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_sizeof] = ACTIONS(3296), - [anon_sym___alignof__] = ACTIONS(3296), - [anon_sym___alignof] = ACTIONS(3296), - [anon_sym__alignof] = ACTIONS(3296), - [anon_sym_alignof] = ACTIONS(3296), - [anon_sym__Alignof] = ACTIONS(3296), - [anon_sym_offsetof] = ACTIONS(3296), - [anon_sym__Generic] = ACTIONS(3296), - [anon_sym_asm] = ACTIONS(3296), - [anon_sym___asm__] = ACTIONS(3296), - [anon_sym___asm] = ACTIONS(3296), - [sym_number_literal] = ACTIONS(3298), - [anon_sym_L_SQUOTE] = ACTIONS(3298), - [anon_sym_u_SQUOTE] = ACTIONS(3298), - [anon_sym_U_SQUOTE] = ACTIONS(3298), - [anon_sym_u8_SQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_L_DQUOTE] = ACTIONS(3298), - [anon_sym_u_DQUOTE] = ACTIONS(3298), - [anon_sym_U_DQUOTE] = ACTIONS(3298), - [anon_sym_u8_DQUOTE] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [anon_sym_NULL] = ACTIONS(3296), - [anon_sym_nullptr] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), - [anon_sym_concept] = ACTIONS(3296), - [anon_sym_co_return] = ACTIONS(3296), - [anon_sym_co_yield] = ACTIONS(3296), - [anon_sym_R_DQUOTE] = ACTIONS(3298), - [anon_sym_LR_DQUOTE] = ACTIONS(3298), - [anon_sym_uR_DQUOTE] = ACTIONS(3298), - [anon_sym_UR_DQUOTE] = ACTIONS(3298), - [anon_sym_u8R_DQUOTE] = ACTIONS(3298), - [anon_sym_co_await] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_requires] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - }, - [STATE(428)] = { - [sym_identifier] = ACTIONS(3300), - [aux_sym_preproc_include_token1] = ACTIONS(3300), - [aux_sym_preproc_def_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token2] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), - [aux_sym_preproc_else_token1] = ACTIONS(3300), - [aux_sym_preproc_elif_token1] = ACTIONS(3300), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3300), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3300), - [sym_preproc_directive] = ACTIONS(3300), - [anon_sym_LPAREN2] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_virtual] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym___attribute__] = ACTIONS(3300), - [anon_sym___attribute] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_COLON_COLON] = ACTIONS(3302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3302), - [anon_sym___declspec] = ACTIONS(3300), - [anon_sym___based] = ACTIONS(3300), - [anon_sym___cdecl] = ACTIONS(3300), - [anon_sym___clrcall] = ACTIONS(3300), - [anon_sym___stdcall] = ACTIONS(3300), - [anon_sym___fastcall] = ACTIONS(3300), - [anon_sym___thiscall] = ACTIONS(3300), - [anon_sym___vectorcall] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3300), - [anon_sym_unsigned] = ACTIONS(3300), - [anon_sym_long] = ACTIONS(3300), - [anon_sym_short] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_register] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym___inline] = ACTIONS(3300), - [anon_sym___inline__] = ACTIONS(3300), - [anon_sym___forceinline] = ACTIONS(3300), - [anon_sym_thread_local] = ACTIONS(3300), - [anon_sym___thread] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_constexpr] = ACTIONS(3300), - [anon_sym_volatile] = ACTIONS(3300), - [anon_sym_restrict] = ACTIONS(3300), - [anon_sym___restrict__] = ACTIONS(3300), - [anon_sym__Atomic] = ACTIONS(3300), - [anon_sym__Noreturn] = ACTIONS(3300), - [anon_sym_noreturn] = ACTIONS(3300), - [anon_sym__Nonnull] = ACTIONS(3300), - [anon_sym_mutable] = ACTIONS(3300), - [anon_sym_constinit] = ACTIONS(3300), - [anon_sym_consteval] = ACTIONS(3300), - [anon_sym_alignas] = ACTIONS(3300), - [anon_sym__Alignas] = ACTIONS(3300), - [sym_primitive_type] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym___try] = ACTIONS(3300), - [anon_sym___leave] = ACTIONS(3300), - [anon_sym_not] = ACTIONS(3300), - [anon_sym_compl] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_sizeof] = ACTIONS(3300), - [anon_sym___alignof__] = ACTIONS(3300), - [anon_sym___alignof] = ACTIONS(3300), - [anon_sym__alignof] = ACTIONS(3300), - [anon_sym_alignof] = ACTIONS(3300), - [anon_sym__Alignof] = ACTIONS(3300), - [anon_sym_offsetof] = ACTIONS(3300), - [anon_sym__Generic] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym___asm__] = ACTIONS(3300), - [anon_sym___asm] = ACTIONS(3300), - [sym_number_literal] = ACTIONS(3302), - [anon_sym_L_SQUOTE] = ACTIONS(3302), - [anon_sym_u_SQUOTE] = ACTIONS(3302), - [anon_sym_U_SQUOTE] = ACTIONS(3302), - [anon_sym_u8_SQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_L_DQUOTE] = ACTIONS(3302), - [anon_sym_u_DQUOTE] = ACTIONS(3302), - [anon_sym_U_DQUOTE] = ACTIONS(3302), - [anon_sym_u8_DQUOTE] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [anon_sym_NULL] = ACTIONS(3300), - [anon_sym_nullptr] = ACTIONS(3300), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3300), - [anon_sym_decltype] = ACTIONS(3300), - [anon_sym_explicit] = ACTIONS(3300), - [anon_sym_typename] = ACTIONS(3300), - [anon_sym_template] = ACTIONS(3300), - [anon_sym_operator] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_static_assert] = ACTIONS(3300), - [anon_sym_concept] = ACTIONS(3300), - [anon_sym_co_return] = ACTIONS(3300), - [anon_sym_co_yield] = ACTIONS(3300), - [anon_sym_R_DQUOTE] = ACTIONS(3302), - [anon_sym_LR_DQUOTE] = ACTIONS(3302), - [anon_sym_uR_DQUOTE] = ACTIONS(3302), - [anon_sym_UR_DQUOTE] = ACTIONS(3302), - [anon_sym_u8R_DQUOTE] = ACTIONS(3302), - [anon_sym_co_await] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_requires] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - }, - [STATE(429)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_include_token1] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token2] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [aux_sym_preproc_else_token1] = ACTIONS(3304), - [aux_sym_preproc_elif_token1] = ACTIONS(3304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym___cdecl] = ACTIONS(3304), - [anon_sym___clrcall] = ACTIONS(3304), - [anon_sym___stdcall] = ACTIONS(3304), - [anon_sym___fastcall] = ACTIONS(3304), - [anon_sym___thiscall] = ACTIONS(3304), - [anon_sym___vectorcall] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym___try] = ACTIONS(3304), - [anon_sym___leave] = ACTIONS(3304), - [anon_sym_not] = ACTIONS(3304), - [anon_sym_compl] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_sizeof] = ACTIONS(3304), - [anon_sym___alignof__] = ACTIONS(3304), - [anon_sym___alignof] = ACTIONS(3304), - [anon_sym__alignof] = ACTIONS(3304), - [anon_sym_alignof] = ACTIONS(3304), - [anon_sym__Alignof] = ACTIONS(3304), - [anon_sym_offsetof] = ACTIONS(3304), - [anon_sym__Generic] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - [anon_sym___asm__] = ACTIONS(3304), - [anon_sym___asm] = ACTIONS(3304), - [sym_number_literal] = ACTIONS(3306), - [anon_sym_L_SQUOTE] = ACTIONS(3306), - [anon_sym_u_SQUOTE] = ACTIONS(3306), - [anon_sym_U_SQUOTE] = ACTIONS(3306), - [anon_sym_u8_SQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [anon_sym_NULL] = ACTIONS(3304), - [anon_sym_nullptr] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - [anon_sym_concept] = ACTIONS(3304), - [anon_sym_co_return] = ACTIONS(3304), - [anon_sym_co_yield] = ACTIONS(3304), - [anon_sym_R_DQUOTE] = ACTIONS(3306), - [anon_sym_LR_DQUOTE] = ACTIONS(3306), - [anon_sym_uR_DQUOTE] = ACTIONS(3306), - [anon_sym_UR_DQUOTE] = ACTIONS(3306), - [anon_sym_u8R_DQUOTE] = ACTIONS(3306), - [anon_sym_co_await] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_requires] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - }, - [STATE(430)] = { - [sym_catch_clause] = STATE(438), - [aux_sym_constructor_try_statement_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_include_token1] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token2] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym___cdecl] = ACTIONS(2543), - [anon_sym___clrcall] = ACTIONS(2543), - [anon_sym___stdcall] = ACTIONS(2543), - [anon_sym___fastcall] = ACTIONS(2543), - [anon_sym___thiscall] = ACTIONS(2543), - [anon_sym___vectorcall] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_switch] = ACTIONS(2543), - [anon_sym_case] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_goto] = ACTIONS(2543), - [anon_sym___try] = ACTIONS(2543), - [anon_sym___leave] = ACTIONS(2543), - [anon_sym_not] = ACTIONS(2543), - [anon_sym_compl] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_sizeof] = ACTIONS(2543), - [anon_sym___alignof__] = ACTIONS(2543), - [anon_sym___alignof] = ACTIONS(2543), - [anon_sym__alignof] = ACTIONS(2543), - [anon_sym_alignof] = ACTIONS(2543), - [anon_sym__Alignof] = ACTIONS(2543), - [anon_sym_offsetof] = ACTIONS(2543), - [anon_sym__Generic] = ACTIONS(2543), - [anon_sym_asm] = ACTIONS(2543), - [anon_sym___asm__] = ACTIONS(2543), - [anon_sym___asm] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_L_SQUOTE] = ACTIONS(2545), - [anon_sym_u_SQUOTE] = ACTIONS(2545), - [anon_sym_U_SQUOTE] = ACTIONS(2545), - [anon_sym_u8_SQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_L_DQUOTE] = ACTIONS(2545), - [anon_sym_u_DQUOTE] = ACTIONS(2545), - [anon_sym_U_DQUOTE] = ACTIONS(2545), - [anon_sym_u8_DQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2543), - [anon_sym_nullptr] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_throw] = ACTIONS(2543), - [anon_sym_namespace] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_concept] = ACTIONS(2543), - [anon_sym_co_return] = ACTIONS(2543), - [anon_sym_co_yield] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(2545), - [anon_sym_LR_DQUOTE] = ACTIONS(2545), - [anon_sym_uR_DQUOTE] = ACTIONS(2545), - [anon_sym_UR_DQUOTE] = ACTIONS(2545), - [anon_sym_u8R_DQUOTE] = ACTIONS(2545), - [anon_sym_co_await] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_requires] = ACTIONS(2543), - [sym_this] = ACTIONS(2543), - }, - [STATE(431)] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym___extension__] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym___attribute] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym___inline] = ACTIONS(2633), - [anon_sym___inline__] = ACTIONS(2633), - [anon_sym___forceinline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym___thread] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym___restrict__] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym__Noreturn] = ACTIONS(2633), - [anon_sym_noreturn] = ACTIONS(2633), - [anon_sym__Nonnull] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_alignas] = ACTIONS(2633), - [anon_sym__Alignas] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym___try] = ACTIONS(2633), - [anon_sym___leave] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_compl] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [anon_sym___alignof__] = ACTIONS(2633), - [anon_sym___alignof] = ACTIONS(2633), - [anon_sym__alignof] = ACTIONS(2633), - [anon_sym_alignof] = ACTIONS(2633), - [anon_sym__Alignof] = ACTIONS(2633), - [anon_sym_offsetof] = ACTIONS(2633), - [anon_sym__Generic] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym___asm__] = ACTIONS(2633), - [anon_sym___asm] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [anon_sym_NULL] = ACTIONS(2633), - [anon_sym_nullptr] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_export] = ACTIONS(2633), - [anon_sym_module] = ACTIONS(2633), - [anon_sym_import] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_R_DQUOTE] = ACTIONS(2635), - [anon_sym_LR_DQUOTE] = ACTIONS(2635), - [anon_sym_uR_DQUOTE] = ACTIONS(2635), - [anon_sym_UR_DQUOTE] = ACTIONS(2635), - [anon_sym_u8R_DQUOTE] = ACTIONS(2635), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - }, - [STATE(432)] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_export] = ACTIONS(2695), - [anon_sym_module] = ACTIONS(2695), - [anon_sym_import] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - }, - [STATE(433)] = { - [sym_identifier] = ACTIONS(3310), - [aux_sym_preproc_include_token1] = ACTIONS(3310), - [aux_sym_preproc_def_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token2] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), - [aux_sym_preproc_else_token1] = ACTIONS(3310), - [aux_sym_preproc_elif_token1] = ACTIONS(3310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3310), - [sym_preproc_directive] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(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_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_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), - [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_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_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), - }, - [STATE(434)] = { - [sym_identifier] = ACTIONS(3314), - [aux_sym_preproc_include_token1] = ACTIONS(3314), - [aux_sym_preproc_def_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token2] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3314), - [aux_sym_preproc_else_token1] = ACTIONS(3314), - [aux_sym_preproc_elif_token1] = ACTIONS(3314), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3314), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3314), - [sym_preproc_directive] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = ACTIONS(3314), - [anon_sym___attribute] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3314), - [anon_sym___based] = ACTIONS(3314), - [anon_sym___cdecl] = ACTIONS(3314), - [anon_sym___clrcall] = ACTIONS(3314), - [anon_sym___stdcall] = ACTIONS(3314), - [anon_sym___fastcall] = ACTIONS(3314), - [anon_sym___thiscall] = ACTIONS(3314), - [anon_sym___vectorcall] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3314), - [anon_sym_unsigned] = ACTIONS(3314), - [anon_sym_long] = ACTIONS(3314), - [anon_sym_short] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_register] = ACTIONS(3314), - [anon_sym_inline] = ACTIONS(3314), - [anon_sym___inline] = ACTIONS(3314), - [anon_sym___inline__] = ACTIONS(3314), - [anon_sym___forceinline] = ACTIONS(3314), - [anon_sym_thread_local] = ACTIONS(3314), - [anon_sym___thread] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_constexpr] = ACTIONS(3314), - [anon_sym_volatile] = ACTIONS(3314), - [anon_sym_restrict] = ACTIONS(3314), - [anon_sym___restrict__] = ACTIONS(3314), - [anon_sym__Atomic] = ACTIONS(3314), - [anon_sym__Noreturn] = ACTIONS(3314), - [anon_sym_noreturn] = ACTIONS(3314), - [anon_sym__Nonnull] = ACTIONS(3314), - [anon_sym_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym__Alignas] = ACTIONS(3314), - [sym_primitive_type] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym___try] = ACTIONS(3314), - [anon_sym___leave] = ACTIONS(3314), - [anon_sym_not] = ACTIONS(3314), - [anon_sym_compl] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3314), - [anon_sym___alignof__] = ACTIONS(3314), - [anon_sym___alignof] = ACTIONS(3314), - [anon_sym__alignof] = ACTIONS(3314), - [anon_sym_alignof] = ACTIONS(3314), - [anon_sym__Alignof] = ACTIONS(3314), - [anon_sym_offsetof] = ACTIONS(3314), - [anon_sym__Generic] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym___asm__] = ACTIONS(3314), - [anon_sym___asm] = ACTIONS(3314), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [anon_sym_NULL] = ACTIONS(3314), - [anon_sym_nullptr] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - [anon_sym_concept] = ACTIONS(3314), - [anon_sym_co_return] = ACTIONS(3314), - [anon_sym_co_yield] = ACTIONS(3314), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_requires] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - }, - [STATE(435)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_include_token1] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token2] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [aux_sym_preproc_else_token1] = ACTIONS(3318), - [aux_sym_preproc_elif_token1] = ACTIONS(3318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = 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_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = ACTIONS(3318), - [anon_sym___cdecl] = ACTIONS(3318), - [anon_sym___clrcall] = ACTIONS(3318), - [anon_sym___stdcall] = ACTIONS(3318), - [anon_sym___fastcall] = ACTIONS(3318), - [anon_sym___thiscall] = ACTIONS(3318), - [anon_sym___vectorcall] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3320), - [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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym___try] = ACTIONS(3318), - [anon_sym___leave] = 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), - [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_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), - [anon_sym_concept] = ACTIONS(3318), - [anon_sym_co_return] = ACTIONS(3318), - [anon_sym_co_yield] = 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), - }, - [STATE(436)] = { - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_export] = ACTIONS(2707), - [anon_sym_module] = ACTIONS(2707), - [anon_sym_import] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), - }, - [STATE(437)] = { - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_export] = ACTIONS(2683), - [anon_sym_module] = ACTIONS(2683), - [anon_sym_import] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(438)] = { - [sym_catch_clause] = STATE(438), - [aux_sym_constructor_try_statement_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token2] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym___cdecl] = ACTIONS(2478), - [anon_sym___clrcall] = ACTIONS(2478), - [anon_sym___stdcall] = ACTIONS(2478), - [anon_sym___fastcall] = ACTIONS(2478), - [anon_sym___thiscall] = ACTIONS(2478), - [anon_sym___vectorcall] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym___try] = ACTIONS(2478), - [anon_sym___leave] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2478), - [anon_sym___alignof__] = ACTIONS(2478), - [anon_sym___alignof] = ACTIONS(2478), - [anon_sym__alignof] = ACTIONS(2478), - [anon_sym_alignof] = ACTIONS(2478), - [anon_sym__Alignof] = ACTIONS(2478), - [anon_sym_offsetof] = ACTIONS(2478), - [anon_sym__Generic] = ACTIONS(2478), - [anon_sym_asm] = ACTIONS(2478), - [anon_sym___asm__] = ACTIONS(2478), - [anon_sym___asm] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_L_SQUOTE] = ACTIONS(2480), - [anon_sym_u_SQUOTE] = ACTIONS(2480), - [anon_sym_U_SQUOTE] = ACTIONS(2480), - [anon_sym_u8_SQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_nullptr] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(3322), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - }, - [STATE(439)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_include_token1] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token2] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [aux_sym_preproc_else_token1] = ACTIONS(3325), - [aux_sym_preproc_elif_token1] = ACTIONS(3325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym___cdecl] = ACTIONS(3325), - [anon_sym___clrcall] = ACTIONS(3325), - [anon_sym___stdcall] = ACTIONS(3325), - [anon_sym___fastcall] = ACTIONS(3325), - [anon_sym___thiscall] = ACTIONS(3325), - [anon_sym___vectorcall] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym___try] = ACTIONS(3325), - [anon_sym___leave] = ACTIONS(3325), - [anon_sym_not] = ACTIONS(3325), - [anon_sym_compl] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym___alignof__] = ACTIONS(3325), - [anon_sym___alignof] = ACTIONS(3325), - [anon_sym__alignof] = ACTIONS(3325), - [anon_sym_alignof] = ACTIONS(3325), - [anon_sym__Alignof] = ACTIONS(3325), - [anon_sym_offsetof] = ACTIONS(3325), - [anon_sym__Generic] = ACTIONS(3325), - [anon_sym_asm] = ACTIONS(3325), - [anon_sym___asm__] = ACTIONS(3325), - [anon_sym___asm] = ACTIONS(3325), - [sym_number_literal] = ACTIONS(3327), - [anon_sym_L_SQUOTE] = ACTIONS(3327), - [anon_sym_u_SQUOTE] = ACTIONS(3327), - [anon_sym_U_SQUOTE] = ACTIONS(3327), - [anon_sym_u8_SQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_L_DQUOTE] = ACTIONS(3327), - [anon_sym_u_DQUOTE] = ACTIONS(3327), - [anon_sym_U_DQUOTE] = ACTIONS(3327), - [anon_sym_u8_DQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [anon_sym_NULL] = ACTIONS(3325), - [anon_sym_nullptr] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), - [anon_sym_concept] = ACTIONS(3325), - [anon_sym_co_return] = ACTIONS(3325), - [anon_sym_co_yield] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_requires] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - }, - [STATE(440)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_include_token1] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token2] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [aux_sym_preproc_else_token1] = ACTIONS(3329), - [aux_sym_preproc_elif_token1] = ACTIONS(3329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym___cdecl] = ACTIONS(3329), - [anon_sym___clrcall] = ACTIONS(3329), - [anon_sym___stdcall] = ACTIONS(3329), - [anon_sym___fastcall] = ACTIONS(3329), - [anon_sym___thiscall] = ACTIONS(3329), - [anon_sym___vectorcall] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym___try] = ACTIONS(3329), - [anon_sym___leave] = ACTIONS(3329), - [anon_sym_not] = ACTIONS(3329), - [anon_sym_compl] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym___alignof__] = ACTIONS(3329), - [anon_sym___alignof] = ACTIONS(3329), - [anon_sym__alignof] = ACTIONS(3329), - [anon_sym_alignof] = ACTIONS(3329), - [anon_sym__Alignof] = ACTIONS(3329), - [anon_sym_offsetof] = ACTIONS(3329), - [anon_sym__Generic] = ACTIONS(3329), - [anon_sym_asm] = ACTIONS(3329), - [anon_sym___asm__] = ACTIONS(3329), - [anon_sym___asm] = ACTIONS(3329), - [sym_number_literal] = ACTIONS(3331), - [anon_sym_L_SQUOTE] = ACTIONS(3331), - [anon_sym_u_SQUOTE] = ACTIONS(3331), - [anon_sym_U_SQUOTE] = ACTIONS(3331), - [anon_sym_u8_SQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_L_DQUOTE] = ACTIONS(3331), - [anon_sym_u_DQUOTE] = ACTIONS(3331), - [anon_sym_U_DQUOTE] = ACTIONS(3331), - [anon_sym_u8_DQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [anon_sym_NULL] = ACTIONS(3329), - [anon_sym_nullptr] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), - [anon_sym_concept] = ACTIONS(3329), - [anon_sym_co_return] = ACTIONS(3329), - [anon_sym_co_yield] = ACTIONS(3329), - [anon_sym_R_DQUOTE] = ACTIONS(3331), - [anon_sym_LR_DQUOTE] = ACTIONS(3331), - [anon_sym_uR_DQUOTE] = ACTIONS(3331), - [anon_sym_UR_DQUOTE] = ACTIONS(3331), - [anon_sym_u8R_DQUOTE] = ACTIONS(3331), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_requires] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - }, - [STATE(441)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_include_token1] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token2] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [aux_sym_preproc_else_token1] = ACTIONS(3333), - [aux_sym_preproc_elif_token1] = ACTIONS(3333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym___cdecl] = ACTIONS(3333), - [anon_sym___clrcall] = ACTIONS(3333), - [anon_sym___stdcall] = ACTIONS(3333), - [anon_sym___fastcall] = ACTIONS(3333), - [anon_sym___thiscall] = ACTIONS(3333), - [anon_sym___vectorcall] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym___try] = ACTIONS(3333), - [anon_sym___leave] = ACTIONS(3333), - [anon_sym_not] = ACTIONS(3333), - [anon_sym_compl] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym___alignof__] = ACTIONS(3333), - [anon_sym___alignof] = ACTIONS(3333), - [anon_sym__alignof] = ACTIONS(3333), - [anon_sym_alignof] = ACTIONS(3333), - [anon_sym__Alignof] = ACTIONS(3333), - [anon_sym_offsetof] = ACTIONS(3333), - [anon_sym__Generic] = ACTIONS(3333), - [anon_sym_asm] = ACTIONS(3333), - [anon_sym___asm__] = ACTIONS(3333), - [anon_sym___asm] = ACTIONS(3333), - [sym_number_literal] = ACTIONS(3335), - [anon_sym_L_SQUOTE] = ACTIONS(3335), - [anon_sym_u_SQUOTE] = ACTIONS(3335), - [anon_sym_U_SQUOTE] = ACTIONS(3335), - [anon_sym_u8_SQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_L_DQUOTE] = ACTIONS(3335), - [anon_sym_u_DQUOTE] = ACTIONS(3335), - [anon_sym_U_DQUOTE] = ACTIONS(3335), - [anon_sym_u8_DQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [anon_sym_NULL] = ACTIONS(3333), - [anon_sym_nullptr] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), - [anon_sym_concept] = ACTIONS(3333), - [anon_sym_co_return] = ACTIONS(3333), - [anon_sym_co_yield] = ACTIONS(3333), - [anon_sym_R_DQUOTE] = ACTIONS(3335), - [anon_sym_LR_DQUOTE] = ACTIONS(3335), - [anon_sym_uR_DQUOTE] = ACTIONS(3335), - [anon_sym_UR_DQUOTE] = ACTIONS(3335), - [anon_sym_u8R_DQUOTE] = ACTIONS(3335), - [anon_sym_co_await] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - }, - [STATE(442)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_include_token1] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token2] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [aux_sym_preproc_else_token1] = ACTIONS(3337), - [aux_sym_preproc_elif_token1] = ACTIONS(3337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym___cdecl] = ACTIONS(3337), - [anon_sym___clrcall] = ACTIONS(3337), - [anon_sym___stdcall] = ACTIONS(3337), - [anon_sym___fastcall] = ACTIONS(3337), - [anon_sym___thiscall] = ACTIONS(3337), - [anon_sym___vectorcall] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym___try] = ACTIONS(3337), - [anon_sym___leave] = ACTIONS(3337), - [anon_sym_not] = ACTIONS(3337), - [anon_sym_compl] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym___alignof__] = ACTIONS(3337), - [anon_sym___alignof] = ACTIONS(3337), - [anon_sym__alignof] = ACTIONS(3337), - [anon_sym_alignof] = ACTIONS(3337), - [anon_sym__Alignof] = ACTIONS(3337), - [anon_sym_offsetof] = ACTIONS(3337), - [anon_sym__Generic] = ACTIONS(3337), - [anon_sym_asm] = ACTIONS(3337), - [anon_sym___asm__] = ACTIONS(3337), - [anon_sym___asm] = ACTIONS(3337), - [sym_number_literal] = ACTIONS(3339), - [anon_sym_L_SQUOTE] = ACTIONS(3339), - [anon_sym_u_SQUOTE] = ACTIONS(3339), - [anon_sym_U_SQUOTE] = ACTIONS(3339), - [anon_sym_u8_SQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_L_DQUOTE] = ACTIONS(3339), - [anon_sym_u_DQUOTE] = ACTIONS(3339), - [anon_sym_U_DQUOTE] = ACTIONS(3339), - [anon_sym_u8_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [anon_sym_NULL] = ACTIONS(3337), - [anon_sym_nullptr] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), - [anon_sym_concept] = ACTIONS(3337), - [anon_sym_co_return] = ACTIONS(3337), - [anon_sym_co_yield] = ACTIONS(3337), - [anon_sym_R_DQUOTE] = ACTIONS(3339), - [anon_sym_LR_DQUOTE] = ACTIONS(3339), - [anon_sym_uR_DQUOTE] = ACTIONS(3339), - [anon_sym_UR_DQUOTE] = ACTIONS(3339), - [anon_sym_u8R_DQUOTE] = ACTIONS(3339), - [anon_sym_co_await] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_requires] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - }, - [STATE(443)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [aux_sym_preproc_else_token1] = ACTIONS(2919), - [aux_sym_preproc_elif_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(444)] = { - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_include_token1] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym___cdecl] = ACTIONS(3296), - [anon_sym___clrcall] = ACTIONS(3296), - [anon_sym___stdcall] = ACTIONS(3296), - [anon_sym___fastcall] = ACTIONS(3296), - [anon_sym___thiscall] = ACTIONS(3296), - [anon_sym___vectorcall] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_goto] = ACTIONS(3296), - [anon_sym_not] = ACTIONS(3296), - [anon_sym_compl] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_sizeof] = ACTIONS(3296), - [anon_sym___alignof__] = ACTIONS(3296), - [anon_sym___alignof] = ACTIONS(3296), - [anon_sym__alignof] = ACTIONS(3296), - [anon_sym_alignof] = ACTIONS(3296), - [anon_sym__Alignof] = ACTIONS(3296), - [anon_sym_offsetof] = ACTIONS(3296), - [anon_sym__Generic] = ACTIONS(3296), - [anon_sym_asm] = ACTIONS(3296), - [anon_sym___asm__] = ACTIONS(3296), - [anon_sym___asm] = ACTIONS(3296), - [sym_number_literal] = ACTIONS(3298), - [anon_sym_L_SQUOTE] = ACTIONS(3298), - [anon_sym_u_SQUOTE] = ACTIONS(3298), - [anon_sym_U_SQUOTE] = ACTIONS(3298), - [anon_sym_u8_SQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_L_DQUOTE] = ACTIONS(3298), - [anon_sym_u_DQUOTE] = ACTIONS(3298), - [anon_sym_U_DQUOTE] = ACTIONS(3298), - [anon_sym_u8_DQUOTE] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [anon_sym_NULL] = ACTIONS(3296), - [anon_sym_nullptr] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), - [anon_sym_concept] = ACTIONS(3296), - [anon_sym_co_return] = ACTIONS(3296), - [anon_sym_co_yield] = ACTIONS(3296), - [anon_sym_R_DQUOTE] = ACTIONS(3298), - [anon_sym_LR_DQUOTE] = ACTIONS(3298), - [anon_sym_uR_DQUOTE] = ACTIONS(3298), - [anon_sym_UR_DQUOTE] = ACTIONS(3298), - [anon_sym_u8R_DQUOTE] = ACTIONS(3298), - [anon_sym_co_await] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_requires] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - }, - [STATE(445)] = { - [sym_catch_clause] = STATE(438), - [aux_sym_constructor_try_statement_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_include_token1] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token2] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym___cdecl] = ACTIONS(2594), - [anon_sym___clrcall] = ACTIONS(2594), - [anon_sym___stdcall] = ACTIONS(2594), - [anon_sym___fastcall] = ACTIONS(2594), - [anon_sym___thiscall] = ACTIONS(2594), - [anon_sym___vectorcall] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym___try] = ACTIONS(2594), - [anon_sym___leave] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(2594), - [anon_sym_compl] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [anon_sym___alignof__] = ACTIONS(2594), - [anon_sym___alignof] = ACTIONS(2594), - [anon_sym__alignof] = ACTIONS(2594), - [anon_sym_alignof] = ACTIONS(2594), - [anon_sym__Alignof] = ACTIONS(2594), - [anon_sym_offsetof] = ACTIONS(2594), - [anon_sym__Generic] = ACTIONS(2594), - [anon_sym_asm] = ACTIONS(2594), - [anon_sym___asm__] = ACTIONS(2594), - [anon_sym___asm] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_L_SQUOTE] = ACTIONS(2596), - [anon_sym_u_SQUOTE] = ACTIONS(2596), - [anon_sym_U_SQUOTE] = ACTIONS(2596), - [anon_sym_u8_SQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_L_DQUOTE] = ACTIONS(2596), - [anon_sym_u_DQUOTE] = ACTIONS(2596), - [anon_sym_U_DQUOTE] = ACTIONS(2596), - [anon_sym_u8_DQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [anon_sym_NULL] = ACTIONS(2594), - [anon_sym_nullptr] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_concept] = ACTIONS(2594), - [anon_sym_co_return] = ACTIONS(2594), - [anon_sym_co_yield] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(2596), - [anon_sym_LR_DQUOTE] = ACTIONS(2596), - [anon_sym_uR_DQUOTE] = ACTIONS(2596), - [anon_sym_UR_DQUOTE] = ACTIONS(2596), - [anon_sym_u8R_DQUOTE] = ACTIONS(2596), - [anon_sym_co_await] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_requires] = ACTIONS(2594), - [sym_this] = ACTIONS(2594), - }, - [STATE(446)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2901), - [sym__declarator] = STATE(6625), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_type_qualifier] = STATE(4008), - [sym_alignas_qualifier] = STATE(4342), - [sym_expression] = STATE(3116), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3382), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5961), - [sym_qualified_identifier] = STATE(3383), - [sym_qualified_type_identifier] = STATE(7864), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3562), - [aux_sym__type_definition_type_repeat1] = STATE(4008), - [aux_sym_pointer_declarator_repeat1] = STATE(2901), - [sym_identifier] = ACTIONS(3341), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(3343), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(447)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2901), - [sym__declarator] = STATE(6625), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_type_qualifier] = STATE(4008), - [sym_alignas_qualifier] = STATE(4342), - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3336), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5841), - [sym_qualified_identifier] = STATE(3327), - [sym_qualified_type_identifier] = STATE(7816), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(2415), - [aux_sym__type_definition_type_repeat1] = STATE(4008), - [aux_sym_pointer_declarator_repeat1] = STATE(2901), - [sym_identifier] = ACTIONS(3353), - [anon_sym_LPAREN2] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3359), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(448)] = { - [sym_catch_clause] = STATE(396), - [aux_sym_constructor_try_statement_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym___try] = ACTIONS(2588), - [anon_sym___leave] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [anon_sym___alignof__] = ACTIONS(2588), - [anon_sym___alignof] = ACTIONS(2588), - [anon_sym__alignof] = ACTIONS(2588), - [anon_sym_alignof] = ACTIONS(2588), - [anon_sym__Alignof] = ACTIONS(2588), - [anon_sym_offsetof] = ACTIONS(2588), - [anon_sym__Generic] = ACTIONS(2588), - [anon_sym_asm] = ACTIONS(2588), - [anon_sym___asm__] = ACTIONS(2588), - [anon_sym___asm] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [anon_sym_NULL] = ACTIONS(2588), - [anon_sym_nullptr] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - }, - [STATE(449)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(3363), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(450)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2600), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(451)] = { - [sym_catch_clause] = STATE(396), - [aux_sym_constructor_try_statement_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_include_token1] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym___cdecl] = ACTIONS(2594), - [anon_sym___clrcall] = ACTIONS(2594), - [anon_sym___stdcall] = ACTIONS(2594), - [anon_sym___fastcall] = ACTIONS(2594), - [anon_sym___thiscall] = ACTIONS(2594), - [anon_sym___vectorcall] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym___try] = ACTIONS(2594), - [anon_sym___leave] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(2594), - [anon_sym_compl] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [anon_sym___alignof__] = ACTIONS(2594), - [anon_sym___alignof] = ACTIONS(2594), - [anon_sym__alignof] = ACTIONS(2594), - [anon_sym_alignof] = ACTIONS(2594), - [anon_sym__Alignof] = ACTIONS(2594), - [anon_sym_offsetof] = ACTIONS(2594), - [anon_sym__Generic] = ACTIONS(2594), - [anon_sym_asm] = ACTIONS(2594), - [anon_sym___asm__] = ACTIONS(2594), - [anon_sym___asm] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_L_SQUOTE] = ACTIONS(2596), - [anon_sym_u_SQUOTE] = ACTIONS(2596), - [anon_sym_U_SQUOTE] = ACTIONS(2596), - [anon_sym_u8_SQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_L_DQUOTE] = ACTIONS(2596), - [anon_sym_u_DQUOTE] = ACTIONS(2596), - [anon_sym_U_DQUOTE] = ACTIONS(2596), - [anon_sym_u8_DQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [anon_sym_NULL] = ACTIONS(2594), - [anon_sym_nullptr] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_concept] = ACTIONS(2594), - [anon_sym_co_return] = ACTIONS(2594), - [anon_sym_co_yield] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(2596), - [anon_sym_LR_DQUOTE] = ACTIONS(2596), - [anon_sym_uR_DQUOTE] = ACTIONS(2596), - [anon_sym_UR_DQUOTE] = ACTIONS(2596), - [anon_sym_u8R_DQUOTE] = ACTIONS(2596), - [anon_sym_co_await] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_requires] = ACTIONS(2594), - [sym_this] = ACTIONS(2594), - }, - [STATE(452)] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [anon_sym_RPAREN] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_export] = ACTIONS(1942), - [anon_sym_module] = ACTIONS(1942), - [anon_sym_import] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2885), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(453)] = { - [sym_type_qualifier] = STATE(3891), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(5007), - [sym_sized_type_specifier] = STATE(2781), - [sym_enum_specifier] = STATE(2781), - [sym_struct_specifier] = STATE(2781), - [sym_union_specifier] = STATE(2781), - [sym_expression] = STATE(4554), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_type_descriptor] = STATE(7737), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_placeholder_type_specifier] = STATE(2781), - [sym_decltype_auto] = STATE(2779), - [sym_decltype] = STATE(2742), - [sym_class_specifier] = STATE(2781), - [sym__class_name] = STATE(8130), - [sym_dependent_type] = STATE(2781), - [sym_template_type] = STATE(5441), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_type_parameter_pack_expansion] = STATE(8109), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5962), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(5453), - [sym_user_defined_literal] = STATE(3591), - [aux_sym__type_definition_type_repeat1] = STATE(3891), - [aux_sym_sized_type_specifier_repeat1] = STATE(4441), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2867), - [anon_sym_unsigned] = ACTIONS(2867), - [anon_sym_long] = ACTIONS(2867), - [anon_sym_short] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(263)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6507), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9475), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9639), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -109120,1518 +91841,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2903), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(454)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(3365), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(455)] = { - [ts_builtin_sym_end] = ACTIONS(3230), - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_include_token1] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [anon_sym_COMMA] = ACTIONS(3230), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym___cdecl] = ACTIONS(3228), - [anon_sym___clrcall] = ACTIONS(3228), - [anon_sym___stdcall] = ACTIONS(3228), - [anon_sym___fastcall] = ACTIONS(3228), - [anon_sym___thiscall] = ACTIONS(3228), - [anon_sym___vectorcall] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_goto] = ACTIONS(3228), - [anon_sym_not] = ACTIONS(3228), - [anon_sym_compl] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_sizeof] = ACTIONS(3228), - [anon_sym___alignof__] = ACTIONS(3228), - [anon_sym___alignof] = ACTIONS(3228), - [anon_sym__alignof] = ACTIONS(3228), - [anon_sym_alignof] = ACTIONS(3228), - [anon_sym__Alignof] = ACTIONS(3228), - [anon_sym_offsetof] = ACTIONS(3228), - [anon_sym__Generic] = ACTIONS(3228), - [anon_sym_asm] = ACTIONS(3228), - [anon_sym___asm__] = ACTIONS(3228), - [anon_sym___asm] = ACTIONS(3228), - [sym_number_literal] = ACTIONS(3230), - [anon_sym_L_SQUOTE] = ACTIONS(3230), - [anon_sym_u_SQUOTE] = ACTIONS(3230), - [anon_sym_U_SQUOTE] = ACTIONS(3230), - [anon_sym_u8_SQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [anon_sym_NULL] = ACTIONS(3228), - [anon_sym_nullptr] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), - [anon_sym_concept] = ACTIONS(3228), - [anon_sym_co_return] = ACTIONS(3228), - [anon_sym_co_yield] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(3230), - [anon_sym_LR_DQUOTE] = ACTIONS(3230), - [anon_sym_uR_DQUOTE] = ACTIONS(3230), - [anon_sym_UR_DQUOTE] = ACTIONS(3230), - [anon_sym_u8R_DQUOTE] = ACTIONS(3230), - [anon_sym_co_await] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_requires] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - }, - [STATE(456)] = { - [sym_catch_clause] = STATE(438), - [aux_sym_constructor_try_statement_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym___try] = ACTIONS(2588), - [anon_sym___leave] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [anon_sym___alignof__] = ACTIONS(2588), - [anon_sym___alignof] = ACTIONS(2588), - [anon_sym__alignof] = ACTIONS(2588), - [anon_sym_alignof] = ACTIONS(2588), - [anon_sym__Alignof] = ACTIONS(2588), - [anon_sym_offsetof] = ACTIONS(2588), - [anon_sym__Generic] = ACTIONS(2588), - [anon_sym_asm] = ACTIONS(2588), - [anon_sym___asm__] = ACTIONS(2588), - [anon_sym___asm] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [anon_sym_NULL] = ACTIONS(2588), - [anon_sym_nullptr] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(3308), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - }, - [STATE(457)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2592), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(458)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2569), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(459)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(460)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(461)] = { - [sym_expression] = STATE(3619), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(3370), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), - }, - [STATE(462)] = { - [sym_else_clause] = STATE(562), - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token2] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym___extension__] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym___attribute] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym___inline] = ACTIONS(2625), - [anon_sym___inline__] = ACTIONS(2625), - [anon_sym___forceinline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym___thread] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym___restrict__] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym__Noreturn] = ACTIONS(2625), - [anon_sym_noreturn] = ACTIONS(2625), - [anon_sym__Nonnull] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_alignas] = ACTIONS(2625), - [anon_sym__Alignas] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym___try] = ACTIONS(2625), - [anon_sym___leave] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_compl] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [anon_sym___alignof__] = ACTIONS(2625), - [anon_sym___alignof] = ACTIONS(2625), - [anon_sym__alignof] = ACTIONS(2625), - [anon_sym_alignof] = ACTIONS(2625), - [anon_sym__Alignof] = ACTIONS(2625), - [anon_sym_offsetof] = ACTIONS(2625), - [anon_sym__Generic] = ACTIONS(2625), - [anon_sym_asm] = ACTIONS(2625), - [anon_sym___asm__] = ACTIONS(2625), - [anon_sym___asm] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [anon_sym_NULL] = ACTIONS(2625), - [anon_sym_nullptr] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_R_DQUOTE] = ACTIONS(2627), - [anon_sym_LR_DQUOTE] = ACTIONS(2627), - [anon_sym_uR_DQUOTE] = ACTIONS(2627), - [anon_sym_UR_DQUOTE] = ACTIONS(2627), - [anon_sym_u8R_DQUOTE] = ACTIONS(2627), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - }, - [STATE(463)] = { - [sym_else_clause] = STATE(628), - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym___extension__] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym___attribute] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym___inline] = ACTIONS(2625), - [anon_sym___inline__] = ACTIONS(2625), - [anon_sym___forceinline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym___thread] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym___restrict__] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym__Noreturn] = ACTIONS(2625), - [anon_sym_noreturn] = ACTIONS(2625), - [anon_sym__Nonnull] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_alignas] = ACTIONS(2625), - [anon_sym__Alignas] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym___try] = ACTIONS(2625), - [anon_sym___leave] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_compl] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [anon_sym___alignof__] = ACTIONS(2625), - [anon_sym___alignof] = ACTIONS(2625), - [anon_sym__alignof] = ACTIONS(2625), - [anon_sym_alignof] = ACTIONS(2625), - [anon_sym__Alignof] = ACTIONS(2625), - [anon_sym_offsetof] = ACTIONS(2625), - [anon_sym__Generic] = ACTIONS(2625), - [anon_sym_asm] = ACTIONS(2625), - [anon_sym___asm__] = ACTIONS(2625), - [anon_sym___asm] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [anon_sym_NULL] = ACTIONS(2625), - [anon_sym_nullptr] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_R_DQUOTE] = ACTIONS(2627), - [anon_sym_LR_DQUOTE] = ACTIONS(2627), - [anon_sym_uR_DQUOTE] = ACTIONS(2627), - [anon_sym_UR_DQUOTE] = ACTIONS(2627), - [anon_sym_u8R_DQUOTE] = ACTIONS(2627), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2887), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(464)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4711), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8202), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(264)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6508), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9486), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9649), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -110644,270 +91988,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(465)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym___try] = ACTIONS(2621), - [anon_sym___leave] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_compl] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [anon_sym___alignof__] = ACTIONS(2621), - [anon_sym___alignof] = ACTIONS(2621), - [anon_sym__alignof] = ACTIONS(2621), - [anon_sym_alignof] = ACTIONS(2621), - [anon_sym__Alignof] = ACTIONS(2621), - [anon_sym_offsetof] = ACTIONS(2621), - [anon_sym__Generic] = ACTIONS(2621), - [anon_sym_asm] = ACTIONS(2621), - [anon_sym___asm__] = ACTIONS(2621), - [anon_sym___asm] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [anon_sym_NULL] = ACTIONS(2621), - [anon_sym_nullptr] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_R_DQUOTE] = ACTIONS(2623), - [anon_sym_LR_DQUOTE] = ACTIONS(2623), - [anon_sym_uR_DQUOTE] = ACTIONS(2623), - [anon_sym_UR_DQUOTE] = ACTIONS(2623), - [anon_sym_u8R_DQUOTE] = ACTIONS(2623), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2889), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(466)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4736), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8519), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(265)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6473), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9417), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9852), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -110920,132 +92135,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2891), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(467)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4837), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8454), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(266)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6601), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9500), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9681), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -111058,270 +92282,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(468)] = { - [sym_else_clause] = STATE(564), - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token2] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym___extension__] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym___attribute] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym___inline] = ACTIONS(2615), - [anon_sym___inline__] = ACTIONS(2615), - [anon_sym___forceinline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym___thread] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym___restrict__] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym__Noreturn] = ACTIONS(2615), - [anon_sym_noreturn] = ACTIONS(2615), - [anon_sym__Nonnull] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_alignas] = ACTIONS(2615), - [anon_sym__Alignas] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym___try] = ACTIONS(2615), - [anon_sym___leave] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [anon_sym___alignof__] = ACTIONS(2615), - [anon_sym___alignof] = ACTIONS(2615), - [anon_sym__alignof] = ACTIONS(2615), - [anon_sym_alignof] = ACTIONS(2615), - [anon_sym__Alignof] = ACTIONS(2615), - [anon_sym_offsetof] = ACTIONS(2615), - [anon_sym__Generic] = ACTIONS(2615), - [anon_sym_asm] = ACTIONS(2615), - [anon_sym___asm__] = ACTIONS(2615), - [anon_sym___asm] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [anon_sym_NULL] = ACTIONS(2615), - [anon_sym_nullptr] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2893), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(469)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4764), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8391), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(267)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6515), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9508), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9816), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -111334,270 +92429,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(470)] = { - [sym_else_clause] = STATE(641), - [sym_identifier] = ACTIONS(2615), - [aux_sym_preproc_include_token1] = ACTIONS(2615), - [aux_sym_preproc_def_token1] = ACTIONS(2615), - [aux_sym_preproc_if_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), - [sym_preproc_directive] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym___extension__] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym___attribute] = ACTIONS(2615), - [anon_sym_using] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym___based] = ACTIONS(2615), - [anon_sym___cdecl] = ACTIONS(2615), - [anon_sym___clrcall] = ACTIONS(2615), - [anon_sym___stdcall] = ACTIONS(2615), - [anon_sym___fastcall] = ACTIONS(2615), - [anon_sym___thiscall] = ACTIONS(2615), - [anon_sym___vectorcall] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym___inline] = ACTIONS(2615), - [anon_sym___inline__] = ACTIONS(2615), - [anon_sym___forceinline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym___thread] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym___restrict__] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym__Noreturn] = ACTIONS(2615), - [anon_sym_noreturn] = ACTIONS(2615), - [anon_sym__Nonnull] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_alignas] = ACTIONS(2615), - [anon_sym__Alignas] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_case] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym___try] = ACTIONS(2615), - [anon_sym___leave] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [anon_sym___alignof__] = ACTIONS(2615), - [anon_sym___alignof] = ACTIONS(2615), - [anon_sym__alignof] = ACTIONS(2615), - [anon_sym_alignof] = ACTIONS(2615), - [anon_sym__Alignof] = ACTIONS(2615), - [anon_sym_offsetof] = ACTIONS(2615), - [anon_sym__Generic] = ACTIONS(2615), - [anon_sym_asm] = ACTIONS(2615), - [anon_sym___asm__] = ACTIONS(2615), - [anon_sym___asm] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [anon_sym_NULL] = ACTIONS(2615), - [anon_sym_nullptr] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_explicit] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_operator] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_namespace] = ACTIONS(2615), - [anon_sym_static_assert] = ACTIONS(2615), - [anon_sym_concept] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2895), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(471)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4704), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8540), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(268)] = { + [sym_expression] = STATE(6763), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10510), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2897), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym___extension__] = ACTIONS(2902), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(1310), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2918), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2924), + [sym_this] = ACTIONS(237), + }, + [STATE(269)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6489), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9341), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9970), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -111610,132 +92723,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2927), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(472)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4770), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8739), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(270)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(4108), + [sym__declarator] = STATE(8702), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_type_qualifier] = STATE(5224), + [sym_alignas_qualifier] = STATE(7436), + [sym_expression] = STATE(5050), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5293), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7840), + [sym_qualified_identifier] = STATE(5294), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(5224), + [aux_sym_pointer_declarator_repeat1] = STATE(4108), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(61), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), + }, + [STATE(271)] = { + [sym_expression] = STATE(6759), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10871), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym___extension__] = ACTIONS(2946), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = 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(1310), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2968), + [sym_this] = ACTIONS(237), + }, + [STATE(272)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6561), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9356), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9894), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -111748,132 +93164,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2971), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(473)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4775), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8723), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(273)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6493), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9519), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(10045), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -111886,546 +93311,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(474)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(475)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym___try] = ACTIONS(1938), - [anon_sym___leave] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1938), - [anon_sym_compl] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1938), - [anon_sym___alignof__] = ACTIONS(1938), - [anon_sym___alignof] = ACTIONS(1938), - [anon_sym__alignof] = ACTIONS(1938), - [anon_sym_alignof] = ACTIONS(1938), - [anon_sym__Alignof] = ACTIONS(1938), - [anon_sym_offsetof] = ACTIONS(1938), - [anon_sym__Generic] = ACTIONS(1938), - [anon_sym_asm] = ACTIONS(1938), - [anon_sym___asm__] = ACTIONS(1938), - [anon_sym___asm] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [anon_sym_NULL] = ACTIONS(1938), - [anon_sym_nullptr] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_delete] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_namespace] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_concept] = ACTIONS(1938), - [anon_sym_co_return] = ACTIONS(1938), - [anon_sym_co_yield] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_R_DQUOTE] = ACTIONS(1936), - [anon_sym_LR_DQUOTE] = ACTIONS(1936), - [anon_sym_uR_DQUOTE] = ACTIONS(1936), - [anon_sym_UR_DQUOTE] = ACTIONS(1936), - [anon_sym_u8R_DQUOTE] = ACTIONS(1936), - [anon_sym_co_await] = ACTIONS(1938), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_requires] = ACTIONS(1938), - [sym_this] = ACTIONS(1938), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2973), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(476)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym___try] = ACTIONS(2621), - [anon_sym___leave] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_compl] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [anon_sym___alignof__] = ACTIONS(2621), - [anon_sym___alignof] = ACTIONS(2621), - [anon_sym__alignof] = ACTIONS(2621), - [anon_sym_alignof] = ACTIONS(2621), - [anon_sym__Alignof] = ACTIONS(2621), - [anon_sym_offsetof] = ACTIONS(2621), - [anon_sym__Generic] = ACTIONS(2621), - [anon_sym_asm] = ACTIONS(2621), - [anon_sym___asm__] = ACTIONS(2621), - [anon_sym___asm] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [anon_sym_NULL] = ACTIONS(2621), - [anon_sym_nullptr] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_R_DQUOTE] = ACTIONS(2623), - [anon_sym_LR_DQUOTE] = ACTIONS(2623), - [anon_sym_uR_DQUOTE] = ACTIONS(2623), - [anon_sym_UR_DQUOTE] = ACTIONS(2623), - [anon_sym_u8R_DQUOTE] = ACTIONS(2623), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - }, - [STATE(477)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4778), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(9038), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(274)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6532), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9394), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9990), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -112438,132 +93458,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2975), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(478)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4780), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8705), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(275)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6496), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9294), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9541), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -112576,132 +93605,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2977), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(479)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4685), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8500), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(276)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6459), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9478), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9759), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -112714,270 +93752,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2979), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(480)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(277)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(4108), + [sym__declarator] = STATE(8702), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_type_qualifier] = STATE(5224), + [sym_alignas_qualifier] = STATE(7436), + [sym_expression] = STATE(3665), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5195), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7863), + [sym_qualified_identifier] = STATE(5196), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(5224), + [aux_sym_pointer_declarator_repeat1] = STATE(4108), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(2987), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(61), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(481)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4781), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8414), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(278)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6571), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9302), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9615), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -112990,270 +94046,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(482)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym___try] = ACTIONS(1938), - [anon_sym___leave] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1938), - [anon_sym_compl] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1938), - [anon_sym___alignof__] = ACTIONS(1938), - [anon_sym___alignof] = ACTIONS(1938), - [anon_sym__alignof] = ACTIONS(1938), - [anon_sym_alignof] = ACTIONS(1938), - [anon_sym__Alignof] = ACTIONS(1938), - [anon_sym_offsetof] = ACTIONS(1938), - [anon_sym__Generic] = ACTIONS(1938), - [anon_sym_asm] = ACTIONS(1938), - [anon_sym___asm__] = ACTIONS(1938), - [anon_sym___asm] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [anon_sym_NULL] = ACTIONS(1938), - [anon_sym_nullptr] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_delete] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_namespace] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_concept] = ACTIONS(1938), - [anon_sym_co_return] = ACTIONS(1938), - [anon_sym_co_yield] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_R_DQUOTE] = ACTIONS(1936), - [anon_sym_LR_DQUOTE] = ACTIONS(1936), - [anon_sym_uR_DQUOTE] = ACTIONS(1936), - [anon_sym_UR_DQUOTE] = ACTIONS(1936), - [anon_sym_u8R_DQUOTE] = ACTIONS(1936), - [anon_sym_co_await] = ACTIONS(1938), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_requires] = ACTIONS(1938), - [sym_this] = ACTIONS(1938), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2991), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(483)] = { - [sym_type_qualifier] = STATE(3895), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4988), - [sym_sized_type_specifier] = STATE(1929), - [sym_enum_specifier] = STATE(1929), - [sym_struct_specifier] = STATE(1929), - [sym_union_specifier] = STATE(1929), - [sym_expression] = STATE(4782), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_type_descriptor] = STATE(8343), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_placeholder_type_specifier] = STATE(1929), - [sym_decltype_auto] = STATE(1924), - [sym_decltype] = STATE(1882), - [sym_class_specifier] = STATE(1929), - [sym__class_name] = STATE(8005), - [sym_dependent_type] = STATE(1929), - [sym_template_type] = STATE(5488), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5927), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(5528), - [sym_user_defined_literal] = STATE(3334), - [aux_sym__type_definition_type_repeat1] = STATE(3895), - [aux_sym_sized_type_specifier_repeat1] = STATE(4346), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(2165), + [STATE(279)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6500), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9492), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9578), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -113266,3525 +94193,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1846), - [anon_sym_decltype] = ACTIONS(1848), - [anon_sym_typename] = ACTIONS(1850), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(485)] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [aux_sym_preproc_include_token1] = ACTIONS(3391), - [aux_sym_preproc_def_token1] = ACTIONS(3391), - [aux_sym_preproc_if_token1] = ACTIONS(3391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), - [sym_preproc_directive] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3391), - [anon_sym_typedef] = ACTIONS(3391), - [anon_sym_virtual] = ACTIONS(3391), - [anon_sym_extern] = ACTIONS(3391), - [anon_sym___attribute__] = ACTIONS(3391), - [anon_sym___attribute] = ACTIONS(3391), - [anon_sym_using] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3391), - [anon_sym___based] = ACTIONS(3391), - [anon_sym___cdecl] = ACTIONS(3391), - [anon_sym___clrcall] = ACTIONS(3391), - [anon_sym___stdcall] = ACTIONS(3391), - [anon_sym___fastcall] = ACTIONS(3391), - [anon_sym___thiscall] = ACTIONS(3391), - [anon_sym___vectorcall] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3391), - [anon_sym_unsigned] = ACTIONS(3391), - [anon_sym_long] = ACTIONS(3391), - [anon_sym_short] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_register] = ACTIONS(3391), - [anon_sym_inline] = ACTIONS(3391), - [anon_sym___inline] = ACTIONS(3391), - [anon_sym___inline__] = ACTIONS(3391), - [anon_sym___forceinline] = ACTIONS(3391), - [anon_sym_thread_local] = ACTIONS(3391), - [anon_sym___thread] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_constexpr] = ACTIONS(3391), - [anon_sym_volatile] = ACTIONS(3391), - [anon_sym_restrict] = ACTIONS(3391), - [anon_sym___restrict__] = ACTIONS(3391), - [anon_sym__Atomic] = ACTIONS(3391), - [anon_sym__Noreturn] = ACTIONS(3391), - [anon_sym_noreturn] = ACTIONS(3391), - [anon_sym__Nonnull] = ACTIONS(3391), - [anon_sym_mutable] = ACTIONS(3391), - [anon_sym_constinit] = ACTIONS(3391), - [anon_sym_consteval] = ACTIONS(3391), - [anon_sym_alignas] = ACTIONS(3391), - [anon_sym__Alignas] = ACTIONS(3391), - [sym_primitive_type] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3391), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_switch] = ACTIONS(3391), - [anon_sym_case] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_not] = ACTIONS(3391), - [anon_sym_compl] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3391), - [anon_sym___alignof__] = ACTIONS(3391), - [anon_sym___alignof] = ACTIONS(3391), - [anon_sym__alignof] = ACTIONS(3391), - [anon_sym_alignof] = ACTIONS(3391), - [anon_sym__Alignof] = ACTIONS(3391), - [anon_sym_offsetof] = ACTIONS(3391), - [anon_sym__Generic] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym___asm__] = ACTIONS(3391), - [anon_sym___asm] = ACTIONS(3391), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [anon_sym_NULL] = ACTIONS(3391), - [anon_sym_nullptr] = ACTIONS(3391), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3391), - [anon_sym_decltype] = ACTIONS(3391), - [anon_sym_explicit] = ACTIONS(3391), - [anon_sym_typename] = ACTIONS(3391), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_import] = ACTIONS(3391), - [anon_sym_template] = ACTIONS(3391), - [anon_sym_operator] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_delete] = ACTIONS(3391), - [anon_sym_throw] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_static_assert] = ACTIONS(3391), - [anon_sym_concept] = ACTIONS(3391), - [anon_sym_co_return] = ACTIONS(3391), - [anon_sym_co_yield] = ACTIONS(3391), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_requires] = ACTIONS(3391), - [sym_this] = ACTIONS(3391), - }, - [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [aux_sym_preproc_include_token1] = ACTIONS(3395), - [aux_sym_preproc_def_token1] = ACTIONS(3395), - [aux_sym_preproc_if_token1] = ACTIONS(3395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), - [sym_preproc_directive] = ACTIONS(3395), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym___extension__] = ACTIONS(3395), - [anon_sym_typedef] = ACTIONS(3395), - [anon_sym_virtual] = ACTIONS(3395), - [anon_sym_extern] = ACTIONS(3395), - [anon_sym___attribute__] = ACTIONS(3395), - [anon_sym___attribute] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), - [anon_sym___declspec] = ACTIONS(3395), - [anon_sym___based] = ACTIONS(3395), - [anon_sym___cdecl] = ACTIONS(3395), - [anon_sym___clrcall] = ACTIONS(3395), - [anon_sym___stdcall] = ACTIONS(3395), - [anon_sym___fastcall] = ACTIONS(3395), - [anon_sym___thiscall] = ACTIONS(3395), - [anon_sym___vectorcall] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_signed] = ACTIONS(3395), - [anon_sym_unsigned] = ACTIONS(3395), - [anon_sym_long] = ACTIONS(3395), - [anon_sym_short] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_register] = ACTIONS(3395), - [anon_sym_inline] = ACTIONS(3395), - [anon_sym___inline] = ACTIONS(3395), - [anon_sym___inline__] = ACTIONS(3395), - [anon_sym___forceinline] = ACTIONS(3395), - [anon_sym_thread_local] = ACTIONS(3395), - [anon_sym___thread] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_constexpr] = ACTIONS(3395), - [anon_sym_volatile] = ACTIONS(3395), - [anon_sym_restrict] = ACTIONS(3395), - [anon_sym___restrict__] = ACTIONS(3395), - [anon_sym__Atomic] = ACTIONS(3395), - [anon_sym__Noreturn] = ACTIONS(3395), - [anon_sym_noreturn] = ACTIONS(3395), - [anon_sym__Nonnull] = ACTIONS(3395), - [anon_sym_mutable] = ACTIONS(3395), - [anon_sym_constinit] = ACTIONS(3395), - [anon_sym_consteval] = ACTIONS(3395), - [anon_sym_alignas] = ACTIONS(3395), - [anon_sym__Alignas] = ACTIONS(3395), - [sym_primitive_type] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_union] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_not] = ACTIONS(3395), - [anon_sym_compl] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_sizeof] = ACTIONS(3395), - [anon_sym___alignof__] = ACTIONS(3395), - [anon_sym___alignof] = ACTIONS(3395), - [anon_sym__alignof] = ACTIONS(3395), - [anon_sym_alignof] = ACTIONS(3395), - [anon_sym__Alignof] = ACTIONS(3395), - [anon_sym_offsetof] = ACTIONS(3395), - [anon_sym__Generic] = ACTIONS(3395), - [anon_sym_asm] = ACTIONS(3395), - [anon_sym___asm__] = ACTIONS(3395), - [anon_sym___asm] = ACTIONS(3395), - [sym_number_literal] = ACTIONS(3393), - [anon_sym_L_SQUOTE] = ACTIONS(3393), - [anon_sym_u_SQUOTE] = ACTIONS(3393), - [anon_sym_U_SQUOTE] = ACTIONS(3393), - [anon_sym_u8_SQUOTE] = ACTIONS(3393), - [anon_sym_SQUOTE] = ACTIONS(3393), - [anon_sym_L_DQUOTE] = ACTIONS(3393), - [anon_sym_u_DQUOTE] = ACTIONS(3393), - [anon_sym_U_DQUOTE] = ACTIONS(3393), - [anon_sym_u8_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(3393), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [anon_sym_NULL] = ACTIONS(3395), - [anon_sym_nullptr] = ACTIONS(3395), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3395), - [anon_sym_decltype] = ACTIONS(3395), - [anon_sym_explicit] = ACTIONS(3395), - [anon_sym_typename] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_template] = ACTIONS(3395), - [anon_sym_operator] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_static_assert] = ACTIONS(3395), - [anon_sym_concept] = ACTIONS(3395), - [anon_sym_co_return] = ACTIONS(3395), - [anon_sym_co_yield] = ACTIONS(3395), - [anon_sym_R_DQUOTE] = ACTIONS(3393), - [anon_sym_LR_DQUOTE] = ACTIONS(3393), - [anon_sym_uR_DQUOTE] = ACTIONS(3393), - [anon_sym_UR_DQUOTE] = ACTIONS(3393), - [anon_sym_u8R_DQUOTE] = ACTIONS(3393), - [anon_sym_co_await] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_requires] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - }, - [STATE(487)] = { - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [aux_sym_preproc_include_token1] = ACTIONS(3399), - [aux_sym_preproc_def_token1] = ACTIONS(3399), - [aux_sym_preproc_if_token1] = ACTIONS(3399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), - [sym_preproc_directive] = ACTIONS(3399), - [anon_sym_LPAREN2] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym___extension__] = ACTIONS(3399), - [anon_sym_typedef] = ACTIONS(3399), - [anon_sym_virtual] = ACTIONS(3399), - [anon_sym_extern] = ACTIONS(3399), - [anon_sym___attribute__] = ACTIONS(3399), - [anon_sym___attribute] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_COLON_COLON] = ACTIONS(3397), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), - [anon_sym___declspec] = ACTIONS(3399), - [anon_sym___based] = ACTIONS(3399), - [anon_sym___cdecl] = ACTIONS(3399), - [anon_sym___clrcall] = ACTIONS(3399), - [anon_sym___stdcall] = ACTIONS(3399), - [anon_sym___fastcall] = ACTIONS(3399), - [anon_sym___thiscall] = ACTIONS(3399), - [anon_sym___vectorcall] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_signed] = ACTIONS(3399), - [anon_sym_unsigned] = ACTIONS(3399), - [anon_sym_long] = ACTIONS(3399), - [anon_sym_short] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_register] = ACTIONS(3399), - [anon_sym_inline] = ACTIONS(3399), - [anon_sym___inline] = ACTIONS(3399), - [anon_sym___inline__] = ACTIONS(3399), - [anon_sym___forceinline] = ACTIONS(3399), - [anon_sym_thread_local] = ACTIONS(3399), - [anon_sym___thread] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_constexpr] = ACTIONS(3399), - [anon_sym_volatile] = ACTIONS(3399), - [anon_sym_restrict] = ACTIONS(3399), - [anon_sym___restrict__] = ACTIONS(3399), - [anon_sym__Atomic] = ACTIONS(3399), - [anon_sym__Noreturn] = ACTIONS(3399), - [anon_sym_noreturn] = ACTIONS(3399), - [anon_sym__Nonnull] = ACTIONS(3399), - [anon_sym_mutable] = ACTIONS(3399), - [anon_sym_constinit] = ACTIONS(3399), - [anon_sym_consteval] = ACTIONS(3399), - [anon_sym_alignas] = ACTIONS(3399), - [anon_sym__Alignas] = ACTIONS(3399), - [sym_primitive_type] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_goto] = ACTIONS(3399), - [anon_sym_not] = ACTIONS(3399), - [anon_sym_compl] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_sizeof] = ACTIONS(3399), - [anon_sym___alignof__] = ACTIONS(3399), - [anon_sym___alignof] = ACTIONS(3399), - [anon_sym__alignof] = ACTIONS(3399), - [anon_sym_alignof] = ACTIONS(3399), - [anon_sym__Alignof] = ACTIONS(3399), - [anon_sym_offsetof] = ACTIONS(3399), - [anon_sym__Generic] = ACTIONS(3399), - [anon_sym_asm] = ACTIONS(3399), - [anon_sym___asm__] = ACTIONS(3399), - [anon_sym___asm] = ACTIONS(3399), - [sym_number_literal] = ACTIONS(3397), - [anon_sym_L_SQUOTE] = ACTIONS(3397), - [anon_sym_u_SQUOTE] = ACTIONS(3397), - [anon_sym_U_SQUOTE] = ACTIONS(3397), - [anon_sym_u8_SQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_L_DQUOTE] = ACTIONS(3397), - [anon_sym_u_DQUOTE] = ACTIONS(3397), - [anon_sym_U_DQUOTE] = ACTIONS(3397), - [anon_sym_u8_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [anon_sym_NULL] = ACTIONS(3399), - [anon_sym_nullptr] = ACTIONS(3399), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3399), - [anon_sym_decltype] = ACTIONS(3399), - [anon_sym_explicit] = ACTIONS(3399), - [anon_sym_typename] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_template] = ACTIONS(3399), - [anon_sym_operator] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_static_assert] = ACTIONS(3399), - [anon_sym_concept] = ACTIONS(3399), - [anon_sym_co_return] = ACTIONS(3399), - [anon_sym_co_yield] = ACTIONS(3399), - [anon_sym_R_DQUOTE] = ACTIONS(3397), - [anon_sym_LR_DQUOTE] = ACTIONS(3397), - [anon_sym_uR_DQUOTE] = ACTIONS(3397), - [anon_sym_UR_DQUOTE] = ACTIONS(3397), - [anon_sym_u8R_DQUOTE] = ACTIONS(3397), - [anon_sym_co_await] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_requires] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - }, - [STATE(488)] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [aux_sym_preproc_include_token1] = ACTIONS(3403), - [aux_sym_preproc_def_token1] = ACTIONS(3403), - [aux_sym_preproc_if_token1] = ACTIONS(3403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), - [sym_preproc_directive] = ACTIONS(3403), - [anon_sym_LPAREN2] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym___extension__] = ACTIONS(3403), - [anon_sym_typedef] = ACTIONS(3403), - [anon_sym_virtual] = ACTIONS(3403), - [anon_sym_extern] = ACTIONS(3403), - [anon_sym___attribute__] = ACTIONS(3403), - [anon_sym___attribute] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_COLON_COLON] = ACTIONS(3401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), - [anon_sym___declspec] = ACTIONS(3403), - [anon_sym___based] = ACTIONS(3403), - [anon_sym___cdecl] = ACTIONS(3403), - [anon_sym___clrcall] = ACTIONS(3403), - [anon_sym___stdcall] = ACTIONS(3403), - [anon_sym___fastcall] = ACTIONS(3403), - [anon_sym___thiscall] = ACTIONS(3403), - [anon_sym___vectorcall] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_signed] = ACTIONS(3403), - [anon_sym_unsigned] = ACTIONS(3403), - [anon_sym_long] = ACTIONS(3403), - [anon_sym_short] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_register] = ACTIONS(3403), - [anon_sym_inline] = ACTIONS(3403), - [anon_sym___inline] = ACTIONS(3403), - [anon_sym___inline__] = ACTIONS(3403), - [anon_sym___forceinline] = ACTIONS(3403), - [anon_sym_thread_local] = ACTIONS(3403), - [anon_sym___thread] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_constexpr] = ACTIONS(3403), - [anon_sym_volatile] = ACTIONS(3403), - [anon_sym_restrict] = ACTIONS(3403), - [anon_sym___restrict__] = ACTIONS(3403), - [anon_sym__Atomic] = ACTIONS(3403), - [anon_sym__Noreturn] = ACTIONS(3403), - [anon_sym_noreturn] = ACTIONS(3403), - [anon_sym__Nonnull] = ACTIONS(3403), - [anon_sym_mutable] = ACTIONS(3403), - [anon_sym_constinit] = ACTIONS(3403), - [anon_sym_consteval] = ACTIONS(3403), - [anon_sym_alignas] = ACTIONS(3403), - [anon_sym__Alignas] = ACTIONS(3403), - [sym_primitive_type] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_union] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_not] = ACTIONS(3403), - [anon_sym_compl] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_sizeof] = ACTIONS(3403), - [anon_sym___alignof__] = ACTIONS(3403), - [anon_sym___alignof] = ACTIONS(3403), - [anon_sym__alignof] = ACTIONS(3403), - [anon_sym_alignof] = ACTIONS(3403), - [anon_sym__Alignof] = ACTIONS(3403), - [anon_sym_offsetof] = ACTIONS(3403), - [anon_sym__Generic] = ACTIONS(3403), - [anon_sym_asm] = ACTIONS(3403), - [anon_sym___asm__] = ACTIONS(3403), - [anon_sym___asm] = ACTIONS(3403), - [sym_number_literal] = ACTIONS(3401), - [anon_sym_L_SQUOTE] = ACTIONS(3401), - [anon_sym_u_SQUOTE] = ACTIONS(3401), - [anon_sym_U_SQUOTE] = ACTIONS(3401), - [anon_sym_u8_SQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_L_DQUOTE] = ACTIONS(3401), - [anon_sym_u_DQUOTE] = ACTIONS(3401), - [anon_sym_U_DQUOTE] = ACTIONS(3401), - [anon_sym_u8_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [anon_sym_NULL] = ACTIONS(3403), - [anon_sym_nullptr] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3403), - [anon_sym_decltype] = ACTIONS(3403), - [anon_sym_explicit] = ACTIONS(3403), - [anon_sym_typename] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_template] = ACTIONS(3403), - [anon_sym_operator] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_static_assert] = ACTIONS(3403), - [anon_sym_concept] = ACTIONS(3403), - [anon_sym_co_return] = ACTIONS(3403), - [anon_sym_co_yield] = ACTIONS(3403), - [anon_sym_R_DQUOTE] = ACTIONS(3401), - [anon_sym_LR_DQUOTE] = ACTIONS(3401), - [anon_sym_uR_DQUOTE] = ACTIONS(3401), - [anon_sym_UR_DQUOTE] = ACTIONS(3401), - [anon_sym_u8R_DQUOTE] = ACTIONS(3401), - [anon_sym_co_await] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_requires] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - }, - [STATE(489)] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [aux_sym_preproc_include_token1] = ACTIONS(3407), - [aux_sym_preproc_def_token1] = ACTIONS(3407), - [aux_sym_preproc_if_token1] = ACTIONS(3407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3407), - [sym_preproc_directive] = ACTIONS(3407), - [anon_sym_LPAREN2] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym___extension__] = ACTIONS(3407), - [anon_sym_typedef] = ACTIONS(3407), - [anon_sym_virtual] = ACTIONS(3407), - [anon_sym_extern] = ACTIONS(3407), - [anon_sym___attribute__] = ACTIONS(3407), - [anon_sym___attribute] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_COLON_COLON] = ACTIONS(3405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), - [anon_sym___declspec] = ACTIONS(3407), - [anon_sym___based] = ACTIONS(3407), - [anon_sym___cdecl] = ACTIONS(3407), - [anon_sym___clrcall] = ACTIONS(3407), - [anon_sym___stdcall] = ACTIONS(3407), - [anon_sym___fastcall] = ACTIONS(3407), - [anon_sym___thiscall] = ACTIONS(3407), - [anon_sym___vectorcall] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_signed] = ACTIONS(3407), - [anon_sym_unsigned] = ACTIONS(3407), - [anon_sym_long] = ACTIONS(3407), - [anon_sym_short] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_register] = ACTIONS(3407), - [anon_sym_inline] = ACTIONS(3407), - [anon_sym___inline] = ACTIONS(3407), - [anon_sym___inline__] = ACTIONS(3407), - [anon_sym___forceinline] = ACTIONS(3407), - [anon_sym_thread_local] = ACTIONS(3407), - [anon_sym___thread] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_constexpr] = ACTIONS(3407), - [anon_sym_volatile] = ACTIONS(3407), - [anon_sym_restrict] = ACTIONS(3407), - [anon_sym___restrict__] = ACTIONS(3407), - [anon_sym__Atomic] = ACTIONS(3407), - [anon_sym__Noreturn] = ACTIONS(3407), - [anon_sym_noreturn] = ACTIONS(3407), - [anon_sym__Nonnull] = ACTIONS(3407), - [anon_sym_mutable] = ACTIONS(3407), - [anon_sym_constinit] = ACTIONS(3407), - [anon_sym_consteval] = ACTIONS(3407), - [anon_sym_alignas] = ACTIONS(3407), - [anon_sym__Alignas] = ACTIONS(3407), - [sym_primitive_type] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_union] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_goto] = ACTIONS(3407), - [anon_sym_not] = ACTIONS(3407), - [anon_sym_compl] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3407), - [anon_sym___alignof] = ACTIONS(3407), - [anon_sym__alignof] = ACTIONS(3407), - [anon_sym_alignof] = ACTIONS(3407), - [anon_sym__Alignof] = ACTIONS(3407), - [anon_sym_offsetof] = ACTIONS(3407), - [anon_sym__Generic] = ACTIONS(3407), - [anon_sym_asm] = ACTIONS(3407), - [anon_sym___asm__] = ACTIONS(3407), - [anon_sym___asm] = ACTIONS(3407), - [sym_number_literal] = ACTIONS(3405), - [anon_sym_L_SQUOTE] = ACTIONS(3405), - [anon_sym_u_SQUOTE] = ACTIONS(3405), - [anon_sym_U_SQUOTE] = ACTIONS(3405), - [anon_sym_u8_SQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_L_DQUOTE] = ACTIONS(3405), - [anon_sym_u_DQUOTE] = ACTIONS(3405), - [anon_sym_U_DQUOTE] = ACTIONS(3405), - [anon_sym_u8_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [anon_sym_NULL] = ACTIONS(3407), - [anon_sym_nullptr] = ACTIONS(3407), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3407), - [anon_sym_decltype] = ACTIONS(3407), - [anon_sym_explicit] = ACTIONS(3407), - [anon_sym_typename] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_template] = ACTIONS(3407), - [anon_sym_operator] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_static_assert] = ACTIONS(3407), - [anon_sym_concept] = ACTIONS(3407), - [anon_sym_co_return] = ACTIONS(3407), - [anon_sym_co_yield] = ACTIONS(3407), - [anon_sym_R_DQUOTE] = ACTIONS(3405), - [anon_sym_LR_DQUOTE] = ACTIONS(3405), - [anon_sym_uR_DQUOTE] = ACTIONS(3405), - [anon_sym_UR_DQUOTE] = ACTIONS(3405), - [anon_sym_u8R_DQUOTE] = ACTIONS(3405), - [anon_sym_co_await] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_requires] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - }, - [STATE(490)] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [aux_sym_preproc_include_token1] = ACTIONS(3411), - [aux_sym_preproc_def_token1] = ACTIONS(3411), - [aux_sym_preproc_if_token1] = ACTIONS(3411), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3411), - [sym_preproc_directive] = ACTIONS(3411), - [anon_sym_LPAREN2] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym___extension__] = ACTIONS(3411), - [anon_sym_typedef] = ACTIONS(3411), - [anon_sym_virtual] = ACTIONS(3411), - [anon_sym_extern] = ACTIONS(3411), - [anon_sym___attribute__] = ACTIONS(3411), - [anon_sym___attribute] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_COLON_COLON] = ACTIONS(3409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3409), - [anon_sym___declspec] = ACTIONS(3411), - [anon_sym___based] = ACTIONS(3411), - [anon_sym___cdecl] = ACTIONS(3411), - [anon_sym___clrcall] = ACTIONS(3411), - [anon_sym___stdcall] = ACTIONS(3411), - [anon_sym___fastcall] = ACTIONS(3411), - [anon_sym___thiscall] = ACTIONS(3411), - [anon_sym___vectorcall] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_signed] = ACTIONS(3411), - [anon_sym_unsigned] = ACTIONS(3411), - [anon_sym_long] = ACTIONS(3411), - [anon_sym_short] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_register] = ACTIONS(3411), - [anon_sym_inline] = ACTIONS(3411), - [anon_sym___inline] = ACTIONS(3411), - [anon_sym___inline__] = ACTIONS(3411), - [anon_sym___forceinline] = ACTIONS(3411), - [anon_sym_thread_local] = ACTIONS(3411), - [anon_sym___thread] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_constexpr] = ACTIONS(3411), - [anon_sym_volatile] = ACTIONS(3411), - [anon_sym_restrict] = ACTIONS(3411), - [anon_sym___restrict__] = ACTIONS(3411), - [anon_sym__Atomic] = ACTIONS(3411), - [anon_sym__Noreturn] = ACTIONS(3411), - [anon_sym_noreturn] = ACTIONS(3411), - [anon_sym__Nonnull] = ACTIONS(3411), - [anon_sym_mutable] = ACTIONS(3411), - [anon_sym_constinit] = ACTIONS(3411), - [anon_sym_consteval] = ACTIONS(3411), - [anon_sym_alignas] = ACTIONS(3411), - [anon_sym__Alignas] = ACTIONS(3411), - [sym_primitive_type] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_union] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_not] = ACTIONS(3411), - [anon_sym_compl] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_sizeof] = ACTIONS(3411), - [anon_sym___alignof__] = ACTIONS(3411), - [anon_sym___alignof] = ACTIONS(3411), - [anon_sym__alignof] = ACTIONS(3411), - [anon_sym_alignof] = ACTIONS(3411), - [anon_sym__Alignof] = ACTIONS(3411), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3411), - [anon_sym_asm] = ACTIONS(3411), - [anon_sym___asm__] = ACTIONS(3411), - [anon_sym___asm] = ACTIONS(3411), - [sym_number_literal] = ACTIONS(3409), - [anon_sym_L_SQUOTE] = ACTIONS(3409), - [anon_sym_u_SQUOTE] = ACTIONS(3409), - [anon_sym_U_SQUOTE] = ACTIONS(3409), - [anon_sym_u8_SQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_L_DQUOTE] = ACTIONS(3409), - [anon_sym_u_DQUOTE] = ACTIONS(3409), - [anon_sym_U_DQUOTE] = ACTIONS(3409), - [anon_sym_u8_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [anon_sym_NULL] = ACTIONS(3411), - [anon_sym_nullptr] = ACTIONS(3411), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3411), - [anon_sym_decltype] = ACTIONS(3411), - [anon_sym_explicit] = ACTIONS(3411), - [anon_sym_typename] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_template] = ACTIONS(3411), - [anon_sym_operator] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_static_assert] = ACTIONS(3411), - [anon_sym_concept] = ACTIONS(3411), - [anon_sym_co_return] = ACTIONS(3411), - [anon_sym_co_yield] = ACTIONS(3411), - [anon_sym_R_DQUOTE] = ACTIONS(3409), - [anon_sym_LR_DQUOTE] = ACTIONS(3409), - [anon_sym_uR_DQUOTE] = ACTIONS(3409), - [anon_sym_UR_DQUOTE] = ACTIONS(3409), - [anon_sym_u8R_DQUOTE] = ACTIONS(3409), - [anon_sym_co_await] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_requires] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - }, - [STATE(491)] = { - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_identifier] = ACTIONS(3415), - [aux_sym_preproc_include_token1] = ACTIONS(3415), - [aux_sym_preproc_def_token1] = ACTIONS(3415), - [aux_sym_preproc_if_token1] = ACTIONS(3415), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), - [sym_preproc_directive] = ACTIONS(3415), - [anon_sym_LPAREN2] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym___extension__] = ACTIONS(3415), - [anon_sym_typedef] = ACTIONS(3415), - [anon_sym_virtual] = ACTIONS(3415), - [anon_sym_extern] = ACTIONS(3415), - [anon_sym___attribute__] = ACTIONS(3415), - [anon_sym___attribute] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_COLON_COLON] = ACTIONS(3413), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3413), - [anon_sym___declspec] = ACTIONS(3415), - [anon_sym___based] = ACTIONS(3415), - [anon_sym___cdecl] = ACTIONS(3415), - [anon_sym___clrcall] = ACTIONS(3415), - [anon_sym___stdcall] = ACTIONS(3415), - [anon_sym___fastcall] = ACTIONS(3415), - [anon_sym___thiscall] = ACTIONS(3415), - [anon_sym___vectorcall] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_signed] = ACTIONS(3415), - [anon_sym_unsigned] = ACTIONS(3415), - [anon_sym_long] = ACTIONS(3415), - [anon_sym_short] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_register] = ACTIONS(3415), - [anon_sym_inline] = ACTIONS(3415), - [anon_sym___inline] = ACTIONS(3415), - [anon_sym___inline__] = ACTIONS(3415), - [anon_sym___forceinline] = ACTIONS(3415), - [anon_sym_thread_local] = ACTIONS(3415), - [anon_sym___thread] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_constexpr] = ACTIONS(3415), - [anon_sym_volatile] = ACTIONS(3415), - [anon_sym_restrict] = ACTIONS(3415), - [anon_sym___restrict__] = ACTIONS(3415), - [anon_sym__Atomic] = ACTIONS(3415), - [anon_sym__Noreturn] = ACTIONS(3415), - [anon_sym_noreturn] = ACTIONS(3415), - [anon_sym__Nonnull] = ACTIONS(3415), - [anon_sym_mutable] = ACTIONS(3415), - [anon_sym_constinit] = ACTIONS(3415), - [anon_sym_consteval] = ACTIONS(3415), - [anon_sym_alignas] = ACTIONS(3415), - [anon_sym__Alignas] = ACTIONS(3415), - [sym_primitive_type] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_union] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_goto] = ACTIONS(3415), - [anon_sym_not] = ACTIONS(3415), - [anon_sym_compl] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_sizeof] = ACTIONS(3415), - [anon_sym___alignof__] = ACTIONS(3415), - [anon_sym___alignof] = ACTIONS(3415), - [anon_sym__alignof] = ACTIONS(3415), - [anon_sym_alignof] = ACTIONS(3415), - [anon_sym__Alignof] = ACTIONS(3415), - [anon_sym_offsetof] = ACTIONS(3415), - [anon_sym__Generic] = ACTIONS(3415), - [anon_sym_asm] = ACTIONS(3415), - [anon_sym___asm__] = ACTIONS(3415), - [anon_sym___asm] = ACTIONS(3415), - [sym_number_literal] = ACTIONS(3413), - [anon_sym_L_SQUOTE] = ACTIONS(3413), - [anon_sym_u_SQUOTE] = ACTIONS(3413), - [anon_sym_U_SQUOTE] = ACTIONS(3413), - [anon_sym_u8_SQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_L_DQUOTE] = ACTIONS(3413), - [anon_sym_u_DQUOTE] = ACTIONS(3413), - [anon_sym_U_DQUOTE] = ACTIONS(3413), - [anon_sym_u8_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [anon_sym_NULL] = ACTIONS(3415), - [anon_sym_nullptr] = ACTIONS(3415), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3415), - [anon_sym_decltype] = ACTIONS(3415), - [anon_sym_explicit] = ACTIONS(3415), - [anon_sym_typename] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_template] = ACTIONS(3415), - [anon_sym_operator] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_static_assert] = ACTIONS(3415), - [anon_sym_concept] = ACTIONS(3415), - [anon_sym_co_return] = ACTIONS(3415), - [anon_sym_co_yield] = ACTIONS(3415), - [anon_sym_R_DQUOTE] = ACTIONS(3413), - [anon_sym_LR_DQUOTE] = ACTIONS(3413), - [anon_sym_uR_DQUOTE] = ACTIONS(3413), - [anon_sym_UR_DQUOTE] = ACTIONS(3413), - [anon_sym_u8R_DQUOTE] = ACTIONS(3413), - [anon_sym_co_await] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_requires] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - }, - [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(3417), - [sym_identifier] = ACTIONS(3419), - [aux_sym_preproc_include_token1] = ACTIONS(3419), - [aux_sym_preproc_def_token1] = ACTIONS(3419), - [aux_sym_preproc_if_token1] = ACTIONS(3419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), - [sym_preproc_directive] = ACTIONS(3419), - [anon_sym_LPAREN2] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym___extension__] = ACTIONS(3419), - [anon_sym_typedef] = ACTIONS(3419), - [anon_sym_virtual] = ACTIONS(3419), - [anon_sym_extern] = ACTIONS(3419), - [anon_sym___attribute__] = ACTIONS(3419), - [anon_sym___attribute] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_COLON_COLON] = ACTIONS(3417), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), - [anon_sym___declspec] = ACTIONS(3419), - [anon_sym___based] = ACTIONS(3419), - [anon_sym___cdecl] = ACTIONS(3419), - [anon_sym___clrcall] = ACTIONS(3419), - [anon_sym___stdcall] = ACTIONS(3419), - [anon_sym___fastcall] = ACTIONS(3419), - [anon_sym___thiscall] = ACTIONS(3419), - [anon_sym___vectorcall] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_signed] = ACTIONS(3419), - [anon_sym_unsigned] = ACTIONS(3419), - [anon_sym_long] = ACTIONS(3419), - [anon_sym_short] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_register] = ACTIONS(3419), - [anon_sym_inline] = ACTIONS(3419), - [anon_sym___inline] = ACTIONS(3419), - [anon_sym___inline__] = ACTIONS(3419), - [anon_sym___forceinline] = ACTIONS(3419), - [anon_sym_thread_local] = ACTIONS(3419), - [anon_sym___thread] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_constexpr] = ACTIONS(3419), - [anon_sym_volatile] = ACTIONS(3419), - [anon_sym_restrict] = ACTIONS(3419), - [anon_sym___restrict__] = ACTIONS(3419), - [anon_sym__Atomic] = ACTIONS(3419), - [anon_sym__Noreturn] = ACTIONS(3419), - [anon_sym_noreturn] = ACTIONS(3419), - [anon_sym__Nonnull] = ACTIONS(3419), - [anon_sym_mutable] = ACTIONS(3419), - [anon_sym_constinit] = ACTIONS(3419), - [anon_sym_consteval] = ACTIONS(3419), - [anon_sym_alignas] = ACTIONS(3419), - [anon_sym__Alignas] = ACTIONS(3419), - [sym_primitive_type] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_union] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_goto] = ACTIONS(3419), - [anon_sym_not] = ACTIONS(3419), - [anon_sym_compl] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_sizeof] = ACTIONS(3419), - [anon_sym___alignof__] = ACTIONS(3419), - [anon_sym___alignof] = ACTIONS(3419), - [anon_sym__alignof] = ACTIONS(3419), - [anon_sym_alignof] = ACTIONS(3419), - [anon_sym__Alignof] = ACTIONS(3419), - [anon_sym_offsetof] = ACTIONS(3419), - [anon_sym__Generic] = ACTIONS(3419), - [anon_sym_asm] = ACTIONS(3419), - [anon_sym___asm__] = ACTIONS(3419), - [anon_sym___asm] = ACTIONS(3419), - [sym_number_literal] = ACTIONS(3417), - [anon_sym_L_SQUOTE] = ACTIONS(3417), - [anon_sym_u_SQUOTE] = ACTIONS(3417), - [anon_sym_U_SQUOTE] = ACTIONS(3417), - [anon_sym_u8_SQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_L_DQUOTE] = ACTIONS(3417), - [anon_sym_u_DQUOTE] = ACTIONS(3417), - [anon_sym_U_DQUOTE] = ACTIONS(3417), - [anon_sym_u8_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [anon_sym_NULL] = ACTIONS(3419), - [anon_sym_nullptr] = ACTIONS(3419), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3419), - [anon_sym_decltype] = ACTIONS(3419), - [anon_sym_explicit] = ACTIONS(3419), - [anon_sym_typename] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_template] = ACTIONS(3419), - [anon_sym_operator] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_static_assert] = ACTIONS(3419), - [anon_sym_concept] = ACTIONS(3419), - [anon_sym_co_return] = ACTIONS(3419), - [anon_sym_co_yield] = ACTIONS(3419), - [anon_sym_R_DQUOTE] = ACTIONS(3417), - [anon_sym_LR_DQUOTE] = ACTIONS(3417), - [anon_sym_uR_DQUOTE] = ACTIONS(3417), - [anon_sym_UR_DQUOTE] = ACTIONS(3417), - [anon_sym_u8R_DQUOTE] = ACTIONS(3417), - [anon_sym_co_await] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_requires] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - }, - [STATE(493)] = { - [ts_builtin_sym_end] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3423), - [aux_sym_preproc_include_token1] = ACTIONS(3423), - [aux_sym_preproc_def_token1] = ACTIONS(3423), - [aux_sym_preproc_if_token1] = ACTIONS(3423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3423), - [sym_preproc_directive] = ACTIONS(3423), - [anon_sym_LPAREN2] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym___extension__] = ACTIONS(3423), - [anon_sym_typedef] = ACTIONS(3423), - [anon_sym_virtual] = ACTIONS(3423), - [anon_sym_extern] = ACTIONS(3423), - [anon_sym___attribute__] = ACTIONS(3423), - [anon_sym___attribute] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_COLON_COLON] = ACTIONS(3421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), - [anon_sym___declspec] = ACTIONS(3423), - [anon_sym___based] = ACTIONS(3423), - [anon_sym___cdecl] = ACTIONS(3423), - [anon_sym___clrcall] = ACTIONS(3423), - [anon_sym___stdcall] = ACTIONS(3423), - [anon_sym___fastcall] = ACTIONS(3423), - [anon_sym___thiscall] = ACTIONS(3423), - [anon_sym___vectorcall] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_signed] = ACTIONS(3423), - [anon_sym_unsigned] = ACTIONS(3423), - [anon_sym_long] = ACTIONS(3423), - [anon_sym_short] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_register] = ACTIONS(3423), - [anon_sym_inline] = ACTIONS(3423), - [anon_sym___inline] = ACTIONS(3423), - [anon_sym___inline__] = ACTIONS(3423), - [anon_sym___forceinline] = ACTIONS(3423), - [anon_sym_thread_local] = ACTIONS(3423), - [anon_sym___thread] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_constexpr] = ACTIONS(3423), - [anon_sym_volatile] = ACTIONS(3423), - [anon_sym_restrict] = ACTIONS(3423), - [anon_sym___restrict__] = ACTIONS(3423), - [anon_sym__Atomic] = ACTIONS(3423), - [anon_sym__Noreturn] = ACTIONS(3423), - [anon_sym_noreturn] = ACTIONS(3423), - [anon_sym__Nonnull] = ACTIONS(3423), - [anon_sym_mutable] = ACTIONS(3423), - [anon_sym_constinit] = ACTIONS(3423), - [anon_sym_consteval] = ACTIONS(3423), - [anon_sym_alignas] = ACTIONS(3423), - [anon_sym__Alignas] = ACTIONS(3423), - [sym_primitive_type] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_union] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_goto] = ACTIONS(3423), - [anon_sym_not] = ACTIONS(3423), - [anon_sym_compl] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_sizeof] = ACTIONS(3423), - [anon_sym___alignof__] = ACTIONS(3423), - [anon_sym___alignof] = ACTIONS(3423), - [anon_sym__alignof] = ACTIONS(3423), - [anon_sym_alignof] = ACTIONS(3423), - [anon_sym__Alignof] = ACTIONS(3423), - [anon_sym_offsetof] = ACTIONS(3423), - [anon_sym__Generic] = ACTIONS(3423), - [anon_sym_asm] = ACTIONS(3423), - [anon_sym___asm__] = ACTIONS(3423), - [anon_sym___asm] = ACTIONS(3423), - [sym_number_literal] = ACTIONS(3421), - [anon_sym_L_SQUOTE] = ACTIONS(3421), - [anon_sym_u_SQUOTE] = ACTIONS(3421), - [anon_sym_U_SQUOTE] = ACTIONS(3421), - [anon_sym_u8_SQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_L_DQUOTE] = ACTIONS(3421), - [anon_sym_u_DQUOTE] = ACTIONS(3421), - [anon_sym_U_DQUOTE] = ACTIONS(3421), - [anon_sym_u8_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [anon_sym_NULL] = ACTIONS(3423), - [anon_sym_nullptr] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3423), - [anon_sym_decltype] = ACTIONS(3423), - [anon_sym_explicit] = ACTIONS(3423), - [anon_sym_typename] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_template] = ACTIONS(3423), - [anon_sym_operator] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_static_assert] = ACTIONS(3423), - [anon_sym_concept] = ACTIONS(3423), - [anon_sym_co_return] = ACTIONS(3423), - [anon_sym_co_yield] = ACTIONS(3423), - [anon_sym_R_DQUOTE] = ACTIONS(3421), - [anon_sym_LR_DQUOTE] = ACTIONS(3421), - [anon_sym_uR_DQUOTE] = ACTIONS(3421), - [anon_sym_UR_DQUOTE] = ACTIONS(3421), - [anon_sym_u8R_DQUOTE] = ACTIONS(3421), - [anon_sym_co_await] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_requires] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - }, - [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3427), - [aux_sym_preproc_include_token1] = ACTIONS(3427), - [aux_sym_preproc_def_token1] = ACTIONS(3427), - [aux_sym_preproc_if_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3427), - [sym_preproc_directive] = ACTIONS(3427), - [anon_sym_LPAREN2] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym___extension__] = ACTIONS(3427), - [anon_sym_typedef] = ACTIONS(3427), - [anon_sym_virtual] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3427), - [anon_sym___attribute__] = ACTIONS(3427), - [anon_sym___attribute] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_COLON_COLON] = ACTIONS(3425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3425), - [anon_sym___declspec] = ACTIONS(3427), - [anon_sym___based] = ACTIONS(3427), - [anon_sym___cdecl] = ACTIONS(3427), - [anon_sym___clrcall] = ACTIONS(3427), - [anon_sym___stdcall] = ACTIONS(3427), - [anon_sym___fastcall] = ACTIONS(3427), - [anon_sym___thiscall] = ACTIONS(3427), - [anon_sym___vectorcall] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_signed] = ACTIONS(3427), - [anon_sym_unsigned] = ACTIONS(3427), - [anon_sym_long] = ACTIONS(3427), - [anon_sym_short] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_register] = ACTIONS(3427), - [anon_sym_inline] = ACTIONS(3427), - [anon_sym___inline] = ACTIONS(3427), - [anon_sym___inline__] = ACTIONS(3427), - [anon_sym___forceinline] = ACTIONS(3427), - [anon_sym_thread_local] = ACTIONS(3427), - [anon_sym___thread] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_constexpr] = ACTIONS(3427), - [anon_sym_volatile] = ACTIONS(3427), - [anon_sym_restrict] = ACTIONS(3427), - [anon_sym___restrict__] = ACTIONS(3427), - [anon_sym__Atomic] = ACTIONS(3427), - [anon_sym__Noreturn] = ACTIONS(3427), - [anon_sym_noreturn] = ACTIONS(3427), - [anon_sym__Nonnull] = ACTIONS(3427), - [anon_sym_mutable] = ACTIONS(3427), - [anon_sym_constinit] = ACTIONS(3427), - [anon_sym_consteval] = ACTIONS(3427), - [anon_sym_alignas] = ACTIONS(3427), - [anon_sym__Alignas] = ACTIONS(3427), - [sym_primitive_type] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_not] = ACTIONS(3427), - [anon_sym_compl] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_sizeof] = ACTIONS(3427), - [anon_sym___alignof__] = ACTIONS(3427), - [anon_sym___alignof] = ACTIONS(3427), - [anon_sym__alignof] = ACTIONS(3427), - [anon_sym_alignof] = ACTIONS(3427), - [anon_sym__Alignof] = ACTIONS(3427), - [anon_sym_offsetof] = ACTIONS(3427), - [anon_sym__Generic] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym___asm__] = ACTIONS(3427), - [anon_sym___asm] = ACTIONS(3427), - [sym_number_literal] = ACTIONS(3425), - [anon_sym_L_SQUOTE] = ACTIONS(3425), - [anon_sym_u_SQUOTE] = ACTIONS(3425), - [anon_sym_U_SQUOTE] = ACTIONS(3425), - [anon_sym_u8_SQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_L_DQUOTE] = ACTIONS(3425), - [anon_sym_u_DQUOTE] = ACTIONS(3425), - [anon_sym_U_DQUOTE] = ACTIONS(3425), - [anon_sym_u8_DQUOTE] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3427), - [anon_sym_decltype] = ACTIONS(3427), - [anon_sym_explicit] = ACTIONS(3427), - [anon_sym_typename] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_template] = ACTIONS(3427), - [anon_sym_operator] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_static_assert] = ACTIONS(3427), - [anon_sym_concept] = ACTIONS(3427), - [anon_sym_co_return] = ACTIONS(3427), - [anon_sym_co_yield] = ACTIONS(3427), - [anon_sym_R_DQUOTE] = ACTIONS(3425), - [anon_sym_LR_DQUOTE] = ACTIONS(3425), - [anon_sym_uR_DQUOTE] = ACTIONS(3425), - [anon_sym_UR_DQUOTE] = ACTIONS(3425), - [anon_sym_u8R_DQUOTE] = ACTIONS(3425), - [anon_sym_co_await] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_requires] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - }, - [STATE(495)] = { - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [aux_sym_preproc_include_token1] = ACTIONS(3431), - [aux_sym_preproc_def_token1] = ACTIONS(3431), - [aux_sym_preproc_if_token1] = ACTIONS(3431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3431), - [sym_preproc_directive] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym___extension__] = ACTIONS(3431), - [anon_sym_typedef] = ACTIONS(3431), - [anon_sym_virtual] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3431), - [anon_sym___attribute__] = ACTIONS(3431), - [anon_sym___attribute] = ACTIONS(3431), - [anon_sym_using] = ACTIONS(3431), - [anon_sym_COLON_COLON] = ACTIONS(3429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3429), - [anon_sym___declspec] = ACTIONS(3431), - [anon_sym___based] = ACTIONS(3431), - [anon_sym___cdecl] = ACTIONS(3431), - [anon_sym___clrcall] = ACTIONS(3431), - [anon_sym___stdcall] = ACTIONS(3431), - [anon_sym___fastcall] = ACTIONS(3431), - [anon_sym___thiscall] = ACTIONS(3431), - [anon_sym___vectorcall] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_signed] = ACTIONS(3431), - [anon_sym_unsigned] = ACTIONS(3431), - [anon_sym_long] = ACTIONS(3431), - [anon_sym_short] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3431), - [anon_sym_register] = ACTIONS(3431), - [anon_sym_inline] = ACTIONS(3431), - [anon_sym___inline] = ACTIONS(3431), - [anon_sym___inline__] = ACTIONS(3431), - [anon_sym___forceinline] = ACTIONS(3431), - [anon_sym_thread_local] = ACTIONS(3431), - [anon_sym___thread] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_constexpr] = ACTIONS(3431), - [anon_sym_volatile] = ACTIONS(3431), - [anon_sym_restrict] = ACTIONS(3431), - [anon_sym___restrict__] = ACTIONS(3431), - [anon_sym__Atomic] = ACTIONS(3431), - [anon_sym__Noreturn] = ACTIONS(3431), - [anon_sym_noreturn] = ACTIONS(3431), - [anon_sym__Nonnull] = ACTIONS(3431), - [anon_sym_mutable] = ACTIONS(3431), - [anon_sym_constinit] = ACTIONS(3431), - [anon_sym_consteval] = ACTIONS(3431), - [anon_sym_alignas] = ACTIONS(3431), - [anon_sym__Alignas] = ACTIONS(3431), - [sym_primitive_type] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_class] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_switch] = ACTIONS(3431), - [anon_sym_case] = ACTIONS(3431), - [anon_sym_default] = ACTIONS(3431), - [anon_sym_while] = ACTIONS(3431), - [anon_sym_do] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_not] = ACTIONS(3431), - [anon_sym_compl] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_sizeof] = ACTIONS(3431), - [anon_sym___alignof__] = ACTIONS(3431), - [anon_sym___alignof] = ACTIONS(3431), - [anon_sym__alignof] = ACTIONS(3431), - [anon_sym_alignof] = ACTIONS(3431), - [anon_sym__Alignof] = ACTIONS(3431), - [anon_sym_offsetof] = ACTIONS(3431), - [anon_sym__Generic] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym___asm__] = ACTIONS(3431), - [anon_sym___asm] = ACTIONS(3431), - [sym_number_literal] = ACTIONS(3429), - [anon_sym_L_SQUOTE] = ACTIONS(3429), - [anon_sym_u_SQUOTE] = ACTIONS(3429), - [anon_sym_U_SQUOTE] = ACTIONS(3429), - [anon_sym_u8_SQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_L_DQUOTE] = ACTIONS(3429), - [anon_sym_u_DQUOTE] = ACTIONS(3429), - [anon_sym_U_DQUOTE] = ACTIONS(3429), - [anon_sym_u8_DQUOTE] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [anon_sym_NULL] = ACTIONS(3431), - [anon_sym_nullptr] = ACTIONS(3431), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3431), - [anon_sym_decltype] = ACTIONS(3431), - [anon_sym_explicit] = ACTIONS(3431), - [anon_sym_typename] = ACTIONS(3431), - [anon_sym_export] = ACTIONS(3431), - [anon_sym_module] = ACTIONS(3431), - [anon_sym_import] = ACTIONS(3431), - [anon_sym_template] = ACTIONS(3431), - [anon_sym_operator] = ACTIONS(3431), - [anon_sym_try] = ACTIONS(3431), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_throw] = ACTIONS(3431), - [anon_sym_namespace] = ACTIONS(3431), - [anon_sym_static_assert] = ACTIONS(3431), - [anon_sym_concept] = ACTIONS(3431), - [anon_sym_co_return] = ACTIONS(3431), - [anon_sym_co_yield] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3429), - [anon_sym_LR_DQUOTE] = ACTIONS(3429), - [anon_sym_uR_DQUOTE] = ACTIONS(3429), - [anon_sym_UR_DQUOTE] = ACTIONS(3429), - [anon_sym_u8R_DQUOTE] = ACTIONS(3429), - [anon_sym_co_await] = ACTIONS(3431), - [anon_sym_new] = ACTIONS(3431), - [anon_sym_requires] = ACTIONS(3431), - [sym_this] = ACTIONS(3431), - }, - [STATE(496)] = { - [ts_builtin_sym_end] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym___extension__] = ACTIONS(2781), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym___attribute] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym___inline] = ACTIONS(2781), - [anon_sym___inline__] = ACTIONS(2781), - [anon_sym___forceinline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym___thread] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym___restrict__] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym__Noreturn] = ACTIONS(2781), - [anon_sym_noreturn] = ACTIONS(2781), - [anon_sym__Nonnull] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_alignas] = ACTIONS(2781), - [anon_sym__Alignas] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [anon_sym___alignof__] = ACTIONS(2781), - [anon_sym___alignof] = ACTIONS(2781), - [anon_sym__alignof] = ACTIONS(2781), - [anon_sym_alignof] = ACTIONS(2781), - [anon_sym__Alignof] = ACTIONS(2781), - [anon_sym_offsetof] = ACTIONS(2781), - [anon_sym__Generic] = ACTIONS(2781), - [anon_sym_asm] = ACTIONS(2781), - [anon_sym___asm__] = ACTIONS(2781), - [anon_sym___asm] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [anon_sym_NULL] = ACTIONS(2781), - [anon_sym_nullptr] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_export] = ACTIONS(2781), - [anon_sym_module] = ACTIONS(2781), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - }, - [STATE(497)] = { - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [anon_sym___alignof__] = ACTIONS(2785), - [anon_sym___alignof] = ACTIONS(2785), - [anon_sym__alignof] = ACTIONS(2785), - [anon_sym_alignof] = ACTIONS(2785), - [anon_sym__Alignof] = ACTIONS(2785), - [anon_sym_offsetof] = ACTIONS(2785), - [anon_sym__Generic] = ACTIONS(2785), - [anon_sym_asm] = ACTIONS(2785), - [anon_sym___asm__] = ACTIONS(2785), - [anon_sym___asm] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [anon_sym_NULL] = ACTIONS(2785), - [anon_sym_nullptr] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_export] = ACTIONS(2785), - [anon_sym_module] = ACTIONS(2785), - [anon_sym_import] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - }, - [STATE(498)] = { - [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_virtual] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym___attribute] = ACTIONS(2849), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_export] = ACTIONS(2849), - [anon_sym_module] = ACTIONS(2849), - [anon_sym_import] = 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_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = 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), - }, - [STATE(499)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(500)] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_export] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(501)] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_export] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(502)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_export] = ACTIONS(2961), - [anon_sym_module] = ACTIONS(2961), - [anon_sym_import] = 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_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), - }, - [STATE(503)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_export] = ACTIONS(2961), - [anon_sym_module] = ACTIONS(2961), - [anon_sym_import] = 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_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), - }, - [STATE(504)] = { - [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_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_export] = ACTIONS(2965), - [anon_sym_module] = ACTIONS(2965), - [anon_sym_import] = 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_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), - }, - [STATE(505)] = { - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_export] = ACTIONS(2973), - [anon_sym_module] = ACTIONS(2973), - [anon_sym_import] = 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_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), - }, - [STATE(506)] = { - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_export] = ACTIONS(2977), - [anon_sym_module] = ACTIONS(2977), - [anon_sym_import] = 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_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), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2993), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(507)] = { - [ts_builtin_sym_end] = ACTIONS(2997), + [STATE(280)] = { + [sym_expression] = STATE(6784), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10726), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_include_token1] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym___cdecl] = ACTIONS(2995), - [anon_sym___clrcall] = ACTIONS(2995), - [anon_sym___stdcall] = ACTIONS(2995), - [anon_sym___fastcall] = ACTIONS(2995), - [anon_sym___thiscall] = ACTIONS(2995), - [anon_sym___vectorcall] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_switch] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_default] = ACTIONS(2995), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_do] = ACTIONS(2995), - [anon_sym_for] = ACTIONS(2995), - [anon_sym_return] = ACTIONS(2995), - [anon_sym_break] = ACTIONS(2995), - [anon_sym_continue] = ACTIONS(2995), - [anon_sym_goto] = ACTIONS(2995), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(2995), - [anon_sym___alignof__] = ACTIONS(2995), - [anon_sym___alignof] = ACTIONS(2995), - [anon_sym__alignof] = ACTIONS(2995), - [anon_sym_alignof] = ACTIONS(2995), - [anon_sym__Alignof] = ACTIONS(2995), - [anon_sym_offsetof] = ACTIONS(2995), - [anon_sym__Generic] = ACTIONS(2995), - [anon_sym_asm] = ACTIONS(2995), - [anon_sym___asm__] = ACTIONS(2995), - [anon_sym___asm] = ACTIONS(2995), - [sym_number_literal] = ACTIONS(2997), - [anon_sym_L_SQUOTE] = ACTIONS(2997), - [anon_sym_u_SQUOTE] = ACTIONS(2997), - [anon_sym_U_SQUOTE] = ACTIONS(2997), - [anon_sym_u8_SQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_L_DQUOTE] = ACTIONS(2997), - [anon_sym_u_DQUOTE] = ACTIONS(2997), - [anon_sym_U_DQUOTE] = ACTIONS(2997), - [anon_sym_u8_DQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [sym_true] = ACTIONS(2995), - [sym_false] = ACTIONS(2995), - [anon_sym_NULL] = ACTIONS(2995), - [anon_sym_nullptr] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_export] = ACTIONS(2995), - [anon_sym_module] = ACTIONS(2995), - [anon_sym_import] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_throw] = ACTIONS(2995), - [anon_sym_namespace] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), - [anon_sym_concept] = ACTIONS(2995), - [anon_sym_co_return] = ACTIONS(2995), - [anon_sym_co_yield] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2997), - [anon_sym_LR_DQUOTE] = ACTIONS(2997), - [anon_sym_uR_DQUOTE] = ACTIONS(2997), - [anon_sym_UR_DQUOTE] = ACTIONS(2997), - [anon_sym_u8R_DQUOTE] = ACTIONS(2997), - [anon_sym_co_await] = ACTIONS(2995), - [anon_sym_new] = ACTIONS(2995), - [anon_sym_requires] = ACTIONS(2995), - [sym_this] = ACTIONS(2995), - }, - [STATE(508)] = { - [ts_builtin_sym_end] = ACTIONS(3001), - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_include_token1] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym___cdecl] = ACTIONS(2999), - [anon_sym___clrcall] = ACTIONS(2999), - [anon_sym___stdcall] = ACTIONS(2999), - [anon_sym___fastcall] = ACTIONS(2999), - [anon_sym___thiscall] = ACTIONS(2999), - [anon_sym___vectorcall] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_switch] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_default] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_goto] = ACTIONS(2999), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_compl] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(2999), - [anon_sym___alignof__] = ACTIONS(2999), - [anon_sym___alignof] = ACTIONS(2999), - [anon_sym__alignof] = ACTIONS(2999), - [anon_sym_alignof] = ACTIONS(2999), - [anon_sym__Alignof] = ACTIONS(2999), - [anon_sym_offsetof] = ACTIONS(2999), - [anon_sym__Generic] = ACTIONS(2999), - [anon_sym_asm] = ACTIONS(2999), - [anon_sym___asm__] = ACTIONS(2999), - [anon_sym___asm] = ACTIONS(2999), - [sym_number_literal] = ACTIONS(3001), - [anon_sym_L_SQUOTE] = ACTIONS(3001), - [anon_sym_u_SQUOTE] = ACTIONS(3001), - [anon_sym_U_SQUOTE] = ACTIONS(3001), - [anon_sym_u8_SQUOTE] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_L_DQUOTE] = ACTIONS(3001), - [anon_sym_u_DQUOTE] = ACTIONS(3001), - [anon_sym_U_DQUOTE] = ACTIONS(3001), - [anon_sym_u8_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [anon_sym_NULL] = ACTIONS(2999), - [anon_sym_nullptr] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_export] = ACTIONS(2999), - [anon_sym_module] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_namespace] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), - [anon_sym_concept] = ACTIONS(2999), - [anon_sym_co_return] = ACTIONS(2999), - [anon_sym_co_yield] = ACTIONS(2999), - [anon_sym_R_DQUOTE] = ACTIONS(3001), - [anon_sym_LR_DQUOTE] = ACTIONS(3001), - [anon_sym_uR_DQUOTE] = ACTIONS(3001), - [anon_sym_UR_DQUOTE] = ACTIONS(3001), - [anon_sym_u8R_DQUOTE] = ACTIONS(3001), - [anon_sym_co_await] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_requires] = ACTIONS(2999), - [sym_this] = ACTIONS(2999), - }, - [STATE(509)] = { - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_include_token1] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym___extension__] = ACTIONS(3000), [anon_sym_virtual] = ACTIONS(3003), [anon_sym_extern] = ACTIONS(3003), [anon_sym___attribute__] = ACTIONS(3003), [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3008), [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym___cdecl] = ACTIONS(3003), - [anon_sym___clrcall] = ACTIONS(3003), - [anon_sym___stdcall] = ACTIONS(3003), - [anon_sym___fastcall] = ACTIONS(3003), - [anon_sym___thiscall] = ACTIONS(3003), - [anon_sym___vectorcall] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3005), [anon_sym_signed] = ACTIONS(3003), [anon_sym_unsigned] = ACTIONS(3003), [anon_sym_long] = ACTIONS(3003), [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_static] = ACTIONS(3003), [anon_sym_register] = ACTIONS(3003), [anon_sym_inline] = ACTIONS(3003), @@ -116807,42355 +94343,896 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(3003), [anon_sym_alignas] = ACTIONS(3003), [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), + [sym_primitive_type] = ACTIONS(3010), [anon_sym_enum] = ACTIONS(3003), [anon_sym_class] = ACTIONS(3003), [anon_sym_struct] = ACTIONS(3003), [anon_sym_union] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_switch] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_goto] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3003), - [anon_sym_compl] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3003), - [anon_sym___alignof__] = ACTIONS(3003), - [anon_sym___alignof] = ACTIONS(3003), - [anon_sym__alignof] = ACTIONS(3003), - [anon_sym_alignof] = ACTIONS(3003), - [anon_sym__Alignof] = ACTIONS(3003), - [anon_sym_offsetof] = ACTIONS(3003), - [anon_sym__Generic] = ACTIONS(3003), - [anon_sym_asm] = ACTIONS(3003), - [anon_sym___asm__] = ACTIONS(3003), - [anon_sym___asm] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_L_SQUOTE] = ACTIONS(3005), - [anon_sym_u_SQUOTE] = ACTIONS(3005), - [anon_sym_U_SQUOTE] = ACTIONS(3005), - [anon_sym_u8_SQUOTE] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_L_DQUOTE] = ACTIONS(3005), - [anon_sym_u_DQUOTE] = ACTIONS(3005), - [anon_sym_U_DQUOTE] = ACTIONS(3005), - [anon_sym_u8_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [anon_sym_NULL] = ACTIONS(3003), - [anon_sym_nullptr] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_export] = ACTIONS(3003), - [anon_sym_module] = ACTIONS(3003), - [anon_sym_import] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - [anon_sym_concept] = ACTIONS(3003), - [anon_sym_co_return] = ACTIONS(3003), - [anon_sym_co_yield] = ACTIONS(3003), - [anon_sym_R_DQUOTE] = ACTIONS(3005), - [anon_sym_LR_DQUOTE] = ACTIONS(3005), - [anon_sym_uR_DQUOTE] = ACTIONS(3005), - [anon_sym_UR_DQUOTE] = ACTIONS(3005), - [anon_sym_u8R_DQUOTE] = ACTIONS(3005), - [anon_sym_co_await] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_requires] = ACTIONS(3003), - [sym_this] = ACTIONS(3003), - }, - [STATE(510)] = { - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3007), - [aux_sym_preproc_include_token1] = ACTIONS(3007), - [aux_sym_preproc_def_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3007), - [sym_preproc_directive] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3007), - [anon_sym_virtual] = ACTIONS(3007), - [anon_sym_extern] = ACTIONS(3007), - [anon_sym___attribute__] = ACTIONS(3007), - [anon_sym___attribute] = ACTIONS(3007), - [anon_sym_using] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3009), - [anon_sym___declspec] = ACTIONS(3007), - [anon_sym___based] = ACTIONS(3007), - [anon_sym___cdecl] = ACTIONS(3007), - [anon_sym___clrcall] = ACTIONS(3007), - [anon_sym___stdcall] = ACTIONS(3007), - [anon_sym___fastcall] = ACTIONS(3007), - [anon_sym___thiscall] = ACTIONS(3007), - [anon_sym___vectorcall] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_signed] = ACTIONS(3007), - [anon_sym_unsigned] = ACTIONS(3007), - [anon_sym_long] = ACTIONS(3007), - [anon_sym_short] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_register] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym___inline] = ACTIONS(3007), - [anon_sym___inline__] = ACTIONS(3007), - [anon_sym___forceinline] = ACTIONS(3007), - [anon_sym_thread_local] = ACTIONS(3007), - [anon_sym___thread] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_constexpr] = ACTIONS(3007), - [anon_sym_volatile] = ACTIONS(3007), - [anon_sym_restrict] = ACTIONS(3007), - [anon_sym___restrict__] = ACTIONS(3007), - [anon_sym__Atomic] = ACTIONS(3007), - [anon_sym__Noreturn] = ACTIONS(3007), - [anon_sym_noreturn] = ACTIONS(3007), - [anon_sym__Nonnull] = ACTIONS(3007), - [anon_sym_mutable] = ACTIONS(3007), - [anon_sym_constinit] = ACTIONS(3007), - [anon_sym_consteval] = ACTIONS(3007), - [anon_sym_alignas] = ACTIONS(3007), - [anon_sym__Alignas] = ACTIONS(3007), - [sym_primitive_type] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_switch] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym_not] = ACTIONS(3007), - [anon_sym_compl] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_sizeof] = ACTIONS(3007), - [anon_sym___alignof__] = ACTIONS(3007), - [anon_sym___alignof] = ACTIONS(3007), - [anon_sym__alignof] = ACTIONS(3007), - [anon_sym_alignof] = ACTIONS(3007), - [anon_sym__Alignof] = ACTIONS(3007), - [anon_sym_offsetof] = ACTIONS(3007), - [anon_sym__Generic] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym___asm__] = ACTIONS(3007), - [anon_sym___asm] = ACTIONS(3007), - [sym_number_literal] = ACTIONS(3009), - [anon_sym_L_SQUOTE] = ACTIONS(3009), - [anon_sym_u_SQUOTE] = ACTIONS(3009), - [anon_sym_U_SQUOTE] = ACTIONS(3009), - [anon_sym_u8_SQUOTE] = ACTIONS(3009), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_L_DQUOTE] = ACTIONS(3009), - [anon_sym_u_DQUOTE] = ACTIONS(3009), - [anon_sym_U_DQUOTE] = ACTIONS(3009), - [anon_sym_u8_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [anon_sym_NULL] = ACTIONS(3007), - [anon_sym_nullptr] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3007), - [anon_sym_decltype] = ACTIONS(3007), - [anon_sym_explicit] = ACTIONS(3007), - [anon_sym_typename] = ACTIONS(3007), - [anon_sym_export] = ACTIONS(3007), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_import] = ACTIONS(3007), - [anon_sym_template] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_delete] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_static_assert] = ACTIONS(3007), - [anon_sym_concept] = ACTIONS(3007), - [anon_sym_co_return] = ACTIONS(3007), - [anon_sym_co_yield] = ACTIONS(3007), - [anon_sym_R_DQUOTE] = ACTIONS(3009), - [anon_sym_LR_DQUOTE] = ACTIONS(3009), - [anon_sym_uR_DQUOTE] = ACTIONS(3009), - [anon_sym_UR_DQUOTE] = ACTIONS(3009), - [anon_sym_u8R_DQUOTE] = ACTIONS(3009), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_requires] = ACTIONS(3007), - [sym_this] = ACTIONS(3007), - }, - [STATE(511)] = { - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3011), - [aux_sym_preproc_include_token1] = ACTIONS(3011), - [aux_sym_preproc_def_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3011), - [sym_preproc_directive] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = ACTIONS(3011), - [anon_sym___attribute] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3013), - [anon_sym___declspec] = ACTIONS(3011), - [anon_sym___based] = ACTIONS(3011), - [anon_sym___cdecl] = ACTIONS(3011), - [anon_sym___clrcall] = ACTIONS(3011), - [anon_sym___stdcall] = ACTIONS(3011), - [anon_sym___fastcall] = ACTIONS(3011), - [anon_sym___thiscall] = ACTIONS(3011), - [anon_sym___vectorcall] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_signed] = ACTIONS(3011), - [anon_sym_unsigned] = ACTIONS(3011), - [anon_sym_long] = ACTIONS(3011), - [anon_sym_short] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_register] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym___inline] = ACTIONS(3011), - [anon_sym___inline__] = ACTIONS(3011), - [anon_sym___forceinline] = ACTIONS(3011), - [anon_sym_thread_local] = ACTIONS(3011), - [anon_sym___thread] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_constexpr] = ACTIONS(3011), - [anon_sym_volatile] = ACTIONS(3011), - [anon_sym_restrict] = ACTIONS(3011), - [anon_sym___restrict__] = ACTIONS(3011), - [anon_sym__Atomic] = ACTIONS(3011), - [anon_sym__Noreturn] = ACTIONS(3011), - [anon_sym_noreturn] = ACTIONS(3011), - [anon_sym__Nonnull] = ACTIONS(3011), - [anon_sym_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym__Alignas] = ACTIONS(3011), - [sym_primitive_type] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_switch] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_default] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_do] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_compl] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3011), - [anon_sym___alignof] = ACTIONS(3011), - [anon_sym__alignof] = ACTIONS(3011), - [anon_sym_alignof] = ACTIONS(3011), - [anon_sym__Alignof] = ACTIONS(3011), - [anon_sym_offsetof] = ACTIONS(3011), - [anon_sym__Generic] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym___asm__] = ACTIONS(3011), - [anon_sym___asm] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(3013), - [anon_sym_L_SQUOTE] = ACTIONS(3013), - [anon_sym_u_SQUOTE] = ACTIONS(3013), - [anon_sym_U_SQUOTE] = ACTIONS(3013), - [anon_sym_u8_SQUOTE] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_L_DQUOTE] = ACTIONS(3013), - [anon_sym_u_DQUOTE] = ACTIONS(3013), - [anon_sym_U_DQUOTE] = ACTIONS(3013), - [anon_sym_u8_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [anon_sym_NULL] = ACTIONS(3011), - [anon_sym_nullptr] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_export] = ACTIONS(3011), - [anon_sym_module] = ACTIONS(3011), - [anon_sym_import] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_delete] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_namespace] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - [anon_sym_concept] = ACTIONS(3011), - [anon_sym_co_return] = ACTIONS(3011), - [anon_sym_co_yield] = ACTIONS(3011), - [anon_sym_R_DQUOTE] = ACTIONS(3013), - [anon_sym_LR_DQUOTE] = ACTIONS(3013), - [anon_sym_uR_DQUOTE] = ACTIONS(3013), - [anon_sym_UR_DQUOTE] = ACTIONS(3013), - [anon_sym_u8R_DQUOTE] = ACTIONS(3013), - [anon_sym_co_await] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_requires] = ACTIONS(3011), - [sym_this] = ACTIONS(3011), - }, - [STATE(512)] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - }, - [STATE(513)] = { - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3015), - [aux_sym_preproc_include_token1] = ACTIONS(3015), - [aux_sym_preproc_def_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3015), - [sym_preproc_directive] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym___extension__] = ACTIONS(3015), - [anon_sym_typedef] = ACTIONS(3015), - [anon_sym_virtual] = ACTIONS(3015), - [anon_sym_extern] = ACTIONS(3015), - [anon_sym___attribute__] = ACTIONS(3015), - [anon_sym___attribute] = ACTIONS(3015), - [anon_sym_using] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3017), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3017), - [anon_sym___declspec] = ACTIONS(3015), - [anon_sym___based] = ACTIONS(3015), - [anon_sym___cdecl] = ACTIONS(3015), - [anon_sym___clrcall] = ACTIONS(3015), - [anon_sym___stdcall] = ACTIONS(3015), - [anon_sym___fastcall] = ACTIONS(3015), - [anon_sym___thiscall] = ACTIONS(3015), - [anon_sym___vectorcall] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_signed] = ACTIONS(3015), - [anon_sym_unsigned] = ACTIONS(3015), - [anon_sym_long] = ACTIONS(3015), - [anon_sym_short] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_register] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym___inline] = ACTIONS(3015), - [anon_sym___inline__] = ACTIONS(3015), - [anon_sym___forceinline] = ACTIONS(3015), - [anon_sym_thread_local] = ACTIONS(3015), - [anon_sym___thread] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_constexpr] = ACTIONS(3015), - [anon_sym_volatile] = ACTIONS(3015), - [anon_sym_restrict] = ACTIONS(3015), - [anon_sym___restrict__] = ACTIONS(3015), - [anon_sym__Atomic] = ACTIONS(3015), - [anon_sym__Noreturn] = ACTIONS(3015), - [anon_sym_noreturn] = ACTIONS(3015), - [anon_sym__Nonnull] = ACTIONS(3015), - [anon_sym_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = ACTIONS(3015), - [anon_sym_alignas] = ACTIONS(3015), - [anon_sym__Alignas] = ACTIONS(3015), - [sym_primitive_type] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_do] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_compl] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_sizeof] = ACTIONS(3015), - [anon_sym___alignof__] = ACTIONS(3015), - [anon_sym___alignof] = ACTIONS(3015), - [anon_sym__alignof] = ACTIONS(3015), - [anon_sym_alignof] = ACTIONS(3015), - [anon_sym__Alignof] = ACTIONS(3015), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym___asm__] = ACTIONS(3015), - [anon_sym___asm] = ACTIONS(3015), - [sym_number_literal] = ACTIONS(3017), - [anon_sym_L_SQUOTE] = ACTIONS(3017), - [anon_sym_u_SQUOTE] = ACTIONS(3017), - [anon_sym_U_SQUOTE] = ACTIONS(3017), - [anon_sym_u8_SQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_L_DQUOTE] = ACTIONS(3017), - [anon_sym_u_DQUOTE] = ACTIONS(3017), - [anon_sym_U_DQUOTE] = ACTIONS(3017), - [anon_sym_u8_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [anon_sym_NULL] = ACTIONS(3015), - [anon_sym_nullptr] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3015), - [anon_sym_decltype] = ACTIONS(3015), - [anon_sym_explicit] = ACTIONS(3015), - [anon_sym_typename] = ACTIONS(3015), - [anon_sym_export] = ACTIONS(3015), - [anon_sym_module] = ACTIONS(3015), - [anon_sym_import] = ACTIONS(3015), - [anon_sym_template] = ACTIONS(3015), - [anon_sym_operator] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_delete] = ACTIONS(3015), - [anon_sym_throw] = ACTIONS(3015), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_static_assert] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3015), - [anon_sym_co_return] = ACTIONS(3015), - [anon_sym_co_yield] = ACTIONS(3015), - [anon_sym_R_DQUOTE] = ACTIONS(3017), - [anon_sym_LR_DQUOTE] = ACTIONS(3017), - [anon_sym_uR_DQUOTE] = ACTIONS(3017), - [anon_sym_UR_DQUOTE] = ACTIONS(3017), - [anon_sym_u8R_DQUOTE] = ACTIONS(3017), - [anon_sym_co_await] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_requires] = ACTIONS(3015), - [sym_this] = ACTIONS(3015), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3019), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(237), }, - [STATE(514)] = { - [ts_builtin_sym_end] = ACTIONS(3302), - [sym_identifier] = ACTIONS(3300), - [aux_sym_preproc_include_token1] = ACTIONS(3300), - [aux_sym_preproc_def_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), - [sym_preproc_directive] = ACTIONS(3300), - [anon_sym_LPAREN2] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_virtual] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym___attribute__] = ACTIONS(3300), - [anon_sym___attribute] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_COLON_COLON] = ACTIONS(3302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3302), - [anon_sym___declspec] = ACTIONS(3300), - [anon_sym___based] = ACTIONS(3300), - [anon_sym___cdecl] = ACTIONS(3300), - [anon_sym___clrcall] = ACTIONS(3300), - [anon_sym___stdcall] = ACTIONS(3300), - [anon_sym___fastcall] = ACTIONS(3300), - [anon_sym___thiscall] = ACTIONS(3300), - [anon_sym___vectorcall] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3300), - [anon_sym_unsigned] = ACTIONS(3300), - [anon_sym_long] = ACTIONS(3300), - [anon_sym_short] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_register] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym___inline] = ACTIONS(3300), - [anon_sym___inline__] = ACTIONS(3300), - [anon_sym___forceinline] = ACTIONS(3300), - [anon_sym_thread_local] = ACTIONS(3300), - [anon_sym___thread] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_constexpr] = ACTIONS(3300), - [anon_sym_volatile] = ACTIONS(3300), - [anon_sym_restrict] = ACTIONS(3300), - [anon_sym___restrict__] = ACTIONS(3300), - [anon_sym__Atomic] = ACTIONS(3300), - [anon_sym__Noreturn] = ACTIONS(3300), - [anon_sym_noreturn] = ACTIONS(3300), - [anon_sym__Nonnull] = ACTIONS(3300), - [anon_sym_mutable] = ACTIONS(3300), - [anon_sym_constinit] = ACTIONS(3300), - [anon_sym_consteval] = ACTIONS(3300), - [anon_sym_alignas] = ACTIONS(3300), - [anon_sym__Alignas] = ACTIONS(3300), - [sym_primitive_type] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym_not] = ACTIONS(3300), - [anon_sym_compl] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_sizeof] = ACTIONS(3300), - [anon_sym___alignof__] = ACTIONS(3300), - [anon_sym___alignof] = ACTIONS(3300), - [anon_sym__alignof] = ACTIONS(3300), - [anon_sym_alignof] = ACTIONS(3300), - [anon_sym__Alignof] = ACTIONS(3300), - [anon_sym_offsetof] = ACTIONS(3300), - [anon_sym__Generic] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym___asm__] = ACTIONS(3300), - [anon_sym___asm] = ACTIONS(3300), - [sym_number_literal] = ACTIONS(3302), - [anon_sym_L_SQUOTE] = ACTIONS(3302), - [anon_sym_u_SQUOTE] = ACTIONS(3302), - [anon_sym_U_SQUOTE] = ACTIONS(3302), - [anon_sym_u8_SQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_L_DQUOTE] = ACTIONS(3302), - [anon_sym_u_DQUOTE] = ACTIONS(3302), - [anon_sym_U_DQUOTE] = ACTIONS(3302), - [anon_sym_u8_DQUOTE] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [anon_sym_NULL] = ACTIONS(3300), - [anon_sym_nullptr] = ACTIONS(3300), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3300), - [anon_sym_decltype] = ACTIONS(3300), - [anon_sym_explicit] = ACTIONS(3300), - [anon_sym_typename] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_template] = ACTIONS(3300), - [anon_sym_operator] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_static_assert] = ACTIONS(3300), - [anon_sym_concept] = ACTIONS(3300), - [anon_sym_co_return] = ACTIONS(3300), - [anon_sym_co_yield] = ACTIONS(3300), - [anon_sym_R_DQUOTE] = ACTIONS(3302), - [anon_sym_LR_DQUOTE] = ACTIONS(3302), - [anon_sym_uR_DQUOTE] = ACTIONS(3302), - [anon_sym_UR_DQUOTE] = ACTIONS(3302), - [anon_sym_u8R_DQUOTE] = ACTIONS(3302), - [anon_sym_co_await] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_requires] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), + [STATE(281)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6553), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9443), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9924), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(3025), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(515)] = { - [ts_builtin_sym_end] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_include_token1] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym___cdecl] = ACTIONS(3304), - [anon_sym___clrcall] = ACTIONS(3304), - [anon_sym___stdcall] = ACTIONS(3304), - [anon_sym___fastcall] = ACTIONS(3304), - [anon_sym___thiscall] = ACTIONS(3304), - [anon_sym___vectorcall] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym_not] = ACTIONS(3304), - [anon_sym_compl] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_sizeof] = ACTIONS(3304), - [anon_sym___alignof__] = ACTIONS(3304), - [anon_sym___alignof] = ACTIONS(3304), - [anon_sym__alignof] = ACTIONS(3304), - [anon_sym_alignof] = ACTIONS(3304), - [anon_sym__Alignof] = ACTIONS(3304), - [anon_sym_offsetof] = ACTIONS(3304), - [anon_sym__Generic] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - [anon_sym___asm__] = ACTIONS(3304), - [anon_sym___asm] = ACTIONS(3304), - [sym_number_literal] = ACTIONS(3306), - [anon_sym_L_SQUOTE] = ACTIONS(3306), - [anon_sym_u_SQUOTE] = ACTIONS(3306), - [anon_sym_U_SQUOTE] = ACTIONS(3306), - [anon_sym_u8_SQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [anon_sym_NULL] = ACTIONS(3304), - [anon_sym_nullptr] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - [anon_sym_concept] = ACTIONS(3304), - [anon_sym_co_return] = ACTIONS(3304), - [anon_sym_co_yield] = ACTIONS(3304), - [anon_sym_R_DQUOTE] = ACTIONS(3306), - [anon_sym_LR_DQUOTE] = ACTIONS(3306), - [anon_sym_uR_DQUOTE] = ACTIONS(3306), - [anon_sym_UR_DQUOTE] = ACTIONS(3306), - [anon_sym_u8R_DQUOTE] = ACTIONS(3306), - [anon_sym_co_await] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_requires] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), + [STATE(282)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6501), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9305), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(9585), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(3027), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(516)] = { - [ts_builtin_sym_end] = ACTIONS(3029), - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_export] = ACTIONS(3027), - [anon_sym_module] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), + [STATE(283)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(517)] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_include_token1] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), + [STATE(284)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(10864), + [sym_preproc_elif_in_field_declaration_list] = STATE(10864), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10864), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3035), [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym___cdecl] = ACTIONS(3037), - [anon_sym___clrcall] = ACTIONS(3037), - [anon_sym___stdcall] = ACTIONS(3037), - [anon_sym___fastcall] = ACTIONS(3037), - [anon_sym___thiscall] = ACTIONS(3037), - [anon_sym___vectorcall] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_switch] = ACTIONS(3037), - [anon_sym_case] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym_not] = ACTIONS(3037), - [anon_sym_compl] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(3037), - [anon_sym___alignof__] = ACTIONS(3037), - [anon_sym___alignof] = ACTIONS(3037), - [anon_sym__alignof] = ACTIONS(3037), - [anon_sym_alignof] = ACTIONS(3037), - [anon_sym__Alignof] = ACTIONS(3037), - [anon_sym_offsetof] = ACTIONS(3037), - [anon_sym__Generic] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym___asm__] = ACTIONS(3037), - [anon_sym___asm] = ACTIONS(3037), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_L_SQUOTE] = ACTIONS(3039), - [anon_sym_u_SQUOTE] = ACTIONS(3039), - [anon_sym_U_SQUOTE] = ACTIONS(3039), - [anon_sym_u8_SQUOTE] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_L_DQUOTE] = ACTIONS(3039), - [anon_sym_u_DQUOTE] = ACTIONS(3039), - [anon_sym_U_DQUOTE] = ACTIONS(3039), - [anon_sym_u8_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [anon_sym_NULL] = ACTIONS(3037), - [anon_sym_nullptr] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_export] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_import] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_delete] = ACTIONS(3037), - [anon_sym_throw] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), - [anon_sym_concept] = ACTIONS(3037), - [anon_sym_co_return] = ACTIONS(3037), - [anon_sym_co_yield] = ACTIONS(3037), - [anon_sym_R_DQUOTE] = ACTIONS(3039), - [anon_sym_LR_DQUOTE] = ACTIONS(3039), - [anon_sym_uR_DQUOTE] = ACTIONS(3039), - [anon_sym_UR_DQUOTE] = ACTIONS(3039), - [anon_sym_u8R_DQUOTE] = ACTIONS(3039), - [anon_sym_co_await] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3037), - [sym_this] = ACTIONS(3037), - }, - [STATE(518)] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3067), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(519)] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3045), - [aux_sym_preproc_include_token1] = ACTIONS(3045), - [aux_sym_preproc_def_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3045), + [STATE(285)] = { + [sym_preproc_def] = STATE(288), + [sym_preproc_function_def] = STATE(288), + [sym_preproc_call] = STATE(288), + [sym_preproc_if_in_field_declaration_list] = STATE(288), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(288), + [sym_preproc_else_in_field_declaration_list] = STATE(11064), + [sym_preproc_elif_in_field_declaration_list] = STATE(11064), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11064), + [sym_type_definition] = STATE(288), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(288), + [sym_field_declaration] = STATE(288), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(288), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(288), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(288), + [sym_operator_cast_declaration] = STATE(288), + [sym_constructor_or_destructor_definition] = STATE(288), + [sym_constructor_or_destructor_declaration] = STATE(288), + [sym_friend_declaration] = STATE(288), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(288), + [sym_alias_declaration] = STATE(288), + [sym_static_assert_declaration] = STATE(288), + [sym_consteval_block_declaration] = STATE(288), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(288), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), [sym_preproc_directive] = ACTIONS(3045), [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = ACTIONS(3045), - [anon_sym___attribute] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3047), - [anon_sym___declspec] = ACTIONS(3045), - [anon_sym___based] = ACTIONS(3045), - [anon_sym___cdecl] = ACTIONS(3045), - [anon_sym___clrcall] = ACTIONS(3045), - [anon_sym___stdcall] = ACTIONS(3045), - [anon_sym___fastcall] = ACTIONS(3045), - [anon_sym___thiscall] = ACTIONS(3045), - [anon_sym___vectorcall] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_signed] = ACTIONS(3045), - [anon_sym_unsigned] = ACTIONS(3045), - [anon_sym_long] = ACTIONS(3045), - [anon_sym_short] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_inline] = ACTIONS(3045), - [anon_sym___inline] = ACTIONS(3045), - [anon_sym___inline__] = ACTIONS(3045), - [anon_sym___forceinline] = ACTIONS(3045), - [anon_sym_thread_local] = ACTIONS(3045), - [anon_sym___thread] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_constexpr] = ACTIONS(3045), - [anon_sym_volatile] = ACTIONS(3045), - [anon_sym_restrict] = ACTIONS(3045), - [anon_sym___restrict__] = ACTIONS(3045), - [anon_sym__Atomic] = ACTIONS(3045), - [anon_sym__Noreturn] = ACTIONS(3045), - [anon_sym_noreturn] = ACTIONS(3045), - [anon_sym__Nonnull] = ACTIONS(3045), - [anon_sym_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym__Alignas] = ACTIONS(3045), - [sym_primitive_type] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_switch] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_compl] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_sizeof] = ACTIONS(3045), - [anon_sym___alignof__] = ACTIONS(3045), - [anon_sym___alignof] = ACTIONS(3045), - [anon_sym__alignof] = ACTIONS(3045), - [anon_sym_alignof] = ACTIONS(3045), - [anon_sym__Alignof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3045), - [anon_sym__Generic] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym___asm__] = ACTIONS(3045), - [anon_sym___asm] = ACTIONS(3045), - [sym_number_literal] = ACTIONS(3047), - [anon_sym_L_SQUOTE] = ACTIONS(3047), - [anon_sym_u_SQUOTE] = ACTIONS(3047), - [anon_sym_U_SQUOTE] = ACTIONS(3047), - [anon_sym_u8_SQUOTE] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_L_DQUOTE] = ACTIONS(3047), - [anon_sym_u_DQUOTE] = ACTIONS(3047), - [anon_sym_U_DQUOTE] = ACTIONS(3047), - [anon_sym_u8_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [anon_sym_NULL] = ACTIONS(3045), - [anon_sym_nullptr] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_export] = ACTIONS(3045), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_import] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_delete] = ACTIONS(3045), - [anon_sym_throw] = ACTIONS(3045), - [anon_sym_namespace] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - [anon_sym_concept] = ACTIONS(3045), - [anon_sym_co_return] = ACTIONS(3045), - [anon_sym_co_yield] = ACTIONS(3045), - [anon_sym_R_DQUOTE] = ACTIONS(3047), - [anon_sym_LR_DQUOTE] = ACTIONS(3047), - [anon_sym_uR_DQUOTE] = ACTIONS(3047), - [anon_sym_UR_DQUOTE] = ACTIONS(3047), - [anon_sym_u8R_DQUOTE] = ACTIONS(3047), - [anon_sym_co_await] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3045), - [anon_sym_requires] = ACTIONS(3045), - [sym_this] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3067), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(520)] = { - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_identifier] = ACTIONS(3051), - [aux_sym_preproc_include_token1] = ACTIONS(3051), - [aux_sym_preproc_def_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), - [sym_preproc_directive] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3051), - [anon_sym_typedef] = ACTIONS(3051), - [anon_sym_virtual] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3051), - [anon_sym___attribute__] = ACTIONS(3051), - [anon_sym___attribute] = ACTIONS(3051), - [anon_sym_using] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), - [anon_sym___declspec] = ACTIONS(3051), - [anon_sym___based] = ACTIONS(3051), - [anon_sym___cdecl] = ACTIONS(3051), - [anon_sym___clrcall] = ACTIONS(3051), - [anon_sym___stdcall] = ACTIONS(3051), - [anon_sym___fastcall] = ACTIONS(3051), - [anon_sym___thiscall] = ACTIONS(3051), - [anon_sym___vectorcall] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3051), - [anon_sym_unsigned] = ACTIONS(3051), - [anon_sym_long] = ACTIONS(3051), - [anon_sym_short] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_static] = ACTIONS(3051), - [anon_sym_register] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym___inline] = ACTIONS(3051), - [anon_sym___inline__] = ACTIONS(3051), - [anon_sym___forceinline] = ACTIONS(3051), - [anon_sym_thread_local] = ACTIONS(3051), - [anon_sym___thread] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_constexpr] = ACTIONS(3051), - [anon_sym_volatile] = ACTIONS(3051), - [anon_sym_restrict] = ACTIONS(3051), - [anon_sym___restrict__] = ACTIONS(3051), - [anon_sym__Atomic] = ACTIONS(3051), - [anon_sym__Noreturn] = ACTIONS(3051), - [anon_sym_noreturn] = ACTIONS(3051), - [anon_sym__Nonnull] = ACTIONS(3051), - [anon_sym_mutable] = ACTIONS(3051), - [anon_sym_constinit] = ACTIONS(3051), - [anon_sym_consteval] = ACTIONS(3051), - [anon_sym_alignas] = ACTIONS(3051), - [anon_sym__Alignas] = ACTIONS(3051), - [sym_primitive_type] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_class] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_switch] = ACTIONS(3051), - [anon_sym_case] = ACTIONS(3051), - [anon_sym_default] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_do] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3051), - [anon_sym___alignof__] = ACTIONS(3051), - [anon_sym___alignof] = ACTIONS(3051), - [anon_sym__alignof] = ACTIONS(3051), - [anon_sym_alignof] = ACTIONS(3051), - [anon_sym__Alignof] = ACTIONS(3051), - [anon_sym_offsetof] = ACTIONS(3051), - [anon_sym__Generic] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym___asm__] = ACTIONS(3051), - [anon_sym___asm] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(3053), - [anon_sym_L_SQUOTE] = ACTIONS(3053), - [anon_sym_u_SQUOTE] = ACTIONS(3053), - [anon_sym_U_SQUOTE] = ACTIONS(3053), - [anon_sym_u8_SQUOTE] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3053), - [anon_sym_L_DQUOTE] = ACTIONS(3053), - [anon_sym_u_DQUOTE] = ACTIONS(3053), - [anon_sym_U_DQUOTE] = ACTIONS(3053), - [anon_sym_u8_DQUOTE] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(3053), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [anon_sym_NULL] = ACTIONS(3051), - [anon_sym_nullptr] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3051), - [anon_sym_decltype] = ACTIONS(3051), - [anon_sym_explicit] = ACTIONS(3051), - [anon_sym_typename] = ACTIONS(3051), - [anon_sym_export] = ACTIONS(3051), - [anon_sym_module] = ACTIONS(3051), - [anon_sym_import] = ACTIONS(3051), - [anon_sym_template] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_delete] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_namespace] = ACTIONS(3051), - [anon_sym_static_assert] = ACTIONS(3051), - [anon_sym_concept] = ACTIONS(3051), - [anon_sym_co_return] = ACTIONS(3051), - [anon_sym_co_yield] = ACTIONS(3051), - [anon_sym_R_DQUOTE] = ACTIONS(3053), - [anon_sym_LR_DQUOTE] = ACTIONS(3053), - [anon_sym_uR_DQUOTE] = ACTIONS(3053), - [anon_sym_UR_DQUOTE] = ACTIONS(3053), - [anon_sym_u8R_DQUOTE] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3051), - [anon_sym_new] = ACTIONS(3051), - [anon_sym_requires] = ACTIONS(3051), - [sym_this] = ACTIONS(3051), - }, - [STATE(521)] = { - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3435), - [aux_sym_preproc_include_token1] = ACTIONS(3435), - [aux_sym_preproc_def_token1] = ACTIONS(3435), - [aux_sym_preproc_if_token1] = ACTIONS(3435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3435), - [sym_preproc_directive] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym___extension__] = ACTIONS(3435), - [anon_sym_typedef] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym___attribute__] = ACTIONS(3435), - [anon_sym___attribute] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3433), - [anon_sym___declspec] = ACTIONS(3435), - [anon_sym___based] = ACTIONS(3435), - [anon_sym___cdecl] = ACTIONS(3435), - [anon_sym___clrcall] = ACTIONS(3435), - [anon_sym___stdcall] = ACTIONS(3435), - [anon_sym___fastcall] = ACTIONS(3435), - [anon_sym___thiscall] = ACTIONS(3435), - [anon_sym___vectorcall] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_signed] = ACTIONS(3435), - [anon_sym_unsigned] = ACTIONS(3435), - [anon_sym_long] = ACTIONS(3435), - [anon_sym_short] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_register] = ACTIONS(3435), - [anon_sym_inline] = ACTIONS(3435), - [anon_sym___inline] = ACTIONS(3435), - [anon_sym___inline__] = ACTIONS(3435), - [anon_sym___forceinline] = ACTIONS(3435), - [anon_sym_thread_local] = ACTIONS(3435), - [anon_sym___thread] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_constexpr] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_restrict] = ACTIONS(3435), - [anon_sym___restrict__] = ACTIONS(3435), - [anon_sym__Atomic] = ACTIONS(3435), - [anon_sym__Noreturn] = ACTIONS(3435), - [anon_sym_noreturn] = ACTIONS(3435), - [anon_sym__Nonnull] = ACTIONS(3435), - [anon_sym_mutable] = ACTIONS(3435), - [anon_sym_constinit] = ACTIONS(3435), - [anon_sym_consteval] = ACTIONS(3435), - [anon_sym_alignas] = ACTIONS(3435), - [anon_sym__Alignas] = ACTIONS(3435), - [sym_primitive_type] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_union] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_not] = ACTIONS(3435), - [anon_sym_compl] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_sizeof] = ACTIONS(3435), - [anon_sym___alignof__] = ACTIONS(3435), - [anon_sym___alignof] = ACTIONS(3435), - [anon_sym__alignof] = ACTIONS(3435), - [anon_sym_alignof] = ACTIONS(3435), - [anon_sym__Alignof] = ACTIONS(3435), - [anon_sym_offsetof] = ACTIONS(3435), - [anon_sym__Generic] = ACTIONS(3435), - [anon_sym_asm] = ACTIONS(3435), - [anon_sym___asm__] = ACTIONS(3435), - [anon_sym___asm] = ACTIONS(3435), - [sym_number_literal] = ACTIONS(3433), - [anon_sym_L_SQUOTE] = ACTIONS(3433), - [anon_sym_u_SQUOTE] = ACTIONS(3433), - [anon_sym_U_SQUOTE] = ACTIONS(3433), - [anon_sym_u8_SQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_L_DQUOTE] = ACTIONS(3433), - [anon_sym_u_DQUOTE] = ACTIONS(3433), - [anon_sym_U_DQUOTE] = ACTIONS(3433), - [anon_sym_u8_DQUOTE] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [anon_sym_NULL] = ACTIONS(3435), - [anon_sym_nullptr] = ACTIONS(3435), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3435), - [anon_sym_decltype] = ACTIONS(3435), - [anon_sym_explicit] = ACTIONS(3435), - [anon_sym_typename] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_template] = ACTIONS(3435), - [anon_sym_operator] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_static_assert] = ACTIONS(3435), - [anon_sym_concept] = ACTIONS(3435), - [anon_sym_co_return] = ACTIONS(3435), - [anon_sym_co_yield] = ACTIONS(3435), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_requires] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - }, - [STATE(522)] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), - }, - [STATE(523)] = { - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), - }, - [STATE(524)] = { - [ts_builtin_sym_end] = ACTIONS(3437), - [sym_identifier] = ACTIONS(3440), - [aux_sym_preproc_include_token1] = ACTIONS(3440), - [aux_sym_preproc_def_token1] = ACTIONS(3440), - [aux_sym_preproc_if_token1] = ACTIONS(3440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3440), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym___extension__] = ACTIONS(3440), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_virtual] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(3440), - [anon_sym___attribute__] = ACTIONS(3440), - [anon_sym___attribute] = ACTIONS(3440), - [anon_sym_using] = ACTIONS(3440), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3437), - [anon_sym___declspec] = ACTIONS(3440), - [anon_sym___based] = ACTIONS(3440), - [anon_sym___cdecl] = ACTIONS(3440), - [anon_sym___clrcall] = ACTIONS(3440), - [anon_sym___stdcall] = ACTIONS(3440), - [anon_sym___fastcall] = ACTIONS(3440), - [anon_sym___thiscall] = ACTIONS(3440), - [anon_sym___vectorcall] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_signed] = ACTIONS(3440), - [anon_sym_unsigned] = ACTIONS(3440), - [anon_sym_long] = ACTIONS(3440), - [anon_sym_short] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_static] = ACTIONS(3440), - [anon_sym_register] = ACTIONS(3440), - [anon_sym_inline] = ACTIONS(3440), - [anon_sym___inline] = ACTIONS(3440), - [anon_sym___inline__] = ACTIONS(3440), - [anon_sym___forceinline] = ACTIONS(3440), - [anon_sym_thread_local] = ACTIONS(3440), - [anon_sym___thread] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_constexpr] = ACTIONS(3440), - [anon_sym_volatile] = ACTIONS(3440), - [anon_sym_restrict] = ACTIONS(3440), - [anon_sym___restrict__] = ACTIONS(3440), - [anon_sym__Atomic] = ACTIONS(3440), - [anon_sym__Noreturn] = ACTIONS(3440), - [anon_sym_noreturn] = ACTIONS(3440), - [anon_sym__Nonnull] = ACTIONS(3440), - [anon_sym_mutable] = ACTIONS(3440), - [anon_sym_constinit] = ACTIONS(3440), - [anon_sym_consteval] = ACTIONS(3440), - [anon_sym_alignas] = ACTIONS(3440), - [anon_sym__Alignas] = ACTIONS(3440), - [sym_primitive_type] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), - [anon_sym_class] = ACTIONS(3440), - [anon_sym_struct] = ACTIONS(3440), - [anon_sym_union] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_switch] = ACTIONS(3440), - [anon_sym_case] = ACTIONS(3440), - [anon_sym_default] = ACTIONS(3440), - [anon_sym_while] = ACTIONS(3440), - [anon_sym_do] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_goto] = ACTIONS(3440), - [anon_sym_not] = ACTIONS(3440), - [anon_sym_compl] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_sizeof] = ACTIONS(3440), - [anon_sym___alignof__] = ACTIONS(3440), - [anon_sym___alignof] = ACTIONS(3440), - [anon_sym__alignof] = ACTIONS(3440), - [anon_sym_alignof] = ACTIONS(3440), - [anon_sym__Alignof] = ACTIONS(3440), - [anon_sym_offsetof] = ACTIONS(3440), - [anon_sym__Generic] = ACTIONS(3440), - [anon_sym_asm] = ACTIONS(3440), - [anon_sym___asm__] = ACTIONS(3440), - [anon_sym___asm] = ACTIONS(3440), - [sym_number_literal] = ACTIONS(3437), - [anon_sym_L_SQUOTE] = ACTIONS(3437), - [anon_sym_u_SQUOTE] = ACTIONS(3437), - [anon_sym_U_SQUOTE] = ACTIONS(3437), - [anon_sym_u8_SQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_L_DQUOTE] = ACTIONS(3437), - [anon_sym_u_DQUOTE] = ACTIONS(3437), - [anon_sym_U_DQUOTE] = ACTIONS(3437), - [anon_sym_u8_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [anon_sym_NULL] = ACTIONS(3440), - [anon_sym_nullptr] = ACTIONS(3440), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3440), - [anon_sym_decltype] = ACTIONS(3440), - [anon_sym_explicit] = ACTIONS(3440), - [anon_sym_typename] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3440), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_import] = ACTIONS(3440), - [anon_sym_template] = ACTIONS(3440), - [anon_sym_operator] = ACTIONS(3440), - [anon_sym_try] = ACTIONS(3440), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_throw] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_static_assert] = ACTIONS(3440), - [anon_sym_concept] = ACTIONS(3440), - [anon_sym_co_return] = ACTIONS(3440), - [anon_sym_co_yield] = ACTIONS(3440), - [anon_sym_R_DQUOTE] = ACTIONS(3437), - [anon_sym_LR_DQUOTE] = ACTIONS(3437), - [anon_sym_uR_DQUOTE] = ACTIONS(3437), - [anon_sym_UR_DQUOTE] = ACTIONS(3437), - [anon_sym_u8R_DQUOTE] = ACTIONS(3437), - [anon_sym_co_await] = ACTIONS(3440), - [anon_sym_new] = ACTIONS(3440), - [anon_sym_requires] = ACTIONS(3440), - [sym_this] = ACTIONS(3440), - }, - [STATE(525)] = { - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3314), - [aux_sym_preproc_include_token1] = ACTIONS(3314), - [aux_sym_preproc_def_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3314), - [sym_preproc_directive] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = ACTIONS(3314), - [anon_sym___attribute] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3314), - [anon_sym___based] = ACTIONS(3314), - [anon_sym___cdecl] = ACTIONS(3314), - [anon_sym___clrcall] = ACTIONS(3314), - [anon_sym___stdcall] = ACTIONS(3314), - [anon_sym___fastcall] = ACTIONS(3314), - [anon_sym___thiscall] = ACTIONS(3314), - [anon_sym___vectorcall] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3314), - [anon_sym_unsigned] = ACTIONS(3314), - [anon_sym_long] = ACTIONS(3314), - [anon_sym_short] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_register] = ACTIONS(3314), - [anon_sym_inline] = ACTIONS(3314), - [anon_sym___inline] = ACTIONS(3314), - [anon_sym___inline__] = ACTIONS(3314), - [anon_sym___forceinline] = ACTIONS(3314), - [anon_sym_thread_local] = ACTIONS(3314), - [anon_sym___thread] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_constexpr] = ACTIONS(3314), - [anon_sym_volatile] = ACTIONS(3314), - [anon_sym_restrict] = ACTIONS(3314), - [anon_sym___restrict__] = ACTIONS(3314), - [anon_sym__Atomic] = ACTIONS(3314), - [anon_sym__Noreturn] = ACTIONS(3314), - [anon_sym_noreturn] = ACTIONS(3314), - [anon_sym__Nonnull] = ACTIONS(3314), - [anon_sym_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym__Alignas] = ACTIONS(3314), - [sym_primitive_type] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym_not] = ACTIONS(3314), - [anon_sym_compl] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3314), - [anon_sym___alignof__] = ACTIONS(3314), - [anon_sym___alignof] = ACTIONS(3314), - [anon_sym__alignof] = ACTIONS(3314), - [anon_sym_alignof] = ACTIONS(3314), - [anon_sym__Alignof] = ACTIONS(3314), - [anon_sym_offsetof] = ACTIONS(3314), - [anon_sym__Generic] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym___asm__] = ACTIONS(3314), - [anon_sym___asm] = ACTIONS(3314), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [anon_sym_NULL] = ACTIONS(3314), - [anon_sym_nullptr] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3314), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_import] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - [anon_sym_concept] = ACTIONS(3314), - [anon_sym_co_return] = ACTIONS(3314), - [anon_sym_co_yield] = ACTIONS(3314), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_requires] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - }, - [STATE(526)] = { - [ts_builtin_sym_end] = ACTIONS(3443), - [sym_identifier] = ACTIONS(3445), - [aux_sym_preproc_include_token1] = ACTIONS(3445), - [aux_sym_preproc_def_token1] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3445), - [sym_preproc_directive] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_STAR] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym___extension__] = ACTIONS(3445), - [anon_sym_typedef] = ACTIONS(3445), - [anon_sym_virtual] = ACTIONS(3445), - [anon_sym_extern] = ACTIONS(3445), - [anon_sym___attribute__] = ACTIONS(3445), - [anon_sym___attribute] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3443), - [anon_sym___declspec] = ACTIONS(3445), - [anon_sym___based] = ACTIONS(3445), - [anon_sym___cdecl] = ACTIONS(3445), - [anon_sym___clrcall] = ACTIONS(3445), - [anon_sym___stdcall] = ACTIONS(3445), - [anon_sym___fastcall] = ACTIONS(3445), - [anon_sym___thiscall] = ACTIONS(3445), - [anon_sym___vectorcall] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_signed] = ACTIONS(3445), - [anon_sym_unsigned] = ACTIONS(3445), - [anon_sym_long] = ACTIONS(3445), - [anon_sym_short] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_register] = ACTIONS(3445), - [anon_sym_inline] = ACTIONS(3445), - [anon_sym___inline] = ACTIONS(3445), - [anon_sym___inline__] = ACTIONS(3445), - [anon_sym___forceinline] = ACTIONS(3445), - [anon_sym_thread_local] = ACTIONS(3445), - [anon_sym___thread] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_constexpr] = ACTIONS(3445), - [anon_sym_volatile] = ACTIONS(3445), - [anon_sym_restrict] = ACTIONS(3445), - [anon_sym___restrict__] = ACTIONS(3445), - [anon_sym__Atomic] = ACTIONS(3445), - [anon_sym__Noreturn] = ACTIONS(3445), - [anon_sym_noreturn] = ACTIONS(3445), - [anon_sym__Nonnull] = ACTIONS(3445), - [anon_sym_mutable] = ACTIONS(3445), - [anon_sym_constinit] = ACTIONS(3445), - [anon_sym_consteval] = ACTIONS(3445), - [anon_sym_alignas] = ACTIONS(3445), - [anon_sym__Alignas] = ACTIONS(3445), - [sym_primitive_type] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_struct] = ACTIONS(3445), - [anon_sym_union] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_goto] = ACTIONS(3445), - [anon_sym_not] = ACTIONS(3445), - [anon_sym_compl] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3443), - [anon_sym_PLUS_PLUS] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3445), - [anon_sym___alignof__] = ACTIONS(3445), - [anon_sym___alignof] = ACTIONS(3445), - [anon_sym__alignof] = ACTIONS(3445), - [anon_sym_alignof] = ACTIONS(3445), - [anon_sym__Alignof] = ACTIONS(3445), - [anon_sym_offsetof] = ACTIONS(3445), - [anon_sym__Generic] = ACTIONS(3445), - [anon_sym_asm] = ACTIONS(3445), - [anon_sym___asm__] = ACTIONS(3445), - [anon_sym___asm] = ACTIONS(3445), - [sym_number_literal] = ACTIONS(3443), - [anon_sym_L_SQUOTE] = ACTIONS(3443), - [anon_sym_u_SQUOTE] = ACTIONS(3443), - [anon_sym_U_SQUOTE] = ACTIONS(3443), - [anon_sym_u8_SQUOTE] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_L_DQUOTE] = ACTIONS(3443), - [anon_sym_u_DQUOTE] = ACTIONS(3443), - [anon_sym_U_DQUOTE] = ACTIONS(3443), - [anon_sym_u8_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [anon_sym_NULL] = ACTIONS(3445), - [anon_sym_nullptr] = ACTIONS(3445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3445), - [anon_sym_decltype] = ACTIONS(3445), - [anon_sym_explicit] = ACTIONS(3445), - [anon_sym_typename] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_template] = ACTIONS(3445), - [anon_sym_operator] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_static_assert] = ACTIONS(3445), - [anon_sym_concept] = ACTIONS(3445), - [anon_sym_co_return] = ACTIONS(3445), - [anon_sym_co_yield] = ACTIONS(3445), - [anon_sym_R_DQUOTE] = ACTIONS(3443), - [anon_sym_LR_DQUOTE] = ACTIONS(3443), - [anon_sym_uR_DQUOTE] = ACTIONS(3443), - [anon_sym_UR_DQUOTE] = ACTIONS(3443), - [anon_sym_u8R_DQUOTE] = ACTIONS(3443), - [anon_sym_co_await] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_requires] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - }, - [STATE(527)] = { - [ts_builtin_sym_end] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3449), - [aux_sym_preproc_include_token1] = ACTIONS(3449), - [aux_sym_preproc_def_token1] = ACTIONS(3449), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3449), - [sym_preproc_directive] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_STAR] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym___extension__] = ACTIONS(3449), - [anon_sym_typedef] = ACTIONS(3449), - [anon_sym_virtual] = ACTIONS(3449), - [anon_sym_extern] = ACTIONS(3449), - [anon_sym___attribute__] = ACTIONS(3449), - [anon_sym___attribute] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3447), - [anon_sym___declspec] = ACTIONS(3449), - [anon_sym___based] = ACTIONS(3449), - [anon_sym___cdecl] = ACTIONS(3449), - [anon_sym___clrcall] = ACTIONS(3449), - [anon_sym___stdcall] = ACTIONS(3449), - [anon_sym___fastcall] = ACTIONS(3449), - [anon_sym___thiscall] = ACTIONS(3449), - [anon_sym___vectorcall] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_signed] = ACTIONS(3449), - [anon_sym_unsigned] = ACTIONS(3449), - [anon_sym_long] = ACTIONS(3449), - [anon_sym_short] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_register] = ACTIONS(3449), - [anon_sym_inline] = ACTIONS(3449), - [anon_sym___inline] = ACTIONS(3449), - [anon_sym___inline__] = ACTIONS(3449), - [anon_sym___forceinline] = ACTIONS(3449), - [anon_sym_thread_local] = ACTIONS(3449), - [anon_sym___thread] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_constexpr] = ACTIONS(3449), - [anon_sym_volatile] = ACTIONS(3449), - [anon_sym_restrict] = ACTIONS(3449), - [anon_sym___restrict__] = ACTIONS(3449), - [anon_sym__Atomic] = ACTIONS(3449), - [anon_sym__Noreturn] = ACTIONS(3449), - [anon_sym_noreturn] = ACTIONS(3449), - [anon_sym__Nonnull] = ACTIONS(3449), - [anon_sym_mutable] = ACTIONS(3449), - [anon_sym_constinit] = ACTIONS(3449), - [anon_sym_consteval] = ACTIONS(3449), - [anon_sym_alignas] = ACTIONS(3449), - [anon_sym__Alignas] = ACTIONS(3449), - [sym_primitive_type] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_struct] = ACTIONS(3449), - [anon_sym_union] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_goto] = ACTIONS(3449), - [anon_sym_not] = ACTIONS(3449), - [anon_sym_compl] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3449), - [anon_sym___alignof__] = ACTIONS(3449), - [anon_sym___alignof] = ACTIONS(3449), - [anon_sym__alignof] = ACTIONS(3449), - [anon_sym_alignof] = ACTIONS(3449), - [anon_sym__Alignof] = ACTIONS(3449), - [anon_sym_offsetof] = ACTIONS(3449), - [anon_sym__Generic] = ACTIONS(3449), - [anon_sym_asm] = ACTIONS(3449), - [anon_sym___asm__] = ACTIONS(3449), - [anon_sym___asm] = ACTIONS(3449), - [sym_number_literal] = ACTIONS(3447), - [anon_sym_L_SQUOTE] = ACTIONS(3447), - [anon_sym_u_SQUOTE] = ACTIONS(3447), - [anon_sym_U_SQUOTE] = ACTIONS(3447), - [anon_sym_u8_SQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_L_DQUOTE] = ACTIONS(3447), - [anon_sym_u_DQUOTE] = ACTIONS(3447), - [anon_sym_U_DQUOTE] = ACTIONS(3447), - [anon_sym_u8_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [anon_sym_NULL] = ACTIONS(3449), - [anon_sym_nullptr] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3449), - [anon_sym_decltype] = ACTIONS(3449), - [anon_sym_explicit] = ACTIONS(3449), - [anon_sym_typename] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_template] = ACTIONS(3449), - [anon_sym_operator] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_static_assert] = ACTIONS(3449), - [anon_sym_concept] = ACTIONS(3449), - [anon_sym_co_return] = ACTIONS(3449), - [anon_sym_co_yield] = ACTIONS(3449), - [anon_sym_R_DQUOTE] = ACTIONS(3447), - [anon_sym_LR_DQUOTE] = ACTIONS(3447), - [anon_sym_uR_DQUOTE] = ACTIONS(3447), - [anon_sym_UR_DQUOTE] = ACTIONS(3447), - [anon_sym_u8R_DQUOTE] = ACTIONS(3447), - [anon_sym_co_await] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_requires] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - }, - [STATE(528)] = { - [ts_builtin_sym_end] = ACTIONS(3451), - [sym_identifier] = ACTIONS(3453), - [aux_sym_preproc_include_token1] = ACTIONS(3453), - [aux_sym_preproc_def_token1] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), - [sym_preproc_directive] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_STAR] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym___extension__] = ACTIONS(3453), - [anon_sym_typedef] = ACTIONS(3453), - [anon_sym_virtual] = ACTIONS(3453), - [anon_sym_extern] = ACTIONS(3453), - [anon_sym___attribute__] = ACTIONS(3453), - [anon_sym___attribute] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), - [anon_sym___declspec] = ACTIONS(3453), - [anon_sym___based] = ACTIONS(3453), - [anon_sym___cdecl] = ACTIONS(3453), - [anon_sym___clrcall] = ACTIONS(3453), - [anon_sym___stdcall] = ACTIONS(3453), - [anon_sym___fastcall] = ACTIONS(3453), - [anon_sym___thiscall] = ACTIONS(3453), - [anon_sym___vectorcall] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_signed] = ACTIONS(3453), - [anon_sym_unsigned] = ACTIONS(3453), - [anon_sym_long] = ACTIONS(3453), - [anon_sym_short] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_register] = ACTIONS(3453), - [anon_sym_inline] = ACTIONS(3453), - [anon_sym___inline] = ACTIONS(3453), - [anon_sym___inline__] = ACTIONS(3453), - [anon_sym___forceinline] = ACTIONS(3453), - [anon_sym_thread_local] = ACTIONS(3453), - [anon_sym___thread] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_constexpr] = ACTIONS(3453), - [anon_sym_volatile] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(3453), - [anon_sym___restrict__] = ACTIONS(3453), - [anon_sym__Atomic] = ACTIONS(3453), - [anon_sym__Noreturn] = ACTIONS(3453), - [anon_sym_noreturn] = ACTIONS(3453), - [anon_sym__Nonnull] = ACTIONS(3453), - [anon_sym_mutable] = ACTIONS(3453), - [anon_sym_constinit] = ACTIONS(3453), - [anon_sym_consteval] = ACTIONS(3453), - [anon_sym_alignas] = ACTIONS(3453), - [anon_sym__Alignas] = ACTIONS(3453), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_struct] = ACTIONS(3453), - [anon_sym_union] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_goto] = ACTIONS(3453), - [anon_sym_not] = ACTIONS(3453), - [anon_sym_compl] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3453), - [anon_sym___alignof__] = ACTIONS(3453), - [anon_sym___alignof] = ACTIONS(3453), - [anon_sym__alignof] = ACTIONS(3453), - [anon_sym_alignof] = ACTIONS(3453), - [anon_sym__Alignof] = ACTIONS(3453), - [anon_sym_offsetof] = ACTIONS(3453), - [anon_sym__Generic] = ACTIONS(3453), - [anon_sym_asm] = ACTIONS(3453), - [anon_sym___asm__] = ACTIONS(3453), - [anon_sym___asm] = ACTIONS(3453), - [sym_number_literal] = ACTIONS(3451), - [anon_sym_L_SQUOTE] = ACTIONS(3451), - [anon_sym_u_SQUOTE] = ACTIONS(3451), - [anon_sym_U_SQUOTE] = ACTIONS(3451), - [anon_sym_u8_SQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_L_DQUOTE] = ACTIONS(3451), - [anon_sym_u_DQUOTE] = ACTIONS(3451), - [anon_sym_U_DQUOTE] = ACTIONS(3451), - [anon_sym_u8_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [anon_sym_NULL] = ACTIONS(3453), - [anon_sym_nullptr] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3453), - [anon_sym_decltype] = ACTIONS(3453), - [anon_sym_explicit] = ACTIONS(3453), - [anon_sym_typename] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_template] = ACTIONS(3453), - [anon_sym_operator] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_static_assert] = ACTIONS(3453), - [anon_sym_concept] = ACTIONS(3453), - [anon_sym_co_return] = ACTIONS(3453), - [anon_sym_co_yield] = ACTIONS(3453), - [anon_sym_R_DQUOTE] = ACTIONS(3451), - [anon_sym_LR_DQUOTE] = ACTIONS(3451), - [anon_sym_uR_DQUOTE] = ACTIONS(3451), - [anon_sym_UR_DQUOTE] = ACTIONS(3451), - [anon_sym_u8R_DQUOTE] = ACTIONS(3451), - [anon_sym_co_await] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_requires] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - }, - [STATE(529)] = { - [ts_builtin_sym_end] = ACTIONS(3455), - [sym_identifier] = ACTIONS(3457), - [aux_sym_preproc_include_token1] = ACTIONS(3457), - [aux_sym_preproc_def_token1] = ACTIONS(3457), - [aux_sym_preproc_if_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), - [sym_preproc_directive] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_AMP_AMP] = ACTIONS(3455), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym___extension__] = ACTIONS(3457), - [anon_sym_typedef] = ACTIONS(3457), - [anon_sym_virtual] = ACTIONS(3457), - [anon_sym_extern] = ACTIONS(3457), - [anon_sym___attribute__] = ACTIONS(3457), - [anon_sym___attribute] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), - [anon_sym___declspec] = ACTIONS(3457), - [anon_sym___based] = ACTIONS(3457), - [anon_sym___cdecl] = ACTIONS(3457), - [anon_sym___clrcall] = ACTIONS(3457), - [anon_sym___stdcall] = ACTIONS(3457), - [anon_sym___fastcall] = ACTIONS(3457), - [anon_sym___thiscall] = ACTIONS(3457), - [anon_sym___vectorcall] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_signed] = ACTIONS(3457), - [anon_sym_unsigned] = ACTIONS(3457), - [anon_sym_long] = ACTIONS(3457), - [anon_sym_short] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_register] = ACTIONS(3457), - [anon_sym_inline] = ACTIONS(3457), - [anon_sym___inline] = ACTIONS(3457), - [anon_sym___inline__] = ACTIONS(3457), - [anon_sym___forceinline] = ACTIONS(3457), - [anon_sym_thread_local] = ACTIONS(3457), - [anon_sym___thread] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_constexpr] = ACTIONS(3457), - [anon_sym_volatile] = ACTIONS(3457), - [anon_sym_restrict] = ACTIONS(3457), - [anon_sym___restrict__] = ACTIONS(3457), - [anon_sym__Atomic] = ACTIONS(3457), - [anon_sym__Noreturn] = ACTIONS(3457), - [anon_sym_noreturn] = ACTIONS(3457), - [anon_sym__Nonnull] = ACTIONS(3457), - [anon_sym_mutable] = ACTIONS(3457), - [anon_sym_constinit] = ACTIONS(3457), - [anon_sym_consteval] = ACTIONS(3457), - [anon_sym_alignas] = ACTIONS(3457), - [anon_sym__Alignas] = ACTIONS(3457), - [sym_primitive_type] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_union] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_goto] = ACTIONS(3457), - [anon_sym_not] = ACTIONS(3457), - [anon_sym_compl] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3457), - [anon_sym___alignof__] = ACTIONS(3457), - [anon_sym___alignof] = ACTIONS(3457), - [anon_sym__alignof] = ACTIONS(3457), - [anon_sym_alignof] = ACTIONS(3457), - [anon_sym__Alignof] = ACTIONS(3457), - [anon_sym_offsetof] = ACTIONS(3457), - [anon_sym__Generic] = ACTIONS(3457), - [anon_sym_asm] = ACTIONS(3457), - [anon_sym___asm__] = ACTIONS(3457), - [anon_sym___asm] = ACTIONS(3457), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_L_SQUOTE] = ACTIONS(3455), - [anon_sym_u_SQUOTE] = ACTIONS(3455), - [anon_sym_U_SQUOTE] = ACTIONS(3455), - [anon_sym_u8_SQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_L_DQUOTE] = ACTIONS(3455), - [anon_sym_u_DQUOTE] = ACTIONS(3455), - [anon_sym_U_DQUOTE] = ACTIONS(3455), - [anon_sym_u8_DQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [anon_sym_NULL] = ACTIONS(3457), - [anon_sym_nullptr] = ACTIONS(3457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3457), - [anon_sym_decltype] = ACTIONS(3457), - [anon_sym_explicit] = ACTIONS(3457), - [anon_sym_typename] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_template] = ACTIONS(3457), - [anon_sym_operator] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_static_assert] = ACTIONS(3457), - [anon_sym_concept] = ACTIONS(3457), - [anon_sym_co_return] = ACTIONS(3457), - [anon_sym_co_yield] = ACTIONS(3457), - [anon_sym_R_DQUOTE] = ACTIONS(3455), - [anon_sym_LR_DQUOTE] = ACTIONS(3455), - [anon_sym_uR_DQUOTE] = ACTIONS(3455), - [anon_sym_UR_DQUOTE] = ACTIONS(3455), - [anon_sym_u8R_DQUOTE] = ACTIONS(3455), - [anon_sym_co_await] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_requires] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - }, - [STATE(530)] = { - [ts_builtin_sym_end] = ACTIONS(3459), - [sym_identifier] = ACTIONS(3461), - [aux_sym_preproc_include_token1] = ACTIONS(3461), - [aux_sym_preproc_def_token1] = ACTIONS(3461), - [aux_sym_preproc_if_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3461), - [sym_preproc_directive] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym___extension__] = ACTIONS(3461), - [anon_sym_typedef] = ACTIONS(3461), - [anon_sym_virtual] = ACTIONS(3461), - [anon_sym_extern] = ACTIONS(3461), - [anon_sym___attribute__] = ACTIONS(3461), - [anon_sym___attribute] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), - [anon_sym___declspec] = ACTIONS(3461), - [anon_sym___based] = ACTIONS(3461), - [anon_sym___cdecl] = ACTIONS(3461), - [anon_sym___clrcall] = ACTIONS(3461), - [anon_sym___stdcall] = ACTIONS(3461), - [anon_sym___fastcall] = ACTIONS(3461), - [anon_sym___thiscall] = ACTIONS(3461), - [anon_sym___vectorcall] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_signed] = ACTIONS(3461), - [anon_sym_unsigned] = ACTIONS(3461), - [anon_sym_long] = ACTIONS(3461), - [anon_sym_short] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_register] = ACTIONS(3461), - [anon_sym_inline] = ACTIONS(3461), - [anon_sym___inline] = ACTIONS(3461), - [anon_sym___inline__] = ACTIONS(3461), - [anon_sym___forceinline] = ACTIONS(3461), - [anon_sym_thread_local] = ACTIONS(3461), - [anon_sym___thread] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_constexpr] = ACTIONS(3461), - [anon_sym_volatile] = ACTIONS(3461), - [anon_sym_restrict] = ACTIONS(3461), - [anon_sym___restrict__] = ACTIONS(3461), - [anon_sym__Atomic] = ACTIONS(3461), - [anon_sym__Noreturn] = ACTIONS(3461), - [anon_sym_noreturn] = ACTIONS(3461), - [anon_sym__Nonnull] = ACTIONS(3461), - [anon_sym_mutable] = ACTIONS(3461), - [anon_sym_constinit] = ACTIONS(3461), - [anon_sym_consteval] = ACTIONS(3461), - [anon_sym_alignas] = ACTIONS(3461), - [anon_sym__Alignas] = ACTIONS(3461), - [sym_primitive_type] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_struct] = ACTIONS(3461), - [anon_sym_union] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_default] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_goto] = ACTIONS(3461), - [anon_sym_not] = ACTIONS(3461), - [anon_sym_compl] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_sizeof] = ACTIONS(3461), - [anon_sym___alignof__] = ACTIONS(3461), - [anon_sym___alignof] = ACTIONS(3461), - [anon_sym__alignof] = ACTIONS(3461), - [anon_sym_alignof] = ACTIONS(3461), - [anon_sym__Alignof] = ACTIONS(3461), - [anon_sym_offsetof] = ACTIONS(3461), - [anon_sym__Generic] = ACTIONS(3461), - [anon_sym_asm] = ACTIONS(3461), - [anon_sym___asm__] = ACTIONS(3461), - [anon_sym___asm] = ACTIONS(3461), - [sym_number_literal] = ACTIONS(3459), - [anon_sym_L_SQUOTE] = ACTIONS(3459), - [anon_sym_u_SQUOTE] = ACTIONS(3459), - [anon_sym_U_SQUOTE] = ACTIONS(3459), - [anon_sym_u8_SQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_L_DQUOTE] = ACTIONS(3459), - [anon_sym_u_DQUOTE] = ACTIONS(3459), - [anon_sym_U_DQUOTE] = ACTIONS(3459), - [anon_sym_u8_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [anon_sym_NULL] = ACTIONS(3461), - [anon_sym_nullptr] = ACTIONS(3461), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3461), - [anon_sym_decltype] = ACTIONS(3461), - [anon_sym_explicit] = ACTIONS(3461), - [anon_sym_typename] = ACTIONS(3461), - [anon_sym_export] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_template] = ACTIONS(3461), - [anon_sym_operator] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_static_assert] = ACTIONS(3461), - [anon_sym_concept] = ACTIONS(3461), - [anon_sym_co_return] = ACTIONS(3461), - [anon_sym_co_yield] = ACTIONS(3461), - [anon_sym_R_DQUOTE] = ACTIONS(3459), - [anon_sym_LR_DQUOTE] = ACTIONS(3459), - [anon_sym_uR_DQUOTE] = ACTIONS(3459), - [anon_sym_UR_DQUOTE] = ACTIONS(3459), - [anon_sym_u8R_DQUOTE] = ACTIONS(3459), - [anon_sym_co_await] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_requires] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - }, - [STATE(531)] = { - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3465), - [aux_sym_preproc_include_token1] = ACTIONS(3465), - [aux_sym_preproc_def_token1] = ACTIONS(3465), - [aux_sym_preproc_if_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), - [sym_preproc_directive] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_BANG] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_STAR] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym___extension__] = ACTIONS(3465), - [anon_sym_typedef] = ACTIONS(3465), - [anon_sym_virtual] = ACTIONS(3465), - [anon_sym_extern] = ACTIONS(3465), - [anon_sym___attribute__] = ACTIONS(3465), - [anon_sym___attribute] = ACTIONS(3465), - [anon_sym_using] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3463), - [anon_sym___declspec] = ACTIONS(3465), - [anon_sym___based] = ACTIONS(3465), - [anon_sym___cdecl] = ACTIONS(3465), - [anon_sym___clrcall] = ACTIONS(3465), - [anon_sym___stdcall] = ACTIONS(3465), - [anon_sym___fastcall] = ACTIONS(3465), - [anon_sym___thiscall] = ACTIONS(3465), - [anon_sym___vectorcall] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_signed] = ACTIONS(3465), - [anon_sym_unsigned] = ACTIONS(3465), - [anon_sym_long] = ACTIONS(3465), - [anon_sym_short] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_static] = ACTIONS(3465), - [anon_sym_register] = ACTIONS(3465), - [anon_sym_inline] = ACTIONS(3465), - [anon_sym___inline] = ACTIONS(3465), - [anon_sym___inline__] = ACTIONS(3465), - [anon_sym___forceinline] = ACTIONS(3465), - [anon_sym_thread_local] = ACTIONS(3465), - [anon_sym___thread] = ACTIONS(3465), - [anon_sym_const] = ACTIONS(3465), - [anon_sym_constexpr] = ACTIONS(3465), - [anon_sym_volatile] = ACTIONS(3465), - [anon_sym_restrict] = ACTIONS(3465), - [anon_sym___restrict__] = ACTIONS(3465), - [anon_sym__Atomic] = ACTIONS(3465), - [anon_sym__Noreturn] = ACTIONS(3465), - [anon_sym_noreturn] = ACTIONS(3465), - [anon_sym__Nonnull] = ACTIONS(3465), - [anon_sym_mutable] = ACTIONS(3465), - [anon_sym_constinit] = ACTIONS(3465), - [anon_sym_consteval] = ACTIONS(3465), - [anon_sym_alignas] = ACTIONS(3465), - [anon_sym__Alignas] = ACTIONS(3465), - [sym_primitive_type] = ACTIONS(3465), - [anon_sym_enum] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_struct] = ACTIONS(3465), - [anon_sym_union] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_switch] = ACTIONS(3465), - [anon_sym_case] = ACTIONS(3465), - [anon_sym_default] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_break] = ACTIONS(3465), - [anon_sym_continue] = ACTIONS(3465), - [anon_sym_goto] = ACTIONS(3465), - [anon_sym_not] = ACTIONS(3465), - [anon_sym_compl] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3463), - [anon_sym_PLUS_PLUS] = ACTIONS(3463), - [anon_sym_sizeof] = ACTIONS(3465), - [anon_sym___alignof__] = ACTIONS(3465), - [anon_sym___alignof] = ACTIONS(3465), - [anon_sym__alignof] = ACTIONS(3465), - [anon_sym_alignof] = ACTIONS(3465), - [anon_sym__Alignof] = ACTIONS(3465), - [anon_sym_offsetof] = ACTIONS(3465), - [anon_sym__Generic] = ACTIONS(3465), - [anon_sym_asm] = ACTIONS(3465), - [anon_sym___asm__] = ACTIONS(3465), - [anon_sym___asm] = ACTIONS(3465), - [sym_number_literal] = ACTIONS(3463), - [anon_sym_L_SQUOTE] = ACTIONS(3463), - [anon_sym_u_SQUOTE] = ACTIONS(3463), - [anon_sym_U_SQUOTE] = ACTIONS(3463), - [anon_sym_u8_SQUOTE] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_L_DQUOTE] = ACTIONS(3463), - [anon_sym_u_DQUOTE] = ACTIONS(3463), - [anon_sym_U_DQUOTE] = ACTIONS(3463), - [anon_sym_u8_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_true] = ACTIONS(3465), - [sym_false] = ACTIONS(3465), - [anon_sym_NULL] = ACTIONS(3465), - [anon_sym_nullptr] = ACTIONS(3465), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3465), - [anon_sym_decltype] = ACTIONS(3465), - [anon_sym_explicit] = ACTIONS(3465), - [anon_sym_typename] = ACTIONS(3465), - [anon_sym_export] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_import] = ACTIONS(3465), - [anon_sym_template] = ACTIONS(3465), - [anon_sym_operator] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_delete] = ACTIONS(3465), - [anon_sym_throw] = ACTIONS(3465), - [anon_sym_namespace] = ACTIONS(3465), - [anon_sym_static_assert] = ACTIONS(3465), - [anon_sym_concept] = ACTIONS(3465), - [anon_sym_co_return] = ACTIONS(3465), - [anon_sym_co_yield] = ACTIONS(3465), - [anon_sym_R_DQUOTE] = ACTIONS(3463), - [anon_sym_LR_DQUOTE] = ACTIONS(3463), - [anon_sym_uR_DQUOTE] = ACTIONS(3463), - [anon_sym_UR_DQUOTE] = ACTIONS(3463), - [anon_sym_u8R_DQUOTE] = ACTIONS(3463), - [anon_sym_co_await] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_requires] = ACTIONS(3465), - [sym_this] = ACTIONS(3465), - }, - [STATE(532)] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym___attribute] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym__Nonnull] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym__Alignas] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [anon_sym___asm] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3101), - [anon_sym_module] = ACTIONS(3101), - [anon_sym_import] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - }, - [STATE(533)] = { - [ts_builtin_sym_end] = ACTIONS(3113), - [sym_identifier] = ACTIONS(3111), - [aux_sym_preproc_include_token1] = ACTIONS(3111), - [aux_sym_preproc_def_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), - [sym_preproc_directive] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym___attribute] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym___based] = ACTIONS(3111), - [anon_sym___cdecl] = ACTIONS(3111), - [anon_sym___clrcall] = ACTIONS(3111), - [anon_sym___stdcall] = ACTIONS(3111), - [anon_sym___fastcall] = ACTIONS(3111), - [anon_sym___thiscall] = ACTIONS(3111), - [anon_sym___vectorcall] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym___inline] = ACTIONS(3111), - [anon_sym___inline__] = ACTIONS(3111), - [anon_sym___forceinline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym___thread] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym___restrict__] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym__Noreturn] = ACTIONS(3111), - [anon_sym_noreturn] = ACTIONS(3111), - [anon_sym__Nonnull] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym__Alignas] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3111), - [anon_sym_switch] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_default] = ACTIONS(3111), - [anon_sym_while] = ACTIONS(3111), - [anon_sym_do] = ACTIONS(3111), - [anon_sym_for] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3111), - [anon_sym_break] = ACTIONS(3111), - [anon_sym_continue] = ACTIONS(3111), - [anon_sym_goto] = ACTIONS(3111), - [anon_sym_not] = ACTIONS(3111), - [anon_sym_compl] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3111), - [anon_sym___alignof__] = ACTIONS(3111), - [anon_sym___alignof] = ACTIONS(3111), - [anon_sym__alignof] = ACTIONS(3111), - [anon_sym_alignof] = ACTIONS(3111), - [anon_sym__Alignof] = ACTIONS(3111), - [anon_sym_offsetof] = ACTIONS(3111), - [anon_sym__Generic] = ACTIONS(3111), - [anon_sym_asm] = ACTIONS(3111), - [anon_sym___asm__] = ACTIONS(3111), - [anon_sym___asm] = ACTIONS(3111), - [sym_number_literal] = ACTIONS(3113), - [anon_sym_L_SQUOTE] = ACTIONS(3113), - [anon_sym_u_SQUOTE] = ACTIONS(3113), - [anon_sym_U_SQUOTE] = ACTIONS(3113), - [anon_sym_u8_SQUOTE] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(3113), - [anon_sym_L_DQUOTE] = ACTIONS(3113), - [anon_sym_u_DQUOTE] = ACTIONS(3113), - [anon_sym_U_DQUOTE] = ACTIONS(3113), - [anon_sym_u8_DQUOTE] = ACTIONS(3113), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym_true] = ACTIONS(3111), - [sym_false] = ACTIONS(3111), - [anon_sym_NULL] = ACTIONS(3111), - [anon_sym_nullptr] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_export] = ACTIONS(3111), - [anon_sym_module] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_delete] = ACTIONS(3111), - [anon_sym_throw] = ACTIONS(3111), - [anon_sym_namespace] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3111), - [anon_sym_co_return] = ACTIONS(3111), - [anon_sym_co_yield] = ACTIONS(3111), - [anon_sym_R_DQUOTE] = ACTIONS(3113), - [anon_sym_LR_DQUOTE] = ACTIONS(3113), - [anon_sym_uR_DQUOTE] = ACTIONS(3113), - [anon_sym_UR_DQUOTE] = ACTIONS(3113), - [anon_sym_u8R_DQUOTE] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3111), - [anon_sym_new] = ACTIONS(3111), - [anon_sym_requires] = ACTIONS(3111), - [sym_this] = ACTIONS(3111), - }, - [STATE(534)] = { - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_include_token1] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym___cdecl] = ACTIONS(3115), - [anon_sym___clrcall] = ACTIONS(3115), - [anon_sym___stdcall] = ACTIONS(3115), - [anon_sym___fastcall] = ACTIONS(3115), - [anon_sym___thiscall] = ACTIONS(3115), - [anon_sym___vectorcall] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3115), - [anon_sym_compl] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym___alignof__] = ACTIONS(3115), - [anon_sym___alignof] = ACTIONS(3115), - [anon_sym__alignof] = ACTIONS(3115), - [anon_sym_alignof] = ACTIONS(3115), - [anon_sym__Alignof] = ACTIONS(3115), - [anon_sym_offsetof] = ACTIONS(3115), - [anon_sym__Generic] = ACTIONS(3115), - [anon_sym_asm] = ACTIONS(3115), - [anon_sym___asm__] = ACTIONS(3115), - [anon_sym___asm] = ACTIONS(3115), - [sym_number_literal] = ACTIONS(3117), - [anon_sym_L_SQUOTE] = ACTIONS(3117), - [anon_sym_u_SQUOTE] = ACTIONS(3117), - [anon_sym_U_SQUOTE] = ACTIONS(3117), - [anon_sym_u8_SQUOTE] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(3117), - [anon_sym_L_DQUOTE] = ACTIONS(3117), - [anon_sym_u_DQUOTE] = ACTIONS(3117), - [anon_sym_U_DQUOTE] = ACTIONS(3117), - [anon_sym_u8_DQUOTE] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_true] = ACTIONS(3115), - [sym_false] = ACTIONS(3115), - [anon_sym_NULL] = ACTIONS(3115), - [anon_sym_nullptr] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_export] = ACTIONS(3115), - [anon_sym_module] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_delete] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3115), - [anon_sym_co_return] = ACTIONS(3115), - [anon_sym_co_yield] = ACTIONS(3115), - [anon_sym_R_DQUOTE] = ACTIONS(3117), - [anon_sym_LR_DQUOTE] = ACTIONS(3117), - [anon_sym_uR_DQUOTE] = ACTIONS(3117), - [anon_sym_UR_DQUOTE] = ACTIONS(3117), - [anon_sym_u8R_DQUOTE] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_requires] = ACTIONS(3115), - [sym_this] = ACTIONS(3115), - }, - [STATE(535)] = { - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_include_token1] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym___cdecl] = ACTIONS(3119), - [anon_sym___clrcall] = ACTIONS(3119), - [anon_sym___stdcall] = ACTIONS(3119), - [anon_sym___fastcall] = ACTIONS(3119), - [anon_sym___thiscall] = ACTIONS(3119), - [anon_sym___vectorcall] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_compl] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym___alignof__] = ACTIONS(3119), - [anon_sym___alignof] = ACTIONS(3119), - [anon_sym__alignof] = ACTIONS(3119), - [anon_sym_alignof] = ACTIONS(3119), - [anon_sym__Alignof] = ACTIONS(3119), - [anon_sym_offsetof] = ACTIONS(3119), - [anon_sym__Generic] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym___asm__] = ACTIONS(3119), - [anon_sym___asm] = ACTIONS(3119), - [sym_number_literal] = ACTIONS(3121), - [anon_sym_L_SQUOTE] = ACTIONS(3121), - [anon_sym_u_SQUOTE] = ACTIONS(3121), - [anon_sym_U_SQUOTE] = ACTIONS(3121), - [anon_sym_u8_SQUOTE] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3121), - [anon_sym_L_DQUOTE] = ACTIONS(3121), - [anon_sym_u_DQUOTE] = ACTIONS(3121), - [anon_sym_U_DQUOTE] = ACTIONS(3121), - [anon_sym_u8_DQUOTE] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [anon_sym_NULL] = ACTIONS(3119), - [anon_sym_nullptr] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_export] = ACTIONS(3119), - [anon_sym_module] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_delete] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), - [anon_sym_concept] = ACTIONS(3119), - [anon_sym_co_return] = ACTIONS(3119), - [anon_sym_co_yield] = ACTIONS(3119), - [anon_sym_R_DQUOTE] = ACTIONS(3121), - [anon_sym_LR_DQUOTE] = ACTIONS(3121), - [anon_sym_uR_DQUOTE] = ACTIONS(3121), - [anon_sym_UR_DQUOTE] = ACTIONS(3121), - [anon_sym_u8R_DQUOTE] = ACTIONS(3121), - [anon_sym_co_await] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_requires] = ACTIONS(3119), - [sym_this] = ACTIONS(3119), - }, - [STATE(536)] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - }, - [STATE(537)] = { - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3469), - [aux_sym_preproc_include_token1] = ACTIONS(3469), - [aux_sym_preproc_def_token1] = ACTIONS(3469), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3469), - [sym_preproc_directive] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_BANG] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3467), - [anon_sym_AMP_AMP] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3467), - [anon_sym___extension__] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3469), - [anon_sym_virtual] = ACTIONS(3469), - [anon_sym_extern] = ACTIONS(3469), - [anon_sym___attribute__] = ACTIONS(3469), - [anon_sym___attribute] = ACTIONS(3469), - [anon_sym_using] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3467), - [anon_sym___declspec] = ACTIONS(3469), - [anon_sym___based] = ACTIONS(3469), - [anon_sym___cdecl] = ACTIONS(3469), - [anon_sym___clrcall] = ACTIONS(3469), - [anon_sym___stdcall] = ACTIONS(3469), - [anon_sym___fastcall] = ACTIONS(3469), - [anon_sym___thiscall] = ACTIONS(3469), - [anon_sym___vectorcall] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3467), - [anon_sym_signed] = ACTIONS(3469), - [anon_sym_unsigned] = ACTIONS(3469), - [anon_sym_long] = ACTIONS(3469), - [anon_sym_short] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3469), - [anon_sym_register] = ACTIONS(3469), - [anon_sym_inline] = ACTIONS(3469), - [anon_sym___inline] = ACTIONS(3469), - [anon_sym___inline__] = ACTIONS(3469), - [anon_sym___forceinline] = ACTIONS(3469), - [anon_sym_thread_local] = ACTIONS(3469), - [anon_sym___thread] = ACTIONS(3469), - [anon_sym_const] = ACTIONS(3469), - [anon_sym_constexpr] = ACTIONS(3469), - [anon_sym_volatile] = ACTIONS(3469), - [anon_sym_restrict] = ACTIONS(3469), - [anon_sym___restrict__] = ACTIONS(3469), - [anon_sym__Atomic] = ACTIONS(3469), - [anon_sym__Noreturn] = ACTIONS(3469), - [anon_sym_noreturn] = ACTIONS(3469), - [anon_sym__Nonnull] = ACTIONS(3469), - [anon_sym_mutable] = ACTIONS(3469), - [anon_sym_constinit] = ACTIONS(3469), - [anon_sym_consteval] = ACTIONS(3469), - [anon_sym_alignas] = ACTIONS(3469), - [anon_sym__Alignas] = ACTIONS(3469), - [sym_primitive_type] = ACTIONS(3469), - [anon_sym_enum] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_struct] = ACTIONS(3469), - [anon_sym_union] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_switch] = ACTIONS(3469), - [anon_sym_case] = ACTIONS(3469), - [anon_sym_default] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_break] = ACTIONS(3469), - [anon_sym_continue] = ACTIONS(3469), - [anon_sym_goto] = ACTIONS(3469), - [anon_sym_not] = ACTIONS(3469), - [anon_sym_compl] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3467), - [anon_sym_PLUS_PLUS] = ACTIONS(3467), - [anon_sym_sizeof] = ACTIONS(3469), - [anon_sym___alignof__] = ACTIONS(3469), - [anon_sym___alignof] = ACTIONS(3469), - [anon_sym__alignof] = ACTIONS(3469), - [anon_sym_alignof] = ACTIONS(3469), - [anon_sym__Alignof] = ACTIONS(3469), - [anon_sym_offsetof] = ACTIONS(3469), - [anon_sym__Generic] = ACTIONS(3469), - [anon_sym_asm] = ACTIONS(3469), - [anon_sym___asm__] = ACTIONS(3469), - [anon_sym___asm] = ACTIONS(3469), - [sym_number_literal] = ACTIONS(3467), - [anon_sym_L_SQUOTE] = ACTIONS(3467), - [anon_sym_u_SQUOTE] = ACTIONS(3467), - [anon_sym_U_SQUOTE] = ACTIONS(3467), - [anon_sym_u8_SQUOTE] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_L_DQUOTE] = ACTIONS(3467), - [anon_sym_u_DQUOTE] = ACTIONS(3467), - [anon_sym_U_DQUOTE] = ACTIONS(3467), - [anon_sym_u8_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [anon_sym_NULL] = ACTIONS(3469), - [anon_sym_nullptr] = ACTIONS(3469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3469), - [anon_sym_decltype] = ACTIONS(3469), - [anon_sym_explicit] = ACTIONS(3469), - [anon_sym_typename] = ACTIONS(3469), - [anon_sym_export] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_import] = ACTIONS(3469), - [anon_sym_template] = ACTIONS(3469), - [anon_sym_operator] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_delete] = ACTIONS(3469), - [anon_sym_throw] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_static_assert] = ACTIONS(3469), - [anon_sym_concept] = ACTIONS(3469), - [anon_sym_co_return] = ACTIONS(3469), - [anon_sym_co_yield] = ACTIONS(3469), - [anon_sym_R_DQUOTE] = ACTIONS(3467), - [anon_sym_LR_DQUOTE] = ACTIONS(3467), - [anon_sym_uR_DQUOTE] = ACTIONS(3467), - [anon_sym_UR_DQUOTE] = ACTIONS(3467), - [anon_sym_u8R_DQUOTE] = ACTIONS(3467), - [anon_sym_co_await] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_requires] = ACTIONS(3469), - [sym_this] = ACTIONS(3469), - }, - [STATE(538)] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_export] = ACTIONS(3135), - [anon_sym_module] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(539)] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token2] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [STATE(540)] = { - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token2] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), - }, - [STATE(541)] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token2] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [STATE(542)] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token2] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), - }, - [STATE(543)] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token2] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), - }, - [STATE(544)] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token2] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), - }, - [STATE(545)] = { - [sym_identifier] = ACTIONS(2727), - [aux_sym_preproc_include_token1] = ACTIONS(2727), - [aux_sym_preproc_def_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token1] = ACTIONS(2727), - [aux_sym_preproc_if_token2] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2727), - [sym_preproc_directive] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP_AMP] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_using] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym___based] = ACTIONS(2727), - [anon_sym___cdecl] = ACTIONS(2727), - [anon_sym___clrcall] = ACTIONS(2727), - [anon_sym___stdcall] = ACTIONS(2727), - [anon_sym___fastcall] = ACTIONS(2727), - [anon_sym___thiscall] = ACTIONS(2727), - [anon_sym___vectorcall] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_explicit] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_operator] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_namespace] = ACTIONS(2727), - [anon_sym_static_assert] = ACTIONS(2727), - [anon_sym_concept] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), - }, - [STATE(546)] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_export] = ACTIONS(3135), - [anon_sym_module] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(547)] = { - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3473), - [aux_sym_preproc_include_token1] = ACTIONS(3473), - [aux_sym_preproc_def_token1] = ACTIONS(3473), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3473), - [sym_preproc_directive] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym___extension__] = ACTIONS(3473), - [anon_sym_typedef] = ACTIONS(3473), - [anon_sym_virtual] = ACTIONS(3473), - [anon_sym_extern] = ACTIONS(3473), - [anon_sym___attribute__] = ACTIONS(3473), - [anon_sym___attribute] = ACTIONS(3473), - [anon_sym_using] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3471), - [anon_sym___declspec] = ACTIONS(3473), - [anon_sym___based] = ACTIONS(3473), - [anon_sym___cdecl] = ACTIONS(3473), - [anon_sym___clrcall] = ACTIONS(3473), - [anon_sym___stdcall] = ACTIONS(3473), - [anon_sym___fastcall] = ACTIONS(3473), - [anon_sym___thiscall] = ACTIONS(3473), - [anon_sym___vectorcall] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3471), - [anon_sym_signed] = ACTIONS(3473), - [anon_sym_unsigned] = ACTIONS(3473), - [anon_sym_long] = ACTIONS(3473), - [anon_sym_short] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_static] = ACTIONS(3473), - [anon_sym_register] = ACTIONS(3473), - [anon_sym_inline] = ACTIONS(3473), - [anon_sym___inline] = ACTIONS(3473), - [anon_sym___inline__] = ACTIONS(3473), - [anon_sym___forceinline] = ACTIONS(3473), - [anon_sym_thread_local] = ACTIONS(3473), - [anon_sym___thread] = ACTIONS(3473), - [anon_sym_const] = ACTIONS(3473), - [anon_sym_constexpr] = ACTIONS(3473), - [anon_sym_volatile] = ACTIONS(3473), - [anon_sym_restrict] = ACTIONS(3473), - [anon_sym___restrict__] = ACTIONS(3473), - [anon_sym__Atomic] = ACTIONS(3473), - [anon_sym__Noreturn] = ACTIONS(3473), - [anon_sym_noreturn] = ACTIONS(3473), - [anon_sym__Nonnull] = ACTIONS(3473), - [anon_sym_mutable] = ACTIONS(3473), - [anon_sym_constinit] = ACTIONS(3473), - [anon_sym_consteval] = ACTIONS(3473), - [anon_sym_alignas] = ACTIONS(3473), - [anon_sym__Alignas] = ACTIONS(3473), - [sym_primitive_type] = ACTIONS(3473), - [anon_sym_enum] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_struct] = ACTIONS(3473), - [anon_sym_union] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_switch] = ACTIONS(3473), - [anon_sym_case] = ACTIONS(3473), - [anon_sym_default] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_break] = ACTIONS(3473), - [anon_sym_continue] = ACTIONS(3473), - [anon_sym_goto] = ACTIONS(3473), - [anon_sym_not] = ACTIONS(3473), - [anon_sym_compl] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3471), - [anon_sym_PLUS_PLUS] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3473), - [anon_sym___alignof__] = ACTIONS(3473), - [anon_sym___alignof] = ACTIONS(3473), - [anon_sym__alignof] = ACTIONS(3473), - [anon_sym_alignof] = ACTIONS(3473), - [anon_sym__Alignof] = ACTIONS(3473), - [anon_sym_offsetof] = ACTIONS(3473), - [anon_sym__Generic] = ACTIONS(3473), - [anon_sym_asm] = ACTIONS(3473), - [anon_sym___asm__] = ACTIONS(3473), - [anon_sym___asm] = ACTIONS(3473), - [sym_number_literal] = ACTIONS(3471), - [anon_sym_L_SQUOTE] = ACTIONS(3471), - [anon_sym_u_SQUOTE] = ACTIONS(3471), - [anon_sym_U_SQUOTE] = ACTIONS(3471), - [anon_sym_u8_SQUOTE] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_L_DQUOTE] = ACTIONS(3471), - [anon_sym_u_DQUOTE] = ACTIONS(3471), - [anon_sym_U_DQUOTE] = ACTIONS(3471), - [anon_sym_u8_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [anon_sym_NULL] = ACTIONS(3473), - [anon_sym_nullptr] = ACTIONS(3473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3473), - [anon_sym_decltype] = ACTIONS(3473), - [anon_sym_explicit] = ACTIONS(3473), - [anon_sym_typename] = ACTIONS(3473), - [anon_sym_export] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_import] = ACTIONS(3473), - [anon_sym_template] = ACTIONS(3473), - [anon_sym_operator] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_delete] = ACTIONS(3473), - [anon_sym_throw] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_static_assert] = ACTIONS(3473), - [anon_sym_concept] = ACTIONS(3473), - [anon_sym_co_return] = ACTIONS(3473), - [anon_sym_co_yield] = ACTIONS(3473), - [anon_sym_R_DQUOTE] = ACTIONS(3471), - [anon_sym_LR_DQUOTE] = ACTIONS(3471), - [anon_sym_uR_DQUOTE] = ACTIONS(3471), - [anon_sym_UR_DQUOTE] = ACTIONS(3471), - [anon_sym_u8R_DQUOTE] = ACTIONS(3471), - [anon_sym_co_await] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_requires] = ACTIONS(3473), - [sym_this] = ACTIONS(3473), - }, - [STATE(548)] = { - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token2] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [STATE(549)] = { - [ts_builtin_sym_end] = ACTIONS(3147), - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_include_token1] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym___cdecl] = ACTIONS(3145), - [anon_sym___clrcall] = ACTIONS(3145), - [anon_sym___stdcall] = ACTIONS(3145), - [anon_sym___fastcall] = ACTIONS(3145), - [anon_sym___thiscall] = ACTIONS(3145), - [anon_sym___vectorcall] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3145), - [anon_sym_compl] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym___alignof__] = ACTIONS(3145), - [anon_sym___alignof] = ACTIONS(3145), - [anon_sym__alignof] = ACTIONS(3145), - [anon_sym_alignof] = ACTIONS(3145), - [anon_sym__Alignof] = ACTIONS(3145), - [anon_sym_offsetof] = ACTIONS(3145), - [anon_sym__Generic] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym___asm__] = ACTIONS(3145), - [anon_sym___asm] = ACTIONS(3145), - [sym_number_literal] = ACTIONS(3147), - [anon_sym_L_SQUOTE] = ACTIONS(3147), - [anon_sym_u_SQUOTE] = ACTIONS(3147), - [anon_sym_U_SQUOTE] = ACTIONS(3147), - [anon_sym_u8_SQUOTE] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_L_DQUOTE] = ACTIONS(3147), - [anon_sym_u_DQUOTE] = ACTIONS(3147), - [anon_sym_U_DQUOTE] = ACTIONS(3147), - [anon_sym_u8_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [anon_sym_NULL] = ACTIONS(3145), - [anon_sym_nullptr] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_export] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_import] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), - [anon_sym_concept] = ACTIONS(3145), - [anon_sym_co_return] = ACTIONS(3145), - [anon_sym_co_yield] = ACTIONS(3145), - [anon_sym_R_DQUOTE] = ACTIONS(3147), - [anon_sym_LR_DQUOTE] = ACTIONS(3147), - [anon_sym_uR_DQUOTE] = ACTIONS(3147), - [anon_sym_UR_DQUOTE] = ACTIONS(3147), - [anon_sym_u8R_DQUOTE] = ACTIONS(3147), - [anon_sym_co_await] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_requires] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - }, - [STATE(550)] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_include_token1] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym___cdecl] = ACTIONS(3149), - [anon_sym___clrcall] = ACTIONS(3149), - [anon_sym___stdcall] = ACTIONS(3149), - [anon_sym___fastcall] = ACTIONS(3149), - [anon_sym___thiscall] = ACTIONS(3149), - [anon_sym___vectorcall] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_case] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3149), - [anon_sym_compl] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym___alignof__] = ACTIONS(3149), - [anon_sym___alignof] = ACTIONS(3149), - [anon_sym__alignof] = ACTIONS(3149), - [anon_sym_alignof] = ACTIONS(3149), - [anon_sym__Alignof] = ACTIONS(3149), - [anon_sym_offsetof] = ACTIONS(3149), - [anon_sym__Generic] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym___asm__] = ACTIONS(3149), - [anon_sym___asm] = ACTIONS(3149), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_L_SQUOTE] = ACTIONS(3151), - [anon_sym_u_SQUOTE] = ACTIONS(3151), - [anon_sym_U_SQUOTE] = ACTIONS(3151), - [anon_sym_u8_SQUOTE] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_L_DQUOTE] = ACTIONS(3151), - [anon_sym_u_DQUOTE] = ACTIONS(3151), - [anon_sym_U_DQUOTE] = ACTIONS(3151), - [anon_sym_u8_DQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [anon_sym_NULL] = ACTIONS(3149), - [anon_sym_nullptr] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_export] = ACTIONS(3149), - [anon_sym_module] = ACTIONS(3149), - [anon_sym_import] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_delete] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), - [anon_sym_concept] = ACTIONS(3149), - [anon_sym_co_return] = ACTIONS(3149), - [anon_sym_co_yield] = ACTIONS(3149), - [anon_sym_R_DQUOTE] = ACTIONS(3151), - [anon_sym_LR_DQUOTE] = ACTIONS(3151), - [anon_sym_uR_DQUOTE] = ACTIONS(3151), - [anon_sym_UR_DQUOTE] = ACTIONS(3151), - [anon_sym_u8R_DQUOTE] = ACTIONS(3151), - [anon_sym_co_await] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_requires] = ACTIONS(3149), - [sym_this] = ACTIONS(3149), - }, - [STATE(551)] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token2] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym___extension__] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym___attribute] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym___inline] = ACTIONS(2629), - [anon_sym___inline__] = ACTIONS(2629), - [anon_sym___forceinline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym___thread] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym___restrict__] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym__Noreturn] = ACTIONS(2629), - [anon_sym_noreturn] = ACTIONS(2629), - [anon_sym__Nonnull] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_alignas] = ACTIONS(2629), - [anon_sym__Alignas] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2629), - [anon_sym___leave] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_compl] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [anon_sym___alignof__] = ACTIONS(2629), - [anon_sym___alignof] = ACTIONS(2629), - [anon_sym__alignof] = ACTIONS(2629), - [anon_sym_alignof] = ACTIONS(2629), - [anon_sym__Alignof] = ACTIONS(2629), - [anon_sym_offsetof] = ACTIONS(2629), - [anon_sym__Generic] = ACTIONS(2629), - [anon_sym_asm] = ACTIONS(2629), - [anon_sym___asm__] = ACTIONS(2629), - [anon_sym___asm] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_nullptr] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_R_DQUOTE] = ACTIONS(2631), - [anon_sym_LR_DQUOTE] = ACTIONS(2631), - [anon_sym_uR_DQUOTE] = ACTIONS(2631), - [anon_sym_UR_DQUOTE] = ACTIONS(2631), - [anon_sym_u8R_DQUOTE] = ACTIONS(2631), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - }, - [STATE(552)] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token2] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym___extension__] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym___attribute] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym___inline] = ACTIONS(2765), - [anon_sym___inline__] = ACTIONS(2765), - [anon_sym___forceinline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym___thread] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym___restrict__] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym__Noreturn] = ACTIONS(2765), - [anon_sym_noreturn] = ACTIONS(2765), - [anon_sym__Nonnull] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_alignas] = ACTIONS(2765), - [anon_sym__Alignas] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2765), - [anon_sym___leave] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [anon_sym___alignof__] = ACTIONS(2765), - [anon_sym___alignof] = ACTIONS(2765), - [anon_sym__alignof] = ACTIONS(2765), - [anon_sym_alignof] = ACTIONS(2765), - [anon_sym__Alignof] = ACTIONS(2765), - [anon_sym_offsetof] = ACTIONS(2765), - [anon_sym__Generic] = ACTIONS(2765), - [anon_sym_asm] = ACTIONS(2765), - [anon_sym___asm__] = ACTIONS(2765), - [anon_sym___asm] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [anon_sym_NULL] = ACTIONS(2765), - [anon_sym_nullptr] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - }, - [STATE(553)] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token2] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), - }, - [STATE(554)] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - }, - [STATE(555)] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3177), - [aux_sym_preproc_include_token1] = ACTIONS(3177), - [aux_sym_preproc_def_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3177), - [sym_preproc_directive] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3177), - [anon_sym_typedef] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym___attribute__] = ACTIONS(3177), - [anon_sym___attribute] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3179), - [anon_sym___declspec] = ACTIONS(3177), - [anon_sym___based] = ACTIONS(3177), - [anon_sym___cdecl] = ACTIONS(3177), - [anon_sym___clrcall] = ACTIONS(3177), - [anon_sym___stdcall] = ACTIONS(3177), - [anon_sym___fastcall] = ACTIONS(3177), - [anon_sym___thiscall] = ACTIONS(3177), - [anon_sym___vectorcall] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3177), - [anon_sym_unsigned] = ACTIONS(3177), - [anon_sym_long] = ACTIONS(3177), - [anon_sym_short] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_register] = ACTIONS(3177), - [anon_sym_inline] = ACTIONS(3177), - [anon_sym___inline] = ACTIONS(3177), - [anon_sym___inline__] = ACTIONS(3177), - [anon_sym___forceinline] = ACTIONS(3177), - [anon_sym_thread_local] = ACTIONS(3177), - [anon_sym___thread] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_constexpr] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_restrict] = ACTIONS(3177), - [anon_sym___restrict__] = ACTIONS(3177), - [anon_sym__Atomic] = ACTIONS(3177), - [anon_sym__Noreturn] = ACTIONS(3177), - [anon_sym_noreturn] = ACTIONS(3177), - [anon_sym__Nonnull] = ACTIONS(3177), - [anon_sym_mutable] = ACTIONS(3177), - [anon_sym_constinit] = ACTIONS(3177), - [anon_sym_consteval] = ACTIONS(3177), - [anon_sym_alignas] = ACTIONS(3177), - [anon_sym__Alignas] = ACTIONS(3177), - [sym_primitive_type] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_case] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_compl] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym___alignof__] = ACTIONS(3177), - [anon_sym___alignof] = ACTIONS(3177), - [anon_sym__alignof] = ACTIONS(3177), - [anon_sym_alignof] = ACTIONS(3177), - [anon_sym__Alignof] = ACTIONS(3177), - [anon_sym_offsetof] = ACTIONS(3177), - [anon_sym__Generic] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym___asm__] = ACTIONS(3177), - [anon_sym___asm] = ACTIONS(3177), - [sym_number_literal] = ACTIONS(3179), - [anon_sym_L_SQUOTE] = ACTIONS(3179), - [anon_sym_u_SQUOTE] = ACTIONS(3179), - [anon_sym_U_SQUOTE] = ACTIONS(3179), - [anon_sym_u8_SQUOTE] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_L_DQUOTE] = ACTIONS(3179), - [anon_sym_u_DQUOTE] = ACTIONS(3179), - [anon_sym_U_DQUOTE] = ACTIONS(3179), - [anon_sym_u8_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [anon_sym_NULL] = ACTIONS(3177), - [anon_sym_nullptr] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3177), - [anon_sym_decltype] = ACTIONS(3177), - [anon_sym_explicit] = ACTIONS(3177), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_export] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_import] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(3177), - [anon_sym_operator] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_delete] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_static_assert] = ACTIONS(3177), - [anon_sym_concept] = ACTIONS(3177), - [anon_sym_co_return] = ACTIONS(3177), - [anon_sym_co_yield] = ACTIONS(3177), - [anon_sym_R_DQUOTE] = ACTIONS(3179), - [anon_sym_LR_DQUOTE] = ACTIONS(3179), - [anon_sym_uR_DQUOTE] = ACTIONS(3179), - [anon_sym_UR_DQUOTE] = ACTIONS(3179), - [anon_sym_u8R_DQUOTE] = ACTIONS(3179), - [anon_sym_co_await] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_requires] = ACTIONS(3177), - [sym_this] = ACTIONS(3177), - }, - [STATE(556)] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym___extension__] = ACTIONS(2769), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym___attribute] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym___inline] = ACTIONS(2769), - [anon_sym___inline__] = ACTIONS(2769), - [anon_sym___forceinline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym___thread] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym___restrict__] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym__Noreturn] = ACTIONS(2769), - [anon_sym_noreturn] = ACTIONS(2769), - [anon_sym__Nonnull] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_alignas] = ACTIONS(2769), - [anon_sym__Alignas] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym___try] = ACTIONS(2769), - [anon_sym___leave] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [anon_sym___alignof__] = ACTIONS(2769), - [anon_sym___alignof] = ACTIONS(2769), - [anon_sym__alignof] = ACTIONS(2769), - [anon_sym_alignof] = ACTIONS(2769), - [anon_sym__Alignof] = ACTIONS(2769), - [anon_sym_offsetof] = ACTIONS(2769), - [anon_sym__Generic] = ACTIONS(2769), - [anon_sym_asm] = ACTIONS(2769), - [anon_sym___asm__] = ACTIONS(2769), - [anon_sym___asm] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [anon_sym_NULL] = ACTIONS(2769), - [anon_sym_nullptr] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - }, - [STATE(557)] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token2] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym___extension__] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym___attribute] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym___inline] = ACTIONS(2633), - [anon_sym___inline__] = ACTIONS(2633), - [anon_sym___forceinline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym___thread] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym___restrict__] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym__Noreturn] = ACTIONS(2633), - [anon_sym_noreturn] = ACTIONS(2633), - [anon_sym__Nonnull] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_alignas] = ACTIONS(2633), - [anon_sym__Alignas] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym___try] = ACTIONS(2633), - [anon_sym___leave] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_compl] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [anon_sym___alignof__] = ACTIONS(2633), - [anon_sym___alignof] = ACTIONS(2633), - [anon_sym__alignof] = ACTIONS(2633), - [anon_sym_alignof] = ACTIONS(2633), - [anon_sym__Alignof] = ACTIONS(2633), - [anon_sym_offsetof] = ACTIONS(2633), - [anon_sym__Generic] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym___asm__] = ACTIONS(2633), - [anon_sym___asm] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [anon_sym_NULL] = ACTIONS(2633), - [anon_sym_nullptr] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_R_DQUOTE] = ACTIONS(2635), - [anon_sym_LR_DQUOTE] = ACTIONS(2635), - [anon_sym_uR_DQUOTE] = ACTIONS(2635), - [anon_sym_UR_DQUOTE] = ACTIONS(2635), - [anon_sym_u8R_DQUOTE] = ACTIONS(2635), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - }, - [STATE(558)] = { - [sym_identifier] = ACTIONS(2645), - [aux_sym_preproc_include_token1] = ACTIONS(2645), - [aux_sym_preproc_def_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token2] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), - [sym_preproc_directive] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym___extension__] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2645), - [anon_sym_virtual] = ACTIONS(2645), - [anon_sym_extern] = ACTIONS(2645), - [anon_sym___attribute__] = ACTIONS(2645), - [anon_sym___attribute] = ACTIONS(2645), - [anon_sym_using] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), - [anon_sym___declspec] = ACTIONS(2645), - [anon_sym___based] = ACTIONS(2645), - [anon_sym___cdecl] = ACTIONS(2645), - [anon_sym___clrcall] = ACTIONS(2645), - [anon_sym___stdcall] = ACTIONS(2645), - [anon_sym___fastcall] = ACTIONS(2645), - [anon_sym___thiscall] = ACTIONS(2645), - [anon_sym___vectorcall] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2645), - [anon_sym_unsigned] = ACTIONS(2645), - [anon_sym_long] = ACTIONS(2645), - [anon_sym_short] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_register] = ACTIONS(2645), - [anon_sym_inline] = ACTIONS(2645), - [anon_sym___inline] = ACTIONS(2645), - [anon_sym___inline__] = ACTIONS(2645), - [anon_sym___forceinline] = ACTIONS(2645), - [anon_sym_thread_local] = ACTIONS(2645), - [anon_sym___thread] = ACTIONS(2645), - [anon_sym_const] = ACTIONS(2645), - [anon_sym_constexpr] = ACTIONS(2645), - [anon_sym_volatile] = ACTIONS(2645), - [anon_sym_restrict] = ACTIONS(2645), - [anon_sym___restrict__] = ACTIONS(2645), - [anon_sym__Atomic] = ACTIONS(2645), - [anon_sym__Noreturn] = ACTIONS(2645), - [anon_sym_noreturn] = ACTIONS(2645), - [anon_sym__Nonnull] = ACTIONS(2645), - [anon_sym_mutable] = ACTIONS(2645), - [anon_sym_constinit] = ACTIONS(2645), - [anon_sym_consteval] = ACTIONS(2645), - [anon_sym_alignas] = ACTIONS(2645), - [anon_sym__Alignas] = ACTIONS(2645), - [sym_primitive_type] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_union] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2645), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_default] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_goto] = ACTIONS(2645), - [anon_sym___try] = ACTIONS(2645), - [anon_sym___leave] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_compl] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(2645), - [anon_sym___alignof__] = ACTIONS(2645), - [anon_sym___alignof] = ACTIONS(2645), - [anon_sym__alignof] = ACTIONS(2645), - [anon_sym_alignof] = ACTIONS(2645), - [anon_sym__Alignof] = ACTIONS(2645), - [anon_sym_offsetof] = ACTIONS(2645), - [anon_sym__Generic] = ACTIONS(2645), - [anon_sym_asm] = ACTIONS(2645), - [anon_sym___asm__] = ACTIONS(2645), - [anon_sym___asm] = ACTIONS(2645), - [sym_number_literal] = ACTIONS(2647), - [anon_sym_L_SQUOTE] = ACTIONS(2647), - [anon_sym_u_SQUOTE] = ACTIONS(2647), - [anon_sym_U_SQUOTE] = ACTIONS(2647), - [anon_sym_u8_SQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_L_DQUOTE] = ACTIONS(2647), - [anon_sym_u_DQUOTE] = ACTIONS(2647), - [anon_sym_U_DQUOTE] = ACTIONS(2647), - [anon_sym_u8_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [anon_sym_NULL] = ACTIONS(2645), - [anon_sym_nullptr] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2645), - [anon_sym_decltype] = ACTIONS(2645), - [anon_sym_explicit] = ACTIONS(2645), - [anon_sym_typename] = ACTIONS(2645), - [anon_sym_template] = ACTIONS(2645), - [anon_sym_operator] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_delete] = ACTIONS(2645), - [anon_sym_throw] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_static_assert] = ACTIONS(2645), - [anon_sym_concept] = ACTIONS(2645), - [anon_sym_co_return] = ACTIONS(2645), - [anon_sym_co_yield] = ACTIONS(2645), - [anon_sym_R_DQUOTE] = ACTIONS(2647), - [anon_sym_LR_DQUOTE] = ACTIONS(2647), - [anon_sym_uR_DQUOTE] = ACTIONS(2647), - [anon_sym_UR_DQUOTE] = ACTIONS(2647), - [anon_sym_u8R_DQUOTE] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_requires] = ACTIONS(2645), - [sym_this] = ACTIONS(2645), - }, - [STATE(559)] = { - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token2] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), - }, - [STATE(560)] = { - [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_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_export] = ACTIONS(3211), - [anon_sym_module] = ACTIONS(3211), - [anon_sym_import] = 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_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), - }, - [STATE(561)] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - }, - [STATE(562)] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym___extension__] = ACTIONS(2773), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym___attribute] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym___inline] = ACTIONS(2773), - [anon_sym___inline__] = ACTIONS(2773), - [anon_sym___forceinline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym___thread] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym___restrict__] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym__Noreturn] = ACTIONS(2773), - [anon_sym_noreturn] = ACTIONS(2773), - [anon_sym__Nonnull] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_alignas] = ACTIONS(2773), - [anon_sym__Alignas] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym___try] = ACTIONS(2773), - [anon_sym___leave] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [anon_sym___alignof__] = ACTIONS(2773), - [anon_sym___alignof] = ACTIONS(2773), - [anon_sym__alignof] = ACTIONS(2773), - [anon_sym_alignof] = ACTIONS(2773), - [anon_sym__Alignof] = ACTIONS(2773), - [anon_sym_offsetof] = ACTIONS(2773), - [anon_sym__Generic] = ACTIONS(2773), - [anon_sym_asm] = ACTIONS(2773), - [anon_sym___asm__] = ACTIONS(2773), - [anon_sym___asm] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [anon_sym_NULL] = ACTIONS(2773), - [anon_sym_nullptr] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - }, - [STATE(563)] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token2] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - }, - [STATE(564)] = { - [sym_identifier] = ACTIONS(2663), - [aux_sym_preproc_include_token1] = ACTIONS(2663), - [aux_sym_preproc_def_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token2] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), - [sym_preproc_directive] = ACTIONS(2663), - [anon_sym_LPAREN2] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_AMP_AMP] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym___extension__] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2663), - [anon_sym_virtual] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym___attribute__] = ACTIONS(2663), - [anon_sym___attribute] = ACTIONS(2663), - [anon_sym_using] = ACTIONS(2663), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), - [anon_sym___declspec] = ACTIONS(2663), - [anon_sym___based] = ACTIONS(2663), - [anon_sym___cdecl] = ACTIONS(2663), - [anon_sym___clrcall] = ACTIONS(2663), - [anon_sym___stdcall] = ACTIONS(2663), - [anon_sym___fastcall] = ACTIONS(2663), - [anon_sym___thiscall] = ACTIONS(2663), - [anon_sym___vectorcall] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym___inline] = ACTIONS(2663), - [anon_sym___inline__] = ACTIONS(2663), - [anon_sym___forceinline] = ACTIONS(2663), - [anon_sym_thread_local] = ACTIONS(2663), - [anon_sym___thread] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_constexpr] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym___restrict__] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym__Noreturn] = ACTIONS(2663), - [anon_sym_noreturn] = ACTIONS(2663), - [anon_sym__Nonnull] = ACTIONS(2663), - [anon_sym_mutable] = ACTIONS(2663), - [anon_sym_constinit] = ACTIONS(2663), - [anon_sym_consteval] = ACTIONS(2663), - [anon_sym_alignas] = ACTIONS(2663), - [anon_sym__Alignas] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2663), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym___try] = ACTIONS(2663), - [anon_sym___leave] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_compl] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_sizeof] = ACTIONS(2663), - [anon_sym___alignof__] = ACTIONS(2663), - [anon_sym___alignof] = ACTIONS(2663), - [anon_sym__alignof] = ACTIONS(2663), - [anon_sym_alignof] = ACTIONS(2663), - [anon_sym__Alignof] = ACTIONS(2663), - [anon_sym_offsetof] = ACTIONS(2663), - [anon_sym__Generic] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym___asm__] = ACTIONS(2663), - [anon_sym___asm] = ACTIONS(2663), - [sym_number_literal] = ACTIONS(2665), - [anon_sym_L_SQUOTE] = ACTIONS(2665), - [anon_sym_u_SQUOTE] = ACTIONS(2665), - [anon_sym_U_SQUOTE] = ACTIONS(2665), - [anon_sym_u8_SQUOTE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_L_DQUOTE] = ACTIONS(2665), - [anon_sym_u_DQUOTE] = ACTIONS(2665), - [anon_sym_U_DQUOTE] = ACTIONS(2665), - [anon_sym_u8_DQUOTE] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [anon_sym_NULL] = ACTIONS(2663), - [anon_sym_nullptr] = ACTIONS(2663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2663), - [anon_sym_decltype] = ACTIONS(2663), - [anon_sym_explicit] = ACTIONS(2663), - [anon_sym_typename] = ACTIONS(2663), - [anon_sym_template] = ACTIONS(2663), - [anon_sym_operator] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2663), - [anon_sym_throw] = ACTIONS(2663), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_static_assert] = ACTIONS(2663), - [anon_sym_concept] = ACTIONS(2663), - [anon_sym_co_return] = ACTIONS(2663), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2665), - [anon_sym_LR_DQUOTE] = ACTIONS(2665), - [anon_sym_uR_DQUOTE] = ACTIONS(2665), - [anon_sym_UR_DQUOTE] = ACTIONS(2665), - [anon_sym_u8R_DQUOTE] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(2663), - [anon_sym_requires] = ACTIONS(2663), - [sym_this] = ACTIONS(2663), - }, - [STATE(565)] = { - [sym_identifier] = ACTIONS(2667), - [aux_sym_preproc_include_token1] = ACTIONS(2667), - [aux_sym_preproc_def_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token2] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), - [sym_preproc_directive] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym___extension__] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2667), - [anon_sym_virtual] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym___attribute__] = ACTIONS(2667), - [anon_sym___attribute] = ACTIONS(2667), - [anon_sym_using] = ACTIONS(2667), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), - [anon_sym___declspec] = ACTIONS(2667), - [anon_sym___based] = ACTIONS(2667), - [anon_sym___cdecl] = ACTIONS(2667), - [anon_sym___clrcall] = ACTIONS(2667), - [anon_sym___stdcall] = ACTIONS(2667), - [anon_sym___fastcall] = ACTIONS(2667), - [anon_sym___thiscall] = ACTIONS(2667), - [anon_sym___vectorcall] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym___inline] = ACTIONS(2667), - [anon_sym___inline__] = ACTIONS(2667), - [anon_sym___forceinline] = ACTIONS(2667), - [anon_sym_thread_local] = ACTIONS(2667), - [anon_sym___thread] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_constexpr] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym___restrict__] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym__Noreturn] = ACTIONS(2667), - [anon_sym_noreturn] = ACTIONS(2667), - [anon_sym__Nonnull] = ACTIONS(2667), - [anon_sym_mutable] = ACTIONS(2667), - [anon_sym_constinit] = ACTIONS(2667), - [anon_sym_consteval] = ACTIONS(2667), - [anon_sym_alignas] = ACTIONS(2667), - [anon_sym__Alignas] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_switch] = ACTIONS(2667), - [anon_sym_case] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym___try] = ACTIONS(2667), - [anon_sym___leave] = ACTIONS(2667), - [anon_sym_not] = ACTIONS(2667), - [anon_sym_compl] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(2667), - [anon_sym___alignof__] = ACTIONS(2667), - [anon_sym___alignof] = ACTIONS(2667), - [anon_sym__alignof] = ACTIONS(2667), - [anon_sym_alignof] = ACTIONS(2667), - [anon_sym__Alignof] = ACTIONS(2667), - [anon_sym_offsetof] = ACTIONS(2667), - [anon_sym__Generic] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym___asm__] = ACTIONS(2667), - [anon_sym___asm] = ACTIONS(2667), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_L_SQUOTE] = ACTIONS(2669), - [anon_sym_u_SQUOTE] = ACTIONS(2669), - [anon_sym_U_SQUOTE] = ACTIONS(2669), - [anon_sym_u8_SQUOTE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_L_DQUOTE] = ACTIONS(2669), - [anon_sym_u_DQUOTE] = ACTIONS(2669), - [anon_sym_U_DQUOTE] = ACTIONS(2669), - [anon_sym_u8_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [anon_sym_NULL] = ACTIONS(2667), - [anon_sym_nullptr] = ACTIONS(2667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2667), - [anon_sym_decltype] = ACTIONS(2667), - [anon_sym_explicit] = ACTIONS(2667), - [anon_sym_typename] = ACTIONS(2667), - [anon_sym_template] = ACTIONS(2667), - [anon_sym_operator] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_delete] = ACTIONS(2667), - [anon_sym_throw] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_static_assert] = ACTIONS(2667), - [anon_sym_concept] = ACTIONS(2667), - [anon_sym_co_return] = ACTIONS(2667), - [anon_sym_co_yield] = ACTIONS(2667), - [anon_sym_R_DQUOTE] = ACTIONS(2669), - [anon_sym_LR_DQUOTE] = ACTIONS(2669), - [anon_sym_uR_DQUOTE] = ACTIONS(2669), - [anon_sym_UR_DQUOTE] = ACTIONS(2669), - [anon_sym_u8R_DQUOTE] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_requires] = ACTIONS(2667), - [sym_this] = ACTIONS(2667), - }, - [STATE(566)] = { - [sym_identifier] = ACTIONS(2671), - [aux_sym_preproc_include_token1] = ACTIONS(2671), - [aux_sym_preproc_def_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token2] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), - [sym_preproc_directive] = ACTIONS(2671), - [anon_sym_LPAREN2] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym___extension__] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2671), - [anon_sym_virtual] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym___attribute__] = ACTIONS(2671), - [anon_sym___attribute] = ACTIONS(2671), - [anon_sym_using] = ACTIONS(2671), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), - [anon_sym___declspec] = ACTIONS(2671), - [anon_sym___based] = ACTIONS(2671), - [anon_sym___cdecl] = ACTIONS(2671), - [anon_sym___clrcall] = ACTIONS(2671), - [anon_sym___stdcall] = ACTIONS(2671), - [anon_sym___fastcall] = ACTIONS(2671), - [anon_sym___thiscall] = ACTIONS(2671), - [anon_sym___vectorcall] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym___inline] = ACTIONS(2671), - [anon_sym___inline__] = ACTIONS(2671), - [anon_sym___forceinline] = ACTIONS(2671), - [anon_sym_thread_local] = ACTIONS(2671), - [anon_sym___thread] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_constexpr] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym___restrict__] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym__Noreturn] = ACTIONS(2671), - [anon_sym_noreturn] = ACTIONS(2671), - [anon_sym__Nonnull] = ACTIONS(2671), - [anon_sym_mutable] = ACTIONS(2671), - [anon_sym_constinit] = ACTIONS(2671), - [anon_sym_consteval] = ACTIONS(2671), - [anon_sym_alignas] = ACTIONS(2671), - [anon_sym__Alignas] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_switch] = ACTIONS(2671), - [anon_sym_case] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_do] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym___try] = ACTIONS(2671), - [anon_sym___leave] = ACTIONS(2671), - [anon_sym_not] = ACTIONS(2671), - [anon_sym_compl] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_sizeof] = ACTIONS(2671), - [anon_sym___alignof__] = ACTIONS(2671), - [anon_sym___alignof] = ACTIONS(2671), - [anon_sym__alignof] = ACTIONS(2671), - [anon_sym_alignof] = ACTIONS(2671), - [anon_sym__Alignof] = ACTIONS(2671), - [anon_sym_offsetof] = ACTIONS(2671), - [anon_sym__Generic] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym___asm__] = ACTIONS(2671), - [anon_sym___asm] = ACTIONS(2671), - [sym_number_literal] = ACTIONS(2673), - [anon_sym_L_SQUOTE] = ACTIONS(2673), - [anon_sym_u_SQUOTE] = ACTIONS(2673), - [anon_sym_U_SQUOTE] = ACTIONS(2673), - [anon_sym_u8_SQUOTE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2673), - [anon_sym_L_DQUOTE] = ACTIONS(2673), - [anon_sym_u_DQUOTE] = ACTIONS(2673), - [anon_sym_U_DQUOTE] = ACTIONS(2673), - [anon_sym_u8_DQUOTE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [anon_sym_NULL] = ACTIONS(2671), - [anon_sym_nullptr] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2671), - [anon_sym_decltype] = ACTIONS(2671), - [anon_sym_explicit] = ACTIONS(2671), - [anon_sym_typename] = ACTIONS(2671), - [anon_sym_template] = ACTIONS(2671), - [anon_sym_operator] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_delete] = ACTIONS(2671), - [anon_sym_throw] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_static_assert] = ACTIONS(2671), - [anon_sym_concept] = ACTIONS(2671), - [anon_sym_co_return] = ACTIONS(2671), - [anon_sym_co_yield] = ACTIONS(2671), - [anon_sym_R_DQUOTE] = ACTIONS(2673), - [anon_sym_LR_DQUOTE] = ACTIONS(2673), - [anon_sym_uR_DQUOTE] = ACTIONS(2673), - [anon_sym_UR_DQUOTE] = ACTIONS(2673), - [anon_sym_u8R_DQUOTE] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2671), - [anon_sym_requires] = ACTIONS(2671), - [sym_this] = ACTIONS(2671), - }, - [STATE(567)] = { - [sym_identifier] = ACTIONS(2675), - [aux_sym_preproc_include_token1] = ACTIONS(2675), - [aux_sym_preproc_def_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token2] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), - [sym_preproc_directive] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_PLUS] = ACTIONS(2675), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym___extension__] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2675), - [anon_sym_virtual] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym___attribute__] = ACTIONS(2675), - [anon_sym___attribute] = ACTIONS(2675), - [anon_sym_using] = ACTIONS(2675), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), - [anon_sym___declspec] = ACTIONS(2675), - [anon_sym___based] = ACTIONS(2675), - [anon_sym___cdecl] = ACTIONS(2675), - [anon_sym___clrcall] = ACTIONS(2675), - [anon_sym___stdcall] = ACTIONS(2675), - [anon_sym___fastcall] = ACTIONS(2675), - [anon_sym___thiscall] = ACTIONS(2675), - [anon_sym___vectorcall] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2675), - [anon_sym_unsigned] = ACTIONS(2675), - [anon_sym_long] = ACTIONS(2675), - [anon_sym_short] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_register] = ACTIONS(2675), - [anon_sym_inline] = ACTIONS(2675), - [anon_sym___inline] = ACTIONS(2675), - [anon_sym___inline__] = ACTIONS(2675), - [anon_sym___forceinline] = ACTIONS(2675), - [anon_sym_thread_local] = ACTIONS(2675), - [anon_sym___thread] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_constexpr] = ACTIONS(2675), - [anon_sym_volatile] = ACTIONS(2675), - [anon_sym_restrict] = ACTIONS(2675), - [anon_sym___restrict__] = ACTIONS(2675), - [anon_sym__Atomic] = ACTIONS(2675), - [anon_sym__Noreturn] = ACTIONS(2675), - [anon_sym_noreturn] = ACTIONS(2675), - [anon_sym__Nonnull] = ACTIONS(2675), - [anon_sym_mutable] = ACTIONS(2675), - [anon_sym_constinit] = ACTIONS(2675), - [anon_sym_consteval] = ACTIONS(2675), - [anon_sym_alignas] = ACTIONS(2675), - [anon_sym__Alignas] = ACTIONS(2675), - [sym_primitive_type] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2675), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_do] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_goto] = ACTIONS(2675), - [anon_sym___try] = ACTIONS(2675), - [anon_sym___leave] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_compl] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(2675), - [anon_sym___alignof__] = ACTIONS(2675), - [anon_sym___alignof] = ACTIONS(2675), - [anon_sym__alignof] = ACTIONS(2675), - [anon_sym_alignof] = ACTIONS(2675), - [anon_sym__Alignof] = ACTIONS(2675), - [anon_sym_offsetof] = ACTIONS(2675), - [anon_sym__Generic] = ACTIONS(2675), - [anon_sym_asm] = ACTIONS(2675), - [anon_sym___asm__] = ACTIONS(2675), - [anon_sym___asm] = ACTIONS(2675), - [sym_number_literal] = ACTIONS(2677), - [anon_sym_L_SQUOTE] = ACTIONS(2677), - [anon_sym_u_SQUOTE] = ACTIONS(2677), - [anon_sym_U_SQUOTE] = ACTIONS(2677), - [anon_sym_u8_SQUOTE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2677), - [anon_sym_L_DQUOTE] = ACTIONS(2677), - [anon_sym_u_DQUOTE] = ACTIONS(2677), - [anon_sym_U_DQUOTE] = ACTIONS(2677), - [anon_sym_u8_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_true] = ACTIONS(2675), - [sym_false] = ACTIONS(2675), - [anon_sym_NULL] = ACTIONS(2675), - [anon_sym_nullptr] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2675), - [anon_sym_decltype] = ACTIONS(2675), - [anon_sym_explicit] = ACTIONS(2675), - [anon_sym_typename] = ACTIONS(2675), - [anon_sym_template] = ACTIONS(2675), - [anon_sym_operator] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_delete] = ACTIONS(2675), - [anon_sym_throw] = ACTIONS(2675), - [anon_sym_namespace] = ACTIONS(2675), - [anon_sym_static_assert] = ACTIONS(2675), - [anon_sym_concept] = ACTIONS(2675), - [anon_sym_co_return] = ACTIONS(2675), - [anon_sym_co_yield] = ACTIONS(2675), - [anon_sym_R_DQUOTE] = ACTIONS(2677), - [anon_sym_LR_DQUOTE] = ACTIONS(2677), - [anon_sym_uR_DQUOTE] = ACTIONS(2677), - [anon_sym_UR_DQUOTE] = ACTIONS(2677), - [anon_sym_u8R_DQUOTE] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2675), - [anon_sym_new] = ACTIONS(2675), - [anon_sym_requires] = ACTIONS(2675), - [sym_this] = ACTIONS(2675), - }, - [STATE(568)] = { - [sym_identifier] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token2] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym___extension__] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_virtual] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym___attribute__] = ACTIONS(2679), - [anon_sym___attribute] = ACTIONS(2679), - [anon_sym_using] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym___based] = ACTIONS(2679), - [anon_sym___cdecl] = ACTIONS(2679), - [anon_sym___clrcall] = ACTIONS(2679), - [anon_sym___stdcall] = ACTIONS(2679), - [anon_sym___fastcall] = ACTIONS(2679), - [anon_sym___thiscall] = ACTIONS(2679), - [anon_sym___vectorcall] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym___inline] = ACTIONS(2679), - [anon_sym___inline__] = ACTIONS(2679), - [anon_sym___forceinline] = ACTIONS(2679), - [anon_sym_thread_local] = ACTIONS(2679), - [anon_sym___thread] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_restrict] = ACTIONS(2679), - [anon_sym___restrict__] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [anon_sym__Noreturn] = ACTIONS(2679), - [anon_sym_noreturn] = ACTIONS(2679), - [anon_sym__Nonnull] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [anon_sym_constinit] = ACTIONS(2679), - [anon_sym_consteval] = ACTIONS(2679), - [anon_sym_alignas] = ACTIONS(2679), - [anon_sym__Alignas] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_case] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2679), - [anon_sym___leave] = ACTIONS(2679), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_compl] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym___alignof__] = ACTIONS(2679), - [anon_sym___alignof] = ACTIONS(2679), - [anon_sym__alignof] = ACTIONS(2679), - [anon_sym_alignof] = ACTIONS(2679), - [anon_sym__Alignof] = ACTIONS(2679), - [anon_sym_offsetof] = ACTIONS(2679), - [anon_sym__Generic] = ACTIONS(2679), - [anon_sym_asm] = ACTIONS(2679), - [anon_sym___asm__] = ACTIONS(2679), - [anon_sym___asm] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_L_SQUOTE] = ACTIONS(2681), - [anon_sym_u_SQUOTE] = ACTIONS(2681), - [anon_sym_U_SQUOTE] = ACTIONS(2681), - [anon_sym_u8_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_L_DQUOTE] = ACTIONS(2681), - [anon_sym_u_DQUOTE] = ACTIONS(2681), - [anon_sym_U_DQUOTE] = ACTIONS(2681), - [anon_sym_u8_DQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_nullptr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2679), - [anon_sym_decltype] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_operator] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_throw] = ACTIONS(2679), - [anon_sym_namespace] = ACTIONS(2679), - [anon_sym_static_assert] = ACTIONS(2679), - [anon_sym_concept] = ACTIONS(2679), - [anon_sym_co_return] = ACTIONS(2679), - [anon_sym_co_yield] = ACTIONS(2679), - [anon_sym_R_DQUOTE] = ACTIONS(2681), - [anon_sym_LR_DQUOTE] = ACTIONS(2681), - [anon_sym_uR_DQUOTE] = ACTIONS(2681), - [anon_sym_UR_DQUOTE] = ACTIONS(2681), - [anon_sym_u8R_DQUOTE] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_requires] = ACTIONS(2679), - [sym_this] = ACTIONS(2679), - }, - [STATE(569)] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token2] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - }, - [STATE(570)] = { - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3477), - [aux_sym_preproc_include_token1] = ACTIONS(3477), - [aux_sym_preproc_def_token1] = ACTIONS(3477), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3477), - [sym_preproc_directive] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym___extension__] = ACTIONS(3477), - [anon_sym_typedef] = ACTIONS(3477), - [anon_sym_virtual] = ACTIONS(3477), - [anon_sym_extern] = ACTIONS(3477), - [anon_sym___attribute__] = ACTIONS(3477), - [anon_sym___attribute] = ACTIONS(3477), - [anon_sym_using] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), - [anon_sym___declspec] = ACTIONS(3477), - [anon_sym___based] = ACTIONS(3477), - [anon_sym___cdecl] = ACTIONS(3477), - [anon_sym___clrcall] = ACTIONS(3477), - [anon_sym___stdcall] = ACTIONS(3477), - [anon_sym___fastcall] = ACTIONS(3477), - [anon_sym___thiscall] = ACTIONS(3477), - [anon_sym___vectorcall] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(3477), - [anon_sym_unsigned] = ACTIONS(3477), - [anon_sym_long] = ACTIONS(3477), - [anon_sym_short] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_static] = ACTIONS(3477), - [anon_sym_register] = ACTIONS(3477), - [anon_sym_inline] = ACTIONS(3477), - [anon_sym___inline] = ACTIONS(3477), - [anon_sym___inline__] = ACTIONS(3477), - [anon_sym___forceinline] = ACTIONS(3477), - [anon_sym_thread_local] = ACTIONS(3477), - [anon_sym___thread] = ACTIONS(3477), - [anon_sym_const] = ACTIONS(3477), - [anon_sym_constexpr] = ACTIONS(3477), - [anon_sym_volatile] = ACTIONS(3477), - [anon_sym_restrict] = ACTIONS(3477), - [anon_sym___restrict__] = ACTIONS(3477), - [anon_sym__Atomic] = ACTIONS(3477), - [anon_sym__Noreturn] = ACTIONS(3477), - [anon_sym_noreturn] = ACTIONS(3477), - [anon_sym__Nonnull] = ACTIONS(3477), - [anon_sym_mutable] = ACTIONS(3477), - [anon_sym_constinit] = ACTIONS(3477), - [anon_sym_consteval] = ACTIONS(3477), - [anon_sym_alignas] = ACTIONS(3477), - [anon_sym__Alignas] = ACTIONS(3477), - [sym_primitive_type] = ACTIONS(3477), - [anon_sym_enum] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3477), - [anon_sym_union] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_switch] = ACTIONS(3477), - [anon_sym_case] = ACTIONS(3477), - [anon_sym_default] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_break] = ACTIONS(3477), - [anon_sym_continue] = ACTIONS(3477), - [anon_sym_goto] = ACTIONS(3477), - [anon_sym_not] = ACTIONS(3477), - [anon_sym_compl] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3475), - [anon_sym_PLUS_PLUS] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3477), - [anon_sym___alignof__] = ACTIONS(3477), - [anon_sym___alignof] = ACTIONS(3477), - [anon_sym__alignof] = ACTIONS(3477), - [anon_sym_alignof] = ACTIONS(3477), - [anon_sym__Alignof] = ACTIONS(3477), - [anon_sym_offsetof] = ACTIONS(3477), - [anon_sym__Generic] = ACTIONS(3477), - [anon_sym_asm] = ACTIONS(3477), - [anon_sym___asm__] = ACTIONS(3477), - [anon_sym___asm] = ACTIONS(3477), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_L_SQUOTE] = ACTIONS(3475), - [anon_sym_u_SQUOTE] = ACTIONS(3475), - [anon_sym_U_SQUOTE] = ACTIONS(3475), - [anon_sym_u8_SQUOTE] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_L_DQUOTE] = ACTIONS(3475), - [anon_sym_u_DQUOTE] = ACTIONS(3475), - [anon_sym_U_DQUOTE] = ACTIONS(3475), - [anon_sym_u8_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [anon_sym_NULL] = ACTIONS(3477), - [anon_sym_nullptr] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3477), - [anon_sym_decltype] = ACTIONS(3477), - [anon_sym_explicit] = ACTIONS(3477), - [anon_sym_typename] = ACTIONS(3477), - [anon_sym_export] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_import] = ACTIONS(3477), - [anon_sym_template] = ACTIONS(3477), - [anon_sym_operator] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_delete] = ACTIONS(3477), - [anon_sym_throw] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_static_assert] = ACTIONS(3477), - [anon_sym_concept] = ACTIONS(3477), - [anon_sym_co_return] = ACTIONS(3477), - [anon_sym_co_yield] = ACTIONS(3477), - [anon_sym_R_DQUOTE] = ACTIONS(3475), - [anon_sym_LR_DQUOTE] = ACTIONS(3475), - [anon_sym_uR_DQUOTE] = ACTIONS(3475), - [anon_sym_UR_DQUOTE] = ACTIONS(3475), - [anon_sym_u8R_DQUOTE] = ACTIONS(3475), - [anon_sym_co_await] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_requires] = ACTIONS(3477), - [sym_this] = ACTIONS(3477), - }, - [STATE(571)] = { - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_identifier] = ACTIONS(3254), - [aux_sym_preproc_include_token1] = ACTIONS(3254), - [aux_sym_preproc_def_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3254), - [sym_preproc_directive] = ACTIONS(3254), - [anon_sym_LPAREN2] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym___extension__] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_virtual] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym___attribute__] = ACTIONS(3254), - [anon_sym___attribute] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_COLON_COLON] = ACTIONS(3256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3256), - [anon_sym___declspec] = ACTIONS(3254), - [anon_sym___based] = ACTIONS(3254), - [anon_sym___cdecl] = ACTIONS(3254), - [anon_sym___clrcall] = ACTIONS(3254), - [anon_sym___stdcall] = ACTIONS(3254), - [anon_sym___fastcall] = ACTIONS(3254), - [anon_sym___thiscall] = ACTIONS(3254), - [anon_sym___vectorcall] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_signed] = ACTIONS(3254), - [anon_sym_unsigned] = ACTIONS(3254), - [anon_sym_long] = ACTIONS(3254), - [anon_sym_short] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_register] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym___inline] = ACTIONS(3254), - [anon_sym___inline__] = ACTIONS(3254), - [anon_sym___forceinline] = ACTIONS(3254), - [anon_sym_thread_local] = ACTIONS(3254), - [anon_sym___thread] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_constexpr] = ACTIONS(3254), - [anon_sym_volatile] = ACTIONS(3254), - [anon_sym_restrict] = ACTIONS(3254), - [anon_sym___restrict__] = ACTIONS(3254), - [anon_sym__Atomic] = ACTIONS(3254), - [anon_sym__Noreturn] = ACTIONS(3254), - [anon_sym_noreturn] = ACTIONS(3254), - [anon_sym__Nonnull] = ACTIONS(3254), - [anon_sym_mutable] = ACTIONS(3254), - [anon_sym_constinit] = ACTIONS(3254), - [anon_sym_consteval] = ACTIONS(3254), - [anon_sym_alignas] = ACTIONS(3254), - [anon_sym__Alignas] = ACTIONS(3254), - [sym_primitive_type] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym_not] = ACTIONS(3254), - [anon_sym_compl] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_sizeof] = ACTIONS(3254), - [anon_sym___alignof__] = ACTIONS(3254), - [anon_sym___alignof] = ACTIONS(3254), - [anon_sym__alignof] = ACTIONS(3254), - [anon_sym_alignof] = ACTIONS(3254), - [anon_sym__Alignof] = ACTIONS(3254), - [anon_sym_offsetof] = ACTIONS(3254), - [anon_sym__Generic] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym___asm__] = ACTIONS(3254), - [anon_sym___asm] = ACTIONS(3254), - [sym_number_literal] = ACTIONS(3256), - [anon_sym_L_SQUOTE] = ACTIONS(3256), - [anon_sym_u_SQUOTE] = ACTIONS(3256), - [anon_sym_U_SQUOTE] = ACTIONS(3256), - [anon_sym_u8_SQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_L_DQUOTE] = ACTIONS(3256), - [anon_sym_u_DQUOTE] = ACTIONS(3256), - [anon_sym_U_DQUOTE] = ACTIONS(3256), - [anon_sym_u8_DQUOTE] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [anon_sym_NULL] = ACTIONS(3254), - [anon_sym_nullptr] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3254), - [anon_sym_decltype] = ACTIONS(3254), - [anon_sym_explicit] = ACTIONS(3254), - [anon_sym_typename] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_template] = ACTIONS(3254), - [anon_sym_operator] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_static_assert] = ACTIONS(3254), - [anon_sym_concept] = ACTIONS(3254), - [anon_sym_co_return] = ACTIONS(3254), - [anon_sym_co_yield] = ACTIONS(3254), - [anon_sym_R_DQUOTE] = ACTIONS(3256), - [anon_sym_LR_DQUOTE] = ACTIONS(3256), - [anon_sym_uR_DQUOTE] = ACTIONS(3256), - [anon_sym_UR_DQUOTE] = ACTIONS(3256), - [anon_sym_u8R_DQUOTE] = ACTIONS(3256), - [anon_sym_co_await] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_requires] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - }, - [STATE(572)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(573)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(574)] = { - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_include_token1] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym___cdecl] = ACTIONS(3238), - [anon_sym___clrcall] = ACTIONS(3238), - [anon_sym___stdcall] = ACTIONS(3238), - [anon_sym___fastcall] = ACTIONS(3238), - [anon_sym___thiscall] = ACTIONS(3238), - [anon_sym___vectorcall] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_goto] = ACTIONS(3238), - [anon_sym_not] = ACTIONS(3238), - [anon_sym_compl] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym___alignof__] = ACTIONS(3238), - [anon_sym___alignof] = ACTIONS(3238), - [anon_sym__alignof] = ACTIONS(3238), - [anon_sym_alignof] = ACTIONS(3238), - [anon_sym__Alignof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [anon_sym__Generic] = ACTIONS(3238), - [anon_sym_asm] = ACTIONS(3238), - [anon_sym___asm__] = ACTIONS(3238), - [anon_sym___asm] = ACTIONS(3238), - [sym_number_literal] = ACTIONS(3240), - [anon_sym_L_SQUOTE] = ACTIONS(3240), - [anon_sym_u_SQUOTE] = ACTIONS(3240), - [anon_sym_U_SQUOTE] = ACTIONS(3240), - [anon_sym_u8_SQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_L_DQUOTE] = ACTIONS(3240), - [anon_sym_u_DQUOTE] = ACTIONS(3240), - [anon_sym_U_DQUOTE] = ACTIONS(3240), - [anon_sym_u8_DQUOTE] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [anon_sym_NULL] = ACTIONS(3238), - [anon_sym_nullptr] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), - [anon_sym_concept] = ACTIONS(3238), - [anon_sym_co_return] = ACTIONS(3238), - [anon_sym_co_yield] = ACTIONS(3238), - [anon_sym_R_DQUOTE] = ACTIONS(3240), - [anon_sym_LR_DQUOTE] = ACTIONS(3240), - [anon_sym_uR_DQUOTE] = ACTIONS(3240), - [anon_sym_UR_DQUOTE] = ACTIONS(3240), - [anon_sym_u8R_DQUOTE] = ACTIONS(3240), - [anon_sym_co_await] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_requires] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - }, - [STATE(575)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(576)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(577)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(578)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(579)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token2] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [STATE(580)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(581)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(582)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - }, - [STATE(583)] = { - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3481), - [aux_sym_preproc_include_token1] = ACTIONS(3481), - [aux_sym_preproc_def_token1] = ACTIONS(3481), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3481), - [sym_preproc_directive] = ACTIONS(3481), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3479), - [anon_sym_AMP_AMP] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym___extension__] = ACTIONS(3481), - [anon_sym_typedef] = ACTIONS(3481), - [anon_sym_virtual] = ACTIONS(3481), - [anon_sym_extern] = ACTIONS(3481), - [anon_sym___attribute__] = ACTIONS(3481), - [anon_sym___attribute] = ACTIONS(3481), - [anon_sym_using] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3479), - [anon_sym___declspec] = ACTIONS(3481), - [anon_sym___based] = ACTIONS(3481), - [anon_sym___cdecl] = ACTIONS(3481), - [anon_sym___clrcall] = ACTIONS(3481), - [anon_sym___stdcall] = ACTIONS(3481), - [anon_sym___fastcall] = ACTIONS(3481), - [anon_sym___thiscall] = ACTIONS(3481), - [anon_sym___vectorcall] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_signed] = ACTIONS(3481), - [anon_sym_unsigned] = ACTIONS(3481), - [anon_sym_long] = ACTIONS(3481), - [anon_sym_short] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_static] = ACTIONS(3481), - [anon_sym_register] = ACTIONS(3481), - [anon_sym_inline] = ACTIONS(3481), - [anon_sym___inline] = ACTIONS(3481), - [anon_sym___inline__] = ACTIONS(3481), - [anon_sym___forceinline] = ACTIONS(3481), - [anon_sym_thread_local] = ACTIONS(3481), - [anon_sym___thread] = ACTIONS(3481), - [anon_sym_const] = ACTIONS(3481), - [anon_sym_constexpr] = ACTIONS(3481), - [anon_sym_volatile] = ACTIONS(3481), - [anon_sym_restrict] = ACTIONS(3481), - [anon_sym___restrict__] = ACTIONS(3481), - [anon_sym__Atomic] = ACTIONS(3481), - [anon_sym__Noreturn] = ACTIONS(3481), - [anon_sym_noreturn] = ACTIONS(3481), - [anon_sym__Nonnull] = ACTIONS(3481), - [anon_sym_mutable] = ACTIONS(3481), - [anon_sym_constinit] = ACTIONS(3481), - [anon_sym_consteval] = ACTIONS(3481), - [anon_sym_alignas] = ACTIONS(3481), - [anon_sym__Alignas] = ACTIONS(3481), - [sym_primitive_type] = ACTIONS(3481), - [anon_sym_enum] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_struct] = ACTIONS(3481), - [anon_sym_union] = ACTIONS(3481), - [anon_sym_if] = ACTIONS(3481), - [anon_sym_switch] = ACTIONS(3481), - [anon_sym_case] = ACTIONS(3481), - [anon_sym_default] = ACTIONS(3481), - [anon_sym_while] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_for] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3481), - [anon_sym_break] = ACTIONS(3481), - [anon_sym_continue] = ACTIONS(3481), - [anon_sym_goto] = ACTIONS(3481), - [anon_sym_not] = ACTIONS(3481), - [anon_sym_compl] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3479), - [anon_sym_PLUS_PLUS] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3481), - [anon_sym___alignof__] = ACTIONS(3481), - [anon_sym___alignof] = ACTIONS(3481), - [anon_sym__alignof] = ACTIONS(3481), - [anon_sym_alignof] = ACTIONS(3481), - [anon_sym__Alignof] = ACTIONS(3481), - [anon_sym_offsetof] = ACTIONS(3481), - [anon_sym__Generic] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(3481), - [anon_sym___asm__] = ACTIONS(3481), - [anon_sym___asm] = ACTIONS(3481), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_L_SQUOTE] = ACTIONS(3479), - [anon_sym_u_SQUOTE] = ACTIONS(3479), - [anon_sym_U_SQUOTE] = ACTIONS(3479), - [anon_sym_u8_SQUOTE] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_L_DQUOTE] = ACTIONS(3479), - [anon_sym_u_DQUOTE] = ACTIONS(3479), - [anon_sym_U_DQUOTE] = ACTIONS(3479), - [anon_sym_u8_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [anon_sym_NULL] = ACTIONS(3481), - [anon_sym_nullptr] = ACTIONS(3481), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3481), - [anon_sym_decltype] = ACTIONS(3481), - [anon_sym_explicit] = ACTIONS(3481), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_export] = ACTIONS(3481), - [anon_sym_module] = ACTIONS(3481), - [anon_sym_import] = ACTIONS(3481), - [anon_sym_template] = ACTIONS(3481), - [anon_sym_operator] = ACTIONS(3481), - [anon_sym_try] = ACTIONS(3481), - [anon_sym_delete] = ACTIONS(3481), - [anon_sym_throw] = ACTIONS(3481), - [anon_sym_namespace] = ACTIONS(3481), - [anon_sym_static_assert] = ACTIONS(3481), - [anon_sym_concept] = ACTIONS(3481), - [anon_sym_co_return] = ACTIONS(3481), - [anon_sym_co_yield] = ACTIONS(3481), - [anon_sym_R_DQUOTE] = ACTIONS(3479), - [anon_sym_LR_DQUOTE] = ACTIONS(3479), - [anon_sym_uR_DQUOTE] = ACTIONS(3479), - [anon_sym_UR_DQUOTE] = ACTIONS(3479), - [anon_sym_u8R_DQUOTE] = ACTIONS(3479), - [anon_sym_co_await] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_requires] = ACTIONS(3481), - [sym_this] = ACTIONS(3481), - }, - [STATE(584)] = { - [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_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym___attribute] = ACTIONS(3207), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_export] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_import] = 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_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), - }, - [STATE(585)] = { - [sym_identifier] = ACTIONS(2731), - [aux_sym_preproc_include_token1] = ACTIONS(2731), - [aux_sym_preproc_def_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token1] = ACTIONS(2731), - [aux_sym_preproc_if_token2] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), - [sym_preproc_directive] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP_AMP] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_using] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym___based] = ACTIONS(2731), - [anon_sym___cdecl] = ACTIONS(2731), - [anon_sym___clrcall] = ACTIONS(2731), - [anon_sym___stdcall] = ACTIONS(2731), - [anon_sym___fastcall] = ACTIONS(2731), - [anon_sym___thiscall] = ACTIONS(2731), - [anon_sym___vectorcall] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_case] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_explicit] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_operator] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_namespace] = ACTIONS(2731), - [anon_sym_static_assert] = ACTIONS(2731), - [anon_sym_concept] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), - }, - [STATE(586)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(587)] = { - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_include_token1] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym___cdecl] = ACTIONS(3260), - [anon_sym___clrcall] = ACTIONS(3260), - [anon_sym___stdcall] = ACTIONS(3260), - [anon_sym___fastcall] = ACTIONS(3260), - [anon_sym___thiscall] = ACTIONS(3260), - [anon_sym___vectorcall] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_goto] = ACTIONS(3260), - [anon_sym_not] = ACTIONS(3260), - [anon_sym_compl] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_sizeof] = ACTIONS(3260), - [anon_sym___alignof__] = ACTIONS(3260), - [anon_sym___alignof] = ACTIONS(3260), - [anon_sym__alignof] = ACTIONS(3260), - [anon_sym_alignof] = ACTIONS(3260), - [anon_sym__Alignof] = ACTIONS(3260), - [anon_sym_offsetof] = ACTIONS(3260), - [anon_sym__Generic] = ACTIONS(3260), - [anon_sym_asm] = ACTIONS(3260), - [anon_sym___asm__] = ACTIONS(3260), - [anon_sym___asm] = ACTIONS(3260), - [sym_number_literal] = ACTIONS(3262), - [anon_sym_L_SQUOTE] = ACTIONS(3262), - [anon_sym_u_SQUOTE] = ACTIONS(3262), - [anon_sym_U_SQUOTE] = ACTIONS(3262), - [anon_sym_u8_SQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_L_DQUOTE] = ACTIONS(3262), - [anon_sym_u_DQUOTE] = ACTIONS(3262), - [anon_sym_U_DQUOTE] = ACTIONS(3262), - [anon_sym_u8_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [anon_sym_NULL] = ACTIONS(3260), - [anon_sym_nullptr] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), - [anon_sym_concept] = ACTIONS(3260), - [anon_sym_co_return] = ACTIONS(3260), - [anon_sym_co_yield] = ACTIONS(3260), - [anon_sym_R_DQUOTE] = ACTIONS(3262), - [anon_sym_LR_DQUOTE] = ACTIONS(3262), - [anon_sym_uR_DQUOTE] = ACTIONS(3262), - [anon_sym_UR_DQUOTE] = ACTIONS(3262), - [anon_sym_u8R_DQUOTE] = ACTIONS(3262), - [anon_sym_co_await] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_requires] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - }, - [STATE(588)] = { - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3485), - [aux_sym_preproc_include_token1] = ACTIONS(3485), - [aux_sym_preproc_def_token1] = ACTIONS(3485), - [aux_sym_preproc_if_token1] = ACTIONS(3485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3485), - [sym_preproc_directive] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3483), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym___extension__] = ACTIONS(3485), - [anon_sym_typedef] = ACTIONS(3485), - [anon_sym_virtual] = ACTIONS(3485), - [anon_sym_extern] = ACTIONS(3485), - [anon_sym___attribute__] = ACTIONS(3485), - [anon_sym___attribute] = ACTIONS(3485), - [anon_sym_using] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3483), - [anon_sym___declspec] = ACTIONS(3485), - [anon_sym___based] = ACTIONS(3485), - [anon_sym___cdecl] = ACTIONS(3485), - [anon_sym___clrcall] = ACTIONS(3485), - [anon_sym___stdcall] = ACTIONS(3485), - [anon_sym___fastcall] = ACTIONS(3485), - [anon_sym___thiscall] = ACTIONS(3485), - [anon_sym___vectorcall] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3483), - [anon_sym_signed] = ACTIONS(3485), - [anon_sym_unsigned] = ACTIONS(3485), - [anon_sym_long] = ACTIONS(3485), - [anon_sym_short] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3485), - [anon_sym_register] = ACTIONS(3485), - [anon_sym_inline] = ACTIONS(3485), - [anon_sym___inline] = ACTIONS(3485), - [anon_sym___inline__] = ACTIONS(3485), - [anon_sym___forceinline] = ACTIONS(3485), - [anon_sym_thread_local] = ACTIONS(3485), - [anon_sym___thread] = ACTIONS(3485), - [anon_sym_const] = ACTIONS(3485), - [anon_sym_constexpr] = ACTIONS(3485), - [anon_sym_volatile] = ACTIONS(3485), - [anon_sym_restrict] = ACTIONS(3485), - [anon_sym___restrict__] = ACTIONS(3485), - [anon_sym__Atomic] = ACTIONS(3485), - [anon_sym__Noreturn] = ACTIONS(3485), - [anon_sym_noreturn] = ACTIONS(3485), - [anon_sym__Nonnull] = ACTIONS(3485), - [anon_sym_mutable] = ACTIONS(3485), - [anon_sym_constinit] = ACTIONS(3485), - [anon_sym_consteval] = ACTIONS(3485), - [anon_sym_alignas] = ACTIONS(3485), - [anon_sym__Alignas] = ACTIONS(3485), - [sym_primitive_type] = ACTIONS(3485), - [anon_sym_enum] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_struct] = ACTIONS(3485), - [anon_sym_union] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_switch] = ACTIONS(3485), - [anon_sym_case] = ACTIONS(3485), - [anon_sym_default] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_break] = ACTIONS(3485), - [anon_sym_continue] = ACTIONS(3485), - [anon_sym_goto] = ACTIONS(3485), - [anon_sym_not] = ACTIONS(3485), - [anon_sym_compl] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3483), - [anon_sym_PLUS_PLUS] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3485), - [anon_sym___alignof__] = ACTIONS(3485), - [anon_sym___alignof] = ACTIONS(3485), - [anon_sym__alignof] = ACTIONS(3485), - [anon_sym_alignof] = ACTIONS(3485), - [anon_sym__Alignof] = ACTIONS(3485), - [anon_sym_offsetof] = ACTIONS(3485), - [anon_sym__Generic] = ACTIONS(3485), - [anon_sym_asm] = ACTIONS(3485), - [anon_sym___asm__] = ACTIONS(3485), - [anon_sym___asm] = ACTIONS(3485), - [sym_number_literal] = ACTIONS(3483), - [anon_sym_L_SQUOTE] = ACTIONS(3483), - [anon_sym_u_SQUOTE] = ACTIONS(3483), - [anon_sym_U_SQUOTE] = ACTIONS(3483), - [anon_sym_u8_SQUOTE] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_L_DQUOTE] = ACTIONS(3483), - [anon_sym_u_DQUOTE] = ACTIONS(3483), - [anon_sym_U_DQUOTE] = ACTIONS(3483), - [anon_sym_u8_DQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_true] = ACTIONS(3485), - [sym_false] = ACTIONS(3485), - [anon_sym_NULL] = ACTIONS(3485), - [anon_sym_nullptr] = ACTIONS(3485), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3485), - [anon_sym_decltype] = ACTIONS(3485), - [anon_sym_explicit] = ACTIONS(3485), - [anon_sym_typename] = ACTIONS(3485), - [anon_sym_export] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_import] = ACTIONS(3485), - [anon_sym_template] = ACTIONS(3485), - [anon_sym_operator] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_delete] = ACTIONS(3485), - [anon_sym_throw] = ACTIONS(3485), - [anon_sym_namespace] = ACTIONS(3485), - [anon_sym_static_assert] = ACTIONS(3485), - [anon_sym_concept] = ACTIONS(3485), - [anon_sym_co_return] = ACTIONS(3485), - [anon_sym_co_yield] = ACTIONS(3485), - [anon_sym_R_DQUOTE] = ACTIONS(3483), - [anon_sym_LR_DQUOTE] = ACTIONS(3483), - [anon_sym_uR_DQUOTE] = ACTIONS(3483), - [anon_sym_UR_DQUOTE] = ACTIONS(3483), - [anon_sym_u8R_DQUOTE] = ACTIONS(3483), - [anon_sym_co_await] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_requires] = ACTIONS(3485), - [sym_this] = ACTIONS(3485), - }, - [STATE(589)] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3242), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), - [sym_preproc_directive] = ACTIONS(3242), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_virtual] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym___attribute__] = ACTIONS(3242), - [anon_sym___attribute] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3242), - [anon_sym___based] = ACTIONS(3242), - [anon_sym___cdecl] = ACTIONS(3242), - [anon_sym___clrcall] = ACTIONS(3242), - [anon_sym___stdcall] = ACTIONS(3242), - [anon_sym___fastcall] = ACTIONS(3242), - [anon_sym___thiscall] = ACTIONS(3242), - [anon_sym___vectorcall] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3242), - [anon_sym_unsigned] = ACTIONS(3242), - [anon_sym_long] = ACTIONS(3242), - [anon_sym_short] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_register] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym___inline] = ACTIONS(3242), - [anon_sym___inline__] = ACTIONS(3242), - [anon_sym___forceinline] = ACTIONS(3242), - [anon_sym_thread_local] = ACTIONS(3242), - [anon_sym___thread] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_constexpr] = ACTIONS(3242), - [anon_sym_volatile] = ACTIONS(3242), - [anon_sym_restrict] = ACTIONS(3242), - [anon_sym___restrict__] = ACTIONS(3242), - [anon_sym__Atomic] = ACTIONS(3242), - [anon_sym__Noreturn] = ACTIONS(3242), - [anon_sym_noreturn] = ACTIONS(3242), - [anon_sym__Nonnull] = ACTIONS(3242), - [anon_sym_mutable] = ACTIONS(3242), - [anon_sym_constinit] = ACTIONS(3242), - [anon_sym_consteval] = ACTIONS(3242), - [anon_sym_alignas] = ACTIONS(3242), - [anon_sym__Alignas] = ACTIONS(3242), - [sym_primitive_type] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3242), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_goto] = ACTIONS(3242), - [anon_sym_not] = ACTIONS(3242), - [anon_sym_compl] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3242), - [anon_sym___alignof__] = ACTIONS(3242), - [anon_sym___alignof] = ACTIONS(3242), - [anon_sym__alignof] = ACTIONS(3242), - [anon_sym_alignof] = ACTIONS(3242), - [anon_sym__Alignof] = ACTIONS(3242), - [anon_sym_offsetof] = ACTIONS(3242), - [anon_sym__Generic] = ACTIONS(3242), - [anon_sym_asm] = ACTIONS(3242), - [anon_sym___asm__] = ACTIONS(3242), - [anon_sym___asm] = ACTIONS(3242), - [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(3242), - [sym_false] = ACTIONS(3242), - [anon_sym_NULL] = ACTIONS(3242), - [anon_sym_nullptr] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3242), - [anon_sym_decltype] = ACTIONS(3242), - [anon_sym_explicit] = ACTIONS(3242), - [anon_sym_typename] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_template] = ACTIONS(3242), - [anon_sym_operator] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_static_assert] = ACTIONS(3242), - [anon_sym_concept] = ACTIONS(3242), - [anon_sym_co_return] = ACTIONS(3242), - [anon_sym_co_yield] = ACTIONS(3242), - [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(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_requires] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - }, - [STATE(590)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), - }, - [STATE(591)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym___try] = ACTIONS(2649), - [anon_sym___leave] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [anon_sym___alignof__] = ACTIONS(2649), - [anon_sym___alignof] = ACTIONS(2649), - [anon_sym__alignof] = ACTIONS(2649), - [anon_sym_alignof] = ACTIONS(2649), - [anon_sym__Alignof] = ACTIONS(2649), - [anon_sym_offsetof] = ACTIONS(2649), - [anon_sym__Generic] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym___asm__] = ACTIONS(2649), - [anon_sym___asm] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [anon_sym_nullptr] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - }, - [STATE(592)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - }, - [STATE(593)] = { - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3489), - [aux_sym_preproc_include_token1] = ACTIONS(3489), - [aux_sym_preproc_def_token1] = ACTIONS(3489), - [aux_sym_preproc_if_token1] = ACTIONS(3489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3489), - [sym_preproc_directive] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_BANG] = ACTIONS(3487), - [anon_sym_TILDE] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3487), - [anon_sym_AMP_AMP] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym___extension__] = ACTIONS(3489), - [anon_sym_typedef] = ACTIONS(3489), - [anon_sym_virtual] = ACTIONS(3489), - [anon_sym_extern] = ACTIONS(3489), - [anon_sym___attribute__] = ACTIONS(3489), - [anon_sym___attribute] = ACTIONS(3489), - [anon_sym_using] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3487), - [anon_sym___declspec] = ACTIONS(3489), - [anon_sym___based] = ACTIONS(3489), - [anon_sym___cdecl] = ACTIONS(3489), - [anon_sym___clrcall] = ACTIONS(3489), - [anon_sym___stdcall] = ACTIONS(3489), - [anon_sym___fastcall] = ACTIONS(3489), - [anon_sym___thiscall] = ACTIONS(3489), - [anon_sym___vectorcall] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3487), - [anon_sym_signed] = ACTIONS(3489), - [anon_sym_unsigned] = ACTIONS(3489), - [anon_sym_long] = ACTIONS(3489), - [anon_sym_short] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3489), - [anon_sym_register] = ACTIONS(3489), - [anon_sym_inline] = ACTIONS(3489), - [anon_sym___inline] = ACTIONS(3489), - [anon_sym___inline__] = ACTIONS(3489), - [anon_sym___forceinline] = ACTIONS(3489), - [anon_sym_thread_local] = ACTIONS(3489), - [anon_sym___thread] = ACTIONS(3489), - [anon_sym_const] = ACTIONS(3489), - [anon_sym_constexpr] = ACTIONS(3489), - [anon_sym_volatile] = ACTIONS(3489), - [anon_sym_restrict] = ACTIONS(3489), - [anon_sym___restrict__] = ACTIONS(3489), - [anon_sym__Atomic] = ACTIONS(3489), - [anon_sym__Noreturn] = ACTIONS(3489), - [anon_sym_noreturn] = ACTIONS(3489), - [anon_sym__Nonnull] = ACTIONS(3489), - [anon_sym_mutable] = ACTIONS(3489), - [anon_sym_constinit] = ACTIONS(3489), - [anon_sym_consteval] = ACTIONS(3489), - [anon_sym_alignas] = ACTIONS(3489), - [anon_sym__Alignas] = ACTIONS(3489), - [sym_primitive_type] = ACTIONS(3489), - [anon_sym_enum] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_struct] = ACTIONS(3489), - [anon_sym_union] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_switch] = ACTIONS(3489), - [anon_sym_case] = ACTIONS(3489), - [anon_sym_default] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_break] = ACTIONS(3489), - [anon_sym_continue] = ACTIONS(3489), - [anon_sym_goto] = ACTIONS(3489), - [anon_sym_not] = ACTIONS(3489), - [anon_sym_compl] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3487), - [anon_sym_PLUS_PLUS] = ACTIONS(3487), - [anon_sym_sizeof] = ACTIONS(3489), - [anon_sym___alignof__] = ACTIONS(3489), - [anon_sym___alignof] = ACTIONS(3489), - [anon_sym__alignof] = ACTIONS(3489), - [anon_sym_alignof] = ACTIONS(3489), - [anon_sym__Alignof] = ACTIONS(3489), - [anon_sym_offsetof] = ACTIONS(3489), - [anon_sym__Generic] = ACTIONS(3489), - [anon_sym_asm] = ACTIONS(3489), - [anon_sym___asm__] = ACTIONS(3489), - [anon_sym___asm] = ACTIONS(3489), - [sym_number_literal] = ACTIONS(3487), - [anon_sym_L_SQUOTE] = ACTIONS(3487), - [anon_sym_u_SQUOTE] = ACTIONS(3487), - [anon_sym_U_SQUOTE] = ACTIONS(3487), - [anon_sym_u8_SQUOTE] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_L_DQUOTE] = ACTIONS(3487), - [anon_sym_u_DQUOTE] = ACTIONS(3487), - [anon_sym_U_DQUOTE] = ACTIONS(3487), - [anon_sym_u8_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_true] = ACTIONS(3489), - [sym_false] = ACTIONS(3489), - [anon_sym_NULL] = ACTIONS(3489), - [anon_sym_nullptr] = ACTIONS(3489), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3489), - [anon_sym_decltype] = ACTIONS(3489), - [anon_sym_explicit] = ACTIONS(3489), - [anon_sym_typename] = ACTIONS(3489), - [anon_sym_export] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_import] = ACTIONS(3489), - [anon_sym_template] = ACTIONS(3489), - [anon_sym_operator] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_delete] = ACTIONS(3489), - [anon_sym_throw] = ACTIONS(3489), - [anon_sym_namespace] = ACTIONS(3489), - [anon_sym_static_assert] = ACTIONS(3489), - [anon_sym_concept] = ACTIONS(3489), - [anon_sym_co_return] = ACTIONS(3489), - [anon_sym_co_yield] = ACTIONS(3489), - [anon_sym_R_DQUOTE] = ACTIONS(3487), - [anon_sym_LR_DQUOTE] = ACTIONS(3487), - [anon_sym_uR_DQUOTE] = ACTIONS(3487), - [anon_sym_UR_DQUOTE] = ACTIONS(3487), - [anon_sym_u8R_DQUOTE] = ACTIONS(3487), - [anon_sym_co_await] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_requires] = ACTIONS(3489), - [sym_this] = ACTIONS(3489), - }, - [STATE(594)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token2] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), - }, - [STATE(595)] = { - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3493), - [aux_sym_preproc_include_token1] = ACTIONS(3493), - [aux_sym_preproc_def_token1] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3493), - [sym_preproc_directive] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_TILDE] = ACTIONS(3491), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3491), - [anon_sym_AMP_AMP] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3491), - [anon_sym___extension__] = ACTIONS(3493), - [anon_sym_typedef] = ACTIONS(3493), - [anon_sym_virtual] = ACTIONS(3493), - [anon_sym_extern] = ACTIONS(3493), - [anon_sym___attribute__] = ACTIONS(3493), - [anon_sym___attribute] = ACTIONS(3493), - [anon_sym_using] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3491), - [anon_sym___declspec] = ACTIONS(3493), - [anon_sym___based] = ACTIONS(3493), - [anon_sym___cdecl] = ACTIONS(3493), - [anon_sym___clrcall] = ACTIONS(3493), - [anon_sym___stdcall] = ACTIONS(3493), - [anon_sym___fastcall] = ACTIONS(3493), - [anon_sym___thiscall] = ACTIONS(3493), - [anon_sym___vectorcall] = ACTIONS(3493), - [anon_sym_LBRACE] = ACTIONS(3491), - [anon_sym_signed] = ACTIONS(3493), - [anon_sym_unsigned] = ACTIONS(3493), - [anon_sym_long] = ACTIONS(3493), - [anon_sym_short] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3493), - [anon_sym_register] = ACTIONS(3493), - [anon_sym_inline] = ACTIONS(3493), - [anon_sym___inline] = ACTIONS(3493), - [anon_sym___inline__] = ACTIONS(3493), - [anon_sym___forceinline] = ACTIONS(3493), - [anon_sym_thread_local] = ACTIONS(3493), - [anon_sym___thread] = ACTIONS(3493), - [anon_sym_const] = ACTIONS(3493), - [anon_sym_constexpr] = ACTIONS(3493), - [anon_sym_volatile] = ACTIONS(3493), - [anon_sym_restrict] = ACTIONS(3493), - [anon_sym___restrict__] = ACTIONS(3493), - [anon_sym__Atomic] = ACTIONS(3493), - [anon_sym__Noreturn] = ACTIONS(3493), - [anon_sym_noreturn] = ACTIONS(3493), - [anon_sym__Nonnull] = ACTIONS(3493), - [anon_sym_mutable] = ACTIONS(3493), - [anon_sym_constinit] = ACTIONS(3493), - [anon_sym_consteval] = ACTIONS(3493), - [anon_sym_alignas] = ACTIONS(3493), - [anon_sym__Alignas] = ACTIONS(3493), - [sym_primitive_type] = ACTIONS(3493), - [anon_sym_enum] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_struct] = ACTIONS(3493), - [anon_sym_union] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_switch] = ACTIONS(3493), - [anon_sym_case] = ACTIONS(3493), - [anon_sym_default] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_break] = ACTIONS(3493), - [anon_sym_continue] = ACTIONS(3493), - [anon_sym_goto] = ACTIONS(3493), - [anon_sym_not] = ACTIONS(3493), - [anon_sym_compl] = ACTIONS(3493), - [anon_sym_DASH_DASH] = ACTIONS(3491), - [anon_sym_PLUS_PLUS] = ACTIONS(3491), - [anon_sym_sizeof] = ACTIONS(3493), - [anon_sym___alignof__] = ACTIONS(3493), - [anon_sym___alignof] = ACTIONS(3493), - [anon_sym__alignof] = ACTIONS(3493), - [anon_sym_alignof] = ACTIONS(3493), - [anon_sym__Alignof] = ACTIONS(3493), - [anon_sym_offsetof] = ACTIONS(3493), - [anon_sym__Generic] = ACTIONS(3493), - [anon_sym_asm] = ACTIONS(3493), - [anon_sym___asm__] = ACTIONS(3493), - [anon_sym___asm] = ACTIONS(3493), - [sym_number_literal] = ACTIONS(3491), - [anon_sym_L_SQUOTE] = ACTIONS(3491), - [anon_sym_u_SQUOTE] = ACTIONS(3491), - [anon_sym_U_SQUOTE] = ACTIONS(3491), - [anon_sym_u8_SQUOTE] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_L_DQUOTE] = ACTIONS(3491), - [anon_sym_u_DQUOTE] = ACTIONS(3491), - [anon_sym_U_DQUOTE] = ACTIONS(3491), - [anon_sym_u8_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_true] = ACTIONS(3493), - [sym_false] = ACTIONS(3493), - [anon_sym_NULL] = ACTIONS(3493), - [anon_sym_nullptr] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3493), - [anon_sym_decltype] = ACTIONS(3493), - [anon_sym_explicit] = ACTIONS(3493), - [anon_sym_typename] = ACTIONS(3493), - [anon_sym_export] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_import] = ACTIONS(3493), - [anon_sym_template] = ACTIONS(3493), - [anon_sym_operator] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_delete] = ACTIONS(3493), - [anon_sym_throw] = ACTIONS(3493), - [anon_sym_namespace] = ACTIONS(3493), - [anon_sym_static_assert] = ACTIONS(3493), - [anon_sym_concept] = ACTIONS(3493), - [anon_sym_co_return] = ACTIONS(3493), - [anon_sym_co_yield] = ACTIONS(3493), - [anon_sym_R_DQUOTE] = ACTIONS(3491), - [anon_sym_LR_DQUOTE] = ACTIONS(3491), - [anon_sym_uR_DQUOTE] = ACTIONS(3491), - [anon_sym_UR_DQUOTE] = ACTIONS(3491), - [anon_sym_u8R_DQUOTE] = ACTIONS(3491), - [anon_sym_co_await] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_requires] = ACTIONS(3493), - [sym_this] = ACTIONS(3493), - }, - [STATE(596)] = { - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3497), - [aux_sym_preproc_include_token1] = ACTIONS(3497), - [aux_sym_preproc_def_token1] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3497), - [sym_preproc_directive] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_STAR] = ACTIONS(3495), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym___extension__] = ACTIONS(3497), - [anon_sym_typedef] = ACTIONS(3497), - [anon_sym_virtual] = ACTIONS(3497), - [anon_sym_extern] = ACTIONS(3497), - [anon_sym___attribute__] = ACTIONS(3497), - [anon_sym___attribute] = ACTIONS(3497), - [anon_sym_using] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3495), - [anon_sym___declspec] = ACTIONS(3497), - [anon_sym___based] = ACTIONS(3497), - [anon_sym___cdecl] = ACTIONS(3497), - [anon_sym___clrcall] = ACTIONS(3497), - [anon_sym___stdcall] = ACTIONS(3497), - [anon_sym___fastcall] = ACTIONS(3497), - [anon_sym___thiscall] = ACTIONS(3497), - [anon_sym___vectorcall] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3495), - [anon_sym_signed] = ACTIONS(3497), - [anon_sym_unsigned] = ACTIONS(3497), - [anon_sym_long] = ACTIONS(3497), - [anon_sym_short] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_register] = ACTIONS(3497), - [anon_sym_inline] = ACTIONS(3497), - [anon_sym___inline] = ACTIONS(3497), - [anon_sym___inline__] = ACTIONS(3497), - [anon_sym___forceinline] = ACTIONS(3497), - [anon_sym_thread_local] = ACTIONS(3497), - [anon_sym___thread] = ACTIONS(3497), - [anon_sym_const] = ACTIONS(3497), - [anon_sym_constexpr] = ACTIONS(3497), - [anon_sym_volatile] = ACTIONS(3497), - [anon_sym_restrict] = ACTIONS(3497), - [anon_sym___restrict__] = ACTIONS(3497), - [anon_sym__Atomic] = ACTIONS(3497), - [anon_sym__Noreturn] = ACTIONS(3497), - [anon_sym_noreturn] = ACTIONS(3497), - [anon_sym__Nonnull] = ACTIONS(3497), - [anon_sym_mutable] = ACTIONS(3497), - [anon_sym_constinit] = ACTIONS(3497), - [anon_sym_consteval] = ACTIONS(3497), - [anon_sym_alignas] = ACTIONS(3497), - [anon_sym__Alignas] = ACTIONS(3497), - [sym_primitive_type] = ACTIONS(3497), - [anon_sym_enum] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3497), - [anon_sym_union] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_switch] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_default] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_break] = ACTIONS(3497), - [anon_sym_continue] = ACTIONS(3497), - [anon_sym_goto] = ACTIONS(3497), - [anon_sym_not] = ACTIONS(3497), - [anon_sym_compl] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3495), - [anon_sym_sizeof] = ACTIONS(3497), - [anon_sym___alignof__] = ACTIONS(3497), - [anon_sym___alignof] = ACTIONS(3497), - [anon_sym__alignof] = ACTIONS(3497), - [anon_sym_alignof] = ACTIONS(3497), - [anon_sym__Alignof] = ACTIONS(3497), - [anon_sym_offsetof] = ACTIONS(3497), - [anon_sym__Generic] = ACTIONS(3497), - [anon_sym_asm] = ACTIONS(3497), - [anon_sym___asm__] = ACTIONS(3497), - [anon_sym___asm] = ACTIONS(3497), - [sym_number_literal] = ACTIONS(3495), - [anon_sym_L_SQUOTE] = ACTIONS(3495), - [anon_sym_u_SQUOTE] = ACTIONS(3495), - [anon_sym_U_SQUOTE] = ACTIONS(3495), - [anon_sym_u8_SQUOTE] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_L_DQUOTE] = ACTIONS(3495), - [anon_sym_u_DQUOTE] = ACTIONS(3495), - [anon_sym_U_DQUOTE] = ACTIONS(3495), - [anon_sym_u8_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_true] = ACTIONS(3497), - [sym_false] = ACTIONS(3497), - [anon_sym_NULL] = ACTIONS(3497), - [anon_sym_nullptr] = ACTIONS(3497), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3497), - [anon_sym_decltype] = ACTIONS(3497), - [anon_sym_explicit] = ACTIONS(3497), - [anon_sym_typename] = ACTIONS(3497), - [anon_sym_export] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_import] = ACTIONS(3497), - [anon_sym_template] = ACTIONS(3497), - [anon_sym_operator] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_delete] = ACTIONS(3497), - [anon_sym_throw] = ACTIONS(3497), - [anon_sym_namespace] = ACTIONS(3497), - [anon_sym_static_assert] = ACTIONS(3497), - [anon_sym_concept] = ACTIONS(3497), - [anon_sym_co_return] = ACTIONS(3497), - [anon_sym_co_yield] = ACTIONS(3497), - [anon_sym_R_DQUOTE] = ACTIONS(3495), - [anon_sym_LR_DQUOTE] = ACTIONS(3495), - [anon_sym_uR_DQUOTE] = ACTIONS(3495), - [anon_sym_UR_DQUOTE] = ACTIONS(3495), - [anon_sym_u8R_DQUOTE] = ACTIONS(3495), - [anon_sym_co_await] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_requires] = ACTIONS(3497), - [sym_this] = ACTIONS(3497), - }, - [STATE(597)] = { - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3127), - [aux_sym_preproc_include_token1] = ACTIONS(3127), - [aux_sym_preproc_def_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), - [sym_preproc_directive] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym___extension__] = ACTIONS(3127), - [anon_sym_typedef] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym___attribute__] = ACTIONS(3127), - [anon_sym___attribute] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), - [anon_sym___declspec] = ACTIONS(3127), - [anon_sym___based] = ACTIONS(3127), - [anon_sym___cdecl] = ACTIONS(3127), - [anon_sym___clrcall] = ACTIONS(3127), - [anon_sym___stdcall] = ACTIONS(3127), - [anon_sym___fastcall] = ACTIONS(3127), - [anon_sym___thiscall] = ACTIONS(3127), - [anon_sym___vectorcall] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_signed] = ACTIONS(3127), - [anon_sym_unsigned] = ACTIONS(3127), - [anon_sym_long] = ACTIONS(3127), - [anon_sym_short] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_register] = ACTIONS(3127), - [anon_sym_inline] = ACTIONS(3127), - [anon_sym___inline] = ACTIONS(3127), - [anon_sym___inline__] = ACTIONS(3127), - [anon_sym___forceinline] = ACTIONS(3127), - [anon_sym_thread_local] = ACTIONS(3127), - [anon_sym___thread] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_constexpr] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_restrict] = ACTIONS(3127), - [anon_sym___restrict__] = ACTIONS(3127), - [anon_sym__Atomic] = ACTIONS(3127), - [anon_sym__Noreturn] = ACTIONS(3127), - [anon_sym_noreturn] = ACTIONS(3127), - [anon_sym__Nonnull] = ACTIONS(3127), - [anon_sym_mutable] = ACTIONS(3127), - [anon_sym_constinit] = ACTIONS(3127), - [anon_sym_consteval] = ACTIONS(3127), - [anon_sym_alignas] = ACTIONS(3127), - [anon_sym__Alignas] = ACTIONS(3127), - [sym_primitive_type] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_compl] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym___alignof__] = ACTIONS(3127), - [anon_sym___alignof] = ACTIONS(3127), - [anon_sym__alignof] = ACTIONS(3127), - [anon_sym_alignof] = ACTIONS(3127), - [anon_sym__Alignof] = ACTIONS(3127), - [anon_sym_offsetof] = ACTIONS(3127), - [anon_sym__Generic] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym___asm__] = ACTIONS(3127), - [anon_sym___asm] = ACTIONS(3127), - [sym_number_literal] = ACTIONS(3129), - [anon_sym_L_SQUOTE] = ACTIONS(3129), - [anon_sym_u_SQUOTE] = ACTIONS(3129), - [anon_sym_U_SQUOTE] = ACTIONS(3129), - [anon_sym_u8_SQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_L_DQUOTE] = ACTIONS(3129), - [anon_sym_u_DQUOTE] = ACTIONS(3129), - [anon_sym_U_DQUOTE] = ACTIONS(3129), - [anon_sym_u8_DQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [anon_sym_NULL] = ACTIONS(3127), - [anon_sym_nullptr] = ACTIONS(3127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3127), - [anon_sym_decltype] = ACTIONS(3127), - [anon_sym_explicit] = ACTIONS(3127), - [anon_sym_typename] = ACTIONS(3127), - [anon_sym_export] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_template] = ACTIONS(3127), - [anon_sym_operator] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_delete] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_static_assert] = ACTIONS(3127), - [anon_sym_concept] = ACTIONS(3127), - [anon_sym_co_return] = ACTIONS(3127), - [anon_sym_co_yield] = ACTIONS(3127), - [anon_sym_R_DQUOTE] = ACTIONS(3129), - [anon_sym_LR_DQUOTE] = ACTIONS(3129), - [anon_sym_uR_DQUOTE] = ACTIONS(3129), - [anon_sym_UR_DQUOTE] = ACTIONS(3129), - [anon_sym_u8R_DQUOTE] = ACTIONS(3129), - [anon_sym_co_await] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_requires] = ACTIONS(3127), - [sym_this] = ACTIONS(3127), - }, - [STATE(598)] = { - [sym_identifier] = ACTIONS(2703), - [aux_sym_preproc_include_token1] = ACTIONS(2703), - [aux_sym_preproc_def_token1] = ACTIONS(2703), - [aux_sym_preproc_if_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2703), - [sym_preproc_directive] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP_AMP] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_using] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym___based] = ACTIONS(2703), - [anon_sym___cdecl] = ACTIONS(2703), - [anon_sym___clrcall] = ACTIONS(2703), - [anon_sym___stdcall] = ACTIONS(2703), - [anon_sym___fastcall] = ACTIONS(2703), - [anon_sym___thiscall] = ACTIONS(2703), - [anon_sym___vectorcall] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_case] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_explicit] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_operator] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_namespace] = ACTIONS(2703), - [anon_sym_static_assert] = ACTIONS(2703), - [anon_sym_concept] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), - }, - [STATE(599)] = { - [sym_identifier] = ACTIONS(2707), - [aux_sym_preproc_include_token1] = ACTIONS(2707), - [aux_sym_preproc_def_token1] = ACTIONS(2707), - [aux_sym_preproc_if_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2707), - [sym_preproc_directive] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP_AMP] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_using] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym___based] = ACTIONS(2707), - [anon_sym___cdecl] = ACTIONS(2707), - [anon_sym___clrcall] = ACTIONS(2707), - [anon_sym___stdcall] = ACTIONS(2707), - [anon_sym___fastcall] = ACTIONS(2707), - [anon_sym___thiscall] = ACTIONS(2707), - [anon_sym___vectorcall] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_explicit] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_operator] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_namespace] = ACTIONS(2707), - [anon_sym_static_assert] = ACTIONS(2707), - [anon_sym_concept] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), - }, - [STATE(600)] = { - [sym_identifier] = ACTIONS(2711), - [aux_sym_preproc_include_token1] = ACTIONS(2711), - [aux_sym_preproc_def_token1] = ACTIONS(2711), - [aux_sym_preproc_if_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2711), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2711), - [sym_preproc_directive] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP_AMP] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_using] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym___based] = ACTIONS(2711), - [anon_sym___cdecl] = ACTIONS(2711), - [anon_sym___clrcall] = ACTIONS(2711), - [anon_sym___stdcall] = ACTIONS(2711), - [anon_sym___fastcall] = ACTIONS(2711), - [anon_sym___thiscall] = ACTIONS(2711), - [anon_sym___vectorcall] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_explicit] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_operator] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_namespace] = ACTIONS(2711), - [anon_sym_static_assert] = ACTIONS(2711), - [anon_sym_concept] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), - }, - [STATE(601)] = { - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_include_token1] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym___cdecl] = ACTIONS(3217), - [anon_sym___clrcall] = ACTIONS(3217), - [anon_sym___stdcall] = ACTIONS(3217), - [anon_sym___fastcall] = ACTIONS(3217), - [anon_sym___thiscall] = ACTIONS(3217), - [anon_sym___vectorcall] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3217), - [anon_sym_compl] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym___alignof__] = ACTIONS(3217), - [anon_sym___alignof] = ACTIONS(3217), - [anon_sym__alignof] = ACTIONS(3217), - [anon_sym_alignof] = ACTIONS(3217), - [anon_sym__Alignof] = ACTIONS(3217), - [anon_sym_offsetof] = ACTIONS(3217), - [anon_sym__Generic] = ACTIONS(3217), - [anon_sym_asm] = ACTIONS(3217), - [anon_sym___asm__] = ACTIONS(3217), - [anon_sym___asm] = ACTIONS(3217), - [sym_number_literal] = ACTIONS(3219), - [anon_sym_L_SQUOTE] = ACTIONS(3219), - [anon_sym_u_SQUOTE] = ACTIONS(3219), - [anon_sym_U_SQUOTE] = ACTIONS(3219), - [anon_sym_u8_SQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_L_DQUOTE] = ACTIONS(3219), - [anon_sym_u_DQUOTE] = ACTIONS(3219), - [anon_sym_U_DQUOTE] = ACTIONS(3219), - [anon_sym_u8_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [anon_sym_NULL] = ACTIONS(3217), - [anon_sym_nullptr] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - [anon_sym_concept] = ACTIONS(3217), - [anon_sym_co_return] = ACTIONS(3217), - [anon_sym_co_yield] = ACTIONS(3217), - [anon_sym_R_DQUOTE] = ACTIONS(3219), - [anon_sym_LR_DQUOTE] = ACTIONS(3219), - [anon_sym_uR_DQUOTE] = ACTIONS(3219), - [anon_sym_UR_DQUOTE] = ACTIONS(3219), - [anon_sym_u8R_DQUOTE] = ACTIONS(3219), - [anon_sym_co_await] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_requires] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - }, - [STATE(602)] = { - [sym_identifier] = ACTIONS(2715), - [aux_sym_preproc_include_token1] = ACTIONS(2715), - [aux_sym_preproc_def_token1] = ACTIONS(2715), - [aux_sym_preproc_if_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2715), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2715), - [sym_preproc_directive] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP_AMP] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_using] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym___based] = ACTIONS(2715), - [anon_sym___cdecl] = ACTIONS(2715), - [anon_sym___clrcall] = ACTIONS(2715), - [anon_sym___stdcall] = ACTIONS(2715), - [anon_sym___fastcall] = ACTIONS(2715), - [anon_sym___thiscall] = ACTIONS(2715), - [anon_sym___vectorcall] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_explicit] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_operator] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_namespace] = ACTIONS(2715), - [anon_sym_static_assert] = ACTIONS(2715), - [anon_sym_concept] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), - }, - [STATE(603)] = { - [sym_identifier] = ACTIONS(2719), - [aux_sym_preproc_include_token1] = ACTIONS(2719), - [aux_sym_preproc_def_token1] = ACTIONS(2719), - [aux_sym_preproc_if_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2719), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2719), - [sym_preproc_directive] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP_AMP] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_using] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym___based] = ACTIONS(2719), - [anon_sym___cdecl] = ACTIONS(2719), - [anon_sym___clrcall] = ACTIONS(2719), - [anon_sym___stdcall] = ACTIONS(2719), - [anon_sym___fastcall] = ACTIONS(2719), - [anon_sym___thiscall] = ACTIONS(2719), - [anon_sym___vectorcall] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_case] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_explicit] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_operator] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_namespace] = ACTIONS(2719), - [anon_sym_static_assert] = ACTIONS(2719), - [anon_sym_concept] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), - }, - [STATE(604)] = { - [sym_identifier] = ACTIONS(2723), - [aux_sym_preproc_include_token1] = ACTIONS(2723), - [aux_sym_preproc_def_token1] = ACTIONS(2723), - [aux_sym_preproc_if_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2723), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2723), - [sym_preproc_directive] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP_AMP] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_using] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym___based] = ACTIONS(2723), - [anon_sym___cdecl] = ACTIONS(2723), - [anon_sym___clrcall] = ACTIONS(2723), - [anon_sym___stdcall] = ACTIONS(2723), - [anon_sym___fastcall] = ACTIONS(2723), - [anon_sym___thiscall] = ACTIONS(2723), - [anon_sym___vectorcall] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_case] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_explicit] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_operator] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_namespace] = ACTIONS(2723), - [anon_sym_static_assert] = ACTIONS(2723), - [anon_sym_concept] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), - }, - [STATE(605)] = { - [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_SEMI] = ACTIONS(3268), - [anon_sym___extension__] = ACTIONS(3266), - [anon_sym_typedef] = ACTIONS(3266), - [anon_sym_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_module] = ACTIONS(3266), - [anon_sym_import] = 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_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), - }, - [STATE(606)] = { - [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_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_import] = 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_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), - }, - [STATE(607)] = { - [ts_builtin_sym_end] = ACTIONS(3234), - [sym_identifier] = ACTIONS(3232), - [aux_sym_preproc_include_token1] = ACTIONS(3232), - [aux_sym_preproc_def_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_AMP] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3232), - [anon_sym_typedef] = ACTIONS(3232), - [anon_sym_virtual] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(3232), - [anon_sym___attribute__] = ACTIONS(3232), - [anon_sym___attribute] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3234), - [anon_sym___declspec] = ACTIONS(3232), - [anon_sym___based] = ACTIONS(3232), - [anon_sym___cdecl] = ACTIONS(3232), - [anon_sym___clrcall] = ACTIONS(3232), - [anon_sym___stdcall] = ACTIONS(3232), - [anon_sym___fastcall] = ACTIONS(3232), - [anon_sym___thiscall] = ACTIONS(3232), - [anon_sym___vectorcall] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_register] = ACTIONS(3232), - [anon_sym_inline] = ACTIONS(3232), - [anon_sym___inline] = ACTIONS(3232), - [anon_sym___inline__] = ACTIONS(3232), - [anon_sym___forceinline] = ACTIONS(3232), - [anon_sym_thread_local] = ACTIONS(3232), - [anon_sym___thread] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_constexpr] = ACTIONS(3232), - [anon_sym_volatile] = ACTIONS(3232), - [anon_sym_restrict] = ACTIONS(3232), - [anon_sym___restrict__] = ACTIONS(3232), - [anon_sym__Atomic] = ACTIONS(3232), - [anon_sym__Noreturn] = ACTIONS(3232), - [anon_sym_noreturn] = ACTIONS(3232), - [anon_sym__Nonnull] = ACTIONS(3232), - [anon_sym_mutable] = ACTIONS(3232), - [anon_sym_constinit] = ACTIONS(3232), - [anon_sym_consteval] = ACTIONS(3232), - [anon_sym_alignas] = ACTIONS(3232), - [anon_sym__Alignas] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3232), - [anon_sym_union] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_goto] = ACTIONS(3232), - [anon_sym_not] = ACTIONS(3232), - [anon_sym_compl] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_sizeof] = ACTIONS(3232), - [anon_sym___alignof__] = ACTIONS(3232), - [anon_sym___alignof] = ACTIONS(3232), - [anon_sym__alignof] = ACTIONS(3232), - [anon_sym_alignof] = ACTIONS(3232), - [anon_sym__Alignof] = ACTIONS(3232), - [anon_sym_offsetof] = ACTIONS(3232), - [anon_sym__Generic] = ACTIONS(3232), - [anon_sym_asm] = ACTIONS(3232), - [anon_sym___asm__] = ACTIONS(3232), - [anon_sym___asm] = ACTIONS(3232), - [sym_number_literal] = ACTIONS(3234), - [anon_sym_L_SQUOTE] = ACTIONS(3234), - [anon_sym_u_SQUOTE] = ACTIONS(3234), - [anon_sym_U_SQUOTE] = ACTIONS(3234), - [anon_sym_u8_SQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_L_DQUOTE] = ACTIONS(3234), - [anon_sym_u_DQUOTE] = ACTIONS(3234), - [anon_sym_U_DQUOTE] = ACTIONS(3234), - [anon_sym_u8_DQUOTE] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3232), - [anon_sym_nullptr] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3232), - [anon_sym_decltype] = ACTIONS(3232), - [anon_sym_explicit] = ACTIONS(3232), - [anon_sym_typename] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_template] = ACTIONS(3232), - [anon_sym_operator] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_static_assert] = ACTIONS(3232), - [anon_sym_concept] = ACTIONS(3232), - [anon_sym_co_return] = ACTIONS(3232), - [anon_sym_co_yield] = ACTIONS(3232), - [anon_sym_R_DQUOTE] = ACTIONS(3234), - [anon_sym_LR_DQUOTE] = ACTIONS(3234), - [anon_sym_uR_DQUOTE] = ACTIONS(3234), - [anon_sym_UR_DQUOTE] = ACTIONS(3234), - [anon_sym_u8R_DQUOTE] = ACTIONS(3234), - [anon_sym_co_await] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_requires] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - }, - [STATE(608)] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_export] = ACTIONS(2947), - [anon_sym_module] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), - }, - [STATE(609)] = { - [sym_identifier] = ACTIONS(2743), - [aux_sym_preproc_include_token1] = ACTIONS(2743), - [aux_sym_preproc_def_token1] = ACTIONS(2743), - [aux_sym_preproc_if_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2743), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2743), - [sym_preproc_directive] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym___based] = ACTIONS(2743), - [anon_sym___cdecl] = ACTIONS(2743), - [anon_sym___clrcall] = ACTIONS(2743), - [anon_sym___stdcall] = ACTIONS(2743), - [anon_sym___fastcall] = ACTIONS(2743), - [anon_sym___thiscall] = ACTIONS(2743), - [anon_sym___vectorcall] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_explicit] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_operator] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_static_assert] = ACTIONS(2743), - [anon_sym_concept] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), - }, - [STATE(610)] = { - [ts_builtin_sym_end] = ACTIONS(3077), - [sym_identifier] = ACTIONS(3075), - [aux_sym_preproc_include_token1] = ACTIONS(3075), - [aux_sym_preproc_def_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), - [sym_preproc_directive] = ACTIONS(3075), - [anon_sym_LPAREN2] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym___extension__] = ACTIONS(3075), - [anon_sym_typedef] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_extern] = ACTIONS(3075), - [anon_sym___attribute__] = ACTIONS(3075), - [anon_sym___attribute] = ACTIONS(3075), - [anon_sym_using] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), - [anon_sym___declspec] = ACTIONS(3075), - [anon_sym___based] = ACTIONS(3075), - [anon_sym___cdecl] = ACTIONS(3075), - [anon_sym___clrcall] = ACTIONS(3075), - [anon_sym___stdcall] = ACTIONS(3075), - [anon_sym___fastcall] = ACTIONS(3075), - [anon_sym___thiscall] = ACTIONS(3075), - [anon_sym___vectorcall] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym___inline] = ACTIONS(3075), - [anon_sym___inline__] = ACTIONS(3075), - [anon_sym___forceinline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym___thread] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym___restrict__] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym__Noreturn] = ACTIONS(3075), - [anon_sym_noreturn] = ACTIONS(3075), - [anon_sym__Nonnull] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_alignas] = ACTIONS(3075), - [anon_sym__Alignas] = ACTIONS(3075), - [sym_primitive_type] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_switch] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_default] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_goto] = ACTIONS(3075), - [anon_sym_not] = ACTIONS(3075), - [anon_sym_compl] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_sizeof] = ACTIONS(3075), - [anon_sym___alignof__] = ACTIONS(3075), - [anon_sym___alignof] = ACTIONS(3075), - [anon_sym__alignof] = ACTIONS(3075), - [anon_sym_alignof] = ACTIONS(3075), - [anon_sym__Alignof] = ACTIONS(3075), - [anon_sym_offsetof] = ACTIONS(3075), - [anon_sym__Generic] = ACTIONS(3075), - [anon_sym_asm] = ACTIONS(3075), - [anon_sym___asm__] = ACTIONS(3075), - [anon_sym___asm] = ACTIONS(3075), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_L_SQUOTE] = ACTIONS(3077), - [anon_sym_u_SQUOTE] = ACTIONS(3077), - [anon_sym_U_SQUOTE] = ACTIONS(3077), - [anon_sym_u8_SQUOTE] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(3077), - [anon_sym_L_DQUOTE] = ACTIONS(3077), - [anon_sym_u_DQUOTE] = ACTIONS(3077), - [anon_sym_U_DQUOTE] = ACTIONS(3077), - [anon_sym_u8_DQUOTE] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [anon_sym_NULL] = ACTIONS(3075), - [anon_sym_nullptr] = ACTIONS(3075), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_explicit] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_export] = ACTIONS(3075), - [anon_sym_module] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_static_assert] = ACTIONS(3075), - [anon_sym_concept] = ACTIONS(3075), - [anon_sym_co_return] = ACTIONS(3075), - [anon_sym_co_yield] = ACTIONS(3075), - [anon_sym_R_DQUOTE] = ACTIONS(3077), - [anon_sym_LR_DQUOTE] = ACTIONS(3077), - [anon_sym_uR_DQUOTE] = ACTIONS(3077), - [anon_sym_UR_DQUOTE] = ACTIONS(3077), - [anon_sym_u8R_DQUOTE] = ACTIONS(3077), - [anon_sym_co_await] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_requires] = ACTIONS(3075), - [sym_this] = ACTIONS(3075), - }, - [STATE(611)] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym___extension__] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym___attribute] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym___inline] = ACTIONS(2629), - [anon_sym___inline__] = ACTIONS(2629), - [anon_sym___forceinline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym___thread] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym___restrict__] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym__Noreturn] = ACTIONS(2629), - [anon_sym_noreturn] = ACTIONS(2629), - [anon_sym__Nonnull] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_alignas] = ACTIONS(2629), - [anon_sym__Alignas] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2629), - [anon_sym___leave] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_compl] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [anon_sym___alignof__] = ACTIONS(2629), - [anon_sym___alignof] = ACTIONS(2629), - [anon_sym__alignof] = ACTIONS(2629), - [anon_sym_alignof] = ACTIONS(2629), - [anon_sym__Alignof] = ACTIONS(2629), - [anon_sym_offsetof] = ACTIONS(2629), - [anon_sym__Generic] = ACTIONS(2629), - [anon_sym_asm] = ACTIONS(2629), - [anon_sym___asm__] = ACTIONS(2629), - [anon_sym___asm] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_nullptr] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_R_DQUOTE] = ACTIONS(2631), - [anon_sym_LR_DQUOTE] = ACTIONS(2631), - [anon_sym_uR_DQUOTE] = ACTIONS(2631), - [anon_sym_UR_DQUOTE] = ACTIONS(2631), - [anon_sym_u8R_DQUOTE] = ACTIONS(2631), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - }, - [STATE(612)] = { - [sym_identifier] = ACTIONS(2765), - [aux_sym_preproc_include_token1] = ACTIONS(2765), - [aux_sym_preproc_def_token1] = ACTIONS(2765), - [aux_sym_preproc_if_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), - [sym_preproc_directive] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym___extension__] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym___attribute] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym___based] = ACTIONS(2765), - [anon_sym___cdecl] = ACTIONS(2765), - [anon_sym___clrcall] = ACTIONS(2765), - [anon_sym___stdcall] = ACTIONS(2765), - [anon_sym___fastcall] = ACTIONS(2765), - [anon_sym___thiscall] = ACTIONS(2765), - [anon_sym___vectorcall] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym___inline] = ACTIONS(2765), - [anon_sym___inline__] = ACTIONS(2765), - [anon_sym___forceinline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym___thread] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym___restrict__] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym__Noreturn] = ACTIONS(2765), - [anon_sym_noreturn] = ACTIONS(2765), - [anon_sym__Nonnull] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_alignas] = ACTIONS(2765), - [anon_sym__Alignas] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2765), - [anon_sym___leave] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [anon_sym___alignof__] = ACTIONS(2765), - [anon_sym___alignof] = ACTIONS(2765), - [anon_sym__alignof] = ACTIONS(2765), - [anon_sym_alignof] = ACTIONS(2765), - [anon_sym__Alignof] = ACTIONS(2765), - [anon_sym_offsetof] = ACTIONS(2765), - [anon_sym__Generic] = ACTIONS(2765), - [anon_sym_asm] = ACTIONS(2765), - [anon_sym___asm__] = ACTIONS(2765), - [anon_sym___asm] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [anon_sym_NULL] = ACTIONS(2765), - [anon_sym_nullptr] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_explicit] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_operator] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_static_assert] = ACTIONS(2765), - [anon_sym_concept] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), - }, - [STATE(613)] = { - [sym_identifier] = ACTIONS(2759), - [aux_sym_preproc_include_token1] = ACTIONS(2759), - [aux_sym_preproc_def_token1] = ACTIONS(2759), - [aux_sym_preproc_if_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2759), - [sym_preproc_directive] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_using] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym___based] = ACTIONS(2759), - [anon_sym___cdecl] = ACTIONS(2759), - [anon_sym___clrcall] = ACTIONS(2759), - [anon_sym___stdcall] = ACTIONS(2759), - [anon_sym___fastcall] = ACTIONS(2759), - [anon_sym___thiscall] = ACTIONS(2759), - [anon_sym___vectorcall] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_case] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_operator] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_namespace] = ACTIONS(2759), - [anon_sym_static_assert] = ACTIONS(2759), - [anon_sym_concept] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), - }, - [STATE(614)] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - }, - [STATE(615)] = { - [ts_builtin_sym_end] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_include_token1] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym___cdecl] = ACTIONS(3276), - [anon_sym___clrcall] = ACTIONS(3276), - [anon_sym___stdcall] = ACTIONS(3276), - [anon_sym___fastcall] = ACTIONS(3276), - [anon_sym___thiscall] = ACTIONS(3276), - [anon_sym___vectorcall] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_goto] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3276), - [anon_sym_compl] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_sizeof] = ACTIONS(3276), - [anon_sym___alignof__] = ACTIONS(3276), - [anon_sym___alignof] = ACTIONS(3276), - [anon_sym__alignof] = ACTIONS(3276), - [anon_sym_alignof] = ACTIONS(3276), - [anon_sym__Alignof] = ACTIONS(3276), - [anon_sym_offsetof] = ACTIONS(3276), - [anon_sym__Generic] = ACTIONS(3276), - [anon_sym_asm] = ACTIONS(3276), - [anon_sym___asm__] = ACTIONS(3276), - [anon_sym___asm] = ACTIONS(3276), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_L_SQUOTE] = ACTIONS(3278), - [anon_sym_u_SQUOTE] = ACTIONS(3278), - [anon_sym_U_SQUOTE] = ACTIONS(3278), - [anon_sym_u8_SQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_L_DQUOTE] = ACTIONS(3278), - [anon_sym_u_DQUOTE] = ACTIONS(3278), - [anon_sym_U_DQUOTE] = ACTIONS(3278), - [anon_sym_u8_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [anon_sym_NULL] = ACTIONS(3276), - [anon_sym_nullptr] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), - [anon_sym_concept] = ACTIONS(3276), - [anon_sym_co_return] = ACTIONS(3276), - [anon_sym_co_yield] = ACTIONS(3276), - [anon_sym_R_DQUOTE] = ACTIONS(3278), - [anon_sym_LR_DQUOTE] = ACTIONS(3278), - [anon_sym_uR_DQUOTE] = ACTIONS(3278), - [anon_sym_UR_DQUOTE] = ACTIONS(3278), - [anon_sym_u8R_DQUOTE] = ACTIONS(3278), - [anon_sym_co_await] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_requires] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - }, - [STATE(616)] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym___extension__] = ACTIONS(2769), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym___attribute] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym___inline] = ACTIONS(2769), - [anon_sym___inline__] = ACTIONS(2769), - [anon_sym___forceinline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym___thread] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym___restrict__] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym__Noreturn] = ACTIONS(2769), - [anon_sym_noreturn] = ACTIONS(2769), - [anon_sym__Nonnull] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_alignas] = ACTIONS(2769), - [anon_sym__Alignas] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym___try] = ACTIONS(2769), - [anon_sym___leave] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [anon_sym___alignof__] = ACTIONS(2769), - [anon_sym___alignof] = ACTIONS(2769), - [anon_sym__alignof] = ACTIONS(2769), - [anon_sym_alignof] = ACTIONS(2769), - [anon_sym__Alignof] = ACTIONS(2769), - [anon_sym_offsetof] = ACTIONS(2769), - [anon_sym__Generic] = ACTIONS(2769), - [anon_sym_asm] = ACTIONS(2769), - [anon_sym___asm__] = ACTIONS(2769), - [anon_sym___asm] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [anon_sym_NULL] = ACTIONS(2769), - [anon_sym_nullptr] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - }, - [STATE(617)] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym___extension__] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym___attribute] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym___inline] = ACTIONS(2633), - [anon_sym___inline__] = ACTIONS(2633), - [anon_sym___forceinline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym___thread] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym___restrict__] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym__Noreturn] = ACTIONS(2633), - [anon_sym_noreturn] = ACTIONS(2633), - [anon_sym__Nonnull] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_alignas] = ACTIONS(2633), - [anon_sym__Alignas] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym___try] = ACTIONS(2633), - [anon_sym___leave] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_compl] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [anon_sym___alignof__] = ACTIONS(2633), - [anon_sym___alignof] = ACTIONS(2633), - [anon_sym__alignof] = ACTIONS(2633), - [anon_sym_alignof] = ACTIONS(2633), - [anon_sym__Alignof] = ACTIONS(2633), - [anon_sym_offsetof] = ACTIONS(2633), - [anon_sym__Generic] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym___asm__] = ACTIONS(2633), - [anon_sym___asm] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [anon_sym_NULL] = ACTIONS(2633), - [anon_sym_nullptr] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_R_DQUOTE] = ACTIONS(2635), - [anon_sym_LR_DQUOTE] = ACTIONS(2635), - [anon_sym_uR_DQUOTE] = ACTIONS(2635), - [anon_sym_UR_DQUOTE] = ACTIONS(2635), - [anon_sym_u8R_DQUOTE] = ACTIONS(2635), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - }, - [STATE(618)] = { - [sym_identifier] = ACTIONS(2645), - [aux_sym_preproc_include_token1] = ACTIONS(2645), - [aux_sym_preproc_def_token1] = ACTIONS(2645), - [aux_sym_preproc_if_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2645), - [sym_preproc_directive] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_AMP_AMP] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym___extension__] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2645), - [anon_sym_virtual] = ACTIONS(2645), - [anon_sym_extern] = ACTIONS(2645), - [anon_sym___attribute__] = ACTIONS(2645), - [anon_sym___attribute] = ACTIONS(2645), - [anon_sym_using] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), - [anon_sym___declspec] = ACTIONS(2645), - [anon_sym___based] = ACTIONS(2645), - [anon_sym___cdecl] = ACTIONS(2645), - [anon_sym___clrcall] = ACTIONS(2645), - [anon_sym___stdcall] = ACTIONS(2645), - [anon_sym___fastcall] = ACTIONS(2645), - [anon_sym___thiscall] = ACTIONS(2645), - [anon_sym___vectorcall] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2645), - [anon_sym_unsigned] = ACTIONS(2645), - [anon_sym_long] = ACTIONS(2645), - [anon_sym_short] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_register] = ACTIONS(2645), - [anon_sym_inline] = ACTIONS(2645), - [anon_sym___inline] = ACTIONS(2645), - [anon_sym___inline__] = ACTIONS(2645), - [anon_sym___forceinline] = ACTIONS(2645), - [anon_sym_thread_local] = ACTIONS(2645), - [anon_sym___thread] = ACTIONS(2645), - [anon_sym_const] = ACTIONS(2645), - [anon_sym_constexpr] = ACTIONS(2645), - [anon_sym_volatile] = ACTIONS(2645), - [anon_sym_restrict] = ACTIONS(2645), - [anon_sym___restrict__] = ACTIONS(2645), - [anon_sym__Atomic] = ACTIONS(2645), - [anon_sym__Noreturn] = ACTIONS(2645), - [anon_sym_noreturn] = ACTIONS(2645), - [anon_sym__Nonnull] = ACTIONS(2645), - [anon_sym_mutable] = ACTIONS(2645), - [anon_sym_constinit] = ACTIONS(2645), - [anon_sym_consteval] = ACTIONS(2645), - [anon_sym_alignas] = ACTIONS(2645), - [anon_sym__Alignas] = ACTIONS(2645), - [sym_primitive_type] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_union] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2645), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_default] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_goto] = ACTIONS(2645), - [anon_sym___try] = ACTIONS(2645), - [anon_sym___leave] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_compl] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(2645), - [anon_sym___alignof__] = ACTIONS(2645), - [anon_sym___alignof] = ACTIONS(2645), - [anon_sym__alignof] = ACTIONS(2645), - [anon_sym_alignof] = ACTIONS(2645), - [anon_sym__Alignof] = ACTIONS(2645), - [anon_sym_offsetof] = ACTIONS(2645), - [anon_sym__Generic] = ACTIONS(2645), - [anon_sym_asm] = ACTIONS(2645), - [anon_sym___asm__] = ACTIONS(2645), - [anon_sym___asm] = ACTIONS(2645), - [sym_number_literal] = ACTIONS(2647), - [anon_sym_L_SQUOTE] = ACTIONS(2647), - [anon_sym_u_SQUOTE] = ACTIONS(2647), - [anon_sym_U_SQUOTE] = ACTIONS(2647), - [anon_sym_u8_SQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_L_DQUOTE] = ACTIONS(2647), - [anon_sym_u_DQUOTE] = ACTIONS(2647), - [anon_sym_U_DQUOTE] = ACTIONS(2647), - [anon_sym_u8_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [anon_sym_NULL] = ACTIONS(2645), - [anon_sym_nullptr] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2645), - [anon_sym_decltype] = ACTIONS(2645), - [anon_sym_explicit] = ACTIONS(2645), - [anon_sym_typename] = ACTIONS(2645), - [anon_sym_template] = ACTIONS(2645), - [anon_sym_operator] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_delete] = ACTIONS(2645), - [anon_sym_throw] = ACTIONS(2645), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_static_assert] = ACTIONS(2645), - [anon_sym_concept] = ACTIONS(2645), - [anon_sym_co_return] = ACTIONS(2645), - [anon_sym_co_yield] = ACTIONS(2645), - [anon_sym_R_DQUOTE] = ACTIONS(2647), - [anon_sym_LR_DQUOTE] = ACTIONS(2647), - [anon_sym_uR_DQUOTE] = ACTIONS(2647), - [anon_sym_UR_DQUOTE] = ACTIONS(2647), - [anon_sym_u8R_DQUOTE] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_requires] = ACTIONS(2645), - [sym_this] = ACTIONS(2645), - }, - [STATE(619)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(620)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_include_token1] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym___cdecl] = ACTIONS(2683), - [anon_sym___clrcall] = ACTIONS(2683), - [anon_sym___stdcall] = ACTIONS(2683), - [anon_sym___fastcall] = ACTIONS(2683), - [anon_sym___thiscall] = ACTIONS(2683), - [anon_sym___vectorcall] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_case] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_namespace] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), - [anon_sym_concept] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), - }, - [STATE(621)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_include_token1] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym___cdecl] = ACTIONS(2751), - [anon_sym___clrcall] = ACTIONS(2751), - [anon_sym___stdcall] = ACTIONS(2751), - [anon_sym___fastcall] = ACTIONS(2751), - [anon_sym___thiscall] = ACTIONS(2751), - [anon_sym___vectorcall] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), - [anon_sym_concept] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), - }, - [STATE(622)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), - }, - [STATE(623)] = { - [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_SEMI] = ACTIONS(3312), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_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), - [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_explicit] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), - [anon_sym_concept] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(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), - }, - [STATE(624)] = { - [ts_builtin_sym_end] = ACTIONS(3320), - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_include_token1] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = 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_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = ACTIONS(3318), - [anon_sym___cdecl] = ACTIONS(3318), - [anon_sym___clrcall] = ACTIONS(3318), - [anon_sym___stdcall] = ACTIONS(3318), - [anon_sym___fastcall] = ACTIONS(3318), - [anon_sym___thiscall] = ACTIONS(3318), - [anon_sym___vectorcall] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3320), - [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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_goto] = 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), - [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_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_module] = ACTIONS(3318), - [anon_sym_import] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), - [anon_sym_concept] = ACTIONS(3318), - [anon_sym_co_return] = ACTIONS(3318), - [anon_sym_co_yield] = 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), - }, - [STATE(625)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5650), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(7020), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(8279), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7308), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3502), - [aux_sym_preproc_if_token1] = ACTIONS(3505), - [aux_sym_preproc_if_token2] = ACTIONS(3508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3510), - [aux_sym_preproc_else_token1] = ACTIONS(3508), - [aux_sym_preproc_elif_token1] = ACTIONS(3508), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), - [sym_preproc_directive] = ACTIONS(3513), - [anon_sym_LPAREN2] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3537), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3543), - [anon_sym___attribute__] = ACTIONS(3546), - [anon_sym___attribute] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3549), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3555), - [anon_sym___declspec] = ACTIONS(3558), - [anon_sym___based] = ACTIONS(3561), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_static] = ACTIONS(3543), - [anon_sym_register] = ACTIONS(3543), - [anon_sym_inline] = ACTIONS(3543), - [anon_sym___inline] = ACTIONS(3543), - [anon_sym___inline__] = ACTIONS(3543), - [anon_sym___forceinline] = ACTIONS(3543), - [anon_sym_thread_local] = ACTIONS(3543), - [anon_sym___thread] = ACTIONS(3543), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_constexpr] = ACTIONS(3573), - [anon_sym_volatile] = ACTIONS(3570), - [anon_sym_restrict] = ACTIONS(3570), - [anon_sym___restrict__] = ACTIONS(3570), - [anon_sym__Atomic] = ACTIONS(3570), - [anon_sym__Noreturn] = ACTIONS(3570), - [anon_sym_noreturn] = ACTIONS(3570), - [anon_sym__Nonnull] = ACTIONS(3570), - [anon_sym_mutable] = ACTIONS(3570), - [anon_sym_constinit] = ACTIONS(3570), - [anon_sym_consteval] = ACTIONS(3570), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3579), - [anon_sym_enum] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3594), - [anon_sym_decltype] = ACTIONS(3597), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3603), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_template] = ACTIONS(3609), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_friend] = ACTIONS(3615), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_static_assert] = ACTIONS(3618), - }, - [STATE(626)] = { - [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_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_import] = 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_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), - }, - [STATE(627)] = { - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3623), - [aux_sym_preproc_include_token1] = ACTIONS(3623), - [aux_sym_preproc_def_token1] = ACTIONS(3623), - [aux_sym_preproc_if_token1] = ACTIONS(3623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3623), - [sym_preproc_directive] = ACTIONS(3623), - [anon_sym_LPAREN2] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3623), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3623), - [anon_sym_SEMI] = ACTIONS(3621), - [anon_sym___extension__] = ACTIONS(3623), - [anon_sym_typedef] = ACTIONS(3623), - [anon_sym_virtual] = ACTIONS(3623), - [anon_sym_extern] = ACTIONS(3623), - [anon_sym___attribute__] = ACTIONS(3623), - [anon_sym___attribute] = ACTIONS(3623), - [anon_sym_using] = ACTIONS(3623), - [anon_sym_COLON_COLON] = ACTIONS(3621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3621), - [anon_sym___declspec] = ACTIONS(3623), - [anon_sym___based] = ACTIONS(3623), - [anon_sym___cdecl] = ACTIONS(3623), - [anon_sym___clrcall] = ACTIONS(3623), - [anon_sym___stdcall] = ACTIONS(3623), - [anon_sym___fastcall] = ACTIONS(3623), - [anon_sym___thiscall] = ACTIONS(3623), - [anon_sym___vectorcall] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_signed] = ACTIONS(3623), - [anon_sym_unsigned] = ACTIONS(3623), - [anon_sym_long] = ACTIONS(3623), - [anon_sym_short] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_static] = ACTIONS(3623), - [anon_sym_register] = ACTIONS(3623), - [anon_sym_inline] = ACTIONS(3623), - [anon_sym___inline] = ACTIONS(3623), - [anon_sym___inline__] = ACTIONS(3623), - [anon_sym___forceinline] = ACTIONS(3623), - [anon_sym_thread_local] = ACTIONS(3623), - [anon_sym___thread] = ACTIONS(3623), - [anon_sym_const] = ACTIONS(3623), - [anon_sym_constexpr] = ACTIONS(3623), - [anon_sym_volatile] = ACTIONS(3623), - [anon_sym_restrict] = ACTIONS(3623), - [anon_sym___restrict__] = ACTIONS(3623), - [anon_sym__Atomic] = ACTIONS(3623), - [anon_sym__Noreturn] = ACTIONS(3623), - [anon_sym_noreturn] = ACTIONS(3623), - [anon_sym__Nonnull] = ACTIONS(3623), - [anon_sym_mutable] = ACTIONS(3623), - [anon_sym_constinit] = ACTIONS(3623), - [anon_sym_consteval] = ACTIONS(3623), - [anon_sym_alignas] = ACTIONS(3623), - [anon_sym__Alignas] = ACTIONS(3623), - [sym_primitive_type] = ACTIONS(3623), - [anon_sym_enum] = ACTIONS(3623), - [anon_sym_class] = ACTIONS(3623), - [anon_sym_struct] = ACTIONS(3623), - [anon_sym_union] = ACTIONS(3623), - [anon_sym_if] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_case] = ACTIONS(3623), - [anon_sym_default] = ACTIONS(3623), - [anon_sym_while] = ACTIONS(3623), - [anon_sym_do] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3623), - [anon_sym_return] = ACTIONS(3623), - [anon_sym_break] = ACTIONS(3623), - [anon_sym_continue] = ACTIONS(3623), - [anon_sym_goto] = ACTIONS(3623), - [anon_sym_not] = ACTIONS(3623), - [anon_sym_compl] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3621), - [anon_sym_sizeof] = ACTIONS(3623), - [anon_sym___alignof__] = ACTIONS(3623), - [anon_sym___alignof] = ACTIONS(3623), - [anon_sym__alignof] = ACTIONS(3623), - [anon_sym_alignof] = ACTIONS(3623), - [anon_sym__Alignof] = ACTIONS(3623), - [anon_sym_offsetof] = ACTIONS(3623), - [anon_sym__Generic] = ACTIONS(3623), - [anon_sym_asm] = ACTIONS(3623), - [anon_sym___asm__] = ACTIONS(3623), - [anon_sym___asm] = ACTIONS(3623), - [sym_number_literal] = ACTIONS(3621), - [anon_sym_L_SQUOTE] = ACTIONS(3621), - [anon_sym_u_SQUOTE] = ACTIONS(3621), - [anon_sym_U_SQUOTE] = ACTIONS(3621), - [anon_sym_u8_SQUOTE] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(3621), - [anon_sym_L_DQUOTE] = ACTIONS(3621), - [anon_sym_u_DQUOTE] = ACTIONS(3621), - [anon_sym_U_DQUOTE] = ACTIONS(3621), - [anon_sym_u8_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym_true] = ACTIONS(3623), - [sym_false] = ACTIONS(3623), - [anon_sym_NULL] = ACTIONS(3623), - [anon_sym_nullptr] = ACTIONS(3623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3623), - [anon_sym_decltype] = ACTIONS(3623), - [anon_sym_explicit] = ACTIONS(3623), - [anon_sym_typename] = ACTIONS(3623), - [anon_sym_export] = ACTIONS(3623), - [anon_sym_module] = ACTIONS(3623), - [anon_sym_import] = ACTIONS(3623), - [anon_sym_template] = ACTIONS(3623), - [anon_sym_operator] = ACTIONS(3623), - [anon_sym_try] = ACTIONS(3623), - [anon_sym_delete] = ACTIONS(3623), - [anon_sym_throw] = ACTIONS(3623), - [anon_sym_namespace] = ACTIONS(3623), - [anon_sym_static_assert] = ACTIONS(3623), - [anon_sym_concept] = ACTIONS(3623), - [anon_sym_co_return] = ACTIONS(3623), - [anon_sym_co_yield] = ACTIONS(3623), - [anon_sym_R_DQUOTE] = ACTIONS(3621), - [anon_sym_LR_DQUOTE] = ACTIONS(3621), - [anon_sym_uR_DQUOTE] = ACTIONS(3621), - [anon_sym_UR_DQUOTE] = ACTIONS(3621), - [anon_sym_u8R_DQUOTE] = ACTIONS(3621), - [anon_sym_co_await] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3623), - [anon_sym_requires] = ACTIONS(3623), - [sym_this] = ACTIONS(3623), - }, - [STATE(628)] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym___extension__] = ACTIONS(2773), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym___attribute] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym___inline] = ACTIONS(2773), - [anon_sym___inline__] = ACTIONS(2773), - [anon_sym___forceinline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym___thread] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym___restrict__] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym__Noreturn] = ACTIONS(2773), - [anon_sym_noreturn] = ACTIONS(2773), - [anon_sym__Nonnull] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_alignas] = ACTIONS(2773), - [anon_sym__Alignas] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym___try] = ACTIONS(2773), - [anon_sym___leave] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [anon_sym___alignof__] = ACTIONS(2773), - [anon_sym___alignof] = ACTIONS(2773), - [anon_sym__alignof] = ACTIONS(2773), - [anon_sym_alignof] = ACTIONS(2773), - [anon_sym__Alignof] = ACTIONS(2773), - [anon_sym_offsetof] = ACTIONS(2773), - [anon_sym__Generic] = ACTIONS(2773), - [anon_sym_asm] = ACTIONS(2773), - [anon_sym___asm__] = ACTIONS(2773), - [anon_sym___asm] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [anon_sym_NULL] = ACTIONS(2773), - [anon_sym_nullptr] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(630)] = { - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), - }, - [STATE(631)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(632)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_include_token1] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym___cdecl] = ACTIONS(2637), - [anon_sym___clrcall] = ACTIONS(2637), - [anon_sym___stdcall] = ACTIONS(2637), - [anon_sym___fastcall] = ACTIONS(2637), - [anon_sym___thiscall] = ACTIONS(2637), - [anon_sym___vectorcall] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), - [anon_sym_concept] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), - }, - [STATE(633)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(634)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_include_token1] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym___cdecl] = ACTIONS(2641), - [anon_sym___clrcall] = ACTIONS(2641), - [anon_sym___stdcall] = ACTIONS(2641), - [anon_sym___fastcall] = ACTIONS(2641), - [anon_sym___thiscall] = ACTIONS(2641), - [anon_sym___vectorcall] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), - [anon_sym_concept] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), - }, - [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_export] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_import] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), - }, - [STATE(636)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_include_token1] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym___cdecl] = ACTIONS(2649), - [anon_sym___clrcall] = ACTIONS(2649), - [anon_sym___stdcall] = ACTIONS(2649), - [anon_sym___fastcall] = ACTIONS(2649), - [anon_sym___thiscall] = ACTIONS(2649), - [anon_sym___vectorcall] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym___try] = ACTIONS(2649), - [anon_sym___leave] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [anon_sym___alignof__] = ACTIONS(2649), - [anon_sym___alignof] = ACTIONS(2649), - [anon_sym__alignof] = ACTIONS(2649), - [anon_sym_alignof] = ACTIONS(2649), - [anon_sym__Alignof] = ACTIONS(2649), - [anon_sym_offsetof] = ACTIONS(2649), - [anon_sym__Generic] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym___asm__] = ACTIONS(2649), - [anon_sym___asm] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [anon_sym_nullptr] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), - [anon_sym_concept] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), - }, - [STATE(637)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - }, - [STATE(638)] = { - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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_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_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), - [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_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_export] = ACTIONS(2981), - [anon_sym_module] = ACTIONS(2981), - [anon_sym_import] = 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_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), - }, - [STATE(639)] = { - [ts_builtin_sym_end] = ACTIONS(3327), - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_include_token1] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym___cdecl] = ACTIONS(3325), - [anon_sym___clrcall] = ACTIONS(3325), - [anon_sym___stdcall] = ACTIONS(3325), - [anon_sym___fastcall] = ACTIONS(3325), - [anon_sym___thiscall] = ACTIONS(3325), - [anon_sym___vectorcall] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym_not] = ACTIONS(3325), - [anon_sym_compl] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym___alignof__] = ACTIONS(3325), - [anon_sym___alignof] = ACTIONS(3325), - [anon_sym__alignof] = ACTIONS(3325), - [anon_sym_alignof] = ACTIONS(3325), - [anon_sym__Alignof] = ACTIONS(3325), - [anon_sym_offsetof] = ACTIONS(3325), - [anon_sym__Generic] = ACTIONS(3325), - [anon_sym_asm] = ACTIONS(3325), - [anon_sym___asm__] = ACTIONS(3325), - [anon_sym___asm] = ACTIONS(3325), - [sym_number_literal] = ACTIONS(3327), - [anon_sym_L_SQUOTE] = ACTIONS(3327), - [anon_sym_u_SQUOTE] = ACTIONS(3327), - [anon_sym_U_SQUOTE] = ACTIONS(3327), - [anon_sym_u8_SQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_L_DQUOTE] = ACTIONS(3327), - [anon_sym_u_DQUOTE] = ACTIONS(3327), - [anon_sym_U_DQUOTE] = ACTIONS(3327), - [anon_sym_u8_DQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [anon_sym_NULL] = ACTIONS(3325), - [anon_sym_nullptr] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), - [anon_sym_concept] = ACTIONS(3325), - [anon_sym_co_return] = ACTIONS(3325), - [anon_sym_co_yield] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_requires] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - }, - [STATE(640)] = { - [ts_builtin_sym_end] = ACTIONS(3331), - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_include_token1] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym___cdecl] = ACTIONS(3329), - [anon_sym___clrcall] = ACTIONS(3329), - [anon_sym___stdcall] = ACTIONS(3329), - [anon_sym___fastcall] = ACTIONS(3329), - [anon_sym___thiscall] = ACTIONS(3329), - [anon_sym___vectorcall] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym_not] = ACTIONS(3329), - [anon_sym_compl] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym___alignof__] = ACTIONS(3329), - [anon_sym___alignof] = ACTIONS(3329), - [anon_sym__alignof] = ACTIONS(3329), - [anon_sym_alignof] = ACTIONS(3329), - [anon_sym__Alignof] = ACTIONS(3329), - [anon_sym_offsetof] = ACTIONS(3329), - [anon_sym__Generic] = ACTIONS(3329), - [anon_sym_asm] = ACTIONS(3329), - [anon_sym___asm__] = ACTIONS(3329), - [anon_sym___asm] = ACTIONS(3329), - [sym_number_literal] = ACTIONS(3331), - [anon_sym_L_SQUOTE] = ACTIONS(3331), - [anon_sym_u_SQUOTE] = ACTIONS(3331), - [anon_sym_U_SQUOTE] = ACTIONS(3331), - [anon_sym_u8_SQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_L_DQUOTE] = ACTIONS(3331), - [anon_sym_u_DQUOTE] = ACTIONS(3331), - [anon_sym_U_DQUOTE] = ACTIONS(3331), - [anon_sym_u8_DQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [anon_sym_NULL] = ACTIONS(3329), - [anon_sym_nullptr] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), - [anon_sym_concept] = ACTIONS(3329), - [anon_sym_co_return] = ACTIONS(3329), - [anon_sym_co_yield] = ACTIONS(3329), - [anon_sym_R_DQUOTE] = ACTIONS(3331), - [anon_sym_LR_DQUOTE] = ACTIONS(3331), - [anon_sym_uR_DQUOTE] = ACTIONS(3331), - [anon_sym_UR_DQUOTE] = ACTIONS(3331), - [anon_sym_u8R_DQUOTE] = ACTIONS(3331), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_requires] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - }, - [STATE(641)] = { - [sym_identifier] = ACTIONS(2663), - [aux_sym_preproc_include_token1] = ACTIONS(2663), - [aux_sym_preproc_def_token1] = ACTIONS(2663), - [aux_sym_preproc_if_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2663), - [sym_preproc_directive] = ACTIONS(2663), - [anon_sym_LPAREN2] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_AMP_AMP] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym___extension__] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2663), - [anon_sym_virtual] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym___attribute__] = ACTIONS(2663), - [anon_sym___attribute] = ACTIONS(2663), - [anon_sym_using] = ACTIONS(2663), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), - [anon_sym___declspec] = ACTIONS(2663), - [anon_sym___based] = ACTIONS(2663), - [anon_sym___cdecl] = ACTIONS(2663), - [anon_sym___clrcall] = ACTIONS(2663), - [anon_sym___stdcall] = ACTIONS(2663), - [anon_sym___fastcall] = ACTIONS(2663), - [anon_sym___thiscall] = ACTIONS(2663), - [anon_sym___vectorcall] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym___inline] = ACTIONS(2663), - [anon_sym___inline__] = ACTIONS(2663), - [anon_sym___forceinline] = ACTIONS(2663), - [anon_sym_thread_local] = ACTIONS(2663), - [anon_sym___thread] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_constexpr] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym___restrict__] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym__Noreturn] = ACTIONS(2663), - [anon_sym_noreturn] = ACTIONS(2663), - [anon_sym__Nonnull] = ACTIONS(2663), - [anon_sym_mutable] = ACTIONS(2663), - [anon_sym_constinit] = ACTIONS(2663), - [anon_sym_consteval] = ACTIONS(2663), - [anon_sym_alignas] = ACTIONS(2663), - [anon_sym__Alignas] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2663), - [anon_sym_case] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym___try] = ACTIONS(2663), - [anon_sym___leave] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_compl] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_sizeof] = ACTIONS(2663), - [anon_sym___alignof__] = ACTIONS(2663), - [anon_sym___alignof] = ACTIONS(2663), - [anon_sym__alignof] = ACTIONS(2663), - [anon_sym_alignof] = ACTIONS(2663), - [anon_sym__Alignof] = ACTIONS(2663), - [anon_sym_offsetof] = ACTIONS(2663), - [anon_sym__Generic] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym___asm__] = ACTIONS(2663), - [anon_sym___asm] = ACTIONS(2663), - [sym_number_literal] = ACTIONS(2665), - [anon_sym_L_SQUOTE] = ACTIONS(2665), - [anon_sym_u_SQUOTE] = ACTIONS(2665), - [anon_sym_U_SQUOTE] = ACTIONS(2665), - [anon_sym_u8_SQUOTE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_L_DQUOTE] = ACTIONS(2665), - [anon_sym_u_DQUOTE] = ACTIONS(2665), - [anon_sym_U_DQUOTE] = ACTIONS(2665), - [anon_sym_u8_DQUOTE] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [anon_sym_NULL] = ACTIONS(2663), - [anon_sym_nullptr] = ACTIONS(2663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2663), - [anon_sym_decltype] = ACTIONS(2663), - [anon_sym_explicit] = ACTIONS(2663), - [anon_sym_typename] = ACTIONS(2663), - [anon_sym_template] = ACTIONS(2663), - [anon_sym_operator] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2663), - [anon_sym_throw] = ACTIONS(2663), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_static_assert] = ACTIONS(2663), - [anon_sym_concept] = ACTIONS(2663), - [anon_sym_co_return] = ACTIONS(2663), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2665), - [anon_sym_LR_DQUOTE] = ACTIONS(2665), - [anon_sym_uR_DQUOTE] = ACTIONS(2665), - [anon_sym_UR_DQUOTE] = ACTIONS(2665), - [anon_sym_u8R_DQUOTE] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(2663), - [anon_sym_requires] = ACTIONS(2663), - [sym_this] = ACTIONS(2663), - }, - [STATE(642)] = { - [sym_identifier] = ACTIONS(2667), - [aux_sym_preproc_include_token1] = ACTIONS(2667), - [aux_sym_preproc_def_token1] = ACTIONS(2667), - [aux_sym_preproc_if_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2667), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2667), - [sym_preproc_directive] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym___extension__] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2667), - [anon_sym_virtual] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym___attribute__] = ACTIONS(2667), - [anon_sym___attribute] = ACTIONS(2667), - [anon_sym_using] = ACTIONS(2667), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), - [anon_sym___declspec] = ACTIONS(2667), - [anon_sym___based] = ACTIONS(2667), - [anon_sym___cdecl] = ACTIONS(2667), - [anon_sym___clrcall] = ACTIONS(2667), - [anon_sym___stdcall] = ACTIONS(2667), - [anon_sym___fastcall] = ACTIONS(2667), - [anon_sym___thiscall] = ACTIONS(2667), - [anon_sym___vectorcall] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym___inline] = ACTIONS(2667), - [anon_sym___inline__] = ACTIONS(2667), - [anon_sym___forceinline] = ACTIONS(2667), - [anon_sym_thread_local] = ACTIONS(2667), - [anon_sym___thread] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_constexpr] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym___restrict__] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym__Noreturn] = ACTIONS(2667), - [anon_sym_noreturn] = ACTIONS(2667), - [anon_sym__Nonnull] = ACTIONS(2667), - [anon_sym_mutable] = ACTIONS(2667), - [anon_sym_constinit] = ACTIONS(2667), - [anon_sym_consteval] = ACTIONS(2667), - [anon_sym_alignas] = ACTIONS(2667), - [anon_sym__Alignas] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_switch] = ACTIONS(2667), - [anon_sym_case] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym___try] = ACTIONS(2667), - [anon_sym___leave] = ACTIONS(2667), - [anon_sym_not] = ACTIONS(2667), - [anon_sym_compl] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(2667), - [anon_sym___alignof__] = ACTIONS(2667), - [anon_sym___alignof] = ACTIONS(2667), - [anon_sym__alignof] = ACTIONS(2667), - [anon_sym_alignof] = ACTIONS(2667), - [anon_sym__Alignof] = ACTIONS(2667), - [anon_sym_offsetof] = ACTIONS(2667), - [anon_sym__Generic] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym___asm__] = ACTIONS(2667), - [anon_sym___asm] = ACTIONS(2667), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_L_SQUOTE] = ACTIONS(2669), - [anon_sym_u_SQUOTE] = ACTIONS(2669), - [anon_sym_U_SQUOTE] = ACTIONS(2669), - [anon_sym_u8_SQUOTE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_L_DQUOTE] = ACTIONS(2669), - [anon_sym_u_DQUOTE] = ACTIONS(2669), - [anon_sym_U_DQUOTE] = ACTIONS(2669), - [anon_sym_u8_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [anon_sym_NULL] = ACTIONS(2667), - [anon_sym_nullptr] = ACTIONS(2667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2667), - [anon_sym_decltype] = ACTIONS(2667), - [anon_sym_explicit] = ACTIONS(2667), - [anon_sym_typename] = ACTIONS(2667), - [anon_sym_template] = ACTIONS(2667), - [anon_sym_operator] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_delete] = ACTIONS(2667), - [anon_sym_throw] = ACTIONS(2667), - [anon_sym_namespace] = ACTIONS(2667), - [anon_sym_static_assert] = ACTIONS(2667), - [anon_sym_concept] = ACTIONS(2667), - [anon_sym_co_return] = ACTIONS(2667), - [anon_sym_co_yield] = ACTIONS(2667), - [anon_sym_R_DQUOTE] = ACTIONS(2669), - [anon_sym_LR_DQUOTE] = ACTIONS(2669), - [anon_sym_uR_DQUOTE] = ACTIONS(2669), - [anon_sym_UR_DQUOTE] = ACTIONS(2669), - [anon_sym_u8R_DQUOTE] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_requires] = ACTIONS(2667), - [sym_this] = ACTIONS(2667), - }, - [STATE(643)] = { - [sym_identifier] = ACTIONS(2671), - [aux_sym_preproc_include_token1] = ACTIONS(2671), - [aux_sym_preproc_def_token1] = ACTIONS(2671), - [aux_sym_preproc_if_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2671), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2671), - [sym_preproc_directive] = ACTIONS(2671), - [anon_sym_LPAREN2] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_AMP_AMP] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym___extension__] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2671), - [anon_sym_virtual] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym___attribute__] = ACTIONS(2671), - [anon_sym___attribute] = ACTIONS(2671), - [anon_sym_using] = ACTIONS(2671), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), - [anon_sym___declspec] = ACTIONS(2671), - [anon_sym___based] = ACTIONS(2671), - [anon_sym___cdecl] = ACTIONS(2671), - [anon_sym___clrcall] = ACTIONS(2671), - [anon_sym___stdcall] = ACTIONS(2671), - [anon_sym___fastcall] = ACTIONS(2671), - [anon_sym___thiscall] = ACTIONS(2671), - [anon_sym___vectorcall] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym___inline] = ACTIONS(2671), - [anon_sym___inline__] = ACTIONS(2671), - [anon_sym___forceinline] = ACTIONS(2671), - [anon_sym_thread_local] = ACTIONS(2671), - [anon_sym___thread] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_constexpr] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym___restrict__] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym__Noreturn] = ACTIONS(2671), - [anon_sym_noreturn] = ACTIONS(2671), - [anon_sym__Nonnull] = ACTIONS(2671), - [anon_sym_mutable] = ACTIONS(2671), - [anon_sym_constinit] = ACTIONS(2671), - [anon_sym_consteval] = ACTIONS(2671), - [anon_sym_alignas] = ACTIONS(2671), - [anon_sym__Alignas] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_switch] = ACTIONS(2671), - [anon_sym_case] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_do] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym___try] = ACTIONS(2671), - [anon_sym___leave] = ACTIONS(2671), - [anon_sym_not] = ACTIONS(2671), - [anon_sym_compl] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_sizeof] = ACTIONS(2671), - [anon_sym___alignof__] = ACTIONS(2671), - [anon_sym___alignof] = ACTIONS(2671), - [anon_sym__alignof] = ACTIONS(2671), - [anon_sym_alignof] = ACTIONS(2671), - [anon_sym__Alignof] = ACTIONS(2671), - [anon_sym_offsetof] = ACTIONS(2671), - [anon_sym__Generic] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym___asm__] = ACTIONS(2671), - [anon_sym___asm] = ACTIONS(2671), - [sym_number_literal] = ACTIONS(2673), - [anon_sym_L_SQUOTE] = ACTIONS(2673), - [anon_sym_u_SQUOTE] = ACTIONS(2673), - [anon_sym_U_SQUOTE] = ACTIONS(2673), - [anon_sym_u8_SQUOTE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2673), - [anon_sym_L_DQUOTE] = ACTIONS(2673), - [anon_sym_u_DQUOTE] = ACTIONS(2673), - [anon_sym_U_DQUOTE] = ACTIONS(2673), - [anon_sym_u8_DQUOTE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [anon_sym_NULL] = ACTIONS(2671), - [anon_sym_nullptr] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2671), - [anon_sym_decltype] = ACTIONS(2671), - [anon_sym_explicit] = ACTIONS(2671), - [anon_sym_typename] = ACTIONS(2671), - [anon_sym_template] = ACTIONS(2671), - [anon_sym_operator] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_delete] = ACTIONS(2671), - [anon_sym_throw] = ACTIONS(2671), - [anon_sym_namespace] = ACTIONS(2671), - [anon_sym_static_assert] = ACTIONS(2671), - [anon_sym_concept] = ACTIONS(2671), - [anon_sym_co_return] = ACTIONS(2671), - [anon_sym_co_yield] = ACTIONS(2671), - [anon_sym_R_DQUOTE] = ACTIONS(2673), - [anon_sym_LR_DQUOTE] = ACTIONS(2673), - [anon_sym_uR_DQUOTE] = ACTIONS(2673), - [anon_sym_UR_DQUOTE] = ACTIONS(2673), - [anon_sym_u8R_DQUOTE] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2671), - [anon_sym_requires] = ACTIONS(2671), - [sym_this] = ACTIONS(2671), - }, - [STATE(644)] = { - [sym_identifier] = ACTIONS(2675), - [aux_sym_preproc_include_token1] = ACTIONS(2675), - [aux_sym_preproc_def_token1] = ACTIONS(2675), - [aux_sym_preproc_if_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2675), - [sym_preproc_directive] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_PLUS] = ACTIONS(2675), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym___extension__] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2675), - [anon_sym_virtual] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym___attribute__] = ACTIONS(2675), - [anon_sym___attribute] = ACTIONS(2675), - [anon_sym_using] = ACTIONS(2675), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), - [anon_sym___declspec] = ACTIONS(2675), - [anon_sym___based] = ACTIONS(2675), - [anon_sym___cdecl] = ACTIONS(2675), - [anon_sym___clrcall] = ACTIONS(2675), - [anon_sym___stdcall] = ACTIONS(2675), - [anon_sym___fastcall] = ACTIONS(2675), - [anon_sym___thiscall] = ACTIONS(2675), - [anon_sym___vectorcall] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2675), - [anon_sym_unsigned] = ACTIONS(2675), - [anon_sym_long] = ACTIONS(2675), - [anon_sym_short] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_register] = ACTIONS(2675), - [anon_sym_inline] = ACTIONS(2675), - [anon_sym___inline] = ACTIONS(2675), - [anon_sym___inline__] = ACTIONS(2675), - [anon_sym___forceinline] = ACTIONS(2675), - [anon_sym_thread_local] = ACTIONS(2675), - [anon_sym___thread] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_constexpr] = ACTIONS(2675), - [anon_sym_volatile] = ACTIONS(2675), - [anon_sym_restrict] = ACTIONS(2675), - [anon_sym___restrict__] = ACTIONS(2675), - [anon_sym__Atomic] = ACTIONS(2675), - [anon_sym__Noreturn] = ACTIONS(2675), - [anon_sym_noreturn] = ACTIONS(2675), - [anon_sym__Nonnull] = ACTIONS(2675), - [anon_sym_mutable] = ACTIONS(2675), - [anon_sym_constinit] = ACTIONS(2675), - [anon_sym_consteval] = ACTIONS(2675), - [anon_sym_alignas] = ACTIONS(2675), - [anon_sym__Alignas] = ACTIONS(2675), - [sym_primitive_type] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2675), - [anon_sym_case] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_do] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_goto] = ACTIONS(2675), - [anon_sym___try] = ACTIONS(2675), - [anon_sym___leave] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_compl] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(2675), - [anon_sym___alignof__] = ACTIONS(2675), - [anon_sym___alignof] = ACTIONS(2675), - [anon_sym__alignof] = ACTIONS(2675), - [anon_sym_alignof] = ACTIONS(2675), - [anon_sym__Alignof] = ACTIONS(2675), - [anon_sym_offsetof] = ACTIONS(2675), - [anon_sym__Generic] = ACTIONS(2675), - [anon_sym_asm] = ACTIONS(2675), - [anon_sym___asm__] = ACTIONS(2675), - [anon_sym___asm] = ACTIONS(2675), - [sym_number_literal] = ACTIONS(2677), - [anon_sym_L_SQUOTE] = ACTIONS(2677), - [anon_sym_u_SQUOTE] = ACTIONS(2677), - [anon_sym_U_SQUOTE] = ACTIONS(2677), - [anon_sym_u8_SQUOTE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2677), - [anon_sym_L_DQUOTE] = ACTIONS(2677), - [anon_sym_u_DQUOTE] = ACTIONS(2677), - [anon_sym_U_DQUOTE] = ACTIONS(2677), - [anon_sym_u8_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_true] = ACTIONS(2675), - [sym_false] = ACTIONS(2675), - [anon_sym_NULL] = ACTIONS(2675), - [anon_sym_nullptr] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2675), - [anon_sym_decltype] = ACTIONS(2675), - [anon_sym_explicit] = ACTIONS(2675), - [anon_sym_typename] = ACTIONS(2675), - [anon_sym_template] = ACTIONS(2675), - [anon_sym_operator] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_delete] = ACTIONS(2675), - [anon_sym_throw] = ACTIONS(2675), - [anon_sym_namespace] = ACTIONS(2675), - [anon_sym_static_assert] = ACTIONS(2675), - [anon_sym_concept] = ACTIONS(2675), - [anon_sym_co_return] = ACTIONS(2675), - [anon_sym_co_yield] = ACTIONS(2675), - [anon_sym_R_DQUOTE] = ACTIONS(2677), - [anon_sym_LR_DQUOTE] = ACTIONS(2677), - [anon_sym_uR_DQUOTE] = ACTIONS(2677), - [anon_sym_UR_DQUOTE] = ACTIONS(2677), - [anon_sym_u8R_DQUOTE] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2675), - [anon_sym_new] = ACTIONS(2675), - [anon_sym_requires] = ACTIONS(2675), - [sym_this] = ACTIONS(2675), - }, - [STATE(645)] = { - [sym_identifier] = ACTIONS(2679), - [aux_sym_preproc_include_token1] = ACTIONS(2679), - [aux_sym_preproc_def_token1] = ACTIONS(2679), - [aux_sym_preproc_if_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2679), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2679), - [sym_preproc_directive] = ACTIONS(2679), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym___extension__] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_virtual] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym___attribute__] = ACTIONS(2679), - [anon_sym___attribute] = ACTIONS(2679), - [anon_sym_using] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym___based] = ACTIONS(2679), - [anon_sym___cdecl] = ACTIONS(2679), - [anon_sym___clrcall] = ACTIONS(2679), - [anon_sym___stdcall] = ACTIONS(2679), - [anon_sym___fastcall] = ACTIONS(2679), - [anon_sym___thiscall] = ACTIONS(2679), - [anon_sym___vectorcall] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym___inline] = ACTIONS(2679), - [anon_sym___inline__] = ACTIONS(2679), - [anon_sym___forceinline] = ACTIONS(2679), - [anon_sym_thread_local] = ACTIONS(2679), - [anon_sym___thread] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_restrict] = ACTIONS(2679), - [anon_sym___restrict__] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [anon_sym__Noreturn] = ACTIONS(2679), - [anon_sym_noreturn] = ACTIONS(2679), - [anon_sym__Nonnull] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [anon_sym_constinit] = ACTIONS(2679), - [anon_sym_consteval] = ACTIONS(2679), - [anon_sym_alignas] = ACTIONS(2679), - [anon_sym__Alignas] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_case] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2679), - [anon_sym___leave] = ACTIONS(2679), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_compl] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym___alignof__] = ACTIONS(2679), - [anon_sym___alignof] = ACTIONS(2679), - [anon_sym__alignof] = ACTIONS(2679), - [anon_sym_alignof] = ACTIONS(2679), - [anon_sym__Alignof] = ACTIONS(2679), - [anon_sym_offsetof] = ACTIONS(2679), - [anon_sym__Generic] = ACTIONS(2679), - [anon_sym_asm] = ACTIONS(2679), - [anon_sym___asm__] = ACTIONS(2679), - [anon_sym___asm] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_L_SQUOTE] = ACTIONS(2681), - [anon_sym_u_SQUOTE] = ACTIONS(2681), - [anon_sym_U_SQUOTE] = ACTIONS(2681), - [anon_sym_u8_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_L_DQUOTE] = ACTIONS(2681), - [anon_sym_u_DQUOTE] = ACTIONS(2681), - [anon_sym_U_DQUOTE] = ACTIONS(2681), - [anon_sym_u8_DQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_nullptr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2679), - [anon_sym_decltype] = ACTIONS(2679), - [anon_sym_explicit] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_operator] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_throw] = ACTIONS(2679), - [anon_sym_namespace] = ACTIONS(2679), - [anon_sym_static_assert] = ACTIONS(2679), - [anon_sym_concept] = ACTIONS(2679), - [anon_sym_co_return] = ACTIONS(2679), - [anon_sym_co_yield] = ACTIONS(2679), - [anon_sym_R_DQUOTE] = ACTIONS(2681), - [anon_sym_LR_DQUOTE] = ACTIONS(2681), - [anon_sym_uR_DQUOTE] = ACTIONS(2681), - [anon_sym_UR_DQUOTE] = ACTIONS(2681), - [anon_sym_u8R_DQUOTE] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_requires] = ACTIONS(2679), - [sym_this] = ACTIONS(2679), - }, - [STATE(646)] = { - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_export] = ACTIONS(3019), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), - }, - [STATE(647)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_include_token1] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym___cdecl] = ACTIONS(2687), - [anon_sym___clrcall] = ACTIONS(2687), - [anon_sym___stdcall] = ACTIONS(2687), - [anon_sym___fastcall] = ACTIONS(2687), - [anon_sym___thiscall] = ACTIONS(2687), - [anon_sym___vectorcall] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_namespace] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), - [anon_sym_concept] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), - }, - [STATE(648)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(649)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - }, - [STATE(650)] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_export] = ACTIONS(3023), - [anon_sym_module] = ACTIONS(3023), - [anon_sym_import] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), - }, - [STATE(651)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_include_token1] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym___cdecl] = ACTIONS(2735), - [anon_sym___clrcall] = ACTIONS(2735), - [anon_sym___stdcall] = ACTIONS(2735), - [anon_sym___fastcall] = ACTIONS(2735), - [anon_sym___thiscall] = ACTIONS(2735), - [anon_sym___vectorcall] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_namespace] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), - [anon_sym_concept] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), - }, - [STATE(652)] = { - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_include_token1] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym___cdecl] = ACTIONS(3041), - [anon_sym___clrcall] = ACTIONS(3041), - [anon_sym___stdcall] = ACTIONS(3041), - [anon_sym___fastcall] = ACTIONS(3041), - [anon_sym___thiscall] = ACTIONS(3041), - [anon_sym___vectorcall] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3041), - [anon_sym_compl] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym___alignof__] = ACTIONS(3041), - [anon_sym___alignof] = ACTIONS(3041), - [anon_sym__alignof] = ACTIONS(3041), - [anon_sym_alignof] = ACTIONS(3041), - [anon_sym__Alignof] = ACTIONS(3041), - [anon_sym_offsetof] = ACTIONS(3041), - [anon_sym__Generic] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym___asm__] = ACTIONS(3041), - [anon_sym___asm] = ACTIONS(3041), - [sym_number_literal] = ACTIONS(3043), - [anon_sym_L_SQUOTE] = ACTIONS(3043), - [anon_sym_u_SQUOTE] = ACTIONS(3043), - [anon_sym_U_SQUOTE] = ACTIONS(3043), - [anon_sym_u8_SQUOTE] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_L_DQUOTE] = ACTIONS(3043), - [anon_sym_u_DQUOTE] = ACTIONS(3043), - [anon_sym_U_DQUOTE] = ACTIONS(3043), - [anon_sym_u8_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [anon_sym_NULL] = ACTIONS(3041), - [anon_sym_nullptr] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3041), - [anon_sym_module] = ACTIONS(3041), - [anon_sym_import] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_delete] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3041), - [anon_sym_co_return] = ACTIONS(3041), - [anon_sym_co_yield] = ACTIONS(3041), - [anon_sym_R_DQUOTE] = ACTIONS(3043), - [anon_sym_LR_DQUOTE] = ACTIONS(3043), - [anon_sym_uR_DQUOTE] = ACTIONS(3043), - [anon_sym_UR_DQUOTE] = ACTIONS(3043), - [anon_sym_u8R_DQUOTE] = ACTIONS(3043), - [anon_sym_co_await] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_requires] = ACTIONS(3041), - [sym_this] = ACTIONS(3041), - }, - [STATE(653)] = { - [ts_builtin_sym_end] = ACTIONS(3335), - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_include_token1] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym___cdecl] = ACTIONS(3333), - [anon_sym___clrcall] = ACTIONS(3333), - [anon_sym___stdcall] = ACTIONS(3333), - [anon_sym___fastcall] = ACTIONS(3333), - [anon_sym___thiscall] = ACTIONS(3333), - [anon_sym___vectorcall] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym_not] = ACTIONS(3333), - [anon_sym_compl] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym___alignof__] = ACTIONS(3333), - [anon_sym___alignof] = ACTIONS(3333), - [anon_sym__alignof] = ACTIONS(3333), - [anon_sym_alignof] = ACTIONS(3333), - [anon_sym__Alignof] = ACTIONS(3333), - [anon_sym_offsetof] = ACTIONS(3333), - [anon_sym__Generic] = ACTIONS(3333), - [anon_sym_asm] = ACTIONS(3333), - [anon_sym___asm__] = ACTIONS(3333), - [anon_sym___asm] = ACTIONS(3333), - [sym_number_literal] = ACTIONS(3335), - [anon_sym_L_SQUOTE] = ACTIONS(3335), - [anon_sym_u_SQUOTE] = ACTIONS(3335), - [anon_sym_U_SQUOTE] = ACTIONS(3335), - [anon_sym_u8_SQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_L_DQUOTE] = ACTIONS(3335), - [anon_sym_u_DQUOTE] = ACTIONS(3335), - [anon_sym_U_DQUOTE] = ACTIONS(3335), - [anon_sym_u8_DQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [anon_sym_NULL] = ACTIONS(3333), - [anon_sym_nullptr] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), - [anon_sym_concept] = ACTIONS(3333), - [anon_sym_co_return] = ACTIONS(3333), - [anon_sym_co_yield] = ACTIONS(3333), - [anon_sym_R_DQUOTE] = ACTIONS(3335), - [anon_sym_LR_DQUOTE] = ACTIONS(3335), - [anon_sym_uR_DQUOTE] = ACTIONS(3335), - [anon_sym_UR_DQUOTE] = ACTIONS(3335), - [anon_sym_u8R_DQUOTE] = ACTIONS(3335), - [anon_sym_co_await] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - }, - [STATE(654)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - }, - [STATE(655)] = { - [ts_builtin_sym_end] = ACTIONS(3339), - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_include_token1] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym___cdecl] = ACTIONS(3337), - [anon_sym___clrcall] = ACTIONS(3337), - [anon_sym___stdcall] = ACTIONS(3337), - [anon_sym___fastcall] = ACTIONS(3337), - [anon_sym___thiscall] = ACTIONS(3337), - [anon_sym___vectorcall] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym_not] = ACTIONS(3337), - [anon_sym_compl] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym___alignof__] = ACTIONS(3337), - [anon_sym___alignof] = ACTIONS(3337), - [anon_sym__alignof] = ACTIONS(3337), - [anon_sym_alignof] = ACTIONS(3337), - [anon_sym__Alignof] = ACTIONS(3337), - [anon_sym_offsetof] = ACTIONS(3337), - [anon_sym__Generic] = ACTIONS(3337), - [anon_sym_asm] = ACTIONS(3337), - [anon_sym___asm__] = ACTIONS(3337), - [anon_sym___asm] = ACTIONS(3337), - [sym_number_literal] = ACTIONS(3339), - [anon_sym_L_SQUOTE] = ACTIONS(3339), - [anon_sym_u_SQUOTE] = ACTIONS(3339), - [anon_sym_U_SQUOTE] = ACTIONS(3339), - [anon_sym_u8_SQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_L_DQUOTE] = ACTIONS(3339), - [anon_sym_u_DQUOTE] = ACTIONS(3339), - [anon_sym_U_DQUOTE] = ACTIONS(3339), - [anon_sym_u8_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [anon_sym_NULL] = ACTIONS(3337), - [anon_sym_nullptr] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), - [anon_sym_concept] = ACTIONS(3337), - [anon_sym_co_return] = ACTIONS(3337), - [anon_sym_co_yield] = ACTIONS(3337), - [anon_sym_R_DQUOTE] = ACTIONS(3339), - [anon_sym_LR_DQUOTE] = ACTIONS(3339), - [anon_sym_uR_DQUOTE] = ACTIONS(3339), - [anon_sym_UR_DQUOTE] = ACTIONS(3339), - [anon_sym_u8R_DQUOTE] = ACTIONS(3339), - [anon_sym_co_await] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_requires] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - }, - [STATE(656)] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_include_token1] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym___cdecl] = ACTIONS(3055), - [anon_sym___clrcall] = ACTIONS(3055), - [anon_sym___stdcall] = ACTIONS(3055), - [anon_sym___fastcall] = ACTIONS(3055), - [anon_sym___thiscall] = ACTIONS(3055), - [anon_sym___vectorcall] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3055), - [anon_sym_default] = ACTIONS(3055), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_do] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(3055), - [anon_sym_compl] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3055), - [anon_sym___alignof__] = ACTIONS(3055), - [anon_sym___alignof] = ACTIONS(3055), - [anon_sym__alignof] = ACTIONS(3055), - [anon_sym_alignof] = ACTIONS(3055), - [anon_sym__Alignof] = ACTIONS(3055), - [anon_sym_offsetof] = ACTIONS(3055), - [anon_sym__Generic] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym___asm__] = ACTIONS(3055), - [anon_sym___asm] = ACTIONS(3055), - [sym_number_literal] = ACTIONS(3057), - [anon_sym_L_SQUOTE] = ACTIONS(3057), - [anon_sym_u_SQUOTE] = ACTIONS(3057), - [anon_sym_U_SQUOTE] = ACTIONS(3057), - [anon_sym_u8_SQUOTE] = ACTIONS(3057), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_L_DQUOTE] = ACTIONS(3057), - [anon_sym_u_DQUOTE] = ACTIONS(3057), - [anon_sym_U_DQUOTE] = ACTIONS(3057), - [anon_sym_u8_DQUOTE] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [anon_sym_NULL] = ACTIONS(3055), - [anon_sym_nullptr] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3055), - [anon_sym_module] = ACTIONS(3055), - [anon_sym_import] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_delete] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_namespace] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), - [anon_sym_concept] = ACTIONS(3055), - [anon_sym_co_return] = ACTIONS(3055), - [anon_sym_co_yield] = ACTIONS(3055), - [anon_sym_R_DQUOTE] = ACTIONS(3057), - [anon_sym_LR_DQUOTE] = ACTIONS(3057), - [anon_sym_uR_DQUOTE] = ACTIONS(3057), - [anon_sym_UR_DQUOTE] = ACTIONS(3057), - [anon_sym_u8R_DQUOTE] = ACTIONS(3057), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_requires] = ACTIONS(3055), - [sym_this] = ACTIONS(3055), - }, - [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [sym_identifier] = ACTIONS(3059), - [aux_sym_preproc_include_token1] = ACTIONS(3059), - [aux_sym_preproc_def_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), - [sym_preproc_directive] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym___extension__] = ACTIONS(3059), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(3059), - [anon_sym_extern] = ACTIONS(3059), - [anon_sym___attribute__] = ACTIONS(3059), - [anon_sym___attribute] = ACTIONS(3059), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3061), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), - [anon_sym___declspec] = ACTIONS(3059), - [anon_sym___based] = ACTIONS(3059), - [anon_sym___cdecl] = ACTIONS(3059), - [anon_sym___clrcall] = ACTIONS(3059), - [anon_sym___stdcall] = ACTIONS(3059), - [anon_sym___fastcall] = ACTIONS(3059), - [anon_sym___thiscall] = ACTIONS(3059), - [anon_sym___vectorcall] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_signed] = ACTIONS(3059), - [anon_sym_unsigned] = ACTIONS(3059), - [anon_sym_long] = ACTIONS(3059), - [anon_sym_short] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_register] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym___inline] = ACTIONS(3059), - [anon_sym___inline__] = ACTIONS(3059), - [anon_sym___forceinline] = ACTIONS(3059), - [anon_sym_thread_local] = ACTIONS(3059), - [anon_sym___thread] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_constexpr] = ACTIONS(3059), - [anon_sym_volatile] = ACTIONS(3059), - [anon_sym_restrict] = ACTIONS(3059), - [anon_sym___restrict__] = ACTIONS(3059), - [anon_sym__Atomic] = ACTIONS(3059), - [anon_sym__Noreturn] = ACTIONS(3059), - [anon_sym_noreturn] = ACTIONS(3059), - [anon_sym__Nonnull] = ACTIONS(3059), - [anon_sym_mutable] = ACTIONS(3059), - [anon_sym_constinit] = ACTIONS(3059), - [anon_sym_consteval] = ACTIONS(3059), - [anon_sym_alignas] = ACTIONS(3059), - [anon_sym__Alignas] = ACTIONS(3059), - [sym_primitive_type] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_switch] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_do] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_compl] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_sizeof] = ACTIONS(3059), - [anon_sym___alignof__] = ACTIONS(3059), - [anon_sym___alignof] = ACTIONS(3059), - [anon_sym__alignof] = ACTIONS(3059), - [anon_sym_alignof] = ACTIONS(3059), - [anon_sym__Alignof] = ACTIONS(3059), - [anon_sym_offsetof] = ACTIONS(3059), - [anon_sym__Generic] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym___asm__] = ACTIONS(3059), - [anon_sym___asm] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_L_SQUOTE] = ACTIONS(3061), - [anon_sym_u_SQUOTE] = ACTIONS(3061), - [anon_sym_U_SQUOTE] = ACTIONS(3061), - [anon_sym_u8_SQUOTE] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(3061), - [anon_sym_L_DQUOTE] = ACTIONS(3061), - [anon_sym_u_DQUOTE] = ACTIONS(3061), - [anon_sym_U_DQUOTE] = ACTIONS(3061), - [anon_sym_u8_DQUOTE] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [anon_sym_NULL] = ACTIONS(3059), - [anon_sym_nullptr] = ACTIONS(3059), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3059), - [anon_sym_decltype] = ACTIONS(3059), - [anon_sym_explicit] = ACTIONS(3059), - [anon_sym_typename] = ACTIONS(3059), - [anon_sym_export] = ACTIONS(3059), - [anon_sym_module] = ACTIONS(3059), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_template] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_delete] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_namespace] = ACTIONS(3059), - [anon_sym_static_assert] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3059), - [anon_sym_co_return] = ACTIONS(3059), - [anon_sym_co_yield] = ACTIONS(3059), - [anon_sym_R_DQUOTE] = ACTIONS(3061), - [anon_sym_LR_DQUOTE] = ACTIONS(3061), - [anon_sym_uR_DQUOTE] = ACTIONS(3061), - [anon_sym_UR_DQUOTE] = ACTIONS(3061), - [anon_sym_u8R_DQUOTE] = ACTIONS(3061), - [anon_sym_co_await] = ACTIONS(3059), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_requires] = ACTIONS(3059), - [sym_this] = ACTIONS(3059), - }, - [STATE(658)] = { - [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_SEMI] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym___attribute] = ACTIONS(3284), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_import] = 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_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), - }, - [STATE(659)] = { - [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_SEMI] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_import] = 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_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), - }, - [STATE(660)] = { - [ts_builtin_sym_end] = ACTIONS(3069), - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3067), - [anon_sym_module] = ACTIONS(3067), - [anon_sym_import] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), - }, - [STATE(661)] = { - [ts_builtin_sym_end] = ACTIONS(3073), - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3071), - [anon_sym_module] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), - }, - [STATE(662)] = { - [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_SEMI] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym___attribute] = ACTIONS(3292), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym__Alignas] = 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), - [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_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_import] = 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_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), - }, - [STATE(663)] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3097), - [aux_sym_preproc_include_token1] = ACTIONS(3097), - [aux_sym_preproc_def_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), - [sym_preproc_directive] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym___extension__] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3097), - [anon_sym_virtual] = ACTIONS(3097), - [anon_sym_extern] = ACTIONS(3097), - [anon_sym___attribute__] = ACTIONS(3097), - [anon_sym___attribute] = ACTIONS(3097), - [anon_sym_using] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), - [anon_sym___declspec] = ACTIONS(3097), - [anon_sym___based] = ACTIONS(3097), - [anon_sym___cdecl] = ACTIONS(3097), - [anon_sym___clrcall] = ACTIONS(3097), - [anon_sym___stdcall] = ACTIONS(3097), - [anon_sym___fastcall] = ACTIONS(3097), - [anon_sym___thiscall] = ACTIONS(3097), - [anon_sym___vectorcall] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_signed] = ACTIONS(3097), - [anon_sym_unsigned] = ACTIONS(3097), - [anon_sym_long] = ACTIONS(3097), - [anon_sym_short] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3097), - [anon_sym_register] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym___inline] = ACTIONS(3097), - [anon_sym___inline__] = ACTIONS(3097), - [anon_sym___forceinline] = ACTIONS(3097), - [anon_sym_thread_local] = ACTIONS(3097), - [anon_sym___thread] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_constexpr] = ACTIONS(3097), - [anon_sym_volatile] = ACTIONS(3097), - [anon_sym_restrict] = ACTIONS(3097), - [anon_sym___restrict__] = ACTIONS(3097), - [anon_sym__Atomic] = ACTIONS(3097), - [anon_sym__Noreturn] = ACTIONS(3097), - [anon_sym_noreturn] = ACTIONS(3097), - [anon_sym__Nonnull] = ACTIONS(3097), - [anon_sym_mutable] = ACTIONS(3097), - [anon_sym_constinit] = ACTIONS(3097), - [anon_sym_consteval] = ACTIONS(3097), - [anon_sym_alignas] = ACTIONS(3097), - [anon_sym__Alignas] = ACTIONS(3097), - [sym_primitive_type] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_switch] = ACTIONS(3097), - [anon_sym_case] = ACTIONS(3097), - [anon_sym_default] = ACTIONS(3097), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_not] = ACTIONS(3097), - [anon_sym_compl] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_sizeof] = ACTIONS(3097), - [anon_sym___alignof__] = ACTIONS(3097), - [anon_sym___alignof] = ACTIONS(3097), - [anon_sym__alignof] = ACTIONS(3097), - [anon_sym_alignof] = ACTIONS(3097), - [anon_sym__Alignof] = ACTIONS(3097), - [anon_sym_offsetof] = ACTIONS(3097), - [anon_sym__Generic] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym___asm__] = ACTIONS(3097), - [anon_sym___asm] = ACTIONS(3097), - [sym_number_literal] = ACTIONS(3099), - [anon_sym_L_SQUOTE] = ACTIONS(3099), - [anon_sym_u_SQUOTE] = ACTIONS(3099), - [anon_sym_U_SQUOTE] = ACTIONS(3099), - [anon_sym_u8_SQUOTE] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_L_DQUOTE] = ACTIONS(3099), - [anon_sym_u_DQUOTE] = ACTIONS(3099), - [anon_sym_U_DQUOTE] = ACTIONS(3099), - [anon_sym_u8_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [anon_sym_NULL] = ACTIONS(3097), - [anon_sym_nullptr] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3097), - [anon_sym_decltype] = ACTIONS(3097), - [anon_sym_explicit] = ACTIONS(3097), - [anon_sym_typename] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3097), - [anon_sym_module] = ACTIONS(3097), - [anon_sym_import] = ACTIONS(3097), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_delete] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_namespace] = ACTIONS(3097), - [anon_sym_static_assert] = ACTIONS(3097), - [anon_sym_concept] = ACTIONS(3097), - [anon_sym_co_return] = ACTIONS(3097), - [anon_sym_co_yield] = ACTIONS(3097), - [anon_sym_R_DQUOTE] = ACTIONS(3099), - [anon_sym_LR_DQUOTE] = ACTIONS(3099), - [anon_sym_uR_DQUOTE] = ACTIONS(3099), - [anon_sym_UR_DQUOTE] = ACTIONS(3099), - [anon_sym_u8R_DQUOTE] = ACTIONS(3099), - [anon_sym_co_await] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_requires] = ACTIONS(3097), - [sym_this] = ACTIONS(3097), - }, - [STATE(664)] = { - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_include_token1] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym___cdecl] = ACTIONS(3123), - [anon_sym___clrcall] = ACTIONS(3123), - [anon_sym___stdcall] = ACTIONS(3123), - [anon_sym___fastcall] = ACTIONS(3123), - [anon_sym___thiscall] = ACTIONS(3123), - [anon_sym___vectorcall] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3123), - [anon_sym_compl] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym___alignof__] = ACTIONS(3123), - [anon_sym___alignof] = ACTIONS(3123), - [anon_sym__alignof] = ACTIONS(3123), - [anon_sym_alignof] = ACTIONS(3123), - [anon_sym__Alignof] = ACTIONS(3123), - [anon_sym_offsetof] = ACTIONS(3123), - [anon_sym__Generic] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym___asm__] = ACTIONS(3123), - [anon_sym___asm] = ACTIONS(3123), - [sym_number_literal] = ACTIONS(3125), - [anon_sym_L_SQUOTE] = ACTIONS(3125), - [anon_sym_u_SQUOTE] = ACTIONS(3125), - [anon_sym_U_SQUOTE] = ACTIONS(3125), - [anon_sym_u8_SQUOTE] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3125), - [anon_sym_L_DQUOTE] = ACTIONS(3125), - [anon_sym_u_DQUOTE] = ACTIONS(3125), - [anon_sym_U_DQUOTE] = ACTIONS(3125), - [anon_sym_u8_DQUOTE] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [anon_sym_NULL] = ACTIONS(3123), - [anon_sym_nullptr] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_export] = ACTIONS(3123), - [anon_sym_module] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_delete] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(3123), - [anon_sym_co_return] = ACTIONS(3123), - [anon_sym_co_yield] = ACTIONS(3123), - [anon_sym_R_DQUOTE] = ACTIONS(3125), - [anon_sym_LR_DQUOTE] = ACTIONS(3125), - [anon_sym_uR_DQUOTE] = ACTIONS(3125), - [anon_sym_UR_DQUOTE] = ACTIONS(3125), - [anon_sym_u8R_DQUOTE] = ACTIONS(3125), - [anon_sym_co_await] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_requires] = ACTIONS(3123), - [sym_this] = ACTIONS(3123), - }, - [STATE(665)] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym___extension__] = ACTIONS(2777), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [anon_sym___alignof__] = ACTIONS(2777), - [anon_sym___alignof] = ACTIONS(2777), - [anon_sym__alignof] = ACTIONS(2777), - [anon_sym_alignof] = ACTIONS(2777), - [anon_sym__Alignof] = ACTIONS(2777), - [anon_sym_offsetof] = ACTIONS(2777), - [anon_sym__Generic] = ACTIONS(2777), - [anon_sym_asm] = ACTIONS(2777), - [anon_sym___asm__] = ACTIONS(2777), - [anon_sym___asm] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [anon_sym_NULL] = ACTIONS(2777), - [anon_sym_nullptr] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - }, - [STATE(666)] = { - [sym_identifier] = ACTIONS(2755), - [aux_sym_preproc_include_token1] = ACTIONS(2755), - [aux_sym_preproc_def_token1] = ACTIONS(2755), - [aux_sym_preproc_if_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2755), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2755), - [sym_preproc_directive] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym___based] = ACTIONS(2755), - [anon_sym___cdecl] = ACTIONS(2755), - [anon_sym___clrcall] = ACTIONS(2755), - [anon_sym___stdcall] = ACTIONS(2755), - [anon_sym___fastcall] = ACTIONS(2755), - [anon_sym___thiscall] = ACTIONS(2755), - [anon_sym___vectorcall] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_explicit] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_operator] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_static_assert] = ACTIONS(2755), - [anon_sym_concept] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), - }, - [STATE(667)] = { - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3131), - [aux_sym_preproc_include_token1] = ACTIONS(3131), - [aux_sym_preproc_def_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), - [sym_preproc_directive] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym___extension__] = ACTIONS(3131), - [anon_sym_typedef] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym___attribute__] = ACTIONS(3131), - [anon_sym___attribute] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), - [anon_sym___declspec] = ACTIONS(3131), - [anon_sym___based] = ACTIONS(3131), - [anon_sym___cdecl] = ACTIONS(3131), - [anon_sym___clrcall] = ACTIONS(3131), - [anon_sym___stdcall] = ACTIONS(3131), - [anon_sym___fastcall] = ACTIONS(3131), - [anon_sym___thiscall] = ACTIONS(3131), - [anon_sym___vectorcall] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_signed] = ACTIONS(3131), - [anon_sym_unsigned] = ACTIONS(3131), - [anon_sym_long] = ACTIONS(3131), - [anon_sym_short] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_register] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym___inline] = ACTIONS(3131), - [anon_sym___inline__] = ACTIONS(3131), - [anon_sym___forceinline] = ACTIONS(3131), - [anon_sym_thread_local] = ACTIONS(3131), - [anon_sym___thread] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_constexpr] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_restrict] = ACTIONS(3131), - [anon_sym___restrict__] = ACTIONS(3131), - [anon_sym__Atomic] = ACTIONS(3131), - [anon_sym__Noreturn] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym__Nonnull] = ACTIONS(3131), - [anon_sym_mutable] = ACTIONS(3131), - [anon_sym_constinit] = ACTIONS(3131), - [anon_sym_consteval] = ACTIONS(3131), - [anon_sym_alignas] = ACTIONS(3131), - [anon_sym__Alignas] = ACTIONS(3131), - [sym_primitive_type] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_compl] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym___alignof__] = ACTIONS(3131), - [anon_sym___alignof] = ACTIONS(3131), - [anon_sym__alignof] = ACTIONS(3131), - [anon_sym_alignof] = ACTIONS(3131), - [anon_sym__Alignof] = ACTIONS(3131), - [anon_sym_offsetof] = ACTIONS(3131), - [anon_sym__Generic] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym___asm__] = ACTIONS(3131), - [anon_sym___asm] = ACTIONS(3131), - [sym_number_literal] = ACTIONS(3133), - [anon_sym_L_SQUOTE] = ACTIONS(3133), - [anon_sym_u_SQUOTE] = ACTIONS(3133), - [anon_sym_U_SQUOTE] = ACTIONS(3133), - [anon_sym_u8_SQUOTE] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3133), - [anon_sym_L_DQUOTE] = ACTIONS(3133), - [anon_sym_u_DQUOTE] = ACTIONS(3133), - [anon_sym_U_DQUOTE] = ACTIONS(3133), - [anon_sym_u8_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [anon_sym_NULL] = ACTIONS(3131), - [anon_sym_nullptr] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3131), - [anon_sym_decltype] = ACTIONS(3131), - [anon_sym_explicit] = ACTIONS(3131), - [anon_sym_typename] = ACTIONS(3131), - [anon_sym_export] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_template] = ACTIONS(3131), - [anon_sym_operator] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_delete] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_static_assert] = ACTIONS(3131), - [anon_sym_concept] = ACTIONS(3131), - [anon_sym_co_return] = ACTIONS(3131), - [anon_sym_co_yield] = ACTIONS(3131), - [anon_sym_R_DQUOTE] = ACTIONS(3133), - [anon_sym_LR_DQUOTE] = ACTIONS(3133), - [anon_sym_uR_DQUOTE] = ACTIONS(3133), - [anon_sym_UR_DQUOTE] = ACTIONS(3133), - [anon_sym_u8R_DQUOTE] = ACTIONS(3133), - [anon_sym_co_await] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_requires] = ACTIONS(3131), - [sym_this] = ACTIONS(3131), - }, - [STATE(668)] = { - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym___attribute] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym__Nonnull] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym__Alignas] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [anon_sym___asm] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_export] = ACTIONS(3139), - [anon_sym_module] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - }, - [STATE(669)] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym___extension__] = ACTIONS(2777), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [anon_sym___alignof__] = ACTIONS(2777), - [anon_sym___alignof] = ACTIONS(2777), - [anon_sym__alignof] = ACTIONS(2777), - [anon_sym_alignof] = ACTIONS(2777), - [anon_sym__Alignof] = ACTIONS(2777), - [anon_sym_offsetof] = ACTIONS(2777), - [anon_sym__Generic] = ACTIONS(2777), - [anon_sym_asm] = ACTIONS(2777), - [anon_sym___asm__] = ACTIONS(2777), - [anon_sym___asm] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [anon_sym_NULL] = ACTIONS(2777), - [anon_sym_nullptr] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - }, - [STATE(670)] = { - [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_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(671)] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token2] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), - }, - [STATE(672)] = { - [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_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_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), - [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_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_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), - }, - [STATE(673)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_include_token1] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token2] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = 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_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = ACTIONS(3318), - [anon_sym___cdecl] = ACTIONS(3318), - [anon_sym___clrcall] = ACTIONS(3318), - [anon_sym___stdcall] = ACTIONS(3318), - [anon_sym___fastcall] = ACTIONS(3318), - [anon_sym___thiscall] = ACTIONS(3318), - [anon_sym___vectorcall] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3320), - [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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym___try] = ACTIONS(3318), - [anon_sym___leave] = 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), - [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_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), - [anon_sym_concept] = ACTIONS(3318), - [anon_sym_co_return] = ACTIONS(3318), - [anon_sym_co_yield] = 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), - }, - [STATE(674)] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token2] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), - }, - [STATE(675)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_include_token1] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token2] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym___cdecl] = ACTIONS(3325), - [anon_sym___clrcall] = ACTIONS(3325), - [anon_sym___stdcall] = ACTIONS(3325), - [anon_sym___fastcall] = ACTIONS(3325), - [anon_sym___thiscall] = ACTIONS(3325), - [anon_sym___vectorcall] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym___try] = ACTIONS(3325), - [anon_sym___leave] = ACTIONS(3325), - [anon_sym_not] = ACTIONS(3325), - [anon_sym_compl] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym___alignof__] = ACTIONS(3325), - [anon_sym___alignof] = ACTIONS(3325), - [anon_sym__alignof] = ACTIONS(3325), - [anon_sym_alignof] = ACTIONS(3325), - [anon_sym__Alignof] = ACTIONS(3325), - [anon_sym_offsetof] = ACTIONS(3325), - [anon_sym__Generic] = ACTIONS(3325), - [anon_sym_asm] = ACTIONS(3325), - [anon_sym___asm__] = ACTIONS(3325), - [anon_sym___asm] = ACTIONS(3325), - [sym_number_literal] = ACTIONS(3327), - [anon_sym_L_SQUOTE] = ACTIONS(3327), - [anon_sym_u_SQUOTE] = ACTIONS(3327), - [anon_sym_U_SQUOTE] = ACTIONS(3327), - [anon_sym_u8_SQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_L_DQUOTE] = ACTIONS(3327), - [anon_sym_u_DQUOTE] = ACTIONS(3327), - [anon_sym_U_DQUOTE] = ACTIONS(3327), - [anon_sym_u8_DQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [anon_sym_NULL] = ACTIONS(3325), - [anon_sym_nullptr] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), - [anon_sym_concept] = ACTIONS(3325), - [anon_sym_co_return] = ACTIONS(3325), - [anon_sym_co_yield] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_requires] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - }, - [STATE(676)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_include_token1] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token2] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym___cdecl] = ACTIONS(3329), - [anon_sym___clrcall] = ACTIONS(3329), - [anon_sym___stdcall] = ACTIONS(3329), - [anon_sym___fastcall] = ACTIONS(3329), - [anon_sym___thiscall] = ACTIONS(3329), - [anon_sym___vectorcall] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym___try] = ACTIONS(3329), - [anon_sym___leave] = ACTIONS(3329), - [anon_sym_not] = ACTIONS(3329), - [anon_sym_compl] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym___alignof__] = ACTIONS(3329), - [anon_sym___alignof] = ACTIONS(3329), - [anon_sym__alignof] = ACTIONS(3329), - [anon_sym_alignof] = ACTIONS(3329), - [anon_sym__Alignof] = ACTIONS(3329), - [anon_sym_offsetof] = ACTIONS(3329), - [anon_sym__Generic] = ACTIONS(3329), - [anon_sym_asm] = ACTIONS(3329), - [anon_sym___asm__] = ACTIONS(3329), - [anon_sym___asm] = ACTIONS(3329), - [sym_number_literal] = ACTIONS(3331), - [anon_sym_L_SQUOTE] = ACTIONS(3331), - [anon_sym_u_SQUOTE] = ACTIONS(3331), - [anon_sym_U_SQUOTE] = ACTIONS(3331), - [anon_sym_u8_SQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_L_DQUOTE] = ACTIONS(3331), - [anon_sym_u_DQUOTE] = ACTIONS(3331), - [anon_sym_U_DQUOTE] = ACTIONS(3331), - [anon_sym_u8_DQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [anon_sym_NULL] = ACTIONS(3329), - [anon_sym_nullptr] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), - [anon_sym_concept] = ACTIONS(3329), - [anon_sym_co_return] = ACTIONS(3329), - [anon_sym_co_yield] = ACTIONS(3329), - [anon_sym_R_DQUOTE] = ACTIONS(3331), - [anon_sym_LR_DQUOTE] = ACTIONS(3331), - [anon_sym_uR_DQUOTE] = ACTIONS(3331), - [anon_sym_UR_DQUOTE] = ACTIONS(3331), - [anon_sym_u8R_DQUOTE] = ACTIONS(3331), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_requires] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - }, - [STATE(677)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_include_token1] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token2] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym___cdecl] = ACTIONS(3333), - [anon_sym___clrcall] = ACTIONS(3333), - [anon_sym___stdcall] = ACTIONS(3333), - [anon_sym___fastcall] = ACTIONS(3333), - [anon_sym___thiscall] = ACTIONS(3333), - [anon_sym___vectorcall] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym___try] = ACTIONS(3333), - [anon_sym___leave] = ACTIONS(3333), - [anon_sym_not] = ACTIONS(3333), - [anon_sym_compl] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym___alignof__] = ACTIONS(3333), - [anon_sym___alignof] = ACTIONS(3333), - [anon_sym__alignof] = ACTIONS(3333), - [anon_sym_alignof] = ACTIONS(3333), - [anon_sym__Alignof] = ACTIONS(3333), - [anon_sym_offsetof] = ACTIONS(3333), - [anon_sym__Generic] = ACTIONS(3333), - [anon_sym_asm] = ACTIONS(3333), - [anon_sym___asm__] = ACTIONS(3333), - [anon_sym___asm] = ACTIONS(3333), - [sym_number_literal] = ACTIONS(3335), - [anon_sym_L_SQUOTE] = ACTIONS(3335), - [anon_sym_u_SQUOTE] = ACTIONS(3335), - [anon_sym_U_SQUOTE] = ACTIONS(3335), - [anon_sym_u8_SQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_L_DQUOTE] = ACTIONS(3335), - [anon_sym_u_DQUOTE] = ACTIONS(3335), - [anon_sym_U_DQUOTE] = ACTIONS(3335), - [anon_sym_u8_DQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [anon_sym_NULL] = ACTIONS(3333), - [anon_sym_nullptr] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), - [anon_sym_concept] = ACTIONS(3333), - [anon_sym_co_return] = ACTIONS(3333), - [anon_sym_co_yield] = ACTIONS(3333), - [anon_sym_R_DQUOTE] = ACTIONS(3335), - [anon_sym_LR_DQUOTE] = ACTIONS(3335), - [anon_sym_uR_DQUOTE] = ACTIONS(3335), - [anon_sym_UR_DQUOTE] = ACTIONS(3335), - [anon_sym_u8R_DQUOTE] = ACTIONS(3335), - [anon_sym_co_await] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - }, - [STATE(678)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_include_token1] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token2] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym___cdecl] = ACTIONS(3337), - [anon_sym___clrcall] = ACTIONS(3337), - [anon_sym___stdcall] = ACTIONS(3337), - [anon_sym___fastcall] = ACTIONS(3337), - [anon_sym___thiscall] = ACTIONS(3337), - [anon_sym___vectorcall] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym___try] = ACTIONS(3337), - [anon_sym___leave] = ACTIONS(3337), - [anon_sym_not] = ACTIONS(3337), - [anon_sym_compl] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym___alignof__] = ACTIONS(3337), - [anon_sym___alignof] = ACTIONS(3337), - [anon_sym__alignof] = ACTIONS(3337), - [anon_sym_alignof] = ACTIONS(3337), - [anon_sym__Alignof] = ACTIONS(3337), - [anon_sym_offsetof] = ACTIONS(3337), - [anon_sym__Generic] = ACTIONS(3337), - [anon_sym_asm] = ACTIONS(3337), - [anon_sym___asm__] = ACTIONS(3337), - [anon_sym___asm] = ACTIONS(3337), - [sym_number_literal] = ACTIONS(3339), - [anon_sym_L_SQUOTE] = ACTIONS(3339), - [anon_sym_u_SQUOTE] = ACTIONS(3339), - [anon_sym_U_SQUOTE] = ACTIONS(3339), - [anon_sym_u8_SQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_L_DQUOTE] = ACTIONS(3339), - [anon_sym_u_DQUOTE] = ACTIONS(3339), - [anon_sym_U_DQUOTE] = ACTIONS(3339), - [anon_sym_u8_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [anon_sym_NULL] = ACTIONS(3337), - [anon_sym_nullptr] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), - [anon_sym_concept] = ACTIONS(3337), - [anon_sym_co_return] = ACTIONS(3337), - [anon_sym_co_yield] = ACTIONS(3337), - [anon_sym_R_DQUOTE] = ACTIONS(3339), - [anon_sym_LR_DQUOTE] = ACTIONS(3339), - [anon_sym_uR_DQUOTE] = ACTIONS(3339), - [anon_sym_UR_DQUOTE] = ACTIONS(3339), - [anon_sym_u8R_DQUOTE] = ACTIONS(3339), - [anon_sym_co_await] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_requires] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - }, - [STATE(679)] = { - [sym_identifier] = ACTIONS(3097), - [aux_sym_preproc_include_token1] = ACTIONS(3097), - [aux_sym_preproc_def_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), + [STATE(286)] = { + [sym_preproc_def] = STATE(289), + [sym_preproc_function_def] = STATE(289), + [sym_preproc_call] = STATE(289), + [sym_preproc_if_in_field_declaration_list] = STATE(289), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(289), + [sym_preproc_else_in_field_declaration_list] = STATE(11112), + [sym_preproc_elif_in_field_declaration_list] = STATE(11112), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11112), + [sym_type_definition] = STATE(289), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(289), + [sym_field_declaration] = STATE(289), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(289), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(289), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(289), + [sym_operator_cast_declaration] = STATE(289), + [sym_constructor_or_destructor_definition] = STATE(289), + [sym_constructor_or_destructor_declaration] = STATE(289), + [sym_friend_declaration] = STATE(289), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(289), + [sym_alias_declaration] = STATE(289), + [sym_static_assert_declaration] = STATE(289), + [sym_consteval_block_declaration] = STATE(289), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(289), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), [aux_sym_preproc_if_token2] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), - [sym_preproc_directive] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym___extension__] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3097), - [anon_sym_virtual] = ACTIONS(3097), - [anon_sym_extern] = ACTIONS(3097), - [anon_sym___attribute__] = ACTIONS(3097), - [anon_sym___attribute] = ACTIONS(3097), - [anon_sym_using] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), - [anon_sym___declspec] = ACTIONS(3097), - [anon_sym___based] = ACTIONS(3097), - [anon_sym___cdecl] = ACTIONS(3097), - [anon_sym___clrcall] = ACTIONS(3097), - [anon_sym___stdcall] = ACTIONS(3097), - [anon_sym___fastcall] = ACTIONS(3097), - [anon_sym___thiscall] = ACTIONS(3097), - [anon_sym___vectorcall] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_signed] = ACTIONS(3097), - [anon_sym_unsigned] = ACTIONS(3097), - [anon_sym_long] = ACTIONS(3097), - [anon_sym_short] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3097), - [anon_sym_register] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym___inline] = ACTIONS(3097), - [anon_sym___inline__] = ACTIONS(3097), - [anon_sym___forceinline] = ACTIONS(3097), - [anon_sym_thread_local] = ACTIONS(3097), - [anon_sym___thread] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_constexpr] = ACTIONS(3097), - [anon_sym_volatile] = ACTIONS(3097), - [anon_sym_restrict] = ACTIONS(3097), - [anon_sym___restrict__] = ACTIONS(3097), - [anon_sym__Atomic] = ACTIONS(3097), - [anon_sym__Noreturn] = ACTIONS(3097), - [anon_sym_noreturn] = ACTIONS(3097), - [anon_sym__Nonnull] = ACTIONS(3097), - [anon_sym_mutable] = ACTIONS(3097), - [anon_sym_constinit] = ACTIONS(3097), - [anon_sym_consteval] = ACTIONS(3097), - [anon_sym_alignas] = ACTIONS(3097), - [anon_sym__Alignas] = ACTIONS(3097), - [sym_primitive_type] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_switch] = ACTIONS(3097), - [anon_sym_case] = ACTIONS(3097), - [anon_sym_default] = ACTIONS(3097), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym___try] = ACTIONS(3097), - [anon_sym___leave] = ACTIONS(3097), - [anon_sym_not] = ACTIONS(3097), - [anon_sym_compl] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_sizeof] = ACTIONS(3097), - [anon_sym___alignof__] = ACTIONS(3097), - [anon_sym___alignof] = ACTIONS(3097), - [anon_sym__alignof] = ACTIONS(3097), - [anon_sym_alignof] = ACTIONS(3097), - [anon_sym__Alignof] = ACTIONS(3097), - [anon_sym_offsetof] = ACTIONS(3097), - [anon_sym__Generic] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym___asm__] = ACTIONS(3097), - [anon_sym___asm] = ACTIONS(3097), - [sym_number_literal] = ACTIONS(3099), - [anon_sym_L_SQUOTE] = ACTIONS(3099), - [anon_sym_u_SQUOTE] = ACTIONS(3099), - [anon_sym_U_SQUOTE] = ACTIONS(3099), - [anon_sym_u8_SQUOTE] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_L_DQUOTE] = ACTIONS(3099), - [anon_sym_u_DQUOTE] = ACTIONS(3099), - [anon_sym_U_DQUOTE] = ACTIONS(3099), - [anon_sym_u8_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [anon_sym_NULL] = ACTIONS(3097), - [anon_sym_nullptr] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3097), - [anon_sym_decltype] = ACTIONS(3097), - [anon_sym_explicit] = ACTIONS(3097), - [anon_sym_typename] = ACTIONS(3097), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_delete] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_namespace] = ACTIONS(3097), - [anon_sym_static_assert] = ACTIONS(3097), - [anon_sym_concept] = ACTIONS(3097), - [anon_sym_co_return] = ACTIONS(3097), - [anon_sym_co_yield] = ACTIONS(3097), - [anon_sym_R_DQUOTE] = ACTIONS(3099), - [anon_sym_LR_DQUOTE] = ACTIONS(3099), - [anon_sym_uR_DQUOTE] = ACTIONS(3099), - [anon_sym_UR_DQUOTE] = ACTIONS(3099), - [anon_sym_u8R_DQUOTE] = ACTIONS(3099), - [anon_sym_co_await] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_requires] = ACTIONS(3097), - [sym_this] = ACTIONS(3097), - }, - [STATE(680)] = { - [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_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(681)] = { - [sym_identifier] = ACTIONS(3131), - [aux_sym_preproc_include_token1] = ACTIONS(3131), - [aux_sym_preproc_def_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token2] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), - [sym_preproc_directive] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym___extension__] = ACTIONS(3131), - [anon_sym_typedef] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym___attribute__] = ACTIONS(3131), - [anon_sym___attribute] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), - [anon_sym___declspec] = ACTIONS(3131), - [anon_sym___based] = ACTIONS(3131), - [anon_sym___cdecl] = ACTIONS(3131), - [anon_sym___clrcall] = ACTIONS(3131), - [anon_sym___stdcall] = ACTIONS(3131), - [anon_sym___fastcall] = ACTIONS(3131), - [anon_sym___thiscall] = ACTIONS(3131), - [anon_sym___vectorcall] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_signed] = ACTIONS(3131), - [anon_sym_unsigned] = ACTIONS(3131), - [anon_sym_long] = ACTIONS(3131), - [anon_sym_short] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_register] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym___inline] = ACTIONS(3131), - [anon_sym___inline__] = ACTIONS(3131), - [anon_sym___forceinline] = ACTIONS(3131), - [anon_sym_thread_local] = ACTIONS(3131), - [anon_sym___thread] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_constexpr] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_restrict] = ACTIONS(3131), - [anon_sym___restrict__] = ACTIONS(3131), - [anon_sym__Atomic] = ACTIONS(3131), - [anon_sym__Noreturn] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym__Nonnull] = ACTIONS(3131), - [anon_sym_mutable] = ACTIONS(3131), - [anon_sym_constinit] = ACTIONS(3131), - [anon_sym_consteval] = ACTIONS(3131), - [anon_sym_alignas] = ACTIONS(3131), - [anon_sym__Alignas] = ACTIONS(3131), - [sym_primitive_type] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym___try] = ACTIONS(3131), - [anon_sym___leave] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_compl] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym___alignof__] = ACTIONS(3131), - [anon_sym___alignof] = ACTIONS(3131), - [anon_sym__alignof] = ACTIONS(3131), - [anon_sym_alignof] = ACTIONS(3131), - [anon_sym__Alignof] = ACTIONS(3131), - [anon_sym_offsetof] = ACTIONS(3131), - [anon_sym__Generic] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym___asm__] = ACTIONS(3131), - [anon_sym___asm] = ACTIONS(3131), - [sym_number_literal] = ACTIONS(3133), - [anon_sym_L_SQUOTE] = ACTIONS(3133), - [anon_sym_u_SQUOTE] = ACTIONS(3133), - [anon_sym_U_SQUOTE] = ACTIONS(3133), - [anon_sym_u8_SQUOTE] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3133), - [anon_sym_L_DQUOTE] = ACTIONS(3133), - [anon_sym_u_DQUOTE] = ACTIONS(3133), - [anon_sym_U_DQUOTE] = ACTIONS(3133), - [anon_sym_u8_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [anon_sym_NULL] = ACTIONS(3131), - [anon_sym_nullptr] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3131), - [anon_sym_decltype] = ACTIONS(3131), - [anon_sym_explicit] = ACTIONS(3131), - [anon_sym_typename] = ACTIONS(3131), - [anon_sym_template] = ACTIONS(3131), - [anon_sym_operator] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_delete] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_static_assert] = ACTIONS(3131), - [anon_sym_concept] = ACTIONS(3131), - [anon_sym_co_return] = ACTIONS(3131), - [anon_sym_co_yield] = ACTIONS(3131), - [anon_sym_R_DQUOTE] = ACTIONS(3133), - [anon_sym_LR_DQUOTE] = ACTIONS(3133), - [anon_sym_uR_DQUOTE] = ACTIONS(3133), - [anon_sym_UR_DQUOTE] = ACTIONS(3133), - [anon_sym_u8R_DQUOTE] = ACTIONS(3133), - [anon_sym_co_await] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_requires] = ACTIONS(3131), - [sym_this] = ACTIONS(3131), - }, - [STATE(682)] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token2] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym___attribute] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym__Nonnull] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym__Alignas] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [anon_sym___asm] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - }, - [STATE(683)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_include_token1] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token2] = ACTIONS(3037), [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym___cdecl] = ACTIONS(3037), - [anon_sym___clrcall] = ACTIONS(3037), - [anon_sym___stdcall] = ACTIONS(3037), - [anon_sym___fastcall] = ACTIONS(3037), - [anon_sym___thiscall] = ACTIONS(3037), - [anon_sym___vectorcall] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_switch] = ACTIONS(3037), - [anon_sym_case] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym___try] = ACTIONS(3037), - [anon_sym___leave] = ACTIONS(3037), - [anon_sym_not] = ACTIONS(3037), - [anon_sym_compl] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(3037), - [anon_sym___alignof__] = ACTIONS(3037), - [anon_sym___alignof] = ACTIONS(3037), - [anon_sym__alignof] = ACTIONS(3037), - [anon_sym_alignof] = ACTIONS(3037), - [anon_sym__Alignof] = ACTIONS(3037), - [anon_sym_offsetof] = ACTIONS(3037), - [anon_sym__Generic] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym___asm__] = ACTIONS(3037), - [anon_sym___asm] = ACTIONS(3037), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_L_SQUOTE] = ACTIONS(3039), - [anon_sym_u_SQUOTE] = ACTIONS(3039), - [anon_sym_U_SQUOTE] = ACTIONS(3039), - [anon_sym_u8_SQUOTE] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_L_DQUOTE] = ACTIONS(3039), - [anon_sym_u_DQUOTE] = ACTIONS(3039), - [anon_sym_U_DQUOTE] = ACTIONS(3039), - [anon_sym_u8_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [anon_sym_NULL] = ACTIONS(3037), - [anon_sym_nullptr] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_delete] = ACTIONS(3037), - [anon_sym_throw] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), - [anon_sym_concept] = ACTIONS(3037), - [anon_sym_co_return] = ACTIONS(3037), - [anon_sym_co_yield] = ACTIONS(3037), - [anon_sym_R_DQUOTE] = ACTIONS(3039), - [anon_sym_LR_DQUOTE] = ACTIONS(3039), - [anon_sym_uR_DQUOTE] = ACTIONS(3039), - [anon_sym_UR_DQUOTE] = ACTIONS(3039), - [anon_sym_u8R_DQUOTE] = ACTIONS(3039), - [anon_sym_co_await] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3037), - [sym_this] = ACTIONS(3037), - }, - [STATE(684)] = { - [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_virtual] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym___attribute] = ACTIONS(3207), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(685)] = { - [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_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(686)] = { - [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_virtual] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym___attribute] = ACTIONS(3284), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(687)] = { - [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_virtual] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym___attribute] = ACTIONS(3292), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(688)] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token2] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym___extension__] = ACTIONS(2781), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym___attribute] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym___inline] = ACTIONS(2781), - [anon_sym___inline__] = ACTIONS(2781), - [anon_sym___forceinline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym___thread] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym___restrict__] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym__Noreturn] = ACTIONS(2781), - [anon_sym_noreturn] = ACTIONS(2781), - [anon_sym__Nonnull] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_alignas] = ACTIONS(2781), - [anon_sym__Alignas] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym___try] = ACTIONS(2781), - [anon_sym___leave] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [anon_sym___alignof__] = ACTIONS(2781), - [anon_sym___alignof] = ACTIONS(2781), - [anon_sym__alignof] = ACTIONS(2781), - [anon_sym_alignof] = ACTIONS(2781), - [anon_sym__Alignof] = ACTIONS(2781), - [anon_sym_offsetof] = ACTIONS(2781), - [anon_sym__Generic] = ACTIONS(2781), - [anon_sym_asm] = ACTIONS(2781), - [anon_sym___asm__] = ACTIONS(2781), - [anon_sym___asm] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [anon_sym_NULL] = ACTIONS(2781), - [anon_sym_nullptr] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - }, - [STATE(689)] = { - [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_virtual] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym___attribute] = ACTIONS(2849), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym__Alignas] = 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_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), - [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_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_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = 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), - }, - [STATE(690)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(691)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(692)] = { - [sym_identifier] = ACTIONS(3254), - [aux_sym_preproc_include_token1] = ACTIONS(3254), - [aux_sym_preproc_def_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3254), - [sym_preproc_directive] = ACTIONS(3254), - [anon_sym_LPAREN2] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym___extension__] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_virtual] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym___attribute__] = ACTIONS(3254), - [anon_sym___attribute] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_COLON_COLON] = ACTIONS(3256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3256), - [anon_sym___declspec] = ACTIONS(3254), - [anon_sym___based] = ACTIONS(3254), - [anon_sym___cdecl] = ACTIONS(3254), - [anon_sym___clrcall] = ACTIONS(3254), - [anon_sym___stdcall] = ACTIONS(3254), - [anon_sym___fastcall] = ACTIONS(3254), - [anon_sym___thiscall] = ACTIONS(3254), - [anon_sym___vectorcall] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_signed] = ACTIONS(3254), - [anon_sym_unsigned] = ACTIONS(3254), - [anon_sym_long] = ACTIONS(3254), - [anon_sym_short] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_register] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym___inline] = ACTIONS(3254), - [anon_sym___inline__] = ACTIONS(3254), - [anon_sym___forceinline] = ACTIONS(3254), - [anon_sym_thread_local] = ACTIONS(3254), - [anon_sym___thread] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_constexpr] = ACTIONS(3254), - [anon_sym_volatile] = ACTIONS(3254), - [anon_sym_restrict] = ACTIONS(3254), - [anon_sym___restrict__] = ACTIONS(3254), - [anon_sym__Atomic] = ACTIONS(3254), - [anon_sym__Noreturn] = ACTIONS(3254), - [anon_sym_noreturn] = ACTIONS(3254), - [anon_sym__Nonnull] = ACTIONS(3254), - [anon_sym_mutable] = ACTIONS(3254), - [anon_sym_constinit] = ACTIONS(3254), - [anon_sym_consteval] = ACTIONS(3254), - [anon_sym_alignas] = ACTIONS(3254), - [anon_sym__Alignas] = ACTIONS(3254), - [sym_primitive_type] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym___try] = ACTIONS(3254), - [anon_sym___leave] = ACTIONS(3254), - [anon_sym_not] = ACTIONS(3254), - [anon_sym_compl] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_sizeof] = ACTIONS(3254), - [anon_sym___alignof__] = ACTIONS(3254), - [anon_sym___alignof] = ACTIONS(3254), - [anon_sym__alignof] = ACTIONS(3254), - [anon_sym_alignof] = ACTIONS(3254), - [anon_sym__Alignof] = ACTIONS(3254), - [anon_sym_offsetof] = ACTIONS(3254), - [anon_sym__Generic] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym___asm__] = ACTIONS(3254), - [anon_sym___asm] = ACTIONS(3254), - [sym_number_literal] = ACTIONS(3256), - [anon_sym_L_SQUOTE] = ACTIONS(3256), - [anon_sym_u_SQUOTE] = ACTIONS(3256), - [anon_sym_U_SQUOTE] = ACTIONS(3256), - [anon_sym_u8_SQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_L_DQUOTE] = ACTIONS(3256), - [anon_sym_u_DQUOTE] = ACTIONS(3256), - [anon_sym_U_DQUOTE] = ACTIONS(3256), - [anon_sym_u8_DQUOTE] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [anon_sym_NULL] = ACTIONS(3254), - [anon_sym_nullptr] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3254), - [anon_sym_decltype] = ACTIONS(3254), - [anon_sym_explicit] = ACTIONS(3254), - [anon_sym_typename] = ACTIONS(3254), - [anon_sym_template] = ACTIONS(3254), - [anon_sym_operator] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_static_assert] = ACTIONS(3254), - [anon_sym_concept] = ACTIONS(3254), - [anon_sym_co_return] = ACTIONS(3254), - [anon_sym_co_yield] = ACTIONS(3254), - [anon_sym_R_DQUOTE] = ACTIONS(3256), - [anon_sym_LR_DQUOTE] = ACTIONS(3256), - [anon_sym_uR_DQUOTE] = ACTIONS(3256), - [anon_sym_UR_DQUOTE] = ACTIONS(3256), - [anon_sym_u8R_DQUOTE] = ACTIONS(3256), - [anon_sym_co_await] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_requires] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - }, - [STATE(693)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(694)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_include_token1] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym___cdecl] = ACTIONS(3260), - [anon_sym___clrcall] = ACTIONS(3260), - [anon_sym___stdcall] = ACTIONS(3260), - [anon_sym___fastcall] = ACTIONS(3260), - [anon_sym___thiscall] = ACTIONS(3260), - [anon_sym___vectorcall] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_goto] = ACTIONS(3260), - [anon_sym___try] = ACTIONS(3260), - [anon_sym___leave] = ACTIONS(3260), - [anon_sym_not] = ACTIONS(3260), - [anon_sym_compl] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_sizeof] = ACTIONS(3260), - [anon_sym___alignof__] = ACTIONS(3260), - [anon_sym___alignof] = ACTIONS(3260), - [anon_sym__alignof] = ACTIONS(3260), - [anon_sym_alignof] = ACTIONS(3260), - [anon_sym__Alignof] = ACTIONS(3260), - [anon_sym_offsetof] = ACTIONS(3260), - [anon_sym__Generic] = ACTIONS(3260), - [anon_sym_asm] = ACTIONS(3260), - [anon_sym___asm__] = ACTIONS(3260), - [anon_sym___asm] = ACTIONS(3260), - [sym_number_literal] = ACTIONS(3262), - [anon_sym_L_SQUOTE] = ACTIONS(3262), - [anon_sym_u_SQUOTE] = ACTIONS(3262), - [anon_sym_U_SQUOTE] = ACTIONS(3262), - [anon_sym_u8_SQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_L_DQUOTE] = ACTIONS(3262), - [anon_sym_u_DQUOTE] = ACTIONS(3262), - [anon_sym_U_DQUOTE] = ACTIONS(3262), - [anon_sym_u8_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [anon_sym_NULL] = ACTIONS(3260), - [anon_sym_nullptr] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), - [anon_sym_concept] = ACTIONS(3260), - [anon_sym_co_return] = ACTIONS(3260), - [anon_sym_co_yield] = ACTIONS(3260), - [anon_sym_R_DQUOTE] = ACTIONS(3262), - [anon_sym_LR_DQUOTE] = ACTIONS(3262), - [anon_sym_uR_DQUOTE] = ACTIONS(3262), - [anon_sym_UR_DQUOTE] = ACTIONS(3262), - [anon_sym_u8R_DQUOTE] = ACTIONS(3262), - [anon_sym_co_await] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_requires] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - }, - [STATE(695)] = { - [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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(696)] = { - [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_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(697)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_include_token1] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym___cdecl] = ACTIONS(3276), - [anon_sym___clrcall] = ACTIONS(3276), - [anon_sym___stdcall] = ACTIONS(3276), - [anon_sym___fastcall] = ACTIONS(3276), - [anon_sym___thiscall] = ACTIONS(3276), - [anon_sym___vectorcall] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_goto] = ACTIONS(3276), - [anon_sym___try] = ACTIONS(3276), - [anon_sym___leave] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3276), - [anon_sym_compl] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_sizeof] = ACTIONS(3276), - [anon_sym___alignof__] = ACTIONS(3276), - [anon_sym___alignof] = ACTIONS(3276), - [anon_sym__alignof] = ACTIONS(3276), - [anon_sym_alignof] = ACTIONS(3276), - [anon_sym__Alignof] = ACTIONS(3276), - [anon_sym_offsetof] = ACTIONS(3276), - [anon_sym__Generic] = ACTIONS(3276), - [anon_sym_asm] = ACTIONS(3276), - [anon_sym___asm__] = ACTIONS(3276), - [anon_sym___asm] = ACTIONS(3276), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_L_SQUOTE] = ACTIONS(3278), - [anon_sym_u_SQUOTE] = ACTIONS(3278), - [anon_sym_U_SQUOTE] = ACTIONS(3278), - [anon_sym_u8_SQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_L_DQUOTE] = ACTIONS(3278), - [anon_sym_u_DQUOTE] = ACTIONS(3278), - [anon_sym_U_DQUOTE] = ACTIONS(3278), - [anon_sym_u8_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [anon_sym_NULL] = ACTIONS(3276), - [anon_sym_nullptr] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), - [anon_sym_concept] = ACTIONS(3276), - [anon_sym_co_return] = ACTIONS(3276), - [anon_sym_co_yield] = ACTIONS(3276), - [anon_sym_R_DQUOTE] = ACTIONS(3278), - [anon_sym_LR_DQUOTE] = ACTIONS(3278), - [anon_sym_uR_DQUOTE] = ACTIONS(3278), - [anon_sym_UR_DQUOTE] = ACTIONS(3278), - [anon_sym_u8R_DQUOTE] = ACTIONS(3278), - [anon_sym_co_await] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_requires] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - }, - [STATE(698)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(699)] = { - [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_virtual] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym___attribute] = ACTIONS(3284), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(700)] = { - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(701)] = { - [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_virtual] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym___attribute] = ACTIONS(3292), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(702)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_include_token1] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym___cdecl] = ACTIONS(3296), - [anon_sym___clrcall] = ACTIONS(3296), - [anon_sym___stdcall] = ACTIONS(3296), - [anon_sym___fastcall] = ACTIONS(3296), - [anon_sym___thiscall] = ACTIONS(3296), - [anon_sym___vectorcall] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_goto] = ACTIONS(3296), - [anon_sym___try] = ACTIONS(3296), - [anon_sym___leave] = ACTIONS(3296), - [anon_sym_not] = ACTIONS(3296), - [anon_sym_compl] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_sizeof] = ACTIONS(3296), - [anon_sym___alignof__] = ACTIONS(3296), - [anon_sym___alignof] = ACTIONS(3296), - [anon_sym__alignof] = ACTIONS(3296), - [anon_sym_alignof] = ACTIONS(3296), - [anon_sym__Alignof] = ACTIONS(3296), - [anon_sym_offsetof] = ACTIONS(3296), - [anon_sym__Generic] = ACTIONS(3296), - [anon_sym_asm] = ACTIONS(3296), - [anon_sym___asm__] = ACTIONS(3296), - [anon_sym___asm] = ACTIONS(3296), - [sym_number_literal] = ACTIONS(3298), - [anon_sym_L_SQUOTE] = ACTIONS(3298), - [anon_sym_u_SQUOTE] = ACTIONS(3298), - [anon_sym_U_SQUOTE] = ACTIONS(3298), - [anon_sym_u8_SQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_L_DQUOTE] = ACTIONS(3298), - [anon_sym_u_DQUOTE] = ACTIONS(3298), - [anon_sym_U_DQUOTE] = ACTIONS(3298), - [anon_sym_u8_DQUOTE] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [anon_sym_NULL] = ACTIONS(3296), - [anon_sym_nullptr] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), - [anon_sym_concept] = ACTIONS(3296), - [anon_sym_co_return] = ACTIONS(3296), - [anon_sym_co_yield] = ACTIONS(3296), - [anon_sym_R_DQUOTE] = ACTIONS(3298), - [anon_sym_LR_DQUOTE] = ACTIONS(3298), - [anon_sym_uR_DQUOTE] = ACTIONS(3298), - [anon_sym_UR_DQUOTE] = ACTIONS(3298), - [anon_sym_u8R_DQUOTE] = ACTIONS(3298), - [anon_sym_co_await] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_requires] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - }, - [STATE(703)] = { - [sym_identifier] = ACTIONS(3300), - [aux_sym_preproc_include_token1] = ACTIONS(3300), - [aux_sym_preproc_def_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), - [sym_preproc_directive] = ACTIONS(3300), - [anon_sym_LPAREN2] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_virtual] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym___attribute__] = ACTIONS(3300), - [anon_sym___attribute] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_COLON_COLON] = ACTIONS(3302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3302), - [anon_sym___declspec] = ACTIONS(3300), - [anon_sym___based] = ACTIONS(3300), - [anon_sym___cdecl] = ACTIONS(3300), - [anon_sym___clrcall] = ACTIONS(3300), - [anon_sym___stdcall] = ACTIONS(3300), - [anon_sym___fastcall] = ACTIONS(3300), - [anon_sym___thiscall] = ACTIONS(3300), - [anon_sym___vectorcall] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3300), - [anon_sym_unsigned] = ACTIONS(3300), - [anon_sym_long] = ACTIONS(3300), - [anon_sym_short] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_register] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym___inline] = ACTIONS(3300), - [anon_sym___inline__] = ACTIONS(3300), - [anon_sym___forceinline] = ACTIONS(3300), - [anon_sym_thread_local] = ACTIONS(3300), - [anon_sym___thread] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_constexpr] = ACTIONS(3300), - [anon_sym_volatile] = ACTIONS(3300), - [anon_sym_restrict] = ACTIONS(3300), - [anon_sym___restrict__] = ACTIONS(3300), - [anon_sym__Atomic] = ACTIONS(3300), - [anon_sym__Noreturn] = ACTIONS(3300), - [anon_sym_noreturn] = ACTIONS(3300), - [anon_sym__Nonnull] = ACTIONS(3300), - [anon_sym_mutable] = ACTIONS(3300), - [anon_sym_constinit] = ACTIONS(3300), - [anon_sym_consteval] = ACTIONS(3300), - [anon_sym_alignas] = ACTIONS(3300), - [anon_sym__Alignas] = ACTIONS(3300), - [sym_primitive_type] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym___try] = ACTIONS(3300), - [anon_sym___leave] = ACTIONS(3300), - [anon_sym_not] = ACTIONS(3300), - [anon_sym_compl] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_sizeof] = ACTIONS(3300), - [anon_sym___alignof__] = ACTIONS(3300), - [anon_sym___alignof] = ACTIONS(3300), - [anon_sym__alignof] = ACTIONS(3300), - [anon_sym_alignof] = ACTIONS(3300), - [anon_sym__Alignof] = ACTIONS(3300), - [anon_sym_offsetof] = ACTIONS(3300), - [anon_sym__Generic] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym___asm__] = ACTIONS(3300), - [anon_sym___asm] = ACTIONS(3300), - [sym_number_literal] = ACTIONS(3302), - [anon_sym_L_SQUOTE] = ACTIONS(3302), - [anon_sym_u_SQUOTE] = ACTIONS(3302), - [anon_sym_U_SQUOTE] = ACTIONS(3302), - [anon_sym_u8_SQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_L_DQUOTE] = ACTIONS(3302), - [anon_sym_u_DQUOTE] = ACTIONS(3302), - [anon_sym_U_DQUOTE] = ACTIONS(3302), - [anon_sym_u8_DQUOTE] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [anon_sym_NULL] = ACTIONS(3300), - [anon_sym_nullptr] = ACTIONS(3300), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3300), - [anon_sym_decltype] = ACTIONS(3300), - [anon_sym_explicit] = ACTIONS(3300), - [anon_sym_typename] = ACTIONS(3300), - [anon_sym_template] = ACTIONS(3300), - [anon_sym_operator] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_static_assert] = ACTIONS(3300), - [anon_sym_concept] = ACTIONS(3300), - [anon_sym_co_return] = ACTIONS(3300), - [anon_sym_co_yield] = ACTIONS(3300), - [anon_sym_R_DQUOTE] = ACTIONS(3302), - [anon_sym_LR_DQUOTE] = ACTIONS(3302), - [anon_sym_uR_DQUOTE] = ACTIONS(3302), - [anon_sym_UR_DQUOTE] = ACTIONS(3302), - [anon_sym_u8R_DQUOTE] = ACTIONS(3302), - [anon_sym_co_await] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_requires] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - }, - [STATE(704)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_include_token1] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym___cdecl] = ACTIONS(3304), - [anon_sym___clrcall] = ACTIONS(3304), - [anon_sym___stdcall] = ACTIONS(3304), - [anon_sym___fastcall] = ACTIONS(3304), - [anon_sym___thiscall] = ACTIONS(3304), - [anon_sym___vectorcall] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym___try] = ACTIONS(3304), - [anon_sym___leave] = ACTIONS(3304), - [anon_sym_not] = ACTIONS(3304), - [anon_sym_compl] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_sizeof] = ACTIONS(3304), - [anon_sym___alignof__] = ACTIONS(3304), - [anon_sym___alignof] = ACTIONS(3304), - [anon_sym__alignof] = ACTIONS(3304), - [anon_sym_alignof] = ACTIONS(3304), - [anon_sym__Alignof] = ACTIONS(3304), - [anon_sym_offsetof] = ACTIONS(3304), - [anon_sym__Generic] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - [anon_sym___asm__] = ACTIONS(3304), - [anon_sym___asm] = ACTIONS(3304), - [sym_number_literal] = ACTIONS(3306), - [anon_sym_L_SQUOTE] = ACTIONS(3306), - [anon_sym_u_SQUOTE] = ACTIONS(3306), - [anon_sym_U_SQUOTE] = ACTIONS(3306), - [anon_sym_u8_SQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [anon_sym_NULL] = ACTIONS(3304), - [anon_sym_nullptr] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - [anon_sym_concept] = ACTIONS(3304), - [anon_sym_co_return] = ACTIONS(3304), - [anon_sym_co_yield] = ACTIONS(3304), - [anon_sym_R_DQUOTE] = ACTIONS(3306), - [anon_sym_LR_DQUOTE] = ACTIONS(3306), - [anon_sym_uR_DQUOTE] = ACTIONS(3306), - [anon_sym_UR_DQUOTE] = ACTIONS(3306), - [anon_sym_u8R_DQUOTE] = ACTIONS(3306), - [anon_sym_co_await] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_requires] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - }, - [STATE(705)] = { - [sym_identifier] = ACTIONS(3007), - [aux_sym_preproc_include_token1] = ACTIONS(3007), - [aux_sym_preproc_def_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token2] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3007), - [sym_preproc_directive] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3007), - [anon_sym_virtual] = ACTIONS(3007), - [anon_sym_extern] = ACTIONS(3007), - [anon_sym___attribute__] = ACTIONS(3007), - [anon_sym___attribute] = ACTIONS(3007), - [anon_sym_using] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3009), - [anon_sym___declspec] = ACTIONS(3007), - [anon_sym___based] = ACTIONS(3007), - [anon_sym___cdecl] = ACTIONS(3007), - [anon_sym___clrcall] = ACTIONS(3007), - [anon_sym___stdcall] = ACTIONS(3007), - [anon_sym___fastcall] = ACTIONS(3007), - [anon_sym___thiscall] = ACTIONS(3007), - [anon_sym___vectorcall] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_signed] = ACTIONS(3007), - [anon_sym_unsigned] = ACTIONS(3007), - [anon_sym_long] = ACTIONS(3007), - [anon_sym_short] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_register] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym___inline] = ACTIONS(3007), - [anon_sym___inline__] = ACTIONS(3007), - [anon_sym___forceinline] = ACTIONS(3007), - [anon_sym_thread_local] = ACTIONS(3007), - [anon_sym___thread] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_constexpr] = ACTIONS(3007), - [anon_sym_volatile] = ACTIONS(3007), - [anon_sym_restrict] = ACTIONS(3007), - [anon_sym___restrict__] = ACTIONS(3007), - [anon_sym__Atomic] = ACTIONS(3007), - [anon_sym__Noreturn] = ACTIONS(3007), - [anon_sym_noreturn] = ACTIONS(3007), - [anon_sym__Nonnull] = ACTIONS(3007), - [anon_sym_mutable] = ACTIONS(3007), - [anon_sym_constinit] = ACTIONS(3007), - [anon_sym_consteval] = ACTIONS(3007), - [anon_sym_alignas] = ACTIONS(3007), - [anon_sym__Alignas] = ACTIONS(3007), - [sym_primitive_type] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_switch] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym___try] = ACTIONS(3007), - [anon_sym___leave] = ACTIONS(3007), - [anon_sym_not] = ACTIONS(3007), - [anon_sym_compl] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_sizeof] = ACTIONS(3007), - [anon_sym___alignof__] = ACTIONS(3007), - [anon_sym___alignof] = ACTIONS(3007), - [anon_sym__alignof] = ACTIONS(3007), - [anon_sym_alignof] = ACTIONS(3007), - [anon_sym__Alignof] = ACTIONS(3007), - [anon_sym_offsetof] = ACTIONS(3007), - [anon_sym__Generic] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym___asm__] = ACTIONS(3007), - [anon_sym___asm] = ACTIONS(3007), - [sym_number_literal] = ACTIONS(3009), - [anon_sym_L_SQUOTE] = ACTIONS(3009), - [anon_sym_u_SQUOTE] = ACTIONS(3009), - [anon_sym_U_SQUOTE] = ACTIONS(3009), - [anon_sym_u8_SQUOTE] = ACTIONS(3009), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_L_DQUOTE] = ACTIONS(3009), - [anon_sym_u_DQUOTE] = ACTIONS(3009), - [anon_sym_U_DQUOTE] = ACTIONS(3009), - [anon_sym_u8_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [anon_sym_NULL] = ACTIONS(3007), - [anon_sym_nullptr] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3007), - [anon_sym_decltype] = ACTIONS(3007), - [anon_sym_explicit] = ACTIONS(3007), - [anon_sym_typename] = ACTIONS(3007), - [anon_sym_template] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_delete] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_static_assert] = ACTIONS(3007), - [anon_sym_concept] = ACTIONS(3007), - [anon_sym_co_return] = ACTIONS(3007), - [anon_sym_co_yield] = ACTIONS(3007), - [anon_sym_R_DQUOTE] = ACTIONS(3009), - [anon_sym_LR_DQUOTE] = ACTIONS(3009), - [anon_sym_uR_DQUOTE] = ACTIONS(3009), - [anon_sym_UR_DQUOTE] = ACTIONS(3009), - [anon_sym_u8R_DQUOTE] = ACTIONS(3009), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_requires] = ACTIONS(3007), - [sym_this] = ACTIONS(3007), - }, - [STATE(706)] = { - [sym_identifier] = ACTIONS(3011), - [aux_sym_preproc_include_token1] = ACTIONS(3011), - [aux_sym_preproc_def_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token2] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3011), - [sym_preproc_directive] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = ACTIONS(3011), - [anon_sym___attribute] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3013), - [anon_sym___declspec] = ACTIONS(3011), - [anon_sym___based] = ACTIONS(3011), - [anon_sym___cdecl] = ACTIONS(3011), - [anon_sym___clrcall] = ACTIONS(3011), - [anon_sym___stdcall] = ACTIONS(3011), - [anon_sym___fastcall] = ACTIONS(3011), - [anon_sym___thiscall] = ACTIONS(3011), - [anon_sym___vectorcall] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_signed] = ACTIONS(3011), - [anon_sym_unsigned] = ACTIONS(3011), - [anon_sym_long] = ACTIONS(3011), - [anon_sym_short] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_register] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym___inline] = ACTIONS(3011), - [anon_sym___inline__] = ACTIONS(3011), - [anon_sym___forceinline] = ACTIONS(3011), - [anon_sym_thread_local] = ACTIONS(3011), - [anon_sym___thread] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_constexpr] = ACTIONS(3011), - [anon_sym_volatile] = ACTIONS(3011), - [anon_sym_restrict] = ACTIONS(3011), - [anon_sym___restrict__] = ACTIONS(3011), - [anon_sym__Atomic] = ACTIONS(3011), - [anon_sym__Noreturn] = ACTIONS(3011), - [anon_sym_noreturn] = ACTIONS(3011), - [anon_sym__Nonnull] = ACTIONS(3011), - [anon_sym_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym__Alignas] = ACTIONS(3011), - [sym_primitive_type] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_switch] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_default] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_do] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym___try] = ACTIONS(3011), - [anon_sym___leave] = ACTIONS(3011), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_compl] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3011), - [anon_sym___alignof] = ACTIONS(3011), - [anon_sym__alignof] = ACTIONS(3011), - [anon_sym_alignof] = ACTIONS(3011), - [anon_sym__Alignof] = ACTIONS(3011), - [anon_sym_offsetof] = ACTIONS(3011), - [anon_sym__Generic] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym___asm__] = ACTIONS(3011), - [anon_sym___asm] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(3013), - [anon_sym_L_SQUOTE] = ACTIONS(3013), - [anon_sym_u_SQUOTE] = ACTIONS(3013), - [anon_sym_U_SQUOTE] = ACTIONS(3013), - [anon_sym_u8_SQUOTE] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_L_DQUOTE] = ACTIONS(3013), - [anon_sym_u_DQUOTE] = ACTIONS(3013), - [anon_sym_U_DQUOTE] = ACTIONS(3013), - [anon_sym_u8_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [anon_sym_NULL] = ACTIONS(3011), - [anon_sym_nullptr] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_delete] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_namespace] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - [anon_sym_concept] = ACTIONS(3011), - [anon_sym_co_return] = ACTIONS(3011), - [anon_sym_co_yield] = ACTIONS(3011), - [anon_sym_R_DQUOTE] = ACTIONS(3013), - [anon_sym_LR_DQUOTE] = ACTIONS(3013), - [anon_sym_uR_DQUOTE] = ACTIONS(3013), - [anon_sym_UR_DQUOTE] = ACTIONS(3013), - [anon_sym_u8R_DQUOTE] = ACTIONS(3013), - [anon_sym_co_await] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_requires] = ACTIONS(3011), - [sym_this] = ACTIONS(3011), - }, - [STATE(707)] = { - [sym_identifier] = ACTIONS(3015), - [aux_sym_preproc_include_token1] = ACTIONS(3015), - [aux_sym_preproc_def_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token2] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3015), - [sym_preproc_directive] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym___extension__] = ACTIONS(3015), - [anon_sym_typedef] = ACTIONS(3015), - [anon_sym_virtual] = ACTIONS(3015), - [anon_sym_extern] = ACTIONS(3015), - [anon_sym___attribute__] = ACTIONS(3015), - [anon_sym___attribute] = ACTIONS(3015), - [anon_sym_using] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3017), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3017), - [anon_sym___declspec] = ACTIONS(3015), - [anon_sym___based] = ACTIONS(3015), - [anon_sym___cdecl] = ACTIONS(3015), - [anon_sym___clrcall] = ACTIONS(3015), - [anon_sym___stdcall] = ACTIONS(3015), - [anon_sym___fastcall] = ACTIONS(3015), - [anon_sym___thiscall] = ACTIONS(3015), - [anon_sym___vectorcall] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_signed] = ACTIONS(3015), - [anon_sym_unsigned] = ACTIONS(3015), - [anon_sym_long] = ACTIONS(3015), - [anon_sym_short] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_register] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym___inline] = ACTIONS(3015), - [anon_sym___inline__] = ACTIONS(3015), - [anon_sym___forceinline] = ACTIONS(3015), - [anon_sym_thread_local] = ACTIONS(3015), - [anon_sym___thread] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_constexpr] = ACTIONS(3015), - [anon_sym_volatile] = ACTIONS(3015), - [anon_sym_restrict] = ACTIONS(3015), - [anon_sym___restrict__] = ACTIONS(3015), - [anon_sym__Atomic] = ACTIONS(3015), - [anon_sym__Noreturn] = ACTIONS(3015), - [anon_sym_noreturn] = ACTIONS(3015), - [anon_sym__Nonnull] = ACTIONS(3015), - [anon_sym_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = ACTIONS(3015), - [anon_sym_alignas] = ACTIONS(3015), - [anon_sym__Alignas] = ACTIONS(3015), - [sym_primitive_type] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_do] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym___try] = ACTIONS(3015), - [anon_sym___leave] = ACTIONS(3015), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_compl] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_sizeof] = ACTIONS(3015), - [anon_sym___alignof__] = ACTIONS(3015), - [anon_sym___alignof] = ACTIONS(3015), - [anon_sym__alignof] = ACTIONS(3015), - [anon_sym_alignof] = ACTIONS(3015), - [anon_sym__Alignof] = ACTIONS(3015), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym___asm__] = ACTIONS(3015), - [anon_sym___asm] = ACTIONS(3015), - [sym_number_literal] = ACTIONS(3017), - [anon_sym_L_SQUOTE] = ACTIONS(3017), - [anon_sym_u_SQUOTE] = ACTIONS(3017), - [anon_sym_U_SQUOTE] = ACTIONS(3017), - [anon_sym_u8_SQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_L_DQUOTE] = ACTIONS(3017), - [anon_sym_u_DQUOTE] = ACTIONS(3017), - [anon_sym_U_DQUOTE] = ACTIONS(3017), - [anon_sym_u8_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [anon_sym_NULL] = ACTIONS(3015), - [anon_sym_nullptr] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3015), - [anon_sym_decltype] = ACTIONS(3015), - [anon_sym_explicit] = ACTIONS(3015), - [anon_sym_typename] = ACTIONS(3015), - [anon_sym_template] = ACTIONS(3015), - [anon_sym_operator] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_delete] = ACTIONS(3015), - [anon_sym_throw] = ACTIONS(3015), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_static_assert] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3015), - [anon_sym_co_return] = ACTIONS(3015), - [anon_sym_co_yield] = ACTIONS(3015), - [anon_sym_R_DQUOTE] = ACTIONS(3017), - [anon_sym_LR_DQUOTE] = ACTIONS(3017), - [anon_sym_uR_DQUOTE] = ACTIONS(3017), - [anon_sym_UR_DQUOTE] = ACTIONS(3017), - [anon_sym_u8R_DQUOTE] = ACTIONS(3017), - [anon_sym_co_await] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_requires] = ACTIONS(3015), - [sym_this] = ACTIONS(3015), - }, - [STATE(708)] = { - [sym_identifier] = ACTIONS(3314), - [aux_sym_preproc_include_token1] = ACTIONS(3314), - [aux_sym_preproc_def_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3314), - [sym_preproc_directive] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = ACTIONS(3314), - [anon_sym___attribute] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3314), - [anon_sym___based] = ACTIONS(3314), - [anon_sym___cdecl] = ACTIONS(3314), - [anon_sym___clrcall] = ACTIONS(3314), - [anon_sym___stdcall] = ACTIONS(3314), - [anon_sym___fastcall] = ACTIONS(3314), - [anon_sym___thiscall] = ACTIONS(3314), - [anon_sym___vectorcall] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3314), - [anon_sym_unsigned] = ACTIONS(3314), - [anon_sym_long] = ACTIONS(3314), - [anon_sym_short] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_register] = ACTIONS(3314), - [anon_sym_inline] = ACTIONS(3314), - [anon_sym___inline] = ACTIONS(3314), - [anon_sym___inline__] = ACTIONS(3314), - [anon_sym___forceinline] = ACTIONS(3314), - [anon_sym_thread_local] = ACTIONS(3314), - [anon_sym___thread] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_constexpr] = ACTIONS(3314), - [anon_sym_volatile] = ACTIONS(3314), - [anon_sym_restrict] = ACTIONS(3314), - [anon_sym___restrict__] = ACTIONS(3314), - [anon_sym__Atomic] = ACTIONS(3314), - [anon_sym__Noreturn] = ACTIONS(3314), - [anon_sym_noreturn] = ACTIONS(3314), - [anon_sym__Nonnull] = ACTIONS(3314), - [anon_sym_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym__Alignas] = ACTIONS(3314), - [sym_primitive_type] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym___try] = ACTIONS(3314), - [anon_sym___leave] = ACTIONS(3314), - [anon_sym_not] = ACTIONS(3314), - [anon_sym_compl] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3314), - [anon_sym___alignof__] = ACTIONS(3314), - [anon_sym___alignof] = ACTIONS(3314), - [anon_sym__alignof] = ACTIONS(3314), - [anon_sym_alignof] = ACTIONS(3314), - [anon_sym__Alignof] = ACTIONS(3314), - [anon_sym_offsetof] = ACTIONS(3314), - [anon_sym__Generic] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym___asm__] = ACTIONS(3314), - [anon_sym___asm] = ACTIONS(3314), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [anon_sym_NULL] = ACTIONS(3314), - [anon_sym_nullptr] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - [anon_sym_concept] = ACTIONS(3314), - [anon_sym_co_return] = ACTIONS(3314), - [anon_sym_co_yield] = ACTIONS(3314), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_requires] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - }, - [STATE(709)] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token2] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), - }, - [STATE(710)] = { - [sym_identifier] = ACTIONS(3300), - [aux_sym_preproc_include_token1] = ACTIONS(3300), - [aux_sym_preproc_def_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token1] = ACTIONS(3300), - [aux_sym_preproc_if_token2] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), - [sym_preproc_directive] = ACTIONS(3300), - [anon_sym_LPAREN2] = ACTIONS(3302), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3302), - [anon_sym_AMP_AMP] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3300), - [anon_sym_typedef] = ACTIONS(3300), - [anon_sym_virtual] = ACTIONS(3300), - [anon_sym_extern] = ACTIONS(3300), - [anon_sym___attribute__] = ACTIONS(3300), - [anon_sym___attribute] = ACTIONS(3300), - [anon_sym_using] = ACTIONS(3300), - [anon_sym_COLON_COLON] = ACTIONS(3302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3302), - [anon_sym___declspec] = ACTIONS(3300), - [anon_sym___based] = ACTIONS(3300), - [anon_sym___cdecl] = ACTIONS(3300), - [anon_sym___clrcall] = ACTIONS(3300), - [anon_sym___stdcall] = ACTIONS(3300), - [anon_sym___fastcall] = ACTIONS(3300), - [anon_sym___thiscall] = ACTIONS(3300), - [anon_sym___vectorcall] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3300), - [anon_sym_unsigned] = ACTIONS(3300), - [anon_sym_long] = ACTIONS(3300), - [anon_sym_short] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_register] = ACTIONS(3300), - [anon_sym_inline] = ACTIONS(3300), - [anon_sym___inline] = ACTIONS(3300), - [anon_sym___inline__] = ACTIONS(3300), - [anon_sym___forceinline] = ACTIONS(3300), - [anon_sym_thread_local] = ACTIONS(3300), - [anon_sym___thread] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_constexpr] = ACTIONS(3300), - [anon_sym_volatile] = ACTIONS(3300), - [anon_sym_restrict] = ACTIONS(3300), - [anon_sym___restrict__] = ACTIONS(3300), - [anon_sym__Atomic] = ACTIONS(3300), - [anon_sym__Noreturn] = ACTIONS(3300), - [anon_sym_noreturn] = ACTIONS(3300), - [anon_sym__Nonnull] = ACTIONS(3300), - [anon_sym_mutable] = ACTIONS(3300), - [anon_sym_constinit] = ACTIONS(3300), - [anon_sym_consteval] = ACTIONS(3300), - [anon_sym_alignas] = ACTIONS(3300), - [anon_sym__Alignas] = ACTIONS(3300), - [sym_primitive_type] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_struct] = ACTIONS(3300), - [anon_sym_union] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_goto] = ACTIONS(3300), - [anon_sym___try] = ACTIONS(3300), - [anon_sym___leave] = ACTIONS(3300), - [anon_sym_not] = ACTIONS(3300), - [anon_sym_compl] = ACTIONS(3300), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_sizeof] = ACTIONS(3300), - [anon_sym___alignof__] = ACTIONS(3300), - [anon_sym___alignof] = ACTIONS(3300), - [anon_sym__alignof] = ACTIONS(3300), - [anon_sym_alignof] = ACTIONS(3300), - [anon_sym__Alignof] = ACTIONS(3300), - [anon_sym_offsetof] = ACTIONS(3300), - [anon_sym__Generic] = ACTIONS(3300), - [anon_sym_asm] = ACTIONS(3300), - [anon_sym___asm__] = ACTIONS(3300), - [anon_sym___asm] = ACTIONS(3300), - [sym_number_literal] = ACTIONS(3302), - [anon_sym_L_SQUOTE] = ACTIONS(3302), - [anon_sym_u_SQUOTE] = ACTIONS(3302), - [anon_sym_U_SQUOTE] = ACTIONS(3302), - [anon_sym_u8_SQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_L_DQUOTE] = ACTIONS(3302), - [anon_sym_u_DQUOTE] = ACTIONS(3302), - [anon_sym_U_DQUOTE] = ACTIONS(3302), - [anon_sym_u8_DQUOTE] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [anon_sym_NULL] = ACTIONS(3300), - [anon_sym_nullptr] = ACTIONS(3300), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3300), - [anon_sym_decltype] = ACTIONS(3300), - [anon_sym_explicit] = ACTIONS(3300), - [anon_sym_typename] = ACTIONS(3300), - [anon_sym_template] = ACTIONS(3300), - [anon_sym_operator] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_static_assert] = ACTIONS(3300), - [anon_sym_concept] = ACTIONS(3300), - [anon_sym_co_return] = ACTIONS(3300), - [anon_sym_co_yield] = ACTIONS(3300), - [anon_sym_R_DQUOTE] = ACTIONS(3302), - [anon_sym_LR_DQUOTE] = ACTIONS(3302), - [anon_sym_uR_DQUOTE] = ACTIONS(3302), - [anon_sym_UR_DQUOTE] = ACTIONS(3302), - [anon_sym_u8R_DQUOTE] = ACTIONS(3302), - [anon_sym_co_await] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_requires] = ACTIONS(3300), - [sym_this] = ACTIONS(3300), - }, - [STATE(711)] = { - [sym_identifier] = ACTIONS(3045), - [aux_sym_preproc_include_token1] = ACTIONS(3045), - [aux_sym_preproc_def_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token2] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3045), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), [sym_preproc_directive] = ACTIONS(3045), [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = ACTIONS(3045), - [anon_sym___attribute] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3047), - [anon_sym___declspec] = ACTIONS(3045), - [anon_sym___based] = ACTIONS(3045), - [anon_sym___cdecl] = ACTIONS(3045), - [anon_sym___clrcall] = ACTIONS(3045), - [anon_sym___stdcall] = ACTIONS(3045), - [anon_sym___fastcall] = ACTIONS(3045), - [anon_sym___thiscall] = ACTIONS(3045), - [anon_sym___vectorcall] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_signed] = ACTIONS(3045), - [anon_sym_unsigned] = ACTIONS(3045), - [anon_sym_long] = ACTIONS(3045), - [anon_sym_short] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_inline] = ACTIONS(3045), - [anon_sym___inline] = ACTIONS(3045), - [anon_sym___inline__] = ACTIONS(3045), - [anon_sym___forceinline] = ACTIONS(3045), - [anon_sym_thread_local] = ACTIONS(3045), - [anon_sym___thread] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_constexpr] = ACTIONS(3045), - [anon_sym_volatile] = ACTIONS(3045), - [anon_sym_restrict] = ACTIONS(3045), - [anon_sym___restrict__] = ACTIONS(3045), - [anon_sym__Atomic] = ACTIONS(3045), - [anon_sym__Noreturn] = ACTIONS(3045), - [anon_sym_noreturn] = ACTIONS(3045), - [anon_sym__Nonnull] = ACTIONS(3045), - [anon_sym_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym__Alignas] = ACTIONS(3045), - [sym_primitive_type] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_switch] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym___try] = ACTIONS(3045), - [anon_sym___leave] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_compl] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_sizeof] = ACTIONS(3045), - [anon_sym___alignof__] = ACTIONS(3045), - [anon_sym___alignof] = ACTIONS(3045), - [anon_sym__alignof] = ACTIONS(3045), - [anon_sym_alignof] = ACTIONS(3045), - [anon_sym__Alignof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3045), - [anon_sym__Generic] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym___asm__] = ACTIONS(3045), - [anon_sym___asm] = ACTIONS(3045), - [sym_number_literal] = ACTIONS(3047), - [anon_sym_L_SQUOTE] = ACTIONS(3047), - [anon_sym_u_SQUOTE] = ACTIONS(3047), - [anon_sym_U_SQUOTE] = ACTIONS(3047), - [anon_sym_u8_SQUOTE] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_L_DQUOTE] = ACTIONS(3047), - [anon_sym_u_DQUOTE] = ACTIONS(3047), - [anon_sym_U_DQUOTE] = ACTIONS(3047), - [anon_sym_u8_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [anon_sym_NULL] = ACTIONS(3045), - [anon_sym_nullptr] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_delete] = ACTIONS(3045), - [anon_sym_throw] = ACTIONS(3045), - [anon_sym_namespace] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - [anon_sym_concept] = ACTIONS(3045), - [anon_sym_co_return] = ACTIONS(3045), - [anon_sym_co_yield] = ACTIONS(3045), - [anon_sym_R_DQUOTE] = ACTIONS(3047), - [anon_sym_LR_DQUOTE] = ACTIONS(3047), - [anon_sym_uR_DQUOTE] = ACTIONS(3047), - [anon_sym_UR_DQUOTE] = ACTIONS(3047), - [anon_sym_u8R_DQUOTE] = ACTIONS(3047), - [anon_sym_co_await] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3045), - [anon_sym_requires] = ACTIONS(3045), - [sym_this] = ACTIONS(3045), - }, - [STATE(712)] = { - [sym_identifier] = ACTIONS(3051), - [aux_sym_preproc_include_token1] = ACTIONS(3051), - [aux_sym_preproc_def_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token2] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), - [sym_preproc_directive] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3051), - [anon_sym_typedef] = ACTIONS(3051), - [anon_sym_virtual] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3051), - [anon_sym___attribute__] = ACTIONS(3051), - [anon_sym___attribute] = ACTIONS(3051), - [anon_sym_using] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), - [anon_sym___declspec] = ACTIONS(3051), - [anon_sym___based] = ACTIONS(3051), - [anon_sym___cdecl] = ACTIONS(3051), - [anon_sym___clrcall] = ACTIONS(3051), - [anon_sym___stdcall] = ACTIONS(3051), - [anon_sym___fastcall] = ACTIONS(3051), - [anon_sym___thiscall] = ACTIONS(3051), - [anon_sym___vectorcall] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3051), - [anon_sym_unsigned] = ACTIONS(3051), - [anon_sym_long] = ACTIONS(3051), - [anon_sym_short] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_static] = ACTIONS(3051), - [anon_sym_register] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym___inline] = ACTIONS(3051), - [anon_sym___inline__] = ACTIONS(3051), - [anon_sym___forceinline] = ACTIONS(3051), - [anon_sym_thread_local] = ACTIONS(3051), - [anon_sym___thread] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_constexpr] = ACTIONS(3051), - [anon_sym_volatile] = ACTIONS(3051), - [anon_sym_restrict] = ACTIONS(3051), - [anon_sym___restrict__] = ACTIONS(3051), - [anon_sym__Atomic] = ACTIONS(3051), - [anon_sym__Noreturn] = ACTIONS(3051), - [anon_sym_noreturn] = ACTIONS(3051), - [anon_sym__Nonnull] = ACTIONS(3051), - [anon_sym_mutable] = ACTIONS(3051), - [anon_sym_constinit] = ACTIONS(3051), - [anon_sym_consteval] = ACTIONS(3051), - [anon_sym_alignas] = ACTIONS(3051), - [anon_sym__Alignas] = ACTIONS(3051), - [sym_primitive_type] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_class] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_switch] = ACTIONS(3051), - [anon_sym_case] = ACTIONS(3051), - [anon_sym_default] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_do] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym___try] = ACTIONS(3051), - [anon_sym___leave] = ACTIONS(3051), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3051), - [anon_sym___alignof__] = ACTIONS(3051), - [anon_sym___alignof] = ACTIONS(3051), - [anon_sym__alignof] = ACTIONS(3051), - [anon_sym_alignof] = ACTIONS(3051), - [anon_sym__Alignof] = ACTIONS(3051), - [anon_sym_offsetof] = ACTIONS(3051), - [anon_sym__Generic] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym___asm__] = ACTIONS(3051), - [anon_sym___asm] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(3053), - [anon_sym_L_SQUOTE] = ACTIONS(3053), - [anon_sym_u_SQUOTE] = ACTIONS(3053), - [anon_sym_U_SQUOTE] = ACTIONS(3053), - [anon_sym_u8_SQUOTE] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3053), - [anon_sym_L_DQUOTE] = ACTIONS(3053), - [anon_sym_u_DQUOTE] = ACTIONS(3053), - [anon_sym_U_DQUOTE] = ACTIONS(3053), - [anon_sym_u8_DQUOTE] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(3053), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [anon_sym_NULL] = ACTIONS(3051), - [anon_sym_nullptr] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3051), - [anon_sym_decltype] = ACTIONS(3051), - [anon_sym_explicit] = ACTIONS(3051), - [anon_sym_typename] = ACTIONS(3051), - [anon_sym_template] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_delete] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_namespace] = ACTIONS(3051), - [anon_sym_static_assert] = ACTIONS(3051), - [anon_sym_concept] = ACTIONS(3051), - [anon_sym_co_return] = ACTIONS(3051), - [anon_sym_co_yield] = ACTIONS(3051), - [anon_sym_R_DQUOTE] = ACTIONS(3053), - [anon_sym_LR_DQUOTE] = ACTIONS(3053), - [anon_sym_uR_DQUOTE] = ACTIONS(3053), - [anon_sym_UR_DQUOTE] = ACTIONS(3053), - [anon_sym_u8R_DQUOTE] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3051), - [anon_sym_new] = ACTIONS(3051), - [anon_sym_requires] = ACTIONS(3051), - [sym_this] = ACTIONS(3051), - }, - [STATE(713)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_include_token1] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym___cdecl] = ACTIONS(3333), - [anon_sym___clrcall] = ACTIONS(3333), - [anon_sym___stdcall] = ACTIONS(3333), - [anon_sym___fastcall] = ACTIONS(3333), - [anon_sym___thiscall] = ACTIONS(3333), - [anon_sym___vectorcall] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym___try] = ACTIONS(3333), - [anon_sym___leave] = ACTIONS(3333), - [anon_sym_not] = ACTIONS(3333), - [anon_sym_compl] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym___alignof__] = ACTIONS(3333), - [anon_sym___alignof] = ACTIONS(3333), - [anon_sym__alignof] = ACTIONS(3333), - [anon_sym_alignof] = ACTIONS(3333), - [anon_sym__Alignof] = ACTIONS(3333), - [anon_sym_offsetof] = ACTIONS(3333), - [anon_sym__Generic] = ACTIONS(3333), - [anon_sym_asm] = ACTIONS(3333), - [anon_sym___asm__] = ACTIONS(3333), - [anon_sym___asm] = ACTIONS(3333), - [sym_number_literal] = ACTIONS(3335), - [anon_sym_L_SQUOTE] = ACTIONS(3335), - [anon_sym_u_SQUOTE] = ACTIONS(3335), - [anon_sym_U_SQUOTE] = ACTIONS(3335), - [anon_sym_u8_SQUOTE] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_L_DQUOTE] = ACTIONS(3335), - [anon_sym_u_DQUOTE] = ACTIONS(3335), - [anon_sym_U_DQUOTE] = ACTIONS(3335), - [anon_sym_u8_DQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [anon_sym_NULL] = ACTIONS(3333), - [anon_sym_nullptr] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), - [anon_sym_concept] = ACTIONS(3333), - [anon_sym_co_return] = ACTIONS(3333), - [anon_sym_co_yield] = ACTIONS(3333), - [anon_sym_R_DQUOTE] = ACTIONS(3335), - [anon_sym_LR_DQUOTE] = ACTIONS(3335), - [anon_sym_uR_DQUOTE] = ACTIONS(3335), - [anon_sym_UR_DQUOTE] = ACTIONS(3335), - [anon_sym_u8R_DQUOTE] = ACTIONS(3335), - [anon_sym_co_await] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_requires] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - }, - [STATE(714)] = { - [sym_identifier] = ACTIONS(3127), - [aux_sym_preproc_include_token1] = ACTIONS(3127), - [aux_sym_preproc_def_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), - [sym_preproc_directive] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym___extension__] = ACTIONS(3127), - [anon_sym_typedef] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym___attribute__] = ACTIONS(3127), - [anon_sym___attribute] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), - [anon_sym___declspec] = ACTIONS(3127), - [anon_sym___based] = ACTIONS(3127), - [anon_sym___cdecl] = ACTIONS(3127), - [anon_sym___clrcall] = ACTIONS(3127), - [anon_sym___stdcall] = ACTIONS(3127), - [anon_sym___fastcall] = ACTIONS(3127), - [anon_sym___thiscall] = ACTIONS(3127), - [anon_sym___vectorcall] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_signed] = ACTIONS(3127), - [anon_sym_unsigned] = ACTIONS(3127), - [anon_sym_long] = ACTIONS(3127), - [anon_sym_short] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_register] = ACTIONS(3127), - [anon_sym_inline] = ACTIONS(3127), - [anon_sym___inline] = ACTIONS(3127), - [anon_sym___inline__] = ACTIONS(3127), - [anon_sym___forceinline] = ACTIONS(3127), - [anon_sym_thread_local] = ACTIONS(3127), - [anon_sym___thread] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_constexpr] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_restrict] = ACTIONS(3127), - [anon_sym___restrict__] = ACTIONS(3127), - [anon_sym__Atomic] = ACTIONS(3127), - [anon_sym__Noreturn] = ACTIONS(3127), - [anon_sym_noreturn] = ACTIONS(3127), - [anon_sym__Nonnull] = ACTIONS(3127), - [anon_sym_mutable] = ACTIONS(3127), - [anon_sym_constinit] = ACTIONS(3127), - [anon_sym_consteval] = ACTIONS(3127), - [anon_sym_alignas] = ACTIONS(3127), - [anon_sym__Alignas] = ACTIONS(3127), - [sym_primitive_type] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym___try] = ACTIONS(3127), - [anon_sym___leave] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_compl] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym___alignof__] = ACTIONS(3127), - [anon_sym___alignof] = ACTIONS(3127), - [anon_sym__alignof] = ACTIONS(3127), - [anon_sym_alignof] = ACTIONS(3127), - [anon_sym__Alignof] = ACTIONS(3127), - [anon_sym_offsetof] = ACTIONS(3127), - [anon_sym__Generic] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym___asm__] = ACTIONS(3127), - [anon_sym___asm] = ACTIONS(3127), - [sym_number_literal] = ACTIONS(3129), - [anon_sym_L_SQUOTE] = ACTIONS(3129), - [anon_sym_u_SQUOTE] = ACTIONS(3129), - [anon_sym_U_SQUOTE] = ACTIONS(3129), - [anon_sym_u8_SQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_L_DQUOTE] = ACTIONS(3129), - [anon_sym_u_DQUOTE] = ACTIONS(3129), - [anon_sym_U_DQUOTE] = ACTIONS(3129), - [anon_sym_u8_DQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [anon_sym_NULL] = ACTIONS(3127), - [anon_sym_nullptr] = ACTIONS(3127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3127), - [anon_sym_decltype] = ACTIONS(3127), - [anon_sym_explicit] = ACTIONS(3127), - [anon_sym_typename] = ACTIONS(3127), - [anon_sym_template] = ACTIONS(3127), - [anon_sym_operator] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_delete] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_static_assert] = ACTIONS(3127), - [anon_sym_concept] = ACTIONS(3127), - [anon_sym_co_return] = ACTIONS(3127), - [anon_sym_co_yield] = ACTIONS(3127), - [anon_sym_R_DQUOTE] = ACTIONS(3129), - [anon_sym_LR_DQUOTE] = ACTIONS(3129), - [anon_sym_uR_DQUOTE] = ACTIONS(3129), - [anon_sym_UR_DQUOTE] = ACTIONS(3129), - [anon_sym_u8R_DQUOTE] = ACTIONS(3129), - [anon_sym_co_await] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_requires] = ACTIONS(3127), - [sym_this] = ACTIONS(3127), - }, - [STATE(715)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_include_token1] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym___cdecl] = ACTIONS(3217), - [anon_sym___clrcall] = ACTIONS(3217), - [anon_sym___stdcall] = ACTIONS(3217), - [anon_sym___fastcall] = ACTIONS(3217), - [anon_sym___thiscall] = ACTIONS(3217), - [anon_sym___vectorcall] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym___try] = ACTIONS(3217), - [anon_sym___leave] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3217), - [anon_sym_compl] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym___alignof__] = ACTIONS(3217), - [anon_sym___alignof] = ACTIONS(3217), - [anon_sym__alignof] = ACTIONS(3217), - [anon_sym_alignof] = ACTIONS(3217), - [anon_sym__Alignof] = ACTIONS(3217), - [anon_sym_offsetof] = ACTIONS(3217), - [anon_sym__Generic] = ACTIONS(3217), - [anon_sym_asm] = ACTIONS(3217), - [anon_sym___asm__] = ACTIONS(3217), - [anon_sym___asm] = ACTIONS(3217), - [sym_number_literal] = ACTIONS(3219), - [anon_sym_L_SQUOTE] = ACTIONS(3219), - [anon_sym_u_SQUOTE] = ACTIONS(3219), - [anon_sym_U_SQUOTE] = ACTIONS(3219), - [anon_sym_u8_SQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_L_DQUOTE] = ACTIONS(3219), - [anon_sym_u_DQUOTE] = ACTIONS(3219), - [anon_sym_U_DQUOTE] = ACTIONS(3219), - [anon_sym_u8_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [anon_sym_NULL] = ACTIONS(3217), - [anon_sym_nullptr] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - [anon_sym_concept] = ACTIONS(3217), - [anon_sym_co_return] = ACTIONS(3217), - [anon_sym_co_yield] = ACTIONS(3217), - [anon_sym_R_DQUOTE] = ACTIONS(3219), - [anon_sym_LR_DQUOTE] = ACTIONS(3219), - [anon_sym_uR_DQUOTE] = ACTIONS(3219), - [anon_sym_UR_DQUOTE] = ACTIONS(3219), - [anon_sym_u8R_DQUOTE] = ACTIONS(3219), - [anon_sym_co_await] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_requires] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - }, - [STATE(716)] = { - [sym_identifier] = ACTIONS(3314), - [aux_sym_preproc_include_token1] = ACTIONS(3314), - [aux_sym_preproc_def_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token1] = ACTIONS(3314), - [aux_sym_preproc_if_token2] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3314), - [sym_preproc_directive] = ACTIONS(3314), - [anon_sym_LPAREN2] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3314), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3314), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym___extension__] = ACTIONS(3314), - [anon_sym_typedef] = ACTIONS(3314), - [anon_sym_virtual] = ACTIONS(3314), - [anon_sym_extern] = ACTIONS(3314), - [anon_sym___attribute__] = ACTIONS(3314), - [anon_sym___attribute] = ACTIONS(3314), - [anon_sym_using] = ACTIONS(3314), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3316), - [anon_sym___declspec] = ACTIONS(3314), - [anon_sym___based] = ACTIONS(3314), - [anon_sym___cdecl] = ACTIONS(3314), - [anon_sym___clrcall] = ACTIONS(3314), - [anon_sym___stdcall] = ACTIONS(3314), - [anon_sym___fastcall] = ACTIONS(3314), - [anon_sym___thiscall] = ACTIONS(3314), - [anon_sym___vectorcall] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_signed] = ACTIONS(3314), - [anon_sym_unsigned] = ACTIONS(3314), - [anon_sym_long] = ACTIONS(3314), - [anon_sym_short] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3314), - [anon_sym_register] = ACTIONS(3314), - [anon_sym_inline] = ACTIONS(3314), - [anon_sym___inline] = ACTIONS(3314), - [anon_sym___inline__] = ACTIONS(3314), - [anon_sym___forceinline] = ACTIONS(3314), - [anon_sym_thread_local] = ACTIONS(3314), - [anon_sym___thread] = ACTIONS(3314), - [anon_sym_const] = ACTIONS(3314), - [anon_sym_constexpr] = ACTIONS(3314), - [anon_sym_volatile] = ACTIONS(3314), - [anon_sym_restrict] = ACTIONS(3314), - [anon_sym___restrict__] = ACTIONS(3314), - [anon_sym__Atomic] = ACTIONS(3314), - [anon_sym__Noreturn] = ACTIONS(3314), - [anon_sym_noreturn] = ACTIONS(3314), - [anon_sym__Nonnull] = ACTIONS(3314), - [anon_sym_mutable] = ACTIONS(3314), - [anon_sym_constinit] = ACTIONS(3314), - [anon_sym_consteval] = ACTIONS(3314), - [anon_sym_alignas] = ACTIONS(3314), - [anon_sym__Alignas] = ACTIONS(3314), - [sym_primitive_type] = ACTIONS(3314), - [anon_sym_enum] = ACTIONS(3314), - [anon_sym_class] = ACTIONS(3314), - [anon_sym_struct] = ACTIONS(3314), - [anon_sym_union] = ACTIONS(3314), - [anon_sym_if] = ACTIONS(3314), - [anon_sym_switch] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3314), - [anon_sym_while] = ACTIONS(3314), - [anon_sym_do] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_return] = ACTIONS(3314), - [anon_sym_break] = ACTIONS(3314), - [anon_sym_continue] = ACTIONS(3314), - [anon_sym_goto] = ACTIONS(3314), - [anon_sym___try] = ACTIONS(3314), - [anon_sym___leave] = ACTIONS(3314), - [anon_sym_not] = ACTIONS(3314), - [anon_sym_compl] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_sizeof] = ACTIONS(3314), - [anon_sym___alignof__] = ACTIONS(3314), - [anon_sym___alignof] = ACTIONS(3314), - [anon_sym__alignof] = ACTIONS(3314), - [anon_sym_alignof] = ACTIONS(3314), - [anon_sym__Alignof] = ACTIONS(3314), - [anon_sym_offsetof] = ACTIONS(3314), - [anon_sym__Generic] = ACTIONS(3314), - [anon_sym_asm] = ACTIONS(3314), - [anon_sym___asm__] = ACTIONS(3314), - [anon_sym___asm] = ACTIONS(3314), - [sym_number_literal] = ACTIONS(3316), - [anon_sym_L_SQUOTE] = ACTIONS(3316), - [anon_sym_u_SQUOTE] = ACTIONS(3316), - [anon_sym_U_SQUOTE] = ACTIONS(3316), - [anon_sym_u8_SQUOTE] = ACTIONS(3316), - [anon_sym_SQUOTE] = ACTIONS(3316), - [anon_sym_L_DQUOTE] = ACTIONS(3316), - [anon_sym_u_DQUOTE] = ACTIONS(3316), - [anon_sym_U_DQUOTE] = ACTIONS(3316), - [anon_sym_u8_DQUOTE] = ACTIONS(3316), - [anon_sym_DQUOTE] = ACTIONS(3316), - [sym_true] = ACTIONS(3314), - [sym_false] = ACTIONS(3314), - [anon_sym_NULL] = ACTIONS(3314), - [anon_sym_nullptr] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3314), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_explicit] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3314), - [anon_sym_template] = ACTIONS(3314), - [anon_sym_operator] = ACTIONS(3314), - [anon_sym_try] = ACTIONS(3314), - [anon_sym_delete] = ACTIONS(3314), - [anon_sym_throw] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_static_assert] = ACTIONS(3314), - [anon_sym_concept] = ACTIONS(3314), - [anon_sym_co_return] = ACTIONS(3314), - [anon_sym_co_yield] = ACTIONS(3314), - [anon_sym_R_DQUOTE] = ACTIONS(3316), - [anon_sym_LR_DQUOTE] = ACTIONS(3316), - [anon_sym_uR_DQUOTE] = ACTIONS(3316), - [anon_sym_UR_DQUOTE] = ACTIONS(3316), - [anon_sym_u8R_DQUOTE] = ACTIONS(3316), - [anon_sym_co_await] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3314), - [anon_sym_requires] = ACTIONS(3314), - [sym_this] = ACTIONS(3314), - }, - [STATE(717)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_include_token1] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym___cdecl] = ACTIONS(3337), - [anon_sym___clrcall] = ACTIONS(3337), - [anon_sym___stdcall] = ACTIONS(3337), - [anon_sym___fastcall] = ACTIONS(3337), - [anon_sym___thiscall] = ACTIONS(3337), - [anon_sym___vectorcall] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym___try] = ACTIONS(3337), - [anon_sym___leave] = ACTIONS(3337), - [anon_sym_not] = ACTIONS(3337), - [anon_sym_compl] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym___alignof__] = ACTIONS(3337), - [anon_sym___alignof] = ACTIONS(3337), - [anon_sym__alignof] = ACTIONS(3337), - [anon_sym_alignof] = ACTIONS(3337), - [anon_sym__Alignof] = ACTIONS(3337), - [anon_sym_offsetof] = ACTIONS(3337), - [anon_sym__Generic] = ACTIONS(3337), - [anon_sym_asm] = ACTIONS(3337), - [anon_sym___asm__] = ACTIONS(3337), - [anon_sym___asm] = ACTIONS(3337), - [sym_number_literal] = ACTIONS(3339), - [anon_sym_L_SQUOTE] = ACTIONS(3339), - [anon_sym_u_SQUOTE] = ACTIONS(3339), - [anon_sym_U_SQUOTE] = ACTIONS(3339), - [anon_sym_u8_SQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_L_DQUOTE] = ACTIONS(3339), - [anon_sym_u_DQUOTE] = ACTIONS(3339), - [anon_sym_U_DQUOTE] = ACTIONS(3339), - [anon_sym_u8_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [anon_sym_NULL] = ACTIONS(3337), - [anon_sym_nullptr] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), - [anon_sym_concept] = ACTIONS(3337), - [anon_sym_co_return] = ACTIONS(3337), - [anon_sym_co_yield] = ACTIONS(3337), - [anon_sym_R_DQUOTE] = ACTIONS(3339), - [anon_sym_LR_DQUOTE] = ACTIONS(3339), - [anon_sym_uR_DQUOTE] = ACTIONS(3339), - [anon_sym_UR_DQUOTE] = ACTIONS(3339), - [anon_sym_u8R_DQUOTE] = ACTIONS(3339), - [anon_sym_co_await] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_requires] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - }, - [STATE(718)] = { - [sym_identifier] = ACTIONS(3232), - [aux_sym_preproc_include_token1] = ACTIONS(3232), - [aux_sym_preproc_def_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_AMP] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3232), - [anon_sym_typedef] = ACTIONS(3232), - [anon_sym_virtual] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(3232), - [anon_sym___attribute__] = ACTIONS(3232), - [anon_sym___attribute] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3234), - [anon_sym___declspec] = ACTIONS(3232), - [anon_sym___based] = ACTIONS(3232), - [anon_sym___cdecl] = ACTIONS(3232), - [anon_sym___clrcall] = ACTIONS(3232), - [anon_sym___stdcall] = ACTIONS(3232), - [anon_sym___fastcall] = ACTIONS(3232), - [anon_sym___thiscall] = ACTIONS(3232), - [anon_sym___vectorcall] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_register] = ACTIONS(3232), - [anon_sym_inline] = ACTIONS(3232), - [anon_sym___inline] = ACTIONS(3232), - [anon_sym___inline__] = ACTIONS(3232), - [anon_sym___forceinline] = ACTIONS(3232), - [anon_sym_thread_local] = ACTIONS(3232), - [anon_sym___thread] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_constexpr] = ACTIONS(3232), - [anon_sym_volatile] = ACTIONS(3232), - [anon_sym_restrict] = ACTIONS(3232), - [anon_sym___restrict__] = ACTIONS(3232), - [anon_sym__Atomic] = ACTIONS(3232), - [anon_sym__Noreturn] = ACTIONS(3232), - [anon_sym_noreturn] = ACTIONS(3232), - [anon_sym__Nonnull] = ACTIONS(3232), - [anon_sym_mutable] = ACTIONS(3232), - [anon_sym_constinit] = ACTIONS(3232), - [anon_sym_consteval] = ACTIONS(3232), - [anon_sym_alignas] = ACTIONS(3232), - [anon_sym__Alignas] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3232), - [anon_sym_union] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_goto] = ACTIONS(3232), - [anon_sym___try] = ACTIONS(3232), - [anon_sym___leave] = ACTIONS(3232), - [anon_sym_not] = ACTIONS(3232), - [anon_sym_compl] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_sizeof] = ACTIONS(3232), - [anon_sym___alignof__] = ACTIONS(3232), - [anon_sym___alignof] = ACTIONS(3232), - [anon_sym__alignof] = ACTIONS(3232), - [anon_sym_alignof] = ACTIONS(3232), - [anon_sym__Alignof] = ACTIONS(3232), - [anon_sym_offsetof] = ACTIONS(3232), - [anon_sym__Generic] = ACTIONS(3232), - [anon_sym_asm] = ACTIONS(3232), - [anon_sym___asm__] = ACTIONS(3232), - [anon_sym___asm] = ACTIONS(3232), - [sym_number_literal] = ACTIONS(3234), - [anon_sym_L_SQUOTE] = ACTIONS(3234), - [anon_sym_u_SQUOTE] = ACTIONS(3234), - [anon_sym_U_SQUOTE] = ACTIONS(3234), - [anon_sym_u8_SQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_L_DQUOTE] = ACTIONS(3234), - [anon_sym_u_DQUOTE] = ACTIONS(3234), - [anon_sym_U_DQUOTE] = ACTIONS(3234), - [anon_sym_u8_DQUOTE] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3232), - [anon_sym_nullptr] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3232), - [anon_sym_decltype] = ACTIONS(3232), - [anon_sym_explicit] = ACTIONS(3232), - [anon_sym_typename] = ACTIONS(3232), - [anon_sym_template] = ACTIONS(3232), - [anon_sym_operator] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_static_assert] = ACTIONS(3232), - [anon_sym_concept] = ACTIONS(3232), - [anon_sym_co_return] = ACTIONS(3232), - [anon_sym_co_yield] = ACTIONS(3232), - [anon_sym_R_DQUOTE] = ACTIONS(3234), - [anon_sym_LR_DQUOTE] = ACTIONS(3234), - [anon_sym_uR_DQUOTE] = ACTIONS(3234), - [anon_sym_UR_DQUOTE] = ACTIONS(3234), - [anon_sym_u8R_DQUOTE] = ACTIONS(3234), - [anon_sym_co_await] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_requires] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - }, - [STATE(719)] = { - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym___try] = ACTIONS(2947), - [anon_sym___leave] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), - }, - [STATE(720)] = { - [sym_identifier] = ACTIONS(3075), - [aux_sym_preproc_include_token1] = ACTIONS(3075), - [aux_sym_preproc_def_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), - [sym_preproc_directive] = ACTIONS(3075), - [anon_sym_LPAREN2] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym___extension__] = ACTIONS(3075), - [anon_sym_typedef] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_extern] = ACTIONS(3075), - [anon_sym___attribute__] = ACTIONS(3075), - [anon_sym___attribute] = ACTIONS(3075), - [anon_sym_using] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), - [anon_sym___declspec] = ACTIONS(3075), - [anon_sym___based] = ACTIONS(3075), - [anon_sym___cdecl] = ACTIONS(3075), - [anon_sym___clrcall] = ACTIONS(3075), - [anon_sym___stdcall] = ACTIONS(3075), - [anon_sym___fastcall] = ACTIONS(3075), - [anon_sym___thiscall] = ACTIONS(3075), - [anon_sym___vectorcall] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym___inline] = ACTIONS(3075), - [anon_sym___inline__] = ACTIONS(3075), - [anon_sym___forceinline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym___thread] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym___restrict__] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym__Noreturn] = ACTIONS(3075), - [anon_sym_noreturn] = ACTIONS(3075), - [anon_sym__Nonnull] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_alignas] = ACTIONS(3075), - [anon_sym__Alignas] = ACTIONS(3075), - [sym_primitive_type] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_switch] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_default] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_goto] = ACTIONS(3075), - [anon_sym___try] = ACTIONS(3075), - [anon_sym___leave] = ACTIONS(3075), - [anon_sym_not] = ACTIONS(3075), - [anon_sym_compl] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_sizeof] = ACTIONS(3075), - [anon_sym___alignof__] = ACTIONS(3075), - [anon_sym___alignof] = ACTIONS(3075), - [anon_sym__alignof] = ACTIONS(3075), - [anon_sym_alignof] = ACTIONS(3075), - [anon_sym__Alignof] = ACTIONS(3075), - [anon_sym_offsetof] = ACTIONS(3075), - [anon_sym__Generic] = ACTIONS(3075), - [anon_sym_asm] = ACTIONS(3075), - [anon_sym___asm__] = ACTIONS(3075), - [anon_sym___asm] = ACTIONS(3075), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_L_SQUOTE] = ACTIONS(3077), - [anon_sym_u_SQUOTE] = ACTIONS(3077), - [anon_sym_U_SQUOTE] = ACTIONS(3077), - [anon_sym_u8_SQUOTE] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(3077), - [anon_sym_L_DQUOTE] = ACTIONS(3077), - [anon_sym_u_DQUOTE] = ACTIONS(3077), - [anon_sym_U_DQUOTE] = ACTIONS(3077), - [anon_sym_u8_DQUOTE] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [anon_sym_NULL] = ACTIONS(3075), - [anon_sym_nullptr] = ACTIONS(3075), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_explicit] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_static_assert] = ACTIONS(3075), - [anon_sym_concept] = ACTIONS(3075), - [anon_sym_co_return] = ACTIONS(3075), - [anon_sym_co_yield] = ACTIONS(3075), - [anon_sym_R_DQUOTE] = ACTIONS(3077), - [anon_sym_LR_DQUOTE] = ACTIONS(3077), - [anon_sym_uR_DQUOTE] = ACTIONS(3077), - [anon_sym_UR_DQUOTE] = ACTIONS(3077), - [anon_sym_u8R_DQUOTE] = ACTIONS(3077), - [anon_sym_co_await] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_requires] = ACTIONS(3075), - [sym_this] = ACTIONS(3075), - }, - [STATE(721)] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym___attribute] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym__Nonnull] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym__Alignas] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [anon_sym___asm] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - }, - [STATE(722)] = { - [sym_identifier] = ACTIONS(3111), - [aux_sym_preproc_include_token1] = ACTIONS(3111), - [aux_sym_preproc_def_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token2] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), - [sym_preproc_directive] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym___attribute] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym___based] = ACTIONS(3111), - [anon_sym___cdecl] = ACTIONS(3111), - [anon_sym___clrcall] = ACTIONS(3111), - [anon_sym___stdcall] = ACTIONS(3111), - [anon_sym___fastcall] = ACTIONS(3111), - [anon_sym___thiscall] = ACTIONS(3111), - [anon_sym___vectorcall] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym___inline] = ACTIONS(3111), - [anon_sym___inline__] = ACTIONS(3111), - [anon_sym___forceinline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym___thread] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym___restrict__] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym__Noreturn] = ACTIONS(3111), - [anon_sym_noreturn] = ACTIONS(3111), - [anon_sym__Nonnull] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym__Alignas] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3111), - [anon_sym_switch] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_default] = ACTIONS(3111), - [anon_sym_while] = ACTIONS(3111), - [anon_sym_do] = ACTIONS(3111), - [anon_sym_for] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3111), - [anon_sym_break] = ACTIONS(3111), - [anon_sym_continue] = ACTIONS(3111), - [anon_sym_goto] = ACTIONS(3111), - [anon_sym___try] = ACTIONS(3111), - [anon_sym___leave] = ACTIONS(3111), - [anon_sym_not] = ACTIONS(3111), - [anon_sym_compl] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3111), - [anon_sym___alignof__] = ACTIONS(3111), - [anon_sym___alignof] = ACTIONS(3111), - [anon_sym__alignof] = ACTIONS(3111), - [anon_sym_alignof] = ACTIONS(3111), - [anon_sym__Alignof] = ACTIONS(3111), - [anon_sym_offsetof] = ACTIONS(3111), - [anon_sym__Generic] = ACTIONS(3111), - [anon_sym_asm] = ACTIONS(3111), - [anon_sym___asm__] = ACTIONS(3111), - [anon_sym___asm] = ACTIONS(3111), - [sym_number_literal] = ACTIONS(3113), - [anon_sym_L_SQUOTE] = ACTIONS(3113), - [anon_sym_u_SQUOTE] = ACTIONS(3113), - [anon_sym_U_SQUOTE] = ACTIONS(3113), - [anon_sym_u8_SQUOTE] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(3113), - [anon_sym_L_DQUOTE] = ACTIONS(3113), - [anon_sym_u_DQUOTE] = ACTIONS(3113), - [anon_sym_U_DQUOTE] = ACTIONS(3113), - [anon_sym_u8_DQUOTE] = ACTIONS(3113), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym_true] = ACTIONS(3111), - [sym_false] = ACTIONS(3111), - [anon_sym_NULL] = ACTIONS(3111), - [anon_sym_nullptr] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_delete] = ACTIONS(3111), - [anon_sym_throw] = ACTIONS(3111), - [anon_sym_namespace] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3111), - [anon_sym_co_return] = ACTIONS(3111), - [anon_sym_co_yield] = ACTIONS(3111), - [anon_sym_R_DQUOTE] = ACTIONS(3113), - [anon_sym_LR_DQUOTE] = ACTIONS(3113), - [anon_sym_uR_DQUOTE] = ACTIONS(3113), - [anon_sym_UR_DQUOTE] = ACTIONS(3113), - [anon_sym_u8R_DQUOTE] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3111), - [anon_sym_new] = ACTIONS(3111), - [anon_sym_requires] = ACTIONS(3111), - [sym_this] = ACTIONS(3111), - }, - [STATE(723)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(724)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(725)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_include_token1] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token2] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym___cdecl] = ACTIONS(3119), - [anon_sym___clrcall] = ACTIONS(3119), - [anon_sym___stdcall] = ACTIONS(3119), - [anon_sym___fastcall] = ACTIONS(3119), - [anon_sym___thiscall] = ACTIONS(3119), - [anon_sym___vectorcall] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym___try] = ACTIONS(3119), - [anon_sym___leave] = ACTIONS(3119), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_compl] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym___alignof__] = ACTIONS(3119), - [anon_sym___alignof] = ACTIONS(3119), - [anon_sym__alignof] = ACTIONS(3119), - [anon_sym_alignof] = ACTIONS(3119), - [anon_sym__Alignof] = ACTIONS(3119), - [anon_sym_offsetof] = ACTIONS(3119), - [anon_sym__Generic] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym___asm__] = ACTIONS(3119), - [anon_sym___asm] = ACTIONS(3119), - [sym_number_literal] = ACTIONS(3121), - [anon_sym_L_SQUOTE] = ACTIONS(3121), - [anon_sym_u_SQUOTE] = ACTIONS(3121), - [anon_sym_U_SQUOTE] = ACTIONS(3121), - [anon_sym_u8_SQUOTE] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3121), - [anon_sym_L_DQUOTE] = ACTIONS(3121), - [anon_sym_u_DQUOTE] = ACTIONS(3121), - [anon_sym_U_DQUOTE] = ACTIONS(3121), - [anon_sym_u8_DQUOTE] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [anon_sym_NULL] = ACTIONS(3119), - [anon_sym_nullptr] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_delete] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), - [anon_sym_concept] = ACTIONS(3119), - [anon_sym_co_return] = ACTIONS(3119), - [anon_sym_co_yield] = ACTIONS(3119), - [anon_sym_R_DQUOTE] = ACTIONS(3121), - [anon_sym_LR_DQUOTE] = ACTIONS(3121), - [anon_sym_uR_DQUOTE] = ACTIONS(3121), - [anon_sym_UR_DQUOTE] = ACTIONS(3121), - [anon_sym_u8R_DQUOTE] = ACTIONS(3121), - [anon_sym_co_await] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_requires] = ACTIONS(3119), - [sym_this] = ACTIONS(3119), - }, - [STATE(726)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym___try] = ACTIONS(2951), - [anon_sym___leave] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), - }, - [STATE(727)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym___try] = ACTIONS(2955), - [anon_sym___leave] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), - }, - [STATE(728)] = { - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(729)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), - }, - [STATE(730)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), - }, - [STATE(731)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_include_token1] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym___cdecl] = ACTIONS(3041), - [anon_sym___clrcall] = ACTIONS(3041), - [anon_sym___stdcall] = ACTIONS(3041), - [anon_sym___fastcall] = ACTIONS(3041), - [anon_sym___thiscall] = ACTIONS(3041), - [anon_sym___vectorcall] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym___try] = ACTIONS(3041), - [anon_sym___leave] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3041), - [anon_sym_compl] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym___alignof__] = ACTIONS(3041), - [anon_sym___alignof] = ACTIONS(3041), - [anon_sym__alignof] = ACTIONS(3041), - [anon_sym_alignof] = ACTIONS(3041), - [anon_sym__Alignof] = ACTIONS(3041), - [anon_sym_offsetof] = ACTIONS(3041), - [anon_sym__Generic] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym___asm__] = ACTIONS(3041), - [anon_sym___asm] = ACTIONS(3041), - [sym_number_literal] = ACTIONS(3043), - [anon_sym_L_SQUOTE] = ACTIONS(3043), - [anon_sym_u_SQUOTE] = ACTIONS(3043), - [anon_sym_U_SQUOTE] = ACTIONS(3043), - [anon_sym_u8_SQUOTE] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_L_DQUOTE] = ACTIONS(3043), - [anon_sym_u_DQUOTE] = ACTIONS(3043), - [anon_sym_U_DQUOTE] = ACTIONS(3043), - [anon_sym_u8_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [anon_sym_NULL] = ACTIONS(3041), - [anon_sym_nullptr] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_delete] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3041), - [anon_sym_co_return] = ACTIONS(3041), - [anon_sym_co_yield] = ACTIONS(3041), - [anon_sym_R_DQUOTE] = ACTIONS(3043), - [anon_sym_LR_DQUOTE] = ACTIONS(3043), - [anon_sym_uR_DQUOTE] = ACTIONS(3043), - [anon_sym_UR_DQUOTE] = ACTIONS(3043), - [anon_sym_u8R_DQUOTE] = ACTIONS(3043), - [anon_sym_co_await] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_requires] = ACTIONS(3041), - [sym_this] = ACTIONS(3041), - }, - [STATE(732)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_include_token1] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym___cdecl] = ACTIONS(3055), - [anon_sym___clrcall] = ACTIONS(3055), - [anon_sym___stdcall] = ACTIONS(3055), - [anon_sym___fastcall] = ACTIONS(3055), - [anon_sym___thiscall] = ACTIONS(3055), - [anon_sym___vectorcall] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3055), - [anon_sym_default] = ACTIONS(3055), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_do] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym___try] = ACTIONS(3055), - [anon_sym___leave] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(3055), - [anon_sym_compl] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3055), - [anon_sym___alignof__] = ACTIONS(3055), - [anon_sym___alignof] = ACTIONS(3055), - [anon_sym__alignof] = ACTIONS(3055), - [anon_sym_alignof] = ACTIONS(3055), - [anon_sym__Alignof] = ACTIONS(3055), - [anon_sym_offsetof] = ACTIONS(3055), - [anon_sym__Generic] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym___asm__] = ACTIONS(3055), - [anon_sym___asm] = ACTIONS(3055), - [sym_number_literal] = ACTIONS(3057), - [anon_sym_L_SQUOTE] = ACTIONS(3057), - [anon_sym_u_SQUOTE] = ACTIONS(3057), - [anon_sym_U_SQUOTE] = ACTIONS(3057), - [anon_sym_u8_SQUOTE] = ACTIONS(3057), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_L_DQUOTE] = ACTIONS(3057), - [anon_sym_u_DQUOTE] = ACTIONS(3057), - [anon_sym_U_DQUOTE] = ACTIONS(3057), - [anon_sym_u8_DQUOTE] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [anon_sym_NULL] = ACTIONS(3055), - [anon_sym_nullptr] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_delete] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_namespace] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), - [anon_sym_concept] = ACTIONS(3055), - [anon_sym_co_return] = ACTIONS(3055), - [anon_sym_co_yield] = ACTIONS(3055), - [anon_sym_R_DQUOTE] = ACTIONS(3057), - [anon_sym_LR_DQUOTE] = ACTIONS(3057), - [anon_sym_uR_DQUOTE] = ACTIONS(3057), - [anon_sym_UR_DQUOTE] = ACTIONS(3057), - [anon_sym_u8R_DQUOTE] = ACTIONS(3057), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_requires] = ACTIONS(3055), - [sym_this] = ACTIONS(3055), - }, - [STATE(733)] = { - [sym_identifier] = ACTIONS(3059), - [aux_sym_preproc_include_token1] = ACTIONS(3059), - [aux_sym_preproc_def_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), - [sym_preproc_directive] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym___extension__] = ACTIONS(3059), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(3059), - [anon_sym_extern] = ACTIONS(3059), - [anon_sym___attribute__] = ACTIONS(3059), - [anon_sym___attribute] = ACTIONS(3059), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3061), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), - [anon_sym___declspec] = ACTIONS(3059), - [anon_sym___based] = ACTIONS(3059), - [anon_sym___cdecl] = ACTIONS(3059), - [anon_sym___clrcall] = ACTIONS(3059), - [anon_sym___stdcall] = ACTIONS(3059), - [anon_sym___fastcall] = ACTIONS(3059), - [anon_sym___thiscall] = ACTIONS(3059), - [anon_sym___vectorcall] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_signed] = ACTIONS(3059), - [anon_sym_unsigned] = ACTIONS(3059), - [anon_sym_long] = ACTIONS(3059), - [anon_sym_short] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_register] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym___inline] = ACTIONS(3059), - [anon_sym___inline__] = ACTIONS(3059), - [anon_sym___forceinline] = ACTIONS(3059), - [anon_sym_thread_local] = ACTIONS(3059), - [anon_sym___thread] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_constexpr] = ACTIONS(3059), - [anon_sym_volatile] = ACTIONS(3059), - [anon_sym_restrict] = ACTIONS(3059), - [anon_sym___restrict__] = ACTIONS(3059), - [anon_sym__Atomic] = ACTIONS(3059), - [anon_sym__Noreturn] = ACTIONS(3059), - [anon_sym_noreturn] = ACTIONS(3059), - [anon_sym__Nonnull] = ACTIONS(3059), - [anon_sym_mutable] = ACTIONS(3059), - [anon_sym_constinit] = ACTIONS(3059), - [anon_sym_consteval] = ACTIONS(3059), - [anon_sym_alignas] = ACTIONS(3059), - [anon_sym__Alignas] = ACTIONS(3059), - [sym_primitive_type] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_switch] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_do] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym___try] = ACTIONS(3059), - [anon_sym___leave] = ACTIONS(3059), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_compl] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_sizeof] = ACTIONS(3059), - [anon_sym___alignof__] = ACTIONS(3059), - [anon_sym___alignof] = ACTIONS(3059), - [anon_sym__alignof] = ACTIONS(3059), - [anon_sym_alignof] = ACTIONS(3059), - [anon_sym__Alignof] = ACTIONS(3059), - [anon_sym_offsetof] = ACTIONS(3059), - [anon_sym__Generic] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym___asm__] = ACTIONS(3059), - [anon_sym___asm] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_L_SQUOTE] = ACTIONS(3061), - [anon_sym_u_SQUOTE] = ACTIONS(3061), - [anon_sym_U_SQUOTE] = ACTIONS(3061), - [anon_sym_u8_SQUOTE] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(3061), - [anon_sym_L_DQUOTE] = ACTIONS(3061), - [anon_sym_u_DQUOTE] = ACTIONS(3061), - [anon_sym_U_DQUOTE] = ACTIONS(3061), - [anon_sym_u8_DQUOTE] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [anon_sym_NULL] = ACTIONS(3059), - [anon_sym_nullptr] = ACTIONS(3059), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3059), - [anon_sym_decltype] = ACTIONS(3059), - [anon_sym_explicit] = ACTIONS(3059), - [anon_sym_typename] = ACTIONS(3059), - [anon_sym_template] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_delete] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_namespace] = ACTIONS(3059), - [anon_sym_static_assert] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3059), - [anon_sym_co_return] = ACTIONS(3059), - [anon_sym_co_yield] = ACTIONS(3059), - [anon_sym_R_DQUOTE] = ACTIONS(3061), - [anon_sym_LR_DQUOTE] = ACTIONS(3061), - [anon_sym_uR_DQUOTE] = ACTIONS(3061), - [anon_sym_UR_DQUOTE] = ACTIONS(3061), - [anon_sym_u8R_DQUOTE] = ACTIONS(3061), - [anon_sym_co_await] = ACTIONS(3059), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_requires] = ACTIONS(3059), - [sym_this] = ACTIONS(3059), - }, - [STATE(734)] = { - [sym_identifier] = ACTIONS(3067), - [aux_sym_preproc_include_token1] = ACTIONS(3067), - [aux_sym_preproc_def_token1] = ACTIONS(3067), - [aux_sym_preproc_if_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3067), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3067), - [sym_preproc_directive] = ACTIONS(3067), - [anon_sym_LPAREN2] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym___extension__] = ACTIONS(3067), - [anon_sym_typedef] = ACTIONS(3067), - [anon_sym_virtual] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(3067), - [anon_sym___attribute__] = ACTIONS(3067), - [anon_sym___attribute] = ACTIONS(3067), - [anon_sym_using] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3069), - [anon_sym___declspec] = ACTIONS(3067), - [anon_sym___based] = ACTIONS(3067), - [anon_sym___cdecl] = ACTIONS(3067), - [anon_sym___clrcall] = ACTIONS(3067), - [anon_sym___stdcall] = ACTIONS(3067), - [anon_sym___fastcall] = ACTIONS(3067), - [anon_sym___thiscall] = ACTIONS(3067), - [anon_sym___vectorcall] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_signed] = ACTIONS(3067), - [anon_sym_unsigned] = ACTIONS(3067), - [anon_sym_long] = ACTIONS(3067), - [anon_sym_short] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_register] = ACTIONS(3067), - [anon_sym_inline] = ACTIONS(3067), - [anon_sym___inline] = ACTIONS(3067), - [anon_sym___inline__] = ACTIONS(3067), - [anon_sym___forceinline] = ACTIONS(3067), - [anon_sym_thread_local] = ACTIONS(3067), - [anon_sym___thread] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3067), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(3067), - [anon_sym_restrict] = ACTIONS(3067), - [anon_sym___restrict__] = ACTIONS(3067), - [anon_sym__Atomic] = ACTIONS(3067), - [anon_sym__Noreturn] = ACTIONS(3067), - [anon_sym_noreturn] = ACTIONS(3067), - [anon_sym__Nonnull] = ACTIONS(3067), - [anon_sym_mutable] = ACTIONS(3067), - [anon_sym_constinit] = ACTIONS(3067), - [anon_sym_consteval] = ACTIONS(3067), - [anon_sym_alignas] = ACTIONS(3067), - [anon_sym__Alignas] = ACTIONS(3067), - [sym_primitive_type] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_union] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3067), - [anon_sym_switch] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_default] = ACTIONS(3067), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_do] = ACTIONS(3067), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3067), - [anon_sym_break] = ACTIONS(3067), - [anon_sym_continue] = ACTIONS(3067), - [anon_sym_goto] = ACTIONS(3067), - [anon_sym___try] = ACTIONS(3067), - [anon_sym___leave] = ACTIONS(3067), - [anon_sym_not] = ACTIONS(3067), - [anon_sym_compl] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(3067), - [anon_sym___alignof__] = ACTIONS(3067), - [anon_sym___alignof] = ACTIONS(3067), - [anon_sym__alignof] = ACTIONS(3067), - [anon_sym_alignof] = ACTIONS(3067), - [anon_sym__Alignof] = ACTIONS(3067), - [anon_sym_offsetof] = ACTIONS(3067), - [anon_sym__Generic] = ACTIONS(3067), - [anon_sym_asm] = ACTIONS(3067), - [anon_sym___asm__] = ACTIONS(3067), - [anon_sym___asm] = ACTIONS(3067), - [sym_number_literal] = ACTIONS(3069), - [anon_sym_L_SQUOTE] = ACTIONS(3069), - [anon_sym_u_SQUOTE] = ACTIONS(3069), - [anon_sym_U_SQUOTE] = ACTIONS(3069), - [anon_sym_u8_SQUOTE] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_L_DQUOTE] = ACTIONS(3069), - [anon_sym_u_DQUOTE] = ACTIONS(3069), - [anon_sym_U_DQUOTE] = ACTIONS(3069), - [anon_sym_u8_DQUOTE] = ACTIONS(3069), - [anon_sym_DQUOTE] = ACTIONS(3069), - [sym_true] = ACTIONS(3067), - [sym_false] = ACTIONS(3067), - [anon_sym_NULL] = ACTIONS(3067), - [anon_sym_nullptr] = ACTIONS(3067), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3067), - [anon_sym_decltype] = ACTIONS(3067), - [anon_sym_explicit] = ACTIONS(3067), - [anon_sym_typename] = ACTIONS(3067), - [anon_sym_template] = ACTIONS(3067), - [anon_sym_operator] = ACTIONS(3067), - [anon_sym_try] = ACTIONS(3067), - [anon_sym_delete] = ACTIONS(3067), - [anon_sym_throw] = ACTIONS(3067), - [anon_sym_namespace] = ACTIONS(3067), - [anon_sym_static_assert] = ACTIONS(3067), - [anon_sym_concept] = ACTIONS(3067), - [anon_sym_co_return] = ACTIONS(3067), - [anon_sym_co_yield] = ACTIONS(3067), - [anon_sym_R_DQUOTE] = ACTIONS(3069), - [anon_sym_LR_DQUOTE] = ACTIONS(3069), - [anon_sym_uR_DQUOTE] = ACTIONS(3069), - [anon_sym_UR_DQUOTE] = ACTIONS(3069), - [anon_sym_u8R_DQUOTE] = ACTIONS(3069), - [anon_sym_co_await] = ACTIONS(3067), - [anon_sym_new] = ACTIONS(3067), - [anon_sym_requires] = ACTIONS(3067), - [sym_this] = ACTIONS(3067), - }, - [STATE(735)] = { - [sym_identifier] = ACTIONS(3071), - [aux_sym_preproc_include_token1] = ACTIONS(3071), - [aux_sym_preproc_def_token1] = ACTIONS(3071), - [aux_sym_preproc_if_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3071), - [sym_preproc_directive] = ACTIONS(3071), - [anon_sym_LPAREN2] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3071), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym___extension__] = ACTIONS(3071), - [anon_sym_typedef] = ACTIONS(3071), - [anon_sym_virtual] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(3071), - [anon_sym___attribute__] = ACTIONS(3071), - [anon_sym___attribute] = ACTIONS(3071), - [anon_sym_using] = ACTIONS(3071), - [anon_sym_COLON_COLON] = ACTIONS(3073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), - [anon_sym___declspec] = ACTIONS(3071), - [anon_sym___based] = ACTIONS(3071), - [anon_sym___cdecl] = ACTIONS(3071), - [anon_sym___clrcall] = ACTIONS(3071), - [anon_sym___stdcall] = ACTIONS(3071), - [anon_sym___fastcall] = ACTIONS(3071), - [anon_sym___thiscall] = ACTIONS(3071), - [anon_sym___vectorcall] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_signed] = ACTIONS(3071), - [anon_sym_unsigned] = ACTIONS(3071), - [anon_sym_long] = ACTIONS(3071), - [anon_sym_short] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_register] = ACTIONS(3071), - [anon_sym_inline] = ACTIONS(3071), - [anon_sym___inline] = ACTIONS(3071), - [anon_sym___inline__] = ACTIONS(3071), - [anon_sym___forceinline] = ACTIONS(3071), - [anon_sym_thread_local] = ACTIONS(3071), - [anon_sym___thread] = ACTIONS(3071), - [anon_sym_const] = ACTIONS(3071), - [anon_sym_constexpr] = ACTIONS(3071), - [anon_sym_volatile] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(3071), - [anon_sym___restrict__] = ACTIONS(3071), - [anon_sym__Atomic] = ACTIONS(3071), - [anon_sym__Noreturn] = ACTIONS(3071), - [anon_sym_noreturn] = ACTIONS(3071), - [anon_sym__Nonnull] = ACTIONS(3071), - [anon_sym_mutable] = ACTIONS(3071), - [anon_sym_constinit] = ACTIONS(3071), - [anon_sym_consteval] = ACTIONS(3071), - [anon_sym_alignas] = ACTIONS(3071), - [anon_sym__Alignas] = ACTIONS(3071), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_union] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_switch] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_while] = ACTIONS(3071), - [anon_sym_do] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_return] = ACTIONS(3071), - [anon_sym_break] = ACTIONS(3071), - [anon_sym_continue] = ACTIONS(3071), - [anon_sym_goto] = ACTIONS(3071), - [anon_sym___try] = ACTIONS(3071), - [anon_sym___leave] = ACTIONS(3071), - [anon_sym_not] = ACTIONS(3071), - [anon_sym_compl] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_sizeof] = ACTIONS(3071), - [anon_sym___alignof__] = ACTIONS(3071), - [anon_sym___alignof] = ACTIONS(3071), - [anon_sym__alignof] = ACTIONS(3071), - [anon_sym_alignof] = ACTIONS(3071), - [anon_sym__Alignof] = ACTIONS(3071), - [anon_sym_offsetof] = ACTIONS(3071), - [anon_sym__Generic] = ACTIONS(3071), - [anon_sym_asm] = ACTIONS(3071), - [anon_sym___asm__] = ACTIONS(3071), - [anon_sym___asm] = ACTIONS(3071), - [sym_number_literal] = ACTIONS(3073), - [anon_sym_L_SQUOTE] = ACTIONS(3073), - [anon_sym_u_SQUOTE] = ACTIONS(3073), - [anon_sym_U_SQUOTE] = ACTIONS(3073), - [anon_sym_u8_SQUOTE] = ACTIONS(3073), - [anon_sym_SQUOTE] = ACTIONS(3073), - [anon_sym_L_DQUOTE] = ACTIONS(3073), - [anon_sym_u_DQUOTE] = ACTIONS(3073), - [anon_sym_U_DQUOTE] = ACTIONS(3073), - [anon_sym_u8_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [sym_true] = ACTIONS(3071), - [sym_false] = ACTIONS(3071), - [anon_sym_NULL] = ACTIONS(3071), - [anon_sym_nullptr] = ACTIONS(3071), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3071), - [anon_sym_decltype] = ACTIONS(3071), - [anon_sym_explicit] = ACTIONS(3071), - [anon_sym_typename] = ACTIONS(3071), - [anon_sym_template] = ACTIONS(3071), - [anon_sym_operator] = ACTIONS(3071), - [anon_sym_try] = ACTIONS(3071), - [anon_sym_delete] = ACTIONS(3071), - [anon_sym_throw] = ACTIONS(3071), - [anon_sym_namespace] = ACTIONS(3071), - [anon_sym_static_assert] = ACTIONS(3071), - [anon_sym_concept] = ACTIONS(3071), - [anon_sym_co_return] = ACTIONS(3071), - [anon_sym_co_yield] = ACTIONS(3071), - [anon_sym_R_DQUOTE] = ACTIONS(3073), - [anon_sym_LR_DQUOTE] = ACTIONS(3073), - [anon_sym_uR_DQUOTE] = ACTIONS(3073), - [anon_sym_UR_DQUOTE] = ACTIONS(3073), - [anon_sym_u8R_DQUOTE] = ACTIONS(3073), - [anon_sym_co_await] = ACTIONS(3071), - [anon_sym_new] = ACTIONS(3071), - [anon_sym_requires] = ACTIONS(3071), - [sym_this] = ACTIONS(3071), - }, - [STATE(736)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(737)] = { - [sym_identifier] = ACTIONS(3097), - [aux_sym_preproc_include_token1] = ACTIONS(3097), - [aux_sym_preproc_def_token1] = ACTIONS(3097), - [aux_sym_preproc_if_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), - [sym_preproc_directive] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3099), - [anon_sym_BANG] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym___extension__] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3097), - [anon_sym_virtual] = ACTIONS(3097), - [anon_sym_extern] = ACTIONS(3097), - [anon_sym___attribute__] = ACTIONS(3097), - [anon_sym___attribute] = ACTIONS(3097), - [anon_sym_using] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), - [anon_sym___declspec] = ACTIONS(3097), - [anon_sym___based] = ACTIONS(3097), - [anon_sym___cdecl] = ACTIONS(3097), - [anon_sym___clrcall] = ACTIONS(3097), - [anon_sym___stdcall] = ACTIONS(3097), - [anon_sym___fastcall] = ACTIONS(3097), - [anon_sym___thiscall] = ACTIONS(3097), - [anon_sym___vectorcall] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_signed] = ACTIONS(3097), - [anon_sym_unsigned] = ACTIONS(3097), - [anon_sym_long] = ACTIONS(3097), - [anon_sym_short] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3097), - [anon_sym_register] = ACTIONS(3097), - [anon_sym_inline] = ACTIONS(3097), - [anon_sym___inline] = ACTIONS(3097), - [anon_sym___inline__] = ACTIONS(3097), - [anon_sym___forceinline] = ACTIONS(3097), - [anon_sym_thread_local] = ACTIONS(3097), - [anon_sym___thread] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_constexpr] = ACTIONS(3097), - [anon_sym_volatile] = ACTIONS(3097), - [anon_sym_restrict] = ACTIONS(3097), - [anon_sym___restrict__] = ACTIONS(3097), - [anon_sym__Atomic] = ACTIONS(3097), - [anon_sym__Noreturn] = ACTIONS(3097), - [anon_sym_noreturn] = ACTIONS(3097), - [anon_sym__Nonnull] = ACTIONS(3097), - [anon_sym_mutable] = ACTIONS(3097), - [anon_sym_constinit] = ACTIONS(3097), - [anon_sym_consteval] = ACTIONS(3097), - [anon_sym_alignas] = ACTIONS(3097), - [anon_sym__Alignas] = ACTIONS(3097), - [sym_primitive_type] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_switch] = ACTIONS(3097), - [anon_sym_case] = ACTIONS(3097), - [anon_sym_default] = ACTIONS(3097), - [anon_sym_while] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym___try] = ACTIONS(3097), - [anon_sym___leave] = ACTIONS(3097), - [anon_sym_not] = ACTIONS(3097), - [anon_sym_compl] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_sizeof] = ACTIONS(3097), - [anon_sym___alignof__] = ACTIONS(3097), - [anon_sym___alignof] = ACTIONS(3097), - [anon_sym__alignof] = ACTIONS(3097), - [anon_sym_alignof] = ACTIONS(3097), - [anon_sym__Alignof] = ACTIONS(3097), - [anon_sym_offsetof] = ACTIONS(3097), - [anon_sym__Generic] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym___asm__] = ACTIONS(3097), - [anon_sym___asm] = ACTIONS(3097), - [sym_number_literal] = ACTIONS(3099), - [anon_sym_L_SQUOTE] = ACTIONS(3099), - [anon_sym_u_SQUOTE] = ACTIONS(3099), - [anon_sym_U_SQUOTE] = ACTIONS(3099), - [anon_sym_u8_SQUOTE] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_L_DQUOTE] = ACTIONS(3099), - [anon_sym_u_DQUOTE] = ACTIONS(3099), - [anon_sym_U_DQUOTE] = ACTIONS(3099), - [anon_sym_u8_DQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [anon_sym_NULL] = ACTIONS(3097), - [anon_sym_nullptr] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3097), - [anon_sym_decltype] = ACTIONS(3097), - [anon_sym_explicit] = ACTIONS(3097), - [anon_sym_typename] = ACTIONS(3097), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(3097), - [anon_sym_try] = ACTIONS(3097), - [anon_sym_delete] = ACTIONS(3097), - [anon_sym_throw] = ACTIONS(3097), - [anon_sym_namespace] = ACTIONS(3097), - [anon_sym_static_assert] = ACTIONS(3097), - [anon_sym_concept] = ACTIONS(3097), - [anon_sym_co_return] = ACTIONS(3097), - [anon_sym_co_yield] = ACTIONS(3097), - [anon_sym_R_DQUOTE] = ACTIONS(3099), - [anon_sym_LR_DQUOTE] = ACTIONS(3099), - [anon_sym_uR_DQUOTE] = ACTIONS(3099), - [anon_sym_UR_DQUOTE] = ACTIONS(3099), - [anon_sym_u8R_DQUOTE] = ACTIONS(3099), - [anon_sym_co_await] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_requires] = ACTIONS(3097), - [sym_this] = ACTIONS(3097), - }, - [STATE(738)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_include_token1] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym___cdecl] = ACTIONS(3123), - [anon_sym___clrcall] = ACTIONS(3123), - [anon_sym___stdcall] = ACTIONS(3123), - [anon_sym___fastcall] = ACTIONS(3123), - [anon_sym___thiscall] = ACTIONS(3123), - [anon_sym___vectorcall] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym___try] = ACTIONS(3123), - [anon_sym___leave] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3123), - [anon_sym_compl] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym___alignof__] = ACTIONS(3123), - [anon_sym___alignof] = ACTIONS(3123), - [anon_sym__alignof] = ACTIONS(3123), - [anon_sym_alignof] = ACTIONS(3123), - [anon_sym__Alignof] = ACTIONS(3123), - [anon_sym_offsetof] = ACTIONS(3123), - [anon_sym__Generic] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym___asm__] = ACTIONS(3123), - [anon_sym___asm] = ACTIONS(3123), - [sym_number_literal] = ACTIONS(3125), - [anon_sym_L_SQUOTE] = ACTIONS(3125), - [anon_sym_u_SQUOTE] = ACTIONS(3125), - [anon_sym_U_SQUOTE] = ACTIONS(3125), - [anon_sym_u8_SQUOTE] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3125), - [anon_sym_L_DQUOTE] = ACTIONS(3125), - [anon_sym_u_DQUOTE] = ACTIONS(3125), - [anon_sym_U_DQUOTE] = ACTIONS(3125), - [anon_sym_u8_DQUOTE] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [anon_sym_NULL] = ACTIONS(3123), - [anon_sym_nullptr] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_delete] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(3123), - [anon_sym_co_return] = ACTIONS(3123), - [anon_sym_co_yield] = ACTIONS(3123), - [anon_sym_R_DQUOTE] = ACTIONS(3125), - [anon_sym_LR_DQUOTE] = ACTIONS(3125), - [anon_sym_uR_DQUOTE] = ACTIONS(3125), - [anon_sym_UR_DQUOTE] = ACTIONS(3125), - [anon_sym_u8R_DQUOTE] = ACTIONS(3125), - [anon_sym_co_await] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_requires] = ACTIONS(3123), - [sym_this] = ACTIONS(3123), - }, - [STATE(739)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(740)] = { - [sym_identifier] = ACTIONS(3131), - [aux_sym_preproc_include_token1] = ACTIONS(3131), - [aux_sym_preproc_def_token1] = ACTIONS(3131), - [aux_sym_preproc_if_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3131), - [sym_preproc_directive] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym___extension__] = ACTIONS(3131), - [anon_sym_typedef] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym___attribute__] = ACTIONS(3131), - [anon_sym___attribute] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3133), - [anon_sym___declspec] = ACTIONS(3131), - [anon_sym___based] = ACTIONS(3131), - [anon_sym___cdecl] = ACTIONS(3131), - [anon_sym___clrcall] = ACTIONS(3131), - [anon_sym___stdcall] = ACTIONS(3131), - [anon_sym___fastcall] = ACTIONS(3131), - [anon_sym___thiscall] = ACTIONS(3131), - [anon_sym___vectorcall] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_signed] = ACTIONS(3131), - [anon_sym_unsigned] = ACTIONS(3131), - [anon_sym_long] = ACTIONS(3131), - [anon_sym_short] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_register] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym___inline] = ACTIONS(3131), - [anon_sym___inline__] = ACTIONS(3131), - [anon_sym___forceinline] = ACTIONS(3131), - [anon_sym_thread_local] = ACTIONS(3131), - [anon_sym___thread] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_constexpr] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_restrict] = ACTIONS(3131), - [anon_sym___restrict__] = ACTIONS(3131), - [anon_sym__Atomic] = ACTIONS(3131), - [anon_sym__Noreturn] = ACTIONS(3131), - [anon_sym_noreturn] = ACTIONS(3131), - [anon_sym__Nonnull] = ACTIONS(3131), - [anon_sym_mutable] = ACTIONS(3131), - [anon_sym_constinit] = ACTIONS(3131), - [anon_sym_consteval] = ACTIONS(3131), - [anon_sym_alignas] = ACTIONS(3131), - [anon_sym__Alignas] = ACTIONS(3131), - [sym_primitive_type] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym___try] = ACTIONS(3131), - [anon_sym___leave] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_compl] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym___alignof__] = ACTIONS(3131), - [anon_sym___alignof] = ACTIONS(3131), - [anon_sym__alignof] = ACTIONS(3131), - [anon_sym_alignof] = ACTIONS(3131), - [anon_sym__Alignof] = ACTIONS(3131), - [anon_sym_offsetof] = ACTIONS(3131), - [anon_sym__Generic] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym___asm__] = ACTIONS(3131), - [anon_sym___asm] = ACTIONS(3131), - [sym_number_literal] = ACTIONS(3133), - [anon_sym_L_SQUOTE] = ACTIONS(3133), - [anon_sym_u_SQUOTE] = ACTIONS(3133), - [anon_sym_U_SQUOTE] = ACTIONS(3133), - [anon_sym_u8_SQUOTE] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3133), - [anon_sym_L_DQUOTE] = ACTIONS(3133), - [anon_sym_u_DQUOTE] = ACTIONS(3133), - [anon_sym_U_DQUOTE] = ACTIONS(3133), - [anon_sym_u8_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [anon_sym_NULL] = ACTIONS(3131), - [anon_sym_nullptr] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3131), - [anon_sym_decltype] = ACTIONS(3131), - [anon_sym_explicit] = ACTIONS(3131), - [anon_sym_typename] = ACTIONS(3131), - [anon_sym_template] = ACTIONS(3131), - [anon_sym_operator] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_delete] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_static_assert] = ACTIONS(3131), - [anon_sym_concept] = ACTIONS(3131), - [anon_sym_co_return] = ACTIONS(3131), - [anon_sym_co_yield] = ACTIONS(3131), - [anon_sym_R_DQUOTE] = ACTIONS(3133), - [anon_sym_LR_DQUOTE] = ACTIONS(3133), - [anon_sym_uR_DQUOTE] = ACTIONS(3133), - [anon_sym_UR_DQUOTE] = ACTIONS(3133), - [anon_sym_u8R_DQUOTE] = ACTIONS(3133), - [anon_sym_co_await] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_requires] = ACTIONS(3131), - [sym_this] = ACTIONS(3131), - }, - [STATE(741)] = { - [sym_identifier] = ACTIONS(3139), - [aux_sym_preproc_include_token1] = ACTIONS(3139), - [aux_sym_preproc_def_token1] = ACTIONS(3139), - [aux_sym_preproc_if_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3139), - [sym_preproc_directive] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym___extension__] = ACTIONS(3139), - [anon_sym_typedef] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym___attribute] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym___cdecl] = ACTIONS(3139), - [anon_sym___clrcall] = ACTIONS(3139), - [anon_sym___stdcall] = ACTIONS(3139), - [anon_sym___fastcall] = ACTIONS(3139), - [anon_sym___thiscall] = ACTIONS(3139), - [anon_sym___vectorcall] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym___inline] = ACTIONS(3139), - [anon_sym___inline__] = ACTIONS(3139), - [anon_sym___forceinline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym___thread] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym___restrict__] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym__Noreturn] = ACTIONS(3139), - [anon_sym_noreturn] = ACTIONS(3139), - [anon_sym__Nonnull] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_alignas] = ACTIONS(3139), - [anon_sym__Alignas] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym___try] = ACTIONS(3139), - [anon_sym___leave] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym___alignof__] = ACTIONS(3139), - [anon_sym___alignof] = ACTIONS(3139), - [anon_sym__alignof] = ACTIONS(3139), - [anon_sym_alignof] = ACTIONS(3139), - [anon_sym__Alignof] = ACTIONS(3139), - [anon_sym_offsetof] = ACTIONS(3139), - [anon_sym__Generic] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym___asm__] = ACTIONS(3139), - [anon_sym___asm] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [anon_sym_NULL] = ACTIONS(3139), - [anon_sym_nullptr] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_static_assert] = ACTIONS(3139), - [anon_sym_concept] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - }, - [STATE(742)] = { - [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_virtual] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym___attribute] = ACTIONS(3207), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(743)] = { - [sym_identifier] = ACTIONS(3177), - [aux_sym_preproc_include_token1] = ACTIONS(3177), - [aux_sym_preproc_def_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token2] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3177), - [sym_preproc_directive] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3177), - [anon_sym_typedef] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym___attribute__] = ACTIONS(3177), - [anon_sym___attribute] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3179), - [anon_sym___declspec] = ACTIONS(3177), - [anon_sym___based] = ACTIONS(3177), - [anon_sym___cdecl] = ACTIONS(3177), - [anon_sym___clrcall] = ACTIONS(3177), - [anon_sym___stdcall] = ACTIONS(3177), - [anon_sym___fastcall] = ACTIONS(3177), - [anon_sym___thiscall] = ACTIONS(3177), - [anon_sym___vectorcall] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3177), - [anon_sym_unsigned] = ACTIONS(3177), - [anon_sym_long] = ACTIONS(3177), - [anon_sym_short] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_register] = ACTIONS(3177), - [anon_sym_inline] = ACTIONS(3177), - [anon_sym___inline] = ACTIONS(3177), - [anon_sym___inline__] = ACTIONS(3177), - [anon_sym___forceinline] = ACTIONS(3177), - [anon_sym_thread_local] = ACTIONS(3177), - [anon_sym___thread] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_constexpr] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_restrict] = ACTIONS(3177), - [anon_sym___restrict__] = ACTIONS(3177), - [anon_sym__Atomic] = ACTIONS(3177), - [anon_sym__Noreturn] = ACTIONS(3177), - [anon_sym_noreturn] = ACTIONS(3177), - [anon_sym__Nonnull] = ACTIONS(3177), - [anon_sym_mutable] = ACTIONS(3177), - [anon_sym_constinit] = ACTIONS(3177), - [anon_sym_consteval] = ACTIONS(3177), - [anon_sym_alignas] = ACTIONS(3177), - [anon_sym__Alignas] = ACTIONS(3177), - [sym_primitive_type] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_case] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym___try] = ACTIONS(3177), - [anon_sym___leave] = ACTIONS(3177), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_compl] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym___alignof__] = ACTIONS(3177), - [anon_sym___alignof] = ACTIONS(3177), - [anon_sym__alignof] = ACTIONS(3177), - [anon_sym_alignof] = ACTIONS(3177), - [anon_sym__Alignof] = ACTIONS(3177), - [anon_sym_offsetof] = ACTIONS(3177), - [anon_sym__Generic] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym___asm__] = ACTIONS(3177), - [anon_sym___asm] = ACTIONS(3177), - [sym_number_literal] = ACTIONS(3179), - [anon_sym_L_SQUOTE] = ACTIONS(3179), - [anon_sym_u_SQUOTE] = ACTIONS(3179), - [anon_sym_U_SQUOTE] = ACTIONS(3179), - [anon_sym_u8_SQUOTE] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_L_DQUOTE] = ACTIONS(3179), - [anon_sym_u_DQUOTE] = ACTIONS(3179), - [anon_sym_U_DQUOTE] = ACTIONS(3179), - [anon_sym_u8_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [anon_sym_NULL] = ACTIONS(3177), - [anon_sym_nullptr] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3177), - [anon_sym_decltype] = ACTIONS(3177), - [anon_sym_explicit] = ACTIONS(3177), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(3177), - [anon_sym_operator] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_delete] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_static_assert] = ACTIONS(3177), - [anon_sym_concept] = ACTIONS(3177), - [anon_sym_co_return] = ACTIONS(3177), - [anon_sym_co_yield] = ACTIONS(3177), - [anon_sym_R_DQUOTE] = ACTIONS(3179), - [anon_sym_LR_DQUOTE] = ACTIONS(3179), - [anon_sym_uR_DQUOTE] = ACTIONS(3179), - [anon_sym_UR_DQUOTE] = ACTIONS(3179), - [anon_sym_u8R_DQUOTE] = ACTIONS(3179), - [anon_sym_co_await] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_requires] = ACTIONS(3177), - [sym_this] = ACTIONS(3177), - }, - [STATE(744)] = { - [sym_identifier] = ACTIONS(3242), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token2] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), - [sym_preproc_directive] = ACTIONS(3242), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_virtual] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym___attribute__] = ACTIONS(3242), - [anon_sym___attribute] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3242), - [anon_sym___based] = ACTIONS(3242), - [anon_sym___cdecl] = ACTIONS(3242), - [anon_sym___clrcall] = ACTIONS(3242), - [anon_sym___stdcall] = ACTIONS(3242), - [anon_sym___fastcall] = ACTIONS(3242), - [anon_sym___thiscall] = ACTIONS(3242), - [anon_sym___vectorcall] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3242), - [anon_sym_unsigned] = ACTIONS(3242), - [anon_sym_long] = ACTIONS(3242), - [anon_sym_short] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_register] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym___inline] = ACTIONS(3242), - [anon_sym___inline__] = ACTIONS(3242), - [anon_sym___forceinline] = ACTIONS(3242), - [anon_sym_thread_local] = ACTIONS(3242), - [anon_sym___thread] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_constexpr] = ACTIONS(3242), - [anon_sym_volatile] = ACTIONS(3242), - [anon_sym_restrict] = ACTIONS(3242), - [anon_sym___restrict__] = ACTIONS(3242), - [anon_sym__Atomic] = ACTIONS(3242), - [anon_sym__Noreturn] = ACTIONS(3242), - [anon_sym_noreturn] = ACTIONS(3242), - [anon_sym__Nonnull] = ACTIONS(3242), - [anon_sym_mutable] = ACTIONS(3242), - [anon_sym_constinit] = ACTIONS(3242), - [anon_sym_consteval] = ACTIONS(3242), - [anon_sym_alignas] = ACTIONS(3242), - [anon_sym__Alignas] = ACTIONS(3242), - [sym_primitive_type] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3242), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_goto] = ACTIONS(3242), - [anon_sym___try] = ACTIONS(3242), - [anon_sym___leave] = ACTIONS(3242), - [anon_sym_not] = ACTIONS(3242), - [anon_sym_compl] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3242), - [anon_sym___alignof__] = ACTIONS(3242), - [anon_sym___alignof] = ACTIONS(3242), - [anon_sym__alignof] = ACTIONS(3242), - [anon_sym_alignof] = ACTIONS(3242), - [anon_sym__Alignof] = ACTIONS(3242), - [anon_sym_offsetof] = ACTIONS(3242), - [anon_sym__Generic] = ACTIONS(3242), - [anon_sym_asm] = ACTIONS(3242), - [anon_sym___asm__] = ACTIONS(3242), - [anon_sym___asm] = ACTIONS(3242), - [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(3242), - [sym_false] = ACTIONS(3242), - [anon_sym_NULL] = ACTIONS(3242), - [anon_sym_nullptr] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3242), - [anon_sym_decltype] = ACTIONS(3242), - [anon_sym_explicit] = ACTIONS(3242), - [anon_sym_typename] = ACTIONS(3242), - [anon_sym_template] = ACTIONS(3242), - [anon_sym_operator] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_static_assert] = ACTIONS(3242), - [anon_sym_concept] = ACTIONS(3242), - [anon_sym_co_return] = ACTIONS(3242), - [anon_sym_co_yield] = ACTIONS(3242), - [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(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_requires] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - }, - [STATE(745)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_include_token1] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token2] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym___cdecl] = ACTIONS(3228), - [anon_sym___clrcall] = ACTIONS(3228), - [anon_sym___stdcall] = ACTIONS(3228), - [anon_sym___fastcall] = ACTIONS(3228), - [anon_sym___thiscall] = ACTIONS(3228), - [anon_sym___vectorcall] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_goto] = ACTIONS(3228), - [anon_sym___try] = ACTIONS(3228), - [anon_sym___leave] = ACTIONS(3228), - [anon_sym_not] = ACTIONS(3228), - [anon_sym_compl] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_sizeof] = ACTIONS(3228), - [anon_sym___alignof__] = ACTIONS(3228), - [anon_sym___alignof] = ACTIONS(3228), - [anon_sym__alignof] = ACTIONS(3228), - [anon_sym_alignof] = ACTIONS(3228), - [anon_sym__Alignof] = ACTIONS(3228), - [anon_sym_offsetof] = ACTIONS(3228), - [anon_sym__Generic] = ACTIONS(3228), - [anon_sym_asm] = ACTIONS(3228), - [anon_sym___asm__] = ACTIONS(3228), - [anon_sym___asm] = ACTIONS(3228), - [sym_number_literal] = ACTIONS(3230), - [anon_sym_L_SQUOTE] = ACTIONS(3230), - [anon_sym_u_SQUOTE] = ACTIONS(3230), - [anon_sym_U_SQUOTE] = ACTIONS(3230), - [anon_sym_u8_SQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [anon_sym_NULL] = ACTIONS(3228), - [anon_sym_nullptr] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), - [anon_sym_concept] = ACTIONS(3228), - [anon_sym_co_return] = ACTIONS(3228), - [anon_sym_co_yield] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(3230), - [anon_sym_LR_DQUOTE] = ACTIONS(3230), - [anon_sym_uR_DQUOTE] = ACTIONS(3230), - [anon_sym_UR_DQUOTE] = ACTIONS(3230), - [anon_sym_u8R_DQUOTE] = ACTIONS(3230), - [anon_sym_co_await] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_requires] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - }, - [STATE(746)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_include_token1] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = 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_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = ACTIONS(3318), - [anon_sym___cdecl] = ACTIONS(3318), - [anon_sym___clrcall] = ACTIONS(3318), - [anon_sym___stdcall] = ACTIONS(3318), - [anon_sym___fastcall] = ACTIONS(3318), - [anon_sym___thiscall] = ACTIONS(3318), - [anon_sym___vectorcall] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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_if] = ACTIONS(3318), - [anon_sym_switch] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3318), - [anon_sym_default] = ACTIONS(3318), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(3318), - [anon_sym_for] = ACTIONS(3318), - [anon_sym_return] = ACTIONS(3318), - [anon_sym_break] = ACTIONS(3318), - [anon_sym_continue] = ACTIONS(3318), - [anon_sym_goto] = ACTIONS(3318), - [anon_sym___try] = ACTIONS(3318), - [anon_sym___leave] = 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), - [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_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_throw] = ACTIONS(3318), - [anon_sym_namespace] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), - [anon_sym_concept] = ACTIONS(3318), - [anon_sym_co_return] = ACTIONS(3318), - [anon_sym_co_yield] = 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), - }, - [STATE(747)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_include_token1] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token2] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym___cdecl] = ACTIONS(3260), - [anon_sym___clrcall] = ACTIONS(3260), - [anon_sym___stdcall] = ACTIONS(3260), - [anon_sym___fastcall] = ACTIONS(3260), - [anon_sym___thiscall] = ACTIONS(3260), - [anon_sym___vectorcall] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_goto] = ACTIONS(3260), - [anon_sym___try] = ACTIONS(3260), - [anon_sym___leave] = ACTIONS(3260), - [anon_sym_not] = ACTIONS(3260), - [anon_sym_compl] = ACTIONS(3260), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_sizeof] = ACTIONS(3260), - [anon_sym___alignof__] = ACTIONS(3260), - [anon_sym___alignof] = ACTIONS(3260), - [anon_sym__alignof] = ACTIONS(3260), - [anon_sym_alignof] = ACTIONS(3260), - [anon_sym__Alignof] = ACTIONS(3260), - [anon_sym_offsetof] = ACTIONS(3260), - [anon_sym__Generic] = ACTIONS(3260), - [anon_sym_asm] = ACTIONS(3260), - [anon_sym___asm__] = ACTIONS(3260), - [anon_sym___asm] = ACTIONS(3260), - [sym_number_literal] = ACTIONS(3262), - [anon_sym_L_SQUOTE] = ACTIONS(3262), - [anon_sym_u_SQUOTE] = ACTIONS(3262), - [anon_sym_U_SQUOTE] = ACTIONS(3262), - [anon_sym_u8_SQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_L_DQUOTE] = ACTIONS(3262), - [anon_sym_u_DQUOTE] = ACTIONS(3262), - [anon_sym_U_DQUOTE] = ACTIONS(3262), - [anon_sym_u8_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [anon_sym_NULL] = ACTIONS(3260), - [anon_sym_nullptr] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), - [anon_sym_concept] = ACTIONS(3260), - [anon_sym_co_return] = ACTIONS(3260), - [anon_sym_co_yield] = ACTIONS(3260), - [anon_sym_R_DQUOTE] = ACTIONS(3262), - [anon_sym_LR_DQUOTE] = ACTIONS(3262), - [anon_sym_uR_DQUOTE] = ACTIONS(3262), - [anon_sym_UR_DQUOTE] = ACTIONS(3262), - [anon_sym_u8R_DQUOTE] = ACTIONS(3262), - [anon_sym_co_await] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_requires] = ACTIONS(3260), - [sym_this] = ACTIONS(3260), - }, - [STATE(748)] = { - [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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(749)] = { - [sym_identifier] = ACTIONS(2781), - [aux_sym_preproc_include_token1] = ACTIONS(2781), - [aux_sym_preproc_def_token1] = ACTIONS(2781), - [aux_sym_preproc_if_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), - [sym_preproc_directive] = ACTIONS(2781), - [anon_sym_LPAREN2] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2783), - [anon_sym_AMP_AMP] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym___extension__] = ACTIONS(2781), - [anon_sym_typedef] = ACTIONS(2781), - [anon_sym_virtual] = ACTIONS(2781), - [anon_sym_extern] = ACTIONS(2781), - [anon_sym___attribute__] = ACTIONS(2781), - [anon_sym___attribute] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), - [anon_sym___declspec] = ACTIONS(2781), - [anon_sym___based] = ACTIONS(2781), - [anon_sym___cdecl] = ACTIONS(2781), - [anon_sym___clrcall] = ACTIONS(2781), - [anon_sym___stdcall] = ACTIONS(2781), - [anon_sym___fastcall] = ACTIONS(2781), - [anon_sym___thiscall] = ACTIONS(2781), - [anon_sym___vectorcall] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2781), - [anon_sym_unsigned] = ACTIONS(2781), - [anon_sym_long] = ACTIONS(2781), - [anon_sym_short] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_register] = ACTIONS(2781), - [anon_sym_inline] = ACTIONS(2781), - [anon_sym___inline] = ACTIONS(2781), - [anon_sym___inline__] = ACTIONS(2781), - [anon_sym___forceinline] = ACTIONS(2781), - [anon_sym_thread_local] = ACTIONS(2781), - [anon_sym___thread] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_constexpr] = ACTIONS(2781), - [anon_sym_volatile] = ACTIONS(2781), - [anon_sym_restrict] = ACTIONS(2781), - [anon_sym___restrict__] = ACTIONS(2781), - [anon_sym__Atomic] = ACTIONS(2781), - [anon_sym__Noreturn] = ACTIONS(2781), - [anon_sym_noreturn] = ACTIONS(2781), - [anon_sym__Nonnull] = ACTIONS(2781), - [anon_sym_mutable] = ACTIONS(2781), - [anon_sym_constinit] = ACTIONS(2781), - [anon_sym_consteval] = ACTIONS(2781), - [anon_sym_alignas] = ACTIONS(2781), - [anon_sym__Alignas] = ACTIONS(2781), - [sym_primitive_type] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2781), - [anon_sym_union] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_goto] = ACTIONS(2781), - [anon_sym___try] = ACTIONS(2781), - [anon_sym___leave] = ACTIONS(2781), - [anon_sym_not] = ACTIONS(2781), - [anon_sym_compl] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_sizeof] = ACTIONS(2781), - [anon_sym___alignof__] = ACTIONS(2781), - [anon_sym___alignof] = ACTIONS(2781), - [anon_sym__alignof] = ACTIONS(2781), - [anon_sym_alignof] = ACTIONS(2781), - [anon_sym__Alignof] = ACTIONS(2781), - [anon_sym_offsetof] = ACTIONS(2781), - [anon_sym__Generic] = ACTIONS(2781), - [anon_sym_asm] = ACTIONS(2781), - [anon_sym___asm__] = ACTIONS(2781), - [anon_sym___asm] = ACTIONS(2781), - [sym_number_literal] = ACTIONS(2783), - [anon_sym_L_SQUOTE] = ACTIONS(2783), - [anon_sym_u_SQUOTE] = ACTIONS(2783), - [anon_sym_U_SQUOTE] = ACTIONS(2783), - [anon_sym_u8_SQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_L_DQUOTE] = ACTIONS(2783), - [anon_sym_u_DQUOTE] = ACTIONS(2783), - [anon_sym_U_DQUOTE] = ACTIONS(2783), - [anon_sym_u8_DQUOTE] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [anon_sym_NULL] = ACTIONS(2781), - [anon_sym_nullptr] = ACTIONS(2781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2781), - [anon_sym_decltype] = ACTIONS(2781), - [anon_sym_explicit] = ACTIONS(2781), - [anon_sym_typename] = ACTIONS(2781), - [anon_sym_template] = ACTIONS(2781), - [anon_sym_operator] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_static_assert] = ACTIONS(2781), - [anon_sym_concept] = ACTIONS(2781), - [anon_sym_co_return] = ACTIONS(2781), - [anon_sym_co_yield] = ACTIONS(2781), - [anon_sym_R_DQUOTE] = ACTIONS(2783), - [anon_sym_LR_DQUOTE] = ACTIONS(2783), - [anon_sym_uR_DQUOTE] = ACTIONS(2783), - [anon_sym_UR_DQUOTE] = ACTIONS(2783), - [anon_sym_u8R_DQUOTE] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_requires] = ACTIONS(2781), - [sym_this] = ACTIONS(2781), - }, - [STATE(750)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym___try] = ACTIONS(2785), - [anon_sym___leave] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [anon_sym___alignof__] = ACTIONS(2785), - [anon_sym___alignof] = ACTIONS(2785), - [anon_sym__alignof] = ACTIONS(2785), - [anon_sym_alignof] = ACTIONS(2785), - [anon_sym__Alignof] = ACTIONS(2785), - [anon_sym_offsetof] = ACTIONS(2785), - [anon_sym__Generic] = ACTIONS(2785), - [anon_sym_asm] = ACTIONS(2785), - [anon_sym___asm__] = ACTIONS(2785), - [anon_sym___asm] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [anon_sym_NULL] = ACTIONS(2785), - [anon_sym_nullptr] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - }, - [STATE(751)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_include_token1] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token2] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym___cdecl] = ACTIONS(3276), - [anon_sym___clrcall] = ACTIONS(3276), - [anon_sym___stdcall] = ACTIONS(3276), - [anon_sym___fastcall] = ACTIONS(3276), - [anon_sym___thiscall] = ACTIONS(3276), - [anon_sym___vectorcall] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_goto] = ACTIONS(3276), - [anon_sym___try] = ACTIONS(3276), - [anon_sym___leave] = ACTIONS(3276), - [anon_sym_not] = ACTIONS(3276), - [anon_sym_compl] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_sizeof] = ACTIONS(3276), - [anon_sym___alignof__] = ACTIONS(3276), - [anon_sym___alignof] = ACTIONS(3276), - [anon_sym__alignof] = ACTIONS(3276), - [anon_sym_alignof] = ACTIONS(3276), - [anon_sym__Alignof] = ACTIONS(3276), - [anon_sym_offsetof] = ACTIONS(3276), - [anon_sym__Generic] = ACTIONS(3276), - [anon_sym_asm] = ACTIONS(3276), - [anon_sym___asm__] = ACTIONS(3276), - [anon_sym___asm] = ACTIONS(3276), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_L_SQUOTE] = ACTIONS(3278), - [anon_sym_u_SQUOTE] = ACTIONS(3278), - [anon_sym_U_SQUOTE] = ACTIONS(3278), - [anon_sym_u8_SQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_L_DQUOTE] = ACTIONS(3278), - [anon_sym_u_DQUOTE] = ACTIONS(3278), - [anon_sym_U_DQUOTE] = ACTIONS(3278), - [anon_sym_u8_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [anon_sym_NULL] = ACTIONS(3276), - [anon_sym_nullptr] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), - [anon_sym_concept] = ACTIONS(3276), - [anon_sym_co_return] = ACTIONS(3276), - [anon_sym_co_yield] = ACTIONS(3276), - [anon_sym_R_DQUOTE] = ACTIONS(3278), - [anon_sym_LR_DQUOTE] = ACTIONS(3278), - [anon_sym_uR_DQUOTE] = ACTIONS(3278), - [anon_sym_UR_DQUOTE] = ACTIONS(3278), - [anon_sym_u8R_DQUOTE] = ACTIONS(3278), - [anon_sym_co_await] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_requires] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - }, - [STATE(752)] = { - [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_virtual] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym___attribute] = ACTIONS(2849), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym__Alignas] = 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_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), - [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_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_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = 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), - }, - [STATE(753)] = { - [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_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(754)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(755)] = { - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(756)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_include_token1] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token2] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym___cdecl] = ACTIONS(3296), - [anon_sym___clrcall] = ACTIONS(3296), - [anon_sym___stdcall] = ACTIONS(3296), - [anon_sym___fastcall] = ACTIONS(3296), - [anon_sym___thiscall] = ACTIONS(3296), - [anon_sym___vectorcall] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_goto] = ACTIONS(3296), - [anon_sym___try] = ACTIONS(3296), - [anon_sym___leave] = ACTIONS(3296), - [anon_sym_not] = ACTIONS(3296), - [anon_sym_compl] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_sizeof] = ACTIONS(3296), - [anon_sym___alignof__] = ACTIONS(3296), - [anon_sym___alignof] = ACTIONS(3296), - [anon_sym__alignof] = ACTIONS(3296), - [anon_sym_alignof] = ACTIONS(3296), - [anon_sym__Alignof] = ACTIONS(3296), - [anon_sym_offsetof] = ACTIONS(3296), - [anon_sym__Generic] = ACTIONS(3296), - [anon_sym_asm] = ACTIONS(3296), - [anon_sym___asm__] = ACTIONS(3296), - [anon_sym___asm] = ACTIONS(3296), - [sym_number_literal] = ACTIONS(3298), - [anon_sym_L_SQUOTE] = ACTIONS(3298), - [anon_sym_u_SQUOTE] = ACTIONS(3298), - [anon_sym_U_SQUOTE] = ACTIONS(3298), - [anon_sym_u8_SQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [anon_sym_L_DQUOTE] = ACTIONS(3298), - [anon_sym_u_DQUOTE] = ACTIONS(3298), - [anon_sym_U_DQUOTE] = ACTIONS(3298), - [anon_sym_u8_DQUOTE] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [anon_sym_NULL] = ACTIONS(3296), - [anon_sym_nullptr] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), - [anon_sym_concept] = ACTIONS(3296), - [anon_sym_co_return] = ACTIONS(3296), - [anon_sym_co_yield] = ACTIONS(3296), - [anon_sym_R_DQUOTE] = ACTIONS(3298), - [anon_sym_LR_DQUOTE] = ACTIONS(3298), - [anon_sym_uR_DQUOTE] = ACTIONS(3298), - [anon_sym_UR_DQUOTE] = ACTIONS(3298), - [anon_sym_u8R_DQUOTE] = ACTIONS(3298), - [anon_sym_co_await] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_requires] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - }, - [STATE(757)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_include_token1] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token2] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym___cdecl] = ACTIONS(3304), - [anon_sym___clrcall] = ACTIONS(3304), - [anon_sym___stdcall] = ACTIONS(3304), - [anon_sym___fastcall] = ACTIONS(3304), - [anon_sym___thiscall] = ACTIONS(3304), - [anon_sym___vectorcall] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_goto] = ACTIONS(3304), - [anon_sym___try] = ACTIONS(3304), - [anon_sym___leave] = ACTIONS(3304), - [anon_sym_not] = ACTIONS(3304), - [anon_sym_compl] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_sizeof] = ACTIONS(3304), - [anon_sym___alignof__] = ACTIONS(3304), - [anon_sym___alignof] = ACTIONS(3304), - [anon_sym__alignof] = ACTIONS(3304), - [anon_sym_alignof] = ACTIONS(3304), - [anon_sym__Alignof] = ACTIONS(3304), - [anon_sym_offsetof] = ACTIONS(3304), - [anon_sym__Generic] = ACTIONS(3304), - [anon_sym_asm] = ACTIONS(3304), - [anon_sym___asm__] = ACTIONS(3304), - [anon_sym___asm] = ACTIONS(3304), - [sym_number_literal] = ACTIONS(3306), - [anon_sym_L_SQUOTE] = ACTIONS(3306), - [anon_sym_u_SQUOTE] = ACTIONS(3306), - [anon_sym_U_SQUOTE] = ACTIONS(3306), - [anon_sym_u8_SQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [anon_sym_L_DQUOTE] = ACTIONS(3306), - [anon_sym_u_DQUOTE] = ACTIONS(3306), - [anon_sym_U_DQUOTE] = ACTIONS(3306), - [anon_sym_u8_DQUOTE] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [anon_sym_NULL] = ACTIONS(3304), - [anon_sym_nullptr] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - [anon_sym_concept] = ACTIONS(3304), - [anon_sym_co_return] = ACTIONS(3304), - [anon_sym_co_yield] = ACTIONS(3304), - [anon_sym_R_DQUOTE] = ACTIONS(3306), - [anon_sym_LR_DQUOTE] = ACTIONS(3306), - [anon_sym_uR_DQUOTE] = ACTIONS(3306), - [anon_sym_UR_DQUOTE] = ACTIONS(3306), - [anon_sym_u8R_DQUOTE] = ACTIONS(3306), - [anon_sym_co_await] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_requires] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - }, - [STATE(758)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(759)] = { - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(760)] = { - [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_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(761)] = { - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(762)] = { - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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_RBRACE] = 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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(763)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_include_token1] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token2] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym___cdecl] = ACTIONS(3217), - [anon_sym___clrcall] = ACTIONS(3217), - [anon_sym___stdcall] = ACTIONS(3217), - [anon_sym___fastcall] = ACTIONS(3217), - [anon_sym___thiscall] = ACTIONS(3217), - [anon_sym___vectorcall] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym___try] = ACTIONS(3217), - [anon_sym___leave] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3217), - [anon_sym_compl] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym___alignof__] = ACTIONS(3217), - [anon_sym___alignof] = ACTIONS(3217), - [anon_sym__alignof] = ACTIONS(3217), - [anon_sym_alignof] = ACTIONS(3217), - [anon_sym__Alignof] = ACTIONS(3217), - [anon_sym_offsetof] = ACTIONS(3217), - [anon_sym__Generic] = ACTIONS(3217), - [anon_sym_asm] = ACTIONS(3217), - [anon_sym___asm__] = ACTIONS(3217), - [anon_sym___asm] = ACTIONS(3217), - [sym_number_literal] = ACTIONS(3219), - [anon_sym_L_SQUOTE] = ACTIONS(3219), - [anon_sym_u_SQUOTE] = ACTIONS(3219), - [anon_sym_U_SQUOTE] = ACTIONS(3219), - [anon_sym_u8_SQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_L_DQUOTE] = ACTIONS(3219), - [anon_sym_u_DQUOTE] = ACTIONS(3219), - [anon_sym_U_DQUOTE] = ACTIONS(3219), - [anon_sym_u8_DQUOTE] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [anon_sym_NULL] = ACTIONS(3217), - [anon_sym_nullptr] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), - [anon_sym_concept] = ACTIONS(3217), - [anon_sym_co_return] = ACTIONS(3217), - [anon_sym_co_yield] = ACTIONS(3217), - [anon_sym_R_DQUOTE] = ACTIONS(3219), - [anon_sym_LR_DQUOTE] = ACTIONS(3219), - [anon_sym_uR_DQUOTE] = ACTIONS(3219), - [anon_sym_UR_DQUOTE] = ACTIONS(3219), - [anon_sym_u8R_DQUOTE] = ACTIONS(3219), - [anon_sym_co_await] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_requires] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - }, - [STATE(764)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_include_token1] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym___cdecl] = ACTIONS(2995), - [anon_sym___clrcall] = ACTIONS(2995), - [anon_sym___stdcall] = ACTIONS(2995), - [anon_sym___fastcall] = ACTIONS(2995), - [anon_sym___thiscall] = ACTIONS(2995), - [anon_sym___vectorcall] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_switch] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_default] = ACTIONS(2995), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_do] = ACTIONS(2995), - [anon_sym_for] = ACTIONS(2995), - [anon_sym_return] = ACTIONS(2995), - [anon_sym_break] = ACTIONS(2995), - [anon_sym_continue] = ACTIONS(2995), - [anon_sym_goto] = ACTIONS(2995), - [anon_sym___try] = ACTIONS(2995), - [anon_sym___leave] = ACTIONS(2995), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(2995), - [anon_sym___alignof__] = ACTIONS(2995), - [anon_sym___alignof] = ACTIONS(2995), - [anon_sym__alignof] = ACTIONS(2995), - [anon_sym_alignof] = ACTIONS(2995), - [anon_sym__Alignof] = ACTIONS(2995), - [anon_sym_offsetof] = ACTIONS(2995), - [anon_sym__Generic] = ACTIONS(2995), - [anon_sym_asm] = ACTIONS(2995), - [anon_sym___asm__] = ACTIONS(2995), - [anon_sym___asm] = ACTIONS(2995), - [sym_number_literal] = ACTIONS(2997), - [anon_sym_L_SQUOTE] = ACTIONS(2997), - [anon_sym_u_SQUOTE] = ACTIONS(2997), - [anon_sym_U_SQUOTE] = ACTIONS(2997), - [anon_sym_u8_SQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_L_DQUOTE] = ACTIONS(2997), - [anon_sym_u_DQUOTE] = ACTIONS(2997), - [anon_sym_U_DQUOTE] = ACTIONS(2997), - [anon_sym_u8_DQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [sym_true] = ACTIONS(2995), - [sym_false] = ACTIONS(2995), - [anon_sym_NULL] = ACTIONS(2995), - [anon_sym_nullptr] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_throw] = ACTIONS(2995), - [anon_sym_namespace] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), - [anon_sym_concept] = ACTIONS(2995), - [anon_sym_co_return] = ACTIONS(2995), - [anon_sym_co_yield] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2997), - [anon_sym_LR_DQUOTE] = ACTIONS(2997), - [anon_sym_uR_DQUOTE] = ACTIONS(2997), - [anon_sym_UR_DQUOTE] = ACTIONS(2997), - [anon_sym_u8R_DQUOTE] = ACTIONS(2997), - [anon_sym_co_await] = ACTIONS(2995), - [anon_sym_new] = ACTIONS(2995), - [anon_sym_requires] = ACTIONS(2995), - [sym_this] = ACTIONS(2995), - }, - [STATE(765)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_include_token1] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym___cdecl] = ACTIONS(2999), - [anon_sym___clrcall] = ACTIONS(2999), - [anon_sym___stdcall] = ACTIONS(2999), - [anon_sym___fastcall] = ACTIONS(2999), - [anon_sym___thiscall] = ACTIONS(2999), - [anon_sym___vectorcall] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_switch] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_default] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_goto] = ACTIONS(2999), - [anon_sym___try] = ACTIONS(2999), - [anon_sym___leave] = ACTIONS(2999), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_compl] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(2999), - [anon_sym___alignof__] = ACTIONS(2999), - [anon_sym___alignof] = ACTIONS(2999), - [anon_sym__alignof] = ACTIONS(2999), - [anon_sym_alignof] = ACTIONS(2999), - [anon_sym__Alignof] = ACTIONS(2999), - [anon_sym_offsetof] = ACTIONS(2999), - [anon_sym__Generic] = ACTIONS(2999), - [anon_sym_asm] = ACTIONS(2999), - [anon_sym___asm__] = ACTIONS(2999), - [anon_sym___asm] = ACTIONS(2999), - [sym_number_literal] = ACTIONS(3001), - [anon_sym_L_SQUOTE] = ACTIONS(3001), - [anon_sym_u_SQUOTE] = ACTIONS(3001), - [anon_sym_U_SQUOTE] = ACTIONS(3001), - [anon_sym_u8_SQUOTE] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_L_DQUOTE] = ACTIONS(3001), - [anon_sym_u_DQUOTE] = ACTIONS(3001), - [anon_sym_U_DQUOTE] = ACTIONS(3001), - [anon_sym_u8_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [anon_sym_NULL] = ACTIONS(2999), - [anon_sym_nullptr] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_namespace] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), - [anon_sym_concept] = ACTIONS(2999), - [anon_sym_co_return] = ACTIONS(2999), - [anon_sym_co_yield] = ACTIONS(2999), - [anon_sym_R_DQUOTE] = ACTIONS(3001), - [anon_sym_LR_DQUOTE] = ACTIONS(3001), - [anon_sym_uR_DQUOTE] = ACTIONS(3001), - [anon_sym_UR_DQUOTE] = ACTIONS(3001), - [anon_sym_u8R_DQUOTE] = ACTIONS(3001), - [anon_sym_co_await] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_requires] = ACTIONS(2999), - [sym_this] = ACTIONS(2999), - }, - [STATE(766)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_include_token1] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym___cdecl] = ACTIONS(3003), - [anon_sym___clrcall] = ACTIONS(3003), - [anon_sym___stdcall] = ACTIONS(3003), - [anon_sym___fastcall] = ACTIONS(3003), - [anon_sym___thiscall] = ACTIONS(3003), - [anon_sym___vectorcall] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_switch] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_goto] = ACTIONS(3003), - [anon_sym___try] = ACTIONS(3003), - [anon_sym___leave] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3003), - [anon_sym_compl] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3003), - [anon_sym___alignof__] = ACTIONS(3003), - [anon_sym___alignof] = ACTIONS(3003), - [anon_sym__alignof] = ACTIONS(3003), - [anon_sym_alignof] = ACTIONS(3003), - [anon_sym__Alignof] = ACTIONS(3003), - [anon_sym_offsetof] = ACTIONS(3003), - [anon_sym__Generic] = ACTIONS(3003), - [anon_sym_asm] = ACTIONS(3003), - [anon_sym___asm__] = ACTIONS(3003), - [anon_sym___asm] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_L_SQUOTE] = ACTIONS(3005), - [anon_sym_u_SQUOTE] = ACTIONS(3005), - [anon_sym_U_SQUOTE] = ACTIONS(3005), - [anon_sym_u8_SQUOTE] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_L_DQUOTE] = ACTIONS(3005), - [anon_sym_u_DQUOTE] = ACTIONS(3005), - [anon_sym_U_DQUOTE] = ACTIONS(3005), - [anon_sym_u8_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [anon_sym_NULL] = ACTIONS(3003), - [anon_sym_nullptr] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - [anon_sym_concept] = ACTIONS(3003), - [anon_sym_co_return] = ACTIONS(3003), - [anon_sym_co_yield] = ACTIONS(3003), - [anon_sym_R_DQUOTE] = ACTIONS(3005), - [anon_sym_LR_DQUOTE] = ACTIONS(3005), - [anon_sym_uR_DQUOTE] = ACTIONS(3005), - [anon_sym_UR_DQUOTE] = ACTIONS(3005), - [anon_sym_u8R_DQUOTE] = ACTIONS(3005), - [anon_sym_co_await] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_requires] = ACTIONS(3003), - [sym_this] = ACTIONS(3003), - }, - [STATE(767)] = { - [sym_identifier] = ACTIONS(3007), - [aux_sym_preproc_include_token1] = ACTIONS(3007), - [aux_sym_preproc_def_token1] = ACTIONS(3007), - [aux_sym_preproc_if_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3007), - [sym_preproc_directive] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3007), - [anon_sym_virtual] = ACTIONS(3007), - [anon_sym_extern] = ACTIONS(3007), - [anon_sym___attribute__] = ACTIONS(3007), - [anon_sym___attribute] = ACTIONS(3007), - [anon_sym_using] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3009), - [anon_sym___declspec] = ACTIONS(3007), - [anon_sym___based] = ACTIONS(3007), - [anon_sym___cdecl] = ACTIONS(3007), - [anon_sym___clrcall] = ACTIONS(3007), - [anon_sym___stdcall] = ACTIONS(3007), - [anon_sym___fastcall] = ACTIONS(3007), - [anon_sym___thiscall] = ACTIONS(3007), - [anon_sym___vectorcall] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_signed] = ACTIONS(3007), - [anon_sym_unsigned] = ACTIONS(3007), - [anon_sym_long] = ACTIONS(3007), - [anon_sym_short] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_register] = ACTIONS(3007), - [anon_sym_inline] = ACTIONS(3007), - [anon_sym___inline] = ACTIONS(3007), - [anon_sym___inline__] = ACTIONS(3007), - [anon_sym___forceinline] = ACTIONS(3007), - [anon_sym_thread_local] = ACTIONS(3007), - [anon_sym___thread] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_constexpr] = ACTIONS(3007), - [anon_sym_volatile] = ACTIONS(3007), - [anon_sym_restrict] = ACTIONS(3007), - [anon_sym___restrict__] = ACTIONS(3007), - [anon_sym__Atomic] = ACTIONS(3007), - [anon_sym__Noreturn] = ACTIONS(3007), - [anon_sym_noreturn] = ACTIONS(3007), - [anon_sym__Nonnull] = ACTIONS(3007), - [anon_sym_mutable] = ACTIONS(3007), - [anon_sym_constinit] = ACTIONS(3007), - [anon_sym_consteval] = ACTIONS(3007), - [anon_sym_alignas] = ACTIONS(3007), - [anon_sym__Alignas] = ACTIONS(3007), - [sym_primitive_type] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_switch] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym___try] = ACTIONS(3007), - [anon_sym___leave] = ACTIONS(3007), - [anon_sym_not] = ACTIONS(3007), - [anon_sym_compl] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_sizeof] = ACTIONS(3007), - [anon_sym___alignof__] = ACTIONS(3007), - [anon_sym___alignof] = ACTIONS(3007), - [anon_sym__alignof] = ACTIONS(3007), - [anon_sym_alignof] = ACTIONS(3007), - [anon_sym__Alignof] = ACTIONS(3007), - [anon_sym_offsetof] = ACTIONS(3007), - [anon_sym__Generic] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym___asm__] = ACTIONS(3007), - [anon_sym___asm] = ACTIONS(3007), - [sym_number_literal] = ACTIONS(3009), - [anon_sym_L_SQUOTE] = ACTIONS(3009), - [anon_sym_u_SQUOTE] = ACTIONS(3009), - [anon_sym_U_SQUOTE] = ACTIONS(3009), - [anon_sym_u8_SQUOTE] = ACTIONS(3009), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_L_DQUOTE] = ACTIONS(3009), - [anon_sym_u_DQUOTE] = ACTIONS(3009), - [anon_sym_U_DQUOTE] = ACTIONS(3009), - [anon_sym_u8_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [anon_sym_NULL] = ACTIONS(3007), - [anon_sym_nullptr] = ACTIONS(3007), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3007), - [anon_sym_decltype] = ACTIONS(3007), - [anon_sym_explicit] = ACTIONS(3007), - [anon_sym_typename] = ACTIONS(3007), - [anon_sym_template] = ACTIONS(3007), - [anon_sym_operator] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_delete] = ACTIONS(3007), - [anon_sym_throw] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_static_assert] = ACTIONS(3007), - [anon_sym_concept] = ACTIONS(3007), - [anon_sym_co_return] = ACTIONS(3007), - [anon_sym_co_yield] = ACTIONS(3007), - [anon_sym_R_DQUOTE] = ACTIONS(3009), - [anon_sym_LR_DQUOTE] = ACTIONS(3009), - [anon_sym_uR_DQUOTE] = ACTIONS(3009), - [anon_sym_UR_DQUOTE] = ACTIONS(3009), - [anon_sym_u8R_DQUOTE] = ACTIONS(3009), - [anon_sym_co_await] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_requires] = ACTIONS(3007), - [sym_this] = ACTIONS(3007), - }, - [STATE(768)] = { - [sym_identifier] = ACTIONS(3011), - [aux_sym_preproc_include_token1] = ACTIONS(3011), - [aux_sym_preproc_def_token1] = ACTIONS(3011), - [aux_sym_preproc_if_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3011), - [sym_preproc_directive] = ACTIONS(3011), - [anon_sym_LPAREN2] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym___extension__] = ACTIONS(3011), - [anon_sym_typedef] = ACTIONS(3011), - [anon_sym_virtual] = ACTIONS(3011), - [anon_sym_extern] = ACTIONS(3011), - [anon_sym___attribute__] = ACTIONS(3011), - [anon_sym___attribute] = ACTIONS(3011), - [anon_sym_using] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3013), - [anon_sym___declspec] = ACTIONS(3011), - [anon_sym___based] = ACTIONS(3011), - [anon_sym___cdecl] = ACTIONS(3011), - [anon_sym___clrcall] = ACTIONS(3011), - [anon_sym___stdcall] = ACTIONS(3011), - [anon_sym___fastcall] = ACTIONS(3011), - [anon_sym___thiscall] = ACTIONS(3011), - [anon_sym___vectorcall] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_signed] = ACTIONS(3011), - [anon_sym_unsigned] = ACTIONS(3011), - [anon_sym_long] = ACTIONS(3011), - [anon_sym_short] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_register] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym___inline] = ACTIONS(3011), - [anon_sym___inline__] = ACTIONS(3011), - [anon_sym___forceinline] = ACTIONS(3011), - [anon_sym_thread_local] = ACTIONS(3011), - [anon_sym___thread] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_constexpr] = ACTIONS(3011), - [anon_sym_volatile] = ACTIONS(3011), - [anon_sym_restrict] = ACTIONS(3011), - [anon_sym___restrict__] = ACTIONS(3011), - [anon_sym__Atomic] = ACTIONS(3011), - [anon_sym__Noreturn] = ACTIONS(3011), - [anon_sym_noreturn] = ACTIONS(3011), - [anon_sym__Nonnull] = ACTIONS(3011), - [anon_sym_mutable] = ACTIONS(3011), - [anon_sym_constinit] = ACTIONS(3011), - [anon_sym_consteval] = ACTIONS(3011), - [anon_sym_alignas] = ACTIONS(3011), - [anon_sym__Alignas] = ACTIONS(3011), - [sym_primitive_type] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_switch] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_default] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_do] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym___try] = ACTIONS(3011), - [anon_sym___leave] = ACTIONS(3011), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_compl] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_sizeof] = ACTIONS(3011), - [anon_sym___alignof__] = ACTIONS(3011), - [anon_sym___alignof] = ACTIONS(3011), - [anon_sym__alignof] = ACTIONS(3011), - [anon_sym_alignof] = ACTIONS(3011), - [anon_sym__Alignof] = ACTIONS(3011), - [anon_sym_offsetof] = ACTIONS(3011), - [anon_sym__Generic] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym___asm__] = ACTIONS(3011), - [anon_sym___asm] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(3013), - [anon_sym_L_SQUOTE] = ACTIONS(3013), - [anon_sym_u_SQUOTE] = ACTIONS(3013), - [anon_sym_U_SQUOTE] = ACTIONS(3013), - [anon_sym_u8_SQUOTE] = ACTIONS(3013), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_L_DQUOTE] = ACTIONS(3013), - [anon_sym_u_DQUOTE] = ACTIONS(3013), - [anon_sym_U_DQUOTE] = ACTIONS(3013), - [anon_sym_u8_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [anon_sym_NULL] = ACTIONS(3011), - [anon_sym_nullptr] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3011), - [anon_sym_decltype] = ACTIONS(3011), - [anon_sym_explicit] = ACTIONS(3011), - [anon_sym_typename] = ACTIONS(3011), - [anon_sym_template] = ACTIONS(3011), - [anon_sym_operator] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_delete] = ACTIONS(3011), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_namespace] = ACTIONS(3011), - [anon_sym_static_assert] = ACTIONS(3011), - [anon_sym_concept] = ACTIONS(3011), - [anon_sym_co_return] = ACTIONS(3011), - [anon_sym_co_yield] = ACTIONS(3011), - [anon_sym_R_DQUOTE] = ACTIONS(3013), - [anon_sym_LR_DQUOTE] = ACTIONS(3013), - [anon_sym_uR_DQUOTE] = ACTIONS(3013), - [anon_sym_UR_DQUOTE] = ACTIONS(3013), - [anon_sym_u8R_DQUOTE] = ACTIONS(3013), - [anon_sym_co_await] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_requires] = ACTIONS(3011), - [sym_this] = ACTIONS(3011), - }, - [STATE(769)] = { - [sym_identifier] = ACTIONS(3015), - [aux_sym_preproc_include_token1] = ACTIONS(3015), - [aux_sym_preproc_def_token1] = ACTIONS(3015), - [aux_sym_preproc_if_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3015), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3015), - [sym_preproc_directive] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym___extension__] = ACTIONS(3015), - [anon_sym_typedef] = ACTIONS(3015), - [anon_sym_virtual] = ACTIONS(3015), - [anon_sym_extern] = ACTIONS(3015), - [anon_sym___attribute__] = ACTIONS(3015), - [anon_sym___attribute] = ACTIONS(3015), - [anon_sym_using] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3017), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3017), - [anon_sym___declspec] = ACTIONS(3015), - [anon_sym___based] = ACTIONS(3015), - [anon_sym___cdecl] = ACTIONS(3015), - [anon_sym___clrcall] = ACTIONS(3015), - [anon_sym___stdcall] = ACTIONS(3015), - [anon_sym___fastcall] = ACTIONS(3015), - [anon_sym___thiscall] = ACTIONS(3015), - [anon_sym___vectorcall] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_signed] = ACTIONS(3015), - [anon_sym_unsigned] = ACTIONS(3015), - [anon_sym_long] = ACTIONS(3015), - [anon_sym_short] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_register] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym___inline] = ACTIONS(3015), - [anon_sym___inline__] = ACTIONS(3015), - [anon_sym___forceinline] = ACTIONS(3015), - [anon_sym_thread_local] = ACTIONS(3015), - [anon_sym___thread] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_constexpr] = ACTIONS(3015), - [anon_sym_volatile] = ACTIONS(3015), - [anon_sym_restrict] = ACTIONS(3015), - [anon_sym___restrict__] = ACTIONS(3015), - [anon_sym__Atomic] = ACTIONS(3015), - [anon_sym__Noreturn] = ACTIONS(3015), - [anon_sym_noreturn] = ACTIONS(3015), - [anon_sym__Nonnull] = ACTIONS(3015), - [anon_sym_mutable] = ACTIONS(3015), - [anon_sym_constinit] = ACTIONS(3015), - [anon_sym_consteval] = ACTIONS(3015), - [anon_sym_alignas] = ACTIONS(3015), - [anon_sym__Alignas] = ACTIONS(3015), - [sym_primitive_type] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_switch] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_do] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym___try] = ACTIONS(3015), - [anon_sym___leave] = ACTIONS(3015), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_compl] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_sizeof] = ACTIONS(3015), - [anon_sym___alignof__] = ACTIONS(3015), - [anon_sym___alignof] = ACTIONS(3015), - [anon_sym__alignof] = ACTIONS(3015), - [anon_sym_alignof] = ACTIONS(3015), - [anon_sym__Alignof] = ACTIONS(3015), - [anon_sym_offsetof] = ACTIONS(3015), - [anon_sym__Generic] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym___asm__] = ACTIONS(3015), - [anon_sym___asm] = ACTIONS(3015), - [sym_number_literal] = ACTIONS(3017), - [anon_sym_L_SQUOTE] = ACTIONS(3017), - [anon_sym_u_SQUOTE] = ACTIONS(3017), - [anon_sym_U_SQUOTE] = ACTIONS(3017), - [anon_sym_u8_SQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_L_DQUOTE] = ACTIONS(3017), - [anon_sym_u_DQUOTE] = ACTIONS(3017), - [anon_sym_U_DQUOTE] = ACTIONS(3017), - [anon_sym_u8_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [anon_sym_NULL] = ACTIONS(3015), - [anon_sym_nullptr] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3015), - [anon_sym_decltype] = ACTIONS(3015), - [anon_sym_explicit] = ACTIONS(3015), - [anon_sym_typename] = ACTIONS(3015), - [anon_sym_template] = ACTIONS(3015), - [anon_sym_operator] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_delete] = ACTIONS(3015), - [anon_sym_throw] = ACTIONS(3015), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_static_assert] = ACTIONS(3015), - [anon_sym_concept] = ACTIONS(3015), - [anon_sym_co_return] = ACTIONS(3015), - [anon_sym_co_yield] = ACTIONS(3015), - [anon_sym_R_DQUOTE] = ACTIONS(3017), - [anon_sym_LR_DQUOTE] = ACTIONS(3017), - [anon_sym_uR_DQUOTE] = ACTIONS(3017), - [anon_sym_UR_DQUOTE] = ACTIONS(3017), - [anon_sym_u8R_DQUOTE] = ACTIONS(3017), - [anon_sym_co_await] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_requires] = ACTIONS(3015), - [sym_this] = ACTIONS(3015), - }, - [STATE(770)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_include_token1] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym___cdecl] = ACTIONS(3325), - [anon_sym___clrcall] = ACTIONS(3325), - [anon_sym___stdcall] = ACTIONS(3325), - [anon_sym___fastcall] = ACTIONS(3325), - [anon_sym___thiscall] = ACTIONS(3325), - [anon_sym___vectorcall] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym___try] = ACTIONS(3325), - [anon_sym___leave] = ACTIONS(3325), - [anon_sym_not] = ACTIONS(3325), - [anon_sym_compl] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym___alignof__] = ACTIONS(3325), - [anon_sym___alignof] = ACTIONS(3325), - [anon_sym__alignof] = ACTIONS(3325), - [anon_sym_alignof] = ACTIONS(3325), - [anon_sym__Alignof] = ACTIONS(3325), - [anon_sym_offsetof] = ACTIONS(3325), - [anon_sym__Generic] = ACTIONS(3325), - [anon_sym_asm] = ACTIONS(3325), - [anon_sym___asm__] = ACTIONS(3325), - [anon_sym___asm] = ACTIONS(3325), - [sym_number_literal] = ACTIONS(3327), - [anon_sym_L_SQUOTE] = ACTIONS(3327), - [anon_sym_u_SQUOTE] = ACTIONS(3327), - [anon_sym_U_SQUOTE] = ACTIONS(3327), - [anon_sym_u8_SQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_L_DQUOTE] = ACTIONS(3327), - [anon_sym_u_DQUOTE] = ACTIONS(3327), - [anon_sym_U_DQUOTE] = ACTIONS(3327), - [anon_sym_u8_DQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [anon_sym_NULL] = ACTIONS(3325), - [anon_sym_nullptr] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), - [anon_sym_concept] = ACTIONS(3325), - [anon_sym_co_return] = ACTIONS(3325), - [anon_sym_co_yield] = ACTIONS(3325), - [anon_sym_R_DQUOTE] = ACTIONS(3327), - [anon_sym_LR_DQUOTE] = ACTIONS(3327), - [anon_sym_uR_DQUOTE] = ACTIONS(3327), - [anon_sym_UR_DQUOTE] = ACTIONS(3327), - [anon_sym_u8R_DQUOTE] = ACTIONS(3327), - [anon_sym_co_await] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_requires] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - }, - [STATE(771)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_include_token1] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym___cdecl] = ACTIONS(3329), - [anon_sym___clrcall] = ACTIONS(3329), - [anon_sym___stdcall] = ACTIONS(3329), - [anon_sym___fastcall] = ACTIONS(3329), - [anon_sym___thiscall] = ACTIONS(3329), - [anon_sym___vectorcall] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym___try] = ACTIONS(3329), - [anon_sym___leave] = ACTIONS(3329), - [anon_sym_not] = ACTIONS(3329), - [anon_sym_compl] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym___alignof__] = ACTIONS(3329), - [anon_sym___alignof] = ACTIONS(3329), - [anon_sym__alignof] = ACTIONS(3329), - [anon_sym_alignof] = ACTIONS(3329), - [anon_sym__Alignof] = ACTIONS(3329), - [anon_sym_offsetof] = ACTIONS(3329), - [anon_sym__Generic] = ACTIONS(3329), - [anon_sym_asm] = ACTIONS(3329), - [anon_sym___asm__] = ACTIONS(3329), - [anon_sym___asm] = ACTIONS(3329), - [sym_number_literal] = ACTIONS(3331), - [anon_sym_L_SQUOTE] = ACTIONS(3331), - [anon_sym_u_SQUOTE] = ACTIONS(3331), - [anon_sym_U_SQUOTE] = ACTIONS(3331), - [anon_sym_u8_SQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_L_DQUOTE] = ACTIONS(3331), - [anon_sym_u_DQUOTE] = ACTIONS(3331), - [anon_sym_U_DQUOTE] = ACTIONS(3331), - [anon_sym_u8_DQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [anon_sym_NULL] = ACTIONS(3329), - [anon_sym_nullptr] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), - [anon_sym_concept] = ACTIONS(3329), - [anon_sym_co_return] = ACTIONS(3329), - [anon_sym_co_yield] = ACTIONS(3329), - [anon_sym_R_DQUOTE] = ACTIONS(3331), - [anon_sym_LR_DQUOTE] = ACTIONS(3331), - [anon_sym_uR_DQUOTE] = ACTIONS(3331), - [anon_sym_UR_DQUOTE] = ACTIONS(3331), - [anon_sym_u8R_DQUOTE] = ACTIONS(3331), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_requires] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - }, - [STATE(772)] = { - [sym_identifier] = ACTIONS(3027), - [aux_sym_preproc_include_token1] = ACTIONS(3027), - [aux_sym_preproc_def_token1] = ACTIONS(3027), - [aux_sym_preproc_if_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3027), - [sym_preproc_directive] = ACTIONS(3027), - [anon_sym_LPAREN2] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym___extension__] = ACTIONS(3027), - [anon_sym_typedef] = ACTIONS(3027), - [anon_sym_virtual] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(3027), - [anon_sym___attribute__] = ACTIONS(3027), - [anon_sym___attribute] = ACTIONS(3027), - [anon_sym_using] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3029), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3029), - [anon_sym___declspec] = ACTIONS(3027), - [anon_sym___based] = ACTIONS(3027), - [anon_sym___cdecl] = ACTIONS(3027), - [anon_sym___clrcall] = ACTIONS(3027), - [anon_sym___stdcall] = ACTIONS(3027), - [anon_sym___fastcall] = ACTIONS(3027), - [anon_sym___thiscall] = ACTIONS(3027), - [anon_sym___vectorcall] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_signed] = ACTIONS(3027), - [anon_sym_unsigned] = ACTIONS(3027), - [anon_sym_long] = ACTIONS(3027), - [anon_sym_short] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_register] = ACTIONS(3027), - [anon_sym_inline] = ACTIONS(3027), - [anon_sym___inline] = ACTIONS(3027), - [anon_sym___inline__] = ACTIONS(3027), - [anon_sym___forceinline] = ACTIONS(3027), - [anon_sym_thread_local] = ACTIONS(3027), - [anon_sym___thread] = ACTIONS(3027), - [anon_sym_const] = ACTIONS(3027), - [anon_sym_constexpr] = ACTIONS(3027), - [anon_sym_volatile] = ACTIONS(3027), - [anon_sym_restrict] = ACTIONS(3027), - [anon_sym___restrict__] = ACTIONS(3027), - [anon_sym__Atomic] = ACTIONS(3027), - [anon_sym__Noreturn] = ACTIONS(3027), - [anon_sym_noreturn] = ACTIONS(3027), - [anon_sym__Nonnull] = ACTIONS(3027), - [anon_sym_mutable] = ACTIONS(3027), - [anon_sym_constinit] = ACTIONS(3027), - [anon_sym_consteval] = ACTIONS(3027), - [anon_sym_alignas] = ACTIONS(3027), - [anon_sym__Alignas] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_union] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_switch] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_do] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_goto] = ACTIONS(3027), - [anon_sym___try] = ACTIONS(3027), - [anon_sym___leave] = ACTIONS(3027), - [anon_sym_not] = ACTIONS(3027), - [anon_sym_compl] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(3027), - [anon_sym___alignof__] = ACTIONS(3027), - [anon_sym___alignof] = ACTIONS(3027), - [anon_sym__alignof] = ACTIONS(3027), - [anon_sym_alignof] = ACTIONS(3027), - [anon_sym__Alignof] = ACTIONS(3027), - [anon_sym_offsetof] = ACTIONS(3027), - [anon_sym__Generic] = ACTIONS(3027), - [anon_sym_asm] = ACTIONS(3027), - [anon_sym___asm__] = ACTIONS(3027), - [anon_sym___asm] = ACTIONS(3027), - [sym_number_literal] = ACTIONS(3029), - [anon_sym_L_SQUOTE] = ACTIONS(3029), - [anon_sym_u_SQUOTE] = ACTIONS(3029), - [anon_sym_U_SQUOTE] = ACTIONS(3029), - [anon_sym_u8_SQUOTE] = ACTIONS(3029), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_L_DQUOTE] = ACTIONS(3029), - [anon_sym_u_DQUOTE] = ACTIONS(3029), - [anon_sym_U_DQUOTE] = ACTIONS(3029), - [anon_sym_u8_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [anon_sym_NULL] = ACTIONS(3027), - [anon_sym_nullptr] = ACTIONS(3027), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3027), - [anon_sym_decltype] = ACTIONS(3027), - [anon_sym_explicit] = ACTIONS(3027), - [anon_sym_typename] = ACTIONS(3027), - [anon_sym_template] = ACTIONS(3027), - [anon_sym_operator] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(3027), - [anon_sym_throw] = ACTIONS(3027), - [anon_sym_namespace] = ACTIONS(3027), - [anon_sym_static_assert] = ACTIONS(3027), - [anon_sym_concept] = ACTIONS(3027), - [anon_sym_co_return] = ACTIONS(3027), - [anon_sym_co_yield] = ACTIONS(3027), - [anon_sym_R_DQUOTE] = ACTIONS(3029), - [anon_sym_LR_DQUOTE] = ACTIONS(3029), - [anon_sym_uR_DQUOTE] = ACTIONS(3029), - [anon_sym_UR_DQUOTE] = ACTIONS(3029), - [anon_sym_u8R_DQUOTE] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3027), - [anon_sym_requires] = ACTIONS(3027), - [sym_this] = ACTIONS(3027), - }, - [STATE(773)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_include_token1] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym___cdecl] = ACTIONS(3037), - [anon_sym___clrcall] = ACTIONS(3037), - [anon_sym___stdcall] = ACTIONS(3037), - [anon_sym___fastcall] = ACTIONS(3037), - [anon_sym___thiscall] = ACTIONS(3037), - [anon_sym___vectorcall] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_switch] = ACTIONS(3037), - [anon_sym_case] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym___try] = ACTIONS(3037), - [anon_sym___leave] = ACTIONS(3037), - [anon_sym_not] = ACTIONS(3037), - [anon_sym_compl] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(3037), - [anon_sym___alignof__] = ACTIONS(3037), - [anon_sym___alignof] = ACTIONS(3037), - [anon_sym__alignof] = ACTIONS(3037), - [anon_sym_alignof] = ACTIONS(3037), - [anon_sym__Alignof] = ACTIONS(3037), - [anon_sym_offsetof] = ACTIONS(3037), - [anon_sym__Generic] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym___asm__] = ACTIONS(3037), - [anon_sym___asm] = ACTIONS(3037), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_L_SQUOTE] = ACTIONS(3039), - [anon_sym_u_SQUOTE] = ACTIONS(3039), - [anon_sym_U_SQUOTE] = ACTIONS(3039), - [anon_sym_u8_SQUOTE] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_L_DQUOTE] = ACTIONS(3039), - [anon_sym_u_DQUOTE] = ACTIONS(3039), - [anon_sym_U_DQUOTE] = ACTIONS(3039), - [anon_sym_u8_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [anon_sym_NULL] = ACTIONS(3037), - [anon_sym_nullptr] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_delete] = ACTIONS(3037), - [anon_sym_throw] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), - [anon_sym_concept] = ACTIONS(3037), - [anon_sym_co_return] = ACTIONS(3037), - [anon_sym_co_yield] = ACTIONS(3037), - [anon_sym_R_DQUOTE] = ACTIONS(3039), - [anon_sym_LR_DQUOTE] = ACTIONS(3039), - [anon_sym_uR_DQUOTE] = ACTIONS(3039), - [anon_sym_UR_DQUOTE] = ACTIONS(3039), - [anon_sym_u8R_DQUOTE] = ACTIONS(3039), - [anon_sym_co_await] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3037), - [sym_this] = ACTIONS(3037), - }, - [STATE(774)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_include_token1] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym___cdecl] = ACTIONS(2951), - [anon_sym___clrcall] = ACTIONS(2951), - [anon_sym___stdcall] = ACTIONS(2951), - [anon_sym___fastcall] = ACTIONS(2951), - [anon_sym___thiscall] = ACTIONS(2951), - [anon_sym___vectorcall] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym___try] = ACTIONS(2951), - [anon_sym___leave] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2951), - [anon_sym_compl] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2951), - [anon_sym___alignof__] = ACTIONS(2951), - [anon_sym___alignof] = ACTIONS(2951), - [anon_sym__alignof] = ACTIONS(2951), - [anon_sym_alignof] = ACTIONS(2951), - [anon_sym__Alignof] = ACTIONS(2951), - [anon_sym_offsetof] = ACTIONS(2951), - [anon_sym__Generic] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym___asm__] = ACTIONS(2951), - [anon_sym___asm] = ACTIONS(2951), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_L_SQUOTE] = ACTIONS(2953), - [anon_sym_u_SQUOTE] = ACTIONS(2953), - [anon_sym_U_SQUOTE] = ACTIONS(2953), - [anon_sym_u8_SQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_L_DQUOTE] = ACTIONS(2953), - [anon_sym_u_DQUOTE] = ACTIONS(2953), - [anon_sym_U_DQUOTE] = ACTIONS(2953), - [anon_sym_u8_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [anon_sym_NULL] = ACTIONS(2951), - [anon_sym_nullptr] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), - [anon_sym_concept] = ACTIONS(2951), - [anon_sym_co_return] = ACTIONS(2951), - [anon_sym_co_yield] = ACTIONS(2951), - [anon_sym_R_DQUOTE] = ACTIONS(2953), - [anon_sym_LR_DQUOTE] = ACTIONS(2953), - [anon_sym_uR_DQUOTE] = ACTIONS(2953), - [anon_sym_UR_DQUOTE] = ACTIONS(2953), - [anon_sym_u8R_DQUOTE] = ACTIONS(2953), - [anon_sym_co_await] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_requires] = ACTIONS(2951), - [sym_this] = ACTIONS(2951), - }, - [STATE(775)] = { - [sym_identifier] = ACTIONS(3045), - [aux_sym_preproc_include_token1] = ACTIONS(3045), - [aux_sym_preproc_def_token1] = ACTIONS(3045), - [aux_sym_preproc_if_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3045), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym___extension__] = ACTIONS(3045), - [anon_sym_typedef] = ACTIONS(3045), - [anon_sym_virtual] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym___attribute__] = ACTIONS(3045), - [anon_sym___attribute] = ACTIONS(3045), - [anon_sym_using] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3047), - [anon_sym___declspec] = ACTIONS(3045), - [anon_sym___based] = ACTIONS(3045), - [anon_sym___cdecl] = ACTIONS(3045), - [anon_sym___clrcall] = ACTIONS(3045), - [anon_sym___stdcall] = ACTIONS(3045), - [anon_sym___fastcall] = ACTIONS(3045), - [anon_sym___thiscall] = ACTIONS(3045), - [anon_sym___vectorcall] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_signed] = ACTIONS(3045), - [anon_sym_unsigned] = ACTIONS(3045), - [anon_sym_long] = ACTIONS(3045), - [anon_sym_short] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_register] = ACTIONS(3045), - [anon_sym_inline] = ACTIONS(3045), - [anon_sym___inline] = ACTIONS(3045), - [anon_sym___inline__] = ACTIONS(3045), - [anon_sym___forceinline] = ACTIONS(3045), - [anon_sym_thread_local] = ACTIONS(3045), - [anon_sym___thread] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_constexpr] = ACTIONS(3045), - [anon_sym_volatile] = ACTIONS(3045), - [anon_sym_restrict] = ACTIONS(3045), - [anon_sym___restrict__] = ACTIONS(3045), - [anon_sym__Atomic] = ACTIONS(3045), - [anon_sym__Noreturn] = ACTIONS(3045), - [anon_sym_noreturn] = ACTIONS(3045), - [anon_sym__Nonnull] = ACTIONS(3045), - [anon_sym_mutable] = ACTIONS(3045), - [anon_sym_constinit] = ACTIONS(3045), - [anon_sym_consteval] = ACTIONS(3045), - [anon_sym_alignas] = ACTIONS(3045), - [anon_sym__Alignas] = ACTIONS(3045), - [sym_primitive_type] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_class] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_switch] = ACTIONS(3045), - [anon_sym_case] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_do] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym___try] = ACTIONS(3045), - [anon_sym___leave] = ACTIONS(3045), - [anon_sym_not] = ACTIONS(3045), - [anon_sym_compl] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_sizeof] = ACTIONS(3045), - [anon_sym___alignof__] = ACTIONS(3045), - [anon_sym___alignof] = ACTIONS(3045), - [anon_sym__alignof] = ACTIONS(3045), - [anon_sym_alignof] = ACTIONS(3045), - [anon_sym__Alignof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3045), - [anon_sym__Generic] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym___asm__] = ACTIONS(3045), - [anon_sym___asm] = ACTIONS(3045), - [sym_number_literal] = ACTIONS(3047), - [anon_sym_L_SQUOTE] = ACTIONS(3047), - [anon_sym_u_SQUOTE] = ACTIONS(3047), - [anon_sym_U_SQUOTE] = ACTIONS(3047), - [anon_sym_u8_SQUOTE] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3047), - [anon_sym_L_DQUOTE] = ACTIONS(3047), - [anon_sym_u_DQUOTE] = ACTIONS(3047), - [anon_sym_U_DQUOTE] = ACTIONS(3047), - [anon_sym_u8_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [anon_sym_NULL] = ACTIONS(3045), - [anon_sym_nullptr] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3045), - [anon_sym_decltype] = ACTIONS(3045), - [anon_sym_explicit] = ACTIONS(3045), - [anon_sym_typename] = ACTIONS(3045), - [anon_sym_template] = ACTIONS(3045), - [anon_sym_operator] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [anon_sym_delete] = ACTIONS(3045), - [anon_sym_throw] = ACTIONS(3045), - [anon_sym_namespace] = ACTIONS(3045), - [anon_sym_static_assert] = ACTIONS(3045), - [anon_sym_concept] = ACTIONS(3045), - [anon_sym_co_return] = ACTIONS(3045), - [anon_sym_co_yield] = ACTIONS(3045), - [anon_sym_R_DQUOTE] = ACTIONS(3047), - [anon_sym_LR_DQUOTE] = ACTIONS(3047), - [anon_sym_uR_DQUOTE] = ACTIONS(3047), - [anon_sym_UR_DQUOTE] = ACTIONS(3047), - [anon_sym_u8R_DQUOTE] = ACTIONS(3047), - [anon_sym_co_await] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3045), - [anon_sym_requires] = ACTIONS(3045), - [sym_this] = ACTIONS(3045), - }, - [STATE(776)] = { - [sym_identifier] = ACTIONS(3051), - [aux_sym_preproc_include_token1] = ACTIONS(3051), - [aux_sym_preproc_def_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3051), - [sym_preproc_directive] = ACTIONS(3051), - [anon_sym_LPAREN2] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(3051), - [anon_sym_typedef] = ACTIONS(3051), - [anon_sym_virtual] = ACTIONS(3051), - [anon_sym_extern] = ACTIONS(3051), - [anon_sym___attribute__] = ACTIONS(3051), - [anon_sym___attribute] = ACTIONS(3051), - [anon_sym_using] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3053), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3053), - [anon_sym___declspec] = ACTIONS(3051), - [anon_sym___based] = ACTIONS(3051), - [anon_sym___cdecl] = ACTIONS(3051), - [anon_sym___clrcall] = ACTIONS(3051), - [anon_sym___stdcall] = ACTIONS(3051), - [anon_sym___fastcall] = ACTIONS(3051), - [anon_sym___thiscall] = ACTIONS(3051), - [anon_sym___vectorcall] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_signed] = ACTIONS(3051), - [anon_sym_unsigned] = ACTIONS(3051), - [anon_sym_long] = ACTIONS(3051), - [anon_sym_short] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_static] = ACTIONS(3051), - [anon_sym_register] = ACTIONS(3051), - [anon_sym_inline] = ACTIONS(3051), - [anon_sym___inline] = ACTIONS(3051), - [anon_sym___inline__] = ACTIONS(3051), - [anon_sym___forceinline] = ACTIONS(3051), - [anon_sym_thread_local] = ACTIONS(3051), - [anon_sym___thread] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_constexpr] = ACTIONS(3051), - [anon_sym_volatile] = ACTIONS(3051), - [anon_sym_restrict] = ACTIONS(3051), - [anon_sym___restrict__] = ACTIONS(3051), - [anon_sym__Atomic] = ACTIONS(3051), - [anon_sym__Noreturn] = ACTIONS(3051), - [anon_sym_noreturn] = ACTIONS(3051), - [anon_sym__Nonnull] = ACTIONS(3051), - [anon_sym_mutable] = ACTIONS(3051), - [anon_sym_constinit] = ACTIONS(3051), - [anon_sym_consteval] = ACTIONS(3051), - [anon_sym_alignas] = ACTIONS(3051), - [anon_sym__Alignas] = ACTIONS(3051), - [sym_primitive_type] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_class] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_switch] = ACTIONS(3051), - [anon_sym_case] = ACTIONS(3051), - [anon_sym_default] = ACTIONS(3051), - [anon_sym_while] = ACTIONS(3051), - [anon_sym_do] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym___try] = ACTIONS(3051), - [anon_sym___leave] = ACTIONS(3051), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3051), - [anon_sym___alignof__] = ACTIONS(3051), - [anon_sym___alignof] = ACTIONS(3051), - [anon_sym__alignof] = ACTIONS(3051), - [anon_sym_alignof] = ACTIONS(3051), - [anon_sym__Alignof] = ACTIONS(3051), - [anon_sym_offsetof] = ACTIONS(3051), - [anon_sym__Generic] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym___asm__] = ACTIONS(3051), - [anon_sym___asm] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(3053), - [anon_sym_L_SQUOTE] = ACTIONS(3053), - [anon_sym_u_SQUOTE] = ACTIONS(3053), - [anon_sym_U_SQUOTE] = ACTIONS(3053), - [anon_sym_u8_SQUOTE] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3053), - [anon_sym_L_DQUOTE] = ACTIONS(3053), - [anon_sym_u_DQUOTE] = ACTIONS(3053), - [anon_sym_U_DQUOTE] = ACTIONS(3053), - [anon_sym_u8_DQUOTE] = ACTIONS(3053), - [anon_sym_DQUOTE] = ACTIONS(3053), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [anon_sym_NULL] = ACTIONS(3051), - [anon_sym_nullptr] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3051), - [anon_sym_decltype] = ACTIONS(3051), - [anon_sym_explicit] = ACTIONS(3051), - [anon_sym_typename] = ACTIONS(3051), - [anon_sym_template] = ACTIONS(3051), - [anon_sym_operator] = ACTIONS(3051), - [anon_sym_try] = ACTIONS(3051), - [anon_sym_delete] = ACTIONS(3051), - [anon_sym_throw] = ACTIONS(3051), - [anon_sym_namespace] = ACTIONS(3051), - [anon_sym_static_assert] = ACTIONS(3051), - [anon_sym_concept] = ACTIONS(3051), - [anon_sym_co_return] = ACTIONS(3051), - [anon_sym_co_yield] = ACTIONS(3051), - [anon_sym_R_DQUOTE] = ACTIONS(3053), - [anon_sym_LR_DQUOTE] = ACTIONS(3053), - [anon_sym_uR_DQUOTE] = ACTIONS(3053), - [anon_sym_UR_DQUOTE] = ACTIONS(3053), - [anon_sym_u8R_DQUOTE] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3051), - [anon_sym_new] = ACTIONS(3051), - [anon_sym_requires] = ACTIONS(3051), - [sym_this] = ACTIONS(3051), - }, - [STATE(777)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_include_token1] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym___cdecl] = ACTIONS(2955), - [anon_sym___clrcall] = ACTIONS(2955), - [anon_sym___stdcall] = ACTIONS(2955), - [anon_sym___fastcall] = ACTIONS(2955), - [anon_sym___thiscall] = ACTIONS(2955), - [anon_sym___vectorcall] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym___try] = ACTIONS(2955), - [anon_sym___leave] = ACTIONS(2955), - [anon_sym_not] = ACTIONS(2955), - [anon_sym_compl] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(2955), - [anon_sym___alignof__] = ACTIONS(2955), - [anon_sym___alignof] = ACTIONS(2955), - [anon_sym__alignof] = ACTIONS(2955), - [anon_sym_alignof] = ACTIONS(2955), - [anon_sym__Alignof] = ACTIONS(2955), - [anon_sym_offsetof] = ACTIONS(2955), - [anon_sym__Generic] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym___asm__] = ACTIONS(2955), - [anon_sym___asm] = ACTIONS(2955), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_L_SQUOTE] = ACTIONS(2957), - [anon_sym_u_SQUOTE] = ACTIONS(2957), - [anon_sym_U_SQUOTE] = ACTIONS(2957), - [anon_sym_u8_SQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_L_DQUOTE] = ACTIONS(2957), - [anon_sym_u_DQUOTE] = ACTIONS(2957), - [anon_sym_U_DQUOTE] = ACTIONS(2957), - [anon_sym_u8_DQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [anon_sym_NULL] = ACTIONS(2955), - [anon_sym_nullptr] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), - [anon_sym_concept] = ACTIONS(2955), - [anon_sym_co_return] = ACTIONS(2955), - [anon_sym_co_yield] = ACTIONS(2955), - [anon_sym_R_DQUOTE] = ACTIONS(2957), - [anon_sym_LR_DQUOTE] = ACTIONS(2957), - [anon_sym_uR_DQUOTE] = ACTIONS(2957), - [anon_sym_UR_DQUOTE] = ACTIONS(2957), - [anon_sym_u8R_DQUOTE] = ACTIONS(2957), - [anon_sym_co_await] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_requires] = ACTIONS(2955), - [sym_this] = ACTIONS(2955), - }, - [STATE(778)] = { - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(779)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_include_token1] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym___cdecl] = ACTIONS(3019), - [anon_sym___clrcall] = ACTIONS(3019), - [anon_sym___stdcall] = ACTIONS(3019), - [anon_sym___fastcall] = ACTIONS(3019), - [anon_sym___thiscall] = ACTIONS(3019), - [anon_sym___vectorcall] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_switch] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_do] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym___try] = ACTIONS(3019), - [anon_sym___leave] = ACTIONS(3019), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_compl] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(3019), - [anon_sym___alignof__] = ACTIONS(3019), - [anon_sym___alignof] = ACTIONS(3019), - [anon_sym__alignof] = ACTIONS(3019), - [anon_sym_alignof] = ACTIONS(3019), - [anon_sym__Alignof] = ACTIONS(3019), - [anon_sym_offsetof] = ACTIONS(3019), - [anon_sym__Generic] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym___asm__] = ACTIONS(3019), - [anon_sym___asm] = ACTIONS(3019), - [sym_number_literal] = ACTIONS(3021), - [anon_sym_L_SQUOTE] = ACTIONS(3021), - [anon_sym_u_SQUOTE] = ACTIONS(3021), - [anon_sym_U_SQUOTE] = ACTIONS(3021), - [anon_sym_u8_SQUOTE] = ACTIONS(3021), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_L_DQUOTE] = ACTIONS(3021), - [anon_sym_u_DQUOTE] = ACTIONS(3021), - [anon_sym_U_DQUOTE] = ACTIONS(3021), - [anon_sym_u8_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [anon_sym_NULL] = ACTIONS(3019), - [anon_sym_nullptr] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_delete] = ACTIONS(3019), - [anon_sym_throw] = ACTIONS(3019), - [anon_sym_namespace] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), - [anon_sym_concept] = ACTIONS(3019), - [anon_sym_co_return] = ACTIONS(3019), - [anon_sym_co_yield] = ACTIONS(3019), - [anon_sym_R_DQUOTE] = ACTIONS(3021), - [anon_sym_LR_DQUOTE] = ACTIONS(3021), - [anon_sym_uR_DQUOTE] = ACTIONS(3021), - [anon_sym_UR_DQUOTE] = ACTIONS(3021), - [anon_sym_u8R_DQUOTE] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_requires] = ACTIONS(3019), - [sym_this] = ACTIONS(3019), - }, - [STATE(780)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_include_token1] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym___cdecl] = ACTIONS(3023), - [anon_sym___clrcall] = ACTIONS(3023), - [anon_sym___stdcall] = ACTIONS(3023), - [anon_sym___fastcall] = ACTIONS(3023), - [anon_sym___thiscall] = ACTIONS(3023), - [anon_sym___vectorcall] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_switch] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_goto] = ACTIONS(3023), - [anon_sym___try] = ACTIONS(3023), - [anon_sym___leave] = ACTIONS(3023), - [anon_sym_not] = ACTIONS(3023), - [anon_sym_compl] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_sizeof] = ACTIONS(3023), - [anon_sym___alignof__] = ACTIONS(3023), - [anon_sym___alignof] = ACTIONS(3023), - [anon_sym__alignof] = ACTIONS(3023), - [anon_sym_alignof] = ACTIONS(3023), - [anon_sym__Alignof] = ACTIONS(3023), - [anon_sym_offsetof] = ACTIONS(3023), - [anon_sym__Generic] = ACTIONS(3023), - [anon_sym_asm] = ACTIONS(3023), - [anon_sym___asm__] = ACTIONS(3023), - [anon_sym___asm] = ACTIONS(3023), - [sym_number_literal] = ACTIONS(3025), - [anon_sym_L_SQUOTE] = ACTIONS(3025), - [anon_sym_u_SQUOTE] = ACTIONS(3025), - [anon_sym_U_SQUOTE] = ACTIONS(3025), - [anon_sym_u8_SQUOTE] = ACTIONS(3025), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_L_DQUOTE] = ACTIONS(3025), - [anon_sym_u_DQUOTE] = ACTIONS(3025), - [anon_sym_U_DQUOTE] = ACTIONS(3025), - [anon_sym_u8_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_true] = ACTIONS(3023), - [sym_false] = ACTIONS(3023), - [anon_sym_NULL] = ACTIONS(3023), - [anon_sym_nullptr] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_delete] = ACTIONS(3023), - [anon_sym_throw] = ACTIONS(3023), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), - [anon_sym_concept] = ACTIONS(3023), - [anon_sym_co_return] = ACTIONS(3023), - [anon_sym_co_yield] = ACTIONS(3023), - [anon_sym_R_DQUOTE] = ACTIONS(3025), - [anon_sym_LR_DQUOTE] = ACTIONS(3025), - [anon_sym_uR_DQUOTE] = ACTIONS(3025), - [anon_sym_UR_DQUOTE] = ACTIONS(3025), - [anon_sym_u8R_DQUOTE] = ACTIONS(3025), - [anon_sym_co_await] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3023), - [anon_sym_requires] = ACTIONS(3023), - [sym_this] = ACTIONS(3023), - }, - [STATE(781)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_include_token1] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token2] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym___cdecl] = ACTIONS(3041), - [anon_sym___clrcall] = ACTIONS(3041), - [anon_sym___stdcall] = ACTIONS(3041), - [anon_sym___fastcall] = ACTIONS(3041), - [anon_sym___thiscall] = ACTIONS(3041), - [anon_sym___vectorcall] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym___try] = ACTIONS(3041), - [anon_sym___leave] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3041), - [anon_sym_compl] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym___alignof__] = ACTIONS(3041), - [anon_sym___alignof] = ACTIONS(3041), - [anon_sym__alignof] = ACTIONS(3041), - [anon_sym_alignof] = ACTIONS(3041), - [anon_sym__Alignof] = ACTIONS(3041), - [anon_sym_offsetof] = ACTIONS(3041), - [anon_sym__Generic] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym___asm__] = ACTIONS(3041), - [anon_sym___asm] = ACTIONS(3041), - [sym_number_literal] = ACTIONS(3043), - [anon_sym_L_SQUOTE] = ACTIONS(3043), - [anon_sym_u_SQUOTE] = ACTIONS(3043), - [anon_sym_U_SQUOTE] = ACTIONS(3043), - [anon_sym_u8_SQUOTE] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3043), - [anon_sym_L_DQUOTE] = ACTIONS(3043), - [anon_sym_u_DQUOTE] = ACTIONS(3043), - [anon_sym_U_DQUOTE] = ACTIONS(3043), - [anon_sym_u8_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [anon_sym_NULL] = ACTIONS(3041), - [anon_sym_nullptr] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_delete] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), - [anon_sym_concept] = ACTIONS(3041), - [anon_sym_co_return] = ACTIONS(3041), - [anon_sym_co_yield] = ACTIONS(3041), - [anon_sym_R_DQUOTE] = ACTIONS(3043), - [anon_sym_LR_DQUOTE] = ACTIONS(3043), - [anon_sym_uR_DQUOTE] = ACTIONS(3043), - [anon_sym_UR_DQUOTE] = ACTIONS(3043), - [anon_sym_u8R_DQUOTE] = ACTIONS(3043), - [anon_sym_co_await] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_requires] = ACTIONS(3041), - [sym_this] = ACTIONS(3041), - }, - [STATE(782)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_include_token1] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token2] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym___cdecl] = ACTIONS(3055), - [anon_sym___clrcall] = ACTIONS(3055), - [anon_sym___stdcall] = ACTIONS(3055), - [anon_sym___fastcall] = ACTIONS(3055), - [anon_sym___thiscall] = ACTIONS(3055), - [anon_sym___vectorcall] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_switch] = ACTIONS(3055), - [anon_sym_case] = ACTIONS(3055), - [anon_sym_default] = ACTIONS(3055), - [anon_sym_while] = ACTIONS(3055), - [anon_sym_do] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym___try] = ACTIONS(3055), - [anon_sym___leave] = ACTIONS(3055), - [anon_sym_not] = ACTIONS(3055), - [anon_sym_compl] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3055), - [anon_sym___alignof__] = ACTIONS(3055), - [anon_sym___alignof] = ACTIONS(3055), - [anon_sym__alignof] = ACTIONS(3055), - [anon_sym_alignof] = ACTIONS(3055), - [anon_sym__Alignof] = ACTIONS(3055), - [anon_sym_offsetof] = ACTIONS(3055), - [anon_sym__Generic] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym___asm__] = ACTIONS(3055), - [anon_sym___asm] = ACTIONS(3055), - [sym_number_literal] = ACTIONS(3057), - [anon_sym_L_SQUOTE] = ACTIONS(3057), - [anon_sym_u_SQUOTE] = ACTIONS(3057), - [anon_sym_U_SQUOTE] = ACTIONS(3057), - [anon_sym_u8_SQUOTE] = ACTIONS(3057), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_L_DQUOTE] = ACTIONS(3057), - [anon_sym_u_DQUOTE] = ACTIONS(3057), - [anon_sym_U_DQUOTE] = ACTIONS(3057), - [anon_sym_u8_DQUOTE] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [anon_sym_NULL] = ACTIONS(3055), - [anon_sym_nullptr] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_try] = ACTIONS(3055), - [anon_sym_delete] = ACTIONS(3055), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_namespace] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), - [anon_sym_concept] = ACTIONS(3055), - [anon_sym_co_return] = ACTIONS(3055), - [anon_sym_co_yield] = ACTIONS(3055), - [anon_sym_R_DQUOTE] = ACTIONS(3057), - [anon_sym_LR_DQUOTE] = ACTIONS(3057), - [anon_sym_uR_DQUOTE] = ACTIONS(3057), - [anon_sym_UR_DQUOTE] = ACTIONS(3057), - [anon_sym_u8R_DQUOTE] = ACTIONS(3057), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3055), - [anon_sym_requires] = ACTIONS(3055), - [sym_this] = ACTIONS(3055), - }, - [STATE(783)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_include_token1] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token2] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym___cdecl] = ACTIONS(3123), - [anon_sym___clrcall] = ACTIONS(3123), - [anon_sym___stdcall] = ACTIONS(3123), - [anon_sym___fastcall] = ACTIONS(3123), - [anon_sym___thiscall] = ACTIONS(3123), - [anon_sym___vectorcall] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym___try] = ACTIONS(3123), - [anon_sym___leave] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3123), - [anon_sym_compl] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym___alignof__] = ACTIONS(3123), - [anon_sym___alignof] = ACTIONS(3123), - [anon_sym__alignof] = ACTIONS(3123), - [anon_sym_alignof] = ACTIONS(3123), - [anon_sym__Alignof] = ACTIONS(3123), - [anon_sym_offsetof] = ACTIONS(3123), - [anon_sym__Generic] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym___asm__] = ACTIONS(3123), - [anon_sym___asm] = ACTIONS(3123), - [sym_number_literal] = ACTIONS(3125), - [anon_sym_L_SQUOTE] = ACTIONS(3125), - [anon_sym_u_SQUOTE] = ACTIONS(3125), - [anon_sym_U_SQUOTE] = ACTIONS(3125), - [anon_sym_u8_SQUOTE] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3125), - [anon_sym_L_DQUOTE] = ACTIONS(3125), - [anon_sym_u_DQUOTE] = ACTIONS(3125), - [anon_sym_U_DQUOTE] = ACTIONS(3125), - [anon_sym_u8_DQUOTE] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [anon_sym_NULL] = ACTIONS(3123), - [anon_sym_nullptr] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_delete] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(3123), - [anon_sym_co_return] = ACTIONS(3123), - [anon_sym_co_yield] = ACTIONS(3123), - [anon_sym_R_DQUOTE] = ACTIONS(3125), - [anon_sym_LR_DQUOTE] = ACTIONS(3125), - [anon_sym_uR_DQUOTE] = ACTIONS(3125), - [anon_sym_UR_DQUOTE] = ACTIONS(3125), - [anon_sym_u8R_DQUOTE] = ACTIONS(3125), - [anon_sym_co_await] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_requires] = ACTIONS(3123), - [sym_this] = ACTIONS(3123), - }, - [STATE(784)] = { - [sym_identifier] = ACTIONS(3101), - [aux_sym_preproc_include_token1] = ACTIONS(3101), - [aux_sym_preproc_def_token1] = ACTIONS(3101), - [aux_sym_preproc_if_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), - [sym_preproc_directive] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym___extension__] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3101), - [anon_sym_virtual] = ACTIONS(3101), - [anon_sym_extern] = ACTIONS(3101), - [anon_sym___attribute__] = ACTIONS(3101), - [anon_sym___attribute] = ACTIONS(3101), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), - [anon_sym___declspec] = ACTIONS(3101), - [anon_sym___based] = ACTIONS(3101), - [anon_sym___cdecl] = ACTIONS(3101), - [anon_sym___clrcall] = ACTIONS(3101), - [anon_sym___stdcall] = ACTIONS(3101), - [anon_sym___fastcall] = ACTIONS(3101), - [anon_sym___thiscall] = ACTIONS(3101), - [anon_sym___vectorcall] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_signed] = ACTIONS(3101), - [anon_sym_unsigned] = ACTIONS(3101), - [anon_sym_long] = ACTIONS(3101), - [anon_sym_short] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3101), - [anon_sym_register] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym___inline] = ACTIONS(3101), - [anon_sym___inline__] = ACTIONS(3101), - [anon_sym___forceinline] = ACTIONS(3101), - [anon_sym_thread_local] = ACTIONS(3101), - [anon_sym___thread] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_constexpr] = ACTIONS(3101), - [anon_sym_volatile] = ACTIONS(3101), - [anon_sym_restrict] = ACTIONS(3101), - [anon_sym___restrict__] = ACTIONS(3101), - [anon_sym__Atomic] = ACTIONS(3101), - [anon_sym__Noreturn] = ACTIONS(3101), - [anon_sym_noreturn] = ACTIONS(3101), - [anon_sym__Nonnull] = ACTIONS(3101), - [anon_sym_mutable] = ACTIONS(3101), - [anon_sym_constinit] = ACTIONS(3101), - [anon_sym_consteval] = ACTIONS(3101), - [anon_sym_alignas] = ACTIONS(3101), - [anon_sym__Alignas] = ACTIONS(3101), - [sym_primitive_type] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_switch] = ACTIONS(3101), - [anon_sym_case] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym___try] = ACTIONS(3101), - [anon_sym___leave] = ACTIONS(3101), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_compl] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_sizeof] = ACTIONS(3101), - [anon_sym___alignof__] = ACTIONS(3101), - [anon_sym___alignof] = ACTIONS(3101), - [anon_sym__alignof] = ACTIONS(3101), - [anon_sym_alignof] = ACTIONS(3101), - [anon_sym__Alignof] = ACTIONS(3101), - [anon_sym_offsetof] = ACTIONS(3101), - [anon_sym__Generic] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym___asm__] = ACTIONS(3101), - [anon_sym___asm] = ACTIONS(3101), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_L_SQUOTE] = ACTIONS(3103), - [anon_sym_u_SQUOTE] = ACTIONS(3103), - [anon_sym_U_SQUOTE] = ACTIONS(3103), - [anon_sym_u8_SQUOTE] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_L_DQUOTE] = ACTIONS(3103), - [anon_sym_u_DQUOTE] = ACTIONS(3103), - [anon_sym_U_DQUOTE] = ACTIONS(3103), - [anon_sym_u8_DQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [anon_sym_NULL] = ACTIONS(3101), - [anon_sym_nullptr] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3101), - [anon_sym_decltype] = ACTIONS(3101), - [anon_sym_explicit] = ACTIONS(3101), - [anon_sym_typename] = ACTIONS(3101), - [anon_sym_template] = ACTIONS(3101), - [anon_sym_operator] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_delete] = ACTIONS(3101), - [anon_sym_throw] = ACTIONS(3101), - [anon_sym_namespace] = ACTIONS(3101), - [anon_sym_static_assert] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(3101), - [anon_sym_co_return] = ACTIONS(3101), - [anon_sym_co_yield] = ACTIONS(3101), - [anon_sym_R_DQUOTE] = ACTIONS(3103), - [anon_sym_LR_DQUOTE] = ACTIONS(3103), - [anon_sym_uR_DQUOTE] = ACTIONS(3103), - [anon_sym_UR_DQUOTE] = ACTIONS(3103), - [anon_sym_u8R_DQUOTE] = ACTIONS(3103), - [anon_sym_co_await] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_requires] = ACTIONS(3101), - [sym_this] = ACTIONS(3101), - }, - [STATE(785)] = { - [sym_identifier] = ACTIONS(3111), - [aux_sym_preproc_include_token1] = ACTIONS(3111), - [aux_sym_preproc_def_token1] = ACTIONS(3111), - [aux_sym_preproc_if_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3111), - [sym_preproc_directive] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3111), - [anon_sym_typedef] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym___attribute] = ACTIONS(3111), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3113), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym___based] = ACTIONS(3111), - [anon_sym___cdecl] = ACTIONS(3111), - [anon_sym___clrcall] = ACTIONS(3111), - [anon_sym___stdcall] = ACTIONS(3111), - [anon_sym___fastcall] = ACTIONS(3111), - [anon_sym___thiscall] = ACTIONS(3111), - [anon_sym___vectorcall] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym___inline] = ACTIONS(3111), - [anon_sym___inline__] = ACTIONS(3111), - [anon_sym___forceinline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym___thread] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym___restrict__] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym__Noreturn] = ACTIONS(3111), - [anon_sym_noreturn] = ACTIONS(3111), - [anon_sym__Nonnull] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_alignas] = ACTIONS(3111), - [anon_sym__Alignas] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3111), - [anon_sym_switch] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_default] = ACTIONS(3111), - [anon_sym_while] = ACTIONS(3111), - [anon_sym_do] = ACTIONS(3111), - [anon_sym_for] = ACTIONS(3111), - [anon_sym_return] = ACTIONS(3111), - [anon_sym_break] = ACTIONS(3111), - [anon_sym_continue] = ACTIONS(3111), - [anon_sym_goto] = ACTIONS(3111), - [anon_sym___try] = ACTIONS(3111), - [anon_sym___leave] = ACTIONS(3111), - [anon_sym_not] = ACTIONS(3111), - [anon_sym_compl] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3111), - [anon_sym___alignof__] = ACTIONS(3111), - [anon_sym___alignof] = ACTIONS(3111), - [anon_sym__alignof] = ACTIONS(3111), - [anon_sym_alignof] = ACTIONS(3111), - [anon_sym__Alignof] = ACTIONS(3111), - [anon_sym_offsetof] = ACTIONS(3111), - [anon_sym__Generic] = ACTIONS(3111), - [anon_sym_asm] = ACTIONS(3111), - [anon_sym___asm__] = ACTIONS(3111), - [anon_sym___asm] = ACTIONS(3111), - [sym_number_literal] = ACTIONS(3113), - [anon_sym_L_SQUOTE] = ACTIONS(3113), - [anon_sym_u_SQUOTE] = ACTIONS(3113), - [anon_sym_U_SQUOTE] = ACTIONS(3113), - [anon_sym_u8_SQUOTE] = ACTIONS(3113), - [anon_sym_SQUOTE] = ACTIONS(3113), - [anon_sym_L_DQUOTE] = ACTIONS(3113), - [anon_sym_u_DQUOTE] = ACTIONS(3113), - [anon_sym_U_DQUOTE] = ACTIONS(3113), - [anon_sym_u8_DQUOTE] = ACTIONS(3113), - [anon_sym_DQUOTE] = ACTIONS(3113), - [sym_true] = ACTIONS(3111), - [sym_false] = ACTIONS(3111), - [anon_sym_NULL] = ACTIONS(3111), - [anon_sym_nullptr] = ACTIONS(3111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3111), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3111), - [anon_sym_delete] = ACTIONS(3111), - [anon_sym_throw] = ACTIONS(3111), - [anon_sym_namespace] = ACTIONS(3111), - [anon_sym_static_assert] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3111), - [anon_sym_co_return] = ACTIONS(3111), - [anon_sym_co_yield] = ACTIONS(3111), - [anon_sym_R_DQUOTE] = ACTIONS(3113), - [anon_sym_LR_DQUOTE] = ACTIONS(3113), - [anon_sym_uR_DQUOTE] = ACTIONS(3113), - [anon_sym_UR_DQUOTE] = ACTIONS(3113), - [anon_sym_u8R_DQUOTE] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3111), - [anon_sym_new] = ACTIONS(3111), - [anon_sym_requires] = ACTIONS(3111), - [sym_this] = ACTIONS(3111), - }, - [STATE(786)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_include_token1] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym___cdecl] = ACTIONS(3115), - [anon_sym___clrcall] = ACTIONS(3115), - [anon_sym___stdcall] = ACTIONS(3115), - [anon_sym___fastcall] = ACTIONS(3115), - [anon_sym___thiscall] = ACTIONS(3115), - [anon_sym___vectorcall] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym___try] = ACTIONS(3115), - [anon_sym___leave] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3115), - [anon_sym_compl] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym___alignof__] = ACTIONS(3115), - [anon_sym___alignof] = ACTIONS(3115), - [anon_sym__alignof] = ACTIONS(3115), - [anon_sym_alignof] = ACTIONS(3115), - [anon_sym__Alignof] = ACTIONS(3115), - [anon_sym_offsetof] = ACTIONS(3115), - [anon_sym__Generic] = ACTIONS(3115), - [anon_sym_asm] = ACTIONS(3115), - [anon_sym___asm__] = ACTIONS(3115), - [anon_sym___asm] = ACTIONS(3115), - [sym_number_literal] = ACTIONS(3117), - [anon_sym_L_SQUOTE] = ACTIONS(3117), - [anon_sym_u_SQUOTE] = ACTIONS(3117), - [anon_sym_U_SQUOTE] = ACTIONS(3117), - [anon_sym_u8_SQUOTE] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(3117), - [anon_sym_L_DQUOTE] = ACTIONS(3117), - [anon_sym_u_DQUOTE] = ACTIONS(3117), - [anon_sym_U_DQUOTE] = ACTIONS(3117), - [anon_sym_u8_DQUOTE] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_true] = ACTIONS(3115), - [sym_false] = ACTIONS(3115), - [anon_sym_NULL] = ACTIONS(3115), - [anon_sym_nullptr] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_delete] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3115), - [anon_sym_co_return] = ACTIONS(3115), - [anon_sym_co_yield] = ACTIONS(3115), - [anon_sym_R_DQUOTE] = ACTIONS(3117), - [anon_sym_LR_DQUOTE] = ACTIONS(3117), - [anon_sym_uR_DQUOTE] = ACTIONS(3117), - [anon_sym_UR_DQUOTE] = ACTIONS(3117), - [anon_sym_u8R_DQUOTE] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_requires] = ACTIONS(3115), - [sym_this] = ACTIONS(3115), - }, - [STATE(787)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_include_token1] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym___cdecl] = ACTIONS(3119), - [anon_sym___clrcall] = ACTIONS(3119), - [anon_sym___stdcall] = ACTIONS(3119), - [anon_sym___fastcall] = ACTIONS(3119), - [anon_sym___thiscall] = ACTIONS(3119), - [anon_sym___vectorcall] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym___try] = ACTIONS(3119), - [anon_sym___leave] = ACTIONS(3119), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_compl] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym___alignof__] = ACTIONS(3119), - [anon_sym___alignof] = ACTIONS(3119), - [anon_sym__alignof] = ACTIONS(3119), - [anon_sym_alignof] = ACTIONS(3119), - [anon_sym__Alignof] = ACTIONS(3119), - [anon_sym_offsetof] = ACTIONS(3119), - [anon_sym__Generic] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym___asm__] = ACTIONS(3119), - [anon_sym___asm] = ACTIONS(3119), - [sym_number_literal] = ACTIONS(3121), - [anon_sym_L_SQUOTE] = ACTIONS(3121), - [anon_sym_u_SQUOTE] = ACTIONS(3121), - [anon_sym_U_SQUOTE] = ACTIONS(3121), - [anon_sym_u8_SQUOTE] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3121), - [anon_sym_L_DQUOTE] = ACTIONS(3121), - [anon_sym_u_DQUOTE] = ACTIONS(3121), - [anon_sym_U_DQUOTE] = ACTIONS(3121), - [anon_sym_u8_DQUOTE] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [anon_sym_NULL] = ACTIONS(3119), - [anon_sym_nullptr] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_delete] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), - [anon_sym_concept] = ACTIONS(3119), - [anon_sym_co_return] = ACTIONS(3119), - [anon_sym_co_yield] = ACTIONS(3119), - [anon_sym_R_DQUOTE] = ACTIONS(3121), - [anon_sym_LR_DQUOTE] = ACTIONS(3121), - [anon_sym_uR_DQUOTE] = ACTIONS(3121), - [anon_sym_UR_DQUOTE] = ACTIONS(3121), - [anon_sym_u8R_DQUOTE] = ACTIONS(3121), - [anon_sym_co_await] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_requires] = ACTIONS(3119), - [sym_this] = ACTIONS(3119), - }, - [STATE(788)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_include_token1] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym___cdecl] = ACTIONS(2785), - [anon_sym___clrcall] = ACTIONS(2785), - [anon_sym___stdcall] = ACTIONS(2785), - [anon_sym___fastcall] = ACTIONS(2785), - [anon_sym___thiscall] = ACTIONS(2785), - [anon_sym___vectorcall] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_goto] = ACTIONS(2785), - [anon_sym___try] = ACTIONS(2785), - [anon_sym___leave] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2785), - [anon_sym_compl] = ACTIONS(2785), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2785), - [anon_sym___alignof__] = ACTIONS(2785), - [anon_sym___alignof] = ACTIONS(2785), - [anon_sym__alignof] = ACTIONS(2785), - [anon_sym_alignof] = ACTIONS(2785), - [anon_sym__Alignof] = ACTIONS(2785), - [anon_sym_offsetof] = ACTIONS(2785), - [anon_sym__Generic] = ACTIONS(2785), - [anon_sym_asm] = ACTIONS(2785), - [anon_sym___asm__] = ACTIONS(2785), - [anon_sym___asm] = ACTIONS(2785), - [sym_number_literal] = ACTIONS(2787), - [anon_sym_L_SQUOTE] = ACTIONS(2787), - [anon_sym_u_SQUOTE] = ACTIONS(2787), - [anon_sym_U_SQUOTE] = ACTIONS(2787), - [anon_sym_u8_SQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_L_DQUOTE] = ACTIONS(2787), - [anon_sym_u_DQUOTE] = ACTIONS(2787), - [anon_sym_U_DQUOTE] = ACTIONS(2787), - [anon_sym_u8_DQUOTE] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [anon_sym_NULL] = ACTIONS(2785), - [anon_sym_nullptr] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), - [anon_sym_concept] = ACTIONS(2785), - [anon_sym_co_return] = ACTIONS(2785), - [anon_sym_co_yield] = ACTIONS(2785), - [anon_sym_R_DQUOTE] = ACTIONS(2787), - [anon_sym_LR_DQUOTE] = ACTIONS(2787), - [anon_sym_uR_DQUOTE] = ACTIONS(2787), - [anon_sym_UR_DQUOTE] = ACTIONS(2787), - [anon_sym_u8R_DQUOTE] = ACTIONS(2787), - [anon_sym_co_await] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_requires] = ACTIONS(2785), - [sym_this] = ACTIONS(2785), - }, - [STATE(789)] = { - [sym_identifier] = ACTIONS(3127), - [aux_sym_preproc_include_token1] = ACTIONS(3127), - [aux_sym_preproc_def_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token1] = ACTIONS(3127), - [aux_sym_preproc_if_token2] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3127), - [sym_preproc_directive] = ACTIONS(3127), - [anon_sym_LPAREN2] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym___extension__] = ACTIONS(3127), - [anon_sym_typedef] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym___attribute__] = ACTIONS(3127), - [anon_sym___attribute] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3129), - [anon_sym___declspec] = ACTIONS(3127), - [anon_sym___based] = ACTIONS(3127), - [anon_sym___cdecl] = ACTIONS(3127), - [anon_sym___clrcall] = ACTIONS(3127), - [anon_sym___stdcall] = ACTIONS(3127), - [anon_sym___fastcall] = ACTIONS(3127), - [anon_sym___thiscall] = ACTIONS(3127), - [anon_sym___vectorcall] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_signed] = ACTIONS(3127), - [anon_sym_unsigned] = ACTIONS(3127), - [anon_sym_long] = ACTIONS(3127), - [anon_sym_short] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_register] = ACTIONS(3127), - [anon_sym_inline] = ACTIONS(3127), - [anon_sym___inline] = ACTIONS(3127), - [anon_sym___inline__] = ACTIONS(3127), - [anon_sym___forceinline] = ACTIONS(3127), - [anon_sym_thread_local] = ACTIONS(3127), - [anon_sym___thread] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_constexpr] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_restrict] = ACTIONS(3127), - [anon_sym___restrict__] = ACTIONS(3127), - [anon_sym__Atomic] = ACTIONS(3127), - [anon_sym__Noreturn] = ACTIONS(3127), - [anon_sym_noreturn] = ACTIONS(3127), - [anon_sym__Nonnull] = ACTIONS(3127), - [anon_sym_mutable] = ACTIONS(3127), - [anon_sym_constinit] = ACTIONS(3127), - [anon_sym_consteval] = ACTIONS(3127), - [anon_sym_alignas] = ACTIONS(3127), - [anon_sym__Alignas] = ACTIONS(3127), - [sym_primitive_type] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym___try] = ACTIONS(3127), - [anon_sym___leave] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_compl] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym___alignof__] = ACTIONS(3127), - [anon_sym___alignof] = ACTIONS(3127), - [anon_sym__alignof] = ACTIONS(3127), - [anon_sym_alignof] = ACTIONS(3127), - [anon_sym__Alignof] = ACTIONS(3127), - [anon_sym_offsetof] = ACTIONS(3127), - [anon_sym__Generic] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym___asm__] = ACTIONS(3127), - [anon_sym___asm] = ACTIONS(3127), - [sym_number_literal] = ACTIONS(3129), - [anon_sym_L_SQUOTE] = ACTIONS(3129), - [anon_sym_u_SQUOTE] = ACTIONS(3129), - [anon_sym_U_SQUOTE] = ACTIONS(3129), - [anon_sym_u8_SQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_L_DQUOTE] = ACTIONS(3129), - [anon_sym_u_DQUOTE] = ACTIONS(3129), - [anon_sym_U_DQUOTE] = ACTIONS(3129), - [anon_sym_u8_DQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [anon_sym_NULL] = ACTIONS(3127), - [anon_sym_nullptr] = ACTIONS(3127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3127), - [anon_sym_decltype] = ACTIONS(3127), - [anon_sym_explicit] = ACTIONS(3127), - [anon_sym_typename] = ACTIONS(3127), - [anon_sym_template] = ACTIONS(3127), - [anon_sym_operator] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_delete] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_static_assert] = ACTIONS(3127), - [anon_sym_concept] = ACTIONS(3127), - [anon_sym_co_return] = ACTIONS(3127), - [anon_sym_co_yield] = ACTIONS(3127), - [anon_sym_R_DQUOTE] = ACTIONS(3129), - [anon_sym_LR_DQUOTE] = ACTIONS(3129), - [anon_sym_uR_DQUOTE] = ACTIONS(3129), - [anon_sym_UR_DQUOTE] = ACTIONS(3129), - [anon_sym_u8R_DQUOTE] = ACTIONS(3129), - [anon_sym_co_await] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_requires] = ACTIONS(3127), - [sym_this] = ACTIONS(3127), - }, - [STATE(790)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(791)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_include_token1] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym___cdecl] = ACTIONS(3135), - [anon_sym___clrcall] = ACTIONS(3135), - [anon_sym___stdcall] = ACTIONS(3135), - [anon_sym___fastcall] = ACTIONS(3135), - [anon_sym___thiscall] = ACTIONS(3135), - [anon_sym___vectorcall] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym___try] = ACTIONS(3135), - [anon_sym___leave] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym___alignof__] = ACTIONS(3135), - [anon_sym___alignof] = ACTIONS(3135), - [anon_sym__alignof] = ACTIONS(3135), - [anon_sym_alignof] = ACTIONS(3135), - [anon_sym__Alignof] = ACTIONS(3135), - [anon_sym_offsetof] = ACTIONS(3135), - [anon_sym__Generic] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym___asm__] = ACTIONS(3135), - [anon_sym___asm] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [anon_sym_NULL] = ACTIONS(3135), - [anon_sym_nullptr] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), - [anon_sym_concept] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - }, - [STATE(792)] = { - [sym_identifier] = ACTIONS(3242), - [aux_sym_preproc_include_token1] = ACTIONS(3242), - [aux_sym_preproc_def_token1] = ACTIONS(3242), - [aux_sym_preproc_if_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), - [sym_preproc_directive] = ACTIONS(3242), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3242), - [anon_sym_typedef] = ACTIONS(3242), - [anon_sym_virtual] = ACTIONS(3242), - [anon_sym_extern] = ACTIONS(3242), - [anon_sym___attribute__] = ACTIONS(3242), - [anon_sym___attribute] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3242), - [anon_sym___based] = ACTIONS(3242), - [anon_sym___cdecl] = ACTIONS(3242), - [anon_sym___clrcall] = ACTIONS(3242), - [anon_sym___stdcall] = ACTIONS(3242), - [anon_sym___fastcall] = ACTIONS(3242), - [anon_sym___thiscall] = ACTIONS(3242), - [anon_sym___vectorcall] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3242), - [anon_sym_unsigned] = ACTIONS(3242), - [anon_sym_long] = ACTIONS(3242), - [anon_sym_short] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_register] = ACTIONS(3242), - [anon_sym_inline] = ACTIONS(3242), - [anon_sym___inline] = ACTIONS(3242), - [anon_sym___inline__] = ACTIONS(3242), - [anon_sym___forceinline] = ACTIONS(3242), - [anon_sym_thread_local] = ACTIONS(3242), - [anon_sym___thread] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_constexpr] = ACTIONS(3242), - [anon_sym_volatile] = ACTIONS(3242), - [anon_sym_restrict] = ACTIONS(3242), - [anon_sym___restrict__] = ACTIONS(3242), - [anon_sym__Atomic] = ACTIONS(3242), - [anon_sym__Noreturn] = ACTIONS(3242), - [anon_sym_noreturn] = ACTIONS(3242), - [anon_sym__Nonnull] = ACTIONS(3242), - [anon_sym_mutable] = ACTIONS(3242), - [anon_sym_constinit] = ACTIONS(3242), - [anon_sym_consteval] = ACTIONS(3242), - [anon_sym_alignas] = ACTIONS(3242), - [anon_sym__Alignas] = ACTIONS(3242), - [sym_primitive_type] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_struct] = ACTIONS(3242), - [anon_sym_union] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_goto] = ACTIONS(3242), - [anon_sym___try] = ACTIONS(3242), - [anon_sym___leave] = ACTIONS(3242), - [anon_sym_not] = ACTIONS(3242), - [anon_sym_compl] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3242), - [anon_sym___alignof__] = ACTIONS(3242), - [anon_sym___alignof] = ACTIONS(3242), - [anon_sym__alignof] = ACTIONS(3242), - [anon_sym_alignof] = ACTIONS(3242), - [anon_sym__Alignof] = ACTIONS(3242), - [anon_sym_offsetof] = ACTIONS(3242), - [anon_sym__Generic] = ACTIONS(3242), - [anon_sym_asm] = ACTIONS(3242), - [anon_sym___asm__] = ACTIONS(3242), - [anon_sym___asm] = ACTIONS(3242), - [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(3242), - [sym_false] = ACTIONS(3242), - [anon_sym_NULL] = ACTIONS(3242), - [anon_sym_nullptr] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3242), - [anon_sym_decltype] = ACTIONS(3242), - [anon_sym_explicit] = ACTIONS(3242), - [anon_sym_typename] = ACTIONS(3242), - [anon_sym_template] = ACTIONS(3242), - [anon_sym_operator] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_static_assert] = ACTIONS(3242), - [anon_sym_concept] = ACTIONS(3242), - [anon_sym_co_return] = ACTIONS(3242), - [anon_sym_co_yield] = ACTIONS(3242), - [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(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_requires] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - }, - [STATE(793)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_include_token1] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym___cdecl] = ACTIONS(3145), - [anon_sym___clrcall] = ACTIONS(3145), - [anon_sym___stdcall] = ACTIONS(3145), - [anon_sym___fastcall] = ACTIONS(3145), - [anon_sym___thiscall] = ACTIONS(3145), - [anon_sym___vectorcall] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym___try] = ACTIONS(3145), - [anon_sym___leave] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3145), - [anon_sym_compl] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym___alignof__] = ACTIONS(3145), - [anon_sym___alignof] = ACTIONS(3145), - [anon_sym__alignof] = ACTIONS(3145), - [anon_sym_alignof] = ACTIONS(3145), - [anon_sym__Alignof] = ACTIONS(3145), - [anon_sym_offsetof] = ACTIONS(3145), - [anon_sym__Generic] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym___asm__] = ACTIONS(3145), - [anon_sym___asm] = ACTIONS(3145), - [sym_number_literal] = ACTIONS(3147), - [anon_sym_L_SQUOTE] = ACTIONS(3147), - [anon_sym_u_SQUOTE] = ACTIONS(3147), - [anon_sym_U_SQUOTE] = ACTIONS(3147), - [anon_sym_u8_SQUOTE] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_L_DQUOTE] = ACTIONS(3147), - [anon_sym_u_DQUOTE] = ACTIONS(3147), - [anon_sym_U_DQUOTE] = ACTIONS(3147), - [anon_sym_u8_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [anon_sym_NULL] = ACTIONS(3145), - [anon_sym_nullptr] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), - [anon_sym_concept] = ACTIONS(3145), - [anon_sym_co_return] = ACTIONS(3145), - [anon_sym_co_yield] = ACTIONS(3145), - [anon_sym_R_DQUOTE] = ACTIONS(3147), - [anon_sym_LR_DQUOTE] = ACTIONS(3147), - [anon_sym_uR_DQUOTE] = ACTIONS(3147), - [anon_sym_UR_DQUOTE] = ACTIONS(3147), - [anon_sym_u8R_DQUOTE] = ACTIONS(3147), - [anon_sym_co_await] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_requires] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - }, - [STATE(794)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_include_token1] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym___cdecl] = ACTIONS(3149), - [anon_sym___clrcall] = ACTIONS(3149), - [anon_sym___stdcall] = ACTIONS(3149), - [anon_sym___fastcall] = ACTIONS(3149), - [anon_sym___thiscall] = ACTIONS(3149), - [anon_sym___vectorcall] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_case] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym___try] = ACTIONS(3149), - [anon_sym___leave] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3149), - [anon_sym_compl] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym___alignof__] = ACTIONS(3149), - [anon_sym___alignof] = ACTIONS(3149), - [anon_sym__alignof] = ACTIONS(3149), - [anon_sym_alignof] = ACTIONS(3149), - [anon_sym__Alignof] = ACTIONS(3149), - [anon_sym_offsetof] = ACTIONS(3149), - [anon_sym__Generic] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym___asm__] = ACTIONS(3149), - [anon_sym___asm] = ACTIONS(3149), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_L_SQUOTE] = ACTIONS(3151), - [anon_sym_u_SQUOTE] = ACTIONS(3151), - [anon_sym_U_SQUOTE] = ACTIONS(3151), - [anon_sym_u8_SQUOTE] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_L_DQUOTE] = ACTIONS(3151), - [anon_sym_u_DQUOTE] = ACTIONS(3151), - [anon_sym_U_DQUOTE] = ACTIONS(3151), - [anon_sym_u8_DQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [anon_sym_NULL] = ACTIONS(3149), - [anon_sym_nullptr] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_delete] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), - [anon_sym_concept] = ACTIONS(3149), - [anon_sym_co_return] = ACTIONS(3149), - [anon_sym_co_yield] = ACTIONS(3149), - [anon_sym_R_DQUOTE] = ACTIONS(3151), - [anon_sym_LR_DQUOTE] = ACTIONS(3151), - [anon_sym_uR_DQUOTE] = ACTIONS(3151), - [anon_sym_UR_DQUOTE] = ACTIONS(3151), - [anon_sym_u8R_DQUOTE] = ACTIONS(3151), - [anon_sym_co_await] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_requires] = ACTIONS(3149), - [sym_this] = ACTIONS(3149), - }, - [STATE(795)] = { - [sym_identifier] = ACTIONS(3177), - [aux_sym_preproc_include_token1] = ACTIONS(3177), - [aux_sym_preproc_def_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3177), - [sym_preproc_directive] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym___extension__] = ACTIONS(3177), - [anon_sym_typedef] = ACTIONS(3177), - [anon_sym_virtual] = ACTIONS(3177), - [anon_sym_extern] = ACTIONS(3177), - [anon_sym___attribute__] = ACTIONS(3177), - [anon_sym___attribute] = ACTIONS(3177), - [anon_sym_using] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3179), - [anon_sym___declspec] = ACTIONS(3177), - [anon_sym___based] = ACTIONS(3177), - [anon_sym___cdecl] = ACTIONS(3177), - [anon_sym___clrcall] = ACTIONS(3177), - [anon_sym___stdcall] = ACTIONS(3177), - [anon_sym___fastcall] = ACTIONS(3177), - [anon_sym___thiscall] = ACTIONS(3177), - [anon_sym___vectorcall] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_signed] = ACTIONS(3177), - [anon_sym_unsigned] = ACTIONS(3177), - [anon_sym_long] = ACTIONS(3177), - [anon_sym_short] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3177), - [anon_sym_register] = ACTIONS(3177), - [anon_sym_inline] = ACTIONS(3177), - [anon_sym___inline] = ACTIONS(3177), - [anon_sym___inline__] = ACTIONS(3177), - [anon_sym___forceinline] = ACTIONS(3177), - [anon_sym_thread_local] = ACTIONS(3177), - [anon_sym___thread] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_constexpr] = ACTIONS(3177), - [anon_sym_volatile] = ACTIONS(3177), - [anon_sym_restrict] = ACTIONS(3177), - [anon_sym___restrict__] = ACTIONS(3177), - [anon_sym__Atomic] = ACTIONS(3177), - [anon_sym__Noreturn] = ACTIONS(3177), - [anon_sym_noreturn] = ACTIONS(3177), - [anon_sym__Nonnull] = ACTIONS(3177), - [anon_sym_mutable] = ACTIONS(3177), - [anon_sym_constinit] = ACTIONS(3177), - [anon_sym_consteval] = ACTIONS(3177), - [anon_sym_alignas] = ACTIONS(3177), - [anon_sym__Alignas] = ACTIONS(3177), - [sym_primitive_type] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3177), - [anon_sym_case] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym___try] = ACTIONS(3177), - [anon_sym___leave] = ACTIONS(3177), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_compl] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3177), - [anon_sym___alignof__] = ACTIONS(3177), - [anon_sym___alignof] = ACTIONS(3177), - [anon_sym__alignof] = ACTIONS(3177), - [anon_sym_alignof] = ACTIONS(3177), - [anon_sym__Alignof] = ACTIONS(3177), - [anon_sym_offsetof] = ACTIONS(3177), - [anon_sym__Generic] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym___asm__] = ACTIONS(3177), - [anon_sym___asm] = ACTIONS(3177), - [sym_number_literal] = ACTIONS(3179), - [anon_sym_L_SQUOTE] = ACTIONS(3179), - [anon_sym_u_SQUOTE] = ACTIONS(3179), - [anon_sym_U_SQUOTE] = ACTIONS(3179), - [anon_sym_u8_SQUOTE] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_L_DQUOTE] = ACTIONS(3179), - [anon_sym_u_DQUOTE] = ACTIONS(3179), - [anon_sym_U_DQUOTE] = ACTIONS(3179), - [anon_sym_u8_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [anon_sym_NULL] = ACTIONS(3177), - [anon_sym_nullptr] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3177), - [anon_sym_decltype] = ACTIONS(3177), - [anon_sym_explicit] = ACTIONS(3177), - [anon_sym_typename] = ACTIONS(3177), - [anon_sym_template] = ACTIONS(3177), - [anon_sym_operator] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_delete] = ACTIONS(3177), - [anon_sym_throw] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_static_assert] = ACTIONS(3177), - [anon_sym_concept] = ACTIONS(3177), - [anon_sym_co_return] = ACTIONS(3177), - [anon_sym_co_yield] = ACTIONS(3177), - [anon_sym_R_DQUOTE] = ACTIONS(3179), - [anon_sym_LR_DQUOTE] = ACTIONS(3179), - [anon_sym_uR_DQUOTE] = ACTIONS(3179), - [anon_sym_UR_DQUOTE] = ACTIONS(3179), - [anon_sym_u8R_DQUOTE] = ACTIONS(3179), - [anon_sym_co_await] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_requires] = ACTIONS(3177), - [sym_this] = ACTIONS(3177), - }, - [STATE(796)] = { - [sym_identifier] = ACTIONS(3232), - [aux_sym_preproc_include_token1] = ACTIONS(3232), - [aux_sym_preproc_def_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token1] = ACTIONS(3232), - [aux_sym_preproc_if_token2] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3232), - [sym_preproc_directive] = ACTIONS(3232), - [anon_sym_LPAREN2] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_AMP_AMP] = ACTIONS(3234), - [anon_sym_AMP] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3232), - [anon_sym_typedef] = ACTIONS(3232), - [anon_sym_virtual] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(3232), - [anon_sym___attribute__] = ACTIONS(3232), - [anon_sym___attribute] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3234), - [anon_sym___declspec] = ACTIONS(3232), - [anon_sym___based] = ACTIONS(3232), - [anon_sym___cdecl] = ACTIONS(3232), - [anon_sym___clrcall] = ACTIONS(3232), - [anon_sym___stdcall] = ACTIONS(3232), - [anon_sym___fastcall] = ACTIONS(3232), - [anon_sym___thiscall] = ACTIONS(3232), - [anon_sym___vectorcall] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_signed] = ACTIONS(3232), - [anon_sym_unsigned] = ACTIONS(3232), - [anon_sym_long] = ACTIONS(3232), - [anon_sym_short] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_register] = ACTIONS(3232), - [anon_sym_inline] = ACTIONS(3232), - [anon_sym___inline] = ACTIONS(3232), - [anon_sym___inline__] = ACTIONS(3232), - [anon_sym___forceinline] = ACTIONS(3232), - [anon_sym_thread_local] = ACTIONS(3232), - [anon_sym___thread] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_constexpr] = ACTIONS(3232), - [anon_sym_volatile] = ACTIONS(3232), - [anon_sym_restrict] = ACTIONS(3232), - [anon_sym___restrict__] = ACTIONS(3232), - [anon_sym__Atomic] = ACTIONS(3232), - [anon_sym__Noreturn] = ACTIONS(3232), - [anon_sym_noreturn] = ACTIONS(3232), - [anon_sym__Nonnull] = ACTIONS(3232), - [anon_sym_mutable] = ACTIONS(3232), - [anon_sym_constinit] = ACTIONS(3232), - [anon_sym_consteval] = ACTIONS(3232), - [anon_sym_alignas] = ACTIONS(3232), - [anon_sym__Alignas] = ACTIONS(3232), - [sym_primitive_type] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_struct] = ACTIONS(3232), - [anon_sym_union] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_goto] = ACTIONS(3232), - [anon_sym___try] = ACTIONS(3232), - [anon_sym___leave] = ACTIONS(3232), - [anon_sym_not] = ACTIONS(3232), - [anon_sym_compl] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_sizeof] = ACTIONS(3232), - [anon_sym___alignof__] = ACTIONS(3232), - [anon_sym___alignof] = ACTIONS(3232), - [anon_sym__alignof] = ACTIONS(3232), - [anon_sym_alignof] = ACTIONS(3232), - [anon_sym__Alignof] = ACTIONS(3232), - [anon_sym_offsetof] = ACTIONS(3232), - [anon_sym__Generic] = ACTIONS(3232), - [anon_sym_asm] = ACTIONS(3232), - [anon_sym___asm__] = ACTIONS(3232), - [anon_sym___asm] = ACTIONS(3232), - [sym_number_literal] = ACTIONS(3234), - [anon_sym_L_SQUOTE] = ACTIONS(3234), - [anon_sym_u_SQUOTE] = ACTIONS(3234), - [anon_sym_U_SQUOTE] = ACTIONS(3234), - [anon_sym_u8_SQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_L_DQUOTE] = ACTIONS(3234), - [anon_sym_u_DQUOTE] = ACTIONS(3234), - [anon_sym_U_DQUOTE] = ACTIONS(3234), - [anon_sym_u8_DQUOTE] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3232), - [anon_sym_nullptr] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3232), - [anon_sym_decltype] = ACTIONS(3232), - [anon_sym_explicit] = ACTIONS(3232), - [anon_sym_typename] = ACTIONS(3232), - [anon_sym_template] = ACTIONS(3232), - [anon_sym_operator] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_static_assert] = ACTIONS(3232), - [anon_sym_concept] = ACTIONS(3232), - [anon_sym_co_return] = ACTIONS(3232), - [anon_sym_co_yield] = ACTIONS(3232), - [anon_sym_R_DQUOTE] = ACTIONS(3234), - [anon_sym_LR_DQUOTE] = ACTIONS(3234), - [anon_sym_uR_DQUOTE] = ACTIONS(3234), - [anon_sym_UR_DQUOTE] = ACTIONS(3234), - [anon_sym_u8R_DQUOTE] = ACTIONS(3234), - [anon_sym_co_await] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_requires] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - }, - [STATE(797)] = { - [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_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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), - [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_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_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), - }, - [STATE(798)] = { - [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_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(799)] = { - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(800)] = { - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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_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), - [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_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_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), - }, - [STATE(801)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_include_token1] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym___cdecl] = ACTIONS(3228), - [anon_sym___clrcall] = ACTIONS(3228), - [anon_sym___stdcall] = ACTIONS(3228), - [anon_sym___fastcall] = ACTIONS(3228), - [anon_sym___thiscall] = ACTIONS(3228), - [anon_sym___vectorcall] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_goto] = ACTIONS(3228), - [anon_sym___try] = ACTIONS(3228), - [anon_sym___leave] = ACTIONS(3228), - [anon_sym_not] = ACTIONS(3228), - [anon_sym_compl] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_sizeof] = ACTIONS(3228), - [anon_sym___alignof__] = ACTIONS(3228), - [anon_sym___alignof] = ACTIONS(3228), - [anon_sym__alignof] = ACTIONS(3228), - [anon_sym_alignof] = ACTIONS(3228), - [anon_sym__Alignof] = ACTIONS(3228), - [anon_sym_offsetof] = ACTIONS(3228), - [anon_sym__Generic] = ACTIONS(3228), - [anon_sym_asm] = ACTIONS(3228), - [anon_sym___asm__] = ACTIONS(3228), - [anon_sym___asm] = ACTIONS(3228), - [sym_number_literal] = ACTIONS(3230), - [anon_sym_L_SQUOTE] = ACTIONS(3230), - [anon_sym_u_SQUOTE] = ACTIONS(3230), - [anon_sym_U_SQUOTE] = ACTIONS(3230), - [anon_sym_u8_SQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [anon_sym_NULL] = ACTIONS(3228), - [anon_sym_nullptr] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), - [anon_sym_concept] = ACTIONS(3228), - [anon_sym_co_return] = ACTIONS(3228), - [anon_sym_co_yield] = ACTIONS(3228), - [anon_sym_R_DQUOTE] = ACTIONS(3230), - [anon_sym_LR_DQUOTE] = ACTIONS(3230), - [anon_sym_uR_DQUOTE] = ACTIONS(3230), - [anon_sym_UR_DQUOTE] = ACTIONS(3230), - [anon_sym_u8R_DQUOTE] = ACTIONS(3230), - [anon_sym_co_await] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_requires] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - }, - [STATE(802)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_include_token1] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym___cdecl] = ACTIONS(3238), - [anon_sym___clrcall] = ACTIONS(3238), - [anon_sym___stdcall] = ACTIONS(3238), - [anon_sym___fastcall] = ACTIONS(3238), - [anon_sym___thiscall] = ACTIONS(3238), - [anon_sym___vectorcall] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_goto] = ACTIONS(3238), - [anon_sym___try] = ACTIONS(3238), - [anon_sym___leave] = ACTIONS(3238), - [anon_sym_not] = ACTIONS(3238), - [anon_sym_compl] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym___alignof__] = ACTIONS(3238), - [anon_sym___alignof] = ACTIONS(3238), - [anon_sym__alignof] = ACTIONS(3238), - [anon_sym_alignof] = ACTIONS(3238), - [anon_sym__Alignof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [anon_sym__Generic] = ACTIONS(3238), - [anon_sym_asm] = ACTIONS(3238), - [anon_sym___asm__] = ACTIONS(3238), - [anon_sym___asm] = ACTIONS(3238), - [sym_number_literal] = ACTIONS(3240), - [anon_sym_L_SQUOTE] = ACTIONS(3240), - [anon_sym_u_SQUOTE] = ACTIONS(3240), - [anon_sym_U_SQUOTE] = ACTIONS(3240), - [anon_sym_u8_SQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_L_DQUOTE] = ACTIONS(3240), - [anon_sym_u_DQUOTE] = ACTIONS(3240), - [anon_sym_U_DQUOTE] = ACTIONS(3240), - [anon_sym_u8_DQUOTE] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [anon_sym_NULL] = ACTIONS(3238), - [anon_sym_nullptr] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), - [anon_sym_concept] = ACTIONS(3238), - [anon_sym_co_return] = ACTIONS(3238), - [anon_sym_co_yield] = ACTIONS(3238), - [anon_sym_R_DQUOTE] = ACTIONS(3240), - [anon_sym_LR_DQUOTE] = ACTIONS(3240), - [anon_sym_uR_DQUOTE] = ACTIONS(3240), - [anon_sym_UR_DQUOTE] = ACTIONS(3240), - [anon_sym_u8R_DQUOTE] = ACTIONS(3240), - [anon_sym_co_await] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_requires] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - }, - [STATE(803)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_include_token1] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token2] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym___cdecl] = ACTIONS(2995), - [anon_sym___clrcall] = ACTIONS(2995), - [anon_sym___stdcall] = ACTIONS(2995), - [anon_sym___fastcall] = ACTIONS(2995), - [anon_sym___thiscall] = ACTIONS(2995), - [anon_sym___vectorcall] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_switch] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_default] = ACTIONS(2995), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_do] = ACTIONS(2995), - [anon_sym_for] = ACTIONS(2995), - [anon_sym_return] = ACTIONS(2995), - [anon_sym_break] = ACTIONS(2995), - [anon_sym_continue] = ACTIONS(2995), - [anon_sym_goto] = ACTIONS(2995), - [anon_sym___try] = ACTIONS(2995), - [anon_sym___leave] = ACTIONS(2995), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_compl] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(2995), - [anon_sym___alignof__] = ACTIONS(2995), - [anon_sym___alignof] = ACTIONS(2995), - [anon_sym__alignof] = ACTIONS(2995), - [anon_sym_alignof] = ACTIONS(2995), - [anon_sym__Alignof] = ACTIONS(2995), - [anon_sym_offsetof] = ACTIONS(2995), - [anon_sym__Generic] = ACTIONS(2995), - [anon_sym_asm] = ACTIONS(2995), - [anon_sym___asm__] = ACTIONS(2995), - [anon_sym___asm] = ACTIONS(2995), - [sym_number_literal] = ACTIONS(2997), - [anon_sym_L_SQUOTE] = ACTIONS(2997), - [anon_sym_u_SQUOTE] = ACTIONS(2997), - [anon_sym_U_SQUOTE] = ACTIONS(2997), - [anon_sym_u8_SQUOTE] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_L_DQUOTE] = ACTIONS(2997), - [anon_sym_u_DQUOTE] = ACTIONS(2997), - [anon_sym_U_DQUOTE] = ACTIONS(2997), - [anon_sym_u8_DQUOTE] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [sym_true] = ACTIONS(2995), - [sym_false] = ACTIONS(2995), - [anon_sym_NULL] = ACTIONS(2995), - [anon_sym_nullptr] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_delete] = ACTIONS(2995), - [anon_sym_throw] = ACTIONS(2995), - [anon_sym_namespace] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), - [anon_sym_concept] = ACTIONS(2995), - [anon_sym_co_return] = ACTIONS(2995), - [anon_sym_co_yield] = ACTIONS(2995), - [anon_sym_R_DQUOTE] = ACTIONS(2997), - [anon_sym_LR_DQUOTE] = ACTIONS(2997), - [anon_sym_uR_DQUOTE] = ACTIONS(2997), - [anon_sym_UR_DQUOTE] = ACTIONS(2997), - [anon_sym_u8R_DQUOTE] = ACTIONS(2997), - [anon_sym_co_await] = ACTIONS(2995), - [anon_sym_new] = ACTIONS(2995), - [anon_sym_requires] = ACTIONS(2995), - [sym_this] = ACTIONS(2995), - }, - [STATE(804)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_include_token1] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token2] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym___cdecl] = ACTIONS(2999), - [anon_sym___clrcall] = ACTIONS(2999), - [anon_sym___stdcall] = ACTIONS(2999), - [anon_sym___fastcall] = ACTIONS(2999), - [anon_sym___thiscall] = ACTIONS(2999), - [anon_sym___vectorcall] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_switch] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_default] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_goto] = ACTIONS(2999), - [anon_sym___try] = ACTIONS(2999), - [anon_sym___leave] = ACTIONS(2999), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_compl] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_sizeof] = ACTIONS(2999), - [anon_sym___alignof__] = ACTIONS(2999), - [anon_sym___alignof] = ACTIONS(2999), - [anon_sym__alignof] = ACTIONS(2999), - [anon_sym_alignof] = ACTIONS(2999), - [anon_sym__Alignof] = ACTIONS(2999), - [anon_sym_offsetof] = ACTIONS(2999), - [anon_sym__Generic] = ACTIONS(2999), - [anon_sym_asm] = ACTIONS(2999), - [anon_sym___asm__] = ACTIONS(2999), - [anon_sym___asm] = ACTIONS(2999), - [sym_number_literal] = ACTIONS(3001), - [anon_sym_L_SQUOTE] = ACTIONS(3001), - [anon_sym_u_SQUOTE] = ACTIONS(3001), - [anon_sym_U_SQUOTE] = ACTIONS(3001), - [anon_sym_u8_SQUOTE] = ACTIONS(3001), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_L_DQUOTE] = ACTIONS(3001), - [anon_sym_u_DQUOTE] = ACTIONS(3001), - [anon_sym_U_DQUOTE] = ACTIONS(3001), - [anon_sym_u8_DQUOTE] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [anon_sym_NULL] = ACTIONS(2999), - [anon_sym_nullptr] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(2999), - [anon_sym_throw] = ACTIONS(2999), - [anon_sym_namespace] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), - [anon_sym_concept] = ACTIONS(2999), - [anon_sym_co_return] = ACTIONS(2999), - [anon_sym_co_yield] = ACTIONS(2999), - [anon_sym_R_DQUOTE] = ACTIONS(3001), - [anon_sym_LR_DQUOTE] = ACTIONS(3001), - [anon_sym_uR_DQUOTE] = ACTIONS(3001), - [anon_sym_UR_DQUOTE] = ACTIONS(3001), - [anon_sym_u8R_DQUOTE] = ACTIONS(3001), - [anon_sym_co_await] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_requires] = ACTIONS(2999), - [sym_this] = ACTIONS(2999), - }, - [STATE(805)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_include_token1] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token2] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym___cdecl] = ACTIONS(3003), - [anon_sym___clrcall] = ACTIONS(3003), - [anon_sym___stdcall] = ACTIONS(3003), - [anon_sym___fastcall] = ACTIONS(3003), - [anon_sym___thiscall] = ACTIONS(3003), - [anon_sym___vectorcall] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_switch] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_goto] = ACTIONS(3003), - [anon_sym___try] = ACTIONS(3003), - [anon_sym___leave] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3003), - [anon_sym_compl] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3003), - [anon_sym___alignof__] = ACTIONS(3003), - [anon_sym___alignof] = ACTIONS(3003), - [anon_sym__alignof] = ACTIONS(3003), - [anon_sym_alignof] = ACTIONS(3003), - [anon_sym__Alignof] = ACTIONS(3003), - [anon_sym_offsetof] = ACTIONS(3003), - [anon_sym__Generic] = ACTIONS(3003), - [anon_sym_asm] = ACTIONS(3003), - [anon_sym___asm__] = ACTIONS(3003), - [anon_sym___asm] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_L_SQUOTE] = ACTIONS(3005), - [anon_sym_u_SQUOTE] = ACTIONS(3005), - [anon_sym_U_SQUOTE] = ACTIONS(3005), - [anon_sym_u8_SQUOTE] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_L_DQUOTE] = ACTIONS(3005), - [anon_sym_u_DQUOTE] = ACTIONS(3005), - [anon_sym_U_DQUOTE] = ACTIONS(3005), - [anon_sym_u8_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [anon_sym_NULL] = ACTIONS(3003), - [anon_sym_nullptr] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_throw] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - [anon_sym_concept] = ACTIONS(3003), - [anon_sym_co_return] = ACTIONS(3003), - [anon_sym_co_yield] = ACTIONS(3003), - [anon_sym_R_DQUOTE] = ACTIONS(3005), - [anon_sym_LR_DQUOTE] = ACTIONS(3005), - [anon_sym_uR_DQUOTE] = ACTIONS(3005), - [anon_sym_UR_DQUOTE] = ACTIONS(3005), - [anon_sym_u8R_DQUOTE] = ACTIONS(3005), - [anon_sym_co_await] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_requires] = ACTIONS(3003), - [sym_this] = ACTIONS(3003), - }, - [STATE(806)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_include_token1] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token2] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym___cdecl] = ACTIONS(3115), - [anon_sym___clrcall] = ACTIONS(3115), - [anon_sym___stdcall] = ACTIONS(3115), - [anon_sym___fastcall] = ACTIONS(3115), - [anon_sym___thiscall] = ACTIONS(3115), - [anon_sym___vectorcall] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym___try] = ACTIONS(3115), - [anon_sym___leave] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3115), - [anon_sym_compl] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym___alignof__] = ACTIONS(3115), - [anon_sym___alignof] = ACTIONS(3115), - [anon_sym__alignof] = ACTIONS(3115), - [anon_sym_alignof] = ACTIONS(3115), - [anon_sym__Alignof] = ACTIONS(3115), - [anon_sym_offsetof] = ACTIONS(3115), - [anon_sym__Generic] = ACTIONS(3115), - [anon_sym_asm] = ACTIONS(3115), - [anon_sym___asm__] = ACTIONS(3115), - [anon_sym___asm] = ACTIONS(3115), - [sym_number_literal] = ACTIONS(3117), - [anon_sym_L_SQUOTE] = ACTIONS(3117), - [anon_sym_u_SQUOTE] = ACTIONS(3117), - [anon_sym_U_SQUOTE] = ACTIONS(3117), - [anon_sym_u8_SQUOTE] = ACTIONS(3117), - [anon_sym_SQUOTE] = ACTIONS(3117), - [anon_sym_L_DQUOTE] = ACTIONS(3117), - [anon_sym_u_DQUOTE] = ACTIONS(3117), - [anon_sym_U_DQUOTE] = ACTIONS(3117), - [anon_sym_u8_DQUOTE] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_true] = ACTIONS(3115), - [sym_false] = ACTIONS(3115), - [anon_sym_NULL] = ACTIONS(3115), - [anon_sym_nullptr] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_delete] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3115), - [anon_sym_co_return] = ACTIONS(3115), - [anon_sym_co_yield] = ACTIONS(3115), - [anon_sym_R_DQUOTE] = ACTIONS(3117), - [anon_sym_LR_DQUOTE] = ACTIONS(3117), - [anon_sym_uR_DQUOTE] = ACTIONS(3117), - [anon_sym_UR_DQUOTE] = ACTIONS(3117), - [anon_sym_u8R_DQUOTE] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_requires] = ACTIONS(3115), - [sym_this] = ACTIONS(3115), - }, - [STATE(807)] = { - [sym_identifier] = ACTIONS(2947), - [aux_sym_preproc_include_token1] = ACTIONS(2947), - [aux_sym_preproc_def_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token1] = ACTIONS(2947), - [aux_sym_preproc_if_token2] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2947), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2947), - [sym_preproc_directive] = ACTIONS(2947), - [anon_sym_LPAREN2] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym___extension__] = ACTIONS(2947), - [anon_sym_typedef] = ACTIONS(2947), - [anon_sym_virtual] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym___attribute__] = ACTIONS(2947), - [anon_sym___attribute] = ACTIONS(2947), - [anon_sym_using] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2949), - [anon_sym___declspec] = ACTIONS(2947), - [anon_sym___based] = ACTIONS(2947), - [anon_sym___cdecl] = ACTIONS(2947), - [anon_sym___clrcall] = ACTIONS(2947), - [anon_sym___stdcall] = ACTIONS(2947), - [anon_sym___fastcall] = ACTIONS(2947), - [anon_sym___thiscall] = ACTIONS(2947), - [anon_sym___vectorcall] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2947), - [anon_sym_unsigned] = ACTIONS(2947), - [anon_sym_long] = ACTIONS(2947), - [anon_sym_short] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_register] = ACTIONS(2947), - [anon_sym_inline] = ACTIONS(2947), - [anon_sym___inline] = ACTIONS(2947), - [anon_sym___inline__] = ACTIONS(2947), - [anon_sym___forceinline] = ACTIONS(2947), - [anon_sym_thread_local] = ACTIONS(2947), - [anon_sym___thread] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_constexpr] = ACTIONS(2947), - [anon_sym_volatile] = ACTIONS(2947), - [anon_sym_restrict] = ACTIONS(2947), - [anon_sym___restrict__] = ACTIONS(2947), - [anon_sym__Atomic] = ACTIONS(2947), - [anon_sym__Noreturn] = ACTIONS(2947), - [anon_sym_noreturn] = ACTIONS(2947), - [anon_sym__Nonnull] = ACTIONS(2947), - [anon_sym_mutable] = ACTIONS(2947), - [anon_sym_constinit] = ACTIONS(2947), - [anon_sym_consteval] = ACTIONS(2947), - [anon_sym_alignas] = ACTIONS(2947), - [anon_sym__Alignas] = ACTIONS(2947), - [sym_primitive_type] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_switch] = ACTIONS(2947), - [anon_sym_case] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym___try] = ACTIONS(2947), - [anon_sym___leave] = ACTIONS(2947), - [anon_sym_not] = ACTIONS(2947), - [anon_sym_compl] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_sizeof] = ACTIONS(2947), - [anon_sym___alignof__] = ACTIONS(2947), - [anon_sym___alignof] = ACTIONS(2947), - [anon_sym__alignof] = ACTIONS(2947), - [anon_sym_alignof] = ACTIONS(2947), - [anon_sym__Alignof] = ACTIONS(2947), - [anon_sym_offsetof] = ACTIONS(2947), - [anon_sym__Generic] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym___asm__] = ACTIONS(2947), - [anon_sym___asm] = ACTIONS(2947), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_L_SQUOTE] = ACTIONS(2949), - [anon_sym_u_SQUOTE] = ACTIONS(2949), - [anon_sym_U_SQUOTE] = ACTIONS(2949), - [anon_sym_u8_SQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_L_DQUOTE] = ACTIONS(2949), - [anon_sym_u_DQUOTE] = ACTIONS(2949), - [anon_sym_U_DQUOTE] = ACTIONS(2949), - [anon_sym_u8_DQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [anon_sym_NULL] = ACTIONS(2947), - [anon_sym_nullptr] = ACTIONS(2947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2947), - [anon_sym_decltype] = ACTIONS(2947), - [anon_sym_explicit] = ACTIONS(2947), - [anon_sym_typename] = ACTIONS(2947), - [anon_sym_template] = ACTIONS(2947), - [anon_sym_operator] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_delete] = ACTIONS(2947), - [anon_sym_throw] = ACTIONS(2947), - [anon_sym_namespace] = ACTIONS(2947), - [anon_sym_static_assert] = ACTIONS(2947), - [anon_sym_concept] = ACTIONS(2947), - [anon_sym_co_return] = ACTIONS(2947), - [anon_sym_co_yield] = ACTIONS(2947), - [anon_sym_R_DQUOTE] = ACTIONS(2949), - [anon_sym_LR_DQUOTE] = ACTIONS(2949), - [anon_sym_uR_DQUOTE] = ACTIONS(2949), - [anon_sym_UR_DQUOTE] = ACTIONS(2949), - [anon_sym_u8R_DQUOTE] = ACTIONS(2949), - [anon_sym_co_await] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_requires] = ACTIONS(2947), - [sym_this] = ACTIONS(2947), - }, - [STATE(808)] = { - [sym_identifier] = ACTIONS(3075), - [aux_sym_preproc_include_token1] = ACTIONS(3075), - [aux_sym_preproc_def_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token1] = ACTIONS(3075), - [aux_sym_preproc_if_token2] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3075), - [sym_preproc_directive] = ACTIONS(3075), - [anon_sym_LPAREN2] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3075), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym___extension__] = ACTIONS(3075), - [anon_sym_typedef] = ACTIONS(3075), - [anon_sym_virtual] = ACTIONS(3075), - [anon_sym_extern] = ACTIONS(3075), - [anon_sym___attribute__] = ACTIONS(3075), - [anon_sym___attribute] = ACTIONS(3075), - [anon_sym_using] = ACTIONS(3075), - [anon_sym_COLON_COLON] = ACTIONS(3077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), - [anon_sym___declspec] = ACTIONS(3075), - [anon_sym___based] = ACTIONS(3075), - [anon_sym___cdecl] = ACTIONS(3075), - [anon_sym___clrcall] = ACTIONS(3075), - [anon_sym___stdcall] = ACTIONS(3075), - [anon_sym___fastcall] = ACTIONS(3075), - [anon_sym___thiscall] = ACTIONS(3075), - [anon_sym___vectorcall] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_signed] = ACTIONS(3075), - [anon_sym_unsigned] = ACTIONS(3075), - [anon_sym_long] = ACTIONS(3075), - [anon_sym_short] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_register] = ACTIONS(3075), - [anon_sym_inline] = ACTIONS(3075), - [anon_sym___inline] = ACTIONS(3075), - [anon_sym___inline__] = ACTIONS(3075), - [anon_sym___forceinline] = ACTIONS(3075), - [anon_sym_thread_local] = ACTIONS(3075), - [anon_sym___thread] = ACTIONS(3075), - [anon_sym_const] = ACTIONS(3075), - [anon_sym_constexpr] = ACTIONS(3075), - [anon_sym_volatile] = ACTIONS(3075), - [anon_sym_restrict] = ACTIONS(3075), - [anon_sym___restrict__] = ACTIONS(3075), - [anon_sym__Atomic] = ACTIONS(3075), - [anon_sym__Noreturn] = ACTIONS(3075), - [anon_sym_noreturn] = ACTIONS(3075), - [anon_sym__Nonnull] = ACTIONS(3075), - [anon_sym_mutable] = ACTIONS(3075), - [anon_sym_constinit] = ACTIONS(3075), - [anon_sym_consteval] = ACTIONS(3075), - [anon_sym_alignas] = ACTIONS(3075), - [anon_sym__Alignas] = ACTIONS(3075), - [sym_primitive_type] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_switch] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_default] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_break] = ACTIONS(3075), - [anon_sym_continue] = ACTIONS(3075), - [anon_sym_goto] = ACTIONS(3075), - [anon_sym___try] = ACTIONS(3075), - [anon_sym___leave] = ACTIONS(3075), - [anon_sym_not] = ACTIONS(3075), - [anon_sym_compl] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_sizeof] = ACTIONS(3075), - [anon_sym___alignof__] = ACTIONS(3075), - [anon_sym___alignof] = ACTIONS(3075), - [anon_sym__alignof] = ACTIONS(3075), - [anon_sym_alignof] = ACTIONS(3075), - [anon_sym__Alignof] = ACTIONS(3075), - [anon_sym_offsetof] = ACTIONS(3075), - [anon_sym__Generic] = ACTIONS(3075), - [anon_sym_asm] = ACTIONS(3075), - [anon_sym___asm__] = ACTIONS(3075), - [anon_sym___asm] = ACTIONS(3075), - [sym_number_literal] = ACTIONS(3077), - [anon_sym_L_SQUOTE] = ACTIONS(3077), - [anon_sym_u_SQUOTE] = ACTIONS(3077), - [anon_sym_U_SQUOTE] = ACTIONS(3077), - [anon_sym_u8_SQUOTE] = ACTIONS(3077), - [anon_sym_SQUOTE] = ACTIONS(3077), - [anon_sym_L_DQUOTE] = ACTIONS(3077), - [anon_sym_u_DQUOTE] = ACTIONS(3077), - [anon_sym_U_DQUOTE] = ACTIONS(3077), - [anon_sym_u8_DQUOTE] = ACTIONS(3077), - [anon_sym_DQUOTE] = ACTIONS(3077), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [anon_sym_NULL] = ACTIONS(3075), - [anon_sym_nullptr] = ACTIONS(3075), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3075), - [anon_sym_decltype] = ACTIONS(3075), - [anon_sym_explicit] = ACTIONS(3075), - [anon_sym_typename] = ACTIONS(3075), - [anon_sym_template] = ACTIONS(3075), - [anon_sym_operator] = ACTIONS(3075), - [anon_sym_try] = ACTIONS(3075), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_throw] = ACTIONS(3075), - [anon_sym_namespace] = ACTIONS(3075), - [anon_sym_static_assert] = ACTIONS(3075), - [anon_sym_concept] = ACTIONS(3075), - [anon_sym_co_return] = ACTIONS(3075), - [anon_sym_co_yield] = ACTIONS(3075), - [anon_sym_R_DQUOTE] = ACTIONS(3077), - [anon_sym_LR_DQUOTE] = ACTIONS(3077), - [anon_sym_uR_DQUOTE] = ACTIONS(3077), - [anon_sym_UR_DQUOTE] = ACTIONS(3077), - [anon_sym_u8R_DQUOTE] = ACTIONS(3077), - [anon_sym_co_await] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3075), - [anon_sym_requires] = ACTIONS(3075), - [sym_this] = ACTIONS(3075), - }, - [STATE(809)] = { - [sym_identifier] = ACTIONS(3254), - [aux_sym_preproc_include_token1] = ACTIONS(3254), - [aux_sym_preproc_def_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token1] = ACTIONS(3254), - [aux_sym_preproc_if_token2] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3254), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3254), - [sym_preproc_directive] = ACTIONS(3254), - [anon_sym_LPAREN2] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3256), - [anon_sym_AMP_AMP] = ACTIONS(3256), - [anon_sym_AMP] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym___extension__] = ACTIONS(3254), - [anon_sym_typedef] = ACTIONS(3254), - [anon_sym_virtual] = ACTIONS(3254), - [anon_sym_extern] = ACTIONS(3254), - [anon_sym___attribute__] = ACTIONS(3254), - [anon_sym___attribute] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_COLON_COLON] = ACTIONS(3256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3256), - [anon_sym___declspec] = ACTIONS(3254), - [anon_sym___based] = ACTIONS(3254), - [anon_sym___cdecl] = ACTIONS(3254), - [anon_sym___clrcall] = ACTIONS(3254), - [anon_sym___stdcall] = ACTIONS(3254), - [anon_sym___fastcall] = ACTIONS(3254), - [anon_sym___thiscall] = ACTIONS(3254), - [anon_sym___vectorcall] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_signed] = ACTIONS(3254), - [anon_sym_unsigned] = ACTIONS(3254), - [anon_sym_long] = ACTIONS(3254), - [anon_sym_short] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_register] = ACTIONS(3254), - [anon_sym_inline] = ACTIONS(3254), - [anon_sym___inline] = ACTIONS(3254), - [anon_sym___inline__] = ACTIONS(3254), - [anon_sym___forceinline] = ACTIONS(3254), - [anon_sym_thread_local] = ACTIONS(3254), - [anon_sym___thread] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_constexpr] = ACTIONS(3254), - [anon_sym_volatile] = ACTIONS(3254), - [anon_sym_restrict] = ACTIONS(3254), - [anon_sym___restrict__] = ACTIONS(3254), - [anon_sym__Atomic] = ACTIONS(3254), - [anon_sym__Noreturn] = ACTIONS(3254), - [anon_sym_noreturn] = ACTIONS(3254), - [anon_sym__Nonnull] = ACTIONS(3254), - [anon_sym_mutable] = ACTIONS(3254), - [anon_sym_constinit] = ACTIONS(3254), - [anon_sym_consteval] = ACTIONS(3254), - [anon_sym_alignas] = ACTIONS(3254), - [anon_sym__Alignas] = ACTIONS(3254), - [sym_primitive_type] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_struct] = ACTIONS(3254), - [anon_sym_union] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_goto] = ACTIONS(3254), - [anon_sym___try] = ACTIONS(3254), - [anon_sym___leave] = ACTIONS(3254), - [anon_sym_not] = ACTIONS(3254), - [anon_sym_compl] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_sizeof] = ACTIONS(3254), - [anon_sym___alignof__] = ACTIONS(3254), - [anon_sym___alignof] = ACTIONS(3254), - [anon_sym__alignof] = ACTIONS(3254), - [anon_sym_alignof] = ACTIONS(3254), - [anon_sym__Alignof] = ACTIONS(3254), - [anon_sym_offsetof] = ACTIONS(3254), - [anon_sym__Generic] = ACTIONS(3254), - [anon_sym_asm] = ACTIONS(3254), - [anon_sym___asm__] = ACTIONS(3254), - [anon_sym___asm] = ACTIONS(3254), - [sym_number_literal] = ACTIONS(3256), - [anon_sym_L_SQUOTE] = ACTIONS(3256), - [anon_sym_u_SQUOTE] = ACTIONS(3256), - [anon_sym_U_SQUOTE] = ACTIONS(3256), - [anon_sym_u8_SQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_L_DQUOTE] = ACTIONS(3256), - [anon_sym_u_DQUOTE] = ACTIONS(3256), - [anon_sym_U_DQUOTE] = ACTIONS(3256), - [anon_sym_u8_DQUOTE] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [anon_sym_NULL] = ACTIONS(3254), - [anon_sym_nullptr] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3254), - [anon_sym_decltype] = ACTIONS(3254), - [anon_sym_explicit] = ACTIONS(3254), - [anon_sym_typename] = ACTIONS(3254), - [anon_sym_template] = ACTIONS(3254), - [anon_sym_operator] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_static_assert] = ACTIONS(3254), - [anon_sym_concept] = ACTIONS(3254), - [anon_sym_co_return] = ACTIONS(3254), - [anon_sym_co_yield] = ACTIONS(3254), - [anon_sym_R_DQUOTE] = ACTIONS(3256), - [anon_sym_LR_DQUOTE] = ACTIONS(3256), - [anon_sym_uR_DQUOTE] = ACTIONS(3256), - [anon_sym_UR_DQUOTE] = ACTIONS(3256), - [anon_sym_u8R_DQUOTE] = ACTIONS(3256), - [anon_sym_co_await] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_requires] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - }, - [STATE(810)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_include_token1] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token2] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym___cdecl] = ACTIONS(3145), - [anon_sym___clrcall] = ACTIONS(3145), - [anon_sym___stdcall] = ACTIONS(3145), - [anon_sym___fastcall] = ACTIONS(3145), - [anon_sym___thiscall] = ACTIONS(3145), - [anon_sym___vectorcall] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_switch] = ACTIONS(3145), - [anon_sym_case] = ACTIONS(3145), - [anon_sym_default] = ACTIONS(3145), - [anon_sym_while] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym___try] = ACTIONS(3145), - [anon_sym___leave] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3145), - [anon_sym_compl] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3145), - [anon_sym___alignof__] = ACTIONS(3145), - [anon_sym___alignof] = ACTIONS(3145), - [anon_sym__alignof] = ACTIONS(3145), - [anon_sym_alignof] = ACTIONS(3145), - [anon_sym__Alignof] = ACTIONS(3145), - [anon_sym_offsetof] = ACTIONS(3145), - [anon_sym__Generic] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym___asm__] = ACTIONS(3145), - [anon_sym___asm] = ACTIONS(3145), - [sym_number_literal] = ACTIONS(3147), - [anon_sym_L_SQUOTE] = ACTIONS(3147), - [anon_sym_u_SQUOTE] = ACTIONS(3147), - [anon_sym_U_SQUOTE] = ACTIONS(3147), - [anon_sym_u8_SQUOTE] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_L_DQUOTE] = ACTIONS(3147), - [anon_sym_u_DQUOTE] = ACTIONS(3147), - [anon_sym_U_DQUOTE] = ACTIONS(3147), - [anon_sym_u8_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [anon_sym_NULL] = ACTIONS(3145), - [anon_sym_nullptr] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_try] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3145), - [anon_sym_throw] = ACTIONS(3145), - [anon_sym_namespace] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), - [anon_sym_concept] = ACTIONS(3145), - [anon_sym_co_return] = ACTIONS(3145), - [anon_sym_co_yield] = ACTIONS(3145), - [anon_sym_R_DQUOTE] = ACTIONS(3147), - [anon_sym_LR_DQUOTE] = ACTIONS(3147), - [anon_sym_uR_DQUOTE] = ACTIONS(3147), - [anon_sym_UR_DQUOTE] = ACTIONS(3147), - [anon_sym_u8R_DQUOTE] = ACTIONS(3147), - [anon_sym_co_await] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_requires] = ACTIONS(3145), - [sym_this] = ACTIONS(3145), - }, - [STATE(811)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_include_token1] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token2] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym___cdecl] = ACTIONS(3149), - [anon_sym___clrcall] = ACTIONS(3149), - [anon_sym___stdcall] = ACTIONS(3149), - [anon_sym___fastcall] = ACTIONS(3149), - [anon_sym___thiscall] = ACTIONS(3149), - [anon_sym___vectorcall] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_switch] = ACTIONS(3149), - [anon_sym_case] = ACTIONS(3149), - [anon_sym_default] = ACTIONS(3149), - [anon_sym_while] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym___try] = ACTIONS(3149), - [anon_sym___leave] = ACTIONS(3149), - [anon_sym_not] = ACTIONS(3149), - [anon_sym_compl] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3149), - [anon_sym___alignof__] = ACTIONS(3149), - [anon_sym___alignof] = ACTIONS(3149), - [anon_sym__alignof] = ACTIONS(3149), - [anon_sym_alignof] = ACTIONS(3149), - [anon_sym__Alignof] = ACTIONS(3149), - [anon_sym_offsetof] = ACTIONS(3149), - [anon_sym__Generic] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym___asm__] = ACTIONS(3149), - [anon_sym___asm] = ACTIONS(3149), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_L_SQUOTE] = ACTIONS(3151), - [anon_sym_u_SQUOTE] = ACTIONS(3151), - [anon_sym_U_SQUOTE] = ACTIONS(3151), - [anon_sym_u8_SQUOTE] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_L_DQUOTE] = ACTIONS(3151), - [anon_sym_u_DQUOTE] = ACTIONS(3151), - [anon_sym_U_DQUOTE] = ACTIONS(3151), - [anon_sym_u8_DQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [anon_sym_NULL] = ACTIONS(3149), - [anon_sym_nullptr] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_try] = ACTIONS(3149), - [anon_sym_delete] = ACTIONS(3149), - [anon_sym_throw] = ACTIONS(3149), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), - [anon_sym_concept] = ACTIONS(3149), - [anon_sym_co_return] = ACTIONS(3149), - [anon_sym_co_yield] = ACTIONS(3149), - [anon_sym_R_DQUOTE] = ACTIONS(3151), - [anon_sym_LR_DQUOTE] = ACTIONS(3151), - [anon_sym_uR_DQUOTE] = ACTIONS(3151), - [anon_sym_UR_DQUOTE] = ACTIONS(3151), - [anon_sym_u8R_DQUOTE] = ACTIONS(3151), - [anon_sym_co_await] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_requires] = ACTIONS(3149), - [sym_this] = ACTIONS(3149), - }, - [STATE(812)] = { - [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_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_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), - [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_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_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), - }, - [STATE(813)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_include_token1] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token2] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym___cdecl] = ACTIONS(3238), - [anon_sym___clrcall] = ACTIONS(3238), - [anon_sym___stdcall] = ACTIONS(3238), - [anon_sym___fastcall] = ACTIONS(3238), - [anon_sym___thiscall] = ACTIONS(3238), - [anon_sym___vectorcall] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_goto] = ACTIONS(3238), - [anon_sym___try] = ACTIONS(3238), - [anon_sym___leave] = ACTIONS(3238), - [anon_sym_not] = ACTIONS(3238), - [anon_sym_compl] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym___alignof__] = ACTIONS(3238), - [anon_sym___alignof] = ACTIONS(3238), - [anon_sym__alignof] = ACTIONS(3238), - [anon_sym_alignof] = ACTIONS(3238), - [anon_sym__Alignof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [anon_sym__Generic] = ACTIONS(3238), - [anon_sym_asm] = ACTIONS(3238), - [anon_sym___asm__] = ACTIONS(3238), - [anon_sym___asm] = ACTIONS(3238), - [sym_number_literal] = ACTIONS(3240), - [anon_sym_L_SQUOTE] = ACTIONS(3240), - [anon_sym_u_SQUOTE] = ACTIONS(3240), - [anon_sym_U_SQUOTE] = ACTIONS(3240), - [anon_sym_u8_SQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_L_DQUOTE] = ACTIONS(3240), - [anon_sym_u_DQUOTE] = ACTIONS(3240), - [anon_sym_U_DQUOTE] = ACTIONS(3240), - [anon_sym_u8_DQUOTE] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [anon_sym_NULL] = ACTIONS(3238), - [anon_sym_nullptr] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), - [anon_sym_concept] = ACTIONS(3238), - [anon_sym_co_return] = ACTIONS(3238), - [anon_sym_co_yield] = ACTIONS(3238), - [anon_sym_R_DQUOTE] = ACTIONS(3240), - [anon_sym_LR_DQUOTE] = ACTIONS(3240), - [anon_sym_uR_DQUOTE] = ACTIONS(3240), - [anon_sym_UR_DQUOTE] = ACTIONS(3240), - [anon_sym_u8R_DQUOTE] = ACTIONS(3240), - [anon_sym_co_await] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_requires] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - }, - [STATE(814)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(815)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_include_token1] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym___cdecl] = ACTIONS(2919), - [anon_sym___clrcall] = ACTIONS(2919), - [anon_sym___stdcall] = ACTIONS(2919), - [anon_sym___fastcall] = ACTIONS(2919), - [anon_sym___thiscall] = ACTIONS(2919), - [anon_sym___vectorcall] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym___try] = ACTIONS(2919), - [anon_sym___leave] = ACTIONS(2919), - [anon_sym_not] = ACTIONS(2919), - [anon_sym_compl] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_sizeof] = ACTIONS(2919), - [anon_sym___alignof__] = ACTIONS(2919), - [anon_sym___alignof] = ACTIONS(2919), - [anon_sym__alignof] = ACTIONS(2919), - [anon_sym_alignof] = ACTIONS(2919), - [anon_sym__Alignof] = ACTIONS(2919), - [anon_sym_offsetof] = ACTIONS(2919), - [anon_sym__Generic] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym___asm__] = ACTIONS(2919), - [anon_sym___asm] = ACTIONS(2919), - [sym_number_literal] = ACTIONS(2921), - [anon_sym_L_SQUOTE] = ACTIONS(2921), - [anon_sym_u_SQUOTE] = ACTIONS(2921), - [anon_sym_U_SQUOTE] = ACTIONS(2921), - [anon_sym_u8_SQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_L_DQUOTE] = ACTIONS(2921), - [anon_sym_u_DQUOTE] = ACTIONS(2921), - [anon_sym_U_DQUOTE] = ACTIONS(2921), - [anon_sym_u8_DQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [anon_sym_NULL] = ACTIONS(2919), - [anon_sym_nullptr] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), - [anon_sym_concept] = ACTIONS(2919), - [anon_sym_co_return] = ACTIONS(2919), - [anon_sym_co_yield] = ACTIONS(2919), - [anon_sym_R_DQUOTE] = ACTIONS(2921), - [anon_sym_LR_DQUOTE] = ACTIONS(2921), - [anon_sym_uR_DQUOTE] = ACTIONS(2921), - [anon_sym_UR_DQUOTE] = ACTIONS(2921), - [anon_sym_u8R_DQUOTE] = ACTIONS(2921), - [anon_sym_co_await] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_requires] = ACTIONS(2919), - [sym_this] = ACTIONS(2919), - }, - [STATE(816)] = { - [sym_identifier] = ACTIONS(3059), - [aux_sym_preproc_include_token1] = ACTIONS(3059), - [aux_sym_preproc_def_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token1] = ACTIONS(3059), - [aux_sym_preproc_if_token2] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), - [sym_preproc_directive] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym___extension__] = ACTIONS(3059), + [anon_sym___extension__] = ACTIONS(3057), [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(3059), - [anon_sym_extern] = ACTIONS(3059), - [anon_sym___attribute__] = ACTIONS(3059), - [anon_sym___attribute] = ACTIONS(3059), - [anon_sym_using] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3061), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), - [anon_sym___declspec] = ACTIONS(3059), - [anon_sym___based] = ACTIONS(3059), - [anon_sym___cdecl] = ACTIONS(3059), - [anon_sym___clrcall] = ACTIONS(3059), - [anon_sym___stdcall] = ACTIONS(3059), - [anon_sym___fastcall] = ACTIONS(3059), - [anon_sym___thiscall] = ACTIONS(3059), - [anon_sym___vectorcall] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_signed] = ACTIONS(3059), - [anon_sym_unsigned] = ACTIONS(3059), - [anon_sym_long] = ACTIONS(3059), - [anon_sym_short] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_register] = ACTIONS(3059), - [anon_sym_inline] = ACTIONS(3059), - [anon_sym___inline] = ACTIONS(3059), - [anon_sym___inline__] = ACTIONS(3059), - [anon_sym___forceinline] = ACTIONS(3059), - [anon_sym_thread_local] = ACTIONS(3059), - [anon_sym___thread] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_constexpr] = ACTIONS(3059), - [anon_sym_volatile] = ACTIONS(3059), - [anon_sym_restrict] = ACTIONS(3059), - [anon_sym___restrict__] = ACTIONS(3059), - [anon_sym__Atomic] = ACTIONS(3059), - [anon_sym__Noreturn] = ACTIONS(3059), - [anon_sym_noreturn] = ACTIONS(3059), - [anon_sym__Nonnull] = ACTIONS(3059), - [anon_sym_mutable] = ACTIONS(3059), - [anon_sym_constinit] = ACTIONS(3059), - [anon_sym_consteval] = ACTIONS(3059), - [anon_sym_alignas] = ACTIONS(3059), - [anon_sym__Alignas] = ACTIONS(3059), - [sym_primitive_type] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_switch] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_default] = ACTIONS(3059), - [anon_sym_while] = ACTIONS(3059), - [anon_sym_do] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym___try] = ACTIONS(3059), - [anon_sym___leave] = ACTIONS(3059), - [anon_sym_not] = ACTIONS(3059), - [anon_sym_compl] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_sizeof] = ACTIONS(3059), - [anon_sym___alignof__] = ACTIONS(3059), - [anon_sym___alignof] = ACTIONS(3059), - [anon_sym__alignof] = ACTIONS(3059), - [anon_sym_alignof] = ACTIONS(3059), - [anon_sym__Alignof] = ACTIONS(3059), - [anon_sym_offsetof] = ACTIONS(3059), - [anon_sym__Generic] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym___asm__] = ACTIONS(3059), - [anon_sym___asm] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_L_SQUOTE] = ACTIONS(3061), - [anon_sym_u_SQUOTE] = ACTIONS(3061), - [anon_sym_U_SQUOTE] = ACTIONS(3061), - [anon_sym_u8_SQUOTE] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(3061), - [anon_sym_L_DQUOTE] = ACTIONS(3061), - [anon_sym_u_DQUOTE] = ACTIONS(3061), - [anon_sym_U_DQUOTE] = ACTIONS(3061), - [anon_sym_u8_DQUOTE] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(3061), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [anon_sym_NULL] = ACTIONS(3059), - [anon_sym_nullptr] = ACTIONS(3059), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3059), - [anon_sym_decltype] = ACTIONS(3059), - [anon_sym_explicit] = ACTIONS(3059), - [anon_sym_typename] = ACTIONS(3059), - [anon_sym_template] = ACTIONS(3059), - [anon_sym_operator] = ACTIONS(3059), - [anon_sym_try] = ACTIONS(3059), - [anon_sym_delete] = ACTIONS(3059), - [anon_sym_throw] = ACTIONS(3059), - [anon_sym_namespace] = ACTIONS(3059), - [anon_sym_static_assert] = ACTIONS(3059), - [anon_sym_concept] = ACTIONS(3059), - [anon_sym_co_return] = ACTIONS(3059), - [anon_sym_co_yield] = ACTIONS(3059), - [anon_sym_R_DQUOTE] = ACTIONS(3061), - [anon_sym_LR_DQUOTE] = ACTIONS(3061), - [anon_sym_uR_DQUOTE] = ACTIONS(3061), - [anon_sym_UR_DQUOTE] = ACTIONS(3061), - [anon_sym_u8R_DQUOTE] = ACTIONS(3061), - [anon_sym_co_await] = ACTIONS(3059), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_requires] = ACTIONS(3059), - [sym_this] = ACTIONS(3059), - }, - [STATE(817)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_include_token1] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym___cdecl] = ACTIONS(2923), - [anon_sym___clrcall] = ACTIONS(2923), - [anon_sym___stdcall] = ACTIONS(2923), - [anon_sym___fastcall] = ACTIONS(2923), - [anon_sym___thiscall] = ACTIONS(2923), - [anon_sym___vectorcall] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym___try] = ACTIONS(2923), - [anon_sym___leave] = ACTIONS(2923), - [anon_sym_not] = ACTIONS(2923), - [anon_sym_compl] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_sizeof] = ACTIONS(2923), - [anon_sym___alignof__] = ACTIONS(2923), - [anon_sym___alignof] = ACTIONS(2923), - [anon_sym__alignof] = ACTIONS(2923), - [anon_sym_alignof] = ACTIONS(2923), - [anon_sym__Alignof] = ACTIONS(2923), - [anon_sym_offsetof] = ACTIONS(2923), - [anon_sym__Generic] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym___asm__] = ACTIONS(2923), - [anon_sym___asm] = ACTIONS(2923), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_L_SQUOTE] = ACTIONS(2925), - [anon_sym_u_SQUOTE] = ACTIONS(2925), - [anon_sym_U_SQUOTE] = ACTIONS(2925), - [anon_sym_u8_SQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_L_DQUOTE] = ACTIONS(2925), - [anon_sym_u_DQUOTE] = ACTIONS(2925), - [anon_sym_U_DQUOTE] = ACTIONS(2925), - [anon_sym_u8_DQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [anon_sym_NULL] = ACTIONS(2923), - [anon_sym_nullptr] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), - [anon_sym_concept] = ACTIONS(2923), - [anon_sym_co_return] = ACTIONS(2923), - [anon_sym_co_yield] = ACTIONS(2923), - [anon_sym_R_DQUOTE] = ACTIONS(2925), - [anon_sym_LR_DQUOTE] = ACTIONS(2925), - [anon_sym_uR_DQUOTE] = ACTIONS(2925), - [anon_sym_UR_DQUOTE] = ACTIONS(2925), - [anon_sym_u8R_DQUOTE] = ACTIONS(2925), - [anon_sym_co_await] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_requires] = ACTIONS(2923), - [sym_this] = ACTIONS(2923), - }, - [STATE(818)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1944), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), - }, - [STATE(819)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3669), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159165,7 +95242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159175,120 +95252,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(820)] = { - [sym_preproc_def] = STATE(821), - [sym_preproc_function_def] = STATE(821), - [sym_preproc_call] = STATE(821), - [sym_preproc_if_in_field_declaration_list] = STATE(821), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(821), - [sym_type_definition] = STATE(821), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(821), - [sym_field_declaration] = STATE(821), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(821), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(821), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(821), - [sym_operator_cast_declaration] = STATE(821), - [sym_constructor_or_destructor_definition] = STATE(821), - [sym_constructor_or_destructor_declaration] = STATE(821), - [sym_friend_declaration] = STATE(821), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(821), - [sym_alias_declaration] = STATE(821), - [sym_static_assert_declaration] = STATE(821), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), + [STATE(287)] = { + [sym_type_qualifier] = STATE(5103), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7417), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6764), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(9768), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_type_parameter_pack_expansion] = STATE(10213), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7816), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4852), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(5103), + [aux_sym_sized_type_specifier_repeat1] = STATE(6549), + [sym_identifier] = ACTIONS(2805), [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3679), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2819), + [anon_sym_unsigned] = ACTIONS(2819), + [anon_sym_long] = ACTIONS(2819), + [anon_sym_short] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), + }, + [STATE(288)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(11118), + [sym_preproc_elif_in_field_declaration_list] = STATE(11118), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11118), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3681), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159298,7 +95534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159308,120 +95544,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(821)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(289)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(11196), + [sym_preproc_elif_in_field_declaration_list] = STATE(11196), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11196), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3683), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159431,7 +95680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159441,253 +95690,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), - }, - [STATE(822)] = { - [sym_preproc_def] = STATE(822), - [sym_preproc_function_def] = STATE(822), - [sym_preproc_call] = STATE(822), - [sym_preproc_if_in_field_declaration_list] = STATE(822), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(822), - [sym_type_definition] = STATE(822), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6400), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(822), - [sym_field_declaration] = STATE(822), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1857), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(822), - [sym_operator_cast] = STATE(7055), - [sym_inline_method_definition] = STATE(822), - [sym__constructor_specifiers] = STATE(1857), - [sym_operator_cast_definition] = STATE(822), - [sym_operator_cast_declaration] = STATE(822), - [sym_constructor_or_destructor_definition] = STATE(822), - [sym_constructor_or_destructor_declaration] = STATE(822), - [sym_friend_declaration] = STATE(822), - [sym_access_specifier] = STATE(8225), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(822), - [sym_alias_declaration] = STATE(822), - [sym_static_assert_declaration] = STATE(822), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7055), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7331), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1857), - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3685), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token2] = ACTIONS(3508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3691), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3697), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3703), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3543), - [anon_sym___attribute__] = ACTIONS(3546), - [anon_sym___attribute] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3555), - [anon_sym___declspec] = ACTIONS(3558), - [anon_sym___based] = ACTIONS(3561), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_static] = ACTIONS(3543), - [anon_sym_register] = ACTIONS(3543), - [anon_sym_inline] = ACTIONS(3543), - [anon_sym___inline] = ACTIONS(3543), - [anon_sym___inline__] = ACTIONS(3543), - [anon_sym___forceinline] = ACTIONS(3543), - [anon_sym_thread_local] = ACTIONS(3543), - [anon_sym___thread] = ACTIONS(3543), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_constexpr] = ACTIONS(3709), - [anon_sym_volatile] = ACTIONS(3570), - [anon_sym_restrict] = ACTIONS(3570), - [anon_sym___restrict__] = ACTIONS(3570), - [anon_sym__Atomic] = ACTIONS(3570), - [anon_sym__Noreturn] = ACTIONS(3570), - [anon_sym_noreturn] = ACTIONS(3570), - [anon_sym__Nonnull] = ACTIONS(3570), - [anon_sym_mutable] = ACTIONS(3570), - [anon_sym_constinit] = ACTIONS(3570), - [anon_sym_consteval] = ACTIONS(3570), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3579), - [anon_sym_enum] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3594), - [anon_sym_decltype] = ACTIONS(3597), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3603), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_friend] = ACTIONS(3715), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_static_assert] = ACTIONS(3718), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(823)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(290)] = { + [sym_preproc_def] = STATE(299), + [sym_preproc_function_def] = STATE(299), + [sym_preproc_call] = STATE(299), + [sym_preproc_if_in_field_declaration_list] = STATE(299), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(299), + [sym_preproc_else_in_field_declaration_list] = STATE(11110), + [sym_preproc_elif_in_field_declaration_list] = STATE(11110), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11110), + [sym_type_definition] = STATE(299), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(299), + [sym_field_declaration] = STATE(299), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(299), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(299), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(299), + [sym_operator_cast_declaration] = STATE(299), + [sym_constructor_or_destructor_definition] = STATE(299), + [sym_constructor_or_destructor_declaration] = STATE(299), + [sym_friend_declaration] = STATE(299), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(299), + [sym_alias_declaration] = STATE(299), + [sym_static_assert_declaration] = STATE(299), + [sym_consteval_block_declaration] = STATE(299), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3721), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159697,7 +95826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159707,120 +95836,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(824)] = { - [sym_preproc_def] = STATE(836), - [sym_preproc_function_def] = STATE(836), - [sym_preproc_call] = STATE(836), - [sym_preproc_if_in_field_declaration_list] = STATE(836), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(836), - [sym_type_definition] = STATE(836), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(836), - [sym_field_declaration] = STATE(836), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(836), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(836), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(836), - [sym_operator_cast_declaration] = STATE(836), - [sym_constructor_or_destructor_definition] = STATE(836), - [sym_constructor_or_destructor_declaration] = STATE(836), - [sym_friend_declaration] = STATE(836), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(836), - [sym_alias_declaration] = STATE(836), - [sym_static_assert_declaration] = STATE(836), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(836), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(291)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(11237), + [sym_preproc_elif_in_field_declaration_list] = STATE(11237), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11237), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3723), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3725), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159830,7 +95972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159840,120 +95982,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(825)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(292)] = { + [sym_preproc_def] = STATE(296), + [sym_preproc_function_def] = STATE(296), + [sym_preproc_call] = STATE(296), + [sym_preproc_if_in_field_declaration_list] = STATE(296), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(296), + [sym_preproc_else_in_field_declaration_list] = STATE(10572), + [sym_preproc_elif_in_field_declaration_list] = STATE(10572), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10572), + [sym_type_definition] = STATE(296), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(296), + [sym_field_declaration] = STATE(296), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(296), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(296), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(296), + [sym_operator_cast_declaration] = STATE(296), + [sym_constructor_or_destructor_definition] = STATE(296), + [sym_constructor_or_destructor_declaration] = STATE(296), + [sym_friend_declaration] = STATE(296), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(296), + [sym_alias_declaration] = STATE(296), + [sym_static_assert_declaration] = STATE(296), + [sym_consteval_block_declaration] = STATE(296), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(296), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3727), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -159963,7 +96118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -159973,120 +96128,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(826)] = { - [sym_preproc_def] = STATE(827), - [sym_preproc_function_def] = STATE(827), - [sym_preproc_call] = STATE(827), - [sym_preproc_if_in_field_declaration_list] = STATE(827), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(827), - [sym_type_definition] = STATE(827), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(827), - [sym_field_declaration] = STATE(827), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(827), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(827), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(827), - [sym_operator_cast_declaration] = STATE(827), - [sym_constructor_or_destructor_definition] = STATE(827), - [sym_constructor_or_destructor_declaration] = STATE(827), - [sym_friend_declaration] = STATE(827), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(827), - [sym_alias_declaration] = STATE(827), - [sym_static_assert_declaration] = STATE(827), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(827), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(293)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(3115), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(294)] = { + [sym_preproc_def] = STATE(291), + [sym_preproc_function_def] = STATE(291), + [sym_preproc_call] = STATE(291), + [sym_preproc_if_in_field_declaration_list] = STATE(291), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), + [sym_preproc_else_in_field_declaration_list] = STATE(10714), + [sym_preproc_elif_in_field_declaration_list] = STATE(10714), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10714), + [sym_type_definition] = STATE(291), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(291), + [sym_field_declaration] = STATE(291), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(291), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(291), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(291), + [sym_operator_cast_declaration] = STATE(291), + [sym_constructor_or_destructor_definition] = STATE(291), + [sym_constructor_or_destructor_declaration] = STATE(291), + [sym_friend_declaration] = STATE(291), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(291), + [sym_alias_declaration] = STATE(291), + [sym_static_assert_declaration] = STATE(291), + [sym_consteval_block_declaration] = STATE(291), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3731), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160096,7 +96410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160106,120 +96420,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(827)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(295)] = { + [sym_preproc_def] = STATE(297), + [sym_preproc_function_def] = STATE(297), + [sym_preproc_call] = STATE(297), + [sym_preproc_if_in_field_declaration_list] = STATE(297), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(297), + [sym_preproc_else_in_field_declaration_list] = STATE(11122), + [sym_preproc_elif_in_field_declaration_list] = STATE(11122), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11122), + [sym_type_definition] = STATE(297), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(297), + [sym_field_declaration] = STATE(297), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(297), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(297), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(297), + [sym_operator_cast_declaration] = STATE(297), + [sym_constructor_or_destructor_definition] = STATE(297), + [sym_constructor_or_destructor_declaration] = STATE(297), + [sym_friend_declaration] = STATE(297), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(297), + [sym_alias_declaration] = STATE(297), + [sym_static_assert_declaration] = STATE(297), + [sym_consteval_block_declaration] = STATE(297), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(297), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3733), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160229,7 +96556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160239,120 +96566,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(828)] = { - [sym_preproc_def] = STATE(831), - [sym_preproc_function_def] = STATE(831), - [sym_preproc_call] = STATE(831), - [sym_preproc_if_in_field_declaration_list] = STATE(831), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(831), - [sym_type_definition] = STATE(831), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(831), - [sym_field_declaration] = STATE(831), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(831), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(831), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(831), - [sym_operator_cast_declaration] = STATE(831), - [sym_constructor_or_destructor_definition] = STATE(831), - [sym_constructor_or_destructor_declaration] = STATE(831), - [sym_friend_declaration] = STATE(831), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(831), - [sym_alias_declaration] = STATE(831), - [sym_static_assert_declaration] = STATE(831), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(831), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(296)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(11124), + [sym_preproc_elif_in_field_declaration_list] = STATE(11124), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11124), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3735), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3737), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160362,7 +96702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160372,120 +96712,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(829)] = { - [sym_preproc_def] = STATE(822), - [sym_preproc_function_def] = STATE(822), - [sym_preproc_call] = STATE(822), - [sym_preproc_if_in_field_declaration_list] = STATE(822), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(822), - [sym_type_definition] = STATE(822), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6400), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(822), - [sym_field_declaration] = STATE(822), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1857), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(822), - [sym_operator_cast] = STATE(7055), - [sym_inline_method_definition] = STATE(822), - [sym__constructor_specifiers] = STATE(1857), - [sym_operator_cast_definition] = STATE(822), - [sym_operator_cast_declaration] = STATE(822), - [sym_constructor_or_destructor_definition] = STATE(822), - [sym_constructor_or_destructor_declaration] = STATE(822), - [sym_friend_declaration] = STATE(822), - [sym_access_specifier] = STATE(8225), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(822), - [sym_alias_declaration] = STATE(822), - [sym_static_assert_declaration] = STATE(822), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7055), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7331), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1857), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3739), - [aux_sym_preproc_if_token1] = ACTIONS(3741), - [aux_sym_preproc_if_token2] = ACTIONS(3743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3745), - [sym_preproc_directive] = ACTIONS(3747), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(297)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(10532), + [sym_preproc_elif_in_field_declaration_list] = STATE(10532), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10532), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym___extension__] = ACTIONS(3751), - [anon_sym_typedef] = ACTIONS(3753), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3755), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160495,7 +96848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3757), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160505,120 +96858,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3759), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3761), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3763), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(830)] = { - [sym_preproc_def] = STATE(829), - [sym_preproc_function_def] = STATE(829), - [sym_preproc_call] = STATE(829), - [sym_preproc_if_in_field_declaration_list] = STATE(829), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(829), - [sym_type_definition] = STATE(829), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5753), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6400), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(829), - [sym_field_declaration] = STATE(829), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1857), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(829), - [sym_operator_cast] = STATE(7055), - [sym_inline_method_definition] = STATE(829), - [sym__constructor_specifiers] = STATE(1857), - [sym_operator_cast_definition] = STATE(829), - [sym_operator_cast_declaration] = STATE(829), - [sym_constructor_or_destructor_definition] = STATE(829), - [sym_constructor_or_destructor_declaration] = STATE(829), - [sym_friend_declaration] = STATE(829), - [sym_access_specifier] = STATE(8225), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(829), - [sym_alias_declaration] = STATE(829), - [sym_static_assert_declaration] = STATE(829), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7055), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(829), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7331), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1857), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3739), - [aux_sym_preproc_if_token1] = ACTIONS(3741), - [aux_sym_preproc_if_token2] = ACTIONS(3765), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3745), - [sym_preproc_directive] = ACTIONS(3747), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(298)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2799), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(299)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(11312), + [sym_preproc_elif_in_field_declaration_list] = STATE(11312), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11312), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3767), - [anon_sym___extension__] = ACTIONS(3751), - [anon_sym_typedef] = ACTIONS(3753), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3755), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160628,7 +97140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3757), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160638,120 +97150,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3759), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3761), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3763), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(831)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(300)] = { + [sym_preproc_def] = STATE(307), + [sym_preproc_function_def] = STATE(307), + [sym_preproc_call] = STATE(307), + [sym_preproc_if_in_field_declaration_list] = STATE(307), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(307), + [sym_preproc_else_in_field_declaration_list] = STATE(11379), + [sym_preproc_elif_in_field_declaration_list] = STATE(11379), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11379), + [sym_type_definition] = STATE(307), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(307), + [sym_field_declaration] = STATE(307), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(307), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(307), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(307), + [sym_operator_cast_declaration] = STATE(307), + [sym_constructor_or_destructor_definition] = STATE(307), + [sym_constructor_or_destructor_declaration] = STATE(307), + [sym_friend_declaration] = STATE(307), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(307), + [sym_alias_declaration] = STATE(307), + [sym_static_assert_declaration] = STATE(307), + [sym_consteval_block_declaration] = STATE(307), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3769), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160761,7 +97286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160771,120 +97296,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(832)] = { - [sym_preproc_def] = STATE(823), - [sym_preproc_function_def] = STATE(823), - [sym_preproc_call] = STATE(823), - [sym_preproc_if_in_field_declaration_list] = STATE(823), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(823), - [sym_type_definition] = STATE(823), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(823), - [sym_field_declaration] = STATE(823), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(823), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(823), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(823), - [sym_operator_cast_declaration] = STATE(823), - [sym_constructor_or_destructor_definition] = STATE(823), - [sym_constructor_or_destructor_declaration] = STATE(823), - [sym_friend_declaration] = STATE(823), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(823), - [sym_alias_declaration] = STATE(823), - [sym_static_assert_declaration] = STATE(823), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(823), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(301)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(3135), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(302)] = { + [sym_catch_clause] = STATE(302), + [aux_sym_constructor_try_statement_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token2] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [aux_sym_preproc_else_token1] = ACTIONS(3137), + [aux_sym_preproc_elif_token1] = ACTIONS(3137), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym___cdecl] = ACTIONS(3137), + [anon_sym___clrcall] = ACTIONS(3137), + [anon_sym___stdcall] = ACTIONS(3137), + [anon_sym___fastcall] = ACTIONS(3137), + [anon_sym___thiscall] = ACTIONS(3137), + [anon_sym___vectorcall] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym___try] = ACTIONS(3137), + [anon_sym___leave] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_compl] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym___alignof__] = ACTIONS(3137), + [anon_sym___alignof] = ACTIONS(3137), + [anon_sym__alignof] = ACTIONS(3137), + [anon_sym_alignof] = ACTIONS(3137), + [anon_sym__Alignof] = ACTIONS(3137), + [anon_sym_offsetof] = ACTIONS(3137), + [anon_sym__Generic] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym___asm__] = ACTIONS(3137), + [anon_sym___asm] = ACTIONS(3137), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_L_SQUOTE] = ACTIONS(3139), + [anon_sym_u_SQUOTE] = ACTIONS(3139), + [anon_sym_U_SQUOTE] = ACTIONS(3139), + [anon_sym_u8_SQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_L_DQUOTE] = ACTIONS(3139), + [anon_sym_u_DQUOTE] = ACTIONS(3139), + [anon_sym_U_DQUOTE] = ACTIONS(3139), + [anon_sym_u8_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [anon_sym_NULL] = ACTIONS(3137), + [anon_sym_nullptr] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_concept] = ACTIONS(3137), + [anon_sym_co_return] = ACTIONS(3137), + [anon_sym_co_yield] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3141), + [anon_sym_R_DQUOTE] = ACTIONS(3139), + [anon_sym_LR_DQUOTE] = ACTIONS(3139), + [anon_sym_uR_DQUOTE] = ACTIONS(3139), + [anon_sym_UR_DQUOTE] = ACTIONS(3139), + [anon_sym_u8R_DQUOTE] = ACTIONS(3139), + [anon_sym_co_await] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_requires] = ACTIONS(3137), + [anon_sym_CARET_CARET] = ACTIONS(3139), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [sym_this] = ACTIONS(3137), + }, + [STATE(303)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2766), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(304)] = { + [sym_preproc_def] = STATE(284), + [sym_preproc_function_def] = STATE(284), + [sym_preproc_call] = STATE(284), + [sym_preproc_if_in_field_declaration_list] = STATE(284), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(284), + [sym_preproc_else_in_field_declaration_list] = STATE(10743), + [sym_preproc_elif_in_field_declaration_list] = STATE(10743), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10743), + [sym_type_definition] = STATE(284), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(284), + [sym_field_declaration] = STATE(284), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(284), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(284), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(284), + [sym_operator_cast_declaration] = STATE(284), + [sym_constructor_or_destructor_definition] = STATE(284), + [sym_constructor_or_destructor_declaration] = STATE(284), + [sym_friend_declaration] = STATE(284), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(284), + [sym_alias_declaration] = STATE(284), + [sym_static_assert_declaration] = STATE(284), + [sym_consteval_block_declaration] = STATE(284), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(284), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3771), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3773), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160894,7 +97870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160904,120 +97880,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(833)] = { - [sym_preproc_def] = STATE(825), - [sym_preproc_function_def] = STATE(825), - [sym_preproc_call] = STATE(825), - [sym_preproc_if_in_field_declaration_list] = STATE(825), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(825), - [sym_type_definition] = STATE(825), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(825), - [sym_field_declaration] = STATE(825), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(825), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(825), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(825), - [sym_operator_cast_declaration] = STATE(825), - [sym_constructor_or_destructor_definition] = STATE(825), - [sym_constructor_or_destructor_declaration] = STATE(825), - [sym_friend_declaration] = STATE(825), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(825), - [sym_alias_declaration] = STATE(825), - [sym_static_assert_declaration] = STATE(825), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), + [STATE(305)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2791), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(306)] = { + [sym_catch_clause] = STATE(302), + [aux_sym_constructor_try_statement_repeat1] = STATE(302), + [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_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_else] = 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_typename] = ACTIONS(3148), + [anon_sym_asm] = 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_explicit] = 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_static_assert] = ACTIONS(3148), + [anon_sym_concept] = ACTIONS(3148), + [anon_sym_co_return] = ACTIONS(3148), + [anon_sym_co_yield] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(3152), + [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), + [anon_sym_CARET_CARET] = ACTIONS(3150), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [sym_this] = ACTIONS(3148), + }, + [STATE(307)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_preproc_else_in_field_declaration_list] = STATE(10780), + [sym_preproc_elif_in_field_declaration_list] = STATE(10780), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10780), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(3031), + [aux_sym_preproc_if_token1] = ACTIONS(3033), + [aux_sym_preproc_if_token2] = ACTIONS(3154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), + [aux_sym_preproc_else_token1] = ACTIONS(3039), + [aux_sym_preproc_elif_token1] = ACTIONS(3041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), + [sym_preproc_directive] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3775), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym___extension__] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3059), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3777), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -161027,7 +98308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161037,130 +98318,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_consteval] = ACTIONS(3069), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(834)] = { - [sym_preproc_def] = STATE(835), - [sym_preproc_function_def] = STATE(835), - [sym_preproc_call] = STATE(835), - [sym_preproc_if_in_field_declaration_list] = STATE(835), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(835), - [sym_type_definition] = STATE(835), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(835), - [sym_field_declaration] = STATE(835), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(835), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(835), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(835), - [sym_operator_cast_declaration] = STATE(835), - [sym_constructor_or_destructor_definition] = STATE(835), - [sym_constructor_or_destructor_declaration] = STATE(835), - [sym_friend_declaration] = STATE(835), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(835), - [sym_alias_declaration] = STATE(835), - [sym_static_assert_declaration] = STATE(835), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(835), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3779), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3781), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(308)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), + }, + [STATE(309)] = { + [sym_catch_clause] = STATE(309), + [aux_sym_constructor_try_statement_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym___cdecl] = ACTIONS(3137), + [anon_sym___clrcall] = ACTIONS(3137), + [anon_sym___stdcall] = ACTIONS(3137), + [anon_sym___fastcall] = ACTIONS(3137), + [anon_sym___thiscall] = ACTIONS(3137), + [anon_sym___vectorcall] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym___try] = ACTIONS(3137), + [anon_sym___leave] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_compl] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym___alignof__] = ACTIONS(3137), + [anon_sym___alignof] = ACTIONS(3137), + [anon_sym__alignof] = ACTIONS(3137), + [anon_sym_alignof] = ACTIONS(3137), + [anon_sym__Alignof] = ACTIONS(3137), + [anon_sym_offsetof] = ACTIONS(3137), + [anon_sym__Generic] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym___asm__] = ACTIONS(3137), + [anon_sym___asm] = ACTIONS(3137), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_L_SQUOTE] = ACTIONS(3139), + [anon_sym_u_SQUOTE] = ACTIONS(3139), + [anon_sym_U_SQUOTE] = ACTIONS(3139), + [anon_sym_u8_SQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_L_DQUOTE] = ACTIONS(3139), + [anon_sym_u_DQUOTE] = ACTIONS(3139), + [anon_sym_U_DQUOTE] = ACTIONS(3139), + [anon_sym_u8_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [anon_sym_NULL] = ACTIONS(3137), + [anon_sym_nullptr] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_export] = ACTIONS(3137), + [anon_sym_module] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_concept] = ACTIONS(3137), + [anon_sym_co_return] = ACTIONS(3137), + [anon_sym_co_yield] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3139), + [anon_sym_LR_DQUOTE] = ACTIONS(3139), + [anon_sym_uR_DQUOTE] = ACTIONS(3139), + [anon_sym_UR_DQUOTE] = ACTIONS(3139), + [anon_sym_u8R_DQUOTE] = ACTIONS(3139), + [anon_sym_co_await] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_requires] = ACTIONS(3137), + [anon_sym_CARET_CARET] = ACTIONS(3139), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [sym_this] = ACTIONS(3137), + }, + [STATE(310)] = { + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2160), + [sym_sized_type_specifier] = STATE(2089), + [sym_enum_specifier] = STATE(2089), + [sym_struct_specifier] = STATE(2089), + [sym_union_specifier] = STATE(2089), + [sym_expression] = STATE(5308), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_type_descriptor] = STATE(3827), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_placeholder_type_specifier] = STATE(2089), + [sym_decltype_auto] = STATE(2070), + [sym_decltype] = STATE(2063), + [sym_class_specifier] = STATE(2089), + [sym__class_name] = STATE(10270), + [sym_dependent_type] = STATE(2089), + [sym_template_type] = STATE(2066), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7819), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(2126), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(2155), + [sym__splice_specialization_specifier] = STATE(2026), + [sym_splice_type_specifier] = STATE(2127), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161171,129 +98720,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(835)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3783), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(311)] = { + [sym_type_qualifier] = STATE(5122), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2296), + [sym_sized_type_specifier] = STATE(2926), + [sym_enum_specifier] = STATE(2926), + [sym_struct_specifier] = STATE(2926), + [sym_union_specifier] = STATE(2926), + [sym_expression] = STATE(5053), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_type_descriptor] = STATE(5469), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_placeholder_type_specifier] = STATE(2926), + [sym_decltype_auto] = STATE(2925), + [sym_decltype] = STATE(2832), + [sym_class_specifier] = STATE(2926), + [sym__class_name] = STATE(10312), + [sym_dependent_type] = STATE(2926), + [sym_template_type] = STATE(2815), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7804), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(2868), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(2988), + [sym__splice_specialization_specifier] = STATE(2514), + [sym_splice_type_specifier] = STATE(2869), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [aux_sym__type_definition_type_repeat1] = STATE(5122), + [aux_sym_sized_type_specifier_repeat1] = STATE(2119), + [sym_identifier] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3193), + [anon_sym_unsigned] = ACTIONS(3193), + [anon_sym_long] = ACTIONS(3193), + [anon_sym_short] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161304,129 +98865,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3209), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(836)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(312)] = { + [sym_type_qualifier] = STATE(4931), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2262), + [sym_sized_type_specifier] = STATE(2089), + [sym_enum_specifier] = STATE(2089), + [sym_struct_specifier] = STATE(2089), + [sym_union_specifier] = STATE(2089), + [sym_expression] = STATE(4768), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_type_descriptor] = STATE(3827), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_placeholder_type_specifier] = STATE(2089), + [sym_decltype_auto] = STATE(2070), + [sym_decltype] = STATE(2063), + [sym_class_specifier] = STATE(2089), + [sym__class_name] = STATE(10270), + [sym_dependent_type] = STATE(2089), + [sym_template_type] = STATE(2066), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7802), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(2126), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(2155), + [sym__splice_specialization_specifier] = STATE(2026), + [sym_splice_type_specifier] = STATE(2127), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(4931), + [aux_sym_sized_type_specifier_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3217), + [anon_sym_COLON_COLON] = ACTIONS(3219), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161437,129 +99010,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(837)] = { - [sym_preproc_def] = STATE(839), - [sym_preproc_function_def] = STATE(839), - [sym_preproc_call] = STATE(839), - [sym_preproc_if_in_field_declaration_list] = STATE(839), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(839), - [sym_type_definition] = STATE(839), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(839), - [sym_field_declaration] = STATE(839), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(839), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(839), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(839), - [sym_operator_cast_declaration] = STATE(839), - [sym_constructor_or_destructor_definition] = STATE(839), - [sym_constructor_or_destructor_declaration] = STATE(839), - [sym_friend_declaration] = STATE(839), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(839), - [sym_alias_declaration] = STATE(839), - [sym_static_assert_declaration] = STATE(839), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(839), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3787), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3789), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(313)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6971), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11516), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161570,129 +99155,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(838)] = { - [sym_preproc_def] = STATE(842), - [sym_preproc_function_def] = STATE(842), - [sym_preproc_call] = STATE(842), - [sym_preproc_if_in_field_declaration_list] = STATE(842), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(842), - [sym_type_definition] = STATE(842), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(842), - [sym_field_declaration] = STATE(842), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(842), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(842), - [sym__constructor_specifiers] = STATE(1861), - [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_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(842), - [sym_alias_declaration] = STATE(842), - [sym_static_assert_declaration] = STATE(842), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(842), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), + [STATE(314)] = { + [sym_type_qualifier] = STATE(5096), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2380), + [sym_sized_type_specifier] = STATE(3140), + [sym_enum_specifier] = STATE(3140), + [sym_struct_specifier] = STATE(3140), + [sym_union_specifier] = STATE(3140), + [sym_expression] = STATE(5194), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_type_descriptor] = STATE(5755), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_placeholder_type_specifier] = STATE(3140), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(2973), + [sym_class_specifier] = STATE(3140), + [sym__class_name] = STATE(10382), + [sym_dependent_type] = STATE(3140), + [sym_template_type] = STATE(2974), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7825), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(2981), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(3251), + [sym__splice_specialization_specifier] = STATE(2567), + [sym_splice_type_specifier] = STATE(3062), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [aux_sym__type_definition_type_repeat1] = STATE(5096), + [aux_sym_sized_type_specifier_repeat1] = STATE(2169), + [sym_identifier] = ACTIONS(3231), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3791), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3793), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [anon_sym___extension__] = ACTIONS(3235), + [anon_sym_COLON_COLON] = ACTIONS(3237), + [anon_sym_signed] = ACTIONS(3239), + [anon_sym_unsigned] = ACTIONS(3239), + [anon_sym_long] = ACTIONS(3239), + [anon_sym_short] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161703,129 +99300,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_struct] = ACTIONS(3247), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(3253), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3255), + [anon_sym_decltype] = ACTIONS(3257), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(839)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(315)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6863), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10697), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161836,262 +99445,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), - }, - [STATE(840)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(3499), - [aux_sym_preproc_def_token1] = ACTIONS(3797), - [aux_sym_preproc_if_token1] = ACTIONS(3800), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3803), - [sym_preproc_directive] = ACTIONS(3806), - [anon_sym_LPAREN2] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3809), - [anon_sym___extension__] = ACTIONS(3812), - [anon_sym_typedef] = ACTIONS(3815), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3543), - [anon_sym___attribute__] = ACTIONS(3546), - [anon_sym___attribute] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3818), - [anon_sym_COLON_COLON] = ACTIONS(3552), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3555), - [anon_sym___declspec] = ACTIONS(3558), - [anon_sym___based] = ACTIONS(3561), - [anon_sym_RBRACE] = ACTIONS(3821), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3567), - [anon_sym_static] = ACTIONS(3543), - [anon_sym_register] = ACTIONS(3543), - [anon_sym_inline] = ACTIONS(3543), - [anon_sym___inline] = ACTIONS(3543), - [anon_sym___inline__] = ACTIONS(3543), - [anon_sym___forceinline] = ACTIONS(3543), - [anon_sym_thread_local] = ACTIONS(3543), - [anon_sym___thread] = ACTIONS(3543), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_constexpr] = ACTIONS(3823), - [anon_sym_volatile] = ACTIONS(3570), - [anon_sym_restrict] = ACTIONS(3570), - [anon_sym___restrict__] = ACTIONS(3570), - [anon_sym__Atomic] = ACTIONS(3570), - [anon_sym__Noreturn] = ACTIONS(3570), - [anon_sym_noreturn] = ACTIONS(3570), - [anon_sym__Nonnull] = ACTIONS(3570), - [anon_sym_mutable] = ACTIONS(3570), - [anon_sym_constinit] = ACTIONS(3570), - [anon_sym_consteval] = ACTIONS(3570), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3579), - [anon_sym_enum] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3585), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3594), - [anon_sym_decltype] = ACTIONS(3597), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3603), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_template] = ACTIONS(3826), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_friend] = ACTIONS(3829), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_static_assert] = ACTIONS(3832), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(841)] = { - [sym_preproc_def] = STATE(819), - [sym_preproc_function_def] = STATE(819), - [sym_preproc_call] = STATE(819), - [sym_preproc_if_in_field_declaration_list] = STATE(819), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(819), - [sym_type_definition] = STATE(819), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(819), - [sym_field_declaration] = STATE(819), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(819), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(819), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(819), - [sym_operator_cast_declaration] = STATE(819), - [sym_constructor_or_destructor_definition] = STATE(819), - [sym_constructor_or_destructor_declaration] = STATE(819), - [sym_friend_declaration] = STATE(819), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(819), - [sym_alias_declaration] = STATE(819), - [sym_static_assert_declaration] = STATE(819), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(819), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3835), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3837), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(316)] = { + [sym_type_qualifier] = STATE(4934), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2138), + [sym_sized_type_specifier] = STATE(2089), + [sym_enum_specifier] = STATE(2089), + [sym_struct_specifier] = STATE(2089), + [sym_union_specifier] = STATE(2089), + [sym_expression] = STATE(4321), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_type_descriptor] = STATE(3827), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_placeholder_type_specifier] = STATE(2089), + [sym_decltype_auto] = STATE(2070), + [sym_decltype] = STATE(2063), + [sym_class_specifier] = STATE(2089), + [sym__class_name] = STATE(10270), + [sym_dependent_type] = STATE(2089), + [sym_template_type] = STATE(2066), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7802), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(2126), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(2155), + [sym__splice_specialization_specifier] = STATE(2026), + [sym_splice_type_specifier] = STATE(2127), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(4934), + [aux_sym_sized_type_specifier_repeat1] = STATE(1988), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(3265), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym_signed] = ACTIONS(3269), + [anon_sym_unsigned] = ACTIONS(3269), + [anon_sym_long] = ACTIONS(3269), + [anon_sym_short] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162102,129 +99590,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(3277), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(842)] = { - [sym_preproc_def] = STATE(840), - [sym_preproc_function_def] = STATE(840), - [sym_preproc_call] = STATE(840), - [sym_preproc_if_in_field_declaration_list] = STATE(840), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), - [sym_type_definition] = STATE(840), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(5777), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3023), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__field_declaration_list_item] = STATE(840), - [sym_field_declaration] = STATE(840), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(840), - [sym_operator_cast] = STATE(7004), - [sym_inline_method_definition] = STATE(840), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(840), - [sym_operator_cast_declaration] = STATE(840), - [sym_constructor_or_destructor_definition] = STATE(840), - [sym_constructor_or_destructor_declaration] = STATE(840), - [sym_friend_declaration] = STATE(840), - [sym_access_specifier] = STATE(8981), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_using_declaration] = STATE(840), - [sym_alias_declaration] = STATE(840), - [sym_static_assert_declaration] = STATE(840), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5643), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), - [aux_sym__declaration_specifiers_repeat1] = STATE(2074), - [aux_sym_attributed_declarator_repeat1] = STATE(7167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(3653), - [aux_sym_preproc_if_token1] = ACTIONS(3655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3659), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(3661), - [anon_sym___extension__] = ACTIONS(3663), - [anon_sym_typedef] = ACTIONS(3665), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3667), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3839), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(317)] = { + [sym_type_qualifier] = STATE(5150), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3707), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6442), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(5892), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7860), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4005), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [aux_sym__type_definition_type_repeat1] = STATE(5150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3279), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3287), + [anon_sym_COLON_COLON] = ACTIONS(3289), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162235,875 +99735,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_static_assert] = ACTIONS(3677), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3303), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(843)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(25), + [STATE(318)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6828), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10541), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(1946), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(844)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym___attribute__] = ACTIONS(1944), - [anon_sym___attribute] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(845)] = { - [sym_expression] = STATE(4608), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(3869), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(846)] = { - [sym_expression] = STATE(4550), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_initializer_list] = STATE(4847), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1944), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(1946), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(847)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_LT_EQ] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1946), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_LT_EQ_GT] = ACTIONS(1946), - [anon_sym_or] = ACTIONS(1944), - [anon_sym_and] = ACTIONS(1944), - [anon_sym_bitor] = ACTIONS(1944), - [anon_sym_xor] = ACTIONS(1944), - [anon_sym_bitand] = ACTIONS(1944), - [anon_sym_not_eq] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_DOT_STAR] = ACTIONS(1946), - [anon_sym_DASH_GT] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(848)] = { - [sym_expression] = STATE(4792), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3909), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3909), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(3909), - [anon_sym_BANG_EQ] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_GT_EQ] = ACTIONS(3909), - [anon_sym_LT_EQ] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3909), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(3909), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_QMARK] = ACTIONS(3909), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_LT_EQ_GT] = ACTIONS(3909), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_bitor] = ACTIONS(3913), - [anon_sym_xor] = ACTIONS(3913), - [anon_sym_bitand] = ACTIONS(3913), - [anon_sym_not_eq] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_DOT_STAR] = ACTIONS(3909), - [anon_sym_DASH_GT] = ACTIONS(3909), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(849)] = { - [sym__declaration_modifiers] = STATE(2028), - [sym__declaration_specifiers] = STATE(6492), - [sym_attribute_specifier] = STATE(2028), - [sym_attribute_declaration] = STATE(2028), - [sym_ms_declspec_modifier] = STATE(2028), - [sym_storage_class_specifier] = STATE(2028), - [sym_type_qualifier] = STATE(2028), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4239), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3484), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6813), - [sym_qualified_type_identifier] = STATE(3590), - [aux_sym__declaration_specifiers_repeat1] = STATE(2028), - [aux_sym_sized_type_specifier_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(3917), - [anon_sym_COMMA] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3921), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_SLASH] = ACTIONS(3921), - [anon_sym_PERCENT] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_PIPE] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3921), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3921), - [anon_sym_LT] = ACTIONS(3921), - [anon_sym_LT_LT] = ACTIONS(3921), - [anon_sym_GT_GT] = ACTIONS(3921), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(3923), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3927), - [anon_sym_unsigned] = ACTIONS(3927), - [anon_sym_long] = ACTIONS(3927), - [anon_sym_short] = ACTIONS(3927), - [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(319)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6821), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11348), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -163116,119 +100025,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3929), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3937), - [anon_sym_STAR_EQ] = ACTIONS(3919), - [anon_sym_SLASH_EQ] = ACTIONS(3919), - [anon_sym_PERCENT_EQ] = ACTIONS(3919), - [anon_sym_PLUS_EQ] = ACTIONS(3919), - [anon_sym_DASH_EQ] = ACTIONS(3919), - [anon_sym_LT_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_GT_EQ] = ACTIONS(3919), - [anon_sym_AMP_EQ] = ACTIONS(3919), - [anon_sym_CARET_EQ] = ACTIONS(3919), - [anon_sym_PIPE_EQ] = ACTIONS(3919), - [anon_sym_and_eq] = ACTIONS(3921), - [anon_sym_or_eq] = ACTIONS(3921), - [anon_sym_xor_eq] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_compl] = ACTIONS(3921), - [anon_sym_LT_EQ_GT] = ACTIONS(3919), - [anon_sym_or] = ACTIONS(3921), - [anon_sym_and] = ACTIONS(3921), - [anon_sym_bitor] = ACTIONS(3921), - [anon_sym_xor] = ACTIONS(3921), - [anon_sym_bitand] = ACTIONS(3921), - [anon_sym_not_eq] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3919), - [anon_sym_PLUS_PLUS] = ACTIONS(3919), - [anon_sym_DASH_GT] = ACTIONS(3921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3941), - [anon_sym_co_await] = ACTIONS(3921), - [anon_sym_new] = ACTIONS(3941), - [anon_sym_DASH_GT_STAR] = ACTIONS(3919), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3919), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3919), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(850)] = { - [sym__declaration_modifiers] = STATE(2028), - [sym__declaration_specifiers] = STATE(6492), - [sym_attribute_specifier] = STATE(2028), - [sym_attribute_declaration] = STATE(2028), - [sym_ms_declspec_modifier] = STATE(2028), - [sym_storage_class_specifier] = STATE(2028), - [sym_type_qualifier] = STATE(2028), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4239), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3484), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6813), - [sym_qualified_type_identifier] = STATE(3590), - [aux_sym__declaration_specifiers_repeat1] = STATE(2028), - [aux_sym_sized_type_specifier_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(3917), - [anon_sym_COMMA] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3947), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_STAR] = ACTIONS(3947), - [anon_sym_SLASH] = ACTIONS(3947), - [anon_sym_PERCENT] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_LT_LT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3947), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(3923), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3927), - [anon_sym_unsigned] = ACTIONS(3927), - [anon_sym_long] = ACTIONS(3927), - [anon_sym_short] = ACTIONS(3927), - [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(320)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6885), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11170), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -163241,764 +100170,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3929), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3937), - [anon_sym_STAR_EQ] = ACTIONS(3945), - [anon_sym_SLASH_EQ] = ACTIONS(3945), - [anon_sym_PERCENT_EQ] = ACTIONS(3945), - [anon_sym_PLUS_EQ] = ACTIONS(3945), - [anon_sym_DASH_EQ] = ACTIONS(3945), - [anon_sym_LT_LT_EQ] = ACTIONS(3945), - [anon_sym_GT_GT_EQ] = ACTIONS(3945), - [anon_sym_AMP_EQ] = ACTIONS(3945), - [anon_sym_CARET_EQ] = ACTIONS(3945), - [anon_sym_PIPE_EQ] = ACTIONS(3945), - [anon_sym_and_eq] = ACTIONS(3947), - [anon_sym_or_eq] = ACTIONS(3947), - [anon_sym_xor_eq] = ACTIONS(3947), - [anon_sym_not] = ACTIONS(3947), - [anon_sym_compl] = ACTIONS(3947), - [anon_sym_LT_EQ_GT] = ACTIONS(3945), - [anon_sym_or] = ACTIONS(3947), - [anon_sym_and] = ACTIONS(3947), - [anon_sym_bitor] = ACTIONS(3947), - [anon_sym_xor] = ACTIONS(3947), - [anon_sym_bitand] = ACTIONS(3947), - [anon_sym_not_eq] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3945), - [anon_sym_PLUS_PLUS] = ACTIONS(3945), - [anon_sym_DASH_GT] = ACTIONS(3947), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3949), - [anon_sym_co_await] = ACTIONS(3947), - [anon_sym_new] = ACTIONS(3949), - [anon_sym_DASH_GT_STAR] = ACTIONS(3945), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3945), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3945), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3951), - }, - [STATE(851)] = { - [sym_identifier] = ACTIONS(3953), - [anon_sym_COMMA] = ACTIONS(3955), - [anon_sym_RPAREN] = ACTIONS(3955), - [anon_sym_LPAREN2] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_TILDE] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3953), - [anon_sym_SEMI] = ACTIONS(3955), - [anon_sym___extension__] = ACTIONS(3953), - [anon_sym_virtual] = ACTIONS(3953), - [anon_sym_extern] = ACTIONS(3953), - [anon_sym___attribute__] = ACTIONS(3953), - [anon_sym___attribute] = ACTIONS(3953), - [anon_sym_using] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3955), - [anon_sym___declspec] = ACTIONS(3953), - [anon_sym___based] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3955), - [anon_sym_signed] = ACTIONS(3953), - [anon_sym_unsigned] = ACTIONS(3953), - [anon_sym_long] = ACTIONS(3953), - [anon_sym_short] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_static] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_register] = ACTIONS(3953), - [anon_sym_inline] = ACTIONS(3953), - [anon_sym___inline] = ACTIONS(3953), - [anon_sym___inline__] = ACTIONS(3953), - [anon_sym___forceinline] = ACTIONS(3953), - [anon_sym_thread_local] = ACTIONS(3953), - [anon_sym___thread] = ACTIONS(3953), - [anon_sym_const] = ACTIONS(3953), - [anon_sym_constexpr] = ACTIONS(3953), - [anon_sym_volatile] = ACTIONS(3953), - [anon_sym_restrict] = ACTIONS(3953), - [anon_sym___restrict__] = ACTIONS(3953), - [anon_sym__Atomic] = ACTIONS(3953), - [anon_sym__Noreturn] = ACTIONS(3953), - [anon_sym_noreturn] = ACTIONS(3953), - [anon_sym__Nonnull] = ACTIONS(3953), - [anon_sym_mutable] = ACTIONS(3953), - [anon_sym_constinit] = ACTIONS(3953), - [anon_sym_consteval] = ACTIONS(3953), - [anon_sym_alignas] = ACTIONS(3953), - [anon_sym__Alignas] = ACTIONS(3953), - [sym_primitive_type] = ACTIONS(3953), - [anon_sym_enum] = ACTIONS(3953), - [anon_sym_class] = ACTIONS(3953), - [anon_sym_struct] = ACTIONS(3953), - [anon_sym_union] = ACTIONS(3953), - [anon_sym_if] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_case] = ACTIONS(3953), - [anon_sym_default] = ACTIONS(3953), - [anon_sym_while] = ACTIONS(3953), - [anon_sym_do] = ACTIONS(3953), - [anon_sym_for] = ACTIONS(3953), - [anon_sym_return] = ACTIONS(3953), - [anon_sym_break] = ACTIONS(3953), - [anon_sym_continue] = ACTIONS(3953), - [anon_sym_goto] = ACTIONS(3953), - [anon_sym___try] = ACTIONS(3953), - [anon_sym___leave] = ACTIONS(3953), - [anon_sym_not] = ACTIONS(3953), - [anon_sym_compl] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3955), - [anon_sym_sizeof] = ACTIONS(3953), - [anon_sym___alignof__] = ACTIONS(3953), - [anon_sym___alignof] = ACTIONS(3953), - [anon_sym__alignof] = ACTIONS(3953), - [anon_sym_alignof] = ACTIONS(3953), - [anon_sym__Alignof] = ACTIONS(3953), - [anon_sym_offsetof] = ACTIONS(3953), - [anon_sym__Generic] = ACTIONS(3953), - [anon_sym_asm] = ACTIONS(3953), - [anon_sym___asm__] = ACTIONS(3953), - [anon_sym___asm] = ACTIONS(3953), - [sym_number_literal] = ACTIONS(3955), - [anon_sym_L_SQUOTE] = ACTIONS(3955), - [anon_sym_u_SQUOTE] = ACTIONS(3955), - [anon_sym_U_SQUOTE] = ACTIONS(3955), - [anon_sym_u8_SQUOTE] = ACTIONS(3955), - [anon_sym_SQUOTE] = ACTIONS(3955), - [anon_sym_L_DQUOTE] = ACTIONS(3955), - [anon_sym_u_DQUOTE] = ACTIONS(3955), - [anon_sym_U_DQUOTE] = ACTIONS(3955), - [anon_sym_u8_DQUOTE] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3955), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [anon_sym_NULL] = ACTIONS(3953), - [anon_sym_nullptr] = ACTIONS(3953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3953), - [anon_sym_decltype] = ACTIONS(3953), - [anon_sym_explicit] = ACTIONS(3953), - [anon_sym_typename] = ACTIONS(3953), - [anon_sym_template] = ACTIONS(3953), - [anon_sym_GT2] = ACTIONS(3955), - [anon_sym_operator] = ACTIONS(3953), - [anon_sym_try] = ACTIONS(3953), - [anon_sym_delete] = ACTIONS(3953), - [anon_sym_throw] = ACTIONS(3953), - [anon_sym_co_return] = ACTIONS(3953), - [anon_sym_co_yield] = ACTIONS(3953), - [anon_sym_R_DQUOTE] = ACTIONS(3955), - [anon_sym_LR_DQUOTE] = ACTIONS(3955), - [anon_sym_uR_DQUOTE] = ACTIONS(3955), - [anon_sym_UR_DQUOTE] = ACTIONS(3955), - [anon_sym_u8R_DQUOTE] = ACTIONS(3955), - [anon_sym_co_await] = ACTIONS(3953), - [anon_sym_new] = ACTIONS(3953), - [anon_sym_requires] = ACTIONS(3953), - [sym_this] = ACTIONS(3953), - }, - [STATE(852)] = { - [sym_expression] = STATE(3117), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(3957), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(3960), - [anon_sym_COLON_COLON] = ACTIONS(3963), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(3966), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), - }, - [STATE(853)] = { - [sym_expression] = STATE(4641), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3969), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3972), - [anon_sym_COLON_COLON] = ACTIONS(3975), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(3978), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(854)] = { - [sym_identifier] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_LPAREN2] = ACTIONS(3983), - [anon_sym_BANG] = ACTIONS(3983), - [anon_sym_TILDE] = ACTIONS(3983), - [anon_sym_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3981), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3981), - [anon_sym_SEMI] = ACTIONS(3983), - [anon_sym___extension__] = ACTIONS(3981), - [anon_sym_virtual] = ACTIONS(3981), - [anon_sym_extern] = ACTIONS(3981), - [anon_sym___attribute__] = ACTIONS(3981), - [anon_sym___attribute] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(3983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), - [anon_sym___declspec] = ACTIONS(3981), - [anon_sym___based] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_signed] = ACTIONS(3981), - [anon_sym_unsigned] = ACTIONS(3981), - [anon_sym_long] = ACTIONS(3981), - [anon_sym_short] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_static] = ACTIONS(3981), - [anon_sym_RBRACK] = ACTIONS(3983), - [anon_sym_EQ] = ACTIONS(3983), - [anon_sym_register] = ACTIONS(3981), - [anon_sym_inline] = ACTIONS(3981), - [anon_sym___inline] = ACTIONS(3981), - [anon_sym___inline__] = ACTIONS(3981), - [anon_sym___forceinline] = ACTIONS(3981), - [anon_sym_thread_local] = ACTIONS(3981), - [anon_sym___thread] = ACTIONS(3981), - [anon_sym_const] = ACTIONS(3981), - [anon_sym_constexpr] = ACTIONS(3981), - [anon_sym_volatile] = ACTIONS(3981), - [anon_sym_restrict] = ACTIONS(3981), - [anon_sym___restrict__] = ACTIONS(3981), - [anon_sym__Atomic] = ACTIONS(3981), - [anon_sym__Noreturn] = ACTIONS(3981), - [anon_sym_noreturn] = ACTIONS(3981), - [anon_sym__Nonnull] = ACTIONS(3981), - [anon_sym_mutable] = ACTIONS(3981), - [anon_sym_constinit] = ACTIONS(3981), - [anon_sym_consteval] = ACTIONS(3981), - [anon_sym_alignas] = ACTIONS(3981), - [anon_sym__Alignas] = ACTIONS(3981), - [sym_primitive_type] = ACTIONS(3981), - [anon_sym_enum] = ACTIONS(3981), - [anon_sym_class] = ACTIONS(3981), - [anon_sym_struct] = ACTIONS(3981), - [anon_sym_union] = ACTIONS(3981), - [anon_sym_if] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_case] = ACTIONS(3981), - [anon_sym_default] = ACTIONS(3981), - [anon_sym_while] = ACTIONS(3981), - [anon_sym_do] = ACTIONS(3981), - [anon_sym_for] = ACTIONS(3981), - [anon_sym_return] = ACTIONS(3981), - [anon_sym_break] = ACTIONS(3981), - [anon_sym_continue] = ACTIONS(3981), - [anon_sym_goto] = ACTIONS(3981), - [anon_sym___try] = ACTIONS(3981), - [anon_sym___leave] = ACTIONS(3981), - [anon_sym_not] = ACTIONS(3981), - [anon_sym_compl] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_sizeof] = ACTIONS(3981), - [anon_sym___alignof__] = ACTIONS(3981), - [anon_sym___alignof] = ACTIONS(3981), - [anon_sym__alignof] = ACTIONS(3981), - [anon_sym_alignof] = ACTIONS(3981), - [anon_sym__Alignof] = ACTIONS(3981), - [anon_sym_offsetof] = ACTIONS(3981), - [anon_sym__Generic] = ACTIONS(3981), - [anon_sym_asm] = ACTIONS(3981), - [anon_sym___asm__] = ACTIONS(3981), - [anon_sym___asm] = ACTIONS(3981), - [sym_number_literal] = ACTIONS(3983), - [anon_sym_L_SQUOTE] = ACTIONS(3983), - [anon_sym_u_SQUOTE] = ACTIONS(3983), - [anon_sym_U_SQUOTE] = ACTIONS(3983), - [anon_sym_u8_SQUOTE] = ACTIONS(3983), - [anon_sym_SQUOTE] = ACTIONS(3983), - [anon_sym_L_DQUOTE] = ACTIONS(3983), - [anon_sym_u_DQUOTE] = ACTIONS(3983), - [anon_sym_U_DQUOTE] = ACTIONS(3983), - [anon_sym_u8_DQUOTE] = ACTIONS(3983), - [anon_sym_DQUOTE] = ACTIONS(3983), - [sym_true] = ACTIONS(3981), - [sym_false] = ACTIONS(3981), - [anon_sym_NULL] = ACTIONS(3981), - [anon_sym_nullptr] = ACTIONS(3981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3981), - [anon_sym_decltype] = ACTIONS(3981), - [anon_sym_explicit] = ACTIONS(3981), - [anon_sym_typename] = ACTIONS(3981), - [anon_sym_template] = ACTIONS(3981), - [anon_sym_GT2] = ACTIONS(3983), - [anon_sym_operator] = ACTIONS(3981), - [anon_sym_try] = ACTIONS(3981), - [anon_sym_delete] = ACTIONS(3981), - [anon_sym_throw] = ACTIONS(3981), - [anon_sym_co_return] = ACTIONS(3981), - [anon_sym_co_yield] = ACTIONS(3981), - [anon_sym_R_DQUOTE] = ACTIONS(3983), - [anon_sym_LR_DQUOTE] = ACTIONS(3983), - [anon_sym_uR_DQUOTE] = ACTIONS(3983), - [anon_sym_UR_DQUOTE] = ACTIONS(3983), - [anon_sym_u8R_DQUOTE] = ACTIONS(3983), - [anon_sym_co_await] = ACTIONS(3981), - [anon_sym_new] = ACTIONS(3981), - [anon_sym_requires] = ACTIONS(3981), - [sym_this] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(855)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(2549), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(321)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6850), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10823), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(856)] = { - [sym_function_definition] = STATE(2110), - [sym_declaration] = STATE(2110), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4815), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1961), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6400), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2882), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(2110), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1857), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(2110), - [sym_operator_cast] = STATE(7055), - [sym__constructor_specifiers] = STATE(1857), - [sym_operator_cast_definition] = STATE(2110), - [sym_operator_cast_declaration] = STATE(2110), - [sym_constructor_or_destructor_definition] = STATE(2110), - [sym_constructor_or_destructor_declaration] = STATE(2110), - [sym_friend_declaration] = STATE(2110), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(2110), - [sym_concept_definition] = STATE(2110), - [sym_requires_clause] = STATE(879), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7055), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1857), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3987), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(322)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6903), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10582), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3757), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164009,117 +100460,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3759), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3761), - [anon_sym_concept] = ACTIONS(3991), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(857)] = { - [sym_function_definition] = STATE(1780), - [sym_declaration] = STATE(1780), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4813), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1960), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2889), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(1780), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(1780), - [sym_operator_cast] = STATE(7020), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(1780), - [sym_operator_cast_declaration] = STATE(1780), - [sym_constructor_or_destructor_definition] = STATE(1780), - [sym_constructor_or_destructor_declaration] = STATE(1780), - [sym_friend_declaration] = STATE(1780), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(1780), - [sym_concept_definition] = STATE(1780), - [sym_requires_clause] = STATE(891), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3995), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(323)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6836), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10998), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164130,117 +100605,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(3997), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(858)] = { - [sym_function_definition] = STATE(715), - [sym_declaration] = STATE(715), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6389), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(715), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1847), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(715), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1847), - [sym_operator_cast_definition] = STATE(715), - [sym_operator_cast_declaration] = STATE(715), - [sym_constructor_or_destructor_definition] = STATE(715), - [sym_constructor_or_destructor_declaration] = STATE(715), - [sym_friend_declaration] = STATE(715), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(715), - [sym_concept_definition] = STATE(715), - [sym_requires_clause] = STATE(882), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3999), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(324)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6895), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11368), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164251,117 +100750,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4003), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4005), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(859)] = { - [sym_function_definition] = STATE(2064), - [sym_declaration] = STATE(2064), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4812), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1959), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2871), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(2064), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(2064), - [sym_operator_cast] = STATE(7004), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(2064), - [sym_operator_cast_declaration] = STATE(2064), - [sym_constructor_or_destructor_definition] = STATE(2064), - [sym_constructor_or_destructor_declaration] = STATE(2064), - [sym_friend_declaration] = STATE(2064), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(2064), - [sym_concept_definition] = STATE(2064), - [sym_requires_clause] = STATE(871), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4007), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(325)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6931), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11451), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164372,117 +100895,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_concept] = ACTIONS(4009), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(860)] = { - [sym_function_definition] = STATE(395), - [sym_declaration] = STATE(395), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6453), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(395), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1851), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(395), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1851), - [sym_operator_cast_definition] = STATE(395), - [sym_operator_cast_declaration] = STATE(395), - [sym_constructor_or_destructor_definition] = STATE(395), - [sym_constructor_or_destructor_declaration] = STATE(395), - [sym_friend_declaration] = STATE(395), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(395), - [sym_concept_definition] = STATE(395), - [sym_requires_clause] = STATE(866), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1851), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(326)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6957), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10911), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164493,117 +101040,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4017), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(861)] = { - [sym_function_definition] = STATE(763), - [sym_declaration] = STATE(763), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4811), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1958), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6398), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2887), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(763), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1856), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(763), - [sym_operator_cast] = STATE(7063), - [sym__constructor_specifiers] = STATE(1856), - [sym_operator_cast_definition] = STATE(763), - [sym_operator_cast_declaration] = STATE(763), - [sym_constructor_or_destructor_definition] = STATE(763), - [sym_constructor_or_destructor_declaration] = STATE(763), - [sym_friend_declaration] = STATE(763), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(763), - [sym_concept_definition] = STATE(763), - [sym_requires_clause] = STATE(876), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7063), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1856), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(327)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6964), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10633), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164614,117 +101185,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4023), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4025), - [anon_sym_concept] = ACTIONS(1064), - [anon_sym_requires] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(862)] = { - [sym_function_definition] = STATE(601), - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6431), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(601), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(601), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(601), - [sym_operator_cast_declaration] = STATE(601), - [sym_constructor_or_destructor_definition] = STATE(601), - [sym_constructor_or_destructor_declaration] = STATE(601), - [sym_friend_declaration] = STATE(601), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(601), - [sym_concept_definition] = STATE(601), - [sym_requires_clause] = STATE(880), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4027), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(328)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6983), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10835), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164735,473 +101330,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4033), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_requires] = ACTIONS(3993), - }, - [STATE(863)] = { - [sym_type_qualifier] = STATE(888), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4697), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(888), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4039), - [anon_sym_RBRACK] = ACTIONS(4041), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(864)] = { - [sym_identifier] = ACTIONS(4047), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4053), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4055), - [anon_sym_PLUS] = ACTIONS(4055), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4057), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4053), - [anon_sym___extension__] = ACTIONS(4047), - [anon_sym_virtual] = ACTIONS(4059), - [anon_sym_extern] = ACTIONS(4059), - [anon_sym___attribute__] = ACTIONS(4059), - [anon_sym___attribute] = ACTIONS(4059), - [anon_sym_using] = ACTIONS(4055), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4059), - [anon_sym___based] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(4053), - [anon_sym_signed] = ACTIONS(4059), - [anon_sym_unsigned] = ACTIONS(4059), - [anon_sym_long] = ACTIONS(4059), - [anon_sym_short] = ACTIONS(4059), - [anon_sym_LBRACK] = ACTIONS(4047), - [anon_sym_static] = ACTIONS(4059), - [anon_sym_register] = ACTIONS(4059), - [anon_sym_inline] = ACTIONS(4059), - [anon_sym___inline] = ACTIONS(4059), - [anon_sym___inline__] = ACTIONS(4059), - [anon_sym___forceinline] = ACTIONS(4059), - [anon_sym_thread_local] = ACTIONS(4059), - [anon_sym___thread] = ACTIONS(4059), - [anon_sym_const] = ACTIONS(4059), - [anon_sym_constexpr] = ACTIONS(4059), - [anon_sym_volatile] = ACTIONS(4059), - [anon_sym_restrict] = ACTIONS(4059), - [anon_sym___restrict__] = ACTIONS(4059), - [anon_sym__Atomic] = ACTIONS(4059), - [anon_sym__Noreturn] = ACTIONS(4059), - [anon_sym_noreturn] = ACTIONS(4059), - [anon_sym__Nonnull] = ACTIONS(4059), - [anon_sym_mutable] = ACTIONS(4059), - [anon_sym_constinit] = ACTIONS(4059), - [anon_sym_consteval] = ACTIONS(4059), - [anon_sym_alignas] = ACTIONS(4059), - [anon_sym__Alignas] = ACTIONS(4059), - [sym_primitive_type] = ACTIONS(4047), - [anon_sym_enum] = ACTIONS(4059), - [anon_sym_class] = ACTIONS(4059), - [anon_sym_struct] = ACTIONS(4059), - [anon_sym_union] = ACTIONS(4059), - [anon_sym_if] = ACTIONS(4055), - [anon_sym_switch] = ACTIONS(4055), - [anon_sym_case] = ACTIONS(4055), - [anon_sym_default] = ACTIONS(4055), - [anon_sym_while] = ACTIONS(4055), - [anon_sym_do] = ACTIONS(4055), - [anon_sym_for] = ACTIONS(4055), - [anon_sym_return] = ACTIONS(4055), - [anon_sym_break] = ACTIONS(4055), - [anon_sym_continue] = ACTIONS(4055), - [anon_sym_goto] = ACTIONS(4055), - [anon_sym___try] = ACTIONS(4055), - [anon_sym___leave] = ACTIONS(4055), - [anon_sym_not] = ACTIONS(4055), - [anon_sym_compl] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4053), - [anon_sym_PLUS_PLUS] = ACTIONS(4053), - [anon_sym_sizeof] = ACTIONS(4055), - [anon_sym___alignof__] = ACTIONS(4055), - [anon_sym___alignof] = ACTIONS(4055), - [anon_sym__alignof] = ACTIONS(4055), - [anon_sym_alignof] = ACTIONS(4055), - [anon_sym__Alignof] = ACTIONS(4055), - [anon_sym_offsetof] = ACTIONS(4055), - [anon_sym__Generic] = ACTIONS(4055), - [anon_sym_asm] = ACTIONS(4055), - [anon_sym___asm__] = ACTIONS(4055), - [anon_sym___asm] = ACTIONS(4055), - [sym_number_literal] = ACTIONS(4053), - [anon_sym_L_SQUOTE] = ACTIONS(4053), - [anon_sym_u_SQUOTE] = ACTIONS(4053), - [anon_sym_U_SQUOTE] = ACTIONS(4053), - [anon_sym_u8_SQUOTE] = ACTIONS(4053), - [anon_sym_SQUOTE] = ACTIONS(4053), - [anon_sym_L_DQUOTE] = ACTIONS(4053), - [anon_sym_u_DQUOTE] = ACTIONS(4053), - [anon_sym_U_DQUOTE] = ACTIONS(4053), - [anon_sym_u8_DQUOTE] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(4053), - [sym_true] = ACTIONS(4055), - [sym_false] = ACTIONS(4055), - [anon_sym_NULL] = ACTIONS(4055), - [anon_sym_nullptr] = ACTIONS(4055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4059), - [anon_sym_decltype] = ACTIONS(4047), - [anon_sym_explicit] = ACTIONS(4059), - [anon_sym_typename] = ACTIONS(4059), - [anon_sym_template] = ACTIONS(4047), - [anon_sym_operator] = ACTIONS(4059), - [anon_sym_try] = ACTIONS(4055), - [anon_sym_delete] = ACTIONS(4055), - [anon_sym_throw] = ACTIONS(4055), - [anon_sym_co_return] = ACTIONS(4055), - [anon_sym_co_yield] = ACTIONS(4055), - [anon_sym_R_DQUOTE] = ACTIONS(4053), - [anon_sym_LR_DQUOTE] = ACTIONS(4053), - [anon_sym_uR_DQUOTE] = ACTIONS(4053), - [anon_sym_UR_DQUOTE] = ACTIONS(4053), - [anon_sym_u8R_DQUOTE] = ACTIONS(4053), - [anon_sym_co_await] = ACTIONS(4055), - [anon_sym_new] = ACTIONS(4055), - [anon_sym_requires] = ACTIONS(4055), - [sym_this] = ACTIONS(4055), - }, - [STATE(865)] = { - [sym_type_qualifier] = STATE(872), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4806), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(872), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4061), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4063), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(866)] = { - [sym_function_definition] = STATE(291), - [sym_declaration] = STATE(291), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4803), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1957), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6453), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2844), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1851), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(7021), - [sym__constructor_specifiers] = STATE(1851), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(291), - [sym_concept_definition] = STATE(291), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7021), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1851), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4011), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(329)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7000), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11037), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -165212,591 +101475,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4015), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4017), - [anon_sym_concept] = ACTIONS(337), - }, - [STATE(867)] = { - [sym_type_qualifier] = STATE(869), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4722), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(869), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4069), - [anon_sym_RBRACK] = ACTIONS(4071), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(868)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4818), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4073), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(869)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4724), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(870)] = { - [sym_type_qualifier] = STATE(886), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4657), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(4083), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4087), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(871)] = { - [sym_function_definition] = STATE(2097), - [sym_declaration] = STATE(2097), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4812), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1959), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6417), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2871), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(2097), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1861), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(2097), - [sym_operator_cast] = STATE(7004), - [sym__constructor_specifiers] = STATE(1861), - [sym_operator_cast_definition] = STATE(2097), - [sym_operator_cast_declaration] = STATE(2097), - [sym_constructor_or_destructor_definition] = STATE(2097), - [sym_constructor_or_destructor_declaration] = STATE(2097), - [sym_friend_declaration] = STATE(2097), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(2097), - [sym_concept_definition] = STATE(2097), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7004), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4007), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(330)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7004), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(11376), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3671), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -165807,591 +101620,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3673), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3675), - [anon_sym_concept] = ACTIONS(4009), - }, - [STATE(872)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4707), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(873)] = { - [sym_type_qualifier] = STATE(868), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4804), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(868), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4095), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4097), - [anon_sym_RBRACK] = ACTIONS(4099), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(874)] = { - [sym_type_qualifier] = STATE(875), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4745), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(875), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4101), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4103), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(875)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4746), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(331)] = { + [sym_catch_clause] = STATE(309), + [aux_sym_constructor_try_statement_repeat1] = STATE(309), + [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_SEMI] = ACTIONS(3150), + [anon_sym___extension__] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_else] = 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_typename] = ACTIONS(3148), + [anon_sym_asm] = 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_explicit] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_import] = 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_static_assert] = ACTIONS(3148), + [anon_sym_concept] = ACTIONS(3148), + [anon_sym_co_return] = ACTIONS(3148), + [anon_sym_co_yield] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(3319), + [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), + [anon_sym_CARET_CARET] = ACTIONS(3150), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [sym_this] = ACTIONS(3148), }, - [STATE(876)] = { - [sym_function_definition] = STATE(788), - [sym_declaration] = STATE(788), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4811), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1958), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6398), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2887), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(788), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1856), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(788), - [sym_operator_cast] = STATE(7063), - [sym__constructor_specifiers] = STATE(1856), - [sym_operator_cast_definition] = STATE(788), - [sym_operator_cast_declaration] = STATE(788), - [sym_constructor_or_destructor_definition] = STATE(788), - [sym_constructor_or_destructor_declaration] = STATE(788), - [sym_friend_declaration] = STATE(788), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(788), - [sym_concept_definition] = STATE(788), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7063), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1856), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4019), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(332)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7024), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10622), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -166402,353 +101910,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4023), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4025), - [anon_sym_concept] = ACTIONS(1064), - }, - [STATE(877)] = { - [sym_type_qualifier] = STATE(886), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4657), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4085), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4087), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(878)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4787), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4111), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4113), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(879)] = { - [sym_function_definition] = STATE(2145), - [sym_declaration] = STATE(2145), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4815), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1961), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6400), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2882), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(2145), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1857), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(2145), - [sym_operator_cast] = STATE(7055), - [sym__constructor_specifiers] = STATE(1857), - [sym_operator_cast_definition] = STATE(2145), - [sym_operator_cast_declaration] = STATE(2145), - [sym_constructor_or_destructor_definition] = STATE(2145), - [sym_constructor_or_destructor_declaration] = STATE(2145), - [sym_friend_declaration] = STATE(2145), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(2145), - [sym_concept_definition] = STATE(2145), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7055), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1857), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3987), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(333)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7031), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10716), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3757), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -166759,115 +102055,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(3759), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3761), - [anon_sym_concept] = ACTIONS(3991), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(880)] = { - [sym_function_definition] = STATE(497), - [sym_declaration] = STATE(497), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4783), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1962), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6431), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2884), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(497), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1800), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(497), - [sym_operator_cast] = STATE(6997), - [sym__constructor_specifiers] = STATE(1800), - [sym_operator_cast_definition] = STATE(497), - [sym_operator_cast_declaration] = STATE(497), - [sym_constructor_or_destructor_definition] = STATE(497), - [sym_constructor_or_destructor_declaration] = STATE(497), - [sym_friend_declaration] = STATE(497), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(497), - [sym_concept_definition] = STATE(497), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(6997), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1800), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4027), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(334)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7046), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10772), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4029), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -166878,234 +102200,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4031), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4033), - [anon_sym_concept] = ACTIONS(153), - }, - [STATE(881)] = { - [sym_type_qualifier] = STATE(883), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4690), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(883), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4115), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4117), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(882)] = { - [sym_function_definition] = STATE(750), - [sym_declaration] = STATE(750), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4784), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1952), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6389), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2885), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(750), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1847), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(750), - [sym_operator_cast] = STATE(7015), - [sym__constructor_specifiers] = STATE(1847), - [sym_operator_cast_definition] = STATE(750), - [sym_operator_cast_declaration] = STATE(750), - [sym_constructor_or_destructor_definition] = STATE(750), - [sym_constructor_or_destructor_declaration] = STATE(750), - [sym_friend_declaration] = STATE(750), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(750), - [sym_concept_definition] = STATE(750), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7015), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(3985), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3999), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [STATE(335)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7054), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10829), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -167116,1067 +102345,1881 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4003), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4005), - [anon_sym_concept] = ACTIONS(241), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(883)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4695), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(336)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7063), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10902), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(884)] = { - [sym_type_qualifier] = STATE(885), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4696), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4125), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4127), - [anon_sym_RBRACK] = ACTIONS(4129), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(337)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7070), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10942), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(885)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4698), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4133), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(338)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7071), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10973), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(886)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4725), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4137), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(339)] = { + [sym_type_qualifier] = STATE(5089), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3440), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6373), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(5892), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7860), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4005), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(5089), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3321), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(3323), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3303), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(887)] = { - [sym_type_qualifier] = STATE(878), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4726), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4139), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4141), - [anon_sym_RBRACK] = ACTIONS(4143), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(340)] = { + [sym_type_qualifier] = STATE(4930), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3384), + [sym_sized_type_specifier] = STATE(4042), + [sym_enum_specifier] = STATE(4042), + [sym_struct_specifier] = STATE(4042), + [sym_union_specifier] = STATE(4042), + [sym_expression] = STATE(6240), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(5892), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(4042), + [sym_decltype_auto] = STATE(4041), + [sym_decltype] = STATE(3887), + [sym_class_specifier] = STATE(4042), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(4042), + [sym_template_type] = STATE(3976), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7834), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(4080), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4206), + [sym__splice_specialization_specifier] = STATE(3640), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [aux_sym__type_definition_type_repeat1] = STATE(4930), + [aux_sym_sized_type_specifier_repeat1] = STATE(2838), + [sym_identifier] = ACTIONS(3325), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3335), + [anon_sym_signed] = ACTIONS(3337), + [anon_sym_unsigned] = ACTIONS(3337), + [anon_sym_long] = ACTIONS(3337), + [anon_sym_short] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3345), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3353), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3361), + [anon_sym_decltype] = ACTIONS(3363), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(888)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4699), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4145), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4147), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(341)] = { + [sym_type_qualifier] = STATE(5059), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3857), + [sym_sized_type_specifier] = STATE(4042), + [sym_enum_specifier] = STATE(4042), + [sym_struct_specifier] = STATE(4042), + [sym_union_specifier] = STATE(4042), + [sym_expression] = STATE(6684), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_type_descriptor] = STATE(7259), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_placeholder_type_specifier] = STATE(4042), + [sym_decltype_auto] = STATE(4041), + [sym_decltype] = STATE(3887), + [sym_class_specifier] = STATE(4042), + [sym__class_name] = STATE(10093), + [sym_dependent_type] = STATE(4042), + [sym_template_type] = STATE(4466), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7810), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(4575), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(4868), + [sym__splice_specialization_specifier] = STATE(3640), + [sym_splice_type_specifier] = STATE(4597), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym__type_definition_type_repeat1] = STATE(5059), + [aux_sym_sized_type_specifier_repeat1] = STATE(3403), + [sym_identifier] = ACTIONS(3379), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(3389), + [anon_sym_COLON_COLON] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3393), + [anon_sym_unsigned] = ACTIONS(3393), + [anon_sym_long] = ACTIONS(3393), + [anon_sym_short] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3401), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3361), + [anon_sym_decltype] = ACTIONS(3363), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(889)] = { - [sym_type_qualifier] = STATE(890), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4727), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4151), - [anon_sym_RBRACK] = ACTIONS(4153), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(342)] = { + [sym_type_qualifier] = STATE(5019), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2518), + [sym_sized_type_specifier] = STATE(3460), + [sym_enum_specifier] = STATE(3460), + [sym_struct_specifier] = STATE(3460), + [sym_union_specifier] = STATE(3460), + [sym_expression] = STATE(5623), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_type_descriptor] = STATE(5919), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_placeholder_type_specifier] = STATE(3460), + [sym_decltype_auto] = STATE(3453), + [sym_decltype] = STATE(3262), + [sym_class_specifier] = STATE(3460), + [sym__class_name] = STATE(10294), + [sym_dependent_type] = STATE(3460), + [sym_template_type] = STATE(3264), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7865), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(3461), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(3538), + [sym__splice_specialization_specifier] = STATE(2837), + [sym_splice_type_specifier] = STATE(3391), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [aux_sym__type_definition_type_repeat1] = STATE(5019), + [aux_sym_sized_type_specifier_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(3445), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3453), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3459), + [anon_sym_union] = ACTIONS(3461), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(3463), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3465), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(890)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [sym_expression] = STATE(4789), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4155), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(4037), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(4075), - [anon_sym_RBRACK] = ACTIONS(4157), - [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__Nonnull] = ACTIONS(4043), - [anon_sym_mutable] = ACTIONS(4043), - [anon_sym_constinit] = ACTIONS(4043), - [anon_sym_consteval] = ACTIONS(4043), - [anon_sym_alignas] = ACTIONS(4045), - [anon_sym__Alignas] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(343)] = { + [sym_expression] = STATE(5679), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(3472), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(3475), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(3481), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(3487), + [sym_this] = ACTIONS(2004), }, - [STATE(891)] = { - [sym_function_definition] = STATE(1791), - [sym_declaration] = STATE(1791), - [sym__declaration_modifiers] = STATE(3162), - [sym__declaration_specifiers] = STATE(4813), - [sym_attribute_specifier] = STATE(3162), - [sym_attribute_declaration] = STATE(3162), - [sym_ms_declspec_modifier] = STATE(3162), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(1960), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6402), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3162), - [sym_type_qualifier] = STATE(3162), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2889), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym__empty_declaration] = STATE(1791), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_explicit_function_specifier] = STATE(1855), - [sym_dependent_type] = STATE(2553), - [sym_template_declaration] = STATE(1791), - [sym_operator_cast] = STATE(7020), - [sym__constructor_specifiers] = STATE(1855), - [sym_operator_cast_definition] = STATE(1791), - [sym_operator_cast_declaration] = STATE(1791), - [sym_constructor_or_destructor_definition] = STATE(1791), - [sym_constructor_or_destructor_declaration] = STATE(1791), - [sym_friend_declaration] = STATE(1791), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_alias_declaration] = STATE(1791), - [sym_concept_definition] = STATE(1791), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5600), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_qualified_operator_cast_identifier] = STATE(7020), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1855), - [sym_identifier] = ACTIONS(3985), + [STATE(344)] = { + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2160), + [sym_sized_type_specifier] = STATE(2089), + [sym_enum_specifier] = STATE(2089), + [sym_struct_specifier] = STATE(2089), + [sym_union_specifier] = STATE(2089), + [sym_expression] = STATE(5394), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_type_descriptor] = STATE(3827), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_placeholder_type_specifier] = STATE(2089), + [sym_decltype_auto] = STATE(2070), + [sym_decltype] = STATE(2063), + [sym_class_specifier] = STATE(2089), + [sym__class_name] = STATE(10270), + [sym_dependent_type] = STATE(2089), + [sym_template_type] = STATE(2066), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7802), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(2126), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(2155), + [sym__splice_specialization_specifier] = STATE(2026), + [sym_splice_type_specifier] = STATE(2127), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(345)] = { + [sym_type_qualifier] = STATE(5136), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2362), + [sym_sized_type_specifier] = STATE(2983), + [sym_enum_specifier] = STATE(2983), + [sym_struct_specifier] = STATE(2983), + [sym_union_specifier] = STATE(2983), + [sym_expression] = STATE(5175), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_type_descriptor] = STATE(5652), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_placeholder_type_specifier] = STATE(2983), + [sym_decltype_auto] = STATE(2982), + [sym_decltype] = STATE(2856), + [sym_class_specifier] = STATE(2983), + [sym__class_name] = STATE(10357), + [sym_dependent_type] = STATE(2983), + [sym_template_type] = STATE(2863), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7832), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(2987), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(3150), + [sym__splice_specialization_specifier] = STATE(2597), + [sym_splice_type_specifier] = STATE(3056), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [aux_sym__type_definition_type_repeat1] = STATE(5136), + [aux_sym_sized_type_specifier_repeat1] = STATE(2162), + [sym_identifier] = ACTIONS(3500), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(3504), + [anon_sym_COLON_COLON] = ACTIONS(3506), + [anon_sym_signed] = ACTIONS(3508), + [anon_sym_unsigned] = ACTIONS(3508), + [anon_sym_long] = ACTIONS(3508), + [anon_sym_short] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3516), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(346)] = { + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(2160), + [sym_sized_type_specifier] = STATE(2089), + [sym_enum_specifier] = STATE(2089), + [sym_struct_specifier] = STATE(2089), + [sym_union_specifier] = STATE(2089), + [sym_expression] = STATE(4530), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_type_descriptor] = STATE(3827), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_placeholder_type_specifier] = STATE(2089), + [sym_decltype_auto] = STATE(2070), + [sym_decltype] = STATE(2063), + [sym_class_specifier] = STATE(2089), + [sym__class_name] = STATE(10270), + [sym_dependent_type] = STATE(2089), + [sym_template_type] = STATE(2066), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7802), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(2126), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(2155), + [sym__splice_specialization_specifier] = STATE(2026), + [sym_splice_type_specifier] = STATE(2127), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [aux_sym__type_definition_type_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3185), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(347)] = { + [sym_catch_clause] = STATE(302), + [aux_sym_constructor_try_statement_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [aux_sym_preproc_else_token1] = ACTIONS(3534), + [aux_sym_preproc_elif_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(3152), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), + }, + [STATE(348)] = { + [sym_type_qualifier] = STATE(4957), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3921), + [sym_sized_type_specifier] = STATE(4402), + [sym_enum_specifier] = STATE(4402), + [sym_struct_specifier] = STATE(4402), + [sym_union_specifier] = STATE(4402), + [sym_expression] = STATE(6722), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_type_descriptor] = STATE(7231), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_placeholder_type_specifier] = STATE(4402), + [sym_decltype_auto] = STATE(4401), + [sym_decltype] = STATE(4252), + [sym_class_specifier] = STATE(4402), + [sym__class_name] = STATE(10478), + [sym_dependent_type] = STATE(4402), + [sym_template_type] = STATE(4523), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7850), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(4655), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(4802), + [sym__splice_specialization_specifier] = STATE(4189), + [sym_splice_type_specifier] = STATE(4612), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [aux_sym__type_definition_type_repeat1] = STATE(4957), + [aux_sym_sized_type_specifier_repeat1] = STATE(3378), + [sym_identifier] = ACTIONS(3538), [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3995), - [anon_sym_COLON_COLON] = ACTIONS(3989), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(1310), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(2827), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -168187,61490 +104230,80671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2843), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(2845), - [anon_sym_concept] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3550), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(3552), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2855), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(892)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(349)] = { + [sym_catch_clause] = STATE(302), + [aux_sym_constructor_try_statement_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_include_token1] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token2] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [aux_sym_preproc_else_token1] = ACTIONS(3554), + [aux_sym_preproc_elif_token1] = ACTIONS(3554), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym___cdecl] = ACTIONS(3554), + [anon_sym___clrcall] = ACTIONS(3554), + [anon_sym___stdcall] = ACTIONS(3554), + [anon_sym___fastcall] = ACTIONS(3554), + [anon_sym___thiscall] = ACTIONS(3554), + [anon_sym___vectorcall] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_goto] = ACTIONS(3554), + [anon_sym___try] = ACTIONS(3554), + [anon_sym___leave] = ACTIONS(3554), + [anon_sym_not] = ACTIONS(3554), + [anon_sym_compl] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3554), + [anon_sym___alignof__] = ACTIONS(3554), + [anon_sym___alignof] = ACTIONS(3554), + [anon_sym__alignof] = ACTIONS(3554), + [anon_sym_alignof] = ACTIONS(3554), + [anon_sym__Alignof] = ACTIONS(3554), + [anon_sym_offsetof] = ACTIONS(3554), + [anon_sym__Generic] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [anon_sym_asm] = ACTIONS(3554), + [anon_sym___asm__] = ACTIONS(3554), + [anon_sym___asm] = ACTIONS(3554), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_L_SQUOTE] = ACTIONS(3556), + [anon_sym_u_SQUOTE] = ACTIONS(3556), + [anon_sym_U_SQUOTE] = ACTIONS(3556), + [anon_sym_u8_SQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_L_DQUOTE] = ACTIONS(3556), + [anon_sym_u_DQUOTE] = ACTIONS(3556), + [anon_sym_U_DQUOTE] = ACTIONS(3556), + [anon_sym_u8_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [anon_sym_NULL] = ACTIONS(3554), + [anon_sym_nullptr] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_concept] = ACTIONS(3554), + [anon_sym_co_return] = ACTIONS(3554), + [anon_sym_co_yield] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(3152), + [anon_sym_R_DQUOTE] = ACTIONS(3556), + [anon_sym_LR_DQUOTE] = ACTIONS(3556), + [anon_sym_uR_DQUOTE] = ACTIONS(3556), + [anon_sym_UR_DQUOTE] = ACTIONS(3556), + [anon_sym_u8R_DQUOTE] = ACTIONS(3556), + [anon_sym_co_await] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_requires] = ACTIONS(3554), + [anon_sym_CARET_CARET] = ACTIONS(3556), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(3554), }, - [STATE(893)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4203), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(350)] = { + [sym_type_qualifier] = STATE(5089), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3440), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6731), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(5892), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10188), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7820), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4005), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(4560), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [aux_sym__type_definition_type_repeat1] = STATE(5089), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3566), + [anon_sym_COLON_COLON] = ACTIONS(3568), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(894)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(351)] = { + [sym_type_qualifier] = STATE(5089), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3440), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(6782), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(5892), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7860), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4005), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [aux_sym__type_definition_type_repeat1] = STATE(5089), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3586), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3594), + [anon_sym_COLON_COLON] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3303), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(895)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(352)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7061), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10661), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(896)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(353)] = { + [sym_type_qualifier] = STATE(4954), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(7094), + [sym_sized_type_specifier] = STATE(3118), + [sym_enum_specifier] = STATE(3118), + [sym_struct_specifier] = STATE(3118), + [sym_union_specifier] = STATE(3118), + [sym_expression] = STATE(7016), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_type_descriptor] = STATE(10533), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_placeholder_type_specifier] = STATE(3118), + [sym_decltype_auto] = STATE(3100), + [sym_decltype] = STATE(2949), + [sym_class_specifier] = STATE(3118), + [sym__class_name] = STATE(10073), + [sym_dependent_type] = STATE(3118), + [sym_template_type] = STATE(3771), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7792), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(3907), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(4947), + [sym__splice_specialization_specifier] = STATE(2855), + [sym_splice_type_specifier] = STATE(3422), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym__type_definition_type_repeat1] = STATE(4954), + [aux_sym_sized_type_specifier_repeat1] = STATE(2634), + [sym_identifier] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1882), + [anon_sym_unsigned] = ACTIONS(1882), + [anon_sym_long] = ACTIONS(1882), + [anon_sym_short] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1918), + [anon_sym_decltype] = ACTIONS(1920), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(897)] = { - [sym_catch_clause] = STATE(900), - [aux_sym_constructor_try_statement_repeat1] = STATE(900), - [sym_identifier] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_switch] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_goto] = ACTIONS(2543), - [anon_sym___try] = ACTIONS(2543), - [anon_sym___leave] = ACTIONS(2543), - [anon_sym_not] = ACTIONS(2543), - [anon_sym_compl] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_sizeof] = ACTIONS(2543), - [anon_sym___alignof__] = ACTIONS(2543), - [anon_sym___alignof] = ACTIONS(2543), - [anon_sym__alignof] = ACTIONS(2543), - [anon_sym_alignof] = ACTIONS(2543), - [anon_sym__Alignof] = ACTIONS(2543), - [anon_sym_offsetof] = ACTIONS(2543), - [anon_sym__Generic] = ACTIONS(2543), - [anon_sym_asm] = ACTIONS(2543), - [anon_sym___asm__] = ACTIONS(2543), - [anon_sym___asm] = ACTIONS(2543), - [sym_number_literal] = ACTIONS(2545), - [anon_sym_L_SQUOTE] = ACTIONS(2545), - [anon_sym_u_SQUOTE] = ACTIONS(2545), - [anon_sym_U_SQUOTE] = ACTIONS(2545), - [anon_sym_u8_SQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_L_DQUOTE] = ACTIONS(2545), - [anon_sym_u_DQUOTE] = ACTIONS(2545), - [anon_sym_U_DQUOTE] = ACTIONS(2545), - [anon_sym_u8_DQUOTE] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_true] = ACTIONS(2543), - [sym_false] = ACTIONS(2543), - [anon_sym_NULL] = ACTIONS(2543), - [anon_sym_nullptr] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_delete] = ACTIONS(2543), - [anon_sym_throw] = ACTIONS(2543), - [anon_sym_co_return] = ACTIONS(2543), - [anon_sym_co_yield] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(4209), - [anon_sym_R_DQUOTE] = ACTIONS(2545), - [anon_sym_LR_DQUOTE] = ACTIONS(2545), - [anon_sym_uR_DQUOTE] = ACTIONS(2545), - [anon_sym_UR_DQUOTE] = ACTIONS(2545), - [anon_sym_u8R_DQUOTE] = ACTIONS(2545), - [anon_sym_co_await] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_requires] = ACTIONS(2543), - [sym_this] = ACTIONS(2543), + [STATE(354)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [aux_sym_preproc_else_token1] = ACTIONS(3608), + [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(898)] = { - [sym_expression] = STATE(3117), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(3957), - [anon_sym_LPAREN2] = ACTIONS(4211), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(4217), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym___extension__] = ACTIONS(3960), - [anon_sym_COLON_COLON] = ACTIONS(3963), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(355)] = { + [sym_else_clause] = STATE(359), + [sym_identifier] = ACTIONS(3612), + [aux_sym_preproc_include_token1] = ACTIONS(3612), + [aux_sym_preproc_def_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token2] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), + [aux_sym_preproc_else_token1] = ACTIONS(3612), + [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3612), + [sym_preproc_directive] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_AMP_AMP] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3612), + [anon_sym_typedef] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym___attribute__] = ACTIONS(3612), + [anon_sym___attribute] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), + [anon_sym___declspec] = ACTIONS(3612), + [anon_sym___based] = ACTIONS(3612), + [anon_sym___cdecl] = ACTIONS(3612), + [anon_sym___clrcall] = ACTIONS(3612), + [anon_sym___stdcall] = ACTIONS(3612), + [anon_sym___fastcall] = ACTIONS(3612), + [anon_sym___thiscall] = ACTIONS(3612), + [anon_sym___vectorcall] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_signed] = ACTIONS(3612), + [anon_sym_unsigned] = ACTIONS(3612), + [anon_sym_long] = ACTIONS(3612), + [anon_sym_short] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_register] = ACTIONS(3612), + [anon_sym_inline] = ACTIONS(3612), + [anon_sym___inline] = ACTIONS(3612), + [anon_sym___inline__] = ACTIONS(3612), + [anon_sym___forceinline] = ACTIONS(3612), + [anon_sym_thread_local] = ACTIONS(3612), + [anon_sym___thread] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_constexpr] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_restrict] = ACTIONS(3612), + [anon_sym___restrict__] = ACTIONS(3612), + [anon_sym__Atomic] = ACTIONS(3612), + [anon_sym__Noreturn] = ACTIONS(3612), + [anon_sym_noreturn] = ACTIONS(3612), + [anon_sym__Nonnull] = ACTIONS(3612), + [anon_sym_mutable] = ACTIONS(3612), + [anon_sym_constinit] = ACTIONS(3612), + [anon_sym_consteval] = ACTIONS(3612), + [anon_sym_alignas] = ACTIONS(3612), + [anon_sym__Alignas] = ACTIONS(3612), + [sym_primitive_type] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_union] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym___try] = ACTIONS(3612), + [anon_sym___leave] = ACTIONS(3612), + [anon_sym_not] = ACTIONS(3612), + [anon_sym_compl] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym___alignof__] = ACTIONS(3612), + [anon_sym___alignof] = ACTIONS(3612), + [anon_sym__alignof] = ACTIONS(3612), + [anon_sym_alignof] = ACTIONS(3612), + [anon_sym__Alignof] = ACTIONS(3612), + [anon_sym_offsetof] = ACTIONS(3612), + [anon_sym__Generic] = ACTIONS(3612), + [anon_sym_typename] = ACTIONS(3612), + [anon_sym_asm] = ACTIONS(3612), + [anon_sym___asm__] = ACTIONS(3612), + [anon_sym___asm] = ACTIONS(3612), + [sym_number_literal] = ACTIONS(3614), + [anon_sym_L_SQUOTE] = ACTIONS(3614), + [anon_sym_u_SQUOTE] = ACTIONS(3614), + [anon_sym_U_SQUOTE] = ACTIONS(3614), + [anon_sym_u8_SQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_L_DQUOTE] = ACTIONS(3614), + [anon_sym_u_DQUOTE] = ACTIONS(3614), + [anon_sym_U_DQUOTE] = ACTIONS(3614), + [anon_sym_u8_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [anon_sym_NULL] = ACTIONS(3612), + [anon_sym_nullptr] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3612), + [anon_sym_decltype] = ACTIONS(3612), + [anon_sym_explicit] = ACTIONS(3612), + [anon_sym_template] = ACTIONS(3612), + [anon_sym_operator] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_static_assert] = ACTIONS(3612), + [anon_sym_concept] = ACTIONS(3612), + [anon_sym_co_return] = ACTIONS(3612), + [anon_sym_co_yield] = ACTIONS(3612), + [anon_sym_R_DQUOTE] = ACTIONS(3614), + [anon_sym_LR_DQUOTE] = ACTIONS(3614), + [anon_sym_uR_DQUOTE] = ACTIONS(3614), + [anon_sym_UR_DQUOTE] = ACTIONS(3614), + [anon_sym_u8R_DQUOTE] = ACTIONS(3614), + [anon_sym_co_await] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_requires] = ACTIONS(3612), + [anon_sym_CARET_CARET] = ACTIONS(3614), + [anon_sym_LBRACK_COLON] = ACTIONS(3614), + [sym_this] = ACTIONS(3612), }, - [STATE(899)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(356)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(900)] = { - [sym_catch_clause] = STATE(900), - [aux_sym_constructor_try_statement_repeat1] = STATE(900), - [sym_identifier] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym___try] = ACTIONS(2478), - [anon_sym___leave] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = ACTIONS(2478), - [anon_sym___alignof__] = ACTIONS(2478), - [anon_sym___alignof] = ACTIONS(2478), - [anon_sym__alignof] = ACTIONS(2478), - [anon_sym_alignof] = ACTIONS(2478), - [anon_sym__Alignof] = ACTIONS(2478), - [anon_sym_offsetof] = ACTIONS(2478), - [anon_sym__Generic] = ACTIONS(2478), - [anon_sym_asm] = ACTIONS(2478), - [anon_sym___asm__] = ACTIONS(2478), - [anon_sym___asm] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2480), - [anon_sym_L_SQUOTE] = ACTIONS(2480), - [anon_sym_u_SQUOTE] = ACTIONS(2480), - [anon_sym_U_SQUOTE] = ACTIONS(2480), - [anon_sym_u8_SQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [anon_sym_NULL] = ACTIONS(2478), - [anon_sym_nullptr] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(4226), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), + [STATE(357)] = { + [sym_else_clause] = STATE(376), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [aux_sym_preproc_else_token1] = ACTIONS(3618), + [aux_sym_preproc_elif_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(901)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(358)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [aux_sym_preproc_else_token1] = ACTIONS(2795), + [aux_sym_preproc_elif_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2793), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_this] = ACTIONS(2795), }, - [STATE(902)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(359)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [aux_sym_preproc_else_token1] = ACTIONS(3622), + [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(903)] = { - [sym_expression] = STATE(2936), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(4231), - [anon_sym_LPAREN2] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(4237), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2563), - [anon_sym___extension__] = ACTIONS(4240), - [anon_sym_COLON_COLON] = ACTIONS(4243), - [anon_sym___based] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(360)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [aux_sym_preproc_else_token1] = ACTIONS(3626), + [aux_sym_preproc_elif_token1] = ACTIONS(3626), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(904)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4203), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(361)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(905)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(362)] = { + [sym_else_clause] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3612), + [aux_sym_preproc_include_token1] = ACTIONS(3612), + [aux_sym_preproc_def_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), + [sym_preproc_directive] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_AMP_AMP] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3612), + [anon_sym_typedef] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym___attribute__] = ACTIONS(3612), + [anon_sym___attribute] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), + [anon_sym___declspec] = ACTIONS(3612), + [anon_sym___based] = ACTIONS(3612), + [anon_sym___cdecl] = ACTIONS(3612), + [anon_sym___clrcall] = ACTIONS(3612), + [anon_sym___stdcall] = ACTIONS(3612), + [anon_sym___fastcall] = ACTIONS(3612), + [anon_sym___thiscall] = ACTIONS(3612), + [anon_sym___vectorcall] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_signed] = ACTIONS(3612), + [anon_sym_unsigned] = ACTIONS(3612), + [anon_sym_long] = ACTIONS(3612), + [anon_sym_short] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_register] = ACTIONS(3612), + [anon_sym_inline] = ACTIONS(3612), + [anon_sym___inline] = ACTIONS(3612), + [anon_sym___inline__] = ACTIONS(3612), + [anon_sym___forceinline] = ACTIONS(3612), + [anon_sym_thread_local] = ACTIONS(3612), + [anon_sym___thread] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_constexpr] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_restrict] = ACTIONS(3612), + [anon_sym___restrict__] = ACTIONS(3612), + [anon_sym__Atomic] = ACTIONS(3612), + [anon_sym__Noreturn] = ACTIONS(3612), + [anon_sym_noreturn] = ACTIONS(3612), + [anon_sym__Nonnull] = ACTIONS(3612), + [anon_sym_mutable] = ACTIONS(3612), + [anon_sym_constinit] = ACTIONS(3612), + [anon_sym_consteval] = ACTIONS(3612), + [anon_sym_alignas] = ACTIONS(3612), + [anon_sym__Alignas] = ACTIONS(3612), + [sym_primitive_type] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_union] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym___try] = ACTIONS(3612), + [anon_sym___leave] = ACTIONS(3612), + [anon_sym_not] = ACTIONS(3612), + [anon_sym_compl] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym___alignof__] = ACTIONS(3612), + [anon_sym___alignof] = ACTIONS(3612), + [anon_sym__alignof] = ACTIONS(3612), + [anon_sym_alignof] = ACTIONS(3612), + [anon_sym__Alignof] = ACTIONS(3612), + [anon_sym_offsetof] = ACTIONS(3612), + [anon_sym__Generic] = ACTIONS(3612), + [anon_sym_typename] = ACTIONS(3612), + [anon_sym_asm] = ACTIONS(3612), + [anon_sym___asm__] = ACTIONS(3612), + [anon_sym___asm] = ACTIONS(3612), + [sym_number_literal] = ACTIONS(3614), + [anon_sym_L_SQUOTE] = ACTIONS(3614), + [anon_sym_u_SQUOTE] = ACTIONS(3614), + [anon_sym_U_SQUOTE] = ACTIONS(3614), + [anon_sym_u8_SQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_L_DQUOTE] = ACTIONS(3614), + [anon_sym_u_DQUOTE] = ACTIONS(3614), + [anon_sym_U_DQUOTE] = ACTIONS(3614), + [anon_sym_u8_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [anon_sym_NULL] = ACTIONS(3612), + [anon_sym_nullptr] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3612), + [anon_sym_decltype] = ACTIONS(3612), + [anon_sym_explicit] = ACTIONS(3612), + [anon_sym_export] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_import] = ACTIONS(3612), + [anon_sym_template] = ACTIONS(3612), + [anon_sym_operator] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_static_assert] = ACTIONS(3612), + [anon_sym_concept] = ACTIONS(3612), + [anon_sym_co_return] = ACTIONS(3612), + [anon_sym_co_yield] = ACTIONS(3612), + [anon_sym_R_DQUOTE] = ACTIONS(3614), + [anon_sym_LR_DQUOTE] = ACTIONS(3614), + [anon_sym_uR_DQUOTE] = ACTIONS(3614), + [anon_sym_UR_DQUOTE] = ACTIONS(3614), + [anon_sym_u8R_DQUOTE] = ACTIONS(3614), + [anon_sym_co_await] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_requires] = ACTIONS(3612), + [anon_sym_CARET_CARET] = ACTIONS(3614), + [anon_sym_LBRACK_COLON] = ACTIONS(3614), + [sym_this] = ACTIONS(3612), }, - [STATE(906)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(363)] = { + [ts_builtin_sym_end] = ACTIONS(3610), + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(907)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1636), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(364)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(908)] = { - [sym_expression] = STATE(4540), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(4250), - [anon_sym_LPAREN2] = ACTIONS(4253), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_TILDE] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4259), - [anon_sym_PLUS] = ACTIONS(4259), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2579), - [anon_sym_not] = ACTIONS(4259), - [anon_sym_compl] = ACTIONS(4259), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_sizeof] = ACTIONS(4271), - [anon_sym___alignof__] = ACTIONS(4274), - [anon_sym___alignof] = ACTIONS(4274), - [anon_sym__alignof] = ACTIONS(4274), - [anon_sym_alignof] = ACTIONS(4274), - [anon_sym__Alignof] = ACTIONS(4274), - [anon_sym_offsetof] = ACTIONS(4277), - [anon_sym__Generic] = ACTIONS(4280), - [anon_sym_asm] = ACTIONS(4283), - [anon_sym___asm__] = ACTIONS(4283), - [anon_sym___asm] = ACTIONS(4283), - [sym_number_literal] = ACTIONS(4286), - [anon_sym_L_SQUOTE] = ACTIONS(4289), - [anon_sym_u_SQUOTE] = ACTIONS(4289), - [anon_sym_U_SQUOTE] = ACTIONS(4289), - [anon_sym_u8_SQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4289), - [anon_sym_L_DQUOTE] = ACTIONS(4292), - [anon_sym_u_DQUOTE] = ACTIONS(4292), - [anon_sym_U_DQUOTE] = ACTIONS(4292), - [anon_sym_u8_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [sym_true] = ACTIONS(4295), - [sym_false] = ACTIONS(4295), - [anon_sym_NULL] = ACTIONS(4298), - [anon_sym_nullptr] = ACTIONS(4298), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2582), - [anon_sym_template] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(4301), - [anon_sym_R_DQUOTE] = ACTIONS(4304), - [anon_sym_LR_DQUOTE] = ACTIONS(4304), - [anon_sym_uR_DQUOTE] = ACTIONS(4304), - [anon_sym_UR_DQUOTE] = ACTIONS(4304), - [anon_sym_u8R_DQUOTE] = ACTIONS(4304), - [anon_sym_co_await] = ACTIONS(4307), - [anon_sym_new] = ACTIONS(4310), - [anon_sym_requires] = ACTIONS(4313), - [sym_this] = ACTIONS(4295), + [STATE(365)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, - [STATE(909)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1635), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4184), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym___cdecl] = ACTIONS(4159), - [anon_sym___clrcall] = ACTIONS(4159), - [anon_sym___stdcall] = ACTIONS(4159), - [anon_sym___fastcall] = ACTIONS(4159), - [anon_sym___thiscall] = ACTIONS(4159), - [anon_sym___vectorcall] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(366)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), }, - [STATE(910)] = { - [sym_identifier] = ACTIONS(3981), - [anon_sym_LPAREN2] = ACTIONS(3983), - [anon_sym_BANG] = ACTIONS(3983), - [anon_sym_TILDE] = ACTIONS(3983), - [anon_sym_DASH] = ACTIONS(3981), - [anon_sym_PLUS] = ACTIONS(3981), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3983), - [anon_sym_SEMI] = ACTIONS(3983), - [anon_sym___extension__] = ACTIONS(3981), - [anon_sym_virtual] = ACTIONS(3981), - [anon_sym_extern] = ACTIONS(3981), - [anon_sym___attribute__] = ACTIONS(3981), - [anon_sym___attribute] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(3983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), - [anon_sym___declspec] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_signed] = ACTIONS(3981), - [anon_sym_unsigned] = ACTIONS(3981), - [anon_sym_long] = ACTIONS(3981), - [anon_sym_short] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_static] = ACTIONS(3981), - [anon_sym_register] = ACTIONS(3981), - [anon_sym_inline] = ACTIONS(3981), - [anon_sym___inline] = ACTIONS(3981), - [anon_sym___inline__] = ACTIONS(3981), - [anon_sym___forceinline] = ACTIONS(3981), - [anon_sym_thread_local] = ACTIONS(3981), - [anon_sym___thread] = ACTIONS(3981), - [anon_sym_const] = ACTIONS(3981), - [anon_sym_constexpr] = ACTIONS(3981), - [anon_sym_volatile] = ACTIONS(3981), - [anon_sym_restrict] = ACTIONS(3981), - [anon_sym___restrict__] = ACTIONS(3981), - [anon_sym__Atomic] = ACTIONS(3981), - [anon_sym__Noreturn] = ACTIONS(3981), - [anon_sym_noreturn] = ACTIONS(3981), - [anon_sym__Nonnull] = ACTIONS(3981), - [anon_sym_mutable] = ACTIONS(3981), - [anon_sym_constinit] = ACTIONS(3981), - [anon_sym_consteval] = ACTIONS(3981), - [anon_sym_alignas] = ACTIONS(3981), - [anon_sym__Alignas] = ACTIONS(3981), - [sym_primitive_type] = ACTIONS(3981), - [anon_sym_enum] = ACTIONS(3981), - [anon_sym_class] = ACTIONS(3981), - [anon_sym_struct] = ACTIONS(3981), - [anon_sym_union] = ACTIONS(3981), - [anon_sym_if] = ACTIONS(3981), - [anon_sym_switch] = ACTIONS(3981), - [anon_sym_case] = ACTIONS(3981), - [anon_sym_default] = ACTIONS(3981), - [anon_sym_while] = ACTIONS(3981), - [anon_sym_do] = ACTIONS(3981), - [anon_sym_for] = ACTIONS(3981), - [anon_sym_return] = ACTIONS(3981), - [anon_sym_break] = ACTIONS(3981), - [anon_sym_continue] = ACTIONS(3981), - [anon_sym_goto] = ACTIONS(3981), - [anon_sym___try] = ACTIONS(3981), - [anon_sym___leave] = ACTIONS(3981), - [anon_sym_not] = ACTIONS(3981), - [anon_sym_compl] = ACTIONS(3981), - [anon_sym_DASH_DASH] = ACTIONS(3983), - [anon_sym_PLUS_PLUS] = ACTIONS(3983), - [anon_sym_sizeof] = ACTIONS(3981), - [anon_sym___alignof__] = ACTIONS(3981), - [anon_sym___alignof] = ACTIONS(3981), - [anon_sym__alignof] = ACTIONS(3981), - [anon_sym_alignof] = ACTIONS(3981), - [anon_sym__Alignof] = ACTIONS(3981), - [anon_sym_offsetof] = ACTIONS(3981), - [anon_sym__Generic] = ACTIONS(3981), - [anon_sym_asm] = ACTIONS(3981), - [anon_sym___asm__] = ACTIONS(3981), - [anon_sym___asm] = ACTIONS(3981), - [sym_number_literal] = ACTIONS(3983), - [anon_sym_L_SQUOTE] = ACTIONS(3983), - [anon_sym_u_SQUOTE] = ACTIONS(3983), - [anon_sym_U_SQUOTE] = ACTIONS(3983), - [anon_sym_u8_SQUOTE] = ACTIONS(3983), - [anon_sym_SQUOTE] = ACTIONS(3983), - [anon_sym_L_DQUOTE] = ACTIONS(3983), - [anon_sym_u_DQUOTE] = ACTIONS(3983), - [anon_sym_U_DQUOTE] = ACTIONS(3983), - [anon_sym_u8_DQUOTE] = ACTIONS(3983), - [anon_sym_DQUOTE] = ACTIONS(3983), - [sym_true] = ACTIONS(3981), - [sym_false] = ACTIONS(3981), - [anon_sym_NULL] = ACTIONS(3981), - [anon_sym_nullptr] = ACTIONS(3981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3981), - [anon_sym_decltype] = ACTIONS(3981), - [anon_sym_typename] = ACTIONS(3981), - [anon_sym_template] = ACTIONS(3981), - [anon_sym_try] = ACTIONS(3981), - [anon_sym_delete] = ACTIONS(3981), - [anon_sym_throw] = ACTIONS(3981), - [anon_sym_co_return] = ACTIONS(3981), - [anon_sym_co_yield] = ACTIONS(3981), - [anon_sym_R_DQUOTE] = ACTIONS(3983), - [anon_sym_LR_DQUOTE] = ACTIONS(3983), - [anon_sym_uR_DQUOTE] = ACTIONS(3983), - [anon_sym_UR_DQUOTE] = ACTIONS(3983), - [anon_sym_u8R_DQUOTE] = ACTIONS(3983), - [anon_sym_co_await] = ACTIONS(3981), - [anon_sym_new] = ACTIONS(3981), - [anon_sym_requires] = ACTIONS(3981), - [sym_this] = ACTIONS(3981), + [STATE(367)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [aux_sym_preproc_else_token1] = ACTIONS(3648), + [aux_sym_preproc_elif_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(911)] = { - [sym_identifier] = ACTIONS(3953), - [anon_sym_LPAREN2] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_TILDE] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_SEMI] = ACTIONS(3955), - [anon_sym___extension__] = ACTIONS(3953), - [anon_sym_virtual] = ACTIONS(3953), - [anon_sym_extern] = ACTIONS(3953), - [anon_sym___attribute__] = ACTIONS(3953), - [anon_sym___attribute] = ACTIONS(3953), - [anon_sym_using] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3955), - [anon_sym___declspec] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3955), - [anon_sym_signed] = ACTIONS(3953), - [anon_sym_unsigned] = ACTIONS(3953), - [anon_sym_long] = ACTIONS(3953), - [anon_sym_short] = ACTIONS(3953), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_static] = ACTIONS(3953), - [anon_sym_register] = ACTIONS(3953), - [anon_sym_inline] = ACTIONS(3953), - [anon_sym___inline] = ACTIONS(3953), - [anon_sym___inline__] = ACTIONS(3953), - [anon_sym___forceinline] = ACTIONS(3953), - [anon_sym_thread_local] = ACTIONS(3953), - [anon_sym___thread] = ACTIONS(3953), - [anon_sym_const] = ACTIONS(3953), - [anon_sym_constexpr] = ACTIONS(3953), - [anon_sym_volatile] = ACTIONS(3953), - [anon_sym_restrict] = ACTIONS(3953), - [anon_sym___restrict__] = ACTIONS(3953), - [anon_sym__Atomic] = ACTIONS(3953), - [anon_sym__Noreturn] = ACTIONS(3953), - [anon_sym_noreturn] = ACTIONS(3953), - [anon_sym__Nonnull] = ACTIONS(3953), - [anon_sym_mutable] = ACTIONS(3953), - [anon_sym_constinit] = ACTIONS(3953), - [anon_sym_consteval] = ACTIONS(3953), - [anon_sym_alignas] = ACTIONS(3953), - [anon_sym__Alignas] = ACTIONS(3953), - [sym_primitive_type] = ACTIONS(3953), - [anon_sym_enum] = ACTIONS(3953), - [anon_sym_class] = ACTIONS(3953), - [anon_sym_struct] = ACTIONS(3953), - [anon_sym_union] = ACTIONS(3953), - [anon_sym_if] = ACTIONS(3953), - [anon_sym_switch] = ACTIONS(3953), - [anon_sym_case] = ACTIONS(3953), - [anon_sym_default] = ACTIONS(3953), - [anon_sym_while] = ACTIONS(3953), - [anon_sym_do] = ACTIONS(3953), - [anon_sym_for] = ACTIONS(3953), - [anon_sym_return] = ACTIONS(3953), - [anon_sym_break] = ACTIONS(3953), - [anon_sym_continue] = ACTIONS(3953), - [anon_sym_goto] = ACTIONS(3953), - [anon_sym___try] = ACTIONS(3953), - [anon_sym___leave] = ACTIONS(3953), - [anon_sym_not] = ACTIONS(3953), - [anon_sym_compl] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3955), - [anon_sym_sizeof] = ACTIONS(3953), - [anon_sym___alignof__] = ACTIONS(3953), - [anon_sym___alignof] = ACTIONS(3953), - [anon_sym__alignof] = ACTIONS(3953), - [anon_sym_alignof] = ACTIONS(3953), - [anon_sym__Alignof] = ACTIONS(3953), - [anon_sym_offsetof] = ACTIONS(3953), - [anon_sym__Generic] = ACTIONS(3953), - [anon_sym_asm] = ACTIONS(3953), - [anon_sym___asm__] = ACTIONS(3953), - [anon_sym___asm] = ACTIONS(3953), - [sym_number_literal] = ACTIONS(3955), - [anon_sym_L_SQUOTE] = ACTIONS(3955), - [anon_sym_u_SQUOTE] = ACTIONS(3955), - [anon_sym_U_SQUOTE] = ACTIONS(3955), - [anon_sym_u8_SQUOTE] = ACTIONS(3955), - [anon_sym_SQUOTE] = ACTIONS(3955), - [anon_sym_L_DQUOTE] = ACTIONS(3955), - [anon_sym_u_DQUOTE] = ACTIONS(3955), - [anon_sym_U_DQUOTE] = ACTIONS(3955), - [anon_sym_u8_DQUOTE] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3955), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [anon_sym_NULL] = ACTIONS(3953), - [anon_sym_nullptr] = ACTIONS(3953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3953), - [anon_sym_decltype] = ACTIONS(3953), - [anon_sym_typename] = ACTIONS(3953), - [anon_sym_template] = ACTIONS(3953), - [anon_sym_try] = ACTIONS(3953), - [anon_sym_delete] = ACTIONS(3953), - [anon_sym_throw] = ACTIONS(3953), - [anon_sym_co_return] = ACTIONS(3953), - [anon_sym_co_yield] = ACTIONS(3953), - [anon_sym_R_DQUOTE] = ACTIONS(3955), - [anon_sym_LR_DQUOTE] = ACTIONS(3955), - [anon_sym_uR_DQUOTE] = ACTIONS(3955), - [anon_sym_UR_DQUOTE] = ACTIONS(3955), - [anon_sym_u8R_DQUOTE] = ACTIONS(3955), - [anon_sym_co_await] = ACTIONS(3953), - [anon_sym_new] = ACTIONS(3953), - [anon_sym_requires] = ACTIONS(3953), - [sym_this] = ACTIONS(3953), + [STATE(368)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token2] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [aux_sym_preproc_else_token1] = ACTIONS(3652), + [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(912)] = { - [sym_else_clause] = STATE(948), - [sym_identifier] = ACTIONS(2615), - [anon_sym_LPAREN2] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2615), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym___extension__] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2615), - [anon_sym_virtual] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym___attribute__] = ACTIONS(2615), - [anon_sym___attribute] = ACTIONS(2615), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), - [anon_sym___declspec] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2615), - [anon_sym_unsigned] = ACTIONS(2615), - [anon_sym_long] = ACTIONS(2615), - [anon_sym_short] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_register] = ACTIONS(2615), - [anon_sym_inline] = ACTIONS(2615), - [anon_sym___inline] = ACTIONS(2615), - [anon_sym___inline__] = ACTIONS(2615), - [anon_sym___forceinline] = ACTIONS(2615), - [anon_sym_thread_local] = ACTIONS(2615), - [anon_sym___thread] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_constexpr] = ACTIONS(2615), - [anon_sym_volatile] = ACTIONS(2615), - [anon_sym_restrict] = ACTIONS(2615), - [anon_sym___restrict__] = ACTIONS(2615), - [anon_sym__Atomic] = ACTIONS(2615), - [anon_sym__Noreturn] = ACTIONS(2615), - [anon_sym_noreturn] = ACTIONS(2615), - [anon_sym__Nonnull] = ACTIONS(2615), - [anon_sym_mutable] = ACTIONS(2615), - [anon_sym_constinit] = ACTIONS(2615), - [anon_sym_consteval] = ACTIONS(2615), - [anon_sym_alignas] = ACTIONS(2615), - [anon_sym__Alignas] = ACTIONS(2615), - [sym_primitive_type] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_do] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_goto] = ACTIONS(2615), - [anon_sym___try] = ACTIONS(2615), - [anon_sym___leave] = ACTIONS(2615), - [anon_sym_not] = ACTIONS(2615), - [anon_sym_compl] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_sizeof] = ACTIONS(2615), - [anon_sym___alignof__] = ACTIONS(2615), - [anon_sym___alignof] = ACTIONS(2615), - [anon_sym__alignof] = ACTIONS(2615), - [anon_sym_alignof] = ACTIONS(2615), - [anon_sym__Alignof] = ACTIONS(2615), - [anon_sym_offsetof] = ACTIONS(2615), - [anon_sym__Generic] = ACTIONS(2615), - [anon_sym_asm] = ACTIONS(2615), - [anon_sym___asm__] = ACTIONS(2615), - [anon_sym___asm] = ACTIONS(2615), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_L_SQUOTE] = ACTIONS(2617), - [anon_sym_u_SQUOTE] = ACTIONS(2617), - [anon_sym_U_SQUOTE] = ACTIONS(2617), - [anon_sym_u8_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_L_DQUOTE] = ACTIONS(2617), - [anon_sym_u_DQUOTE] = ACTIONS(2617), - [anon_sym_U_DQUOTE] = ACTIONS(2617), - [anon_sym_u8_DQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_true] = ACTIONS(2615), - [sym_false] = ACTIONS(2615), - [anon_sym_NULL] = ACTIONS(2615), - [anon_sym_nullptr] = ACTIONS(2615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2615), - [anon_sym_decltype] = ACTIONS(2615), - [anon_sym_typename] = ACTIONS(2615), - [anon_sym_template] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_delete] = ACTIONS(2615), - [anon_sym_throw] = ACTIONS(2615), - [anon_sym_co_return] = ACTIONS(2615), - [anon_sym_co_yield] = ACTIONS(2615), - [anon_sym_R_DQUOTE] = ACTIONS(2617), - [anon_sym_LR_DQUOTE] = ACTIONS(2617), - [anon_sym_uR_DQUOTE] = ACTIONS(2617), - [anon_sym_UR_DQUOTE] = ACTIONS(2617), - [anon_sym_u8R_DQUOTE] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2615), - [anon_sym_new] = ACTIONS(2615), - [anon_sym_requires] = ACTIONS(2615), - [sym_this] = ACTIONS(2615), + [STATE(369)] = { + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token2] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [aux_sym_preproc_else_token1] = ACTIONS(3656), + [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, - [STATE(913)] = { - [sym_identifier] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym___try] = ACTIONS(2621), - [anon_sym___leave] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_compl] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [anon_sym___alignof__] = ACTIONS(2621), - [anon_sym___alignof] = ACTIONS(2621), - [anon_sym__alignof] = ACTIONS(2621), - [anon_sym_alignof] = ACTIONS(2621), - [anon_sym__Alignof] = ACTIONS(2621), - [anon_sym_offsetof] = ACTIONS(2621), - [anon_sym__Generic] = ACTIONS(2621), - [anon_sym_asm] = ACTIONS(2621), - [anon_sym___asm__] = ACTIONS(2621), - [anon_sym___asm] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [anon_sym_NULL] = ACTIONS(2621), - [anon_sym_nullptr] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_R_DQUOTE] = ACTIONS(2623), - [anon_sym_LR_DQUOTE] = ACTIONS(2623), - [anon_sym_uR_DQUOTE] = ACTIONS(2623), - [anon_sym_UR_DQUOTE] = ACTIONS(2623), - [anon_sym_u8R_DQUOTE] = ACTIONS(2623), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), + [STATE(370)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [aux_sym_preproc_else_token1] = ACTIONS(3660), + [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, - [STATE(914)] = { - [sym_identifier] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_else] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym___try] = ACTIONS(1942), - [anon_sym___leave] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_compl] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1942), - [anon_sym___alignof__] = ACTIONS(1942), - [anon_sym___alignof] = ACTIONS(1942), - [anon_sym__alignof] = ACTIONS(1942), - [anon_sym_alignof] = ACTIONS(1942), - [anon_sym__Alignof] = ACTIONS(1942), - [anon_sym_offsetof] = ACTIONS(1942), - [anon_sym__Generic] = ACTIONS(1942), - [anon_sym_asm] = ACTIONS(1942), - [anon_sym___asm__] = ACTIONS(1942), - [anon_sym___asm] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [anon_sym_NULL] = ACTIONS(1942), - [anon_sym_nullptr] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_try] = ACTIONS(1942), - [anon_sym_delete] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), - [anon_sym_R_DQUOTE] = ACTIONS(1940), - [anon_sym_LR_DQUOTE] = ACTIONS(1940), - [anon_sym_uR_DQUOTE] = ACTIONS(1940), - [anon_sym_UR_DQUOTE] = ACTIONS(1940), - [anon_sym_u8R_DQUOTE] = ACTIONS(1940), - [anon_sym_co_await] = ACTIONS(1942), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_requires] = ACTIONS(1942), - [sym_this] = ACTIONS(1942), + [STATE(371)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), }, - [STATE(915)] = { - [sym_identifier] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym___try] = ACTIONS(1938), - [anon_sym___leave] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1938), - [anon_sym_compl] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1938), - [anon_sym___alignof__] = ACTIONS(1938), - [anon_sym___alignof] = ACTIONS(1938), - [anon_sym__alignof] = ACTIONS(1938), - [anon_sym_alignof] = ACTIONS(1938), - [anon_sym__Alignof] = ACTIONS(1938), - [anon_sym_offsetof] = ACTIONS(1938), - [anon_sym__Generic] = ACTIONS(1938), - [anon_sym_asm] = ACTIONS(1938), - [anon_sym___asm__] = ACTIONS(1938), - [anon_sym___asm] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [anon_sym_NULL] = ACTIONS(1938), - [anon_sym_nullptr] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_try] = ACTIONS(1938), - [anon_sym_delete] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_co_return] = ACTIONS(1938), - [anon_sym_co_yield] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), - [anon_sym_R_DQUOTE] = ACTIONS(1936), - [anon_sym_LR_DQUOTE] = ACTIONS(1936), - [anon_sym_uR_DQUOTE] = ACTIONS(1936), - [anon_sym_UR_DQUOTE] = ACTIONS(1936), - [anon_sym_u8R_DQUOTE] = ACTIONS(1936), - [anon_sym_co_await] = ACTIONS(1938), - [anon_sym_new] = ACTIONS(1938), - [anon_sym_requires] = ACTIONS(1938), - [sym_this] = ACTIONS(1938), + [STATE(372)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, - [STATE(916)] = { - [sym_else_clause] = STATE(951), - [sym_identifier] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym___extension__] = ACTIONS(2625), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym___attribute] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym___inline] = ACTIONS(2625), - [anon_sym___inline__] = ACTIONS(2625), - [anon_sym___forceinline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym___thread] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym___restrict__] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym__Noreturn] = ACTIONS(2625), - [anon_sym_noreturn] = ACTIONS(2625), - [anon_sym__Nonnull] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_alignas] = ACTIONS(2625), - [anon_sym__Alignas] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym___try] = ACTIONS(2625), - [anon_sym___leave] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_compl] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [anon_sym___alignof__] = ACTIONS(2625), - [anon_sym___alignof] = ACTIONS(2625), - [anon_sym__alignof] = ACTIONS(2625), - [anon_sym_alignof] = ACTIONS(2625), - [anon_sym__Alignof] = ACTIONS(2625), - [anon_sym_offsetof] = ACTIONS(2625), - [anon_sym__Generic] = ACTIONS(2625), - [anon_sym_asm] = ACTIONS(2625), - [anon_sym___asm__] = ACTIONS(2625), - [anon_sym___asm] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [anon_sym_NULL] = ACTIONS(2625), - [anon_sym_nullptr] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_R_DQUOTE] = ACTIONS(2627), - [anon_sym_LR_DQUOTE] = ACTIONS(2627), - [anon_sym_uR_DQUOTE] = ACTIONS(2627), - [anon_sym_UR_DQUOTE] = ACTIONS(2627), - [anon_sym_u8R_DQUOTE] = ACTIONS(2627), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), + [STATE(373)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(917)] = { - [sym_identifier] = ACTIONS(2723), - [anon_sym_LPAREN2] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym___extension__] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2723), - [anon_sym_virtual] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym___attribute__] = ACTIONS(2723), - [anon_sym___attribute] = ACTIONS(2723), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2725), - [anon_sym___declspec] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2723), - [anon_sym_unsigned] = ACTIONS(2723), - [anon_sym_long] = ACTIONS(2723), - [anon_sym_short] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_register] = ACTIONS(2723), - [anon_sym_inline] = ACTIONS(2723), - [anon_sym___inline] = ACTIONS(2723), - [anon_sym___inline__] = ACTIONS(2723), - [anon_sym___forceinline] = ACTIONS(2723), - [anon_sym_thread_local] = ACTIONS(2723), - [anon_sym___thread] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_constexpr] = ACTIONS(2723), - [anon_sym_volatile] = ACTIONS(2723), - [anon_sym_restrict] = ACTIONS(2723), - [anon_sym___restrict__] = ACTIONS(2723), - [anon_sym__Atomic] = ACTIONS(2723), - [anon_sym__Noreturn] = ACTIONS(2723), - [anon_sym_noreturn] = ACTIONS(2723), - [anon_sym__Nonnull] = ACTIONS(2723), - [anon_sym_mutable] = ACTIONS(2723), - [anon_sym_constinit] = ACTIONS(2723), - [anon_sym_consteval] = ACTIONS(2723), - [anon_sym_alignas] = ACTIONS(2723), - [anon_sym__Alignas] = ACTIONS(2723), - [sym_primitive_type] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_switch] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_do] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_goto] = ACTIONS(2723), - [anon_sym___try] = ACTIONS(2723), - [anon_sym___leave] = ACTIONS(2723), - [anon_sym_not] = ACTIONS(2723), - [anon_sym_compl] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2725), - [anon_sym_sizeof] = ACTIONS(2723), - [anon_sym___alignof__] = ACTIONS(2723), - [anon_sym___alignof] = ACTIONS(2723), - [anon_sym__alignof] = ACTIONS(2723), - [anon_sym_alignof] = ACTIONS(2723), - [anon_sym__Alignof] = ACTIONS(2723), - [anon_sym_offsetof] = ACTIONS(2723), - [anon_sym__Generic] = ACTIONS(2723), - [anon_sym_asm] = ACTIONS(2723), - [anon_sym___asm__] = ACTIONS(2723), - [anon_sym___asm] = ACTIONS(2723), - [sym_number_literal] = ACTIONS(2725), - [anon_sym_L_SQUOTE] = ACTIONS(2725), - [anon_sym_u_SQUOTE] = ACTIONS(2725), - [anon_sym_U_SQUOTE] = ACTIONS(2725), - [anon_sym_u8_SQUOTE] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2725), - [anon_sym_L_DQUOTE] = ACTIONS(2725), - [anon_sym_u_DQUOTE] = ACTIONS(2725), - [anon_sym_U_DQUOTE] = ACTIONS(2725), - [anon_sym_u8_DQUOTE] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_true] = ACTIONS(2723), - [sym_false] = ACTIONS(2723), - [anon_sym_NULL] = ACTIONS(2723), - [anon_sym_nullptr] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2723), - [anon_sym_decltype] = ACTIONS(2723), - [anon_sym_typename] = ACTIONS(2723), - [anon_sym_template] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_delete] = ACTIONS(2723), - [anon_sym_throw] = ACTIONS(2723), - [anon_sym_co_return] = ACTIONS(2723), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2725), - [anon_sym_LR_DQUOTE] = ACTIONS(2725), - [anon_sym_uR_DQUOTE] = ACTIONS(2725), - [anon_sym_UR_DQUOTE] = ACTIONS(2725), - [anon_sym_u8R_DQUOTE] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2723), - [anon_sym_new] = ACTIONS(2723), - [anon_sym_requires] = ACTIONS(2723), - [sym_this] = ACTIONS(2723), + [STATE(374)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_include_token1] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token2] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym___cdecl] = ACTIONS(3676), + [anon_sym___clrcall] = ACTIONS(3676), + [anon_sym___stdcall] = ACTIONS(3676), + [anon_sym___fastcall] = ACTIONS(3676), + [anon_sym___thiscall] = ACTIONS(3676), + [anon_sym___vectorcall] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_goto] = ACTIONS(3676), + [anon_sym___try] = ACTIONS(3676), + [anon_sym___leave] = ACTIONS(3676), + [anon_sym_not] = ACTIONS(3676), + [anon_sym_compl] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym___alignof__] = ACTIONS(3676), + [anon_sym___alignof] = ACTIONS(3676), + [anon_sym__alignof] = ACTIONS(3676), + [anon_sym_alignof] = ACTIONS(3676), + [anon_sym__Alignof] = ACTIONS(3676), + [anon_sym_offsetof] = ACTIONS(3676), + [anon_sym__Generic] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [anon_sym_asm] = ACTIONS(3676), + [anon_sym___asm__] = ACTIONS(3676), + [anon_sym___asm] = ACTIONS(3676), + [sym_number_literal] = ACTIONS(3678), + [anon_sym_L_SQUOTE] = ACTIONS(3678), + [anon_sym_u_SQUOTE] = ACTIONS(3678), + [anon_sym_U_SQUOTE] = ACTIONS(3678), + [anon_sym_u8_SQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_L_DQUOTE] = ACTIONS(3678), + [anon_sym_u_DQUOTE] = ACTIONS(3678), + [anon_sym_U_DQUOTE] = ACTIONS(3678), + [anon_sym_u8_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [anon_sym_NULL] = ACTIONS(3676), + [anon_sym_nullptr] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_concept] = ACTIONS(3676), + [anon_sym_co_return] = ACTIONS(3676), + [anon_sym_co_yield] = ACTIONS(3676), + [anon_sym_R_DQUOTE] = ACTIONS(3678), + [anon_sym_LR_DQUOTE] = ACTIONS(3678), + [anon_sym_uR_DQUOTE] = ACTIONS(3678), + [anon_sym_UR_DQUOTE] = ACTIONS(3678), + [anon_sym_u8R_DQUOTE] = ACTIONS(3678), + [anon_sym_co_await] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_requires] = ACTIONS(3676), + [anon_sym_CARET_CARET] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [sym_this] = ACTIONS(3676), }, - [STATE(918)] = { - [sym_identifier] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym___extension__] = ACTIONS(2739), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym___attribute] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym___inline] = ACTIONS(2739), - [anon_sym___inline__] = ACTIONS(2739), - [anon_sym___forceinline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym___thread] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym___restrict__] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym__Noreturn] = ACTIONS(2739), - [anon_sym_noreturn] = ACTIONS(2739), - [anon_sym__Nonnull] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_alignas] = ACTIONS(2739), - [anon_sym__Alignas] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym___try] = ACTIONS(2739), - [anon_sym___leave] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_compl] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [anon_sym___alignof__] = ACTIONS(2739), - [anon_sym___alignof] = ACTIONS(2739), - [anon_sym__alignof] = ACTIONS(2739), - [anon_sym_alignof] = ACTIONS(2739), - [anon_sym__Alignof] = ACTIONS(2739), - [anon_sym_offsetof] = ACTIONS(2739), - [anon_sym__Generic] = ACTIONS(2739), - [anon_sym_asm] = ACTIONS(2739), - [anon_sym___asm__] = ACTIONS(2739), - [anon_sym___asm] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [anon_sym_NULL] = ACTIONS(2739), - [anon_sym_nullptr] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_R_DQUOTE] = ACTIONS(2741), - [anon_sym_LR_DQUOTE] = ACTIONS(2741), - [anon_sym_uR_DQUOTE] = ACTIONS(2741), - [anon_sym_UR_DQUOTE] = ACTIONS(2741), - [anon_sym_u8R_DQUOTE] = ACTIONS(2741), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), + [STATE(375)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [anon_sym___asm] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [anon_sym_CARET_CARET] = ACTIONS(3682), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [sym_this] = ACTIONS(3680), }, - [STATE(919)] = { - [sym_identifier] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), + [STATE(376)] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [aux_sym_preproc_else_token1] = ACTIONS(3684), + [aux_sym_preproc_elif_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(920)] = { - [sym_identifier] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_goto] = ACTIONS(2641), - [anon_sym___try] = ACTIONS(2641), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_compl] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_sizeof] = ACTIONS(2641), - [anon_sym___alignof__] = ACTIONS(2641), - [anon_sym___alignof] = ACTIONS(2641), - [anon_sym__alignof] = ACTIONS(2641), - [anon_sym_alignof] = ACTIONS(2641), - [anon_sym__Alignof] = ACTIONS(2641), - [anon_sym_offsetof] = ACTIONS(2641), - [anon_sym__Generic] = ACTIONS(2641), - [anon_sym_asm] = ACTIONS(2641), - [anon_sym___asm__] = ACTIONS(2641), - [anon_sym___asm] = ACTIONS(2641), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_L_SQUOTE] = ACTIONS(2643), - [anon_sym_u_SQUOTE] = ACTIONS(2643), - [anon_sym_U_SQUOTE] = ACTIONS(2643), - [anon_sym_u8_SQUOTE] = ACTIONS(2643), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [anon_sym_u_DQUOTE] = ACTIONS(2643), - [anon_sym_U_DQUOTE] = ACTIONS(2643), - [anon_sym_u8_DQUOTE] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [anon_sym_NULL] = ACTIONS(2641), - [anon_sym_nullptr] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_co_return] = ACTIONS(2641), - [anon_sym_co_yield] = ACTIONS(2641), - [anon_sym_R_DQUOTE] = ACTIONS(2643), - [anon_sym_LR_DQUOTE] = ACTIONS(2643), - [anon_sym_uR_DQUOTE] = ACTIONS(2643), - [anon_sym_UR_DQUOTE] = ACTIONS(2643), - [anon_sym_u8R_DQUOTE] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_requires] = ACTIONS(2641), - [sym_this] = ACTIONS(2641), + [STATE(377)] = { + [sym_identifier] = ACTIONS(3688), + [aux_sym_preproc_include_token1] = ACTIONS(3688), + [aux_sym_preproc_def_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token2] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), + [aux_sym_preproc_else_token1] = ACTIONS(3688), + [aux_sym_preproc_elif_token1] = ACTIONS(3688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3688), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3688), + [sym_preproc_directive] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_AMP_AMP] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym___extension__] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_virtual] = ACTIONS(3688), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym___attribute__] = ACTIONS(3688), + [anon_sym___attribute] = ACTIONS(3688), + [anon_sym_using] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym___declspec] = ACTIONS(3688), + [anon_sym___based] = ACTIONS(3688), + [anon_sym___cdecl] = ACTIONS(3688), + [anon_sym___clrcall] = ACTIONS(3688), + [anon_sym___stdcall] = ACTIONS(3688), + [anon_sym___fastcall] = ACTIONS(3688), + [anon_sym___thiscall] = ACTIONS(3688), + [anon_sym___vectorcall] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym___inline] = ACTIONS(3688), + [anon_sym___inline__] = ACTIONS(3688), + [anon_sym___forceinline] = ACTIONS(3688), + [anon_sym_thread_local] = ACTIONS(3688), + [anon_sym___thread] = ACTIONS(3688), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_restrict] = ACTIONS(3688), + [anon_sym___restrict__] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [anon_sym__Noreturn] = ACTIONS(3688), + [anon_sym_noreturn] = ACTIONS(3688), + [anon_sym__Nonnull] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [anon_sym_constinit] = ACTIONS(3688), + [anon_sym_consteval] = ACTIONS(3688), + [anon_sym_alignas] = ACTIONS(3688), + [anon_sym__Alignas] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3688), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym___try] = ACTIONS(3688), + [anon_sym___leave] = ACTIONS(3688), + [anon_sym_not] = ACTIONS(3688), + [anon_sym_compl] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym___alignof__] = ACTIONS(3688), + [anon_sym___alignof] = ACTIONS(3688), + [anon_sym__alignof] = ACTIONS(3688), + [anon_sym_alignof] = ACTIONS(3688), + [anon_sym__Alignof] = ACTIONS(3688), + [anon_sym_offsetof] = ACTIONS(3688), + [anon_sym__Generic] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_asm] = ACTIONS(3688), + [anon_sym___asm__] = ACTIONS(3688), + [anon_sym___asm] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_L_SQUOTE] = ACTIONS(3690), + [anon_sym_u_SQUOTE] = ACTIONS(3690), + [anon_sym_U_SQUOTE] = ACTIONS(3690), + [anon_sym_u8_SQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_L_DQUOTE] = ACTIONS(3690), + [anon_sym_u_DQUOTE] = ACTIONS(3690), + [anon_sym_U_DQUOTE] = ACTIONS(3690), + [anon_sym_u8_DQUOTE] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [anon_sym_NULL] = ACTIONS(3688), + [anon_sym_nullptr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3688), + [anon_sym_decltype] = ACTIONS(3688), + [anon_sym_explicit] = ACTIONS(3688), + [anon_sym_template] = ACTIONS(3688), + [anon_sym_operator] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_throw] = ACTIONS(3688), + [anon_sym_namespace] = ACTIONS(3688), + [anon_sym_static_assert] = ACTIONS(3688), + [anon_sym_concept] = ACTIONS(3688), + [anon_sym_co_return] = ACTIONS(3688), + [anon_sym_co_yield] = ACTIONS(3688), + [anon_sym_R_DQUOTE] = ACTIONS(3690), + [anon_sym_LR_DQUOTE] = ACTIONS(3690), + [anon_sym_uR_DQUOTE] = ACTIONS(3690), + [anon_sym_UR_DQUOTE] = ACTIONS(3690), + [anon_sym_u8R_DQUOTE] = ACTIONS(3690), + [anon_sym_co_await] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_requires] = ACTIONS(3688), + [anon_sym_CARET_CARET] = ACTIONS(3690), + [anon_sym_LBRACK_COLON] = ACTIONS(3690), + [sym_this] = ACTIONS(3688), }, - [STATE(921)] = { - [sym_identifier] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), + [STATE(378)] = { + [sym_identifier] = ACTIONS(3692), + [aux_sym_preproc_include_token1] = ACTIONS(3692), + [aux_sym_preproc_def_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token2] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), + [aux_sym_preproc_else_token1] = ACTIONS(3692), + [aux_sym_preproc_elif_token1] = ACTIONS(3692), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3692), + [sym_preproc_directive] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym___extension__] = ACTIONS(3692), + [anon_sym_typedef] = ACTIONS(3692), + [anon_sym_virtual] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3692), + [anon_sym___attribute__] = ACTIONS(3692), + [anon_sym___attribute] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), + [anon_sym___declspec] = ACTIONS(3692), + [anon_sym___based] = ACTIONS(3692), + [anon_sym___cdecl] = ACTIONS(3692), + [anon_sym___clrcall] = ACTIONS(3692), + [anon_sym___stdcall] = ACTIONS(3692), + [anon_sym___fastcall] = ACTIONS(3692), + [anon_sym___thiscall] = ACTIONS(3692), + [anon_sym___vectorcall] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_signed] = ACTIONS(3692), + [anon_sym_unsigned] = ACTIONS(3692), + [anon_sym_long] = ACTIONS(3692), + [anon_sym_short] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_register] = ACTIONS(3692), + [anon_sym_inline] = ACTIONS(3692), + [anon_sym___inline] = ACTIONS(3692), + [anon_sym___inline__] = ACTIONS(3692), + [anon_sym___forceinline] = ACTIONS(3692), + [anon_sym_thread_local] = ACTIONS(3692), + [anon_sym___thread] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym___restrict__] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym__Noreturn] = ACTIONS(3692), + [anon_sym_noreturn] = ACTIONS(3692), + [anon_sym__Nonnull] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_alignas] = ACTIONS(3692), + [anon_sym__Alignas] = ACTIONS(3692), + [sym_primitive_type] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3692), + [anon_sym_union] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3692), + [anon_sym___leave] = ACTIONS(3692), + [anon_sym_not] = ACTIONS(3692), + [anon_sym_compl] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_sizeof] = ACTIONS(3692), + [anon_sym___alignof__] = ACTIONS(3692), + [anon_sym___alignof] = ACTIONS(3692), + [anon_sym__alignof] = ACTIONS(3692), + [anon_sym_alignof] = ACTIONS(3692), + [anon_sym__Alignof] = ACTIONS(3692), + [anon_sym_offsetof] = ACTIONS(3692), + [anon_sym__Generic] = ACTIONS(3692), + [anon_sym_typename] = ACTIONS(3692), + [anon_sym_asm] = ACTIONS(3692), + [anon_sym___asm__] = ACTIONS(3692), + [anon_sym___asm] = ACTIONS(3692), + [sym_number_literal] = ACTIONS(3694), + [anon_sym_L_SQUOTE] = ACTIONS(3694), + [anon_sym_u_SQUOTE] = ACTIONS(3694), + [anon_sym_U_SQUOTE] = ACTIONS(3694), + [anon_sym_u8_SQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_L_DQUOTE] = ACTIONS(3694), + [anon_sym_u_DQUOTE] = ACTIONS(3694), + [anon_sym_U_DQUOTE] = ACTIONS(3694), + [anon_sym_u8_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [anon_sym_NULL] = ACTIONS(3692), + [anon_sym_nullptr] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_explicit] = ACTIONS(3692), + [anon_sym_template] = ACTIONS(3692), + [anon_sym_operator] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_static_assert] = ACTIONS(3692), + [anon_sym_concept] = ACTIONS(3692), + [anon_sym_co_return] = ACTIONS(3692), + [anon_sym_co_yield] = ACTIONS(3692), + [anon_sym_R_DQUOTE] = ACTIONS(3694), + [anon_sym_LR_DQUOTE] = ACTIONS(3694), + [anon_sym_uR_DQUOTE] = ACTIONS(3694), + [anon_sym_UR_DQUOTE] = ACTIONS(3694), + [anon_sym_u8R_DQUOTE] = ACTIONS(3694), + [anon_sym_co_await] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_requires] = ACTIONS(3692), + [anon_sym_CARET_CARET] = ACTIONS(3694), + [anon_sym_LBRACK_COLON] = ACTIONS(3694), + [sym_this] = ACTIONS(3692), }, - [STATE(922)] = { - [sym_identifier] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2683), - [anon_sym_PLUS] = ACTIONS(2683), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_switch] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_do] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_goto] = ACTIONS(2683), - [anon_sym___try] = ACTIONS(2683), - [anon_sym___leave] = ACTIONS(2683), - [anon_sym_not] = ACTIONS(2683), - [anon_sym_compl] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2683), - [anon_sym___alignof__] = ACTIONS(2683), - [anon_sym___alignof] = ACTIONS(2683), - [anon_sym__alignof] = ACTIONS(2683), - [anon_sym_alignof] = ACTIONS(2683), - [anon_sym__Alignof] = ACTIONS(2683), - [anon_sym_offsetof] = ACTIONS(2683), - [anon_sym__Generic] = ACTIONS(2683), - [anon_sym_asm] = ACTIONS(2683), - [anon_sym___asm__] = ACTIONS(2683), - [anon_sym___asm] = ACTIONS(2683), - [sym_number_literal] = ACTIONS(2685), - [anon_sym_L_SQUOTE] = ACTIONS(2685), - [anon_sym_u_SQUOTE] = ACTIONS(2685), - [anon_sym_U_SQUOTE] = ACTIONS(2685), - [anon_sym_u8_SQUOTE] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2685), - [anon_sym_L_DQUOTE] = ACTIONS(2685), - [anon_sym_u_DQUOTE] = ACTIONS(2685), - [anon_sym_U_DQUOTE] = ACTIONS(2685), - [anon_sym_u8_DQUOTE] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_true] = ACTIONS(2683), - [sym_false] = ACTIONS(2683), - [anon_sym_NULL] = ACTIONS(2683), - [anon_sym_nullptr] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_delete] = ACTIONS(2683), - [anon_sym_throw] = ACTIONS(2683), - [anon_sym_co_return] = ACTIONS(2683), - [anon_sym_co_yield] = ACTIONS(2683), - [anon_sym_R_DQUOTE] = ACTIONS(2685), - [anon_sym_LR_DQUOTE] = ACTIONS(2685), - [anon_sym_uR_DQUOTE] = ACTIONS(2685), - [anon_sym_UR_DQUOTE] = ACTIONS(2685), - [anon_sym_u8R_DQUOTE] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2683), - [anon_sym_new] = ACTIONS(2683), - [anon_sym_requires] = ACTIONS(2683), - [sym_this] = ACTIONS(2683), + [STATE(379)] = { + [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(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [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(2910), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = 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(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [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_typename] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [anon_sym___asm] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [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_explicit] = 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_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(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [anon_sym_CARET_CARET] = ACTIONS(2910), + [anon_sym_LBRACK_COLON] = ACTIONS(2910), + [sym_this] = ACTIONS(2905), }, - [STATE(923)] = { - [sym_identifier] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym___try] = ACTIONS(2747), - [anon_sym___leave] = ACTIONS(2747), - [anon_sym_not] = ACTIONS(2747), - [anon_sym_compl] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [anon_sym___alignof__] = ACTIONS(2747), - [anon_sym___alignof] = ACTIONS(2747), - [anon_sym__alignof] = ACTIONS(2747), - [anon_sym_alignof] = ACTIONS(2747), - [anon_sym__Alignof] = ACTIONS(2747), - [anon_sym_offsetof] = ACTIONS(2747), - [anon_sym__Generic] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym___asm__] = ACTIONS(2747), - [anon_sym___asm] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [anon_sym_NULL] = ACTIONS(2747), - [anon_sym_nullptr] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_R_DQUOTE] = ACTIONS(2749), - [anon_sym_LR_DQUOTE] = ACTIONS(2749), - [anon_sym_uR_DQUOTE] = ACTIONS(2749), - [anon_sym_UR_DQUOTE] = ACTIONS(2749), - [anon_sym_u8R_DQUOTE] = ACTIONS(2749), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), + [STATE(380)] = { + [sym_identifier] = ACTIONS(3696), + [aux_sym_preproc_include_token1] = ACTIONS(3696), + [aux_sym_preproc_def_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token2] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), + [aux_sym_preproc_else_token1] = ACTIONS(3696), + [aux_sym_preproc_elif_token1] = ACTIONS(3696), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3696), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3696), + [sym_preproc_directive] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3696), + [anon_sym_virtual] = ACTIONS(3696), + [anon_sym_extern] = ACTIONS(3696), + [anon_sym___attribute__] = ACTIONS(3696), + [anon_sym___attribute] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), + [anon_sym___declspec] = ACTIONS(3696), + [anon_sym___based] = ACTIONS(3696), + [anon_sym___cdecl] = ACTIONS(3696), + [anon_sym___clrcall] = ACTIONS(3696), + [anon_sym___stdcall] = ACTIONS(3696), + [anon_sym___fastcall] = ACTIONS(3696), + [anon_sym___thiscall] = ACTIONS(3696), + [anon_sym___vectorcall] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3696), + [anon_sym_unsigned] = ACTIONS(3696), + [anon_sym_long] = ACTIONS(3696), + [anon_sym_short] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_register] = ACTIONS(3696), + [anon_sym_inline] = ACTIONS(3696), + [anon_sym___inline] = ACTIONS(3696), + [anon_sym___inline__] = ACTIONS(3696), + [anon_sym___forceinline] = ACTIONS(3696), + [anon_sym_thread_local] = ACTIONS(3696), + [anon_sym___thread] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_constexpr] = ACTIONS(3696), + [anon_sym_volatile] = ACTIONS(3696), + [anon_sym_restrict] = ACTIONS(3696), + [anon_sym___restrict__] = ACTIONS(3696), + [anon_sym__Atomic] = ACTIONS(3696), + [anon_sym__Noreturn] = ACTIONS(3696), + [anon_sym_noreturn] = ACTIONS(3696), + [anon_sym__Nonnull] = ACTIONS(3696), + [anon_sym_mutable] = ACTIONS(3696), + [anon_sym_constinit] = ACTIONS(3696), + [anon_sym_consteval] = ACTIONS(3696), + [anon_sym_alignas] = ACTIONS(3696), + [anon_sym__Alignas] = ACTIONS(3696), + [sym_primitive_type] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3696), + [anon_sym_union] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_goto] = ACTIONS(3696), + [anon_sym___try] = ACTIONS(3696), + [anon_sym___leave] = ACTIONS(3696), + [anon_sym_not] = ACTIONS(3696), + [anon_sym_compl] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3696), + [anon_sym___alignof__] = ACTIONS(3696), + [anon_sym___alignof] = ACTIONS(3696), + [anon_sym__alignof] = ACTIONS(3696), + [anon_sym_alignof] = ACTIONS(3696), + [anon_sym__Alignof] = ACTIONS(3696), + [anon_sym_offsetof] = ACTIONS(3696), + [anon_sym__Generic] = ACTIONS(3696), + [anon_sym_typename] = ACTIONS(3696), + [anon_sym_asm] = ACTIONS(3696), + [anon_sym___asm__] = ACTIONS(3696), + [anon_sym___asm] = ACTIONS(3696), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_L_SQUOTE] = ACTIONS(3698), + [anon_sym_u_SQUOTE] = ACTIONS(3698), + [anon_sym_U_SQUOTE] = ACTIONS(3698), + [anon_sym_u8_SQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_L_DQUOTE] = ACTIONS(3698), + [anon_sym_u_DQUOTE] = ACTIONS(3698), + [anon_sym_U_DQUOTE] = ACTIONS(3698), + [anon_sym_u8_DQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [anon_sym_NULL] = ACTIONS(3696), + [anon_sym_nullptr] = ACTIONS(3696), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_decltype] = ACTIONS(3696), + [anon_sym_explicit] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_static_assert] = ACTIONS(3696), + [anon_sym_concept] = ACTIONS(3696), + [anon_sym_co_return] = ACTIONS(3696), + [anon_sym_co_yield] = ACTIONS(3696), + [anon_sym_R_DQUOTE] = ACTIONS(3698), + [anon_sym_LR_DQUOTE] = ACTIONS(3698), + [anon_sym_uR_DQUOTE] = ACTIONS(3698), + [anon_sym_UR_DQUOTE] = ACTIONS(3698), + [anon_sym_u8R_DQUOTE] = ACTIONS(3698), + [anon_sym_co_await] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_requires] = ACTIONS(3696), + [anon_sym_CARET_CARET] = ACTIONS(3698), + [anon_sym_LBRACK_COLON] = ACTIONS(3698), + [sym_this] = ACTIONS(3696), }, - [STATE(924)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_call_modifier] = STATE(4777), - [sym__declarator] = STATE(6887), - [sym__abstract_declarator] = STATE(7130), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_list] = STATE(3096), - [sym_parameter_declaration] = STATE(7500), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7500), - [sym_optional_parameter_declaration] = STATE(7500), - [sym_variadic_parameter_declaration] = STATE(7500), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5816), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4330), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(4334), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [sym_this] = ACTIONS(4336), + [STATE(381)] = { + [sym_identifier] = ACTIONS(3700), + [aux_sym_preproc_include_token1] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token2] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), + [aux_sym_preproc_else_token1] = ACTIONS(3700), + [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym___attribute] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym___based] = ACTIONS(3700), + [anon_sym___cdecl] = ACTIONS(3700), + [anon_sym___clrcall] = ACTIONS(3700), + [anon_sym___stdcall] = ACTIONS(3700), + [anon_sym___fastcall] = ACTIONS(3700), + [anon_sym___thiscall] = ACTIONS(3700), + [anon_sym___vectorcall] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym__Nonnull] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym__Alignas] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym___try] = ACTIONS(3700), + [anon_sym___leave] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym___asm] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_explicit] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_static_assert] = ACTIONS(3700), + [anon_sym_concept] = ACTIONS(3700), + [anon_sym_co_return] = ACTIONS(3700), + [anon_sym_co_yield] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [anon_sym_CARET_CARET] = ACTIONS(3702), + [anon_sym_LBRACK_COLON] = ACTIONS(3702), + [sym_this] = ACTIONS(3700), }, - [STATE(925)] = { - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym___extension__] = ACTIONS(2699), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym___attribute] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym___inline] = ACTIONS(2699), - [anon_sym___inline__] = ACTIONS(2699), - [anon_sym___forceinline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym___thread] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym___restrict__] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym__Noreturn] = ACTIONS(2699), - [anon_sym_noreturn] = ACTIONS(2699), - [anon_sym__Nonnull] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_alignas] = ACTIONS(2699), - [anon_sym__Alignas] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym___try] = ACTIONS(2699), - [anon_sym___leave] = ACTIONS(2699), - [anon_sym_not] = ACTIONS(2699), - [anon_sym_compl] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [anon_sym___alignof__] = ACTIONS(2699), - [anon_sym___alignof] = ACTIONS(2699), - [anon_sym__alignof] = ACTIONS(2699), - [anon_sym_alignof] = ACTIONS(2699), - [anon_sym__Alignof] = ACTIONS(2699), - [anon_sym_offsetof] = ACTIONS(2699), - [anon_sym__Generic] = ACTIONS(2699), - [anon_sym_asm] = ACTIONS(2699), - [anon_sym___asm__] = ACTIONS(2699), - [anon_sym___asm] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [anon_sym_NULL] = ACTIONS(2699), - [anon_sym_nullptr] = ACTIONS(2699), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_R_DQUOTE] = ACTIONS(2701), - [anon_sym_LR_DQUOTE] = ACTIONS(2701), - [anon_sym_uR_DQUOTE] = ACTIONS(2701), - [anon_sym_UR_DQUOTE] = ACTIONS(2701), - [anon_sym_u8R_DQUOTE] = ACTIONS(2701), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), + [STATE(382)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [aux_sym_preproc_else_token1] = ACTIONS(3704), + [aux_sym_preproc_elif_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(926)] = { - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2703), - [anon_sym_PLUS] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym___extension__] = ACTIONS(2703), - [anon_sym_typedef] = ACTIONS(2703), - [anon_sym_virtual] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym___attribute__] = ACTIONS(2703), - [anon_sym___attribute] = ACTIONS(2703), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2705), - [anon_sym___declspec] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym___inline] = ACTIONS(2703), - [anon_sym___inline__] = ACTIONS(2703), - [anon_sym___forceinline] = ACTIONS(2703), - [anon_sym_thread_local] = ACTIONS(2703), - [anon_sym___thread] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_constexpr] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym___restrict__] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym__Noreturn] = ACTIONS(2703), - [anon_sym_noreturn] = ACTIONS(2703), - [anon_sym__Nonnull] = ACTIONS(2703), - [anon_sym_mutable] = ACTIONS(2703), - [anon_sym_constinit] = ACTIONS(2703), - [anon_sym_consteval] = ACTIONS(2703), - [anon_sym_alignas] = ACTIONS(2703), - [anon_sym__Alignas] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_switch] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_do] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_goto] = ACTIONS(2703), - [anon_sym___try] = ACTIONS(2703), - [anon_sym___leave] = ACTIONS(2703), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_compl] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2705), - [anon_sym_sizeof] = ACTIONS(2703), - [anon_sym___alignof__] = ACTIONS(2703), - [anon_sym___alignof] = ACTIONS(2703), - [anon_sym__alignof] = ACTIONS(2703), - [anon_sym_alignof] = ACTIONS(2703), - [anon_sym__Alignof] = ACTIONS(2703), - [anon_sym_offsetof] = ACTIONS(2703), - [anon_sym__Generic] = ACTIONS(2703), - [anon_sym_asm] = ACTIONS(2703), - [anon_sym___asm__] = ACTIONS(2703), - [anon_sym___asm] = ACTIONS(2703), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_L_SQUOTE] = ACTIONS(2705), - [anon_sym_u_SQUOTE] = ACTIONS(2705), - [anon_sym_U_SQUOTE] = ACTIONS(2705), - [anon_sym_u8_SQUOTE] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2705), - [anon_sym_L_DQUOTE] = ACTIONS(2705), - [anon_sym_u_DQUOTE] = ACTIONS(2705), - [anon_sym_U_DQUOTE] = ACTIONS(2705), - [anon_sym_u8_DQUOTE] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_true] = ACTIONS(2703), - [sym_false] = ACTIONS(2703), - [anon_sym_NULL] = ACTIONS(2703), - [anon_sym_nullptr] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2703), - [anon_sym_decltype] = ACTIONS(2703), - [anon_sym_typename] = ACTIONS(2703), - [anon_sym_template] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2703), - [anon_sym_throw] = ACTIONS(2703), - [anon_sym_co_return] = ACTIONS(2703), - [anon_sym_co_yield] = ACTIONS(2703), - [anon_sym_R_DQUOTE] = ACTIONS(2705), - [anon_sym_LR_DQUOTE] = ACTIONS(2705), - [anon_sym_uR_DQUOTE] = ACTIONS(2705), - [anon_sym_UR_DQUOTE] = ACTIONS(2705), - [anon_sym_u8R_DQUOTE] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2703), - [anon_sym_new] = ACTIONS(2703), - [anon_sym_requires] = ACTIONS(2703), - [sym_this] = ACTIONS(2703), + [STATE(383)] = { + [sym_else_clause] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(927)] = { - [sym_identifier] = ACTIONS(2707), - [anon_sym_LPAREN2] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym___extension__] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2707), - [anon_sym_virtual] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym___attribute__] = ACTIONS(2707), - [anon_sym___attribute] = ACTIONS(2707), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), - [anon_sym___declspec] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym___inline] = ACTIONS(2707), - [anon_sym___inline__] = ACTIONS(2707), - [anon_sym___forceinline] = ACTIONS(2707), - [anon_sym_thread_local] = ACTIONS(2707), - [anon_sym___thread] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_constexpr] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym___restrict__] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym__Noreturn] = ACTIONS(2707), - [anon_sym_noreturn] = ACTIONS(2707), - [anon_sym__Nonnull] = ACTIONS(2707), - [anon_sym_mutable] = ACTIONS(2707), - [anon_sym_constinit] = ACTIONS(2707), - [anon_sym_consteval] = ACTIONS(2707), - [anon_sym_alignas] = ACTIONS(2707), - [anon_sym__Alignas] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_switch] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_do] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_goto] = ACTIONS(2707), - [anon_sym___try] = ACTIONS(2707), - [anon_sym___leave] = ACTIONS(2707), - [anon_sym_not] = ACTIONS(2707), - [anon_sym_compl] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_sizeof] = ACTIONS(2707), - [anon_sym___alignof__] = ACTIONS(2707), - [anon_sym___alignof] = ACTIONS(2707), - [anon_sym__alignof] = ACTIONS(2707), - [anon_sym_alignof] = ACTIONS(2707), - [anon_sym__Alignof] = ACTIONS(2707), - [anon_sym_offsetof] = ACTIONS(2707), - [anon_sym__Generic] = ACTIONS(2707), - [anon_sym_asm] = ACTIONS(2707), - [anon_sym___asm__] = ACTIONS(2707), - [anon_sym___asm] = ACTIONS(2707), - [sym_number_literal] = ACTIONS(2709), - [anon_sym_L_SQUOTE] = ACTIONS(2709), - [anon_sym_u_SQUOTE] = ACTIONS(2709), - [anon_sym_U_SQUOTE] = ACTIONS(2709), - [anon_sym_u8_SQUOTE] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2709), - [anon_sym_L_DQUOTE] = ACTIONS(2709), - [anon_sym_u_DQUOTE] = ACTIONS(2709), - [anon_sym_U_DQUOTE] = ACTIONS(2709), - [anon_sym_u8_DQUOTE] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_true] = ACTIONS(2707), - [sym_false] = ACTIONS(2707), - [anon_sym_NULL] = ACTIONS(2707), - [anon_sym_nullptr] = ACTIONS(2707), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2707), - [anon_sym_decltype] = ACTIONS(2707), - [anon_sym_typename] = ACTIONS(2707), - [anon_sym_template] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_delete] = ACTIONS(2707), - [anon_sym_throw] = ACTIONS(2707), - [anon_sym_co_return] = ACTIONS(2707), - [anon_sym_co_yield] = ACTIONS(2707), - [anon_sym_R_DQUOTE] = ACTIONS(2709), - [anon_sym_LR_DQUOTE] = ACTIONS(2709), - [anon_sym_uR_DQUOTE] = ACTIONS(2709), - [anon_sym_UR_DQUOTE] = ACTIONS(2709), - [anon_sym_u8R_DQUOTE] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2707), - [anon_sym_new] = ACTIONS(2707), - [anon_sym_requires] = ACTIONS(2707), - [sym_this] = ACTIONS(2707), + [STATE(384)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [aux_sym_preproc_else_token1] = ACTIONS(3708), + [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [STATE(928)] = { - [sym_identifier] = ACTIONS(2711), - [anon_sym_LPAREN2] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2711), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym___extension__] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2711), - [anon_sym_virtual] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym___attribute__] = ACTIONS(2711), - [anon_sym___attribute] = ACTIONS(2711), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2713), - [anon_sym___declspec] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym___inline] = ACTIONS(2711), - [anon_sym___inline__] = ACTIONS(2711), - [anon_sym___forceinline] = ACTIONS(2711), - [anon_sym_thread_local] = ACTIONS(2711), - [anon_sym___thread] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_constexpr] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym___restrict__] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym__Noreturn] = ACTIONS(2711), - [anon_sym_noreturn] = ACTIONS(2711), - [anon_sym__Nonnull] = ACTIONS(2711), - [anon_sym_mutable] = ACTIONS(2711), - [anon_sym_constinit] = ACTIONS(2711), - [anon_sym_consteval] = ACTIONS(2711), - [anon_sym_alignas] = ACTIONS(2711), - [anon_sym__Alignas] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_switch] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_do] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_goto] = ACTIONS(2711), - [anon_sym___try] = ACTIONS(2711), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2711), - [anon_sym_compl] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(2711), - [anon_sym___alignof__] = ACTIONS(2711), - [anon_sym___alignof] = ACTIONS(2711), - [anon_sym__alignof] = ACTIONS(2711), - [anon_sym_alignof] = ACTIONS(2711), - [anon_sym__Alignof] = ACTIONS(2711), - [anon_sym_offsetof] = ACTIONS(2711), - [anon_sym__Generic] = ACTIONS(2711), - [anon_sym_asm] = ACTIONS(2711), - [anon_sym___asm__] = ACTIONS(2711), - [anon_sym___asm] = ACTIONS(2711), - [sym_number_literal] = ACTIONS(2713), - [anon_sym_L_SQUOTE] = ACTIONS(2713), - [anon_sym_u_SQUOTE] = ACTIONS(2713), - [anon_sym_U_SQUOTE] = ACTIONS(2713), - [anon_sym_u8_SQUOTE] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2713), - [anon_sym_L_DQUOTE] = ACTIONS(2713), - [anon_sym_u_DQUOTE] = ACTIONS(2713), - [anon_sym_U_DQUOTE] = ACTIONS(2713), - [anon_sym_u8_DQUOTE] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_true] = ACTIONS(2711), - [sym_false] = ACTIONS(2711), - [anon_sym_NULL] = ACTIONS(2711), - [anon_sym_nullptr] = ACTIONS(2711), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2711), - [anon_sym_decltype] = ACTIONS(2711), - [anon_sym_typename] = ACTIONS(2711), - [anon_sym_template] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_delete] = ACTIONS(2711), - [anon_sym_throw] = ACTIONS(2711), - [anon_sym_co_return] = ACTIONS(2711), - [anon_sym_co_yield] = ACTIONS(2711), - [anon_sym_R_DQUOTE] = ACTIONS(2713), - [anon_sym_LR_DQUOTE] = ACTIONS(2713), - [anon_sym_uR_DQUOTE] = ACTIONS(2713), - [anon_sym_UR_DQUOTE] = ACTIONS(2713), - [anon_sym_u8R_DQUOTE] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2711), - [anon_sym_new] = ACTIONS(2711), - [anon_sym_requires] = ACTIONS(2711), - [sym_this] = ACTIONS(2711), + [STATE(385)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [aux_sym_preproc_else_token1] = ACTIONS(3712), + [aux_sym_preproc_elif_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), }, - [STATE(929)] = { - [sym_identifier] = ACTIONS(2715), - [anon_sym_LPAREN2] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2715), - [anon_sym_PLUS] = ACTIONS(2715), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym___extension__] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2715), - [anon_sym_virtual] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym___attribute__] = ACTIONS(2715), - [anon_sym___attribute] = ACTIONS(2715), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2717), - [anon_sym___declspec] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym___inline] = ACTIONS(2715), - [anon_sym___inline__] = ACTIONS(2715), - [anon_sym___forceinline] = ACTIONS(2715), - [anon_sym_thread_local] = ACTIONS(2715), - [anon_sym___thread] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_constexpr] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym___restrict__] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym__Noreturn] = ACTIONS(2715), - [anon_sym_noreturn] = ACTIONS(2715), - [anon_sym__Nonnull] = ACTIONS(2715), - [anon_sym_mutable] = ACTIONS(2715), - [anon_sym_constinit] = ACTIONS(2715), - [anon_sym_consteval] = ACTIONS(2715), - [anon_sym_alignas] = ACTIONS(2715), - [anon_sym__Alignas] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_do] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_goto] = ACTIONS(2715), - [anon_sym___try] = ACTIONS(2715), - [anon_sym___leave] = ACTIONS(2715), - [anon_sym_not] = ACTIONS(2715), - [anon_sym_compl] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2717), - [anon_sym_sizeof] = ACTIONS(2715), - [anon_sym___alignof__] = ACTIONS(2715), - [anon_sym___alignof] = ACTIONS(2715), - [anon_sym__alignof] = ACTIONS(2715), - [anon_sym_alignof] = ACTIONS(2715), - [anon_sym__Alignof] = ACTIONS(2715), - [anon_sym_offsetof] = ACTIONS(2715), - [anon_sym__Generic] = ACTIONS(2715), - [anon_sym_asm] = ACTIONS(2715), - [anon_sym___asm__] = ACTIONS(2715), - [anon_sym___asm] = ACTIONS(2715), - [sym_number_literal] = ACTIONS(2717), - [anon_sym_L_SQUOTE] = ACTIONS(2717), - [anon_sym_u_SQUOTE] = ACTIONS(2717), - [anon_sym_U_SQUOTE] = ACTIONS(2717), - [anon_sym_u8_SQUOTE] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2717), - [anon_sym_L_DQUOTE] = ACTIONS(2717), - [anon_sym_u_DQUOTE] = ACTIONS(2717), - [anon_sym_U_DQUOTE] = ACTIONS(2717), - [anon_sym_u8_DQUOTE] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_true] = ACTIONS(2715), - [sym_false] = ACTIONS(2715), - [anon_sym_NULL] = ACTIONS(2715), - [anon_sym_nullptr] = ACTIONS(2715), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2715), - [anon_sym_decltype] = ACTIONS(2715), - [anon_sym_typename] = ACTIONS(2715), - [anon_sym_template] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_delete] = ACTIONS(2715), - [anon_sym_throw] = ACTIONS(2715), - [anon_sym_co_return] = ACTIONS(2715), - [anon_sym_co_yield] = ACTIONS(2715), - [anon_sym_R_DQUOTE] = ACTIONS(2717), - [anon_sym_LR_DQUOTE] = ACTIONS(2717), - [anon_sym_uR_DQUOTE] = ACTIONS(2717), - [anon_sym_UR_DQUOTE] = ACTIONS(2717), - [anon_sym_u8R_DQUOTE] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2715), - [anon_sym_new] = ACTIONS(2715), - [anon_sym_requires] = ACTIONS(2715), - [sym_this] = ACTIONS(2715), + [STATE(386)] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [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(2954), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = 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(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [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_typename] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [anon_sym___asm] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [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_explicit] = 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_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(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [anon_sym_CARET_CARET] = ACTIONS(2954), + [anon_sym_LBRACK_COLON] = ACTIONS(2954), + [sym_this] = ACTIONS(2949), }, - [STATE(930)] = { - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN2] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym___extension__] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2719), - [anon_sym_virtual] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym___attribute__] = ACTIONS(2719), - [anon_sym___attribute] = ACTIONS(2719), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2721), - [anon_sym___declspec] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2719), - [anon_sym_unsigned] = ACTIONS(2719), - [anon_sym_long] = ACTIONS(2719), - [anon_sym_short] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_register] = ACTIONS(2719), - [anon_sym_inline] = ACTIONS(2719), - [anon_sym___inline] = ACTIONS(2719), - [anon_sym___inline__] = ACTIONS(2719), - [anon_sym___forceinline] = ACTIONS(2719), - [anon_sym_thread_local] = ACTIONS(2719), - [anon_sym___thread] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_constexpr] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym___restrict__] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [anon_sym__Noreturn] = ACTIONS(2719), - [anon_sym_noreturn] = ACTIONS(2719), - [anon_sym__Nonnull] = ACTIONS(2719), - [anon_sym_mutable] = ACTIONS(2719), - [anon_sym_constinit] = ACTIONS(2719), - [anon_sym_consteval] = ACTIONS(2719), - [anon_sym_alignas] = ACTIONS(2719), - [anon_sym__Alignas] = ACTIONS(2719), - [sym_primitive_type] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_switch] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_do] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_goto] = ACTIONS(2719), - [anon_sym___try] = ACTIONS(2719), - [anon_sym___leave] = ACTIONS(2719), - [anon_sym_not] = ACTIONS(2719), - [anon_sym_compl] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2721), - [anon_sym_sizeof] = ACTIONS(2719), - [anon_sym___alignof__] = ACTIONS(2719), - [anon_sym___alignof] = ACTIONS(2719), - [anon_sym__alignof] = ACTIONS(2719), - [anon_sym_alignof] = ACTIONS(2719), - [anon_sym__Alignof] = ACTIONS(2719), - [anon_sym_offsetof] = ACTIONS(2719), - [anon_sym__Generic] = ACTIONS(2719), - [anon_sym_asm] = ACTIONS(2719), - [anon_sym___asm__] = ACTIONS(2719), - [anon_sym___asm] = ACTIONS(2719), - [sym_number_literal] = ACTIONS(2721), - [anon_sym_L_SQUOTE] = ACTIONS(2721), - [anon_sym_u_SQUOTE] = ACTIONS(2721), - [anon_sym_U_SQUOTE] = ACTIONS(2721), - [anon_sym_u8_SQUOTE] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2721), - [anon_sym_L_DQUOTE] = ACTIONS(2721), - [anon_sym_u_DQUOTE] = ACTIONS(2721), - [anon_sym_U_DQUOTE] = ACTIONS(2721), - [anon_sym_u8_DQUOTE] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_true] = ACTIONS(2719), - [sym_false] = ACTIONS(2719), - [anon_sym_NULL] = ACTIONS(2719), - [anon_sym_nullptr] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2719), - [anon_sym_decltype] = ACTIONS(2719), - [anon_sym_typename] = ACTIONS(2719), - [anon_sym_template] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_delete] = ACTIONS(2719), - [anon_sym_throw] = ACTIONS(2719), - [anon_sym_co_return] = ACTIONS(2719), - [anon_sym_co_yield] = ACTIONS(2719), - [anon_sym_R_DQUOTE] = ACTIONS(2721), - [anon_sym_LR_DQUOTE] = ACTIONS(2721), - [anon_sym_uR_DQUOTE] = ACTIONS(2721), - [anon_sym_UR_DQUOTE] = ACTIONS(2721), - [anon_sym_u8R_DQUOTE] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2719), - [anon_sym_requires] = ACTIONS(2719), - [sym_this] = ACTIONS(2719), + [STATE(387)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [aux_sym_preproc_else_token1] = ACTIONS(3704), + [aux_sym_preproc_elif_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(931)] = { - [sym_identifier] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_switch] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_goto] = ACTIONS(2687), - [anon_sym___try] = ACTIONS(2687), - [anon_sym___leave] = ACTIONS(2687), - [anon_sym_not] = ACTIONS(2687), - [anon_sym_compl] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(2687), - [anon_sym___alignof__] = ACTIONS(2687), - [anon_sym___alignof] = ACTIONS(2687), - [anon_sym__alignof] = ACTIONS(2687), - [anon_sym_alignof] = ACTIONS(2687), - [anon_sym__Alignof] = ACTIONS(2687), - [anon_sym_offsetof] = ACTIONS(2687), - [anon_sym__Generic] = ACTIONS(2687), - [anon_sym_asm] = ACTIONS(2687), - [anon_sym___asm__] = ACTIONS(2687), - [anon_sym___asm] = ACTIONS(2687), - [sym_number_literal] = ACTIONS(2689), - [anon_sym_L_SQUOTE] = ACTIONS(2689), - [anon_sym_u_SQUOTE] = ACTIONS(2689), - [anon_sym_U_SQUOTE] = ACTIONS(2689), - [anon_sym_u8_SQUOTE] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2689), - [anon_sym_L_DQUOTE] = ACTIONS(2689), - [anon_sym_u_DQUOTE] = ACTIONS(2689), - [anon_sym_U_DQUOTE] = ACTIONS(2689), - [anon_sym_u8_DQUOTE] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_true] = ACTIONS(2687), - [sym_false] = ACTIONS(2687), - [anon_sym_NULL] = ACTIONS(2687), - [anon_sym_nullptr] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_delete] = ACTIONS(2687), - [anon_sym_throw] = ACTIONS(2687), - [anon_sym_co_return] = ACTIONS(2687), - [anon_sym_co_yield] = ACTIONS(2687), - [anon_sym_R_DQUOTE] = ACTIONS(2689), - [anon_sym_LR_DQUOTE] = ACTIONS(2689), - [anon_sym_uR_DQUOTE] = ACTIONS(2689), - [anon_sym_UR_DQUOTE] = ACTIONS(2689), - [anon_sym_u8R_DQUOTE] = ACTIONS(2689), - [anon_sym_co_await] = ACTIONS(2687), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_requires] = ACTIONS(2687), - [sym_this] = ACTIONS(2687), + [STATE(388)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [aux_sym_preproc_else_token1] = ACTIONS(3716), + [aux_sym_preproc_elif_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_else] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(932)] = { - [sym_identifier] = ACTIONS(2755), - [anon_sym_LPAREN2] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym___extension__] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2755), - [anon_sym_virtual] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym___attribute__] = ACTIONS(2755), - [anon_sym___attribute] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2757), - [anon_sym___declspec] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2755), - [anon_sym_unsigned] = ACTIONS(2755), - [anon_sym_long] = ACTIONS(2755), - [anon_sym_short] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_register] = ACTIONS(2755), - [anon_sym_inline] = ACTIONS(2755), - [anon_sym___inline] = ACTIONS(2755), - [anon_sym___inline__] = ACTIONS(2755), - [anon_sym___forceinline] = ACTIONS(2755), - [anon_sym_thread_local] = ACTIONS(2755), - [anon_sym___thread] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_constexpr] = ACTIONS(2755), - [anon_sym_volatile] = ACTIONS(2755), - [anon_sym_restrict] = ACTIONS(2755), - [anon_sym___restrict__] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(2755), - [anon_sym__Noreturn] = ACTIONS(2755), - [anon_sym_noreturn] = ACTIONS(2755), - [anon_sym__Nonnull] = ACTIONS(2755), - [anon_sym_mutable] = ACTIONS(2755), - [anon_sym_constinit] = ACTIONS(2755), - [anon_sym_consteval] = ACTIONS(2755), - [anon_sym_alignas] = ACTIONS(2755), - [anon_sym__Alignas] = ACTIONS(2755), - [sym_primitive_type] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_goto] = ACTIONS(2755), - [anon_sym___try] = ACTIONS(2755), - [anon_sym___leave] = ACTIONS(2755), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_compl] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_sizeof] = ACTIONS(2755), - [anon_sym___alignof__] = ACTIONS(2755), - [anon_sym___alignof] = ACTIONS(2755), - [anon_sym__alignof] = ACTIONS(2755), - [anon_sym_alignof] = ACTIONS(2755), - [anon_sym__Alignof] = ACTIONS(2755), - [anon_sym_offsetof] = ACTIONS(2755), - [anon_sym__Generic] = ACTIONS(2755), - [anon_sym_asm] = ACTIONS(2755), - [anon_sym___asm__] = ACTIONS(2755), - [anon_sym___asm] = ACTIONS(2755), - [sym_number_literal] = ACTIONS(2757), - [anon_sym_L_SQUOTE] = ACTIONS(2757), - [anon_sym_u_SQUOTE] = ACTIONS(2757), - [anon_sym_U_SQUOTE] = ACTIONS(2757), - [anon_sym_u8_SQUOTE] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2757), - [anon_sym_L_DQUOTE] = ACTIONS(2757), - [anon_sym_u_DQUOTE] = ACTIONS(2757), - [anon_sym_U_DQUOTE] = ACTIONS(2757), - [anon_sym_u8_DQUOTE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [anon_sym_NULL] = ACTIONS(2755), - [anon_sym_nullptr] = ACTIONS(2755), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2755), - [anon_sym_decltype] = ACTIONS(2755), - [anon_sym_typename] = ACTIONS(2755), - [anon_sym_template] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_co_return] = ACTIONS(2755), - [anon_sym_co_yield] = ACTIONS(2755), - [anon_sym_R_DQUOTE] = ACTIONS(2757), - [anon_sym_LR_DQUOTE] = ACTIONS(2757), - [anon_sym_uR_DQUOTE] = ACTIONS(2757), - [anon_sym_UR_DQUOTE] = ACTIONS(2757), - [anon_sym_u8R_DQUOTE] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_requires] = ACTIONS(2755), - [sym_this] = ACTIONS(2755), + [STATE(389)] = { + [sym_identifier] = ACTIONS(3720), + [aux_sym_preproc_include_token1] = ACTIONS(3720), + [aux_sym_preproc_def_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token2] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), + [aux_sym_preproc_else_token1] = ACTIONS(3720), + [aux_sym_preproc_elif_token1] = ACTIONS(3720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3720), + [sym_preproc_directive] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym___extension__] = ACTIONS(3720), + [anon_sym_typedef] = ACTIONS(3720), + [anon_sym_virtual] = ACTIONS(3720), + [anon_sym_extern] = ACTIONS(3720), + [anon_sym___attribute__] = ACTIONS(3720), + [anon_sym___attribute] = ACTIONS(3720), + [anon_sym_using] = ACTIONS(3720), + [anon_sym_COLON_COLON] = ACTIONS(3722), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), + [anon_sym___declspec] = ACTIONS(3720), + [anon_sym___based] = ACTIONS(3720), + [anon_sym___cdecl] = ACTIONS(3720), + [anon_sym___clrcall] = ACTIONS(3720), + [anon_sym___stdcall] = ACTIONS(3720), + [anon_sym___fastcall] = ACTIONS(3720), + [anon_sym___thiscall] = ACTIONS(3720), + [anon_sym___vectorcall] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3720), + [anon_sym_unsigned] = ACTIONS(3720), + [anon_sym_long] = ACTIONS(3720), + [anon_sym_short] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_register] = ACTIONS(3720), + [anon_sym_inline] = ACTIONS(3720), + [anon_sym___inline] = ACTIONS(3720), + [anon_sym___inline__] = ACTIONS(3720), + [anon_sym___forceinline] = ACTIONS(3720), + [anon_sym_thread_local] = ACTIONS(3720), + [anon_sym___thread] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym___restrict__] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym__Noreturn] = ACTIONS(3720), + [anon_sym_noreturn] = ACTIONS(3720), + [anon_sym__Nonnull] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_constinit] = ACTIONS(3720), + [anon_sym_consteval] = ACTIONS(3720), + [anon_sym_alignas] = ACTIONS(3720), + [anon_sym__Alignas] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3720), + [anon_sym_union] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_else] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_case] = ACTIONS(3720), + [anon_sym_default] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_goto] = ACTIONS(3720), + [anon_sym___try] = ACTIONS(3720), + [anon_sym___leave] = ACTIONS(3720), + [anon_sym_not] = ACTIONS(3720), + [anon_sym_compl] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_sizeof] = ACTIONS(3720), + [anon_sym___alignof__] = ACTIONS(3720), + [anon_sym___alignof] = ACTIONS(3720), + [anon_sym__alignof] = ACTIONS(3720), + [anon_sym_alignof] = ACTIONS(3720), + [anon_sym__Alignof] = ACTIONS(3720), + [anon_sym_offsetof] = ACTIONS(3720), + [anon_sym__Generic] = ACTIONS(3720), + [anon_sym_typename] = ACTIONS(3720), + [anon_sym_asm] = ACTIONS(3720), + [anon_sym___asm__] = ACTIONS(3720), + [anon_sym___asm] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3722), + [anon_sym_L_SQUOTE] = ACTIONS(3722), + [anon_sym_u_SQUOTE] = ACTIONS(3722), + [anon_sym_U_SQUOTE] = ACTIONS(3722), + [anon_sym_u8_SQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_L_DQUOTE] = ACTIONS(3722), + [anon_sym_u_DQUOTE] = ACTIONS(3722), + [anon_sym_U_DQUOTE] = ACTIONS(3722), + [anon_sym_u8_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [anon_sym_NULL] = ACTIONS(3720), + [anon_sym_nullptr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_template] = ACTIONS(3720), + [anon_sym_operator] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_namespace] = ACTIONS(3720), + [anon_sym_static_assert] = ACTIONS(3720), + [anon_sym_concept] = ACTIONS(3720), + [anon_sym_co_return] = ACTIONS(3720), + [anon_sym_co_yield] = ACTIONS(3720), + [anon_sym_R_DQUOTE] = ACTIONS(3722), + [anon_sym_LR_DQUOTE] = ACTIONS(3722), + [anon_sym_uR_DQUOTE] = ACTIONS(3722), + [anon_sym_UR_DQUOTE] = ACTIONS(3722), + [anon_sym_u8R_DQUOTE] = ACTIONS(3722), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_requires] = ACTIONS(3720), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3722), + [sym_this] = ACTIONS(3720), }, - [STATE(933)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6715), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_expression] = STATE(3116), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3382), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5961), - [sym_qualified_identifier] = STATE(3383), - [sym_qualified_type_identifier] = STATE(7864), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(3341), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1812), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(390)] = { + [sym_identifier] = ACTIONS(3724), + [aux_sym_preproc_include_token1] = ACTIONS(3724), + [aux_sym_preproc_def_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token2] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), + [aux_sym_preproc_else_token1] = ACTIONS(3724), + [aux_sym_preproc_elif_token1] = ACTIONS(3724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3724), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3724), + [sym_preproc_directive] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym___extension__] = ACTIONS(3724), + [anon_sym_typedef] = ACTIONS(3724), + [anon_sym_virtual] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3724), + [anon_sym___attribute__] = ACTIONS(3724), + [anon_sym___attribute] = ACTIONS(3724), + [anon_sym_using] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), + [anon_sym___declspec] = ACTIONS(3724), + [anon_sym___based] = ACTIONS(3724), + [anon_sym___cdecl] = ACTIONS(3724), + [anon_sym___clrcall] = ACTIONS(3724), + [anon_sym___stdcall] = ACTIONS(3724), + [anon_sym___fastcall] = ACTIONS(3724), + [anon_sym___thiscall] = ACTIONS(3724), + [anon_sym___vectorcall] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_unsigned] = ACTIONS(3724), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_short] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_static] = ACTIONS(3724), + [anon_sym_register] = ACTIONS(3724), + [anon_sym_inline] = ACTIONS(3724), + [anon_sym___inline] = ACTIONS(3724), + [anon_sym___inline__] = ACTIONS(3724), + [anon_sym___forceinline] = ACTIONS(3724), + [anon_sym_thread_local] = ACTIONS(3724), + [anon_sym___thread] = ACTIONS(3724), + [anon_sym_const] = ACTIONS(3724), + [anon_sym_constexpr] = ACTIONS(3724), + [anon_sym_volatile] = ACTIONS(3724), + [anon_sym_restrict] = ACTIONS(3724), + [anon_sym___restrict__] = ACTIONS(3724), + [anon_sym__Atomic] = ACTIONS(3724), + [anon_sym__Noreturn] = ACTIONS(3724), + [anon_sym_noreturn] = ACTIONS(3724), + [anon_sym__Nonnull] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(3724), + [anon_sym_constinit] = ACTIONS(3724), + [anon_sym_consteval] = ACTIONS(3724), + [anon_sym_alignas] = ACTIONS(3724), + [anon_sym__Alignas] = ACTIONS(3724), + [sym_primitive_type] = ACTIONS(3724), + [anon_sym_enum] = ACTIONS(3724), + [anon_sym_class] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_union] = ACTIONS(3724), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_case] = ACTIONS(3724), + [anon_sym_default] = ACTIONS(3724), + [anon_sym_while] = ACTIONS(3724), + [anon_sym_do] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3724), + [anon_sym_return] = ACTIONS(3724), + [anon_sym_break] = ACTIONS(3724), + [anon_sym_continue] = ACTIONS(3724), + [anon_sym_goto] = ACTIONS(3724), + [anon_sym___try] = ACTIONS(3724), + [anon_sym___leave] = ACTIONS(3724), + [anon_sym_not] = ACTIONS(3724), + [anon_sym_compl] = ACTIONS(3724), + [anon_sym_DASH_DASH] = ACTIONS(3726), + [anon_sym_PLUS_PLUS] = ACTIONS(3726), + [anon_sym_sizeof] = ACTIONS(3724), + [anon_sym___alignof__] = ACTIONS(3724), + [anon_sym___alignof] = ACTIONS(3724), + [anon_sym__alignof] = ACTIONS(3724), + [anon_sym_alignof] = ACTIONS(3724), + [anon_sym__Alignof] = ACTIONS(3724), + [anon_sym_offsetof] = ACTIONS(3724), + [anon_sym__Generic] = ACTIONS(3724), + [anon_sym_typename] = ACTIONS(3724), + [anon_sym_asm] = ACTIONS(3724), + [anon_sym___asm__] = ACTIONS(3724), + [anon_sym___asm] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3726), + [anon_sym_L_SQUOTE] = ACTIONS(3726), + [anon_sym_u_SQUOTE] = ACTIONS(3726), + [anon_sym_U_SQUOTE] = ACTIONS(3726), + [anon_sym_u8_SQUOTE] = ACTIONS(3726), + [anon_sym_SQUOTE] = ACTIONS(3726), + [anon_sym_L_DQUOTE] = ACTIONS(3726), + [anon_sym_u_DQUOTE] = ACTIONS(3726), + [anon_sym_U_DQUOTE] = ACTIONS(3726), + [anon_sym_u8_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [anon_sym_NULL] = ACTIONS(3724), + [anon_sym_nullptr] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3724), + [anon_sym_decltype] = ACTIONS(3724), + [anon_sym_explicit] = ACTIONS(3724), + [anon_sym_template] = ACTIONS(3724), + [anon_sym_operator] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3724), + [anon_sym_delete] = ACTIONS(3724), + [anon_sym_throw] = ACTIONS(3724), + [anon_sym_namespace] = ACTIONS(3724), + [anon_sym_static_assert] = ACTIONS(3724), + [anon_sym_concept] = ACTIONS(3724), + [anon_sym_co_return] = ACTIONS(3724), + [anon_sym_co_yield] = ACTIONS(3724), + [anon_sym_R_DQUOTE] = ACTIONS(3726), + [anon_sym_LR_DQUOTE] = ACTIONS(3726), + [anon_sym_uR_DQUOTE] = ACTIONS(3726), + [anon_sym_UR_DQUOTE] = ACTIONS(3726), + [anon_sym_u8R_DQUOTE] = ACTIONS(3726), + [anon_sym_co_await] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3724), + [anon_sym_requires] = ACTIONS(3724), + [anon_sym_CARET_CARET] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3726), + [sym_this] = ACTIONS(3724), }, - [STATE(934)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6715), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3336), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5841), - [sym_qualified_identifier] = STATE(3327), - [sym_qualified_type_identifier] = STATE(7816), - [sym_operator_name] = STATE(6229), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(3353), - [anon_sym_LPAREN2] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1812), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(391)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [aux_sym_preproc_else_token1] = ACTIONS(3728), + [aux_sym_preproc_elif_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(935)] = { - [sym_identifier] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_goto] = ACTIONS(2649), - [anon_sym___try] = ACTIONS(2649), - [anon_sym___leave] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_compl] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_sizeof] = ACTIONS(2649), - [anon_sym___alignof__] = ACTIONS(2649), - [anon_sym___alignof] = ACTIONS(2649), - [anon_sym__alignof] = ACTIONS(2649), - [anon_sym_alignof] = ACTIONS(2649), - [anon_sym__Alignof] = ACTIONS(2649), - [anon_sym_offsetof] = ACTIONS(2649), - [anon_sym__Generic] = ACTIONS(2649), - [anon_sym_asm] = ACTIONS(2649), - [anon_sym___asm__] = ACTIONS(2649), - [anon_sym___asm] = ACTIONS(2649), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_L_SQUOTE] = ACTIONS(2651), - [anon_sym_u_SQUOTE] = ACTIONS(2651), - [anon_sym_U_SQUOTE] = ACTIONS(2651), - [anon_sym_u8_SQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_L_DQUOTE] = ACTIONS(2651), - [anon_sym_u_DQUOTE] = ACTIONS(2651), - [anon_sym_U_DQUOTE] = ACTIONS(2651), - [anon_sym_u8_DQUOTE] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [anon_sym_NULL] = ACTIONS(2649), - [anon_sym_nullptr] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_co_return] = ACTIONS(2649), - [anon_sym_co_yield] = ACTIONS(2649), - [anon_sym_R_DQUOTE] = ACTIONS(2651), - [anon_sym_LR_DQUOTE] = ACTIONS(2651), - [anon_sym_uR_DQUOTE] = ACTIONS(2651), - [anon_sym_UR_DQUOTE] = ACTIONS(2651), - [anon_sym_u8R_DQUOTE] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_requires] = ACTIONS(2649), - [sym_this] = ACTIONS(2649), + [STATE(392)] = { + [sym_identifier] = ACTIONS(3732), + [aux_sym_preproc_include_token1] = ACTIONS(3732), + [aux_sym_preproc_def_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token2] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), + [aux_sym_preproc_else_token1] = ACTIONS(3732), + [aux_sym_preproc_elif_token1] = ACTIONS(3732), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3732), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3732), + [sym_preproc_directive] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3732), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3732), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym___extension__] = ACTIONS(3732), + [anon_sym_typedef] = ACTIONS(3732), + [anon_sym_virtual] = ACTIONS(3732), + [anon_sym_extern] = ACTIONS(3732), + [anon_sym___attribute__] = ACTIONS(3732), + [anon_sym___attribute] = ACTIONS(3732), + [anon_sym_using] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym___declspec] = ACTIONS(3732), + [anon_sym___based] = ACTIONS(3732), + [anon_sym___cdecl] = ACTIONS(3732), + [anon_sym___clrcall] = ACTIONS(3732), + [anon_sym___stdcall] = ACTIONS(3732), + [anon_sym___fastcall] = ACTIONS(3732), + [anon_sym___thiscall] = ACTIONS(3732), + [anon_sym___vectorcall] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_signed] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(3732), + [anon_sym_long] = ACTIONS(3732), + [anon_sym_short] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3732), + [anon_sym_register] = ACTIONS(3732), + [anon_sym_inline] = ACTIONS(3732), + [anon_sym___inline] = ACTIONS(3732), + [anon_sym___inline__] = ACTIONS(3732), + [anon_sym___forceinline] = ACTIONS(3732), + [anon_sym_thread_local] = ACTIONS(3732), + [anon_sym___thread] = ACTIONS(3732), + [anon_sym_const] = ACTIONS(3732), + [anon_sym_constexpr] = ACTIONS(3732), + [anon_sym_volatile] = ACTIONS(3732), + [anon_sym_restrict] = ACTIONS(3732), + [anon_sym___restrict__] = ACTIONS(3732), + [anon_sym__Atomic] = ACTIONS(3732), + [anon_sym__Noreturn] = ACTIONS(3732), + [anon_sym_noreturn] = ACTIONS(3732), + [anon_sym__Nonnull] = ACTIONS(3732), + [anon_sym_mutable] = ACTIONS(3732), + [anon_sym_constinit] = ACTIONS(3732), + [anon_sym_consteval] = ACTIONS(3732), + [anon_sym_alignas] = ACTIONS(3732), + [anon_sym__Alignas] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_union] = ACTIONS(3732), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_else] = ACTIONS(3732), + [anon_sym_switch] = ACTIONS(3732), + [anon_sym_case] = ACTIONS(3732), + [anon_sym_default] = ACTIONS(3732), + [anon_sym_while] = ACTIONS(3732), + [anon_sym_do] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3732), + [anon_sym_break] = ACTIONS(3732), + [anon_sym_continue] = ACTIONS(3732), + [anon_sym_goto] = ACTIONS(3732), + [anon_sym___try] = ACTIONS(3732), + [anon_sym___leave] = ACTIONS(3732), + [anon_sym_not] = ACTIONS(3732), + [anon_sym_compl] = ACTIONS(3732), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_sizeof] = ACTIONS(3732), + [anon_sym___alignof__] = ACTIONS(3732), + [anon_sym___alignof] = ACTIONS(3732), + [anon_sym__alignof] = ACTIONS(3732), + [anon_sym_alignof] = ACTIONS(3732), + [anon_sym__Alignof] = ACTIONS(3732), + [anon_sym_offsetof] = ACTIONS(3732), + [anon_sym__Generic] = ACTIONS(3732), + [anon_sym_typename] = ACTIONS(3732), + [anon_sym_asm] = ACTIONS(3732), + [anon_sym___asm__] = ACTIONS(3732), + [anon_sym___asm] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_L_SQUOTE] = ACTIONS(3734), + [anon_sym_u_SQUOTE] = ACTIONS(3734), + [anon_sym_U_SQUOTE] = ACTIONS(3734), + [anon_sym_u8_SQUOTE] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [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(3732), + [sym_false] = ACTIONS(3732), + [anon_sym_NULL] = ACTIONS(3732), + [anon_sym_nullptr] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3732), + [anon_sym_decltype] = ACTIONS(3732), + [anon_sym_explicit] = ACTIONS(3732), + [anon_sym_template] = ACTIONS(3732), + [anon_sym_operator] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3732), + [anon_sym_delete] = ACTIONS(3732), + [anon_sym_throw] = ACTIONS(3732), + [anon_sym_namespace] = ACTIONS(3732), + [anon_sym_static_assert] = ACTIONS(3732), + [anon_sym_concept] = ACTIONS(3732), + [anon_sym_co_return] = ACTIONS(3732), + [anon_sym_co_yield] = ACTIONS(3732), + [anon_sym_R_DQUOTE] = ACTIONS(3734), + [anon_sym_LR_DQUOTE] = ACTIONS(3734), + [anon_sym_uR_DQUOTE] = ACTIONS(3734), + [anon_sym_UR_DQUOTE] = ACTIONS(3734), + [anon_sym_u8R_DQUOTE] = ACTIONS(3734), + [anon_sym_co_await] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3732), + [anon_sym_requires] = ACTIONS(3732), + [anon_sym_CARET_CARET] = ACTIONS(3734), + [anon_sym_LBRACK_COLON] = ACTIONS(3734), + [sym_this] = ACTIONS(3732), }, - [STATE(936)] = { - [sym_identifier] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym___try] = ACTIONS(2655), - [anon_sym___leave] = ACTIONS(2655), - [anon_sym_not] = ACTIONS(2655), - [anon_sym_compl] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym___alignof__] = ACTIONS(2655), - [anon_sym___alignof] = ACTIONS(2655), - [anon_sym__alignof] = ACTIONS(2655), - [anon_sym_alignof] = ACTIONS(2655), - [anon_sym__Alignof] = ACTIONS(2655), - [anon_sym_offsetof] = ACTIONS(2655), - [anon_sym__Generic] = ACTIONS(2655), - [anon_sym_asm] = ACTIONS(2655), - [anon_sym___asm__] = ACTIONS(2655), - [anon_sym___asm] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [anon_sym_NULL] = ACTIONS(2655), - [anon_sym_nullptr] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_R_DQUOTE] = ACTIONS(2657), - [anon_sym_LR_DQUOTE] = ACTIONS(2657), - [anon_sym_uR_DQUOTE] = ACTIONS(2657), - [anon_sym_UR_DQUOTE] = ACTIONS(2657), - [anon_sym_u8R_DQUOTE] = ACTIONS(2657), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), + [STATE(393)] = { + [sym_preproc_def] = STATE(393), + [sym_preproc_function_def] = STATE(393), + [sym_preproc_call] = STATE(393), + [sym_preproc_if_in_field_declaration_list] = STATE(393), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), + [sym_type_definition] = STATE(393), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7977), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(393), + [sym_field_declaration] = STATE(393), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(393), + [sym_operator_cast] = STATE(9050), + [sym_inline_method_definition] = STATE(393), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(393), + [sym_operator_cast_declaration] = STATE(393), + [sym_constructor_or_destructor_definition] = STATE(393), + [sym_constructor_or_destructor_declaration] = STATE(393), + [sym_friend_declaration] = STATE(393), + [sym_access_specifier] = STATE(10750), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(393), + [sym_alias_declaration] = STATE(393), + [sym_static_assert_declaration] = STATE(393), + [sym_consteval_block_declaration] = STATE(393), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(3736), + [aux_sym_preproc_def_token1] = ACTIONS(3739), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3747), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3747), + [aux_sym_preproc_else_token1] = ACTIONS(3745), + [aux_sym_preproc_elif_token1] = ACTIONS(3745), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3745), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3745), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym___extension__] = ACTIONS(3771), + [anon_sym_typedef] = ACTIONS(3774), + [anon_sym_virtual] = ACTIONS(3777), + [anon_sym_extern] = ACTIONS(3780), + [anon_sym___attribute__] = ACTIONS(3783), + [anon_sym___attribute] = ACTIONS(3783), + [anon_sym_using] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), + [anon_sym___declspec] = ACTIONS(3795), + [anon_sym___based] = ACTIONS(3798), + [anon_sym_signed] = ACTIONS(3801), + [anon_sym_unsigned] = ACTIONS(3801), + [anon_sym_long] = ACTIONS(3801), + [anon_sym_short] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_static] = ACTIONS(3780), + [anon_sym_register] = ACTIONS(3780), + [anon_sym_inline] = ACTIONS(3780), + [anon_sym___inline] = ACTIONS(3780), + [anon_sym___inline__] = ACTIONS(3780), + [anon_sym___forceinline] = ACTIONS(3780), + [anon_sym_thread_local] = ACTIONS(3780), + [anon_sym___thread] = ACTIONS(3780), + [anon_sym_const] = ACTIONS(3807), + [anon_sym_constexpr] = ACTIONS(3810), + [anon_sym_volatile] = ACTIONS(3807), + [anon_sym_restrict] = ACTIONS(3807), + [anon_sym___restrict__] = ACTIONS(3807), + [anon_sym__Atomic] = ACTIONS(3807), + [anon_sym__Noreturn] = ACTIONS(3807), + [anon_sym_noreturn] = ACTIONS(3807), + [anon_sym__Nonnull] = ACTIONS(3807), + [anon_sym_mutable] = ACTIONS(3807), + [anon_sym_constinit] = ACTIONS(3807), + [anon_sym_consteval] = ACTIONS(3813), + [anon_sym_alignas] = ACTIONS(3816), + [anon_sym__Alignas] = ACTIONS(3816), + [sym_primitive_type] = ACTIONS(3819), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3828), + [anon_sym_union] = ACTIONS(3831), + [anon_sym_typename] = ACTIONS(3834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3837), + [anon_sym_decltype] = ACTIONS(3840), + [anon_sym_explicit] = ACTIONS(3843), + [anon_sym_private] = ACTIONS(3846), + [anon_sym_template] = ACTIONS(3849), + [anon_sym_operator] = ACTIONS(3852), + [anon_sym_friend] = ACTIONS(3855), + [anon_sym_public] = ACTIONS(3846), + [anon_sym_protected] = ACTIONS(3846), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_LBRACK_COLON] = ACTIONS(3861), }, - [STATE(937)] = { - [sym_identifier] = ACTIONS(2727), - [anon_sym_LPAREN2] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym___extension__] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2727), - [anon_sym_virtual] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym___attribute__] = ACTIONS(2727), - [anon_sym___attribute] = ACTIONS(2727), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2729), - [anon_sym___declspec] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym___inline] = ACTIONS(2727), - [anon_sym___inline__] = ACTIONS(2727), - [anon_sym___forceinline] = ACTIONS(2727), - [anon_sym_thread_local] = ACTIONS(2727), - [anon_sym___thread] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_constexpr] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym___restrict__] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym__Noreturn] = ACTIONS(2727), - [anon_sym_noreturn] = ACTIONS(2727), - [anon_sym__Nonnull] = ACTIONS(2727), - [anon_sym_mutable] = ACTIONS(2727), - [anon_sym_constinit] = ACTIONS(2727), - [anon_sym_consteval] = ACTIONS(2727), - [anon_sym_alignas] = ACTIONS(2727), - [anon_sym__Alignas] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_switch] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_goto] = ACTIONS(2727), - [anon_sym___try] = ACTIONS(2727), - [anon_sym___leave] = ACTIONS(2727), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_compl] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(2727), - [anon_sym___alignof__] = ACTIONS(2727), - [anon_sym___alignof] = ACTIONS(2727), - [anon_sym__alignof] = ACTIONS(2727), - [anon_sym_alignof] = ACTIONS(2727), - [anon_sym__Alignof] = ACTIONS(2727), - [anon_sym_offsetof] = ACTIONS(2727), - [anon_sym__Generic] = ACTIONS(2727), - [anon_sym_asm] = ACTIONS(2727), - [anon_sym___asm__] = ACTIONS(2727), - [anon_sym___asm] = ACTIONS(2727), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_L_SQUOTE] = ACTIONS(2729), - [anon_sym_u_SQUOTE] = ACTIONS(2729), - [anon_sym_U_SQUOTE] = ACTIONS(2729), - [anon_sym_u8_SQUOTE] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2729), - [anon_sym_L_DQUOTE] = ACTIONS(2729), - [anon_sym_u_DQUOTE] = ACTIONS(2729), - [anon_sym_U_DQUOTE] = ACTIONS(2729), - [anon_sym_u8_DQUOTE] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [anon_sym_NULL] = ACTIONS(2727), - [anon_sym_nullptr] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2727), - [anon_sym_decltype] = ACTIONS(2727), - [anon_sym_typename] = ACTIONS(2727), - [anon_sym_template] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_delete] = ACTIONS(2727), - [anon_sym_throw] = ACTIONS(2727), - [anon_sym_co_return] = ACTIONS(2727), - [anon_sym_co_yield] = ACTIONS(2727), - [anon_sym_R_DQUOTE] = ACTIONS(2729), - [anon_sym_LR_DQUOTE] = ACTIONS(2729), - [anon_sym_uR_DQUOTE] = ACTIONS(2729), - [anon_sym_UR_DQUOTE] = ACTIONS(2729), - [anon_sym_u8R_DQUOTE] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_requires] = ACTIONS(2727), - [sym_this] = ACTIONS(2727), + [STATE(394)] = { + [sym_identifier] = ACTIONS(3864), + [aux_sym_preproc_include_token1] = ACTIONS(3864), + [aux_sym_preproc_def_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token2] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), + [aux_sym_preproc_else_token1] = ACTIONS(3864), + [aux_sym_preproc_elif_token1] = ACTIONS(3864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(3866), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_SEMI] = ACTIONS(3866), + [anon_sym___extension__] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_virtual] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym___attribute__] = ACTIONS(3864), + [anon_sym___attribute] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), + [anon_sym___declspec] = ACTIONS(3864), + [anon_sym___based] = ACTIONS(3864), + [anon_sym___cdecl] = ACTIONS(3864), + [anon_sym___clrcall] = ACTIONS(3864), + [anon_sym___stdcall] = ACTIONS(3864), + [anon_sym___fastcall] = ACTIONS(3864), + [anon_sym___thiscall] = ACTIONS(3864), + [anon_sym___vectorcall] = ACTIONS(3864), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym___inline] = ACTIONS(3864), + [anon_sym___inline__] = ACTIONS(3864), + [anon_sym___forceinline] = ACTIONS(3864), + [anon_sym_thread_local] = ACTIONS(3864), + [anon_sym___thread] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym___restrict__] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym__Noreturn] = ACTIONS(3864), + [anon_sym_noreturn] = ACTIONS(3864), + [anon_sym__Nonnull] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_constinit] = ACTIONS(3864), + [anon_sym_consteval] = ACTIONS(3864), + [anon_sym_alignas] = ACTIONS(3864), + [anon_sym__Alignas] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_switch] = ACTIONS(3864), + [anon_sym_case] = ACTIONS(3864), + [anon_sym_default] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_do] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_goto] = ACTIONS(3864), + [anon_sym___try] = ACTIONS(3864), + [anon_sym___leave] = ACTIONS(3864), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3866), + [anon_sym_sizeof] = ACTIONS(3864), + [anon_sym___alignof__] = ACTIONS(3864), + [anon_sym___alignof] = ACTIONS(3864), + [anon_sym__alignof] = ACTIONS(3864), + [anon_sym_alignof] = ACTIONS(3864), + [anon_sym__Alignof] = ACTIONS(3864), + [anon_sym_offsetof] = ACTIONS(3864), + [anon_sym__Generic] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(3864), + [anon_sym___asm__] = ACTIONS(3864), + [anon_sym___asm] = ACTIONS(3864), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_L_SQUOTE] = ACTIONS(3866), + [anon_sym_u_SQUOTE] = ACTIONS(3866), + [anon_sym_U_SQUOTE] = ACTIONS(3866), + [anon_sym_u8_SQUOTE] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3866), + [anon_sym_L_DQUOTE] = ACTIONS(3866), + [anon_sym_u_DQUOTE] = ACTIONS(3866), + [anon_sym_U_DQUOTE] = ACTIONS(3866), + [anon_sym_u8_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_true] = ACTIONS(3864), + [sym_false] = ACTIONS(3864), + [anon_sym_NULL] = ACTIONS(3864), + [anon_sym_nullptr] = ACTIONS(3864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3864), + [anon_sym_decltype] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_operator] = ACTIONS(3864), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_delete] = ACTIONS(3864), + [anon_sym_throw] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_static_assert] = ACTIONS(3864), + [anon_sym_concept] = ACTIONS(3864), + [anon_sym_co_return] = ACTIONS(3864), + [anon_sym_co_yield] = ACTIONS(3864), + [anon_sym_R_DQUOTE] = ACTIONS(3866), + [anon_sym_LR_DQUOTE] = ACTIONS(3866), + [anon_sym_uR_DQUOTE] = ACTIONS(3866), + [anon_sym_UR_DQUOTE] = ACTIONS(3866), + [anon_sym_u8R_DQUOTE] = ACTIONS(3866), + [anon_sym_co_await] = ACTIONS(3864), + [anon_sym_new] = ACTIONS(3864), + [anon_sym_requires] = ACTIONS(3864), + [anon_sym_CARET_CARET] = ACTIONS(3866), + [anon_sym_LBRACK_COLON] = ACTIONS(3866), + [sym_this] = ACTIONS(3864), }, - [STATE(938)] = { - [sym_identifier] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), + [STATE(395)] = { + [sym_identifier] = ACTIONS(3868), + [aux_sym_preproc_include_token1] = ACTIONS(3868), + [aux_sym_preproc_def_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token2] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), + [aux_sym_preproc_else_token1] = ACTIONS(3868), + [aux_sym_preproc_elif_token1] = ACTIONS(3868), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3868), + [sym_preproc_directive] = ACTIONS(3868), + [anon_sym_LPAREN2] = ACTIONS(3870), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3868), + [anon_sym_PLUS] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3870), + [anon_sym_AMP_AMP] = ACTIONS(3870), + [anon_sym_AMP] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym___extension__] = ACTIONS(3868), + [anon_sym_typedef] = ACTIONS(3868), + [anon_sym_virtual] = ACTIONS(3868), + [anon_sym_extern] = ACTIONS(3868), + [anon_sym___attribute__] = ACTIONS(3868), + [anon_sym___attribute] = ACTIONS(3868), + [anon_sym_using] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), + [anon_sym___declspec] = ACTIONS(3868), + [anon_sym___based] = ACTIONS(3868), + [anon_sym___cdecl] = ACTIONS(3868), + [anon_sym___clrcall] = ACTIONS(3868), + [anon_sym___stdcall] = ACTIONS(3868), + [anon_sym___fastcall] = ACTIONS(3868), + [anon_sym___thiscall] = ACTIONS(3868), + [anon_sym___vectorcall] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_signed] = ACTIONS(3868), + [anon_sym_unsigned] = ACTIONS(3868), + [anon_sym_long] = ACTIONS(3868), + [anon_sym_short] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3868), + [anon_sym_static] = ACTIONS(3868), + [anon_sym_register] = ACTIONS(3868), + [anon_sym_inline] = ACTIONS(3868), + [anon_sym___inline] = ACTIONS(3868), + [anon_sym___inline__] = ACTIONS(3868), + [anon_sym___forceinline] = ACTIONS(3868), + [anon_sym_thread_local] = ACTIONS(3868), + [anon_sym___thread] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(3868), + [anon_sym_constexpr] = ACTIONS(3868), + [anon_sym_volatile] = ACTIONS(3868), + [anon_sym_restrict] = ACTIONS(3868), + [anon_sym___restrict__] = ACTIONS(3868), + [anon_sym__Atomic] = ACTIONS(3868), + [anon_sym__Noreturn] = ACTIONS(3868), + [anon_sym_noreturn] = ACTIONS(3868), + [anon_sym__Nonnull] = ACTIONS(3868), + [anon_sym_mutable] = ACTIONS(3868), + [anon_sym_constinit] = ACTIONS(3868), + [anon_sym_consteval] = ACTIONS(3868), + [anon_sym_alignas] = ACTIONS(3868), + [anon_sym__Alignas] = ACTIONS(3868), + [sym_primitive_type] = ACTIONS(3868), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3868), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_union] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3868), + [anon_sym_case] = ACTIONS(3868), + [anon_sym_default] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_do] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_goto] = ACTIONS(3868), + [anon_sym___try] = ACTIONS(3868), + [anon_sym___leave] = ACTIONS(3868), + [anon_sym_not] = ACTIONS(3868), + [anon_sym_compl] = ACTIONS(3868), + [anon_sym_DASH_DASH] = ACTIONS(3870), + [anon_sym_PLUS_PLUS] = ACTIONS(3870), + [anon_sym_sizeof] = ACTIONS(3868), + [anon_sym___alignof__] = ACTIONS(3868), + [anon_sym___alignof] = ACTIONS(3868), + [anon_sym__alignof] = ACTIONS(3868), + [anon_sym_alignof] = ACTIONS(3868), + [anon_sym__Alignof] = ACTIONS(3868), + [anon_sym_offsetof] = ACTIONS(3868), + [anon_sym__Generic] = ACTIONS(3868), + [anon_sym_typename] = ACTIONS(3868), + [anon_sym_asm] = ACTIONS(3868), + [anon_sym___asm__] = ACTIONS(3868), + [anon_sym___asm] = ACTIONS(3868), + [sym_number_literal] = ACTIONS(3870), + [anon_sym_L_SQUOTE] = ACTIONS(3870), + [anon_sym_u_SQUOTE] = ACTIONS(3870), + [anon_sym_U_SQUOTE] = ACTIONS(3870), + [anon_sym_u8_SQUOTE] = ACTIONS(3870), + [anon_sym_SQUOTE] = ACTIONS(3870), + [anon_sym_L_DQUOTE] = ACTIONS(3870), + [anon_sym_u_DQUOTE] = ACTIONS(3870), + [anon_sym_U_DQUOTE] = ACTIONS(3870), + [anon_sym_u8_DQUOTE] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [anon_sym_NULL] = ACTIONS(3868), + [anon_sym_nullptr] = ACTIONS(3868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3868), + [anon_sym_decltype] = ACTIONS(3868), + [anon_sym_explicit] = ACTIONS(3868), + [anon_sym_template] = ACTIONS(3868), + [anon_sym_operator] = ACTIONS(3868), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3868), + [anon_sym_throw] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_static_assert] = ACTIONS(3868), + [anon_sym_concept] = ACTIONS(3868), + [anon_sym_co_return] = ACTIONS(3868), + [anon_sym_co_yield] = ACTIONS(3868), + [anon_sym_R_DQUOTE] = ACTIONS(3870), + [anon_sym_LR_DQUOTE] = ACTIONS(3870), + [anon_sym_uR_DQUOTE] = ACTIONS(3870), + [anon_sym_UR_DQUOTE] = ACTIONS(3870), + [anon_sym_u8R_DQUOTE] = ACTIONS(3870), + [anon_sym_co_await] = ACTIONS(3868), + [anon_sym_new] = ACTIONS(3868), + [anon_sym_requires] = ACTIONS(3868), + [anon_sym_CARET_CARET] = ACTIONS(3870), + [anon_sym_LBRACK_COLON] = ACTIONS(3870), + [sym_this] = ACTIONS(3868), }, - [STATE(939)] = { - [sym_identifier] = ACTIONS(2743), - [anon_sym_LPAREN2] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym___extension__] = ACTIONS(2743), - [anon_sym_typedef] = ACTIONS(2743), - [anon_sym_virtual] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym___attribute__] = ACTIONS(2743), - [anon_sym___attribute] = ACTIONS(2743), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2745), - [anon_sym___declspec] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_signed] = ACTIONS(2743), - [anon_sym_unsigned] = ACTIONS(2743), - [anon_sym_long] = ACTIONS(2743), - [anon_sym_short] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_register] = ACTIONS(2743), - [anon_sym_inline] = ACTIONS(2743), - [anon_sym___inline] = ACTIONS(2743), - [anon_sym___inline__] = ACTIONS(2743), - [anon_sym___forceinline] = ACTIONS(2743), - [anon_sym_thread_local] = ACTIONS(2743), - [anon_sym___thread] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_constexpr] = ACTIONS(2743), - [anon_sym_volatile] = ACTIONS(2743), - [anon_sym_restrict] = ACTIONS(2743), - [anon_sym___restrict__] = ACTIONS(2743), - [anon_sym__Atomic] = ACTIONS(2743), - [anon_sym__Noreturn] = ACTIONS(2743), - [anon_sym_noreturn] = ACTIONS(2743), - [anon_sym__Nonnull] = ACTIONS(2743), - [anon_sym_mutable] = ACTIONS(2743), - [anon_sym_constinit] = ACTIONS(2743), - [anon_sym_consteval] = ACTIONS(2743), - [anon_sym_alignas] = ACTIONS(2743), - [anon_sym__Alignas] = ACTIONS(2743), - [sym_primitive_type] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_goto] = ACTIONS(2743), - [anon_sym___try] = ACTIONS(2743), - [anon_sym___leave] = ACTIONS(2743), - [anon_sym_not] = ACTIONS(2743), - [anon_sym_compl] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_sizeof] = ACTIONS(2743), - [anon_sym___alignof__] = ACTIONS(2743), - [anon_sym___alignof] = ACTIONS(2743), - [anon_sym__alignof] = ACTIONS(2743), - [anon_sym_alignof] = ACTIONS(2743), - [anon_sym__Alignof] = ACTIONS(2743), - [anon_sym_offsetof] = ACTIONS(2743), - [anon_sym__Generic] = ACTIONS(2743), - [anon_sym_asm] = ACTIONS(2743), - [anon_sym___asm__] = ACTIONS(2743), - [anon_sym___asm] = ACTIONS(2743), - [sym_number_literal] = ACTIONS(2745), - [anon_sym_L_SQUOTE] = ACTIONS(2745), - [anon_sym_u_SQUOTE] = ACTIONS(2745), - [anon_sym_U_SQUOTE] = ACTIONS(2745), - [anon_sym_u8_SQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [anon_sym_L_DQUOTE] = ACTIONS(2745), - [anon_sym_u_DQUOTE] = ACTIONS(2745), - [anon_sym_U_DQUOTE] = ACTIONS(2745), - [anon_sym_u8_DQUOTE] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [anon_sym_NULL] = ACTIONS(2743), - [anon_sym_nullptr] = ACTIONS(2743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2743), - [anon_sym_decltype] = ACTIONS(2743), - [anon_sym_typename] = ACTIONS(2743), - [anon_sym_template] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_co_return] = ACTIONS(2743), - [anon_sym_co_yield] = ACTIONS(2743), - [anon_sym_R_DQUOTE] = ACTIONS(2745), - [anon_sym_LR_DQUOTE] = ACTIONS(2745), - [anon_sym_uR_DQUOTE] = ACTIONS(2745), - [anon_sym_UR_DQUOTE] = ACTIONS(2745), - [anon_sym_u8R_DQUOTE] = ACTIONS(2745), - [anon_sym_co_await] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_requires] = ACTIONS(2743), - [sym_this] = ACTIONS(2743), + [STATE(396)] = { + [sym_identifier] = ACTIONS(3872), + [aux_sym_preproc_include_token1] = ACTIONS(3872), + [aux_sym_preproc_def_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token2] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), + [aux_sym_preproc_else_token1] = ACTIONS(3872), + [aux_sym_preproc_elif_token1] = ACTIONS(3872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3872), + [sym_preproc_directive] = ACTIONS(3872), + [anon_sym_LPAREN2] = ACTIONS(3874), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3872), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym___extension__] = ACTIONS(3872), + [anon_sym_typedef] = ACTIONS(3872), + [anon_sym_virtual] = ACTIONS(3872), + [anon_sym_extern] = ACTIONS(3872), + [anon_sym___attribute__] = ACTIONS(3872), + [anon_sym___attribute] = ACTIONS(3872), + [anon_sym_using] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(3874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), + [anon_sym___declspec] = ACTIONS(3872), + [anon_sym___based] = ACTIONS(3872), + [anon_sym___cdecl] = ACTIONS(3872), + [anon_sym___clrcall] = ACTIONS(3872), + [anon_sym___stdcall] = ACTIONS(3872), + [anon_sym___fastcall] = ACTIONS(3872), + [anon_sym___thiscall] = ACTIONS(3872), + [anon_sym___vectorcall] = ACTIONS(3872), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_signed] = ACTIONS(3872), + [anon_sym_unsigned] = ACTIONS(3872), + [anon_sym_long] = ACTIONS(3872), + [anon_sym_short] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(3872), + [anon_sym_static] = ACTIONS(3872), + [anon_sym_register] = ACTIONS(3872), + [anon_sym_inline] = ACTIONS(3872), + [anon_sym___inline] = ACTIONS(3872), + [anon_sym___inline__] = ACTIONS(3872), + [anon_sym___forceinline] = ACTIONS(3872), + [anon_sym_thread_local] = ACTIONS(3872), + [anon_sym___thread] = ACTIONS(3872), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_constexpr] = ACTIONS(3872), + [anon_sym_volatile] = ACTIONS(3872), + [anon_sym_restrict] = ACTIONS(3872), + [anon_sym___restrict__] = ACTIONS(3872), + [anon_sym__Atomic] = ACTIONS(3872), + [anon_sym__Noreturn] = ACTIONS(3872), + [anon_sym_noreturn] = ACTIONS(3872), + [anon_sym__Nonnull] = ACTIONS(3872), + [anon_sym_mutable] = ACTIONS(3872), + [anon_sym_constinit] = ACTIONS(3872), + [anon_sym_consteval] = ACTIONS(3872), + [anon_sym_alignas] = ACTIONS(3872), + [anon_sym__Alignas] = ACTIONS(3872), + [sym_primitive_type] = ACTIONS(3872), + [anon_sym_enum] = ACTIONS(3872), + [anon_sym_class] = ACTIONS(3872), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3872), + [anon_sym_case] = ACTIONS(3872), + [anon_sym_default] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_do] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_goto] = ACTIONS(3872), + [anon_sym___try] = ACTIONS(3872), + [anon_sym___leave] = ACTIONS(3872), + [anon_sym_not] = ACTIONS(3872), + [anon_sym_compl] = ACTIONS(3872), + [anon_sym_DASH_DASH] = ACTIONS(3874), + [anon_sym_PLUS_PLUS] = ACTIONS(3874), + [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym___alignof__] = ACTIONS(3872), + [anon_sym___alignof] = ACTIONS(3872), + [anon_sym__alignof] = ACTIONS(3872), + [anon_sym_alignof] = ACTIONS(3872), + [anon_sym__Alignof] = ACTIONS(3872), + [anon_sym_offsetof] = ACTIONS(3872), + [anon_sym__Generic] = ACTIONS(3872), + [anon_sym_typename] = ACTIONS(3872), + [anon_sym_asm] = ACTIONS(3872), + [anon_sym___asm__] = ACTIONS(3872), + [anon_sym___asm] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3874), + [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(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3872), + [sym_false] = ACTIONS(3872), + [anon_sym_NULL] = ACTIONS(3872), + [anon_sym_nullptr] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3872), + [anon_sym_decltype] = ACTIONS(3872), + [anon_sym_explicit] = ACTIONS(3872), + [anon_sym_template] = ACTIONS(3872), + [anon_sym_operator] = ACTIONS(3872), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_delete] = ACTIONS(3872), + [anon_sym_throw] = ACTIONS(3872), + [anon_sym_namespace] = ACTIONS(3872), + [anon_sym_static_assert] = ACTIONS(3872), + [anon_sym_concept] = ACTIONS(3872), + [anon_sym_co_return] = ACTIONS(3872), + [anon_sym_co_yield] = ACTIONS(3872), + [anon_sym_R_DQUOTE] = ACTIONS(3874), + [anon_sym_LR_DQUOTE] = ACTIONS(3874), + [anon_sym_uR_DQUOTE] = ACTIONS(3874), + [anon_sym_UR_DQUOTE] = ACTIONS(3874), + [anon_sym_u8R_DQUOTE] = ACTIONS(3874), + [anon_sym_co_await] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3872), + [anon_sym_requires] = ACTIONS(3872), + [anon_sym_CARET_CARET] = ACTIONS(3874), + [anon_sym_LBRACK_COLON] = ACTIONS(3874), + [sym_this] = ACTIONS(3872), }, - [STATE(940)] = { - [sym_identifier] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym___extension__] = ACTIONS(2659), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym___attribute] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym___inline] = ACTIONS(2659), - [anon_sym___inline__] = ACTIONS(2659), - [anon_sym___forceinline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym___thread] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym___restrict__] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym__Noreturn] = ACTIONS(2659), - [anon_sym_noreturn] = ACTIONS(2659), - [anon_sym__Nonnull] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_alignas] = ACTIONS(2659), - [anon_sym__Alignas] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym___try] = ACTIONS(2659), - [anon_sym___leave] = ACTIONS(2659), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_compl] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [anon_sym___alignof__] = ACTIONS(2659), - [anon_sym___alignof] = ACTIONS(2659), - [anon_sym__alignof] = ACTIONS(2659), - [anon_sym_alignof] = ACTIONS(2659), - [anon_sym__Alignof] = ACTIONS(2659), - [anon_sym_offsetof] = ACTIONS(2659), - [anon_sym__Generic] = ACTIONS(2659), - [anon_sym_asm] = ACTIONS(2659), - [anon_sym___asm__] = ACTIONS(2659), - [anon_sym___asm] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [anon_sym_NULL] = ACTIONS(2659), - [anon_sym_nullptr] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_R_DQUOTE] = ACTIONS(2661), - [anon_sym_LR_DQUOTE] = ACTIONS(2661), - [anon_sym_uR_DQUOTE] = ACTIONS(2661), - [anon_sym_UR_DQUOTE] = ACTIONS(2661), - [anon_sym_u8R_DQUOTE] = ACTIONS(2661), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), + [STATE(397)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [aux_sym_preproc_else_token1] = ACTIONS(3728), + [aux_sym_preproc_elif_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(941)] = { - [sym_identifier] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym___extension__] = ACTIONS(2629), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym___attribute] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym___inline] = ACTIONS(2629), - [anon_sym___inline__] = ACTIONS(2629), - [anon_sym___forceinline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym___thread] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym___restrict__] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym__Noreturn] = ACTIONS(2629), - [anon_sym_noreturn] = ACTIONS(2629), - [anon_sym__Nonnull] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_alignas] = ACTIONS(2629), - [anon_sym__Alignas] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym___try] = ACTIONS(2629), - [anon_sym___leave] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_compl] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [anon_sym___alignof__] = ACTIONS(2629), - [anon_sym___alignof] = ACTIONS(2629), - [anon_sym__alignof] = ACTIONS(2629), - [anon_sym_alignof] = ACTIONS(2629), - [anon_sym__Alignof] = ACTIONS(2629), - [anon_sym_offsetof] = ACTIONS(2629), - [anon_sym__Generic] = ACTIONS(2629), - [anon_sym_asm] = ACTIONS(2629), - [anon_sym___asm__] = ACTIONS(2629), - [anon_sym___asm] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [anon_sym_NULL] = ACTIONS(2629), - [anon_sym_nullptr] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_R_DQUOTE] = ACTIONS(2631), - [anon_sym_LR_DQUOTE] = ACTIONS(2631), - [anon_sym_uR_DQUOTE] = ACTIONS(2631), - [anon_sym_UR_DQUOTE] = ACTIONS(2631), - [anon_sym_u8R_DQUOTE] = ACTIONS(2631), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), + [STATE(398)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [aux_sym_preproc_else_token1] = ACTIONS(3876), + [aux_sym_preproc_elif_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(942)] = { - [sym_identifier] = ACTIONS(2765), - [anon_sym_LPAREN2] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym___extension__] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2765), - [anon_sym_virtual] = ACTIONS(2765), - [anon_sym_extern] = ACTIONS(2765), - [anon_sym___attribute__] = ACTIONS(2765), - [anon_sym___attribute] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), - [anon_sym___declspec] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_signed] = ACTIONS(2765), - [anon_sym_unsigned] = ACTIONS(2765), - [anon_sym_long] = ACTIONS(2765), - [anon_sym_short] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_register] = ACTIONS(2765), - [anon_sym_inline] = ACTIONS(2765), - [anon_sym___inline] = ACTIONS(2765), - [anon_sym___inline__] = ACTIONS(2765), - [anon_sym___forceinline] = ACTIONS(2765), - [anon_sym_thread_local] = ACTIONS(2765), - [anon_sym___thread] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_constexpr] = ACTIONS(2765), - [anon_sym_volatile] = ACTIONS(2765), - [anon_sym_restrict] = ACTIONS(2765), - [anon_sym___restrict__] = ACTIONS(2765), - [anon_sym__Atomic] = ACTIONS(2765), - [anon_sym__Noreturn] = ACTIONS(2765), - [anon_sym_noreturn] = ACTIONS(2765), - [anon_sym__Nonnull] = ACTIONS(2765), - [anon_sym_mutable] = ACTIONS(2765), - [anon_sym_constinit] = ACTIONS(2765), - [anon_sym_consteval] = ACTIONS(2765), - [anon_sym_alignas] = ACTIONS(2765), - [anon_sym__Alignas] = ACTIONS(2765), - [sym_primitive_type] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2765), - [anon_sym_union] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2765), - [anon_sym___leave] = ACTIONS(2765), - [anon_sym_not] = ACTIONS(2765), - [anon_sym_compl] = ACTIONS(2765), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2765), - [anon_sym___alignof__] = ACTIONS(2765), - [anon_sym___alignof] = ACTIONS(2765), - [anon_sym__alignof] = ACTIONS(2765), - [anon_sym_alignof] = ACTIONS(2765), - [anon_sym__Alignof] = ACTIONS(2765), - [anon_sym_offsetof] = ACTIONS(2765), - [anon_sym__Generic] = ACTIONS(2765), - [anon_sym_asm] = ACTIONS(2765), - [anon_sym___asm__] = ACTIONS(2765), - [anon_sym___asm] = ACTIONS(2765), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_L_SQUOTE] = ACTIONS(2767), - [anon_sym_u_SQUOTE] = ACTIONS(2767), - [anon_sym_U_SQUOTE] = ACTIONS(2767), - [anon_sym_u8_SQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_L_DQUOTE] = ACTIONS(2767), - [anon_sym_u_DQUOTE] = ACTIONS(2767), - [anon_sym_U_DQUOTE] = ACTIONS(2767), - [anon_sym_u8_DQUOTE] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [anon_sym_NULL] = ACTIONS(2765), - [anon_sym_nullptr] = ACTIONS(2765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2765), - [anon_sym_decltype] = ACTIONS(2765), - [anon_sym_typename] = ACTIONS(2765), - [anon_sym_template] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_co_return] = ACTIONS(2765), - [anon_sym_co_yield] = ACTIONS(2765), - [anon_sym_R_DQUOTE] = ACTIONS(2767), - [anon_sym_LR_DQUOTE] = ACTIONS(2767), - [anon_sym_uR_DQUOTE] = ACTIONS(2767), - [anon_sym_UR_DQUOTE] = ACTIONS(2767), - [anon_sym_u8R_DQUOTE] = ACTIONS(2767), - [anon_sym_co_await] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_requires] = ACTIONS(2765), - [sym_this] = ACTIONS(2765), + [STATE(399)] = { + [sym_identifier] = ACTIONS(3880), + [aux_sym_preproc_include_token1] = ACTIONS(3880), + [aux_sym_preproc_def_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token2] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), + [aux_sym_preproc_else_token1] = ACTIONS(3880), + [aux_sym_preproc_elif_token1] = ACTIONS(3880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3880), + [sym_preproc_directive] = ACTIONS(3880), + [anon_sym_LPAREN2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3880), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym___extension__] = ACTIONS(3880), + [anon_sym_typedef] = ACTIONS(3880), + [anon_sym_virtual] = ACTIONS(3880), + [anon_sym_extern] = ACTIONS(3880), + [anon_sym___attribute__] = ACTIONS(3880), + [anon_sym___attribute] = ACTIONS(3880), + [anon_sym_using] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), + [anon_sym___declspec] = ACTIONS(3880), + [anon_sym___based] = ACTIONS(3880), + [anon_sym___cdecl] = ACTIONS(3880), + [anon_sym___clrcall] = ACTIONS(3880), + [anon_sym___stdcall] = ACTIONS(3880), + [anon_sym___fastcall] = ACTIONS(3880), + [anon_sym___thiscall] = ACTIONS(3880), + [anon_sym___vectorcall] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3880), + [anon_sym_unsigned] = ACTIONS(3880), + [anon_sym_long] = ACTIONS(3880), + [anon_sym_short] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_static] = ACTIONS(3880), + [anon_sym_register] = ACTIONS(3880), + [anon_sym_inline] = ACTIONS(3880), + [anon_sym___inline] = ACTIONS(3880), + [anon_sym___inline__] = ACTIONS(3880), + [anon_sym___forceinline] = ACTIONS(3880), + [anon_sym_thread_local] = ACTIONS(3880), + [anon_sym___thread] = ACTIONS(3880), + [anon_sym_const] = ACTIONS(3880), + [anon_sym_constexpr] = ACTIONS(3880), + [anon_sym_volatile] = ACTIONS(3880), + [anon_sym_restrict] = ACTIONS(3880), + [anon_sym___restrict__] = ACTIONS(3880), + [anon_sym__Atomic] = ACTIONS(3880), + [anon_sym__Noreturn] = ACTIONS(3880), + [anon_sym_noreturn] = ACTIONS(3880), + [anon_sym__Nonnull] = ACTIONS(3880), + [anon_sym_mutable] = ACTIONS(3880), + [anon_sym_constinit] = ACTIONS(3880), + [anon_sym_consteval] = ACTIONS(3880), + [anon_sym_alignas] = ACTIONS(3880), + [anon_sym__Alignas] = ACTIONS(3880), + [sym_primitive_type] = ACTIONS(3880), + [anon_sym_enum] = ACTIONS(3880), + [anon_sym_class] = ACTIONS(3880), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_union] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3880), + [anon_sym_case] = ACTIONS(3880), + [anon_sym_default] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_do] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_goto] = ACTIONS(3880), + [anon_sym___try] = ACTIONS(3880), + [anon_sym___leave] = ACTIONS(3880), + [anon_sym_not] = ACTIONS(3880), + [anon_sym_compl] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_sizeof] = ACTIONS(3880), + [anon_sym___alignof__] = ACTIONS(3880), + [anon_sym___alignof] = ACTIONS(3880), + [anon_sym__alignof] = ACTIONS(3880), + [anon_sym_alignof] = ACTIONS(3880), + [anon_sym__Alignof] = ACTIONS(3880), + [anon_sym_offsetof] = ACTIONS(3880), + [anon_sym__Generic] = ACTIONS(3880), + [anon_sym_typename] = ACTIONS(3880), + [anon_sym_asm] = ACTIONS(3880), + [anon_sym___asm__] = ACTIONS(3880), + [anon_sym___asm] = ACTIONS(3880), + [sym_number_literal] = ACTIONS(3882), + [anon_sym_L_SQUOTE] = ACTIONS(3882), + [anon_sym_u_SQUOTE] = ACTIONS(3882), + [anon_sym_U_SQUOTE] = ACTIONS(3882), + [anon_sym_u8_SQUOTE] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3882), + [anon_sym_L_DQUOTE] = ACTIONS(3882), + [anon_sym_u_DQUOTE] = ACTIONS(3882), + [anon_sym_U_DQUOTE] = ACTIONS(3882), + [anon_sym_u8_DQUOTE] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3880), + [anon_sym_explicit] = ACTIONS(3880), + [anon_sym_template] = ACTIONS(3880), + [anon_sym_operator] = ACTIONS(3880), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_delete] = ACTIONS(3880), + [anon_sym_throw] = ACTIONS(3880), + [anon_sym_namespace] = ACTIONS(3880), + [anon_sym_static_assert] = ACTIONS(3880), + [anon_sym_concept] = ACTIONS(3880), + [anon_sym_co_return] = ACTIONS(3880), + [anon_sym_co_yield] = 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(3880), + [anon_sym_new] = ACTIONS(3880), + [anon_sym_requires] = ACTIONS(3880), + [anon_sym_CARET_CARET] = ACTIONS(3882), + [anon_sym_LBRACK_COLON] = ACTIONS(3882), + [sym_this] = ACTIONS(3880), }, - [STATE(943)] = { - [sym_identifier] = ACTIONS(2759), - [anon_sym_LPAREN2] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym___extension__] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2759), - [anon_sym_virtual] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym___attribute__] = ACTIONS(2759), - [anon_sym___attribute] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2761), - [anon_sym___declspec] = ACTIONS(2759), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_signed] = ACTIONS(2759), - [anon_sym_unsigned] = ACTIONS(2759), - [anon_sym_long] = ACTIONS(2759), - [anon_sym_short] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_register] = ACTIONS(2759), - [anon_sym_inline] = ACTIONS(2759), - [anon_sym___inline] = ACTIONS(2759), - [anon_sym___inline__] = ACTIONS(2759), - [anon_sym___forceinline] = ACTIONS(2759), - [anon_sym_thread_local] = ACTIONS(2759), - [anon_sym___thread] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_constexpr] = ACTIONS(2759), - [anon_sym_volatile] = ACTIONS(2759), - [anon_sym_restrict] = ACTIONS(2759), - [anon_sym___restrict__] = ACTIONS(2759), - [anon_sym__Atomic] = ACTIONS(2759), - [anon_sym__Noreturn] = ACTIONS(2759), - [anon_sym_noreturn] = ACTIONS(2759), - [anon_sym__Nonnull] = ACTIONS(2759), - [anon_sym_mutable] = ACTIONS(2759), - [anon_sym_constinit] = ACTIONS(2759), - [anon_sym_consteval] = ACTIONS(2759), - [anon_sym_alignas] = ACTIONS(2759), - [anon_sym__Alignas] = ACTIONS(2759), - [sym_primitive_type] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_switch] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_do] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_goto] = ACTIONS(2759), - [anon_sym___try] = ACTIONS(2759), - [anon_sym___leave] = ACTIONS(2759), - [anon_sym_not] = ACTIONS(2759), - [anon_sym_compl] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_sizeof] = ACTIONS(2759), - [anon_sym___alignof__] = ACTIONS(2759), - [anon_sym___alignof] = ACTIONS(2759), - [anon_sym__alignof] = ACTIONS(2759), - [anon_sym_alignof] = ACTIONS(2759), - [anon_sym__Alignof] = ACTIONS(2759), - [anon_sym_offsetof] = ACTIONS(2759), - [anon_sym__Generic] = ACTIONS(2759), - [anon_sym_asm] = ACTIONS(2759), - [anon_sym___asm__] = ACTIONS(2759), - [anon_sym___asm] = ACTIONS(2759), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_L_SQUOTE] = ACTIONS(2761), - [anon_sym_u_SQUOTE] = ACTIONS(2761), - [anon_sym_U_SQUOTE] = ACTIONS(2761), - [anon_sym_u8_SQUOTE] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2761), - [anon_sym_L_DQUOTE] = ACTIONS(2761), - [anon_sym_u_DQUOTE] = ACTIONS(2761), - [anon_sym_U_DQUOTE] = ACTIONS(2761), - [anon_sym_u8_DQUOTE] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_true] = ACTIONS(2759), - [sym_false] = ACTIONS(2759), - [anon_sym_NULL] = ACTIONS(2759), - [anon_sym_nullptr] = ACTIONS(2759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_template] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_delete] = ACTIONS(2759), - [anon_sym_throw] = ACTIONS(2759), - [anon_sym_co_return] = ACTIONS(2759), - [anon_sym_co_yield] = ACTIONS(2759), - [anon_sym_R_DQUOTE] = ACTIONS(2761), - [anon_sym_LR_DQUOTE] = ACTIONS(2761), - [anon_sym_uR_DQUOTE] = ACTIONS(2761), - [anon_sym_UR_DQUOTE] = ACTIONS(2761), - [anon_sym_u8R_DQUOTE] = ACTIONS(2761), - [anon_sym_co_await] = ACTIONS(2759), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_requires] = ACTIONS(2759), - [sym_this] = ACTIONS(2759), + [STATE(400)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [aux_sym_preproc_else_token1] = ACTIONS(3876), + [aux_sym_preproc_elif_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(944)] = { - [sym_identifier] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym___extension__] = ACTIONS(2695), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym___attribute] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym___inline] = ACTIONS(2695), - [anon_sym___inline__] = ACTIONS(2695), - [anon_sym___forceinline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym___thread] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym___restrict__] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym__Noreturn] = ACTIONS(2695), - [anon_sym_noreturn] = ACTIONS(2695), - [anon_sym__Nonnull] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_alignas] = ACTIONS(2695), - [anon_sym__Alignas] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym___try] = ACTIONS(2695), - [anon_sym___leave] = ACTIONS(2695), - [anon_sym_not] = ACTIONS(2695), - [anon_sym_compl] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [anon_sym___alignof__] = ACTIONS(2695), - [anon_sym___alignof] = ACTIONS(2695), - [anon_sym__alignof] = ACTIONS(2695), - [anon_sym_alignof] = ACTIONS(2695), - [anon_sym__Alignof] = ACTIONS(2695), - [anon_sym_offsetof] = ACTIONS(2695), - [anon_sym__Generic] = ACTIONS(2695), - [anon_sym_asm] = ACTIONS(2695), - [anon_sym___asm__] = ACTIONS(2695), - [anon_sym___asm] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [anon_sym_NULL] = ACTIONS(2695), - [anon_sym_nullptr] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_R_DQUOTE] = ACTIONS(2697), - [anon_sym_LR_DQUOTE] = ACTIONS(2697), - [anon_sym_uR_DQUOTE] = ACTIONS(2697), - [anon_sym_UR_DQUOTE] = ACTIONS(2697), - [anon_sym_u8R_DQUOTE] = ACTIONS(2697), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), + [STATE(401)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_include_token1] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token2] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [aux_sym_preproc_else_token1] = ACTIONS(3884), + [aux_sym_preproc_elif_token1] = ACTIONS(3884), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym___cdecl] = ACTIONS(3884), + [anon_sym___clrcall] = ACTIONS(3884), + [anon_sym___stdcall] = ACTIONS(3884), + [anon_sym___fastcall] = ACTIONS(3884), + [anon_sym___thiscall] = ACTIONS(3884), + [anon_sym___vectorcall] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_case] = ACTIONS(3884), + [anon_sym_default] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_goto] = ACTIONS(3884), + [anon_sym___try] = ACTIONS(3884), + [anon_sym___leave] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3884), + [anon_sym_compl] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_sizeof] = ACTIONS(3884), + [anon_sym___alignof__] = ACTIONS(3884), + [anon_sym___alignof] = ACTIONS(3884), + [anon_sym__alignof] = ACTIONS(3884), + [anon_sym_alignof] = ACTIONS(3884), + [anon_sym__Alignof] = ACTIONS(3884), + [anon_sym_offsetof] = ACTIONS(3884), + [anon_sym__Generic] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [anon_sym_asm] = ACTIONS(3884), + [anon_sym___asm__] = ACTIONS(3884), + [anon_sym___asm] = ACTIONS(3884), + [sym_number_literal] = ACTIONS(3886), + [anon_sym_L_SQUOTE] = ACTIONS(3886), + [anon_sym_u_SQUOTE] = ACTIONS(3886), + [anon_sym_U_SQUOTE] = ACTIONS(3886), + [anon_sym_u8_SQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [anon_sym_L_DQUOTE] = ACTIONS(3886), + [anon_sym_u_DQUOTE] = ACTIONS(3886), + [anon_sym_U_DQUOTE] = ACTIONS(3886), + [anon_sym_u8_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_true] = ACTIONS(3884), + [sym_false] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_nullptr] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_concept] = ACTIONS(3884), + [anon_sym_co_return] = ACTIONS(3884), + [anon_sym_co_yield] = ACTIONS(3884), + [anon_sym_R_DQUOTE] = ACTIONS(3886), + [anon_sym_LR_DQUOTE] = ACTIONS(3886), + [anon_sym_uR_DQUOTE] = ACTIONS(3886), + [anon_sym_UR_DQUOTE] = ACTIONS(3886), + [anon_sym_u8R_DQUOTE] = ACTIONS(3886), + [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_requires] = ACTIONS(3884), + [anon_sym_CARET_CARET] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [sym_this] = ACTIONS(3884), }, - [STATE(945)] = { - [sym_identifier] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym___extension__] = ACTIONS(2769), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym___attribute] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym___inline] = ACTIONS(2769), - [anon_sym___inline__] = ACTIONS(2769), - [anon_sym___forceinline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym___thread] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym___restrict__] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym__Noreturn] = ACTIONS(2769), - [anon_sym_noreturn] = ACTIONS(2769), - [anon_sym__Nonnull] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_alignas] = ACTIONS(2769), - [anon_sym__Alignas] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym___try] = ACTIONS(2769), - [anon_sym___leave] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2769), - [anon_sym_compl] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [anon_sym___alignof__] = ACTIONS(2769), - [anon_sym___alignof] = ACTIONS(2769), - [anon_sym__alignof] = ACTIONS(2769), - [anon_sym_alignof] = ACTIONS(2769), - [anon_sym__Alignof] = ACTIONS(2769), - [anon_sym_offsetof] = ACTIONS(2769), - [anon_sym__Generic] = ACTIONS(2769), - [anon_sym_asm] = ACTIONS(2769), - [anon_sym___asm__] = ACTIONS(2769), - [anon_sym___asm] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [anon_sym_NULL] = ACTIONS(2769), - [anon_sym_nullptr] = ACTIONS(2769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_R_DQUOTE] = ACTIONS(2771), - [anon_sym_LR_DQUOTE] = ACTIONS(2771), - [anon_sym_uR_DQUOTE] = ACTIONS(2771), - [anon_sym_UR_DQUOTE] = ACTIONS(2771), - [anon_sym_u8R_DQUOTE] = ACTIONS(2771), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), + [STATE(402)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(946)] = { - [sym_identifier] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym___extension__] = ACTIONS(2633), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym___attribute] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym___inline] = ACTIONS(2633), - [anon_sym___inline__] = ACTIONS(2633), - [anon_sym___forceinline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym___thread] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym___restrict__] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym__Noreturn] = ACTIONS(2633), - [anon_sym_noreturn] = ACTIONS(2633), - [anon_sym__Nonnull] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_alignas] = ACTIONS(2633), - [anon_sym__Alignas] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym___try] = ACTIONS(2633), - [anon_sym___leave] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_compl] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [anon_sym___alignof__] = ACTIONS(2633), - [anon_sym___alignof] = ACTIONS(2633), - [anon_sym__alignof] = ACTIONS(2633), - [anon_sym_alignof] = ACTIONS(2633), - [anon_sym__Alignof] = ACTIONS(2633), - [anon_sym_offsetof] = ACTIONS(2633), - [anon_sym__Generic] = ACTIONS(2633), - [anon_sym_asm] = ACTIONS(2633), - [anon_sym___asm__] = ACTIONS(2633), - [anon_sym___asm] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [anon_sym_NULL] = ACTIONS(2633), - [anon_sym_nullptr] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_R_DQUOTE] = ACTIONS(2635), - [anon_sym_LR_DQUOTE] = ACTIONS(2635), - [anon_sym_uR_DQUOTE] = ACTIONS(2635), - [anon_sym_UR_DQUOTE] = ACTIONS(2635), - [anon_sym_u8R_DQUOTE] = ACTIONS(2635), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), + [STATE(403)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_include_token1] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token2] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [aux_sym_preproc_else_token1] = ACTIONS(3890), + [aux_sym_preproc_elif_token1] = ACTIONS(3890), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_PLUS] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym___cdecl] = ACTIONS(3890), + [anon_sym___clrcall] = ACTIONS(3890), + [anon_sym___stdcall] = ACTIONS(3890), + [anon_sym___fastcall] = ACTIONS(3890), + [anon_sym___thiscall] = ACTIONS(3890), + [anon_sym___vectorcall] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_if] = ACTIONS(3890), + [anon_sym_else] = ACTIONS(3890), + [anon_sym_switch] = ACTIONS(3890), + [anon_sym_case] = ACTIONS(3890), + [anon_sym_default] = ACTIONS(3890), + [anon_sym_while] = ACTIONS(3890), + [anon_sym_do] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3890), + [anon_sym_return] = ACTIONS(3890), + [anon_sym_break] = ACTIONS(3890), + [anon_sym_continue] = ACTIONS(3890), + [anon_sym_goto] = ACTIONS(3890), + [anon_sym___try] = ACTIONS(3890), + [anon_sym___leave] = ACTIONS(3890), + [anon_sym_not] = ACTIONS(3890), + [anon_sym_compl] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_sizeof] = ACTIONS(3890), + [anon_sym___alignof__] = ACTIONS(3890), + [anon_sym___alignof] = ACTIONS(3890), + [anon_sym__alignof] = ACTIONS(3890), + [anon_sym_alignof] = ACTIONS(3890), + [anon_sym__Alignof] = ACTIONS(3890), + [anon_sym_offsetof] = ACTIONS(3890), + [anon_sym__Generic] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [anon_sym_asm] = ACTIONS(3890), + [anon_sym___asm__] = ACTIONS(3890), + [anon_sym___asm] = ACTIONS(3890), + [sym_number_literal] = ACTIONS(3892), + [anon_sym_L_SQUOTE] = ACTIONS(3892), + [anon_sym_u_SQUOTE] = ACTIONS(3892), + [anon_sym_U_SQUOTE] = ACTIONS(3892), + [anon_sym_u8_SQUOTE] = ACTIONS(3892), + [anon_sym_SQUOTE] = ACTIONS(3892), + [anon_sym_L_DQUOTE] = ACTIONS(3892), + [anon_sym_u_DQUOTE] = ACTIONS(3892), + [anon_sym_U_DQUOTE] = ACTIONS(3892), + [anon_sym_u8_DQUOTE] = ACTIONS(3892), + [anon_sym_DQUOTE] = ACTIONS(3892), + [sym_true] = ACTIONS(3890), + [sym_false] = ACTIONS(3890), + [anon_sym_NULL] = ACTIONS(3890), + [anon_sym_nullptr] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3890), + [anon_sym_delete] = ACTIONS(3890), + [anon_sym_throw] = ACTIONS(3890), + [anon_sym_namespace] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_concept] = ACTIONS(3890), + [anon_sym_co_return] = ACTIONS(3890), + [anon_sym_co_yield] = ACTIONS(3890), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_co_await] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3890), + [anon_sym_requires] = ACTIONS(3890), + [anon_sym_CARET_CARET] = ACTIONS(3892), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [sym_this] = ACTIONS(3890), }, - [STATE(947)] = { - [sym_identifier] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym___extension__] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2645), - [anon_sym_virtual] = ACTIONS(2645), - [anon_sym_extern] = ACTIONS(2645), - [anon_sym___attribute__] = ACTIONS(2645), - [anon_sym___attribute] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2647), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2647), - [anon_sym___declspec] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2645), - [anon_sym_unsigned] = ACTIONS(2645), - [anon_sym_long] = ACTIONS(2645), - [anon_sym_short] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_register] = ACTIONS(2645), - [anon_sym_inline] = ACTIONS(2645), - [anon_sym___inline] = ACTIONS(2645), - [anon_sym___inline__] = ACTIONS(2645), - [anon_sym___forceinline] = ACTIONS(2645), - [anon_sym_thread_local] = ACTIONS(2645), - [anon_sym___thread] = ACTIONS(2645), - [anon_sym_const] = ACTIONS(2645), - [anon_sym_constexpr] = ACTIONS(2645), - [anon_sym_volatile] = ACTIONS(2645), - [anon_sym_restrict] = ACTIONS(2645), - [anon_sym___restrict__] = ACTIONS(2645), - [anon_sym__Atomic] = ACTIONS(2645), - [anon_sym__Noreturn] = ACTIONS(2645), - [anon_sym_noreturn] = ACTIONS(2645), - [anon_sym__Nonnull] = ACTIONS(2645), - [anon_sym_mutable] = ACTIONS(2645), - [anon_sym_constinit] = ACTIONS(2645), - [anon_sym_consteval] = ACTIONS(2645), - [anon_sym_alignas] = ACTIONS(2645), - [anon_sym__Alignas] = ACTIONS(2645), - [sym_primitive_type] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_union] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_else] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(2645), - [anon_sym_while] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_for] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_goto] = ACTIONS(2645), - [anon_sym___try] = ACTIONS(2645), - [anon_sym___leave] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_compl] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(2645), - [anon_sym___alignof__] = ACTIONS(2645), - [anon_sym___alignof] = ACTIONS(2645), - [anon_sym__alignof] = ACTIONS(2645), - [anon_sym_alignof] = ACTIONS(2645), - [anon_sym__Alignof] = ACTIONS(2645), - [anon_sym_offsetof] = ACTIONS(2645), - [anon_sym__Generic] = ACTIONS(2645), - [anon_sym_asm] = ACTIONS(2645), - [anon_sym___asm__] = ACTIONS(2645), - [anon_sym___asm] = ACTIONS(2645), - [sym_number_literal] = ACTIONS(2647), - [anon_sym_L_SQUOTE] = ACTIONS(2647), - [anon_sym_u_SQUOTE] = ACTIONS(2647), - [anon_sym_U_SQUOTE] = ACTIONS(2647), - [anon_sym_u8_SQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_L_DQUOTE] = ACTIONS(2647), - [anon_sym_u_DQUOTE] = ACTIONS(2647), - [anon_sym_U_DQUOTE] = ACTIONS(2647), - [anon_sym_u8_DQUOTE] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym_true] = ACTIONS(2645), - [sym_false] = ACTIONS(2645), - [anon_sym_NULL] = ACTIONS(2645), - [anon_sym_nullptr] = ACTIONS(2645), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2645), - [anon_sym_decltype] = ACTIONS(2645), - [anon_sym_typename] = ACTIONS(2645), - [anon_sym_template] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_delete] = ACTIONS(2645), - [anon_sym_throw] = ACTIONS(2645), - [anon_sym_co_return] = ACTIONS(2645), - [anon_sym_co_yield] = ACTIONS(2645), - [anon_sym_R_DQUOTE] = ACTIONS(2647), - [anon_sym_LR_DQUOTE] = ACTIONS(2647), - [anon_sym_uR_DQUOTE] = ACTIONS(2647), - [anon_sym_UR_DQUOTE] = ACTIONS(2647), - [anon_sym_u8R_DQUOTE] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_requires] = ACTIONS(2645), - [sym_this] = ACTIONS(2645), + [STATE(404)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(948)] = { - [sym_identifier] = ACTIONS(2663), - [anon_sym_LPAREN2] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym___extension__] = ACTIONS(2663), - [anon_sym_typedef] = ACTIONS(2663), - [anon_sym_virtual] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym___attribute__] = ACTIONS(2663), - [anon_sym___attribute] = ACTIONS(2663), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), - [anon_sym___declspec] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym___inline] = ACTIONS(2663), - [anon_sym___inline__] = ACTIONS(2663), - [anon_sym___forceinline] = ACTIONS(2663), - [anon_sym_thread_local] = ACTIONS(2663), - [anon_sym___thread] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_constexpr] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym___restrict__] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym__Noreturn] = ACTIONS(2663), - [anon_sym_noreturn] = ACTIONS(2663), - [anon_sym__Nonnull] = ACTIONS(2663), - [anon_sym_mutable] = ACTIONS(2663), - [anon_sym_constinit] = ACTIONS(2663), - [anon_sym_consteval] = ACTIONS(2663), - [anon_sym_alignas] = ACTIONS(2663), - [anon_sym__Alignas] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_switch] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_do] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym___try] = ACTIONS(2663), - [anon_sym___leave] = ACTIONS(2663), - [anon_sym_not] = ACTIONS(2663), - [anon_sym_compl] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_sizeof] = ACTIONS(2663), - [anon_sym___alignof__] = ACTIONS(2663), - [anon_sym___alignof] = ACTIONS(2663), - [anon_sym__alignof] = ACTIONS(2663), - [anon_sym_alignof] = ACTIONS(2663), - [anon_sym__Alignof] = ACTIONS(2663), - [anon_sym_offsetof] = ACTIONS(2663), - [anon_sym__Generic] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym___asm__] = ACTIONS(2663), - [anon_sym___asm] = ACTIONS(2663), - [sym_number_literal] = ACTIONS(2665), - [anon_sym_L_SQUOTE] = ACTIONS(2665), - [anon_sym_u_SQUOTE] = ACTIONS(2665), - [anon_sym_U_SQUOTE] = ACTIONS(2665), - [anon_sym_u8_SQUOTE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2665), - [anon_sym_L_DQUOTE] = ACTIONS(2665), - [anon_sym_u_DQUOTE] = ACTIONS(2665), - [anon_sym_U_DQUOTE] = ACTIONS(2665), - [anon_sym_u8_DQUOTE] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [anon_sym_NULL] = ACTIONS(2663), - [anon_sym_nullptr] = ACTIONS(2663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2663), - [anon_sym_decltype] = ACTIONS(2663), - [anon_sym_typename] = ACTIONS(2663), - [anon_sym_template] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2663), - [anon_sym_throw] = ACTIONS(2663), - [anon_sym_co_return] = ACTIONS(2663), - [anon_sym_co_yield] = ACTIONS(2663), - [anon_sym_R_DQUOTE] = ACTIONS(2665), - [anon_sym_LR_DQUOTE] = ACTIONS(2665), - [anon_sym_uR_DQUOTE] = ACTIONS(2665), - [anon_sym_UR_DQUOTE] = ACTIONS(2665), - [anon_sym_u8R_DQUOTE] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2663), - [anon_sym_new] = ACTIONS(2663), - [anon_sym_requires] = ACTIONS(2663), - [sym_this] = ACTIONS(2663), + [STATE(405)] = { + [sym_identifier] = ACTIONS(3894), + [aux_sym_preproc_include_token1] = ACTIONS(3894), + [aux_sym_preproc_def_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token2] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), + [aux_sym_preproc_else_token1] = ACTIONS(3894), + [aux_sym_preproc_elif_token1] = ACTIONS(3894), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3894), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3894), + [sym_preproc_directive] = ACTIONS(3894), + [anon_sym_LPAREN2] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3896), + [anon_sym_TILDE] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AMP_AMP] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym___extension__] = ACTIONS(3894), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_virtual] = ACTIONS(3894), + [anon_sym_extern] = ACTIONS(3894), + [anon_sym___attribute__] = ACTIONS(3894), + [anon_sym___attribute] = ACTIONS(3894), + [anon_sym_using] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), + [anon_sym___declspec] = ACTIONS(3894), + [anon_sym___based] = ACTIONS(3894), + [anon_sym___cdecl] = ACTIONS(3894), + [anon_sym___clrcall] = ACTIONS(3894), + [anon_sym___stdcall] = ACTIONS(3894), + [anon_sym___fastcall] = ACTIONS(3894), + [anon_sym___thiscall] = ACTIONS(3894), + [anon_sym___vectorcall] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_signed] = ACTIONS(3894), + [anon_sym_unsigned] = ACTIONS(3894), + [anon_sym_long] = ACTIONS(3894), + [anon_sym_short] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_static] = ACTIONS(3894), + [anon_sym_register] = ACTIONS(3894), + [anon_sym_inline] = ACTIONS(3894), + [anon_sym___inline] = ACTIONS(3894), + [anon_sym___inline__] = ACTIONS(3894), + [anon_sym___forceinline] = ACTIONS(3894), + [anon_sym_thread_local] = ACTIONS(3894), + [anon_sym___thread] = ACTIONS(3894), + [anon_sym_const] = ACTIONS(3894), + [anon_sym_constexpr] = ACTIONS(3894), + [anon_sym_volatile] = ACTIONS(3894), + [anon_sym_restrict] = ACTIONS(3894), + [anon_sym___restrict__] = ACTIONS(3894), + [anon_sym__Atomic] = ACTIONS(3894), + [anon_sym__Noreturn] = ACTIONS(3894), + [anon_sym_noreturn] = ACTIONS(3894), + [anon_sym__Nonnull] = ACTIONS(3894), + [anon_sym_mutable] = ACTIONS(3894), + [anon_sym_constinit] = ACTIONS(3894), + [anon_sym_consteval] = ACTIONS(3894), + [anon_sym_alignas] = ACTIONS(3894), + [anon_sym__Alignas] = ACTIONS(3894), + [sym_primitive_type] = ACTIONS(3894), + [anon_sym_enum] = ACTIONS(3894), + [anon_sym_class] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3894), + [anon_sym_union] = ACTIONS(3894), + [anon_sym_if] = ACTIONS(3894), + [anon_sym_else] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3894), + [anon_sym_case] = ACTIONS(3894), + [anon_sym_default] = ACTIONS(3894), + [anon_sym_while] = ACTIONS(3894), + [anon_sym_do] = ACTIONS(3894), + [anon_sym_for] = ACTIONS(3894), + [anon_sym_return] = ACTIONS(3894), + [anon_sym_break] = ACTIONS(3894), + [anon_sym_continue] = ACTIONS(3894), + [anon_sym_goto] = ACTIONS(3894), + [anon_sym___try] = ACTIONS(3894), + [anon_sym___leave] = ACTIONS(3894), + [anon_sym_not] = ACTIONS(3894), + [anon_sym_compl] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3896), + [anon_sym_PLUS_PLUS] = ACTIONS(3896), + [anon_sym_sizeof] = ACTIONS(3894), + [anon_sym___alignof__] = ACTIONS(3894), + [anon_sym___alignof] = ACTIONS(3894), + [anon_sym__alignof] = ACTIONS(3894), + [anon_sym_alignof] = ACTIONS(3894), + [anon_sym__Alignof] = ACTIONS(3894), + [anon_sym_offsetof] = ACTIONS(3894), + [anon_sym__Generic] = ACTIONS(3894), + [anon_sym_typename] = ACTIONS(3894), + [anon_sym_asm] = ACTIONS(3894), + [anon_sym___asm__] = ACTIONS(3894), + [anon_sym___asm] = ACTIONS(3894), + [sym_number_literal] = ACTIONS(3896), + [anon_sym_L_SQUOTE] = ACTIONS(3896), + [anon_sym_u_SQUOTE] = ACTIONS(3896), + [anon_sym_U_SQUOTE] = ACTIONS(3896), + [anon_sym_u8_SQUOTE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3896), + [anon_sym_L_DQUOTE] = ACTIONS(3896), + [anon_sym_u_DQUOTE] = ACTIONS(3896), + [anon_sym_U_DQUOTE] = ACTIONS(3896), + [anon_sym_u8_DQUOTE] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym_true] = ACTIONS(3894), + [sym_false] = ACTIONS(3894), + [anon_sym_NULL] = ACTIONS(3894), + [anon_sym_nullptr] = ACTIONS(3894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3894), + [anon_sym_decltype] = ACTIONS(3894), + [anon_sym_explicit] = ACTIONS(3894), + [anon_sym_template] = ACTIONS(3894), + [anon_sym_operator] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3894), + [anon_sym_delete] = ACTIONS(3894), + [anon_sym_throw] = ACTIONS(3894), + [anon_sym_namespace] = ACTIONS(3894), + [anon_sym_static_assert] = ACTIONS(3894), + [anon_sym_concept] = ACTIONS(3894), + [anon_sym_co_return] = ACTIONS(3894), + [anon_sym_co_yield] = ACTIONS(3894), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_co_await] = ACTIONS(3894), + [anon_sym_new] = ACTIONS(3894), + [anon_sym_requires] = ACTIONS(3894), + [anon_sym_CARET_CARET] = ACTIONS(3896), + [anon_sym_LBRACK_COLON] = ACTIONS(3896), + [sym_this] = ACTIONS(3894), }, - [STATE(949)] = { - [sym_identifier] = ACTIONS(2667), - [anon_sym_LPAREN2] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2667), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym___extension__] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2667), - [anon_sym_virtual] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym___attribute__] = ACTIONS(2667), - [anon_sym___attribute] = ACTIONS(2667), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2669), - [anon_sym___declspec] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym___inline] = ACTIONS(2667), - [anon_sym___inline__] = ACTIONS(2667), - [anon_sym___forceinline] = ACTIONS(2667), - [anon_sym_thread_local] = ACTIONS(2667), - [anon_sym___thread] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_constexpr] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym___restrict__] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym__Noreturn] = ACTIONS(2667), - [anon_sym_noreturn] = ACTIONS(2667), - [anon_sym__Nonnull] = ACTIONS(2667), - [anon_sym_mutable] = ACTIONS(2667), - [anon_sym_constinit] = ACTIONS(2667), - [anon_sym_consteval] = ACTIONS(2667), - [anon_sym_alignas] = ACTIONS(2667), - [anon_sym__Alignas] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_switch] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_do] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_goto] = ACTIONS(2667), - [anon_sym___try] = ACTIONS(2667), - [anon_sym___leave] = ACTIONS(2667), - [anon_sym_not] = ACTIONS(2667), - [anon_sym_compl] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(2667), - [anon_sym___alignof__] = ACTIONS(2667), - [anon_sym___alignof] = ACTIONS(2667), - [anon_sym__alignof] = ACTIONS(2667), - [anon_sym_alignof] = ACTIONS(2667), - [anon_sym__Alignof] = ACTIONS(2667), - [anon_sym_offsetof] = ACTIONS(2667), - [anon_sym__Generic] = ACTIONS(2667), - [anon_sym_asm] = ACTIONS(2667), - [anon_sym___asm__] = ACTIONS(2667), - [anon_sym___asm] = ACTIONS(2667), - [sym_number_literal] = ACTIONS(2669), - [anon_sym_L_SQUOTE] = ACTIONS(2669), - [anon_sym_u_SQUOTE] = ACTIONS(2669), - [anon_sym_U_SQUOTE] = ACTIONS(2669), - [anon_sym_u8_SQUOTE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2669), - [anon_sym_L_DQUOTE] = ACTIONS(2669), - [anon_sym_u_DQUOTE] = ACTIONS(2669), - [anon_sym_U_DQUOTE] = ACTIONS(2669), - [anon_sym_u8_DQUOTE] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_true] = ACTIONS(2667), - [sym_false] = ACTIONS(2667), - [anon_sym_NULL] = ACTIONS(2667), - [anon_sym_nullptr] = ACTIONS(2667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2667), - [anon_sym_decltype] = ACTIONS(2667), - [anon_sym_typename] = ACTIONS(2667), - [anon_sym_template] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_delete] = ACTIONS(2667), - [anon_sym_throw] = ACTIONS(2667), - [anon_sym_co_return] = ACTIONS(2667), - [anon_sym_co_yield] = ACTIONS(2667), - [anon_sym_R_DQUOTE] = ACTIONS(2669), - [anon_sym_LR_DQUOTE] = ACTIONS(2669), - [anon_sym_uR_DQUOTE] = ACTIONS(2669), - [anon_sym_UR_DQUOTE] = ACTIONS(2669), - [anon_sym_u8R_DQUOTE] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2667), - [anon_sym_new] = ACTIONS(2667), - [anon_sym_requires] = ACTIONS(2667), - [sym_this] = ACTIONS(2667), + [STATE(406)] = { + [sym_identifier] = ACTIONS(3898), + [aux_sym_preproc_include_token1] = ACTIONS(3898), + [aux_sym_preproc_def_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token2] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), + [aux_sym_preproc_else_token1] = ACTIONS(3898), + [aux_sym_preproc_elif_token1] = ACTIONS(3898), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3898), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3898), + [sym_preproc_directive] = ACTIONS(3898), + [anon_sym_LPAREN2] = ACTIONS(3900), + [anon_sym_BANG] = ACTIONS(3900), + [anon_sym_TILDE] = ACTIONS(3900), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_PLUS] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3900), + [anon_sym_AMP_AMP] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(3898), + [anon_sym_typedef] = ACTIONS(3898), + [anon_sym_virtual] = ACTIONS(3898), + [anon_sym_extern] = ACTIONS(3898), + [anon_sym___attribute__] = ACTIONS(3898), + [anon_sym___attribute] = ACTIONS(3898), + [anon_sym_using] = ACTIONS(3898), + [anon_sym_COLON_COLON] = ACTIONS(3900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), + [anon_sym___declspec] = ACTIONS(3898), + [anon_sym___based] = ACTIONS(3898), + [anon_sym___cdecl] = ACTIONS(3898), + [anon_sym___clrcall] = ACTIONS(3898), + [anon_sym___stdcall] = ACTIONS(3898), + [anon_sym___fastcall] = ACTIONS(3898), + [anon_sym___thiscall] = ACTIONS(3898), + [anon_sym___vectorcall] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3900), + [anon_sym_signed] = ACTIONS(3898), + [anon_sym_unsigned] = ACTIONS(3898), + [anon_sym_long] = ACTIONS(3898), + [anon_sym_short] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_static] = ACTIONS(3898), + [anon_sym_register] = ACTIONS(3898), + [anon_sym_inline] = ACTIONS(3898), + [anon_sym___inline] = ACTIONS(3898), + [anon_sym___inline__] = ACTIONS(3898), + [anon_sym___forceinline] = ACTIONS(3898), + [anon_sym_thread_local] = ACTIONS(3898), + [anon_sym___thread] = ACTIONS(3898), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_constexpr] = ACTIONS(3898), + [anon_sym_volatile] = ACTIONS(3898), + [anon_sym_restrict] = ACTIONS(3898), + [anon_sym___restrict__] = ACTIONS(3898), + [anon_sym__Atomic] = ACTIONS(3898), + [anon_sym__Noreturn] = ACTIONS(3898), + [anon_sym_noreturn] = ACTIONS(3898), + [anon_sym__Nonnull] = ACTIONS(3898), + [anon_sym_mutable] = ACTIONS(3898), + [anon_sym_constinit] = ACTIONS(3898), + [anon_sym_consteval] = ACTIONS(3898), + [anon_sym_alignas] = ACTIONS(3898), + [anon_sym__Alignas] = ACTIONS(3898), + [sym_primitive_type] = ACTIONS(3898), + [anon_sym_enum] = ACTIONS(3898), + [anon_sym_class] = ACTIONS(3898), + [anon_sym_struct] = ACTIONS(3898), + [anon_sym_union] = ACTIONS(3898), + [anon_sym_if] = ACTIONS(3898), + [anon_sym_switch] = ACTIONS(3898), + [anon_sym_case] = ACTIONS(3898), + [anon_sym_default] = ACTIONS(3898), + [anon_sym_while] = ACTIONS(3898), + [anon_sym_do] = ACTIONS(3898), + [anon_sym_for] = ACTIONS(3898), + [anon_sym_return] = ACTIONS(3898), + [anon_sym_break] = ACTIONS(3898), + [anon_sym_continue] = ACTIONS(3898), + [anon_sym_goto] = ACTIONS(3898), + [anon_sym___try] = ACTIONS(3898), + [anon_sym___leave] = ACTIONS(3898), + [anon_sym_not] = ACTIONS(3898), + [anon_sym_compl] = ACTIONS(3898), + [anon_sym_DASH_DASH] = ACTIONS(3900), + [anon_sym_PLUS_PLUS] = ACTIONS(3900), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(3898), + [anon_sym___alignof] = ACTIONS(3898), + [anon_sym__alignof] = ACTIONS(3898), + [anon_sym_alignof] = ACTIONS(3898), + [anon_sym__Alignof] = ACTIONS(3898), + [anon_sym_offsetof] = ACTIONS(3898), + [anon_sym__Generic] = ACTIONS(3898), + [anon_sym_typename] = ACTIONS(3898), + [anon_sym_asm] = ACTIONS(3898), + [anon_sym___asm__] = ACTIONS(3898), + [anon_sym___asm] = ACTIONS(3898), + [sym_number_literal] = ACTIONS(3900), + [anon_sym_L_SQUOTE] = ACTIONS(3900), + [anon_sym_u_SQUOTE] = ACTIONS(3900), + [anon_sym_U_SQUOTE] = ACTIONS(3900), + [anon_sym_u8_SQUOTE] = ACTIONS(3900), + [anon_sym_SQUOTE] = ACTIONS(3900), + [anon_sym_L_DQUOTE] = ACTIONS(3900), + [anon_sym_u_DQUOTE] = ACTIONS(3900), + [anon_sym_U_DQUOTE] = ACTIONS(3900), + [anon_sym_u8_DQUOTE] = ACTIONS(3900), + [anon_sym_DQUOTE] = ACTIONS(3900), + [sym_true] = ACTIONS(3898), + [sym_false] = ACTIONS(3898), + [anon_sym_NULL] = ACTIONS(3898), + [anon_sym_nullptr] = ACTIONS(3898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3898), + [anon_sym_decltype] = ACTIONS(3898), + [anon_sym_explicit] = ACTIONS(3898), + [anon_sym_template] = ACTIONS(3898), + [anon_sym_operator] = ACTIONS(3898), + [anon_sym_try] = ACTIONS(3898), + [anon_sym_delete] = ACTIONS(3898), + [anon_sym_throw] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_static_assert] = ACTIONS(3898), + [anon_sym_concept] = ACTIONS(3898), + [anon_sym_co_return] = ACTIONS(3898), + [anon_sym_co_yield] = ACTIONS(3898), + [anon_sym_R_DQUOTE] = ACTIONS(3900), + [anon_sym_LR_DQUOTE] = ACTIONS(3900), + [anon_sym_uR_DQUOTE] = ACTIONS(3900), + [anon_sym_UR_DQUOTE] = ACTIONS(3900), + [anon_sym_u8R_DQUOTE] = ACTIONS(3900), + [anon_sym_co_await] = ACTIONS(3898), + [anon_sym_new] = ACTIONS(3898), + [anon_sym_requires] = ACTIONS(3898), + [anon_sym_CARET_CARET] = ACTIONS(3900), + [anon_sym_LBRACK_COLON] = ACTIONS(3900), + [sym_this] = ACTIONS(3898), }, - [STATE(950)] = { - [sym_identifier] = ACTIONS(4047), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_BANG] = ACTIONS(4053), - [anon_sym_TILDE] = ACTIONS(4053), - [anon_sym_DASH] = ACTIONS(4055), - [anon_sym_PLUS] = ACTIONS(4055), - [anon_sym_STAR] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(4053), - [anon_sym_SEMI] = ACTIONS(4053), - [anon_sym___extension__] = ACTIONS(4047), - [anon_sym_virtual] = ACTIONS(4059), - [anon_sym_extern] = ACTIONS(4059), - [anon_sym___attribute__] = ACTIONS(4059), - [anon_sym___attribute] = ACTIONS(4059), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(4053), - [anon_sym_signed] = ACTIONS(4059), - [anon_sym_unsigned] = ACTIONS(4059), - [anon_sym_long] = ACTIONS(4059), - [anon_sym_short] = ACTIONS(4059), - [anon_sym_LBRACK] = ACTIONS(4055), - [anon_sym_static] = ACTIONS(4059), - [anon_sym_register] = ACTIONS(4059), - [anon_sym_inline] = ACTIONS(4059), - [anon_sym___inline] = ACTIONS(4059), - [anon_sym___inline__] = ACTIONS(4059), - [anon_sym___forceinline] = ACTIONS(4059), - [anon_sym_thread_local] = ACTIONS(4059), - [anon_sym___thread] = ACTIONS(4059), - [anon_sym_const] = ACTIONS(4059), - [anon_sym_constexpr] = ACTIONS(4059), - [anon_sym_volatile] = ACTIONS(4059), - [anon_sym_restrict] = ACTIONS(4059), - [anon_sym___restrict__] = ACTIONS(4059), - [anon_sym__Atomic] = ACTIONS(4059), - [anon_sym__Noreturn] = ACTIONS(4059), - [anon_sym_noreturn] = ACTIONS(4059), - [anon_sym__Nonnull] = ACTIONS(4059), - [anon_sym_mutable] = ACTIONS(4059), - [anon_sym_constinit] = ACTIONS(4059), - [anon_sym_consteval] = ACTIONS(4059), - [anon_sym_alignas] = ACTIONS(4059), - [anon_sym__Alignas] = ACTIONS(4059), - [sym_primitive_type] = ACTIONS(4047), - [anon_sym_enum] = ACTIONS(4059), - [anon_sym_class] = ACTIONS(4059), - [anon_sym_struct] = ACTIONS(4059), - [anon_sym_union] = ACTIONS(4059), - [anon_sym_if] = ACTIONS(4055), - [anon_sym_switch] = ACTIONS(4055), - [anon_sym_case] = ACTIONS(4055), - [anon_sym_default] = ACTIONS(4055), - [anon_sym_while] = ACTIONS(4055), - [anon_sym_do] = ACTIONS(4055), - [anon_sym_for] = ACTIONS(4055), - [anon_sym_return] = ACTIONS(4055), - [anon_sym_break] = ACTIONS(4055), - [anon_sym_continue] = ACTIONS(4055), - [anon_sym_goto] = ACTIONS(4055), - [anon_sym___try] = ACTIONS(4055), - [anon_sym___leave] = ACTIONS(4055), - [anon_sym_not] = ACTIONS(4055), - [anon_sym_compl] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(4053), - [anon_sym_PLUS_PLUS] = ACTIONS(4053), - [anon_sym_sizeof] = ACTIONS(4055), - [anon_sym___alignof__] = ACTIONS(4055), - [anon_sym___alignof] = ACTIONS(4055), - [anon_sym__alignof] = ACTIONS(4055), - [anon_sym_alignof] = ACTIONS(4055), - [anon_sym__Alignof] = ACTIONS(4055), - [anon_sym_offsetof] = ACTIONS(4055), - [anon_sym__Generic] = ACTIONS(4055), - [anon_sym_asm] = ACTIONS(4055), - [anon_sym___asm__] = ACTIONS(4055), - [anon_sym___asm] = ACTIONS(4055), - [sym_number_literal] = ACTIONS(4053), - [anon_sym_L_SQUOTE] = ACTIONS(4053), - [anon_sym_u_SQUOTE] = ACTIONS(4053), - [anon_sym_U_SQUOTE] = ACTIONS(4053), - [anon_sym_u8_SQUOTE] = ACTIONS(4053), - [anon_sym_SQUOTE] = ACTIONS(4053), - [anon_sym_L_DQUOTE] = ACTIONS(4053), - [anon_sym_u_DQUOTE] = ACTIONS(4053), - [anon_sym_U_DQUOTE] = ACTIONS(4053), - [anon_sym_u8_DQUOTE] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(4053), - [sym_true] = ACTIONS(4055), - [sym_false] = ACTIONS(4055), - [anon_sym_NULL] = ACTIONS(4055), - [anon_sym_nullptr] = ACTIONS(4055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4059), - [anon_sym_decltype] = ACTIONS(4047), - [anon_sym_typename] = ACTIONS(4059), - [anon_sym_template] = ACTIONS(4047), - [anon_sym_try] = ACTIONS(4055), - [anon_sym_delete] = ACTIONS(4055), - [anon_sym_throw] = ACTIONS(4055), - [anon_sym_co_return] = ACTIONS(4055), - [anon_sym_co_yield] = ACTIONS(4055), - [anon_sym_R_DQUOTE] = ACTIONS(4053), - [anon_sym_LR_DQUOTE] = ACTIONS(4053), - [anon_sym_uR_DQUOTE] = ACTIONS(4053), - [anon_sym_UR_DQUOTE] = ACTIONS(4053), - [anon_sym_u8R_DQUOTE] = ACTIONS(4053), - [anon_sym_co_await] = ACTIONS(4055), - [anon_sym_new] = ACTIONS(4055), - [anon_sym_requires] = ACTIONS(4055), - [sym_this] = ACTIONS(4055), + [STATE(407)] = { + [sym_identifier] = ACTIONS(3902), + [aux_sym_preproc_include_token1] = ACTIONS(3902), + [aux_sym_preproc_def_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token2] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), + [aux_sym_preproc_else_token1] = ACTIONS(3902), + [aux_sym_preproc_elif_token1] = ACTIONS(3902), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3902), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3902), + [sym_preproc_directive] = ACTIONS(3902), + [anon_sym_LPAREN2] = ACTIONS(3904), + [anon_sym_BANG] = ACTIONS(3904), + [anon_sym_TILDE] = ACTIONS(3904), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_PLUS] = ACTIONS(3902), + [anon_sym_STAR] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3902), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym___extension__] = ACTIONS(3902), + [anon_sym_typedef] = ACTIONS(3902), + [anon_sym_virtual] = ACTIONS(3902), + [anon_sym_extern] = ACTIONS(3902), + [anon_sym___attribute__] = ACTIONS(3902), + [anon_sym___attribute] = ACTIONS(3902), + [anon_sym_using] = ACTIONS(3902), + [anon_sym_COLON_COLON] = ACTIONS(3904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), + [anon_sym___declspec] = ACTIONS(3902), + [anon_sym___based] = ACTIONS(3902), + [anon_sym___cdecl] = ACTIONS(3902), + [anon_sym___clrcall] = ACTIONS(3902), + [anon_sym___stdcall] = ACTIONS(3902), + [anon_sym___fastcall] = ACTIONS(3902), + [anon_sym___thiscall] = ACTIONS(3902), + [anon_sym___vectorcall] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3904), + [anon_sym_signed] = ACTIONS(3902), + [anon_sym_unsigned] = ACTIONS(3902), + [anon_sym_long] = ACTIONS(3902), + [anon_sym_short] = ACTIONS(3902), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_static] = ACTIONS(3902), + [anon_sym_register] = ACTIONS(3902), + [anon_sym_inline] = ACTIONS(3902), + [anon_sym___inline] = ACTIONS(3902), + [anon_sym___inline__] = ACTIONS(3902), + [anon_sym___forceinline] = ACTIONS(3902), + [anon_sym_thread_local] = ACTIONS(3902), + [anon_sym___thread] = ACTIONS(3902), + [anon_sym_const] = ACTIONS(3902), + [anon_sym_constexpr] = ACTIONS(3902), + [anon_sym_volatile] = ACTIONS(3902), + [anon_sym_restrict] = ACTIONS(3902), + [anon_sym___restrict__] = ACTIONS(3902), + [anon_sym__Atomic] = ACTIONS(3902), + [anon_sym__Noreturn] = ACTIONS(3902), + [anon_sym_noreturn] = ACTIONS(3902), + [anon_sym__Nonnull] = ACTIONS(3902), + [anon_sym_mutable] = ACTIONS(3902), + [anon_sym_constinit] = ACTIONS(3902), + [anon_sym_consteval] = ACTIONS(3902), + [anon_sym_alignas] = ACTIONS(3902), + [anon_sym__Alignas] = ACTIONS(3902), + [sym_primitive_type] = ACTIONS(3902), + [anon_sym_enum] = ACTIONS(3902), + [anon_sym_class] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3902), + [anon_sym_union] = ACTIONS(3902), + [anon_sym_if] = ACTIONS(3902), + [anon_sym_switch] = ACTIONS(3902), + [anon_sym_case] = ACTIONS(3902), + [anon_sym_default] = ACTIONS(3902), + [anon_sym_while] = ACTIONS(3902), + [anon_sym_do] = ACTIONS(3902), + [anon_sym_for] = ACTIONS(3902), + [anon_sym_return] = ACTIONS(3902), + [anon_sym_break] = ACTIONS(3902), + [anon_sym_continue] = ACTIONS(3902), + [anon_sym_goto] = ACTIONS(3902), + [anon_sym___try] = ACTIONS(3902), + [anon_sym___leave] = ACTIONS(3902), + [anon_sym_not] = ACTIONS(3902), + [anon_sym_compl] = ACTIONS(3902), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3902), + [anon_sym___alignof__] = ACTIONS(3902), + [anon_sym___alignof] = ACTIONS(3902), + [anon_sym__alignof] = ACTIONS(3902), + [anon_sym_alignof] = ACTIONS(3902), + [anon_sym__Alignof] = ACTIONS(3902), + [anon_sym_offsetof] = ACTIONS(3902), + [anon_sym__Generic] = ACTIONS(3902), + [anon_sym_typename] = ACTIONS(3902), + [anon_sym_asm] = ACTIONS(3902), + [anon_sym___asm__] = ACTIONS(3902), + [anon_sym___asm] = ACTIONS(3902), + [sym_number_literal] = ACTIONS(3904), + [anon_sym_L_SQUOTE] = ACTIONS(3904), + [anon_sym_u_SQUOTE] = ACTIONS(3904), + [anon_sym_U_SQUOTE] = ACTIONS(3904), + [anon_sym_u8_SQUOTE] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_L_DQUOTE] = ACTIONS(3904), + [anon_sym_u_DQUOTE] = ACTIONS(3904), + [anon_sym_U_DQUOTE] = ACTIONS(3904), + [anon_sym_u8_DQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [sym_true] = ACTIONS(3902), + [sym_false] = ACTIONS(3902), + [anon_sym_NULL] = ACTIONS(3902), + [anon_sym_nullptr] = ACTIONS(3902), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3902), + [anon_sym_decltype] = ACTIONS(3902), + [anon_sym_explicit] = ACTIONS(3902), + [anon_sym_template] = ACTIONS(3902), + [anon_sym_operator] = ACTIONS(3902), + [anon_sym_try] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3902), + [anon_sym_throw] = ACTIONS(3902), + [anon_sym_namespace] = ACTIONS(3902), + [anon_sym_static_assert] = ACTIONS(3902), + [anon_sym_concept] = ACTIONS(3902), + [anon_sym_co_return] = ACTIONS(3902), + [anon_sym_co_yield] = ACTIONS(3902), + [anon_sym_R_DQUOTE] = ACTIONS(3904), + [anon_sym_LR_DQUOTE] = ACTIONS(3904), + [anon_sym_uR_DQUOTE] = ACTIONS(3904), + [anon_sym_UR_DQUOTE] = ACTIONS(3904), + [anon_sym_u8R_DQUOTE] = ACTIONS(3904), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3902), + [anon_sym_requires] = ACTIONS(3902), + [anon_sym_CARET_CARET] = ACTIONS(3904), + [anon_sym_LBRACK_COLON] = ACTIONS(3904), + [sym_this] = ACTIONS(3902), }, - [STATE(951)] = { - [sym_identifier] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym___extension__] = ACTIONS(2773), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym___attribute] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym___inline] = ACTIONS(2773), - [anon_sym___inline__] = ACTIONS(2773), - [anon_sym___forceinline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym___thread] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym___restrict__] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym__Noreturn] = ACTIONS(2773), - [anon_sym_noreturn] = ACTIONS(2773), - [anon_sym__Nonnull] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_alignas] = ACTIONS(2773), - [anon_sym__Alignas] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym___try] = ACTIONS(2773), - [anon_sym___leave] = ACTIONS(2773), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_compl] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [anon_sym___alignof__] = ACTIONS(2773), - [anon_sym___alignof] = ACTIONS(2773), - [anon_sym__alignof] = ACTIONS(2773), - [anon_sym_alignof] = ACTIONS(2773), - [anon_sym__Alignof] = ACTIONS(2773), - [anon_sym_offsetof] = ACTIONS(2773), - [anon_sym__Generic] = ACTIONS(2773), - [anon_sym_asm] = ACTIONS(2773), - [anon_sym___asm__] = ACTIONS(2773), - [anon_sym___asm] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [anon_sym_NULL] = ACTIONS(2773), - [anon_sym_nullptr] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_R_DQUOTE] = ACTIONS(2775), - [anon_sym_LR_DQUOTE] = ACTIONS(2775), - [anon_sym_uR_DQUOTE] = ACTIONS(2775), - [anon_sym_UR_DQUOTE] = ACTIONS(2775), - [anon_sym_u8R_DQUOTE] = ACTIONS(2775), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), + [STATE(408)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_include_token1] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token2] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [aux_sym_preproc_else_token1] = ACTIONS(3906), + [aux_sym_preproc_elif_token1] = ACTIONS(3906), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym___cdecl] = ACTIONS(3906), + [anon_sym___clrcall] = ACTIONS(3906), + [anon_sym___stdcall] = ACTIONS(3906), + [anon_sym___fastcall] = ACTIONS(3906), + [anon_sym___thiscall] = ACTIONS(3906), + [anon_sym___vectorcall] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3908), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3906), + [anon_sym_case] = ACTIONS(3906), + [anon_sym_default] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_break] = ACTIONS(3906), + [anon_sym_continue] = ACTIONS(3906), + [anon_sym_goto] = ACTIONS(3906), + [anon_sym___try] = ACTIONS(3906), + [anon_sym___leave] = ACTIONS(3906), + [anon_sym_not] = ACTIONS(3906), + [anon_sym_compl] = ACTIONS(3906), + [anon_sym_DASH_DASH] = ACTIONS(3908), + [anon_sym_PLUS_PLUS] = ACTIONS(3908), + [anon_sym_sizeof] = ACTIONS(3906), + [anon_sym___alignof__] = ACTIONS(3906), + [anon_sym___alignof] = ACTIONS(3906), + [anon_sym__alignof] = ACTIONS(3906), + [anon_sym_alignof] = ACTIONS(3906), + [anon_sym__Alignof] = ACTIONS(3906), + [anon_sym_offsetof] = ACTIONS(3906), + [anon_sym__Generic] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [anon_sym_asm] = ACTIONS(3906), + [anon_sym___asm__] = ACTIONS(3906), + [anon_sym___asm] = ACTIONS(3906), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3908), + [anon_sym_u_SQUOTE] = ACTIONS(3908), + [anon_sym_U_SQUOTE] = ACTIONS(3908), + [anon_sym_u8_SQUOTE] = ACTIONS(3908), + [anon_sym_SQUOTE] = ACTIONS(3908), + [anon_sym_L_DQUOTE] = ACTIONS(3908), + [anon_sym_u_DQUOTE] = ACTIONS(3908), + [anon_sym_U_DQUOTE] = ACTIONS(3908), + [anon_sym_u8_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(3908), + [sym_true] = ACTIONS(3906), + [sym_false] = ACTIONS(3906), + [anon_sym_NULL] = ACTIONS(3906), + [anon_sym_nullptr] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3906), + [anon_sym_throw] = ACTIONS(3906), + [anon_sym_namespace] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_concept] = ACTIONS(3906), + [anon_sym_co_return] = ACTIONS(3906), + [anon_sym_co_yield] = ACTIONS(3906), + [anon_sym_R_DQUOTE] = ACTIONS(3908), + [anon_sym_LR_DQUOTE] = ACTIONS(3908), + [anon_sym_uR_DQUOTE] = ACTIONS(3908), + [anon_sym_UR_DQUOTE] = ACTIONS(3908), + [anon_sym_u8R_DQUOTE] = ACTIONS(3908), + [anon_sym_co_await] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_requires] = ACTIONS(3906), + [anon_sym_CARET_CARET] = ACTIONS(3908), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + [sym_this] = ACTIONS(3906), }, - [STATE(952)] = { - [sym_identifier] = ACTIONS(2671), - [anon_sym_LPAREN2] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym___extension__] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2671), - [anon_sym_virtual] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym___attribute__] = ACTIONS(2671), - [anon_sym___attribute] = ACTIONS(2671), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2673), - [anon_sym___declspec] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym___inline] = ACTIONS(2671), - [anon_sym___inline__] = ACTIONS(2671), - [anon_sym___forceinline] = ACTIONS(2671), - [anon_sym_thread_local] = ACTIONS(2671), - [anon_sym___thread] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_constexpr] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym___restrict__] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym__Noreturn] = ACTIONS(2671), - [anon_sym_noreturn] = ACTIONS(2671), - [anon_sym__Nonnull] = ACTIONS(2671), - [anon_sym_mutable] = ACTIONS(2671), - [anon_sym_constinit] = ACTIONS(2671), - [anon_sym_consteval] = ACTIONS(2671), - [anon_sym_alignas] = ACTIONS(2671), - [anon_sym__Alignas] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_switch] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_do] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym___try] = ACTIONS(2671), - [anon_sym___leave] = ACTIONS(2671), - [anon_sym_not] = ACTIONS(2671), - [anon_sym_compl] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2673), - [anon_sym_sizeof] = ACTIONS(2671), - [anon_sym___alignof__] = ACTIONS(2671), - [anon_sym___alignof] = ACTIONS(2671), - [anon_sym__alignof] = ACTIONS(2671), - [anon_sym_alignof] = ACTIONS(2671), - [anon_sym__Alignof] = ACTIONS(2671), - [anon_sym_offsetof] = ACTIONS(2671), - [anon_sym__Generic] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym___asm__] = ACTIONS(2671), - [anon_sym___asm] = ACTIONS(2671), - [sym_number_literal] = ACTIONS(2673), - [anon_sym_L_SQUOTE] = ACTIONS(2673), - [anon_sym_u_SQUOTE] = ACTIONS(2673), - [anon_sym_U_SQUOTE] = ACTIONS(2673), - [anon_sym_u8_SQUOTE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2673), - [anon_sym_L_DQUOTE] = ACTIONS(2673), - [anon_sym_u_DQUOTE] = ACTIONS(2673), - [anon_sym_U_DQUOTE] = ACTIONS(2673), - [anon_sym_u8_DQUOTE] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [anon_sym_NULL] = ACTIONS(2671), - [anon_sym_nullptr] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2671), - [anon_sym_decltype] = ACTIONS(2671), - [anon_sym_typename] = ACTIONS(2671), - [anon_sym_template] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_delete] = ACTIONS(2671), - [anon_sym_throw] = ACTIONS(2671), - [anon_sym_co_return] = ACTIONS(2671), - [anon_sym_co_yield] = ACTIONS(2671), - [anon_sym_R_DQUOTE] = ACTIONS(2673), - [anon_sym_LR_DQUOTE] = ACTIONS(2673), - [anon_sym_uR_DQUOTE] = ACTIONS(2673), - [anon_sym_UR_DQUOTE] = ACTIONS(2673), - [anon_sym_u8R_DQUOTE] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2671), - [anon_sym_requires] = ACTIONS(2671), - [sym_this] = ACTIONS(2671), + [STATE(409)] = { + [ts_builtin_sym_end] = ACTIONS(3886), + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_include_token1] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym___cdecl] = ACTIONS(3884), + [anon_sym___clrcall] = ACTIONS(3884), + [anon_sym___stdcall] = ACTIONS(3884), + [anon_sym___fastcall] = ACTIONS(3884), + [anon_sym___thiscall] = ACTIONS(3884), + [anon_sym___vectorcall] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_case] = ACTIONS(3884), + [anon_sym_default] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_goto] = ACTIONS(3884), + [anon_sym___try] = ACTIONS(3884), + [anon_sym___leave] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3884), + [anon_sym_compl] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_sizeof] = ACTIONS(3884), + [anon_sym___alignof__] = ACTIONS(3884), + [anon_sym___alignof] = ACTIONS(3884), + [anon_sym__alignof] = ACTIONS(3884), + [anon_sym_alignof] = ACTIONS(3884), + [anon_sym__Alignof] = ACTIONS(3884), + [anon_sym_offsetof] = ACTIONS(3884), + [anon_sym__Generic] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [anon_sym_asm] = ACTIONS(3884), + [anon_sym___asm__] = ACTIONS(3884), + [anon_sym___asm] = ACTIONS(3884), + [sym_number_literal] = ACTIONS(3886), + [anon_sym_L_SQUOTE] = ACTIONS(3886), + [anon_sym_u_SQUOTE] = ACTIONS(3886), + [anon_sym_U_SQUOTE] = ACTIONS(3886), + [anon_sym_u8_SQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [anon_sym_L_DQUOTE] = ACTIONS(3886), + [anon_sym_u_DQUOTE] = ACTIONS(3886), + [anon_sym_U_DQUOTE] = ACTIONS(3886), + [anon_sym_u8_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_true] = ACTIONS(3884), + [sym_false] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_nullptr] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_export] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3884), + [anon_sym_import] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_concept] = ACTIONS(3884), + [anon_sym_co_return] = ACTIONS(3884), + [anon_sym_co_yield] = ACTIONS(3884), + [anon_sym_R_DQUOTE] = ACTIONS(3886), + [anon_sym_LR_DQUOTE] = ACTIONS(3886), + [anon_sym_uR_DQUOTE] = ACTIONS(3886), + [anon_sym_UR_DQUOTE] = ACTIONS(3886), + [anon_sym_u8R_DQUOTE] = ACTIONS(3886), + [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_requires] = ACTIONS(3884), + [anon_sym_CARET_CARET] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [sym_this] = ACTIONS(3884), }, - [STATE(953)] = { - [sym_identifier] = ACTIONS(2675), - [anon_sym_LPAREN2] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2675), - [anon_sym_PLUS] = ACTIONS(2675), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym___extension__] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2675), - [anon_sym_virtual] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym___attribute__] = ACTIONS(2675), - [anon_sym___attribute] = ACTIONS(2675), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2677), - [anon_sym___declspec] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2675), - [anon_sym_unsigned] = ACTIONS(2675), - [anon_sym_long] = ACTIONS(2675), - [anon_sym_short] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_register] = ACTIONS(2675), - [anon_sym_inline] = ACTIONS(2675), - [anon_sym___inline] = ACTIONS(2675), - [anon_sym___inline__] = ACTIONS(2675), - [anon_sym___forceinline] = ACTIONS(2675), - [anon_sym_thread_local] = ACTIONS(2675), - [anon_sym___thread] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_constexpr] = ACTIONS(2675), - [anon_sym_volatile] = ACTIONS(2675), - [anon_sym_restrict] = ACTIONS(2675), - [anon_sym___restrict__] = ACTIONS(2675), - [anon_sym__Atomic] = ACTIONS(2675), - [anon_sym__Noreturn] = ACTIONS(2675), - [anon_sym_noreturn] = ACTIONS(2675), - [anon_sym__Nonnull] = ACTIONS(2675), - [anon_sym_mutable] = ACTIONS(2675), - [anon_sym_constinit] = ACTIONS(2675), - [anon_sym_consteval] = ACTIONS(2675), - [anon_sym_alignas] = ACTIONS(2675), - [anon_sym__Alignas] = ACTIONS(2675), - [sym_primitive_type] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_do] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_goto] = ACTIONS(2675), - [anon_sym___try] = ACTIONS(2675), - [anon_sym___leave] = ACTIONS(2675), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_compl] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(2675), - [anon_sym___alignof__] = ACTIONS(2675), - [anon_sym___alignof] = ACTIONS(2675), - [anon_sym__alignof] = ACTIONS(2675), - [anon_sym_alignof] = ACTIONS(2675), - [anon_sym__Alignof] = ACTIONS(2675), - [anon_sym_offsetof] = ACTIONS(2675), - [anon_sym__Generic] = ACTIONS(2675), - [anon_sym_asm] = ACTIONS(2675), - [anon_sym___asm__] = ACTIONS(2675), - [anon_sym___asm] = ACTIONS(2675), - [sym_number_literal] = ACTIONS(2677), - [anon_sym_L_SQUOTE] = ACTIONS(2677), - [anon_sym_u_SQUOTE] = ACTIONS(2677), - [anon_sym_U_SQUOTE] = ACTIONS(2677), - [anon_sym_u8_SQUOTE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2677), - [anon_sym_L_DQUOTE] = ACTIONS(2677), - [anon_sym_u_DQUOTE] = ACTIONS(2677), - [anon_sym_U_DQUOTE] = ACTIONS(2677), - [anon_sym_u8_DQUOTE] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_true] = ACTIONS(2675), - [sym_false] = ACTIONS(2675), - [anon_sym_NULL] = ACTIONS(2675), - [anon_sym_nullptr] = ACTIONS(2675), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2675), - [anon_sym_decltype] = ACTIONS(2675), - [anon_sym_typename] = ACTIONS(2675), - [anon_sym_template] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_delete] = ACTIONS(2675), - [anon_sym_throw] = ACTIONS(2675), - [anon_sym_co_return] = ACTIONS(2675), - [anon_sym_co_yield] = ACTIONS(2675), - [anon_sym_R_DQUOTE] = ACTIONS(2677), - [anon_sym_LR_DQUOTE] = ACTIONS(2677), - [anon_sym_uR_DQUOTE] = ACTIONS(2677), - [anon_sym_UR_DQUOTE] = ACTIONS(2677), - [anon_sym_u8R_DQUOTE] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2675), - [anon_sym_new] = ACTIONS(2675), - [anon_sym_requires] = ACTIONS(2675), - [sym_this] = ACTIONS(2675), + [STATE(410)] = { + [sym_identifier] = ACTIONS(3910), + [aux_sym_preproc_include_token1] = ACTIONS(3910), + [aux_sym_preproc_def_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token2] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), + [aux_sym_preproc_else_token1] = ACTIONS(3910), + [aux_sym_preproc_elif_token1] = ACTIONS(3910), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3910), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3910), + [sym_preproc_directive] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_TILDE] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_AMP_AMP] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym___extension__] = ACTIONS(3910), + [anon_sym_typedef] = ACTIONS(3910), + [anon_sym_virtual] = ACTIONS(3910), + [anon_sym_extern] = ACTIONS(3910), + [anon_sym___attribute__] = ACTIONS(3910), + [anon_sym___attribute] = ACTIONS(3910), + [anon_sym_using] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), + [anon_sym___declspec] = ACTIONS(3910), + [anon_sym___based] = ACTIONS(3910), + [anon_sym___cdecl] = ACTIONS(3910), + [anon_sym___clrcall] = ACTIONS(3910), + [anon_sym___stdcall] = ACTIONS(3910), + [anon_sym___fastcall] = ACTIONS(3910), + [anon_sym___thiscall] = ACTIONS(3910), + [anon_sym___vectorcall] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_signed] = ACTIONS(3910), + [anon_sym_unsigned] = ACTIONS(3910), + [anon_sym_long] = ACTIONS(3910), + [anon_sym_short] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_static] = ACTIONS(3910), + [anon_sym_register] = ACTIONS(3910), + [anon_sym_inline] = ACTIONS(3910), + [anon_sym___inline] = ACTIONS(3910), + [anon_sym___inline__] = ACTIONS(3910), + [anon_sym___forceinline] = ACTIONS(3910), + [anon_sym_thread_local] = ACTIONS(3910), + [anon_sym___thread] = ACTIONS(3910), + [anon_sym_const] = ACTIONS(3910), + [anon_sym_constexpr] = ACTIONS(3910), + [anon_sym_volatile] = ACTIONS(3910), + [anon_sym_restrict] = ACTIONS(3910), + [anon_sym___restrict__] = ACTIONS(3910), + [anon_sym__Atomic] = ACTIONS(3910), + [anon_sym__Noreturn] = ACTIONS(3910), + [anon_sym_noreturn] = ACTIONS(3910), + [anon_sym__Nonnull] = ACTIONS(3910), + [anon_sym_mutable] = ACTIONS(3910), + [anon_sym_constinit] = ACTIONS(3910), + [anon_sym_consteval] = ACTIONS(3910), + [anon_sym_alignas] = ACTIONS(3910), + [anon_sym__Alignas] = ACTIONS(3910), + [sym_primitive_type] = ACTIONS(3910), + [anon_sym_enum] = ACTIONS(3910), + [anon_sym_class] = ACTIONS(3910), + [anon_sym_struct] = ACTIONS(3910), + [anon_sym_union] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_case] = ACTIONS(3910), + [anon_sym_default] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_break] = ACTIONS(3910), + [anon_sym_continue] = ACTIONS(3910), + [anon_sym_goto] = ACTIONS(3910), + [anon_sym___try] = ACTIONS(3910), + [anon_sym___leave] = ACTIONS(3910), + [anon_sym_not] = ACTIONS(3910), + [anon_sym_compl] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3912), + [anon_sym_PLUS_PLUS] = ACTIONS(3912), + [anon_sym_sizeof] = ACTIONS(3910), + [anon_sym___alignof__] = ACTIONS(3910), + [anon_sym___alignof] = ACTIONS(3910), + [anon_sym__alignof] = ACTIONS(3910), + [anon_sym_alignof] = ACTIONS(3910), + [anon_sym__Alignof] = ACTIONS(3910), + [anon_sym_offsetof] = ACTIONS(3910), + [anon_sym__Generic] = ACTIONS(3910), + [anon_sym_typename] = ACTIONS(3910), + [anon_sym_asm] = ACTIONS(3910), + [anon_sym___asm__] = ACTIONS(3910), + [anon_sym___asm] = ACTIONS(3910), + [sym_number_literal] = ACTIONS(3912), + [anon_sym_L_SQUOTE] = ACTIONS(3912), + [anon_sym_u_SQUOTE] = ACTIONS(3912), + [anon_sym_U_SQUOTE] = ACTIONS(3912), + [anon_sym_u8_SQUOTE] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3912), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_true] = ACTIONS(3910), + [sym_false] = ACTIONS(3910), + [anon_sym_NULL] = ACTIONS(3910), + [anon_sym_nullptr] = ACTIONS(3910), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3910), + [anon_sym_decltype] = ACTIONS(3910), + [anon_sym_explicit] = ACTIONS(3910), + [anon_sym_template] = ACTIONS(3910), + [anon_sym_operator] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_delete] = ACTIONS(3910), + [anon_sym_throw] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_static_assert] = ACTIONS(3910), + [anon_sym_concept] = ACTIONS(3910), + [anon_sym_co_return] = ACTIONS(3910), + [anon_sym_co_yield] = ACTIONS(3910), + [anon_sym_R_DQUOTE] = ACTIONS(3912), + [anon_sym_LR_DQUOTE] = ACTIONS(3912), + [anon_sym_uR_DQUOTE] = ACTIONS(3912), + [anon_sym_UR_DQUOTE] = ACTIONS(3912), + [anon_sym_u8R_DQUOTE] = ACTIONS(3912), + [anon_sym_co_await] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_requires] = ACTIONS(3910), + [anon_sym_CARET_CARET] = ACTIONS(3912), + [anon_sym_LBRACK_COLON] = ACTIONS(3912), + [sym_this] = ACTIONS(3910), }, - [STATE(954)] = { - [sym_identifier] = ACTIONS(2679), - [anon_sym_LPAREN2] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(2679), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym___extension__] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2679), - [anon_sym_virtual] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym___attribute__] = ACTIONS(2679), - [anon_sym___attribute] = ACTIONS(2679), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2681), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2679), - [anon_sym_unsigned] = ACTIONS(2679), - [anon_sym_long] = ACTIONS(2679), - [anon_sym_short] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_register] = ACTIONS(2679), - [anon_sym_inline] = ACTIONS(2679), - [anon_sym___inline] = ACTIONS(2679), - [anon_sym___inline__] = ACTIONS(2679), - [anon_sym___forceinline] = ACTIONS(2679), - [anon_sym_thread_local] = ACTIONS(2679), - [anon_sym___thread] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_constexpr] = ACTIONS(2679), - [anon_sym_volatile] = ACTIONS(2679), - [anon_sym_restrict] = ACTIONS(2679), - [anon_sym___restrict__] = ACTIONS(2679), - [anon_sym__Atomic] = ACTIONS(2679), - [anon_sym__Noreturn] = ACTIONS(2679), - [anon_sym_noreturn] = ACTIONS(2679), - [anon_sym__Nonnull] = ACTIONS(2679), - [anon_sym_mutable] = ACTIONS(2679), - [anon_sym_constinit] = ACTIONS(2679), - [anon_sym_consteval] = ACTIONS(2679), - [anon_sym_alignas] = ACTIONS(2679), - [anon_sym__Alignas] = ACTIONS(2679), - [sym_primitive_type] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_switch] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_do] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2679), - [anon_sym___leave] = ACTIONS(2679), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_compl] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_sizeof] = ACTIONS(2679), - [anon_sym___alignof__] = ACTIONS(2679), - [anon_sym___alignof] = ACTIONS(2679), - [anon_sym__alignof] = ACTIONS(2679), - [anon_sym_alignof] = ACTIONS(2679), - [anon_sym__Alignof] = ACTIONS(2679), - [anon_sym_offsetof] = ACTIONS(2679), - [anon_sym__Generic] = ACTIONS(2679), - [anon_sym_asm] = ACTIONS(2679), - [anon_sym___asm__] = ACTIONS(2679), - [anon_sym___asm] = ACTIONS(2679), - [sym_number_literal] = ACTIONS(2681), - [anon_sym_L_SQUOTE] = ACTIONS(2681), - [anon_sym_u_SQUOTE] = ACTIONS(2681), - [anon_sym_U_SQUOTE] = ACTIONS(2681), - [anon_sym_u8_SQUOTE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2681), - [anon_sym_L_DQUOTE] = ACTIONS(2681), - [anon_sym_u_DQUOTE] = ACTIONS(2681), - [anon_sym_U_DQUOTE] = ACTIONS(2681), - [anon_sym_u8_DQUOTE] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_true] = ACTIONS(2679), - [sym_false] = ACTIONS(2679), - [anon_sym_NULL] = ACTIONS(2679), - [anon_sym_nullptr] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2679), - [anon_sym_decltype] = ACTIONS(2679), - [anon_sym_typename] = ACTIONS(2679), - [anon_sym_template] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_delete] = ACTIONS(2679), - [anon_sym_throw] = ACTIONS(2679), - [anon_sym_co_return] = ACTIONS(2679), - [anon_sym_co_yield] = ACTIONS(2679), - [anon_sym_R_DQUOTE] = ACTIONS(2681), - [anon_sym_LR_DQUOTE] = ACTIONS(2681), - [anon_sym_uR_DQUOTE] = ACTIONS(2681), - [anon_sym_UR_DQUOTE] = ACTIONS(2681), - [anon_sym_u8R_DQUOTE] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2679), - [anon_sym_new] = ACTIONS(2679), - [anon_sym_requires] = ACTIONS(2679), - [sym_this] = ACTIONS(2679), + [STATE(411)] = { + [sym_identifier] = ACTIONS(3914), + [aux_sym_preproc_include_token1] = ACTIONS(3914), + [aux_sym_preproc_def_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token2] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), + [aux_sym_preproc_else_token1] = ACTIONS(3914), + [aux_sym_preproc_elif_token1] = ACTIONS(3914), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3914), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3914), + [sym_preproc_directive] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_BANG] = ACTIONS(3916), + [anon_sym_TILDE] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_STAR] = ACTIONS(3916), + [anon_sym_AMP_AMP] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_SEMI] = ACTIONS(3916), + [anon_sym___extension__] = ACTIONS(3914), + [anon_sym_typedef] = ACTIONS(3914), + [anon_sym_virtual] = ACTIONS(3914), + [anon_sym_extern] = ACTIONS(3914), + [anon_sym___attribute__] = ACTIONS(3914), + [anon_sym___attribute] = ACTIONS(3914), + [anon_sym_using] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), + [anon_sym___declspec] = ACTIONS(3914), + [anon_sym___based] = ACTIONS(3914), + [anon_sym___cdecl] = ACTIONS(3914), + [anon_sym___clrcall] = ACTIONS(3914), + [anon_sym___stdcall] = ACTIONS(3914), + [anon_sym___fastcall] = ACTIONS(3914), + [anon_sym___thiscall] = ACTIONS(3914), + [anon_sym___vectorcall] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3916), + [anon_sym_signed] = ACTIONS(3914), + [anon_sym_unsigned] = ACTIONS(3914), + [anon_sym_long] = ACTIONS(3914), + [anon_sym_short] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3914), + [anon_sym_register] = ACTIONS(3914), + [anon_sym_inline] = ACTIONS(3914), + [anon_sym___inline] = ACTIONS(3914), + [anon_sym___inline__] = ACTIONS(3914), + [anon_sym___forceinline] = ACTIONS(3914), + [anon_sym_thread_local] = ACTIONS(3914), + [anon_sym___thread] = ACTIONS(3914), + [anon_sym_const] = ACTIONS(3914), + [anon_sym_constexpr] = ACTIONS(3914), + [anon_sym_volatile] = ACTIONS(3914), + [anon_sym_restrict] = ACTIONS(3914), + [anon_sym___restrict__] = ACTIONS(3914), + [anon_sym__Atomic] = ACTIONS(3914), + [anon_sym__Noreturn] = ACTIONS(3914), + [anon_sym_noreturn] = ACTIONS(3914), + [anon_sym__Nonnull] = ACTIONS(3914), + [anon_sym_mutable] = ACTIONS(3914), + [anon_sym_constinit] = ACTIONS(3914), + [anon_sym_consteval] = ACTIONS(3914), + [anon_sym_alignas] = ACTIONS(3914), + [anon_sym__Alignas] = ACTIONS(3914), + [sym_primitive_type] = ACTIONS(3914), + [anon_sym_enum] = ACTIONS(3914), + [anon_sym_class] = ACTIONS(3914), + [anon_sym_struct] = ACTIONS(3914), + [anon_sym_union] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_switch] = ACTIONS(3914), + [anon_sym_case] = ACTIONS(3914), + [anon_sym_default] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_break] = ACTIONS(3914), + [anon_sym_continue] = ACTIONS(3914), + [anon_sym_goto] = ACTIONS(3914), + [anon_sym___try] = ACTIONS(3914), + [anon_sym___leave] = ACTIONS(3914), + [anon_sym_not] = ACTIONS(3914), + [anon_sym_compl] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3916), + [anon_sym_PLUS_PLUS] = ACTIONS(3916), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(3914), + [anon_sym___alignof] = ACTIONS(3914), + [anon_sym__alignof] = ACTIONS(3914), + [anon_sym_alignof] = ACTIONS(3914), + [anon_sym__Alignof] = ACTIONS(3914), + [anon_sym_offsetof] = ACTIONS(3914), + [anon_sym__Generic] = ACTIONS(3914), + [anon_sym_typename] = ACTIONS(3914), + [anon_sym_asm] = ACTIONS(3914), + [anon_sym___asm__] = ACTIONS(3914), + [anon_sym___asm] = ACTIONS(3914), + [sym_number_literal] = ACTIONS(3916), + [anon_sym_L_SQUOTE] = ACTIONS(3916), + [anon_sym_u_SQUOTE] = ACTIONS(3916), + [anon_sym_U_SQUOTE] = ACTIONS(3916), + [anon_sym_u8_SQUOTE] = ACTIONS(3916), + [anon_sym_SQUOTE] = ACTIONS(3916), + [anon_sym_L_DQUOTE] = ACTIONS(3916), + [anon_sym_u_DQUOTE] = ACTIONS(3916), + [anon_sym_U_DQUOTE] = ACTIONS(3916), + [anon_sym_u8_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE] = ACTIONS(3916), + [sym_true] = ACTIONS(3914), + [sym_false] = ACTIONS(3914), + [anon_sym_NULL] = ACTIONS(3914), + [anon_sym_nullptr] = ACTIONS(3914), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3914), + [anon_sym_decltype] = ACTIONS(3914), + [anon_sym_explicit] = ACTIONS(3914), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_operator] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3914), + [anon_sym_throw] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_static_assert] = ACTIONS(3914), + [anon_sym_concept] = ACTIONS(3914), + [anon_sym_co_return] = ACTIONS(3914), + [anon_sym_co_yield] = ACTIONS(3914), + [anon_sym_R_DQUOTE] = ACTIONS(3916), + [anon_sym_LR_DQUOTE] = ACTIONS(3916), + [anon_sym_uR_DQUOTE] = ACTIONS(3916), + [anon_sym_UR_DQUOTE] = ACTIONS(3916), + [anon_sym_u8R_DQUOTE] = ACTIONS(3916), + [anon_sym_co_await] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_requires] = ACTIONS(3914), + [anon_sym_CARET_CARET] = ACTIONS(3916), + [anon_sym_LBRACK_COLON] = ACTIONS(3916), + [sym_this] = ACTIONS(3914), }, - [STATE(955)] = { - [sym_identifier] = ACTIONS(2731), - [anon_sym_LPAREN2] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym___extension__] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2731), - [anon_sym_virtual] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym___attribute__] = ACTIONS(2731), - [anon_sym___attribute] = ACTIONS(2731), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2733), - [anon_sym___declspec] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2731), - [anon_sym_unsigned] = ACTIONS(2731), - [anon_sym_long] = ACTIONS(2731), - [anon_sym_short] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_register] = ACTIONS(2731), - [anon_sym_inline] = ACTIONS(2731), - [anon_sym___inline] = ACTIONS(2731), - [anon_sym___inline__] = ACTIONS(2731), - [anon_sym___forceinline] = ACTIONS(2731), - [anon_sym_thread_local] = ACTIONS(2731), - [anon_sym___thread] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_constexpr] = ACTIONS(2731), - [anon_sym_volatile] = ACTIONS(2731), - [anon_sym_restrict] = ACTIONS(2731), - [anon_sym___restrict__] = ACTIONS(2731), - [anon_sym__Atomic] = ACTIONS(2731), - [anon_sym__Noreturn] = ACTIONS(2731), - [anon_sym_noreturn] = ACTIONS(2731), - [anon_sym__Nonnull] = ACTIONS(2731), - [anon_sym_mutable] = ACTIONS(2731), - [anon_sym_constinit] = ACTIONS(2731), - [anon_sym_consteval] = ACTIONS(2731), - [anon_sym_alignas] = ACTIONS(2731), - [anon_sym__Alignas] = ACTIONS(2731), - [sym_primitive_type] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_switch] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_do] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_goto] = ACTIONS(2731), - [anon_sym___try] = ACTIONS(2731), - [anon_sym___leave] = ACTIONS(2731), - [anon_sym_not] = ACTIONS(2731), - [anon_sym_compl] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2733), - [anon_sym_sizeof] = ACTIONS(2731), - [anon_sym___alignof__] = ACTIONS(2731), - [anon_sym___alignof] = ACTIONS(2731), - [anon_sym__alignof] = ACTIONS(2731), - [anon_sym_alignof] = ACTIONS(2731), - [anon_sym__Alignof] = ACTIONS(2731), - [anon_sym_offsetof] = ACTIONS(2731), - [anon_sym__Generic] = ACTIONS(2731), - [anon_sym_asm] = ACTIONS(2731), - [anon_sym___asm__] = ACTIONS(2731), - [anon_sym___asm] = ACTIONS(2731), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_L_SQUOTE] = ACTIONS(2733), - [anon_sym_u_SQUOTE] = ACTIONS(2733), - [anon_sym_U_SQUOTE] = ACTIONS(2733), - [anon_sym_u8_SQUOTE] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_L_DQUOTE] = ACTIONS(2733), - [anon_sym_u_DQUOTE] = ACTIONS(2733), - [anon_sym_U_DQUOTE] = ACTIONS(2733), - [anon_sym_u8_DQUOTE] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_true] = ACTIONS(2731), - [sym_false] = ACTIONS(2731), - [anon_sym_NULL] = ACTIONS(2731), - [anon_sym_nullptr] = ACTIONS(2731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2731), - [anon_sym_decltype] = ACTIONS(2731), - [anon_sym_typename] = ACTIONS(2731), - [anon_sym_template] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_delete] = ACTIONS(2731), - [anon_sym_throw] = ACTIONS(2731), - [anon_sym_co_return] = ACTIONS(2731), - [anon_sym_co_yield] = ACTIONS(2731), - [anon_sym_R_DQUOTE] = ACTIONS(2733), - [anon_sym_LR_DQUOTE] = ACTIONS(2733), - [anon_sym_uR_DQUOTE] = ACTIONS(2733), - [anon_sym_UR_DQUOTE] = ACTIONS(2733), - [anon_sym_u8R_DQUOTE] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2731), - [anon_sym_new] = ACTIONS(2731), - [anon_sym_requires] = ACTIONS(2731), - [sym_this] = ACTIONS(2731), + [STATE(412)] = { + [sym_identifier] = ACTIONS(3918), + [aux_sym_preproc_include_token1] = ACTIONS(3918), + [aux_sym_preproc_def_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token2] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), + [aux_sym_preproc_else_token1] = ACTIONS(3918), + [aux_sym_preproc_elif_token1] = ACTIONS(3918), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3918), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3918), + [sym_preproc_directive] = ACTIONS(3918), + [anon_sym_LPAREN2] = ACTIONS(3920), + [anon_sym_BANG] = ACTIONS(3920), + [anon_sym_TILDE] = ACTIONS(3920), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym___extension__] = ACTIONS(3918), + [anon_sym_typedef] = ACTIONS(3918), + [anon_sym_virtual] = ACTIONS(3918), + [anon_sym_extern] = ACTIONS(3918), + [anon_sym___attribute__] = ACTIONS(3918), + [anon_sym___attribute] = ACTIONS(3918), + [anon_sym_using] = ACTIONS(3918), + [anon_sym_COLON_COLON] = ACTIONS(3920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), + [anon_sym___declspec] = ACTIONS(3918), + [anon_sym___based] = ACTIONS(3918), + [anon_sym___cdecl] = ACTIONS(3918), + [anon_sym___clrcall] = ACTIONS(3918), + [anon_sym___stdcall] = ACTIONS(3918), + [anon_sym___fastcall] = ACTIONS(3918), + [anon_sym___thiscall] = ACTIONS(3918), + [anon_sym___vectorcall] = ACTIONS(3918), + [anon_sym_LBRACE] = ACTIONS(3920), + [anon_sym_signed] = ACTIONS(3918), + [anon_sym_unsigned] = ACTIONS(3918), + [anon_sym_long] = ACTIONS(3918), + [anon_sym_short] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3918), + [anon_sym_static] = ACTIONS(3918), + [anon_sym_register] = ACTIONS(3918), + [anon_sym_inline] = ACTIONS(3918), + [anon_sym___inline] = ACTIONS(3918), + [anon_sym___inline__] = ACTIONS(3918), + [anon_sym___forceinline] = ACTIONS(3918), + [anon_sym_thread_local] = ACTIONS(3918), + [anon_sym___thread] = ACTIONS(3918), + [anon_sym_const] = ACTIONS(3918), + [anon_sym_constexpr] = ACTIONS(3918), + [anon_sym_volatile] = ACTIONS(3918), + [anon_sym_restrict] = ACTIONS(3918), + [anon_sym___restrict__] = ACTIONS(3918), + [anon_sym__Atomic] = ACTIONS(3918), + [anon_sym__Noreturn] = ACTIONS(3918), + [anon_sym_noreturn] = ACTIONS(3918), + [anon_sym__Nonnull] = ACTIONS(3918), + [anon_sym_mutable] = ACTIONS(3918), + [anon_sym_constinit] = ACTIONS(3918), + [anon_sym_consteval] = ACTIONS(3918), + [anon_sym_alignas] = ACTIONS(3918), + [anon_sym__Alignas] = ACTIONS(3918), + [sym_primitive_type] = ACTIONS(3918), + [anon_sym_enum] = ACTIONS(3918), + [anon_sym_class] = ACTIONS(3918), + [anon_sym_struct] = ACTIONS(3918), + [anon_sym_union] = ACTIONS(3918), + [anon_sym_if] = ACTIONS(3918), + [anon_sym_switch] = ACTIONS(3918), + [anon_sym_case] = ACTIONS(3918), + [anon_sym_default] = ACTIONS(3918), + [anon_sym_while] = ACTIONS(3918), + [anon_sym_do] = ACTIONS(3918), + [anon_sym_for] = ACTIONS(3918), + [anon_sym_return] = ACTIONS(3918), + [anon_sym_break] = ACTIONS(3918), + [anon_sym_continue] = ACTIONS(3918), + [anon_sym_goto] = ACTIONS(3918), + [anon_sym___try] = ACTIONS(3918), + [anon_sym___leave] = ACTIONS(3918), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_compl] = ACTIONS(3918), + [anon_sym_DASH_DASH] = ACTIONS(3920), + [anon_sym_PLUS_PLUS] = ACTIONS(3920), + [anon_sym_sizeof] = ACTIONS(3918), + [anon_sym___alignof__] = ACTIONS(3918), + [anon_sym___alignof] = ACTIONS(3918), + [anon_sym__alignof] = ACTIONS(3918), + [anon_sym_alignof] = ACTIONS(3918), + [anon_sym__Alignof] = ACTIONS(3918), + [anon_sym_offsetof] = ACTIONS(3918), + [anon_sym__Generic] = ACTIONS(3918), + [anon_sym_typename] = ACTIONS(3918), + [anon_sym_asm] = ACTIONS(3918), + [anon_sym___asm__] = ACTIONS(3918), + [anon_sym___asm] = ACTIONS(3918), + [sym_number_literal] = ACTIONS(3920), + [anon_sym_L_SQUOTE] = ACTIONS(3920), + [anon_sym_u_SQUOTE] = ACTIONS(3920), + [anon_sym_U_SQUOTE] = ACTIONS(3920), + [anon_sym_u8_SQUOTE] = ACTIONS(3920), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_L_DQUOTE] = ACTIONS(3920), + [anon_sym_u_DQUOTE] = ACTIONS(3920), + [anon_sym_U_DQUOTE] = ACTIONS(3920), + [anon_sym_u8_DQUOTE] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [sym_true] = ACTIONS(3918), + [sym_false] = ACTIONS(3918), + [anon_sym_NULL] = ACTIONS(3918), + [anon_sym_nullptr] = ACTIONS(3918), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3918), + [anon_sym_decltype] = ACTIONS(3918), + [anon_sym_explicit] = ACTIONS(3918), + [anon_sym_template] = ACTIONS(3918), + [anon_sym_operator] = ACTIONS(3918), + [anon_sym_try] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3918), + [anon_sym_throw] = ACTIONS(3918), + [anon_sym_namespace] = ACTIONS(3918), + [anon_sym_static_assert] = ACTIONS(3918), + [anon_sym_concept] = ACTIONS(3918), + [anon_sym_co_return] = ACTIONS(3918), + [anon_sym_co_yield] = ACTIONS(3918), + [anon_sym_R_DQUOTE] = ACTIONS(3920), + [anon_sym_LR_DQUOTE] = ACTIONS(3920), + [anon_sym_uR_DQUOTE] = ACTIONS(3920), + [anon_sym_UR_DQUOTE] = ACTIONS(3920), + [anon_sym_u8R_DQUOTE] = ACTIONS(3920), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3918), + [anon_sym_requires] = ACTIONS(3918), + [anon_sym_CARET_CARET] = ACTIONS(3920), + [anon_sym_LBRACK_COLON] = ACTIONS(3920), + [sym_this] = ACTIONS(3918), }, - [STATE(956)] = { - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), + [STATE(413)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [aux_sym_preproc_else_token1] = ACTIONS(3922), + [aux_sym_preproc_elif_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(957)] = { - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_goto] = ACTIONS(2637), - [anon_sym___try] = ACTIONS(2637), - [anon_sym___leave] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_compl] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_sizeof] = ACTIONS(2637), - [anon_sym___alignof__] = ACTIONS(2637), - [anon_sym___alignof] = ACTIONS(2637), - [anon_sym__alignof] = ACTIONS(2637), - [anon_sym_alignof] = ACTIONS(2637), - [anon_sym__Alignof] = ACTIONS(2637), - [anon_sym_offsetof] = ACTIONS(2637), - [anon_sym__Generic] = ACTIONS(2637), - [anon_sym_asm] = ACTIONS(2637), - [anon_sym___asm__] = ACTIONS(2637), - [anon_sym___asm] = ACTIONS(2637), - [sym_number_literal] = ACTIONS(2639), - [anon_sym_L_SQUOTE] = ACTIONS(2639), - [anon_sym_u_SQUOTE] = ACTIONS(2639), - [anon_sym_U_SQUOTE] = ACTIONS(2639), - [anon_sym_u8_SQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_L_DQUOTE] = ACTIONS(2639), - [anon_sym_u_DQUOTE] = ACTIONS(2639), - [anon_sym_U_DQUOTE] = ACTIONS(2639), - [anon_sym_u8_DQUOTE] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [anon_sym_NULL] = ACTIONS(2637), - [anon_sym_nullptr] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_co_return] = ACTIONS(2637), - [anon_sym_co_yield] = ACTIONS(2637), - [anon_sym_R_DQUOTE] = ACTIONS(2639), - [anon_sym_LR_DQUOTE] = ACTIONS(2639), - [anon_sym_uR_DQUOTE] = ACTIONS(2639), - [anon_sym_UR_DQUOTE] = ACTIONS(2639), - [anon_sym_u8R_DQUOTE] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_requires] = ACTIONS(2637), - [sym_this] = ACTIONS(2637), + [STATE(414)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [aux_sym_preproc_else_token1] = ACTIONS(3922), + [aux_sym_preproc_elif_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(958)] = { - [sym_identifier] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_goto] = ACTIONS(2751), - [anon_sym___try] = ACTIONS(2751), - [anon_sym___leave] = ACTIONS(2751), - [anon_sym_not] = ACTIONS(2751), - [anon_sym_compl] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_sizeof] = ACTIONS(2751), - [anon_sym___alignof__] = ACTIONS(2751), - [anon_sym___alignof] = ACTIONS(2751), - [anon_sym__alignof] = ACTIONS(2751), - [anon_sym_alignof] = ACTIONS(2751), - [anon_sym__Alignof] = ACTIONS(2751), - [anon_sym_offsetof] = ACTIONS(2751), - [anon_sym__Generic] = ACTIONS(2751), - [anon_sym_asm] = ACTIONS(2751), - [anon_sym___asm__] = ACTIONS(2751), - [anon_sym___asm] = ACTIONS(2751), - [sym_number_literal] = ACTIONS(2753), - [anon_sym_L_SQUOTE] = ACTIONS(2753), - [anon_sym_u_SQUOTE] = ACTIONS(2753), - [anon_sym_U_SQUOTE] = ACTIONS(2753), - [anon_sym_u8_SQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [anon_sym_L_DQUOTE] = ACTIONS(2753), - [anon_sym_u_DQUOTE] = ACTIONS(2753), - [anon_sym_U_DQUOTE] = ACTIONS(2753), - [anon_sym_u8_DQUOTE] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [anon_sym_NULL] = ACTIONS(2751), - [anon_sym_nullptr] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_co_return] = ACTIONS(2751), - [anon_sym_co_yield] = ACTIONS(2751), - [anon_sym_R_DQUOTE] = ACTIONS(2753), - [anon_sym_LR_DQUOTE] = ACTIONS(2753), - [anon_sym_uR_DQUOTE] = ACTIONS(2753), - [anon_sym_UR_DQUOTE] = ACTIONS(2753), - [anon_sym_u8R_DQUOTE] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_requires] = ACTIONS(2751), - [sym_this] = ACTIONS(2751), + [STATE(415)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_include_token1] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token2] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [aux_sym_preproc_else_token1] = ACTIONS(3926), + [aux_sym_preproc_elif_token1] = ACTIONS(3926), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3926), + [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym___cdecl] = ACTIONS(3926), + [anon_sym___clrcall] = ACTIONS(3926), + [anon_sym___stdcall] = ACTIONS(3926), + [anon_sym___fastcall] = ACTIONS(3926), + [anon_sym___thiscall] = ACTIONS(3926), + [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_switch] = ACTIONS(3926), + [anon_sym_case] = ACTIONS(3926), + [anon_sym_default] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_break] = ACTIONS(3926), + [anon_sym_continue] = ACTIONS(3926), + [anon_sym_goto] = ACTIONS(3926), + [anon_sym___try] = ACTIONS(3926), + [anon_sym___leave] = ACTIONS(3926), + [anon_sym_not] = ACTIONS(3926), + [anon_sym_compl] = ACTIONS(3926), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3926), + [anon_sym___alignof__] = ACTIONS(3926), + [anon_sym___alignof] = ACTIONS(3926), + [anon_sym__alignof] = ACTIONS(3926), + [anon_sym_alignof] = ACTIONS(3926), + [anon_sym__Alignof] = ACTIONS(3926), + [anon_sym_offsetof] = ACTIONS(3926), + [anon_sym__Generic] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [anon_sym_asm] = ACTIONS(3926), + [anon_sym___asm__] = ACTIONS(3926), + [anon_sym___asm] = ACTIONS(3926), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3926), + [sym_false] = ACTIONS(3926), + [anon_sym_NULL] = ACTIONS(3926), + [anon_sym_nullptr] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_try] = ACTIONS(3926), + [anon_sym_delete] = ACTIONS(3926), + [anon_sym_throw] = ACTIONS(3926), + [anon_sym_namespace] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_concept] = ACTIONS(3926), + [anon_sym_co_return] = ACTIONS(3926), + [anon_sym_co_yield] = ACTIONS(3926), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3926), + [anon_sym_new] = ACTIONS(3926), + [anon_sym_requires] = ACTIONS(3926), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3926), }, - [STATE(959)] = { - [sym_identifier] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym___extension__] = ACTIONS(2777), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym___attribute] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym___inline] = ACTIONS(2777), - [anon_sym___inline__] = ACTIONS(2777), - [anon_sym___forceinline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym___thread] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym___restrict__] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym__Noreturn] = ACTIONS(2777), - [anon_sym_noreturn] = ACTIONS(2777), - [anon_sym__Nonnull] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_alignas] = ACTIONS(2777), - [anon_sym__Alignas] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym___try] = ACTIONS(2777), - [anon_sym___leave] = ACTIONS(2777), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_compl] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [anon_sym___alignof__] = ACTIONS(2777), - [anon_sym___alignof] = ACTIONS(2777), - [anon_sym__alignof] = ACTIONS(2777), - [anon_sym_alignof] = ACTIONS(2777), - [anon_sym__Alignof] = ACTIONS(2777), - [anon_sym_offsetof] = ACTIONS(2777), - [anon_sym__Generic] = ACTIONS(2777), - [anon_sym_asm] = ACTIONS(2777), - [anon_sym___asm__] = ACTIONS(2777), - [anon_sym___asm] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [anon_sym_NULL] = ACTIONS(2777), - [anon_sym_nullptr] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_R_DQUOTE] = ACTIONS(2779), - [anon_sym_LR_DQUOTE] = ACTIONS(2779), - [anon_sym_uR_DQUOTE] = ACTIONS(2779), - [anon_sym_UR_DQUOTE] = ACTIONS(2779), - [anon_sym_u8R_DQUOTE] = ACTIONS(2779), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), + [STATE(416)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_include_token1] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token2] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [aux_sym_preproc_else_token1] = ACTIONS(3930), + [aux_sym_preproc_elif_token1] = ACTIONS(3930), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym___cdecl] = ACTIONS(3930), + [anon_sym___clrcall] = ACTIONS(3930), + [anon_sym___stdcall] = ACTIONS(3930), + [anon_sym___fastcall] = ACTIONS(3930), + [anon_sym___thiscall] = ACTIONS(3930), + [anon_sym___vectorcall] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3932), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_switch] = ACTIONS(3930), + [anon_sym_case] = ACTIONS(3930), + [anon_sym_default] = ACTIONS(3930), + [anon_sym_while] = ACTIONS(3930), + [anon_sym_do] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym___try] = ACTIONS(3930), + [anon_sym___leave] = ACTIONS(3930), + [anon_sym_not] = ACTIONS(3930), + [anon_sym_compl] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_sizeof] = ACTIONS(3930), + [anon_sym___alignof__] = ACTIONS(3930), + [anon_sym___alignof] = ACTIONS(3930), + [anon_sym__alignof] = ACTIONS(3930), + [anon_sym_alignof] = ACTIONS(3930), + [anon_sym__Alignof] = ACTIONS(3930), + [anon_sym_offsetof] = ACTIONS(3930), + [anon_sym__Generic] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [anon_sym_asm] = ACTIONS(3930), + [anon_sym___asm__] = ACTIONS(3930), + [anon_sym___asm] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3932), + [anon_sym_L_SQUOTE] = ACTIONS(3932), + [anon_sym_u_SQUOTE] = ACTIONS(3932), + [anon_sym_U_SQUOTE] = ACTIONS(3932), + [anon_sym_u8_SQUOTE] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3932), + [anon_sym_L_DQUOTE] = ACTIONS(3932), + [anon_sym_u_DQUOTE] = ACTIONS(3932), + [anon_sym_U_DQUOTE] = ACTIONS(3932), + [anon_sym_u8_DQUOTE] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(3932), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [anon_sym_NULL] = ACTIONS(3930), + [anon_sym_nullptr] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_try] = ACTIONS(3930), + [anon_sym_delete] = ACTIONS(3930), + [anon_sym_throw] = ACTIONS(3930), + [anon_sym_namespace] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_concept] = ACTIONS(3930), + [anon_sym_co_return] = ACTIONS(3930), + [anon_sym_co_yield] = ACTIONS(3930), + [anon_sym_R_DQUOTE] = ACTIONS(3932), + [anon_sym_LR_DQUOTE] = ACTIONS(3932), + [anon_sym_uR_DQUOTE] = ACTIONS(3932), + [anon_sym_UR_DQUOTE] = ACTIONS(3932), + [anon_sym_u8R_DQUOTE] = ACTIONS(3932), + [anon_sym_co_await] = ACTIONS(3930), + [anon_sym_new] = ACTIONS(3930), + [anon_sym_requires] = ACTIONS(3930), + [anon_sym_CARET_CARET] = ACTIONS(3932), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [sym_this] = ACTIONS(3930), }, - [STATE(960)] = { - [sym_identifier] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym___try] = ACTIONS(2691), - [anon_sym___leave] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2691), - [anon_sym_compl] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [anon_sym___alignof__] = ACTIONS(2691), - [anon_sym___alignof] = ACTIONS(2691), - [anon_sym__alignof] = ACTIONS(2691), - [anon_sym_alignof] = ACTIONS(2691), - [anon_sym__Alignof] = ACTIONS(2691), - [anon_sym_offsetof] = ACTIONS(2691), - [anon_sym__Generic] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym___asm__] = ACTIONS(2691), - [anon_sym___asm] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [anon_sym_NULL] = ACTIONS(2691), - [anon_sym_nullptr] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_R_DQUOTE] = ACTIONS(2693), - [anon_sym_LR_DQUOTE] = ACTIONS(2693), - [anon_sym_uR_DQUOTE] = ACTIONS(2693), - [anon_sym_UR_DQUOTE] = ACTIONS(2693), - [anon_sym_u8R_DQUOTE] = ACTIONS(2693), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), + [STATE(417)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_include_token1] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token2] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [aux_sym_preproc_else_token1] = ACTIONS(3934), + [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym___cdecl] = ACTIONS(3934), + [anon_sym___clrcall] = ACTIONS(3934), + [anon_sym___stdcall] = ACTIONS(3934), + [anon_sym___fastcall] = ACTIONS(3934), + [anon_sym___thiscall] = ACTIONS(3934), + [anon_sym___vectorcall] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3936), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_if] = ACTIONS(3934), + [anon_sym_switch] = ACTIONS(3934), + [anon_sym_case] = ACTIONS(3934), + [anon_sym_default] = ACTIONS(3934), + [anon_sym_while] = ACTIONS(3934), + [anon_sym_do] = ACTIONS(3934), + [anon_sym_for] = ACTIONS(3934), + [anon_sym_return] = ACTIONS(3934), + [anon_sym_break] = ACTIONS(3934), + [anon_sym_continue] = ACTIONS(3934), + [anon_sym_goto] = ACTIONS(3934), + [anon_sym___try] = ACTIONS(3934), + [anon_sym___leave] = ACTIONS(3934), + [anon_sym_not] = ACTIONS(3934), + [anon_sym_compl] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_sizeof] = ACTIONS(3934), + [anon_sym___alignof__] = ACTIONS(3934), + [anon_sym___alignof] = ACTIONS(3934), + [anon_sym__alignof] = ACTIONS(3934), + [anon_sym_alignof] = ACTIONS(3934), + [anon_sym__Alignof] = ACTIONS(3934), + [anon_sym_offsetof] = ACTIONS(3934), + [anon_sym__Generic] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [anon_sym_asm] = ACTIONS(3934), + [anon_sym___asm__] = ACTIONS(3934), + [anon_sym___asm] = ACTIONS(3934), + [sym_number_literal] = ACTIONS(3936), + [anon_sym_L_SQUOTE] = ACTIONS(3936), + [anon_sym_u_SQUOTE] = ACTIONS(3936), + [anon_sym_U_SQUOTE] = ACTIONS(3936), + [anon_sym_u8_SQUOTE] = ACTIONS(3936), + [anon_sym_SQUOTE] = ACTIONS(3936), + [anon_sym_L_DQUOTE] = ACTIONS(3936), + [anon_sym_u_DQUOTE] = ACTIONS(3936), + [anon_sym_U_DQUOTE] = ACTIONS(3936), + [anon_sym_u8_DQUOTE] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [sym_true] = ACTIONS(3934), + [sym_false] = ACTIONS(3934), + [anon_sym_NULL] = ACTIONS(3934), + [anon_sym_nullptr] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_try] = ACTIONS(3934), + [anon_sym_delete] = ACTIONS(3934), + [anon_sym_throw] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_concept] = ACTIONS(3934), + [anon_sym_co_return] = ACTIONS(3934), + [anon_sym_co_yield] = ACTIONS(3934), + [anon_sym_R_DQUOTE] = ACTIONS(3936), + [anon_sym_LR_DQUOTE] = ACTIONS(3936), + [anon_sym_uR_DQUOTE] = ACTIONS(3936), + [anon_sym_UR_DQUOTE] = ACTIONS(3936), + [anon_sym_u8R_DQUOTE] = ACTIONS(3936), + [anon_sym_co_await] = ACTIONS(3934), + [anon_sym_new] = ACTIONS(3934), + [anon_sym_requires] = ACTIONS(3934), + [anon_sym_CARET_CARET] = ACTIONS(3936), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [sym_this] = ACTIONS(3934), }, - [STATE(961)] = { - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_do] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_goto] = ACTIONS(2735), - [anon_sym___try] = ACTIONS(2735), - [anon_sym___leave] = ACTIONS(2735), - [anon_sym_not] = ACTIONS(2735), - [anon_sym_compl] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_sizeof] = ACTIONS(2735), - [anon_sym___alignof__] = ACTIONS(2735), - [anon_sym___alignof] = ACTIONS(2735), - [anon_sym__alignof] = ACTIONS(2735), - [anon_sym_alignof] = ACTIONS(2735), - [anon_sym__Alignof] = ACTIONS(2735), - [anon_sym_offsetof] = ACTIONS(2735), - [anon_sym__Generic] = ACTIONS(2735), - [anon_sym_asm] = ACTIONS(2735), - [anon_sym___asm__] = ACTIONS(2735), - [anon_sym___asm] = ACTIONS(2735), - [sym_number_literal] = ACTIONS(2737), - [anon_sym_L_SQUOTE] = ACTIONS(2737), - [anon_sym_u_SQUOTE] = ACTIONS(2737), - [anon_sym_U_SQUOTE] = ACTIONS(2737), - [anon_sym_u8_SQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_L_DQUOTE] = ACTIONS(2737), - [anon_sym_u_DQUOTE] = ACTIONS(2737), - [anon_sym_U_DQUOTE] = ACTIONS(2737), - [anon_sym_u8_DQUOTE] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_true] = ACTIONS(2735), - [sym_false] = ACTIONS(2735), - [anon_sym_NULL] = ACTIONS(2735), - [anon_sym_nullptr] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_delete] = ACTIONS(2735), - [anon_sym_throw] = ACTIONS(2735), - [anon_sym_co_return] = ACTIONS(2735), - [anon_sym_co_yield] = ACTIONS(2735), - [anon_sym_R_DQUOTE] = ACTIONS(2737), - [anon_sym_LR_DQUOTE] = ACTIONS(2737), - [anon_sym_uR_DQUOTE] = ACTIONS(2737), - [anon_sym_UR_DQUOTE] = ACTIONS(2737), - [anon_sym_u8R_DQUOTE] = ACTIONS(2737), - [anon_sym_co_await] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(2735), - [anon_sym_requires] = ACTIONS(2735), - [sym_this] = ACTIONS(2735), + [STATE(418)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_include_token1] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token2] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [aux_sym_preproc_else_token1] = ACTIONS(3938), + [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_BANG] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym___cdecl] = ACTIONS(3938), + [anon_sym___clrcall] = ACTIONS(3938), + [anon_sym___stdcall] = ACTIONS(3938), + [anon_sym___fastcall] = ACTIONS(3938), + [anon_sym___thiscall] = ACTIONS(3938), + [anon_sym___vectorcall] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3940), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_switch] = ACTIONS(3938), + [anon_sym_case] = ACTIONS(3938), + [anon_sym_default] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_goto] = ACTIONS(3938), + [anon_sym___try] = ACTIONS(3938), + [anon_sym___leave] = ACTIONS(3938), + [anon_sym_not] = ACTIONS(3938), + [anon_sym_compl] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(3940), + [anon_sym_sizeof] = ACTIONS(3938), + [anon_sym___alignof__] = ACTIONS(3938), + [anon_sym___alignof] = ACTIONS(3938), + [anon_sym__alignof] = ACTIONS(3938), + [anon_sym_alignof] = ACTIONS(3938), + [anon_sym__Alignof] = ACTIONS(3938), + [anon_sym_offsetof] = ACTIONS(3938), + [anon_sym__Generic] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [anon_sym_asm] = ACTIONS(3938), + [anon_sym___asm__] = ACTIONS(3938), + [anon_sym___asm] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3940), + [anon_sym_L_SQUOTE] = ACTIONS(3940), + [anon_sym_u_SQUOTE] = ACTIONS(3940), + [anon_sym_U_SQUOTE] = ACTIONS(3940), + [anon_sym_u8_SQUOTE] = ACTIONS(3940), + [anon_sym_SQUOTE] = ACTIONS(3940), + [anon_sym_L_DQUOTE] = ACTIONS(3940), + [anon_sym_u_DQUOTE] = ACTIONS(3940), + [anon_sym_U_DQUOTE] = ACTIONS(3940), + [anon_sym_u8_DQUOTE] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(3940), + [sym_true] = ACTIONS(3938), + [sym_false] = ACTIONS(3938), + [anon_sym_NULL] = ACTIONS(3938), + [anon_sym_nullptr] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_delete] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_namespace] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_concept] = ACTIONS(3938), + [anon_sym_co_return] = ACTIONS(3938), + [anon_sym_co_yield] = ACTIONS(3938), + [anon_sym_R_DQUOTE] = ACTIONS(3940), + [anon_sym_LR_DQUOTE] = ACTIONS(3940), + [anon_sym_uR_DQUOTE] = ACTIONS(3940), + [anon_sym_UR_DQUOTE] = ACTIONS(3940), + [anon_sym_u8R_DQUOTE] = ACTIONS(3940), + [anon_sym_co_await] = ACTIONS(3938), + [anon_sym_new] = ACTIONS(3938), + [anon_sym_requires] = ACTIONS(3938), + [anon_sym_CARET_CARET] = ACTIONS(3940), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [sym_this] = ACTIONS(3938), }, - [STATE(962)] = { - [sym_string_literal] = STATE(2363), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1617), - [sym_raw_string_literal] = STATE(2363), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4174), - [anon_sym_COMMA] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4338), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4341), - [anon_sym_or_eq] = ACTIONS(4341), - [anon_sym_xor_eq] = ACTIONS(4341), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(4343), - [anon_sym_u_DQUOTE] = ACTIONS(4343), - [anon_sym_U_DQUOTE] = ACTIONS(4343), - [anon_sym_u8_DQUOTE] = ACTIONS(4343), - [anon_sym_DQUOTE] = ACTIONS(4343), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(4345), - [anon_sym_LR_DQUOTE] = ACTIONS(4345), - [anon_sym_uR_DQUOTE] = ACTIONS(4345), - [anon_sym_UR_DQUOTE] = ACTIONS(4345), - [anon_sym_u8R_DQUOTE] = ACTIONS(4345), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + [STATE(419)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_include_token1] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token2] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [aux_sym_preproc_else_token1] = ACTIONS(3942), + [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_BANG] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym___cdecl] = ACTIONS(3942), + [anon_sym___clrcall] = ACTIONS(3942), + [anon_sym___stdcall] = ACTIONS(3942), + [anon_sym___fastcall] = ACTIONS(3942), + [anon_sym___thiscall] = ACTIONS(3942), + [anon_sym___vectorcall] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3944), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_switch] = ACTIONS(3942), + [anon_sym_case] = ACTIONS(3942), + [anon_sym_default] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_goto] = ACTIONS(3942), + [anon_sym___try] = ACTIONS(3942), + [anon_sym___leave] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_compl] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3944), + [anon_sym_PLUS_PLUS] = ACTIONS(3944), + [anon_sym_sizeof] = ACTIONS(3942), + [anon_sym___alignof__] = ACTIONS(3942), + [anon_sym___alignof] = ACTIONS(3942), + [anon_sym__alignof] = ACTIONS(3942), + [anon_sym_alignof] = ACTIONS(3942), + [anon_sym__Alignof] = ACTIONS(3942), + [anon_sym_offsetof] = ACTIONS(3942), + [anon_sym__Generic] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [anon_sym_asm] = ACTIONS(3942), + [anon_sym___asm__] = ACTIONS(3942), + [anon_sym___asm] = ACTIONS(3942), + [sym_number_literal] = ACTIONS(3944), + [anon_sym_L_SQUOTE] = ACTIONS(3944), + [anon_sym_u_SQUOTE] = ACTIONS(3944), + [anon_sym_U_SQUOTE] = ACTIONS(3944), + [anon_sym_u8_SQUOTE] = ACTIONS(3944), + [anon_sym_SQUOTE] = ACTIONS(3944), + [anon_sym_L_DQUOTE] = ACTIONS(3944), + [anon_sym_u_DQUOTE] = ACTIONS(3944), + [anon_sym_U_DQUOTE] = ACTIONS(3944), + [anon_sym_u8_DQUOTE] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3944), + [sym_true] = ACTIONS(3942), + [sym_false] = ACTIONS(3942), + [anon_sym_NULL] = ACTIONS(3942), + [anon_sym_nullptr] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_delete] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_concept] = ACTIONS(3942), + [anon_sym_co_return] = ACTIONS(3942), + [anon_sym_co_yield] = ACTIONS(3942), + [anon_sym_R_DQUOTE] = ACTIONS(3944), + [anon_sym_LR_DQUOTE] = ACTIONS(3944), + [anon_sym_uR_DQUOTE] = ACTIONS(3944), + [anon_sym_UR_DQUOTE] = ACTIONS(3944), + [anon_sym_u8R_DQUOTE] = ACTIONS(3944), + [anon_sym_co_await] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3942), + [anon_sym_requires] = ACTIONS(3942), + [anon_sym_CARET_CARET] = ACTIONS(3944), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [sym_this] = ACTIONS(3942), }, - [STATE(963)] = { - [sym_expression] = STATE(2764), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(420)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_include_token1] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token2] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [aux_sym_preproc_else_token1] = ACTIONS(3946), + [aux_sym_preproc_elif_token1] = ACTIONS(3946), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_BANG] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3946), + [anon_sym_PLUS] = ACTIONS(3946), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym___cdecl] = ACTIONS(3946), + [anon_sym___clrcall] = ACTIONS(3946), + [anon_sym___stdcall] = ACTIONS(3946), + [anon_sym___fastcall] = ACTIONS(3946), + [anon_sym___thiscall] = ACTIONS(3946), + [anon_sym___vectorcall] = ACTIONS(3946), + [anon_sym_LBRACE] = ACTIONS(3948), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_if] = ACTIONS(3946), + [anon_sym_switch] = ACTIONS(3946), + [anon_sym_case] = ACTIONS(3946), + [anon_sym_default] = ACTIONS(3946), + [anon_sym_while] = ACTIONS(3946), + [anon_sym_do] = ACTIONS(3946), + [anon_sym_for] = ACTIONS(3946), + [anon_sym_return] = ACTIONS(3946), + [anon_sym_break] = ACTIONS(3946), + [anon_sym_continue] = ACTIONS(3946), + [anon_sym_goto] = ACTIONS(3946), + [anon_sym___try] = ACTIONS(3946), + [anon_sym___leave] = ACTIONS(3946), + [anon_sym_not] = ACTIONS(3946), + [anon_sym_compl] = ACTIONS(3946), + [anon_sym_DASH_DASH] = ACTIONS(3948), + [anon_sym_PLUS_PLUS] = ACTIONS(3948), + [anon_sym_sizeof] = ACTIONS(3946), + [anon_sym___alignof__] = ACTIONS(3946), + [anon_sym___alignof] = ACTIONS(3946), + [anon_sym__alignof] = ACTIONS(3946), + [anon_sym_alignof] = ACTIONS(3946), + [anon_sym__Alignof] = ACTIONS(3946), + [anon_sym_offsetof] = ACTIONS(3946), + [anon_sym__Generic] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [anon_sym_asm] = ACTIONS(3946), + [anon_sym___asm__] = ACTIONS(3946), + [anon_sym___asm] = ACTIONS(3946), + [sym_number_literal] = ACTIONS(3948), + [anon_sym_L_SQUOTE] = ACTIONS(3948), + [anon_sym_u_SQUOTE] = ACTIONS(3948), + [anon_sym_U_SQUOTE] = ACTIONS(3948), + [anon_sym_u8_SQUOTE] = ACTIONS(3948), + [anon_sym_SQUOTE] = ACTIONS(3948), + [anon_sym_L_DQUOTE] = ACTIONS(3948), + [anon_sym_u_DQUOTE] = ACTIONS(3948), + [anon_sym_U_DQUOTE] = ACTIONS(3948), + [anon_sym_u8_DQUOTE] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [sym_true] = ACTIONS(3946), + [sym_false] = ACTIONS(3946), + [anon_sym_NULL] = ACTIONS(3946), + [anon_sym_nullptr] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_try] = ACTIONS(3946), + [anon_sym_delete] = ACTIONS(3946), + [anon_sym_throw] = ACTIONS(3946), + [anon_sym_namespace] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_concept] = ACTIONS(3946), + [anon_sym_co_return] = ACTIONS(3946), + [anon_sym_co_yield] = ACTIONS(3946), + [anon_sym_R_DQUOTE] = ACTIONS(3948), + [anon_sym_LR_DQUOTE] = ACTIONS(3948), + [anon_sym_uR_DQUOTE] = ACTIONS(3948), + [anon_sym_UR_DQUOTE] = ACTIONS(3948), + [anon_sym_u8R_DQUOTE] = ACTIONS(3948), + [anon_sym_co_await] = ACTIONS(3946), + [anon_sym_new] = ACTIONS(3946), + [anon_sym_requires] = ACTIONS(3946), + [anon_sym_CARET_CARET] = ACTIONS(3948), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [sym_this] = ACTIONS(3946), }, - [STATE(964)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(421)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [aux_sym_preproc_else_token1] = ACTIONS(3950), + [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym___try] = ACTIONS(3950), + [anon_sym___leave] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), }, - [STATE(965)] = { - [sym_expression] = STATE(4428), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(7664), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(422)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token2] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [aux_sym_preproc_else_token1] = ACTIONS(3954), + [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym___try] = ACTIONS(3954), + [anon_sym___leave] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(966)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(968), - [sym_compound_requirement] = STATE(968), - [sym__requirement] = STATE(968), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(968), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(423)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token2] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [aux_sym_preproc_else_token1] = ACTIONS(3958), + [aux_sym_preproc_elif_token1] = ACTIONS(3958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym___try] = ACTIONS(3958), + [anon_sym___leave] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), }, - [STATE(967)] = { - [sym_expression] = STATE(4564), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(424)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token2] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [aux_sym_preproc_else_token1] = ACTIONS(3962), + [aux_sym_preproc_elif_token1] = ACTIONS(3962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym___try] = ACTIONS(3962), + [anon_sym___leave] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), }, - [STATE(968)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(425)] = { + [sym_identifier] = ACTIONS(3966), + [aux_sym_preproc_include_token1] = ACTIONS(3966), + [aux_sym_preproc_def_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token2] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), + [aux_sym_preproc_else_token1] = ACTIONS(3966), + [aux_sym_preproc_elif_token1] = ACTIONS(3966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3966), + [sym_preproc_directive] = ACTIONS(3966), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3968), + [anon_sym_TILDE] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_AMP_AMP] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3966), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_typedef] = ACTIONS(3966), + [anon_sym_virtual] = ACTIONS(3966), + [anon_sym_extern] = ACTIONS(3966), + [anon_sym___attribute__] = ACTIONS(3966), + [anon_sym___attribute] = ACTIONS(3966), + [anon_sym_using] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), + [anon_sym___declspec] = ACTIONS(3966), + [anon_sym___based] = ACTIONS(3966), + [anon_sym___cdecl] = ACTIONS(3966), + [anon_sym___clrcall] = ACTIONS(3966), + [anon_sym___stdcall] = ACTIONS(3966), + [anon_sym___fastcall] = ACTIONS(3966), + [anon_sym___thiscall] = ACTIONS(3966), + [anon_sym___vectorcall] = ACTIONS(3966), + [anon_sym_LBRACE] = ACTIONS(3968), + [anon_sym_signed] = ACTIONS(3966), + [anon_sym_unsigned] = ACTIONS(3966), + [anon_sym_long] = ACTIONS(3966), + [anon_sym_short] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_static] = ACTIONS(3966), + [anon_sym_register] = ACTIONS(3966), + [anon_sym_inline] = ACTIONS(3966), + [anon_sym___inline] = ACTIONS(3966), + [anon_sym___inline__] = ACTIONS(3966), + [anon_sym___forceinline] = ACTIONS(3966), + [anon_sym_thread_local] = ACTIONS(3966), + [anon_sym___thread] = ACTIONS(3966), + [anon_sym_const] = ACTIONS(3966), + [anon_sym_constexpr] = ACTIONS(3966), + [anon_sym_volatile] = ACTIONS(3966), + [anon_sym_restrict] = ACTIONS(3966), + [anon_sym___restrict__] = ACTIONS(3966), + [anon_sym__Atomic] = ACTIONS(3966), + [anon_sym__Noreturn] = ACTIONS(3966), + [anon_sym_noreturn] = ACTIONS(3966), + [anon_sym__Nonnull] = ACTIONS(3966), + [anon_sym_mutable] = ACTIONS(3966), + [anon_sym_constinit] = ACTIONS(3966), + [anon_sym_consteval] = ACTIONS(3966), + [anon_sym_alignas] = ACTIONS(3966), + [anon_sym__Alignas] = ACTIONS(3966), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_enum] = ACTIONS(3966), + [anon_sym_class] = ACTIONS(3966), + [anon_sym_struct] = ACTIONS(3966), + [anon_sym_union] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3966), + [anon_sym_switch] = ACTIONS(3966), + [anon_sym_case] = ACTIONS(3966), + [anon_sym_default] = ACTIONS(3966), + [anon_sym_while] = ACTIONS(3966), + [anon_sym_do] = ACTIONS(3966), + [anon_sym_for] = ACTIONS(3966), + [anon_sym_return] = ACTIONS(3966), + [anon_sym_break] = ACTIONS(3966), + [anon_sym_continue] = ACTIONS(3966), + [anon_sym_goto] = ACTIONS(3966), + [anon_sym___try] = ACTIONS(3966), + [anon_sym___leave] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3966), + [anon_sym_compl] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3968), + [anon_sym_PLUS_PLUS] = ACTIONS(3968), + [anon_sym_sizeof] = ACTIONS(3966), + [anon_sym___alignof__] = ACTIONS(3966), + [anon_sym___alignof] = ACTIONS(3966), + [anon_sym__alignof] = ACTIONS(3966), + [anon_sym_alignof] = ACTIONS(3966), + [anon_sym__Alignof] = ACTIONS(3966), + [anon_sym_offsetof] = ACTIONS(3966), + [anon_sym__Generic] = ACTIONS(3966), + [anon_sym_typename] = ACTIONS(3966), + [anon_sym_asm] = ACTIONS(3966), + [anon_sym___asm__] = ACTIONS(3966), + [anon_sym___asm] = ACTIONS(3966), + [sym_number_literal] = ACTIONS(3968), + [anon_sym_L_SQUOTE] = ACTIONS(3968), + [anon_sym_u_SQUOTE] = ACTIONS(3968), + [anon_sym_U_SQUOTE] = ACTIONS(3968), + [anon_sym_u8_SQUOTE] = ACTIONS(3968), + [anon_sym_SQUOTE] = ACTIONS(3968), + [anon_sym_L_DQUOTE] = ACTIONS(3968), + [anon_sym_u_DQUOTE] = ACTIONS(3968), + [anon_sym_U_DQUOTE] = ACTIONS(3968), + [anon_sym_u8_DQUOTE] = ACTIONS(3968), + [anon_sym_DQUOTE] = ACTIONS(3968), + [sym_true] = ACTIONS(3966), + [sym_false] = ACTIONS(3966), + [anon_sym_NULL] = ACTIONS(3966), + [anon_sym_nullptr] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3966), + [anon_sym_decltype] = ACTIONS(3966), + [anon_sym_explicit] = ACTIONS(3966), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(3966), + [anon_sym_try] = ACTIONS(3966), + [anon_sym_delete] = ACTIONS(3966), + [anon_sym_throw] = ACTIONS(3966), + [anon_sym_namespace] = ACTIONS(3966), + [anon_sym_static_assert] = ACTIONS(3966), + [anon_sym_concept] = ACTIONS(3966), + [anon_sym_co_return] = ACTIONS(3966), + [anon_sym_co_yield] = ACTIONS(3966), + [anon_sym_R_DQUOTE] = ACTIONS(3968), + [anon_sym_LR_DQUOTE] = ACTIONS(3968), + [anon_sym_uR_DQUOTE] = ACTIONS(3968), + [anon_sym_UR_DQUOTE] = ACTIONS(3968), + [anon_sym_u8R_DQUOTE] = ACTIONS(3968), + [anon_sym_co_await] = ACTIONS(3966), + [anon_sym_new] = ACTIONS(3966), + [anon_sym_requires] = ACTIONS(3966), + [anon_sym_CARET_CARET] = ACTIONS(3968), + [anon_sym_LBRACK_COLON] = ACTIONS(3968), + [sym_this] = ACTIONS(3966), }, - [STATE(969)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(971), - [sym_compound_requirement] = STATE(971), - [sym__requirement] = STATE(971), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(971), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(426)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_include_token1] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token2] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [aux_sym_preproc_else_token1] = ACTIONS(3970), + [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym___cdecl] = ACTIONS(3970), + [anon_sym___clrcall] = ACTIONS(3970), + [anon_sym___stdcall] = ACTIONS(3970), + [anon_sym___fastcall] = ACTIONS(3970), + [anon_sym___thiscall] = ACTIONS(3970), + [anon_sym___vectorcall] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_case] = ACTIONS(3970), + [anon_sym_default] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_do] = ACTIONS(3970), + [anon_sym_for] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_goto] = ACTIONS(3970), + [anon_sym___try] = ACTIONS(3970), + [anon_sym___leave] = ACTIONS(3970), + [anon_sym_not] = ACTIONS(3970), + [anon_sym_compl] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_sizeof] = ACTIONS(3970), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3970), + [anon_sym__Generic] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [anon_sym_asm] = ACTIONS(3970), + [anon_sym___asm__] = ACTIONS(3970), + [anon_sym___asm] = ACTIONS(3970), + [sym_number_literal] = ACTIONS(3972), + [anon_sym_L_SQUOTE] = ACTIONS(3972), + [anon_sym_u_SQUOTE] = ACTIONS(3972), + [anon_sym_U_SQUOTE] = ACTIONS(3972), + [anon_sym_u8_SQUOTE] = ACTIONS(3972), + [anon_sym_SQUOTE] = ACTIONS(3972), + [anon_sym_L_DQUOTE] = ACTIONS(3972), + [anon_sym_u_DQUOTE] = ACTIONS(3972), + [anon_sym_U_DQUOTE] = ACTIONS(3972), + [anon_sym_u8_DQUOTE] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(3972), + [sym_true] = ACTIONS(3970), + [sym_false] = ACTIONS(3970), + [anon_sym_NULL] = ACTIONS(3970), + [anon_sym_nullptr] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_delete] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_namespace] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(3970), + [anon_sym_co_return] = ACTIONS(3970), + [anon_sym_co_yield] = ACTIONS(3970), + [anon_sym_R_DQUOTE] = ACTIONS(3972), + [anon_sym_LR_DQUOTE] = ACTIONS(3972), + [anon_sym_uR_DQUOTE] = ACTIONS(3972), + [anon_sym_UR_DQUOTE] = ACTIONS(3972), + [anon_sym_u8R_DQUOTE] = ACTIONS(3972), + [anon_sym_co_await] = ACTIONS(3970), + [anon_sym_new] = ACTIONS(3970), + [anon_sym_requires] = ACTIONS(3970), + [anon_sym_CARET_CARET] = ACTIONS(3972), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [sym_this] = ACTIONS(3970), }, - [STATE(970)] = { - [sym_expression] = STATE(4472), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7430), - [sym_initializer_pair] = STATE(7430), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4377), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(427)] = { + [sym_identifier] = ACTIONS(3974), + [aux_sym_preproc_include_token1] = ACTIONS(3974), + [aux_sym_preproc_def_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token2] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), + [aux_sym_preproc_else_token1] = ACTIONS(3974), + [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3974), + [sym_preproc_directive] = ACTIONS(3974), + [anon_sym_LPAREN2] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_TILDE] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym___extension__] = ACTIONS(3974), + [anon_sym_typedef] = ACTIONS(3974), + [anon_sym_virtual] = ACTIONS(3974), + [anon_sym_extern] = ACTIONS(3974), + [anon_sym___attribute__] = ACTIONS(3974), + [anon_sym___attribute] = ACTIONS(3974), + [anon_sym_using] = ACTIONS(3974), + [anon_sym_COLON_COLON] = ACTIONS(3976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), + [anon_sym___declspec] = ACTIONS(3974), + [anon_sym___based] = ACTIONS(3974), + [anon_sym___cdecl] = ACTIONS(3974), + [anon_sym___clrcall] = ACTIONS(3974), + [anon_sym___stdcall] = ACTIONS(3974), + [anon_sym___fastcall] = ACTIONS(3974), + [anon_sym___thiscall] = ACTIONS(3974), + [anon_sym___vectorcall] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_signed] = ACTIONS(3974), + [anon_sym_unsigned] = ACTIONS(3974), + [anon_sym_long] = ACTIONS(3974), + [anon_sym_short] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_static] = ACTIONS(3974), + [anon_sym_register] = ACTIONS(3974), + [anon_sym_inline] = ACTIONS(3974), + [anon_sym___inline] = ACTIONS(3974), + [anon_sym___inline__] = ACTIONS(3974), + [anon_sym___forceinline] = ACTIONS(3974), + [anon_sym_thread_local] = ACTIONS(3974), + [anon_sym___thread] = ACTIONS(3974), + [anon_sym_const] = ACTIONS(3974), + [anon_sym_constexpr] = ACTIONS(3974), + [anon_sym_volatile] = ACTIONS(3974), + [anon_sym_restrict] = ACTIONS(3974), + [anon_sym___restrict__] = ACTIONS(3974), + [anon_sym__Atomic] = ACTIONS(3974), + [anon_sym__Noreturn] = ACTIONS(3974), + [anon_sym_noreturn] = ACTIONS(3974), + [anon_sym__Nonnull] = ACTIONS(3974), + [anon_sym_mutable] = ACTIONS(3974), + [anon_sym_constinit] = ACTIONS(3974), + [anon_sym_consteval] = ACTIONS(3974), + [anon_sym_alignas] = ACTIONS(3974), + [anon_sym__Alignas] = ACTIONS(3974), + [sym_primitive_type] = ACTIONS(3974), + [anon_sym_enum] = ACTIONS(3974), + [anon_sym_class] = ACTIONS(3974), + [anon_sym_struct] = ACTIONS(3974), + [anon_sym_union] = ACTIONS(3974), + [anon_sym_if] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_case] = ACTIONS(3974), + [anon_sym_default] = ACTIONS(3974), + [anon_sym_while] = ACTIONS(3974), + [anon_sym_do] = ACTIONS(3974), + [anon_sym_for] = ACTIONS(3974), + [anon_sym_return] = ACTIONS(3974), + [anon_sym_break] = ACTIONS(3974), + [anon_sym_continue] = ACTIONS(3974), + [anon_sym_goto] = ACTIONS(3974), + [anon_sym___try] = ACTIONS(3974), + [anon_sym___leave] = ACTIONS(3974), + [anon_sym_not] = ACTIONS(3974), + [anon_sym_compl] = ACTIONS(3974), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_sizeof] = ACTIONS(3974), + [anon_sym___alignof__] = ACTIONS(3974), + [anon_sym___alignof] = ACTIONS(3974), + [anon_sym__alignof] = ACTIONS(3974), + [anon_sym_alignof] = ACTIONS(3974), + [anon_sym__Alignof] = ACTIONS(3974), + [anon_sym_offsetof] = ACTIONS(3974), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_typename] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3974), + [anon_sym___asm__] = ACTIONS(3974), + [anon_sym___asm] = ACTIONS(3974), + [sym_number_literal] = ACTIONS(3976), + [anon_sym_L_SQUOTE] = ACTIONS(3976), + [anon_sym_u_SQUOTE] = ACTIONS(3976), + [anon_sym_U_SQUOTE] = ACTIONS(3976), + [anon_sym_u8_SQUOTE] = ACTIONS(3976), + [anon_sym_SQUOTE] = ACTIONS(3976), + [anon_sym_L_DQUOTE] = ACTIONS(3976), + [anon_sym_u_DQUOTE] = ACTIONS(3976), + [anon_sym_U_DQUOTE] = ACTIONS(3976), + [anon_sym_u8_DQUOTE] = ACTIONS(3976), + [anon_sym_DQUOTE] = ACTIONS(3976), + [sym_true] = ACTIONS(3974), + [sym_false] = ACTIONS(3974), + [anon_sym_NULL] = ACTIONS(3974), + [anon_sym_nullptr] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3974), + [anon_sym_decltype] = ACTIONS(3974), + [anon_sym_explicit] = ACTIONS(3974), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(3974), + [anon_sym_try] = ACTIONS(3974), + [anon_sym_delete] = ACTIONS(3974), + [anon_sym_throw] = ACTIONS(3974), + [anon_sym_namespace] = ACTIONS(3974), + [anon_sym_static_assert] = ACTIONS(3974), + [anon_sym_concept] = ACTIONS(3974), + [anon_sym_co_return] = ACTIONS(3974), + [anon_sym_co_yield] = ACTIONS(3974), + [anon_sym_R_DQUOTE] = ACTIONS(3976), + [anon_sym_LR_DQUOTE] = ACTIONS(3976), + [anon_sym_uR_DQUOTE] = ACTIONS(3976), + [anon_sym_UR_DQUOTE] = ACTIONS(3976), + [anon_sym_u8R_DQUOTE] = ACTIONS(3976), + [anon_sym_co_await] = ACTIONS(3974), + [anon_sym_new] = ACTIONS(3974), + [anon_sym_requires] = ACTIONS(3974), + [anon_sym_CARET_CARET] = ACTIONS(3976), + [anon_sym_LBRACK_COLON] = ACTIONS(3976), + [sym_this] = ACTIONS(3974), }, - [STATE(971)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(428)] = { + [sym_identifier] = ACTIONS(3978), + [aux_sym_preproc_include_token1] = ACTIONS(3978), + [aux_sym_preproc_def_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token2] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), + [aux_sym_preproc_else_token1] = ACTIONS(3978), + [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3978), + [sym_preproc_directive] = ACTIONS(3978), + [anon_sym_LPAREN2] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_TILDE] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym___extension__] = ACTIONS(3978), + [anon_sym_typedef] = ACTIONS(3978), + [anon_sym_virtual] = ACTIONS(3978), + [anon_sym_extern] = ACTIONS(3978), + [anon_sym___attribute__] = ACTIONS(3978), + [anon_sym___attribute] = ACTIONS(3978), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), + [anon_sym___declspec] = ACTIONS(3978), + [anon_sym___based] = ACTIONS(3978), + [anon_sym___cdecl] = ACTIONS(3978), + [anon_sym___clrcall] = ACTIONS(3978), + [anon_sym___stdcall] = ACTIONS(3978), + [anon_sym___fastcall] = ACTIONS(3978), + [anon_sym___thiscall] = ACTIONS(3978), + [anon_sym___vectorcall] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_signed] = ACTIONS(3978), + [anon_sym_unsigned] = ACTIONS(3978), + [anon_sym_long] = ACTIONS(3978), + [anon_sym_short] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_static] = ACTIONS(3978), + [anon_sym_register] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym___inline] = ACTIONS(3978), + [anon_sym___inline__] = ACTIONS(3978), + [anon_sym___forceinline] = ACTIONS(3978), + [anon_sym_thread_local] = ACTIONS(3978), + [anon_sym___thread] = ACTIONS(3978), + [anon_sym_const] = ACTIONS(3978), + [anon_sym_constexpr] = ACTIONS(3978), + [anon_sym_volatile] = ACTIONS(3978), + [anon_sym_restrict] = ACTIONS(3978), + [anon_sym___restrict__] = ACTIONS(3978), + [anon_sym__Atomic] = ACTIONS(3978), + [anon_sym__Noreturn] = ACTIONS(3978), + [anon_sym_noreturn] = ACTIONS(3978), + [anon_sym__Nonnull] = ACTIONS(3978), + [anon_sym_mutable] = ACTIONS(3978), + [anon_sym_constinit] = ACTIONS(3978), + [anon_sym_consteval] = ACTIONS(3978), + [anon_sym_alignas] = ACTIONS(3978), + [anon_sym__Alignas] = ACTIONS(3978), + [sym_primitive_type] = ACTIONS(3978), + [anon_sym_enum] = ACTIONS(3978), + [anon_sym_class] = ACTIONS(3978), + [anon_sym_struct] = ACTIONS(3978), + [anon_sym_union] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_case] = ACTIONS(3978), + [anon_sym_default] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_do] = ACTIONS(3978), + [anon_sym_for] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_goto] = ACTIONS(3978), + [anon_sym___try] = ACTIONS(3978), + [anon_sym___leave] = ACTIONS(3978), + [anon_sym_not] = ACTIONS(3978), + [anon_sym_compl] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(3978), + [anon_sym___alignof__] = ACTIONS(3978), + [anon_sym___alignof] = ACTIONS(3978), + [anon_sym__alignof] = ACTIONS(3978), + [anon_sym_alignof] = ACTIONS(3978), + [anon_sym__Alignof] = ACTIONS(3978), + [anon_sym_offsetof] = ACTIONS(3978), + [anon_sym__Generic] = ACTIONS(3978), + [anon_sym_typename] = ACTIONS(3978), + [anon_sym_asm] = ACTIONS(3978), + [anon_sym___asm__] = ACTIONS(3978), + [anon_sym___asm] = ACTIONS(3978), + [sym_number_literal] = ACTIONS(3980), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3980), + [anon_sym_u_DQUOTE] = ACTIONS(3980), + [anon_sym_U_DQUOTE] = ACTIONS(3980), + [anon_sym_u8_DQUOTE] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(3980), + [sym_true] = ACTIONS(3978), + [sym_false] = ACTIONS(3978), + [anon_sym_NULL] = ACTIONS(3978), + [anon_sym_nullptr] = ACTIONS(3978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3978), + [anon_sym_decltype] = ACTIONS(3978), + [anon_sym_explicit] = ACTIONS(3978), + [anon_sym_template] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_delete] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_static_assert] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(3978), + [anon_sym_co_return] = ACTIONS(3978), + [anon_sym_co_yield] = ACTIONS(3978), + [anon_sym_R_DQUOTE] = ACTIONS(3980), + [anon_sym_LR_DQUOTE] = ACTIONS(3980), + [anon_sym_uR_DQUOTE] = ACTIONS(3980), + [anon_sym_UR_DQUOTE] = ACTIONS(3980), + [anon_sym_u8R_DQUOTE] = ACTIONS(3980), + [anon_sym_co_await] = ACTIONS(3978), + [anon_sym_new] = ACTIONS(3978), + [anon_sym_requires] = ACTIONS(3978), + [anon_sym_CARET_CARET] = ACTIONS(3980), + [anon_sym_LBRACK_COLON] = ACTIONS(3980), + [sym_this] = ACTIONS(3978), }, - [STATE(972)] = { - [sym_expression] = STATE(3220), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(429)] = { + [sym_identifier] = ACTIONS(3982), + [aux_sym_preproc_include_token1] = ACTIONS(3982), + [aux_sym_preproc_def_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token2] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), + [aux_sym_preproc_else_token1] = ACTIONS(3982), + [aux_sym_preproc_elif_token1] = ACTIONS(3982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3982), + [sym_preproc_directive] = ACTIONS(3982), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_TILDE] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym___extension__] = ACTIONS(3982), + [anon_sym_typedef] = ACTIONS(3982), + [anon_sym_virtual] = ACTIONS(3982), + [anon_sym_extern] = ACTIONS(3982), + [anon_sym___attribute__] = ACTIONS(3982), + [anon_sym___attribute] = ACTIONS(3982), + [anon_sym_using] = ACTIONS(3982), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), + [anon_sym___declspec] = ACTIONS(3982), + [anon_sym___based] = ACTIONS(3982), + [anon_sym___cdecl] = ACTIONS(3982), + [anon_sym___clrcall] = ACTIONS(3982), + [anon_sym___stdcall] = ACTIONS(3982), + [anon_sym___fastcall] = ACTIONS(3982), + [anon_sym___thiscall] = ACTIONS(3982), + [anon_sym___vectorcall] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3982), + [anon_sym_unsigned] = ACTIONS(3982), + [anon_sym_long] = ACTIONS(3982), + [anon_sym_short] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_static] = ACTIONS(3982), + [anon_sym_register] = ACTIONS(3982), + [anon_sym_inline] = ACTIONS(3982), + [anon_sym___inline] = ACTIONS(3982), + [anon_sym___inline__] = ACTIONS(3982), + [anon_sym___forceinline] = ACTIONS(3982), + [anon_sym_thread_local] = ACTIONS(3982), + [anon_sym___thread] = ACTIONS(3982), + [anon_sym_const] = ACTIONS(3982), + [anon_sym_constexpr] = ACTIONS(3982), + [anon_sym_volatile] = ACTIONS(3982), + [anon_sym_restrict] = ACTIONS(3982), + [anon_sym___restrict__] = ACTIONS(3982), + [anon_sym__Atomic] = ACTIONS(3982), + [anon_sym__Noreturn] = ACTIONS(3982), + [anon_sym_noreturn] = ACTIONS(3982), + [anon_sym__Nonnull] = ACTIONS(3982), + [anon_sym_mutable] = ACTIONS(3982), + [anon_sym_constinit] = ACTIONS(3982), + [anon_sym_consteval] = ACTIONS(3982), + [anon_sym_alignas] = ACTIONS(3982), + [anon_sym__Alignas] = ACTIONS(3982), + [sym_primitive_type] = ACTIONS(3982), + [anon_sym_enum] = ACTIONS(3982), + [anon_sym_class] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3982), + [anon_sym_union] = ACTIONS(3982), + [anon_sym_if] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_case] = ACTIONS(3982), + [anon_sym_default] = ACTIONS(3982), + [anon_sym_while] = ACTIONS(3982), + [anon_sym_do] = ACTIONS(3982), + [anon_sym_for] = ACTIONS(3982), + [anon_sym_return] = ACTIONS(3982), + [anon_sym_break] = ACTIONS(3982), + [anon_sym_continue] = ACTIONS(3982), + [anon_sym_goto] = ACTIONS(3982), + [anon_sym___try] = ACTIONS(3982), + [anon_sym___leave] = ACTIONS(3982), + [anon_sym_not] = ACTIONS(3982), + [anon_sym_compl] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3984), + [anon_sym_sizeof] = ACTIONS(3982), + [anon_sym___alignof__] = ACTIONS(3982), + [anon_sym___alignof] = ACTIONS(3982), + [anon_sym__alignof] = ACTIONS(3982), + [anon_sym_alignof] = ACTIONS(3982), + [anon_sym__Alignof] = ACTIONS(3982), + [anon_sym_offsetof] = ACTIONS(3982), + [anon_sym__Generic] = ACTIONS(3982), + [anon_sym_typename] = ACTIONS(3982), + [anon_sym_asm] = ACTIONS(3982), + [anon_sym___asm__] = ACTIONS(3982), + [anon_sym___asm] = ACTIONS(3982), + [sym_number_literal] = ACTIONS(3984), + [anon_sym_L_SQUOTE] = ACTIONS(3984), + [anon_sym_u_SQUOTE] = ACTIONS(3984), + [anon_sym_U_SQUOTE] = ACTIONS(3984), + [anon_sym_u8_SQUOTE] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3984), + [anon_sym_L_DQUOTE] = ACTIONS(3984), + [anon_sym_u_DQUOTE] = ACTIONS(3984), + [anon_sym_U_DQUOTE] = ACTIONS(3984), + [anon_sym_u8_DQUOTE] = ACTIONS(3984), + [anon_sym_DQUOTE] = ACTIONS(3984), + [sym_true] = ACTIONS(3982), + [sym_false] = ACTIONS(3982), + [anon_sym_NULL] = ACTIONS(3982), + [anon_sym_nullptr] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3982), + [anon_sym_decltype] = ACTIONS(3982), + [anon_sym_explicit] = ACTIONS(3982), + [anon_sym_template] = ACTIONS(3982), + [anon_sym_operator] = ACTIONS(3982), + [anon_sym_try] = ACTIONS(3982), + [anon_sym_delete] = ACTIONS(3982), + [anon_sym_throw] = ACTIONS(3982), + [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_static_assert] = ACTIONS(3982), + [anon_sym_concept] = ACTIONS(3982), + [anon_sym_co_return] = ACTIONS(3982), + [anon_sym_co_yield] = ACTIONS(3982), + [anon_sym_R_DQUOTE] = ACTIONS(3984), + [anon_sym_LR_DQUOTE] = ACTIONS(3984), + [anon_sym_uR_DQUOTE] = ACTIONS(3984), + [anon_sym_UR_DQUOTE] = ACTIONS(3984), + [anon_sym_u8R_DQUOTE] = ACTIONS(3984), + [anon_sym_co_await] = ACTIONS(3982), + [anon_sym_new] = ACTIONS(3982), + [anon_sym_requires] = ACTIONS(3982), + [anon_sym_CARET_CARET] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3984), + [sym_this] = ACTIONS(3982), }, - [STATE(973)] = { - [sym_expression] = STATE(4478), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7483), - [sym_initializer_pair] = STATE(7483), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(430)] = { + [ts_builtin_sym_end] = ACTIONS(3670), + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, - [STATE(974)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(976), - [sym_compound_requirement] = STATE(976), - [sym__requirement] = STATE(976), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(431)] = { + [sym_identifier] = ACTIONS(3986), + [aux_sym_preproc_include_token1] = ACTIONS(3986), + [aux_sym_preproc_def_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token2] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), + [aux_sym_preproc_else_token1] = ACTIONS(3986), + [aux_sym_preproc_elif_token1] = ACTIONS(3986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3986), + [sym_preproc_directive] = ACTIONS(3986), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym___extension__] = ACTIONS(3986), + [anon_sym_typedef] = ACTIONS(3986), + [anon_sym_virtual] = ACTIONS(3986), + [anon_sym_extern] = ACTIONS(3986), + [anon_sym___attribute__] = ACTIONS(3986), + [anon_sym___attribute] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3986), + [anon_sym_COLON_COLON] = ACTIONS(3988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), + [anon_sym___declspec] = ACTIONS(3986), + [anon_sym___based] = ACTIONS(3986), + [anon_sym___cdecl] = ACTIONS(3986), + [anon_sym___clrcall] = ACTIONS(3986), + [anon_sym___stdcall] = ACTIONS(3986), + [anon_sym___fastcall] = ACTIONS(3986), + [anon_sym___thiscall] = ACTIONS(3986), + [anon_sym___vectorcall] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3986), + [anon_sym_unsigned] = ACTIONS(3986), + [anon_sym_long] = ACTIONS(3986), + [anon_sym_short] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_static] = ACTIONS(3986), + [anon_sym_register] = ACTIONS(3986), + [anon_sym_inline] = ACTIONS(3986), + [anon_sym___inline] = ACTIONS(3986), + [anon_sym___inline__] = ACTIONS(3986), + [anon_sym___forceinline] = ACTIONS(3986), + [anon_sym_thread_local] = ACTIONS(3986), + [anon_sym___thread] = ACTIONS(3986), + [anon_sym_const] = ACTIONS(3986), + [anon_sym_constexpr] = ACTIONS(3986), + [anon_sym_volatile] = ACTIONS(3986), + [anon_sym_restrict] = ACTIONS(3986), + [anon_sym___restrict__] = ACTIONS(3986), + [anon_sym__Atomic] = ACTIONS(3986), + [anon_sym__Noreturn] = ACTIONS(3986), + [anon_sym_noreturn] = ACTIONS(3986), + [anon_sym__Nonnull] = ACTIONS(3986), + [anon_sym_mutable] = ACTIONS(3986), + [anon_sym_constinit] = ACTIONS(3986), + [anon_sym_consteval] = ACTIONS(3986), + [anon_sym_alignas] = ACTIONS(3986), + [anon_sym__Alignas] = ACTIONS(3986), + [sym_primitive_type] = ACTIONS(3986), + [anon_sym_enum] = ACTIONS(3986), + [anon_sym_class] = ACTIONS(3986), + [anon_sym_struct] = ACTIONS(3986), + [anon_sym_union] = ACTIONS(3986), + [anon_sym_if] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_case] = ACTIONS(3986), + [anon_sym_default] = ACTIONS(3986), + [anon_sym_while] = ACTIONS(3986), + [anon_sym_do] = ACTIONS(3986), + [anon_sym_for] = ACTIONS(3986), + [anon_sym_return] = ACTIONS(3986), + [anon_sym_break] = ACTIONS(3986), + [anon_sym_continue] = ACTIONS(3986), + [anon_sym_goto] = ACTIONS(3986), + [anon_sym___try] = ACTIONS(3986), + [anon_sym___leave] = ACTIONS(3986), + [anon_sym_not] = ACTIONS(3986), + [anon_sym_compl] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3988), + [anon_sym_sizeof] = ACTIONS(3986), + [anon_sym___alignof__] = ACTIONS(3986), + [anon_sym___alignof] = ACTIONS(3986), + [anon_sym__alignof] = ACTIONS(3986), + [anon_sym_alignof] = ACTIONS(3986), + [anon_sym__Alignof] = ACTIONS(3986), + [anon_sym_offsetof] = ACTIONS(3986), + [anon_sym__Generic] = ACTIONS(3986), + [anon_sym_typename] = ACTIONS(3986), + [anon_sym_asm] = ACTIONS(3986), + [anon_sym___asm__] = ACTIONS(3986), + [anon_sym___asm] = ACTIONS(3986), + [sym_number_literal] = ACTIONS(3988), + [anon_sym_L_SQUOTE] = ACTIONS(3988), + [anon_sym_u_SQUOTE] = ACTIONS(3988), + [anon_sym_U_SQUOTE] = ACTIONS(3988), + [anon_sym_u8_SQUOTE] = ACTIONS(3988), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_L_DQUOTE] = ACTIONS(3988), + [anon_sym_u_DQUOTE] = ACTIONS(3988), + [anon_sym_U_DQUOTE] = ACTIONS(3988), + [anon_sym_u8_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE] = ACTIONS(3988), + [sym_true] = ACTIONS(3986), + [sym_false] = ACTIONS(3986), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3986), + [anon_sym_decltype] = ACTIONS(3986), + [anon_sym_explicit] = ACTIONS(3986), + [anon_sym_template] = ACTIONS(3986), + [anon_sym_operator] = ACTIONS(3986), + [anon_sym_try] = ACTIONS(3986), + [anon_sym_delete] = ACTIONS(3986), + [anon_sym_throw] = ACTIONS(3986), + [anon_sym_namespace] = ACTIONS(3986), + [anon_sym_static_assert] = ACTIONS(3986), + [anon_sym_concept] = ACTIONS(3986), + [anon_sym_co_return] = ACTIONS(3986), + [anon_sym_co_yield] = ACTIONS(3986), + [anon_sym_R_DQUOTE] = ACTIONS(3988), + [anon_sym_LR_DQUOTE] = ACTIONS(3988), + [anon_sym_uR_DQUOTE] = ACTIONS(3988), + [anon_sym_UR_DQUOTE] = ACTIONS(3988), + [anon_sym_u8R_DQUOTE] = ACTIONS(3988), + [anon_sym_co_await] = ACTIONS(3986), + [anon_sym_new] = ACTIONS(3986), + [anon_sym_requires] = ACTIONS(3986), + [anon_sym_CARET_CARET] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3988), + [sym_this] = ACTIONS(3986), }, - [STATE(975)] = { - [sym_expression] = STATE(3230), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(432)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_include_token1] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token2] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym___cdecl] = ACTIONS(3990), + [anon_sym___clrcall] = ACTIONS(3990), + [anon_sym___stdcall] = ACTIONS(3990), + [anon_sym___fastcall] = ACTIONS(3990), + [anon_sym___thiscall] = ACTIONS(3990), + [anon_sym___vectorcall] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_case] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_break] = ACTIONS(3990), + [anon_sym_continue] = ACTIONS(3990), + [anon_sym_goto] = ACTIONS(3990), + [anon_sym___try] = ACTIONS(3990), + [anon_sym___leave] = ACTIONS(3990), + [anon_sym_not] = ACTIONS(3990), + [anon_sym_compl] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3992), + [anon_sym_sizeof] = ACTIONS(3990), + [anon_sym___alignof__] = ACTIONS(3990), + [anon_sym___alignof] = ACTIONS(3990), + [anon_sym__alignof] = ACTIONS(3990), + [anon_sym_alignof] = ACTIONS(3990), + [anon_sym__Alignof] = ACTIONS(3990), + [anon_sym_offsetof] = ACTIONS(3990), + [anon_sym__Generic] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [anon_sym_asm] = ACTIONS(3990), + [anon_sym___asm__] = ACTIONS(3990), + [anon_sym___asm] = ACTIONS(3990), + [sym_number_literal] = ACTIONS(3992), + [anon_sym_L_SQUOTE] = ACTIONS(3992), + [anon_sym_u_SQUOTE] = ACTIONS(3992), + [anon_sym_U_SQUOTE] = ACTIONS(3992), + [anon_sym_u8_SQUOTE] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_L_DQUOTE] = ACTIONS(3992), + [anon_sym_u_DQUOTE] = ACTIONS(3992), + [anon_sym_U_DQUOTE] = ACTIONS(3992), + [anon_sym_u8_DQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym_true] = ACTIONS(3990), + [sym_false] = ACTIONS(3990), + [anon_sym_NULL] = ACTIONS(3990), + [anon_sym_nullptr] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_delete] = ACTIONS(3990), + [anon_sym_throw] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3990), + [anon_sym_co_return] = ACTIONS(3990), + [anon_sym_co_yield] = ACTIONS(3990), + [anon_sym_R_DQUOTE] = ACTIONS(3992), + [anon_sym_LR_DQUOTE] = ACTIONS(3992), + [anon_sym_uR_DQUOTE] = ACTIONS(3992), + [anon_sym_UR_DQUOTE] = ACTIONS(3992), + [anon_sym_u8R_DQUOTE] = ACTIONS(3992), + [anon_sym_co_await] = ACTIONS(3990), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_requires] = ACTIONS(3990), + [anon_sym_CARET_CARET] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + [sym_this] = ACTIONS(3990), }, - [STATE(976)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(433)] = { + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(977)] = { - [sym_expression] = STATE(3171), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(434)] = { + [sym_identifier] = ACTIONS(3994), + [aux_sym_preproc_include_token1] = ACTIONS(3994), + [aux_sym_preproc_def_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token2] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), + [aux_sym_preproc_else_token1] = ACTIONS(3994), + [aux_sym_preproc_elif_token1] = ACTIONS(3994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3994), + [sym_preproc_directive] = ACTIONS(3994), + [anon_sym_LPAREN2] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_TILDE] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3994), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym___extension__] = ACTIONS(3994), + [anon_sym_typedef] = ACTIONS(3994), + [anon_sym_virtual] = ACTIONS(3994), + [anon_sym_extern] = ACTIONS(3994), + [anon_sym___attribute__] = ACTIONS(3994), + [anon_sym___attribute] = ACTIONS(3994), + [anon_sym_using] = ACTIONS(3994), + [anon_sym_COLON_COLON] = ACTIONS(3996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), + [anon_sym___declspec] = ACTIONS(3994), + [anon_sym___based] = ACTIONS(3994), + [anon_sym___cdecl] = ACTIONS(3994), + [anon_sym___clrcall] = ACTIONS(3994), + [anon_sym___stdcall] = ACTIONS(3994), + [anon_sym___fastcall] = ACTIONS(3994), + [anon_sym___thiscall] = ACTIONS(3994), + [anon_sym___vectorcall] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_signed] = ACTIONS(3994), + [anon_sym_unsigned] = ACTIONS(3994), + [anon_sym_long] = ACTIONS(3994), + [anon_sym_short] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3994), + [anon_sym_register] = ACTIONS(3994), + [anon_sym_inline] = ACTIONS(3994), + [anon_sym___inline] = ACTIONS(3994), + [anon_sym___inline__] = ACTIONS(3994), + [anon_sym___forceinline] = ACTIONS(3994), + [anon_sym_thread_local] = ACTIONS(3994), + [anon_sym___thread] = ACTIONS(3994), + [anon_sym_const] = ACTIONS(3994), + [anon_sym_constexpr] = ACTIONS(3994), + [anon_sym_volatile] = ACTIONS(3994), + [anon_sym_restrict] = ACTIONS(3994), + [anon_sym___restrict__] = ACTIONS(3994), + [anon_sym__Atomic] = ACTIONS(3994), + [anon_sym__Noreturn] = ACTIONS(3994), + [anon_sym_noreturn] = ACTIONS(3994), + [anon_sym__Nonnull] = ACTIONS(3994), + [anon_sym_mutable] = ACTIONS(3994), + [anon_sym_constinit] = ACTIONS(3994), + [anon_sym_consteval] = ACTIONS(3994), + [anon_sym_alignas] = ACTIONS(3994), + [anon_sym__Alignas] = ACTIONS(3994), + [sym_primitive_type] = ACTIONS(3994), + [anon_sym_enum] = ACTIONS(3994), + [anon_sym_class] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3994), + [anon_sym_union] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_case] = ACTIONS(3994), + [anon_sym_default] = ACTIONS(3994), + [anon_sym_while] = ACTIONS(3994), + [anon_sym_do] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3994), + [anon_sym_break] = ACTIONS(3994), + [anon_sym_continue] = ACTIONS(3994), + [anon_sym_goto] = ACTIONS(3994), + [anon_sym___try] = ACTIONS(3994), + [anon_sym___leave] = ACTIONS(3994), + [anon_sym_not] = ACTIONS(3994), + [anon_sym_compl] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_sizeof] = ACTIONS(3994), + [anon_sym___alignof__] = ACTIONS(3994), + [anon_sym___alignof] = ACTIONS(3994), + [anon_sym__alignof] = ACTIONS(3994), + [anon_sym_alignof] = ACTIONS(3994), + [anon_sym__Alignof] = ACTIONS(3994), + [anon_sym_offsetof] = ACTIONS(3994), + [anon_sym__Generic] = ACTIONS(3994), + [anon_sym_typename] = ACTIONS(3994), + [anon_sym_asm] = ACTIONS(3994), + [anon_sym___asm__] = ACTIONS(3994), + [anon_sym___asm] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3996), + [anon_sym_L_SQUOTE] = ACTIONS(3996), + [anon_sym_u_SQUOTE] = ACTIONS(3996), + [anon_sym_U_SQUOTE] = ACTIONS(3996), + [anon_sym_u8_SQUOTE] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3996), + [anon_sym_L_DQUOTE] = ACTIONS(3996), + [anon_sym_u_DQUOTE] = ACTIONS(3996), + [anon_sym_U_DQUOTE] = ACTIONS(3996), + [anon_sym_u8_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [sym_true] = ACTIONS(3994), + [sym_false] = ACTIONS(3994), + [anon_sym_NULL] = ACTIONS(3994), + [anon_sym_nullptr] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3994), + [anon_sym_decltype] = ACTIONS(3994), + [anon_sym_explicit] = ACTIONS(3994), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(3994), + [anon_sym_try] = ACTIONS(3994), + [anon_sym_delete] = ACTIONS(3994), + [anon_sym_throw] = ACTIONS(3994), + [anon_sym_namespace] = ACTIONS(3994), + [anon_sym_static_assert] = ACTIONS(3994), + [anon_sym_concept] = ACTIONS(3994), + [anon_sym_co_return] = ACTIONS(3994), + [anon_sym_co_yield] = ACTIONS(3994), + [anon_sym_R_DQUOTE] = ACTIONS(3996), + [anon_sym_LR_DQUOTE] = ACTIONS(3996), + [anon_sym_uR_DQUOTE] = ACTIONS(3996), + [anon_sym_UR_DQUOTE] = ACTIONS(3996), + [anon_sym_u8R_DQUOTE] = ACTIONS(3996), + [anon_sym_co_await] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3994), + [anon_sym_CARET_CARET] = ACTIONS(3996), + [anon_sym_LBRACK_COLON] = ACTIONS(3996), + [sym_this] = ACTIONS(3994), }, - [STATE(978)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(986), - [sym_compound_requirement] = STATE(986), - [sym__requirement] = STATE(986), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(435)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(979)] = { - [sym_expression] = STATE(3091), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(436)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(980)] = { - [sym_expression] = STATE(4633), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(437)] = { + [ts_builtin_sym_end] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, - [STATE(981)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(989), - [sym_compound_requirement] = STATE(989), - [sym__requirement] = STATE(989), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(989), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(438)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(982)] = { - [sym_expression] = STATE(2762), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(439)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(983)] = { - [sym_expression] = STATE(3716), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(440)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_include_token1] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token2] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [aux_sym_preproc_else_token1] = ACTIONS(4006), + [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym___cdecl] = ACTIONS(4006), + [anon_sym___clrcall] = ACTIONS(4006), + [anon_sym___stdcall] = ACTIONS(4006), + [anon_sym___fastcall] = ACTIONS(4006), + [anon_sym___thiscall] = ACTIONS(4006), + [anon_sym___vectorcall] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_if] = ACTIONS(4006), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_case] = ACTIONS(4006), + [anon_sym_default] = ACTIONS(4006), + [anon_sym_while] = ACTIONS(4006), + [anon_sym_do] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4006), + [anon_sym_break] = ACTIONS(4006), + [anon_sym_continue] = ACTIONS(4006), + [anon_sym_goto] = ACTIONS(4006), + [anon_sym___try] = ACTIONS(4006), + [anon_sym___leave] = ACTIONS(4006), + [anon_sym_not] = ACTIONS(4006), + [anon_sym_compl] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4008), + [anon_sym_sizeof] = ACTIONS(4006), + [anon_sym___alignof__] = ACTIONS(4006), + [anon_sym___alignof] = ACTIONS(4006), + [anon_sym__alignof] = ACTIONS(4006), + [anon_sym_alignof] = ACTIONS(4006), + [anon_sym__Alignof] = ACTIONS(4006), + [anon_sym_offsetof] = ACTIONS(4006), + [anon_sym__Generic] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [anon_sym_asm] = ACTIONS(4006), + [anon_sym___asm__] = ACTIONS(4006), + [anon_sym___asm] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4008), + [anon_sym_L_SQUOTE] = ACTIONS(4008), + [anon_sym_u_SQUOTE] = ACTIONS(4008), + [anon_sym_U_SQUOTE] = ACTIONS(4008), + [anon_sym_u8_SQUOTE] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4008), + [anon_sym_L_DQUOTE] = ACTIONS(4008), + [anon_sym_u_DQUOTE] = ACTIONS(4008), + [anon_sym_U_DQUOTE] = ACTIONS(4008), + [anon_sym_u8_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [sym_true] = ACTIONS(4006), + [sym_false] = ACTIONS(4006), + [anon_sym_NULL] = ACTIONS(4006), + [anon_sym_nullptr] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_try] = ACTIONS(4006), + [anon_sym_delete] = ACTIONS(4006), + [anon_sym_throw] = ACTIONS(4006), + [anon_sym_namespace] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_concept] = ACTIONS(4006), + [anon_sym_co_return] = ACTIONS(4006), + [anon_sym_co_yield] = ACTIONS(4006), + [anon_sym_R_DQUOTE] = ACTIONS(4008), + [anon_sym_LR_DQUOTE] = ACTIONS(4008), + [anon_sym_uR_DQUOTE] = ACTIONS(4008), + [anon_sym_UR_DQUOTE] = ACTIONS(4008), + [anon_sym_u8R_DQUOTE] = ACTIONS(4008), + [anon_sym_co_await] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4006), + [anon_sym_requires] = ACTIONS(4006), + [anon_sym_CARET_CARET] = ACTIONS(4008), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [sym_this] = ACTIONS(4006), }, - [STATE(984)] = { - [sym_expression] = STATE(3608), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(441)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_include_token1] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token2] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [aux_sym_preproc_else_token1] = ACTIONS(4010), + [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_PLUS] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym___cdecl] = ACTIONS(4010), + [anon_sym___clrcall] = ACTIONS(4010), + [anon_sym___stdcall] = ACTIONS(4010), + [anon_sym___fastcall] = ACTIONS(4010), + [anon_sym___thiscall] = ACTIONS(4010), + [anon_sym___vectorcall] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_if] = ACTIONS(4010), + [anon_sym_switch] = ACTIONS(4010), + [anon_sym_case] = ACTIONS(4010), + [anon_sym_default] = ACTIONS(4010), + [anon_sym_while] = ACTIONS(4010), + [anon_sym_do] = ACTIONS(4010), + [anon_sym_for] = ACTIONS(4010), + [anon_sym_return] = ACTIONS(4010), + [anon_sym_break] = ACTIONS(4010), + [anon_sym_continue] = ACTIONS(4010), + [anon_sym_goto] = ACTIONS(4010), + [anon_sym___try] = ACTIONS(4010), + [anon_sym___leave] = ACTIONS(4010), + [anon_sym_not] = ACTIONS(4010), + [anon_sym_compl] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4012), + [anon_sym_PLUS_PLUS] = ACTIONS(4012), + [anon_sym_sizeof] = ACTIONS(4010), + [anon_sym___alignof__] = ACTIONS(4010), + [anon_sym___alignof] = ACTIONS(4010), + [anon_sym__alignof] = ACTIONS(4010), + [anon_sym_alignof] = ACTIONS(4010), + [anon_sym__Alignof] = ACTIONS(4010), + [anon_sym_offsetof] = ACTIONS(4010), + [anon_sym__Generic] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [anon_sym_asm] = ACTIONS(4010), + [anon_sym___asm__] = ACTIONS(4010), + [anon_sym___asm] = ACTIONS(4010), + [sym_number_literal] = ACTIONS(4012), + [anon_sym_L_SQUOTE] = ACTIONS(4012), + [anon_sym_u_SQUOTE] = ACTIONS(4012), + [anon_sym_U_SQUOTE] = ACTIONS(4012), + [anon_sym_u8_SQUOTE] = ACTIONS(4012), + [anon_sym_SQUOTE] = ACTIONS(4012), + [anon_sym_L_DQUOTE] = ACTIONS(4012), + [anon_sym_u_DQUOTE] = ACTIONS(4012), + [anon_sym_U_DQUOTE] = ACTIONS(4012), + [anon_sym_u8_DQUOTE] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4012), + [sym_true] = ACTIONS(4010), + [sym_false] = ACTIONS(4010), + [anon_sym_NULL] = ACTIONS(4010), + [anon_sym_nullptr] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_try] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(4010), + [anon_sym_throw] = ACTIONS(4010), + [anon_sym_namespace] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_concept] = ACTIONS(4010), + [anon_sym_co_return] = ACTIONS(4010), + [anon_sym_co_yield] = ACTIONS(4010), + [anon_sym_R_DQUOTE] = ACTIONS(4012), + [anon_sym_LR_DQUOTE] = ACTIONS(4012), + [anon_sym_uR_DQUOTE] = ACTIONS(4012), + [anon_sym_UR_DQUOTE] = ACTIONS(4012), + [anon_sym_u8R_DQUOTE] = ACTIONS(4012), + [anon_sym_co_await] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_requires] = ACTIONS(4010), + [anon_sym_CARET_CARET] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + [sym_this] = ACTIONS(4010), }, - [STATE(985)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(990), - [sym_compound_requirement] = STATE(990), - [sym__requirement] = STATE(990), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(990), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4399), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(442)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_include_token1] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token2] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [aux_sym_preproc_else_token1] = ACTIONS(4014), + [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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___cdecl] = ACTIONS(4014), + [anon_sym___clrcall] = ACTIONS(4014), + [anon_sym___stdcall] = ACTIONS(4014), + [anon_sym___fastcall] = ACTIONS(4014), + [anon_sym___thiscall] = ACTIONS(4014), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [anon_sym_asm] = 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_explicit] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_namespace] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4016), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [sym_this] = ACTIONS(4014), }, - [STATE(986)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(443)] = { + [ts_builtin_sym_end] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), }, - [STATE(987)] = { - [sym_expression] = STATE(4209), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(444)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_include_token1] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token2] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [aux_sym_preproc_else_token1] = ACTIONS(4018), + [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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___cdecl] = ACTIONS(4018), + [anon_sym___clrcall] = ACTIONS(4018), + [anon_sym___stdcall] = ACTIONS(4018), + [anon_sym___fastcall] = ACTIONS(4018), + [anon_sym___thiscall] = ACTIONS(4018), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [anon_sym_asm] = 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_explicit] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [sym_this] = ACTIONS(4018), }, - [STATE(988)] = { - [sym_expression] = STATE(4365), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(445)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_include_token1] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token2] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [aux_sym_preproc_else_token1] = ACTIONS(4022), + [aux_sym_preproc_elif_token1] = ACTIONS(4022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym___cdecl] = ACTIONS(4022), + [anon_sym___clrcall] = ACTIONS(4022), + [anon_sym___stdcall] = ACTIONS(4022), + [anon_sym___fastcall] = ACTIONS(4022), + [anon_sym___thiscall] = ACTIONS(4022), + [anon_sym___vectorcall] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_case] = ACTIONS(4022), + [anon_sym_default] = ACTIONS(4022), + [anon_sym_while] = ACTIONS(4022), + [anon_sym_do] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym___try] = ACTIONS(4022), + [anon_sym___leave] = ACTIONS(4022), + [anon_sym_not] = ACTIONS(4022), + [anon_sym_compl] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_sizeof] = ACTIONS(4022), + [anon_sym___alignof__] = ACTIONS(4022), + [anon_sym___alignof] = ACTIONS(4022), + [anon_sym__alignof] = ACTIONS(4022), + [anon_sym_alignof] = ACTIONS(4022), + [anon_sym__Alignof] = ACTIONS(4022), + [anon_sym_offsetof] = ACTIONS(4022), + [anon_sym__Generic] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [anon_sym_asm] = ACTIONS(4022), + [anon_sym___asm__] = ACTIONS(4022), + [anon_sym___asm] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4024), + [anon_sym_L_SQUOTE] = ACTIONS(4024), + [anon_sym_u_SQUOTE] = ACTIONS(4024), + [anon_sym_U_SQUOTE] = ACTIONS(4024), + [anon_sym_u8_SQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_L_DQUOTE] = ACTIONS(4024), + [anon_sym_u_DQUOTE] = ACTIONS(4024), + [anon_sym_U_DQUOTE] = ACTIONS(4024), + [anon_sym_u8_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE] = ACTIONS(4024), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [anon_sym_NULL] = ACTIONS(4022), + [anon_sym_nullptr] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4022), + [anon_sym_delete] = ACTIONS(4022), + [anon_sym_throw] = ACTIONS(4022), + [anon_sym_namespace] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_concept] = ACTIONS(4022), + [anon_sym_co_return] = ACTIONS(4022), + [anon_sym_co_yield] = ACTIONS(4022), + [anon_sym_R_DQUOTE] = ACTIONS(4024), + [anon_sym_LR_DQUOTE] = ACTIONS(4024), + [anon_sym_uR_DQUOTE] = ACTIONS(4024), + [anon_sym_UR_DQUOTE] = ACTIONS(4024), + [anon_sym_u8R_DQUOTE] = ACTIONS(4024), + [anon_sym_co_await] = ACTIONS(4022), + [anon_sym_new] = ACTIONS(4022), + [anon_sym_requires] = ACTIONS(4022), + [anon_sym_CARET_CARET] = ACTIONS(4024), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [sym_this] = ACTIONS(4022), }, - [STATE(989)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(446)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_include_token1] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token2] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [aux_sym_preproc_else_token1] = ACTIONS(4026), + [aux_sym_preproc_elif_token1] = ACTIONS(4026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym___cdecl] = ACTIONS(4026), + [anon_sym___clrcall] = ACTIONS(4026), + [anon_sym___stdcall] = ACTIONS(4026), + [anon_sym___fastcall] = ACTIONS(4026), + [anon_sym___thiscall] = ACTIONS(4026), + [anon_sym___vectorcall] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_case] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_goto] = ACTIONS(4026), + [anon_sym___try] = ACTIONS(4026), + [anon_sym___leave] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_compl] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4026), + [anon_sym___alignof__] = ACTIONS(4026), + [anon_sym___alignof] = ACTIONS(4026), + [anon_sym__alignof] = ACTIONS(4026), + [anon_sym_alignof] = ACTIONS(4026), + [anon_sym__Alignof] = ACTIONS(4026), + [anon_sym_offsetof] = ACTIONS(4026), + [anon_sym__Generic] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [anon_sym_asm] = ACTIONS(4026), + [anon_sym___asm__] = ACTIONS(4026), + [anon_sym___asm] = ACTIONS(4026), + [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(4026), + [sym_false] = ACTIONS(4026), + [anon_sym_NULL] = ACTIONS(4026), + [anon_sym_nullptr] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_delete] = ACTIONS(4026), + [anon_sym_throw] = ACTIONS(4026), + [anon_sym_namespace] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_concept] = ACTIONS(4026), + [anon_sym_co_return] = ACTIONS(4026), + [anon_sym_co_yield] = ACTIONS(4026), + [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(4026), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_requires] = ACTIONS(4026), + [anon_sym_CARET_CARET] = ACTIONS(4028), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [sym_this] = ACTIONS(4026), }, - [STATE(990)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(447)] = { + [sym_identifier] = ACTIONS(4030), + [aux_sym_preproc_include_token1] = ACTIONS(4030), + [aux_sym_preproc_def_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token2] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), + [aux_sym_preproc_else_token1] = ACTIONS(4030), + [aux_sym_preproc_elif_token1] = ACTIONS(4030), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4030), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4030), + [sym_preproc_directive] = ACTIONS(4030), + [anon_sym_LPAREN2] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym___extension__] = ACTIONS(4030), + [anon_sym_typedef] = ACTIONS(4030), + [anon_sym_virtual] = ACTIONS(4030), + [anon_sym_extern] = ACTIONS(4030), + [anon_sym___attribute__] = ACTIONS(4030), + [anon_sym___attribute] = ACTIONS(4030), + [anon_sym_using] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), + [anon_sym___declspec] = ACTIONS(4030), + [anon_sym___based] = ACTIONS(4030), + [anon_sym___cdecl] = ACTIONS(4030), + [anon_sym___clrcall] = ACTIONS(4030), + [anon_sym___stdcall] = ACTIONS(4030), + [anon_sym___fastcall] = ACTIONS(4030), + [anon_sym___thiscall] = ACTIONS(4030), + [anon_sym___vectorcall] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_signed] = ACTIONS(4030), + [anon_sym_unsigned] = ACTIONS(4030), + [anon_sym_long] = ACTIONS(4030), + [anon_sym_short] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_static] = ACTIONS(4030), + [anon_sym_register] = ACTIONS(4030), + [anon_sym_inline] = ACTIONS(4030), + [anon_sym___inline] = ACTIONS(4030), + [anon_sym___inline__] = ACTIONS(4030), + [anon_sym___forceinline] = ACTIONS(4030), + [anon_sym_thread_local] = ACTIONS(4030), + [anon_sym___thread] = ACTIONS(4030), + [anon_sym_const] = ACTIONS(4030), + [anon_sym_constexpr] = ACTIONS(4030), + [anon_sym_volatile] = ACTIONS(4030), + [anon_sym_restrict] = ACTIONS(4030), + [anon_sym___restrict__] = ACTIONS(4030), + [anon_sym__Atomic] = ACTIONS(4030), + [anon_sym__Noreturn] = ACTIONS(4030), + [anon_sym_noreturn] = ACTIONS(4030), + [anon_sym__Nonnull] = ACTIONS(4030), + [anon_sym_mutable] = ACTIONS(4030), + [anon_sym_constinit] = ACTIONS(4030), + [anon_sym_consteval] = ACTIONS(4030), + [anon_sym_alignas] = ACTIONS(4030), + [anon_sym__Alignas] = ACTIONS(4030), + [sym_primitive_type] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(4030), + [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(4032), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [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_typename] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [anon_sym___asm] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4032), + [anon_sym_L_SQUOTE] = ACTIONS(4032), + [anon_sym_u_SQUOTE] = ACTIONS(4032), + [anon_sym_U_SQUOTE] = ACTIONS(4032), + [anon_sym_u8_SQUOTE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(4032), + [anon_sym_L_DQUOTE] = ACTIONS(4032), + [anon_sym_u_DQUOTE] = ACTIONS(4032), + [anon_sym_U_DQUOTE] = ACTIONS(4032), + [anon_sym_u8_DQUOTE] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [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(4030), + [anon_sym_decltype] = ACTIONS(4030), + [anon_sym_explicit] = ACTIONS(4030), + [anon_sym_template] = ACTIONS(4030), + [anon_sym_operator] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_namespace] = ACTIONS(4030), + [anon_sym_static_assert] = ACTIONS(4030), + [anon_sym_concept] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4032), + [anon_sym_LR_DQUOTE] = ACTIONS(4032), + [anon_sym_uR_DQUOTE] = ACTIONS(4032), + [anon_sym_UR_DQUOTE] = ACTIONS(4032), + [anon_sym_u8R_DQUOTE] = ACTIONS(4032), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [anon_sym_CARET_CARET] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4032), + [sym_this] = ACTIONS(4030), }, - [STATE(991)] = { - [sym_expression] = STATE(3099), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(448)] = { + [sym_identifier] = ACTIONS(4034), + [aux_sym_preproc_include_token1] = ACTIONS(4034), + [aux_sym_preproc_def_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token2] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), + [aux_sym_preproc_else_token1] = ACTIONS(4034), + [aux_sym_preproc_elif_token1] = ACTIONS(4034), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4034), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4034), + [sym_preproc_directive] = ACTIONS(4034), + [anon_sym_LPAREN2] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_typedef] = ACTIONS(4034), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym___attribute] = ACTIONS(4034), + [anon_sym_using] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym___based] = ACTIONS(4034), + [anon_sym___cdecl] = ACTIONS(4034), + [anon_sym___clrcall] = ACTIONS(4034), + [anon_sym___stdcall] = ACTIONS(4034), + [anon_sym___fastcall] = ACTIONS(4034), + [anon_sym___thiscall] = ACTIONS(4034), + [anon_sym___vectorcall] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4034), + [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__Nonnull] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym__Alignas] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4034), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_case] = ACTIONS(4034), + [anon_sym_default] = ACTIONS(4034), + [anon_sym_while] = ACTIONS(4034), + [anon_sym_do] = ACTIONS(4034), + [anon_sym_for] = ACTIONS(4034), + [anon_sym_return] = ACTIONS(4034), + [anon_sym_break] = ACTIONS(4034), + [anon_sym_continue] = ACTIONS(4034), + [anon_sym_goto] = ACTIONS(4034), + [anon_sym___try] = ACTIONS(4034), + [anon_sym___leave] = ACTIONS(4034), + [anon_sym_not] = ACTIONS(4034), + [anon_sym_compl] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(4034), + [anon_sym___alignof__] = ACTIONS(4034), + [anon_sym___alignof] = ACTIONS(4034), + [anon_sym__alignof] = ACTIONS(4034), + [anon_sym_alignof] = ACTIONS(4034), + [anon_sym__Alignof] = ACTIONS(4034), + [anon_sym_offsetof] = ACTIONS(4034), + [anon_sym__Generic] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_asm] = ACTIONS(4034), + [anon_sym___asm__] = ACTIONS(4034), + [anon_sym___asm] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4036), + [anon_sym_L_SQUOTE] = ACTIONS(4036), + [anon_sym_u_SQUOTE] = ACTIONS(4036), + [anon_sym_U_SQUOTE] = ACTIONS(4036), + [anon_sym_u8_SQUOTE] = ACTIONS(4036), + [anon_sym_SQUOTE] = ACTIONS(4036), + [anon_sym_L_DQUOTE] = ACTIONS(4036), + [anon_sym_u_DQUOTE] = ACTIONS(4036), + [anon_sym_U_DQUOTE] = ACTIONS(4036), + [anon_sym_u8_DQUOTE] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [anon_sym_NULL] = ACTIONS(4034), + [anon_sym_nullptr] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4034), + [anon_sym_explicit] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4034), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4034), + [anon_sym_delete] = ACTIONS(4034), + [anon_sym_throw] = ACTIONS(4034), + [anon_sym_namespace] = ACTIONS(4034), + [anon_sym_static_assert] = ACTIONS(4034), + [anon_sym_concept] = ACTIONS(4034), + [anon_sym_co_return] = ACTIONS(4034), + [anon_sym_co_yield] = ACTIONS(4034), + [anon_sym_R_DQUOTE] = ACTIONS(4036), + [anon_sym_LR_DQUOTE] = ACTIONS(4036), + [anon_sym_uR_DQUOTE] = ACTIONS(4036), + [anon_sym_UR_DQUOTE] = ACTIONS(4036), + [anon_sym_u8R_DQUOTE] = ACTIONS(4036), + [anon_sym_co_await] = ACTIONS(4034), + [anon_sym_new] = ACTIONS(4034), + [anon_sym_requires] = ACTIONS(4034), + [anon_sym_CARET_CARET] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4036), + [sym_this] = ACTIONS(4034), }, - [STATE(992)] = { - [sym_expression] = STATE(2962), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(449)] = { + [sym_identifier] = ACTIONS(4038), + [aux_sym_preproc_include_token1] = ACTIONS(4038), + [aux_sym_preproc_def_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token2] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), + [aux_sym_preproc_else_token1] = ACTIONS(4038), + [aux_sym_preproc_elif_token1] = ACTIONS(4038), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4038), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4038), + [sym_preproc_directive] = ACTIONS(4038), + [anon_sym_LPAREN2] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym___extension__] = ACTIONS(4038), + [anon_sym_typedef] = ACTIONS(4038), + [anon_sym_virtual] = ACTIONS(4038), + [anon_sym_extern] = ACTIONS(4038), + [anon_sym___attribute__] = ACTIONS(4038), + [anon_sym___attribute] = ACTIONS(4038), + [anon_sym_using] = ACTIONS(4038), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), + [anon_sym___declspec] = ACTIONS(4038), + [anon_sym___based] = ACTIONS(4038), + [anon_sym___cdecl] = ACTIONS(4038), + [anon_sym___clrcall] = ACTIONS(4038), + [anon_sym___stdcall] = ACTIONS(4038), + [anon_sym___fastcall] = ACTIONS(4038), + [anon_sym___thiscall] = ACTIONS(4038), + [anon_sym___vectorcall] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_signed] = ACTIONS(4038), + [anon_sym_unsigned] = ACTIONS(4038), + [anon_sym_long] = ACTIONS(4038), + [anon_sym_short] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4038), + [anon_sym_static] = ACTIONS(4038), + [anon_sym_register] = ACTIONS(4038), + [anon_sym_inline] = ACTIONS(4038), + [anon_sym___inline] = ACTIONS(4038), + [anon_sym___inline__] = ACTIONS(4038), + [anon_sym___forceinline] = ACTIONS(4038), + [anon_sym_thread_local] = ACTIONS(4038), + [anon_sym___thread] = ACTIONS(4038), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_constexpr] = ACTIONS(4038), + [anon_sym_volatile] = ACTIONS(4038), + [anon_sym_restrict] = ACTIONS(4038), + [anon_sym___restrict__] = ACTIONS(4038), + [anon_sym__Atomic] = ACTIONS(4038), + [anon_sym__Noreturn] = ACTIONS(4038), + [anon_sym_noreturn] = ACTIONS(4038), + [anon_sym__Nonnull] = ACTIONS(4038), + [anon_sym_mutable] = ACTIONS(4038), + [anon_sym_constinit] = ACTIONS(4038), + [anon_sym_consteval] = ACTIONS(4038), + [anon_sym_alignas] = ACTIONS(4038), + [anon_sym__Alignas] = ACTIONS(4038), + [sym_primitive_type] = ACTIONS(4038), + [anon_sym_enum] = ACTIONS(4038), + [anon_sym_class] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4038), + [anon_sym_union] = ACTIONS(4038), + [anon_sym_if] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_case] = ACTIONS(4038), + [anon_sym_default] = ACTIONS(4038), + [anon_sym_while] = ACTIONS(4038), + [anon_sym_do] = ACTIONS(4038), + [anon_sym_for] = ACTIONS(4038), + [anon_sym_return] = ACTIONS(4038), + [anon_sym_break] = ACTIONS(4038), + [anon_sym_continue] = ACTIONS(4038), + [anon_sym_goto] = ACTIONS(4038), + [anon_sym___try] = ACTIONS(4038), + [anon_sym___leave] = ACTIONS(4038), + [anon_sym_not] = ACTIONS(4038), + [anon_sym_compl] = ACTIONS(4038), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_sizeof] = ACTIONS(4038), + [anon_sym___alignof__] = ACTIONS(4038), + [anon_sym___alignof] = ACTIONS(4038), + [anon_sym__alignof] = ACTIONS(4038), + [anon_sym_alignof] = ACTIONS(4038), + [anon_sym__Alignof] = ACTIONS(4038), + [anon_sym_offsetof] = ACTIONS(4038), + [anon_sym__Generic] = ACTIONS(4038), + [anon_sym_typename] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(4038), + [anon_sym___asm__] = ACTIONS(4038), + [anon_sym___asm] = ACTIONS(4038), + [sym_number_literal] = ACTIONS(4040), + [anon_sym_L_SQUOTE] = ACTIONS(4040), + [anon_sym_u_SQUOTE] = ACTIONS(4040), + [anon_sym_U_SQUOTE] = ACTIONS(4040), + [anon_sym_u8_SQUOTE] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(4040), + [anon_sym_L_DQUOTE] = ACTIONS(4040), + [anon_sym_u_DQUOTE] = ACTIONS(4040), + [anon_sym_U_DQUOTE] = ACTIONS(4040), + [anon_sym_u8_DQUOTE] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [anon_sym_NULL] = ACTIONS(4038), + [anon_sym_nullptr] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4038), + [anon_sym_decltype] = ACTIONS(4038), + [anon_sym_explicit] = ACTIONS(4038), + [anon_sym_template] = ACTIONS(4038), + [anon_sym_operator] = ACTIONS(4038), + [anon_sym_try] = ACTIONS(4038), + [anon_sym_delete] = ACTIONS(4038), + [anon_sym_throw] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_static_assert] = ACTIONS(4038), + [anon_sym_concept] = ACTIONS(4038), + [anon_sym_co_return] = ACTIONS(4038), + [anon_sym_co_yield] = ACTIONS(4038), + [anon_sym_R_DQUOTE] = ACTIONS(4040), + [anon_sym_LR_DQUOTE] = ACTIONS(4040), + [anon_sym_uR_DQUOTE] = ACTIONS(4040), + [anon_sym_UR_DQUOTE] = ACTIONS(4040), + [anon_sym_u8R_DQUOTE] = ACTIONS(4040), + [anon_sym_co_await] = ACTIONS(4038), + [anon_sym_new] = ACTIONS(4038), + [anon_sym_requires] = ACTIONS(4038), + [anon_sym_CARET_CARET] = ACTIONS(4040), + [anon_sym_LBRACK_COLON] = ACTIONS(4040), + [sym_this] = ACTIONS(4038), }, - [STATE(993)] = { - [sym_expression] = STATE(4326), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(450)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_include_token1] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token2] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [aux_sym_preproc_else_token1] = ACTIONS(4042), + [aux_sym_preproc_elif_token1] = ACTIONS(4042), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym___cdecl] = ACTIONS(4042), + [anon_sym___clrcall] = ACTIONS(4042), + [anon_sym___stdcall] = ACTIONS(4042), + [anon_sym___fastcall] = ACTIONS(4042), + [anon_sym___thiscall] = ACTIONS(4042), + [anon_sym___vectorcall] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_if] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_case] = ACTIONS(4042), + [anon_sym_default] = ACTIONS(4042), + [anon_sym_while] = ACTIONS(4042), + [anon_sym_do] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4042), + [anon_sym_break] = ACTIONS(4042), + [anon_sym_continue] = ACTIONS(4042), + [anon_sym_goto] = ACTIONS(4042), + [anon_sym___try] = ACTIONS(4042), + [anon_sym___leave] = ACTIONS(4042), + [anon_sym_not] = ACTIONS(4042), + [anon_sym_compl] = ACTIONS(4042), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_sizeof] = ACTIONS(4042), + [anon_sym___alignof__] = ACTIONS(4042), + [anon_sym___alignof] = ACTIONS(4042), + [anon_sym__alignof] = ACTIONS(4042), + [anon_sym_alignof] = ACTIONS(4042), + [anon_sym__Alignof] = ACTIONS(4042), + [anon_sym_offsetof] = ACTIONS(4042), + [anon_sym__Generic] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym___asm__] = ACTIONS(4042), + [anon_sym___asm] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4044), + [anon_sym_L_SQUOTE] = ACTIONS(4044), + [anon_sym_u_SQUOTE] = ACTIONS(4044), + [anon_sym_U_SQUOTE] = ACTIONS(4044), + [anon_sym_u8_SQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4044), + [anon_sym_L_DQUOTE] = ACTIONS(4044), + [anon_sym_u_DQUOTE] = ACTIONS(4044), + [anon_sym_U_DQUOTE] = ACTIONS(4044), + [anon_sym_u8_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [anon_sym_NULL] = ACTIONS(4042), + [anon_sym_nullptr] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_try] = ACTIONS(4042), + [anon_sym_delete] = ACTIONS(4042), + [anon_sym_throw] = ACTIONS(4042), + [anon_sym_namespace] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_concept] = ACTIONS(4042), + [anon_sym_co_return] = ACTIONS(4042), + [anon_sym_co_yield] = ACTIONS(4042), + [anon_sym_R_DQUOTE] = ACTIONS(4044), + [anon_sym_LR_DQUOTE] = ACTIONS(4044), + [anon_sym_uR_DQUOTE] = ACTIONS(4044), + [anon_sym_UR_DQUOTE] = ACTIONS(4044), + [anon_sym_u8R_DQUOTE] = ACTIONS(4044), + [anon_sym_co_await] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4042), + [anon_sym_requires] = ACTIONS(4042), + [anon_sym_CARET_CARET] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + [sym_this] = ACTIONS(4042), }, - [STATE(994)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LPAREN2] = ACTIONS(4416), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4422), - [anon_sym_PLUS] = ACTIONS(4422), - [anon_sym_STAR] = ACTIONS(4425), - [anon_sym_AMP] = ACTIONS(4425), - [anon_sym_SEMI] = ACTIONS(4428), - [anon_sym___extension__] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4434), - [anon_sym_LBRACE] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4440), - [anon_sym_LBRACK] = ACTIONS(4442), - [sym_primitive_type] = ACTIONS(4445), - [anon_sym_not] = ACTIONS(4422), - [anon_sym_compl] = ACTIONS(4422), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_sizeof] = ACTIONS(4451), - [anon_sym___alignof__] = ACTIONS(4454), - [anon_sym___alignof] = ACTIONS(4454), - [anon_sym__alignof] = ACTIONS(4454), - [anon_sym_alignof] = ACTIONS(4454), - [anon_sym__Alignof] = ACTIONS(4454), - [anon_sym_offsetof] = ACTIONS(4457), - [anon_sym__Generic] = ACTIONS(4460), - [anon_sym_asm] = ACTIONS(4463), - [anon_sym___asm__] = ACTIONS(4463), - [anon_sym___asm] = ACTIONS(4463), - [sym_number_literal] = ACTIONS(4466), - [anon_sym_L_SQUOTE] = ACTIONS(4469), - [anon_sym_u_SQUOTE] = ACTIONS(4469), - [anon_sym_U_SQUOTE] = ACTIONS(4469), - [anon_sym_u8_SQUOTE] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_L_DQUOTE] = ACTIONS(4472), - [anon_sym_u_DQUOTE] = ACTIONS(4472), - [anon_sym_U_DQUOTE] = ACTIONS(4472), - [anon_sym_u8_DQUOTE] = ACTIONS(4472), - [anon_sym_DQUOTE] = ACTIONS(4472), - [sym_true] = ACTIONS(4475), - [sym_false] = ACTIONS(4475), - [anon_sym_NULL] = ACTIONS(4478), - [anon_sym_nullptr] = ACTIONS(4478), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4481), - [anon_sym_typename] = ACTIONS(4484), - [anon_sym_template] = ACTIONS(4487), - [anon_sym_delete] = ACTIONS(4490), - [anon_sym_R_DQUOTE] = ACTIONS(4493), - [anon_sym_LR_DQUOTE] = ACTIONS(4493), - [anon_sym_uR_DQUOTE] = ACTIONS(4493), - [anon_sym_UR_DQUOTE] = ACTIONS(4493), - [anon_sym_u8R_DQUOTE] = ACTIONS(4493), - [anon_sym_co_await] = ACTIONS(4496), - [anon_sym_new] = ACTIONS(4499), - [anon_sym_requires] = ACTIONS(4502), - [sym_this] = ACTIONS(4475), + [STATE(451)] = { + [sym_identifier] = ACTIONS(4046), + [aux_sym_preproc_include_token1] = ACTIONS(4046), + [aux_sym_preproc_def_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token2] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), + [aux_sym_preproc_else_token1] = ACTIONS(4046), + [aux_sym_preproc_elif_token1] = ACTIONS(4046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4046), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4046), + [sym_preproc_directive] = ACTIONS(4046), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_typedef] = ACTIONS(4046), + [anon_sym_virtual] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_using] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(4048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym___based] = ACTIONS(4046), + [anon_sym___cdecl] = ACTIONS(4046), + [anon_sym___clrcall] = ACTIONS(4046), + [anon_sym___stdcall] = ACTIONS(4046), + [anon_sym___fastcall] = ACTIONS(4046), + [anon_sym___thiscall] = ACTIONS(4046), + [anon_sym___vectorcall] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_mutable] = ACTIONS(4046), + [anon_sym_constinit] = ACTIONS(4046), + [anon_sym_consteval] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_class] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_if] = ACTIONS(4046), + [anon_sym_switch] = ACTIONS(4046), + [anon_sym_case] = ACTIONS(4046), + [anon_sym_default] = ACTIONS(4046), + [anon_sym_while] = ACTIONS(4046), + [anon_sym_do] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4046), + [anon_sym_break] = ACTIONS(4046), + [anon_sym_continue] = ACTIONS(4046), + [anon_sym_goto] = ACTIONS(4046), + [anon_sym___try] = ACTIONS(4046), + [anon_sym___leave] = ACTIONS(4046), + [anon_sym_not] = ACTIONS(4046), + [anon_sym_compl] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_sizeof] = ACTIONS(4046), + [anon_sym___alignof__] = ACTIONS(4046), + [anon_sym___alignof] = ACTIONS(4046), + [anon_sym__alignof] = ACTIONS(4046), + [anon_sym_alignof] = ACTIONS(4046), + [anon_sym__Alignof] = ACTIONS(4046), + [anon_sym_offsetof] = ACTIONS(4046), + [anon_sym__Generic] = ACTIONS(4046), + [anon_sym_typename] = ACTIONS(4046), + [anon_sym_asm] = ACTIONS(4046), + [anon_sym___asm__] = ACTIONS(4046), + [anon_sym___asm] = ACTIONS(4046), + [sym_number_literal] = ACTIONS(4048), + [anon_sym_L_SQUOTE] = ACTIONS(4048), + [anon_sym_u_SQUOTE] = ACTIONS(4048), + [anon_sym_U_SQUOTE] = ACTIONS(4048), + [anon_sym_u8_SQUOTE] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4048), + [anon_sym_L_DQUOTE] = ACTIONS(4048), + [anon_sym_u_DQUOTE] = ACTIONS(4048), + [anon_sym_U_DQUOTE] = ACTIONS(4048), + [anon_sym_u8_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [anon_sym_NULL] = ACTIONS(4046), + [anon_sym_nullptr] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4046), + [anon_sym_decltype] = ACTIONS(4046), + [anon_sym_explicit] = ACTIONS(4046), + [anon_sym_template] = ACTIONS(4046), + [anon_sym_operator] = ACTIONS(4046), + [anon_sym_try] = ACTIONS(4046), + [anon_sym_delete] = ACTIONS(4046), + [anon_sym_throw] = ACTIONS(4046), + [anon_sym_namespace] = ACTIONS(4046), + [anon_sym_static_assert] = ACTIONS(4046), + [anon_sym_concept] = ACTIONS(4046), + [anon_sym_co_return] = ACTIONS(4046), + [anon_sym_co_yield] = ACTIONS(4046), + [anon_sym_R_DQUOTE] = ACTIONS(4048), + [anon_sym_LR_DQUOTE] = ACTIONS(4048), + [anon_sym_uR_DQUOTE] = ACTIONS(4048), + [anon_sym_UR_DQUOTE] = ACTIONS(4048), + [anon_sym_u8R_DQUOTE] = ACTIONS(4048), + [anon_sym_co_await] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_requires] = ACTIONS(4046), + [anon_sym_CARET_CARET] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4048), + [sym_this] = ACTIONS(4046), }, - [STATE(995)] = { - [sym_expression] = STATE(4438), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7451), - [sym_initializer_pair] = STATE(7451), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(452)] = { + [sym_identifier] = ACTIONS(4050), + [aux_sym_preproc_include_token1] = ACTIONS(4050), + [aux_sym_preproc_def_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token2] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), + [aux_sym_preproc_else_token1] = ACTIONS(4050), + [aux_sym_preproc_elif_token1] = ACTIONS(4050), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4050), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4050), + [sym_preproc_directive] = ACTIONS(4050), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_typedef] = ACTIONS(4050), + [anon_sym_virtual] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_using] = ACTIONS(4050), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym___based] = ACTIONS(4050), + [anon_sym___cdecl] = ACTIONS(4050), + [anon_sym___clrcall] = ACTIONS(4050), + [anon_sym___stdcall] = ACTIONS(4050), + [anon_sym___fastcall] = ACTIONS(4050), + [anon_sym___thiscall] = ACTIONS(4050), + [anon_sym___vectorcall] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_mutable] = ACTIONS(4050), + [anon_sym_constinit] = ACTIONS(4050), + [anon_sym_consteval] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_class] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_case] = ACTIONS(4050), + [anon_sym_default] = ACTIONS(4050), + [anon_sym_while] = ACTIONS(4050), + [anon_sym_do] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym___try] = ACTIONS(4050), + [anon_sym___leave] = ACTIONS(4050), + [anon_sym_not] = ACTIONS(4050), + [anon_sym_compl] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_sizeof] = ACTIONS(4050), + [anon_sym___alignof__] = ACTIONS(4050), + [anon_sym___alignof] = ACTIONS(4050), + [anon_sym__alignof] = ACTIONS(4050), + [anon_sym_alignof] = ACTIONS(4050), + [anon_sym__Alignof] = ACTIONS(4050), + [anon_sym_offsetof] = ACTIONS(4050), + [anon_sym__Generic] = ACTIONS(4050), + [anon_sym_typename] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym___asm__] = ACTIONS(4050), + [anon_sym___asm] = ACTIONS(4050), + [sym_number_literal] = ACTIONS(4052), + [anon_sym_L_SQUOTE] = ACTIONS(4052), + [anon_sym_u_SQUOTE] = ACTIONS(4052), + [anon_sym_U_SQUOTE] = ACTIONS(4052), + [anon_sym_u8_SQUOTE] = ACTIONS(4052), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_L_DQUOTE] = ACTIONS(4052), + [anon_sym_u_DQUOTE] = ACTIONS(4052), + [anon_sym_U_DQUOTE] = ACTIONS(4052), + [anon_sym_u8_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE] = ACTIONS(4052), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [anon_sym_NULL] = ACTIONS(4050), + [anon_sym_nullptr] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4050), + [anon_sym_decltype] = ACTIONS(4050), + [anon_sym_explicit] = ACTIONS(4050), + [anon_sym_template] = ACTIONS(4050), + [anon_sym_operator] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(4050), + [anon_sym_delete] = ACTIONS(4050), + [anon_sym_throw] = ACTIONS(4050), + [anon_sym_namespace] = ACTIONS(4050), + [anon_sym_static_assert] = ACTIONS(4050), + [anon_sym_concept] = ACTIONS(4050), + [anon_sym_co_return] = ACTIONS(4050), + [anon_sym_co_yield] = ACTIONS(4050), + [anon_sym_R_DQUOTE] = ACTIONS(4052), + [anon_sym_LR_DQUOTE] = ACTIONS(4052), + [anon_sym_uR_DQUOTE] = ACTIONS(4052), + [anon_sym_UR_DQUOTE] = ACTIONS(4052), + [anon_sym_u8R_DQUOTE] = ACTIONS(4052), + [anon_sym_co_await] = ACTIONS(4050), + [anon_sym_new] = ACTIONS(4050), + [anon_sym_requires] = ACTIONS(4050), + [anon_sym_CARET_CARET] = ACTIONS(4052), + [anon_sym_LBRACK_COLON] = ACTIONS(4052), + [sym_this] = ACTIONS(4050), }, - [STATE(996)] = { - [sym_expression] = STATE(4356), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(453)] = { + [sym_identifier] = ACTIONS(4054), + [aux_sym_preproc_include_token1] = ACTIONS(4054), + [aux_sym_preproc_def_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token2] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), + [aux_sym_preproc_else_token1] = ACTIONS(4054), + [aux_sym_preproc_elif_token1] = ACTIONS(4054), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4054), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4054), + [sym_preproc_directive] = ACTIONS(4054), + [anon_sym_LPAREN2] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym___extension__] = ACTIONS(4054), + [anon_sym_typedef] = ACTIONS(4054), + [anon_sym_virtual] = ACTIONS(4054), + [anon_sym_extern] = ACTIONS(4054), + [anon_sym___attribute__] = ACTIONS(4054), + [anon_sym___attribute] = ACTIONS(4054), + [anon_sym_using] = ACTIONS(4054), + [anon_sym_COLON_COLON] = ACTIONS(4056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), + [anon_sym___declspec] = ACTIONS(4054), + [anon_sym___based] = ACTIONS(4054), + [anon_sym___cdecl] = ACTIONS(4054), + [anon_sym___clrcall] = ACTIONS(4054), + [anon_sym___stdcall] = ACTIONS(4054), + [anon_sym___fastcall] = ACTIONS(4054), + [anon_sym___thiscall] = ACTIONS(4054), + [anon_sym___vectorcall] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_signed] = ACTIONS(4054), + [anon_sym_unsigned] = ACTIONS(4054), + [anon_sym_long] = ACTIONS(4054), + [anon_sym_short] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_register] = ACTIONS(4054), + [anon_sym_inline] = ACTIONS(4054), + [anon_sym___inline] = ACTIONS(4054), + [anon_sym___inline__] = ACTIONS(4054), + [anon_sym___forceinline] = ACTIONS(4054), + [anon_sym_thread_local] = ACTIONS(4054), + [anon_sym___thread] = ACTIONS(4054), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_constexpr] = ACTIONS(4054), + [anon_sym_volatile] = ACTIONS(4054), + [anon_sym_restrict] = ACTIONS(4054), + [anon_sym___restrict__] = ACTIONS(4054), + [anon_sym__Atomic] = ACTIONS(4054), + [anon_sym__Noreturn] = ACTIONS(4054), + [anon_sym_noreturn] = ACTIONS(4054), + [anon_sym__Nonnull] = ACTIONS(4054), + [anon_sym_mutable] = ACTIONS(4054), + [anon_sym_constinit] = ACTIONS(4054), + [anon_sym_consteval] = ACTIONS(4054), + [anon_sym_alignas] = ACTIONS(4054), + [anon_sym__Alignas] = ACTIONS(4054), + [sym_primitive_type] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_class] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_case] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym___try] = ACTIONS(4054), + [anon_sym___leave] = ACTIONS(4054), + [anon_sym_not] = ACTIONS(4054), + [anon_sym_compl] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_sizeof] = ACTIONS(4054), + [anon_sym___alignof__] = ACTIONS(4054), + [anon_sym___alignof] = ACTIONS(4054), + [anon_sym__alignof] = ACTIONS(4054), + [anon_sym_alignof] = ACTIONS(4054), + [anon_sym__Alignof] = ACTIONS(4054), + [anon_sym_offsetof] = ACTIONS(4054), + [anon_sym__Generic] = ACTIONS(4054), + [anon_sym_typename] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym___asm__] = ACTIONS(4054), + [anon_sym___asm] = ACTIONS(4054), + [sym_number_literal] = ACTIONS(4056), + [anon_sym_L_SQUOTE] = ACTIONS(4056), + [anon_sym_u_SQUOTE] = ACTIONS(4056), + [anon_sym_U_SQUOTE] = ACTIONS(4056), + [anon_sym_u8_SQUOTE] = ACTIONS(4056), + [anon_sym_SQUOTE] = ACTIONS(4056), + [anon_sym_L_DQUOTE] = ACTIONS(4056), + [anon_sym_u_DQUOTE] = ACTIONS(4056), + [anon_sym_U_DQUOTE] = ACTIONS(4056), + [anon_sym_u8_DQUOTE] = ACTIONS(4056), + [anon_sym_DQUOTE] = ACTIONS(4056), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [anon_sym_NULL] = ACTIONS(4054), + [anon_sym_nullptr] = ACTIONS(4054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4054), + [anon_sym_decltype] = ACTIONS(4054), + [anon_sym_explicit] = ACTIONS(4054), + [anon_sym_template] = ACTIONS(4054), + [anon_sym_operator] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_delete] = ACTIONS(4054), + [anon_sym_throw] = ACTIONS(4054), + [anon_sym_namespace] = ACTIONS(4054), + [anon_sym_static_assert] = ACTIONS(4054), + [anon_sym_concept] = ACTIONS(4054), + [anon_sym_co_return] = ACTIONS(4054), + [anon_sym_co_yield] = ACTIONS(4054), + [anon_sym_R_DQUOTE] = ACTIONS(4056), + [anon_sym_LR_DQUOTE] = ACTIONS(4056), + [anon_sym_uR_DQUOTE] = ACTIONS(4056), + [anon_sym_UR_DQUOTE] = ACTIONS(4056), + [anon_sym_u8R_DQUOTE] = ACTIONS(4056), + [anon_sym_co_await] = ACTIONS(4054), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_requires] = ACTIONS(4054), + [anon_sym_CARET_CARET] = ACTIONS(4056), + [anon_sym_LBRACK_COLON] = ACTIONS(4056), + [sym_this] = ACTIONS(4054), }, - [STATE(997)] = { - [sym_expression] = STATE(4531), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(454)] = { + [sym_identifier] = ACTIONS(4058), + [aux_sym_preproc_include_token1] = ACTIONS(4058), + [aux_sym_preproc_def_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token2] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), + [aux_sym_preproc_else_token1] = ACTIONS(4058), + [aux_sym_preproc_elif_token1] = ACTIONS(4058), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4058), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4058), + [sym_preproc_directive] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_typedef] = ACTIONS(4058), + [anon_sym_virtual] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_using] = ACTIONS(4058), + [anon_sym_COLON_COLON] = ACTIONS(4060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym___based] = ACTIONS(4058), + [anon_sym___cdecl] = ACTIONS(4058), + [anon_sym___clrcall] = ACTIONS(4058), + [anon_sym___stdcall] = ACTIONS(4058), + [anon_sym___fastcall] = ACTIONS(4058), + [anon_sym___thiscall] = ACTIONS(4058), + [anon_sym___vectorcall] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_mutable] = ACTIONS(4058), + [anon_sym_constinit] = ACTIONS(4058), + [anon_sym_consteval] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_class] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_case] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_while] = ACTIONS(4058), + [anon_sym_do] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym___try] = ACTIONS(4058), + [anon_sym___leave] = ACTIONS(4058), + [anon_sym_not] = ACTIONS(4058), + [anon_sym_compl] = ACTIONS(4058), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_sizeof] = ACTIONS(4058), + [anon_sym___alignof__] = ACTIONS(4058), + [anon_sym___alignof] = ACTIONS(4058), + [anon_sym__alignof] = ACTIONS(4058), + [anon_sym_alignof] = ACTIONS(4058), + [anon_sym__Alignof] = ACTIONS(4058), + [anon_sym_offsetof] = ACTIONS(4058), + [anon_sym__Generic] = ACTIONS(4058), + [anon_sym_typename] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym___asm__] = ACTIONS(4058), + [anon_sym___asm] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4060), + [anon_sym_L_SQUOTE] = ACTIONS(4060), + [anon_sym_u_SQUOTE] = ACTIONS(4060), + [anon_sym_U_SQUOTE] = ACTIONS(4060), + [anon_sym_u8_SQUOTE] = ACTIONS(4060), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_L_DQUOTE] = ACTIONS(4060), + [anon_sym_u_DQUOTE] = ACTIONS(4060), + [anon_sym_U_DQUOTE] = ACTIONS(4060), + [anon_sym_u8_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [anon_sym_NULL] = ACTIONS(4058), + [anon_sym_nullptr] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4058), + [anon_sym_decltype] = ACTIONS(4058), + [anon_sym_explicit] = ACTIONS(4058), + [anon_sym_template] = ACTIONS(4058), + [anon_sym_operator] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4058), + [anon_sym_delete] = ACTIONS(4058), + [anon_sym_throw] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_static_assert] = ACTIONS(4058), + [anon_sym_concept] = ACTIONS(4058), + [anon_sym_co_return] = ACTIONS(4058), + [anon_sym_co_yield] = ACTIONS(4058), + [anon_sym_R_DQUOTE] = ACTIONS(4060), + [anon_sym_LR_DQUOTE] = ACTIONS(4060), + [anon_sym_uR_DQUOTE] = ACTIONS(4060), + [anon_sym_UR_DQUOTE] = ACTIONS(4060), + [anon_sym_u8R_DQUOTE] = ACTIONS(4060), + [anon_sym_co_await] = ACTIONS(4058), + [anon_sym_new] = ACTIONS(4058), + [anon_sym_requires] = ACTIONS(4058), + [anon_sym_CARET_CARET] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4060), + [sym_this] = ACTIONS(4058), }, - [STATE(998)] = { - [sym_expression] = STATE(4543), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(455)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_include_token1] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token2] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [aux_sym_preproc_else_token1] = ACTIONS(4062), + [aux_sym_preproc_elif_token1] = ACTIONS(4062), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym___cdecl] = ACTIONS(4062), + [anon_sym___clrcall] = ACTIONS(4062), + [anon_sym___stdcall] = ACTIONS(4062), + [anon_sym___fastcall] = ACTIONS(4062), + [anon_sym___thiscall] = ACTIONS(4062), + [anon_sym___vectorcall] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_case] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym___try] = ACTIONS(4062), + [anon_sym___leave] = ACTIONS(4062), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4062), + [anon_sym___alignof__] = ACTIONS(4062), + [anon_sym___alignof] = ACTIONS(4062), + [anon_sym__alignof] = ACTIONS(4062), + [anon_sym_alignof] = ACTIONS(4062), + [anon_sym__Alignof] = ACTIONS(4062), + [anon_sym_offsetof] = ACTIONS(4062), + [anon_sym__Generic] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym___asm__] = ACTIONS(4062), + [anon_sym___asm] = ACTIONS(4062), + [sym_number_literal] = ACTIONS(4064), + [anon_sym_L_SQUOTE] = ACTIONS(4064), + [anon_sym_u_SQUOTE] = ACTIONS(4064), + [anon_sym_U_SQUOTE] = ACTIONS(4064), + [anon_sym_u8_SQUOTE] = ACTIONS(4064), + [anon_sym_SQUOTE] = ACTIONS(4064), + [anon_sym_L_DQUOTE] = ACTIONS(4064), + [anon_sym_u_DQUOTE] = ACTIONS(4064), + [anon_sym_U_DQUOTE] = ACTIONS(4064), + [anon_sym_u8_DQUOTE] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [anon_sym_NULL] = ACTIONS(4062), + [anon_sym_nullptr] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_delete] = ACTIONS(4062), + [anon_sym_throw] = ACTIONS(4062), + [anon_sym_namespace] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_concept] = ACTIONS(4062), + [anon_sym_co_return] = ACTIONS(4062), + [anon_sym_co_yield] = ACTIONS(4062), + [anon_sym_R_DQUOTE] = ACTIONS(4064), + [anon_sym_LR_DQUOTE] = ACTIONS(4064), + [anon_sym_uR_DQUOTE] = ACTIONS(4064), + [anon_sym_UR_DQUOTE] = ACTIONS(4064), + [anon_sym_u8R_DQUOTE] = ACTIONS(4064), + [anon_sym_co_await] = ACTIONS(4062), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_requires] = ACTIONS(4062), + [anon_sym_CARET_CARET] = ACTIONS(4064), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + [sym_this] = ACTIONS(4062), }, - [STATE(999)] = { - [sym_expression] = STATE(4221), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(456)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_include_token1] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token2] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [aux_sym_preproc_else_token1] = ACTIONS(4066), + [aux_sym_preproc_elif_token1] = ACTIONS(4066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym___cdecl] = ACTIONS(4066), + [anon_sym___clrcall] = ACTIONS(4066), + [anon_sym___stdcall] = ACTIONS(4066), + [anon_sym___fastcall] = ACTIONS(4066), + [anon_sym___thiscall] = ACTIONS(4066), + [anon_sym___vectorcall] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym___try] = ACTIONS(4066), + [anon_sym___leave] = ACTIONS(4066), + [anon_sym_not] = ACTIONS(4066), + [anon_sym_compl] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_sizeof] = ACTIONS(4066), + [anon_sym___alignof__] = ACTIONS(4066), + [anon_sym___alignof] = ACTIONS(4066), + [anon_sym__alignof] = ACTIONS(4066), + [anon_sym_alignof] = ACTIONS(4066), + [anon_sym__Alignof] = ACTIONS(4066), + [anon_sym_offsetof] = ACTIONS(4066), + [anon_sym__Generic] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym___asm__] = ACTIONS(4066), + [anon_sym___asm] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4068), + [anon_sym_L_SQUOTE] = ACTIONS(4068), + [anon_sym_u_SQUOTE] = ACTIONS(4068), + [anon_sym_U_SQUOTE] = ACTIONS(4068), + [anon_sym_u8_SQUOTE] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4068), + [anon_sym_L_DQUOTE] = ACTIONS(4068), + [anon_sym_u_DQUOTE] = ACTIONS(4068), + [anon_sym_U_DQUOTE] = ACTIONS(4068), + [anon_sym_u8_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [anon_sym_NULL] = ACTIONS(4066), + [anon_sym_nullptr] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_try] = ACTIONS(4066), + [anon_sym_delete] = ACTIONS(4066), + [anon_sym_throw] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_concept] = ACTIONS(4066), + [anon_sym_co_return] = ACTIONS(4066), + [anon_sym_co_yield] = ACTIONS(4066), + [anon_sym_R_DQUOTE] = ACTIONS(4068), + [anon_sym_LR_DQUOTE] = ACTIONS(4068), + [anon_sym_uR_DQUOTE] = ACTIONS(4068), + [anon_sym_UR_DQUOTE] = ACTIONS(4068), + [anon_sym_u8R_DQUOTE] = ACTIONS(4068), + [anon_sym_co_await] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_requires] = ACTIONS(4066), + [anon_sym_CARET_CARET] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + [sym_this] = ACTIONS(4066), }, - [STATE(1000)] = { - [sym_expression] = STATE(4420), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7615), - [sym_initializer_pair] = STATE(7615), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(457)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [aux_sym_preproc_else_token1] = ACTIONS(4070), + [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1001)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(2576), - [sym_template_argument_list] = STATE(1699), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4174), - [anon_sym_COMMA] = ACTIONS(4174), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4177), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4159), - [anon_sym_virtual] = ACTIONS(4159), - [anon_sym_extern] = ACTIONS(4159), - [anon_sym___attribute__] = ACTIONS(4159), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4167), - [anon_sym___declspec] = ACTIONS(4159), - [anon_sym___based] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(4189), - [anon_sym_unsigned] = ACTIONS(4189), - [anon_sym_long] = ACTIONS(4189), - [anon_sym_short] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_register] = ACTIONS(4159), - [anon_sym_inline] = ACTIONS(4159), - [anon_sym___inline] = ACTIONS(4159), - [anon_sym___inline__] = ACTIONS(4159), - [anon_sym___forceinline] = ACTIONS(4159), - [anon_sym_thread_local] = ACTIONS(4159), - [anon_sym___thread] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4159), - [anon_sym_volatile] = ACTIONS(4159), - [anon_sym_restrict] = ACTIONS(4159), - [anon_sym___restrict__] = ACTIONS(4159), - [anon_sym__Atomic] = ACTIONS(4159), - [anon_sym__Noreturn] = ACTIONS(4159), - [anon_sym_noreturn] = ACTIONS(4159), - [anon_sym__Nonnull] = ACTIONS(4159), - [anon_sym_mutable] = ACTIONS(4159), - [anon_sym_constinit] = ACTIONS(4159), - [anon_sym_consteval] = ACTIONS(4159), - [anon_sym_alignas] = ACTIONS(4159), - [anon_sym__Alignas] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4195), - [anon_sym_or_eq] = ACTIONS(4195), - [anon_sym_xor_eq] = ACTIONS(4195), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4199), - [anon_sym_decltype] = ACTIONS(4201), - [anon_sym_template] = ACTIONS(4159), - [anon_sym_operator] = ACTIONS(4159), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(458)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [aux_sym_preproc_else_token1] = ACTIONS(4070), + [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1002)] = { - [sym_expression] = STATE(4421), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7548), - [sym_initializer_pair] = STATE(7548), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4515), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4517), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(459)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_include_token1] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token2] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [aux_sym_preproc_else_token1] = ACTIONS(4074), + [aux_sym_preproc_elif_token1] = ACTIONS(4074), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym___cdecl] = ACTIONS(4074), + [anon_sym___clrcall] = ACTIONS(4074), + [anon_sym___stdcall] = ACTIONS(4074), + [anon_sym___fastcall] = ACTIONS(4074), + [anon_sym___thiscall] = ACTIONS(4074), + [anon_sym___vectorcall] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_if] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_case] = ACTIONS(4074), + [anon_sym_default] = ACTIONS(4074), + [anon_sym_while] = ACTIONS(4074), + [anon_sym_do] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4074), + [anon_sym_break] = ACTIONS(4074), + [anon_sym_continue] = ACTIONS(4074), + [anon_sym_goto] = ACTIONS(4074), + [anon_sym___try] = ACTIONS(4074), + [anon_sym___leave] = ACTIONS(4074), + [anon_sym_not] = ACTIONS(4074), + [anon_sym_compl] = ACTIONS(4074), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_sizeof] = ACTIONS(4074), + [anon_sym___alignof__] = ACTIONS(4074), + [anon_sym___alignof] = ACTIONS(4074), + [anon_sym__alignof] = ACTIONS(4074), + [anon_sym_alignof] = ACTIONS(4074), + [anon_sym__Alignof] = ACTIONS(4074), + [anon_sym_offsetof] = ACTIONS(4074), + [anon_sym__Generic] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [anon_sym_asm] = ACTIONS(4074), + [anon_sym___asm__] = ACTIONS(4074), + [anon_sym___asm] = ACTIONS(4074), + [sym_number_literal] = ACTIONS(4076), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym_true] = ACTIONS(4074), + [sym_false] = ACTIONS(4074), + [anon_sym_NULL] = ACTIONS(4074), + [anon_sym_nullptr] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_try] = ACTIONS(4074), + [anon_sym_delete] = ACTIONS(4074), + [anon_sym_throw] = ACTIONS(4074), + [anon_sym_namespace] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_concept] = ACTIONS(4074), + [anon_sym_co_return] = ACTIONS(4074), + [anon_sym_co_yield] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(4076), + [anon_sym_LR_DQUOTE] = ACTIONS(4076), + [anon_sym_uR_DQUOTE] = ACTIONS(4076), + [anon_sym_UR_DQUOTE] = ACTIONS(4076), + [anon_sym_u8R_DQUOTE] = ACTIONS(4076), + [anon_sym_co_await] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4074), + [anon_sym_requires] = ACTIONS(4074), + [anon_sym_CARET_CARET] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + [sym_this] = ACTIONS(4074), }, - [STATE(1003)] = { - [sym_expression] = STATE(4351), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(460)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_include_token1] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token2] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [aux_sym_preproc_else_token1] = ACTIONS(4078), + [aux_sym_preproc_elif_token1] = ACTIONS(4078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym___cdecl] = ACTIONS(4078), + [anon_sym___clrcall] = ACTIONS(4078), + [anon_sym___stdcall] = ACTIONS(4078), + [anon_sym___fastcall] = ACTIONS(4078), + [anon_sym___thiscall] = ACTIONS(4078), + [anon_sym___vectorcall] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_if] = ACTIONS(4078), + [anon_sym_switch] = ACTIONS(4078), + [anon_sym_case] = ACTIONS(4078), + [anon_sym_default] = ACTIONS(4078), + [anon_sym_while] = ACTIONS(4078), + [anon_sym_do] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4078), + [anon_sym_break] = ACTIONS(4078), + [anon_sym_continue] = ACTIONS(4078), + [anon_sym_goto] = ACTIONS(4078), + [anon_sym___try] = ACTIONS(4078), + [anon_sym___leave] = ACTIONS(4078), + [anon_sym_not] = ACTIONS(4078), + [anon_sym_compl] = ACTIONS(4078), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_sizeof] = ACTIONS(4078), + [anon_sym___alignof__] = ACTIONS(4078), + [anon_sym___alignof] = ACTIONS(4078), + [anon_sym__alignof] = ACTIONS(4078), + [anon_sym_alignof] = ACTIONS(4078), + [anon_sym__Alignof] = ACTIONS(4078), + [anon_sym_offsetof] = ACTIONS(4078), + [anon_sym__Generic] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [anon_sym_asm] = ACTIONS(4078), + [anon_sym___asm__] = ACTIONS(4078), + [anon_sym___asm] = ACTIONS(4078), + [sym_number_literal] = ACTIONS(4080), + [anon_sym_L_SQUOTE] = ACTIONS(4080), + [anon_sym_u_SQUOTE] = ACTIONS(4080), + [anon_sym_U_SQUOTE] = ACTIONS(4080), + [anon_sym_u8_SQUOTE] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4080), + [anon_sym_L_DQUOTE] = ACTIONS(4080), + [anon_sym_u_DQUOTE] = ACTIONS(4080), + [anon_sym_U_DQUOTE] = ACTIONS(4080), + [anon_sym_u8_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [sym_true] = ACTIONS(4078), + [sym_false] = ACTIONS(4078), + [anon_sym_NULL] = ACTIONS(4078), + [anon_sym_nullptr] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_try] = ACTIONS(4078), + [anon_sym_delete] = ACTIONS(4078), + [anon_sym_throw] = ACTIONS(4078), + [anon_sym_namespace] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_concept] = ACTIONS(4078), + [anon_sym_co_return] = ACTIONS(4078), + [anon_sym_co_yield] = ACTIONS(4078), + [anon_sym_R_DQUOTE] = ACTIONS(4080), + [anon_sym_LR_DQUOTE] = ACTIONS(4080), + [anon_sym_uR_DQUOTE] = ACTIONS(4080), + [anon_sym_UR_DQUOTE] = ACTIONS(4080), + [anon_sym_u8R_DQUOTE] = ACTIONS(4080), + [anon_sym_co_await] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4078), + [anon_sym_requires] = ACTIONS(4078), + [anon_sym_CARET_CARET] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + [sym_this] = ACTIONS(4078), }, - [STATE(1004)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(461)] = { + [sym_identifier] = ACTIONS(4082), + [aux_sym_preproc_include_token1] = ACTIONS(4082), + [aux_sym_preproc_def_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token2] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), + [aux_sym_preproc_else_token1] = ACTIONS(4082), + [aux_sym_preproc_elif_token1] = ACTIONS(4082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4082), + [sym_preproc_directive] = ACTIONS(4082), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_typedef] = ACTIONS(4082), + [anon_sym_virtual] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_using] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym___based] = ACTIONS(4082), + [anon_sym___cdecl] = ACTIONS(4082), + [anon_sym___clrcall] = ACTIONS(4082), + [anon_sym___stdcall] = ACTIONS(4082), + [anon_sym___fastcall] = ACTIONS(4082), + [anon_sym___thiscall] = ACTIONS(4082), + [anon_sym___vectorcall] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_mutable] = ACTIONS(4082), + [anon_sym_constinit] = ACTIONS(4082), + [anon_sym_consteval] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_class] = ACTIONS(4082), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(4082), + [anon_sym_case] = ACTIONS(4082), + [anon_sym_default] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_do] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_goto] = ACTIONS(4082), + [anon_sym___try] = ACTIONS(4082), + [anon_sym___leave] = ACTIONS(4082), + [anon_sym_not] = ACTIONS(4082), + [anon_sym_compl] = ACTIONS(4082), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_sizeof] = ACTIONS(4082), + [anon_sym___alignof__] = ACTIONS(4082), + [anon_sym___alignof] = ACTIONS(4082), + [anon_sym__alignof] = ACTIONS(4082), + [anon_sym_alignof] = ACTIONS(4082), + [anon_sym__Alignof] = ACTIONS(4082), + [anon_sym_offsetof] = ACTIONS(4082), + [anon_sym__Generic] = ACTIONS(4082), + [anon_sym_typename] = ACTIONS(4082), + [anon_sym_asm] = ACTIONS(4082), + [anon_sym___asm__] = ACTIONS(4082), + [anon_sym___asm] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4084), + [anon_sym_L_SQUOTE] = ACTIONS(4084), + [anon_sym_u_SQUOTE] = ACTIONS(4084), + [anon_sym_U_SQUOTE] = ACTIONS(4084), + [anon_sym_u8_SQUOTE] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4084), + [anon_sym_L_DQUOTE] = ACTIONS(4084), + [anon_sym_u_DQUOTE] = ACTIONS(4084), + [anon_sym_U_DQUOTE] = ACTIONS(4084), + [anon_sym_u8_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [sym_true] = ACTIONS(4082), + [sym_false] = ACTIONS(4082), + [anon_sym_NULL] = ACTIONS(4082), + [anon_sym_nullptr] = ACTIONS(4082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4082), + [anon_sym_decltype] = ACTIONS(4082), + [anon_sym_explicit] = ACTIONS(4082), + [anon_sym_template] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_delete] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_static_assert] = ACTIONS(4082), + [anon_sym_concept] = ACTIONS(4082), + [anon_sym_co_return] = ACTIONS(4082), + [anon_sym_co_yield] = ACTIONS(4082), + [anon_sym_R_DQUOTE] = ACTIONS(4084), + [anon_sym_LR_DQUOTE] = ACTIONS(4084), + [anon_sym_uR_DQUOTE] = ACTIONS(4084), + [anon_sym_UR_DQUOTE] = ACTIONS(4084), + [anon_sym_u8R_DQUOTE] = ACTIONS(4084), + [anon_sym_co_await] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4082), + [anon_sym_requires] = ACTIONS(4082), + [anon_sym_CARET_CARET] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4084), + [sym_this] = ACTIONS(4082), }, - [STATE(1005)] = { - [sym_expression] = STATE(4456), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7365), - [sym_initializer_pair] = STATE(7365), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_COMMA] = ACTIONS(4521), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4523), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(462)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_include_token1] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token2] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [aux_sym_preproc_else_token1] = ACTIONS(4086), + [aux_sym_preproc_elif_token1] = ACTIONS(4086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym___cdecl] = ACTIONS(4086), + [anon_sym___clrcall] = ACTIONS(4086), + [anon_sym___stdcall] = ACTIONS(4086), + [anon_sym___fastcall] = ACTIONS(4086), + [anon_sym___thiscall] = ACTIONS(4086), + [anon_sym___vectorcall] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_switch] = ACTIONS(4086), + [anon_sym_case] = ACTIONS(4086), + [anon_sym_default] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_goto] = ACTIONS(4086), + [anon_sym___try] = ACTIONS(4086), + [anon_sym___leave] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_compl] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_sizeof] = ACTIONS(4086), + [anon_sym___alignof__] = ACTIONS(4086), + [anon_sym___alignof] = ACTIONS(4086), + [anon_sym__alignof] = ACTIONS(4086), + [anon_sym_alignof] = ACTIONS(4086), + [anon_sym__Alignof] = ACTIONS(4086), + [anon_sym_offsetof] = ACTIONS(4086), + [anon_sym__Generic] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [anon_sym_asm] = ACTIONS(4086), + [anon_sym___asm__] = ACTIONS(4086), + [anon_sym___asm] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4088), + [anon_sym_L_SQUOTE] = ACTIONS(4088), + [anon_sym_u_SQUOTE] = ACTIONS(4088), + [anon_sym_U_SQUOTE] = ACTIONS(4088), + [anon_sym_u8_SQUOTE] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4088), + [anon_sym_L_DQUOTE] = ACTIONS(4088), + [anon_sym_u_DQUOTE] = ACTIONS(4088), + [anon_sym_U_DQUOTE] = ACTIONS(4088), + [anon_sym_u8_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [anon_sym_NULL] = ACTIONS(4086), + [anon_sym_nullptr] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_delete] = ACTIONS(4086), + [anon_sym_throw] = ACTIONS(4086), + [anon_sym_namespace] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_concept] = ACTIONS(4086), + [anon_sym_co_return] = ACTIONS(4086), + [anon_sym_co_yield] = ACTIONS(4086), + [anon_sym_R_DQUOTE] = ACTIONS(4088), + [anon_sym_LR_DQUOTE] = ACTIONS(4088), + [anon_sym_uR_DQUOTE] = ACTIONS(4088), + [anon_sym_UR_DQUOTE] = ACTIONS(4088), + [anon_sym_u8R_DQUOTE] = ACTIONS(4088), + [anon_sym_co_await] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4086), + [anon_sym_requires] = ACTIONS(4086), + [anon_sym_CARET_CARET] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [sym_this] = ACTIONS(4086), }, - [STATE(1006)] = { - [sym_expression] = STATE(2923), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(463)] = { + [ts_builtin_sym_end] = ACTIONS(3730), + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_export] = ACTIONS(3728), + [anon_sym_module] = ACTIONS(3728), + [anon_sym_import] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1007)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(1015), - [sym_compound_requirement] = STATE(1015), - [sym__requirement] = STATE(1015), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(1015), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(464)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_include_token1] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token2] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym___cdecl] = ACTIONS(4090), + [anon_sym___clrcall] = ACTIONS(4090), + [anon_sym___stdcall] = ACTIONS(4090), + [anon_sym___fastcall] = ACTIONS(4090), + [anon_sym___thiscall] = ACTIONS(4090), + [anon_sym___vectorcall] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_case] = ACTIONS(4090), + [anon_sym_default] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_goto] = ACTIONS(4090), + [anon_sym___try] = ACTIONS(4090), + [anon_sym___leave] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_compl] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_sizeof] = ACTIONS(4090), + [anon_sym___alignof__] = ACTIONS(4090), + [anon_sym___alignof] = ACTIONS(4090), + [anon_sym__alignof] = ACTIONS(4090), + [anon_sym_alignof] = ACTIONS(4090), + [anon_sym__Alignof] = ACTIONS(4090), + [anon_sym_offsetof] = ACTIONS(4090), + [anon_sym__Generic] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [anon_sym_asm] = ACTIONS(4090), + [anon_sym___asm__] = ACTIONS(4090), + [anon_sym___asm] = ACTIONS(4090), + [sym_number_literal] = ACTIONS(4092), + [anon_sym_L_SQUOTE] = ACTIONS(4092), + [anon_sym_u_SQUOTE] = ACTIONS(4092), + [anon_sym_U_SQUOTE] = ACTIONS(4092), + [anon_sym_u8_SQUOTE] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [sym_true] = ACTIONS(4090), + [sym_false] = ACTIONS(4090), + [anon_sym_NULL] = ACTIONS(4090), + [anon_sym_nullptr] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_delete] = ACTIONS(4090), + [anon_sym_throw] = ACTIONS(4090), + [anon_sym_namespace] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_concept] = ACTIONS(4090), + [anon_sym_co_return] = ACTIONS(4090), + [anon_sym_co_yield] = ACTIONS(4090), + [anon_sym_R_DQUOTE] = ACTIONS(4092), + [anon_sym_LR_DQUOTE] = ACTIONS(4092), + [anon_sym_uR_DQUOTE] = ACTIONS(4092), + [anon_sym_UR_DQUOTE] = ACTIONS(4092), + [anon_sym_u8R_DQUOTE] = ACTIONS(4092), + [anon_sym_co_await] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4090), + [anon_sym_requires] = ACTIONS(4090), + [anon_sym_CARET_CARET] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + [sym_this] = ACTIONS(4090), }, - [STATE(1008)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(1004), - [sym_compound_requirement] = STATE(1004), - [sym__requirement] = STATE(1004), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(1004), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(465)] = { + [ts_builtin_sym_end] = ACTIONS(3730), + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_export] = ACTIONS(3728), + [anon_sym_module] = ACTIONS(3728), + [anon_sym_import] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1009)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(964), - [sym_compound_requirement] = STATE(964), - [sym__requirement] = STATE(964), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(964), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4529), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(466)] = { + [ts_builtin_sym_end] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_module] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1010)] = { - [sym_expression] = STATE(3363), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(467)] = { + [ts_builtin_sym_end] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_module] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1011)] = { - [sym_expression] = STATE(3179), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(468)] = { + [sym_catch_clause] = STATE(471), + [aux_sym_constructor_try_statement_repeat1] = STATE(471), + [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_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_else] = 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_typename] = ACTIONS(3148), + [anon_sym_asm] = 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_explicit] = 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_static_assert] = ACTIONS(3148), + [anon_sym_concept] = ACTIONS(3148), + [anon_sym_co_return] = ACTIONS(3148), + [anon_sym_co_yield] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(4094), + [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), + [anon_sym_CARET_CARET] = ACTIONS(3150), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [sym_this] = ACTIONS(3148), }, - [STATE(1012)] = { - [sym_expression] = STATE(3127), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(469)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [aux_sym_preproc_else_token1] = ACTIONS(4096), + [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, - [STATE(1013)] = { - [sym_expression] = STATE(4532), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(470)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token2] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [aux_sym_preproc_else_token1] = ACTIONS(4100), + [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym___try] = ACTIONS(4100), + [anon_sym___leave] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), }, - [STATE(1014)] = { - [sym_expression] = STATE(4534), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(4347), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(4351), - [anon_sym_constexpr] = ACTIONS(4351), - [anon_sym_mutable] = ACTIONS(4351), - [anon_sym_consteval] = ACTIONS(4351), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DASH_GT] = ACTIONS(4347), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_noexcept] = ACTIONS(4351), - [anon_sym_throw] = ACTIONS(4351), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(471)] = { + [sym_catch_clause] = STATE(471), + [aux_sym_constructor_try_statement_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token2] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym___cdecl] = ACTIONS(3137), + [anon_sym___clrcall] = ACTIONS(3137), + [anon_sym___stdcall] = ACTIONS(3137), + [anon_sym___fastcall] = ACTIONS(3137), + [anon_sym___thiscall] = ACTIONS(3137), + [anon_sym___vectorcall] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym___try] = ACTIONS(3137), + [anon_sym___leave] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_compl] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym___alignof__] = ACTIONS(3137), + [anon_sym___alignof] = ACTIONS(3137), + [anon_sym__alignof] = ACTIONS(3137), + [anon_sym_alignof] = ACTIONS(3137), + [anon_sym__Alignof] = ACTIONS(3137), + [anon_sym_offsetof] = ACTIONS(3137), + [anon_sym__Generic] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym___asm__] = ACTIONS(3137), + [anon_sym___asm] = ACTIONS(3137), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_L_SQUOTE] = ACTIONS(3139), + [anon_sym_u_SQUOTE] = ACTIONS(3139), + [anon_sym_U_SQUOTE] = ACTIONS(3139), + [anon_sym_u8_SQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_L_DQUOTE] = ACTIONS(3139), + [anon_sym_u_DQUOTE] = ACTIONS(3139), + [anon_sym_U_DQUOTE] = ACTIONS(3139), + [anon_sym_u8_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [anon_sym_NULL] = ACTIONS(3137), + [anon_sym_nullptr] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_concept] = ACTIONS(3137), + [anon_sym_co_return] = ACTIONS(3137), + [anon_sym_co_yield] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(4104), + [anon_sym_R_DQUOTE] = ACTIONS(3139), + [anon_sym_LR_DQUOTE] = ACTIONS(3139), + [anon_sym_uR_DQUOTE] = ACTIONS(3139), + [anon_sym_UR_DQUOTE] = ACTIONS(3139), + [anon_sym_u8R_DQUOTE] = ACTIONS(3139), + [anon_sym_co_await] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_requires] = ACTIONS(3137), + [anon_sym_CARET_CARET] = ACTIONS(3139), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [sym_this] = ACTIONS(3137), }, - [STATE(1015)] = { - [sym_expression_statement] = STATE(2751), - [sym_expression] = STATE(4628), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8409), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_type_requirement] = STATE(994), - [sym_compound_requirement] = STATE(994), - [sym__requirement] = STATE(994), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_requirement_seq_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4357), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_typename] = ACTIONS(4361), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(472)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_include_token1] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token2] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [aux_sym_preproc_else_token1] = ACTIONS(4107), + [aux_sym_preproc_elif_token1] = ACTIONS(4107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_BANG] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym___cdecl] = ACTIONS(4107), + [anon_sym___clrcall] = ACTIONS(4107), + [anon_sym___stdcall] = ACTIONS(4107), + [anon_sym___fastcall] = ACTIONS(4107), + [anon_sym___thiscall] = ACTIONS(4107), + [anon_sym___vectorcall] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_switch] = ACTIONS(4107), + [anon_sym_case] = ACTIONS(4107), + [anon_sym_default] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_do] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_goto] = ACTIONS(4107), + [anon_sym___try] = ACTIONS(4107), + [anon_sym___leave] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_compl] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4109), + [anon_sym_PLUS_PLUS] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4107), + [anon_sym___alignof__] = ACTIONS(4107), + [anon_sym___alignof] = ACTIONS(4107), + [anon_sym__alignof] = ACTIONS(4107), + [anon_sym_alignof] = ACTIONS(4107), + [anon_sym__Alignof] = ACTIONS(4107), + [anon_sym_offsetof] = ACTIONS(4107), + [anon_sym__Generic] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [anon_sym_asm] = ACTIONS(4107), + [anon_sym___asm__] = ACTIONS(4107), + [anon_sym___asm] = ACTIONS(4107), + [sym_number_literal] = ACTIONS(4109), + [anon_sym_L_SQUOTE] = ACTIONS(4109), + [anon_sym_u_SQUOTE] = ACTIONS(4109), + [anon_sym_U_SQUOTE] = ACTIONS(4109), + [anon_sym_u8_SQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4109), + [anon_sym_L_DQUOTE] = ACTIONS(4109), + [anon_sym_u_DQUOTE] = ACTIONS(4109), + [anon_sym_U_DQUOTE] = ACTIONS(4109), + [anon_sym_u8_DQUOTE] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [anon_sym_NULL] = ACTIONS(4107), + [anon_sym_nullptr] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_delete] = ACTIONS(4107), + [anon_sym_throw] = ACTIONS(4107), + [anon_sym_namespace] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_concept] = ACTIONS(4107), + [anon_sym_co_return] = ACTIONS(4107), + [anon_sym_co_yield] = ACTIONS(4107), + [anon_sym_R_DQUOTE] = ACTIONS(4109), + [anon_sym_LR_DQUOTE] = ACTIONS(4109), + [anon_sym_uR_DQUOTE] = ACTIONS(4109), + [anon_sym_UR_DQUOTE] = ACTIONS(4109), + [anon_sym_u8R_DQUOTE] = ACTIONS(4109), + [anon_sym_co_await] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_requires] = ACTIONS(4107), + [anon_sym_CARET_CARET] = ACTIONS(4109), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + [sym_this] = ACTIONS(4107), }, - [STATE(1016)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(473)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [aux_sym_preproc_else_token1] = ACTIONS(4111), + [aux_sym_preproc_elif_token1] = ACTIONS(4111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym___cdecl] = ACTIONS(4111), + [anon_sym___clrcall] = ACTIONS(4111), + [anon_sym___stdcall] = ACTIONS(4111), + [anon_sym___fastcall] = ACTIONS(4111), + [anon_sym___thiscall] = ACTIONS(4111), + [anon_sym___vectorcall] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_case] = ACTIONS(4111), + [anon_sym_default] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym___try] = ACTIONS(4111), + [anon_sym___leave] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_compl] = ACTIONS(4111), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym___alignof__] = ACTIONS(4111), + [anon_sym___alignof] = ACTIONS(4111), + [anon_sym__alignof] = ACTIONS(4111), + [anon_sym_alignof] = ACTIONS(4111), + [anon_sym__Alignof] = ACTIONS(4111), + [anon_sym_offsetof] = ACTIONS(4111), + [anon_sym__Generic] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_asm] = ACTIONS(4111), + [anon_sym___asm__] = ACTIONS(4111), + [anon_sym___asm] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_L_SQUOTE] = ACTIONS(4113), + [anon_sym_u_SQUOTE] = ACTIONS(4113), + [anon_sym_U_SQUOTE] = ACTIONS(4113), + [anon_sym_u8_SQUOTE] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_L_DQUOTE] = ACTIONS(4113), + [anon_sym_u_DQUOTE] = ACTIONS(4113), + [anon_sym_U_DQUOTE] = ACTIONS(4113), + [anon_sym_u8_DQUOTE] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [anon_sym_NULL] = ACTIONS(4111), + [anon_sym_nullptr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_throw] = ACTIONS(4111), + [anon_sym_namespace] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_concept] = ACTIONS(4111), + [anon_sym_co_return] = ACTIONS(4111), + [anon_sym_co_yield] = ACTIONS(4111), + [anon_sym_R_DQUOTE] = ACTIONS(4113), + [anon_sym_LR_DQUOTE] = ACTIONS(4113), + [anon_sym_uR_DQUOTE] = ACTIONS(4113), + [anon_sym_UR_DQUOTE] = ACTIONS(4113), + [anon_sym_u8R_DQUOTE] = ACTIONS(4113), + [anon_sym_co_await] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_requires] = ACTIONS(4111), + [anon_sym_CARET_CARET] = ACTIONS(4113), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + [sym_this] = ACTIONS(4111), }, - [STATE(1017)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(474)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [aux_sym_preproc_else_token1] = ACTIONS(4115), + [aux_sym_preproc_elif_token1] = ACTIONS(4115), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym___cdecl] = ACTIONS(4115), + [anon_sym___clrcall] = ACTIONS(4115), + [anon_sym___stdcall] = ACTIONS(4115), + [anon_sym___fastcall] = ACTIONS(4115), + [anon_sym___thiscall] = ACTIONS(4115), + [anon_sym___vectorcall] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_case] = ACTIONS(4115), + [anon_sym_default] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [anon_sym___try] = ACTIONS(4115), + [anon_sym___leave] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_compl] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym___alignof__] = ACTIONS(4115), + [anon_sym___alignof] = ACTIONS(4115), + [anon_sym__alignof] = ACTIONS(4115), + [anon_sym_alignof] = ACTIONS(4115), + [anon_sym__Alignof] = ACTIONS(4115), + [anon_sym_offsetof] = ACTIONS(4115), + [anon_sym__Generic] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_asm] = ACTIONS(4115), + [anon_sym___asm__] = ACTIONS(4115), + [anon_sym___asm] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_L_SQUOTE] = ACTIONS(4117), + [anon_sym_u_SQUOTE] = ACTIONS(4117), + [anon_sym_U_SQUOTE] = ACTIONS(4117), + [anon_sym_u8_SQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [anon_sym_NULL] = ACTIONS(4115), + [anon_sym_nullptr] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_throw] = ACTIONS(4115), + [anon_sym_namespace] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_concept] = ACTIONS(4115), + [anon_sym_co_return] = ACTIONS(4115), + [anon_sym_co_yield] = ACTIONS(4115), + [anon_sym_R_DQUOTE] = ACTIONS(4117), + [anon_sym_LR_DQUOTE] = ACTIONS(4117), + [anon_sym_uR_DQUOTE] = ACTIONS(4117), + [anon_sym_UR_DQUOTE] = ACTIONS(4117), + [anon_sym_u8R_DQUOTE] = ACTIONS(4117), + [anon_sym_co_await] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_requires] = ACTIONS(4115), + [anon_sym_CARET_CARET] = ACTIONS(4117), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + [sym_this] = ACTIONS(4115), }, - [STATE(1018)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(475)] = { + [sym_identifier] = ACTIONS(4119), + [aux_sym_preproc_include_token1] = ACTIONS(4119), + [aux_sym_preproc_def_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token2] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), + [aux_sym_preproc_else_token1] = ACTIONS(4119), + [aux_sym_preproc_elif_token1] = ACTIONS(4119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4119), + [sym_preproc_directive] = ACTIONS(4119), + [anon_sym_LPAREN2] = ACTIONS(4121), + [anon_sym_BANG] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym___extension__] = ACTIONS(4119), + [anon_sym_typedef] = ACTIONS(4119), + [anon_sym_virtual] = ACTIONS(4119), + [anon_sym_extern] = ACTIONS(4119), + [anon_sym___attribute__] = ACTIONS(4119), + [anon_sym___attribute] = ACTIONS(4119), + [anon_sym_using] = ACTIONS(4119), + [anon_sym_COLON_COLON] = ACTIONS(4121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), + [anon_sym___declspec] = ACTIONS(4119), + [anon_sym___based] = ACTIONS(4119), + [anon_sym___cdecl] = ACTIONS(4119), + [anon_sym___clrcall] = ACTIONS(4119), + [anon_sym___stdcall] = ACTIONS(4119), + [anon_sym___fastcall] = ACTIONS(4119), + [anon_sym___thiscall] = ACTIONS(4119), + [anon_sym___vectorcall] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_signed] = ACTIONS(4119), + [anon_sym_unsigned] = ACTIONS(4119), + [anon_sym_long] = ACTIONS(4119), + [anon_sym_short] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_static] = ACTIONS(4119), + [anon_sym_register] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym___inline] = ACTIONS(4119), + [anon_sym___inline__] = ACTIONS(4119), + [anon_sym___forceinline] = ACTIONS(4119), + [anon_sym_thread_local] = ACTIONS(4119), + [anon_sym___thread] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4119), + [anon_sym_constexpr] = ACTIONS(4119), + [anon_sym_volatile] = ACTIONS(4119), + [anon_sym_restrict] = ACTIONS(4119), + [anon_sym___restrict__] = ACTIONS(4119), + [anon_sym__Atomic] = ACTIONS(4119), + [anon_sym__Noreturn] = ACTIONS(4119), + [anon_sym_noreturn] = ACTIONS(4119), + [anon_sym__Nonnull] = ACTIONS(4119), + [anon_sym_mutable] = ACTIONS(4119), + [anon_sym_constinit] = ACTIONS(4119), + [anon_sym_consteval] = ACTIONS(4119), + [anon_sym_alignas] = ACTIONS(4119), + [anon_sym__Alignas] = ACTIONS(4119), + [sym_primitive_type] = ACTIONS(4119), + [anon_sym_enum] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_struct] = ACTIONS(4119), + [anon_sym_union] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_case] = ACTIONS(4119), + [anon_sym_default] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_do] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_goto] = ACTIONS(4119), + [anon_sym___try] = ACTIONS(4119), + [anon_sym___leave] = ACTIONS(4119), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_compl] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_sizeof] = ACTIONS(4119), + [anon_sym___alignof__] = ACTIONS(4119), + [anon_sym___alignof] = ACTIONS(4119), + [anon_sym__alignof] = ACTIONS(4119), + [anon_sym_alignof] = ACTIONS(4119), + [anon_sym__Alignof] = ACTIONS(4119), + [anon_sym_offsetof] = ACTIONS(4119), + [anon_sym__Generic] = ACTIONS(4119), + [anon_sym_typename] = ACTIONS(4119), + [anon_sym_asm] = ACTIONS(4119), + [anon_sym___asm__] = ACTIONS(4119), + [anon_sym___asm] = ACTIONS(4119), + [sym_number_literal] = ACTIONS(4121), + [anon_sym_L_SQUOTE] = ACTIONS(4121), + [anon_sym_u_SQUOTE] = ACTIONS(4121), + [anon_sym_U_SQUOTE] = ACTIONS(4121), + [anon_sym_u8_SQUOTE] = ACTIONS(4121), + [anon_sym_SQUOTE] = ACTIONS(4121), + [anon_sym_L_DQUOTE] = ACTIONS(4121), + [anon_sym_u_DQUOTE] = ACTIONS(4121), + [anon_sym_U_DQUOTE] = ACTIONS(4121), + [anon_sym_u8_DQUOTE] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(4121), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [anon_sym_NULL] = ACTIONS(4119), + [anon_sym_nullptr] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4119), + [anon_sym_decltype] = ACTIONS(4119), + [anon_sym_explicit] = ACTIONS(4119), + [anon_sym_template] = ACTIONS(4119), + [anon_sym_operator] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_delete] = ACTIONS(4119), + [anon_sym_throw] = ACTIONS(4119), + [anon_sym_namespace] = ACTIONS(4119), + [anon_sym_static_assert] = ACTIONS(4119), + [anon_sym_concept] = ACTIONS(4119), + [anon_sym_co_return] = ACTIONS(4119), + [anon_sym_co_yield] = ACTIONS(4119), + [anon_sym_R_DQUOTE] = ACTIONS(4121), + [anon_sym_LR_DQUOTE] = ACTIONS(4121), + [anon_sym_uR_DQUOTE] = ACTIONS(4121), + [anon_sym_UR_DQUOTE] = ACTIONS(4121), + [anon_sym_u8R_DQUOTE] = ACTIONS(4121), + [anon_sym_co_await] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_requires] = ACTIONS(4119), + [anon_sym_CARET_CARET] = ACTIONS(4121), + [anon_sym_LBRACK_COLON] = ACTIONS(4121), + [sym_this] = ACTIONS(4119), }, - [STATE(1019)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(476)] = { + [sym_catch_clause] = STATE(309), + [aux_sym_constructor_try_statement_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_include_token1] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym___cdecl] = ACTIONS(3554), + [anon_sym___clrcall] = ACTIONS(3554), + [anon_sym___stdcall] = ACTIONS(3554), + [anon_sym___fastcall] = ACTIONS(3554), + [anon_sym___thiscall] = ACTIONS(3554), + [anon_sym___vectorcall] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_goto] = ACTIONS(3554), + [anon_sym_not] = ACTIONS(3554), + [anon_sym_compl] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3554), + [anon_sym___alignof__] = ACTIONS(3554), + [anon_sym___alignof] = ACTIONS(3554), + [anon_sym__alignof] = ACTIONS(3554), + [anon_sym_alignof] = ACTIONS(3554), + [anon_sym__Alignof] = ACTIONS(3554), + [anon_sym_offsetof] = ACTIONS(3554), + [anon_sym__Generic] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [anon_sym_asm] = ACTIONS(3554), + [anon_sym___asm__] = ACTIONS(3554), + [anon_sym___asm] = ACTIONS(3554), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_L_SQUOTE] = ACTIONS(3556), + [anon_sym_u_SQUOTE] = ACTIONS(3556), + [anon_sym_U_SQUOTE] = ACTIONS(3556), + [anon_sym_u8_SQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_L_DQUOTE] = ACTIONS(3556), + [anon_sym_u_DQUOTE] = ACTIONS(3556), + [anon_sym_U_DQUOTE] = ACTIONS(3556), + [anon_sym_u8_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [anon_sym_NULL] = ACTIONS(3554), + [anon_sym_nullptr] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_concept] = ACTIONS(3554), + [anon_sym_co_return] = ACTIONS(3554), + [anon_sym_co_yield] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(3319), + [anon_sym_R_DQUOTE] = ACTIONS(3556), + [anon_sym_LR_DQUOTE] = ACTIONS(3556), + [anon_sym_uR_DQUOTE] = ACTIONS(3556), + [anon_sym_UR_DQUOTE] = ACTIONS(3556), + [anon_sym_u8R_DQUOTE] = ACTIONS(3556), + [anon_sym_co_await] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_requires] = ACTIONS(3554), + [anon_sym_CARET_CARET] = ACTIONS(3556), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(3554), }, - [STATE(1020)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(477)] = { + [ts_builtin_sym_end] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(1021)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(478)] = { + [ts_builtin_sym_end] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(1022)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4545), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(479)] = { + [ts_builtin_sym_end] = ACTIONS(3682), + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [anon_sym___asm] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [anon_sym_CARET_CARET] = ACTIONS(3682), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [sym_this] = ACTIONS(3680), }, - [STATE(1023)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(480)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [aux_sym_preproc_if_token2] = ACTIONS(2026), + [aux_sym_preproc_else_token1] = ACTIONS(2026), + [aux_sym_preproc_elif_token1] = ACTIONS(2024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1024)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(481)] = { + [ts_builtin_sym_end] = ACTIONS(3686), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(1025)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(482)] = { + [ts_builtin_sym_end] = ACTIONS(3690), + [sym_identifier] = ACTIONS(3688), + [aux_sym_preproc_include_token1] = ACTIONS(3688), + [aux_sym_preproc_def_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), + [sym_preproc_directive] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_AMP_AMP] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym___extension__] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_virtual] = ACTIONS(3688), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym___attribute__] = ACTIONS(3688), + [anon_sym___attribute] = ACTIONS(3688), + [anon_sym_using] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym___declspec] = ACTIONS(3688), + [anon_sym___based] = ACTIONS(3688), + [anon_sym___cdecl] = ACTIONS(3688), + [anon_sym___clrcall] = ACTIONS(3688), + [anon_sym___stdcall] = ACTIONS(3688), + [anon_sym___fastcall] = ACTIONS(3688), + [anon_sym___thiscall] = ACTIONS(3688), + [anon_sym___vectorcall] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym___inline] = ACTIONS(3688), + [anon_sym___inline__] = ACTIONS(3688), + [anon_sym___forceinline] = ACTIONS(3688), + [anon_sym_thread_local] = ACTIONS(3688), + [anon_sym___thread] = ACTIONS(3688), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_restrict] = ACTIONS(3688), + [anon_sym___restrict__] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [anon_sym__Noreturn] = ACTIONS(3688), + [anon_sym_noreturn] = ACTIONS(3688), + [anon_sym__Nonnull] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [anon_sym_constinit] = ACTIONS(3688), + [anon_sym_consteval] = ACTIONS(3688), + [anon_sym_alignas] = ACTIONS(3688), + [anon_sym__Alignas] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3688), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym___try] = ACTIONS(3688), + [anon_sym___leave] = ACTIONS(3688), + [anon_sym_not] = ACTIONS(3688), + [anon_sym_compl] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym___alignof__] = ACTIONS(3688), + [anon_sym___alignof] = ACTIONS(3688), + [anon_sym__alignof] = ACTIONS(3688), + [anon_sym_alignof] = ACTIONS(3688), + [anon_sym__Alignof] = ACTIONS(3688), + [anon_sym_offsetof] = ACTIONS(3688), + [anon_sym__Generic] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_asm] = ACTIONS(3688), + [anon_sym___asm__] = ACTIONS(3688), + [anon_sym___asm] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_L_SQUOTE] = ACTIONS(3690), + [anon_sym_u_SQUOTE] = ACTIONS(3690), + [anon_sym_U_SQUOTE] = ACTIONS(3690), + [anon_sym_u8_SQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_L_DQUOTE] = ACTIONS(3690), + [anon_sym_u_DQUOTE] = ACTIONS(3690), + [anon_sym_U_DQUOTE] = ACTIONS(3690), + [anon_sym_u8_DQUOTE] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [anon_sym_NULL] = ACTIONS(3688), + [anon_sym_nullptr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3688), + [anon_sym_decltype] = ACTIONS(3688), + [anon_sym_explicit] = ACTIONS(3688), + [anon_sym_export] = ACTIONS(3688), + [anon_sym_module] = ACTIONS(3688), + [anon_sym_import] = ACTIONS(3688), + [anon_sym_template] = ACTIONS(3688), + [anon_sym_operator] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_throw] = ACTIONS(3688), + [anon_sym_namespace] = ACTIONS(3688), + [anon_sym_static_assert] = ACTIONS(3688), + [anon_sym_concept] = ACTIONS(3688), + [anon_sym_co_return] = ACTIONS(3688), + [anon_sym_co_yield] = ACTIONS(3688), + [anon_sym_R_DQUOTE] = ACTIONS(3690), + [anon_sym_LR_DQUOTE] = ACTIONS(3690), + [anon_sym_uR_DQUOTE] = ACTIONS(3690), + [anon_sym_UR_DQUOTE] = ACTIONS(3690), + [anon_sym_u8R_DQUOTE] = ACTIONS(3690), + [anon_sym_co_await] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_requires] = ACTIONS(3688), + [anon_sym_CARET_CARET] = ACTIONS(3690), + [anon_sym_LBRACK_COLON] = ACTIONS(3690), + [sym_this] = ACTIONS(3688), }, - [STATE(1026)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(483)] = { + [ts_builtin_sym_end] = ACTIONS(3698), + [sym_identifier] = ACTIONS(3696), + [aux_sym_preproc_include_token1] = ACTIONS(3696), + [aux_sym_preproc_def_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), + [sym_preproc_directive] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3696), + [anon_sym_virtual] = ACTIONS(3696), + [anon_sym_extern] = ACTIONS(3696), + [anon_sym___attribute__] = ACTIONS(3696), + [anon_sym___attribute] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), + [anon_sym___declspec] = ACTIONS(3696), + [anon_sym___based] = ACTIONS(3696), + [anon_sym___cdecl] = ACTIONS(3696), + [anon_sym___clrcall] = ACTIONS(3696), + [anon_sym___stdcall] = ACTIONS(3696), + [anon_sym___fastcall] = ACTIONS(3696), + [anon_sym___thiscall] = ACTIONS(3696), + [anon_sym___vectorcall] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3696), + [anon_sym_unsigned] = ACTIONS(3696), + [anon_sym_long] = ACTIONS(3696), + [anon_sym_short] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_register] = ACTIONS(3696), + [anon_sym_inline] = ACTIONS(3696), + [anon_sym___inline] = ACTIONS(3696), + [anon_sym___inline__] = ACTIONS(3696), + [anon_sym___forceinline] = ACTIONS(3696), + [anon_sym_thread_local] = ACTIONS(3696), + [anon_sym___thread] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_constexpr] = ACTIONS(3696), + [anon_sym_volatile] = ACTIONS(3696), + [anon_sym_restrict] = ACTIONS(3696), + [anon_sym___restrict__] = ACTIONS(3696), + [anon_sym__Atomic] = ACTIONS(3696), + [anon_sym__Noreturn] = ACTIONS(3696), + [anon_sym_noreturn] = ACTIONS(3696), + [anon_sym__Nonnull] = ACTIONS(3696), + [anon_sym_mutable] = ACTIONS(3696), + [anon_sym_constinit] = ACTIONS(3696), + [anon_sym_consteval] = ACTIONS(3696), + [anon_sym_alignas] = ACTIONS(3696), + [anon_sym__Alignas] = ACTIONS(3696), + [sym_primitive_type] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3696), + [anon_sym_union] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_goto] = ACTIONS(3696), + [anon_sym___try] = ACTIONS(3696), + [anon_sym___leave] = ACTIONS(3696), + [anon_sym_not] = ACTIONS(3696), + [anon_sym_compl] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3696), + [anon_sym___alignof__] = ACTIONS(3696), + [anon_sym___alignof] = ACTIONS(3696), + [anon_sym__alignof] = ACTIONS(3696), + [anon_sym_alignof] = ACTIONS(3696), + [anon_sym__Alignof] = ACTIONS(3696), + [anon_sym_offsetof] = ACTIONS(3696), + [anon_sym__Generic] = ACTIONS(3696), + [anon_sym_typename] = ACTIONS(3696), + [anon_sym_asm] = ACTIONS(3696), + [anon_sym___asm__] = ACTIONS(3696), + [anon_sym___asm] = ACTIONS(3696), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_L_SQUOTE] = ACTIONS(3698), + [anon_sym_u_SQUOTE] = ACTIONS(3698), + [anon_sym_U_SQUOTE] = ACTIONS(3698), + [anon_sym_u8_SQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_L_DQUOTE] = ACTIONS(3698), + [anon_sym_u_DQUOTE] = ACTIONS(3698), + [anon_sym_U_DQUOTE] = ACTIONS(3698), + [anon_sym_u8_DQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [anon_sym_NULL] = ACTIONS(3696), + [anon_sym_nullptr] = ACTIONS(3696), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_decltype] = ACTIONS(3696), + [anon_sym_explicit] = ACTIONS(3696), + [anon_sym_export] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_import] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_static_assert] = ACTIONS(3696), + [anon_sym_concept] = ACTIONS(3696), + [anon_sym_co_return] = ACTIONS(3696), + [anon_sym_co_yield] = ACTIONS(3696), + [anon_sym_R_DQUOTE] = ACTIONS(3698), + [anon_sym_LR_DQUOTE] = ACTIONS(3698), + [anon_sym_uR_DQUOTE] = ACTIONS(3698), + [anon_sym_UR_DQUOTE] = ACTIONS(3698), + [anon_sym_u8R_DQUOTE] = ACTIONS(3698), + [anon_sym_co_await] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_requires] = ACTIONS(3696), + [anon_sym_CARET_CARET] = ACTIONS(3698), + [anon_sym_LBRACK_COLON] = ACTIONS(3698), + [sym_this] = ACTIONS(3696), }, - [STATE(1027)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_RBRACE] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(484)] = { + [ts_builtin_sym_end] = ACTIONS(3722), + [sym_identifier] = ACTIONS(3720), + [aux_sym_preproc_include_token1] = ACTIONS(3720), + [aux_sym_preproc_def_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), + [sym_preproc_directive] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym___extension__] = ACTIONS(3720), + [anon_sym_typedef] = ACTIONS(3720), + [anon_sym_virtual] = ACTIONS(3720), + [anon_sym_extern] = ACTIONS(3720), + [anon_sym___attribute__] = ACTIONS(3720), + [anon_sym___attribute] = ACTIONS(3720), + [anon_sym_using] = ACTIONS(3720), + [anon_sym_COLON_COLON] = ACTIONS(3722), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), + [anon_sym___declspec] = ACTIONS(3720), + [anon_sym___based] = ACTIONS(3720), + [anon_sym___cdecl] = ACTIONS(3720), + [anon_sym___clrcall] = ACTIONS(3720), + [anon_sym___stdcall] = ACTIONS(3720), + [anon_sym___fastcall] = ACTIONS(3720), + [anon_sym___thiscall] = ACTIONS(3720), + [anon_sym___vectorcall] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3720), + [anon_sym_unsigned] = ACTIONS(3720), + [anon_sym_long] = ACTIONS(3720), + [anon_sym_short] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_register] = ACTIONS(3720), + [anon_sym_inline] = ACTIONS(3720), + [anon_sym___inline] = ACTIONS(3720), + [anon_sym___inline__] = ACTIONS(3720), + [anon_sym___forceinline] = ACTIONS(3720), + [anon_sym_thread_local] = ACTIONS(3720), + [anon_sym___thread] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym___restrict__] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym__Noreturn] = ACTIONS(3720), + [anon_sym_noreturn] = ACTIONS(3720), + [anon_sym__Nonnull] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_constinit] = ACTIONS(3720), + [anon_sym_consteval] = ACTIONS(3720), + [anon_sym_alignas] = ACTIONS(3720), + [anon_sym__Alignas] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3720), + [anon_sym_union] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_else] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_case] = ACTIONS(3720), + [anon_sym_default] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_goto] = ACTIONS(3720), + [anon_sym___try] = ACTIONS(3720), + [anon_sym___leave] = ACTIONS(3720), + [anon_sym_not] = ACTIONS(3720), + [anon_sym_compl] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_sizeof] = ACTIONS(3720), + [anon_sym___alignof__] = ACTIONS(3720), + [anon_sym___alignof] = ACTIONS(3720), + [anon_sym__alignof] = ACTIONS(3720), + [anon_sym_alignof] = ACTIONS(3720), + [anon_sym__Alignof] = ACTIONS(3720), + [anon_sym_offsetof] = ACTIONS(3720), + [anon_sym__Generic] = ACTIONS(3720), + [anon_sym_typename] = ACTIONS(3720), + [anon_sym_asm] = ACTIONS(3720), + [anon_sym___asm__] = ACTIONS(3720), + [anon_sym___asm] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3722), + [anon_sym_L_SQUOTE] = ACTIONS(3722), + [anon_sym_u_SQUOTE] = ACTIONS(3722), + [anon_sym_U_SQUOTE] = ACTIONS(3722), + [anon_sym_u8_SQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_L_DQUOTE] = ACTIONS(3722), + [anon_sym_u_DQUOTE] = ACTIONS(3722), + [anon_sym_U_DQUOTE] = ACTIONS(3722), + [anon_sym_u8_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [anon_sym_NULL] = ACTIONS(3720), + [anon_sym_nullptr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_export] = ACTIONS(3720), + [anon_sym_module] = ACTIONS(3720), + [anon_sym_import] = ACTIONS(3720), + [anon_sym_template] = ACTIONS(3720), + [anon_sym_operator] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_namespace] = ACTIONS(3720), + [anon_sym_static_assert] = ACTIONS(3720), + [anon_sym_concept] = ACTIONS(3720), + [anon_sym_co_return] = ACTIONS(3720), + [anon_sym_co_yield] = ACTIONS(3720), + [anon_sym_R_DQUOTE] = ACTIONS(3722), + [anon_sym_LR_DQUOTE] = ACTIONS(3722), + [anon_sym_uR_DQUOTE] = ACTIONS(3722), + [anon_sym_UR_DQUOTE] = ACTIONS(3722), + [anon_sym_u8R_DQUOTE] = ACTIONS(3722), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_requires] = ACTIONS(3720), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3722), + [sym_this] = ACTIONS(3720), }, - [STATE(1028)] = { - [sym_expression] = STATE(4677), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_lambda_default_capture] = STATE(8098), - [sym__lambda_capture_identifier] = STATE(7726), - [sym_lambda_capture_initializer] = STATE(7726), - [sym__lambda_capture] = STATE(7726), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_identifier_parameter_pack_expansion] = STATE(7726), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3661), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(4557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4565), - [anon_sym_EQ] = ACTIONS(4567), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(4569), + [STATE(485)] = { + [ts_builtin_sym_end] = ACTIONS(3734), + [sym_identifier] = ACTIONS(3732), + [aux_sym_preproc_include_token1] = ACTIONS(3732), + [aux_sym_preproc_def_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), + [sym_preproc_directive] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3732), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3732), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym___extension__] = ACTIONS(3732), + [anon_sym_typedef] = ACTIONS(3732), + [anon_sym_virtual] = ACTIONS(3732), + [anon_sym_extern] = ACTIONS(3732), + [anon_sym___attribute__] = ACTIONS(3732), + [anon_sym___attribute] = ACTIONS(3732), + [anon_sym_using] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym___declspec] = ACTIONS(3732), + [anon_sym___based] = ACTIONS(3732), + [anon_sym___cdecl] = ACTIONS(3732), + [anon_sym___clrcall] = ACTIONS(3732), + [anon_sym___stdcall] = ACTIONS(3732), + [anon_sym___fastcall] = ACTIONS(3732), + [anon_sym___thiscall] = ACTIONS(3732), + [anon_sym___vectorcall] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_signed] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(3732), + [anon_sym_long] = ACTIONS(3732), + [anon_sym_short] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3732), + [anon_sym_register] = ACTIONS(3732), + [anon_sym_inline] = ACTIONS(3732), + [anon_sym___inline] = ACTIONS(3732), + [anon_sym___inline__] = ACTIONS(3732), + [anon_sym___forceinline] = ACTIONS(3732), + [anon_sym_thread_local] = ACTIONS(3732), + [anon_sym___thread] = ACTIONS(3732), + [anon_sym_const] = ACTIONS(3732), + [anon_sym_constexpr] = ACTIONS(3732), + [anon_sym_volatile] = ACTIONS(3732), + [anon_sym_restrict] = ACTIONS(3732), + [anon_sym___restrict__] = ACTIONS(3732), + [anon_sym__Atomic] = ACTIONS(3732), + [anon_sym__Noreturn] = ACTIONS(3732), + [anon_sym_noreturn] = ACTIONS(3732), + [anon_sym__Nonnull] = ACTIONS(3732), + [anon_sym_mutable] = ACTIONS(3732), + [anon_sym_constinit] = ACTIONS(3732), + [anon_sym_consteval] = ACTIONS(3732), + [anon_sym_alignas] = ACTIONS(3732), + [anon_sym__Alignas] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_union] = ACTIONS(3732), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_else] = ACTIONS(3732), + [anon_sym_switch] = ACTIONS(3732), + [anon_sym_case] = ACTIONS(3732), + [anon_sym_default] = ACTIONS(3732), + [anon_sym_while] = ACTIONS(3732), + [anon_sym_do] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3732), + [anon_sym_break] = ACTIONS(3732), + [anon_sym_continue] = ACTIONS(3732), + [anon_sym_goto] = ACTIONS(3732), + [anon_sym___try] = ACTIONS(3732), + [anon_sym___leave] = ACTIONS(3732), + [anon_sym_not] = ACTIONS(3732), + [anon_sym_compl] = ACTIONS(3732), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_sizeof] = ACTIONS(3732), + [anon_sym___alignof__] = ACTIONS(3732), + [anon_sym___alignof] = ACTIONS(3732), + [anon_sym__alignof] = ACTIONS(3732), + [anon_sym_alignof] = ACTIONS(3732), + [anon_sym__Alignof] = ACTIONS(3732), + [anon_sym_offsetof] = ACTIONS(3732), + [anon_sym__Generic] = ACTIONS(3732), + [anon_sym_typename] = ACTIONS(3732), + [anon_sym_asm] = ACTIONS(3732), + [anon_sym___asm__] = ACTIONS(3732), + [anon_sym___asm] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_L_SQUOTE] = ACTIONS(3734), + [anon_sym_u_SQUOTE] = ACTIONS(3734), + [anon_sym_U_SQUOTE] = ACTIONS(3734), + [anon_sym_u8_SQUOTE] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [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(3732), + [sym_false] = ACTIONS(3732), + [anon_sym_NULL] = ACTIONS(3732), + [anon_sym_nullptr] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3732), + [anon_sym_decltype] = ACTIONS(3732), + [anon_sym_explicit] = ACTIONS(3732), + [anon_sym_export] = ACTIONS(3732), + [anon_sym_module] = ACTIONS(3732), + [anon_sym_import] = ACTIONS(3732), + [anon_sym_template] = ACTIONS(3732), + [anon_sym_operator] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3732), + [anon_sym_delete] = ACTIONS(3732), + [anon_sym_throw] = ACTIONS(3732), + [anon_sym_namespace] = ACTIONS(3732), + [anon_sym_static_assert] = ACTIONS(3732), + [anon_sym_concept] = ACTIONS(3732), + [anon_sym_co_return] = ACTIONS(3732), + [anon_sym_co_yield] = ACTIONS(3732), + [anon_sym_R_DQUOTE] = ACTIONS(3734), + [anon_sym_LR_DQUOTE] = ACTIONS(3734), + [anon_sym_uR_DQUOTE] = ACTIONS(3734), + [anon_sym_UR_DQUOTE] = ACTIONS(3734), + [anon_sym_u8R_DQUOTE] = ACTIONS(3734), + [anon_sym_co_await] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3732), + [anon_sym_requires] = ACTIONS(3732), + [anon_sym_CARET_CARET] = ACTIONS(3734), + [anon_sym_LBRACK_COLON] = ACTIONS(3734), + [sym_this] = ACTIONS(3732), }, - [STATE(1029)] = { - [sym_expression] = STATE(4626), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8110), - [sym_initializer_pair] = STATE(8110), - [sym_subscript_designator] = STATE(6965), - [sym_subscript_range_designator] = STATE(6965), - [sym_field_designator] = STATE(6965), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [aux_sym_initializer_pair_repeat1] = STATE(6965), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(4367), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(225), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(486)] = { + [ts_builtin_sym_end] = ACTIONS(3892), + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_include_token1] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_PLUS] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym___cdecl] = ACTIONS(3890), + [anon_sym___clrcall] = ACTIONS(3890), + [anon_sym___stdcall] = ACTIONS(3890), + [anon_sym___fastcall] = ACTIONS(3890), + [anon_sym___thiscall] = ACTIONS(3890), + [anon_sym___vectorcall] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_if] = ACTIONS(3890), + [anon_sym_else] = ACTIONS(3890), + [anon_sym_switch] = ACTIONS(3890), + [anon_sym_case] = ACTIONS(3890), + [anon_sym_default] = ACTIONS(3890), + [anon_sym_while] = ACTIONS(3890), + [anon_sym_do] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3890), + [anon_sym_return] = ACTIONS(3890), + [anon_sym_break] = ACTIONS(3890), + [anon_sym_continue] = ACTIONS(3890), + [anon_sym_goto] = ACTIONS(3890), + [anon_sym___try] = ACTIONS(3890), + [anon_sym___leave] = ACTIONS(3890), + [anon_sym_not] = ACTIONS(3890), + [anon_sym_compl] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_sizeof] = ACTIONS(3890), + [anon_sym___alignof__] = ACTIONS(3890), + [anon_sym___alignof] = ACTIONS(3890), + [anon_sym__alignof] = ACTIONS(3890), + [anon_sym_alignof] = ACTIONS(3890), + [anon_sym__Alignof] = ACTIONS(3890), + [anon_sym_offsetof] = ACTIONS(3890), + [anon_sym__Generic] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [anon_sym_asm] = ACTIONS(3890), + [anon_sym___asm__] = ACTIONS(3890), + [anon_sym___asm] = ACTIONS(3890), + [sym_number_literal] = ACTIONS(3892), + [anon_sym_L_SQUOTE] = ACTIONS(3892), + [anon_sym_u_SQUOTE] = ACTIONS(3892), + [anon_sym_U_SQUOTE] = ACTIONS(3892), + [anon_sym_u8_SQUOTE] = ACTIONS(3892), + [anon_sym_SQUOTE] = ACTIONS(3892), + [anon_sym_L_DQUOTE] = ACTIONS(3892), + [anon_sym_u_DQUOTE] = ACTIONS(3892), + [anon_sym_U_DQUOTE] = ACTIONS(3892), + [anon_sym_u8_DQUOTE] = ACTIONS(3892), + [anon_sym_DQUOTE] = ACTIONS(3892), + [sym_true] = ACTIONS(3890), + [sym_false] = ACTIONS(3890), + [anon_sym_NULL] = ACTIONS(3890), + [anon_sym_nullptr] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_export] = ACTIONS(3890), + [anon_sym_module] = ACTIONS(3890), + [anon_sym_import] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3890), + [anon_sym_delete] = ACTIONS(3890), + [anon_sym_throw] = ACTIONS(3890), + [anon_sym_namespace] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_concept] = ACTIONS(3890), + [anon_sym_co_return] = ACTIONS(3890), + [anon_sym_co_yield] = ACTIONS(3890), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_co_await] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3890), + [anon_sym_requires] = ACTIONS(3890), + [anon_sym_CARET_CARET] = ACTIONS(3892), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [sym_this] = ACTIONS(3890), }, - [STATE(1030)] = { - [sym_expression] = STATE(4677), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_lambda_default_capture] = STATE(8098), - [sym__lambda_capture_identifier] = STATE(7726), - [sym_lambda_capture_initializer] = STATE(7726), - [sym__lambda_capture] = STATE(7726), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_identifier_parameter_pack_expansion] = STATE(7726), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3661), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(4571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4559), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(4561), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4565), - [anon_sym_EQ] = ACTIONS(4567), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(4569), + [STATE(487)] = { + [ts_builtin_sym_end] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1031)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4211), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7835), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4161), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4161), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4161), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4169), - [anon_sym_LT_LT] = ACTIONS(4161), - [anon_sym_GT_GT] = ACTIONS(4161), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(4169), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(488)] = { + [ts_builtin_sym_end] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1032)] = { - [sym_expression] = STATE(3249), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8353), - [sym__unary_right_fold] = STATE(8357), - [sym__binary_fold] = STATE(8359), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(489)] = { + [sym_catch_clause] = STATE(309), + [aux_sym_constructor_try_statement_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(3319), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), }, - [STATE(1033)] = { - [sym_expression] = STATE(4552), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8293), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8293), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4577), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(490)] = { + [ts_builtin_sym_end] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(1034)] = { - [sym_expression] = STATE(3204), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8931), - [sym__unary_right_fold] = STATE(8184), - [sym__binary_fold] = STATE(8263), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(491)] = { + [ts_builtin_sym_end] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(1035)] = { - [sym_compound_statement] = STATE(7609), - [sym_expression] = STATE(4419), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7609), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4579), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(492)] = { + [ts_builtin_sym_end] = ACTIONS(3678), + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_include_token1] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym___cdecl] = ACTIONS(3676), + [anon_sym___clrcall] = ACTIONS(3676), + [anon_sym___stdcall] = ACTIONS(3676), + [anon_sym___fastcall] = ACTIONS(3676), + [anon_sym___thiscall] = ACTIONS(3676), + [anon_sym___vectorcall] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_goto] = ACTIONS(3676), + [anon_sym___try] = ACTIONS(3676), + [anon_sym___leave] = ACTIONS(3676), + [anon_sym_not] = ACTIONS(3676), + [anon_sym_compl] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym___alignof__] = ACTIONS(3676), + [anon_sym___alignof] = ACTIONS(3676), + [anon_sym__alignof] = ACTIONS(3676), + [anon_sym_alignof] = ACTIONS(3676), + [anon_sym__Alignof] = ACTIONS(3676), + [anon_sym_offsetof] = ACTIONS(3676), + [anon_sym__Generic] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [anon_sym_asm] = ACTIONS(3676), + [anon_sym___asm__] = ACTIONS(3676), + [anon_sym___asm] = ACTIONS(3676), + [sym_number_literal] = ACTIONS(3678), + [anon_sym_L_SQUOTE] = ACTIONS(3678), + [anon_sym_u_SQUOTE] = ACTIONS(3678), + [anon_sym_U_SQUOTE] = ACTIONS(3678), + [anon_sym_u8_SQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_L_DQUOTE] = ACTIONS(3678), + [anon_sym_u_DQUOTE] = ACTIONS(3678), + [anon_sym_U_DQUOTE] = ACTIONS(3678), + [anon_sym_u8_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [anon_sym_NULL] = ACTIONS(3676), + [anon_sym_nullptr] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_export] = ACTIONS(3676), + [anon_sym_module] = ACTIONS(3676), + [anon_sym_import] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_concept] = ACTIONS(3676), + [anon_sym_co_return] = ACTIONS(3676), + [anon_sym_co_yield] = ACTIONS(3676), + [anon_sym_R_DQUOTE] = ACTIONS(3678), + [anon_sym_LR_DQUOTE] = ACTIONS(3678), + [anon_sym_uR_DQUOTE] = ACTIONS(3678), + [anon_sym_UR_DQUOTE] = ACTIONS(3678), + [anon_sym_u8R_DQUOTE] = ACTIONS(3678), + [anon_sym_co_await] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_requires] = ACTIONS(3676), + [anon_sym_CARET_CARET] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [sym_this] = ACTIONS(3676), }, - [STATE(1036)] = { - [sym_expression] = STATE(3234), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8998), - [sym__unary_right_fold] = STATE(9002), - [sym__binary_fold] = STATE(9019), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(493)] = { + [ts_builtin_sym_end] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [STATE(1037)] = { - [sym_compound_statement] = STATE(7543), - [sym_expression] = STATE(4458), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7543), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4581), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(494)] = { + [ts_builtin_sym_end] = ACTIONS(3718), + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_else] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(1038)] = { - [sym_expression] = STATE(3243), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8257), - [sym__unary_right_fold] = STATE(8258), - [sym__binary_fold] = STATE(8259), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(495)] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [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(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [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(2910), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = 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(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [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_typename] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [anon_sym___asm] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [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_explicit] = ACTIONS(2905), + [anon_sym_export] = ACTIONS(2905), + [anon_sym_module] = ACTIONS(2905), + [anon_sym_import] = 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_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(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [anon_sym_CARET_CARET] = ACTIONS(2910), + [anon_sym_LBRACK_COLON] = ACTIONS(2910), + [sym_this] = ACTIONS(2905), }, - [STATE(1039)] = { - [sym_expression] = STATE(3322), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8463), - [sym__unary_right_fold] = STATE(8467), - [sym__binary_fold] = STATE(8474), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(496)] = { + [ts_builtin_sym_end] = ACTIONS(3628), + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(1040)] = { - [sym_compound_statement] = STATE(7480), - [sym_expression] = STATE(4476), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7480), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4583), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(497)] = { + [ts_builtin_sym_end] = ACTIONS(3658), + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, - [STATE(1041)] = { - [sym_compound_statement] = STATE(7360), - [sym_expression] = STATE(4455), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7360), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(498)] = { + [ts_builtin_sym_end] = ACTIONS(3726), + [sym_identifier] = ACTIONS(3724), + [aux_sym_preproc_include_token1] = ACTIONS(3724), + [aux_sym_preproc_def_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), + [sym_preproc_directive] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym___extension__] = ACTIONS(3724), + [anon_sym_typedef] = ACTIONS(3724), + [anon_sym_virtual] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3724), + [anon_sym___attribute__] = ACTIONS(3724), + [anon_sym___attribute] = ACTIONS(3724), + [anon_sym_using] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), + [anon_sym___declspec] = ACTIONS(3724), + [anon_sym___based] = ACTIONS(3724), + [anon_sym___cdecl] = ACTIONS(3724), + [anon_sym___clrcall] = ACTIONS(3724), + [anon_sym___stdcall] = ACTIONS(3724), + [anon_sym___fastcall] = ACTIONS(3724), + [anon_sym___thiscall] = ACTIONS(3724), + [anon_sym___vectorcall] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_unsigned] = ACTIONS(3724), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_short] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_static] = ACTIONS(3724), + [anon_sym_register] = ACTIONS(3724), + [anon_sym_inline] = ACTIONS(3724), + [anon_sym___inline] = ACTIONS(3724), + [anon_sym___inline__] = ACTIONS(3724), + [anon_sym___forceinline] = ACTIONS(3724), + [anon_sym_thread_local] = ACTIONS(3724), + [anon_sym___thread] = ACTIONS(3724), + [anon_sym_const] = ACTIONS(3724), + [anon_sym_constexpr] = ACTIONS(3724), + [anon_sym_volatile] = ACTIONS(3724), + [anon_sym_restrict] = ACTIONS(3724), + [anon_sym___restrict__] = ACTIONS(3724), + [anon_sym__Atomic] = ACTIONS(3724), + [anon_sym__Noreturn] = ACTIONS(3724), + [anon_sym_noreturn] = ACTIONS(3724), + [anon_sym__Nonnull] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(3724), + [anon_sym_constinit] = ACTIONS(3724), + [anon_sym_consteval] = ACTIONS(3724), + [anon_sym_alignas] = ACTIONS(3724), + [anon_sym__Alignas] = ACTIONS(3724), + [sym_primitive_type] = ACTIONS(3724), + [anon_sym_enum] = ACTIONS(3724), + [anon_sym_class] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_union] = ACTIONS(3724), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_case] = ACTIONS(3724), + [anon_sym_default] = ACTIONS(3724), + [anon_sym_while] = ACTIONS(3724), + [anon_sym_do] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3724), + [anon_sym_return] = ACTIONS(3724), + [anon_sym_break] = ACTIONS(3724), + [anon_sym_continue] = ACTIONS(3724), + [anon_sym_goto] = ACTIONS(3724), + [anon_sym___try] = ACTIONS(3724), + [anon_sym___leave] = ACTIONS(3724), + [anon_sym_not] = ACTIONS(3724), + [anon_sym_compl] = ACTIONS(3724), + [anon_sym_DASH_DASH] = ACTIONS(3726), + [anon_sym_PLUS_PLUS] = ACTIONS(3726), + [anon_sym_sizeof] = ACTIONS(3724), + [anon_sym___alignof__] = ACTIONS(3724), + [anon_sym___alignof] = ACTIONS(3724), + [anon_sym__alignof] = ACTIONS(3724), + [anon_sym_alignof] = ACTIONS(3724), + [anon_sym__Alignof] = ACTIONS(3724), + [anon_sym_offsetof] = ACTIONS(3724), + [anon_sym__Generic] = ACTIONS(3724), + [anon_sym_typename] = ACTIONS(3724), + [anon_sym_asm] = ACTIONS(3724), + [anon_sym___asm__] = ACTIONS(3724), + [anon_sym___asm] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3726), + [anon_sym_L_SQUOTE] = ACTIONS(3726), + [anon_sym_u_SQUOTE] = ACTIONS(3726), + [anon_sym_U_SQUOTE] = ACTIONS(3726), + [anon_sym_u8_SQUOTE] = ACTIONS(3726), + [anon_sym_SQUOTE] = ACTIONS(3726), + [anon_sym_L_DQUOTE] = ACTIONS(3726), + [anon_sym_u_DQUOTE] = ACTIONS(3726), + [anon_sym_U_DQUOTE] = ACTIONS(3726), + [anon_sym_u8_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [anon_sym_NULL] = ACTIONS(3724), + [anon_sym_nullptr] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3724), + [anon_sym_decltype] = ACTIONS(3724), + [anon_sym_explicit] = ACTIONS(3724), + [anon_sym_export] = ACTIONS(3724), + [anon_sym_module] = ACTIONS(3724), + [anon_sym_import] = ACTIONS(3724), + [anon_sym_template] = ACTIONS(3724), + [anon_sym_operator] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3724), + [anon_sym_delete] = ACTIONS(3724), + [anon_sym_throw] = ACTIONS(3724), + [anon_sym_namespace] = ACTIONS(3724), + [anon_sym_static_assert] = ACTIONS(3724), + [anon_sym_concept] = ACTIONS(3724), + [anon_sym_co_return] = ACTIONS(3724), + [anon_sym_co_yield] = ACTIONS(3724), + [anon_sym_R_DQUOTE] = ACTIONS(3726), + [anon_sym_LR_DQUOTE] = ACTIONS(3726), + [anon_sym_uR_DQUOTE] = ACTIONS(3726), + [anon_sym_UR_DQUOTE] = ACTIONS(3726), + [anon_sym_u8R_DQUOTE] = ACTIONS(3726), + [anon_sym_co_await] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3724), + [anon_sym_requires] = ACTIONS(3724), + [anon_sym_CARET_CARET] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3726), + [sym_this] = ACTIONS(3724), }, - [STATE(1042)] = { - [sym_expression] = STATE(3222), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8655), - [sym__unary_right_fold] = STATE(8656), - [sym__binary_fold] = STATE(8657), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(499)] = { + [ts_builtin_sym_end] = ACTIONS(3874), + [sym_identifier] = ACTIONS(3872), + [aux_sym_preproc_include_token1] = ACTIONS(3872), + [aux_sym_preproc_def_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), + [sym_preproc_directive] = ACTIONS(3872), + [anon_sym_LPAREN2] = ACTIONS(3874), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3872), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym___extension__] = ACTIONS(3872), + [anon_sym_typedef] = ACTIONS(3872), + [anon_sym_virtual] = ACTIONS(3872), + [anon_sym_extern] = ACTIONS(3872), + [anon_sym___attribute__] = ACTIONS(3872), + [anon_sym___attribute] = ACTIONS(3872), + [anon_sym_using] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(3874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), + [anon_sym___declspec] = ACTIONS(3872), + [anon_sym___based] = ACTIONS(3872), + [anon_sym___cdecl] = ACTIONS(3872), + [anon_sym___clrcall] = ACTIONS(3872), + [anon_sym___stdcall] = ACTIONS(3872), + [anon_sym___fastcall] = ACTIONS(3872), + [anon_sym___thiscall] = ACTIONS(3872), + [anon_sym___vectorcall] = ACTIONS(3872), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_signed] = ACTIONS(3872), + [anon_sym_unsigned] = ACTIONS(3872), + [anon_sym_long] = ACTIONS(3872), + [anon_sym_short] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(3872), + [anon_sym_static] = ACTIONS(3872), + [anon_sym_register] = ACTIONS(3872), + [anon_sym_inline] = ACTIONS(3872), + [anon_sym___inline] = ACTIONS(3872), + [anon_sym___inline__] = ACTIONS(3872), + [anon_sym___forceinline] = ACTIONS(3872), + [anon_sym_thread_local] = ACTIONS(3872), + [anon_sym___thread] = ACTIONS(3872), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_constexpr] = ACTIONS(3872), + [anon_sym_volatile] = ACTIONS(3872), + [anon_sym_restrict] = ACTIONS(3872), + [anon_sym___restrict__] = ACTIONS(3872), + [anon_sym__Atomic] = ACTIONS(3872), + [anon_sym__Noreturn] = ACTIONS(3872), + [anon_sym_noreturn] = ACTIONS(3872), + [anon_sym__Nonnull] = ACTIONS(3872), + [anon_sym_mutable] = ACTIONS(3872), + [anon_sym_constinit] = ACTIONS(3872), + [anon_sym_consteval] = ACTIONS(3872), + [anon_sym_alignas] = ACTIONS(3872), + [anon_sym__Alignas] = ACTIONS(3872), + [sym_primitive_type] = ACTIONS(3872), + [anon_sym_enum] = ACTIONS(3872), + [anon_sym_class] = ACTIONS(3872), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3872), + [anon_sym_case] = ACTIONS(3872), + [anon_sym_default] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_do] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_goto] = ACTIONS(3872), + [anon_sym___try] = ACTIONS(3872), + [anon_sym___leave] = ACTIONS(3872), + [anon_sym_not] = ACTIONS(3872), + [anon_sym_compl] = ACTIONS(3872), + [anon_sym_DASH_DASH] = ACTIONS(3874), + [anon_sym_PLUS_PLUS] = ACTIONS(3874), + [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym___alignof__] = ACTIONS(3872), + [anon_sym___alignof] = ACTIONS(3872), + [anon_sym__alignof] = ACTIONS(3872), + [anon_sym_alignof] = ACTIONS(3872), + [anon_sym__Alignof] = ACTIONS(3872), + [anon_sym_offsetof] = ACTIONS(3872), + [anon_sym__Generic] = ACTIONS(3872), + [anon_sym_typename] = ACTIONS(3872), + [anon_sym_asm] = ACTIONS(3872), + [anon_sym___asm__] = ACTIONS(3872), + [anon_sym___asm] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3874), + [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(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3872), + [sym_false] = ACTIONS(3872), + [anon_sym_NULL] = ACTIONS(3872), + [anon_sym_nullptr] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3872), + [anon_sym_decltype] = ACTIONS(3872), + [anon_sym_explicit] = ACTIONS(3872), + [anon_sym_export] = ACTIONS(3872), + [anon_sym_module] = ACTIONS(3872), + [anon_sym_import] = ACTIONS(3872), + [anon_sym_template] = ACTIONS(3872), + [anon_sym_operator] = ACTIONS(3872), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_delete] = ACTIONS(3872), + [anon_sym_throw] = ACTIONS(3872), + [anon_sym_namespace] = ACTIONS(3872), + [anon_sym_static_assert] = ACTIONS(3872), + [anon_sym_concept] = ACTIONS(3872), + [anon_sym_co_return] = ACTIONS(3872), + [anon_sym_co_yield] = ACTIONS(3872), + [anon_sym_R_DQUOTE] = ACTIONS(3874), + [anon_sym_LR_DQUOTE] = ACTIONS(3874), + [anon_sym_uR_DQUOTE] = ACTIONS(3874), + [anon_sym_UR_DQUOTE] = ACTIONS(3874), + [anon_sym_u8R_DQUOTE] = ACTIONS(3874), + [anon_sym_co_await] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3872), + [anon_sym_requires] = ACTIONS(3872), + [anon_sym_CARET_CARET] = ACTIONS(3874), + [anon_sym_LBRACK_COLON] = ACTIONS(3874), + [sym_this] = ACTIONS(3872), }, - [STATE(1043)] = { - [sym_compound_statement] = STATE(7745), - [sym_expression] = STATE(4462), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7745), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4587), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(500)] = { + [ts_builtin_sym_end] = ACTIONS(3882), + [sym_identifier] = ACTIONS(3880), + [aux_sym_preproc_include_token1] = ACTIONS(3880), + [aux_sym_preproc_def_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), + [sym_preproc_directive] = ACTIONS(3880), + [anon_sym_LPAREN2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3880), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym___extension__] = ACTIONS(3880), + [anon_sym_typedef] = ACTIONS(3880), + [anon_sym_virtual] = ACTIONS(3880), + [anon_sym_extern] = ACTIONS(3880), + [anon_sym___attribute__] = ACTIONS(3880), + [anon_sym___attribute] = ACTIONS(3880), + [anon_sym_using] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), + [anon_sym___declspec] = ACTIONS(3880), + [anon_sym___based] = ACTIONS(3880), + [anon_sym___cdecl] = ACTIONS(3880), + [anon_sym___clrcall] = ACTIONS(3880), + [anon_sym___stdcall] = ACTIONS(3880), + [anon_sym___fastcall] = ACTIONS(3880), + [anon_sym___thiscall] = ACTIONS(3880), + [anon_sym___vectorcall] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3880), + [anon_sym_unsigned] = ACTIONS(3880), + [anon_sym_long] = ACTIONS(3880), + [anon_sym_short] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_static] = ACTIONS(3880), + [anon_sym_register] = ACTIONS(3880), + [anon_sym_inline] = ACTIONS(3880), + [anon_sym___inline] = ACTIONS(3880), + [anon_sym___inline__] = ACTIONS(3880), + [anon_sym___forceinline] = ACTIONS(3880), + [anon_sym_thread_local] = ACTIONS(3880), + [anon_sym___thread] = ACTIONS(3880), + [anon_sym_const] = ACTIONS(3880), + [anon_sym_constexpr] = ACTIONS(3880), + [anon_sym_volatile] = ACTIONS(3880), + [anon_sym_restrict] = ACTIONS(3880), + [anon_sym___restrict__] = ACTIONS(3880), + [anon_sym__Atomic] = ACTIONS(3880), + [anon_sym__Noreturn] = ACTIONS(3880), + [anon_sym_noreturn] = ACTIONS(3880), + [anon_sym__Nonnull] = ACTIONS(3880), + [anon_sym_mutable] = ACTIONS(3880), + [anon_sym_constinit] = ACTIONS(3880), + [anon_sym_consteval] = ACTIONS(3880), + [anon_sym_alignas] = ACTIONS(3880), + [anon_sym__Alignas] = ACTIONS(3880), + [sym_primitive_type] = ACTIONS(3880), + [anon_sym_enum] = ACTIONS(3880), + [anon_sym_class] = ACTIONS(3880), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_union] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3880), + [anon_sym_case] = ACTIONS(3880), + [anon_sym_default] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_do] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_goto] = ACTIONS(3880), + [anon_sym___try] = ACTIONS(3880), + [anon_sym___leave] = ACTIONS(3880), + [anon_sym_not] = ACTIONS(3880), + [anon_sym_compl] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_sizeof] = ACTIONS(3880), + [anon_sym___alignof__] = ACTIONS(3880), + [anon_sym___alignof] = ACTIONS(3880), + [anon_sym__alignof] = ACTIONS(3880), + [anon_sym_alignof] = ACTIONS(3880), + [anon_sym__Alignof] = ACTIONS(3880), + [anon_sym_offsetof] = ACTIONS(3880), + [anon_sym__Generic] = ACTIONS(3880), + [anon_sym_typename] = ACTIONS(3880), + [anon_sym_asm] = ACTIONS(3880), + [anon_sym___asm__] = ACTIONS(3880), + [anon_sym___asm] = ACTIONS(3880), + [sym_number_literal] = ACTIONS(3882), + [anon_sym_L_SQUOTE] = ACTIONS(3882), + [anon_sym_u_SQUOTE] = ACTIONS(3882), + [anon_sym_U_SQUOTE] = ACTIONS(3882), + [anon_sym_u8_SQUOTE] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3882), + [anon_sym_L_DQUOTE] = ACTIONS(3882), + [anon_sym_u_DQUOTE] = ACTIONS(3882), + [anon_sym_U_DQUOTE] = ACTIONS(3882), + [anon_sym_u8_DQUOTE] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3880), + [anon_sym_explicit] = ACTIONS(3880), + [anon_sym_export] = ACTIONS(3880), + [anon_sym_module] = ACTIONS(3880), + [anon_sym_import] = ACTIONS(3880), + [anon_sym_template] = ACTIONS(3880), + [anon_sym_operator] = ACTIONS(3880), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_delete] = ACTIONS(3880), + [anon_sym_throw] = ACTIONS(3880), + [anon_sym_namespace] = ACTIONS(3880), + [anon_sym_static_assert] = ACTIONS(3880), + [anon_sym_concept] = ACTIONS(3880), + [anon_sym_co_return] = ACTIONS(3880), + [anon_sym_co_yield] = 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(3880), + [anon_sym_new] = ACTIONS(3880), + [anon_sym_requires] = ACTIONS(3880), + [anon_sym_CARET_CARET] = ACTIONS(3882), + [anon_sym_LBRACK_COLON] = ACTIONS(3882), + [sym_this] = ACTIONS(3880), }, - [STATE(1044)] = { - [sym_expression] = STATE(3239), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8735), - [sym__unary_right_fold] = STATE(8244), - [sym__binary_fold] = STATE(8312), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(501)] = { + [ts_builtin_sym_end] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3700), + [aux_sym_preproc_include_token1] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym___attribute] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym___based] = ACTIONS(3700), + [anon_sym___cdecl] = ACTIONS(3700), + [anon_sym___clrcall] = ACTIONS(3700), + [anon_sym___stdcall] = ACTIONS(3700), + [anon_sym___fastcall] = ACTIONS(3700), + [anon_sym___thiscall] = ACTIONS(3700), + [anon_sym___vectorcall] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym__Nonnull] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym__Alignas] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym___try] = ACTIONS(3700), + [anon_sym___leave] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym___asm] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_explicit] = ACTIONS(3700), + [anon_sym_export] = ACTIONS(3700), + [anon_sym_module] = ACTIONS(3700), + [anon_sym_import] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_static_assert] = ACTIONS(3700), + [anon_sym_concept] = ACTIONS(3700), + [anon_sym_co_return] = ACTIONS(3700), + [anon_sym_co_yield] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [anon_sym_CARET_CARET] = ACTIONS(3702), + [anon_sym_LBRACK_COLON] = ACTIONS(3702), + [sym_this] = ACTIONS(3700), }, - [STATE(1045)] = { - [sym_expression] = STATE(4230), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(7027), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(4591), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(4593), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4595), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(502)] = { + [ts_builtin_sym_end] = ACTIONS(2954), + [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(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [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(2954), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = 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(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [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_typename] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [anon_sym___asm] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [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_explicit] = ACTIONS(2949), + [anon_sym_export] = ACTIONS(2949), + [anon_sym_module] = ACTIONS(2949), + [anon_sym_import] = 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_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(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [anon_sym_CARET_CARET] = ACTIONS(2954), + [anon_sym_LBRACK_COLON] = ACTIONS(2954), + [sym_this] = ACTIONS(2949), }, - [STATE(1046)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_identifier_parameter_pack_expansion] = STATE(8033), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3699), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(4597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4601), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4601), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(503)] = { + [sym_catch_clause] = STATE(507), + [aux_sym_constructor_try_statement_repeat1] = STATE(507), + [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_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_else] = 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_typename] = ACTIONS(3148), + [anon_sym_asm] = 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_explicit] = 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_static_assert] = ACTIONS(3148), + [anon_sym_concept] = ACTIONS(3148), + [anon_sym_co_return] = ACTIONS(3148), + [anon_sym_co_yield] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(4129), + [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), + [anon_sym_CARET_CARET] = ACTIONS(3150), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [sym_this] = ACTIONS(3148), }, - [STATE(1047)] = { - [sym_expression] = STATE(4616), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8996), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8996), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(504)] = { + [ts_builtin_sym_end] = ACTIONS(3896), + [sym_identifier] = ACTIONS(3894), + [aux_sym_preproc_include_token1] = ACTIONS(3894), + [aux_sym_preproc_def_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), + [sym_preproc_directive] = ACTIONS(3894), + [anon_sym_LPAREN2] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3896), + [anon_sym_TILDE] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AMP_AMP] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym___extension__] = ACTIONS(3894), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_virtual] = ACTIONS(3894), + [anon_sym_extern] = ACTIONS(3894), + [anon_sym___attribute__] = ACTIONS(3894), + [anon_sym___attribute] = ACTIONS(3894), + [anon_sym_using] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), + [anon_sym___declspec] = ACTIONS(3894), + [anon_sym___based] = ACTIONS(3894), + [anon_sym___cdecl] = ACTIONS(3894), + [anon_sym___clrcall] = ACTIONS(3894), + [anon_sym___stdcall] = ACTIONS(3894), + [anon_sym___fastcall] = ACTIONS(3894), + [anon_sym___thiscall] = ACTIONS(3894), + [anon_sym___vectorcall] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_signed] = ACTIONS(3894), + [anon_sym_unsigned] = ACTIONS(3894), + [anon_sym_long] = ACTIONS(3894), + [anon_sym_short] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_static] = ACTIONS(3894), + [anon_sym_register] = ACTIONS(3894), + [anon_sym_inline] = ACTIONS(3894), + [anon_sym___inline] = ACTIONS(3894), + [anon_sym___inline__] = ACTIONS(3894), + [anon_sym___forceinline] = ACTIONS(3894), + [anon_sym_thread_local] = ACTIONS(3894), + [anon_sym___thread] = ACTIONS(3894), + [anon_sym_const] = ACTIONS(3894), + [anon_sym_constexpr] = ACTIONS(3894), + [anon_sym_volatile] = ACTIONS(3894), + [anon_sym_restrict] = ACTIONS(3894), + [anon_sym___restrict__] = ACTIONS(3894), + [anon_sym__Atomic] = ACTIONS(3894), + [anon_sym__Noreturn] = ACTIONS(3894), + [anon_sym_noreturn] = ACTIONS(3894), + [anon_sym__Nonnull] = ACTIONS(3894), + [anon_sym_mutable] = ACTIONS(3894), + [anon_sym_constinit] = ACTIONS(3894), + [anon_sym_consteval] = ACTIONS(3894), + [anon_sym_alignas] = ACTIONS(3894), + [anon_sym__Alignas] = ACTIONS(3894), + [sym_primitive_type] = ACTIONS(3894), + [anon_sym_enum] = ACTIONS(3894), + [anon_sym_class] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3894), + [anon_sym_union] = ACTIONS(3894), + [anon_sym_if] = ACTIONS(3894), + [anon_sym_else] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3894), + [anon_sym_case] = ACTIONS(3894), + [anon_sym_default] = ACTIONS(3894), + [anon_sym_while] = ACTIONS(3894), + [anon_sym_do] = ACTIONS(3894), + [anon_sym_for] = ACTIONS(3894), + [anon_sym_return] = ACTIONS(3894), + [anon_sym_break] = ACTIONS(3894), + [anon_sym_continue] = ACTIONS(3894), + [anon_sym_goto] = ACTIONS(3894), + [anon_sym___try] = ACTIONS(3894), + [anon_sym___leave] = ACTIONS(3894), + [anon_sym_not] = ACTIONS(3894), + [anon_sym_compl] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3896), + [anon_sym_PLUS_PLUS] = ACTIONS(3896), + [anon_sym_sizeof] = ACTIONS(3894), + [anon_sym___alignof__] = ACTIONS(3894), + [anon_sym___alignof] = ACTIONS(3894), + [anon_sym__alignof] = ACTIONS(3894), + [anon_sym_alignof] = ACTIONS(3894), + [anon_sym__Alignof] = ACTIONS(3894), + [anon_sym_offsetof] = ACTIONS(3894), + [anon_sym__Generic] = ACTIONS(3894), + [anon_sym_typename] = ACTIONS(3894), + [anon_sym_asm] = ACTIONS(3894), + [anon_sym___asm__] = ACTIONS(3894), + [anon_sym___asm] = ACTIONS(3894), + [sym_number_literal] = ACTIONS(3896), + [anon_sym_L_SQUOTE] = ACTIONS(3896), + [anon_sym_u_SQUOTE] = ACTIONS(3896), + [anon_sym_U_SQUOTE] = ACTIONS(3896), + [anon_sym_u8_SQUOTE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3896), + [anon_sym_L_DQUOTE] = ACTIONS(3896), + [anon_sym_u_DQUOTE] = ACTIONS(3896), + [anon_sym_U_DQUOTE] = ACTIONS(3896), + [anon_sym_u8_DQUOTE] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym_true] = ACTIONS(3894), + [sym_false] = ACTIONS(3894), + [anon_sym_NULL] = ACTIONS(3894), + [anon_sym_nullptr] = ACTIONS(3894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3894), + [anon_sym_decltype] = ACTIONS(3894), + [anon_sym_explicit] = ACTIONS(3894), + [anon_sym_export] = ACTIONS(3894), + [anon_sym_module] = ACTIONS(3894), + [anon_sym_import] = ACTIONS(3894), + [anon_sym_template] = ACTIONS(3894), + [anon_sym_operator] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3894), + [anon_sym_delete] = ACTIONS(3894), + [anon_sym_throw] = ACTIONS(3894), + [anon_sym_namespace] = ACTIONS(3894), + [anon_sym_static_assert] = ACTIONS(3894), + [anon_sym_concept] = ACTIONS(3894), + [anon_sym_co_return] = ACTIONS(3894), + [anon_sym_co_yield] = ACTIONS(3894), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_co_await] = ACTIONS(3894), + [anon_sym_new] = ACTIONS(3894), + [anon_sym_requires] = ACTIONS(3894), + [anon_sym_CARET_CARET] = ACTIONS(3896), + [anon_sym_LBRACK_COLON] = ACTIONS(3896), + [sym_this] = ACTIONS(3894), }, - [STATE(1048)] = { - [sym_compound_statement] = STATE(7596), - [sym_expression] = STATE(4413), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7596), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4607), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(505)] = { + [ts_builtin_sym_end] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), }, - [STATE(1049)] = { - [sym_expression] = STATE(4580), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8787), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8787), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4609), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(506)] = { + [ts_builtin_sym_end] = ACTIONS(3870), + [sym_identifier] = ACTIONS(3868), + [aux_sym_preproc_include_token1] = ACTIONS(3868), + [aux_sym_preproc_def_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), + [sym_preproc_directive] = ACTIONS(3868), + [anon_sym_LPAREN2] = ACTIONS(3870), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3868), + [anon_sym_PLUS] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3870), + [anon_sym_AMP_AMP] = ACTIONS(3870), + [anon_sym_AMP] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym___extension__] = ACTIONS(3868), + [anon_sym_typedef] = ACTIONS(3868), + [anon_sym_virtual] = ACTIONS(3868), + [anon_sym_extern] = ACTIONS(3868), + [anon_sym___attribute__] = ACTIONS(3868), + [anon_sym___attribute] = ACTIONS(3868), + [anon_sym_using] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), + [anon_sym___declspec] = ACTIONS(3868), + [anon_sym___based] = ACTIONS(3868), + [anon_sym___cdecl] = ACTIONS(3868), + [anon_sym___clrcall] = ACTIONS(3868), + [anon_sym___stdcall] = ACTIONS(3868), + [anon_sym___fastcall] = ACTIONS(3868), + [anon_sym___thiscall] = ACTIONS(3868), + [anon_sym___vectorcall] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_signed] = ACTIONS(3868), + [anon_sym_unsigned] = ACTIONS(3868), + [anon_sym_long] = ACTIONS(3868), + [anon_sym_short] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3868), + [anon_sym_static] = ACTIONS(3868), + [anon_sym_register] = ACTIONS(3868), + [anon_sym_inline] = ACTIONS(3868), + [anon_sym___inline] = ACTIONS(3868), + [anon_sym___inline__] = ACTIONS(3868), + [anon_sym___forceinline] = ACTIONS(3868), + [anon_sym_thread_local] = ACTIONS(3868), + [anon_sym___thread] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(3868), + [anon_sym_constexpr] = ACTIONS(3868), + [anon_sym_volatile] = ACTIONS(3868), + [anon_sym_restrict] = ACTIONS(3868), + [anon_sym___restrict__] = ACTIONS(3868), + [anon_sym__Atomic] = ACTIONS(3868), + [anon_sym__Noreturn] = ACTIONS(3868), + [anon_sym_noreturn] = ACTIONS(3868), + [anon_sym__Nonnull] = ACTIONS(3868), + [anon_sym_mutable] = ACTIONS(3868), + [anon_sym_constinit] = ACTIONS(3868), + [anon_sym_consteval] = ACTIONS(3868), + [anon_sym_alignas] = ACTIONS(3868), + [anon_sym__Alignas] = ACTIONS(3868), + [sym_primitive_type] = ACTIONS(3868), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3868), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_union] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3868), + [anon_sym_case] = ACTIONS(3868), + [anon_sym_default] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_do] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_goto] = ACTIONS(3868), + [anon_sym___try] = ACTIONS(3868), + [anon_sym___leave] = ACTIONS(3868), + [anon_sym_not] = ACTIONS(3868), + [anon_sym_compl] = ACTIONS(3868), + [anon_sym_DASH_DASH] = ACTIONS(3870), + [anon_sym_PLUS_PLUS] = ACTIONS(3870), + [anon_sym_sizeof] = ACTIONS(3868), + [anon_sym___alignof__] = ACTIONS(3868), + [anon_sym___alignof] = ACTIONS(3868), + [anon_sym__alignof] = ACTIONS(3868), + [anon_sym_alignof] = ACTIONS(3868), + [anon_sym__Alignof] = ACTIONS(3868), + [anon_sym_offsetof] = ACTIONS(3868), + [anon_sym__Generic] = ACTIONS(3868), + [anon_sym_typename] = ACTIONS(3868), + [anon_sym_asm] = ACTIONS(3868), + [anon_sym___asm__] = ACTIONS(3868), + [anon_sym___asm] = ACTIONS(3868), + [sym_number_literal] = ACTIONS(3870), + [anon_sym_L_SQUOTE] = ACTIONS(3870), + [anon_sym_u_SQUOTE] = ACTIONS(3870), + [anon_sym_U_SQUOTE] = ACTIONS(3870), + [anon_sym_u8_SQUOTE] = ACTIONS(3870), + [anon_sym_SQUOTE] = ACTIONS(3870), + [anon_sym_L_DQUOTE] = ACTIONS(3870), + [anon_sym_u_DQUOTE] = ACTIONS(3870), + [anon_sym_U_DQUOTE] = ACTIONS(3870), + [anon_sym_u8_DQUOTE] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [anon_sym_NULL] = ACTIONS(3868), + [anon_sym_nullptr] = ACTIONS(3868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3868), + [anon_sym_decltype] = ACTIONS(3868), + [anon_sym_explicit] = ACTIONS(3868), + [anon_sym_export] = ACTIONS(3868), + [anon_sym_module] = ACTIONS(3868), + [anon_sym_import] = ACTIONS(3868), + [anon_sym_template] = ACTIONS(3868), + [anon_sym_operator] = ACTIONS(3868), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3868), + [anon_sym_throw] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_static_assert] = ACTIONS(3868), + [anon_sym_concept] = ACTIONS(3868), + [anon_sym_co_return] = ACTIONS(3868), + [anon_sym_co_yield] = ACTIONS(3868), + [anon_sym_R_DQUOTE] = ACTIONS(3870), + [anon_sym_LR_DQUOTE] = ACTIONS(3870), + [anon_sym_uR_DQUOTE] = ACTIONS(3870), + [anon_sym_UR_DQUOTE] = ACTIONS(3870), + [anon_sym_u8R_DQUOTE] = ACTIONS(3870), + [anon_sym_co_await] = ACTIONS(3868), + [anon_sym_new] = ACTIONS(3868), + [anon_sym_requires] = ACTIONS(3868), + [anon_sym_CARET_CARET] = ACTIONS(3870), + [anon_sym_LBRACK_COLON] = ACTIONS(3870), + [sym_this] = ACTIONS(3868), }, - [STATE(1050)] = { - [sym_expression] = STATE(3238), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8468), - [sym__unary_right_fold] = STATE(8688), - [sym__binary_fold] = STATE(8748), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(507)] = { + [sym_catch_clause] = STATE(507), + [aux_sym_constructor_try_statement_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_include_token1] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym___cdecl] = ACTIONS(3137), + [anon_sym___clrcall] = ACTIONS(3137), + [anon_sym___stdcall] = ACTIONS(3137), + [anon_sym___fastcall] = ACTIONS(3137), + [anon_sym___thiscall] = ACTIONS(3137), + [anon_sym___vectorcall] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym___try] = ACTIONS(3137), + [anon_sym___leave] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_compl] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym___alignof__] = ACTIONS(3137), + [anon_sym___alignof] = ACTIONS(3137), + [anon_sym__alignof] = ACTIONS(3137), + [anon_sym_alignof] = ACTIONS(3137), + [anon_sym__Alignof] = ACTIONS(3137), + [anon_sym_offsetof] = ACTIONS(3137), + [anon_sym__Generic] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym___asm__] = ACTIONS(3137), + [anon_sym___asm] = ACTIONS(3137), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_L_SQUOTE] = ACTIONS(3139), + [anon_sym_u_SQUOTE] = ACTIONS(3139), + [anon_sym_U_SQUOTE] = ACTIONS(3139), + [anon_sym_u8_SQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_L_DQUOTE] = ACTIONS(3139), + [anon_sym_u_DQUOTE] = ACTIONS(3139), + [anon_sym_U_DQUOTE] = ACTIONS(3139), + [anon_sym_u8_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [anon_sym_NULL] = ACTIONS(3137), + [anon_sym_nullptr] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_namespace] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_concept] = ACTIONS(3137), + [anon_sym_co_return] = ACTIONS(3137), + [anon_sym_co_yield] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(4131), + [anon_sym_R_DQUOTE] = ACTIONS(3139), + [anon_sym_LR_DQUOTE] = ACTIONS(3139), + [anon_sym_uR_DQUOTE] = ACTIONS(3139), + [anon_sym_UR_DQUOTE] = ACTIONS(3139), + [anon_sym_u8R_DQUOTE] = ACTIONS(3139), + [anon_sym_co_await] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_requires] = ACTIONS(3137), + [anon_sym_CARET_CARET] = ACTIONS(3139), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [sym_this] = ACTIONS(3137), }, - [STATE(1051)] = { - [sym_compound_statement] = STATE(7724), - [sym_expression] = STATE(4450), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7724), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(508)] = { + [ts_builtin_sym_end] = ACTIONS(3866), + [sym_identifier] = ACTIONS(3864), + [aux_sym_preproc_include_token1] = ACTIONS(3864), + [aux_sym_preproc_def_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(3866), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_SEMI] = ACTIONS(3866), + [anon_sym___extension__] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_virtual] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym___attribute__] = ACTIONS(3864), + [anon_sym___attribute] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), + [anon_sym___declspec] = ACTIONS(3864), + [anon_sym___based] = ACTIONS(3864), + [anon_sym___cdecl] = ACTIONS(3864), + [anon_sym___clrcall] = ACTIONS(3864), + [anon_sym___stdcall] = ACTIONS(3864), + [anon_sym___fastcall] = ACTIONS(3864), + [anon_sym___thiscall] = ACTIONS(3864), + [anon_sym___vectorcall] = ACTIONS(3864), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym___inline] = ACTIONS(3864), + [anon_sym___inline__] = ACTIONS(3864), + [anon_sym___forceinline] = ACTIONS(3864), + [anon_sym_thread_local] = ACTIONS(3864), + [anon_sym___thread] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym___restrict__] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym__Noreturn] = ACTIONS(3864), + [anon_sym_noreturn] = ACTIONS(3864), + [anon_sym__Nonnull] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_constinit] = ACTIONS(3864), + [anon_sym_consteval] = ACTIONS(3864), + [anon_sym_alignas] = ACTIONS(3864), + [anon_sym__Alignas] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_switch] = ACTIONS(3864), + [anon_sym_case] = ACTIONS(3864), + [anon_sym_default] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_do] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_goto] = ACTIONS(3864), + [anon_sym___try] = ACTIONS(3864), + [anon_sym___leave] = ACTIONS(3864), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3866), + [anon_sym_sizeof] = ACTIONS(3864), + [anon_sym___alignof__] = ACTIONS(3864), + [anon_sym___alignof] = ACTIONS(3864), + [anon_sym__alignof] = ACTIONS(3864), + [anon_sym_alignof] = ACTIONS(3864), + [anon_sym__Alignof] = ACTIONS(3864), + [anon_sym_offsetof] = ACTIONS(3864), + [anon_sym__Generic] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(3864), + [anon_sym___asm__] = ACTIONS(3864), + [anon_sym___asm] = ACTIONS(3864), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_L_SQUOTE] = ACTIONS(3866), + [anon_sym_u_SQUOTE] = ACTIONS(3866), + [anon_sym_U_SQUOTE] = ACTIONS(3866), + [anon_sym_u8_SQUOTE] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3866), + [anon_sym_L_DQUOTE] = ACTIONS(3866), + [anon_sym_u_DQUOTE] = ACTIONS(3866), + [anon_sym_U_DQUOTE] = ACTIONS(3866), + [anon_sym_u8_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_true] = ACTIONS(3864), + [sym_false] = ACTIONS(3864), + [anon_sym_NULL] = ACTIONS(3864), + [anon_sym_nullptr] = ACTIONS(3864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3864), + [anon_sym_decltype] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_export] = ACTIONS(3864), + [anon_sym_module] = ACTIONS(3864), + [anon_sym_import] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_operator] = ACTIONS(3864), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_delete] = ACTIONS(3864), + [anon_sym_throw] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_static_assert] = ACTIONS(3864), + [anon_sym_concept] = ACTIONS(3864), + [anon_sym_co_return] = ACTIONS(3864), + [anon_sym_co_yield] = ACTIONS(3864), + [anon_sym_R_DQUOTE] = ACTIONS(3866), + [anon_sym_LR_DQUOTE] = ACTIONS(3866), + [anon_sym_uR_DQUOTE] = ACTIONS(3866), + [anon_sym_UR_DQUOTE] = ACTIONS(3866), + [anon_sym_u8R_DQUOTE] = ACTIONS(3866), + [anon_sym_co_await] = ACTIONS(3864), + [anon_sym_new] = ACTIONS(3864), + [anon_sym_requires] = ACTIONS(3864), + [anon_sym_CARET_CARET] = ACTIONS(3866), + [anon_sym_LBRACK_COLON] = ACTIONS(3866), + [sym_this] = ACTIONS(3864), }, - [STATE(1052)] = { - [sym_expression] = STATE(4621), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8260), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8260), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(509)] = { + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, - [STATE(1053)] = { - [sym_expression] = STATE(4565), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8281), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8281), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(510)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [aux_sym_preproc_else_token1] = ACTIONS(4134), + [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [STATE(1054)] = { - [sym_expression] = STATE(3250), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8809), - [sym__binary_fold] = STATE(8817), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(511)] = { + [ts_builtin_sym_end] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_export] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_import] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), }, - [STATE(1055)] = { - [sym_expression] = STATE(4274), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(7065), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(4617), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(4619), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4621), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(512)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token2] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [aux_sym_preproc_else_token1] = ACTIONS(4138), + [aux_sym_preproc_elif_token1] = ACTIONS(4138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4141), + [anon_sym_L_SQUOTE] = ACTIONS(4141), + [anon_sym_u_SQUOTE] = ACTIONS(4141), + [anon_sym_U_SQUOTE] = ACTIONS(4141), + [anon_sym_u8_SQUOTE] = ACTIONS(4141), + [anon_sym_SQUOTE] = ACTIONS(4141), + [anon_sym_L_DQUOTE] = ACTIONS(4141), + [anon_sym_u_DQUOTE] = ACTIONS(4141), + [anon_sym_U_DQUOTE] = ACTIONS(4141), + [anon_sym_u8_DQUOTE] = ACTIONS(4141), + [anon_sym_DQUOTE] = ACTIONS(4141), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4141), + [anon_sym_LR_DQUOTE] = ACTIONS(4141), + [anon_sym_uR_DQUOTE] = ACTIONS(4141), + [anon_sym_UR_DQUOTE] = ACTIONS(4141), + [anon_sym_u8R_DQUOTE] = ACTIONS(4141), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4141), + [anon_sym_LBRACK_COLON] = ACTIONS(4141), + [sym_this] = ACTIONS(4138), }, - [STATE(1056)] = { - [sym_expression] = STATE(4276), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(7003), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(4623), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(4625), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(4627), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(513)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(1057)] = { - [sym_compound_statement] = STATE(8435), - [sym_expression] = STATE(3195), - [sym__string] = STATE(2934), - [sym_comma_expression] = STATE(8435), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym__assignment_expression_lhs] = STATE(8759), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(514)] = { + [ts_builtin_sym_end] = ACTIONS(3694), + [sym_identifier] = ACTIONS(3692), + [aux_sym_preproc_include_token1] = ACTIONS(3692), + [aux_sym_preproc_def_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), + [sym_preproc_directive] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym___extension__] = ACTIONS(3692), + [anon_sym_typedef] = ACTIONS(3692), + [anon_sym_virtual] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3692), + [anon_sym___attribute__] = ACTIONS(3692), + [anon_sym___attribute] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), + [anon_sym___declspec] = ACTIONS(3692), + [anon_sym___based] = ACTIONS(3692), + [anon_sym___cdecl] = ACTIONS(3692), + [anon_sym___clrcall] = ACTIONS(3692), + [anon_sym___stdcall] = ACTIONS(3692), + [anon_sym___fastcall] = ACTIONS(3692), + [anon_sym___thiscall] = ACTIONS(3692), + [anon_sym___vectorcall] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_signed] = ACTIONS(3692), + [anon_sym_unsigned] = ACTIONS(3692), + [anon_sym_long] = ACTIONS(3692), + [anon_sym_short] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_register] = ACTIONS(3692), + [anon_sym_inline] = ACTIONS(3692), + [anon_sym___inline] = ACTIONS(3692), + [anon_sym___inline__] = ACTIONS(3692), + [anon_sym___forceinline] = ACTIONS(3692), + [anon_sym_thread_local] = ACTIONS(3692), + [anon_sym___thread] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym___restrict__] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym__Noreturn] = ACTIONS(3692), + [anon_sym_noreturn] = ACTIONS(3692), + [anon_sym__Nonnull] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_alignas] = ACTIONS(3692), + [anon_sym__Alignas] = ACTIONS(3692), + [sym_primitive_type] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3692), + [anon_sym_union] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3692), + [anon_sym___leave] = ACTIONS(3692), + [anon_sym_not] = ACTIONS(3692), + [anon_sym_compl] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_sizeof] = ACTIONS(3692), + [anon_sym___alignof__] = ACTIONS(3692), + [anon_sym___alignof] = ACTIONS(3692), + [anon_sym__alignof] = ACTIONS(3692), + [anon_sym_alignof] = ACTIONS(3692), + [anon_sym__Alignof] = ACTIONS(3692), + [anon_sym_offsetof] = ACTIONS(3692), + [anon_sym__Generic] = ACTIONS(3692), + [anon_sym_typename] = ACTIONS(3692), + [anon_sym_asm] = ACTIONS(3692), + [anon_sym___asm__] = ACTIONS(3692), + [anon_sym___asm] = ACTIONS(3692), + [sym_number_literal] = ACTIONS(3694), + [anon_sym_L_SQUOTE] = ACTIONS(3694), + [anon_sym_u_SQUOTE] = ACTIONS(3694), + [anon_sym_U_SQUOTE] = ACTIONS(3694), + [anon_sym_u8_SQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_L_DQUOTE] = ACTIONS(3694), + [anon_sym_u_DQUOTE] = ACTIONS(3694), + [anon_sym_U_DQUOTE] = ACTIONS(3694), + [anon_sym_u8_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [anon_sym_NULL] = ACTIONS(3692), + [anon_sym_nullptr] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_explicit] = ACTIONS(3692), + [anon_sym_export] = ACTIONS(3692), + [anon_sym_module] = ACTIONS(3692), + [anon_sym_import] = ACTIONS(3692), + [anon_sym_template] = ACTIONS(3692), + [anon_sym_operator] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_static_assert] = ACTIONS(3692), + [anon_sym_concept] = ACTIONS(3692), + [anon_sym_co_return] = ACTIONS(3692), + [anon_sym_co_yield] = ACTIONS(3692), + [anon_sym_R_DQUOTE] = ACTIONS(3694), + [anon_sym_LR_DQUOTE] = ACTIONS(3694), + [anon_sym_uR_DQUOTE] = ACTIONS(3694), + [anon_sym_UR_DQUOTE] = ACTIONS(3694), + [anon_sym_u8R_DQUOTE] = ACTIONS(3694), + [anon_sym_co_await] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_requires] = ACTIONS(3692), + [anon_sym_CARET_CARET] = ACTIONS(3694), + [anon_sym_LBRACK_COLON] = ACTIONS(3694), + [sym_this] = ACTIONS(3692), }, - [STATE(1058)] = { - [sym_compound_statement] = STATE(7944), - [sym_expression] = STATE(4548), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7944), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(515)] = { + [ts_builtin_sym_end] = ACTIONS(3878), + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_export] = ACTIONS(3876), + [anon_sym_module] = ACTIONS(3876), + [anon_sym_import] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1059)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4629), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(516)] = { + [ts_builtin_sym_end] = ACTIONS(3878), + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_export] = ACTIONS(3876), + [anon_sym_module] = ACTIONS(3876), + [anon_sym_import] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1060)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4632), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(517)] = { + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token2] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym___try] = ACTIONS(4148), + [anon_sym___leave] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(1061)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4635), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(518)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym___try] = ACTIONS(4152), + [anon_sym___leave] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), }, - [STATE(1062)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4638), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(519)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1063)] = { - [sym_expression] = STATE(4405), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(7416), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4641), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(520)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [aux_sym_preproc_else_token1] = ACTIONS(4160), + [aux_sym_preproc_elif_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1064)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4643), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(521)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym___try] = ACTIONS(4164), + [anon_sym___leave] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(1065)] = { - [sym_expression] = STATE(4473), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(7630), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4646), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(522)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym___try] = ACTIONS(4168), + [anon_sym___leave] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(1066)] = { - [sym_expression] = STATE(4427), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(7686), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4648), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(523)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym___try] = ACTIONS(4172), + [anon_sym___leave] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(1067)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4650), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(524)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [aux_sym_preproc_else_token1] = ACTIONS(4176), + [aux_sym_preproc_elif_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym___try] = ACTIONS(4176), + [anon_sym___leave] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(1068)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(525)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [aux_sym_preproc_else_token1] = ACTIONS(4180), + [aux_sym_preproc_elif_token1] = ACTIONS(4180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym___try] = ACTIONS(4180), + [anon_sym___leave] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(1069)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(526)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [aux_sym_preproc_else_token1] = ACTIONS(4184), + [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym___try] = ACTIONS(4184), + [anon_sym___leave] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(1070)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4659), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(527)] = { + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token2] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [aux_sym_preproc_else_token1] = ACTIONS(4188), + [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym___try] = ACTIONS(4188), + [anon_sym___leave] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(1071)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4662), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(528)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [aux_sym_preproc_else_token1] = ACTIONS(4192), + [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym___try] = ACTIONS(4192), + [anon_sym___leave] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(1072)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(529)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token2] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [aux_sym_preproc_else_token1] = ACTIONS(4196), + [aux_sym_preproc_elif_token1] = ACTIONS(4196), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym___try] = ACTIONS(4196), + [anon_sym___leave] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), }, - [STATE(1073)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(530)] = { + [ts_builtin_sym_end] = ACTIONS(4186), + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [anon_sym_COMMA] = ACTIONS(4186), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(1074)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), + [STATE(531)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(2234), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_QMARK] = ACTIONS(2026), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1075)] = { - [sym_expression] = STATE(4503), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8737), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4670), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_COLON_RBRACK] = ACTIONS(2026), + [sym_this] = ACTIONS(237), }, - [STATE(1076)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(532)] = { + [ts_builtin_sym_end] = ACTIONS(4136), + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [anon_sym_COMMA] = ACTIONS(4136), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_export] = ACTIONS(4134), + [anon_sym_module] = ACTIONS(4134), + [anon_sym_import] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [STATE(1077)] = { - [sym_expression] = STATE(4594), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8219), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4674), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(533)] = { + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [anon_sym_RPAREN] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_import] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1078)] = { - [sym_expression] = STATE(3212), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_initializer_list] = STATE(3630), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(534)] = { + [sym_catch_clause] = STATE(507), + [aux_sym_constructor_try_statement_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_include_token1] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym___cdecl] = ACTIONS(3554), + [anon_sym___clrcall] = ACTIONS(3554), + [anon_sym___stdcall] = ACTIONS(3554), + [anon_sym___fastcall] = ACTIONS(3554), + [anon_sym___thiscall] = ACTIONS(3554), + [anon_sym___vectorcall] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_goto] = ACTIONS(3554), + [anon_sym___try] = ACTIONS(3554), + [anon_sym___leave] = ACTIONS(3554), + [anon_sym_not] = ACTIONS(3554), + [anon_sym_compl] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3554), + [anon_sym___alignof__] = ACTIONS(3554), + [anon_sym___alignof] = ACTIONS(3554), + [anon_sym__alignof] = ACTIONS(3554), + [anon_sym_alignof] = ACTIONS(3554), + [anon_sym__Alignof] = ACTIONS(3554), + [anon_sym_offsetof] = ACTIONS(3554), + [anon_sym__Generic] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [anon_sym_asm] = ACTIONS(3554), + [anon_sym___asm__] = ACTIONS(3554), + [anon_sym___asm] = ACTIONS(3554), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_L_SQUOTE] = ACTIONS(3556), + [anon_sym_u_SQUOTE] = ACTIONS(3556), + [anon_sym_U_SQUOTE] = ACTIONS(3556), + [anon_sym_u8_SQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_L_DQUOTE] = ACTIONS(3556), + [anon_sym_u_DQUOTE] = ACTIONS(3556), + [anon_sym_U_DQUOTE] = ACTIONS(3556), + [anon_sym_u8_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [anon_sym_NULL] = ACTIONS(3554), + [anon_sym_nullptr] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_concept] = ACTIONS(3554), + [anon_sym_co_return] = ACTIONS(3554), + [anon_sym_co_yield] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(4129), + [anon_sym_R_DQUOTE] = ACTIONS(3556), + [anon_sym_LR_DQUOTE] = ACTIONS(3556), + [anon_sym_uR_DQUOTE] = ACTIONS(3556), + [anon_sym_UR_DQUOTE] = ACTIONS(3556), + [anon_sym_u8R_DQUOTE] = ACTIONS(3556), + [anon_sym_co_await] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_requires] = ACTIONS(3554), + [anon_sym_CARET_CARET] = ACTIONS(3556), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(3554), }, - [STATE(1079)] = { - [sym_expression] = STATE(4492), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8175), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(535)] = { + [sym_catch_clause] = STATE(471), + [aux_sym_constructor_try_statement_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_include_token1] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token2] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym___cdecl] = ACTIONS(3554), + [anon_sym___clrcall] = ACTIONS(3554), + [anon_sym___stdcall] = ACTIONS(3554), + [anon_sym___fastcall] = ACTIONS(3554), + [anon_sym___thiscall] = ACTIONS(3554), + [anon_sym___vectorcall] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_goto] = ACTIONS(3554), + [anon_sym___try] = ACTIONS(3554), + [anon_sym___leave] = ACTIONS(3554), + [anon_sym_not] = ACTIONS(3554), + [anon_sym_compl] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_sizeof] = ACTIONS(3554), + [anon_sym___alignof__] = ACTIONS(3554), + [anon_sym___alignof] = ACTIONS(3554), + [anon_sym__alignof] = ACTIONS(3554), + [anon_sym_alignof] = ACTIONS(3554), + [anon_sym__Alignof] = ACTIONS(3554), + [anon_sym_offsetof] = ACTIONS(3554), + [anon_sym__Generic] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [anon_sym_asm] = ACTIONS(3554), + [anon_sym___asm__] = ACTIONS(3554), + [anon_sym___asm] = ACTIONS(3554), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_L_SQUOTE] = ACTIONS(3556), + [anon_sym_u_SQUOTE] = ACTIONS(3556), + [anon_sym_U_SQUOTE] = ACTIONS(3556), + [anon_sym_u8_SQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_L_DQUOTE] = ACTIONS(3556), + [anon_sym_u_DQUOTE] = ACTIONS(3556), + [anon_sym_U_DQUOTE] = ACTIONS(3556), + [anon_sym_u8_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [anon_sym_NULL] = ACTIONS(3554), + [anon_sym_nullptr] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_concept] = ACTIONS(3554), + [anon_sym_co_return] = ACTIONS(3554), + [anon_sym_co_yield] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(4094), + [anon_sym_R_DQUOTE] = ACTIONS(3556), + [anon_sym_LR_DQUOTE] = ACTIONS(3556), + [anon_sym_uR_DQUOTE] = ACTIONS(3556), + [anon_sym_UR_DQUOTE] = ACTIONS(3556), + [anon_sym_u8R_DQUOTE] = ACTIONS(3556), + [anon_sym_co_await] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_requires] = ACTIONS(3554), + [anon_sym_CARET_CARET] = ACTIONS(3556), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(3554), }, - [STATE(1080)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(536)] = { + [sym_catch_clause] = STATE(507), + [aux_sym_constructor_try_statement_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(4129), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), }, - [STATE(1081)] = { - [sym_expression] = STATE(4358), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(7341), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(537)] = { + [sym_catch_clause] = STATE(471), + [aux_sym_constructor_try_statement_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(4094), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), }, - [STATE(1082)] = { - [sym_expression] = STATE(4507), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8448), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4680), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(538)] = { + [sym_else_clause] = STATE(552), + [sym_identifier] = ACTIONS(3612), + [aux_sym_preproc_include_token1] = ACTIONS(3612), + [aux_sym_preproc_def_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token2] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), + [sym_preproc_directive] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_AMP_AMP] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3612), + [anon_sym_typedef] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym___attribute__] = ACTIONS(3612), + [anon_sym___attribute] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), + [anon_sym___declspec] = ACTIONS(3612), + [anon_sym___based] = ACTIONS(3612), + [anon_sym___cdecl] = ACTIONS(3612), + [anon_sym___clrcall] = ACTIONS(3612), + [anon_sym___stdcall] = ACTIONS(3612), + [anon_sym___fastcall] = ACTIONS(3612), + [anon_sym___thiscall] = ACTIONS(3612), + [anon_sym___vectorcall] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_signed] = ACTIONS(3612), + [anon_sym_unsigned] = ACTIONS(3612), + [anon_sym_long] = ACTIONS(3612), + [anon_sym_short] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_register] = ACTIONS(3612), + [anon_sym_inline] = ACTIONS(3612), + [anon_sym___inline] = ACTIONS(3612), + [anon_sym___inline__] = ACTIONS(3612), + [anon_sym___forceinline] = ACTIONS(3612), + [anon_sym_thread_local] = ACTIONS(3612), + [anon_sym___thread] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_constexpr] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_restrict] = ACTIONS(3612), + [anon_sym___restrict__] = ACTIONS(3612), + [anon_sym__Atomic] = ACTIONS(3612), + [anon_sym__Noreturn] = ACTIONS(3612), + [anon_sym_noreturn] = ACTIONS(3612), + [anon_sym__Nonnull] = ACTIONS(3612), + [anon_sym_mutable] = ACTIONS(3612), + [anon_sym_constinit] = ACTIONS(3612), + [anon_sym_consteval] = ACTIONS(3612), + [anon_sym_alignas] = ACTIONS(3612), + [anon_sym__Alignas] = ACTIONS(3612), + [sym_primitive_type] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_union] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym___try] = ACTIONS(3612), + [anon_sym___leave] = ACTIONS(3612), + [anon_sym_not] = ACTIONS(3612), + [anon_sym_compl] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym___alignof__] = ACTIONS(3612), + [anon_sym___alignof] = ACTIONS(3612), + [anon_sym__alignof] = ACTIONS(3612), + [anon_sym_alignof] = ACTIONS(3612), + [anon_sym__Alignof] = ACTIONS(3612), + [anon_sym_offsetof] = ACTIONS(3612), + [anon_sym__Generic] = ACTIONS(3612), + [anon_sym_typename] = ACTIONS(3612), + [anon_sym_asm] = ACTIONS(3612), + [anon_sym___asm__] = ACTIONS(3612), + [anon_sym___asm] = ACTIONS(3612), + [sym_number_literal] = ACTIONS(3614), + [anon_sym_L_SQUOTE] = ACTIONS(3614), + [anon_sym_u_SQUOTE] = ACTIONS(3614), + [anon_sym_U_SQUOTE] = ACTIONS(3614), + [anon_sym_u8_SQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_L_DQUOTE] = ACTIONS(3614), + [anon_sym_u_DQUOTE] = ACTIONS(3614), + [anon_sym_U_DQUOTE] = ACTIONS(3614), + [anon_sym_u8_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [anon_sym_NULL] = ACTIONS(3612), + [anon_sym_nullptr] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3612), + [anon_sym_decltype] = ACTIONS(3612), + [anon_sym_explicit] = ACTIONS(3612), + [anon_sym_template] = ACTIONS(3612), + [anon_sym_operator] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_static_assert] = ACTIONS(3612), + [anon_sym_concept] = ACTIONS(3612), + [anon_sym_co_return] = ACTIONS(3612), + [anon_sym_co_yield] = ACTIONS(3612), + [anon_sym_R_DQUOTE] = ACTIONS(3614), + [anon_sym_LR_DQUOTE] = ACTIONS(3614), + [anon_sym_uR_DQUOTE] = ACTIONS(3614), + [anon_sym_UR_DQUOTE] = ACTIONS(3614), + [anon_sym_u8R_DQUOTE] = ACTIONS(3614), + [anon_sym_co_await] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_requires] = ACTIONS(3612), + [anon_sym_CARET_CARET] = ACTIONS(3614), + [anon_sym_LBRACK_COLON] = ACTIONS(3614), + [sym_this] = ACTIONS(3612), }, - [STATE(1083)] = { - [sym_expression] = STATE(4581), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8848), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(539)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1084)] = { - [sym_expression] = STATE(4593), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_initializer_list] = STATE(4853), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(540)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1085)] = { - [sym_expression] = STATE(4647), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8209), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(541)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(1086)] = { - [sym_expression] = STATE(4659), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8447), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(542)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2793), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_this] = ACTIONS(2795), }, - [STATE(1087)] = { - [sym_expression] = STATE(4644), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8690), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(543)] = { + [sym_else_clause] = STATE(701), + [sym_identifier] = ACTIONS(3612), + [aux_sym_preproc_include_token1] = ACTIONS(3612), + [aux_sym_preproc_def_token1] = ACTIONS(3612), + [aux_sym_preproc_if_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), + [sym_preproc_directive] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_AMP_AMP] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3612), + [anon_sym_typedef] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym___attribute__] = ACTIONS(3612), + [anon_sym___attribute] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), + [anon_sym___declspec] = ACTIONS(3612), + [anon_sym___based] = ACTIONS(3612), + [anon_sym___cdecl] = ACTIONS(3612), + [anon_sym___clrcall] = ACTIONS(3612), + [anon_sym___stdcall] = ACTIONS(3612), + [anon_sym___fastcall] = ACTIONS(3612), + [anon_sym___thiscall] = ACTIONS(3612), + [anon_sym___vectorcall] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_signed] = ACTIONS(3612), + [anon_sym_unsigned] = ACTIONS(3612), + [anon_sym_long] = ACTIONS(3612), + [anon_sym_short] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_register] = ACTIONS(3612), + [anon_sym_inline] = ACTIONS(3612), + [anon_sym___inline] = ACTIONS(3612), + [anon_sym___inline__] = ACTIONS(3612), + [anon_sym___forceinline] = ACTIONS(3612), + [anon_sym_thread_local] = ACTIONS(3612), + [anon_sym___thread] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_constexpr] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_restrict] = ACTIONS(3612), + [anon_sym___restrict__] = ACTIONS(3612), + [anon_sym__Atomic] = ACTIONS(3612), + [anon_sym__Noreturn] = ACTIONS(3612), + [anon_sym_noreturn] = ACTIONS(3612), + [anon_sym__Nonnull] = ACTIONS(3612), + [anon_sym_mutable] = ACTIONS(3612), + [anon_sym_constinit] = ACTIONS(3612), + [anon_sym_consteval] = ACTIONS(3612), + [anon_sym_alignas] = ACTIONS(3612), + [anon_sym__Alignas] = ACTIONS(3612), + [sym_primitive_type] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_union] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym___try] = ACTIONS(3612), + [anon_sym___leave] = ACTIONS(3612), + [anon_sym_not] = ACTIONS(3612), + [anon_sym_compl] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym___alignof__] = ACTIONS(3612), + [anon_sym___alignof] = ACTIONS(3612), + [anon_sym__alignof] = ACTIONS(3612), + [anon_sym_alignof] = ACTIONS(3612), + [anon_sym__Alignof] = ACTIONS(3612), + [anon_sym_offsetof] = ACTIONS(3612), + [anon_sym__Generic] = ACTIONS(3612), + [anon_sym_typename] = ACTIONS(3612), + [anon_sym_asm] = ACTIONS(3612), + [anon_sym___asm__] = ACTIONS(3612), + [anon_sym___asm] = ACTIONS(3612), + [sym_number_literal] = ACTIONS(3614), + [anon_sym_L_SQUOTE] = ACTIONS(3614), + [anon_sym_u_SQUOTE] = ACTIONS(3614), + [anon_sym_U_SQUOTE] = ACTIONS(3614), + [anon_sym_u8_SQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_L_DQUOTE] = ACTIONS(3614), + [anon_sym_u_DQUOTE] = ACTIONS(3614), + [anon_sym_U_DQUOTE] = ACTIONS(3614), + [anon_sym_u8_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [anon_sym_NULL] = ACTIONS(3612), + [anon_sym_nullptr] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3612), + [anon_sym_decltype] = ACTIONS(3612), + [anon_sym_explicit] = ACTIONS(3612), + [anon_sym_template] = ACTIONS(3612), + [anon_sym_operator] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_static_assert] = ACTIONS(3612), + [anon_sym_concept] = ACTIONS(3612), + [anon_sym_co_return] = ACTIONS(3612), + [anon_sym_co_yield] = ACTIONS(3612), + [anon_sym_R_DQUOTE] = ACTIONS(3614), + [anon_sym_LR_DQUOTE] = ACTIONS(3614), + [anon_sym_uR_DQUOTE] = ACTIONS(3614), + [anon_sym_UR_DQUOTE] = ACTIONS(3614), + [anon_sym_u8R_DQUOTE] = ACTIONS(3614), + [anon_sym_co_await] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_requires] = ACTIONS(3612), + [anon_sym_CARET_CARET] = ACTIONS(3614), + [anon_sym_LBRACK_COLON] = ACTIONS(3614), + [sym_this] = ACTIONS(3612), }, - [STATE(1088)] = { - [sym_expression] = STATE(4640), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8753), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4688), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(544)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_include_token1] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_namespace] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2793), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_this] = ACTIONS(2795), }, - [STATE(1089)] = { - [sym_expression] = STATE(3132), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_initializer_list] = STATE(3487), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(545)] = { + [sym_else_clause] = STATE(721), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(4210), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(1090)] = { - [sym_expression] = STATE(4170), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(546)] = { + [sym_else_clause] = STATE(559), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(1091)] = { - [sym_expression] = STATE(4607), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8613), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4692), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(547)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(1092)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(548)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1093)] = { - [sym_expression] = STATE(4550), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_initializer_list] = STATE(4847), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(549)] = { + [ts_builtin_sym_end] = ACTIONS(4088), + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_include_token1] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym___cdecl] = ACTIONS(4086), + [anon_sym___clrcall] = ACTIONS(4086), + [anon_sym___stdcall] = ACTIONS(4086), + [anon_sym___fastcall] = ACTIONS(4086), + [anon_sym___thiscall] = ACTIONS(4086), + [anon_sym___vectorcall] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_switch] = ACTIONS(4086), + [anon_sym_case] = ACTIONS(4086), + [anon_sym_default] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_goto] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_compl] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_sizeof] = ACTIONS(4086), + [anon_sym___alignof__] = ACTIONS(4086), + [anon_sym___alignof] = ACTIONS(4086), + [anon_sym__alignof] = ACTIONS(4086), + [anon_sym_alignof] = ACTIONS(4086), + [anon_sym__Alignof] = ACTIONS(4086), + [anon_sym_offsetof] = ACTIONS(4086), + [anon_sym__Generic] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [anon_sym_asm] = ACTIONS(4086), + [anon_sym___asm__] = ACTIONS(4086), + [anon_sym___asm] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4088), + [anon_sym_L_SQUOTE] = ACTIONS(4088), + [anon_sym_u_SQUOTE] = ACTIONS(4088), + [anon_sym_U_SQUOTE] = ACTIONS(4088), + [anon_sym_u8_SQUOTE] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4088), + [anon_sym_L_DQUOTE] = ACTIONS(4088), + [anon_sym_u_DQUOTE] = ACTIONS(4088), + [anon_sym_U_DQUOTE] = ACTIONS(4088), + [anon_sym_u8_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [anon_sym_NULL] = ACTIONS(4086), + [anon_sym_nullptr] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_export] = ACTIONS(4086), + [anon_sym_module] = ACTIONS(4086), + [anon_sym_import] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_delete] = ACTIONS(4086), + [anon_sym_throw] = ACTIONS(4086), + [anon_sym_namespace] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_concept] = ACTIONS(4086), + [anon_sym_co_return] = ACTIONS(4086), + [anon_sym_co_yield] = ACTIONS(4086), + [anon_sym_R_DQUOTE] = ACTIONS(4088), + [anon_sym_LR_DQUOTE] = ACTIONS(4088), + [anon_sym_uR_DQUOTE] = ACTIONS(4088), + [anon_sym_UR_DQUOTE] = ACTIONS(4088), + [anon_sym_u8R_DQUOTE] = ACTIONS(4088), + [anon_sym_co_await] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4086), + [anon_sym_requires] = ACTIONS(4086), + [anon_sym_CARET_CARET] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [sym_this] = ACTIONS(4086), }, - [STATE(1094)] = { - [sym_expression] = STATE(4608), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(550)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(1095)] = { - [sym_expression] = STATE(4810), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8212), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(551)] = { + [sym_preproc_def] = STATE(551), + [sym_preproc_function_def] = STATE(551), + [sym_preproc_call] = STATE(551), + [sym_preproc_if_in_field_declaration_list] = STATE(551), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), + [sym_type_definition] = STATE(551), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(8025), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8578), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(551), + [sym_field_declaration] = STATE(551), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2417), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(551), + [sym_operator_cast] = STATE(9064), + [sym_inline_method_definition] = STATE(551), + [sym__constructor_specifiers] = STATE(2417), + [sym_operator_cast_definition] = STATE(551), + [sym_operator_cast_declaration] = STATE(551), + [sym_constructor_or_destructor_definition] = STATE(551), + [sym_constructor_or_destructor_declaration] = STATE(551), + [sym_friend_declaration] = STATE(551), + [sym_access_specifier] = STATE(10717), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(551), + [sym_alias_declaration] = STATE(551), + [sym_static_assert_declaration] = STATE(551), + [sym_consteval_block_declaration] = STATE(551), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9064), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9390), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2417), + [sym_identifier] = ACTIONS(3736), + [aux_sym_preproc_def_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token1] = ACTIONS(4215), + [aux_sym_preproc_if_token2] = ACTIONS(3745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4218), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4218), + [sym_preproc_directive] = ACTIONS(4221), + [anon_sym_LPAREN2] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4227), + [anon_sym_typedef] = ACTIONS(4230), + [anon_sym_virtual] = ACTIONS(3777), + [anon_sym_extern] = ACTIONS(3780), + [anon_sym___attribute__] = ACTIONS(3783), + [anon_sym___attribute] = ACTIONS(3783), + [anon_sym_using] = ACTIONS(4233), + [anon_sym_COLON_COLON] = ACTIONS(3789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), + [anon_sym___declspec] = ACTIONS(3795), + [anon_sym___based] = ACTIONS(3798), + [anon_sym_signed] = ACTIONS(3801), + [anon_sym_unsigned] = ACTIONS(3801), + [anon_sym_long] = ACTIONS(3801), + [anon_sym_short] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_static] = ACTIONS(3780), + [anon_sym_register] = ACTIONS(3780), + [anon_sym_inline] = ACTIONS(3780), + [anon_sym___inline] = ACTIONS(3780), + [anon_sym___inline__] = ACTIONS(3780), + [anon_sym___forceinline] = ACTIONS(3780), + [anon_sym_thread_local] = ACTIONS(3780), + [anon_sym___thread] = ACTIONS(3780), + [anon_sym_const] = ACTIONS(3807), + [anon_sym_constexpr] = ACTIONS(4236), + [anon_sym_volatile] = ACTIONS(3807), + [anon_sym_restrict] = ACTIONS(3807), + [anon_sym___restrict__] = ACTIONS(3807), + [anon_sym__Atomic] = ACTIONS(3807), + [anon_sym__Noreturn] = ACTIONS(3807), + [anon_sym_noreturn] = ACTIONS(3807), + [anon_sym__Nonnull] = ACTIONS(3807), + [anon_sym_mutable] = ACTIONS(3807), + [anon_sym_constinit] = ACTIONS(3807), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(3816), + [anon_sym__Alignas] = ACTIONS(3816), + [sym_primitive_type] = ACTIONS(3819), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3828), + [anon_sym_union] = ACTIONS(3831), + [anon_sym_typename] = ACTIONS(3834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3837), + [anon_sym_decltype] = ACTIONS(3840), + [anon_sym_explicit] = ACTIONS(3843), + [anon_sym_private] = ACTIONS(3846), + [anon_sym_template] = ACTIONS(4242), + [anon_sym_operator] = ACTIONS(3852), + [anon_sym_friend] = ACTIONS(4245), + [anon_sym_public] = ACTIONS(3846), + [anon_sym_protected] = ACTIONS(3846), + [anon_sym_static_assert] = ACTIONS(4248), + [anon_sym_LBRACK_COLON] = ACTIONS(3861), }, - [STATE(1096)] = { - [sym_expression] = STATE(4556), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8684), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(552)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(1097)] = { - [sym_expression] = STATE(4360), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(553)] = { + [ts_builtin_sym_end] = ACTIONS(4012), + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_include_token1] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_PLUS] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym___cdecl] = ACTIONS(4010), + [anon_sym___clrcall] = ACTIONS(4010), + [anon_sym___stdcall] = ACTIONS(4010), + [anon_sym___fastcall] = ACTIONS(4010), + [anon_sym___thiscall] = ACTIONS(4010), + [anon_sym___vectorcall] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_if] = ACTIONS(4010), + [anon_sym_switch] = ACTIONS(4010), + [anon_sym_case] = ACTIONS(4010), + [anon_sym_default] = ACTIONS(4010), + [anon_sym_while] = ACTIONS(4010), + [anon_sym_do] = ACTIONS(4010), + [anon_sym_for] = ACTIONS(4010), + [anon_sym_return] = ACTIONS(4010), + [anon_sym_break] = ACTIONS(4010), + [anon_sym_continue] = ACTIONS(4010), + [anon_sym_goto] = ACTIONS(4010), + [anon_sym_not] = ACTIONS(4010), + [anon_sym_compl] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4012), + [anon_sym_PLUS_PLUS] = ACTIONS(4012), + [anon_sym_sizeof] = ACTIONS(4010), + [anon_sym___alignof__] = ACTIONS(4010), + [anon_sym___alignof] = ACTIONS(4010), + [anon_sym__alignof] = ACTIONS(4010), + [anon_sym_alignof] = ACTIONS(4010), + [anon_sym__Alignof] = ACTIONS(4010), + [anon_sym_offsetof] = ACTIONS(4010), + [anon_sym__Generic] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [anon_sym_asm] = ACTIONS(4010), + [anon_sym___asm__] = ACTIONS(4010), + [anon_sym___asm] = ACTIONS(4010), + [sym_number_literal] = ACTIONS(4012), + [anon_sym_L_SQUOTE] = ACTIONS(4012), + [anon_sym_u_SQUOTE] = ACTIONS(4012), + [anon_sym_U_SQUOTE] = ACTIONS(4012), + [anon_sym_u8_SQUOTE] = ACTIONS(4012), + [anon_sym_SQUOTE] = ACTIONS(4012), + [anon_sym_L_DQUOTE] = ACTIONS(4012), + [anon_sym_u_DQUOTE] = ACTIONS(4012), + [anon_sym_U_DQUOTE] = ACTIONS(4012), + [anon_sym_u8_DQUOTE] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4012), + [sym_true] = ACTIONS(4010), + [sym_false] = ACTIONS(4010), + [anon_sym_NULL] = ACTIONS(4010), + [anon_sym_nullptr] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_export] = ACTIONS(4010), + [anon_sym_module] = ACTIONS(4010), + [anon_sym_import] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_try] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(4010), + [anon_sym_throw] = ACTIONS(4010), + [anon_sym_namespace] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_concept] = ACTIONS(4010), + [anon_sym_co_return] = ACTIONS(4010), + [anon_sym_co_yield] = ACTIONS(4010), + [anon_sym_R_DQUOTE] = ACTIONS(4012), + [anon_sym_LR_DQUOTE] = ACTIONS(4012), + [anon_sym_uR_DQUOTE] = ACTIONS(4012), + [anon_sym_UR_DQUOTE] = ACTIONS(4012), + [anon_sym_u8R_DQUOTE] = ACTIONS(4012), + [anon_sym_co_await] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_requires] = ACTIONS(4010), + [anon_sym_CARET_CARET] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + [sym_this] = ACTIONS(4010), }, - [STATE(1098)] = { - [sym_expression] = STATE(3614), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_initializer_list] = STATE(4005), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(554)] = { + [ts_builtin_sym_end] = ACTIONS(4016), + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_include_token1] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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___cdecl] = ACTIONS(4014), + [anon_sym___clrcall] = ACTIONS(4014), + [anon_sym___stdcall] = ACTIONS(4014), + [anon_sym___fastcall] = ACTIONS(4014), + [anon_sym___thiscall] = ACTIONS(4014), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_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_typename] = ACTIONS(4014), + [anon_sym_asm] = 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_explicit] = ACTIONS(4014), + [anon_sym_export] = ACTIONS(4014), + [anon_sym_module] = ACTIONS(4014), + [anon_sym_import] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_namespace] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4016), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [sym_this] = ACTIONS(4014), }, - [STATE(1099)] = { - [sym_expression] = STATE(4538), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8076), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(555)] = { + [ts_builtin_sym_end] = ACTIONS(4251), + [sym_identifier] = ACTIONS(4253), + [aux_sym_preproc_include_token1] = ACTIONS(4253), + [aux_sym_preproc_def_token1] = ACTIONS(4253), + [aux_sym_preproc_if_token1] = ACTIONS(4253), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4253), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4253), + [sym_preproc_directive] = ACTIONS(4253), + [anon_sym_LPAREN2] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_AMP_AMP] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_SEMI] = ACTIONS(4251), + [anon_sym___extension__] = ACTIONS(4253), + [anon_sym_typedef] = ACTIONS(4253), + [anon_sym_virtual] = ACTIONS(4253), + [anon_sym_extern] = ACTIONS(4253), + [anon_sym___attribute__] = ACTIONS(4253), + [anon_sym___attribute] = ACTIONS(4253), + [anon_sym_using] = ACTIONS(4253), + [anon_sym_COLON_COLON] = ACTIONS(4251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4251), + [anon_sym___declspec] = ACTIONS(4253), + [anon_sym___based] = ACTIONS(4253), + [anon_sym___cdecl] = ACTIONS(4253), + [anon_sym___clrcall] = ACTIONS(4253), + [anon_sym___stdcall] = ACTIONS(4253), + [anon_sym___fastcall] = ACTIONS(4253), + [anon_sym___thiscall] = ACTIONS(4253), + [anon_sym___vectorcall] = ACTIONS(4253), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_signed] = ACTIONS(4253), + [anon_sym_unsigned] = ACTIONS(4253), + [anon_sym_long] = ACTIONS(4253), + [anon_sym_short] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(4253), + [anon_sym_static] = ACTIONS(4253), + [anon_sym_register] = ACTIONS(4253), + [anon_sym_inline] = ACTIONS(4253), + [anon_sym___inline] = ACTIONS(4253), + [anon_sym___inline__] = ACTIONS(4253), + [anon_sym___forceinline] = ACTIONS(4253), + [anon_sym_thread_local] = ACTIONS(4253), + [anon_sym___thread] = ACTIONS(4253), + [anon_sym_const] = ACTIONS(4253), + [anon_sym_constexpr] = ACTIONS(4253), + [anon_sym_volatile] = ACTIONS(4253), + [anon_sym_restrict] = ACTIONS(4253), + [anon_sym___restrict__] = ACTIONS(4253), + [anon_sym__Atomic] = ACTIONS(4253), + [anon_sym__Noreturn] = ACTIONS(4253), + [anon_sym_noreturn] = ACTIONS(4253), + [anon_sym__Nonnull] = ACTIONS(4253), + [anon_sym_mutable] = ACTIONS(4253), + [anon_sym_constinit] = ACTIONS(4253), + [anon_sym_consteval] = ACTIONS(4253), + [anon_sym_alignas] = ACTIONS(4253), + [anon_sym__Alignas] = ACTIONS(4253), + [sym_primitive_type] = ACTIONS(4253), + [anon_sym_enum] = ACTIONS(4253), + [anon_sym_class] = ACTIONS(4253), + [anon_sym_struct] = ACTIONS(4253), + [anon_sym_union] = ACTIONS(4253), + [anon_sym_if] = ACTIONS(4253), + [anon_sym_switch] = ACTIONS(4253), + [anon_sym_case] = ACTIONS(4253), + [anon_sym_default] = ACTIONS(4253), + [anon_sym_while] = ACTIONS(4253), + [anon_sym_do] = ACTIONS(4253), + [anon_sym_for] = ACTIONS(4253), + [anon_sym_return] = ACTIONS(4253), + [anon_sym_break] = ACTIONS(4253), + [anon_sym_continue] = ACTIONS(4253), + [anon_sym_goto] = ACTIONS(4253), + [anon_sym_not] = ACTIONS(4253), + [anon_sym_compl] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4251), + [anon_sym_PLUS_PLUS] = ACTIONS(4251), + [anon_sym_sizeof] = ACTIONS(4253), + [anon_sym___alignof__] = ACTIONS(4253), + [anon_sym___alignof] = ACTIONS(4253), + [anon_sym__alignof] = ACTIONS(4253), + [anon_sym_alignof] = ACTIONS(4253), + [anon_sym__Alignof] = ACTIONS(4253), + [anon_sym_offsetof] = ACTIONS(4253), + [anon_sym__Generic] = ACTIONS(4253), + [anon_sym_typename] = ACTIONS(4253), + [anon_sym_asm] = ACTIONS(4253), + [anon_sym___asm__] = ACTIONS(4253), + [anon_sym___asm] = ACTIONS(4253), + [sym_number_literal] = ACTIONS(4251), + [anon_sym_L_SQUOTE] = ACTIONS(4251), + [anon_sym_u_SQUOTE] = ACTIONS(4251), + [anon_sym_U_SQUOTE] = ACTIONS(4251), + [anon_sym_u8_SQUOTE] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_L_DQUOTE] = ACTIONS(4251), + [anon_sym_u_DQUOTE] = ACTIONS(4251), + [anon_sym_U_DQUOTE] = ACTIONS(4251), + [anon_sym_u8_DQUOTE] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [sym_true] = ACTIONS(4253), + [sym_false] = ACTIONS(4253), + [anon_sym_NULL] = ACTIONS(4253), + [anon_sym_nullptr] = ACTIONS(4253), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4253), + [anon_sym_decltype] = ACTIONS(4253), + [anon_sym_explicit] = ACTIONS(4253), + [anon_sym_export] = ACTIONS(4253), + [anon_sym_module] = ACTIONS(4253), + [anon_sym_import] = ACTIONS(4253), + [anon_sym_template] = ACTIONS(4253), + [anon_sym_operator] = ACTIONS(4253), + [anon_sym_try] = ACTIONS(4253), + [anon_sym_delete] = ACTIONS(4253), + [anon_sym_throw] = ACTIONS(4253), + [anon_sym_namespace] = ACTIONS(4253), + [anon_sym_static_assert] = ACTIONS(4253), + [anon_sym_concept] = ACTIONS(4253), + [anon_sym_co_return] = ACTIONS(4253), + [anon_sym_co_yield] = ACTIONS(4253), + [anon_sym_R_DQUOTE] = ACTIONS(4251), + [anon_sym_LR_DQUOTE] = ACTIONS(4251), + [anon_sym_uR_DQUOTE] = ACTIONS(4251), + [anon_sym_UR_DQUOTE] = ACTIONS(4251), + [anon_sym_u8R_DQUOTE] = ACTIONS(4251), + [anon_sym_co_await] = ACTIONS(4253), + [anon_sym_new] = ACTIONS(4253), + [anon_sym_requires] = ACTIONS(4253), + [anon_sym_CARET_CARET] = ACTIONS(4251), + [anon_sym_LBRACK_COLON] = ACTIONS(4251), + [sym_this] = ACTIONS(4253), }, - [STATE(1100)] = { - [sym_expression] = STATE(4629), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7822), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(556)] = { + [sym_identifier] = ACTIONS(3864), + [aux_sym_preproc_include_token1] = ACTIONS(3864), + [aux_sym_preproc_def_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token2] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(3866), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_SEMI] = ACTIONS(3866), + [anon_sym___extension__] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_virtual] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym___attribute__] = ACTIONS(3864), + [anon_sym___attribute] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), + [anon_sym___declspec] = ACTIONS(3864), + [anon_sym___based] = ACTIONS(3864), + [anon_sym___cdecl] = ACTIONS(3864), + [anon_sym___clrcall] = ACTIONS(3864), + [anon_sym___stdcall] = ACTIONS(3864), + [anon_sym___fastcall] = ACTIONS(3864), + [anon_sym___thiscall] = ACTIONS(3864), + [anon_sym___vectorcall] = ACTIONS(3864), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym___inline] = ACTIONS(3864), + [anon_sym___inline__] = ACTIONS(3864), + [anon_sym___forceinline] = ACTIONS(3864), + [anon_sym_thread_local] = ACTIONS(3864), + [anon_sym___thread] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym___restrict__] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym__Noreturn] = ACTIONS(3864), + [anon_sym_noreturn] = ACTIONS(3864), + [anon_sym__Nonnull] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_constinit] = ACTIONS(3864), + [anon_sym_consteval] = ACTIONS(3864), + [anon_sym_alignas] = ACTIONS(3864), + [anon_sym__Alignas] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_switch] = ACTIONS(3864), + [anon_sym_case] = ACTIONS(3864), + [anon_sym_default] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_do] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_goto] = ACTIONS(3864), + [anon_sym___try] = ACTIONS(3864), + [anon_sym___leave] = ACTIONS(3864), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3866), + [anon_sym_sizeof] = ACTIONS(3864), + [anon_sym___alignof__] = ACTIONS(3864), + [anon_sym___alignof] = ACTIONS(3864), + [anon_sym__alignof] = ACTIONS(3864), + [anon_sym_alignof] = ACTIONS(3864), + [anon_sym__Alignof] = ACTIONS(3864), + [anon_sym_offsetof] = ACTIONS(3864), + [anon_sym__Generic] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(3864), + [anon_sym___asm__] = ACTIONS(3864), + [anon_sym___asm] = ACTIONS(3864), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_L_SQUOTE] = ACTIONS(3866), + [anon_sym_u_SQUOTE] = ACTIONS(3866), + [anon_sym_U_SQUOTE] = ACTIONS(3866), + [anon_sym_u8_SQUOTE] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3866), + [anon_sym_L_DQUOTE] = ACTIONS(3866), + [anon_sym_u_DQUOTE] = ACTIONS(3866), + [anon_sym_U_DQUOTE] = ACTIONS(3866), + [anon_sym_u8_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_true] = ACTIONS(3864), + [sym_false] = ACTIONS(3864), + [anon_sym_NULL] = ACTIONS(3864), + [anon_sym_nullptr] = ACTIONS(3864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3864), + [anon_sym_decltype] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_operator] = ACTIONS(3864), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_delete] = ACTIONS(3864), + [anon_sym_throw] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_static_assert] = ACTIONS(3864), + [anon_sym_concept] = ACTIONS(3864), + [anon_sym_co_return] = ACTIONS(3864), + [anon_sym_co_yield] = ACTIONS(3864), + [anon_sym_R_DQUOTE] = ACTIONS(3866), + [anon_sym_LR_DQUOTE] = ACTIONS(3866), + [anon_sym_uR_DQUOTE] = ACTIONS(3866), + [anon_sym_UR_DQUOTE] = ACTIONS(3866), + [anon_sym_u8R_DQUOTE] = ACTIONS(3866), + [anon_sym_co_await] = ACTIONS(3864), + [anon_sym_new] = ACTIONS(3864), + [anon_sym_requires] = ACTIONS(3864), + [anon_sym_CARET_CARET] = ACTIONS(3866), + [anon_sym_LBRACK_COLON] = ACTIONS(3866), + [sym_this] = ACTIONS(3864), }, - [STATE(1101)] = { - [sym_expression] = STATE(4494), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8134), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(557)] = { + [ts_builtin_sym_end] = ACTIONS(3960), + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3958), + [anon_sym_module] = ACTIONS(3958), + [anon_sym_import] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), }, - [STATE(1102)] = { - [sym_expression] = STATE(4547), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(8006), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(558)] = { + [ts_builtin_sym_end] = ACTIONS(4255), + [sym_identifier] = ACTIONS(4257), + [aux_sym_preproc_include_token1] = ACTIONS(4257), + [aux_sym_preproc_def_token1] = ACTIONS(4257), + [aux_sym_preproc_if_token1] = ACTIONS(4257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4257), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4257), + [sym_preproc_directive] = ACTIONS(4257), + [anon_sym_LPAREN2] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_AMP_AMP] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym___extension__] = ACTIONS(4257), + [anon_sym_typedef] = ACTIONS(4257), + [anon_sym_virtual] = ACTIONS(4257), + [anon_sym_extern] = ACTIONS(4257), + [anon_sym___attribute__] = ACTIONS(4257), + [anon_sym___attribute] = ACTIONS(4257), + [anon_sym_using] = ACTIONS(4257), + [anon_sym_COLON_COLON] = ACTIONS(4255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4255), + [anon_sym___declspec] = ACTIONS(4257), + [anon_sym___based] = ACTIONS(4257), + [anon_sym___cdecl] = ACTIONS(4257), + [anon_sym___clrcall] = ACTIONS(4257), + [anon_sym___stdcall] = ACTIONS(4257), + [anon_sym___fastcall] = ACTIONS(4257), + [anon_sym___thiscall] = ACTIONS(4257), + [anon_sym___vectorcall] = ACTIONS(4257), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_signed] = ACTIONS(4257), + [anon_sym_unsigned] = ACTIONS(4257), + [anon_sym_long] = ACTIONS(4257), + [anon_sym_short] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_static] = ACTIONS(4257), + [anon_sym_register] = ACTIONS(4257), + [anon_sym_inline] = ACTIONS(4257), + [anon_sym___inline] = ACTIONS(4257), + [anon_sym___inline__] = ACTIONS(4257), + [anon_sym___forceinline] = ACTIONS(4257), + [anon_sym_thread_local] = ACTIONS(4257), + [anon_sym___thread] = ACTIONS(4257), + [anon_sym_const] = ACTIONS(4257), + [anon_sym_constexpr] = ACTIONS(4257), + [anon_sym_volatile] = ACTIONS(4257), + [anon_sym_restrict] = ACTIONS(4257), + [anon_sym___restrict__] = ACTIONS(4257), + [anon_sym__Atomic] = ACTIONS(4257), + [anon_sym__Noreturn] = ACTIONS(4257), + [anon_sym_noreturn] = ACTIONS(4257), + [anon_sym__Nonnull] = ACTIONS(4257), + [anon_sym_mutable] = ACTIONS(4257), + [anon_sym_constinit] = ACTIONS(4257), + [anon_sym_consteval] = ACTIONS(4257), + [anon_sym_alignas] = ACTIONS(4257), + [anon_sym__Alignas] = ACTIONS(4257), + [sym_primitive_type] = ACTIONS(4257), + [anon_sym_enum] = ACTIONS(4257), + [anon_sym_class] = ACTIONS(4257), + [anon_sym_struct] = ACTIONS(4257), + [anon_sym_union] = ACTIONS(4257), + [anon_sym_if] = ACTIONS(4257), + [anon_sym_switch] = ACTIONS(4257), + [anon_sym_case] = ACTIONS(4257), + [anon_sym_default] = ACTIONS(4257), + [anon_sym_while] = ACTIONS(4257), + [anon_sym_do] = ACTIONS(4257), + [anon_sym_for] = ACTIONS(4257), + [anon_sym_return] = ACTIONS(4257), + [anon_sym_break] = ACTIONS(4257), + [anon_sym_continue] = ACTIONS(4257), + [anon_sym_goto] = ACTIONS(4257), + [anon_sym_not] = ACTIONS(4257), + [anon_sym_compl] = ACTIONS(4257), + [anon_sym_DASH_DASH] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(4255), + [anon_sym_sizeof] = ACTIONS(4257), + [anon_sym___alignof__] = ACTIONS(4257), + [anon_sym___alignof] = ACTIONS(4257), + [anon_sym__alignof] = ACTIONS(4257), + [anon_sym_alignof] = ACTIONS(4257), + [anon_sym__Alignof] = ACTIONS(4257), + [anon_sym_offsetof] = ACTIONS(4257), + [anon_sym__Generic] = ACTIONS(4257), + [anon_sym_typename] = ACTIONS(4257), + [anon_sym_asm] = ACTIONS(4257), + [anon_sym___asm__] = ACTIONS(4257), + [anon_sym___asm] = ACTIONS(4257), + [sym_number_literal] = ACTIONS(4255), + [anon_sym_L_SQUOTE] = ACTIONS(4255), + [anon_sym_u_SQUOTE] = ACTIONS(4255), + [anon_sym_U_SQUOTE] = ACTIONS(4255), + [anon_sym_u8_SQUOTE] = ACTIONS(4255), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_L_DQUOTE] = ACTIONS(4255), + [anon_sym_u_DQUOTE] = ACTIONS(4255), + [anon_sym_U_DQUOTE] = ACTIONS(4255), + [anon_sym_u8_DQUOTE] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [anon_sym_NULL] = ACTIONS(4257), + [anon_sym_nullptr] = ACTIONS(4257), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4257), + [anon_sym_decltype] = ACTIONS(4257), + [anon_sym_explicit] = ACTIONS(4257), + [anon_sym_export] = ACTIONS(4257), + [anon_sym_module] = ACTIONS(4257), + [anon_sym_import] = ACTIONS(4257), + [anon_sym_template] = ACTIONS(4257), + [anon_sym_operator] = ACTIONS(4257), + [anon_sym_try] = ACTIONS(4257), + [anon_sym_delete] = ACTIONS(4257), + [anon_sym_throw] = ACTIONS(4257), + [anon_sym_namespace] = ACTIONS(4257), + [anon_sym_static_assert] = ACTIONS(4257), + [anon_sym_concept] = ACTIONS(4257), + [anon_sym_co_return] = ACTIONS(4257), + [anon_sym_co_yield] = ACTIONS(4257), + [anon_sym_R_DQUOTE] = ACTIONS(4255), + [anon_sym_LR_DQUOTE] = ACTIONS(4255), + [anon_sym_uR_DQUOTE] = ACTIONS(4255), + [anon_sym_UR_DQUOTE] = ACTIONS(4255), + [anon_sym_u8R_DQUOTE] = ACTIONS(4255), + [anon_sym_co_await] = ACTIONS(4257), + [anon_sym_new] = ACTIONS(4257), + [anon_sym_requires] = ACTIONS(4257), + [anon_sym_CARET_CARET] = ACTIONS(4255), + [anon_sym_LBRACK_COLON] = ACTIONS(4255), + [sym_this] = ACTIONS(4257), }, - [STATE(1103)] = { - [sym_expression] = STATE(3362), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(559)] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(1104)] = { - [sym_expression] = STATE(4403), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(560)] = { + [sym_identifier] = ACTIONS(3688), + [aux_sym_preproc_include_token1] = ACTIONS(3688), + [aux_sym_preproc_def_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token2] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), + [sym_preproc_directive] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_AMP_AMP] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym___extension__] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_virtual] = ACTIONS(3688), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym___attribute__] = ACTIONS(3688), + [anon_sym___attribute] = ACTIONS(3688), + [anon_sym_using] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym___declspec] = ACTIONS(3688), + [anon_sym___based] = ACTIONS(3688), + [anon_sym___cdecl] = ACTIONS(3688), + [anon_sym___clrcall] = ACTIONS(3688), + [anon_sym___stdcall] = ACTIONS(3688), + [anon_sym___fastcall] = ACTIONS(3688), + [anon_sym___thiscall] = ACTIONS(3688), + [anon_sym___vectorcall] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym___inline] = ACTIONS(3688), + [anon_sym___inline__] = ACTIONS(3688), + [anon_sym___forceinline] = ACTIONS(3688), + [anon_sym_thread_local] = ACTIONS(3688), + [anon_sym___thread] = ACTIONS(3688), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_restrict] = ACTIONS(3688), + [anon_sym___restrict__] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [anon_sym__Noreturn] = ACTIONS(3688), + [anon_sym_noreturn] = ACTIONS(3688), + [anon_sym__Nonnull] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [anon_sym_constinit] = ACTIONS(3688), + [anon_sym_consteval] = ACTIONS(3688), + [anon_sym_alignas] = ACTIONS(3688), + [anon_sym__Alignas] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3688), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym___try] = ACTIONS(3688), + [anon_sym___leave] = ACTIONS(3688), + [anon_sym_not] = ACTIONS(3688), + [anon_sym_compl] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym___alignof__] = ACTIONS(3688), + [anon_sym___alignof] = ACTIONS(3688), + [anon_sym__alignof] = ACTIONS(3688), + [anon_sym_alignof] = ACTIONS(3688), + [anon_sym__Alignof] = ACTIONS(3688), + [anon_sym_offsetof] = ACTIONS(3688), + [anon_sym__Generic] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_asm] = ACTIONS(3688), + [anon_sym___asm__] = ACTIONS(3688), + [anon_sym___asm] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_L_SQUOTE] = ACTIONS(3690), + [anon_sym_u_SQUOTE] = ACTIONS(3690), + [anon_sym_U_SQUOTE] = ACTIONS(3690), + [anon_sym_u8_SQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_L_DQUOTE] = ACTIONS(3690), + [anon_sym_u_DQUOTE] = ACTIONS(3690), + [anon_sym_U_DQUOTE] = ACTIONS(3690), + [anon_sym_u8_DQUOTE] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [anon_sym_NULL] = ACTIONS(3688), + [anon_sym_nullptr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3688), + [anon_sym_decltype] = ACTIONS(3688), + [anon_sym_explicit] = ACTIONS(3688), + [anon_sym_template] = ACTIONS(3688), + [anon_sym_operator] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_throw] = ACTIONS(3688), + [anon_sym_namespace] = ACTIONS(3688), + [anon_sym_static_assert] = ACTIONS(3688), + [anon_sym_concept] = ACTIONS(3688), + [anon_sym_co_return] = ACTIONS(3688), + [anon_sym_co_yield] = ACTIONS(3688), + [anon_sym_R_DQUOTE] = ACTIONS(3690), + [anon_sym_LR_DQUOTE] = ACTIONS(3690), + [anon_sym_uR_DQUOTE] = ACTIONS(3690), + [anon_sym_UR_DQUOTE] = ACTIONS(3690), + [anon_sym_u8R_DQUOTE] = ACTIONS(3690), + [anon_sym_co_await] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_requires] = ACTIONS(3688), + [anon_sym_CARET_CARET] = ACTIONS(3690), + [anon_sym_LBRACK_COLON] = ACTIONS(3690), + [sym_this] = ACTIONS(3688), }, - [STATE(1105)] = { - [sym_expression] = STATE(4638), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8313), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(561)] = { + [sym_identifier] = ACTIONS(3696), + [aux_sym_preproc_include_token1] = ACTIONS(3696), + [aux_sym_preproc_def_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token2] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), + [sym_preproc_directive] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3696), + [anon_sym_virtual] = ACTIONS(3696), + [anon_sym_extern] = ACTIONS(3696), + [anon_sym___attribute__] = ACTIONS(3696), + [anon_sym___attribute] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), + [anon_sym___declspec] = ACTIONS(3696), + [anon_sym___based] = ACTIONS(3696), + [anon_sym___cdecl] = ACTIONS(3696), + [anon_sym___clrcall] = ACTIONS(3696), + [anon_sym___stdcall] = ACTIONS(3696), + [anon_sym___fastcall] = ACTIONS(3696), + [anon_sym___thiscall] = ACTIONS(3696), + [anon_sym___vectorcall] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3696), + [anon_sym_unsigned] = ACTIONS(3696), + [anon_sym_long] = ACTIONS(3696), + [anon_sym_short] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_register] = ACTIONS(3696), + [anon_sym_inline] = ACTIONS(3696), + [anon_sym___inline] = ACTIONS(3696), + [anon_sym___inline__] = ACTIONS(3696), + [anon_sym___forceinline] = ACTIONS(3696), + [anon_sym_thread_local] = ACTIONS(3696), + [anon_sym___thread] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_constexpr] = ACTIONS(3696), + [anon_sym_volatile] = ACTIONS(3696), + [anon_sym_restrict] = ACTIONS(3696), + [anon_sym___restrict__] = ACTIONS(3696), + [anon_sym__Atomic] = ACTIONS(3696), + [anon_sym__Noreturn] = ACTIONS(3696), + [anon_sym_noreturn] = ACTIONS(3696), + [anon_sym__Nonnull] = ACTIONS(3696), + [anon_sym_mutable] = ACTIONS(3696), + [anon_sym_constinit] = ACTIONS(3696), + [anon_sym_consteval] = ACTIONS(3696), + [anon_sym_alignas] = ACTIONS(3696), + [anon_sym__Alignas] = ACTIONS(3696), + [sym_primitive_type] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3696), + [anon_sym_union] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_goto] = ACTIONS(3696), + [anon_sym___try] = ACTIONS(3696), + [anon_sym___leave] = ACTIONS(3696), + [anon_sym_not] = ACTIONS(3696), + [anon_sym_compl] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3696), + [anon_sym___alignof__] = ACTIONS(3696), + [anon_sym___alignof] = ACTIONS(3696), + [anon_sym__alignof] = ACTIONS(3696), + [anon_sym_alignof] = ACTIONS(3696), + [anon_sym__Alignof] = ACTIONS(3696), + [anon_sym_offsetof] = ACTIONS(3696), + [anon_sym__Generic] = ACTIONS(3696), + [anon_sym_typename] = ACTIONS(3696), + [anon_sym_asm] = ACTIONS(3696), + [anon_sym___asm__] = ACTIONS(3696), + [anon_sym___asm] = ACTIONS(3696), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_L_SQUOTE] = ACTIONS(3698), + [anon_sym_u_SQUOTE] = ACTIONS(3698), + [anon_sym_U_SQUOTE] = ACTIONS(3698), + [anon_sym_u8_SQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_L_DQUOTE] = ACTIONS(3698), + [anon_sym_u_DQUOTE] = ACTIONS(3698), + [anon_sym_U_DQUOTE] = ACTIONS(3698), + [anon_sym_u8_DQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [anon_sym_NULL] = ACTIONS(3696), + [anon_sym_nullptr] = ACTIONS(3696), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_decltype] = ACTIONS(3696), + [anon_sym_explicit] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_static_assert] = ACTIONS(3696), + [anon_sym_concept] = ACTIONS(3696), + [anon_sym_co_return] = ACTIONS(3696), + [anon_sym_co_yield] = ACTIONS(3696), + [anon_sym_R_DQUOTE] = ACTIONS(3698), + [anon_sym_LR_DQUOTE] = ACTIONS(3698), + [anon_sym_uR_DQUOTE] = ACTIONS(3698), + [anon_sym_UR_DQUOTE] = ACTIONS(3698), + [anon_sym_u8R_DQUOTE] = ACTIONS(3698), + [anon_sym_co_await] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_requires] = ACTIONS(3696), + [anon_sym_CARET_CARET] = ACTIONS(3698), + [anon_sym_LBRACK_COLON] = ACTIONS(3698), + [sym_this] = ACTIONS(3696), }, - [STATE(1106)] = { - [sym_expression] = STATE(4824), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(8692), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(562)] = { + [sym_identifier] = ACTIONS(3720), + [aux_sym_preproc_include_token1] = ACTIONS(3720), + [aux_sym_preproc_def_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token2] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), + [sym_preproc_directive] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym___extension__] = ACTIONS(3720), + [anon_sym_typedef] = ACTIONS(3720), + [anon_sym_virtual] = ACTIONS(3720), + [anon_sym_extern] = ACTIONS(3720), + [anon_sym___attribute__] = ACTIONS(3720), + [anon_sym___attribute] = ACTIONS(3720), + [anon_sym_using] = ACTIONS(3720), + [anon_sym_COLON_COLON] = ACTIONS(3722), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), + [anon_sym___declspec] = ACTIONS(3720), + [anon_sym___based] = ACTIONS(3720), + [anon_sym___cdecl] = ACTIONS(3720), + [anon_sym___clrcall] = ACTIONS(3720), + [anon_sym___stdcall] = ACTIONS(3720), + [anon_sym___fastcall] = ACTIONS(3720), + [anon_sym___thiscall] = ACTIONS(3720), + [anon_sym___vectorcall] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3720), + [anon_sym_unsigned] = ACTIONS(3720), + [anon_sym_long] = ACTIONS(3720), + [anon_sym_short] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_register] = ACTIONS(3720), + [anon_sym_inline] = ACTIONS(3720), + [anon_sym___inline] = ACTIONS(3720), + [anon_sym___inline__] = ACTIONS(3720), + [anon_sym___forceinline] = ACTIONS(3720), + [anon_sym_thread_local] = ACTIONS(3720), + [anon_sym___thread] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym___restrict__] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym__Noreturn] = ACTIONS(3720), + [anon_sym_noreturn] = ACTIONS(3720), + [anon_sym__Nonnull] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_constinit] = ACTIONS(3720), + [anon_sym_consteval] = ACTIONS(3720), + [anon_sym_alignas] = ACTIONS(3720), + [anon_sym__Alignas] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3720), + [anon_sym_union] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_else] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_case] = ACTIONS(3720), + [anon_sym_default] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_goto] = ACTIONS(3720), + [anon_sym___try] = ACTIONS(3720), + [anon_sym___leave] = ACTIONS(3720), + [anon_sym_not] = ACTIONS(3720), + [anon_sym_compl] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_sizeof] = ACTIONS(3720), + [anon_sym___alignof__] = ACTIONS(3720), + [anon_sym___alignof] = ACTIONS(3720), + [anon_sym__alignof] = ACTIONS(3720), + [anon_sym_alignof] = ACTIONS(3720), + [anon_sym__Alignof] = ACTIONS(3720), + [anon_sym_offsetof] = ACTIONS(3720), + [anon_sym__Generic] = ACTIONS(3720), + [anon_sym_typename] = ACTIONS(3720), + [anon_sym_asm] = ACTIONS(3720), + [anon_sym___asm__] = ACTIONS(3720), + [anon_sym___asm] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3722), + [anon_sym_L_SQUOTE] = ACTIONS(3722), + [anon_sym_u_SQUOTE] = ACTIONS(3722), + [anon_sym_U_SQUOTE] = ACTIONS(3722), + [anon_sym_u8_SQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_L_DQUOTE] = ACTIONS(3722), + [anon_sym_u_DQUOTE] = ACTIONS(3722), + [anon_sym_U_DQUOTE] = ACTIONS(3722), + [anon_sym_u8_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [anon_sym_NULL] = ACTIONS(3720), + [anon_sym_nullptr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_template] = ACTIONS(3720), + [anon_sym_operator] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_namespace] = ACTIONS(3720), + [anon_sym_static_assert] = ACTIONS(3720), + [anon_sym_concept] = ACTIONS(3720), + [anon_sym_co_return] = ACTIONS(3720), + [anon_sym_co_yield] = ACTIONS(3720), + [anon_sym_R_DQUOTE] = ACTIONS(3722), + [anon_sym_LR_DQUOTE] = ACTIONS(3722), + [anon_sym_uR_DQUOTE] = ACTIONS(3722), + [anon_sym_UR_DQUOTE] = ACTIONS(3722), + [anon_sym_u8R_DQUOTE] = ACTIONS(3722), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_requires] = ACTIONS(3720), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3722), + [sym_this] = ACTIONS(3720), }, - [STATE(1107)] = { - [sym_expression] = STATE(3663), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_initializer_list] = STATE(3877), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(563)] = { + [sym_identifier] = ACTIONS(3732), + [aux_sym_preproc_include_token1] = ACTIONS(3732), + [aux_sym_preproc_def_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token2] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), + [sym_preproc_directive] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3732), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3732), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym___extension__] = ACTIONS(3732), + [anon_sym_typedef] = ACTIONS(3732), + [anon_sym_virtual] = ACTIONS(3732), + [anon_sym_extern] = ACTIONS(3732), + [anon_sym___attribute__] = ACTIONS(3732), + [anon_sym___attribute] = ACTIONS(3732), + [anon_sym_using] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym___declspec] = ACTIONS(3732), + [anon_sym___based] = ACTIONS(3732), + [anon_sym___cdecl] = ACTIONS(3732), + [anon_sym___clrcall] = ACTIONS(3732), + [anon_sym___stdcall] = ACTIONS(3732), + [anon_sym___fastcall] = ACTIONS(3732), + [anon_sym___thiscall] = ACTIONS(3732), + [anon_sym___vectorcall] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_signed] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(3732), + [anon_sym_long] = ACTIONS(3732), + [anon_sym_short] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3732), + [anon_sym_register] = ACTIONS(3732), + [anon_sym_inline] = ACTIONS(3732), + [anon_sym___inline] = ACTIONS(3732), + [anon_sym___inline__] = ACTIONS(3732), + [anon_sym___forceinline] = ACTIONS(3732), + [anon_sym_thread_local] = ACTIONS(3732), + [anon_sym___thread] = ACTIONS(3732), + [anon_sym_const] = ACTIONS(3732), + [anon_sym_constexpr] = ACTIONS(3732), + [anon_sym_volatile] = ACTIONS(3732), + [anon_sym_restrict] = ACTIONS(3732), + [anon_sym___restrict__] = ACTIONS(3732), + [anon_sym__Atomic] = ACTIONS(3732), + [anon_sym__Noreturn] = ACTIONS(3732), + [anon_sym_noreturn] = ACTIONS(3732), + [anon_sym__Nonnull] = ACTIONS(3732), + [anon_sym_mutable] = ACTIONS(3732), + [anon_sym_constinit] = ACTIONS(3732), + [anon_sym_consteval] = ACTIONS(3732), + [anon_sym_alignas] = ACTIONS(3732), + [anon_sym__Alignas] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_union] = ACTIONS(3732), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_else] = ACTIONS(3732), + [anon_sym_switch] = ACTIONS(3732), + [anon_sym_case] = ACTIONS(3732), + [anon_sym_default] = ACTIONS(3732), + [anon_sym_while] = ACTIONS(3732), + [anon_sym_do] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3732), + [anon_sym_break] = ACTIONS(3732), + [anon_sym_continue] = ACTIONS(3732), + [anon_sym_goto] = ACTIONS(3732), + [anon_sym___try] = ACTIONS(3732), + [anon_sym___leave] = ACTIONS(3732), + [anon_sym_not] = ACTIONS(3732), + [anon_sym_compl] = ACTIONS(3732), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_sizeof] = ACTIONS(3732), + [anon_sym___alignof__] = ACTIONS(3732), + [anon_sym___alignof] = ACTIONS(3732), + [anon_sym__alignof] = ACTIONS(3732), + [anon_sym_alignof] = ACTIONS(3732), + [anon_sym__Alignof] = ACTIONS(3732), + [anon_sym_offsetof] = ACTIONS(3732), + [anon_sym__Generic] = ACTIONS(3732), + [anon_sym_typename] = ACTIONS(3732), + [anon_sym_asm] = ACTIONS(3732), + [anon_sym___asm__] = ACTIONS(3732), + [anon_sym___asm] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_L_SQUOTE] = ACTIONS(3734), + [anon_sym_u_SQUOTE] = ACTIONS(3734), + [anon_sym_U_SQUOTE] = ACTIONS(3734), + [anon_sym_u8_SQUOTE] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [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(3732), + [sym_false] = ACTIONS(3732), + [anon_sym_NULL] = ACTIONS(3732), + [anon_sym_nullptr] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3732), + [anon_sym_decltype] = ACTIONS(3732), + [anon_sym_explicit] = ACTIONS(3732), + [anon_sym_template] = ACTIONS(3732), + [anon_sym_operator] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3732), + [anon_sym_delete] = ACTIONS(3732), + [anon_sym_throw] = ACTIONS(3732), + [anon_sym_namespace] = ACTIONS(3732), + [anon_sym_static_assert] = ACTIONS(3732), + [anon_sym_concept] = ACTIONS(3732), + [anon_sym_co_return] = ACTIONS(3732), + [anon_sym_co_yield] = ACTIONS(3732), + [anon_sym_R_DQUOTE] = ACTIONS(3734), + [anon_sym_LR_DQUOTE] = ACTIONS(3734), + [anon_sym_uR_DQUOTE] = ACTIONS(3734), + [anon_sym_UR_DQUOTE] = ACTIONS(3734), + [anon_sym_u8R_DQUOTE] = ACTIONS(3734), + [anon_sym_co_await] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3732), + [anon_sym_requires] = ACTIONS(3732), + [anon_sym_CARET_CARET] = ACTIONS(3734), + [anon_sym_LBRACK_COLON] = ACTIONS(3734), + [sym_this] = ACTIONS(3732), }, - [STATE(1108)] = { - [sym_expression] = STATE(4601), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8953), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(564)] = { + [ts_builtin_sym_end] = ACTIONS(4259), + [sym_identifier] = ACTIONS(4261), + [aux_sym_preproc_include_token1] = ACTIONS(4261), + [aux_sym_preproc_def_token1] = ACTIONS(4261), + [aux_sym_preproc_if_token1] = ACTIONS(4261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4261), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4261), + [sym_preproc_directive] = ACTIONS(4261), + [anon_sym_LPAREN2] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4261), + [anon_sym_PLUS] = ACTIONS(4261), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_AMP_AMP] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4261), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym___extension__] = ACTIONS(4261), + [anon_sym_typedef] = ACTIONS(4261), + [anon_sym_virtual] = ACTIONS(4261), + [anon_sym_extern] = ACTIONS(4261), + [anon_sym___attribute__] = ACTIONS(4261), + [anon_sym___attribute] = ACTIONS(4261), + [anon_sym_using] = ACTIONS(4261), + [anon_sym_COLON_COLON] = ACTIONS(4259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), + [anon_sym___declspec] = ACTIONS(4261), + [anon_sym___based] = ACTIONS(4261), + [anon_sym___cdecl] = ACTIONS(4261), + [anon_sym___clrcall] = ACTIONS(4261), + [anon_sym___stdcall] = ACTIONS(4261), + [anon_sym___fastcall] = ACTIONS(4261), + [anon_sym___thiscall] = ACTIONS(4261), + [anon_sym___vectorcall] = ACTIONS(4261), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_signed] = ACTIONS(4261), + [anon_sym_unsigned] = ACTIONS(4261), + [anon_sym_long] = ACTIONS(4261), + [anon_sym_short] = ACTIONS(4261), + [anon_sym_LBRACK] = ACTIONS(4261), + [anon_sym_static] = ACTIONS(4261), + [anon_sym_register] = ACTIONS(4261), + [anon_sym_inline] = ACTIONS(4261), + [anon_sym___inline] = ACTIONS(4261), + [anon_sym___inline__] = ACTIONS(4261), + [anon_sym___forceinline] = ACTIONS(4261), + [anon_sym_thread_local] = ACTIONS(4261), + [anon_sym___thread] = ACTIONS(4261), + [anon_sym_const] = ACTIONS(4261), + [anon_sym_constexpr] = ACTIONS(4261), + [anon_sym_volatile] = ACTIONS(4261), + [anon_sym_restrict] = ACTIONS(4261), + [anon_sym___restrict__] = ACTIONS(4261), + [anon_sym__Atomic] = ACTIONS(4261), + [anon_sym__Noreturn] = ACTIONS(4261), + [anon_sym_noreturn] = ACTIONS(4261), + [anon_sym__Nonnull] = ACTIONS(4261), + [anon_sym_mutable] = ACTIONS(4261), + [anon_sym_constinit] = ACTIONS(4261), + [anon_sym_consteval] = ACTIONS(4261), + [anon_sym_alignas] = ACTIONS(4261), + [anon_sym__Alignas] = ACTIONS(4261), + [sym_primitive_type] = ACTIONS(4261), + [anon_sym_enum] = ACTIONS(4261), + [anon_sym_class] = ACTIONS(4261), + [anon_sym_struct] = ACTIONS(4261), + [anon_sym_union] = ACTIONS(4261), + [anon_sym_if] = ACTIONS(4261), + [anon_sym_switch] = ACTIONS(4261), + [anon_sym_case] = ACTIONS(4261), + [anon_sym_default] = ACTIONS(4261), + [anon_sym_while] = ACTIONS(4261), + [anon_sym_do] = ACTIONS(4261), + [anon_sym_for] = ACTIONS(4261), + [anon_sym_return] = ACTIONS(4261), + [anon_sym_break] = ACTIONS(4261), + [anon_sym_continue] = ACTIONS(4261), + [anon_sym_goto] = ACTIONS(4261), + [anon_sym_not] = ACTIONS(4261), + [anon_sym_compl] = ACTIONS(4261), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(4261), + [anon_sym___alignof__] = ACTIONS(4261), + [anon_sym___alignof] = ACTIONS(4261), + [anon_sym__alignof] = ACTIONS(4261), + [anon_sym_alignof] = ACTIONS(4261), + [anon_sym__Alignof] = ACTIONS(4261), + [anon_sym_offsetof] = ACTIONS(4261), + [anon_sym__Generic] = ACTIONS(4261), + [anon_sym_typename] = ACTIONS(4261), + [anon_sym_asm] = ACTIONS(4261), + [anon_sym___asm__] = ACTIONS(4261), + [anon_sym___asm] = ACTIONS(4261), + [sym_number_literal] = ACTIONS(4259), + [anon_sym_L_SQUOTE] = ACTIONS(4259), + [anon_sym_u_SQUOTE] = ACTIONS(4259), + [anon_sym_U_SQUOTE] = ACTIONS(4259), + [anon_sym_u8_SQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_L_DQUOTE] = ACTIONS(4259), + [anon_sym_u_DQUOTE] = ACTIONS(4259), + [anon_sym_U_DQUOTE] = ACTIONS(4259), + [anon_sym_u8_DQUOTE] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [sym_true] = ACTIONS(4261), + [sym_false] = ACTIONS(4261), + [anon_sym_NULL] = ACTIONS(4261), + [anon_sym_nullptr] = ACTIONS(4261), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4261), + [anon_sym_decltype] = ACTIONS(4261), + [anon_sym_explicit] = ACTIONS(4261), + [anon_sym_export] = ACTIONS(4261), + [anon_sym_module] = ACTIONS(4261), + [anon_sym_import] = ACTIONS(4261), + [anon_sym_template] = ACTIONS(4261), + [anon_sym_operator] = ACTIONS(4261), + [anon_sym_try] = ACTIONS(4261), + [anon_sym_delete] = ACTIONS(4261), + [anon_sym_throw] = ACTIONS(4261), + [anon_sym_namespace] = ACTIONS(4261), + [anon_sym_static_assert] = ACTIONS(4261), + [anon_sym_concept] = ACTIONS(4261), + [anon_sym_co_return] = ACTIONS(4261), + [anon_sym_co_yield] = ACTIONS(4261), + [anon_sym_R_DQUOTE] = ACTIONS(4259), + [anon_sym_LR_DQUOTE] = ACTIONS(4259), + [anon_sym_uR_DQUOTE] = ACTIONS(4259), + [anon_sym_UR_DQUOTE] = ACTIONS(4259), + [anon_sym_u8R_DQUOTE] = ACTIONS(4259), + [anon_sym_co_await] = ACTIONS(4261), + [anon_sym_new] = ACTIONS(4261), + [anon_sym_requires] = ACTIONS(4261), + [anon_sym_CARET_CARET] = ACTIONS(4259), + [anon_sym_LBRACK_COLON] = ACTIONS(4259), + [sym_this] = ACTIONS(4261), }, - [STATE(1109)] = { - [sym_expression] = STATE(4520), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(565)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, - [STATE(1110)] = { - [sym_expression] = STATE(3752), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_initializer_list] = STATE(4000), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(566)] = { + [ts_builtin_sym_end] = ACTIONS(4263), + [sym_identifier] = ACTIONS(4265), + [aux_sym_preproc_include_token1] = ACTIONS(4265), + [aux_sym_preproc_def_token1] = ACTIONS(4265), + [aux_sym_preproc_if_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4265), + [sym_preproc_directive] = ACTIONS(4265), + [anon_sym_LPAREN2] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4265), + [anon_sym_PLUS] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_AMP_AMP] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4265), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym___extension__] = ACTIONS(4265), + [anon_sym_typedef] = ACTIONS(4265), + [anon_sym_virtual] = ACTIONS(4265), + [anon_sym_extern] = ACTIONS(4265), + [anon_sym___attribute__] = ACTIONS(4265), + [anon_sym___attribute] = ACTIONS(4265), + [anon_sym_using] = ACTIONS(4265), + [anon_sym_COLON_COLON] = ACTIONS(4263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4263), + [anon_sym___declspec] = ACTIONS(4265), + [anon_sym___based] = ACTIONS(4265), + [anon_sym___cdecl] = ACTIONS(4265), + [anon_sym___clrcall] = ACTIONS(4265), + [anon_sym___stdcall] = ACTIONS(4265), + [anon_sym___fastcall] = ACTIONS(4265), + [anon_sym___thiscall] = ACTIONS(4265), + [anon_sym___vectorcall] = ACTIONS(4265), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_signed] = ACTIONS(4265), + [anon_sym_unsigned] = ACTIONS(4265), + [anon_sym_long] = ACTIONS(4265), + [anon_sym_short] = ACTIONS(4265), + [anon_sym_LBRACK] = ACTIONS(4265), + [anon_sym_static] = ACTIONS(4265), + [anon_sym_register] = ACTIONS(4265), + [anon_sym_inline] = ACTIONS(4265), + [anon_sym___inline] = ACTIONS(4265), + [anon_sym___inline__] = ACTIONS(4265), + [anon_sym___forceinline] = ACTIONS(4265), + [anon_sym_thread_local] = ACTIONS(4265), + [anon_sym___thread] = ACTIONS(4265), + [anon_sym_const] = ACTIONS(4265), + [anon_sym_constexpr] = ACTIONS(4265), + [anon_sym_volatile] = ACTIONS(4265), + [anon_sym_restrict] = ACTIONS(4265), + [anon_sym___restrict__] = ACTIONS(4265), + [anon_sym__Atomic] = ACTIONS(4265), + [anon_sym__Noreturn] = ACTIONS(4265), + [anon_sym_noreturn] = ACTIONS(4265), + [anon_sym__Nonnull] = ACTIONS(4265), + [anon_sym_mutable] = ACTIONS(4265), + [anon_sym_constinit] = ACTIONS(4265), + [anon_sym_consteval] = ACTIONS(4265), + [anon_sym_alignas] = ACTIONS(4265), + [anon_sym__Alignas] = ACTIONS(4265), + [sym_primitive_type] = ACTIONS(4265), + [anon_sym_enum] = ACTIONS(4265), + [anon_sym_class] = ACTIONS(4265), + [anon_sym_struct] = ACTIONS(4265), + [anon_sym_union] = ACTIONS(4265), + [anon_sym_if] = ACTIONS(4265), + [anon_sym_switch] = ACTIONS(4265), + [anon_sym_case] = ACTIONS(4265), + [anon_sym_default] = ACTIONS(4265), + [anon_sym_while] = ACTIONS(4265), + [anon_sym_do] = ACTIONS(4265), + [anon_sym_for] = ACTIONS(4265), + [anon_sym_return] = ACTIONS(4265), + [anon_sym_break] = ACTIONS(4265), + [anon_sym_continue] = ACTIONS(4265), + [anon_sym_goto] = ACTIONS(4265), + [anon_sym_not] = ACTIONS(4265), + [anon_sym_compl] = ACTIONS(4265), + [anon_sym_DASH_DASH] = ACTIONS(4263), + [anon_sym_PLUS_PLUS] = ACTIONS(4263), + [anon_sym_sizeof] = ACTIONS(4265), + [anon_sym___alignof__] = ACTIONS(4265), + [anon_sym___alignof] = ACTIONS(4265), + [anon_sym__alignof] = ACTIONS(4265), + [anon_sym_alignof] = ACTIONS(4265), + [anon_sym__Alignof] = ACTIONS(4265), + [anon_sym_offsetof] = ACTIONS(4265), + [anon_sym__Generic] = ACTIONS(4265), + [anon_sym_typename] = ACTIONS(4265), + [anon_sym_asm] = ACTIONS(4265), + [anon_sym___asm__] = ACTIONS(4265), + [anon_sym___asm] = ACTIONS(4265), + [sym_number_literal] = ACTIONS(4263), + [anon_sym_L_SQUOTE] = ACTIONS(4263), + [anon_sym_u_SQUOTE] = ACTIONS(4263), + [anon_sym_U_SQUOTE] = ACTIONS(4263), + [anon_sym_u8_SQUOTE] = ACTIONS(4263), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_L_DQUOTE] = ACTIONS(4263), + [anon_sym_u_DQUOTE] = ACTIONS(4263), + [anon_sym_U_DQUOTE] = ACTIONS(4263), + [anon_sym_u8_DQUOTE] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [sym_true] = ACTIONS(4265), + [sym_false] = ACTIONS(4265), + [anon_sym_NULL] = ACTIONS(4265), + [anon_sym_nullptr] = ACTIONS(4265), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4265), + [anon_sym_decltype] = ACTIONS(4265), + [anon_sym_explicit] = ACTIONS(4265), + [anon_sym_export] = ACTIONS(4265), + [anon_sym_module] = ACTIONS(4265), + [anon_sym_import] = ACTIONS(4265), + [anon_sym_template] = ACTIONS(4265), + [anon_sym_operator] = ACTIONS(4265), + [anon_sym_try] = ACTIONS(4265), + [anon_sym_delete] = ACTIONS(4265), + [anon_sym_throw] = ACTIONS(4265), + [anon_sym_namespace] = ACTIONS(4265), + [anon_sym_static_assert] = ACTIONS(4265), + [anon_sym_concept] = ACTIONS(4265), + [anon_sym_co_return] = ACTIONS(4265), + [anon_sym_co_yield] = ACTIONS(4265), + [anon_sym_R_DQUOTE] = ACTIONS(4263), + [anon_sym_LR_DQUOTE] = ACTIONS(4263), + [anon_sym_uR_DQUOTE] = ACTIONS(4263), + [anon_sym_UR_DQUOTE] = ACTIONS(4263), + [anon_sym_u8R_DQUOTE] = ACTIONS(4263), + [anon_sym_co_await] = ACTIONS(4265), + [anon_sym_new] = ACTIONS(4265), + [anon_sym_requires] = ACTIONS(4265), + [anon_sym_CARET_CARET] = ACTIONS(4263), + [anon_sym_LBRACK_COLON] = ACTIONS(4263), + [sym_this] = ACTIONS(4265), }, - [STATE(1111)] = { - [sym_expression] = STATE(4645), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8633), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(567)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(1112)] = { - [sym_expression] = STATE(4627), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8983), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4704), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(568)] = { + [ts_builtin_sym_end] = ACTIONS(4267), + [sym_identifier] = ACTIONS(4269), + [aux_sym_preproc_include_token1] = ACTIONS(4269), + [aux_sym_preproc_def_token1] = ACTIONS(4269), + [aux_sym_preproc_if_token1] = ACTIONS(4269), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), + [sym_preproc_directive] = ACTIONS(4269), + [anon_sym_LPAREN2] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4269), + [anon_sym_PLUS] = ACTIONS(4269), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_AMP_AMP] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4269), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym___extension__] = ACTIONS(4269), + [anon_sym_typedef] = ACTIONS(4269), + [anon_sym_virtual] = ACTIONS(4269), + [anon_sym_extern] = ACTIONS(4269), + [anon_sym___attribute__] = ACTIONS(4269), + [anon_sym___attribute] = ACTIONS(4269), + [anon_sym_using] = ACTIONS(4269), + [anon_sym_COLON_COLON] = ACTIONS(4267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4267), + [anon_sym___declspec] = ACTIONS(4269), + [anon_sym___based] = ACTIONS(4269), + [anon_sym___cdecl] = ACTIONS(4269), + [anon_sym___clrcall] = ACTIONS(4269), + [anon_sym___stdcall] = ACTIONS(4269), + [anon_sym___fastcall] = ACTIONS(4269), + [anon_sym___thiscall] = ACTIONS(4269), + [anon_sym___vectorcall] = ACTIONS(4269), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_signed] = ACTIONS(4269), + [anon_sym_unsigned] = ACTIONS(4269), + [anon_sym_long] = ACTIONS(4269), + [anon_sym_short] = ACTIONS(4269), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_static] = ACTIONS(4269), + [anon_sym_register] = ACTIONS(4269), + [anon_sym_inline] = ACTIONS(4269), + [anon_sym___inline] = ACTIONS(4269), + [anon_sym___inline__] = ACTIONS(4269), + [anon_sym___forceinline] = ACTIONS(4269), + [anon_sym_thread_local] = ACTIONS(4269), + [anon_sym___thread] = ACTIONS(4269), + [anon_sym_const] = ACTIONS(4269), + [anon_sym_constexpr] = ACTIONS(4269), + [anon_sym_volatile] = ACTIONS(4269), + [anon_sym_restrict] = ACTIONS(4269), + [anon_sym___restrict__] = ACTIONS(4269), + [anon_sym__Atomic] = ACTIONS(4269), + [anon_sym__Noreturn] = ACTIONS(4269), + [anon_sym_noreturn] = ACTIONS(4269), + [anon_sym__Nonnull] = ACTIONS(4269), + [anon_sym_mutable] = ACTIONS(4269), + [anon_sym_constinit] = ACTIONS(4269), + [anon_sym_consteval] = ACTIONS(4269), + [anon_sym_alignas] = ACTIONS(4269), + [anon_sym__Alignas] = ACTIONS(4269), + [sym_primitive_type] = ACTIONS(4269), + [anon_sym_enum] = ACTIONS(4269), + [anon_sym_class] = ACTIONS(4269), + [anon_sym_struct] = ACTIONS(4269), + [anon_sym_union] = ACTIONS(4269), + [anon_sym_if] = ACTIONS(4269), + [anon_sym_switch] = ACTIONS(4269), + [anon_sym_case] = ACTIONS(4269), + [anon_sym_default] = ACTIONS(4269), + [anon_sym_while] = ACTIONS(4269), + [anon_sym_do] = ACTIONS(4269), + [anon_sym_for] = ACTIONS(4269), + [anon_sym_return] = ACTIONS(4269), + [anon_sym_break] = ACTIONS(4269), + [anon_sym_continue] = ACTIONS(4269), + [anon_sym_goto] = ACTIONS(4269), + [anon_sym_not] = ACTIONS(4269), + [anon_sym_compl] = ACTIONS(4269), + [anon_sym_DASH_DASH] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(4267), + [anon_sym_sizeof] = ACTIONS(4269), + [anon_sym___alignof__] = ACTIONS(4269), + [anon_sym___alignof] = ACTIONS(4269), + [anon_sym__alignof] = ACTIONS(4269), + [anon_sym_alignof] = ACTIONS(4269), + [anon_sym__Alignof] = ACTIONS(4269), + [anon_sym_offsetof] = ACTIONS(4269), + [anon_sym__Generic] = ACTIONS(4269), + [anon_sym_typename] = ACTIONS(4269), + [anon_sym_asm] = ACTIONS(4269), + [anon_sym___asm__] = ACTIONS(4269), + [anon_sym___asm] = ACTIONS(4269), + [sym_number_literal] = ACTIONS(4267), + [anon_sym_L_SQUOTE] = ACTIONS(4267), + [anon_sym_u_SQUOTE] = ACTIONS(4267), + [anon_sym_U_SQUOTE] = ACTIONS(4267), + [anon_sym_u8_SQUOTE] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_L_DQUOTE] = ACTIONS(4267), + [anon_sym_u_DQUOTE] = ACTIONS(4267), + [anon_sym_U_DQUOTE] = ACTIONS(4267), + [anon_sym_u8_DQUOTE] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym_true] = ACTIONS(4269), + [sym_false] = ACTIONS(4269), + [anon_sym_NULL] = ACTIONS(4269), + [anon_sym_nullptr] = ACTIONS(4269), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4269), + [anon_sym_decltype] = ACTIONS(4269), + [anon_sym_explicit] = ACTIONS(4269), + [anon_sym_export] = ACTIONS(4269), + [anon_sym_module] = ACTIONS(4269), + [anon_sym_import] = ACTIONS(4269), + [anon_sym_template] = ACTIONS(4269), + [anon_sym_operator] = ACTIONS(4269), + [anon_sym_try] = ACTIONS(4269), + [anon_sym_delete] = ACTIONS(4269), + [anon_sym_throw] = ACTIONS(4269), + [anon_sym_namespace] = ACTIONS(4269), + [anon_sym_static_assert] = ACTIONS(4269), + [anon_sym_concept] = ACTIONS(4269), + [anon_sym_co_return] = ACTIONS(4269), + [anon_sym_co_yield] = ACTIONS(4269), + [anon_sym_R_DQUOTE] = ACTIONS(4267), + [anon_sym_LR_DQUOTE] = ACTIONS(4267), + [anon_sym_uR_DQUOTE] = ACTIONS(4267), + [anon_sym_UR_DQUOTE] = ACTIONS(4267), + [anon_sym_u8R_DQUOTE] = ACTIONS(4267), + [anon_sym_co_await] = ACTIONS(4269), + [anon_sym_new] = ACTIONS(4269), + [anon_sym_requires] = ACTIONS(4269), + [anon_sym_CARET_CARET] = ACTIONS(4267), + [anon_sym_LBRACK_COLON] = ACTIONS(4267), + [sym_this] = ACTIONS(4269), }, - [STATE(1113)] = { - [sym_expression] = STATE(4634), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(569)] = { + [ts_builtin_sym_end] = ACTIONS(3984), + [sym_identifier] = ACTIONS(3982), + [aux_sym_preproc_include_token1] = ACTIONS(3982), + [aux_sym_preproc_def_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), + [sym_preproc_directive] = ACTIONS(3982), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_TILDE] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym___extension__] = ACTIONS(3982), + [anon_sym_typedef] = ACTIONS(3982), + [anon_sym_virtual] = ACTIONS(3982), + [anon_sym_extern] = ACTIONS(3982), + [anon_sym___attribute__] = ACTIONS(3982), + [anon_sym___attribute] = ACTIONS(3982), + [anon_sym_using] = ACTIONS(3982), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), + [anon_sym___declspec] = ACTIONS(3982), + [anon_sym___based] = ACTIONS(3982), + [anon_sym___cdecl] = ACTIONS(3982), + [anon_sym___clrcall] = ACTIONS(3982), + [anon_sym___stdcall] = ACTIONS(3982), + [anon_sym___fastcall] = ACTIONS(3982), + [anon_sym___thiscall] = ACTIONS(3982), + [anon_sym___vectorcall] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3982), + [anon_sym_unsigned] = ACTIONS(3982), + [anon_sym_long] = ACTIONS(3982), + [anon_sym_short] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_static] = ACTIONS(3982), + [anon_sym_register] = ACTIONS(3982), + [anon_sym_inline] = ACTIONS(3982), + [anon_sym___inline] = ACTIONS(3982), + [anon_sym___inline__] = ACTIONS(3982), + [anon_sym___forceinline] = ACTIONS(3982), + [anon_sym_thread_local] = ACTIONS(3982), + [anon_sym___thread] = ACTIONS(3982), + [anon_sym_const] = ACTIONS(3982), + [anon_sym_constexpr] = ACTIONS(3982), + [anon_sym_volatile] = ACTIONS(3982), + [anon_sym_restrict] = ACTIONS(3982), + [anon_sym___restrict__] = ACTIONS(3982), + [anon_sym__Atomic] = ACTIONS(3982), + [anon_sym__Noreturn] = ACTIONS(3982), + [anon_sym_noreturn] = ACTIONS(3982), + [anon_sym__Nonnull] = ACTIONS(3982), + [anon_sym_mutable] = ACTIONS(3982), + [anon_sym_constinit] = ACTIONS(3982), + [anon_sym_consteval] = ACTIONS(3982), + [anon_sym_alignas] = ACTIONS(3982), + [anon_sym__Alignas] = ACTIONS(3982), + [sym_primitive_type] = ACTIONS(3982), + [anon_sym_enum] = ACTIONS(3982), + [anon_sym_class] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3982), + [anon_sym_union] = ACTIONS(3982), + [anon_sym_if] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_case] = ACTIONS(3982), + [anon_sym_default] = ACTIONS(3982), + [anon_sym_while] = ACTIONS(3982), + [anon_sym_do] = ACTIONS(3982), + [anon_sym_for] = ACTIONS(3982), + [anon_sym_return] = ACTIONS(3982), + [anon_sym_break] = ACTIONS(3982), + [anon_sym_continue] = ACTIONS(3982), + [anon_sym_goto] = ACTIONS(3982), + [anon_sym_not] = ACTIONS(3982), + [anon_sym_compl] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3984), + [anon_sym_sizeof] = ACTIONS(3982), + [anon_sym___alignof__] = ACTIONS(3982), + [anon_sym___alignof] = ACTIONS(3982), + [anon_sym__alignof] = ACTIONS(3982), + [anon_sym_alignof] = ACTIONS(3982), + [anon_sym__Alignof] = ACTIONS(3982), + [anon_sym_offsetof] = ACTIONS(3982), + [anon_sym__Generic] = ACTIONS(3982), + [anon_sym_typename] = ACTIONS(3982), + [anon_sym_asm] = ACTIONS(3982), + [anon_sym___asm__] = ACTIONS(3982), + [anon_sym___asm] = ACTIONS(3982), + [sym_number_literal] = ACTIONS(3984), + [anon_sym_L_SQUOTE] = ACTIONS(3984), + [anon_sym_u_SQUOTE] = ACTIONS(3984), + [anon_sym_U_SQUOTE] = ACTIONS(3984), + [anon_sym_u8_SQUOTE] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3984), + [anon_sym_L_DQUOTE] = ACTIONS(3984), + [anon_sym_u_DQUOTE] = ACTIONS(3984), + [anon_sym_U_DQUOTE] = ACTIONS(3984), + [anon_sym_u8_DQUOTE] = ACTIONS(3984), + [anon_sym_DQUOTE] = ACTIONS(3984), + [sym_true] = ACTIONS(3982), + [sym_false] = ACTIONS(3982), + [anon_sym_NULL] = ACTIONS(3982), + [anon_sym_nullptr] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3982), + [anon_sym_decltype] = ACTIONS(3982), + [anon_sym_explicit] = ACTIONS(3982), + [anon_sym_export] = ACTIONS(3982), + [anon_sym_module] = ACTIONS(3982), + [anon_sym_import] = ACTIONS(3982), + [anon_sym_template] = ACTIONS(3982), + [anon_sym_operator] = ACTIONS(3982), + [anon_sym_try] = ACTIONS(3982), + [anon_sym_delete] = ACTIONS(3982), + [anon_sym_throw] = ACTIONS(3982), + [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_static_assert] = ACTIONS(3982), + [anon_sym_concept] = ACTIONS(3982), + [anon_sym_co_return] = ACTIONS(3982), + [anon_sym_co_yield] = ACTIONS(3982), + [anon_sym_R_DQUOTE] = ACTIONS(3984), + [anon_sym_LR_DQUOTE] = ACTIONS(3984), + [anon_sym_uR_DQUOTE] = ACTIONS(3984), + [anon_sym_UR_DQUOTE] = ACTIONS(3984), + [anon_sym_u8R_DQUOTE] = ACTIONS(3984), + [anon_sym_co_await] = ACTIONS(3982), + [anon_sym_new] = ACTIONS(3982), + [anon_sym_requires] = ACTIONS(3982), + [anon_sym_CARET_CARET] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3984), + [sym_this] = ACTIONS(3982), }, - [STATE(1114)] = { - [sym_expression] = STATE(4434), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(7664), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4706), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(570)] = { + [ts_builtin_sym_end] = ACTIONS(4020), + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_include_token1] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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___cdecl] = ACTIONS(4018), + [anon_sym___clrcall] = ACTIONS(4018), + [anon_sym___stdcall] = ACTIONS(4018), + [anon_sym___fastcall] = ACTIONS(4018), + [anon_sym___thiscall] = ACTIONS(4018), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_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_typename] = ACTIONS(4018), + [anon_sym_asm] = 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_explicit] = ACTIONS(4018), + [anon_sym_export] = ACTIONS(4018), + [anon_sym_module] = ACTIONS(4018), + [anon_sym_import] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [sym_this] = ACTIONS(4018), }, - [STATE(1115)] = { - [sym_expression] = STATE(4575), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8957), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(571)] = { + [ts_builtin_sym_end] = ACTIONS(4024), + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_include_token1] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym___cdecl] = ACTIONS(4022), + [anon_sym___clrcall] = ACTIONS(4022), + [anon_sym___stdcall] = ACTIONS(4022), + [anon_sym___fastcall] = ACTIONS(4022), + [anon_sym___thiscall] = ACTIONS(4022), + [anon_sym___vectorcall] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_case] = ACTIONS(4022), + [anon_sym_default] = ACTIONS(4022), + [anon_sym_while] = ACTIONS(4022), + [anon_sym_do] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym_not] = ACTIONS(4022), + [anon_sym_compl] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_sizeof] = ACTIONS(4022), + [anon_sym___alignof__] = ACTIONS(4022), + [anon_sym___alignof] = ACTIONS(4022), + [anon_sym__alignof] = ACTIONS(4022), + [anon_sym_alignof] = ACTIONS(4022), + [anon_sym__Alignof] = ACTIONS(4022), + [anon_sym_offsetof] = ACTIONS(4022), + [anon_sym__Generic] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [anon_sym_asm] = ACTIONS(4022), + [anon_sym___asm__] = ACTIONS(4022), + [anon_sym___asm] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4024), + [anon_sym_L_SQUOTE] = ACTIONS(4024), + [anon_sym_u_SQUOTE] = ACTIONS(4024), + [anon_sym_U_SQUOTE] = ACTIONS(4024), + [anon_sym_u8_SQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_L_DQUOTE] = ACTIONS(4024), + [anon_sym_u_DQUOTE] = ACTIONS(4024), + [anon_sym_U_DQUOTE] = ACTIONS(4024), + [anon_sym_u8_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE] = ACTIONS(4024), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [anon_sym_NULL] = ACTIONS(4022), + [anon_sym_nullptr] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_export] = ACTIONS(4022), + [anon_sym_module] = ACTIONS(4022), + [anon_sym_import] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4022), + [anon_sym_delete] = ACTIONS(4022), + [anon_sym_throw] = ACTIONS(4022), + [anon_sym_namespace] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_concept] = ACTIONS(4022), + [anon_sym_co_return] = ACTIONS(4022), + [anon_sym_co_yield] = ACTIONS(4022), + [anon_sym_R_DQUOTE] = ACTIONS(4024), + [anon_sym_LR_DQUOTE] = ACTIONS(4024), + [anon_sym_uR_DQUOTE] = ACTIONS(4024), + [anon_sym_UR_DQUOTE] = ACTIONS(4024), + [anon_sym_u8R_DQUOTE] = ACTIONS(4024), + [anon_sym_co_await] = ACTIONS(4022), + [anon_sym_new] = ACTIONS(4022), + [anon_sym_requires] = ACTIONS(4022), + [anon_sym_CARET_CARET] = ACTIONS(4024), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [sym_this] = ACTIONS(4022), }, - [STATE(1116)] = { - [sym_expression] = STATE(4488), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_initializer_list] = STATE(3984), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(572)] = { + [ts_builtin_sym_end] = ACTIONS(4028), + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_include_token1] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym___cdecl] = ACTIONS(4026), + [anon_sym___clrcall] = ACTIONS(4026), + [anon_sym___stdcall] = ACTIONS(4026), + [anon_sym___fastcall] = ACTIONS(4026), + [anon_sym___thiscall] = ACTIONS(4026), + [anon_sym___vectorcall] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_case] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_goto] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_compl] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4026), + [anon_sym___alignof__] = ACTIONS(4026), + [anon_sym___alignof] = ACTIONS(4026), + [anon_sym__alignof] = ACTIONS(4026), + [anon_sym_alignof] = ACTIONS(4026), + [anon_sym__Alignof] = ACTIONS(4026), + [anon_sym_offsetof] = ACTIONS(4026), + [anon_sym__Generic] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [anon_sym_asm] = ACTIONS(4026), + [anon_sym___asm__] = ACTIONS(4026), + [anon_sym___asm] = ACTIONS(4026), + [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(4026), + [sym_false] = ACTIONS(4026), + [anon_sym_NULL] = ACTIONS(4026), + [anon_sym_nullptr] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_export] = ACTIONS(4026), + [anon_sym_module] = ACTIONS(4026), + [anon_sym_import] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_delete] = ACTIONS(4026), + [anon_sym_throw] = ACTIONS(4026), + [anon_sym_namespace] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_concept] = ACTIONS(4026), + [anon_sym_co_return] = ACTIONS(4026), + [anon_sym_co_yield] = ACTIONS(4026), + [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(4026), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_requires] = ACTIONS(4026), + [anon_sym_CARET_CARET] = ACTIONS(4028), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [sym_this] = ACTIONS(4026), }, - [STATE(1117)] = { - [sym_expression] = STATE(4502), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8796), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4711), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(573)] = { + [ts_builtin_sym_end] = ACTIONS(4032), + [sym_identifier] = ACTIONS(4030), + [aux_sym_preproc_include_token1] = ACTIONS(4030), + [aux_sym_preproc_def_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), + [sym_preproc_directive] = ACTIONS(4030), + [anon_sym_LPAREN2] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym___extension__] = ACTIONS(4030), + [anon_sym_typedef] = ACTIONS(4030), + [anon_sym_virtual] = ACTIONS(4030), + [anon_sym_extern] = ACTIONS(4030), + [anon_sym___attribute__] = ACTIONS(4030), + [anon_sym___attribute] = ACTIONS(4030), + [anon_sym_using] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), + [anon_sym___declspec] = ACTIONS(4030), + [anon_sym___based] = ACTIONS(4030), + [anon_sym___cdecl] = ACTIONS(4030), + [anon_sym___clrcall] = ACTIONS(4030), + [anon_sym___stdcall] = ACTIONS(4030), + [anon_sym___fastcall] = ACTIONS(4030), + [anon_sym___thiscall] = ACTIONS(4030), + [anon_sym___vectorcall] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_signed] = ACTIONS(4030), + [anon_sym_unsigned] = ACTIONS(4030), + [anon_sym_long] = ACTIONS(4030), + [anon_sym_short] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_static] = ACTIONS(4030), + [anon_sym_register] = ACTIONS(4030), + [anon_sym_inline] = ACTIONS(4030), + [anon_sym___inline] = ACTIONS(4030), + [anon_sym___inline__] = ACTIONS(4030), + [anon_sym___forceinline] = ACTIONS(4030), + [anon_sym_thread_local] = ACTIONS(4030), + [anon_sym___thread] = ACTIONS(4030), + [anon_sym_const] = ACTIONS(4030), + [anon_sym_constexpr] = ACTIONS(4030), + [anon_sym_volatile] = ACTIONS(4030), + [anon_sym_restrict] = ACTIONS(4030), + [anon_sym___restrict__] = ACTIONS(4030), + [anon_sym__Atomic] = ACTIONS(4030), + [anon_sym__Noreturn] = ACTIONS(4030), + [anon_sym_noreturn] = ACTIONS(4030), + [anon_sym__Nonnull] = ACTIONS(4030), + [anon_sym_mutable] = ACTIONS(4030), + [anon_sym_constinit] = ACTIONS(4030), + [anon_sym_consteval] = ACTIONS(4030), + [anon_sym_alignas] = ACTIONS(4030), + [anon_sym__Alignas] = ACTIONS(4030), + [sym_primitive_type] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(4030), + [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_not] = ACTIONS(4030), + [anon_sym_compl] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4032), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [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_typename] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [anon_sym___asm] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4032), + [anon_sym_L_SQUOTE] = ACTIONS(4032), + [anon_sym_u_SQUOTE] = ACTIONS(4032), + [anon_sym_U_SQUOTE] = ACTIONS(4032), + [anon_sym_u8_SQUOTE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(4032), + [anon_sym_L_DQUOTE] = ACTIONS(4032), + [anon_sym_u_DQUOTE] = ACTIONS(4032), + [anon_sym_U_DQUOTE] = ACTIONS(4032), + [anon_sym_u8_DQUOTE] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [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(4030), + [anon_sym_decltype] = ACTIONS(4030), + [anon_sym_explicit] = ACTIONS(4030), + [anon_sym_export] = ACTIONS(4030), + [anon_sym_module] = ACTIONS(4030), + [anon_sym_import] = ACTIONS(4030), + [anon_sym_template] = ACTIONS(4030), + [anon_sym_operator] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_namespace] = ACTIONS(4030), + [anon_sym_static_assert] = ACTIONS(4030), + [anon_sym_concept] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4032), + [anon_sym_LR_DQUOTE] = ACTIONS(4032), + [anon_sym_uR_DQUOTE] = ACTIONS(4032), + [anon_sym_UR_DQUOTE] = ACTIONS(4032), + [anon_sym_u8R_DQUOTE] = ACTIONS(4032), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [anon_sym_CARET_CARET] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4032), + [sym_this] = ACTIONS(4030), }, - [STATE(1118)] = { - [sym_expression] = STATE(4585), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8426), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4713), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(574)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1119)] = { - [sym_expression] = STATE(4591), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8438), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4715), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(575)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1120)] = { - [sym_expression] = STATE(4603), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(8445), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON] = ACTIONS(4717), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(576)] = { + [ts_builtin_sym_end] = ACTIONS(4036), + [sym_identifier] = ACTIONS(4034), + [aux_sym_preproc_include_token1] = ACTIONS(4034), + [aux_sym_preproc_def_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), + [sym_preproc_directive] = ACTIONS(4034), + [anon_sym_LPAREN2] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_typedef] = ACTIONS(4034), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym___attribute] = ACTIONS(4034), + [anon_sym_using] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym___based] = ACTIONS(4034), + [anon_sym___cdecl] = ACTIONS(4034), + [anon_sym___clrcall] = ACTIONS(4034), + [anon_sym___stdcall] = ACTIONS(4034), + [anon_sym___fastcall] = ACTIONS(4034), + [anon_sym___thiscall] = ACTIONS(4034), + [anon_sym___vectorcall] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4034), + [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__Nonnull] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym__Alignas] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4034), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_case] = ACTIONS(4034), + [anon_sym_default] = ACTIONS(4034), + [anon_sym_while] = ACTIONS(4034), + [anon_sym_do] = ACTIONS(4034), + [anon_sym_for] = ACTIONS(4034), + [anon_sym_return] = ACTIONS(4034), + [anon_sym_break] = ACTIONS(4034), + [anon_sym_continue] = ACTIONS(4034), + [anon_sym_goto] = ACTIONS(4034), + [anon_sym_not] = ACTIONS(4034), + [anon_sym_compl] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(4034), + [anon_sym___alignof__] = ACTIONS(4034), + [anon_sym___alignof] = ACTIONS(4034), + [anon_sym__alignof] = ACTIONS(4034), + [anon_sym_alignof] = ACTIONS(4034), + [anon_sym__Alignof] = ACTIONS(4034), + [anon_sym_offsetof] = ACTIONS(4034), + [anon_sym__Generic] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_asm] = ACTIONS(4034), + [anon_sym___asm__] = ACTIONS(4034), + [anon_sym___asm] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4036), + [anon_sym_L_SQUOTE] = ACTIONS(4036), + [anon_sym_u_SQUOTE] = ACTIONS(4036), + [anon_sym_U_SQUOTE] = ACTIONS(4036), + [anon_sym_u8_SQUOTE] = ACTIONS(4036), + [anon_sym_SQUOTE] = ACTIONS(4036), + [anon_sym_L_DQUOTE] = ACTIONS(4036), + [anon_sym_u_DQUOTE] = ACTIONS(4036), + [anon_sym_U_DQUOTE] = ACTIONS(4036), + [anon_sym_u8_DQUOTE] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [anon_sym_NULL] = ACTIONS(4034), + [anon_sym_nullptr] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4034), + [anon_sym_explicit] = ACTIONS(4034), + [anon_sym_export] = ACTIONS(4034), + [anon_sym_module] = ACTIONS(4034), + [anon_sym_import] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4034), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4034), + [anon_sym_delete] = ACTIONS(4034), + [anon_sym_throw] = ACTIONS(4034), + [anon_sym_namespace] = ACTIONS(4034), + [anon_sym_static_assert] = ACTIONS(4034), + [anon_sym_concept] = ACTIONS(4034), + [anon_sym_co_return] = ACTIONS(4034), + [anon_sym_co_yield] = ACTIONS(4034), + [anon_sym_R_DQUOTE] = ACTIONS(4036), + [anon_sym_LR_DQUOTE] = ACTIONS(4036), + [anon_sym_uR_DQUOTE] = ACTIONS(4036), + [anon_sym_UR_DQUOTE] = ACTIONS(4036), + [anon_sym_u8R_DQUOTE] = ACTIONS(4036), + [anon_sym_co_await] = ACTIONS(4034), + [anon_sym_new] = ACTIONS(4034), + [anon_sym_requires] = ACTIONS(4034), + [anon_sym_CARET_CARET] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4036), + [sym_this] = ACTIONS(4034), }, - [STATE(1121)] = { - [sym_expression] = STATE(2381), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_initializer_list] = STATE(2519), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(577)] = { + [ts_builtin_sym_end] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_export] = ACTIONS(4192), + [anon_sym_module] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(1122)] = { - [sym_expression] = STATE(4408), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_initializer_list] = STATE(7822), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(578)] = { + [ts_builtin_sym_end] = ACTIONS(3972), + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_include_token1] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym___cdecl] = ACTIONS(3970), + [anon_sym___clrcall] = ACTIONS(3970), + [anon_sym___stdcall] = ACTIONS(3970), + [anon_sym___fastcall] = ACTIONS(3970), + [anon_sym___thiscall] = ACTIONS(3970), + [anon_sym___vectorcall] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_case] = ACTIONS(3970), + [anon_sym_default] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_do] = ACTIONS(3970), + [anon_sym_for] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_goto] = ACTIONS(3970), + [anon_sym_not] = ACTIONS(3970), + [anon_sym_compl] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_sizeof] = ACTIONS(3970), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3970), + [anon_sym__Generic] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [anon_sym_asm] = ACTIONS(3970), + [anon_sym___asm__] = ACTIONS(3970), + [anon_sym___asm] = ACTIONS(3970), + [sym_number_literal] = ACTIONS(3972), + [anon_sym_L_SQUOTE] = ACTIONS(3972), + [anon_sym_u_SQUOTE] = ACTIONS(3972), + [anon_sym_U_SQUOTE] = ACTIONS(3972), + [anon_sym_u8_SQUOTE] = ACTIONS(3972), + [anon_sym_SQUOTE] = ACTIONS(3972), + [anon_sym_L_DQUOTE] = ACTIONS(3972), + [anon_sym_u_DQUOTE] = ACTIONS(3972), + [anon_sym_U_DQUOTE] = ACTIONS(3972), + [anon_sym_u8_DQUOTE] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(3972), + [sym_true] = ACTIONS(3970), + [sym_false] = ACTIONS(3970), + [anon_sym_NULL] = ACTIONS(3970), + [anon_sym_nullptr] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_export] = ACTIONS(3970), + [anon_sym_module] = ACTIONS(3970), + [anon_sym_import] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_delete] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_namespace] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(3970), + [anon_sym_co_return] = ACTIONS(3970), + [anon_sym_co_yield] = ACTIONS(3970), + [anon_sym_R_DQUOTE] = ACTIONS(3972), + [anon_sym_LR_DQUOTE] = ACTIONS(3972), + [anon_sym_uR_DQUOTE] = ACTIONS(3972), + [anon_sym_UR_DQUOTE] = ACTIONS(3972), + [anon_sym_u8R_DQUOTE] = ACTIONS(3972), + [anon_sym_co_await] = ACTIONS(3970), + [anon_sym_new] = ACTIONS(3970), + [anon_sym_requires] = ACTIONS(3970), + [anon_sym_CARET_CARET] = ACTIONS(3972), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [sym_this] = ACTIONS(3970), }, - [STATE(1123)] = { - [sym_expression] = STATE(3173), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(579)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1124)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4724), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(580)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1125)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4726), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(581)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1126)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4728), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(582)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1127)] = { - [sym_expression] = STATE(4369), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(4732), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(583)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3736), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), + [sym_preproc_directive] = ACTIONS(4280), + [anon_sym_LPAREN2] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(3777), + [anon_sym_extern] = ACTIONS(3780), + [anon_sym___attribute__] = ACTIONS(3783), + [anon_sym___attribute] = ACTIONS(3783), + [anon_sym_using] = ACTIONS(4292), + [anon_sym_COLON_COLON] = ACTIONS(3789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), + [anon_sym___declspec] = ACTIONS(3795), + [anon_sym___based] = ACTIONS(3798), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(3801), + [anon_sym_unsigned] = ACTIONS(3801), + [anon_sym_long] = ACTIONS(3801), + [anon_sym_short] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_static] = ACTIONS(3780), + [anon_sym_register] = ACTIONS(3780), + [anon_sym_inline] = ACTIONS(3780), + [anon_sym___inline] = ACTIONS(3780), + [anon_sym___inline__] = ACTIONS(3780), + [anon_sym___forceinline] = ACTIONS(3780), + [anon_sym_thread_local] = ACTIONS(3780), + [anon_sym___thread] = ACTIONS(3780), + [anon_sym_const] = ACTIONS(3807), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(3807), + [anon_sym_restrict] = ACTIONS(3807), + [anon_sym___restrict__] = ACTIONS(3807), + [anon_sym__Atomic] = ACTIONS(3807), + [anon_sym__Noreturn] = ACTIONS(3807), + [anon_sym_noreturn] = ACTIONS(3807), + [anon_sym__Nonnull] = ACTIONS(3807), + [anon_sym_mutable] = ACTIONS(3807), + [anon_sym_constinit] = ACTIONS(3807), + [anon_sym_consteval] = ACTIONS(4300), + [anon_sym_alignas] = ACTIONS(3816), + [anon_sym__Alignas] = ACTIONS(3816), + [sym_primitive_type] = ACTIONS(3819), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3828), + [anon_sym_union] = ACTIONS(3831), + [anon_sym_typename] = ACTIONS(3834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3837), + [anon_sym_decltype] = ACTIONS(3840), + [anon_sym_explicit] = ACTIONS(3843), + [anon_sym_private] = ACTIONS(3846), + [anon_sym_template] = ACTIONS(4303), + [anon_sym_operator] = ACTIONS(3852), + [anon_sym_friend] = ACTIONS(4306), + [anon_sym_public] = ACTIONS(3846), + [anon_sym_protected] = ACTIONS(3846), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_LBRACK_COLON] = ACTIONS(3861), }, - [STATE(1128)] = { - [sym_expression] = STATE(4719), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(584)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_include_token1] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token2] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_PLUS] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym___cdecl] = ACTIONS(3890), + [anon_sym___clrcall] = ACTIONS(3890), + [anon_sym___stdcall] = ACTIONS(3890), + [anon_sym___fastcall] = ACTIONS(3890), + [anon_sym___thiscall] = ACTIONS(3890), + [anon_sym___vectorcall] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_if] = ACTIONS(3890), + [anon_sym_else] = ACTIONS(3890), + [anon_sym_switch] = ACTIONS(3890), + [anon_sym_case] = ACTIONS(3890), + [anon_sym_default] = ACTIONS(3890), + [anon_sym_while] = ACTIONS(3890), + [anon_sym_do] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3890), + [anon_sym_return] = ACTIONS(3890), + [anon_sym_break] = ACTIONS(3890), + [anon_sym_continue] = ACTIONS(3890), + [anon_sym_goto] = ACTIONS(3890), + [anon_sym___try] = ACTIONS(3890), + [anon_sym___leave] = ACTIONS(3890), + [anon_sym_not] = ACTIONS(3890), + [anon_sym_compl] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_sizeof] = ACTIONS(3890), + [anon_sym___alignof__] = ACTIONS(3890), + [anon_sym___alignof] = ACTIONS(3890), + [anon_sym__alignof] = ACTIONS(3890), + [anon_sym_alignof] = ACTIONS(3890), + [anon_sym__Alignof] = ACTIONS(3890), + [anon_sym_offsetof] = ACTIONS(3890), + [anon_sym__Generic] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [anon_sym_asm] = ACTIONS(3890), + [anon_sym___asm__] = ACTIONS(3890), + [anon_sym___asm] = ACTIONS(3890), + [sym_number_literal] = ACTIONS(3892), + [anon_sym_L_SQUOTE] = ACTIONS(3892), + [anon_sym_u_SQUOTE] = ACTIONS(3892), + [anon_sym_U_SQUOTE] = ACTIONS(3892), + [anon_sym_u8_SQUOTE] = ACTIONS(3892), + [anon_sym_SQUOTE] = ACTIONS(3892), + [anon_sym_L_DQUOTE] = ACTIONS(3892), + [anon_sym_u_DQUOTE] = ACTIONS(3892), + [anon_sym_U_DQUOTE] = ACTIONS(3892), + [anon_sym_u8_DQUOTE] = ACTIONS(3892), + [anon_sym_DQUOTE] = ACTIONS(3892), + [sym_true] = ACTIONS(3890), + [sym_false] = ACTIONS(3890), + [anon_sym_NULL] = ACTIONS(3890), + [anon_sym_nullptr] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3890), + [anon_sym_delete] = ACTIONS(3890), + [anon_sym_throw] = ACTIONS(3890), + [anon_sym_namespace] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_concept] = ACTIONS(3890), + [anon_sym_co_return] = ACTIONS(3890), + [anon_sym_co_yield] = ACTIONS(3890), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_co_await] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3890), + [anon_sym_requires] = ACTIONS(3890), + [anon_sym_CARET_CARET] = ACTIONS(3892), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [sym_this] = ACTIONS(3890), }, - [STATE(1129)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4736), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(585)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1130)] = { - [sym_expression] = STATE(4733), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4738), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(586)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1131)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4740), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(587)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_include_token1] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token2] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym___cdecl] = ACTIONS(3676), + [anon_sym___clrcall] = ACTIONS(3676), + [anon_sym___stdcall] = ACTIONS(3676), + [anon_sym___fastcall] = ACTIONS(3676), + [anon_sym___thiscall] = ACTIONS(3676), + [anon_sym___vectorcall] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_goto] = ACTIONS(3676), + [anon_sym___try] = ACTIONS(3676), + [anon_sym___leave] = ACTIONS(3676), + [anon_sym_not] = ACTIONS(3676), + [anon_sym_compl] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym___alignof__] = ACTIONS(3676), + [anon_sym___alignof] = ACTIONS(3676), + [anon_sym__alignof] = ACTIONS(3676), + [anon_sym_alignof] = ACTIONS(3676), + [anon_sym__Alignof] = ACTIONS(3676), + [anon_sym_offsetof] = ACTIONS(3676), + [anon_sym__Generic] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [anon_sym_asm] = ACTIONS(3676), + [anon_sym___asm__] = ACTIONS(3676), + [anon_sym___asm] = ACTIONS(3676), + [sym_number_literal] = ACTIONS(3678), + [anon_sym_L_SQUOTE] = ACTIONS(3678), + [anon_sym_u_SQUOTE] = ACTIONS(3678), + [anon_sym_U_SQUOTE] = ACTIONS(3678), + [anon_sym_u8_SQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_L_DQUOTE] = ACTIONS(3678), + [anon_sym_u_DQUOTE] = ACTIONS(3678), + [anon_sym_U_DQUOTE] = ACTIONS(3678), + [anon_sym_u8_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [anon_sym_NULL] = ACTIONS(3676), + [anon_sym_nullptr] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_concept] = ACTIONS(3676), + [anon_sym_co_return] = ACTIONS(3676), + [anon_sym_co_yield] = ACTIONS(3676), + [anon_sym_R_DQUOTE] = ACTIONS(3678), + [anon_sym_LR_DQUOTE] = ACTIONS(3678), + [anon_sym_uR_DQUOTE] = ACTIONS(3678), + [anon_sym_UR_DQUOTE] = ACTIONS(3678), + [anon_sym_u8R_DQUOTE] = ACTIONS(3678), + [anon_sym_co_await] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_requires] = ACTIONS(3676), + [anon_sym_CARET_CARET] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [sym_this] = ACTIONS(3676), }, - [STATE(1132)] = { - [sym_expression] = STATE(4714), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(588)] = { + [ts_builtin_sym_end] = ACTIONS(4040), + [sym_identifier] = ACTIONS(4038), + [aux_sym_preproc_include_token1] = ACTIONS(4038), + [aux_sym_preproc_def_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), + [sym_preproc_directive] = ACTIONS(4038), + [anon_sym_LPAREN2] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym___extension__] = ACTIONS(4038), + [anon_sym_typedef] = ACTIONS(4038), + [anon_sym_virtual] = ACTIONS(4038), + [anon_sym_extern] = ACTIONS(4038), + [anon_sym___attribute__] = ACTIONS(4038), + [anon_sym___attribute] = ACTIONS(4038), + [anon_sym_using] = ACTIONS(4038), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), + [anon_sym___declspec] = ACTIONS(4038), + [anon_sym___based] = ACTIONS(4038), + [anon_sym___cdecl] = ACTIONS(4038), + [anon_sym___clrcall] = ACTIONS(4038), + [anon_sym___stdcall] = ACTIONS(4038), + [anon_sym___fastcall] = ACTIONS(4038), + [anon_sym___thiscall] = ACTIONS(4038), + [anon_sym___vectorcall] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_signed] = ACTIONS(4038), + [anon_sym_unsigned] = ACTIONS(4038), + [anon_sym_long] = ACTIONS(4038), + [anon_sym_short] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4038), + [anon_sym_static] = ACTIONS(4038), + [anon_sym_register] = ACTIONS(4038), + [anon_sym_inline] = ACTIONS(4038), + [anon_sym___inline] = ACTIONS(4038), + [anon_sym___inline__] = ACTIONS(4038), + [anon_sym___forceinline] = ACTIONS(4038), + [anon_sym_thread_local] = ACTIONS(4038), + [anon_sym___thread] = ACTIONS(4038), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_constexpr] = ACTIONS(4038), + [anon_sym_volatile] = ACTIONS(4038), + [anon_sym_restrict] = ACTIONS(4038), + [anon_sym___restrict__] = ACTIONS(4038), + [anon_sym__Atomic] = ACTIONS(4038), + [anon_sym__Noreturn] = ACTIONS(4038), + [anon_sym_noreturn] = ACTIONS(4038), + [anon_sym__Nonnull] = ACTIONS(4038), + [anon_sym_mutable] = ACTIONS(4038), + [anon_sym_constinit] = ACTIONS(4038), + [anon_sym_consteval] = ACTIONS(4038), + [anon_sym_alignas] = ACTIONS(4038), + [anon_sym__Alignas] = ACTIONS(4038), + [sym_primitive_type] = ACTIONS(4038), + [anon_sym_enum] = ACTIONS(4038), + [anon_sym_class] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4038), + [anon_sym_union] = ACTIONS(4038), + [anon_sym_if] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_case] = ACTIONS(4038), + [anon_sym_default] = ACTIONS(4038), + [anon_sym_while] = ACTIONS(4038), + [anon_sym_do] = ACTIONS(4038), + [anon_sym_for] = ACTIONS(4038), + [anon_sym_return] = ACTIONS(4038), + [anon_sym_break] = ACTIONS(4038), + [anon_sym_continue] = ACTIONS(4038), + [anon_sym_goto] = ACTIONS(4038), + [anon_sym_not] = ACTIONS(4038), + [anon_sym_compl] = ACTIONS(4038), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_sizeof] = ACTIONS(4038), + [anon_sym___alignof__] = ACTIONS(4038), + [anon_sym___alignof] = ACTIONS(4038), + [anon_sym__alignof] = ACTIONS(4038), + [anon_sym_alignof] = ACTIONS(4038), + [anon_sym__Alignof] = ACTIONS(4038), + [anon_sym_offsetof] = ACTIONS(4038), + [anon_sym__Generic] = ACTIONS(4038), + [anon_sym_typename] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(4038), + [anon_sym___asm__] = ACTIONS(4038), + [anon_sym___asm] = ACTIONS(4038), + [sym_number_literal] = ACTIONS(4040), + [anon_sym_L_SQUOTE] = ACTIONS(4040), + [anon_sym_u_SQUOTE] = ACTIONS(4040), + [anon_sym_U_SQUOTE] = ACTIONS(4040), + [anon_sym_u8_SQUOTE] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(4040), + [anon_sym_L_DQUOTE] = ACTIONS(4040), + [anon_sym_u_DQUOTE] = ACTIONS(4040), + [anon_sym_U_DQUOTE] = ACTIONS(4040), + [anon_sym_u8_DQUOTE] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [anon_sym_NULL] = ACTIONS(4038), + [anon_sym_nullptr] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4038), + [anon_sym_decltype] = ACTIONS(4038), + [anon_sym_explicit] = ACTIONS(4038), + [anon_sym_export] = ACTIONS(4038), + [anon_sym_module] = ACTIONS(4038), + [anon_sym_import] = ACTIONS(4038), + [anon_sym_template] = ACTIONS(4038), + [anon_sym_operator] = ACTIONS(4038), + [anon_sym_try] = ACTIONS(4038), + [anon_sym_delete] = ACTIONS(4038), + [anon_sym_throw] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_static_assert] = ACTIONS(4038), + [anon_sym_concept] = ACTIONS(4038), + [anon_sym_co_return] = ACTIONS(4038), + [anon_sym_co_yield] = ACTIONS(4038), + [anon_sym_R_DQUOTE] = ACTIONS(4040), + [anon_sym_LR_DQUOTE] = ACTIONS(4040), + [anon_sym_uR_DQUOTE] = ACTIONS(4040), + [anon_sym_UR_DQUOTE] = ACTIONS(4040), + [anon_sym_u8R_DQUOTE] = ACTIONS(4040), + [anon_sym_co_await] = ACTIONS(4038), + [anon_sym_new] = ACTIONS(4038), + [anon_sym_requires] = ACTIONS(4038), + [anon_sym_CARET_CARET] = ACTIONS(4040), + [anon_sym_LBRACK_COLON] = ACTIONS(4040), + [sym_this] = ACTIONS(4038), }, - [STATE(1133)] = { - [sym_expression] = STATE(3700), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4744), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(589)] = { + [ts_builtin_sym_end] = ACTIONS(4312), + [sym_identifier] = ACTIONS(4314), + [aux_sym_preproc_include_token1] = ACTIONS(4314), + [aux_sym_preproc_def_token1] = ACTIONS(4314), + [aux_sym_preproc_if_token1] = ACTIONS(4314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4314), + [sym_preproc_directive] = ACTIONS(4314), + [anon_sym_LPAREN2] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_TILDE] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4314), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_AMP_AMP] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4314), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym___extension__] = ACTIONS(4314), + [anon_sym_typedef] = ACTIONS(4314), + [anon_sym_virtual] = ACTIONS(4314), + [anon_sym_extern] = ACTIONS(4314), + [anon_sym___attribute__] = ACTIONS(4314), + [anon_sym___attribute] = ACTIONS(4314), + [anon_sym_using] = ACTIONS(4314), + [anon_sym_COLON_COLON] = ACTIONS(4312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4312), + [anon_sym___declspec] = ACTIONS(4314), + [anon_sym___based] = ACTIONS(4314), + [anon_sym___cdecl] = ACTIONS(4314), + [anon_sym___clrcall] = ACTIONS(4314), + [anon_sym___stdcall] = ACTIONS(4314), + [anon_sym___fastcall] = ACTIONS(4314), + [anon_sym___thiscall] = ACTIONS(4314), + [anon_sym___vectorcall] = ACTIONS(4314), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_signed] = ACTIONS(4314), + [anon_sym_unsigned] = ACTIONS(4314), + [anon_sym_long] = ACTIONS(4314), + [anon_sym_short] = ACTIONS(4314), + [anon_sym_LBRACK] = ACTIONS(4314), + [anon_sym_static] = ACTIONS(4314), + [anon_sym_register] = ACTIONS(4314), + [anon_sym_inline] = ACTIONS(4314), + [anon_sym___inline] = ACTIONS(4314), + [anon_sym___inline__] = ACTIONS(4314), + [anon_sym___forceinline] = ACTIONS(4314), + [anon_sym_thread_local] = ACTIONS(4314), + [anon_sym___thread] = ACTIONS(4314), + [anon_sym_const] = ACTIONS(4314), + [anon_sym_constexpr] = ACTIONS(4314), + [anon_sym_volatile] = ACTIONS(4314), + [anon_sym_restrict] = ACTIONS(4314), + [anon_sym___restrict__] = ACTIONS(4314), + [anon_sym__Atomic] = ACTIONS(4314), + [anon_sym__Noreturn] = ACTIONS(4314), + [anon_sym_noreturn] = ACTIONS(4314), + [anon_sym__Nonnull] = ACTIONS(4314), + [anon_sym_mutable] = ACTIONS(4314), + [anon_sym_constinit] = ACTIONS(4314), + [anon_sym_consteval] = ACTIONS(4314), + [anon_sym_alignas] = ACTIONS(4314), + [anon_sym__Alignas] = ACTIONS(4314), + [sym_primitive_type] = ACTIONS(4314), + [anon_sym_enum] = ACTIONS(4314), + [anon_sym_class] = ACTIONS(4314), + [anon_sym_struct] = ACTIONS(4314), + [anon_sym_union] = ACTIONS(4314), + [anon_sym_if] = ACTIONS(4314), + [anon_sym_switch] = ACTIONS(4314), + [anon_sym_case] = ACTIONS(4314), + [anon_sym_default] = ACTIONS(4314), + [anon_sym_while] = ACTIONS(4314), + [anon_sym_do] = ACTIONS(4314), + [anon_sym_for] = ACTIONS(4314), + [anon_sym_return] = ACTIONS(4314), + [anon_sym_break] = ACTIONS(4314), + [anon_sym_continue] = ACTIONS(4314), + [anon_sym_goto] = ACTIONS(4314), + [anon_sym_not] = ACTIONS(4314), + [anon_sym_compl] = ACTIONS(4314), + [anon_sym_DASH_DASH] = ACTIONS(4312), + [anon_sym_PLUS_PLUS] = ACTIONS(4312), + [anon_sym_sizeof] = ACTIONS(4314), + [anon_sym___alignof__] = ACTIONS(4314), + [anon_sym___alignof] = ACTIONS(4314), + [anon_sym__alignof] = ACTIONS(4314), + [anon_sym_alignof] = ACTIONS(4314), + [anon_sym__Alignof] = ACTIONS(4314), + [anon_sym_offsetof] = ACTIONS(4314), + [anon_sym__Generic] = ACTIONS(4314), + [anon_sym_typename] = ACTIONS(4314), + [anon_sym_asm] = ACTIONS(4314), + [anon_sym___asm__] = ACTIONS(4314), + [anon_sym___asm] = ACTIONS(4314), + [sym_number_literal] = ACTIONS(4312), + [anon_sym_L_SQUOTE] = ACTIONS(4312), + [anon_sym_u_SQUOTE] = ACTIONS(4312), + [anon_sym_U_SQUOTE] = ACTIONS(4312), + [anon_sym_u8_SQUOTE] = ACTIONS(4312), + [anon_sym_SQUOTE] = ACTIONS(4312), + [anon_sym_L_DQUOTE] = ACTIONS(4312), + [anon_sym_u_DQUOTE] = ACTIONS(4312), + [anon_sym_U_DQUOTE] = ACTIONS(4312), + [anon_sym_u8_DQUOTE] = ACTIONS(4312), + [anon_sym_DQUOTE] = ACTIONS(4312), + [sym_true] = ACTIONS(4314), + [sym_false] = ACTIONS(4314), + [anon_sym_NULL] = ACTIONS(4314), + [anon_sym_nullptr] = ACTIONS(4314), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4314), + [anon_sym_decltype] = ACTIONS(4314), + [anon_sym_explicit] = ACTIONS(4314), + [anon_sym_export] = ACTIONS(4314), + [anon_sym_module] = ACTIONS(4314), + [anon_sym_import] = ACTIONS(4314), + [anon_sym_template] = ACTIONS(4314), + [anon_sym_operator] = ACTIONS(4314), + [anon_sym_try] = ACTIONS(4314), + [anon_sym_delete] = ACTIONS(4314), + [anon_sym_throw] = ACTIONS(4314), + [anon_sym_namespace] = ACTIONS(4314), + [anon_sym_static_assert] = ACTIONS(4314), + [anon_sym_concept] = ACTIONS(4314), + [anon_sym_co_return] = ACTIONS(4314), + [anon_sym_co_yield] = ACTIONS(4314), + [anon_sym_R_DQUOTE] = ACTIONS(4312), + [anon_sym_LR_DQUOTE] = ACTIONS(4312), + [anon_sym_uR_DQUOTE] = ACTIONS(4312), + [anon_sym_UR_DQUOTE] = ACTIONS(4312), + [anon_sym_u8R_DQUOTE] = ACTIONS(4312), + [anon_sym_co_await] = ACTIONS(4314), + [anon_sym_new] = ACTIONS(4314), + [anon_sym_requires] = ACTIONS(4314), + [anon_sym_CARET_CARET] = ACTIONS(4312), + [anon_sym_LBRACK_COLON] = ACTIONS(4312), + [sym_this] = ACTIONS(4314), }, - [STATE(1134)] = { - [sym_expression] = STATE(3700), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(590)] = { + [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(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [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(2910), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = 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(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [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_typename] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [anon_sym___asm] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [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_explicit] = 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_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(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [anon_sym_CARET_CARET] = ACTIONS(2910), + [anon_sym_LBRACK_COLON] = ACTIONS(2910), + [sym_this] = ACTIONS(2905), }, - [STATE(1135)] = { - [sym_expression] = STATE(3704), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4750), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(591)] = { + [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(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [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(2954), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = 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(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [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_typename] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [anon_sym___asm] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [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_explicit] = 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_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(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [anon_sym_CARET_CARET] = ACTIONS(2954), + [anon_sym_LBRACK_COLON] = ACTIONS(2954), + [sym_this] = ACTIONS(2949), }, - [STATE(1136)] = { - [sym_expression] = STATE(3704), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4753), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(592)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1137)] = { - [sym_expression] = STATE(3704), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(593)] = { + [ts_builtin_sym_end] = ACTIONS(4316), + [sym_identifier] = ACTIONS(4318), + [aux_sym_preproc_include_token1] = ACTIONS(4318), + [aux_sym_preproc_def_token1] = ACTIONS(4318), + [aux_sym_preproc_if_token1] = ACTIONS(4318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4318), + [sym_preproc_directive] = ACTIONS(4318), + [anon_sym_LPAREN2] = ACTIONS(4316), + [anon_sym_BANG] = ACTIONS(4316), + [anon_sym_TILDE] = ACTIONS(4316), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_PLUS] = ACTIONS(4318), + [anon_sym_STAR] = ACTIONS(4316), + [anon_sym_AMP_AMP] = ACTIONS(4316), + [anon_sym_AMP] = ACTIONS(4318), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym___extension__] = ACTIONS(4318), + [anon_sym_typedef] = ACTIONS(4318), + [anon_sym_virtual] = ACTIONS(4318), + [anon_sym_extern] = ACTIONS(4318), + [anon_sym___attribute__] = ACTIONS(4318), + [anon_sym___attribute] = ACTIONS(4318), + [anon_sym_using] = ACTIONS(4318), + [anon_sym_COLON_COLON] = ACTIONS(4316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4316), + [anon_sym___declspec] = ACTIONS(4318), + [anon_sym___based] = ACTIONS(4318), + [anon_sym___cdecl] = ACTIONS(4318), + [anon_sym___clrcall] = ACTIONS(4318), + [anon_sym___stdcall] = ACTIONS(4318), + [anon_sym___fastcall] = ACTIONS(4318), + [anon_sym___thiscall] = ACTIONS(4318), + [anon_sym___vectorcall] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4316), + [anon_sym_signed] = ACTIONS(4318), + [anon_sym_unsigned] = ACTIONS(4318), + [anon_sym_long] = ACTIONS(4318), + [anon_sym_short] = ACTIONS(4318), + [anon_sym_LBRACK] = ACTIONS(4318), + [anon_sym_static] = ACTIONS(4318), + [anon_sym_register] = ACTIONS(4318), + [anon_sym_inline] = ACTIONS(4318), + [anon_sym___inline] = ACTIONS(4318), + [anon_sym___inline__] = ACTIONS(4318), + [anon_sym___forceinline] = ACTIONS(4318), + [anon_sym_thread_local] = ACTIONS(4318), + [anon_sym___thread] = ACTIONS(4318), + [anon_sym_const] = ACTIONS(4318), + [anon_sym_constexpr] = ACTIONS(4318), + [anon_sym_volatile] = ACTIONS(4318), + [anon_sym_restrict] = ACTIONS(4318), + [anon_sym___restrict__] = ACTIONS(4318), + [anon_sym__Atomic] = ACTIONS(4318), + [anon_sym__Noreturn] = ACTIONS(4318), + [anon_sym_noreturn] = ACTIONS(4318), + [anon_sym__Nonnull] = ACTIONS(4318), + [anon_sym_mutable] = ACTIONS(4318), + [anon_sym_constinit] = ACTIONS(4318), + [anon_sym_consteval] = ACTIONS(4318), + [anon_sym_alignas] = ACTIONS(4318), + [anon_sym__Alignas] = ACTIONS(4318), + [sym_primitive_type] = ACTIONS(4318), + [anon_sym_enum] = ACTIONS(4318), + [anon_sym_class] = ACTIONS(4318), + [anon_sym_struct] = ACTIONS(4318), + [anon_sym_union] = ACTIONS(4318), + [anon_sym_if] = ACTIONS(4318), + [anon_sym_switch] = ACTIONS(4318), + [anon_sym_case] = ACTIONS(4318), + [anon_sym_default] = ACTIONS(4318), + [anon_sym_while] = ACTIONS(4318), + [anon_sym_do] = ACTIONS(4318), + [anon_sym_for] = ACTIONS(4318), + [anon_sym_return] = ACTIONS(4318), + [anon_sym_break] = ACTIONS(4318), + [anon_sym_continue] = ACTIONS(4318), + [anon_sym_goto] = ACTIONS(4318), + [anon_sym_not] = ACTIONS(4318), + [anon_sym_compl] = ACTIONS(4318), + [anon_sym_DASH_DASH] = ACTIONS(4316), + [anon_sym_PLUS_PLUS] = ACTIONS(4316), + [anon_sym_sizeof] = ACTIONS(4318), + [anon_sym___alignof__] = ACTIONS(4318), + [anon_sym___alignof] = ACTIONS(4318), + [anon_sym__alignof] = ACTIONS(4318), + [anon_sym_alignof] = ACTIONS(4318), + [anon_sym__Alignof] = ACTIONS(4318), + [anon_sym_offsetof] = ACTIONS(4318), + [anon_sym__Generic] = ACTIONS(4318), + [anon_sym_typename] = ACTIONS(4318), + [anon_sym_asm] = ACTIONS(4318), + [anon_sym___asm__] = ACTIONS(4318), + [anon_sym___asm] = ACTIONS(4318), + [sym_number_literal] = ACTIONS(4316), + [anon_sym_L_SQUOTE] = ACTIONS(4316), + [anon_sym_u_SQUOTE] = ACTIONS(4316), + [anon_sym_U_SQUOTE] = ACTIONS(4316), + [anon_sym_u8_SQUOTE] = ACTIONS(4316), + [anon_sym_SQUOTE] = ACTIONS(4316), + [anon_sym_L_DQUOTE] = ACTIONS(4316), + [anon_sym_u_DQUOTE] = ACTIONS(4316), + [anon_sym_U_DQUOTE] = ACTIONS(4316), + [anon_sym_u8_DQUOTE] = ACTIONS(4316), + [anon_sym_DQUOTE] = ACTIONS(4316), + [sym_true] = ACTIONS(4318), + [sym_false] = ACTIONS(4318), + [anon_sym_NULL] = ACTIONS(4318), + [anon_sym_nullptr] = ACTIONS(4318), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4318), + [anon_sym_decltype] = ACTIONS(4318), + [anon_sym_explicit] = ACTIONS(4318), + [anon_sym_export] = ACTIONS(4318), + [anon_sym_module] = ACTIONS(4318), + [anon_sym_import] = ACTIONS(4318), + [anon_sym_template] = ACTIONS(4318), + [anon_sym_operator] = ACTIONS(4318), + [anon_sym_try] = ACTIONS(4318), + [anon_sym_delete] = ACTIONS(4318), + [anon_sym_throw] = ACTIONS(4318), + [anon_sym_namespace] = ACTIONS(4318), + [anon_sym_static_assert] = ACTIONS(4318), + [anon_sym_concept] = ACTIONS(4318), + [anon_sym_co_return] = ACTIONS(4318), + [anon_sym_co_yield] = ACTIONS(4318), + [anon_sym_R_DQUOTE] = ACTIONS(4316), + [anon_sym_LR_DQUOTE] = ACTIONS(4316), + [anon_sym_uR_DQUOTE] = ACTIONS(4316), + [anon_sym_UR_DQUOTE] = ACTIONS(4316), + [anon_sym_u8R_DQUOTE] = ACTIONS(4316), + [anon_sym_co_await] = ACTIONS(4318), + [anon_sym_new] = ACTIONS(4318), + [anon_sym_requires] = ACTIONS(4318), + [anon_sym_CARET_CARET] = ACTIONS(4316), + [anon_sym_LBRACK_COLON] = ACTIONS(4316), + [sym_this] = ACTIONS(4318), }, - [STATE(1138)] = { - [sym_expression] = STATE(3707), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4759), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(594)] = { + [ts_builtin_sym_end] = ACTIONS(4320), + [sym_identifier] = ACTIONS(4322), + [aux_sym_preproc_include_token1] = ACTIONS(4322), + [aux_sym_preproc_def_token1] = ACTIONS(4322), + [aux_sym_preproc_if_token1] = ACTIONS(4322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4322), + [sym_preproc_directive] = ACTIONS(4322), + [anon_sym_LPAREN2] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4320), + [anon_sym_TILDE] = ACTIONS(4320), + [anon_sym_DASH] = ACTIONS(4322), + [anon_sym_PLUS] = ACTIONS(4322), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4322), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym___extension__] = ACTIONS(4322), + [anon_sym_typedef] = ACTIONS(4322), + [anon_sym_virtual] = ACTIONS(4322), + [anon_sym_extern] = ACTIONS(4322), + [anon_sym___attribute__] = ACTIONS(4322), + [anon_sym___attribute] = ACTIONS(4322), + [anon_sym_using] = ACTIONS(4322), + [anon_sym_COLON_COLON] = ACTIONS(4320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4320), + [anon_sym___declspec] = ACTIONS(4322), + [anon_sym___based] = ACTIONS(4322), + [anon_sym___cdecl] = ACTIONS(4322), + [anon_sym___clrcall] = ACTIONS(4322), + [anon_sym___stdcall] = ACTIONS(4322), + [anon_sym___fastcall] = ACTIONS(4322), + [anon_sym___thiscall] = ACTIONS(4322), + [anon_sym___vectorcall] = ACTIONS(4322), + [anon_sym_LBRACE] = ACTIONS(4320), + [anon_sym_signed] = ACTIONS(4322), + [anon_sym_unsigned] = ACTIONS(4322), + [anon_sym_long] = ACTIONS(4322), + [anon_sym_short] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4322), + [anon_sym_static] = ACTIONS(4322), + [anon_sym_register] = ACTIONS(4322), + [anon_sym_inline] = ACTIONS(4322), + [anon_sym___inline] = ACTIONS(4322), + [anon_sym___inline__] = ACTIONS(4322), + [anon_sym___forceinline] = ACTIONS(4322), + [anon_sym_thread_local] = ACTIONS(4322), + [anon_sym___thread] = ACTIONS(4322), + [anon_sym_const] = ACTIONS(4322), + [anon_sym_constexpr] = ACTIONS(4322), + [anon_sym_volatile] = ACTIONS(4322), + [anon_sym_restrict] = ACTIONS(4322), + [anon_sym___restrict__] = ACTIONS(4322), + [anon_sym__Atomic] = ACTIONS(4322), + [anon_sym__Noreturn] = ACTIONS(4322), + [anon_sym_noreturn] = ACTIONS(4322), + [anon_sym__Nonnull] = ACTIONS(4322), + [anon_sym_mutable] = ACTIONS(4322), + [anon_sym_constinit] = ACTIONS(4322), + [anon_sym_consteval] = ACTIONS(4322), + [anon_sym_alignas] = ACTIONS(4322), + [anon_sym__Alignas] = ACTIONS(4322), + [sym_primitive_type] = ACTIONS(4322), + [anon_sym_enum] = ACTIONS(4322), + [anon_sym_class] = ACTIONS(4322), + [anon_sym_struct] = ACTIONS(4322), + [anon_sym_union] = ACTIONS(4322), + [anon_sym_if] = ACTIONS(4322), + [anon_sym_switch] = ACTIONS(4322), + [anon_sym_case] = ACTIONS(4322), + [anon_sym_default] = ACTIONS(4322), + [anon_sym_while] = ACTIONS(4322), + [anon_sym_do] = ACTIONS(4322), + [anon_sym_for] = ACTIONS(4322), + [anon_sym_return] = ACTIONS(4322), + [anon_sym_break] = ACTIONS(4322), + [anon_sym_continue] = ACTIONS(4322), + [anon_sym_goto] = ACTIONS(4322), + [anon_sym_not] = ACTIONS(4322), + [anon_sym_compl] = ACTIONS(4322), + [anon_sym_DASH_DASH] = ACTIONS(4320), + [anon_sym_PLUS_PLUS] = ACTIONS(4320), + [anon_sym_sizeof] = ACTIONS(4322), + [anon_sym___alignof__] = ACTIONS(4322), + [anon_sym___alignof] = ACTIONS(4322), + [anon_sym__alignof] = ACTIONS(4322), + [anon_sym_alignof] = ACTIONS(4322), + [anon_sym__Alignof] = ACTIONS(4322), + [anon_sym_offsetof] = ACTIONS(4322), + [anon_sym__Generic] = ACTIONS(4322), + [anon_sym_typename] = ACTIONS(4322), + [anon_sym_asm] = ACTIONS(4322), + [anon_sym___asm__] = ACTIONS(4322), + [anon_sym___asm] = ACTIONS(4322), + [sym_number_literal] = ACTIONS(4320), + [anon_sym_L_SQUOTE] = ACTIONS(4320), + [anon_sym_u_SQUOTE] = ACTIONS(4320), + [anon_sym_U_SQUOTE] = ACTIONS(4320), + [anon_sym_u8_SQUOTE] = ACTIONS(4320), + [anon_sym_SQUOTE] = ACTIONS(4320), + [anon_sym_L_DQUOTE] = ACTIONS(4320), + [anon_sym_u_DQUOTE] = ACTIONS(4320), + [anon_sym_U_DQUOTE] = ACTIONS(4320), + [anon_sym_u8_DQUOTE] = ACTIONS(4320), + [anon_sym_DQUOTE] = ACTIONS(4320), + [sym_true] = ACTIONS(4322), + [sym_false] = ACTIONS(4322), + [anon_sym_NULL] = ACTIONS(4322), + [anon_sym_nullptr] = ACTIONS(4322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4322), + [anon_sym_decltype] = ACTIONS(4322), + [anon_sym_explicit] = ACTIONS(4322), + [anon_sym_export] = ACTIONS(4322), + [anon_sym_module] = ACTIONS(4322), + [anon_sym_import] = ACTIONS(4322), + [anon_sym_template] = ACTIONS(4322), + [anon_sym_operator] = ACTIONS(4322), + [anon_sym_try] = ACTIONS(4322), + [anon_sym_delete] = ACTIONS(4322), + [anon_sym_throw] = ACTIONS(4322), + [anon_sym_namespace] = ACTIONS(4322), + [anon_sym_static_assert] = ACTIONS(4322), + [anon_sym_concept] = ACTIONS(4322), + [anon_sym_co_return] = ACTIONS(4322), + [anon_sym_co_yield] = ACTIONS(4322), + [anon_sym_R_DQUOTE] = ACTIONS(4320), + [anon_sym_LR_DQUOTE] = ACTIONS(4320), + [anon_sym_uR_DQUOTE] = ACTIONS(4320), + [anon_sym_UR_DQUOTE] = ACTIONS(4320), + [anon_sym_u8R_DQUOTE] = ACTIONS(4320), + [anon_sym_co_await] = ACTIONS(4322), + [anon_sym_new] = ACTIONS(4322), + [anon_sym_requires] = ACTIONS(4322), + [anon_sym_CARET_CARET] = ACTIONS(4320), + [anon_sym_LBRACK_COLON] = ACTIONS(4320), + [sym_this] = ACTIONS(4322), }, - [STATE(1139)] = { - [sym_expression] = STATE(3710), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4762), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(595)] = { + [ts_builtin_sym_end] = ACTIONS(4174), + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(1140)] = { - [sym_expression] = STATE(3711), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(596)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_include_token1] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token2] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym___cdecl] = ACTIONS(3884), + [anon_sym___clrcall] = ACTIONS(3884), + [anon_sym___stdcall] = ACTIONS(3884), + [anon_sym___fastcall] = ACTIONS(3884), + [anon_sym___thiscall] = ACTIONS(3884), + [anon_sym___vectorcall] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_case] = ACTIONS(3884), + [anon_sym_default] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_goto] = ACTIONS(3884), + [anon_sym___try] = ACTIONS(3884), + [anon_sym___leave] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3884), + [anon_sym_compl] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_sizeof] = ACTIONS(3884), + [anon_sym___alignof__] = ACTIONS(3884), + [anon_sym___alignof] = ACTIONS(3884), + [anon_sym__alignof] = ACTIONS(3884), + [anon_sym_alignof] = ACTIONS(3884), + [anon_sym__Alignof] = ACTIONS(3884), + [anon_sym_offsetof] = ACTIONS(3884), + [anon_sym__Generic] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [anon_sym_asm] = ACTIONS(3884), + [anon_sym___asm__] = ACTIONS(3884), + [anon_sym___asm] = ACTIONS(3884), + [sym_number_literal] = ACTIONS(3886), + [anon_sym_L_SQUOTE] = ACTIONS(3886), + [anon_sym_u_SQUOTE] = ACTIONS(3886), + [anon_sym_U_SQUOTE] = ACTIONS(3886), + [anon_sym_u8_SQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [anon_sym_L_DQUOTE] = ACTIONS(3886), + [anon_sym_u_DQUOTE] = ACTIONS(3886), + [anon_sym_U_DQUOTE] = ACTIONS(3886), + [anon_sym_u8_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_true] = ACTIONS(3884), + [sym_false] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_nullptr] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_concept] = ACTIONS(3884), + [anon_sym_co_return] = ACTIONS(3884), + [anon_sym_co_yield] = ACTIONS(3884), + [anon_sym_R_DQUOTE] = ACTIONS(3886), + [anon_sym_LR_DQUOTE] = ACTIONS(3886), + [anon_sym_uR_DQUOTE] = ACTIONS(3886), + [anon_sym_UR_DQUOTE] = ACTIONS(3886), + [anon_sym_u8R_DQUOTE] = ACTIONS(3886), + [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_requires] = ACTIONS(3884), + [anon_sym_CARET_CARET] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [sym_this] = ACTIONS(3884), }, - [STATE(1141)] = { - [sym_expression] = STATE(3712), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4768), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(597)] = { + [ts_builtin_sym_end] = ACTIONS(3900), + [sym_identifier] = ACTIONS(3898), + [aux_sym_preproc_include_token1] = ACTIONS(3898), + [aux_sym_preproc_def_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), + [sym_preproc_directive] = ACTIONS(3898), + [anon_sym_LPAREN2] = ACTIONS(3900), + [anon_sym_BANG] = ACTIONS(3900), + [anon_sym_TILDE] = ACTIONS(3900), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_PLUS] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3900), + [anon_sym_AMP_AMP] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(3898), + [anon_sym_typedef] = ACTIONS(3898), + [anon_sym_virtual] = ACTIONS(3898), + [anon_sym_extern] = ACTIONS(3898), + [anon_sym___attribute__] = ACTIONS(3898), + [anon_sym___attribute] = ACTIONS(3898), + [anon_sym_using] = ACTIONS(3898), + [anon_sym_COLON_COLON] = ACTIONS(3900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), + [anon_sym___declspec] = ACTIONS(3898), + [anon_sym___based] = ACTIONS(3898), + [anon_sym___cdecl] = ACTIONS(3898), + [anon_sym___clrcall] = ACTIONS(3898), + [anon_sym___stdcall] = ACTIONS(3898), + [anon_sym___fastcall] = ACTIONS(3898), + [anon_sym___thiscall] = ACTIONS(3898), + [anon_sym___vectorcall] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3900), + [anon_sym_signed] = ACTIONS(3898), + [anon_sym_unsigned] = ACTIONS(3898), + [anon_sym_long] = ACTIONS(3898), + [anon_sym_short] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_static] = ACTIONS(3898), + [anon_sym_register] = ACTIONS(3898), + [anon_sym_inline] = ACTIONS(3898), + [anon_sym___inline] = ACTIONS(3898), + [anon_sym___inline__] = ACTIONS(3898), + [anon_sym___forceinline] = ACTIONS(3898), + [anon_sym_thread_local] = ACTIONS(3898), + [anon_sym___thread] = ACTIONS(3898), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_constexpr] = ACTIONS(3898), + [anon_sym_volatile] = ACTIONS(3898), + [anon_sym_restrict] = ACTIONS(3898), + [anon_sym___restrict__] = ACTIONS(3898), + [anon_sym__Atomic] = ACTIONS(3898), + [anon_sym__Noreturn] = ACTIONS(3898), + [anon_sym_noreturn] = ACTIONS(3898), + [anon_sym__Nonnull] = ACTIONS(3898), + [anon_sym_mutable] = ACTIONS(3898), + [anon_sym_constinit] = ACTIONS(3898), + [anon_sym_consteval] = ACTIONS(3898), + [anon_sym_alignas] = ACTIONS(3898), + [anon_sym__Alignas] = ACTIONS(3898), + [sym_primitive_type] = ACTIONS(3898), + [anon_sym_enum] = ACTIONS(3898), + [anon_sym_class] = ACTIONS(3898), + [anon_sym_struct] = ACTIONS(3898), + [anon_sym_union] = ACTIONS(3898), + [anon_sym_if] = ACTIONS(3898), + [anon_sym_switch] = ACTIONS(3898), + [anon_sym_case] = ACTIONS(3898), + [anon_sym_default] = ACTIONS(3898), + [anon_sym_while] = ACTIONS(3898), + [anon_sym_do] = ACTIONS(3898), + [anon_sym_for] = ACTIONS(3898), + [anon_sym_return] = ACTIONS(3898), + [anon_sym_break] = ACTIONS(3898), + [anon_sym_continue] = ACTIONS(3898), + [anon_sym_goto] = ACTIONS(3898), + [anon_sym_not] = ACTIONS(3898), + [anon_sym_compl] = ACTIONS(3898), + [anon_sym_DASH_DASH] = ACTIONS(3900), + [anon_sym_PLUS_PLUS] = ACTIONS(3900), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(3898), + [anon_sym___alignof] = ACTIONS(3898), + [anon_sym__alignof] = ACTIONS(3898), + [anon_sym_alignof] = ACTIONS(3898), + [anon_sym__Alignof] = ACTIONS(3898), + [anon_sym_offsetof] = ACTIONS(3898), + [anon_sym__Generic] = ACTIONS(3898), + [anon_sym_typename] = ACTIONS(3898), + [anon_sym_asm] = ACTIONS(3898), + [anon_sym___asm__] = ACTIONS(3898), + [anon_sym___asm] = ACTIONS(3898), + [sym_number_literal] = ACTIONS(3900), + [anon_sym_L_SQUOTE] = ACTIONS(3900), + [anon_sym_u_SQUOTE] = ACTIONS(3900), + [anon_sym_U_SQUOTE] = ACTIONS(3900), + [anon_sym_u8_SQUOTE] = ACTIONS(3900), + [anon_sym_SQUOTE] = ACTIONS(3900), + [anon_sym_L_DQUOTE] = ACTIONS(3900), + [anon_sym_u_DQUOTE] = ACTIONS(3900), + [anon_sym_U_DQUOTE] = ACTIONS(3900), + [anon_sym_u8_DQUOTE] = ACTIONS(3900), + [anon_sym_DQUOTE] = ACTIONS(3900), + [sym_true] = ACTIONS(3898), + [sym_false] = ACTIONS(3898), + [anon_sym_NULL] = ACTIONS(3898), + [anon_sym_nullptr] = ACTIONS(3898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3898), + [anon_sym_decltype] = ACTIONS(3898), + [anon_sym_explicit] = ACTIONS(3898), + [anon_sym_export] = ACTIONS(3898), + [anon_sym_module] = ACTIONS(3898), + [anon_sym_import] = ACTIONS(3898), + [anon_sym_template] = ACTIONS(3898), + [anon_sym_operator] = ACTIONS(3898), + [anon_sym_try] = ACTIONS(3898), + [anon_sym_delete] = ACTIONS(3898), + [anon_sym_throw] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_static_assert] = ACTIONS(3898), + [anon_sym_concept] = ACTIONS(3898), + [anon_sym_co_return] = ACTIONS(3898), + [anon_sym_co_yield] = ACTIONS(3898), + [anon_sym_R_DQUOTE] = ACTIONS(3900), + [anon_sym_LR_DQUOTE] = ACTIONS(3900), + [anon_sym_uR_DQUOTE] = ACTIONS(3900), + [anon_sym_UR_DQUOTE] = ACTIONS(3900), + [anon_sym_u8R_DQUOTE] = ACTIONS(3900), + [anon_sym_co_await] = ACTIONS(3898), + [anon_sym_new] = ACTIONS(3898), + [anon_sym_requires] = ACTIONS(3898), + [anon_sym_CARET_CARET] = ACTIONS(3900), + [anon_sym_LBRACK_COLON] = ACTIONS(3900), + [sym_this] = ACTIONS(3898), }, - [STATE(1142)] = { - [sym_expression] = STATE(3715), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(598)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(1143)] = { - [sym_expression] = STATE(3626), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4774), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(599)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [anon_sym___asm] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [anon_sym_CARET_CARET] = ACTIONS(3682), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [sym_this] = ACTIONS(3680), }, - [STATE(1144)] = { - [sym_expression] = STATE(3626), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(600)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(1145)] = { - [sym_expression] = STATE(3627), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4780), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(601)] = { + [ts_builtin_sym_end] = ACTIONS(4044), + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_include_token1] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym___cdecl] = ACTIONS(4042), + [anon_sym___clrcall] = ACTIONS(4042), + [anon_sym___stdcall] = ACTIONS(4042), + [anon_sym___fastcall] = ACTIONS(4042), + [anon_sym___thiscall] = ACTIONS(4042), + [anon_sym___vectorcall] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_if] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_case] = ACTIONS(4042), + [anon_sym_default] = ACTIONS(4042), + [anon_sym_while] = ACTIONS(4042), + [anon_sym_do] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4042), + [anon_sym_break] = ACTIONS(4042), + [anon_sym_continue] = ACTIONS(4042), + [anon_sym_goto] = ACTIONS(4042), + [anon_sym_not] = ACTIONS(4042), + [anon_sym_compl] = ACTIONS(4042), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_sizeof] = ACTIONS(4042), + [anon_sym___alignof__] = ACTIONS(4042), + [anon_sym___alignof] = ACTIONS(4042), + [anon_sym__alignof] = ACTIONS(4042), + [anon_sym_alignof] = ACTIONS(4042), + [anon_sym__Alignof] = ACTIONS(4042), + [anon_sym_offsetof] = ACTIONS(4042), + [anon_sym__Generic] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym___asm__] = ACTIONS(4042), + [anon_sym___asm] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4044), + [anon_sym_L_SQUOTE] = ACTIONS(4044), + [anon_sym_u_SQUOTE] = ACTIONS(4044), + [anon_sym_U_SQUOTE] = ACTIONS(4044), + [anon_sym_u8_SQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4044), + [anon_sym_L_DQUOTE] = ACTIONS(4044), + [anon_sym_u_DQUOTE] = ACTIONS(4044), + [anon_sym_U_DQUOTE] = ACTIONS(4044), + [anon_sym_u8_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [anon_sym_NULL] = ACTIONS(4042), + [anon_sym_nullptr] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_export] = ACTIONS(4042), + [anon_sym_module] = ACTIONS(4042), + [anon_sym_import] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_try] = ACTIONS(4042), + [anon_sym_delete] = ACTIONS(4042), + [anon_sym_throw] = ACTIONS(4042), + [anon_sym_namespace] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_concept] = ACTIONS(4042), + [anon_sym_co_return] = ACTIONS(4042), + [anon_sym_co_yield] = ACTIONS(4042), + [anon_sym_R_DQUOTE] = ACTIONS(4044), + [anon_sym_LR_DQUOTE] = ACTIONS(4044), + [anon_sym_uR_DQUOTE] = ACTIONS(4044), + [anon_sym_UR_DQUOTE] = ACTIONS(4044), + [anon_sym_u8R_DQUOTE] = ACTIONS(4044), + [anon_sym_co_await] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4042), + [anon_sym_requires] = ACTIONS(4042), + [anon_sym_CARET_CARET] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + [sym_this] = ACTIONS(4042), }, - [STATE(1146)] = { - [sym_expression] = STATE(3627), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(602)] = { + [sym_identifier] = ACTIONS(3894), + [aux_sym_preproc_include_token1] = ACTIONS(3894), + [aux_sym_preproc_def_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), + [sym_preproc_directive] = ACTIONS(3894), + [anon_sym_LPAREN2] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3896), + [anon_sym_TILDE] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AMP_AMP] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym___extension__] = ACTIONS(3894), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_virtual] = ACTIONS(3894), + [anon_sym_extern] = ACTIONS(3894), + [anon_sym___attribute__] = ACTIONS(3894), + [anon_sym___attribute] = ACTIONS(3894), + [anon_sym_using] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), + [anon_sym___declspec] = ACTIONS(3894), + [anon_sym___based] = ACTIONS(3894), + [anon_sym___cdecl] = ACTIONS(3894), + [anon_sym___clrcall] = ACTIONS(3894), + [anon_sym___stdcall] = ACTIONS(3894), + [anon_sym___fastcall] = ACTIONS(3894), + [anon_sym___thiscall] = ACTIONS(3894), + [anon_sym___vectorcall] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_RBRACE] = ACTIONS(3896), + [anon_sym_signed] = ACTIONS(3894), + [anon_sym_unsigned] = ACTIONS(3894), + [anon_sym_long] = ACTIONS(3894), + [anon_sym_short] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_static] = ACTIONS(3894), + [anon_sym_register] = ACTIONS(3894), + [anon_sym_inline] = ACTIONS(3894), + [anon_sym___inline] = ACTIONS(3894), + [anon_sym___inline__] = ACTIONS(3894), + [anon_sym___forceinline] = ACTIONS(3894), + [anon_sym_thread_local] = ACTIONS(3894), + [anon_sym___thread] = ACTIONS(3894), + [anon_sym_const] = ACTIONS(3894), + [anon_sym_constexpr] = ACTIONS(3894), + [anon_sym_volatile] = ACTIONS(3894), + [anon_sym_restrict] = ACTIONS(3894), + [anon_sym___restrict__] = ACTIONS(3894), + [anon_sym__Atomic] = ACTIONS(3894), + [anon_sym__Noreturn] = ACTIONS(3894), + [anon_sym_noreturn] = ACTIONS(3894), + [anon_sym__Nonnull] = ACTIONS(3894), + [anon_sym_mutable] = ACTIONS(3894), + [anon_sym_constinit] = ACTIONS(3894), + [anon_sym_consteval] = ACTIONS(3894), + [anon_sym_alignas] = ACTIONS(3894), + [anon_sym__Alignas] = ACTIONS(3894), + [sym_primitive_type] = ACTIONS(3894), + [anon_sym_enum] = ACTIONS(3894), + [anon_sym_class] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3894), + [anon_sym_union] = ACTIONS(3894), + [anon_sym_if] = ACTIONS(3894), + [anon_sym_else] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3894), + [anon_sym_case] = ACTIONS(3894), + [anon_sym_default] = ACTIONS(3894), + [anon_sym_while] = ACTIONS(3894), + [anon_sym_do] = ACTIONS(3894), + [anon_sym_for] = ACTIONS(3894), + [anon_sym_return] = ACTIONS(3894), + [anon_sym_break] = ACTIONS(3894), + [anon_sym_continue] = ACTIONS(3894), + [anon_sym_goto] = ACTIONS(3894), + [anon_sym___try] = ACTIONS(3894), + [anon_sym___leave] = ACTIONS(3894), + [anon_sym_not] = ACTIONS(3894), + [anon_sym_compl] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3896), + [anon_sym_PLUS_PLUS] = ACTIONS(3896), + [anon_sym_sizeof] = ACTIONS(3894), + [anon_sym___alignof__] = ACTIONS(3894), + [anon_sym___alignof] = ACTIONS(3894), + [anon_sym__alignof] = ACTIONS(3894), + [anon_sym_alignof] = ACTIONS(3894), + [anon_sym__Alignof] = ACTIONS(3894), + [anon_sym_offsetof] = ACTIONS(3894), + [anon_sym__Generic] = ACTIONS(3894), + [anon_sym_typename] = ACTIONS(3894), + [anon_sym_asm] = ACTIONS(3894), + [anon_sym___asm__] = ACTIONS(3894), + [anon_sym___asm] = ACTIONS(3894), + [sym_number_literal] = ACTIONS(3896), + [anon_sym_L_SQUOTE] = ACTIONS(3896), + [anon_sym_u_SQUOTE] = ACTIONS(3896), + [anon_sym_U_SQUOTE] = ACTIONS(3896), + [anon_sym_u8_SQUOTE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3896), + [anon_sym_L_DQUOTE] = ACTIONS(3896), + [anon_sym_u_DQUOTE] = ACTIONS(3896), + [anon_sym_U_DQUOTE] = ACTIONS(3896), + [anon_sym_u8_DQUOTE] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym_true] = ACTIONS(3894), + [sym_false] = ACTIONS(3894), + [anon_sym_NULL] = ACTIONS(3894), + [anon_sym_nullptr] = ACTIONS(3894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3894), + [anon_sym_decltype] = ACTIONS(3894), + [anon_sym_explicit] = ACTIONS(3894), + [anon_sym_template] = ACTIONS(3894), + [anon_sym_operator] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3894), + [anon_sym_delete] = ACTIONS(3894), + [anon_sym_throw] = ACTIONS(3894), + [anon_sym_namespace] = ACTIONS(3894), + [anon_sym_static_assert] = ACTIONS(3894), + [anon_sym_concept] = ACTIONS(3894), + [anon_sym_co_return] = ACTIONS(3894), + [anon_sym_co_yield] = ACTIONS(3894), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_co_await] = ACTIONS(3894), + [anon_sym_new] = ACTIONS(3894), + [anon_sym_requires] = ACTIONS(3894), + [anon_sym_CARET_CARET] = ACTIONS(3896), + [anon_sym_LBRACK_COLON] = ACTIONS(3896), + [sym_this] = ACTIONS(3894), }, - [STATE(1147)] = { - [sym_expression] = STATE(3627), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(603)] = { + [sym_identifier] = ACTIONS(3700), + [aux_sym_preproc_include_token1] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym___attribute] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym___based] = ACTIONS(3700), + [anon_sym___cdecl] = ACTIONS(3700), + [anon_sym___clrcall] = ACTIONS(3700), + [anon_sym___stdcall] = ACTIONS(3700), + [anon_sym___fastcall] = ACTIONS(3700), + [anon_sym___thiscall] = ACTIONS(3700), + [anon_sym___vectorcall] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym__Nonnull] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym__Alignas] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym___try] = ACTIONS(3700), + [anon_sym___leave] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym___asm] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_explicit] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_static_assert] = ACTIONS(3700), + [anon_sym_concept] = ACTIONS(3700), + [anon_sym_co_return] = ACTIONS(3700), + [anon_sym_co_yield] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [anon_sym_CARET_CARET] = ACTIONS(3702), + [anon_sym_LBRACK_COLON] = ACTIONS(3702), + [sym_this] = ACTIONS(3700), }, - [STATE(1148)] = { - [sym_expression] = STATE(3627), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(604)] = { + [sym_identifier] = ACTIONS(3864), + [aux_sym_preproc_include_token1] = ACTIONS(3864), + [aux_sym_preproc_def_token1] = ACTIONS(3864), + [aux_sym_preproc_if_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(3866), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_AMP_AMP] = ACTIONS(3866), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_SEMI] = ACTIONS(3866), + [anon_sym___extension__] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_virtual] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym___attribute__] = ACTIONS(3864), + [anon_sym___attribute] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), + [anon_sym___declspec] = ACTIONS(3864), + [anon_sym___based] = ACTIONS(3864), + [anon_sym___cdecl] = ACTIONS(3864), + [anon_sym___clrcall] = ACTIONS(3864), + [anon_sym___stdcall] = ACTIONS(3864), + [anon_sym___fastcall] = ACTIONS(3864), + [anon_sym___thiscall] = ACTIONS(3864), + [anon_sym___vectorcall] = ACTIONS(3864), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym___inline] = ACTIONS(3864), + [anon_sym___inline__] = ACTIONS(3864), + [anon_sym___forceinline] = ACTIONS(3864), + [anon_sym_thread_local] = ACTIONS(3864), + [anon_sym___thread] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym___restrict__] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym__Noreturn] = ACTIONS(3864), + [anon_sym_noreturn] = ACTIONS(3864), + [anon_sym__Nonnull] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_constinit] = ACTIONS(3864), + [anon_sym_consteval] = ACTIONS(3864), + [anon_sym_alignas] = ACTIONS(3864), + [anon_sym__Alignas] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_switch] = ACTIONS(3864), + [anon_sym_case] = ACTIONS(3864), + [anon_sym_default] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_do] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_goto] = ACTIONS(3864), + [anon_sym___try] = ACTIONS(3864), + [anon_sym___leave] = ACTIONS(3864), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3866), + [anon_sym_sizeof] = ACTIONS(3864), + [anon_sym___alignof__] = ACTIONS(3864), + [anon_sym___alignof] = ACTIONS(3864), + [anon_sym__alignof] = ACTIONS(3864), + [anon_sym_alignof] = ACTIONS(3864), + [anon_sym__Alignof] = ACTIONS(3864), + [anon_sym_offsetof] = ACTIONS(3864), + [anon_sym__Generic] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(3864), + [anon_sym___asm__] = ACTIONS(3864), + [anon_sym___asm] = ACTIONS(3864), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_L_SQUOTE] = ACTIONS(3866), + [anon_sym_u_SQUOTE] = ACTIONS(3866), + [anon_sym_U_SQUOTE] = ACTIONS(3866), + [anon_sym_u8_SQUOTE] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3866), + [anon_sym_L_DQUOTE] = ACTIONS(3866), + [anon_sym_u_DQUOTE] = ACTIONS(3866), + [anon_sym_U_DQUOTE] = ACTIONS(3866), + [anon_sym_u8_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_true] = ACTIONS(3864), + [sym_false] = ACTIONS(3864), + [anon_sym_NULL] = ACTIONS(3864), + [anon_sym_nullptr] = ACTIONS(3864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3864), + [anon_sym_decltype] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_operator] = ACTIONS(3864), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_delete] = ACTIONS(3864), + [anon_sym_throw] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_static_assert] = ACTIONS(3864), + [anon_sym_concept] = ACTIONS(3864), + [anon_sym_co_return] = ACTIONS(3864), + [anon_sym_co_yield] = ACTIONS(3864), + [anon_sym_R_DQUOTE] = ACTIONS(3866), + [anon_sym_LR_DQUOTE] = ACTIONS(3866), + [anon_sym_uR_DQUOTE] = ACTIONS(3866), + [anon_sym_UR_DQUOTE] = ACTIONS(3866), + [anon_sym_u8R_DQUOTE] = ACTIONS(3866), + [anon_sym_co_await] = ACTIONS(3864), + [anon_sym_new] = ACTIONS(3864), + [anon_sym_requires] = ACTIONS(3864), + [anon_sym_CARET_CARET] = ACTIONS(3866), + [anon_sym_LBRACK_COLON] = ACTIONS(3866), + [sym_this] = ACTIONS(3864), }, - [STATE(1149)] = { - [sym_expression] = STATE(3664), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4792), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(605)] = { + [ts_builtin_sym_end] = ACTIONS(4048), + [sym_identifier] = ACTIONS(4046), + [aux_sym_preproc_include_token1] = ACTIONS(4046), + [aux_sym_preproc_def_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), + [sym_preproc_directive] = ACTIONS(4046), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_typedef] = ACTIONS(4046), + [anon_sym_virtual] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_using] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(4048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym___based] = ACTIONS(4046), + [anon_sym___cdecl] = ACTIONS(4046), + [anon_sym___clrcall] = ACTIONS(4046), + [anon_sym___stdcall] = ACTIONS(4046), + [anon_sym___fastcall] = ACTIONS(4046), + [anon_sym___thiscall] = ACTIONS(4046), + [anon_sym___vectorcall] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_mutable] = ACTIONS(4046), + [anon_sym_constinit] = ACTIONS(4046), + [anon_sym_consteval] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_class] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_if] = ACTIONS(4046), + [anon_sym_switch] = ACTIONS(4046), + [anon_sym_case] = ACTIONS(4046), + [anon_sym_default] = ACTIONS(4046), + [anon_sym_while] = ACTIONS(4046), + [anon_sym_do] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4046), + [anon_sym_break] = ACTIONS(4046), + [anon_sym_continue] = ACTIONS(4046), + [anon_sym_goto] = ACTIONS(4046), + [anon_sym_not] = ACTIONS(4046), + [anon_sym_compl] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_sizeof] = ACTIONS(4046), + [anon_sym___alignof__] = ACTIONS(4046), + [anon_sym___alignof] = ACTIONS(4046), + [anon_sym__alignof] = ACTIONS(4046), + [anon_sym_alignof] = ACTIONS(4046), + [anon_sym__Alignof] = ACTIONS(4046), + [anon_sym_offsetof] = ACTIONS(4046), + [anon_sym__Generic] = ACTIONS(4046), + [anon_sym_typename] = ACTIONS(4046), + [anon_sym_asm] = ACTIONS(4046), + [anon_sym___asm__] = ACTIONS(4046), + [anon_sym___asm] = ACTIONS(4046), + [sym_number_literal] = ACTIONS(4048), + [anon_sym_L_SQUOTE] = ACTIONS(4048), + [anon_sym_u_SQUOTE] = ACTIONS(4048), + [anon_sym_U_SQUOTE] = ACTIONS(4048), + [anon_sym_u8_SQUOTE] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4048), + [anon_sym_L_DQUOTE] = ACTIONS(4048), + [anon_sym_u_DQUOTE] = ACTIONS(4048), + [anon_sym_U_DQUOTE] = ACTIONS(4048), + [anon_sym_u8_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [anon_sym_NULL] = ACTIONS(4046), + [anon_sym_nullptr] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4046), + [anon_sym_decltype] = ACTIONS(4046), + [anon_sym_explicit] = ACTIONS(4046), + [anon_sym_export] = ACTIONS(4046), + [anon_sym_module] = ACTIONS(4046), + [anon_sym_import] = ACTIONS(4046), + [anon_sym_template] = ACTIONS(4046), + [anon_sym_operator] = ACTIONS(4046), + [anon_sym_try] = ACTIONS(4046), + [anon_sym_delete] = ACTIONS(4046), + [anon_sym_throw] = ACTIONS(4046), + [anon_sym_namespace] = ACTIONS(4046), + [anon_sym_static_assert] = ACTIONS(4046), + [anon_sym_concept] = ACTIONS(4046), + [anon_sym_co_return] = ACTIONS(4046), + [anon_sym_co_yield] = ACTIONS(4046), + [anon_sym_R_DQUOTE] = ACTIONS(4048), + [anon_sym_LR_DQUOTE] = ACTIONS(4048), + [anon_sym_uR_DQUOTE] = ACTIONS(4048), + [anon_sym_UR_DQUOTE] = ACTIONS(4048), + [anon_sym_u8R_DQUOTE] = ACTIONS(4048), + [anon_sym_co_await] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_requires] = ACTIONS(4046), + [anon_sym_CARET_CARET] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4048), + [sym_this] = ACTIONS(4046), }, - [STATE(1150)] = { - [sym_expression] = STATE(3664), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(606)] = { + [ts_builtin_sym_end] = ACTIONS(4052), + [sym_identifier] = ACTIONS(4050), + [aux_sym_preproc_include_token1] = ACTIONS(4050), + [aux_sym_preproc_def_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), + [sym_preproc_directive] = ACTIONS(4050), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_typedef] = ACTIONS(4050), + [anon_sym_virtual] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_using] = ACTIONS(4050), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym___based] = ACTIONS(4050), + [anon_sym___cdecl] = ACTIONS(4050), + [anon_sym___clrcall] = ACTIONS(4050), + [anon_sym___stdcall] = ACTIONS(4050), + [anon_sym___fastcall] = ACTIONS(4050), + [anon_sym___thiscall] = ACTIONS(4050), + [anon_sym___vectorcall] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_mutable] = ACTIONS(4050), + [anon_sym_constinit] = ACTIONS(4050), + [anon_sym_consteval] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_class] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_case] = ACTIONS(4050), + [anon_sym_default] = ACTIONS(4050), + [anon_sym_while] = ACTIONS(4050), + [anon_sym_do] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym_not] = ACTIONS(4050), + [anon_sym_compl] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_sizeof] = ACTIONS(4050), + [anon_sym___alignof__] = ACTIONS(4050), + [anon_sym___alignof] = ACTIONS(4050), + [anon_sym__alignof] = ACTIONS(4050), + [anon_sym_alignof] = ACTIONS(4050), + [anon_sym__Alignof] = ACTIONS(4050), + [anon_sym_offsetof] = ACTIONS(4050), + [anon_sym__Generic] = ACTIONS(4050), + [anon_sym_typename] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym___asm__] = ACTIONS(4050), + [anon_sym___asm] = ACTIONS(4050), + [sym_number_literal] = ACTIONS(4052), + [anon_sym_L_SQUOTE] = ACTIONS(4052), + [anon_sym_u_SQUOTE] = ACTIONS(4052), + [anon_sym_U_SQUOTE] = ACTIONS(4052), + [anon_sym_u8_SQUOTE] = ACTIONS(4052), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_L_DQUOTE] = ACTIONS(4052), + [anon_sym_u_DQUOTE] = ACTIONS(4052), + [anon_sym_U_DQUOTE] = ACTIONS(4052), + [anon_sym_u8_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE] = ACTIONS(4052), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [anon_sym_NULL] = ACTIONS(4050), + [anon_sym_nullptr] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4050), + [anon_sym_decltype] = ACTIONS(4050), + [anon_sym_explicit] = ACTIONS(4050), + [anon_sym_export] = ACTIONS(4050), + [anon_sym_module] = ACTIONS(4050), + [anon_sym_import] = ACTIONS(4050), + [anon_sym_template] = ACTIONS(4050), + [anon_sym_operator] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(4050), + [anon_sym_delete] = ACTIONS(4050), + [anon_sym_throw] = ACTIONS(4050), + [anon_sym_namespace] = ACTIONS(4050), + [anon_sym_static_assert] = ACTIONS(4050), + [anon_sym_concept] = ACTIONS(4050), + [anon_sym_co_return] = ACTIONS(4050), + [anon_sym_co_yield] = ACTIONS(4050), + [anon_sym_R_DQUOTE] = ACTIONS(4052), + [anon_sym_LR_DQUOTE] = ACTIONS(4052), + [anon_sym_uR_DQUOTE] = ACTIONS(4052), + [anon_sym_UR_DQUOTE] = ACTIONS(4052), + [anon_sym_u8R_DQUOTE] = ACTIONS(4052), + [anon_sym_co_await] = ACTIONS(4050), + [anon_sym_new] = ACTIONS(4050), + [anon_sym_requires] = ACTIONS(4050), + [anon_sym_CARET_CARET] = ACTIONS(4052), + [anon_sym_LBRACK_COLON] = ACTIONS(4052), + [sym_this] = ACTIONS(4050), }, - [STATE(1151)] = { - [sym_expression] = STATE(3707), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4798), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(607)] = { + [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(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [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(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = 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(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [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_typename] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [anon_sym___asm] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [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_explicit] = 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_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(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [anon_sym_CARET_CARET] = ACTIONS(2954), + [anon_sym_LBRACK_COLON] = ACTIONS(2954), + [sym_this] = ACTIONS(2949), }, - [STATE(1152)] = { - [sym_expression] = STATE(3710), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4801), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), - }, - [STATE(1153)] = { - [sym_expression] = STATE(3711), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4804), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), - }, - [STATE(1154)] = { - [sym_expression] = STATE(3712), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4721), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(608)] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_type_definition] = STATE(641), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(8025), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8578), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2417), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(641), + [sym_operator_cast] = STATE(9064), + [sym_inline_method_definition] = STATE(641), + [sym__constructor_specifiers] = STATE(2417), + [sym_operator_cast_definition] = STATE(641), + [sym_operator_cast_declaration] = STATE(641), + [sym_constructor_or_destructor_definition] = STATE(641), + [sym_constructor_or_destructor_declaration] = STATE(641), + [sym_friend_declaration] = STATE(641), + [sym_access_specifier] = STATE(10717), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(641), + [sym_alias_declaration] = STATE(641), + [sym_static_assert_declaration] = STATE(641), + [sym_consteval_block_declaration] = STATE(641), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9064), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9390), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2417), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4324), + [aux_sym_preproc_if_token1] = ACTIONS(4326), + [aux_sym_preproc_if_token2] = ACTIONS(4328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4330), + [sym_preproc_directive] = ACTIONS(4332), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym___extension__] = ACTIONS(4336), + [anon_sym_typedef] = ACTIONS(4338), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4342), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4344), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4348), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4350), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1155)] = { - [sym_expression] = STATE(3715), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4807), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(609)] = { + [ts_builtin_sym_end] = ACTIONS(4146), + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_export] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(1156)] = { - [sym_expression] = STATE(3626), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4810), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(610)] = { + [ts_builtin_sym_end] = ACTIONS(3988), + [sym_identifier] = ACTIONS(3986), + [aux_sym_preproc_include_token1] = ACTIONS(3986), + [aux_sym_preproc_def_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), + [sym_preproc_directive] = ACTIONS(3986), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym___extension__] = ACTIONS(3986), + [anon_sym_typedef] = ACTIONS(3986), + [anon_sym_virtual] = ACTIONS(3986), + [anon_sym_extern] = ACTIONS(3986), + [anon_sym___attribute__] = ACTIONS(3986), + [anon_sym___attribute] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3986), + [anon_sym_COLON_COLON] = ACTIONS(3988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), + [anon_sym___declspec] = ACTIONS(3986), + [anon_sym___based] = ACTIONS(3986), + [anon_sym___cdecl] = ACTIONS(3986), + [anon_sym___clrcall] = ACTIONS(3986), + [anon_sym___stdcall] = ACTIONS(3986), + [anon_sym___fastcall] = ACTIONS(3986), + [anon_sym___thiscall] = ACTIONS(3986), + [anon_sym___vectorcall] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3986), + [anon_sym_unsigned] = ACTIONS(3986), + [anon_sym_long] = ACTIONS(3986), + [anon_sym_short] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_static] = ACTIONS(3986), + [anon_sym_register] = ACTIONS(3986), + [anon_sym_inline] = ACTIONS(3986), + [anon_sym___inline] = ACTIONS(3986), + [anon_sym___inline__] = ACTIONS(3986), + [anon_sym___forceinline] = ACTIONS(3986), + [anon_sym_thread_local] = ACTIONS(3986), + [anon_sym___thread] = ACTIONS(3986), + [anon_sym_const] = ACTIONS(3986), + [anon_sym_constexpr] = ACTIONS(3986), + [anon_sym_volatile] = ACTIONS(3986), + [anon_sym_restrict] = ACTIONS(3986), + [anon_sym___restrict__] = ACTIONS(3986), + [anon_sym__Atomic] = ACTIONS(3986), + [anon_sym__Noreturn] = ACTIONS(3986), + [anon_sym_noreturn] = ACTIONS(3986), + [anon_sym__Nonnull] = ACTIONS(3986), + [anon_sym_mutable] = ACTIONS(3986), + [anon_sym_constinit] = ACTIONS(3986), + [anon_sym_consteval] = ACTIONS(3986), + [anon_sym_alignas] = ACTIONS(3986), + [anon_sym__Alignas] = ACTIONS(3986), + [sym_primitive_type] = ACTIONS(3986), + [anon_sym_enum] = ACTIONS(3986), + [anon_sym_class] = ACTIONS(3986), + [anon_sym_struct] = ACTIONS(3986), + [anon_sym_union] = ACTIONS(3986), + [anon_sym_if] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_case] = ACTIONS(3986), + [anon_sym_default] = ACTIONS(3986), + [anon_sym_while] = ACTIONS(3986), + [anon_sym_do] = ACTIONS(3986), + [anon_sym_for] = ACTIONS(3986), + [anon_sym_return] = ACTIONS(3986), + [anon_sym_break] = ACTIONS(3986), + [anon_sym_continue] = ACTIONS(3986), + [anon_sym_goto] = ACTIONS(3986), + [anon_sym_not] = ACTIONS(3986), + [anon_sym_compl] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3988), + [anon_sym_sizeof] = ACTIONS(3986), + [anon_sym___alignof__] = ACTIONS(3986), + [anon_sym___alignof] = ACTIONS(3986), + [anon_sym__alignof] = ACTIONS(3986), + [anon_sym_alignof] = ACTIONS(3986), + [anon_sym__Alignof] = ACTIONS(3986), + [anon_sym_offsetof] = ACTIONS(3986), + [anon_sym__Generic] = ACTIONS(3986), + [anon_sym_typename] = ACTIONS(3986), + [anon_sym_asm] = ACTIONS(3986), + [anon_sym___asm__] = ACTIONS(3986), + [anon_sym___asm] = ACTIONS(3986), + [sym_number_literal] = ACTIONS(3988), + [anon_sym_L_SQUOTE] = ACTIONS(3988), + [anon_sym_u_SQUOTE] = ACTIONS(3988), + [anon_sym_U_SQUOTE] = ACTIONS(3988), + [anon_sym_u8_SQUOTE] = ACTIONS(3988), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_L_DQUOTE] = ACTIONS(3988), + [anon_sym_u_DQUOTE] = ACTIONS(3988), + [anon_sym_U_DQUOTE] = ACTIONS(3988), + [anon_sym_u8_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE] = ACTIONS(3988), + [sym_true] = ACTIONS(3986), + [sym_false] = ACTIONS(3986), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3986), + [anon_sym_decltype] = ACTIONS(3986), + [anon_sym_explicit] = ACTIONS(3986), + [anon_sym_export] = ACTIONS(3986), + [anon_sym_module] = ACTIONS(3986), + [anon_sym_import] = ACTIONS(3986), + [anon_sym_template] = ACTIONS(3986), + [anon_sym_operator] = ACTIONS(3986), + [anon_sym_try] = ACTIONS(3986), + [anon_sym_delete] = ACTIONS(3986), + [anon_sym_throw] = ACTIONS(3986), + [anon_sym_namespace] = ACTIONS(3986), + [anon_sym_static_assert] = ACTIONS(3986), + [anon_sym_concept] = ACTIONS(3986), + [anon_sym_co_return] = ACTIONS(3986), + [anon_sym_co_yield] = ACTIONS(3986), + [anon_sym_R_DQUOTE] = ACTIONS(3988), + [anon_sym_LR_DQUOTE] = ACTIONS(3988), + [anon_sym_uR_DQUOTE] = ACTIONS(3988), + [anon_sym_UR_DQUOTE] = ACTIONS(3988), + [anon_sym_u8R_DQUOTE] = ACTIONS(3988), + [anon_sym_co_await] = ACTIONS(3986), + [anon_sym_new] = ACTIONS(3986), + [anon_sym_requires] = ACTIONS(3986), + [anon_sym_CARET_CARET] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3988), + [sym_this] = ACTIONS(3986), }, - [STATE(1157)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4813), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(611)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1158)] = { - [sym_expression] = STATE(3161), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4744), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(612)] = { + [sym_preproc_def] = STATE(625), + [sym_preproc_function_def] = STATE(625), + [sym_preproc_call] = STATE(625), + [sym_preproc_if_in_field_declaration_list] = STATE(625), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), + [sym_type_definition] = STATE(625), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(625), + [sym_field_declaration] = STATE(625), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(625), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(625), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(625), + [sym_operator_cast_declaration] = STATE(625), + [sym_constructor_or_destructor_definition] = STATE(625), + [sym_constructor_or_destructor_declaration] = STATE(625), + [sym_friend_declaration] = STATE(625), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(625), + [sym_alias_declaration] = STATE(625), + [sym_static_assert_declaration] = STATE(625), + [sym_consteval_block_declaration] = STATE(625), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4360), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1159)] = { - [sym_expression] = STATE(3130), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [anon_sym_LPAREN2] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(613)] = { + [ts_builtin_sym_end] = ACTIONS(3980), + [sym_identifier] = ACTIONS(3978), + [aux_sym_preproc_include_token1] = ACTIONS(3978), + [aux_sym_preproc_def_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), + [sym_preproc_directive] = ACTIONS(3978), + [anon_sym_LPAREN2] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_TILDE] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym___extension__] = ACTIONS(3978), + [anon_sym_typedef] = ACTIONS(3978), + [anon_sym_virtual] = ACTIONS(3978), + [anon_sym_extern] = ACTIONS(3978), + [anon_sym___attribute__] = ACTIONS(3978), + [anon_sym___attribute] = ACTIONS(3978), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), + [anon_sym___declspec] = ACTIONS(3978), + [anon_sym___based] = ACTIONS(3978), + [anon_sym___cdecl] = ACTIONS(3978), + [anon_sym___clrcall] = ACTIONS(3978), + [anon_sym___stdcall] = ACTIONS(3978), + [anon_sym___fastcall] = ACTIONS(3978), + [anon_sym___thiscall] = ACTIONS(3978), + [anon_sym___vectorcall] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_signed] = ACTIONS(3978), + [anon_sym_unsigned] = ACTIONS(3978), + [anon_sym_long] = ACTIONS(3978), + [anon_sym_short] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_static] = ACTIONS(3978), + [anon_sym_register] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym___inline] = ACTIONS(3978), + [anon_sym___inline__] = ACTIONS(3978), + [anon_sym___forceinline] = ACTIONS(3978), + [anon_sym_thread_local] = ACTIONS(3978), + [anon_sym___thread] = ACTIONS(3978), + [anon_sym_const] = ACTIONS(3978), + [anon_sym_constexpr] = ACTIONS(3978), + [anon_sym_volatile] = ACTIONS(3978), + [anon_sym_restrict] = ACTIONS(3978), + [anon_sym___restrict__] = ACTIONS(3978), + [anon_sym__Atomic] = ACTIONS(3978), + [anon_sym__Noreturn] = ACTIONS(3978), + [anon_sym_noreturn] = ACTIONS(3978), + [anon_sym__Nonnull] = ACTIONS(3978), + [anon_sym_mutable] = ACTIONS(3978), + [anon_sym_constinit] = ACTIONS(3978), + [anon_sym_consteval] = ACTIONS(3978), + [anon_sym_alignas] = ACTIONS(3978), + [anon_sym__Alignas] = ACTIONS(3978), + [sym_primitive_type] = ACTIONS(3978), + [anon_sym_enum] = ACTIONS(3978), + [anon_sym_class] = ACTIONS(3978), + [anon_sym_struct] = ACTIONS(3978), + [anon_sym_union] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_case] = ACTIONS(3978), + [anon_sym_default] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_do] = ACTIONS(3978), + [anon_sym_for] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_goto] = ACTIONS(3978), + [anon_sym_not] = ACTIONS(3978), + [anon_sym_compl] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(3978), + [anon_sym___alignof__] = ACTIONS(3978), + [anon_sym___alignof] = ACTIONS(3978), + [anon_sym__alignof] = ACTIONS(3978), + [anon_sym_alignof] = ACTIONS(3978), + [anon_sym__Alignof] = ACTIONS(3978), + [anon_sym_offsetof] = ACTIONS(3978), + [anon_sym__Generic] = ACTIONS(3978), + [anon_sym_typename] = ACTIONS(3978), + [anon_sym_asm] = ACTIONS(3978), + [anon_sym___asm__] = ACTIONS(3978), + [anon_sym___asm] = ACTIONS(3978), + [sym_number_literal] = ACTIONS(3980), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3980), + [anon_sym_u_DQUOTE] = ACTIONS(3980), + [anon_sym_U_DQUOTE] = ACTIONS(3980), + [anon_sym_u8_DQUOTE] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(3980), + [sym_true] = ACTIONS(3978), + [sym_false] = ACTIONS(3978), + [anon_sym_NULL] = ACTIONS(3978), + [anon_sym_nullptr] = ACTIONS(3978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3978), + [anon_sym_decltype] = ACTIONS(3978), + [anon_sym_explicit] = ACTIONS(3978), + [anon_sym_export] = ACTIONS(3978), + [anon_sym_module] = ACTIONS(3978), + [anon_sym_import] = ACTIONS(3978), + [anon_sym_template] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_delete] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_static_assert] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(3978), + [anon_sym_co_return] = ACTIONS(3978), + [anon_sym_co_yield] = ACTIONS(3978), + [anon_sym_R_DQUOTE] = ACTIONS(3980), + [anon_sym_LR_DQUOTE] = ACTIONS(3980), + [anon_sym_uR_DQUOTE] = ACTIONS(3980), + [anon_sym_UR_DQUOTE] = ACTIONS(3980), + [anon_sym_u8R_DQUOTE] = ACTIONS(3980), + [anon_sym_co_await] = ACTIONS(3978), + [anon_sym_new] = ACTIONS(3978), + [anon_sym_requires] = ACTIONS(3978), + [anon_sym_CARET_CARET] = ACTIONS(3980), + [anon_sym_LBRACK_COLON] = ACTIONS(3980), + [sym_this] = ACTIONS(3978), }, - [STATE(1160)] = { - [sym_expression] = STATE(4682), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(614)] = { + [ts_builtin_sym_end] = ACTIONS(3964), + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3962), + [anon_sym_module] = ACTIONS(3962), + [anon_sym_import] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), }, - [STATE(1161)] = { - [sym_expression] = STATE(4683), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4821), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(615)] = { + [ts_builtin_sym_end] = ACTIONS(3992), + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_include_token1] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym___cdecl] = ACTIONS(3990), + [anon_sym___clrcall] = ACTIONS(3990), + [anon_sym___stdcall] = ACTIONS(3990), + [anon_sym___fastcall] = ACTIONS(3990), + [anon_sym___thiscall] = ACTIONS(3990), + [anon_sym___vectorcall] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_case] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_break] = ACTIONS(3990), + [anon_sym_continue] = ACTIONS(3990), + [anon_sym_goto] = ACTIONS(3990), + [anon_sym_not] = ACTIONS(3990), + [anon_sym_compl] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3992), + [anon_sym_sizeof] = ACTIONS(3990), + [anon_sym___alignof__] = ACTIONS(3990), + [anon_sym___alignof] = ACTIONS(3990), + [anon_sym__alignof] = ACTIONS(3990), + [anon_sym_alignof] = ACTIONS(3990), + [anon_sym__Alignof] = ACTIONS(3990), + [anon_sym_offsetof] = ACTIONS(3990), + [anon_sym__Generic] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [anon_sym_asm] = ACTIONS(3990), + [anon_sym___asm__] = ACTIONS(3990), + [anon_sym___asm] = ACTIONS(3990), + [sym_number_literal] = ACTIONS(3992), + [anon_sym_L_SQUOTE] = ACTIONS(3992), + [anon_sym_u_SQUOTE] = ACTIONS(3992), + [anon_sym_U_SQUOTE] = ACTIONS(3992), + [anon_sym_u8_SQUOTE] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_L_DQUOTE] = ACTIONS(3992), + [anon_sym_u_DQUOTE] = ACTIONS(3992), + [anon_sym_U_DQUOTE] = ACTIONS(3992), + [anon_sym_u8_DQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym_true] = ACTIONS(3990), + [sym_false] = ACTIONS(3990), + [anon_sym_NULL] = ACTIONS(3990), + [anon_sym_nullptr] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_export] = ACTIONS(3990), + [anon_sym_module] = ACTIONS(3990), + [anon_sym_import] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_delete] = ACTIONS(3990), + [anon_sym_throw] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3990), + [anon_sym_co_return] = ACTIONS(3990), + [anon_sym_co_yield] = ACTIONS(3990), + [anon_sym_R_DQUOTE] = ACTIONS(3992), + [anon_sym_LR_DQUOTE] = ACTIONS(3992), + [anon_sym_uR_DQUOTE] = ACTIONS(3992), + [anon_sym_UR_DQUOTE] = ACTIONS(3992), + [anon_sym_u8R_DQUOTE] = ACTIONS(3992), + [anon_sym_co_await] = ACTIONS(3990), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_requires] = ACTIONS(3990), + [anon_sym_CARET_CARET] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + [sym_this] = ACTIONS(3990), }, - [STATE(1162)] = { - [sym_expression] = STATE(3161), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4747), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(616)] = { + [ts_builtin_sym_end] = ACTIONS(4380), + [sym_identifier] = ACTIONS(4382), + [aux_sym_preproc_include_token1] = ACTIONS(4382), + [aux_sym_preproc_def_token1] = ACTIONS(4382), + [aux_sym_preproc_if_token1] = ACTIONS(4382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4382), + [sym_preproc_directive] = ACTIONS(4382), + [anon_sym_LPAREN2] = ACTIONS(4380), + [anon_sym_BANG] = ACTIONS(4380), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_AMP_AMP] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4380), + [anon_sym___extension__] = ACTIONS(4382), + [anon_sym_typedef] = ACTIONS(4382), + [anon_sym_virtual] = ACTIONS(4382), + [anon_sym_extern] = ACTIONS(4382), + [anon_sym___attribute__] = ACTIONS(4382), + [anon_sym___attribute] = ACTIONS(4382), + [anon_sym_using] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4380), + [anon_sym___declspec] = ACTIONS(4382), + [anon_sym___based] = ACTIONS(4382), + [anon_sym___cdecl] = ACTIONS(4382), + [anon_sym___clrcall] = ACTIONS(4382), + [anon_sym___stdcall] = ACTIONS(4382), + [anon_sym___fastcall] = ACTIONS(4382), + [anon_sym___thiscall] = ACTIONS(4382), + [anon_sym___vectorcall] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_signed] = ACTIONS(4382), + [anon_sym_unsigned] = ACTIONS(4382), + [anon_sym_long] = ACTIONS(4382), + [anon_sym_short] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4382), + [anon_sym_static] = ACTIONS(4382), + [anon_sym_register] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym___inline] = ACTIONS(4382), + [anon_sym___inline__] = ACTIONS(4382), + [anon_sym___forceinline] = ACTIONS(4382), + [anon_sym_thread_local] = ACTIONS(4382), + [anon_sym___thread] = ACTIONS(4382), + [anon_sym_const] = ACTIONS(4382), + [anon_sym_constexpr] = ACTIONS(4382), + [anon_sym_volatile] = ACTIONS(4382), + [anon_sym_restrict] = ACTIONS(4382), + [anon_sym___restrict__] = ACTIONS(4382), + [anon_sym__Atomic] = ACTIONS(4382), + [anon_sym__Noreturn] = ACTIONS(4382), + [anon_sym_noreturn] = ACTIONS(4382), + [anon_sym__Nonnull] = ACTIONS(4382), + [anon_sym_mutable] = ACTIONS(4382), + [anon_sym_constinit] = ACTIONS(4382), + [anon_sym_consteval] = ACTIONS(4382), + [anon_sym_alignas] = ACTIONS(4382), + [anon_sym__Alignas] = ACTIONS(4382), + [sym_primitive_type] = ACTIONS(4382), + [anon_sym_enum] = ACTIONS(4382), + [anon_sym_class] = ACTIONS(4382), + [anon_sym_struct] = ACTIONS(4382), + [anon_sym_union] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_switch] = ACTIONS(4382), + [anon_sym_case] = ACTIONS(4382), + [anon_sym_default] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_do] = ACTIONS(4382), + [anon_sym_for] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_goto] = ACTIONS(4382), + [anon_sym_not] = ACTIONS(4382), + [anon_sym_compl] = ACTIONS(4382), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [anon_sym_sizeof] = ACTIONS(4382), + [anon_sym___alignof__] = ACTIONS(4382), + [anon_sym___alignof] = ACTIONS(4382), + [anon_sym__alignof] = ACTIONS(4382), + [anon_sym_alignof] = ACTIONS(4382), + [anon_sym__Alignof] = ACTIONS(4382), + [anon_sym_offsetof] = ACTIONS(4382), + [anon_sym__Generic] = ACTIONS(4382), + [anon_sym_typename] = ACTIONS(4382), + [anon_sym_asm] = ACTIONS(4382), + [anon_sym___asm__] = ACTIONS(4382), + [anon_sym___asm] = ACTIONS(4382), + [sym_number_literal] = ACTIONS(4380), + [anon_sym_L_SQUOTE] = ACTIONS(4380), + [anon_sym_u_SQUOTE] = ACTIONS(4380), + [anon_sym_U_SQUOTE] = ACTIONS(4380), + [anon_sym_u8_SQUOTE] = ACTIONS(4380), + [anon_sym_SQUOTE] = ACTIONS(4380), + [anon_sym_L_DQUOTE] = ACTIONS(4380), + [anon_sym_u_DQUOTE] = ACTIONS(4380), + [anon_sym_U_DQUOTE] = ACTIONS(4380), + [anon_sym_u8_DQUOTE] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(4380), + [sym_true] = ACTIONS(4382), + [sym_false] = ACTIONS(4382), + [anon_sym_NULL] = ACTIONS(4382), + [anon_sym_nullptr] = ACTIONS(4382), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4382), + [anon_sym_decltype] = ACTIONS(4382), + [anon_sym_explicit] = ACTIONS(4382), + [anon_sym_export] = ACTIONS(4382), + [anon_sym_module] = ACTIONS(4382), + [anon_sym_import] = ACTIONS(4382), + [anon_sym_template] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_delete] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_namespace] = ACTIONS(4382), + [anon_sym_static_assert] = ACTIONS(4382), + [anon_sym_concept] = ACTIONS(4382), + [anon_sym_co_return] = ACTIONS(4382), + [anon_sym_co_yield] = ACTIONS(4382), + [anon_sym_R_DQUOTE] = ACTIONS(4380), + [anon_sym_LR_DQUOTE] = ACTIONS(4380), + [anon_sym_uR_DQUOTE] = ACTIONS(4380), + [anon_sym_UR_DQUOTE] = ACTIONS(4380), + [anon_sym_u8R_DQUOTE] = ACTIONS(4380), + [anon_sym_co_await] = ACTIONS(4382), + [anon_sym_new] = ACTIONS(4382), + [anon_sym_requires] = ACTIONS(4382), + [anon_sym_CARET_CARET] = ACTIONS(4380), + [anon_sym_LBRACK_COLON] = ACTIONS(4380), + [sym_this] = ACTIONS(4382), }, - [STATE(1163)] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4750), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(617)] = { + [ts_builtin_sym_end] = ACTIONS(4384), + [sym_identifier] = ACTIONS(4386), + [aux_sym_preproc_include_token1] = ACTIONS(4386), + [aux_sym_preproc_def_token1] = ACTIONS(4386), + [aux_sym_preproc_if_token1] = ACTIONS(4386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4386), + [sym_preproc_directive] = ACTIONS(4386), + [anon_sym_LPAREN2] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4384), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_PLUS] = ACTIONS(4386), + [anon_sym_STAR] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4386), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym___extension__] = ACTIONS(4386), + [anon_sym_typedef] = ACTIONS(4386), + [anon_sym_virtual] = ACTIONS(4386), + [anon_sym_extern] = ACTIONS(4386), + [anon_sym___attribute__] = ACTIONS(4386), + [anon_sym___attribute] = ACTIONS(4386), + [anon_sym_using] = ACTIONS(4386), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4384), + [anon_sym___declspec] = ACTIONS(4386), + [anon_sym___based] = ACTIONS(4386), + [anon_sym___cdecl] = ACTIONS(4386), + [anon_sym___clrcall] = ACTIONS(4386), + [anon_sym___stdcall] = ACTIONS(4386), + [anon_sym___fastcall] = ACTIONS(4386), + [anon_sym___thiscall] = ACTIONS(4386), + [anon_sym___vectorcall] = ACTIONS(4386), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_signed] = ACTIONS(4386), + [anon_sym_unsigned] = ACTIONS(4386), + [anon_sym_long] = ACTIONS(4386), + [anon_sym_short] = ACTIONS(4386), + [anon_sym_LBRACK] = ACTIONS(4386), + [anon_sym_static] = ACTIONS(4386), + [anon_sym_register] = ACTIONS(4386), + [anon_sym_inline] = ACTIONS(4386), + [anon_sym___inline] = ACTIONS(4386), + [anon_sym___inline__] = ACTIONS(4386), + [anon_sym___forceinline] = ACTIONS(4386), + [anon_sym_thread_local] = ACTIONS(4386), + [anon_sym___thread] = ACTIONS(4386), + [anon_sym_const] = ACTIONS(4386), + [anon_sym_constexpr] = ACTIONS(4386), + [anon_sym_volatile] = ACTIONS(4386), + [anon_sym_restrict] = ACTIONS(4386), + [anon_sym___restrict__] = ACTIONS(4386), + [anon_sym__Atomic] = ACTIONS(4386), + [anon_sym__Noreturn] = ACTIONS(4386), + [anon_sym_noreturn] = ACTIONS(4386), + [anon_sym__Nonnull] = ACTIONS(4386), + [anon_sym_mutable] = ACTIONS(4386), + [anon_sym_constinit] = ACTIONS(4386), + [anon_sym_consteval] = ACTIONS(4386), + [anon_sym_alignas] = ACTIONS(4386), + [anon_sym__Alignas] = ACTIONS(4386), + [sym_primitive_type] = ACTIONS(4386), + [anon_sym_enum] = ACTIONS(4386), + [anon_sym_class] = ACTIONS(4386), + [anon_sym_struct] = ACTIONS(4386), + [anon_sym_union] = ACTIONS(4386), + [anon_sym_if] = ACTIONS(4386), + [anon_sym_switch] = ACTIONS(4386), + [anon_sym_case] = ACTIONS(4386), + [anon_sym_default] = ACTIONS(4386), + [anon_sym_while] = ACTIONS(4386), + [anon_sym_do] = ACTIONS(4386), + [anon_sym_for] = ACTIONS(4386), + [anon_sym_return] = ACTIONS(4386), + [anon_sym_break] = ACTIONS(4386), + [anon_sym_continue] = ACTIONS(4386), + [anon_sym_goto] = ACTIONS(4386), + [anon_sym_not] = ACTIONS(4386), + [anon_sym_compl] = ACTIONS(4386), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(4386), + [anon_sym___alignof__] = ACTIONS(4386), + [anon_sym___alignof] = ACTIONS(4386), + [anon_sym__alignof] = ACTIONS(4386), + [anon_sym_alignof] = ACTIONS(4386), + [anon_sym__Alignof] = ACTIONS(4386), + [anon_sym_offsetof] = ACTIONS(4386), + [anon_sym__Generic] = ACTIONS(4386), + [anon_sym_typename] = ACTIONS(4386), + [anon_sym_asm] = ACTIONS(4386), + [anon_sym___asm__] = ACTIONS(4386), + [anon_sym___asm] = ACTIONS(4386), + [sym_number_literal] = ACTIONS(4384), + [anon_sym_L_SQUOTE] = ACTIONS(4384), + [anon_sym_u_SQUOTE] = ACTIONS(4384), + [anon_sym_U_SQUOTE] = ACTIONS(4384), + [anon_sym_u8_SQUOTE] = ACTIONS(4384), + [anon_sym_SQUOTE] = ACTIONS(4384), + [anon_sym_L_DQUOTE] = ACTIONS(4384), + [anon_sym_u_DQUOTE] = ACTIONS(4384), + [anon_sym_U_DQUOTE] = ACTIONS(4384), + [anon_sym_u8_DQUOTE] = ACTIONS(4384), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym_true] = ACTIONS(4386), + [sym_false] = ACTIONS(4386), + [anon_sym_NULL] = ACTIONS(4386), + [anon_sym_nullptr] = ACTIONS(4386), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4386), + [anon_sym_decltype] = ACTIONS(4386), + [anon_sym_explicit] = ACTIONS(4386), + [anon_sym_export] = ACTIONS(4386), + [anon_sym_module] = ACTIONS(4386), + [anon_sym_import] = ACTIONS(4386), + [anon_sym_template] = ACTIONS(4386), + [anon_sym_operator] = ACTIONS(4386), + [anon_sym_try] = ACTIONS(4386), + [anon_sym_delete] = ACTIONS(4386), + [anon_sym_throw] = ACTIONS(4386), + [anon_sym_namespace] = ACTIONS(4386), + [anon_sym_static_assert] = ACTIONS(4386), + [anon_sym_concept] = ACTIONS(4386), + [anon_sym_co_return] = ACTIONS(4386), + [anon_sym_co_yield] = ACTIONS(4386), + [anon_sym_R_DQUOTE] = ACTIONS(4384), + [anon_sym_LR_DQUOTE] = ACTIONS(4384), + [anon_sym_uR_DQUOTE] = ACTIONS(4384), + [anon_sym_UR_DQUOTE] = ACTIONS(4384), + [anon_sym_u8R_DQUOTE] = ACTIONS(4384), + [anon_sym_co_await] = ACTIONS(4386), + [anon_sym_new] = ACTIONS(4386), + [anon_sym_requires] = ACTIONS(4386), + [anon_sym_CARET_CARET] = ACTIONS(4384), + [anon_sym_LBRACK_COLON] = ACTIONS(4384), + [sym_this] = ACTIONS(4386), }, - [STATE(1164)] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4753), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(4388), + [sym_identifier] = ACTIONS(4390), + [aux_sym_preproc_include_token1] = ACTIONS(4390), + [aux_sym_preproc_def_token1] = ACTIONS(4390), + [aux_sym_preproc_if_token1] = ACTIONS(4390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4390), + [sym_preproc_directive] = ACTIONS(4390), + [anon_sym_LPAREN2] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4390), + [anon_sym_STAR] = ACTIONS(4388), + [anon_sym_AMP_AMP] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4388), + [anon_sym___extension__] = ACTIONS(4390), + [anon_sym_typedef] = ACTIONS(4390), + [anon_sym_virtual] = ACTIONS(4390), + [anon_sym_extern] = ACTIONS(4390), + [anon_sym___attribute__] = ACTIONS(4390), + [anon_sym___attribute] = ACTIONS(4390), + [anon_sym_using] = ACTIONS(4390), + [anon_sym_COLON_COLON] = ACTIONS(4388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4388), + [anon_sym___declspec] = ACTIONS(4390), + [anon_sym___based] = ACTIONS(4390), + [anon_sym___cdecl] = ACTIONS(4390), + [anon_sym___clrcall] = ACTIONS(4390), + [anon_sym___stdcall] = ACTIONS(4390), + [anon_sym___fastcall] = ACTIONS(4390), + [anon_sym___thiscall] = ACTIONS(4390), + [anon_sym___vectorcall] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_signed] = ACTIONS(4390), + [anon_sym_unsigned] = ACTIONS(4390), + [anon_sym_long] = ACTIONS(4390), + [anon_sym_short] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_static] = ACTIONS(4390), + [anon_sym_register] = ACTIONS(4390), + [anon_sym_inline] = ACTIONS(4390), + [anon_sym___inline] = ACTIONS(4390), + [anon_sym___inline__] = ACTIONS(4390), + [anon_sym___forceinline] = ACTIONS(4390), + [anon_sym_thread_local] = ACTIONS(4390), + [anon_sym___thread] = ACTIONS(4390), + [anon_sym_const] = ACTIONS(4390), + [anon_sym_constexpr] = ACTIONS(4390), + [anon_sym_volatile] = ACTIONS(4390), + [anon_sym_restrict] = ACTIONS(4390), + [anon_sym___restrict__] = ACTIONS(4390), + [anon_sym__Atomic] = ACTIONS(4390), + [anon_sym__Noreturn] = ACTIONS(4390), + [anon_sym_noreturn] = ACTIONS(4390), + [anon_sym__Nonnull] = ACTIONS(4390), + [anon_sym_mutable] = ACTIONS(4390), + [anon_sym_constinit] = ACTIONS(4390), + [anon_sym_consteval] = ACTIONS(4390), + [anon_sym_alignas] = ACTIONS(4390), + [anon_sym__Alignas] = ACTIONS(4390), + [sym_primitive_type] = ACTIONS(4390), + [anon_sym_enum] = ACTIONS(4390), + [anon_sym_class] = ACTIONS(4390), + [anon_sym_struct] = ACTIONS(4390), + [anon_sym_union] = ACTIONS(4390), + [anon_sym_if] = ACTIONS(4390), + [anon_sym_switch] = ACTIONS(4390), + [anon_sym_case] = ACTIONS(4390), + [anon_sym_default] = ACTIONS(4390), + [anon_sym_while] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_for] = ACTIONS(4390), + [anon_sym_return] = ACTIONS(4390), + [anon_sym_break] = ACTIONS(4390), + [anon_sym_continue] = ACTIONS(4390), + [anon_sym_goto] = ACTIONS(4390), + [anon_sym_not] = ACTIONS(4390), + [anon_sym_compl] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4388), + [anon_sym_sizeof] = ACTIONS(4390), + [anon_sym___alignof__] = ACTIONS(4390), + [anon_sym___alignof] = ACTIONS(4390), + [anon_sym__alignof] = ACTIONS(4390), + [anon_sym_alignof] = ACTIONS(4390), + [anon_sym__Alignof] = ACTIONS(4390), + [anon_sym_offsetof] = ACTIONS(4390), + [anon_sym__Generic] = ACTIONS(4390), + [anon_sym_typename] = ACTIONS(4390), + [anon_sym_asm] = ACTIONS(4390), + [anon_sym___asm__] = ACTIONS(4390), + [anon_sym___asm] = ACTIONS(4390), + [sym_number_literal] = ACTIONS(4388), + [anon_sym_L_SQUOTE] = ACTIONS(4388), + [anon_sym_u_SQUOTE] = ACTIONS(4388), + [anon_sym_U_SQUOTE] = ACTIONS(4388), + [anon_sym_u8_SQUOTE] = ACTIONS(4388), + [anon_sym_SQUOTE] = ACTIONS(4388), + [anon_sym_L_DQUOTE] = ACTIONS(4388), + [anon_sym_u_DQUOTE] = ACTIONS(4388), + [anon_sym_U_DQUOTE] = ACTIONS(4388), + [anon_sym_u8_DQUOTE] = ACTIONS(4388), + [anon_sym_DQUOTE] = ACTIONS(4388), + [sym_true] = ACTIONS(4390), + [sym_false] = ACTIONS(4390), + [anon_sym_NULL] = ACTIONS(4390), + [anon_sym_nullptr] = ACTIONS(4390), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4390), + [anon_sym_decltype] = ACTIONS(4390), + [anon_sym_explicit] = ACTIONS(4390), + [anon_sym_export] = ACTIONS(4390), + [anon_sym_module] = ACTIONS(4390), + [anon_sym_import] = ACTIONS(4390), + [anon_sym_template] = ACTIONS(4390), + [anon_sym_operator] = ACTIONS(4390), + [anon_sym_try] = ACTIONS(4390), + [anon_sym_delete] = ACTIONS(4390), + [anon_sym_throw] = ACTIONS(4390), + [anon_sym_namespace] = ACTIONS(4390), + [anon_sym_static_assert] = ACTIONS(4390), + [anon_sym_concept] = ACTIONS(4390), + [anon_sym_co_return] = ACTIONS(4390), + [anon_sym_co_yield] = ACTIONS(4390), + [anon_sym_R_DQUOTE] = ACTIONS(4388), + [anon_sym_LR_DQUOTE] = ACTIONS(4388), + [anon_sym_uR_DQUOTE] = ACTIONS(4388), + [anon_sym_UR_DQUOTE] = ACTIONS(4388), + [anon_sym_u8R_DQUOTE] = ACTIONS(4388), + [anon_sym_co_await] = ACTIONS(4390), + [anon_sym_new] = ACTIONS(4390), + [anon_sym_requires] = ACTIONS(4390), + [anon_sym_CARET_CARET] = ACTIONS(4388), + [anon_sym_LBRACK_COLON] = ACTIONS(4388), + [sym_this] = ACTIONS(4390), }, - [STATE(1165)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4823), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(619)] = { + [ts_builtin_sym_end] = ACTIONS(4392), + [sym_identifier] = ACTIONS(4394), + [aux_sym_preproc_include_token1] = ACTIONS(4394), + [aux_sym_preproc_def_token1] = ACTIONS(4394), + [aux_sym_preproc_if_token1] = ACTIONS(4394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4394), + [sym_preproc_directive] = ACTIONS(4394), + [anon_sym_LPAREN2] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4392), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4394), + [anon_sym_PLUS] = ACTIONS(4394), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_AMP_AMP] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4394), + [anon_sym_SEMI] = ACTIONS(4392), + [anon_sym___extension__] = ACTIONS(4394), + [anon_sym_typedef] = ACTIONS(4394), + [anon_sym_virtual] = ACTIONS(4394), + [anon_sym_extern] = ACTIONS(4394), + [anon_sym___attribute__] = ACTIONS(4394), + [anon_sym___attribute] = ACTIONS(4394), + [anon_sym_using] = ACTIONS(4394), + [anon_sym_COLON_COLON] = ACTIONS(4392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4392), + [anon_sym___declspec] = ACTIONS(4394), + [anon_sym___based] = ACTIONS(4394), + [anon_sym___cdecl] = ACTIONS(4394), + [anon_sym___clrcall] = ACTIONS(4394), + [anon_sym___stdcall] = ACTIONS(4394), + [anon_sym___fastcall] = ACTIONS(4394), + [anon_sym___thiscall] = ACTIONS(4394), + [anon_sym___vectorcall] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_signed] = ACTIONS(4394), + [anon_sym_unsigned] = ACTIONS(4394), + [anon_sym_long] = ACTIONS(4394), + [anon_sym_short] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4394), + [anon_sym_static] = ACTIONS(4394), + [anon_sym_register] = ACTIONS(4394), + [anon_sym_inline] = ACTIONS(4394), + [anon_sym___inline] = ACTIONS(4394), + [anon_sym___inline__] = ACTIONS(4394), + [anon_sym___forceinline] = ACTIONS(4394), + [anon_sym_thread_local] = ACTIONS(4394), + [anon_sym___thread] = ACTIONS(4394), + [anon_sym_const] = ACTIONS(4394), + [anon_sym_constexpr] = ACTIONS(4394), + [anon_sym_volatile] = ACTIONS(4394), + [anon_sym_restrict] = ACTIONS(4394), + [anon_sym___restrict__] = ACTIONS(4394), + [anon_sym__Atomic] = ACTIONS(4394), + [anon_sym__Noreturn] = ACTIONS(4394), + [anon_sym_noreturn] = ACTIONS(4394), + [anon_sym__Nonnull] = ACTIONS(4394), + [anon_sym_mutable] = ACTIONS(4394), + [anon_sym_constinit] = ACTIONS(4394), + [anon_sym_consteval] = ACTIONS(4394), + [anon_sym_alignas] = ACTIONS(4394), + [anon_sym__Alignas] = ACTIONS(4394), + [sym_primitive_type] = ACTIONS(4394), + [anon_sym_enum] = ACTIONS(4394), + [anon_sym_class] = ACTIONS(4394), + [anon_sym_struct] = ACTIONS(4394), + [anon_sym_union] = ACTIONS(4394), + [anon_sym_if] = ACTIONS(4394), + [anon_sym_switch] = ACTIONS(4394), + [anon_sym_case] = ACTIONS(4394), + [anon_sym_default] = ACTIONS(4394), + [anon_sym_while] = ACTIONS(4394), + [anon_sym_do] = ACTIONS(4394), + [anon_sym_for] = ACTIONS(4394), + [anon_sym_return] = ACTIONS(4394), + [anon_sym_break] = ACTIONS(4394), + [anon_sym_continue] = ACTIONS(4394), + [anon_sym_goto] = ACTIONS(4394), + [anon_sym_not] = ACTIONS(4394), + [anon_sym_compl] = ACTIONS(4394), + [anon_sym_DASH_DASH] = ACTIONS(4392), + [anon_sym_PLUS_PLUS] = ACTIONS(4392), + [anon_sym_sizeof] = ACTIONS(4394), + [anon_sym___alignof__] = ACTIONS(4394), + [anon_sym___alignof] = ACTIONS(4394), + [anon_sym__alignof] = ACTIONS(4394), + [anon_sym_alignof] = ACTIONS(4394), + [anon_sym__Alignof] = ACTIONS(4394), + [anon_sym_offsetof] = ACTIONS(4394), + [anon_sym__Generic] = ACTIONS(4394), + [anon_sym_typename] = ACTIONS(4394), + [anon_sym_asm] = ACTIONS(4394), + [anon_sym___asm__] = ACTIONS(4394), + [anon_sym___asm] = ACTIONS(4394), + [sym_number_literal] = ACTIONS(4392), + [anon_sym_L_SQUOTE] = ACTIONS(4392), + [anon_sym_u_SQUOTE] = ACTIONS(4392), + [anon_sym_U_SQUOTE] = ACTIONS(4392), + [anon_sym_u8_SQUOTE] = ACTIONS(4392), + [anon_sym_SQUOTE] = ACTIONS(4392), + [anon_sym_L_DQUOTE] = ACTIONS(4392), + [anon_sym_u_DQUOTE] = ACTIONS(4392), + [anon_sym_U_DQUOTE] = ACTIONS(4392), + [anon_sym_u8_DQUOTE] = ACTIONS(4392), + [anon_sym_DQUOTE] = ACTIONS(4392), + [sym_true] = ACTIONS(4394), + [sym_false] = ACTIONS(4394), + [anon_sym_NULL] = ACTIONS(4394), + [anon_sym_nullptr] = ACTIONS(4394), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4394), + [anon_sym_decltype] = ACTIONS(4394), + [anon_sym_explicit] = ACTIONS(4394), + [anon_sym_export] = ACTIONS(4394), + [anon_sym_module] = ACTIONS(4394), + [anon_sym_import] = ACTIONS(4394), + [anon_sym_template] = ACTIONS(4394), + [anon_sym_operator] = ACTIONS(4394), + [anon_sym_try] = ACTIONS(4394), + [anon_sym_delete] = ACTIONS(4394), + [anon_sym_throw] = ACTIONS(4394), + [anon_sym_namespace] = ACTIONS(4394), + [anon_sym_static_assert] = ACTIONS(4394), + [anon_sym_concept] = ACTIONS(4394), + [anon_sym_co_return] = ACTIONS(4394), + [anon_sym_co_yield] = ACTIONS(4394), + [anon_sym_R_DQUOTE] = ACTIONS(4392), + [anon_sym_LR_DQUOTE] = ACTIONS(4392), + [anon_sym_uR_DQUOTE] = ACTIONS(4392), + [anon_sym_UR_DQUOTE] = ACTIONS(4392), + [anon_sym_u8R_DQUOTE] = ACTIONS(4392), + [anon_sym_co_await] = ACTIONS(4394), + [anon_sym_new] = ACTIONS(4394), + [anon_sym_requires] = ACTIONS(4394), + [anon_sym_CARET_CARET] = ACTIONS(4392), + [anon_sym_LBRACK_COLON] = ACTIONS(4392), + [sym_this] = ACTIONS(4394), }, - [STATE(1166)] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(620)] = { + [ts_builtin_sym_end] = ACTIONS(4396), + [sym_identifier] = ACTIONS(4398), + [aux_sym_preproc_include_token1] = ACTIONS(4398), + [aux_sym_preproc_def_token1] = ACTIONS(4398), + [aux_sym_preproc_if_token1] = ACTIONS(4398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4398), + [sym_preproc_directive] = ACTIONS(4398), + [anon_sym_LPAREN2] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_TILDE] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_AMP_AMP] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4396), + [anon_sym___extension__] = ACTIONS(4398), + [anon_sym_typedef] = ACTIONS(4398), + [anon_sym_virtual] = ACTIONS(4398), + [anon_sym_extern] = ACTIONS(4398), + [anon_sym___attribute__] = ACTIONS(4398), + [anon_sym___attribute] = ACTIONS(4398), + [anon_sym_using] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4396), + [anon_sym___declspec] = ACTIONS(4398), + [anon_sym___based] = ACTIONS(4398), + [anon_sym___cdecl] = ACTIONS(4398), + [anon_sym___clrcall] = ACTIONS(4398), + [anon_sym___stdcall] = ACTIONS(4398), + [anon_sym___fastcall] = ACTIONS(4398), + [anon_sym___thiscall] = ACTIONS(4398), + [anon_sym___vectorcall] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_signed] = ACTIONS(4398), + [anon_sym_unsigned] = ACTIONS(4398), + [anon_sym_long] = ACTIONS(4398), + [anon_sym_short] = ACTIONS(4398), + [anon_sym_LBRACK] = ACTIONS(4398), + [anon_sym_static] = ACTIONS(4398), + [anon_sym_register] = ACTIONS(4398), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym___inline] = ACTIONS(4398), + [anon_sym___inline__] = ACTIONS(4398), + [anon_sym___forceinline] = ACTIONS(4398), + [anon_sym_thread_local] = ACTIONS(4398), + [anon_sym___thread] = ACTIONS(4398), + [anon_sym_const] = ACTIONS(4398), + [anon_sym_constexpr] = ACTIONS(4398), + [anon_sym_volatile] = ACTIONS(4398), + [anon_sym_restrict] = ACTIONS(4398), + [anon_sym___restrict__] = ACTIONS(4398), + [anon_sym__Atomic] = ACTIONS(4398), + [anon_sym__Noreturn] = ACTIONS(4398), + [anon_sym_noreturn] = ACTIONS(4398), + [anon_sym__Nonnull] = ACTIONS(4398), + [anon_sym_mutable] = ACTIONS(4398), + [anon_sym_constinit] = ACTIONS(4398), + [anon_sym_consteval] = ACTIONS(4398), + [anon_sym_alignas] = ACTIONS(4398), + [anon_sym__Alignas] = ACTIONS(4398), + [sym_primitive_type] = ACTIONS(4398), + [anon_sym_enum] = ACTIONS(4398), + [anon_sym_class] = ACTIONS(4398), + [anon_sym_struct] = ACTIONS(4398), + [anon_sym_union] = ACTIONS(4398), + [anon_sym_if] = ACTIONS(4398), + [anon_sym_switch] = ACTIONS(4398), + [anon_sym_case] = ACTIONS(4398), + [anon_sym_default] = ACTIONS(4398), + [anon_sym_while] = ACTIONS(4398), + [anon_sym_do] = ACTIONS(4398), + [anon_sym_for] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4398), + [anon_sym_break] = ACTIONS(4398), + [anon_sym_continue] = ACTIONS(4398), + [anon_sym_goto] = ACTIONS(4398), + [anon_sym_not] = ACTIONS(4398), + [anon_sym_compl] = ACTIONS(4398), + [anon_sym_DASH_DASH] = ACTIONS(4396), + [anon_sym_PLUS_PLUS] = ACTIONS(4396), + [anon_sym_sizeof] = ACTIONS(4398), + [anon_sym___alignof__] = ACTIONS(4398), + [anon_sym___alignof] = ACTIONS(4398), + [anon_sym__alignof] = ACTIONS(4398), + [anon_sym_alignof] = ACTIONS(4398), + [anon_sym__Alignof] = ACTIONS(4398), + [anon_sym_offsetof] = ACTIONS(4398), + [anon_sym__Generic] = ACTIONS(4398), + [anon_sym_typename] = ACTIONS(4398), + [anon_sym_asm] = ACTIONS(4398), + [anon_sym___asm__] = ACTIONS(4398), + [anon_sym___asm] = ACTIONS(4398), + [sym_number_literal] = ACTIONS(4396), + [anon_sym_L_SQUOTE] = ACTIONS(4396), + [anon_sym_u_SQUOTE] = ACTIONS(4396), + [anon_sym_U_SQUOTE] = ACTIONS(4396), + [anon_sym_u8_SQUOTE] = ACTIONS(4396), + [anon_sym_SQUOTE] = ACTIONS(4396), + [anon_sym_L_DQUOTE] = ACTIONS(4396), + [anon_sym_u_DQUOTE] = ACTIONS(4396), + [anon_sym_U_DQUOTE] = ACTIONS(4396), + [anon_sym_u8_DQUOTE] = ACTIONS(4396), + [anon_sym_DQUOTE] = ACTIONS(4396), + [sym_true] = ACTIONS(4398), + [sym_false] = ACTIONS(4398), + [anon_sym_NULL] = ACTIONS(4398), + [anon_sym_nullptr] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4398), + [anon_sym_decltype] = ACTIONS(4398), + [anon_sym_explicit] = ACTIONS(4398), + [anon_sym_export] = ACTIONS(4398), + [anon_sym_module] = ACTIONS(4398), + [anon_sym_import] = ACTIONS(4398), + [anon_sym_template] = ACTIONS(4398), + [anon_sym_operator] = ACTIONS(4398), + [anon_sym_try] = ACTIONS(4398), + [anon_sym_delete] = ACTIONS(4398), + [anon_sym_throw] = ACTIONS(4398), + [anon_sym_namespace] = ACTIONS(4398), + [anon_sym_static_assert] = ACTIONS(4398), + [anon_sym_concept] = ACTIONS(4398), + [anon_sym_co_return] = ACTIONS(4398), + [anon_sym_co_yield] = ACTIONS(4398), + [anon_sym_R_DQUOTE] = ACTIONS(4396), + [anon_sym_LR_DQUOTE] = ACTIONS(4396), + [anon_sym_uR_DQUOTE] = ACTIONS(4396), + [anon_sym_UR_DQUOTE] = ACTIONS(4396), + [anon_sym_u8R_DQUOTE] = ACTIONS(4396), + [anon_sym_co_await] = ACTIONS(4398), + [anon_sym_new] = ACTIONS(4398), + [anon_sym_requires] = ACTIONS(4398), + [anon_sym_CARET_CARET] = ACTIONS(4396), + [anon_sym_LBRACK_COLON] = ACTIONS(4396), + [sym_this] = ACTIONS(4398), }, - [STATE(1167)] = { - [sym_expression] = STATE(3166), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4759), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(621)] = { + [ts_builtin_sym_end] = ACTIONS(4400), + [sym_identifier] = ACTIONS(4402), + [aux_sym_preproc_include_token1] = ACTIONS(4402), + [aux_sym_preproc_def_token1] = ACTIONS(4402), + [aux_sym_preproc_if_token1] = ACTIONS(4402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4402), + [sym_preproc_directive] = ACTIONS(4402), + [anon_sym_LPAREN2] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(4400), + [anon_sym_TILDE] = ACTIONS(4400), + [anon_sym_DASH] = ACTIONS(4402), + [anon_sym_PLUS] = ACTIONS(4402), + [anon_sym_STAR] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4402), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym___extension__] = ACTIONS(4402), + [anon_sym_typedef] = ACTIONS(4402), + [anon_sym_virtual] = ACTIONS(4402), + [anon_sym_extern] = ACTIONS(4402), + [anon_sym___attribute__] = ACTIONS(4402), + [anon_sym___attribute] = ACTIONS(4402), + [anon_sym_using] = ACTIONS(4402), + [anon_sym_COLON_COLON] = ACTIONS(4400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4400), + [anon_sym___declspec] = ACTIONS(4402), + [anon_sym___based] = ACTIONS(4402), + [anon_sym___cdecl] = ACTIONS(4402), + [anon_sym___clrcall] = ACTIONS(4402), + [anon_sym___stdcall] = ACTIONS(4402), + [anon_sym___fastcall] = ACTIONS(4402), + [anon_sym___thiscall] = ACTIONS(4402), + [anon_sym___vectorcall] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_signed] = ACTIONS(4402), + [anon_sym_unsigned] = ACTIONS(4402), + [anon_sym_long] = ACTIONS(4402), + [anon_sym_short] = ACTIONS(4402), + [anon_sym_LBRACK] = ACTIONS(4402), + [anon_sym_static] = ACTIONS(4402), + [anon_sym_register] = ACTIONS(4402), + [anon_sym_inline] = ACTIONS(4402), + [anon_sym___inline] = ACTIONS(4402), + [anon_sym___inline__] = ACTIONS(4402), + [anon_sym___forceinline] = ACTIONS(4402), + [anon_sym_thread_local] = ACTIONS(4402), + [anon_sym___thread] = ACTIONS(4402), + [anon_sym_const] = ACTIONS(4402), + [anon_sym_constexpr] = ACTIONS(4402), + [anon_sym_volatile] = ACTIONS(4402), + [anon_sym_restrict] = ACTIONS(4402), + [anon_sym___restrict__] = ACTIONS(4402), + [anon_sym__Atomic] = ACTIONS(4402), + [anon_sym__Noreturn] = ACTIONS(4402), + [anon_sym_noreturn] = ACTIONS(4402), + [anon_sym__Nonnull] = ACTIONS(4402), + [anon_sym_mutable] = ACTIONS(4402), + [anon_sym_constinit] = ACTIONS(4402), + [anon_sym_consteval] = ACTIONS(4402), + [anon_sym_alignas] = ACTIONS(4402), + [anon_sym__Alignas] = ACTIONS(4402), + [sym_primitive_type] = ACTIONS(4402), + [anon_sym_enum] = ACTIONS(4402), + [anon_sym_class] = ACTIONS(4402), + [anon_sym_struct] = ACTIONS(4402), + [anon_sym_union] = ACTIONS(4402), + [anon_sym_if] = ACTIONS(4402), + [anon_sym_switch] = ACTIONS(4402), + [anon_sym_case] = ACTIONS(4402), + [anon_sym_default] = ACTIONS(4402), + [anon_sym_while] = ACTIONS(4402), + [anon_sym_do] = ACTIONS(4402), + [anon_sym_for] = ACTIONS(4402), + [anon_sym_return] = ACTIONS(4402), + [anon_sym_break] = ACTIONS(4402), + [anon_sym_continue] = ACTIONS(4402), + [anon_sym_goto] = ACTIONS(4402), + [anon_sym_not] = ACTIONS(4402), + [anon_sym_compl] = ACTIONS(4402), + [anon_sym_DASH_DASH] = ACTIONS(4400), + [anon_sym_PLUS_PLUS] = ACTIONS(4400), + [anon_sym_sizeof] = ACTIONS(4402), + [anon_sym___alignof__] = ACTIONS(4402), + [anon_sym___alignof] = ACTIONS(4402), + [anon_sym__alignof] = ACTIONS(4402), + [anon_sym_alignof] = ACTIONS(4402), + [anon_sym__Alignof] = ACTIONS(4402), + [anon_sym_offsetof] = ACTIONS(4402), + [anon_sym__Generic] = ACTIONS(4402), + [anon_sym_typename] = ACTIONS(4402), + [anon_sym_asm] = ACTIONS(4402), + [anon_sym___asm__] = ACTIONS(4402), + [anon_sym___asm] = ACTIONS(4402), + [sym_number_literal] = ACTIONS(4400), + [anon_sym_L_SQUOTE] = ACTIONS(4400), + [anon_sym_u_SQUOTE] = ACTIONS(4400), + [anon_sym_U_SQUOTE] = ACTIONS(4400), + [anon_sym_u8_SQUOTE] = ACTIONS(4400), + [anon_sym_SQUOTE] = ACTIONS(4400), + [anon_sym_L_DQUOTE] = ACTIONS(4400), + [anon_sym_u_DQUOTE] = ACTIONS(4400), + [anon_sym_U_DQUOTE] = ACTIONS(4400), + [anon_sym_u8_DQUOTE] = ACTIONS(4400), + [anon_sym_DQUOTE] = ACTIONS(4400), + [sym_true] = ACTIONS(4402), + [sym_false] = ACTIONS(4402), + [anon_sym_NULL] = ACTIONS(4402), + [anon_sym_nullptr] = ACTIONS(4402), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4402), + [anon_sym_decltype] = ACTIONS(4402), + [anon_sym_explicit] = ACTIONS(4402), + [anon_sym_export] = ACTIONS(4402), + [anon_sym_module] = ACTIONS(4402), + [anon_sym_import] = ACTIONS(4402), + [anon_sym_template] = ACTIONS(4402), + [anon_sym_operator] = ACTIONS(4402), + [anon_sym_try] = ACTIONS(4402), + [anon_sym_delete] = ACTIONS(4402), + [anon_sym_throw] = ACTIONS(4402), + [anon_sym_namespace] = ACTIONS(4402), + [anon_sym_static_assert] = ACTIONS(4402), + [anon_sym_concept] = ACTIONS(4402), + [anon_sym_co_return] = ACTIONS(4402), + [anon_sym_co_yield] = ACTIONS(4402), + [anon_sym_R_DQUOTE] = ACTIONS(4400), + [anon_sym_LR_DQUOTE] = ACTIONS(4400), + [anon_sym_uR_DQUOTE] = ACTIONS(4400), + [anon_sym_UR_DQUOTE] = ACTIONS(4400), + [anon_sym_u8R_DQUOTE] = ACTIONS(4400), + [anon_sym_co_await] = ACTIONS(4402), + [anon_sym_new] = ACTIONS(4402), + [anon_sym_requires] = ACTIONS(4402), + [anon_sym_CARET_CARET] = ACTIONS(4400), + [anon_sym_LBRACK_COLON] = ACTIONS(4400), + [sym_this] = ACTIONS(4402), }, - [STATE(1168)] = { - [sym_expression] = STATE(3111), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4762), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(4404), + [sym_identifier] = ACTIONS(4406), + [aux_sym_preproc_include_token1] = ACTIONS(4406), + [aux_sym_preproc_def_token1] = ACTIONS(4406), + [aux_sym_preproc_if_token1] = ACTIONS(4406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4406), + [sym_preproc_directive] = ACTIONS(4406), + [anon_sym_LPAREN2] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4406), + [anon_sym_PLUS] = ACTIONS(4406), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4406), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym___extension__] = ACTIONS(4406), + [anon_sym_typedef] = ACTIONS(4406), + [anon_sym_virtual] = ACTIONS(4406), + [anon_sym_extern] = ACTIONS(4406), + [anon_sym___attribute__] = ACTIONS(4406), + [anon_sym___attribute] = ACTIONS(4406), + [anon_sym_using] = ACTIONS(4406), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4404), + [anon_sym___declspec] = ACTIONS(4406), + [anon_sym___based] = ACTIONS(4406), + [anon_sym___cdecl] = ACTIONS(4406), + [anon_sym___clrcall] = ACTIONS(4406), + [anon_sym___stdcall] = ACTIONS(4406), + [anon_sym___fastcall] = ACTIONS(4406), + [anon_sym___thiscall] = ACTIONS(4406), + [anon_sym___vectorcall] = ACTIONS(4406), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_signed] = ACTIONS(4406), + [anon_sym_unsigned] = ACTIONS(4406), + [anon_sym_long] = ACTIONS(4406), + [anon_sym_short] = ACTIONS(4406), + [anon_sym_LBRACK] = ACTIONS(4406), + [anon_sym_static] = ACTIONS(4406), + [anon_sym_register] = ACTIONS(4406), + [anon_sym_inline] = ACTIONS(4406), + [anon_sym___inline] = ACTIONS(4406), + [anon_sym___inline__] = ACTIONS(4406), + [anon_sym___forceinline] = ACTIONS(4406), + [anon_sym_thread_local] = ACTIONS(4406), + [anon_sym___thread] = ACTIONS(4406), + [anon_sym_const] = ACTIONS(4406), + [anon_sym_constexpr] = ACTIONS(4406), + [anon_sym_volatile] = ACTIONS(4406), + [anon_sym_restrict] = ACTIONS(4406), + [anon_sym___restrict__] = ACTIONS(4406), + [anon_sym__Atomic] = ACTIONS(4406), + [anon_sym__Noreturn] = ACTIONS(4406), + [anon_sym_noreturn] = ACTIONS(4406), + [anon_sym__Nonnull] = ACTIONS(4406), + [anon_sym_mutable] = ACTIONS(4406), + [anon_sym_constinit] = ACTIONS(4406), + [anon_sym_consteval] = ACTIONS(4406), + [anon_sym_alignas] = ACTIONS(4406), + [anon_sym__Alignas] = ACTIONS(4406), + [sym_primitive_type] = ACTIONS(4406), + [anon_sym_enum] = ACTIONS(4406), + [anon_sym_class] = ACTIONS(4406), + [anon_sym_struct] = ACTIONS(4406), + [anon_sym_union] = ACTIONS(4406), + [anon_sym_if] = ACTIONS(4406), + [anon_sym_switch] = ACTIONS(4406), + [anon_sym_case] = ACTIONS(4406), + [anon_sym_default] = ACTIONS(4406), + [anon_sym_while] = ACTIONS(4406), + [anon_sym_do] = ACTIONS(4406), + [anon_sym_for] = ACTIONS(4406), + [anon_sym_return] = ACTIONS(4406), + [anon_sym_break] = ACTIONS(4406), + [anon_sym_continue] = ACTIONS(4406), + [anon_sym_goto] = ACTIONS(4406), + [anon_sym_not] = ACTIONS(4406), + [anon_sym_compl] = ACTIONS(4406), + [anon_sym_DASH_DASH] = ACTIONS(4404), + [anon_sym_PLUS_PLUS] = ACTIONS(4404), + [anon_sym_sizeof] = ACTIONS(4406), + [anon_sym___alignof__] = ACTIONS(4406), + [anon_sym___alignof] = ACTIONS(4406), + [anon_sym__alignof] = ACTIONS(4406), + [anon_sym_alignof] = ACTIONS(4406), + [anon_sym__Alignof] = ACTIONS(4406), + [anon_sym_offsetof] = ACTIONS(4406), + [anon_sym__Generic] = ACTIONS(4406), + [anon_sym_typename] = ACTIONS(4406), + [anon_sym_asm] = ACTIONS(4406), + [anon_sym___asm__] = ACTIONS(4406), + [anon_sym___asm] = ACTIONS(4406), + [sym_number_literal] = ACTIONS(4404), + [anon_sym_L_SQUOTE] = ACTIONS(4404), + [anon_sym_u_SQUOTE] = ACTIONS(4404), + [anon_sym_U_SQUOTE] = ACTIONS(4404), + [anon_sym_u8_SQUOTE] = ACTIONS(4404), + [anon_sym_SQUOTE] = ACTIONS(4404), + [anon_sym_L_DQUOTE] = ACTIONS(4404), + [anon_sym_u_DQUOTE] = ACTIONS(4404), + [anon_sym_U_DQUOTE] = ACTIONS(4404), + [anon_sym_u8_DQUOTE] = ACTIONS(4404), + [anon_sym_DQUOTE] = ACTIONS(4404), + [sym_true] = ACTIONS(4406), + [sym_false] = ACTIONS(4406), + [anon_sym_NULL] = ACTIONS(4406), + [anon_sym_nullptr] = ACTIONS(4406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4406), + [anon_sym_decltype] = ACTIONS(4406), + [anon_sym_explicit] = ACTIONS(4406), + [anon_sym_export] = ACTIONS(4406), + [anon_sym_module] = ACTIONS(4406), + [anon_sym_import] = ACTIONS(4406), + [anon_sym_template] = ACTIONS(4406), + [anon_sym_operator] = ACTIONS(4406), + [anon_sym_try] = ACTIONS(4406), + [anon_sym_delete] = ACTIONS(4406), + [anon_sym_throw] = ACTIONS(4406), + [anon_sym_namespace] = ACTIONS(4406), + [anon_sym_static_assert] = ACTIONS(4406), + [anon_sym_concept] = ACTIONS(4406), + [anon_sym_co_return] = ACTIONS(4406), + [anon_sym_co_yield] = ACTIONS(4406), + [anon_sym_R_DQUOTE] = ACTIONS(4404), + [anon_sym_LR_DQUOTE] = ACTIONS(4404), + [anon_sym_uR_DQUOTE] = ACTIONS(4404), + [anon_sym_UR_DQUOTE] = ACTIONS(4404), + [anon_sym_u8R_DQUOTE] = ACTIONS(4404), + [anon_sym_co_await] = ACTIONS(4406), + [anon_sym_new] = ACTIONS(4406), + [anon_sym_requires] = ACTIONS(4406), + [anon_sym_CARET_CARET] = ACTIONS(4404), + [anon_sym_LBRACK_COLON] = ACTIONS(4404), + [sym_this] = ACTIONS(4406), }, - [STATE(1169)] = { - [sym_expression] = STATE(3170), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4765), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(623)] = { + [ts_builtin_sym_end] = ACTIONS(4121), + [sym_identifier] = ACTIONS(4119), + [aux_sym_preproc_include_token1] = ACTIONS(4119), + [aux_sym_preproc_def_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), + [sym_preproc_directive] = ACTIONS(4119), + [anon_sym_LPAREN2] = ACTIONS(4121), + [anon_sym_BANG] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym___extension__] = ACTIONS(4119), + [anon_sym_typedef] = ACTIONS(4119), + [anon_sym_virtual] = ACTIONS(4119), + [anon_sym_extern] = ACTIONS(4119), + [anon_sym___attribute__] = ACTIONS(4119), + [anon_sym___attribute] = ACTIONS(4119), + [anon_sym_using] = ACTIONS(4119), + [anon_sym_COLON_COLON] = ACTIONS(4121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), + [anon_sym___declspec] = ACTIONS(4119), + [anon_sym___based] = ACTIONS(4119), + [anon_sym___cdecl] = ACTIONS(4119), + [anon_sym___clrcall] = ACTIONS(4119), + [anon_sym___stdcall] = ACTIONS(4119), + [anon_sym___fastcall] = ACTIONS(4119), + [anon_sym___thiscall] = ACTIONS(4119), + [anon_sym___vectorcall] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_signed] = ACTIONS(4119), + [anon_sym_unsigned] = ACTIONS(4119), + [anon_sym_long] = ACTIONS(4119), + [anon_sym_short] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_static] = ACTIONS(4119), + [anon_sym_register] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym___inline] = ACTIONS(4119), + [anon_sym___inline__] = ACTIONS(4119), + [anon_sym___forceinline] = ACTIONS(4119), + [anon_sym_thread_local] = ACTIONS(4119), + [anon_sym___thread] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4119), + [anon_sym_constexpr] = ACTIONS(4119), + [anon_sym_volatile] = ACTIONS(4119), + [anon_sym_restrict] = ACTIONS(4119), + [anon_sym___restrict__] = ACTIONS(4119), + [anon_sym__Atomic] = ACTIONS(4119), + [anon_sym__Noreturn] = ACTIONS(4119), + [anon_sym_noreturn] = ACTIONS(4119), + [anon_sym__Nonnull] = ACTIONS(4119), + [anon_sym_mutable] = ACTIONS(4119), + [anon_sym_constinit] = ACTIONS(4119), + [anon_sym_consteval] = ACTIONS(4119), + [anon_sym_alignas] = ACTIONS(4119), + [anon_sym__Alignas] = ACTIONS(4119), + [sym_primitive_type] = ACTIONS(4119), + [anon_sym_enum] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_struct] = ACTIONS(4119), + [anon_sym_union] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_case] = ACTIONS(4119), + [anon_sym_default] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_do] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_goto] = ACTIONS(4119), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_compl] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_sizeof] = ACTIONS(4119), + [anon_sym___alignof__] = ACTIONS(4119), + [anon_sym___alignof] = ACTIONS(4119), + [anon_sym__alignof] = ACTIONS(4119), + [anon_sym_alignof] = ACTIONS(4119), + [anon_sym__Alignof] = ACTIONS(4119), + [anon_sym_offsetof] = ACTIONS(4119), + [anon_sym__Generic] = ACTIONS(4119), + [anon_sym_typename] = ACTIONS(4119), + [anon_sym_asm] = ACTIONS(4119), + [anon_sym___asm__] = ACTIONS(4119), + [anon_sym___asm] = ACTIONS(4119), + [sym_number_literal] = ACTIONS(4121), + [anon_sym_L_SQUOTE] = ACTIONS(4121), + [anon_sym_u_SQUOTE] = ACTIONS(4121), + [anon_sym_U_SQUOTE] = ACTIONS(4121), + [anon_sym_u8_SQUOTE] = ACTIONS(4121), + [anon_sym_SQUOTE] = ACTIONS(4121), + [anon_sym_L_DQUOTE] = ACTIONS(4121), + [anon_sym_u_DQUOTE] = ACTIONS(4121), + [anon_sym_U_DQUOTE] = ACTIONS(4121), + [anon_sym_u8_DQUOTE] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(4121), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [anon_sym_NULL] = ACTIONS(4119), + [anon_sym_nullptr] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4119), + [anon_sym_decltype] = ACTIONS(4119), + [anon_sym_explicit] = ACTIONS(4119), + [anon_sym_export] = ACTIONS(4119), + [anon_sym_module] = ACTIONS(4119), + [anon_sym_import] = ACTIONS(4119), + [anon_sym_template] = ACTIONS(4119), + [anon_sym_operator] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_delete] = ACTIONS(4119), + [anon_sym_throw] = ACTIONS(4119), + [anon_sym_namespace] = ACTIONS(4119), + [anon_sym_static_assert] = ACTIONS(4119), + [anon_sym_concept] = ACTIONS(4119), + [anon_sym_co_return] = ACTIONS(4119), + [anon_sym_co_yield] = ACTIONS(4119), + [anon_sym_R_DQUOTE] = ACTIONS(4121), + [anon_sym_LR_DQUOTE] = ACTIONS(4121), + [anon_sym_uR_DQUOTE] = ACTIONS(4121), + [anon_sym_UR_DQUOTE] = ACTIONS(4121), + [anon_sym_u8R_DQUOTE] = ACTIONS(4121), + [anon_sym_co_await] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_requires] = ACTIONS(4119), + [anon_sym_CARET_CARET] = ACTIONS(4121), + [anon_sym_LBRACK_COLON] = ACTIONS(4121), + [sym_this] = ACTIONS(4119), }, - [STATE(1170)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4825), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(624)] = { + [ts_builtin_sym_end] = ACTIONS(4056), + [sym_identifier] = ACTIONS(4054), + [aux_sym_preproc_include_token1] = ACTIONS(4054), + [aux_sym_preproc_def_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), + [sym_preproc_directive] = ACTIONS(4054), + [anon_sym_LPAREN2] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym___extension__] = ACTIONS(4054), + [anon_sym_typedef] = ACTIONS(4054), + [anon_sym_virtual] = ACTIONS(4054), + [anon_sym_extern] = ACTIONS(4054), + [anon_sym___attribute__] = ACTIONS(4054), + [anon_sym___attribute] = ACTIONS(4054), + [anon_sym_using] = ACTIONS(4054), + [anon_sym_COLON_COLON] = ACTIONS(4056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), + [anon_sym___declspec] = ACTIONS(4054), + [anon_sym___based] = ACTIONS(4054), + [anon_sym___cdecl] = ACTIONS(4054), + [anon_sym___clrcall] = ACTIONS(4054), + [anon_sym___stdcall] = ACTIONS(4054), + [anon_sym___fastcall] = ACTIONS(4054), + [anon_sym___thiscall] = ACTIONS(4054), + [anon_sym___vectorcall] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_signed] = ACTIONS(4054), + [anon_sym_unsigned] = ACTIONS(4054), + [anon_sym_long] = ACTIONS(4054), + [anon_sym_short] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_register] = ACTIONS(4054), + [anon_sym_inline] = ACTIONS(4054), + [anon_sym___inline] = ACTIONS(4054), + [anon_sym___inline__] = ACTIONS(4054), + [anon_sym___forceinline] = ACTIONS(4054), + [anon_sym_thread_local] = ACTIONS(4054), + [anon_sym___thread] = ACTIONS(4054), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_constexpr] = ACTIONS(4054), + [anon_sym_volatile] = ACTIONS(4054), + [anon_sym_restrict] = ACTIONS(4054), + [anon_sym___restrict__] = ACTIONS(4054), + [anon_sym__Atomic] = ACTIONS(4054), + [anon_sym__Noreturn] = ACTIONS(4054), + [anon_sym_noreturn] = ACTIONS(4054), + [anon_sym__Nonnull] = ACTIONS(4054), + [anon_sym_mutable] = ACTIONS(4054), + [anon_sym_constinit] = ACTIONS(4054), + [anon_sym_consteval] = ACTIONS(4054), + [anon_sym_alignas] = ACTIONS(4054), + [anon_sym__Alignas] = ACTIONS(4054), + [sym_primitive_type] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_class] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_case] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym_not] = ACTIONS(4054), + [anon_sym_compl] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_sizeof] = ACTIONS(4054), + [anon_sym___alignof__] = ACTIONS(4054), + [anon_sym___alignof] = ACTIONS(4054), + [anon_sym__alignof] = ACTIONS(4054), + [anon_sym_alignof] = ACTIONS(4054), + [anon_sym__Alignof] = ACTIONS(4054), + [anon_sym_offsetof] = ACTIONS(4054), + [anon_sym__Generic] = ACTIONS(4054), + [anon_sym_typename] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym___asm__] = ACTIONS(4054), + [anon_sym___asm] = ACTIONS(4054), + [sym_number_literal] = ACTIONS(4056), + [anon_sym_L_SQUOTE] = ACTIONS(4056), + [anon_sym_u_SQUOTE] = ACTIONS(4056), + [anon_sym_U_SQUOTE] = ACTIONS(4056), + [anon_sym_u8_SQUOTE] = ACTIONS(4056), + [anon_sym_SQUOTE] = ACTIONS(4056), + [anon_sym_L_DQUOTE] = ACTIONS(4056), + [anon_sym_u_DQUOTE] = ACTIONS(4056), + [anon_sym_U_DQUOTE] = ACTIONS(4056), + [anon_sym_u8_DQUOTE] = ACTIONS(4056), + [anon_sym_DQUOTE] = ACTIONS(4056), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [anon_sym_NULL] = ACTIONS(4054), + [anon_sym_nullptr] = ACTIONS(4054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4054), + [anon_sym_decltype] = ACTIONS(4054), + [anon_sym_explicit] = ACTIONS(4054), + [anon_sym_export] = ACTIONS(4054), + [anon_sym_module] = ACTIONS(4054), + [anon_sym_import] = ACTIONS(4054), + [anon_sym_template] = ACTIONS(4054), + [anon_sym_operator] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_delete] = ACTIONS(4054), + [anon_sym_throw] = ACTIONS(4054), + [anon_sym_namespace] = ACTIONS(4054), + [anon_sym_static_assert] = ACTIONS(4054), + [anon_sym_concept] = ACTIONS(4054), + [anon_sym_co_return] = ACTIONS(4054), + [anon_sym_co_yield] = ACTIONS(4054), + [anon_sym_R_DQUOTE] = ACTIONS(4056), + [anon_sym_LR_DQUOTE] = ACTIONS(4056), + [anon_sym_uR_DQUOTE] = ACTIONS(4056), + [anon_sym_UR_DQUOTE] = ACTIONS(4056), + [anon_sym_u8R_DQUOTE] = ACTIONS(4056), + [anon_sym_co_await] = ACTIONS(4054), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_requires] = ACTIONS(4054), + [anon_sym_CARET_CARET] = ACTIONS(4056), + [anon_sym_LBRACK_COLON] = ACTIONS(4056), + [sym_this] = ACTIONS(4054), }, - [STATE(1171)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4827), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(625)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4410), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1172)] = { - [sym_expression] = STATE(3173), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4768), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(626)] = { + [ts_builtin_sym_end] = ACTIONS(4060), + [sym_identifier] = ACTIONS(4058), + [aux_sym_preproc_include_token1] = ACTIONS(4058), + [aux_sym_preproc_def_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), + [sym_preproc_directive] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_typedef] = ACTIONS(4058), + [anon_sym_virtual] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_using] = ACTIONS(4058), + [anon_sym_COLON_COLON] = ACTIONS(4060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym___based] = ACTIONS(4058), + [anon_sym___cdecl] = ACTIONS(4058), + [anon_sym___clrcall] = ACTIONS(4058), + [anon_sym___stdcall] = ACTIONS(4058), + [anon_sym___fastcall] = ACTIONS(4058), + [anon_sym___thiscall] = ACTIONS(4058), + [anon_sym___vectorcall] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_mutable] = ACTIONS(4058), + [anon_sym_constinit] = ACTIONS(4058), + [anon_sym_consteval] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_class] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_case] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_while] = ACTIONS(4058), + [anon_sym_do] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym_not] = ACTIONS(4058), + [anon_sym_compl] = ACTIONS(4058), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_sizeof] = ACTIONS(4058), + [anon_sym___alignof__] = ACTIONS(4058), + [anon_sym___alignof] = ACTIONS(4058), + [anon_sym__alignof] = ACTIONS(4058), + [anon_sym_alignof] = ACTIONS(4058), + [anon_sym__Alignof] = ACTIONS(4058), + [anon_sym_offsetof] = ACTIONS(4058), + [anon_sym__Generic] = ACTIONS(4058), + [anon_sym_typename] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym___asm__] = ACTIONS(4058), + [anon_sym___asm] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4060), + [anon_sym_L_SQUOTE] = ACTIONS(4060), + [anon_sym_u_SQUOTE] = ACTIONS(4060), + [anon_sym_U_SQUOTE] = ACTIONS(4060), + [anon_sym_u8_SQUOTE] = ACTIONS(4060), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_L_DQUOTE] = ACTIONS(4060), + [anon_sym_u_DQUOTE] = ACTIONS(4060), + [anon_sym_U_DQUOTE] = ACTIONS(4060), + [anon_sym_u8_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [anon_sym_NULL] = ACTIONS(4058), + [anon_sym_nullptr] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4058), + [anon_sym_decltype] = ACTIONS(4058), + [anon_sym_explicit] = ACTIONS(4058), + [anon_sym_export] = ACTIONS(4058), + [anon_sym_module] = ACTIONS(4058), + [anon_sym_import] = ACTIONS(4058), + [anon_sym_template] = ACTIONS(4058), + [anon_sym_operator] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4058), + [anon_sym_delete] = ACTIONS(4058), + [anon_sym_throw] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_static_assert] = ACTIONS(4058), + [anon_sym_concept] = ACTIONS(4058), + [anon_sym_co_return] = ACTIONS(4058), + [anon_sym_co_yield] = ACTIONS(4058), + [anon_sym_R_DQUOTE] = ACTIONS(4060), + [anon_sym_LR_DQUOTE] = ACTIONS(4060), + [anon_sym_uR_DQUOTE] = ACTIONS(4060), + [anon_sym_UR_DQUOTE] = ACTIONS(4060), + [anon_sym_u8R_DQUOTE] = ACTIONS(4060), + [anon_sym_co_await] = ACTIONS(4058), + [anon_sym_new] = ACTIONS(4058), + [anon_sym_requires] = ACTIONS(4058), + [anon_sym_CARET_CARET] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4060), + [sym_this] = ACTIONS(4058), }, - [STATE(1173)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4829), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(4064), + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_include_token1] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym___cdecl] = ACTIONS(4062), + [anon_sym___clrcall] = ACTIONS(4062), + [anon_sym___stdcall] = ACTIONS(4062), + [anon_sym___fastcall] = ACTIONS(4062), + [anon_sym___thiscall] = ACTIONS(4062), + [anon_sym___vectorcall] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_case] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4062), + [anon_sym___alignof__] = ACTIONS(4062), + [anon_sym___alignof] = ACTIONS(4062), + [anon_sym__alignof] = ACTIONS(4062), + [anon_sym_alignof] = ACTIONS(4062), + [anon_sym__Alignof] = ACTIONS(4062), + [anon_sym_offsetof] = ACTIONS(4062), + [anon_sym__Generic] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym___asm__] = ACTIONS(4062), + [anon_sym___asm] = ACTIONS(4062), + [sym_number_literal] = ACTIONS(4064), + [anon_sym_L_SQUOTE] = ACTIONS(4064), + [anon_sym_u_SQUOTE] = ACTIONS(4064), + [anon_sym_U_SQUOTE] = ACTIONS(4064), + [anon_sym_u8_SQUOTE] = ACTIONS(4064), + [anon_sym_SQUOTE] = ACTIONS(4064), + [anon_sym_L_DQUOTE] = ACTIONS(4064), + [anon_sym_u_DQUOTE] = ACTIONS(4064), + [anon_sym_U_DQUOTE] = ACTIONS(4064), + [anon_sym_u8_DQUOTE] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [anon_sym_NULL] = ACTIONS(4062), + [anon_sym_nullptr] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_export] = ACTIONS(4062), + [anon_sym_module] = ACTIONS(4062), + [anon_sym_import] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_delete] = ACTIONS(4062), + [anon_sym_throw] = ACTIONS(4062), + [anon_sym_namespace] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_concept] = ACTIONS(4062), + [anon_sym_co_return] = ACTIONS(4062), + [anon_sym_co_yield] = ACTIONS(4062), + [anon_sym_R_DQUOTE] = ACTIONS(4064), + [anon_sym_LR_DQUOTE] = ACTIONS(4064), + [anon_sym_uR_DQUOTE] = ACTIONS(4064), + [anon_sym_UR_DQUOTE] = ACTIONS(4064), + [anon_sym_u8R_DQUOTE] = ACTIONS(4064), + [anon_sym_co_await] = ACTIONS(4062), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_requires] = ACTIONS(4062), + [anon_sym_CARET_CARET] = ACTIONS(4064), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + [sym_this] = ACTIONS(4062), }, - [STATE(1174)] = { - [sym_expression] = STATE(3115), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(628)] = { + [ts_builtin_sym_end] = ACTIONS(4068), + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_include_token1] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym___cdecl] = ACTIONS(4066), + [anon_sym___clrcall] = ACTIONS(4066), + [anon_sym___stdcall] = ACTIONS(4066), + [anon_sym___fastcall] = ACTIONS(4066), + [anon_sym___thiscall] = ACTIONS(4066), + [anon_sym___vectorcall] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym_not] = ACTIONS(4066), + [anon_sym_compl] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_sizeof] = ACTIONS(4066), + [anon_sym___alignof__] = ACTIONS(4066), + [anon_sym___alignof] = ACTIONS(4066), + [anon_sym__alignof] = ACTIONS(4066), + [anon_sym_alignof] = ACTIONS(4066), + [anon_sym__Alignof] = ACTIONS(4066), + [anon_sym_offsetof] = ACTIONS(4066), + [anon_sym__Generic] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym___asm__] = ACTIONS(4066), + [anon_sym___asm] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4068), + [anon_sym_L_SQUOTE] = ACTIONS(4068), + [anon_sym_u_SQUOTE] = ACTIONS(4068), + [anon_sym_U_SQUOTE] = ACTIONS(4068), + [anon_sym_u8_SQUOTE] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4068), + [anon_sym_L_DQUOTE] = ACTIONS(4068), + [anon_sym_u_DQUOTE] = ACTIONS(4068), + [anon_sym_U_DQUOTE] = ACTIONS(4068), + [anon_sym_u8_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [anon_sym_NULL] = ACTIONS(4066), + [anon_sym_nullptr] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_export] = ACTIONS(4066), + [anon_sym_module] = ACTIONS(4066), + [anon_sym_import] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_try] = ACTIONS(4066), + [anon_sym_delete] = ACTIONS(4066), + [anon_sym_throw] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_concept] = ACTIONS(4066), + [anon_sym_co_return] = ACTIONS(4066), + [anon_sym_co_yield] = ACTIONS(4066), + [anon_sym_R_DQUOTE] = ACTIONS(4068), + [anon_sym_LR_DQUOTE] = ACTIONS(4068), + [anon_sym_uR_DQUOTE] = ACTIONS(4068), + [anon_sym_UR_DQUOTE] = ACTIONS(4068), + [anon_sym_u8R_DQUOTE] = ACTIONS(4068), + [anon_sym_co_await] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_requires] = ACTIONS(4066), + [anon_sym_CARET_CARET] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + [sym_this] = ACTIONS(4066), }, - [STATE(1175)] = { - [sym_expression] = STATE(3121), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4774), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(4178), + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_module] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(1176)] = { - [sym_expression] = STATE(3121), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(4190), + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_export] = ACTIONS(4188), + [anon_sym_module] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(1177)] = { - [sym_expression] = STATE(3122), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4780), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(631)] = { + [ts_builtin_sym_end] = ACTIONS(4072), + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_export] = ACTIONS(4070), + [anon_sym_module] = ACTIONS(4070), + [anon_sym_import] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1178)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4831), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(632)] = { + [ts_builtin_sym_end] = ACTIONS(4072), + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_export] = ACTIONS(4070), + [anon_sym_module] = ACTIONS(4070), + [anon_sym_import] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1179)] = { - [sym_expression] = STATE(3720), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4833), - [anon_sym_LPAREN2] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(633)] = { + [ts_builtin_sym_end] = ACTIONS(3996), + [sym_identifier] = ACTIONS(3994), + [aux_sym_preproc_include_token1] = ACTIONS(3994), + [aux_sym_preproc_def_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), + [sym_preproc_directive] = ACTIONS(3994), + [anon_sym_LPAREN2] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_TILDE] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3994), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym___extension__] = ACTIONS(3994), + [anon_sym_typedef] = ACTIONS(3994), + [anon_sym_virtual] = ACTIONS(3994), + [anon_sym_extern] = ACTIONS(3994), + [anon_sym___attribute__] = ACTIONS(3994), + [anon_sym___attribute] = ACTIONS(3994), + [anon_sym_using] = ACTIONS(3994), + [anon_sym_COLON_COLON] = ACTIONS(3996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), + [anon_sym___declspec] = ACTIONS(3994), + [anon_sym___based] = ACTIONS(3994), + [anon_sym___cdecl] = ACTIONS(3994), + [anon_sym___clrcall] = ACTIONS(3994), + [anon_sym___stdcall] = ACTIONS(3994), + [anon_sym___fastcall] = ACTIONS(3994), + [anon_sym___thiscall] = ACTIONS(3994), + [anon_sym___vectorcall] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_signed] = ACTIONS(3994), + [anon_sym_unsigned] = ACTIONS(3994), + [anon_sym_long] = ACTIONS(3994), + [anon_sym_short] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3994), + [anon_sym_register] = ACTIONS(3994), + [anon_sym_inline] = ACTIONS(3994), + [anon_sym___inline] = ACTIONS(3994), + [anon_sym___inline__] = ACTIONS(3994), + [anon_sym___forceinline] = ACTIONS(3994), + [anon_sym_thread_local] = ACTIONS(3994), + [anon_sym___thread] = ACTIONS(3994), + [anon_sym_const] = ACTIONS(3994), + [anon_sym_constexpr] = ACTIONS(3994), + [anon_sym_volatile] = ACTIONS(3994), + [anon_sym_restrict] = ACTIONS(3994), + [anon_sym___restrict__] = ACTIONS(3994), + [anon_sym__Atomic] = ACTIONS(3994), + [anon_sym__Noreturn] = ACTIONS(3994), + [anon_sym_noreturn] = ACTIONS(3994), + [anon_sym__Nonnull] = ACTIONS(3994), + [anon_sym_mutable] = ACTIONS(3994), + [anon_sym_constinit] = ACTIONS(3994), + [anon_sym_consteval] = ACTIONS(3994), + [anon_sym_alignas] = ACTIONS(3994), + [anon_sym__Alignas] = ACTIONS(3994), + [sym_primitive_type] = ACTIONS(3994), + [anon_sym_enum] = ACTIONS(3994), + [anon_sym_class] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3994), + [anon_sym_union] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_case] = ACTIONS(3994), + [anon_sym_default] = ACTIONS(3994), + [anon_sym_while] = ACTIONS(3994), + [anon_sym_do] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3994), + [anon_sym_break] = ACTIONS(3994), + [anon_sym_continue] = ACTIONS(3994), + [anon_sym_goto] = ACTIONS(3994), + [anon_sym_not] = ACTIONS(3994), + [anon_sym_compl] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_sizeof] = ACTIONS(3994), + [anon_sym___alignof__] = ACTIONS(3994), + [anon_sym___alignof] = ACTIONS(3994), + [anon_sym__alignof] = ACTIONS(3994), + [anon_sym_alignof] = ACTIONS(3994), + [anon_sym__Alignof] = ACTIONS(3994), + [anon_sym_offsetof] = ACTIONS(3994), + [anon_sym__Generic] = ACTIONS(3994), + [anon_sym_typename] = ACTIONS(3994), + [anon_sym_asm] = ACTIONS(3994), + [anon_sym___asm__] = ACTIONS(3994), + [anon_sym___asm] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3996), + [anon_sym_L_SQUOTE] = ACTIONS(3996), + [anon_sym_u_SQUOTE] = ACTIONS(3996), + [anon_sym_U_SQUOTE] = ACTIONS(3996), + [anon_sym_u8_SQUOTE] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3996), + [anon_sym_L_DQUOTE] = ACTIONS(3996), + [anon_sym_u_DQUOTE] = ACTIONS(3996), + [anon_sym_U_DQUOTE] = ACTIONS(3996), + [anon_sym_u8_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [sym_true] = ACTIONS(3994), + [sym_false] = ACTIONS(3994), + [anon_sym_NULL] = ACTIONS(3994), + [anon_sym_nullptr] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3994), + [anon_sym_decltype] = ACTIONS(3994), + [anon_sym_explicit] = ACTIONS(3994), + [anon_sym_export] = ACTIONS(3994), + [anon_sym_module] = ACTIONS(3994), + [anon_sym_import] = ACTIONS(3994), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(3994), + [anon_sym_try] = ACTIONS(3994), + [anon_sym_delete] = ACTIONS(3994), + [anon_sym_throw] = ACTIONS(3994), + [anon_sym_namespace] = ACTIONS(3994), + [anon_sym_static_assert] = ACTIONS(3994), + [anon_sym_concept] = ACTIONS(3994), + [anon_sym_co_return] = ACTIONS(3994), + [anon_sym_co_yield] = ACTIONS(3994), + [anon_sym_R_DQUOTE] = ACTIONS(3996), + [anon_sym_LR_DQUOTE] = ACTIONS(3996), + [anon_sym_uR_DQUOTE] = ACTIONS(3996), + [anon_sym_UR_DQUOTE] = ACTIONS(3996), + [anon_sym_u8R_DQUOTE] = ACTIONS(3996), + [anon_sym_co_await] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3994), + [anon_sym_CARET_CARET] = ACTIONS(3996), + [anon_sym_LBRACK_COLON] = ACTIONS(3996), + [sym_this] = ACTIONS(3994), }, - [STATE(1180)] = { - [sym_expression] = STATE(3122), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(634)] = { + [ts_builtin_sym_end] = ACTIONS(4076), + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_include_token1] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym___cdecl] = ACTIONS(4074), + [anon_sym___clrcall] = ACTIONS(4074), + [anon_sym___stdcall] = ACTIONS(4074), + [anon_sym___fastcall] = ACTIONS(4074), + [anon_sym___thiscall] = ACTIONS(4074), + [anon_sym___vectorcall] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_if] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_case] = ACTIONS(4074), + [anon_sym_default] = ACTIONS(4074), + [anon_sym_while] = ACTIONS(4074), + [anon_sym_do] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4074), + [anon_sym_break] = ACTIONS(4074), + [anon_sym_continue] = ACTIONS(4074), + [anon_sym_goto] = ACTIONS(4074), + [anon_sym_not] = ACTIONS(4074), + [anon_sym_compl] = ACTIONS(4074), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_sizeof] = ACTIONS(4074), + [anon_sym___alignof__] = ACTIONS(4074), + [anon_sym___alignof] = ACTIONS(4074), + [anon_sym__alignof] = ACTIONS(4074), + [anon_sym_alignof] = ACTIONS(4074), + [anon_sym__Alignof] = ACTIONS(4074), + [anon_sym_offsetof] = ACTIONS(4074), + [anon_sym__Generic] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [anon_sym_asm] = ACTIONS(4074), + [anon_sym___asm__] = ACTIONS(4074), + [anon_sym___asm] = ACTIONS(4074), + [sym_number_literal] = ACTIONS(4076), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym_true] = ACTIONS(4074), + [sym_false] = ACTIONS(4074), + [anon_sym_NULL] = ACTIONS(4074), + [anon_sym_nullptr] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_export] = ACTIONS(4074), + [anon_sym_module] = ACTIONS(4074), + [anon_sym_import] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_try] = ACTIONS(4074), + [anon_sym_delete] = ACTIONS(4074), + [anon_sym_throw] = ACTIONS(4074), + [anon_sym_namespace] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_concept] = ACTIONS(4074), + [anon_sym_co_return] = ACTIONS(4074), + [anon_sym_co_yield] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(4076), + [anon_sym_LR_DQUOTE] = ACTIONS(4076), + [anon_sym_uR_DQUOTE] = ACTIONS(4076), + [anon_sym_UR_DQUOTE] = ACTIONS(4076), + [anon_sym_u8R_DQUOTE] = ACTIONS(4076), + [anon_sym_co_await] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4074), + [anon_sym_requires] = ACTIONS(4074), + [anon_sym_CARET_CARET] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + [sym_this] = ACTIONS(4074), }, - [STATE(1181)] = { - [sym_expression] = STATE(4369), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4837), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(4732), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(635)] = { + [ts_builtin_sym_end] = ACTIONS(4080), + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_include_token1] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym___cdecl] = ACTIONS(4078), + [anon_sym___clrcall] = ACTIONS(4078), + [anon_sym___stdcall] = ACTIONS(4078), + [anon_sym___fastcall] = ACTIONS(4078), + [anon_sym___thiscall] = ACTIONS(4078), + [anon_sym___vectorcall] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_if] = ACTIONS(4078), + [anon_sym_switch] = ACTIONS(4078), + [anon_sym_case] = ACTIONS(4078), + [anon_sym_default] = ACTIONS(4078), + [anon_sym_while] = ACTIONS(4078), + [anon_sym_do] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4078), + [anon_sym_break] = ACTIONS(4078), + [anon_sym_continue] = ACTIONS(4078), + [anon_sym_goto] = ACTIONS(4078), + [anon_sym_not] = ACTIONS(4078), + [anon_sym_compl] = ACTIONS(4078), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_sizeof] = ACTIONS(4078), + [anon_sym___alignof__] = ACTIONS(4078), + [anon_sym___alignof] = ACTIONS(4078), + [anon_sym__alignof] = ACTIONS(4078), + [anon_sym_alignof] = ACTIONS(4078), + [anon_sym__Alignof] = ACTIONS(4078), + [anon_sym_offsetof] = ACTIONS(4078), + [anon_sym__Generic] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [anon_sym_asm] = ACTIONS(4078), + [anon_sym___asm__] = ACTIONS(4078), + [anon_sym___asm] = ACTIONS(4078), + [sym_number_literal] = ACTIONS(4080), + [anon_sym_L_SQUOTE] = ACTIONS(4080), + [anon_sym_u_SQUOTE] = ACTIONS(4080), + [anon_sym_U_SQUOTE] = ACTIONS(4080), + [anon_sym_u8_SQUOTE] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4080), + [anon_sym_L_DQUOTE] = ACTIONS(4080), + [anon_sym_u_DQUOTE] = ACTIONS(4080), + [anon_sym_U_DQUOTE] = ACTIONS(4080), + [anon_sym_u8_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [sym_true] = ACTIONS(4078), + [sym_false] = ACTIONS(4078), + [anon_sym_NULL] = ACTIONS(4078), + [anon_sym_nullptr] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_export] = ACTIONS(4078), + [anon_sym_module] = ACTIONS(4078), + [anon_sym_import] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_try] = ACTIONS(4078), + [anon_sym_delete] = ACTIONS(4078), + [anon_sym_throw] = ACTIONS(4078), + [anon_sym_namespace] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_concept] = ACTIONS(4078), + [anon_sym_co_return] = ACTIONS(4078), + [anon_sym_co_yield] = ACTIONS(4078), + [anon_sym_R_DQUOTE] = ACTIONS(4080), + [anon_sym_LR_DQUOTE] = ACTIONS(4080), + [anon_sym_uR_DQUOTE] = ACTIONS(4080), + [anon_sym_UR_DQUOTE] = ACTIONS(4080), + [anon_sym_u8R_DQUOTE] = ACTIONS(4080), + [anon_sym_co_await] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4078), + [anon_sym_requires] = ACTIONS(4078), + [anon_sym_CARET_CARET] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + [sym_this] = ACTIONS(4078), }, - [STATE(1182)] = { - [sym_expression] = STATE(3122), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(636)] = { + [ts_builtin_sym_end] = ACTIONS(4084), + [sym_identifier] = ACTIONS(4082), + [aux_sym_preproc_include_token1] = ACTIONS(4082), + [aux_sym_preproc_def_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), + [sym_preproc_directive] = ACTIONS(4082), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_typedef] = ACTIONS(4082), + [anon_sym_virtual] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_using] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym___based] = ACTIONS(4082), + [anon_sym___cdecl] = ACTIONS(4082), + [anon_sym___clrcall] = ACTIONS(4082), + [anon_sym___stdcall] = ACTIONS(4082), + [anon_sym___fastcall] = ACTIONS(4082), + [anon_sym___thiscall] = ACTIONS(4082), + [anon_sym___vectorcall] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_mutable] = ACTIONS(4082), + [anon_sym_constinit] = ACTIONS(4082), + [anon_sym_consteval] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_class] = ACTIONS(4082), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(4082), + [anon_sym_case] = ACTIONS(4082), + [anon_sym_default] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_do] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_goto] = ACTIONS(4082), + [anon_sym_not] = ACTIONS(4082), + [anon_sym_compl] = ACTIONS(4082), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_sizeof] = ACTIONS(4082), + [anon_sym___alignof__] = ACTIONS(4082), + [anon_sym___alignof] = ACTIONS(4082), + [anon_sym__alignof] = ACTIONS(4082), + [anon_sym_alignof] = ACTIONS(4082), + [anon_sym__Alignof] = ACTIONS(4082), + [anon_sym_offsetof] = ACTIONS(4082), + [anon_sym__Generic] = ACTIONS(4082), + [anon_sym_typename] = ACTIONS(4082), + [anon_sym_asm] = ACTIONS(4082), + [anon_sym___asm__] = ACTIONS(4082), + [anon_sym___asm] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4084), + [anon_sym_L_SQUOTE] = ACTIONS(4084), + [anon_sym_u_SQUOTE] = ACTIONS(4084), + [anon_sym_U_SQUOTE] = ACTIONS(4084), + [anon_sym_u8_SQUOTE] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4084), + [anon_sym_L_DQUOTE] = ACTIONS(4084), + [anon_sym_u_DQUOTE] = ACTIONS(4084), + [anon_sym_U_DQUOTE] = ACTIONS(4084), + [anon_sym_u8_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [sym_true] = ACTIONS(4082), + [sym_false] = ACTIONS(4082), + [anon_sym_NULL] = ACTIONS(4082), + [anon_sym_nullptr] = ACTIONS(4082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4082), + [anon_sym_decltype] = ACTIONS(4082), + [anon_sym_explicit] = ACTIONS(4082), + [anon_sym_export] = ACTIONS(4082), + [anon_sym_module] = ACTIONS(4082), + [anon_sym_import] = ACTIONS(4082), + [anon_sym_template] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_delete] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_static_assert] = ACTIONS(4082), + [anon_sym_concept] = ACTIONS(4082), + [anon_sym_co_return] = ACTIONS(4082), + [anon_sym_co_yield] = ACTIONS(4082), + [anon_sym_R_DQUOTE] = ACTIONS(4084), + [anon_sym_LR_DQUOTE] = ACTIONS(4084), + [anon_sym_uR_DQUOTE] = ACTIONS(4084), + [anon_sym_UR_DQUOTE] = ACTIONS(4084), + [anon_sym_u8R_DQUOTE] = ACTIONS(4084), + [anon_sym_co_await] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4082), + [anon_sym_requires] = ACTIONS(4082), + [anon_sym_CARET_CARET] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4084), + [sym_this] = ACTIONS(4082), }, - [STATE(1183)] = { - [sym_expression] = STATE(3122), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(637)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1184)] = { - [sym_expression] = STATE(3123), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4792), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(638)] = { + [ts_builtin_sym_end] = ACTIONS(3968), + [sym_identifier] = ACTIONS(3966), + [aux_sym_preproc_include_token1] = ACTIONS(3966), + [aux_sym_preproc_def_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), + [sym_preproc_directive] = ACTIONS(3966), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3968), + [anon_sym_TILDE] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_AMP_AMP] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3966), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_typedef] = ACTIONS(3966), + [anon_sym_virtual] = ACTIONS(3966), + [anon_sym_extern] = ACTIONS(3966), + [anon_sym___attribute__] = ACTIONS(3966), + [anon_sym___attribute] = ACTIONS(3966), + [anon_sym_using] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), + [anon_sym___declspec] = ACTIONS(3966), + [anon_sym___based] = ACTIONS(3966), + [anon_sym___cdecl] = ACTIONS(3966), + [anon_sym___clrcall] = ACTIONS(3966), + [anon_sym___stdcall] = ACTIONS(3966), + [anon_sym___fastcall] = ACTIONS(3966), + [anon_sym___thiscall] = ACTIONS(3966), + [anon_sym___vectorcall] = ACTIONS(3966), + [anon_sym_LBRACE] = ACTIONS(3968), + [anon_sym_signed] = ACTIONS(3966), + [anon_sym_unsigned] = ACTIONS(3966), + [anon_sym_long] = ACTIONS(3966), + [anon_sym_short] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_static] = ACTIONS(3966), + [anon_sym_register] = ACTIONS(3966), + [anon_sym_inline] = ACTIONS(3966), + [anon_sym___inline] = ACTIONS(3966), + [anon_sym___inline__] = ACTIONS(3966), + [anon_sym___forceinline] = ACTIONS(3966), + [anon_sym_thread_local] = ACTIONS(3966), + [anon_sym___thread] = ACTIONS(3966), + [anon_sym_const] = ACTIONS(3966), + [anon_sym_constexpr] = ACTIONS(3966), + [anon_sym_volatile] = ACTIONS(3966), + [anon_sym_restrict] = ACTIONS(3966), + [anon_sym___restrict__] = ACTIONS(3966), + [anon_sym__Atomic] = ACTIONS(3966), + [anon_sym__Noreturn] = ACTIONS(3966), + [anon_sym_noreturn] = ACTIONS(3966), + [anon_sym__Nonnull] = ACTIONS(3966), + [anon_sym_mutable] = ACTIONS(3966), + [anon_sym_constinit] = ACTIONS(3966), + [anon_sym_consteval] = ACTIONS(3966), + [anon_sym_alignas] = ACTIONS(3966), + [anon_sym__Alignas] = ACTIONS(3966), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_enum] = ACTIONS(3966), + [anon_sym_class] = ACTIONS(3966), + [anon_sym_struct] = ACTIONS(3966), + [anon_sym_union] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3966), + [anon_sym_switch] = ACTIONS(3966), + [anon_sym_case] = ACTIONS(3966), + [anon_sym_default] = ACTIONS(3966), + [anon_sym_while] = ACTIONS(3966), + [anon_sym_do] = ACTIONS(3966), + [anon_sym_for] = ACTIONS(3966), + [anon_sym_return] = ACTIONS(3966), + [anon_sym_break] = ACTIONS(3966), + [anon_sym_continue] = ACTIONS(3966), + [anon_sym_goto] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3966), + [anon_sym_compl] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3968), + [anon_sym_PLUS_PLUS] = ACTIONS(3968), + [anon_sym_sizeof] = ACTIONS(3966), + [anon_sym___alignof__] = ACTIONS(3966), + [anon_sym___alignof] = ACTIONS(3966), + [anon_sym__alignof] = ACTIONS(3966), + [anon_sym_alignof] = ACTIONS(3966), + [anon_sym__Alignof] = ACTIONS(3966), + [anon_sym_offsetof] = ACTIONS(3966), + [anon_sym__Generic] = ACTIONS(3966), + [anon_sym_typename] = ACTIONS(3966), + [anon_sym_asm] = ACTIONS(3966), + [anon_sym___asm__] = ACTIONS(3966), + [anon_sym___asm] = ACTIONS(3966), + [sym_number_literal] = ACTIONS(3968), + [anon_sym_L_SQUOTE] = ACTIONS(3968), + [anon_sym_u_SQUOTE] = ACTIONS(3968), + [anon_sym_U_SQUOTE] = ACTIONS(3968), + [anon_sym_u8_SQUOTE] = ACTIONS(3968), + [anon_sym_SQUOTE] = ACTIONS(3968), + [anon_sym_L_DQUOTE] = ACTIONS(3968), + [anon_sym_u_DQUOTE] = ACTIONS(3968), + [anon_sym_U_DQUOTE] = ACTIONS(3968), + [anon_sym_u8_DQUOTE] = ACTIONS(3968), + [anon_sym_DQUOTE] = ACTIONS(3968), + [sym_true] = ACTIONS(3966), + [sym_false] = ACTIONS(3966), + [anon_sym_NULL] = ACTIONS(3966), + [anon_sym_nullptr] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3966), + [anon_sym_decltype] = ACTIONS(3966), + [anon_sym_explicit] = ACTIONS(3966), + [anon_sym_export] = ACTIONS(3966), + [anon_sym_module] = ACTIONS(3966), + [anon_sym_import] = ACTIONS(3966), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(3966), + [anon_sym_try] = ACTIONS(3966), + [anon_sym_delete] = ACTIONS(3966), + [anon_sym_throw] = ACTIONS(3966), + [anon_sym_namespace] = ACTIONS(3966), + [anon_sym_static_assert] = ACTIONS(3966), + [anon_sym_concept] = ACTIONS(3966), + [anon_sym_co_return] = ACTIONS(3966), + [anon_sym_co_yield] = ACTIONS(3966), + [anon_sym_R_DQUOTE] = ACTIONS(3968), + [anon_sym_LR_DQUOTE] = ACTIONS(3968), + [anon_sym_uR_DQUOTE] = ACTIONS(3968), + [anon_sym_UR_DQUOTE] = ACTIONS(3968), + [anon_sym_u8R_DQUOTE] = ACTIONS(3968), + [anon_sym_co_await] = ACTIONS(3966), + [anon_sym_new] = ACTIONS(3966), + [anon_sym_requires] = ACTIONS(3966), + [anon_sym_CARET_CARET] = ACTIONS(3968), + [anon_sym_LBRACK_COLON] = ACTIONS(3968), + [sym_this] = ACTIONS(3966), }, - [STATE(1185)] = { - [sym_expression] = STATE(3123), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(639)] = { + [ts_builtin_sym_end] = ACTIONS(4414), + [sym_identifier] = ACTIONS(4416), + [aux_sym_preproc_include_token1] = ACTIONS(4416), + [aux_sym_preproc_def_token1] = ACTIONS(4416), + [aux_sym_preproc_if_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4416), + [sym_preproc_directive] = ACTIONS(4416), + [anon_sym_LPAREN2] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym___extension__] = ACTIONS(4416), + [anon_sym_typedef] = ACTIONS(4416), + [anon_sym_virtual] = ACTIONS(4416), + [anon_sym_extern] = ACTIONS(4416), + [anon_sym___attribute__] = ACTIONS(4416), + [anon_sym___attribute] = ACTIONS(4416), + [anon_sym_using] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4414), + [anon_sym___declspec] = ACTIONS(4416), + [anon_sym___based] = ACTIONS(4416), + [anon_sym___cdecl] = ACTIONS(4416), + [anon_sym___clrcall] = ACTIONS(4416), + [anon_sym___stdcall] = ACTIONS(4416), + [anon_sym___fastcall] = ACTIONS(4416), + [anon_sym___thiscall] = ACTIONS(4416), + [anon_sym___vectorcall] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_signed] = ACTIONS(4416), + [anon_sym_unsigned] = ACTIONS(4416), + [anon_sym_long] = ACTIONS(4416), + [anon_sym_short] = ACTIONS(4416), + [anon_sym_LBRACK] = ACTIONS(4416), + [anon_sym_static] = ACTIONS(4416), + [anon_sym_register] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym___inline] = ACTIONS(4416), + [anon_sym___inline__] = ACTIONS(4416), + [anon_sym___forceinline] = ACTIONS(4416), + [anon_sym_thread_local] = ACTIONS(4416), + [anon_sym___thread] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_constexpr] = ACTIONS(4416), + [anon_sym_volatile] = ACTIONS(4416), + [anon_sym_restrict] = ACTIONS(4416), + [anon_sym___restrict__] = ACTIONS(4416), + [anon_sym__Atomic] = ACTIONS(4416), + [anon_sym__Noreturn] = ACTIONS(4416), + [anon_sym_noreturn] = ACTIONS(4416), + [anon_sym__Nonnull] = ACTIONS(4416), + [anon_sym_mutable] = ACTIONS(4416), + [anon_sym_constinit] = ACTIONS(4416), + [anon_sym_consteval] = ACTIONS(4416), + [anon_sym_alignas] = ACTIONS(4416), + [anon_sym__Alignas] = ACTIONS(4416), + [sym_primitive_type] = ACTIONS(4416), + [anon_sym_enum] = ACTIONS(4416), + [anon_sym_class] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_switch] = ACTIONS(4416), + [anon_sym_case] = ACTIONS(4416), + [anon_sym_default] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_do] = ACTIONS(4416), + [anon_sym_for] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_goto] = ACTIONS(4416), + [anon_sym_not] = ACTIONS(4416), + [anon_sym_compl] = ACTIONS(4416), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_sizeof] = ACTIONS(4416), + [anon_sym___alignof__] = ACTIONS(4416), + [anon_sym___alignof] = ACTIONS(4416), + [anon_sym__alignof] = ACTIONS(4416), + [anon_sym_alignof] = ACTIONS(4416), + [anon_sym__Alignof] = ACTIONS(4416), + [anon_sym_offsetof] = ACTIONS(4416), + [anon_sym__Generic] = ACTIONS(4416), + [anon_sym_typename] = ACTIONS(4416), + [anon_sym_asm] = ACTIONS(4416), + [anon_sym___asm__] = ACTIONS(4416), + [anon_sym___asm] = ACTIONS(4416), + [sym_number_literal] = ACTIONS(4414), + [anon_sym_L_SQUOTE] = ACTIONS(4414), + [anon_sym_u_SQUOTE] = ACTIONS(4414), + [anon_sym_U_SQUOTE] = ACTIONS(4414), + [anon_sym_u8_SQUOTE] = ACTIONS(4414), + [anon_sym_SQUOTE] = ACTIONS(4414), + [anon_sym_L_DQUOTE] = ACTIONS(4414), + [anon_sym_u_DQUOTE] = ACTIONS(4414), + [anon_sym_U_DQUOTE] = ACTIONS(4414), + [anon_sym_u8_DQUOTE] = ACTIONS(4414), + [anon_sym_DQUOTE] = ACTIONS(4414), + [sym_true] = ACTIONS(4416), + [sym_false] = ACTIONS(4416), + [anon_sym_NULL] = ACTIONS(4416), + [anon_sym_nullptr] = ACTIONS(4416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4416), + [anon_sym_decltype] = ACTIONS(4416), + [anon_sym_explicit] = ACTIONS(4416), + [anon_sym_export] = ACTIONS(4416), + [anon_sym_module] = ACTIONS(4416), + [anon_sym_import] = ACTIONS(4416), + [anon_sym_template] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_delete] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_namespace] = ACTIONS(4416), + [anon_sym_static_assert] = ACTIONS(4416), + [anon_sym_concept] = ACTIONS(4416), + [anon_sym_co_return] = ACTIONS(4416), + [anon_sym_co_yield] = ACTIONS(4416), + [anon_sym_R_DQUOTE] = ACTIONS(4414), + [anon_sym_LR_DQUOTE] = ACTIONS(4414), + [anon_sym_uR_DQUOTE] = ACTIONS(4414), + [anon_sym_UR_DQUOTE] = ACTIONS(4414), + [anon_sym_u8R_DQUOTE] = ACTIONS(4414), + [anon_sym_co_await] = ACTIONS(4416), + [anon_sym_new] = ACTIONS(4416), + [anon_sym_requires] = ACTIONS(4416), + [anon_sym_CARET_CARET] = ACTIONS(4414), + [anon_sym_LBRACK_COLON] = ACTIONS(4414), + [sym_this] = ACTIONS(4416), }, - [STATE(1186)] = { - [sym_expression] = STATE(2347), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(640)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, - [STATE(1187)] = { - [sym_expression] = STATE(4708), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4843), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(641)] = { + [sym_preproc_def] = STATE(551), + [sym_preproc_function_def] = STATE(551), + [sym_preproc_call] = STATE(551), + [sym_preproc_if_in_field_declaration_list] = STATE(551), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), + [sym_type_definition] = STATE(551), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(8025), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8578), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(551), + [sym_field_declaration] = STATE(551), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2417), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(551), + [sym_operator_cast] = STATE(9064), + [sym_inline_method_definition] = STATE(551), + [sym__constructor_specifiers] = STATE(2417), + [sym_operator_cast_definition] = STATE(551), + [sym_operator_cast_declaration] = STATE(551), + [sym_constructor_or_destructor_definition] = STATE(551), + [sym_constructor_or_destructor_declaration] = STATE(551), + [sym_friend_declaration] = STATE(551), + [sym_access_specifier] = STATE(10717), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(551), + [sym_alias_declaration] = STATE(551), + [sym_static_assert_declaration] = STATE(551), + [sym_consteval_block_declaration] = STATE(551), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9064), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9390), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2417), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4324), + [aux_sym_preproc_if_token1] = ACTIONS(4326), + [aux_sym_preproc_if_token2] = ACTIONS(4418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4330), + [sym_preproc_directive] = ACTIONS(4332), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4420), + [anon_sym___extension__] = ACTIONS(4336), + [anon_sym_typedef] = ACTIONS(4338), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4342), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4344), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4348), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4350), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1188)] = { - [sym_expression] = STATE(4709), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4845), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(642)] = { + [sym_preproc_def] = STATE(637), + [sym_preproc_function_def] = STATE(637), + [sym_preproc_call] = STATE(637), + [sym_preproc_if_in_field_declaration_list] = STATE(637), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(637), + [sym_type_definition] = STATE(637), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(637), + [sym_field_declaration] = STATE(637), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(637), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(637), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(637), + [sym_operator_cast_declaration] = STATE(637), + [sym_constructor_or_destructor_definition] = STATE(637), + [sym_constructor_or_destructor_declaration] = STATE(637), + [sym_friend_declaration] = STATE(637), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(637), + [sym_alias_declaration] = STATE(637), + [sym_static_assert_declaration] = STATE(637), + [sym_consteval_block_declaration] = STATE(637), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4424), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1189)] = { - [sym_expression] = STATE(3720), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4833), - [anon_sym_LPAREN2] = ACTIONS(4847), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(643)] = { + [ts_builtin_sym_end] = ACTIONS(4426), + [sym_identifier] = ACTIONS(4428), + [aux_sym_preproc_include_token1] = ACTIONS(4428), + [aux_sym_preproc_def_token1] = ACTIONS(4428), + [aux_sym_preproc_if_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4428), + [sym_preproc_directive] = ACTIONS(4428), + [anon_sym_LPAREN2] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4428), + [anon_sym_PLUS] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AMP_AMP] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4428), + [anon_sym_SEMI] = ACTIONS(4426), + [anon_sym___extension__] = ACTIONS(4428), + [anon_sym_typedef] = ACTIONS(4428), + [anon_sym_virtual] = ACTIONS(4428), + [anon_sym_extern] = ACTIONS(4428), + [anon_sym___attribute__] = ACTIONS(4428), + [anon_sym___attribute] = ACTIONS(4428), + [anon_sym_using] = ACTIONS(4428), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), + [anon_sym___declspec] = ACTIONS(4428), + [anon_sym___based] = ACTIONS(4428), + [anon_sym___cdecl] = ACTIONS(4428), + [anon_sym___clrcall] = ACTIONS(4428), + [anon_sym___stdcall] = ACTIONS(4428), + [anon_sym___fastcall] = ACTIONS(4428), + [anon_sym___thiscall] = ACTIONS(4428), + [anon_sym___vectorcall] = ACTIONS(4428), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_signed] = ACTIONS(4428), + [anon_sym_unsigned] = ACTIONS(4428), + [anon_sym_long] = ACTIONS(4428), + [anon_sym_short] = ACTIONS(4428), + [anon_sym_LBRACK] = ACTIONS(4428), + [anon_sym_static] = ACTIONS(4428), + [anon_sym_register] = ACTIONS(4428), + [anon_sym_inline] = ACTIONS(4428), + [anon_sym___inline] = ACTIONS(4428), + [anon_sym___inline__] = ACTIONS(4428), + [anon_sym___forceinline] = ACTIONS(4428), + [anon_sym_thread_local] = ACTIONS(4428), + [anon_sym___thread] = ACTIONS(4428), + [anon_sym_const] = ACTIONS(4428), + [anon_sym_constexpr] = ACTIONS(4428), + [anon_sym_volatile] = ACTIONS(4428), + [anon_sym_restrict] = ACTIONS(4428), + [anon_sym___restrict__] = ACTIONS(4428), + [anon_sym__Atomic] = ACTIONS(4428), + [anon_sym__Noreturn] = ACTIONS(4428), + [anon_sym_noreturn] = ACTIONS(4428), + [anon_sym__Nonnull] = ACTIONS(4428), + [anon_sym_mutable] = ACTIONS(4428), + [anon_sym_constinit] = ACTIONS(4428), + [anon_sym_consteval] = ACTIONS(4428), + [anon_sym_alignas] = ACTIONS(4428), + [anon_sym__Alignas] = ACTIONS(4428), + [sym_primitive_type] = ACTIONS(4428), + [anon_sym_enum] = ACTIONS(4428), + [anon_sym_class] = ACTIONS(4428), + [anon_sym_struct] = ACTIONS(4428), + [anon_sym_union] = ACTIONS(4428), + [anon_sym_if] = ACTIONS(4428), + [anon_sym_switch] = ACTIONS(4428), + [anon_sym_case] = ACTIONS(4428), + [anon_sym_default] = ACTIONS(4428), + [anon_sym_while] = ACTIONS(4428), + [anon_sym_do] = ACTIONS(4428), + [anon_sym_for] = ACTIONS(4428), + [anon_sym_return] = ACTIONS(4428), + [anon_sym_break] = ACTIONS(4428), + [anon_sym_continue] = ACTIONS(4428), + [anon_sym_goto] = ACTIONS(4428), + [anon_sym_not] = ACTIONS(4428), + [anon_sym_compl] = ACTIONS(4428), + [anon_sym_DASH_DASH] = ACTIONS(4426), + [anon_sym_PLUS_PLUS] = ACTIONS(4426), + [anon_sym_sizeof] = ACTIONS(4428), + [anon_sym___alignof__] = ACTIONS(4428), + [anon_sym___alignof] = ACTIONS(4428), + [anon_sym__alignof] = ACTIONS(4428), + [anon_sym_alignof] = ACTIONS(4428), + [anon_sym__Alignof] = ACTIONS(4428), + [anon_sym_offsetof] = ACTIONS(4428), + [anon_sym__Generic] = ACTIONS(4428), + [anon_sym_typename] = ACTIONS(4428), + [anon_sym_asm] = ACTIONS(4428), + [anon_sym___asm__] = ACTIONS(4428), + [anon_sym___asm] = ACTIONS(4428), + [sym_number_literal] = ACTIONS(4426), + [anon_sym_L_SQUOTE] = ACTIONS(4426), + [anon_sym_u_SQUOTE] = ACTIONS(4426), + [anon_sym_U_SQUOTE] = ACTIONS(4426), + [anon_sym_u8_SQUOTE] = ACTIONS(4426), + [anon_sym_SQUOTE] = ACTIONS(4426), + [anon_sym_L_DQUOTE] = ACTIONS(4426), + [anon_sym_u_DQUOTE] = ACTIONS(4426), + [anon_sym_U_DQUOTE] = ACTIONS(4426), + [anon_sym_u8_DQUOTE] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(4426), + [sym_true] = ACTIONS(4428), + [sym_false] = ACTIONS(4428), + [anon_sym_NULL] = ACTIONS(4428), + [anon_sym_nullptr] = ACTIONS(4428), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4428), + [anon_sym_decltype] = ACTIONS(4428), + [anon_sym_explicit] = ACTIONS(4428), + [anon_sym_export] = ACTIONS(4428), + [anon_sym_module] = ACTIONS(4428), + [anon_sym_import] = ACTIONS(4428), + [anon_sym_template] = ACTIONS(4428), + [anon_sym_operator] = ACTIONS(4428), + [anon_sym_try] = ACTIONS(4428), + [anon_sym_delete] = ACTIONS(4428), + [anon_sym_throw] = ACTIONS(4428), + [anon_sym_namespace] = ACTIONS(4428), + [anon_sym_static_assert] = ACTIONS(4428), + [anon_sym_concept] = ACTIONS(4428), + [anon_sym_co_return] = ACTIONS(4428), + [anon_sym_co_yield] = ACTIONS(4428), + [anon_sym_R_DQUOTE] = ACTIONS(4426), + [anon_sym_LR_DQUOTE] = ACTIONS(4426), + [anon_sym_uR_DQUOTE] = ACTIONS(4426), + [anon_sym_UR_DQUOTE] = ACTIONS(4426), + [anon_sym_u8R_DQUOTE] = ACTIONS(4426), + [anon_sym_co_await] = ACTIONS(4428), + [anon_sym_new] = ACTIONS(4428), + [anon_sym_requires] = ACTIONS(4428), + [anon_sym_CARET_CARET] = ACTIONS(4426), + [anon_sym_LBRACK_COLON] = ACTIONS(4426), + [sym_this] = ACTIONS(4428), }, - [STATE(1190)] = { - [sym_expression] = STATE(3166), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4798), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(644)] = { + [ts_builtin_sym_end] = ACTIONS(3976), + [sym_identifier] = ACTIONS(3974), + [aux_sym_preproc_include_token1] = ACTIONS(3974), + [aux_sym_preproc_def_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), + [sym_preproc_directive] = ACTIONS(3974), + [anon_sym_LPAREN2] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_TILDE] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym___extension__] = ACTIONS(3974), + [anon_sym_typedef] = ACTIONS(3974), + [anon_sym_virtual] = ACTIONS(3974), + [anon_sym_extern] = ACTIONS(3974), + [anon_sym___attribute__] = ACTIONS(3974), + [anon_sym___attribute] = ACTIONS(3974), + [anon_sym_using] = ACTIONS(3974), + [anon_sym_COLON_COLON] = ACTIONS(3976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), + [anon_sym___declspec] = ACTIONS(3974), + [anon_sym___based] = ACTIONS(3974), + [anon_sym___cdecl] = ACTIONS(3974), + [anon_sym___clrcall] = ACTIONS(3974), + [anon_sym___stdcall] = ACTIONS(3974), + [anon_sym___fastcall] = ACTIONS(3974), + [anon_sym___thiscall] = ACTIONS(3974), + [anon_sym___vectorcall] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_signed] = ACTIONS(3974), + [anon_sym_unsigned] = ACTIONS(3974), + [anon_sym_long] = ACTIONS(3974), + [anon_sym_short] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_static] = ACTIONS(3974), + [anon_sym_register] = ACTIONS(3974), + [anon_sym_inline] = ACTIONS(3974), + [anon_sym___inline] = ACTIONS(3974), + [anon_sym___inline__] = ACTIONS(3974), + [anon_sym___forceinline] = ACTIONS(3974), + [anon_sym_thread_local] = ACTIONS(3974), + [anon_sym___thread] = ACTIONS(3974), + [anon_sym_const] = ACTIONS(3974), + [anon_sym_constexpr] = ACTIONS(3974), + [anon_sym_volatile] = ACTIONS(3974), + [anon_sym_restrict] = ACTIONS(3974), + [anon_sym___restrict__] = ACTIONS(3974), + [anon_sym__Atomic] = ACTIONS(3974), + [anon_sym__Noreturn] = ACTIONS(3974), + [anon_sym_noreturn] = ACTIONS(3974), + [anon_sym__Nonnull] = ACTIONS(3974), + [anon_sym_mutable] = ACTIONS(3974), + [anon_sym_constinit] = ACTIONS(3974), + [anon_sym_consteval] = ACTIONS(3974), + [anon_sym_alignas] = ACTIONS(3974), + [anon_sym__Alignas] = ACTIONS(3974), + [sym_primitive_type] = ACTIONS(3974), + [anon_sym_enum] = ACTIONS(3974), + [anon_sym_class] = ACTIONS(3974), + [anon_sym_struct] = ACTIONS(3974), + [anon_sym_union] = ACTIONS(3974), + [anon_sym_if] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_case] = ACTIONS(3974), + [anon_sym_default] = ACTIONS(3974), + [anon_sym_while] = ACTIONS(3974), + [anon_sym_do] = ACTIONS(3974), + [anon_sym_for] = ACTIONS(3974), + [anon_sym_return] = ACTIONS(3974), + [anon_sym_break] = ACTIONS(3974), + [anon_sym_continue] = ACTIONS(3974), + [anon_sym_goto] = ACTIONS(3974), + [anon_sym_not] = ACTIONS(3974), + [anon_sym_compl] = ACTIONS(3974), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_sizeof] = ACTIONS(3974), + [anon_sym___alignof__] = ACTIONS(3974), + [anon_sym___alignof] = ACTIONS(3974), + [anon_sym__alignof] = ACTIONS(3974), + [anon_sym_alignof] = ACTIONS(3974), + [anon_sym__Alignof] = ACTIONS(3974), + [anon_sym_offsetof] = ACTIONS(3974), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_typename] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3974), + [anon_sym___asm__] = ACTIONS(3974), + [anon_sym___asm] = ACTIONS(3974), + [sym_number_literal] = ACTIONS(3976), + [anon_sym_L_SQUOTE] = ACTIONS(3976), + [anon_sym_u_SQUOTE] = ACTIONS(3976), + [anon_sym_U_SQUOTE] = ACTIONS(3976), + [anon_sym_u8_SQUOTE] = ACTIONS(3976), + [anon_sym_SQUOTE] = ACTIONS(3976), + [anon_sym_L_DQUOTE] = ACTIONS(3976), + [anon_sym_u_DQUOTE] = ACTIONS(3976), + [anon_sym_U_DQUOTE] = ACTIONS(3976), + [anon_sym_u8_DQUOTE] = ACTIONS(3976), + [anon_sym_DQUOTE] = ACTIONS(3976), + [sym_true] = ACTIONS(3974), + [sym_false] = ACTIONS(3974), + [anon_sym_NULL] = ACTIONS(3974), + [anon_sym_nullptr] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3974), + [anon_sym_decltype] = ACTIONS(3974), + [anon_sym_explicit] = ACTIONS(3974), + [anon_sym_export] = ACTIONS(3974), + [anon_sym_module] = ACTIONS(3974), + [anon_sym_import] = ACTIONS(3974), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(3974), + [anon_sym_try] = ACTIONS(3974), + [anon_sym_delete] = ACTIONS(3974), + [anon_sym_throw] = ACTIONS(3974), + [anon_sym_namespace] = ACTIONS(3974), + [anon_sym_static_assert] = ACTIONS(3974), + [anon_sym_concept] = ACTIONS(3974), + [anon_sym_co_return] = ACTIONS(3974), + [anon_sym_co_yield] = ACTIONS(3974), + [anon_sym_R_DQUOTE] = ACTIONS(3976), + [anon_sym_LR_DQUOTE] = ACTIONS(3976), + [anon_sym_uR_DQUOTE] = ACTIONS(3976), + [anon_sym_UR_DQUOTE] = ACTIONS(3976), + [anon_sym_u8R_DQUOTE] = ACTIONS(3976), + [anon_sym_co_await] = ACTIONS(3974), + [anon_sym_new] = ACTIONS(3974), + [anon_sym_requires] = ACTIONS(3974), + [anon_sym_CARET_CARET] = ACTIONS(3976), + [anon_sym_LBRACK_COLON] = ACTIONS(3976), + [sym_this] = ACTIONS(3974), }, - [STATE(1191)] = { - [sym_expression] = STATE(3111), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4801), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(645)] = { + [ts_builtin_sym_end] = ACTIONS(4430), + [sym_identifier] = ACTIONS(4433), + [aux_sym_preproc_include_token1] = ACTIONS(4433), + [aux_sym_preproc_def_token1] = ACTIONS(4433), + [aux_sym_preproc_if_token1] = ACTIONS(4433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4433), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4433), + [sym_preproc_directive] = ACTIONS(4433), + [anon_sym_LPAREN2] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_AMP_AMP] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym___extension__] = ACTIONS(4433), + [anon_sym_typedef] = ACTIONS(4433), + [anon_sym_virtual] = ACTIONS(4433), + [anon_sym_extern] = ACTIONS(4433), + [anon_sym___attribute__] = ACTIONS(4433), + [anon_sym___attribute] = ACTIONS(4433), + [anon_sym_using] = ACTIONS(4433), + [anon_sym_COLON_COLON] = ACTIONS(4430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4430), + [anon_sym___declspec] = ACTIONS(4433), + [anon_sym___based] = ACTIONS(4433), + [anon_sym___cdecl] = ACTIONS(4433), + [anon_sym___clrcall] = ACTIONS(4433), + [anon_sym___stdcall] = ACTIONS(4433), + [anon_sym___fastcall] = ACTIONS(4433), + [anon_sym___thiscall] = ACTIONS(4433), + [anon_sym___vectorcall] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(4430), + [anon_sym_signed] = ACTIONS(4433), + [anon_sym_unsigned] = ACTIONS(4433), + [anon_sym_long] = ACTIONS(4433), + [anon_sym_short] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4433), + [anon_sym_static] = ACTIONS(4433), + [anon_sym_register] = ACTIONS(4433), + [anon_sym_inline] = ACTIONS(4433), + [anon_sym___inline] = ACTIONS(4433), + [anon_sym___inline__] = ACTIONS(4433), + [anon_sym___forceinline] = ACTIONS(4433), + [anon_sym_thread_local] = ACTIONS(4433), + [anon_sym___thread] = ACTIONS(4433), + [anon_sym_const] = ACTIONS(4433), + [anon_sym_constexpr] = ACTIONS(4433), + [anon_sym_volatile] = ACTIONS(4433), + [anon_sym_restrict] = ACTIONS(4433), + [anon_sym___restrict__] = ACTIONS(4433), + [anon_sym__Atomic] = ACTIONS(4433), + [anon_sym__Noreturn] = ACTIONS(4433), + [anon_sym_noreturn] = ACTIONS(4433), + [anon_sym__Nonnull] = ACTIONS(4433), + [anon_sym_mutable] = ACTIONS(4433), + [anon_sym_constinit] = ACTIONS(4433), + [anon_sym_consteval] = ACTIONS(4433), + [anon_sym_alignas] = ACTIONS(4433), + [anon_sym__Alignas] = ACTIONS(4433), + [sym_primitive_type] = ACTIONS(4433), + [anon_sym_enum] = ACTIONS(4433), + [anon_sym_class] = ACTIONS(4433), + [anon_sym_struct] = ACTIONS(4433), + [anon_sym_union] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_switch] = ACTIONS(4433), + [anon_sym_case] = ACTIONS(4433), + [anon_sym_default] = ACTIONS(4433), + [anon_sym_while] = ACTIONS(4433), + [anon_sym_do] = ACTIONS(4433), + [anon_sym_for] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_goto] = ACTIONS(4433), + [anon_sym_not] = ACTIONS(4433), + [anon_sym_compl] = ACTIONS(4433), + [anon_sym_DASH_DASH] = ACTIONS(4430), + [anon_sym_PLUS_PLUS] = ACTIONS(4430), + [anon_sym_sizeof] = ACTIONS(4433), + [anon_sym___alignof__] = ACTIONS(4433), + [anon_sym___alignof] = ACTIONS(4433), + [anon_sym__alignof] = ACTIONS(4433), + [anon_sym_alignof] = ACTIONS(4433), + [anon_sym__Alignof] = ACTIONS(4433), + [anon_sym_offsetof] = ACTIONS(4433), + [anon_sym__Generic] = ACTIONS(4433), + [anon_sym_typename] = ACTIONS(4433), + [anon_sym_asm] = ACTIONS(4433), + [anon_sym___asm__] = ACTIONS(4433), + [anon_sym___asm] = ACTIONS(4433), + [sym_number_literal] = ACTIONS(4430), + [anon_sym_L_SQUOTE] = ACTIONS(4430), + [anon_sym_u_SQUOTE] = ACTIONS(4430), + [anon_sym_U_SQUOTE] = ACTIONS(4430), + [anon_sym_u8_SQUOTE] = ACTIONS(4430), + [anon_sym_SQUOTE] = ACTIONS(4430), + [anon_sym_L_DQUOTE] = ACTIONS(4430), + [anon_sym_u_DQUOTE] = ACTIONS(4430), + [anon_sym_U_DQUOTE] = ACTIONS(4430), + [anon_sym_u8_DQUOTE] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4430), + [sym_true] = ACTIONS(4433), + [sym_false] = ACTIONS(4433), + [anon_sym_NULL] = ACTIONS(4433), + [anon_sym_nullptr] = ACTIONS(4433), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4433), + [anon_sym_decltype] = ACTIONS(4433), + [anon_sym_explicit] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_import] = ACTIONS(4433), + [anon_sym_template] = ACTIONS(4433), + [anon_sym_operator] = ACTIONS(4433), + [anon_sym_try] = ACTIONS(4433), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_throw] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_static_assert] = ACTIONS(4433), + [anon_sym_concept] = ACTIONS(4433), + [anon_sym_co_return] = ACTIONS(4433), + [anon_sym_co_yield] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4430), + [anon_sym_LR_DQUOTE] = ACTIONS(4430), + [anon_sym_uR_DQUOTE] = ACTIONS(4430), + [anon_sym_UR_DQUOTE] = ACTIONS(4430), + [anon_sym_u8R_DQUOTE] = ACTIONS(4430), + [anon_sym_co_await] = ACTIONS(4433), + [anon_sym_new] = ACTIONS(4433), + [anon_sym_requires] = ACTIONS(4433), + [anon_sym_CARET_CARET] = ACTIONS(4430), + [anon_sym_LBRACK_COLON] = ACTIONS(4430), + [sym_this] = ACTIONS(4433), }, - [STATE(1192)] = { - [sym_expression] = STATE(3170), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4804), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(646)] = { + [ts_builtin_sym_end] = ACTIONS(4000), + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_export] = ACTIONS(3998), + [anon_sym_module] = ACTIONS(3998), + [anon_sym_import] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1193)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4849), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(647)] = { + [ts_builtin_sym_end] = ACTIONS(4092), + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_include_token1] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym___cdecl] = ACTIONS(4090), + [anon_sym___clrcall] = ACTIONS(4090), + [anon_sym___stdcall] = ACTIONS(4090), + [anon_sym___fastcall] = ACTIONS(4090), + [anon_sym___thiscall] = ACTIONS(4090), + [anon_sym___vectorcall] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_case] = ACTIONS(4090), + [anon_sym_default] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_goto] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_compl] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_sizeof] = ACTIONS(4090), + [anon_sym___alignof__] = ACTIONS(4090), + [anon_sym___alignof] = ACTIONS(4090), + [anon_sym__alignof] = ACTIONS(4090), + [anon_sym_alignof] = ACTIONS(4090), + [anon_sym__Alignof] = ACTIONS(4090), + [anon_sym_offsetof] = ACTIONS(4090), + [anon_sym__Generic] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [anon_sym_asm] = ACTIONS(4090), + [anon_sym___asm__] = ACTIONS(4090), + [anon_sym___asm] = ACTIONS(4090), + [sym_number_literal] = ACTIONS(4092), + [anon_sym_L_SQUOTE] = ACTIONS(4092), + [anon_sym_u_SQUOTE] = ACTIONS(4092), + [anon_sym_U_SQUOTE] = ACTIONS(4092), + [anon_sym_u8_SQUOTE] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [sym_true] = ACTIONS(4090), + [sym_false] = ACTIONS(4090), + [anon_sym_NULL] = ACTIONS(4090), + [anon_sym_nullptr] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_export] = ACTIONS(4090), + [anon_sym_module] = ACTIONS(4090), + [anon_sym_import] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_delete] = ACTIONS(4090), + [anon_sym_throw] = ACTIONS(4090), + [anon_sym_namespace] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_concept] = ACTIONS(4090), + [anon_sym_co_return] = ACTIONS(4090), + [anon_sym_co_yield] = ACTIONS(4090), + [anon_sym_R_DQUOTE] = ACTIONS(4092), + [anon_sym_LR_DQUOTE] = ACTIONS(4092), + [anon_sym_uR_DQUOTE] = ACTIONS(4092), + [anon_sym_UR_DQUOTE] = ACTIONS(4092), + [anon_sym_u8R_DQUOTE] = ACTIONS(4092), + [anon_sym_co_await] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4090), + [anon_sym_requires] = ACTIONS(4090), + [anon_sym_CARET_CARET] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + [sym_this] = ACTIONS(4090), }, - [STATE(1194)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4851), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(648)] = { + [ts_builtin_sym_end] = ACTIONS(4436), + [sym_identifier] = ACTIONS(4438), + [aux_sym_preproc_include_token1] = ACTIONS(4438), + [aux_sym_preproc_def_token1] = ACTIONS(4438), + [aux_sym_preproc_if_token1] = ACTIONS(4438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4438), + [sym_preproc_directive] = ACTIONS(4438), + [anon_sym_LPAREN2] = ACTIONS(4436), + [anon_sym_BANG] = ACTIONS(4436), + [anon_sym_TILDE] = ACTIONS(4436), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4436), + [anon_sym_AMP_AMP] = ACTIONS(4436), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_SEMI] = ACTIONS(4436), + [anon_sym___extension__] = ACTIONS(4438), + [anon_sym_typedef] = ACTIONS(4438), + [anon_sym_virtual] = ACTIONS(4438), + [anon_sym_extern] = ACTIONS(4438), + [anon_sym___attribute__] = ACTIONS(4438), + [anon_sym___attribute] = ACTIONS(4438), + [anon_sym_using] = ACTIONS(4438), + [anon_sym_COLON_COLON] = ACTIONS(4436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4436), + [anon_sym___declspec] = ACTIONS(4438), + [anon_sym___based] = ACTIONS(4438), + [anon_sym___cdecl] = ACTIONS(4438), + [anon_sym___clrcall] = ACTIONS(4438), + [anon_sym___stdcall] = ACTIONS(4438), + [anon_sym___fastcall] = ACTIONS(4438), + [anon_sym___thiscall] = ACTIONS(4438), + [anon_sym___vectorcall] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4436), + [anon_sym_signed] = ACTIONS(4438), + [anon_sym_unsigned] = ACTIONS(4438), + [anon_sym_long] = ACTIONS(4438), + [anon_sym_short] = ACTIONS(4438), + [anon_sym_LBRACK] = ACTIONS(4438), + [anon_sym_static] = ACTIONS(4438), + [anon_sym_register] = ACTIONS(4438), + [anon_sym_inline] = ACTIONS(4438), + [anon_sym___inline] = ACTIONS(4438), + [anon_sym___inline__] = ACTIONS(4438), + [anon_sym___forceinline] = ACTIONS(4438), + [anon_sym_thread_local] = ACTIONS(4438), + [anon_sym___thread] = ACTIONS(4438), + [anon_sym_const] = ACTIONS(4438), + [anon_sym_constexpr] = ACTIONS(4438), + [anon_sym_volatile] = ACTIONS(4438), + [anon_sym_restrict] = ACTIONS(4438), + [anon_sym___restrict__] = ACTIONS(4438), + [anon_sym__Atomic] = ACTIONS(4438), + [anon_sym__Noreturn] = ACTIONS(4438), + [anon_sym_noreturn] = ACTIONS(4438), + [anon_sym__Nonnull] = ACTIONS(4438), + [anon_sym_mutable] = ACTIONS(4438), + [anon_sym_constinit] = ACTIONS(4438), + [anon_sym_consteval] = ACTIONS(4438), + [anon_sym_alignas] = ACTIONS(4438), + [anon_sym__Alignas] = ACTIONS(4438), + [sym_primitive_type] = ACTIONS(4438), + [anon_sym_enum] = ACTIONS(4438), + [anon_sym_class] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_union] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_switch] = ACTIONS(4438), + [anon_sym_case] = ACTIONS(4438), + [anon_sym_default] = ACTIONS(4438), + [anon_sym_while] = ACTIONS(4438), + [anon_sym_do] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_goto] = ACTIONS(4438), + [anon_sym_not] = ACTIONS(4438), + [anon_sym_compl] = ACTIONS(4438), + [anon_sym_DASH_DASH] = ACTIONS(4436), + [anon_sym_PLUS_PLUS] = ACTIONS(4436), + [anon_sym_sizeof] = ACTIONS(4438), + [anon_sym___alignof__] = ACTIONS(4438), + [anon_sym___alignof] = ACTIONS(4438), + [anon_sym__alignof] = ACTIONS(4438), + [anon_sym_alignof] = ACTIONS(4438), + [anon_sym__Alignof] = ACTIONS(4438), + [anon_sym_offsetof] = ACTIONS(4438), + [anon_sym__Generic] = ACTIONS(4438), + [anon_sym_typename] = ACTIONS(4438), + [anon_sym_asm] = ACTIONS(4438), + [anon_sym___asm__] = ACTIONS(4438), + [anon_sym___asm] = ACTIONS(4438), + [sym_number_literal] = ACTIONS(4436), + [anon_sym_L_SQUOTE] = ACTIONS(4436), + [anon_sym_u_SQUOTE] = ACTIONS(4436), + [anon_sym_U_SQUOTE] = ACTIONS(4436), + [anon_sym_u8_SQUOTE] = ACTIONS(4436), + [anon_sym_SQUOTE] = ACTIONS(4436), + [anon_sym_L_DQUOTE] = ACTIONS(4436), + [anon_sym_u_DQUOTE] = ACTIONS(4436), + [anon_sym_U_DQUOTE] = ACTIONS(4436), + [anon_sym_u8_DQUOTE] = ACTIONS(4436), + [anon_sym_DQUOTE] = ACTIONS(4436), + [sym_true] = ACTIONS(4438), + [sym_false] = ACTIONS(4438), + [anon_sym_NULL] = ACTIONS(4438), + [anon_sym_nullptr] = ACTIONS(4438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4438), + [anon_sym_decltype] = ACTIONS(4438), + [anon_sym_explicit] = ACTIONS(4438), + [anon_sym_export] = ACTIONS(4438), + [anon_sym_module] = ACTIONS(4438), + [anon_sym_import] = ACTIONS(4438), + [anon_sym_template] = ACTIONS(4438), + [anon_sym_operator] = ACTIONS(4438), + [anon_sym_try] = ACTIONS(4438), + [anon_sym_delete] = ACTIONS(4438), + [anon_sym_throw] = ACTIONS(4438), + [anon_sym_namespace] = ACTIONS(4438), + [anon_sym_static_assert] = ACTIONS(4438), + [anon_sym_concept] = ACTIONS(4438), + [anon_sym_co_return] = ACTIONS(4438), + [anon_sym_co_yield] = ACTIONS(4438), + [anon_sym_R_DQUOTE] = ACTIONS(4436), + [anon_sym_LR_DQUOTE] = ACTIONS(4436), + [anon_sym_uR_DQUOTE] = ACTIONS(4436), + [anon_sym_UR_DQUOTE] = ACTIONS(4436), + [anon_sym_u8R_DQUOTE] = ACTIONS(4436), + [anon_sym_co_await] = ACTIONS(4438), + [anon_sym_new] = ACTIONS(4438), + [anon_sym_requires] = ACTIONS(4438), + [anon_sym_CARET_CARET] = ACTIONS(4436), + [anon_sym_LBRACK_COLON] = ACTIONS(4436), + [sym_this] = ACTIONS(4438), }, - [STATE(1195)] = { - [sym_expression] = STATE(4369), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(4732), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(649)] = { + [ts_builtin_sym_end] = ACTIONS(4440), + [sym_identifier] = ACTIONS(4442), + [aux_sym_preproc_include_token1] = ACTIONS(4442), + [aux_sym_preproc_def_token1] = ACTIONS(4442), + [aux_sym_preproc_if_token1] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4442), + [sym_preproc_directive] = ACTIONS(4442), + [anon_sym_LPAREN2] = ACTIONS(4440), + [anon_sym_BANG] = ACTIONS(4440), + [anon_sym_TILDE] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4440), + [anon_sym_AMP_AMP] = ACTIONS(4440), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_SEMI] = ACTIONS(4440), + [anon_sym___extension__] = ACTIONS(4442), + [anon_sym_typedef] = ACTIONS(4442), + [anon_sym_virtual] = ACTIONS(4442), + [anon_sym_extern] = ACTIONS(4442), + [anon_sym___attribute__] = ACTIONS(4442), + [anon_sym___attribute] = ACTIONS(4442), + [anon_sym_using] = ACTIONS(4442), + [anon_sym_COLON_COLON] = ACTIONS(4440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4440), + [anon_sym___declspec] = ACTIONS(4442), + [anon_sym___based] = ACTIONS(4442), + [anon_sym___cdecl] = ACTIONS(4442), + [anon_sym___clrcall] = ACTIONS(4442), + [anon_sym___stdcall] = ACTIONS(4442), + [anon_sym___fastcall] = ACTIONS(4442), + [anon_sym___thiscall] = ACTIONS(4442), + [anon_sym___vectorcall] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4440), + [anon_sym_signed] = ACTIONS(4442), + [anon_sym_unsigned] = ACTIONS(4442), + [anon_sym_long] = ACTIONS(4442), + [anon_sym_short] = ACTIONS(4442), + [anon_sym_LBRACK] = ACTIONS(4442), + [anon_sym_static] = ACTIONS(4442), + [anon_sym_register] = ACTIONS(4442), + [anon_sym_inline] = ACTIONS(4442), + [anon_sym___inline] = ACTIONS(4442), + [anon_sym___inline__] = ACTIONS(4442), + [anon_sym___forceinline] = ACTIONS(4442), + [anon_sym_thread_local] = ACTIONS(4442), + [anon_sym___thread] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4442), + [anon_sym_constexpr] = ACTIONS(4442), + [anon_sym_volatile] = ACTIONS(4442), + [anon_sym_restrict] = ACTIONS(4442), + [anon_sym___restrict__] = ACTIONS(4442), + [anon_sym__Atomic] = ACTIONS(4442), + [anon_sym__Noreturn] = ACTIONS(4442), + [anon_sym_noreturn] = ACTIONS(4442), + [anon_sym__Nonnull] = ACTIONS(4442), + [anon_sym_mutable] = ACTIONS(4442), + [anon_sym_constinit] = ACTIONS(4442), + [anon_sym_consteval] = ACTIONS(4442), + [anon_sym_alignas] = ACTIONS(4442), + [anon_sym__Alignas] = ACTIONS(4442), + [sym_primitive_type] = ACTIONS(4442), + [anon_sym_enum] = ACTIONS(4442), + [anon_sym_class] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_union] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_switch] = ACTIONS(4442), + [anon_sym_case] = ACTIONS(4442), + [anon_sym_default] = ACTIONS(4442), + [anon_sym_while] = ACTIONS(4442), + [anon_sym_do] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_goto] = ACTIONS(4442), + [anon_sym_not] = ACTIONS(4442), + [anon_sym_compl] = ACTIONS(4442), + [anon_sym_DASH_DASH] = ACTIONS(4440), + [anon_sym_PLUS_PLUS] = ACTIONS(4440), + [anon_sym_sizeof] = ACTIONS(4442), + [anon_sym___alignof__] = ACTIONS(4442), + [anon_sym___alignof] = ACTIONS(4442), + [anon_sym__alignof] = ACTIONS(4442), + [anon_sym_alignof] = ACTIONS(4442), + [anon_sym__Alignof] = ACTIONS(4442), + [anon_sym_offsetof] = ACTIONS(4442), + [anon_sym__Generic] = ACTIONS(4442), + [anon_sym_typename] = ACTIONS(4442), + [anon_sym_asm] = ACTIONS(4442), + [anon_sym___asm__] = ACTIONS(4442), + [anon_sym___asm] = ACTIONS(4442), + [sym_number_literal] = ACTIONS(4440), + [anon_sym_L_SQUOTE] = ACTIONS(4440), + [anon_sym_u_SQUOTE] = ACTIONS(4440), + [anon_sym_U_SQUOTE] = ACTIONS(4440), + [anon_sym_u8_SQUOTE] = ACTIONS(4440), + [anon_sym_SQUOTE] = ACTIONS(4440), + [anon_sym_L_DQUOTE] = ACTIONS(4440), + [anon_sym_u_DQUOTE] = ACTIONS(4440), + [anon_sym_U_DQUOTE] = ACTIONS(4440), + [anon_sym_u8_DQUOTE] = ACTIONS(4440), + [anon_sym_DQUOTE] = ACTIONS(4440), + [sym_true] = ACTIONS(4442), + [sym_false] = ACTIONS(4442), + [anon_sym_NULL] = ACTIONS(4442), + [anon_sym_nullptr] = ACTIONS(4442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4442), + [anon_sym_decltype] = ACTIONS(4442), + [anon_sym_explicit] = ACTIONS(4442), + [anon_sym_export] = ACTIONS(4442), + [anon_sym_module] = ACTIONS(4442), + [anon_sym_import] = ACTIONS(4442), + [anon_sym_template] = ACTIONS(4442), + [anon_sym_operator] = ACTIONS(4442), + [anon_sym_try] = ACTIONS(4442), + [anon_sym_delete] = ACTIONS(4442), + [anon_sym_throw] = ACTIONS(4442), + [anon_sym_namespace] = ACTIONS(4442), + [anon_sym_static_assert] = ACTIONS(4442), + [anon_sym_concept] = ACTIONS(4442), + [anon_sym_co_return] = ACTIONS(4442), + [anon_sym_co_yield] = ACTIONS(4442), + [anon_sym_R_DQUOTE] = ACTIONS(4440), + [anon_sym_LR_DQUOTE] = ACTIONS(4440), + [anon_sym_uR_DQUOTE] = ACTIONS(4440), + [anon_sym_UR_DQUOTE] = ACTIONS(4440), + [anon_sym_u8R_DQUOTE] = ACTIONS(4440), + [anon_sym_co_await] = ACTIONS(4442), + [anon_sym_new] = ACTIONS(4442), + [anon_sym_requires] = ACTIONS(4442), + [anon_sym_CARET_CARET] = ACTIONS(4440), + [anon_sym_LBRACK_COLON] = ACTIONS(4440), + [sym_this] = ACTIONS(4442), }, - [STATE(1196)] = { - [sym_expression] = STATE(3115), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4807), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(650)] = { + [ts_builtin_sym_end] = ACTIONS(4000), + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_export] = ACTIONS(3998), + [anon_sym_module] = ACTIONS(3998), + [anon_sym_import] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1197)] = { - [sym_expression] = STATE(4600), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4855), - [anon_sym_LPAREN2] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(651)] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_type_definition] = STATE(660), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(660), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(660), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(660), + [sym_operator_cast_declaration] = STATE(660), + [sym_constructor_or_destructor_definition] = STATE(660), + [sym_constructor_or_destructor_declaration] = STATE(660), + [sym_friend_declaration] = STATE(660), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(660), + [sym_alias_declaration] = STATE(660), + [sym_static_assert_declaration] = STATE(660), + [sym_consteval_block_declaration] = STATE(660), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4444), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1198)] = { - [sym_expression] = STATE(4730), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(652)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(1199)] = { - [sym_expression] = STATE(4731), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(653)] = { + [ts_builtin_sym_end] = ACTIONS(4141), + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4141), + [anon_sym_L_SQUOTE] = ACTIONS(4141), + [anon_sym_u_SQUOTE] = ACTIONS(4141), + [anon_sym_U_SQUOTE] = ACTIONS(4141), + [anon_sym_u8_SQUOTE] = ACTIONS(4141), + [anon_sym_SQUOTE] = ACTIONS(4141), + [anon_sym_L_DQUOTE] = ACTIONS(4141), + [anon_sym_u_DQUOTE] = ACTIONS(4141), + [anon_sym_U_DQUOTE] = ACTIONS(4141), + [anon_sym_u8_DQUOTE] = ACTIONS(4141), + [anon_sym_DQUOTE] = ACTIONS(4141), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_export] = ACTIONS(4138), + [anon_sym_module] = ACTIONS(4138), + [anon_sym_import] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4141), + [anon_sym_LR_DQUOTE] = ACTIONS(4141), + [anon_sym_uR_DQUOTE] = ACTIONS(4141), + [anon_sym_UR_DQUOTE] = ACTIONS(4141), + [anon_sym_u8R_DQUOTE] = ACTIONS(4141), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4141), + [anon_sym_LBRACK_COLON] = ACTIONS(4141), + [sym_this] = ACTIONS(4138), }, - [STATE(1200)] = { - [sym_expression] = STATE(3121), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4810), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(654)] = { + [ts_builtin_sym_end] = ACTIONS(4448), + [sym_identifier] = ACTIONS(4450), + [aux_sym_preproc_include_token1] = ACTIONS(4450), + [aux_sym_preproc_def_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4450), + [sym_preproc_directive] = ACTIONS(4450), + [anon_sym_LPAREN2] = ACTIONS(4448), + [anon_sym_BANG] = ACTIONS(4448), + [anon_sym_TILDE] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4448), + [anon_sym_AMP_AMP] = ACTIONS(4448), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_SEMI] = ACTIONS(4448), + [anon_sym___extension__] = ACTIONS(4450), + [anon_sym_typedef] = ACTIONS(4450), + [anon_sym_virtual] = ACTIONS(4450), + [anon_sym_extern] = ACTIONS(4450), + [anon_sym___attribute__] = ACTIONS(4450), + [anon_sym___attribute] = ACTIONS(4450), + [anon_sym_using] = ACTIONS(4450), + [anon_sym_COLON_COLON] = ACTIONS(4448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4448), + [anon_sym___declspec] = ACTIONS(4450), + [anon_sym___based] = ACTIONS(4450), + [anon_sym___cdecl] = ACTIONS(4450), + [anon_sym___clrcall] = ACTIONS(4450), + [anon_sym___stdcall] = ACTIONS(4450), + [anon_sym___fastcall] = ACTIONS(4450), + [anon_sym___thiscall] = ACTIONS(4450), + [anon_sym___vectorcall] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4448), + [anon_sym_signed] = ACTIONS(4450), + [anon_sym_unsigned] = ACTIONS(4450), + [anon_sym_long] = ACTIONS(4450), + [anon_sym_short] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_static] = ACTIONS(4450), + [anon_sym_register] = ACTIONS(4450), + [anon_sym_inline] = ACTIONS(4450), + [anon_sym___inline] = ACTIONS(4450), + [anon_sym___inline__] = ACTIONS(4450), + [anon_sym___forceinline] = ACTIONS(4450), + [anon_sym_thread_local] = ACTIONS(4450), + [anon_sym___thread] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_constexpr] = ACTIONS(4450), + [anon_sym_volatile] = ACTIONS(4450), + [anon_sym_restrict] = ACTIONS(4450), + [anon_sym___restrict__] = ACTIONS(4450), + [anon_sym__Atomic] = ACTIONS(4450), + [anon_sym__Noreturn] = ACTIONS(4450), + [anon_sym_noreturn] = ACTIONS(4450), + [anon_sym__Nonnull] = ACTIONS(4450), + [anon_sym_mutable] = ACTIONS(4450), + [anon_sym_constinit] = ACTIONS(4450), + [anon_sym_consteval] = ACTIONS(4450), + [anon_sym_alignas] = ACTIONS(4450), + [anon_sym__Alignas] = ACTIONS(4450), + [sym_primitive_type] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_class] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_switch] = ACTIONS(4450), + [anon_sym_case] = ACTIONS(4450), + [anon_sym_default] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_not] = ACTIONS(4450), + [anon_sym_compl] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4448), + [anon_sym_PLUS_PLUS] = ACTIONS(4448), + [anon_sym_sizeof] = ACTIONS(4450), + [anon_sym___alignof__] = ACTIONS(4450), + [anon_sym___alignof] = ACTIONS(4450), + [anon_sym__alignof] = ACTIONS(4450), + [anon_sym_alignof] = ACTIONS(4450), + [anon_sym__Alignof] = ACTIONS(4450), + [anon_sym_offsetof] = ACTIONS(4450), + [anon_sym__Generic] = ACTIONS(4450), + [anon_sym_typename] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym___asm__] = ACTIONS(4450), + [anon_sym___asm] = ACTIONS(4450), + [sym_number_literal] = ACTIONS(4448), + [anon_sym_L_SQUOTE] = ACTIONS(4448), + [anon_sym_u_SQUOTE] = ACTIONS(4448), + [anon_sym_U_SQUOTE] = ACTIONS(4448), + [anon_sym_u8_SQUOTE] = ACTIONS(4448), + [anon_sym_SQUOTE] = ACTIONS(4448), + [anon_sym_L_DQUOTE] = ACTIONS(4448), + [anon_sym_u_DQUOTE] = ACTIONS(4448), + [anon_sym_U_DQUOTE] = ACTIONS(4448), + [anon_sym_u8_DQUOTE] = ACTIONS(4448), + [anon_sym_DQUOTE] = ACTIONS(4448), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [anon_sym_NULL] = ACTIONS(4450), + [anon_sym_nullptr] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4450), + [anon_sym_decltype] = ACTIONS(4450), + [anon_sym_explicit] = ACTIONS(4450), + [anon_sym_export] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_import] = ACTIONS(4450), + [anon_sym_template] = ACTIONS(4450), + [anon_sym_operator] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_delete] = ACTIONS(4450), + [anon_sym_throw] = ACTIONS(4450), + [anon_sym_namespace] = ACTIONS(4450), + [anon_sym_static_assert] = ACTIONS(4450), + [anon_sym_concept] = ACTIONS(4450), + [anon_sym_co_return] = ACTIONS(4450), + [anon_sym_co_yield] = ACTIONS(4450), + [anon_sym_R_DQUOTE] = ACTIONS(4448), + [anon_sym_LR_DQUOTE] = ACTIONS(4448), + [anon_sym_uR_DQUOTE] = ACTIONS(4448), + [anon_sym_UR_DQUOTE] = ACTIONS(4448), + [anon_sym_u8R_DQUOTE] = ACTIONS(4448), + [anon_sym_co_await] = ACTIONS(4450), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_requires] = ACTIONS(4450), + [anon_sym_CARET_CARET] = ACTIONS(4448), + [anon_sym_LBRACK_COLON] = ACTIONS(4448), + [sym_this] = ACTIONS(4450), }, - [STATE(1201)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4863), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(655)] = { + [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(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [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(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = 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(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [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_typename] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [anon_sym___asm] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [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_explicit] = 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_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(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [anon_sym_CARET_CARET] = ACTIONS(2910), + [anon_sym_LBRACK_COLON] = ACTIONS(2910), + [sym_this] = ACTIONS(2905), }, - [STATE(1202)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4865), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(656)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, - [STATE(1203)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4867), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(657)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), }, - [STATE(1204)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4869), - [anon_sym_LPAREN2] = ACTIONS(4871), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(658)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, - [STATE(1205)] = { - [sym_expression] = STATE(4750), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(659)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), }, - [STATE(1206)] = { - [sym_expression] = STATE(4751), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(660)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1207)] = { - [sym_expression] = STATE(3323), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4877), - [anon_sym_LPAREN2] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(661)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(1208)] = { - [sym_expression] = STATE(3720), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4833), - [anon_sym_LPAREN2] = ACTIONS(4881), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(662)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token2] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(1209)] = { - [sym_expression] = STATE(3720), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4833), - [anon_sym_LPAREN2] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(663)] = { + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, - [STATE(1210)] = { - [sym_expression] = STATE(4434), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(7664), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(664)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), }, - [STATE(1211)] = { - [sym_expression] = STATE(2347), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4885), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(665)] = { + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token2] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, - [STATE(1212)] = { - [sym_expression] = STATE(2347), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(666)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, - [STATE(1213)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4889), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(667)] = { + [ts_builtin_sym_end] = ACTIONS(4454), + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_include_token1] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_AMP_AMP] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4454), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym___cdecl] = ACTIONS(4456), + [anon_sym___clrcall] = ACTIONS(4456), + [anon_sym___stdcall] = ACTIONS(4456), + [anon_sym___fastcall] = ACTIONS(4456), + [anon_sym___thiscall] = ACTIONS(4456), + [anon_sym___vectorcall] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_case] = ACTIONS(4456), + [anon_sym_default] = ACTIONS(4456), + [anon_sym_while] = ACTIONS(4456), + [anon_sym_do] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_goto] = ACTIONS(4456), + [anon_sym_not] = ACTIONS(4456), + [anon_sym_compl] = ACTIONS(4456), + [anon_sym_DASH_DASH] = ACTIONS(4454), + [anon_sym_PLUS_PLUS] = ACTIONS(4454), + [anon_sym_sizeof] = ACTIONS(4456), + [anon_sym___alignof__] = ACTIONS(4456), + [anon_sym___alignof] = ACTIONS(4456), + [anon_sym__alignof] = ACTIONS(4456), + [anon_sym_alignof] = ACTIONS(4456), + [anon_sym__Alignof] = ACTIONS(4456), + [anon_sym_offsetof] = ACTIONS(4456), + [anon_sym__Generic] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_asm] = ACTIONS(4456), + [anon_sym___asm__] = ACTIONS(4456), + [anon_sym___asm] = ACTIONS(4456), + [sym_number_literal] = ACTIONS(4454), + [anon_sym_L_SQUOTE] = ACTIONS(4454), + [anon_sym_u_SQUOTE] = ACTIONS(4454), + [anon_sym_U_SQUOTE] = ACTIONS(4454), + [anon_sym_u8_SQUOTE] = ACTIONS(4454), + [anon_sym_SQUOTE] = ACTIONS(4454), + [anon_sym_L_DQUOTE] = ACTIONS(4454), + [anon_sym_u_DQUOTE] = ACTIONS(4454), + [anon_sym_U_DQUOTE] = ACTIONS(4454), + [anon_sym_u8_DQUOTE] = ACTIONS(4454), + [anon_sym_DQUOTE] = ACTIONS(4454), + [sym_true] = ACTIONS(4456), + [sym_false] = ACTIONS(4456), + [anon_sym_NULL] = ACTIONS(4456), + [anon_sym_nullptr] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_export] = ACTIONS(4456), + [anon_sym_module] = ACTIONS(4456), + [anon_sym_import] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4456), + [anon_sym_delete] = ACTIONS(4456), + [anon_sym_throw] = ACTIONS(4456), + [anon_sym_namespace] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [anon_sym_concept] = ACTIONS(4456), + [anon_sym_co_return] = ACTIONS(4456), + [anon_sym_co_yield] = ACTIONS(4456), + [anon_sym_R_DQUOTE] = ACTIONS(4454), + [anon_sym_LR_DQUOTE] = ACTIONS(4454), + [anon_sym_uR_DQUOTE] = ACTIONS(4454), + [anon_sym_UR_DQUOTE] = ACTIONS(4454), + [anon_sym_u8R_DQUOTE] = ACTIONS(4454), + [anon_sym_co_await] = ACTIONS(4456), + [anon_sym_new] = ACTIONS(4456), + [anon_sym_requires] = ACTIONS(4456), + [anon_sym_CARET_CARET] = ACTIONS(4454), + [anon_sym_LBRACK_COLON] = ACTIONS(4454), + [sym_this] = ACTIONS(4456), }, - [STATE(1214)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4891), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(668)] = { + [sym_preproc_def] = STATE(676), + [sym_preproc_function_def] = STATE(676), + [sym_preproc_call] = STATE(676), + [sym_preproc_if_in_field_declaration_list] = STATE(676), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(676), + [sym_type_definition] = STATE(676), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(676), + [sym_field_declaration] = STATE(676), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(676), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(676), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(676), + [sym_operator_cast_declaration] = STATE(676), + [sym_constructor_or_destructor_definition] = STATE(676), + [sym_constructor_or_destructor_declaration] = STATE(676), + [sym_friend_declaration] = STATE(676), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(676), + [sym_alias_declaration] = STATE(676), + [sym_static_assert_declaration] = STATE(676), + [sym_consteval_block_declaration] = STATE(676), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(676), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1215)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4893), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(669)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), }, - [STATE(1216)] = { - [sym_expression] = STATE(4762), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4895), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(670)] = { + [ts_builtin_sym_end] = ACTIONS(4150), + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_export] = ACTIONS(4148), + [anon_sym_module] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(1217)] = { - [sym_expression] = STATE(4687), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4897), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(671)] = { + [ts_builtin_sym_end] = ACTIONS(4462), + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_include_token1] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym___cdecl] = ACTIONS(4464), + [anon_sym___clrcall] = ACTIONS(4464), + [anon_sym___stdcall] = ACTIONS(4464), + [anon_sym___fastcall] = ACTIONS(4464), + [anon_sym___thiscall] = ACTIONS(4464), + [anon_sym___vectorcall] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_case] = ACTIONS(4464), + [anon_sym_default] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_goto] = ACTIONS(4464), + [anon_sym_not] = ACTIONS(4464), + [anon_sym_compl] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_sizeof] = ACTIONS(4464), + [anon_sym___alignof__] = ACTIONS(4464), + [anon_sym___alignof] = ACTIONS(4464), + [anon_sym__alignof] = ACTIONS(4464), + [anon_sym_alignof] = ACTIONS(4464), + [anon_sym__Alignof] = ACTIONS(4464), + [anon_sym_offsetof] = ACTIONS(4464), + [anon_sym__Generic] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_asm] = ACTIONS(4464), + [anon_sym___asm__] = ACTIONS(4464), + [anon_sym___asm] = ACTIONS(4464), + [sym_number_literal] = ACTIONS(4462), + [anon_sym_L_SQUOTE] = ACTIONS(4462), + [anon_sym_u_SQUOTE] = ACTIONS(4462), + [anon_sym_U_SQUOTE] = ACTIONS(4462), + [anon_sym_u8_SQUOTE] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_L_DQUOTE] = ACTIONS(4462), + [anon_sym_u_DQUOTE] = ACTIONS(4462), + [anon_sym_U_DQUOTE] = ACTIONS(4462), + [anon_sym_u8_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym_true] = ACTIONS(4464), + [sym_false] = ACTIONS(4464), + [anon_sym_NULL] = ACTIONS(4464), + [anon_sym_nullptr] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_export] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_import] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_delete] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_namespace] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [anon_sym_concept] = ACTIONS(4464), + [anon_sym_co_return] = ACTIONS(4464), + [anon_sym_co_yield] = ACTIONS(4464), + [anon_sym_R_DQUOTE] = ACTIONS(4462), + [anon_sym_LR_DQUOTE] = ACTIONS(4462), + [anon_sym_uR_DQUOTE] = ACTIONS(4462), + [anon_sym_UR_DQUOTE] = ACTIONS(4462), + [anon_sym_u8R_DQUOTE] = ACTIONS(4462), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4462), + [anon_sym_LBRACK_COLON] = ACTIONS(4462), + [sym_this] = ACTIONS(4464), }, - [STATE(1218)] = { - [sym_expression] = STATE(4511), - [sym__string] = STATE(4314), - [sym_comma_expression] = STATE(7664), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(672)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, - [STATE(1219)] = { - [sym_expression] = STATE(4713), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4899), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(673)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [STATE(1220)] = { - [sym_expression] = STATE(4739), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4901), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(674)] = { + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_include_token1] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym___cdecl] = ACTIONS(4468), + [anon_sym___clrcall] = ACTIONS(4468), + [anon_sym___stdcall] = ACTIONS(4468), + [anon_sym___fastcall] = ACTIONS(4468), + [anon_sym___thiscall] = ACTIONS(4468), + [anon_sym___vectorcall] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_switch] = ACTIONS(4468), + [anon_sym_case] = ACTIONS(4468), + [anon_sym_default] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_not] = ACTIONS(4468), + [anon_sym_compl] = ACTIONS(4468), + [anon_sym_DASH_DASH] = ACTIONS(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [anon_sym_sizeof] = ACTIONS(4468), + [anon_sym___alignof__] = ACTIONS(4468), + [anon_sym___alignof] = ACTIONS(4468), + [anon_sym__alignof] = ACTIONS(4468), + [anon_sym_alignof] = ACTIONS(4468), + [anon_sym__Alignof] = ACTIONS(4468), + [anon_sym_offsetof] = ACTIONS(4468), + [anon_sym__Generic] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym___asm__] = ACTIONS(4468), + [anon_sym___asm] = ACTIONS(4468), + [sym_number_literal] = ACTIONS(4466), + [anon_sym_L_SQUOTE] = ACTIONS(4466), + [anon_sym_u_SQUOTE] = ACTIONS(4466), + [anon_sym_U_SQUOTE] = ACTIONS(4466), + [anon_sym_u8_SQUOTE] = ACTIONS(4466), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_L_DQUOTE] = ACTIONS(4466), + [anon_sym_u_DQUOTE] = ACTIONS(4466), + [anon_sym_U_DQUOTE] = ACTIONS(4466), + [anon_sym_u8_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [anon_sym_NULL] = ACTIONS(4468), + [anon_sym_nullptr] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_export] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_import] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_delete] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [anon_sym_concept] = ACTIONS(4468), + [anon_sym_co_return] = ACTIONS(4468), + [anon_sym_co_yield] = ACTIONS(4468), + [anon_sym_R_DQUOTE] = ACTIONS(4466), + [anon_sym_LR_DQUOTE] = ACTIONS(4466), + [anon_sym_uR_DQUOTE] = ACTIONS(4466), + [anon_sym_UR_DQUOTE] = ACTIONS(4466), + [anon_sym_u8R_DQUOTE] = ACTIONS(4466), + [anon_sym_co_await] = ACTIONS(4468), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_requires] = ACTIONS(4468), + [anon_sym_CARET_CARET] = ACTIONS(4466), + [anon_sym_LBRACK_COLON] = ACTIONS(4466), + [sym_this] = ACTIONS(4468), }, - [STATE(1221)] = { - [sym_expression] = STATE(4755), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4903), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(675)] = { + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_include_token1] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym___cdecl] = ACTIONS(4472), + [anon_sym___clrcall] = ACTIONS(4472), + [anon_sym___stdcall] = ACTIONS(4472), + [anon_sym___fastcall] = ACTIONS(4472), + [anon_sym___thiscall] = ACTIONS(4472), + [anon_sym___vectorcall] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_switch] = ACTIONS(4472), + [anon_sym_case] = ACTIONS(4472), + [anon_sym_default] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_do] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_not] = ACTIONS(4472), + [anon_sym_compl] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_sizeof] = ACTIONS(4472), + [anon_sym___alignof__] = ACTIONS(4472), + [anon_sym___alignof] = ACTIONS(4472), + [anon_sym__alignof] = ACTIONS(4472), + [anon_sym_alignof] = ACTIONS(4472), + [anon_sym__Alignof] = ACTIONS(4472), + [anon_sym_offsetof] = ACTIONS(4472), + [anon_sym__Generic] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym___asm__] = ACTIONS(4472), + [anon_sym___asm] = ACTIONS(4472), + [sym_number_literal] = ACTIONS(4470), + [anon_sym_L_SQUOTE] = ACTIONS(4470), + [anon_sym_u_SQUOTE] = ACTIONS(4470), + [anon_sym_U_SQUOTE] = ACTIONS(4470), + [anon_sym_u8_SQUOTE] = ACTIONS(4470), + [anon_sym_SQUOTE] = ACTIONS(4470), + [anon_sym_L_DQUOTE] = ACTIONS(4470), + [anon_sym_u_DQUOTE] = ACTIONS(4470), + [anon_sym_U_DQUOTE] = ACTIONS(4470), + [anon_sym_u8_DQUOTE] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [anon_sym_NULL] = ACTIONS(4472), + [anon_sym_nullptr] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_export] = ACTIONS(4472), + [anon_sym_module] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_delete] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_namespace] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [anon_sym_concept] = ACTIONS(4472), + [anon_sym_co_return] = ACTIONS(4472), + [anon_sym_co_yield] = ACTIONS(4472), + [anon_sym_R_DQUOTE] = ACTIONS(4470), + [anon_sym_LR_DQUOTE] = ACTIONS(4470), + [anon_sym_uR_DQUOTE] = ACTIONS(4470), + [anon_sym_UR_DQUOTE] = ACTIONS(4470), + [anon_sym_u8R_DQUOTE] = ACTIONS(4470), + [anon_sym_co_await] = ACTIONS(4472), + [anon_sym_new] = ACTIONS(4472), + [anon_sym_requires] = ACTIONS(4472), + [anon_sym_CARET_CARET] = ACTIONS(4470), + [anon_sym_LBRACK_COLON] = ACTIONS(4470), + [sym_this] = ACTIONS(4472), }, - [STATE(1222)] = { - [sym_expression] = STATE(4765), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4905), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(676)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4474), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1223)] = { - [sym_expression] = STATE(4762), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4907), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(677)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_RBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_else] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(1224)] = { - [sym_expression] = STATE(4771), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4909), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(678)] = { + [sym_identifier] = ACTIONS(3724), + [aux_sym_preproc_include_token1] = ACTIONS(3724), + [aux_sym_preproc_def_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), + [sym_preproc_directive] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym___extension__] = ACTIONS(3724), + [anon_sym_typedef] = ACTIONS(3724), + [anon_sym_virtual] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3724), + [anon_sym___attribute__] = ACTIONS(3724), + [anon_sym___attribute] = ACTIONS(3724), + [anon_sym_using] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), + [anon_sym___declspec] = ACTIONS(3724), + [anon_sym___based] = ACTIONS(3724), + [anon_sym___cdecl] = ACTIONS(3724), + [anon_sym___clrcall] = ACTIONS(3724), + [anon_sym___stdcall] = ACTIONS(3724), + [anon_sym___fastcall] = ACTIONS(3724), + [anon_sym___thiscall] = ACTIONS(3724), + [anon_sym___vectorcall] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_unsigned] = ACTIONS(3724), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_short] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_static] = ACTIONS(3724), + [anon_sym_register] = ACTIONS(3724), + [anon_sym_inline] = ACTIONS(3724), + [anon_sym___inline] = ACTIONS(3724), + [anon_sym___inline__] = ACTIONS(3724), + [anon_sym___forceinline] = ACTIONS(3724), + [anon_sym_thread_local] = ACTIONS(3724), + [anon_sym___thread] = ACTIONS(3724), + [anon_sym_const] = ACTIONS(3724), + [anon_sym_constexpr] = ACTIONS(3724), + [anon_sym_volatile] = ACTIONS(3724), + [anon_sym_restrict] = ACTIONS(3724), + [anon_sym___restrict__] = ACTIONS(3724), + [anon_sym__Atomic] = ACTIONS(3724), + [anon_sym__Noreturn] = ACTIONS(3724), + [anon_sym_noreturn] = ACTIONS(3724), + [anon_sym__Nonnull] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(3724), + [anon_sym_constinit] = ACTIONS(3724), + [anon_sym_consteval] = ACTIONS(3724), + [anon_sym_alignas] = ACTIONS(3724), + [anon_sym__Alignas] = ACTIONS(3724), + [sym_primitive_type] = ACTIONS(3724), + [anon_sym_enum] = ACTIONS(3724), + [anon_sym_class] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_union] = ACTIONS(3724), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_case] = ACTIONS(3724), + [anon_sym_default] = ACTIONS(3724), + [anon_sym_while] = ACTIONS(3724), + [anon_sym_do] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3724), + [anon_sym_return] = ACTIONS(3724), + [anon_sym_break] = ACTIONS(3724), + [anon_sym_continue] = ACTIONS(3724), + [anon_sym_goto] = ACTIONS(3724), + [anon_sym___try] = ACTIONS(3724), + [anon_sym___leave] = ACTIONS(3724), + [anon_sym_not] = ACTIONS(3724), + [anon_sym_compl] = ACTIONS(3724), + [anon_sym_DASH_DASH] = ACTIONS(3726), + [anon_sym_PLUS_PLUS] = ACTIONS(3726), + [anon_sym_sizeof] = ACTIONS(3724), + [anon_sym___alignof__] = ACTIONS(3724), + [anon_sym___alignof] = ACTIONS(3724), + [anon_sym__alignof] = ACTIONS(3724), + [anon_sym_alignof] = ACTIONS(3724), + [anon_sym__Alignof] = ACTIONS(3724), + [anon_sym_offsetof] = ACTIONS(3724), + [anon_sym__Generic] = ACTIONS(3724), + [anon_sym_typename] = ACTIONS(3724), + [anon_sym_asm] = ACTIONS(3724), + [anon_sym___asm__] = ACTIONS(3724), + [anon_sym___asm] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3726), + [anon_sym_L_SQUOTE] = ACTIONS(3726), + [anon_sym_u_SQUOTE] = ACTIONS(3726), + [anon_sym_U_SQUOTE] = ACTIONS(3726), + [anon_sym_u8_SQUOTE] = ACTIONS(3726), + [anon_sym_SQUOTE] = ACTIONS(3726), + [anon_sym_L_DQUOTE] = ACTIONS(3726), + [anon_sym_u_DQUOTE] = ACTIONS(3726), + [anon_sym_U_DQUOTE] = ACTIONS(3726), + [anon_sym_u8_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [anon_sym_NULL] = ACTIONS(3724), + [anon_sym_nullptr] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3724), + [anon_sym_decltype] = ACTIONS(3724), + [anon_sym_explicit] = ACTIONS(3724), + [anon_sym_template] = ACTIONS(3724), + [anon_sym_operator] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3724), + [anon_sym_delete] = ACTIONS(3724), + [anon_sym_throw] = ACTIONS(3724), + [anon_sym_namespace] = ACTIONS(3724), + [anon_sym_static_assert] = ACTIONS(3724), + [anon_sym_concept] = ACTIONS(3724), + [anon_sym_co_return] = ACTIONS(3724), + [anon_sym_co_yield] = ACTIONS(3724), + [anon_sym_R_DQUOTE] = ACTIONS(3726), + [anon_sym_LR_DQUOTE] = ACTIONS(3726), + [anon_sym_uR_DQUOTE] = ACTIONS(3726), + [anon_sym_UR_DQUOTE] = ACTIONS(3726), + [anon_sym_u8R_DQUOTE] = ACTIONS(3726), + [anon_sym_co_await] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3724), + [anon_sym_requires] = ACTIONS(3724), + [anon_sym_CARET_CARET] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3726), + [sym_this] = ACTIONS(3724), }, - [STATE(1225)] = { - [sym_expression] = STATE(4776), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4911), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(679)] = { + [sym_identifier] = ACTIONS(3872), + [aux_sym_preproc_include_token1] = ACTIONS(3872), + [aux_sym_preproc_def_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), + [sym_preproc_directive] = ACTIONS(3872), + [anon_sym_LPAREN2] = ACTIONS(3874), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3872), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym___extension__] = ACTIONS(3872), + [anon_sym_typedef] = ACTIONS(3872), + [anon_sym_virtual] = ACTIONS(3872), + [anon_sym_extern] = ACTIONS(3872), + [anon_sym___attribute__] = ACTIONS(3872), + [anon_sym___attribute] = ACTIONS(3872), + [anon_sym_using] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(3874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), + [anon_sym___declspec] = ACTIONS(3872), + [anon_sym___based] = ACTIONS(3872), + [anon_sym___cdecl] = ACTIONS(3872), + [anon_sym___clrcall] = ACTIONS(3872), + [anon_sym___stdcall] = ACTIONS(3872), + [anon_sym___fastcall] = ACTIONS(3872), + [anon_sym___thiscall] = ACTIONS(3872), + [anon_sym___vectorcall] = ACTIONS(3872), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_signed] = ACTIONS(3872), + [anon_sym_unsigned] = ACTIONS(3872), + [anon_sym_long] = ACTIONS(3872), + [anon_sym_short] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(3872), + [anon_sym_static] = ACTIONS(3872), + [anon_sym_register] = ACTIONS(3872), + [anon_sym_inline] = ACTIONS(3872), + [anon_sym___inline] = ACTIONS(3872), + [anon_sym___inline__] = ACTIONS(3872), + [anon_sym___forceinline] = ACTIONS(3872), + [anon_sym_thread_local] = ACTIONS(3872), + [anon_sym___thread] = ACTIONS(3872), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_constexpr] = ACTIONS(3872), + [anon_sym_volatile] = ACTIONS(3872), + [anon_sym_restrict] = ACTIONS(3872), + [anon_sym___restrict__] = ACTIONS(3872), + [anon_sym__Atomic] = ACTIONS(3872), + [anon_sym__Noreturn] = ACTIONS(3872), + [anon_sym_noreturn] = ACTIONS(3872), + [anon_sym__Nonnull] = ACTIONS(3872), + [anon_sym_mutable] = ACTIONS(3872), + [anon_sym_constinit] = ACTIONS(3872), + [anon_sym_consteval] = ACTIONS(3872), + [anon_sym_alignas] = ACTIONS(3872), + [anon_sym__Alignas] = ACTIONS(3872), + [sym_primitive_type] = ACTIONS(3872), + [anon_sym_enum] = ACTIONS(3872), + [anon_sym_class] = ACTIONS(3872), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3872), + [anon_sym_case] = ACTIONS(3872), + [anon_sym_default] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_do] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_goto] = ACTIONS(3872), + [anon_sym___try] = ACTIONS(3872), + [anon_sym___leave] = ACTIONS(3872), + [anon_sym_not] = ACTIONS(3872), + [anon_sym_compl] = ACTIONS(3872), + [anon_sym_DASH_DASH] = ACTIONS(3874), + [anon_sym_PLUS_PLUS] = ACTIONS(3874), + [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym___alignof__] = ACTIONS(3872), + [anon_sym___alignof] = ACTIONS(3872), + [anon_sym__alignof] = ACTIONS(3872), + [anon_sym_alignof] = ACTIONS(3872), + [anon_sym__Alignof] = ACTIONS(3872), + [anon_sym_offsetof] = ACTIONS(3872), + [anon_sym__Generic] = ACTIONS(3872), + [anon_sym_typename] = ACTIONS(3872), + [anon_sym_asm] = ACTIONS(3872), + [anon_sym___asm__] = ACTIONS(3872), + [anon_sym___asm] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3874), + [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(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3872), + [sym_false] = ACTIONS(3872), + [anon_sym_NULL] = ACTIONS(3872), + [anon_sym_nullptr] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3872), + [anon_sym_decltype] = ACTIONS(3872), + [anon_sym_explicit] = ACTIONS(3872), + [anon_sym_template] = ACTIONS(3872), + [anon_sym_operator] = ACTIONS(3872), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_delete] = ACTIONS(3872), + [anon_sym_throw] = ACTIONS(3872), + [anon_sym_namespace] = ACTIONS(3872), + [anon_sym_static_assert] = ACTIONS(3872), + [anon_sym_concept] = ACTIONS(3872), + [anon_sym_co_return] = ACTIONS(3872), + [anon_sym_co_yield] = ACTIONS(3872), + [anon_sym_R_DQUOTE] = ACTIONS(3874), + [anon_sym_LR_DQUOTE] = ACTIONS(3874), + [anon_sym_uR_DQUOTE] = ACTIONS(3874), + [anon_sym_UR_DQUOTE] = ACTIONS(3874), + [anon_sym_u8R_DQUOTE] = ACTIONS(3874), + [anon_sym_co_await] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3872), + [anon_sym_requires] = ACTIONS(3872), + [anon_sym_CARET_CARET] = ACTIONS(3874), + [anon_sym_LBRACK_COLON] = ACTIONS(3874), + [sym_this] = ACTIONS(3872), }, - [STATE(1226)] = { - [sym_expression] = STATE(4779), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4913), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(680)] = { + [sym_identifier] = ACTIONS(3880), + [aux_sym_preproc_include_token1] = ACTIONS(3880), + [aux_sym_preproc_def_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), + [sym_preproc_directive] = ACTIONS(3880), + [anon_sym_LPAREN2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3880), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym___extension__] = ACTIONS(3880), + [anon_sym_typedef] = ACTIONS(3880), + [anon_sym_virtual] = ACTIONS(3880), + [anon_sym_extern] = ACTIONS(3880), + [anon_sym___attribute__] = ACTIONS(3880), + [anon_sym___attribute] = ACTIONS(3880), + [anon_sym_using] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), + [anon_sym___declspec] = ACTIONS(3880), + [anon_sym___based] = ACTIONS(3880), + [anon_sym___cdecl] = ACTIONS(3880), + [anon_sym___clrcall] = ACTIONS(3880), + [anon_sym___stdcall] = ACTIONS(3880), + [anon_sym___fastcall] = ACTIONS(3880), + [anon_sym___thiscall] = ACTIONS(3880), + [anon_sym___vectorcall] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3880), + [anon_sym_unsigned] = ACTIONS(3880), + [anon_sym_long] = ACTIONS(3880), + [anon_sym_short] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_static] = ACTIONS(3880), + [anon_sym_register] = ACTIONS(3880), + [anon_sym_inline] = ACTIONS(3880), + [anon_sym___inline] = ACTIONS(3880), + [anon_sym___inline__] = ACTIONS(3880), + [anon_sym___forceinline] = ACTIONS(3880), + [anon_sym_thread_local] = ACTIONS(3880), + [anon_sym___thread] = ACTIONS(3880), + [anon_sym_const] = ACTIONS(3880), + [anon_sym_constexpr] = ACTIONS(3880), + [anon_sym_volatile] = ACTIONS(3880), + [anon_sym_restrict] = ACTIONS(3880), + [anon_sym___restrict__] = ACTIONS(3880), + [anon_sym__Atomic] = ACTIONS(3880), + [anon_sym__Noreturn] = ACTIONS(3880), + [anon_sym_noreturn] = ACTIONS(3880), + [anon_sym__Nonnull] = ACTIONS(3880), + [anon_sym_mutable] = ACTIONS(3880), + [anon_sym_constinit] = ACTIONS(3880), + [anon_sym_consteval] = ACTIONS(3880), + [anon_sym_alignas] = ACTIONS(3880), + [anon_sym__Alignas] = ACTIONS(3880), + [sym_primitive_type] = ACTIONS(3880), + [anon_sym_enum] = ACTIONS(3880), + [anon_sym_class] = ACTIONS(3880), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_union] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3880), + [anon_sym_case] = ACTIONS(3880), + [anon_sym_default] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_do] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_goto] = ACTIONS(3880), + [anon_sym___try] = ACTIONS(3880), + [anon_sym___leave] = ACTIONS(3880), + [anon_sym_not] = ACTIONS(3880), + [anon_sym_compl] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_sizeof] = ACTIONS(3880), + [anon_sym___alignof__] = ACTIONS(3880), + [anon_sym___alignof] = ACTIONS(3880), + [anon_sym__alignof] = ACTIONS(3880), + [anon_sym_alignof] = ACTIONS(3880), + [anon_sym__Alignof] = ACTIONS(3880), + [anon_sym_offsetof] = ACTIONS(3880), + [anon_sym__Generic] = ACTIONS(3880), + [anon_sym_typename] = ACTIONS(3880), + [anon_sym_asm] = ACTIONS(3880), + [anon_sym___asm__] = ACTIONS(3880), + [anon_sym___asm] = ACTIONS(3880), + [sym_number_literal] = ACTIONS(3882), + [anon_sym_L_SQUOTE] = ACTIONS(3882), + [anon_sym_u_SQUOTE] = ACTIONS(3882), + [anon_sym_U_SQUOTE] = ACTIONS(3882), + [anon_sym_u8_SQUOTE] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3882), + [anon_sym_L_DQUOTE] = ACTIONS(3882), + [anon_sym_u_DQUOTE] = ACTIONS(3882), + [anon_sym_U_DQUOTE] = ACTIONS(3882), + [anon_sym_u8_DQUOTE] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3880), + [anon_sym_explicit] = ACTIONS(3880), + [anon_sym_template] = ACTIONS(3880), + [anon_sym_operator] = ACTIONS(3880), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_delete] = ACTIONS(3880), + [anon_sym_throw] = ACTIONS(3880), + [anon_sym_namespace] = ACTIONS(3880), + [anon_sym_static_assert] = ACTIONS(3880), + [anon_sym_concept] = ACTIONS(3880), + [anon_sym_co_return] = ACTIONS(3880), + [anon_sym_co_yield] = 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(3880), + [anon_sym_new] = ACTIONS(3880), + [anon_sym_requires] = ACTIONS(3880), + [anon_sym_CARET_CARET] = ACTIONS(3882), + [anon_sym_LBRACK_COLON] = ACTIONS(3882), + [sym_this] = ACTIONS(3880), }, - [STATE(1227)] = { - [sym_expression] = STATE(4572), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4833), - [anon_sym_LPAREN2] = ACTIONS(4915), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(681)] = { + [sym_identifier] = ACTIONS(3868), + [aux_sym_preproc_include_token1] = ACTIONS(3868), + [aux_sym_preproc_def_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), + [sym_preproc_directive] = ACTIONS(3868), + [anon_sym_LPAREN2] = ACTIONS(3870), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3868), + [anon_sym_PLUS] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3870), + [anon_sym_AMP_AMP] = ACTIONS(3870), + [anon_sym_AMP] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym___extension__] = ACTIONS(3868), + [anon_sym_typedef] = ACTIONS(3868), + [anon_sym_virtual] = ACTIONS(3868), + [anon_sym_extern] = ACTIONS(3868), + [anon_sym___attribute__] = ACTIONS(3868), + [anon_sym___attribute] = ACTIONS(3868), + [anon_sym_using] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), + [anon_sym___declspec] = ACTIONS(3868), + [anon_sym___based] = ACTIONS(3868), + [anon_sym___cdecl] = ACTIONS(3868), + [anon_sym___clrcall] = ACTIONS(3868), + [anon_sym___stdcall] = ACTIONS(3868), + [anon_sym___fastcall] = ACTIONS(3868), + [anon_sym___thiscall] = ACTIONS(3868), + [anon_sym___vectorcall] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_RBRACE] = ACTIONS(3870), + [anon_sym_signed] = ACTIONS(3868), + [anon_sym_unsigned] = ACTIONS(3868), + [anon_sym_long] = ACTIONS(3868), + [anon_sym_short] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3868), + [anon_sym_static] = ACTIONS(3868), + [anon_sym_register] = ACTIONS(3868), + [anon_sym_inline] = ACTIONS(3868), + [anon_sym___inline] = ACTIONS(3868), + [anon_sym___inline__] = ACTIONS(3868), + [anon_sym___forceinline] = ACTIONS(3868), + [anon_sym_thread_local] = ACTIONS(3868), + [anon_sym___thread] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(3868), + [anon_sym_constexpr] = ACTIONS(3868), + [anon_sym_volatile] = ACTIONS(3868), + [anon_sym_restrict] = ACTIONS(3868), + [anon_sym___restrict__] = ACTIONS(3868), + [anon_sym__Atomic] = ACTIONS(3868), + [anon_sym__Noreturn] = ACTIONS(3868), + [anon_sym_noreturn] = ACTIONS(3868), + [anon_sym__Nonnull] = ACTIONS(3868), + [anon_sym_mutable] = ACTIONS(3868), + [anon_sym_constinit] = ACTIONS(3868), + [anon_sym_consteval] = ACTIONS(3868), + [anon_sym_alignas] = ACTIONS(3868), + [anon_sym__Alignas] = ACTIONS(3868), + [sym_primitive_type] = ACTIONS(3868), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3868), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_union] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3868), + [anon_sym_case] = ACTIONS(3868), + [anon_sym_default] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_do] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_goto] = ACTIONS(3868), + [anon_sym___try] = ACTIONS(3868), + [anon_sym___leave] = ACTIONS(3868), + [anon_sym_not] = ACTIONS(3868), + [anon_sym_compl] = ACTIONS(3868), + [anon_sym_DASH_DASH] = ACTIONS(3870), + [anon_sym_PLUS_PLUS] = ACTIONS(3870), + [anon_sym_sizeof] = ACTIONS(3868), + [anon_sym___alignof__] = ACTIONS(3868), + [anon_sym___alignof] = ACTIONS(3868), + [anon_sym__alignof] = ACTIONS(3868), + [anon_sym_alignof] = ACTIONS(3868), + [anon_sym__Alignof] = ACTIONS(3868), + [anon_sym_offsetof] = ACTIONS(3868), + [anon_sym__Generic] = ACTIONS(3868), + [anon_sym_typename] = ACTIONS(3868), + [anon_sym_asm] = ACTIONS(3868), + [anon_sym___asm__] = ACTIONS(3868), + [anon_sym___asm] = ACTIONS(3868), + [sym_number_literal] = ACTIONS(3870), + [anon_sym_L_SQUOTE] = ACTIONS(3870), + [anon_sym_u_SQUOTE] = ACTIONS(3870), + [anon_sym_U_SQUOTE] = ACTIONS(3870), + [anon_sym_u8_SQUOTE] = ACTIONS(3870), + [anon_sym_SQUOTE] = ACTIONS(3870), + [anon_sym_L_DQUOTE] = ACTIONS(3870), + [anon_sym_u_DQUOTE] = ACTIONS(3870), + [anon_sym_U_DQUOTE] = ACTIONS(3870), + [anon_sym_u8_DQUOTE] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [anon_sym_NULL] = ACTIONS(3868), + [anon_sym_nullptr] = ACTIONS(3868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3868), + [anon_sym_decltype] = ACTIONS(3868), + [anon_sym_explicit] = ACTIONS(3868), + [anon_sym_template] = ACTIONS(3868), + [anon_sym_operator] = ACTIONS(3868), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3868), + [anon_sym_throw] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_static_assert] = ACTIONS(3868), + [anon_sym_concept] = ACTIONS(3868), + [anon_sym_co_return] = ACTIONS(3868), + [anon_sym_co_yield] = ACTIONS(3868), + [anon_sym_R_DQUOTE] = ACTIONS(3870), + [anon_sym_LR_DQUOTE] = ACTIONS(3870), + [anon_sym_uR_DQUOTE] = ACTIONS(3870), + [anon_sym_UR_DQUOTE] = ACTIONS(3870), + [anon_sym_u8R_DQUOTE] = ACTIONS(3870), + [anon_sym_co_await] = ACTIONS(3868), + [anon_sym_new] = ACTIONS(3868), + [anon_sym_requires] = ACTIONS(3868), + [anon_sym_CARET_CARET] = ACTIONS(3870), + [anon_sym_LBRACK_COLON] = ACTIONS(3870), + [sym_this] = ACTIONS(3868), }, - [STATE(1228)] = { - [sym_expression] = STATE(3346), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), - [anon_sym_LPAREN2] = ACTIONS(4917), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(682)] = { + [sym_preproc_def] = STATE(686), + [sym_preproc_function_def] = STATE(686), + [sym_preproc_call] = STATE(686), + [sym_preproc_if_in_field_declaration_list] = STATE(686), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(686), + [sym_type_definition] = STATE(686), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(686), + [sym_field_declaration] = STATE(686), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(686), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(686), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(686), + [sym_operator_cast_declaration] = STATE(686), + [sym_constructor_or_destructor_definition] = STATE(686), + [sym_constructor_or_destructor_declaration] = STATE(686), + [sym_friend_declaration] = STATE(686), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(686), + [sym_alias_declaration] = STATE(686), + [sym_static_assert_declaration] = STATE(686), + [sym_consteval_block_declaration] = STATE(686), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(686), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4478), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1229)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_RBRACK] = ACTIONS(4919), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(683)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), }, - [STATE(1230)] = { - [sym_expression] = STATE(3358), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(684)] = { + [sym_identifier] = ACTIONS(3692), + [aux_sym_preproc_include_token1] = ACTIONS(3692), + [aux_sym_preproc_def_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), + [sym_preproc_directive] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym___extension__] = ACTIONS(3692), + [anon_sym_typedef] = ACTIONS(3692), + [anon_sym_virtual] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3692), + [anon_sym___attribute__] = ACTIONS(3692), + [anon_sym___attribute] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), + [anon_sym___declspec] = ACTIONS(3692), + [anon_sym___based] = ACTIONS(3692), + [anon_sym___cdecl] = ACTIONS(3692), + [anon_sym___clrcall] = ACTIONS(3692), + [anon_sym___stdcall] = ACTIONS(3692), + [anon_sym___fastcall] = ACTIONS(3692), + [anon_sym___thiscall] = ACTIONS(3692), + [anon_sym___vectorcall] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_signed] = ACTIONS(3692), + [anon_sym_unsigned] = ACTIONS(3692), + [anon_sym_long] = ACTIONS(3692), + [anon_sym_short] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_register] = ACTIONS(3692), + [anon_sym_inline] = ACTIONS(3692), + [anon_sym___inline] = ACTIONS(3692), + [anon_sym___inline__] = ACTIONS(3692), + [anon_sym___forceinline] = ACTIONS(3692), + [anon_sym_thread_local] = ACTIONS(3692), + [anon_sym___thread] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym___restrict__] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym__Noreturn] = ACTIONS(3692), + [anon_sym_noreturn] = ACTIONS(3692), + [anon_sym__Nonnull] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_alignas] = ACTIONS(3692), + [anon_sym__Alignas] = ACTIONS(3692), + [sym_primitive_type] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3692), + [anon_sym_union] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3692), + [anon_sym___leave] = ACTIONS(3692), + [anon_sym_not] = ACTIONS(3692), + [anon_sym_compl] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_sizeof] = ACTIONS(3692), + [anon_sym___alignof__] = ACTIONS(3692), + [anon_sym___alignof] = ACTIONS(3692), + [anon_sym__alignof] = ACTIONS(3692), + [anon_sym_alignof] = ACTIONS(3692), + [anon_sym__Alignof] = ACTIONS(3692), + [anon_sym_offsetof] = ACTIONS(3692), + [anon_sym__Generic] = ACTIONS(3692), + [anon_sym_typename] = ACTIONS(3692), + [anon_sym_asm] = ACTIONS(3692), + [anon_sym___asm__] = ACTIONS(3692), + [anon_sym___asm] = ACTIONS(3692), + [sym_number_literal] = ACTIONS(3694), + [anon_sym_L_SQUOTE] = ACTIONS(3694), + [anon_sym_u_SQUOTE] = ACTIONS(3694), + [anon_sym_U_SQUOTE] = ACTIONS(3694), + [anon_sym_u8_SQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_L_DQUOTE] = ACTIONS(3694), + [anon_sym_u_DQUOTE] = ACTIONS(3694), + [anon_sym_U_DQUOTE] = ACTIONS(3694), + [anon_sym_u8_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [anon_sym_NULL] = ACTIONS(3692), + [anon_sym_nullptr] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_explicit] = ACTIONS(3692), + [anon_sym_template] = ACTIONS(3692), + [anon_sym_operator] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_static_assert] = ACTIONS(3692), + [anon_sym_concept] = ACTIONS(3692), + [anon_sym_co_return] = ACTIONS(3692), + [anon_sym_co_yield] = ACTIONS(3692), + [anon_sym_R_DQUOTE] = ACTIONS(3694), + [anon_sym_LR_DQUOTE] = ACTIONS(3694), + [anon_sym_uR_DQUOTE] = ACTIONS(3694), + [anon_sym_UR_DQUOTE] = ACTIONS(3694), + [anon_sym_u8R_DQUOTE] = ACTIONS(3694), + [anon_sym_co_await] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_requires] = ACTIONS(3692), + [anon_sym_CARET_CARET] = ACTIONS(3694), + [anon_sym_LBRACK_COLON] = ACTIONS(3694), + [sym_this] = ACTIONS(3692), }, - [STATE(1231)] = { - [sym_expression] = STATE(2935), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(685)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1232)] = { - [sym_expression] = STATE(4382), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4921), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(686)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1233)] = { - [sym_expression] = STATE(4676), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(687)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_include_token1] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym___cdecl] = ACTIONS(3876), + [anon_sym___clrcall] = ACTIONS(3876), + [anon_sym___stdcall] = ACTIONS(3876), + [anon_sym___fastcall] = ACTIONS(3876), + [anon_sym___thiscall] = ACTIONS(3876), + [anon_sym___vectorcall] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_case] = ACTIONS(3876), + [anon_sym_default] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_namespace] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_concept] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1234)] = { - [sym_expression] = STATE(4377), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(688)] = { + [sym_preproc_def] = STATE(689), + [sym_preproc_function_def] = STATE(689), + [sym_preproc_call] = STATE(689), + [sym_preproc_if_in_field_declaration_list] = STATE(689), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(689), + [sym_type_definition] = STATE(689), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(689), + [sym_field_declaration] = STATE(689), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(689), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(689), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(689), + [sym_operator_cast_declaration] = STATE(689), + [sym_constructor_or_destructor_definition] = STATE(689), + [sym_constructor_or_destructor_declaration] = STATE(689), + [sym_friend_declaration] = STATE(689), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(689), + [sym_alias_declaration] = STATE(689), + [sym_static_assert_declaration] = STATE(689), + [sym_consteval_block_declaration] = STATE(689), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(689), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1235)] = { - [sym_expression] = STATE(3740), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(689)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1236)] = { - [sym_expression] = STATE(4357), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(690)] = { + [sym_preproc_def] = STATE(692), + [sym_preproc_function_def] = STATE(692), + [sym_preproc_call] = STATE(692), + [sym_preproc_if_in_field_declaration_list] = STATE(692), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(692), + [sym_type_definition] = STATE(692), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(692), + [sym_field_declaration] = STATE(692), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(692), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(692), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(692), + [sym_operator_cast_declaration] = STATE(692), + [sym_constructor_or_destructor_definition] = STATE(692), + [sym_constructor_or_destructor_declaration] = STATE(692), + [sym_friend_declaration] = STATE(692), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(692), + [sym_alias_declaration] = STATE(692), + [sym_static_assert_declaration] = STATE(692), + [sym_consteval_block_declaration] = STATE(692), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(692), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1237)] = { - [sym_expression] = STATE(4374), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(691)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_include_token1] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym___cdecl] = ACTIONS(3884), + [anon_sym___clrcall] = ACTIONS(3884), + [anon_sym___stdcall] = ACTIONS(3884), + [anon_sym___fastcall] = ACTIONS(3884), + [anon_sym___thiscall] = ACTIONS(3884), + [anon_sym___vectorcall] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_case] = ACTIONS(3884), + [anon_sym_default] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_goto] = ACTIONS(3884), + [anon_sym___try] = ACTIONS(3884), + [anon_sym___leave] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3884), + [anon_sym_compl] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_sizeof] = ACTIONS(3884), + [anon_sym___alignof__] = ACTIONS(3884), + [anon_sym___alignof] = ACTIONS(3884), + [anon_sym__alignof] = ACTIONS(3884), + [anon_sym_alignof] = ACTIONS(3884), + [anon_sym__Alignof] = ACTIONS(3884), + [anon_sym_offsetof] = ACTIONS(3884), + [anon_sym__Generic] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [anon_sym_asm] = ACTIONS(3884), + [anon_sym___asm__] = ACTIONS(3884), + [anon_sym___asm] = ACTIONS(3884), + [sym_number_literal] = ACTIONS(3886), + [anon_sym_L_SQUOTE] = ACTIONS(3886), + [anon_sym_u_SQUOTE] = ACTIONS(3886), + [anon_sym_U_SQUOTE] = ACTIONS(3886), + [anon_sym_u8_SQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [anon_sym_L_DQUOTE] = ACTIONS(3886), + [anon_sym_u_DQUOTE] = ACTIONS(3886), + [anon_sym_U_DQUOTE] = ACTIONS(3886), + [anon_sym_u8_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_true] = ACTIONS(3884), + [sym_false] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_nullptr] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_concept] = ACTIONS(3884), + [anon_sym_co_return] = ACTIONS(3884), + [anon_sym_co_yield] = ACTIONS(3884), + [anon_sym_R_DQUOTE] = ACTIONS(3886), + [anon_sym_LR_DQUOTE] = ACTIONS(3886), + [anon_sym_uR_DQUOTE] = ACTIONS(3886), + [anon_sym_UR_DQUOTE] = ACTIONS(3886), + [anon_sym_u8R_DQUOTE] = ACTIONS(3886), + [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_requires] = ACTIONS(3884), + [anon_sym_CARET_CARET] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [sym_this] = ACTIONS(3884), }, - [STATE(1238)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(692)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1239)] = { - [sym_expression] = STATE(4375), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(693)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_include_token1] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1240)] = { - [sym_expression] = STATE(4379), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(694)] = { + [sym_preproc_def] = STATE(696), + [sym_preproc_function_def] = STATE(696), + [sym_preproc_call] = STATE(696), + [sym_preproc_if_in_field_declaration_list] = STATE(696), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(696), + [sym_type_definition] = STATE(696), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(696), + [sym_field_declaration] = STATE(696), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(696), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(696), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(696), + [sym_operator_cast_declaration] = STATE(696), + [sym_constructor_or_destructor_definition] = STATE(696), + [sym_constructor_or_destructor_declaration] = STATE(696), + [sym_friend_declaration] = STATE(696), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(696), + [sym_alias_declaration] = STATE(696), + [sym_static_assert_declaration] = STATE(696), + [sym_consteval_block_declaration] = STATE(696), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(696), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1241)] = { - [sym_expression] = STATE(4381), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(695)] = { + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, - [STATE(1242)] = { - [sym_expression] = STATE(4700), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(696)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1243)] = { - [sym_expression] = STATE(4363), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(697)] = { + [ts_builtin_sym_end] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_export] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), }, - [STATE(1244)] = { - [sym_expression] = STATE(3572), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(698)] = { + [ts_builtin_sym_end] = ACTIONS(4500), + [sym_identifier] = ACTIONS(4502), + [aux_sym_preproc_include_token1] = ACTIONS(4502), + [aux_sym_preproc_def_token1] = ACTIONS(4502), + [aux_sym_preproc_if_token1] = ACTIONS(4502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4502), + [sym_preproc_directive] = ACTIONS(4502), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_BANG] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4502), + [anon_sym_PLUS] = ACTIONS(4502), + [anon_sym_STAR] = ACTIONS(4500), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_AMP] = ACTIONS(4502), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym___extension__] = ACTIONS(4502), + [anon_sym_typedef] = ACTIONS(4502), + [anon_sym_virtual] = ACTIONS(4502), + [anon_sym_extern] = ACTIONS(4502), + [anon_sym___attribute__] = ACTIONS(4502), + [anon_sym___attribute] = ACTIONS(4502), + [anon_sym_using] = ACTIONS(4502), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4500), + [anon_sym___declspec] = ACTIONS(4502), + [anon_sym___based] = ACTIONS(4502), + [anon_sym___cdecl] = ACTIONS(4502), + [anon_sym___clrcall] = ACTIONS(4502), + [anon_sym___stdcall] = ACTIONS(4502), + [anon_sym___fastcall] = ACTIONS(4502), + [anon_sym___thiscall] = ACTIONS(4502), + [anon_sym___vectorcall] = ACTIONS(4502), + [anon_sym_LBRACE] = ACTIONS(4500), + [anon_sym_signed] = ACTIONS(4502), + [anon_sym_unsigned] = ACTIONS(4502), + [anon_sym_long] = ACTIONS(4502), + [anon_sym_short] = ACTIONS(4502), + [anon_sym_LBRACK] = ACTIONS(4502), + [anon_sym_static] = ACTIONS(4502), + [anon_sym_register] = ACTIONS(4502), + [anon_sym_inline] = ACTIONS(4502), + [anon_sym___inline] = ACTIONS(4502), + [anon_sym___inline__] = ACTIONS(4502), + [anon_sym___forceinline] = ACTIONS(4502), + [anon_sym_thread_local] = ACTIONS(4502), + [anon_sym___thread] = ACTIONS(4502), + [anon_sym_const] = ACTIONS(4502), + [anon_sym_constexpr] = ACTIONS(4502), + [anon_sym_volatile] = ACTIONS(4502), + [anon_sym_restrict] = ACTIONS(4502), + [anon_sym___restrict__] = ACTIONS(4502), + [anon_sym__Atomic] = ACTIONS(4502), + [anon_sym__Noreturn] = ACTIONS(4502), + [anon_sym_noreturn] = ACTIONS(4502), + [anon_sym__Nonnull] = ACTIONS(4502), + [anon_sym_mutable] = ACTIONS(4502), + [anon_sym_constinit] = ACTIONS(4502), + [anon_sym_consteval] = ACTIONS(4502), + [anon_sym_alignas] = ACTIONS(4502), + [anon_sym__Alignas] = ACTIONS(4502), + [sym_primitive_type] = ACTIONS(4502), + [anon_sym_enum] = ACTIONS(4502), + [anon_sym_class] = ACTIONS(4502), + [anon_sym_struct] = ACTIONS(4502), + [anon_sym_union] = ACTIONS(4502), + [anon_sym_if] = ACTIONS(4502), + [anon_sym_switch] = ACTIONS(4502), + [anon_sym_case] = ACTIONS(4502), + [anon_sym_default] = ACTIONS(4502), + [anon_sym_while] = ACTIONS(4502), + [anon_sym_do] = ACTIONS(4502), + [anon_sym_for] = ACTIONS(4502), + [anon_sym_return] = ACTIONS(4502), + [anon_sym_break] = ACTIONS(4502), + [anon_sym_continue] = ACTIONS(4502), + [anon_sym_goto] = ACTIONS(4502), + [anon_sym_not] = ACTIONS(4502), + [anon_sym_compl] = ACTIONS(4502), + [anon_sym_DASH_DASH] = ACTIONS(4500), + [anon_sym_PLUS_PLUS] = ACTIONS(4500), + [anon_sym_sizeof] = ACTIONS(4502), + [anon_sym___alignof__] = ACTIONS(4502), + [anon_sym___alignof] = ACTIONS(4502), + [anon_sym__alignof] = ACTIONS(4502), + [anon_sym_alignof] = ACTIONS(4502), + [anon_sym__Alignof] = ACTIONS(4502), + [anon_sym_offsetof] = ACTIONS(4502), + [anon_sym__Generic] = ACTIONS(4502), + [anon_sym_typename] = ACTIONS(4502), + [anon_sym_asm] = ACTIONS(4502), + [anon_sym___asm__] = ACTIONS(4502), + [anon_sym___asm] = ACTIONS(4502), + [sym_number_literal] = ACTIONS(4500), + [anon_sym_L_SQUOTE] = ACTIONS(4500), + [anon_sym_u_SQUOTE] = ACTIONS(4500), + [anon_sym_U_SQUOTE] = ACTIONS(4500), + [anon_sym_u8_SQUOTE] = ACTIONS(4500), + [anon_sym_SQUOTE] = ACTIONS(4500), + [anon_sym_L_DQUOTE] = ACTIONS(4500), + [anon_sym_u_DQUOTE] = ACTIONS(4500), + [anon_sym_U_DQUOTE] = ACTIONS(4500), + [anon_sym_u8_DQUOTE] = ACTIONS(4500), + [anon_sym_DQUOTE] = ACTIONS(4500), + [sym_true] = ACTIONS(4502), + [sym_false] = ACTIONS(4502), + [anon_sym_NULL] = ACTIONS(4502), + [anon_sym_nullptr] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4502), + [anon_sym_decltype] = ACTIONS(4502), + [anon_sym_explicit] = ACTIONS(4502), + [anon_sym_export] = ACTIONS(4502), + [anon_sym_module] = ACTIONS(4502), + [anon_sym_import] = ACTIONS(4502), + [anon_sym_template] = ACTIONS(4502), + [anon_sym_operator] = ACTIONS(4502), + [anon_sym_try] = ACTIONS(4502), + [anon_sym_delete] = ACTIONS(4502), + [anon_sym_throw] = ACTIONS(4502), + [anon_sym_namespace] = ACTIONS(4502), + [anon_sym_static_assert] = ACTIONS(4502), + [anon_sym_concept] = ACTIONS(4502), + [anon_sym_co_return] = ACTIONS(4502), + [anon_sym_co_yield] = ACTIONS(4502), + [anon_sym_R_DQUOTE] = ACTIONS(4500), + [anon_sym_LR_DQUOTE] = ACTIONS(4500), + [anon_sym_uR_DQUOTE] = ACTIONS(4500), + [anon_sym_UR_DQUOTE] = ACTIONS(4500), + [anon_sym_u8R_DQUOTE] = ACTIONS(4500), + [anon_sym_co_await] = ACTIONS(4502), + [anon_sym_new] = ACTIONS(4502), + [anon_sym_requires] = ACTIONS(4502), + [anon_sym_CARET_CARET] = ACTIONS(4500), + [anon_sym_LBRACK_COLON] = ACTIONS(4500), + [sym_this] = ACTIONS(4502), }, - [STATE(1245)] = { - [sym_expression] = STATE(4370), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(699)] = { + [sym_preproc_def] = STATE(702), + [sym_preproc_function_def] = STATE(702), + [sym_preproc_call] = STATE(702), + [sym_preproc_if_in_field_declaration_list] = STATE(702), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(702), + [sym_type_definition] = STATE(702), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(702), + [sym_field_declaration] = STATE(702), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(702), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(702), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(702), + [sym_operator_cast_declaration] = STATE(702), + [sym_constructor_or_destructor_definition] = STATE(702), + [sym_constructor_or_destructor_declaration] = STATE(702), + [sym_friend_declaration] = STATE(702), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(702), + [sym_alias_declaration] = STATE(702), + [sym_static_assert_declaration] = STATE(702), + [sym_consteval_block_declaration] = STATE(702), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(702), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4504), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1246)] = { - [sym_expression] = STATE(4347), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(700)] = { + [sym_identifier] = ACTIONS(3700), + [aux_sym_preproc_include_token1] = ACTIONS(3700), + [aux_sym_preproc_def_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token1] = ACTIONS(3700), + [aux_sym_preproc_if_token2] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym___attribute] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym___based] = ACTIONS(3700), + [anon_sym___cdecl] = ACTIONS(3700), + [anon_sym___clrcall] = ACTIONS(3700), + [anon_sym___stdcall] = ACTIONS(3700), + [anon_sym___fastcall] = ACTIONS(3700), + [anon_sym___thiscall] = ACTIONS(3700), + [anon_sym___vectorcall] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym__Nonnull] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym__Alignas] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym___try] = ACTIONS(3700), + [anon_sym___leave] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym___asm] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_explicit] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_static_assert] = ACTIONS(3700), + [anon_sym_concept] = ACTIONS(3700), + [anon_sym_co_return] = ACTIONS(3700), + [anon_sym_co_yield] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [anon_sym_CARET_CARET] = ACTIONS(3702), + [anon_sym_LBRACK_COLON] = ACTIONS(3702), + [sym_this] = ACTIONS(3700), }, - [STATE(1247)] = { - [sym_expression] = STATE(4701), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(701)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(1248)] = { - [sym_expression] = STATE(4822), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(702)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4508), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1249)] = { - [sym_expression] = STATE(3813), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(703)] = { + [ts_builtin_sym_end] = ACTIONS(3904), + [sym_identifier] = ACTIONS(3902), + [aux_sym_preproc_include_token1] = ACTIONS(3902), + [aux_sym_preproc_def_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), + [sym_preproc_directive] = ACTIONS(3902), + [anon_sym_LPAREN2] = ACTIONS(3904), + [anon_sym_BANG] = ACTIONS(3904), + [anon_sym_TILDE] = ACTIONS(3904), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_PLUS] = ACTIONS(3902), + [anon_sym_STAR] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3902), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym___extension__] = ACTIONS(3902), + [anon_sym_typedef] = ACTIONS(3902), + [anon_sym_virtual] = ACTIONS(3902), + [anon_sym_extern] = ACTIONS(3902), + [anon_sym___attribute__] = ACTIONS(3902), + [anon_sym___attribute] = ACTIONS(3902), + [anon_sym_using] = ACTIONS(3902), + [anon_sym_COLON_COLON] = ACTIONS(3904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), + [anon_sym___declspec] = ACTIONS(3902), + [anon_sym___based] = ACTIONS(3902), + [anon_sym___cdecl] = ACTIONS(3902), + [anon_sym___clrcall] = ACTIONS(3902), + [anon_sym___stdcall] = ACTIONS(3902), + [anon_sym___fastcall] = ACTIONS(3902), + [anon_sym___thiscall] = ACTIONS(3902), + [anon_sym___vectorcall] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3904), + [anon_sym_signed] = ACTIONS(3902), + [anon_sym_unsigned] = ACTIONS(3902), + [anon_sym_long] = ACTIONS(3902), + [anon_sym_short] = ACTIONS(3902), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_static] = ACTIONS(3902), + [anon_sym_register] = ACTIONS(3902), + [anon_sym_inline] = ACTIONS(3902), + [anon_sym___inline] = ACTIONS(3902), + [anon_sym___inline__] = ACTIONS(3902), + [anon_sym___forceinline] = ACTIONS(3902), + [anon_sym_thread_local] = ACTIONS(3902), + [anon_sym___thread] = ACTIONS(3902), + [anon_sym_const] = ACTIONS(3902), + [anon_sym_constexpr] = ACTIONS(3902), + [anon_sym_volatile] = ACTIONS(3902), + [anon_sym_restrict] = ACTIONS(3902), + [anon_sym___restrict__] = ACTIONS(3902), + [anon_sym__Atomic] = ACTIONS(3902), + [anon_sym__Noreturn] = ACTIONS(3902), + [anon_sym_noreturn] = ACTIONS(3902), + [anon_sym__Nonnull] = ACTIONS(3902), + [anon_sym_mutable] = ACTIONS(3902), + [anon_sym_constinit] = ACTIONS(3902), + [anon_sym_consteval] = ACTIONS(3902), + [anon_sym_alignas] = ACTIONS(3902), + [anon_sym__Alignas] = ACTIONS(3902), + [sym_primitive_type] = ACTIONS(3902), + [anon_sym_enum] = ACTIONS(3902), + [anon_sym_class] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3902), + [anon_sym_union] = ACTIONS(3902), + [anon_sym_if] = ACTIONS(3902), + [anon_sym_switch] = ACTIONS(3902), + [anon_sym_case] = ACTIONS(3902), + [anon_sym_default] = ACTIONS(3902), + [anon_sym_while] = ACTIONS(3902), + [anon_sym_do] = ACTIONS(3902), + [anon_sym_for] = ACTIONS(3902), + [anon_sym_return] = ACTIONS(3902), + [anon_sym_break] = ACTIONS(3902), + [anon_sym_continue] = ACTIONS(3902), + [anon_sym_goto] = ACTIONS(3902), + [anon_sym_not] = ACTIONS(3902), + [anon_sym_compl] = ACTIONS(3902), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3902), + [anon_sym___alignof__] = ACTIONS(3902), + [anon_sym___alignof] = ACTIONS(3902), + [anon_sym__alignof] = ACTIONS(3902), + [anon_sym_alignof] = ACTIONS(3902), + [anon_sym__Alignof] = ACTIONS(3902), + [anon_sym_offsetof] = ACTIONS(3902), + [anon_sym__Generic] = ACTIONS(3902), + [anon_sym_typename] = ACTIONS(3902), + [anon_sym_asm] = ACTIONS(3902), + [anon_sym___asm__] = ACTIONS(3902), + [anon_sym___asm] = ACTIONS(3902), + [sym_number_literal] = ACTIONS(3904), + [anon_sym_L_SQUOTE] = ACTIONS(3904), + [anon_sym_u_SQUOTE] = ACTIONS(3904), + [anon_sym_U_SQUOTE] = ACTIONS(3904), + [anon_sym_u8_SQUOTE] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_L_DQUOTE] = ACTIONS(3904), + [anon_sym_u_DQUOTE] = ACTIONS(3904), + [anon_sym_U_DQUOTE] = ACTIONS(3904), + [anon_sym_u8_DQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [sym_true] = ACTIONS(3902), + [sym_false] = ACTIONS(3902), + [anon_sym_NULL] = ACTIONS(3902), + [anon_sym_nullptr] = ACTIONS(3902), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3902), + [anon_sym_decltype] = ACTIONS(3902), + [anon_sym_explicit] = ACTIONS(3902), + [anon_sym_export] = ACTIONS(3902), + [anon_sym_module] = ACTIONS(3902), + [anon_sym_import] = ACTIONS(3902), + [anon_sym_template] = ACTIONS(3902), + [anon_sym_operator] = ACTIONS(3902), + [anon_sym_try] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3902), + [anon_sym_throw] = ACTIONS(3902), + [anon_sym_namespace] = ACTIONS(3902), + [anon_sym_static_assert] = ACTIONS(3902), + [anon_sym_concept] = ACTIONS(3902), + [anon_sym_co_return] = ACTIONS(3902), + [anon_sym_co_yield] = ACTIONS(3902), + [anon_sym_R_DQUOTE] = ACTIONS(3904), + [anon_sym_LR_DQUOTE] = ACTIONS(3904), + [anon_sym_uR_DQUOTE] = ACTIONS(3904), + [anon_sym_UR_DQUOTE] = ACTIONS(3904), + [anon_sym_u8R_DQUOTE] = ACTIONS(3904), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3902), + [anon_sym_requires] = ACTIONS(3902), + [anon_sym_CARET_CARET] = ACTIONS(3904), + [anon_sym_LBRACK_COLON] = ACTIONS(3904), + [sym_this] = ACTIONS(3902), }, - [STATE(1250)] = { - [sym_expression] = STATE(4702), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(704)] = { + [ts_builtin_sym_end] = ACTIONS(3908), + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_include_token1] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym___cdecl] = ACTIONS(3906), + [anon_sym___clrcall] = ACTIONS(3906), + [anon_sym___stdcall] = ACTIONS(3906), + [anon_sym___fastcall] = ACTIONS(3906), + [anon_sym___thiscall] = ACTIONS(3906), + [anon_sym___vectorcall] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3908), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3906), + [anon_sym_case] = ACTIONS(3906), + [anon_sym_default] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_break] = ACTIONS(3906), + [anon_sym_continue] = ACTIONS(3906), + [anon_sym_goto] = ACTIONS(3906), + [anon_sym_not] = ACTIONS(3906), + [anon_sym_compl] = ACTIONS(3906), + [anon_sym_DASH_DASH] = ACTIONS(3908), + [anon_sym_PLUS_PLUS] = ACTIONS(3908), + [anon_sym_sizeof] = ACTIONS(3906), + [anon_sym___alignof__] = ACTIONS(3906), + [anon_sym___alignof] = ACTIONS(3906), + [anon_sym__alignof] = ACTIONS(3906), + [anon_sym_alignof] = ACTIONS(3906), + [anon_sym__Alignof] = ACTIONS(3906), + [anon_sym_offsetof] = ACTIONS(3906), + [anon_sym__Generic] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [anon_sym_asm] = ACTIONS(3906), + [anon_sym___asm__] = ACTIONS(3906), + [anon_sym___asm] = ACTIONS(3906), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3908), + [anon_sym_u_SQUOTE] = ACTIONS(3908), + [anon_sym_U_SQUOTE] = ACTIONS(3908), + [anon_sym_u8_SQUOTE] = ACTIONS(3908), + [anon_sym_SQUOTE] = ACTIONS(3908), + [anon_sym_L_DQUOTE] = ACTIONS(3908), + [anon_sym_u_DQUOTE] = ACTIONS(3908), + [anon_sym_U_DQUOTE] = ACTIONS(3908), + [anon_sym_u8_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(3908), + [sym_true] = ACTIONS(3906), + [sym_false] = ACTIONS(3906), + [anon_sym_NULL] = ACTIONS(3906), + [anon_sym_nullptr] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_export] = ACTIONS(3906), + [anon_sym_module] = ACTIONS(3906), + [anon_sym_import] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3906), + [anon_sym_throw] = ACTIONS(3906), + [anon_sym_namespace] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_concept] = ACTIONS(3906), + [anon_sym_co_return] = ACTIONS(3906), + [anon_sym_co_yield] = ACTIONS(3906), + [anon_sym_R_DQUOTE] = ACTIONS(3908), + [anon_sym_LR_DQUOTE] = ACTIONS(3908), + [anon_sym_uR_DQUOTE] = ACTIONS(3908), + [anon_sym_UR_DQUOTE] = ACTIONS(3908), + [anon_sym_u8R_DQUOTE] = ACTIONS(3908), + [anon_sym_co_await] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_requires] = ACTIONS(3906), + [anon_sym_CARET_CARET] = ACTIONS(3908), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + [sym_this] = ACTIONS(3906), }, - [STATE(1251)] = { - [sym_expression] = STATE(3574), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(705)] = { + [sym_preproc_def] = STATE(708), + [sym_preproc_function_def] = STATE(708), + [sym_preproc_call] = STATE(708), + [sym_preproc_if_in_field_declaration_list] = STATE(708), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(708), + [sym_type_definition] = STATE(708), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(708), + [sym_field_declaration] = STATE(708), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(708), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(708), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(708), + [sym_operator_cast_declaration] = STATE(708), + [sym_constructor_or_destructor_definition] = STATE(708), + [sym_constructor_or_destructor_declaration] = STATE(708), + [sym_friend_declaration] = STATE(708), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(708), + [sym_alias_declaration] = STATE(708), + [sym_static_assert_declaration] = STATE(708), + [sym_consteval_block_declaration] = STATE(708), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(708), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4510), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4512), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1252)] = { - [sym_expression] = STATE(3329), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(4923), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(706)] = { + [ts_builtin_sym_end] = ACTIONS(4182), + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_export] = ACTIONS(4180), + [anon_sym_module] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(1253)] = { - [sym_expression] = STATE(3330), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(707)] = { + [ts_builtin_sym_end] = ACTIONS(3912), + [sym_identifier] = ACTIONS(3910), + [aux_sym_preproc_include_token1] = ACTIONS(3910), + [aux_sym_preproc_def_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), + [sym_preproc_directive] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_TILDE] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_AMP_AMP] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym___extension__] = ACTIONS(3910), + [anon_sym_typedef] = ACTIONS(3910), + [anon_sym_virtual] = ACTIONS(3910), + [anon_sym_extern] = ACTIONS(3910), + [anon_sym___attribute__] = ACTIONS(3910), + [anon_sym___attribute] = ACTIONS(3910), + [anon_sym_using] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), + [anon_sym___declspec] = ACTIONS(3910), + [anon_sym___based] = ACTIONS(3910), + [anon_sym___cdecl] = ACTIONS(3910), + [anon_sym___clrcall] = ACTIONS(3910), + [anon_sym___stdcall] = ACTIONS(3910), + [anon_sym___fastcall] = ACTIONS(3910), + [anon_sym___thiscall] = ACTIONS(3910), + [anon_sym___vectorcall] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_signed] = ACTIONS(3910), + [anon_sym_unsigned] = ACTIONS(3910), + [anon_sym_long] = ACTIONS(3910), + [anon_sym_short] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_static] = ACTIONS(3910), + [anon_sym_register] = ACTIONS(3910), + [anon_sym_inline] = ACTIONS(3910), + [anon_sym___inline] = ACTIONS(3910), + [anon_sym___inline__] = ACTIONS(3910), + [anon_sym___forceinline] = ACTIONS(3910), + [anon_sym_thread_local] = ACTIONS(3910), + [anon_sym___thread] = ACTIONS(3910), + [anon_sym_const] = ACTIONS(3910), + [anon_sym_constexpr] = ACTIONS(3910), + [anon_sym_volatile] = ACTIONS(3910), + [anon_sym_restrict] = ACTIONS(3910), + [anon_sym___restrict__] = ACTIONS(3910), + [anon_sym__Atomic] = ACTIONS(3910), + [anon_sym__Noreturn] = ACTIONS(3910), + [anon_sym_noreturn] = ACTIONS(3910), + [anon_sym__Nonnull] = ACTIONS(3910), + [anon_sym_mutable] = ACTIONS(3910), + [anon_sym_constinit] = ACTIONS(3910), + [anon_sym_consteval] = ACTIONS(3910), + [anon_sym_alignas] = ACTIONS(3910), + [anon_sym__Alignas] = ACTIONS(3910), + [sym_primitive_type] = ACTIONS(3910), + [anon_sym_enum] = ACTIONS(3910), + [anon_sym_class] = ACTIONS(3910), + [anon_sym_struct] = ACTIONS(3910), + [anon_sym_union] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_case] = ACTIONS(3910), + [anon_sym_default] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_break] = ACTIONS(3910), + [anon_sym_continue] = ACTIONS(3910), + [anon_sym_goto] = ACTIONS(3910), + [anon_sym_not] = ACTIONS(3910), + [anon_sym_compl] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3912), + [anon_sym_PLUS_PLUS] = ACTIONS(3912), + [anon_sym_sizeof] = ACTIONS(3910), + [anon_sym___alignof__] = ACTIONS(3910), + [anon_sym___alignof] = ACTIONS(3910), + [anon_sym__alignof] = ACTIONS(3910), + [anon_sym_alignof] = ACTIONS(3910), + [anon_sym__Alignof] = ACTIONS(3910), + [anon_sym_offsetof] = ACTIONS(3910), + [anon_sym__Generic] = ACTIONS(3910), + [anon_sym_typename] = ACTIONS(3910), + [anon_sym_asm] = ACTIONS(3910), + [anon_sym___asm__] = ACTIONS(3910), + [anon_sym___asm] = ACTIONS(3910), + [sym_number_literal] = ACTIONS(3912), + [anon_sym_L_SQUOTE] = ACTIONS(3912), + [anon_sym_u_SQUOTE] = ACTIONS(3912), + [anon_sym_U_SQUOTE] = ACTIONS(3912), + [anon_sym_u8_SQUOTE] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3912), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_true] = ACTIONS(3910), + [sym_false] = ACTIONS(3910), + [anon_sym_NULL] = ACTIONS(3910), + [anon_sym_nullptr] = ACTIONS(3910), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3910), + [anon_sym_decltype] = ACTIONS(3910), + [anon_sym_explicit] = ACTIONS(3910), + [anon_sym_export] = ACTIONS(3910), + [anon_sym_module] = ACTIONS(3910), + [anon_sym_import] = ACTIONS(3910), + [anon_sym_template] = ACTIONS(3910), + [anon_sym_operator] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_delete] = ACTIONS(3910), + [anon_sym_throw] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_static_assert] = ACTIONS(3910), + [anon_sym_concept] = ACTIONS(3910), + [anon_sym_co_return] = ACTIONS(3910), + [anon_sym_co_yield] = ACTIONS(3910), + [anon_sym_R_DQUOTE] = ACTIONS(3912), + [anon_sym_LR_DQUOTE] = ACTIONS(3912), + [anon_sym_uR_DQUOTE] = ACTIONS(3912), + [anon_sym_UR_DQUOTE] = ACTIONS(3912), + [anon_sym_u8R_DQUOTE] = ACTIONS(3912), + [anon_sym_co_await] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_requires] = ACTIONS(3910), + [anon_sym_CARET_CARET] = ACTIONS(3912), + [anon_sym_LBRACK_COLON] = ACTIONS(3912), + [sym_this] = ACTIONS(3910), }, - [STATE(1254)] = { - [sym_expression] = STATE(3183), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(4925), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(708)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4514), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1255)] = { - [sym_expression] = STATE(3207), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(709)] = { + [sym_preproc_def] = STATE(710), + [sym_preproc_function_def] = STATE(710), + [sym_preproc_call] = STATE(710), + [sym_preproc_if_in_field_declaration_list] = STATE(710), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(710), + [sym_type_definition] = STATE(710), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(710), + [sym_field_declaration] = STATE(710), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(710), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(710), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(710), + [sym_operator_cast_declaration] = STATE(710), + [sym_constructor_or_destructor_definition] = STATE(710), + [sym_constructor_or_destructor_declaration] = STATE(710), + [sym_friend_declaration] = STATE(710), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(710), + [sym_alias_declaration] = STATE(710), + [sym_static_assert_declaration] = STATE(710), + [sym_consteval_block_declaration] = STATE(710), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(710), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4516), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1256)] = { - [sym_expression] = STATE(4590), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(710)] = { + [sym_preproc_def] = STATE(583), + [sym_preproc_function_def] = STATE(583), + [sym_preproc_call] = STATE(583), + [sym_preproc_if_in_field_declaration_list] = STATE(583), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), + [sym_type_definition] = STATE(583), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(7964), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4562), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__field_declaration_list_item] = STATE(583), + [sym_field_declaration] = STATE(583), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(583), + [sym_operator_cast] = STATE(9142), + [sym_inline_method_definition] = STATE(583), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(583), + [sym_operator_cast_declaration] = STATE(583), + [sym_constructor_or_destructor_definition] = STATE(583), + [sym_constructor_or_destructor_declaration] = STATE(583), + [sym_friend_declaration] = STATE(583), + [sym_access_specifier] = STATE(11109), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_using_declaration] = STATE(583), + [sym_alias_declaration] = STATE(583), + [sym_static_assert_declaration] = STATE(583), + [sym_consteval_block_declaration] = STATE(583), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7622), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), + [aux_sym__declaration_specifiers_repeat1] = STATE(2744), + [aux_sym_attributed_declarator_repeat1] = STATE(9371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(3029), + [aux_sym_preproc_def_token1] = ACTIONS(4352), + [aux_sym_preproc_if_token1] = ACTIONS(4354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), + [sym_preproc_directive] = ACTIONS(4358), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_SEMI] = ACTIONS(4408), + [anon_sym___extension__] = ACTIONS(4362), + [anon_sym_typedef] = ACTIONS(4364), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4366), + [anon_sym_COLON_COLON] = ACTIONS(3063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4372), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3083), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_public] = ACTIONS(3083), + [anon_sym_protected] = ACTIONS(3083), + [anon_sym_static_assert] = ACTIONS(4378), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1257)] = { - [sym_expression] = STATE(3227), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(711)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1258)] = { - [sym_expression] = STATE(4655), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(712)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_include_token1] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym___cdecl] = ACTIONS(3728), + [anon_sym___clrcall] = ACTIONS(3728), + [anon_sym___stdcall] = ACTIONS(3728), + [anon_sym___fastcall] = ACTIONS(3728), + [anon_sym___thiscall] = ACTIONS(3728), + [anon_sym___vectorcall] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_case] = ACTIONS(3728), + [anon_sym_default] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_namespace] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_concept] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), }, - [STATE(1259)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(4927), + [STATE(713)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1260)] = { - [sym_expression] = STATE(3236), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(714)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1261)] = { - [sym_expression] = STATE(4677), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(715)] = { + [ts_builtin_sym_end] = ACTIONS(4522), + [sym_identifier] = ACTIONS(4524), + [aux_sym_preproc_include_token1] = ACTIONS(4524), + [aux_sym_preproc_def_token1] = ACTIONS(4524), + [aux_sym_preproc_if_token1] = ACTIONS(4524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4524), + [sym_preproc_directive] = ACTIONS(4524), + [anon_sym_LPAREN2] = ACTIONS(4522), + [anon_sym_BANG] = ACTIONS(4522), + [anon_sym_TILDE] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4524), + [anon_sym_PLUS] = ACTIONS(4524), + [anon_sym_STAR] = ACTIONS(4522), + [anon_sym_AMP_AMP] = ACTIONS(4522), + [anon_sym_AMP] = ACTIONS(4524), + [anon_sym_SEMI] = ACTIONS(4522), + [anon_sym___extension__] = ACTIONS(4524), + [anon_sym_typedef] = ACTIONS(4524), + [anon_sym_virtual] = ACTIONS(4524), + [anon_sym_extern] = ACTIONS(4524), + [anon_sym___attribute__] = ACTIONS(4524), + [anon_sym___attribute] = ACTIONS(4524), + [anon_sym_using] = ACTIONS(4524), + [anon_sym_COLON_COLON] = ACTIONS(4522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4522), + [anon_sym___declspec] = ACTIONS(4524), + [anon_sym___based] = ACTIONS(4524), + [anon_sym___cdecl] = ACTIONS(4524), + [anon_sym___clrcall] = ACTIONS(4524), + [anon_sym___stdcall] = ACTIONS(4524), + [anon_sym___fastcall] = ACTIONS(4524), + [anon_sym___thiscall] = ACTIONS(4524), + [anon_sym___vectorcall] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4522), + [anon_sym_signed] = ACTIONS(4524), + [anon_sym_unsigned] = ACTIONS(4524), + [anon_sym_long] = ACTIONS(4524), + [anon_sym_short] = ACTIONS(4524), + [anon_sym_LBRACK] = ACTIONS(4524), + [anon_sym_static] = ACTIONS(4524), + [anon_sym_register] = ACTIONS(4524), + [anon_sym_inline] = ACTIONS(4524), + [anon_sym___inline] = ACTIONS(4524), + [anon_sym___inline__] = ACTIONS(4524), + [anon_sym___forceinline] = ACTIONS(4524), + [anon_sym_thread_local] = ACTIONS(4524), + [anon_sym___thread] = ACTIONS(4524), + [anon_sym_const] = ACTIONS(4524), + [anon_sym_constexpr] = ACTIONS(4524), + [anon_sym_volatile] = ACTIONS(4524), + [anon_sym_restrict] = ACTIONS(4524), + [anon_sym___restrict__] = ACTIONS(4524), + [anon_sym__Atomic] = ACTIONS(4524), + [anon_sym__Noreturn] = ACTIONS(4524), + [anon_sym_noreturn] = ACTIONS(4524), + [anon_sym__Nonnull] = ACTIONS(4524), + [anon_sym_mutable] = ACTIONS(4524), + [anon_sym_constinit] = ACTIONS(4524), + [anon_sym_consteval] = ACTIONS(4524), + [anon_sym_alignas] = ACTIONS(4524), + [anon_sym__Alignas] = ACTIONS(4524), + [sym_primitive_type] = ACTIONS(4524), + [anon_sym_enum] = ACTIONS(4524), + [anon_sym_class] = ACTIONS(4524), + [anon_sym_struct] = ACTIONS(4524), + [anon_sym_union] = ACTIONS(4524), + [anon_sym_if] = ACTIONS(4524), + [anon_sym_switch] = ACTIONS(4524), + [anon_sym_case] = ACTIONS(4524), + [anon_sym_default] = ACTIONS(4524), + [anon_sym_while] = ACTIONS(4524), + [anon_sym_do] = ACTIONS(4524), + [anon_sym_for] = ACTIONS(4524), + [anon_sym_return] = ACTIONS(4524), + [anon_sym_break] = ACTIONS(4524), + [anon_sym_continue] = ACTIONS(4524), + [anon_sym_goto] = ACTIONS(4524), + [anon_sym_not] = ACTIONS(4524), + [anon_sym_compl] = ACTIONS(4524), + [anon_sym_DASH_DASH] = ACTIONS(4522), + [anon_sym_PLUS_PLUS] = ACTIONS(4522), + [anon_sym_sizeof] = ACTIONS(4524), + [anon_sym___alignof__] = ACTIONS(4524), + [anon_sym___alignof] = ACTIONS(4524), + [anon_sym__alignof] = ACTIONS(4524), + [anon_sym_alignof] = ACTIONS(4524), + [anon_sym__Alignof] = ACTIONS(4524), + [anon_sym_offsetof] = ACTIONS(4524), + [anon_sym__Generic] = ACTIONS(4524), + [anon_sym_typename] = ACTIONS(4524), + [anon_sym_asm] = ACTIONS(4524), + [anon_sym___asm__] = ACTIONS(4524), + [anon_sym___asm] = ACTIONS(4524), + [sym_number_literal] = ACTIONS(4522), + [anon_sym_L_SQUOTE] = ACTIONS(4522), + [anon_sym_u_SQUOTE] = ACTIONS(4522), + [anon_sym_U_SQUOTE] = ACTIONS(4522), + [anon_sym_u8_SQUOTE] = ACTIONS(4522), + [anon_sym_SQUOTE] = ACTIONS(4522), + [anon_sym_L_DQUOTE] = ACTIONS(4522), + [anon_sym_u_DQUOTE] = ACTIONS(4522), + [anon_sym_U_DQUOTE] = ACTIONS(4522), + [anon_sym_u8_DQUOTE] = ACTIONS(4522), + [anon_sym_DQUOTE] = ACTIONS(4522), + [sym_true] = ACTIONS(4524), + [sym_false] = ACTIONS(4524), + [anon_sym_NULL] = ACTIONS(4524), + [anon_sym_nullptr] = ACTIONS(4524), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4524), + [anon_sym_decltype] = ACTIONS(4524), + [anon_sym_explicit] = ACTIONS(4524), + [anon_sym_export] = ACTIONS(4524), + [anon_sym_module] = ACTIONS(4524), + [anon_sym_import] = ACTIONS(4524), + [anon_sym_template] = ACTIONS(4524), + [anon_sym_operator] = ACTIONS(4524), + [anon_sym_try] = ACTIONS(4524), + [anon_sym_delete] = ACTIONS(4524), + [anon_sym_throw] = ACTIONS(4524), + [anon_sym_namespace] = ACTIONS(4524), + [anon_sym_static_assert] = ACTIONS(4524), + [anon_sym_concept] = ACTIONS(4524), + [anon_sym_co_return] = ACTIONS(4524), + [anon_sym_co_yield] = ACTIONS(4524), + [anon_sym_R_DQUOTE] = ACTIONS(4522), + [anon_sym_LR_DQUOTE] = ACTIONS(4522), + [anon_sym_uR_DQUOTE] = ACTIONS(4522), + [anon_sym_UR_DQUOTE] = ACTIONS(4522), + [anon_sym_u8R_DQUOTE] = ACTIONS(4522), + [anon_sym_co_await] = ACTIONS(4524), + [anon_sym_new] = ACTIONS(4524), + [anon_sym_requires] = ACTIONS(4524), + [anon_sym_CARET_CARET] = ACTIONS(4522), + [anon_sym_LBRACK_COLON] = ACTIONS(4522), + [sym_this] = ACTIONS(4524), }, - [STATE(1262)] = { - [sym_expression] = STATE(3062), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(4929), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(716)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(1263)] = { - [sym_expression] = STATE(3118), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(717)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_include_token1] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym___cdecl] = ACTIONS(3680), + [anon_sym___clrcall] = ACTIONS(3680), + [anon_sym___stdcall] = ACTIONS(3680), + [anon_sym___fastcall] = ACTIONS(3680), + [anon_sym___thiscall] = ACTIONS(3680), + [anon_sym___vectorcall] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [anon_sym___asm] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_concept] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [anon_sym_CARET_CARET] = ACTIONS(3682), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [sym_this] = ACTIONS(3680), }, - [STATE(1264)] = { - [sym_expression] = STATE(3034), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(718)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [STATE(1265)] = { - [sym_expression] = STATE(3097), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(719)] = { + [ts_builtin_sym_end] = ACTIONS(4109), + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_include_token1] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_BANG] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym___cdecl] = ACTIONS(4107), + [anon_sym___clrcall] = ACTIONS(4107), + [anon_sym___stdcall] = ACTIONS(4107), + [anon_sym___fastcall] = ACTIONS(4107), + [anon_sym___thiscall] = ACTIONS(4107), + [anon_sym___vectorcall] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_switch] = ACTIONS(4107), + [anon_sym_case] = ACTIONS(4107), + [anon_sym_default] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_do] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_goto] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_compl] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4109), + [anon_sym_PLUS_PLUS] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4107), + [anon_sym___alignof__] = ACTIONS(4107), + [anon_sym___alignof] = ACTIONS(4107), + [anon_sym__alignof] = ACTIONS(4107), + [anon_sym_alignof] = ACTIONS(4107), + [anon_sym__Alignof] = ACTIONS(4107), + [anon_sym_offsetof] = ACTIONS(4107), + [anon_sym__Generic] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [anon_sym_asm] = ACTIONS(4107), + [anon_sym___asm__] = ACTIONS(4107), + [anon_sym___asm] = ACTIONS(4107), + [sym_number_literal] = ACTIONS(4109), + [anon_sym_L_SQUOTE] = ACTIONS(4109), + [anon_sym_u_SQUOTE] = ACTIONS(4109), + [anon_sym_U_SQUOTE] = ACTIONS(4109), + [anon_sym_u8_SQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4109), + [anon_sym_L_DQUOTE] = ACTIONS(4109), + [anon_sym_u_DQUOTE] = ACTIONS(4109), + [anon_sym_U_DQUOTE] = ACTIONS(4109), + [anon_sym_u8_DQUOTE] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [anon_sym_NULL] = ACTIONS(4107), + [anon_sym_nullptr] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_export] = ACTIONS(4107), + [anon_sym_module] = ACTIONS(4107), + [anon_sym_import] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_delete] = ACTIONS(4107), + [anon_sym_throw] = ACTIONS(4107), + [anon_sym_namespace] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_concept] = ACTIONS(4107), + [anon_sym_co_return] = ACTIONS(4107), + [anon_sym_co_yield] = ACTIONS(4107), + [anon_sym_R_DQUOTE] = ACTIONS(4109), + [anon_sym_LR_DQUOTE] = ACTIONS(4109), + [anon_sym_uR_DQUOTE] = ACTIONS(4109), + [anon_sym_UR_DQUOTE] = ACTIONS(4109), + [anon_sym_u8R_DQUOTE] = ACTIONS(4109), + [anon_sym_co_await] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_requires] = ACTIONS(4107), + [anon_sym_CARET_CARET] = ACTIONS(4109), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + [sym_this] = ACTIONS(4107), }, - [STATE(1266)] = { - [sym_expression] = STATE(3001), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(4113), + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym___cdecl] = ACTIONS(4111), + [anon_sym___clrcall] = ACTIONS(4111), + [anon_sym___stdcall] = ACTIONS(4111), + [anon_sym___fastcall] = ACTIONS(4111), + [anon_sym___thiscall] = ACTIONS(4111), + [anon_sym___vectorcall] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_case] = ACTIONS(4111), + [anon_sym_default] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_compl] = ACTIONS(4111), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym___alignof__] = ACTIONS(4111), + [anon_sym___alignof] = ACTIONS(4111), + [anon_sym__alignof] = ACTIONS(4111), + [anon_sym_alignof] = ACTIONS(4111), + [anon_sym__Alignof] = ACTIONS(4111), + [anon_sym_offsetof] = ACTIONS(4111), + [anon_sym__Generic] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_asm] = ACTIONS(4111), + [anon_sym___asm__] = ACTIONS(4111), + [anon_sym___asm] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_L_SQUOTE] = ACTIONS(4113), + [anon_sym_u_SQUOTE] = ACTIONS(4113), + [anon_sym_U_SQUOTE] = ACTIONS(4113), + [anon_sym_u8_SQUOTE] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_L_DQUOTE] = ACTIONS(4113), + [anon_sym_u_DQUOTE] = ACTIONS(4113), + [anon_sym_U_DQUOTE] = ACTIONS(4113), + [anon_sym_u8_DQUOTE] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [anon_sym_NULL] = ACTIONS(4111), + [anon_sym_nullptr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_export] = ACTIONS(4111), + [anon_sym_module] = ACTIONS(4111), + [anon_sym_import] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_throw] = ACTIONS(4111), + [anon_sym_namespace] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_concept] = ACTIONS(4111), + [anon_sym_co_return] = ACTIONS(4111), + [anon_sym_co_yield] = ACTIONS(4111), + [anon_sym_R_DQUOTE] = ACTIONS(4113), + [anon_sym_LR_DQUOTE] = ACTIONS(4113), + [anon_sym_uR_DQUOTE] = ACTIONS(4113), + [anon_sym_UR_DQUOTE] = ACTIONS(4113), + [anon_sym_u8R_DQUOTE] = ACTIONS(4113), + [anon_sym_co_await] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_requires] = ACTIONS(4111), + [anon_sym_CARET_CARET] = ACTIONS(4113), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + [sym_this] = ACTIONS(4111), }, - [STATE(1267)] = { - [sym_expression] = STATE(4545), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(721)] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(1268)] = { - [sym_template_argument_list] = STATE(1576), - [sym_identifier] = ACTIONS(4931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym___extension__] = ACTIONS(4931), - [anon_sym_virtual] = ACTIONS(4931), - [anon_sym_extern] = ACTIONS(4931), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4938), - [anon_sym___declspec] = ACTIONS(4931), - [anon_sym___based] = ACTIONS(4931), - [anon_sym___cdecl] = ACTIONS(4931), - [anon_sym___clrcall] = ACTIONS(4931), - [anon_sym___stdcall] = ACTIONS(4931), - [anon_sym___fastcall] = ACTIONS(4931), - [anon_sym___thiscall] = ACTIONS(4931), - [anon_sym___vectorcall] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_register] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym___inline] = ACTIONS(4931), - [anon_sym___inline__] = ACTIONS(4931), - [anon_sym___forceinline] = ACTIONS(4931), - [anon_sym_thread_local] = ACTIONS(4931), - [anon_sym___thread] = ACTIONS(4931), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4931), - [anon_sym_volatile] = ACTIONS(4931), - [anon_sym_restrict] = ACTIONS(4931), - [anon_sym___restrict__] = ACTIONS(4931), - [anon_sym__Atomic] = ACTIONS(4931), - [anon_sym__Noreturn] = ACTIONS(4931), - [anon_sym_noreturn] = ACTIONS(4931), - [anon_sym__Nonnull] = ACTIONS(4931), - [anon_sym_mutable] = ACTIONS(4931), - [anon_sym_constinit] = ACTIONS(4931), - [anon_sym_consteval] = ACTIONS(4931), - [anon_sym_alignas] = ACTIONS(4931), - [anon_sym__Alignas] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4940), - [anon_sym_or_eq] = ACTIONS(4940), - [anon_sym_xor_eq] = ACTIONS(4940), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4940), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4940), - [anon_sym_not_eq] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_template] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), + [STATE(722)] = { + [sym_identifier] = ACTIONS(3688), + [aux_sym_preproc_include_token1] = ACTIONS(3688), + [aux_sym_preproc_def_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), + [sym_preproc_directive] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_AMP_AMP] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym___extension__] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_virtual] = ACTIONS(3688), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym___attribute__] = ACTIONS(3688), + [anon_sym___attribute] = ACTIONS(3688), + [anon_sym_using] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym___declspec] = ACTIONS(3688), + [anon_sym___based] = ACTIONS(3688), + [anon_sym___cdecl] = ACTIONS(3688), + [anon_sym___clrcall] = ACTIONS(3688), + [anon_sym___stdcall] = ACTIONS(3688), + [anon_sym___fastcall] = ACTIONS(3688), + [anon_sym___thiscall] = ACTIONS(3688), + [anon_sym___vectorcall] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym___inline] = ACTIONS(3688), + [anon_sym___inline__] = ACTIONS(3688), + [anon_sym___forceinline] = ACTIONS(3688), + [anon_sym_thread_local] = ACTIONS(3688), + [anon_sym___thread] = ACTIONS(3688), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_restrict] = ACTIONS(3688), + [anon_sym___restrict__] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [anon_sym__Noreturn] = ACTIONS(3688), + [anon_sym_noreturn] = ACTIONS(3688), + [anon_sym__Nonnull] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [anon_sym_constinit] = ACTIONS(3688), + [anon_sym_consteval] = ACTIONS(3688), + [anon_sym_alignas] = ACTIONS(3688), + [anon_sym__Alignas] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3688), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_case] = ACTIONS(3688), + [anon_sym_default] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym___try] = ACTIONS(3688), + [anon_sym___leave] = ACTIONS(3688), + [anon_sym_not] = ACTIONS(3688), + [anon_sym_compl] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym___alignof__] = ACTIONS(3688), + [anon_sym___alignof] = ACTIONS(3688), + [anon_sym__alignof] = ACTIONS(3688), + [anon_sym_alignof] = ACTIONS(3688), + [anon_sym__Alignof] = ACTIONS(3688), + [anon_sym_offsetof] = ACTIONS(3688), + [anon_sym__Generic] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_asm] = ACTIONS(3688), + [anon_sym___asm__] = ACTIONS(3688), + [anon_sym___asm] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_L_SQUOTE] = ACTIONS(3690), + [anon_sym_u_SQUOTE] = ACTIONS(3690), + [anon_sym_U_SQUOTE] = ACTIONS(3690), + [anon_sym_u8_SQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_L_DQUOTE] = ACTIONS(3690), + [anon_sym_u_DQUOTE] = ACTIONS(3690), + [anon_sym_U_DQUOTE] = ACTIONS(3690), + [anon_sym_u8_DQUOTE] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [anon_sym_NULL] = ACTIONS(3688), + [anon_sym_nullptr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3688), + [anon_sym_decltype] = ACTIONS(3688), + [anon_sym_explicit] = ACTIONS(3688), + [anon_sym_template] = ACTIONS(3688), + [anon_sym_operator] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_throw] = ACTIONS(3688), + [anon_sym_namespace] = ACTIONS(3688), + [anon_sym_static_assert] = ACTIONS(3688), + [anon_sym_concept] = ACTIONS(3688), + [anon_sym_co_return] = ACTIONS(3688), + [anon_sym_co_yield] = ACTIONS(3688), + [anon_sym_R_DQUOTE] = ACTIONS(3690), + [anon_sym_LR_DQUOTE] = ACTIONS(3690), + [anon_sym_uR_DQUOTE] = ACTIONS(3690), + [anon_sym_UR_DQUOTE] = ACTIONS(3690), + [anon_sym_u8R_DQUOTE] = ACTIONS(3690), + [anon_sym_co_await] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_requires] = ACTIONS(3688), + [anon_sym_CARET_CARET] = ACTIONS(3690), + [anon_sym_LBRACK_COLON] = ACTIONS(3690), + [sym_this] = ACTIONS(3688), }, - [STATE(1269)] = { - [sym_expression] = STATE(3114), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(723)] = { + [sym_identifier] = ACTIONS(3696), + [aux_sym_preproc_include_token1] = ACTIONS(3696), + [aux_sym_preproc_def_token1] = ACTIONS(3696), + [aux_sym_preproc_if_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), + [sym_preproc_directive] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3696), + [anon_sym_virtual] = ACTIONS(3696), + [anon_sym_extern] = ACTIONS(3696), + [anon_sym___attribute__] = ACTIONS(3696), + [anon_sym___attribute] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), + [anon_sym___declspec] = ACTIONS(3696), + [anon_sym___based] = ACTIONS(3696), + [anon_sym___cdecl] = ACTIONS(3696), + [anon_sym___clrcall] = ACTIONS(3696), + [anon_sym___stdcall] = ACTIONS(3696), + [anon_sym___fastcall] = ACTIONS(3696), + [anon_sym___thiscall] = ACTIONS(3696), + [anon_sym___vectorcall] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3696), + [anon_sym_unsigned] = ACTIONS(3696), + [anon_sym_long] = ACTIONS(3696), + [anon_sym_short] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_register] = ACTIONS(3696), + [anon_sym_inline] = ACTIONS(3696), + [anon_sym___inline] = ACTIONS(3696), + [anon_sym___inline__] = ACTIONS(3696), + [anon_sym___forceinline] = ACTIONS(3696), + [anon_sym_thread_local] = ACTIONS(3696), + [anon_sym___thread] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_constexpr] = ACTIONS(3696), + [anon_sym_volatile] = ACTIONS(3696), + [anon_sym_restrict] = ACTIONS(3696), + [anon_sym___restrict__] = ACTIONS(3696), + [anon_sym__Atomic] = ACTIONS(3696), + [anon_sym__Noreturn] = ACTIONS(3696), + [anon_sym_noreturn] = ACTIONS(3696), + [anon_sym__Nonnull] = ACTIONS(3696), + [anon_sym_mutable] = ACTIONS(3696), + [anon_sym_constinit] = ACTIONS(3696), + [anon_sym_consteval] = ACTIONS(3696), + [anon_sym_alignas] = ACTIONS(3696), + [anon_sym__Alignas] = ACTIONS(3696), + [sym_primitive_type] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3696), + [anon_sym_union] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_goto] = ACTIONS(3696), + [anon_sym___try] = ACTIONS(3696), + [anon_sym___leave] = ACTIONS(3696), + [anon_sym_not] = ACTIONS(3696), + [anon_sym_compl] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3696), + [anon_sym___alignof__] = ACTIONS(3696), + [anon_sym___alignof] = ACTIONS(3696), + [anon_sym__alignof] = ACTIONS(3696), + [anon_sym_alignof] = ACTIONS(3696), + [anon_sym__Alignof] = ACTIONS(3696), + [anon_sym_offsetof] = ACTIONS(3696), + [anon_sym__Generic] = ACTIONS(3696), + [anon_sym_typename] = ACTIONS(3696), + [anon_sym_asm] = ACTIONS(3696), + [anon_sym___asm__] = ACTIONS(3696), + [anon_sym___asm] = ACTIONS(3696), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_L_SQUOTE] = ACTIONS(3698), + [anon_sym_u_SQUOTE] = ACTIONS(3698), + [anon_sym_U_SQUOTE] = ACTIONS(3698), + [anon_sym_u8_SQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_L_DQUOTE] = ACTIONS(3698), + [anon_sym_u_DQUOTE] = ACTIONS(3698), + [anon_sym_U_DQUOTE] = ACTIONS(3698), + [anon_sym_u8_DQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [anon_sym_NULL] = ACTIONS(3696), + [anon_sym_nullptr] = ACTIONS(3696), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_decltype] = ACTIONS(3696), + [anon_sym_explicit] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(3696), + [anon_sym_operator] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_static_assert] = ACTIONS(3696), + [anon_sym_concept] = ACTIONS(3696), + [anon_sym_co_return] = ACTIONS(3696), + [anon_sym_co_yield] = ACTIONS(3696), + [anon_sym_R_DQUOTE] = ACTIONS(3698), + [anon_sym_LR_DQUOTE] = ACTIONS(3698), + [anon_sym_uR_DQUOTE] = ACTIONS(3698), + [anon_sym_UR_DQUOTE] = ACTIONS(3698), + [anon_sym_u8R_DQUOTE] = ACTIONS(3698), + [anon_sym_co_await] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_requires] = ACTIONS(3696), + [anon_sym_CARET_CARET] = ACTIONS(3698), + [anon_sym_LBRACK_COLON] = ACTIONS(3698), + [sym_this] = ACTIONS(3696), }, - [STATE(1270)] = { - [sym_expression] = STATE(3114), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(4948), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(724)] = { + [sym_identifier] = ACTIONS(3720), + [aux_sym_preproc_include_token1] = ACTIONS(3720), + [aux_sym_preproc_def_token1] = ACTIONS(3720), + [aux_sym_preproc_if_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), + [sym_preproc_directive] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym___extension__] = ACTIONS(3720), + [anon_sym_typedef] = ACTIONS(3720), + [anon_sym_virtual] = ACTIONS(3720), + [anon_sym_extern] = ACTIONS(3720), + [anon_sym___attribute__] = ACTIONS(3720), + [anon_sym___attribute] = ACTIONS(3720), + [anon_sym_using] = ACTIONS(3720), + [anon_sym_COLON_COLON] = ACTIONS(3722), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), + [anon_sym___declspec] = ACTIONS(3720), + [anon_sym___based] = ACTIONS(3720), + [anon_sym___cdecl] = ACTIONS(3720), + [anon_sym___clrcall] = ACTIONS(3720), + [anon_sym___stdcall] = ACTIONS(3720), + [anon_sym___fastcall] = ACTIONS(3720), + [anon_sym___thiscall] = ACTIONS(3720), + [anon_sym___vectorcall] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3720), + [anon_sym_unsigned] = ACTIONS(3720), + [anon_sym_long] = ACTIONS(3720), + [anon_sym_short] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_register] = ACTIONS(3720), + [anon_sym_inline] = ACTIONS(3720), + [anon_sym___inline] = ACTIONS(3720), + [anon_sym___inline__] = ACTIONS(3720), + [anon_sym___forceinline] = ACTIONS(3720), + [anon_sym_thread_local] = ACTIONS(3720), + [anon_sym___thread] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym___restrict__] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym__Noreturn] = ACTIONS(3720), + [anon_sym_noreturn] = ACTIONS(3720), + [anon_sym__Nonnull] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_constinit] = ACTIONS(3720), + [anon_sym_consteval] = ACTIONS(3720), + [anon_sym_alignas] = ACTIONS(3720), + [anon_sym__Alignas] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3720), + [anon_sym_union] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_else] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_case] = ACTIONS(3720), + [anon_sym_default] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_goto] = ACTIONS(3720), + [anon_sym___try] = ACTIONS(3720), + [anon_sym___leave] = ACTIONS(3720), + [anon_sym_not] = ACTIONS(3720), + [anon_sym_compl] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_sizeof] = ACTIONS(3720), + [anon_sym___alignof__] = ACTIONS(3720), + [anon_sym___alignof] = ACTIONS(3720), + [anon_sym__alignof] = ACTIONS(3720), + [anon_sym_alignof] = ACTIONS(3720), + [anon_sym__Alignof] = ACTIONS(3720), + [anon_sym_offsetof] = ACTIONS(3720), + [anon_sym__Generic] = ACTIONS(3720), + [anon_sym_typename] = ACTIONS(3720), + [anon_sym_asm] = ACTIONS(3720), + [anon_sym___asm__] = ACTIONS(3720), + [anon_sym___asm] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3722), + [anon_sym_L_SQUOTE] = ACTIONS(3722), + [anon_sym_u_SQUOTE] = ACTIONS(3722), + [anon_sym_U_SQUOTE] = ACTIONS(3722), + [anon_sym_u8_SQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_L_DQUOTE] = ACTIONS(3722), + [anon_sym_u_DQUOTE] = ACTIONS(3722), + [anon_sym_U_DQUOTE] = ACTIONS(3722), + [anon_sym_u8_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [anon_sym_NULL] = ACTIONS(3720), + [anon_sym_nullptr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(3720), + [anon_sym_explicit] = ACTIONS(3720), + [anon_sym_template] = ACTIONS(3720), + [anon_sym_operator] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_namespace] = ACTIONS(3720), + [anon_sym_static_assert] = ACTIONS(3720), + [anon_sym_concept] = ACTIONS(3720), + [anon_sym_co_return] = ACTIONS(3720), + [anon_sym_co_yield] = ACTIONS(3720), + [anon_sym_R_DQUOTE] = ACTIONS(3722), + [anon_sym_LR_DQUOTE] = ACTIONS(3722), + [anon_sym_uR_DQUOTE] = ACTIONS(3722), + [anon_sym_UR_DQUOTE] = ACTIONS(3722), + [anon_sym_u8R_DQUOTE] = ACTIONS(3722), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_requires] = ACTIONS(3720), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3722), + [sym_this] = ACTIONS(3720), }, - [STATE(1271)] = { - [sym_expression] = STATE(4477), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(725)] = { + [sym_identifier] = ACTIONS(3732), + [aux_sym_preproc_include_token1] = ACTIONS(3732), + [aux_sym_preproc_def_token1] = ACTIONS(3732), + [aux_sym_preproc_if_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), + [sym_preproc_directive] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3732), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3732), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym___extension__] = ACTIONS(3732), + [anon_sym_typedef] = ACTIONS(3732), + [anon_sym_virtual] = ACTIONS(3732), + [anon_sym_extern] = ACTIONS(3732), + [anon_sym___attribute__] = ACTIONS(3732), + [anon_sym___attribute] = ACTIONS(3732), + [anon_sym_using] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym___declspec] = ACTIONS(3732), + [anon_sym___based] = ACTIONS(3732), + [anon_sym___cdecl] = ACTIONS(3732), + [anon_sym___clrcall] = ACTIONS(3732), + [anon_sym___stdcall] = ACTIONS(3732), + [anon_sym___fastcall] = ACTIONS(3732), + [anon_sym___thiscall] = ACTIONS(3732), + [anon_sym___vectorcall] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_RBRACE] = ACTIONS(3734), + [anon_sym_signed] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(3732), + [anon_sym_long] = ACTIONS(3732), + [anon_sym_short] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3732), + [anon_sym_register] = ACTIONS(3732), + [anon_sym_inline] = ACTIONS(3732), + [anon_sym___inline] = ACTIONS(3732), + [anon_sym___inline__] = ACTIONS(3732), + [anon_sym___forceinline] = ACTIONS(3732), + [anon_sym_thread_local] = ACTIONS(3732), + [anon_sym___thread] = ACTIONS(3732), + [anon_sym_const] = ACTIONS(3732), + [anon_sym_constexpr] = ACTIONS(3732), + [anon_sym_volatile] = ACTIONS(3732), + [anon_sym_restrict] = ACTIONS(3732), + [anon_sym___restrict__] = ACTIONS(3732), + [anon_sym__Atomic] = ACTIONS(3732), + [anon_sym__Noreturn] = ACTIONS(3732), + [anon_sym_noreturn] = ACTIONS(3732), + [anon_sym__Nonnull] = ACTIONS(3732), + [anon_sym_mutable] = ACTIONS(3732), + [anon_sym_constinit] = ACTIONS(3732), + [anon_sym_consteval] = ACTIONS(3732), + [anon_sym_alignas] = ACTIONS(3732), + [anon_sym__Alignas] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_union] = ACTIONS(3732), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_else] = ACTIONS(3732), + [anon_sym_switch] = ACTIONS(3732), + [anon_sym_case] = ACTIONS(3732), + [anon_sym_default] = ACTIONS(3732), + [anon_sym_while] = ACTIONS(3732), + [anon_sym_do] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3732), + [anon_sym_break] = ACTIONS(3732), + [anon_sym_continue] = ACTIONS(3732), + [anon_sym_goto] = ACTIONS(3732), + [anon_sym___try] = ACTIONS(3732), + [anon_sym___leave] = ACTIONS(3732), + [anon_sym_not] = ACTIONS(3732), + [anon_sym_compl] = ACTIONS(3732), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_sizeof] = ACTIONS(3732), + [anon_sym___alignof__] = ACTIONS(3732), + [anon_sym___alignof] = ACTIONS(3732), + [anon_sym__alignof] = ACTIONS(3732), + [anon_sym_alignof] = ACTIONS(3732), + [anon_sym__Alignof] = ACTIONS(3732), + [anon_sym_offsetof] = ACTIONS(3732), + [anon_sym__Generic] = ACTIONS(3732), + [anon_sym_typename] = ACTIONS(3732), + [anon_sym_asm] = ACTIONS(3732), + [anon_sym___asm__] = ACTIONS(3732), + [anon_sym___asm] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_L_SQUOTE] = ACTIONS(3734), + [anon_sym_u_SQUOTE] = ACTIONS(3734), + [anon_sym_U_SQUOTE] = ACTIONS(3734), + [anon_sym_u8_SQUOTE] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [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(3732), + [sym_false] = ACTIONS(3732), + [anon_sym_NULL] = ACTIONS(3732), + [anon_sym_nullptr] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3732), + [anon_sym_decltype] = ACTIONS(3732), + [anon_sym_explicit] = ACTIONS(3732), + [anon_sym_template] = ACTIONS(3732), + [anon_sym_operator] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3732), + [anon_sym_delete] = ACTIONS(3732), + [anon_sym_throw] = ACTIONS(3732), + [anon_sym_namespace] = ACTIONS(3732), + [anon_sym_static_assert] = ACTIONS(3732), + [anon_sym_concept] = ACTIONS(3732), + [anon_sym_co_return] = ACTIONS(3732), + [anon_sym_co_yield] = ACTIONS(3732), + [anon_sym_R_DQUOTE] = ACTIONS(3734), + [anon_sym_LR_DQUOTE] = ACTIONS(3734), + [anon_sym_uR_DQUOTE] = ACTIONS(3734), + [anon_sym_UR_DQUOTE] = ACTIONS(3734), + [anon_sym_u8R_DQUOTE] = ACTIONS(3734), + [anon_sym_co_await] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3732), + [anon_sym_requires] = ACTIONS(3732), + [anon_sym_CARET_CARET] = ACTIONS(3734), + [anon_sym_LBRACK_COLON] = ACTIONS(3734), + [sym_this] = ACTIONS(3732), }, - [STATE(1272)] = { - [sym_expression] = STATE(3129), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(726)] = { + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4152), + [anon_sym_module] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), }, - [STATE(1273)] = { - [sym_expression] = STATE(4826), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(4004), + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_export] = ACTIONS(4002), + [anon_sym_module] = ACTIONS(4002), + [anon_sym_import] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1274)] = { - [sym_expression] = STATE(4369), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(4732), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(728)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_include_token1] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_PLUS] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym___cdecl] = ACTIONS(3890), + [anon_sym___clrcall] = ACTIONS(3890), + [anon_sym___stdcall] = ACTIONS(3890), + [anon_sym___fastcall] = ACTIONS(3890), + [anon_sym___thiscall] = ACTIONS(3890), + [anon_sym___vectorcall] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_if] = ACTIONS(3890), + [anon_sym_else] = ACTIONS(3890), + [anon_sym_switch] = ACTIONS(3890), + [anon_sym_case] = ACTIONS(3890), + [anon_sym_default] = ACTIONS(3890), + [anon_sym_while] = ACTIONS(3890), + [anon_sym_do] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3890), + [anon_sym_return] = ACTIONS(3890), + [anon_sym_break] = ACTIONS(3890), + [anon_sym_continue] = ACTIONS(3890), + [anon_sym_goto] = ACTIONS(3890), + [anon_sym___try] = ACTIONS(3890), + [anon_sym___leave] = ACTIONS(3890), + [anon_sym_not] = ACTIONS(3890), + [anon_sym_compl] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_sizeof] = ACTIONS(3890), + [anon_sym___alignof__] = ACTIONS(3890), + [anon_sym___alignof] = ACTIONS(3890), + [anon_sym__alignof] = ACTIONS(3890), + [anon_sym_alignof] = ACTIONS(3890), + [anon_sym__Alignof] = ACTIONS(3890), + [anon_sym_offsetof] = ACTIONS(3890), + [anon_sym__Generic] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [anon_sym_asm] = ACTIONS(3890), + [anon_sym___asm__] = ACTIONS(3890), + [anon_sym___asm] = ACTIONS(3890), + [sym_number_literal] = ACTIONS(3892), + [anon_sym_L_SQUOTE] = ACTIONS(3892), + [anon_sym_u_SQUOTE] = ACTIONS(3892), + [anon_sym_U_SQUOTE] = ACTIONS(3892), + [anon_sym_u8_SQUOTE] = ACTIONS(3892), + [anon_sym_SQUOTE] = ACTIONS(3892), + [anon_sym_L_DQUOTE] = ACTIONS(3892), + [anon_sym_u_DQUOTE] = ACTIONS(3892), + [anon_sym_U_DQUOTE] = ACTIONS(3892), + [anon_sym_u8_DQUOTE] = ACTIONS(3892), + [anon_sym_DQUOTE] = ACTIONS(3892), + [sym_true] = ACTIONS(3890), + [sym_false] = ACTIONS(3890), + [anon_sym_NULL] = ACTIONS(3890), + [anon_sym_nullptr] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3890), + [anon_sym_delete] = ACTIONS(3890), + [anon_sym_throw] = ACTIONS(3890), + [anon_sym_namespace] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_concept] = ACTIONS(3890), + [anon_sym_co_return] = ACTIONS(3890), + [anon_sym_co_yield] = ACTIONS(3890), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_co_await] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3890), + [anon_sym_requires] = ACTIONS(3890), + [anon_sym_CARET_CARET] = ACTIONS(3892), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [sym_this] = ACTIONS(3890), }, - [STATE(1275)] = { - [sym_expression] = STATE(4372), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(729)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1276)] = { - [sym_expression] = STATE(4553), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(4950), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(730)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1277)] = { - [sym_expression] = STATE(3813), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(731)] = { + [ts_builtin_sym_end] = ACTIONS(4004), + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_export] = ACTIONS(4002), + [anon_sym_module] = ACTIONS(4002), + [anon_sym_import] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1278)] = { - [sym_expression] = STATE(3262), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(732)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(1279)] = { - [sym_expression] = STATE(4364), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(733)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_else] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(1280)] = { - [sym_expression] = STATE(4390), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(4952), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(734)] = { + [ts_builtin_sym_end] = ACTIONS(4117), + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym___cdecl] = ACTIONS(4115), + [anon_sym___clrcall] = ACTIONS(4115), + [anon_sym___stdcall] = ACTIONS(4115), + [anon_sym___fastcall] = ACTIONS(4115), + [anon_sym___thiscall] = ACTIONS(4115), + [anon_sym___vectorcall] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_case] = ACTIONS(4115), + [anon_sym_default] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_compl] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym___alignof__] = ACTIONS(4115), + [anon_sym___alignof] = ACTIONS(4115), + [anon_sym__alignof] = ACTIONS(4115), + [anon_sym_alignof] = ACTIONS(4115), + [anon_sym__Alignof] = ACTIONS(4115), + [anon_sym_offsetof] = ACTIONS(4115), + [anon_sym__Generic] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_asm] = ACTIONS(4115), + [anon_sym___asm__] = ACTIONS(4115), + [anon_sym___asm] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_L_SQUOTE] = ACTIONS(4117), + [anon_sym_u_SQUOTE] = ACTIONS(4117), + [anon_sym_U_SQUOTE] = ACTIONS(4117), + [anon_sym_u8_SQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [anon_sym_NULL] = ACTIONS(4115), + [anon_sym_nullptr] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_export] = ACTIONS(4115), + [anon_sym_module] = ACTIONS(4115), + [anon_sym_import] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_throw] = ACTIONS(4115), + [anon_sym_namespace] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_concept] = ACTIONS(4115), + [anon_sym_co_return] = ACTIONS(4115), + [anon_sym_co_yield] = ACTIONS(4115), + [anon_sym_R_DQUOTE] = ACTIONS(4117), + [anon_sym_LR_DQUOTE] = ACTIONS(4117), + [anon_sym_uR_DQUOTE] = ACTIONS(4117), + [anon_sym_UR_DQUOTE] = ACTIONS(4117), + [anon_sym_u8R_DQUOTE] = ACTIONS(4117), + [anon_sym_co_await] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_requires] = ACTIONS(4115), + [anon_sym_CARET_CARET] = ACTIONS(4117), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + [sym_this] = ACTIONS(4115), }, - [STATE(1281)] = { - [sym_expression] = STATE(4586), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(735)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(1282)] = { - [sym_expression] = STATE(4328), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(736)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_include_token1] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym___cdecl] = ACTIONS(3676), + [anon_sym___clrcall] = ACTIONS(3676), + [anon_sym___stdcall] = ACTIONS(3676), + [anon_sym___fastcall] = ACTIONS(3676), + [anon_sym___thiscall] = ACTIONS(3676), + [anon_sym___vectorcall] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_goto] = ACTIONS(3676), + [anon_sym___try] = ACTIONS(3676), + [anon_sym___leave] = ACTIONS(3676), + [anon_sym_not] = ACTIONS(3676), + [anon_sym_compl] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym___alignof__] = ACTIONS(3676), + [anon_sym___alignof] = ACTIONS(3676), + [anon_sym__alignof] = ACTIONS(3676), + [anon_sym_alignof] = ACTIONS(3676), + [anon_sym__Alignof] = ACTIONS(3676), + [anon_sym_offsetof] = ACTIONS(3676), + [anon_sym__Generic] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [anon_sym_asm] = ACTIONS(3676), + [anon_sym___asm__] = ACTIONS(3676), + [anon_sym___asm] = ACTIONS(3676), + [sym_number_literal] = ACTIONS(3678), + [anon_sym_L_SQUOTE] = ACTIONS(3678), + [anon_sym_u_SQUOTE] = ACTIONS(3678), + [anon_sym_U_SQUOTE] = ACTIONS(3678), + [anon_sym_u8_SQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_L_DQUOTE] = ACTIONS(3678), + [anon_sym_u_DQUOTE] = ACTIONS(3678), + [anon_sym_U_DQUOTE] = ACTIONS(3678), + [anon_sym_u8_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [anon_sym_NULL] = ACTIONS(3676), + [anon_sym_nullptr] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_concept] = ACTIONS(3676), + [anon_sym_co_return] = ACTIONS(3676), + [anon_sym_co_yield] = ACTIONS(3676), + [anon_sym_R_DQUOTE] = ACTIONS(3678), + [anon_sym_LR_DQUOTE] = ACTIONS(3678), + [anon_sym_uR_DQUOTE] = ACTIONS(3678), + [anon_sym_UR_DQUOTE] = ACTIONS(3678), + [anon_sym_u8R_DQUOTE] = ACTIONS(3678), + [anon_sym_co_await] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_requires] = ACTIONS(3676), + [anon_sym_CARET_CARET] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [sym_this] = ACTIONS(3676), }, - [STATE(1283)] = { - [sym_expression] = STATE(3740), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(4198), + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), }, - [STATE(1284)] = { - [sym_expression] = STATE(4331), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(738)] = { + [ts_builtin_sym_end] = ACTIONS(3916), + [sym_identifier] = ACTIONS(3914), + [aux_sym_preproc_include_token1] = ACTIONS(3914), + [aux_sym_preproc_def_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), + [sym_preproc_directive] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_BANG] = ACTIONS(3916), + [anon_sym_TILDE] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_STAR] = ACTIONS(3916), + [anon_sym_AMP_AMP] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_SEMI] = ACTIONS(3916), + [anon_sym___extension__] = ACTIONS(3914), + [anon_sym_typedef] = ACTIONS(3914), + [anon_sym_virtual] = ACTIONS(3914), + [anon_sym_extern] = ACTIONS(3914), + [anon_sym___attribute__] = ACTIONS(3914), + [anon_sym___attribute] = ACTIONS(3914), + [anon_sym_using] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), + [anon_sym___declspec] = ACTIONS(3914), + [anon_sym___based] = ACTIONS(3914), + [anon_sym___cdecl] = ACTIONS(3914), + [anon_sym___clrcall] = ACTIONS(3914), + [anon_sym___stdcall] = ACTIONS(3914), + [anon_sym___fastcall] = ACTIONS(3914), + [anon_sym___thiscall] = ACTIONS(3914), + [anon_sym___vectorcall] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3916), + [anon_sym_signed] = ACTIONS(3914), + [anon_sym_unsigned] = ACTIONS(3914), + [anon_sym_long] = ACTIONS(3914), + [anon_sym_short] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3914), + [anon_sym_register] = ACTIONS(3914), + [anon_sym_inline] = ACTIONS(3914), + [anon_sym___inline] = ACTIONS(3914), + [anon_sym___inline__] = ACTIONS(3914), + [anon_sym___forceinline] = ACTIONS(3914), + [anon_sym_thread_local] = ACTIONS(3914), + [anon_sym___thread] = ACTIONS(3914), + [anon_sym_const] = ACTIONS(3914), + [anon_sym_constexpr] = ACTIONS(3914), + [anon_sym_volatile] = ACTIONS(3914), + [anon_sym_restrict] = ACTIONS(3914), + [anon_sym___restrict__] = ACTIONS(3914), + [anon_sym__Atomic] = ACTIONS(3914), + [anon_sym__Noreturn] = ACTIONS(3914), + [anon_sym_noreturn] = ACTIONS(3914), + [anon_sym__Nonnull] = ACTIONS(3914), + [anon_sym_mutable] = ACTIONS(3914), + [anon_sym_constinit] = ACTIONS(3914), + [anon_sym_consteval] = ACTIONS(3914), + [anon_sym_alignas] = ACTIONS(3914), + [anon_sym__Alignas] = ACTIONS(3914), + [sym_primitive_type] = ACTIONS(3914), + [anon_sym_enum] = ACTIONS(3914), + [anon_sym_class] = ACTIONS(3914), + [anon_sym_struct] = ACTIONS(3914), + [anon_sym_union] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_switch] = ACTIONS(3914), + [anon_sym_case] = ACTIONS(3914), + [anon_sym_default] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_break] = ACTIONS(3914), + [anon_sym_continue] = ACTIONS(3914), + [anon_sym_goto] = ACTIONS(3914), + [anon_sym_not] = ACTIONS(3914), + [anon_sym_compl] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3916), + [anon_sym_PLUS_PLUS] = ACTIONS(3916), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(3914), + [anon_sym___alignof] = ACTIONS(3914), + [anon_sym__alignof] = ACTIONS(3914), + [anon_sym_alignof] = ACTIONS(3914), + [anon_sym__Alignof] = ACTIONS(3914), + [anon_sym_offsetof] = ACTIONS(3914), + [anon_sym__Generic] = ACTIONS(3914), + [anon_sym_typename] = ACTIONS(3914), + [anon_sym_asm] = ACTIONS(3914), + [anon_sym___asm__] = ACTIONS(3914), + [anon_sym___asm] = ACTIONS(3914), + [sym_number_literal] = ACTIONS(3916), + [anon_sym_L_SQUOTE] = ACTIONS(3916), + [anon_sym_u_SQUOTE] = ACTIONS(3916), + [anon_sym_U_SQUOTE] = ACTIONS(3916), + [anon_sym_u8_SQUOTE] = ACTIONS(3916), + [anon_sym_SQUOTE] = ACTIONS(3916), + [anon_sym_L_DQUOTE] = ACTIONS(3916), + [anon_sym_u_DQUOTE] = ACTIONS(3916), + [anon_sym_U_DQUOTE] = ACTIONS(3916), + [anon_sym_u8_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE] = ACTIONS(3916), + [sym_true] = ACTIONS(3914), + [sym_false] = ACTIONS(3914), + [anon_sym_NULL] = ACTIONS(3914), + [anon_sym_nullptr] = ACTIONS(3914), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3914), + [anon_sym_decltype] = ACTIONS(3914), + [anon_sym_explicit] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(3914), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_import] = ACTIONS(3914), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_operator] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3914), + [anon_sym_throw] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_static_assert] = ACTIONS(3914), + [anon_sym_concept] = ACTIONS(3914), + [anon_sym_co_return] = ACTIONS(3914), + [anon_sym_co_yield] = ACTIONS(3914), + [anon_sym_R_DQUOTE] = ACTIONS(3916), + [anon_sym_LR_DQUOTE] = ACTIONS(3916), + [anon_sym_uR_DQUOTE] = ACTIONS(3916), + [anon_sym_UR_DQUOTE] = ACTIONS(3916), + [anon_sym_u8R_DQUOTE] = ACTIONS(3916), + [anon_sym_co_await] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_requires] = ACTIONS(3914), + [anon_sym_CARET_CARET] = ACTIONS(3916), + [anon_sym_LBRACK_COLON] = ACTIONS(3916), + [sym_this] = ACTIONS(3914), }, - [STATE(1285)] = { - [sym_expression] = STATE(4333), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(739)] = { + [sym_identifier] = ACTIONS(3724), + [aux_sym_preproc_include_token1] = ACTIONS(3724), + [aux_sym_preproc_def_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token1] = ACTIONS(3724), + [aux_sym_preproc_if_token2] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), + [sym_preproc_directive] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym___extension__] = ACTIONS(3724), + [anon_sym_typedef] = ACTIONS(3724), + [anon_sym_virtual] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3724), + [anon_sym___attribute__] = ACTIONS(3724), + [anon_sym___attribute] = ACTIONS(3724), + [anon_sym_using] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), + [anon_sym___declspec] = ACTIONS(3724), + [anon_sym___based] = ACTIONS(3724), + [anon_sym___cdecl] = ACTIONS(3724), + [anon_sym___clrcall] = ACTIONS(3724), + [anon_sym___stdcall] = ACTIONS(3724), + [anon_sym___fastcall] = ACTIONS(3724), + [anon_sym___thiscall] = ACTIONS(3724), + [anon_sym___vectorcall] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_unsigned] = ACTIONS(3724), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_short] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_static] = ACTIONS(3724), + [anon_sym_register] = ACTIONS(3724), + [anon_sym_inline] = ACTIONS(3724), + [anon_sym___inline] = ACTIONS(3724), + [anon_sym___inline__] = ACTIONS(3724), + [anon_sym___forceinline] = ACTIONS(3724), + [anon_sym_thread_local] = ACTIONS(3724), + [anon_sym___thread] = ACTIONS(3724), + [anon_sym_const] = ACTIONS(3724), + [anon_sym_constexpr] = ACTIONS(3724), + [anon_sym_volatile] = ACTIONS(3724), + [anon_sym_restrict] = ACTIONS(3724), + [anon_sym___restrict__] = ACTIONS(3724), + [anon_sym__Atomic] = ACTIONS(3724), + [anon_sym__Noreturn] = ACTIONS(3724), + [anon_sym_noreturn] = ACTIONS(3724), + [anon_sym__Nonnull] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(3724), + [anon_sym_constinit] = ACTIONS(3724), + [anon_sym_consteval] = ACTIONS(3724), + [anon_sym_alignas] = ACTIONS(3724), + [anon_sym__Alignas] = ACTIONS(3724), + [sym_primitive_type] = ACTIONS(3724), + [anon_sym_enum] = ACTIONS(3724), + [anon_sym_class] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_union] = ACTIONS(3724), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_case] = ACTIONS(3724), + [anon_sym_default] = ACTIONS(3724), + [anon_sym_while] = ACTIONS(3724), + [anon_sym_do] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3724), + [anon_sym_return] = ACTIONS(3724), + [anon_sym_break] = ACTIONS(3724), + [anon_sym_continue] = ACTIONS(3724), + [anon_sym_goto] = ACTIONS(3724), + [anon_sym___try] = ACTIONS(3724), + [anon_sym___leave] = ACTIONS(3724), + [anon_sym_not] = ACTIONS(3724), + [anon_sym_compl] = ACTIONS(3724), + [anon_sym_DASH_DASH] = ACTIONS(3726), + [anon_sym_PLUS_PLUS] = ACTIONS(3726), + [anon_sym_sizeof] = ACTIONS(3724), + [anon_sym___alignof__] = ACTIONS(3724), + [anon_sym___alignof] = ACTIONS(3724), + [anon_sym__alignof] = ACTIONS(3724), + [anon_sym_alignof] = ACTIONS(3724), + [anon_sym__Alignof] = ACTIONS(3724), + [anon_sym_offsetof] = ACTIONS(3724), + [anon_sym__Generic] = ACTIONS(3724), + [anon_sym_typename] = ACTIONS(3724), + [anon_sym_asm] = ACTIONS(3724), + [anon_sym___asm__] = ACTIONS(3724), + [anon_sym___asm] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3726), + [anon_sym_L_SQUOTE] = ACTIONS(3726), + [anon_sym_u_SQUOTE] = ACTIONS(3726), + [anon_sym_U_SQUOTE] = ACTIONS(3726), + [anon_sym_u8_SQUOTE] = ACTIONS(3726), + [anon_sym_SQUOTE] = ACTIONS(3726), + [anon_sym_L_DQUOTE] = ACTIONS(3726), + [anon_sym_u_DQUOTE] = ACTIONS(3726), + [anon_sym_U_DQUOTE] = ACTIONS(3726), + [anon_sym_u8_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [anon_sym_NULL] = ACTIONS(3724), + [anon_sym_nullptr] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3724), + [anon_sym_decltype] = ACTIONS(3724), + [anon_sym_explicit] = ACTIONS(3724), + [anon_sym_template] = ACTIONS(3724), + [anon_sym_operator] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3724), + [anon_sym_delete] = ACTIONS(3724), + [anon_sym_throw] = ACTIONS(3724), + [anon_sym_namespace] = ACTIONS(3724), + [anon_sym_static_assert] = ACTIONS(3724), + [anon_sym_concept] = ACTIONS(3724), + [anon_sym_co_return] = ACTIONS(3724), + [anon_sym_co_yield] = ACTIONS(3724), + [anon_sym_R_DQUOTE] = ACTIONS(3726), + [anon_sym_LR_DQUOTE] = ACTIONS(3726), + [anon_sym_uR_DQUOTE] = ACTIONS(3726), + [anon_sym_UR_DQUOTE] = ACTIONS(3726), + [anon_sym_u8R_DQUOTE] = ACTIONS(3726), + [anon_sym_co_await] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3724), + [anon_sym_requires] = ACTIONS(3724), + [anon_sym_CARET_CARET] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3726), + [sym_this] = ACTIONS(3724), }, - [STATE(1286)] = { - [sym_expression] = STATE(4334), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(740)] = { + [ts_builtin_sym_end] = ACTIONS(3920), + [sym_identifier] = ACTIONS(3918), + [aux_sym_preproc_include_token1] = ACTIONS(3918), + [aux_sym_preproc_def_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), + [sym_preproc_directive] = ACTIONS(3918), + [anon_sym_LPAREN2] = ACTIONS(3920), + [anon_sym_BANG] = ACTIONS(3920), + [anon_sym_TILDE] = ACTIONS(3920), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym___extension__] = ACTIONS(3918), + [anon_sym_typedef] = ACTIONS(3918), + [anon_sym_virtual] = ACTIONS(3918), + [anon_sym_extern] = ACTIONS(3918), + [anon_sym___attribute__] = ACTIONS(3918), + [anon_sym___attribute] = ACTIONS(3918), + [anon_sym_using] = ACTIONS(3918), + [anon_sym_COLON_COLON] = ACTIONS(3920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), + [anon_sym___declspec] = ACTIONS(3918), + [anon_sym___based] = ACTIONS(3918), + [anon_sym___cdecl] = ACTIONS(3918), + [anon_sym___clrcall] = ACTIONS(3918), + [anon_sym___stdcall] = ACTIONS(3918), + [anon_sym___fastcall] = ACTIONS(3918), + [anon_sym___thiscall] = ACTIONS(3918), + [anon_sym___vectorcall] = ACTIONS(3918), + [anon_sym_LBRACE] = ACTIONS(3920), + [anon_sym_signed] = ACTIONS(3918), + [anon_sym_unsigned] = ACTIONS(3918), + [anon_sym_long] = ACTIONS(3918), + [anon_sym_short] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3918), + [anon_sym_static] = ACTIONS(3918), + [anon_sym_register] = ACTIONS(3918), + [anon_sym_inline] = ACTIONS(3918), + [anon_sym___inline] = ACTIONS(3918), + [anon_sym___inline__] = ACTIONS(3918), + [anon_sym___forceinline] = ACTIONS(3918), + [anon_sym_thread_local] = ACTIONS(3918), + [anon_sym___thread] = ACTIONS(3918), + [anon_sym_const] = ACTIONS(3918), + [anon_sym_constexpr] = ACTIONS(3918), + [anon_sym_volatile] = ACTIONS(3918), + [anon_sym_restrict] = ACTIONS(3918), + [anon_sym___restrict__] = ACTIONS(3918), + [anon_sym__Atomic] = ACTIONS(3918), + [anon_sym__Noreturn] = ACTIONS(3918), + [anon_sym_noreturn] = ACTIONS(3918), + [anon_sym__Nonnull] = ACTIONS(3918), + [anon_sym_mutable] = ACTIONS(3918), + [anon_sym_constinit] = ACTIONS(3918), + [anon_sym_consteval] = ACTIONS(3918), + [anon_sym_alignas] = ACTIONS(3918), + [anon_sym__Alignas] = ACTIONS(3918), + [sym_primitive_type] = ACTIONS(3918), + [anon_sym_enum] = ACTIONS(3918), + [anon_sym_class] = ACTIONS(3918), + [anon_sym_struct] = ACTIONS(3918), + [anon_sym_union] = ACTIONS(3918), + [anon_sym_if] = ACTIONS(3918), + [anon_sym_switch] = ACTIONS(3918), + [anon_sym_case] = ACTIONS(3918), + [anon_sym_default] = ACTIONS(3918), + [anon_sym_while] = ACTIONS(3918), + [anon_sym_do] = ACTIONS(3918), + [anon_sym_for] = ACTIONS(3918), + [anon_sym_return] = ACTIONS(3918), + [anon_sym_break] = ACTIONS(3918), + [anon_sym_continue] = ACTIONS(3918), + [anon_sym_goto] = ACTIONS(3918), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_compl] = ACTIONS(3918), + [anon_sym_DASH_DASH] = ACTIONS(3920), + [anon_sym_PLUS_PLUS] = ACTIONS(3920), + [anon_sym_sizeof] = ACTIONS(3918), + [anon_sym___alignof__] = ACTIONS(3918), + [anon_sym___alignof] = ACTIONS(3918), + [anon_sym__alignof] = ACTIONS(3918), + [anon_sym_alignof] = ACTIONS(3918), + [anon_sym__Alignof] = ACTIONS(3918), + [anon_sym_offsetof] = ACTIONS(3918), + [anon_sym__Generic] = ACTIONS(3918), + [anon_sym_typename] = ACTIONS(3918), + [anon_sym_asm] = ACTIONS(3918), + [anon_sym___asm__] = ACTIONS(3918), + [anon_sym___asm] = ACTIONS(3918), + [sym_number_literal] = ACTIONS(3920), + [anon_sym_L_SQUOTE] = ACTIONS(3920), + [anon_sym_u_SQUOTE] = ACTIONS(3920), + [anon_sym_U_SQUOTE] = ACTIONS(3920), + [anon_sym_u8_SQUOTE] = ACTIONS(3920), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_L_DQUOTE] = ACTIONS(3920), + [anon_sym_u_DQUOTE] = ACTIONS(3920), + [anon_sym_U_DQUOTE] = ACTIONS(3920), + [anon_sym_u8_DQUOTE] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [sym_true] = ACTIONS(3918), + [sym_false] = ACTIONS(3918), + [anon_sym_NULL] = ACTIONS(3918), + [anon_sym_nullptr] = ACTIONS(3918), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3918), + [anon_sym_decltype] = ACTIONS(3918), + [anon_sym_explicit] = ACTIONS(3918), + [anon_sym_export] = ACTIONS(3918), + [anon_sym_module] = ACTIONS(3918), + [anon_sym_import] = ACTIONS(3918), + [anon_sym_template] = ACTIONS(3918), + [anon_sym_operator] = ACTIONS(3918), + [anon_sym_try] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3918), + [anon_sym_throw] = ACTIONS(3918), + [anon_sym_namespace] = ACTIONS(3918), + [anon_sym_static_assert] = ACTIONS(3918), + [anon_sym_concept] = ACTIONS(3918), + [anon_sym_co_return] = ACTIONS(3918), + [anon_sym_co_yield] = ACTIONS(3918), + [anon_sym_R_DQUOTE] = ACTIONS(3920), + [anon_sym_LR_DQUOTE] = ACTIONS(3920), + [anon_sym_uR_DQUOTE] = ACTIONS(3920), + [anon_sym_UR_DQUOTE] = ACTIONS(3920), + [anon_sym_u8R_DQUOTE] = ACTIONS(3920), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3918), + [anon_sym_requires] = ACTIONS(3918), + [anon_sym_CARET_CARET] = ACTIONS(3920), + [anon_sym_LBRACK_COLON] = ACTIONS(3920), + [sym_this] = ACTIONS(3918), }, - [STATE(1287)] = { - [sym_expression] = STATE(4338), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(741)] = { + [sym_identifier] = ACTIONS(3872), + [aux_sym_preproc_include_token1] = ACTIONS(3872), + [aux_sym_preproc_def_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token1] = ACTIONS(3872), + [aux_sym_preproc_if_token2] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), + [sym_preproc_directive] = ACTIONS(3872), + [anon_sym_LPAREN2] = ACTIONS(3874), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3872), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym___extension__] = ACTIONS(3872), + [anon_sym_typedef] = ACTIONS(3872), + [anon_sym_virtual] = ACTIONS(3872), + [anon_sym_extern] = ACTIONS(3872), + [anon_sym___attribute__] = ACTIONS(3872), + [anon_sym___attribute] = ACTIONS(3872), + [anon_sym_using] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(3874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), + [anon_sym___declspec] = ACTIONS(3872), + [anon_sym___based] = ACTIONS(3872), + [anon_sym___cdecl] = ACTIONS(3872), + [anon_sym___clrcall] = ACTIONS(3872), + [anon_sym___stdcall] = ACTIONS(3872), + [anon_sym___fastcall] = ACTIONS(3872), + [anon_sym___thiscall] = ACTIONS(3872), + [anon_sym___vectorcall] = ACTIONS(3872), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_signed] = ACTIONS(3872), + [anon_sym_unsigned] = ACTIONS(3872), + [anon_sym_long] = ACTIONS(3872), + [anon_sym_short] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(3872), + [anon_sym_static] = ACTIONS(3872), + [anon_sym_register] = ACTIONS(3872), + [anon_sym_inline] = ACTIONS(3872), + [anon_sym___inline] = ACTIONS(3872), + [anon_sym___inline__] = ACTIONS(3872), + [anon_sym___forceinline] = ACTIONS(3872), + [anon_sym_thread_local] = ACTIONS(3872), + [anon_sym___thread] = ACTIONS(3872), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_constexpr] = ACTIONS(3872), + [anon_sym_volatile] = ACTIONS(3872), + [anon_sym_restrict] = ACTIONS(3872), + [anon_sym___restrict__] = ACTIONS(3872), + [anon_sym__Atomic] = ACTIONS(3872), + [anon_sym__Noreturn] = ACTIONS(3872), + [anon_sym_noreturn] = ACTIONS(3872), + [anon_sym__Nonnull] = ACTIONS(3872), + [anon_sym_mutable] = ACTIONS(3872), + [anon_sym_constinit] = ACTIONS(3872), + [anon_sym_consteval] = ACTIONS(3872), + [anon_sym_alignas] = ACTIONS(3872), + [anon_sym__Alignas] = ACTIONS(3872), + [sym_primitive_type] = ACTIONS(3872), + [anon_sym_enum] = ACTIONS(3872), + [anon_sym_class] = ACTIONS(3872), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3872), + [anon_sym_case] = ACTIONS(3872), + [anon_sym_default] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_do] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_goto] = ACTIONS(3872), + [anon_sym___try] = ACTIONS(3872), + [anon_sym___leave] = ACTIONS(3872), + [anon_sym_not] = ACTIONS(3872), + [anon_sym_compl] = ACTIONS(3872), + [anon_sym_DASH_DASH] = ACTIONS(3874), + [anon_sym_PLUS_PLUS] = ACTIONS(3874), + [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym___alignof__] = ACTIONS(3872), + [anon_sym___alignof] = ACTIONS(3872), + [anon_sym__alignof] = ACTIONS(3872), + [anon_sym_alignof] = ACTIONS(3872), + [anon_sym__Alignof] = ACTIONS(3872), + [anon_sym_offsetof] = ACTIONS(3872), + [anon_sym__Generic] = ACTIONS(3872), + [anon_sym_typename] = ACTIONS(3872), + [anon_sym_asm] = ACTIONS(3872), + [anon_sym___asm__] = ACTIONS(3872), + [anon_sym___asm] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3874), + [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(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3872), + [sym_false] = ACTIONS(3872), + [anon_sym_NULL] = ACTIONS(3872), + [anon_sym_nullptr] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3872), + [anon_sym_decltype] = ACTIONS(3872), + [anon_sym_explicit] = ACTIONS(3872), + [anon_sym_template] = ACTIONS(3872), + [anon_sym_operator] = ACTIONS(3872), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_delete] = ACTIONS(3872), + [anon_sym_throw] = ACTIONS(3872), + [anon_sym_namespace] = ACTIONS(3872), + [anon_sym_static_assert] = ACTIONS(3872), + [anon_sym_concept] = ACTIONS(3872), + [anon_sym_co_return] = ACTIONS(3872), + [anon_sym_co_yield] = ACTIONS(3872), + [anon_sym_R_DQUOTE] = ACTIONS(3874), + [anon_sym_LR_DQUOTE] = ACTIONS(3874), + [anon_sym_uR_DQUOTE] = ACTIONS(3874), + [anon_sym_UR_DQUOTE] = ACTIONS(3874), + [anon_sym_u8R_DQUOTE] = ACTIONS(3874), + [anon_sym_co_await] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3872), + [anon_sym_requires] = ACTIONS(3872), + [anon_sym_CARET_CARET] = ACTIONS(3874), + [anon_sym_LBRACK_COLON] = ACTIONS(3874), + [sym_this] = ACTIONS(3872), }, - [STATE(1288)] = { - [sym_expression] = STATE(4339), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(742)] = { + [sym_identifier] = ACTIONS(3880), + [aux_sym_preproc_include_token1] = ACTIONS(3880), + [aux_sym_preproc_def_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token1] = ACTIONS(3880), + [aux_sym_preproc_if_token2] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), + [sym_preproc_directive] = ACTIONS(3880), + [anon_sym_LPAREN2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3880), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym___extension__] = ACTIONS(3880), + [anon_sym_typedef] = ACTIONS(3880), + [anon_sym_virtual] = ACTIONS(3880), + [anon_sym_extern] = ACTIONS(3880), + [anon_sym___attribute__] = ACTIONS(3880), + [anon_sym___attribute] = ACTIONS(3880), + [anon_sym_using] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), + [anon_sym___declspec] = ACTIONS(3880), + [anon_sym___based] = ACTIONS(3880), + [anon_sym___cdecl] = ACTIONS(3880), + [anon_sym___clrcall] = ACTIONS(3880), + [anon_sym___stdcall] = ACTIONS(3880), + [anon_sym___fastcall] = ACTIONS(3880), + [anon_sym___thiscall] = ACTIONS(3880), + [anon_sym___vectorcall] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3880), + [anon_sym_unsigned] = ACTIONS(3880), + [anon_sym_long] = ACTIONS(3880), + [anon_sym_short] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_static] = ACTIONS(3880), + [anon_sym_register] = ACTIONS(3880), + [anon_sym_inline] = ACTIONS(3880), + [anon_sym___inline] = ACTIONS(3880), + [anon_sym___inline__] = ACTIONS(3880), + [anon_sym___forceinline] = ACTIONS(3880), + [anon_sym_thread_local] = ACTIONS(3880), + [anon_sym___thread] = ACTIONS(3880), + [anon_sym_const] = ACTIONS(3880), + [anon_sym_constexpr] = ACTIONS(3880), + [anon_sym_volatile] = ACTIONS(3880), + [anon_sym_restrict] = ACTIONS(3880), + [anon_sym___restrict__] = ACTIONS(3880), + [anon_sym__Atomic] = ACTIONS(3880), + [anon_sym__Noreturn] = ACTIONS(3880), + [anon_sym_noreturn] = ACTIONS(3880), + [anon_sym__Nonnull] = ACTIONS(3880), + [anon_sym_mutable] = ACTIONS(3880), + [anon_sym_constinit] = ACTIONS(3880), + [anon_sym_consteval] = ACTIONS(3880), + [anon_sym_alignas] = ACTIONS(3880), + [anon_sym__Alignas] = ACTIONS(3880), + [sym_primitive_type] = ACTIONS(3880), + [anon_sym_enum] = ACTIONS(3880), + [anon_sym_class] = ACTIONS(3880), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_union] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3880), + [anon_sym_case] = ACTIONS(3880), + [anon_sym_default] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_do] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_goto] = ACTIONS(3880), + [anon_sym___try] = ACTIONS(3880), + [anon_sym___leave] = ACTIONS(3880), + [anon_sym_not] = ACTIONS(3880), + [anon_sym_compl] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_sizeof] = ACTIONS(3880), + [anon_sym___alignof__] = ACTIONS(3880), + [anon_sym___alignof] = ACTIONS(3880), + [anon_sym__alignof] = ACTIONS(3880), + [anon_sym_alignof] = ACTIONS(3880), + [anon_sym__Alignof] = ACTIONS(3880), + [anon_sym_offsetof] = ACTIONS(3880), + [anon_sym__Generic] = ACTIONS(3880), + [anon_sym_typename] = ACTIONS(3880), + [anon_sym_asm] = ACTIONS(3880), + [anon_sym___asm__] = ACTIONS(3880), + [anon_sym___asm] = ACTIONS(3880), + [sym_number_literal] = ACTIONS(3882), + [anon_sym_L_SQUOTE] = ACTIONS(3882), + [anon_sym_u_SQUOTE] = ACTIONS(3882), + [anon_sym_U_SQUOTE] = ACTIONS(3882), + [anon_sym_u8_SQUOTE] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3882), + [anon_sym_L_DQUOTE] = ACTIONS(3882), + [anon_sym_u_DQUOTE] = ACTIONS(3882), + [anon_sym_U_DQUOTE] = ACTIONS(3882), + [anon_sym_u8_DQUOTE] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3880), + [anon_sym_explicit] = ACTIONS(3880), + [anon_sym_template] = ACTIONS(3880), + [anon_sym_operator] = ACTIONS(3880), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_delete] = ACTIONS(3880), + [anon_sym_throw] = ACTIONS(3880), + [anon_sym_namespace] = ACTIONS(3880), + [anon_sym_static_assert] = ACTIONS(3880), + [anon_sym_concept] = ACTIONS(3880), + [anon_sym_co_return] = ACTIONS(3880), + [anon_sym_co_yield] = 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(3880), + [anon_sym_new] = ACTIONS(3880), + [anon_sym_requires] = ACTIONS(3880), + [anon_sym_CARET_CARET] = ACTIONS(3882), + [anon_sym_LBRACK_COLON] = ACTIONS(3882), + [sym_this] = ACTIONS(3880), }, - [STATE(1289)] = { - [sym_expression] = STATE(4340), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(743)] = { + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1290)] = { - [sym_expression] = STATE(4341), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(744)] = { + [sym_identifier] = ACTIONS(3868), + [aux_sym_preproc_include_token1] = ACTIONS(3868), + [aux_sym_preproc_def_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token1] = ACTIONS(3868), + [aux_sym_preproc_if_token2] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), + [sym_preproc_directive] = ACTIONS(3868), + [anon_sym_LPAREN2] = ACTIONS(3870), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3868), + [anon_sym_PLUS] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3870), + [anon_sym_AMP_AMP] = ACTIONS(3870), + [anon_sym_AMP] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym___extension__] = ACTIONS(3868), + [anon_sym_typedef] = ACTIONS(3868), + [anon_sym_virtual] = ACTIONS(3868), + [anon_sym_extern] = ACTIONS(3868), + [anon_sym___attribute__] = ACTIONS(3868), + [anon_sym___attribute] = ACTIONS(3868), + [anon_sym_using] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), + [anon_sym___declspec] = ACTIONS(3868), + [anon_sym___based] = ACTIONS(3868), + [anon_sym___cdecl] = ACTIONS(3868), + [anon_sym___clrcall] = ACTIONS(3868), + [anon_sym___stdcall] = ACTIONS(3868), + [anon_sym___fastcall] = ACTIONS(3868), + [anon_sym___thiscall] = ACTIONS(3868), + [anon_sym___vectorcall] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_signed] = ACTIONS(3868), + [anon_sym_unsigned] = ACTIONS(3868), + [anon_sym_long] = ACTIONS(3868), + [anon_sym_short] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3868), + [anon_sym_static] = ACTIONS(3868), + [anon_sym_register] = ACTIONS(3868), + [anon_sym_inline] = ACTIONS(3868), + [anon_sym___inline] = ACTIONS(3868), + [anon_sym___inline__] = ACTIONS(3868), + [anon_sym___forceinline] = ACTIONS(3868), + [anon_sym_thread_local] = ACTIONS(3868), + [anon_sym___thread] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(3868), + [anon_sym_constexpr] = ACTIONS(3868), + [anon_sym_volatile] = ACTIONS(3868), + [anon_sym_restrict] = ACTIONS(3868), + [anon_sym___restrict__] = ACTIONS(3868), + [anon_sym__Atomic] = ACTIONS(3868), + [anon_sym__Noreturn] = ACTIONS(3868), + [anon_sym_noreturn] = ACTIONS(3868), + [anon_sym__Nonnull] = ACTIONS(3868), + [anon_sym_mutable] = ACTIONS(3868), + [anon_sym_constinit] = ACTIONS(3868), + [anon_sym_consteval] = ACTIONS(3868), + [anon_sym_alignas] = ACTIONS(3868), + [anon_sym__Alignas] = ACTIONS(3868), + [sym_primitive_type] = ACTIONS(3868), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3868), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_union] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3868), + [anon_sym_case] = ACTIONS(3868), + [anon_sym_default] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_do] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_goto] = ACTIONS(3868), + [anon_sym___try] = ACTIONS(3868), + [anon_sym___leave] = ACTIONS(3868), + [anon_sym_not] = ACTIONS(3868), + [anon_sym_compl] = ACTIONS(3868), + [anon_sym_DASH_DASH] = ACTIONS(3870), + [anon_sym_PLUS_PLUS] = ACTIONS(3870), + [anon_sym_sizeof] = ACTIONS(3868), + [anon_sym___alignof__] = ACTIONS(3868), + [anon_sym___alignof] = ACTIONS(3868), + [anon_sym__alignof] = ACTIONS(3868), + [anon_sym_alignof] = ACTIONS(3868), + [anon_sym__Alignof] = ACTIONS(3868), + [anon_sym_offsetof] = ACTIONS(3868), + [anon_sym__Generic] = ACTIONS(3868), + [anon_sym_typename] = ACTIONS(3868), + [anon_sym_asm] = ACTIONS(3868), + [anon_sym___asm__] = ACTIONS(3868), + [anon_sym___asm] = ACTIONS(3868), + [sym_number_literal] = ACTIONS(3870), + [anon_sym_L_SQUOTE] = ACTIONS(3870), + [anon_sym_u_SQUOTE] = ACTIONS(3870), + [anon_sym_U_SQUOTE] = ACTIONS(3870), + [anon_sym_u8_SQUOTE] = ACTIONS(3870), + [anon_sym_SQUOTE] = ACTIONS(3870), + [anon_sym_L_DQUOTE] = ACTIONS(3870), + [anon_sym_u_DQUOTE] = ACTIONS(3870), + [anon_sym_U_DQUOTE] = ACTIONS(3870), + [anon_sym_u8_DQUOTE] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [anon_sym_NULL] = ACTIONS(3868), + [anon_sym_nullptr] = ACTIONS(3868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3868), + [anon_sym_decltype] = ACTIONS(3868), + [anon_sym_explicit] = ACTIONS(3868), + [anon_sym_template] = ACTIONS(3868), + [anon_sym_operator] = ACTIONS(3868), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3868), + [anon_sym_throw] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_static_assert] = ACTIONS(3868), + [anon_sym_concept] = ACTIONS(3868), + [anon_sym_co_return] = ACTIONS(3868), + [anon_sym_co_yield] = ACTIONS(3868), + [anon_sym_R_DQUOTE] = ACTIONS(3870), + [anon_sym_LR_DQUOTE] = ACTIONS(3870), + [anon_sym_uR_DQUOTE] = ACTIONS(3870), + [anon_sym_UR_DQUOTE] = ACTIONS(3870), + [anon_sym_u8R_DQUOTE] = ACTIONS(3870), + [anon_sym_co_await] = ACTIONS(3868), + [anon_sym_new] = ACTIONS(3868), + [anon_sym_requires] = ACTIONS(3868), + [anon_sym_CARET_CARET] = ACTIONS(3870), + [anon_sym_LBRACK_COLON] = ACTIONS(3870), + [sym_this] = ACTIONS(3868), }, - [STATE(1291)] = { - [sym_expression] = STATE(4343), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(745)] = { + [ts_builtin_sym_end] = ACTIONS(3924), + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3922), + [anon_sym_module] = ACTIONS(3922), + [anon_sym_import] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1292)] = { - [sym_expression] = STATE(4348), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(746)] = { + [ts_builtin_sym_end] = ACTIONS(3924), + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_export] = ACTIONS(3922), + [anon_sym_module] = ACTIONS(3922), + [anon_sym_import] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1293)] = { - [sym_expression] = STATE(3619), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(747)] = { + [ts_builtin_sym_end] = ACTIONS(4162), + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1294)] = { - [sym_expression] = STATE(4367), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(748)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), }, - [STATE(1295)] = { - [sym_expression] = STATE(4541), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(4954), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(749)] = { + [sym_identifier] = ACTIONS(3692), + [aux_sym_preproc_include_token1] = ACTIONS(3692), + [aux_sym_preproc_def_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token1] = ACTIONS(3692), + [aux_sym_preproc_if_token2] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), + [sym_preproc_directive] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AMP_AMP] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym___extension__] = ACTIONS(3692), + [anon_sym_typedef] = ACTIONS(3692), + [anon_sym_virtual] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3692), + [anon_sym___attribute__] = ACTIONS(3692), + [anon_sym___attribute] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), + [anon_sym___declspec] = ACTIONS(3692), + [anon_sym___based] = ACTIONS(3692), + [anon_sym___cdecl] = ACTIONS(3692), + [anon_sym___clrcall] = ACTIONS(3692), + [anon_sym___stdcall] = ACTIONS(3692), + [anon_sym___fastcall] = ACTIONS(3692), + [anon_sym___thiscall] = ACTIONS(3692), + [anon_sym___vectorcall] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_signed] = ACTIONS(3692), + [anon_sym_unsigned] = ACTIONS(3692), + [anon_sym_long] = ACTIONS(3692), + [anon_sym_short] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_register] = ACTIONS(3692), + [anon_sym_inline] = ACTIONS(3692), + [anon_sym___inline] = ACTIONS(3692), + [anon_sym___inline__] = ACTIONS(3692), + [anon_sym___forceinline] = ACTIONS(3692), + [anon_sym_thread_local] = ACTIONS(3692), + [anon_sym___thread] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym___restrict__] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym__Noreturn] = ACTIONS(3692), + [anon_sym_noreturn] = ACTIONS(3692), + [anon_sym__Nonnull] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_alignas] = ACTIONS(3692), + [anon_sym__Alignas] = ACTIONS(3692), + [sym_primitive_type] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3692), + [anon_sym_union] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3692), + [anon_sym___leave] = ACTIONS(3692), + [anon_sym_not] = ACTIONS(3692), + [anon_sym_compl] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_sizeof] = ACTIONS(3692), + [anon_sym___alignof__] = ACTIONS(3692), + [anon_sym___alignof] = ACTIONS(3692), + [anon_sym__alignof] = ACTIONS(3692), + [anon_sym_alignof] = ACTIONS(3692), + [anon_sym__Alignof] = ACTIONS(3692), + [anon_sym_offsetof] = ACTIONS(3692), + [anon_sym__Generic] = ACTIONS(3692), + [anon_sym_typename] = ACTIONS(3692), + [anon_sym_asm] = ACTIONS(3692), + [anon_sym___asm__] = ACTIONS(3692), + [anon_sym___asm] = ACTIONS(3692), + [sym_number_literal] = ACTIONS(3694), + [anon_sym_L_SQUOTE] = ACTIONS(3694), + [anon_sym_u_SQUOTE] = ACTIONS(3694), + [anon_sym_U_SQUOTE] = ACTIONS(3694), + [anon_sym_u8_SQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_L_DQUOTE] = ACTIONS(3694), + [anon_sym_u_DQUOTE] = ACTIONS(3694), + [anon_sym_U_DQUOTE] = ACTIONS(3694), + [anon_sym_u8_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [anon_sym_NULL] = ACTIONS(3692), + [anon_sym_nullptr] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_explicit] = ACTIONS(3692), + [anon_sym_template] = ACTIONS(3692), + [anon_sym_operator] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_static_assert] = ACTIONS(3692), + [anon_sym_concept] = ACTIONS(3692), + [anon_sym_co_return] = ACTIONS(3692), + [anon_sym_co_yield] = ACTIONS(3692), + [anon_sym_R_DQUOTE] = ACTIONS(3694), + [anon_sym_LR_DQUOTE] = ACTIONS(3694), + [anon_sym_uR_DQUOTE] = ACTIONS(3694), + [anon_sym_UR_DQUOTE] = ACTIONS(3694), + [anon_sym_u8R_DQUOTE] = ACTIONS(3694), + [anon_sym_co_await] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_requires] = ACTIONS(3692), + [anon_sym_CARET_CARET] = ACTIONS(3694), + [anon_sym_LBRACK_COLON] = ACTIONS(3694), + [sym_this] = ACTIONS(3692), }, - [STATE(1296)] = { - [sym_expression] = STATE(4329), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4956), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(750)] = { + [ts_builtin_sym_end] = ACTIONS(3928), + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_include_token1] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3926), + [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym___cdecl] = ACTIONS(3926), + [anon_sym___clrcall] = ACTIONS(3926), + [anon_sym___stdcall] = ACTIONS(3926), + [anon_sym___fastcall] = ACTIONS(3926), + [anon_sym___thiscall] = ACTIONS(3926), + [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_switch] = ACTIONS(3926), + [anon_sym_case] = ACTIONS(3926), + [anon_sym_default] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_break] = ACTIONS(3926), + [anon_sym_continue] = ACTIONS(3926), + [anon_sym_goto] = ACTIONS(3926), + [anon_sym_not] = ACTIONS(3926), + [anon_sym_compl] = ACTIONS(3926), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3926), + [anon_sym___alignof__] = ACTIONS(3926), + [anon_sym___alignof] = ACTIONS(3926), + [anon_sym__alignof] = ACTIONS(3926), + [anon_sym_alignof] = ACTIONS(3926), + [anon_sym__Alignof] = ACTIONS(3926), + [anon_sym_offsetof] = ACTIONS(3926), + [anon_sym__Generic] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [anon_sym_asm] = ACTIONS(3926), + [anon_sym___asm__] = ACTIONS(3926), + [anon_sym___asm] = ACTIONS(3926), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3926), + [sym_false] = ACTIONS(3926), + [anon_sym_NULL] = ACTIONS(3926), + [anon_sym_nullptr] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_export] = ACTIONS(3926), + [anon_sym_module] = ACTIONS(3926), + [anon_sym_import] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_try] = ACTIONS(3926), + [anon_sym_delete] = ACTIONS(3926), + [anon_sym_throw] = ACTIONS(3926), + [anon_sym_namespace] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_concept] = ACTIONS(3926), + [anon_sym_co_return] = ACTIONS(3926), + [anon_sym_co_yield] = ACTIONS(3926), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3926), + [anon_sym_new] = ACTIONS(3926), + [anon_sym_requires] = ACTIONS(3926), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3926), }, - [STATE(1297)] = { - [sym_expression] = STATE(4366), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(751)] = { + [ts_builtin_sym_end] = ACTIONS(4008), + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_include_token1] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym___cdecl] = ACTIONS(4006), + [anon_sym___clrcall] = ACTIONS(4006), + [anon_sym___stdcall] = ACTIONS(4006), + [anon_sym___fastcall] = ACTIONS(4006), + [anon_sym___thiscall] = ACTIONS(4006), + [anon_sym___vectorcall] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_if] = ACTIONS(4006), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_case] = ACTIONS(4006), + [anon_sym_default] = ACTIONS(4006), + [anon_sym_while] = ACTIONS(4006), + [anon_sym_do] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4006), + [anon_sym_break] = ACTIONS(4006), + [anon_sym_continue] = ACTIONS(4006), + [anon_sym_goto] = ACTIONS(4006), + [anon_sym_not] = ACTIONS(4006), + [anon_sym_compl] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4008), + [anon_sym_sizeof] = ACTIONS(4006), + [anon_sym___alignof__] = ACTIONS(4006), + [anon_sym___alignof] = ACTIONS(4006), + [anon_sym__alignof] = ACTIONS(4006), + [anon_sym_alignof] = ACTIONS(4006), + [anon_sym__Alignof] = ACTIONS(4006), + [anon_sym_offsetof] = ACTIONS(4006), + [anon_sym__Generic] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [anon_sym_asm] = ACTIONS(4006), + [anon_sym___asm__] = ACTIONS(4006), + [anon_sym___asm] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4008), + [anon_sym_L_SQUOTE] = ACTIONS(4008), + [anon_sym_u_SQUOTE] = ACTIONS(4008), + [anon_sym_U_SQUOTE] = ACTIONS(4008), + [anon_sym_u8_SQUOTE] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4008), + [anon_sym_L_DQUOTE] = ACTIONS(4008), + [anon_sym_u_DQUOTE] = ACTIONS(4008), + [anon_sym_U_DQUOTE] = ACTIONS(4008), + [anon_sym_u8_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [sym_true] = ACTIONS(4006), + [sym_false] = ACTIONS(4006), + [anon_sym_NULL] = ACTIONS(4006), + [anon_sym_nullptr] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_export] = ACTIONS(4006), + [anon_sym_module] = ACTIONS(4006), + [anon_sym_import] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_try] = ACTIONS(4006), + [anon_sym_delete] = ACTIONS(4006), + [anon_sym_throw] = ACTIONS(4006), + [anon_sym_namespace] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_concept] = ACTIONS(4006), + [anon_sym_co_return] = ACTIONS(4006), + [anon_sym_co_yield] = ACTIONS(4006), + [anon_sym_R_DQUOTE] = ACTIONS(4008), + [anon_sym_LR_DQUOTE] = ACTIONS(4008), + [anon_sym_uR_DQUOTE] = ACTIONS(4008), + [anon_sym_UR_DQUOTE] = ACTIONS(4008), + [anon_sym_u8R_DQUOTE] = ACTIONS(4008), + [anon_sym_co_await] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4006), + [anon_sym_requires] = ACTIONS(4006), + [anon_sym_CARET_CARET] = ACTIONS(4008), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [sym_this] = ACTIONS(4006), }, - [STATE(1298)] = { - [sym_expression] = STATE(4218), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(752)] = { + [sym_identifier] = ACTIONS(3894), + [aux_sym_preproc_include_token1] = ACTIONS(3894), + [aux_sym_preproc_def_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token1] = ACTIONS(3894), + [aux_sym_preproc_if_token2] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), + [sym_preproc_directive] = ACTIONS(3894), + [anon_sym_LPAREN2] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3896), + [anon_sym_TILDE] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AMP_AMP] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym___extension__] = ACTIONS(3894), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_virtual] = ACTIONS(3894), + [anon_sym_extern] = ACTIONS(3894), + [anon_sym___attribute__] = ACTIONS(3894), + [anon_sym___attribute] = ACTIONS(3894), + [anon_sym_using] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), + [anon_sym___declspec] = ACTIONS(3894), + [anon_sym___based] = ACTIONS(3894), + [anon_sym___cdecl] = ACTIONS(3894), + [anon_sym___clrcall] = ACTIONS(3894), + [anon_sym___stdcall] = ACTIONS(3894), + [anon_sym___fastcall] = ACTIONS(3894), + [anon_sym___thiscall] = ACTIONS(3894), + [anon_sym___vectorcall] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_signed] = ACTIONS(3894), + [anon_sym_unsigned] = ACTIONS(3894), + [anon_sym_long] = ACTIONS(3894), + [anon_sym_short] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_static] = ACTIONS(3894), + [anon_sym_register] = ACTIONS(3894), + [anon_sym_inline] = ACTIONS(3894), + [anon_sym___inline] = ACTIONS(3894), + [anon_sym___inline__] = ACTIONS(3894), + [anon_sym___forceinline] = ACTIONS(3894), + [anon_sym_thread_local] = ACTIONS(3894), + [anon_sym___thread] = ACTIONS(3894), + [anon_sym_const] = ACTIONS(3894), + [anon_sym_constexpr] = ACTIONS(3894), + [anon_sym_volatile] = ACTIONS(3894), + [anon_sym_restrict] = ACTIONS(3894), + [anon_sym___restrict__] = ACTIONS(3894), + [anon_sym__Atomic] = ACTIONS(3894), + [anon_sym__Noreturn] = ACTIONS(3894), + [anon_sym_noreturn] = ACTIONS(3894), + [anon_sym__Nonnull] = ACTIONS(3894), + [anon_sym_mutable] = ACTIONS(3894), + [anon_sym_constinit] = ACTIONS(3894), + [anon_sym_consteval] = ACTIONS(3894), + [anon_sym_alignas] = ACTIONS(3894), + [anon_sym__Alignas] = ACTIONS(3894), + [sym_primitive_type] = ACTIONS(3894), + [anon_sym_enum] = ACTIONS(3894), + [anon_sym_class] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3894), + [anon_sym_union] = ACTIONS(3894), + [anon_sym_if] = ACTIONS(3894), + [anon_sym_else] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3894), + [anon_sym_case] = ACTIONS(3894), + [anon_sym_default] = ACTIONS(3894), + [anon_sym_while] = ACTIONS(3894), + [anon_sym_do] = ACTIONS(3894), + [anon_sym_for] = ACTIONS(3894), + [anon_sym_return] = ACTIONS(3894), + [anon_sym_break] = ACTIONS(3894), + [anon_sym_continue] = ACTIONS(3894), + [anon_sym_goto] = ACTIONS(3894), + [anon_sym___try] = ACTIONS(3894), + [anon_sym___leave] = ACTIONS(3894), + [anon_sym_not] = ACTIONS(3894), + [anon_sym_compl] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3896), + [anon_sym_PLUS_PLUS] = ACTIONS(3896), + [anon_sym_sizeof] = ACTIONS(3894), + [anon_sym___alignof__] = ACTIONS(3894), + [anon_sym___alignof] = ACTIONS(3894), + [anon_sym__alignof] = ACTIONS(3894), + [anon_sym_alignof] = ACTIONS(3894), + [anon_sym__Alignof] = ACTIONS(3894), + [anon_sym_offsetof] = ACTIONS(3894), + [anon_sym__Generic] = ACTIONS(3894), + [anon_sym_typename] = ACTIONS(3894), + [anon_sym_asm] = ACTIONS(3894), + [anon_sym___asm__] = ACTIONS(3894), + [anon_sym___asm] = ACTIONS(3894), + [sym_number_literal] = ACTIONS(3896), + [anon_sym_L_SQUOTE] = ACTIONS(3896), + [anon_sym_u_SQUOTE] = ACTIONS(3896), + [anon_sym_U_SQUOTE] = ACTIONS(3896), + [anon_sym_u8_SQUOTE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3896), + [anon_sym_L_DQUOTE] = ACTIONS(3896), + [anon_sym_u_DQUOTE] = ACTIONS(3896), + [anon_sym_U_DQUOTE] = ACTIONS(3896), + [anon_sym_u8_DQUOTE] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym_true] = ACTIONS(3894), + [sym_false] = ACTIONS(3894), + [anon_sym_NULL] = ACTIONS(3894), + [anon_sym_nullptr] = ACTIONS(3894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3894), + [anon_sym_decltype] = ACTIONS(3894), + [anon_sym_explicit] = ACTIONS(3894), + [anon_sym_template] = ACTIONS(3894), + [anon_sym_operator] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3894), + [anon_sym_delete] = ACTIONS(3894), + [anon_sym_throw] = ACTIONS(3894), + [anon_sym_namespace] = ACTIONS(3894), + [anon_sym_static_assert] = ACTIONS(3894), + [anon_sym_concept] = ACTIONS(3894), + [anon_sym_co_return] = ACTIONS(3894), + [anon_sym_co_yield] = ACTIONS(3894), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_co_await] = ACTIONS(3894), + [anon_sym_new] = ACTIONS(3894), + [anon_sym_requires] = ACTIONS(3894), + [anon_sym_CARET_CARET] = ACTIONS(3896), + [anon_sym_LBRACK_COLON] = ACTIONS(3896), + [sym_this] = ACTIONS(3894), }, - [STATE(1299)] = { - [sym_expression] = STATE(4509), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(753)] = { + [ts_builtin_sym_end] = ACTIONS(3932), + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_include_token1] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym___cdecl] = ACTIONS(3930), + [anon_sym___clrcall] = ACTIONS(3930), + [anon_sym___stdcall] = ACTIONS(3930), + [anon_sym___fastcall] = ACTIONS(3930), + [anon_sym___thiscall] = ACTIONS(3930), + [anon_sym___vectorcall] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3932), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_switch] = ACTIONS(3930), + [anon_sym_case] = ACTIONS(3930), + [anon_sym_default] = ACTIONS(3930), + [anon_sym_while] = ACTIONS(3930), + [anon_sym_do] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym_not] = ACTIONS(3930), + [anon_sym_compl] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_sizeof] = ACTIONS(3930), + [anon_sym___alignof__] = ACTIONS(3930), + [anon_sym___alignof] = ACTIONS(3930), + [anon_sym__alignof] = ACTIONS(3930), + [anon_sym_alignof] = ACTIONS(3930), + [anon_sym__Alignof] = ACTIONS(3930), + [anon_sym_offsetof] = ACTIONS(3930), + [anon_sym__Generic] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [anon_sym_asm] = ACTIONS(3930), + [anon_sym___asm__] = ACTIONS(3930), + [anon_sym___asm] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3932), + [anon_sym_L_SQUOTE] = ACTIONS(3932), + [anon_sym_u_SQUOTE] = ACTIONS(3932), + [anon_sym_U_SQUOTE] = ACTIONS(3932), + [anon_sym_u8_SQUOTE] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3932), + [anon_sym_L_DQUOTE] = ACTIONS(3932), + [anon_sym_u_DQUOTE] = ACTIONS(3932), + [anon_sym_U_DQUOTE] = ACTIONS(3932), + [anon_sym_u8_DQUOTE] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(3932), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [anon_sym_NULL] = ACTIONS(3930), + [anon_sym_nullptr] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_export] = ACTIONS(3930), + [anon_sym_module] = ACTIONS(3930), + [anon_sym_import] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_try] = ACTIONS(3930), + [anon_sym_delete] = ACTIONS(3930), + [anon_sym_throw] = ACTIONS(3930), + [anon_sym_namespace] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_concept] = ACTIONS(3930), + [anon_sym_co_return] = ACTIONS(3930), + [anon_sym_co_yield] = ACTIONS(3930), + [anon_sym_R_DQUOTE] = ACTIONS(3932), + [anon_sym_LR_DQUOTE] = ACTIONS(3932), + [anon_sym_uR_DQUOTE] = ACTIONS(3932), + [anon_sym_UR_DQUOTE] = ACTIONS(3932), + [anon_sym_u8R_DQUOTE] = ACTIONS(3932), + [anon_sym_co_await] = ACTIONS(3930), + [anon_sym_new] = ACTIONS(3930), + [anon_sym_requires] = ACTIONS(3930), + [anon_sym_CARET_CARET] = ACTIONS(3932), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [sym_this] = ACTIONS(3930), }, - [STATE(1300)] = { - [sym_expression] = STATE(3700), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(754)] = { + [ts_builtin_sym_end] = ACTIONS(3936), + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_include_token1] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym___cdecl] = ACTIONS(3934), + [anon_sym___clrcall] = ACTIONS(3934), + [anon_sym___stdcall] = ACTIONS(3934), + [anon_sym___fastcall] = ACTIONS(3934), + [anon_sym___thiscall] = ACTIONS(3934), + [anon_sym___vectorcall] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3936), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_if] = ACTIONS(3934), + [anon_sym_switch] = ACTIONS(3934), + [anon_sym_case] = ACTIONS(3934), + [anon_sym_default] = ACTIONS(3934), + [anon_sym_while] = ACTIONS(3934), + [anon_sym_do] = ACTIONS(3934), + [anon_sym_for] = ACTIONS(3934), + [anon_sym_return] = ACTIONS(3934), + [anon_sym_break] = ACTIONS(3934), + [anon_sym_continue] = ACTIONS(3934), + [anon_sym_goto] = ACTIONS(3934), + [anon_sym_not] = ACTIONS(3934), + [anon_sym_compl] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_sizeof] = ACTIONS(3934), + [anon_sym___alignof__] = ACTIONS(3934), + [anon_sym___alignof] = ACTIONS(3934), + [anon_sym__alignof] = ACTIONS(3934), + [anon_sym_alignof] = ACTIONS(3934), + [anon_sym__Alignof] = ACTIONS(3934), + [anon_sym_offsetof] = ACTIONS(3934), + [anon_sym__Generic] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [anon_sym_asm] = ACTIONS(3934), + [anon_sym___asm__] = ACTIONS(3934), + [anon_sym___asm] = ACTIONS(3934), + [sym_number_literal] = ACTIONS(3936), + [anon_sym_L_SQUOTE] = ACTIONS(3936), + [anon_sym_u_SQUOTE] = ACTIONS(3936), + [anon_sym_U_SQUOTE] = ACTIONS(3936), + [anon_sym_u8_SQUOTE] = ACTIONS(3936), + [anon_sym_SQUOTE] = ACTIONS(3936), + [anon_sym_L_DQUOTE] = ACTIONS(3936), + [anon_sym_u_DQUOTE] = ACTIONS(3936), + [anon_sym_U_DQUOTE] = ACTIONS(3936), + [anon_sym_u8_DQUOTE] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [sym_true] = ACTIONS(3934), + [sym_false] = ACTIONS(3934), + [anon_sym_NULL] = ACTIONS(3934), + [anon_sym_nullptr] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_export] = ACTIONS(3934), + [anon_sym_module] = ACTIONS(3934), + [anon_sym_import] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_try] = ACTIONS(3934), + [anon_sym_delete] = ACTIONS(3934), + [anon_sym_throw] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_concept] = ACTIONS(3934), + [anon_sym_co_return] = ACTIONS(3934), + [anon_sym_co_yield] = ACTIONS(3934), + [anon_sym_R_DQUOTE] = ACTIONS(3936), + [anon_sym_LR_DQUOTE] = ACTIONS(3936), + [anon_sym_uR_DQUOTE] = ACTIONS(3936), + [anon_sym_UR_DQUOTE] = ACTIONS(3936), + [anon_sym_u8R_DQUOTE] = ACTIONS(3936), + [anon_sym_co_await] = ACTIONS(3934), + [anon_sym_new] = ACTIONS(3934), + [anon_sym_requires] = ACTIONS(3934), + [anon_sym_CARET_CARET] = ACTIONS(3936), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [sym_this] = ACTIONS(3934), }, - [STATE(1301)] = { - [sym_expression] = STATE(4378), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(755)] = { + [ts_builtin_sym_end] = ACTIONS(3940), + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_include_token1] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_BANG] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym___cdecl] = ACTIONS(3938), + [anon_sym___clrcall] = ACTIONS(3938), + [anon_sym___stdcall] = ACTIONS(3938), + [anon_sym___fastcall] = ACTIONS(3938), + [anon_sym___thiscall] = ACTIONS(3938), + [anon_sym___vectorcall] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3940), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_switch] = ACTIONS(3938), + [anon_sym_case] = ACTIONS(3938), + [anon_sym_default] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_goto] = ACTIONS(3938), + [anon_sym_not] = ACTIONS(3938), + [anon_sym_compl] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(3940), + [anon_sym_sizeof] = ACTIONS(3938), + [anon_sym___alignof__] = ACTIONS(3938), + [anon_sym___alignof] = ACTIONS(3938), + [anon_sym__alignof] = ACTIONS(3938), + [anon_sym_alignof] = ACTIONS(3938), + [anon_sym__Alignof] = ACTIONS(3938), + [anon_sym_offsetof] = ACTIONS(3938), + [anon_sym__Generic] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [anon_sym_asm] = ACTIONS(3938), + [anon_sym___asm__] = ACTIONS(3938), + [anon_sym___asm] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3940), + [anon_sym_L_SQUOTE] = ACTIONS(3940), + [anon_sym_u_SQUOTE] = ACTIONS(3940), + [anon_sym_U_SQUOTE] = ACTIONS(3940), + [anon_sym_u8_SQUOTE] = ACTIONS(3940), + [anon_sym_SQUOTE] = ACTIONS(3940), + [anon_sym_L_DQUOTE] = ACTIONS(3940), + [anon_sym_u_DQUOTE] = ACTIONS(3940), + [anon_sym_U_DQUOTE] = ACTIONS(3940), + [anon_sym_u8_DQUOTE] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(3940), + [sym_true] = ACTIONS(3938), + [sym_false] = ACTIONS(3938), + [anon_sym_NULL] = ACTIONS(3938), + [anon_sym_nullptr] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_export] = ACTIONS(3938), + [anon_sym_module] = ACTIONS(3938), + [anon_sym_import] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_delete] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_namespace] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_concept] = ACTIONS(3938), + [anon_sym_co_return] = ACTIONS(3938), + [anon_sym_co_yield] = ACTIONS(3938), + [anon_sym_R_DQUOTE] = ACTIONS(3940), + [anon_sym_LR_DQUOTE] = ACTIONS(3940), + [anon_sym_uR_DQUOTE] = ACTIONS(3940), + [anon_sym_UR_DQUOTE] = ACTIONS(3940), + [anon_sym_u8R_DQUOTE] = ACTIONS(3940), + [anon_sym_co_await] = ACTIONS(3938), + [anon_sym_new] = ACTIONS(3938), + [anon_sym_requires] = ACTIONS(3938), + [anon_sym_CARET_CARET] = ACTIONS(3940), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [sym_this] = ACTIONS(3938), }, - [STATE(1302)] = { - [sym_expression] = STATE(3704), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(756)] = { + [ts_builtin_sym_end] = ACTIONS(3944), + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_include_token1] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_BANG] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym___cdecl] = ACTIONS(3942), + [anon_sym___clrcall] = ACTIONS(3942), + [anon_sym___stdcall] = ACTIONS(3942), + [anon_sym___fastcall] = ACTIONS(3942), + [anon_sym___thiscall] = ACTIONS(3942), + [anon_sym___vectorcall] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3944), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_switch] = ACTIONS(3942), + [anon_sym_case] = ACTIONS(3942), + [anon_sym_default] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_goto] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_compl] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3944), + [anon_sym_PLUS_PLUS] = ACTIONS(3944), + [anon_sym_sizeof] = ACTIONS(3942), + [anon_sym___alignof__] = ACTIONS(3942), + [anon_sym___alignof] = ACTIONS(3942), + [anon_sym__alignof] = ACTIONS(3942), + [anon_sym_alignof] = ACTIONS(3942), + [anon_sym__Alignof] = ACTIONS(3942), + [anon_sym_offsetof] = ACTIONS(3942), + [anon_sym__Generic] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [anon_sym_asm] = ACTIONS(3942), + [anon_sym___asm__] = ACTIONS(3942), + [anon_sym___asm] = ACTIONS(3942), + [sym_number_literal] = ACTIONS(3944), + [anon_sym_L_SQUOTE] = ACTIONS(3944), + [anon_sym_u_SQUOTE] = ACTIONS(3944), + [anon_sym_U_SQUOTE] = ACTIONS(3944), + [anon_sym_u8_SQUOTE] = ACTIONS(3944), + [anon_sym_SQUOTE] = ACTIONS(3944), + [anon_sym_L_DQUOTE] = ACTIONS(3944), + [anon_sym_u_DQUOTE] = ACTIONS(3944), + [anon_sym_U_DQUOTE] = ACTIONS(3944), + [anon_sym_u8_DQUOTE] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3944), + [sym_true] = ACTIONS(3942), + [sym_false] = ACTIONS(3942), + [anon_sym_NULL] = ACTIONS(3942), + [anon_sym_nullptr] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_export] = ACTIONS(3942), + [anon_sym_module] = ACTIONS(3942), + [anon_sym_import] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_delete] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_concept] = ACTIONS(3942), + [anon_sym_co_return] = ACTIONS(3942), + [anon_sym_co_yield] = ACTIONS(3942), + [anon_sym_R_DQUOTE] = ACTIONS(3944), + [anon_sym_LR_DQUOTE] = ACTIONS(3944), + [anon_sym_uR_DQUOTE] = ACTIONS(3944), + [anon_sym_UR_DQUOTE] = ACTIONS(3944), + [anon_sym_u8R_DQUOTE] = ACTIONS(3944), + [anon_sym_co_await] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3942), + [anon_sym_requires] = ACTIONS(3942), + [anon_sym_CARET_CARET] = ACTIONS(3944), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [sym_this] = ACTIONS(3942), }, - [STATE(1303)] = { - [sym_expression] = STATE(3707), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(757)] = { + [ts_builtin_sym_end] = ACTIONS(3948), + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_include_token1] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_BANG] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3946), + [anon_sym_PLUS] = ACTIONS(3946), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym___cdecl] = ACTIONS(3946), + [anon_sym___clrcall] = ACTIONS(3946), + [anon_sym___stdcall] = ACTIONS(3946), + [anon_sym___fastcall] = ACTIONS(3946), + [anon_sym___thiscall] = ACTIONS(3946), + [anon_sym___vectorcall] = ACTIONS(3946), + [anon_sym_LBRACE] = ACTIONS(3948), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_if] = ACTIONS(3946), + [anon_sym_switch] = ACTIONS(3946), + [anon_sym_case] = ACTIONS(3946), + [anon_sym_default] = ACTIONS(3946), + [anon_sym_while] = ACTIONS(3946), + [anon_sym_do] = ACTIONS(3946), + [anon_sym_for] = ACTIONS(3946), + [anon_sym_return] = ACTIONS(3946), + [anon_sym_break] = ACTIONS(3946), + [anon_sym_continue] = ACTIONS(3946), + [anon_sym_goto] = ACTIONS(3946), + [anon_sym_not] = ACTIONS(3946), + [anon_sym_compl] = ACTIONS(3946), + [anon_sym_DASH_DASH] = ACTIONS(3948), + [anon_sym_PLUS_PLUS] = ACTIONS(3948), + [anon_sym_sizeof] = ACTIONS(3946), + [anon_sym___alignof__] = ACTIONS(3946), + [anon_sym___alignof] = ACTIONS(3946), + [anon_sym__alignof] = ACTIONS(3946), + [anon_sym_alignof] = ACTIONS(3946), + [anon_sym__Alignof] = ACTIONS(3946), + [anon_sym_offsetof] = ACTIONS(3946), + [anon_sym__Generic] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [anon_sym_asm] = ACTIONS(3946), + [anon_sym___asm__] = ACTIONS(3946), + [anon_sym___asm] = ACTIONS(3946), + [sym_number_literal] = ACTIONS(3948), + [anon_sym_L_SQUOTE] = ACTIONS(3948), + [anon_sym_u_SQUOTE] = ACTIONS(3948), + [anon_sym_U_SQUOTE] = ACTIONS(3948), + [anon_sym_u8_SQUOTE] = ACTIONS(3948), + [anon_sym_SQUOTE] = ACTIONS(3948), + [anon_sym_L_DQUOTE] = ACTIONS(3948), + [anon_sym_u_DQUOTE] = ACTIONS(3948), + [anon_sym_U_DQUOTE] = ACTIONS(3948), + [anon_sym_u8_DQUOTE] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [sym_true] = ACTIONS(3946), + [sym_false] = ACTIONS(3946), + [anon_sym_NULL] = ACTIONS(3946), + [anon_sym_nullptr] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_export] = ACTIONS(3946), + [anon_sym_module] = ACTIONS(3946), + [anon_sym_import] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_try] = ACTIONS(3946), + [anon_sym_delete] = ACTIONS(3946), + [anon_sym_throw] = ACTIONS(3946), + [anon_sym_namespace] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_concept] = ACTIONS(3946), + [anon_sym_co_return] = ACTIONS(3946), + [anon_sym_co_yield] = ACTIONS(3946), + [anon_sym_R_DQUOTE] = ACTIONS(3948), + [anon_sym_LR_DQUOTE] = ACTIONS(3948), + [anon_sym_uR_DQUOTE] = ACTIONS(3948), + [anon_sym_UR_DQUOTE] = ACTIONS(3948), + [anon_sym_u8R_DQUOTE] = ACTIONS(3948), + [anon_sym_co_await] = ACTIONS(3946), + [anon_sym_new] = ACTIONS(3946), + [anon_sym_requires] = ACTIONS(3946), + [anon_sym_CARET_CARET] = ACTIONS(3948), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [sym_this] = ACTIONS(3946), }, - [STATE(1304)] = { - [sym_expression] = STATE(3710), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(758)] = { + [ts_builtin_sym_end] = ACTIONS(3952), + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3950), + [anon_sym_module] = ACTIONS(3950), + [anon_sym_import] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), }, - [STATE(1305)] = { - [sym_expression] = STATE(3711), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(759)] = { + [ts_builtin_sym_end] = ACTIONS(3956), + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_import] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(1306)] = { - [sym_expression] = STATE(3712), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(760)] = { + [ts_builtin_sym_end] = ACTIONS(4166), + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(1307)] = { - [sym_expression] = STATE(3715), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(761)] = { + [ts_builtin_sym_end] = ACTIONS(4170), + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_module] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(1308)] = { - [sym_expression] = STATE(3626), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(762)] = { + [ts_builtin_sym_end] = ACTIONS(4526), + [sym_identifier] = ACTIONS(4528), + [aux_sym_preproc_include_token1] = ACTIONS(4528), + [aux_sym_preproc_def_token1] = ACTIONS(4528), + [aux_sym_preproc_if_token1] = ACTIONS(4528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4528), + [sym_preproc_directive] = ACTIONS(4528), + [anon_sym_LPAREN2] = ACTIONS(4526), + [anon_sym_BANG] = ACTIONS(4526), + [anon_sym_TILDE] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4528), + [anon_sym_PLUS] = ACTIONS(4528), + [anon_sym_STAR] = ACTIONS(4526), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4528), + [anon_sym_SEMI] = ACTIONS(4526), + [anon_sym___extension__] = ACTIONS(4528), + [anon_sym_typedef] = ACTIONS(4528), + [anon_sym_virtual] = ACTIONS(4528), + [anon_sym_extern] = ACTIONS(4528), + [anon_sym___attribute__] = ACTIONS(4528), + [anon_sym___attribute] = ACTIONS(4528), + [anon_sym_using] = ACTIONS(4528), + [anon_sym_COLON_COLON] = ACTIONS(4526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4526), + [anon_sym___declspec] = ACTIONS(4528), + [anon_sym___based] = ACTIONS(4528), + [anon_sym___cdecl] = ACTIONS(4528), + [anon_sym___clrcall] = ACTIONS(4528), + [anon_sym___stdcall] = ACTIONS(4528), + [anon_sym___fastcall] = ACTIONS(4528), + [anon_sym___thiscall] = ACTIONS(4528), + [anon_sym___vectorcall] = ACTIONS(4528), + [anon_sym_LBRACE] = ACTIONS(4526), + [anon_sym_signed] = ACTIONS(4528), + [anon_sym_unsigned] = ACTIONS(4528), + [anon_sym_long] = ACTIONS(4528), + [anon_sym_short] = ACTIONS(4528), + [anon_sym_LBRACK] = ACTIONS(4528), + [anon_sym_static] = ACTIONS(4528), + [anon_sym_register] = ACTIONS(4528), + [anon_sym_inline] = ACTIONS(4528), + [anon_sym___inline] = ACTIONS(4528), + [anon_sym___inline__] = ACTIONS(4528), + [anon_sym___forceinline] = ACTIONS(4528), + [anon_sym_thread_local] = ACTIONS(4528), + [anon_sym___thread] = ACTIONS(4528), + [anon_sym_const] = ACTIONS(4528), + [anon_sym_constexpr] = ACTIONS(4528), + [anon_sym_volatile] = ACTIONS(4528), + [anon_sym_restrict] = ACTIONS(4528), + [anon_sym___restrict__] = ACTIONS(4528), + [anon_sym__Atomic] = ACTIONS(4528), + [anon_sym__Noreturn] = ACTIONS(4528), + [anon_sym_noreturn] = ACTIONS(4528), + [anon_sym__Nonnull] = ACTIONS(4528), + [anon_sym_mutable] = ACTIONS(4528), + [anon_sym_constinit] = ACTIONS(4528), + [anon_sym_consteval] = ACTIONS(4528), + [anon_sym_alignas] = ACTIONS(4528), + [anon_sym__Alignas] = ACTIONS(4528), + [sym_primitive_type] = ACTIONS(4528), + [anon_sym_enum] = ACTIONS(4528), + [anon_sym_class] = ACTIONS(4528), + [anon_sym_struct] = ACTIONS(4528), + [anon_sym_union] = ACTIONS(4528), + [anon_sym_if] = ACTIONS(4528), + [anon_sym_switch] = ACTIONS(4528), + [anon_sym_case] = ACTIONS(4528), + [anon_sym_default] = ACTIONS(4528), + [anon_sym_while] = ACTIONS(4528), + [anon_sym_do] = ACTIONS(4528), + [anon_sym_for] = ACTIONS(4528), + [anon_sym_return] = ACTIONS(4528), + [anon_sym_break] = ACTIONS(4528), + [anon_sym_continue] = ACTIONS(4528), + [anon_sym_goto] = ACTIONS(4528), + [anon_sym_not] = ACTIONS(4528), + [anon_sym_compl] = ACTIONS(4528), + [anon_sym_DASH_DASH] = ACTIONS(4526), + [anon_sym_PLUS_PLUS] = ACTIONS(4526), + [anon_sym_sizeof] = ACTIONS(4528), + [anon_sym___alignof__] = ACTIONS(4528), + [anon_sym___alignof] = ACTIONS(4528), + [anon_sym__alignof] = ACTIONS(4528), + [anon_sym_alignof] = ACTIONS(4528), + [anon_sym__Alignof] = ACTIONS(4528), + [anon_sym_offsetof] = ACTIONS(4528), + [anon_sym__Generic] = ACTIONS(4528), + [anon_sym_typename] = ACTIONS(4528), + [anon_sym_asm] = ACTIONS(4528), + [anon_sym___asm__] = ACTIONS(4528), + [anon_sym___asm] = ACTIONS(4528), + [sym_number_literal] = ACTIONS(4526), + [anon_sym_L_SQUOTE] = ACTIONS(4526), + [anon_sym_u_SQUOTE] = ACTIONS(4526), + [anon_sym_U_SQUOTE] = ACTIONS(4526), + [anon_sym_u8_SQUOTE] = ACTIONS(4526), + [anon_sym_SQUOTE] = ACTIONS(4526), + [anon_sym_L_DQUOTE] = ACTIONS(4526), + [anon_sym_u_DQUOTE] = ACTIONS(4526), + [anon_sym_U_DQUOTE] = ACTIONS(4526), + [anon_sym_u8_DQUOTE] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(4526), + [sym_true] = ACTIONS(4528), + [sym_false] = ACTIONS(4528), + [anon_sym_NULL] = ACTIONS(4528), + [anon_sym_nullptr] = ACTIONS(4528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4528), + [anon_sym_decltype] = ACTIONS(4528), + [anon_sym_explicit] = ACTIONS(4528), + [anon_sym_export] = ACTIONS(4528), + [anon_sym_module] = ACTIONS(4528), + [anon_sym_import] = ACTIONS(4528), + [anon_sym_template] = ACTIONS(4528), + [anon_sym_operator] = ACTIONS(4528), + [anon_sym_try] = ACTIONS(4528), + [anon_sym_delete] = ACTIONS(4528), + [anon_sym_throw] = ACTIONS(4528), + [anon_sym_namespace] = ACTIONS(4528), + [anon_sym_static_assert] = ACTIONS(4528), + [anon_sym_concept] = ACTIONS(4528), + [anon_sym_co_return] = ACTIONS(4528), + [anon_sym_co_yield] = ACTIONS(4528), + [anon_sym_R_DQUOTE] = ACTIONS(4526), + [anon_sym_LR_DQUOTE] = ACTIONS(4526), + [anon_sym_uR_DQUOTE] = ACTIONS(4526), + [anon_sym_UR_DQUOTE] = ACTIONS(4526), + [anon_sym_u8R_DQUOTE] = ACTIONS(4526), + [anon_sym_co_await] = ACTIONS(4528), + [anon_sym_new] = ACTIONS(4528), + [anon_sym_requires] = ACTIONS(4528), + [anon_sym_CARET_CARET] = ACTIONS(4526), + [anon_sym_LBRACK_COLON] = ACTIONS(4526), + [sym_this] = ACTIONS(4528), }, - [STATE(1309)] = { - [sym_expression] = STATE(3627), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(763)] = { + [sym_identifier] = ACTIONS(4034), + [aux_sym_preproc_include_token1] = ACTIONS(4034), + [aux_sym_preproc_def_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), + [sym_preproc_directive] = ACTIONS(4034), + [anon_sym_LPAREN2] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_typedef] = ACTIONS(4034), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym___attribute] = ACTIONS(4034), + [anon_sym_using] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym___based] = ACTIONS(4034), + [anon_sym___cdecl] = ACTIONS(4034), + [anon_sym___clrcall] = ACTIONS(4034), + [anon_sym___stdcall] = ACTIONS(4034), + [anon_sym___fastcall] = ACTIONS(4034), + [anon_sym___thiscall] = ACTIONS(4034), + [anon_sym___vectorcall] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_RBRACE] = ACTIONS(4036), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4034), + [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__Nonnull] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym__Alignas] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4034), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_case] = ACTIONS(4034), + [anon_sym_default] = ACTIONS(4034), + [anon_sym_while] = ACTIONS(4034), + [anon_sym_do] = ACTIONS(4034), + [anon_sym_for] = ACTIONS(4034), + [anon_sym_return] = ACTIONS(4034), + [anon_sym_break] = ACTIONS(4034), + [anon_sym_continue] = ACTIONS(4034), + [anon_sym_goto] = ACTIONS(4034), + [anon_sym___try] = ACTIONS(4034), + [anon_sym___leave] = ACTIONS(4034), + [anon_sym_not] = ACTIONS(4034), + [anon_sym_compl] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(4034), + [anon_sym___alignof__] = ACTIONS(4034), + [anon_sym___alignof] = ACTIONS(4034), + [anon_sym__alignof] = ACTIONS(4034), + [anon_sym_alignof] = ACTIONS(4034), + [anon_sym__Alignof] = ACTIONS(4034), + [anon_sym_offsetof] = ACTIONS(4034), + [anon_sym__Generic] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_asm] = ACTIONS(4034), + [anon_sym___asm__] = ACTIONS(4034), + [anon_sym___asm] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4036), + [anon_sym_L_SQUOTE] = ACTIONS(4036), + [anon_sym_u_SQUOTE] = ACTIONS(4036), + [anon_sym_U_SQUOTE] = ACTIONS(4036), + [anon_sym_u8_SQUOTE] = ACTIONS(4036), + [anon_sym_SQUOTE] = ACTIONS(4036), + [anon_sym_L_DQUOTE] = ACTIONS(4036), + [anon_sym_u_DQUOTE] = ACTIONS(4036), + [anon_sym_U_DQUOTE] = ACTIONS(4036), + [anon_sym_u8_DQUOTE] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [anon_sym_NULL] = ACTIONS(4034), + [anon_sym_nullptr] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4034), + [anon_sym_explicit] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4034), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4034), + [anon_sym_delete] = ACTIONS(4034), + [anon_sym_throw] = ACTIONS(4034), + [anon_sym_namespace] = ACTIONS(4034), + [anon_sym_static_assert] = ACTIONS(4034), + [anon_sym_concept] = ACTIONS(4034), + [anon_sym_co_return] = ACTIONS(4034), + [anon_sym_co_yield] = ACTIONS(4034), + [anon_sym_R_DQUOTE] = ACTIONS(4036), + [anon_sym_LR_DQUOTE] = ACTIONS(4036), + [anon_sym_uR_DQUOTE] = ACTIONS(4036), + [anon_sym_UR_DQUOTE] = ACTIONS(4036), + [anon_sym_u8R_DQUOTE] = ACTIONS(4036), + [anon_sym_co_await] = ACTIONS(4034), + [anon_sym_new] = ACTIONS(4034), + [anon_sym_requires] = ACTIONS(4034), + [anon_sym_CARET_CARET] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4036), + [sym_this] = ACTIONS(4034), }, - [STATE(1310)] = { - [sym_expression] = STATE(3664), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(764)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_include_token1] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token2] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3926), + [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym___cdecl] = ACTIONS(3926), + [anon_sym___clrcall] = ACTIONS(3926), + [anon_sym___stdcall] = ACTIONS(3926), + [anon_sym___fastcall] = ACTIONS(3926), + [anon_sym___thiscall] = ACTIONS(3926), + [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_switch] = ACTIONS(3926), + [anon_sym_case] = ACTIONS(3926), + [anon_sym_default] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_break] = ACTIONS(3926), + [anon_sym_continue] = ACTIONS(3926), + [anon_sym_goto] = ACTIONS(3926), + [anon_sym___try] = ACTIONS(3926), + [anon_sym___leave] = ACTIONS(3926), + [anon_sym_not] = ACTIONS(3926), + [anon_sym_compl] = ACTIONS(3926), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3926), + [anon_sym___alignof__] = ACTIONS(3926), + [anon_sym___alignof] = ACTIONS(3926), + [anon_sym__alignof] = ACTIONS(3926), + [anon_sym_alignof] = ACTIONS(3926), + [anon_sym__Alignof] = ACTIONS(3926), + [anon_sym_offsetof] = ACTIONS(3926), + [anon_sym__Generic] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [anon_sym_asm] = ACTIONS(3926), + [anon_sym___asm__] = ACTIONS(3926), + [anon_sym___asm] = ACTIONS(3926), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3926), + [sym_false] = ACTIONS(3926), + [anon_sym_NULL] = ACTIONS(3926), + [anon_sym_nullptr] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_try] = ACTIONS(3926), + [anon_sym_delete] = ACTIONS(3926), + [anon_sym_throw] = ACTIONS(3926), + [anon_sym_namespace] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_concept] = ACTIONS(3926), + [anon_sym_co_return] = ACTIONS(3926), + [anon_sym_co_yield] = ACTIONS(3926), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3926), + [anon_sym_new] = ACTIONS(3926), + [anon_sym_requires] = ACTIONS(3926), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3926), }, - [STATE(1311)] = { - [sym_expression] = STATE(4635), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(765)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_include_token1] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token2] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym___cdecl] = ACTIONS(3930), + [anon_sym___clrcall] = ACTIONS(3930), + [anon_sym___stdcall] = ACTIONS(3930), + [anon_sym___fastcall] = ACTIONS(3930), + [anon_sym___thiscall] = ACTIONS(3930), + [anon_sym___vectorcall] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3932), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_switch] = ACTIONS(3930), + [anon_sym_case] = ACTIONS(3930), + [anon_sym_default] = ACTIONS(3930), + [anon_sym_while] = ACTIONS(3930), + [anon_sym_do] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym___try] = ACTIONS(3930), + [anon_sym___leave] = ACTIONS(3930), + [anon_sym_not] = ACTIONS(3930), + [anon_sym_compl] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_sizeof] = ACTIONS(3930), + [anon_sym___alignof__] = ACTIONS(3930), + [anon_sym___alignof] = ACTIONS(3930), + [anon_sym__alignof] = ACTIONS(3930), + [anon_sym_alignof] = ACTIONS(3930), + [anon_sym__Alignof] = ACTIONS(3930), + [anon_sym_offsetof] = ACTIONS(3930), + [anon_sym__Generic] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [anon_sym_asm] = ACTIONS(3930), + [anon_sym___asm__] = ACTIONS(3930), + [anon_sym___asm] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3932), + [anon_sym_L_SQUOTE] = ACTIONS(3932), + [anon_sym_u_SQUOTE] = ACTIONS(3932), + [anon_sym_U_SQUOTE] = ACTIONS(3932), + [anon_sym_u8_SQUOTE] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3932), + [anon_sym_L_DQUOTE] = ACTIONS(3932), + [anon_sym_u_DQUOTE] = ACTIONS(3932), + [anon_sym_U_DQUOTE] = ACTIONS(3932), + [anon_sym_u8_DQUOTE] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(3932), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [anon_sym_NULL] = ACTIONS(3930), + [anon_sym_nullptr] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_try] = ACTIONS(3930), + [anon_sym_delete] = ACTIONS(3930), + [anon_sym_throw] = ACTIONS(3930), + [anon_sym_namespace] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_concept] = ACTIONS(3930), + [anon_sym_co_return] = ACTIONS(3930), + [anon_sym_co_yield] = ACTIONS(3930), + [anon_sym_R_DQUOTE] = ACTIONS(3932), + [anon_sym_LR_DQUOTE] = ACTIONS(3932), + [anon_sym_uR_DQUOTE] = ACTIONS(3932), + [anon_sym_UR_DQUOTE] = ACTIONS(3932), + [anon_sym_u8R_DQUOTE] = ACTIONS(3932), + [anon_sym_co_await] = ACTIONS(3930), + [anon_sym_new] = ACTIONS(3930), + [anon_sym_requires] = ACTIONS(3930), + [anon_sym_CARET_CARET] = ACTIONS(3932), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [sym_this] = ACTIONS(3930), }, - [STATE(1312)] = { - [sym_expression] = STATE(4830), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(766)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_include_token1] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token2] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym___cdecl] = ACTIONS(3934), + [anon_sym___clrcall] = ACTIONS(3934), + [anon_sym___stdcall] = ACTIONS(3934), + [anon_sym___fastcall] = ACTIONS(3934), + [anon_sym___thiscall] = ACTIONS(3934), + [anon_sym___vectorcall] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3936), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_if] = ACTIONS(3934), + [anon_sym_switch] = ACTIONS(3934), + [anon_sym_case] = ACTIONS(3934), + [anon_sym_default] = ACTIONS(3934), + [anon_sym_while] = ACTIONS(3934), + [anon_sym_do] = ACTIONS(3934), + [anon_sym_for] = ACTIONS(3934), + [anon_sym_return] = ACTIONS(3934), + [anon_sym_break] = ACTIONS(3934), + [anon_sym_continue] = ACTIONS(3934), + [anon_sym_goto] = ACTIONS(3934), + [anon_sym___try] = ACTIONS(3934), + [anon_sym___leave] = ACTIONS(3934), + [anon_sym_not] = ACTIONS(3934), + [anon_sym_compl] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_sizeof] = ACTIONS(3934), + [anon_sym___alignof__] = ACTIONS(3934), + [anon_sym___alignof] = ACTIONS(3934), + [anon_sym__alignof] = ACTIONS(3934), + [anon_sym_alignof] = ACTIONS(3934), + [anon_sym__Alignof] = ACTIONS(3934), + [anon_sym_offsetof] = ACTIONS(3934), + [anon_sym__Generic] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [anon_sym_asm] = ACTIONS(3934), + [anon_sym___asm__] = ACTIONS(3934), + [anon_sym___asm] = ACTIONS(3934), + [sym_number_literal] = ACTIONS(3936), + [anon_sym_L_SQUOTE] = ACTIONS(3936), + [anon_sym_u_SQUOTE] = ACTIONS(3936), + [anon_sym_U_SQUOTE] = ACTIONS(3936), + [anon_sym_u8_SQUOTE] = ACTIONS(3936), + [anon_sym_SQUOTE] = ACTIONS(3936), + [anon_sym_L_DQUOTE] = ACTIONS(3936), + [anon_sym_u_DQUOTE] = ACTIONS(3936), + [anon_sym_U_DQUOTE] = ACTIONS(3936), + [anon_sym_u8_DQUOTE] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [sym_true] = ACTIONS(3934), + [sym_false] = ACTIONS(3934), + [anon_sym_NULL] = ACTIONS(3934), + [anon_sym_nullptr] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_try] = ACTIONS(3934), + [anon_sym_delete] = ACTIONS(3934), + [anon_sym_throw] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_concept] = ACTIONS(3934), + [anon_sym_co_return] = ACTIONS(3934), + [anon_sym_co_yield] = ACTIONS(3934), + [anon_sym_R_DQUOTE] = ACTIONS(3936), + [anon_sym_LR_DQUOTE] = ACTIONS(3936), + [anon_sym_uR_DQUOTE] = ACTIONS(3936), + [anon_sym_UR_DQUOTE] = ACTIONS(3936), + [anon_sym_u8R_DQUOTE] = ACTIONS(3936), + [anon_sym_co_await] = ACTIONS(3934), + [anon_sym_new] = ACTIONS(3934), + [anon_sym_requires] = ACTIONS(3934), + [anon_sym_CARET_CARET] = ACTIONS(3936), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [sym_this] = ACTIONS(3934), }, - [STATE(1313)] = { - [sym_expression] = STATE(4641), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(767)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_include_token1] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token2] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_BANG] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym___cdecl] = ACTIONS(3938), + [anon_sym___clrcall] = ACTIONS(3938), + [anon_sym___stdcall] = ACTIONS(3938), + [anon_sym___fastcall] = ACTIONS(3938), + [anon_sym___thiscall] = ACTIONS(3938), + [anon_sym___vectorcall] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3940), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_switch] = ACTIONS(3938), + [anon_sym_case] = ACTIONS(3938), + [anon_sym_default] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_goto] = ACTIONS(3938), + [anon_sym___try] = ACTIONS(3938), + [anon_sym___leave] = ACTIONS(3938), + [anon_sym_not] = ACTIONS(3938), + [anon_sym_compl] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(3940), + [anon_sym_sizeof] = ACTIONS(3938), + [anon_sym___alignof__] = ACTIONS(3938), + [anon_sym___alignof] = ACTIONS(3938), + [anon_sym__alignof] = ACTIONS(3938), + [anon_sym_alignof] = ACTIONS(3938), + [anon_sym__Alignof] = ACTIONS(3938), + [anon_sym_offsetof] = ACTIONS(3938), + [anon_sym__Generic] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [anon_sym_asm] = ACTIONS(3938), + [anon_sym___asm__] = ACTIONS(3938), + [anon_sym___asm] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3940), + [anon_sym_L_SQUOTE] = ACTIONS(3940), + [anon_sym_u_SQUOTE] = ACTIONS(3940), + [anon_sym_U_SQUOTE] = ACTIONS(3940), + [anon_sym_u8_SQUOTE] = ACTIONS(3940), + [anon_sym_SQUOTE] = ACTIONS(3940), + [anon_sym_L_DQUOTE] = ACTIONS(3940), + [anon_sym_u_DQUOTE] = ACTIONS(3940), + [anon_sym_U_DQUOTE] = ACTIONS(3940), + [anon_sym_u8_DQUOTE] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(3940), + [sym_true] = ACTIONS(3938), + [sym_false] = ACTIONS(3938), + [anon_sym_NULL] = ACTIONS(3938), + [anon_sym_nullptr] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_delete] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_namespace] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_concept] = ACTIONS(3938), + [anon_sym_co_return] = ACTIONS(3938), + [anon_sym_co_yield] = ACTIONS(3938), + [anon_sym_R_DQUOTE] = ACTIONS(3940), + [anon_sym_LR_DQUOTE] = ACTIONS(3940), + [anon_sym_uR_DQUOTE] = ACTIONS(3940), + [anon_sym_UR_DQUOTE] = ACTIONS(3940), + [anon_sym_u8R_DQUOTE] = ACTIONS(3940), + [anon_sym_co_await] = ACTIONS(3938), + [anon_sym_new] = ACTIONS(3938), + [anon_sym_requires] = ACTIONS(3938), + [anon_sym_CARET_CARET] = ACTIONS(3940), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [sym_this] = ACTIONS(3938), }, - [STATE(1314)] = { - [sym_expression] = STATE(4652), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(768)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_include_token1] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token2] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_BANG] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym___cdecl] = ACTIONS(3942), + [anon_sym___clrcall] = ACTIONS(3942), + [anon_sym___stdcall] = ACTIONS(3942), + [anon_sym___fastcall] = ACTIONS(3942), + [anon_sym___thiscall] = ACTIONS(3942), + [anon_sym___vectorcall] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3944), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_switch] = ACTIONS(3942), + [anon_sym_case] = ACTIONS(3942), + [anon_sym_default] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_goto] = ACTIONS(3942), + [anon_sym___try] = ACTIONS(3942), + [anon_sym___leave] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_compl] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3944), + [anon_sym_PLUS_PLUS] = ACTIONS(3944), + [anon_sym_sizeof] = ACTIONS(3942), + [anon_sym___alignof__] = ACTIONS(3942), + [anon_sym___alignof] = ACTIONS(3942), + [anon_sym__alignof] = ACTIONS(3942), + [anon_sym_alignof] = ACTIONS(3942), + [anon_sym__Alignof] = ACTIONS(3942), + [anon_sym_offsetof] = ACTIONS(3942), + [anon_sym__Generic] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [anon_sym_asm] = ACTIONS(3942), + [anon_sym___asm__] = ACTIONS(3942), + [anon_sym___asm] = ACTIONS(3942), + [sym_number_literal] = ACTIONS(3944), + [anon_sym_L_SQUOTE] = ACTIONS(3944), + [anon_sym_u_SQUOTE] = ACTIONS(3944), + [anon_sym_U_SQUOTE] = ACTIONS(3944), + [anon_sym_u8_SQUOTE] = ACTIONS(3944), + [anon_sym_SQUOTE] = ACTIONS(3944), + [anon_sym_L_DQUOTE] = ACTIONS(3944), + [anon_sym_u_DQUOTE] = ACTIONS(3944), + [anon_sym_U_DQUOTE] = ACTIONS(3944), + [anon_sym_u8_DQUOTE] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3944), + [sym_true] = ACTIONS(3942), + [sym_false] = ACTIONS(3942), + [anon_sym_NULL] = ACTIONS(3942), + [anon_sym_nullptr] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_delete] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_concept] = ACTIONS(3942), + [anon_sym_co_return] = ACTIONS(3942), + [anon_sym_co_yield] = ACTIONS(3942), + [anon_sym_R_DQUOTE] = ACTIONS(3944), + [anon_sym_LR_DQUOTE] = ACTIONS(3944), + [anon_sym_uR_DQUOTE] = ACTIONS(3944), + [anon_sym_UR_DQUOTE] = ACTIONS(3944), + [anon_sym_u8R_DQUOTE] = ACTIONS(3944), + [anon_sym_co_await] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3942), + [anon_sym_requires] = ACTIONS(3942), + [anon_sym_CARET_CARET] = ACTIONS(3944), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [sym_this] = ACTIONS(3942), }, - [STATE(1315)] = { - [sym_expression] = STATE(4578), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(769)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_include_token1] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token2] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_BANG] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3946), + [anon_sym_PLUS] = ACTIONS(3946), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym___cdecl] = ACTIONS(3946), + [anon_sym___clrcall] = ACTIONS(3946), + [anon_sym___stdcall] = ACTIONS(3946), + [anon_sym___fastcall] = ACTIONS(3946), + [anon_sym___thiscall] = ACTIONS(3946), + [anon_sym___vectorcall] = ACTIONS(3946), + [anon_sym_LBRACE] = ACTIONS(3948), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_if] = ACTIONS(3946), + [anon_sym_switch] = ACTIONS(3946), + [anon_sym_case] = ACTIONS(3946), + [anon_sym_default] = ACTIONS(3946), + [anon_sym_while] = ACTIONS(3946), + [anon_sym_do] = ACTIONS(3946), + [anon_sym_for] = ACTIONS(3946), + [anon_sym_return] = ACTIONS(3946), + [anon_sym_break] = ACTIONS(3946), + [anon_sym_continue] = ACTIONS(3946), + [anon_sym_goto] = ACTIONS(3946), + [anon_sym___try] = ACTIONS(3946), + [anon_sym___leave] = ACTIONS(3946), + [anon_sym_not] = ACTIONS(3946), + [anon_sym_compl] = ACTIONS(3946), + [anon_sym_DASH_DASH] = ACTIONS(3948), + [anon_sym_PLUS_PLUS] = ACTIONS(3948), + [anon_sym_sizeof] = ACTIONS(3946), + [anon_sym___alignof__] = ACTIONS(3946), + [anon_sym___alignof] = ACTIONS(3946), + [anon_sym__alignof] = ACTIONS(3946), + [anon_sym_alignof] = ACTIONS(3946), + [anon_sym__Alignof] = ACTIONS(3946), + [anon_sym_offsetof] = ACTIONS(3946), + [anon_sym__Generic] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [anon_sym_asm] = ACTIONS(3946), + [anon_sym___asm__] = ACTIONS(3946), + [anon_sym___asm] = ACTIONS(3946), + [sym_number_literal] = ACTIONS(3948), + [anon_sym_L_SQUOTE] = ACTIONS(3948), + [anon_sym_u_SQUOTE] = ACTIONS(3948), + [anon_sym_U_SQUOTE] = ACTIONS(3948), + [anon_sym_u8_SQUOTE] = ACTIONS(3948), + [anon_sym_SQUOTE] = ACTIONS(3948), + [anon_sym_L_DQUOTE] = ACTIONS(3948), + [anon_sym_u_DQUOTE] = ACTIONS(3948), + [anon_sym_U_DQUOTE] = ACTIONS(3948), + [anon_sym_u8_DQUOTE] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [sym_true] = ACTIONS(3946), + [sym_false] = ACTIONS(3946), + [anon_sym_NULL] = ACTIONS(3946), + [anon_sym_nullptr] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_try] = ACTIONS(3946), + [anon_sym_delete] = ACTIONS(3946), + [anon_sym_throw] = ACTIONS(3946), + [anon_sym_namespace] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_concept] = ACTIONS(3946), + [anon_sym_co_return] = ACTIONS(3946), + [anon_sym_co_yield] = ACTIONS(3946), + [anon_sym_R_DQUOTE] = ACTIONS(3948), + [anon_sym_LR_DQUOTE] = ACTIONS(3948), + [anon_sym_uR_DQUOTE] = ACTIONS(3948), + [anon_sym_UR_DQUOTE] = ACTIONS(3948), + [anon_sym_u8R_DQUOTE] = ACTIONS(3948), + [anon_sym_co_await] = ACTIONS(3946), + [anon_sym_new] = ACTIONS(3946), + [anon_sym_requires] = ACTIONS(3946), + [anon_sym_CARET_CARET] = ACTIONS(3948), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [sym_this] = ACTIONS(3946), }, - [STATE(1316)] = { - [sym_expression] = STATE(4617), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(770)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym___try] = ACTIONS(3950), + [anon_sym___leave] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), }, - [STATE(1317)] = { - [sym_expression] = STATE(4618), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(771)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_include_token1] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token2] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym___cdecl] = ACTIONS(3970), + [anon_sym___clrcall] = ACTIONS(3970), + [anon_sym___stdcall] = ACTIONS(3970), + [anon_sym___fastcall] = ACTIONS(3970), + [anon_sym___thiscall] = ACTIONS(3970), + [anon_sym___vectorcall] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_case] = ACTIONS(3970), + [anon_sym_default] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_do] = ACTIONS(3970), + [anon_sym_for] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_goto] = ACTIONS(3970), + [anon_sym___try] = ACTIONS(3970), + [anon_sym___leave] = ACTIONS(3970), + [anon_sym_not] = ACTIONS(3970), + [anon_sym_compl] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_sizeof] = ACTIONS(3970), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3970), + [anon_sym__Generic] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [anon_sym_asm] = ACTIONS(3970), + [anon_sym___asm__] = ACTIONS(3970), + [anon_sym___asm] = ACTIONS(3970), + [sym_number_literal] = ACTIONS(3972), + [anon_sym_L_SQUOTE] = ACTIONS(3972), + [anon_sym_u_SQUOTE] = ACTIONS(3972), + [anon_sym_U_SQUOTE] = ACTIONS(3972), + [anon_sym_u8_SQUOTE] = ACTIONS(3972), + [anon_sym_SQUOTE] = ACTIONS(3972), + [anon_sym_L_DQUOTE] = ACTIONS(3972), + [anon_sym_u_DQUOTE] = ACTIONS(3972), + [anon_sym_U_DQUOTE] = ACTIONS(3972), + [anon_sym_u8_DQUOTE] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(3972), + [sym_true] = ACTIONS(3970), + [sym_false] = ACTIONS(3970), + [anon_sym_NULL] = ACTIONS(3970), + [anon_sym_nullptr] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_delete] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_namespace] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(3970), + [anon_sym_co_return] = ACTIONS(3970), + [anon_sym_co_yield] = ACTIONS(3970), + [anon_sym_R_DQUOTE] = ACTIONS(3972), + [anon_sym_LR_DQUOTE] = ACTIONS(3972), + [anon_sym_uR_DQUOTE] = ACTIONS(3972), + [anon_sym_UR_DQUOTE] = ACTIONS(3972), + [anon_sym_u8R_DQUOTE] = ACTIONS(3972), + [anon_sym_co_await] = ACTIONS(3970), + [anon_sym_new] = ACTIONS(3970), + [anon_sym_requires] = ACTIONS(3970), + [anon_sym_CARET_CARET] = ACTIONS(3972), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [sym_this] = ACTIONS(3970), }, - [STATE(1318)] = { - [sym_expression] = STATE(4571), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(772)] = { + [sym_identifier] = ACTIONS(3902), + [aux_sym_preproc_include_token1] = ACTIONS(3902), + [aux_sym_preproc_def_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), + [sym_preproc_directive] = ACTIONS(3902), + [anon_sym_LPAREN2] = ACTIONS(3904), + [anon_sym_BANG] = ACTIONS(3904), + [anon_sym_TILDE] = ACTIONS(3904), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_PLUS] = ACTIONS(3902), + [anon_sym_STAR] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3902), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym___extension__] = ACTIONS(3902), + [anon_sym_typedef] = ACTIONS(3902), + [anon_sym_virtual] = ACTIONS(3902), + [anon_sym_extern] = ACTIONS(3902), + [anon_sym___attribute__] = ACTIONS(3902), + [anon_sym___attribute] = ACTIONS(3902), + [anon_sym_using] = ACTIONS(3902), + [anon_sym_COLON_COLON] = ACTIONS(3904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), + [anon_sym___declspec] = ACTIONS(3902), + [anon_sym___based] = ACTIONS(3902), + [anon_sym___cdecl] = ACTIONS(3902), + [anon_sym___clrcall] = ACTIONS(3902), + [anon_sym___stdcall] = ACTIONS(3902), + [anon_sym___fastcall] = ACTIONS(3902), + [anon_sym___thiscall] = ACTIONS(3902), + [anon_sym___vectorcall] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3904), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_signed] = ACTIONS(3902), + [anon_sym_unsigned] = ACTIONS(3902), + [anon_sym_long] = ACTIONS(3902), + [anon_sym_short] = ACTIONS(3902), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_static] = ACTIONS(3902), + [anon_sym_register] = ACTIONS(3902), + [anon_sym_inline] = ACTIONS(3902), + [anon_sym___inline] = ACTIONS(3902), + [anon_sym___inline__] = ACTIONS(3902), + [anon_sym___forceinline] = ACTIONS(3902), + [anon_sym_thread_local] = ACTIONS(3902), + [anon_sym___thread] = ACTIONS(3902), + [anon_sym_const] = ACTIONS(3902), + [anon_sym_constexpr] = ACTIONS(3902), + [anon_sym_volatile] = ACTIONS(3902), + [anon_sym_restrict] = ACTIONS(3902), + [anon_sym___restrict__] = ACTIONS(3902), + [anon_sym__Atomic] = ACTIONS(3902), + [anon_sym__Noreturn] = ACTIONS(3902), + [anon_sym_noreturn] = ACTIONS(3902), + [anon_sym__Nonnull] = ACTIONS(3902), + [anon_sym_mutable] = ACTIONS(3902), + [anon_sym_constinit] = ACTIONS(3902), + [anon_sym_consteval] = ACTIONS(3902), + [anon_sym_alignas] = ACTIONS(3902), + [anon_sym__Alignas] = ACTIONS(3902), + [sym_primitive_type] = ACTIONS(3902), + [anon_sym_enum] = ACTIONS(3902), + [anon_sym_class] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3902), + [anon_sym_union] = ACTIONS(3902), + [anon_sym_if] = ACTIONS(3902), + [anon_sym_switch] = ACTIONS(3902), + [anon_sym_case] = ACTIONS(3902), + [anon_sym_default] = ACTIONS(3902), + [anon_sym_while] = ACTIONS(3902), + [anon_sym_do] = ACTIONS(3902), + [anon_sym_for] = ACTIONS(3902), + [anon_sym_return] = ACTIONS(3902), + [anon_sym_break] = ACTIONS(3902), + [anon_sym_continue] = ACTIONS(3902), + [anon_sym_goto] = ACTIONS(3902), + [anon_sym___try] = ACTIONS(3902), + [anon_sym___leave] = ACTIONS(3902), + [anon_sym_not] = ACTIONS(3902), + [anon_sym_compl] = ACTIONS(3902), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3902), + [anon_sym___alignof__] = ACTIONS(3902), + [anon_sym___alignof] = ACTIONS(3902), + [anon_sym__alignof] = ACTIONS(3902), + [anon_sym_alignof] = ACTIONS(3902), + [anon_sym__Alignof] = ACTIONS(3902), + [anon_sym_offsetof] = ACTIONS(3902), + [anon_sym__Generic] = ACTIONS(3902), + [anon_sym_typename] = ACTIONS(3902), + [anon_sym_asm] = ACTIONS(3902), + [anon_sym___asm__] = ACTIONS(3902), + [anon_sym___asm] = ACTIONS(3902), + [sym_number_literal] = ACTIONS(3904), + [anon_sym_L_SQUOTE] = ACTIONS(3904), + [anon_sym_u_SQUOTE] = ACTIONS(3904), + [anon_sym_U_SQUOTE] = ACTIONS(3904), + [anon_sym_u8_SQUOTE] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_L_DQUOTE] = ACTIONS(3904), + [anon_sym_u_DQUOTE] = ACTIONS(3904), + [anon_sym_U_DQUOTE] = ACTIONS(3904), + [anon_sym_u8_DQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [sym_true] = ACTIONS(3902), + [sym_false] = ACTIONS(3902), + [anon_sym_NULL] = ACTIONS(3902), + [anon_sym_nullptr] = ACTIONS(3902), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3902), + [anon_sym_decltype] = ACTIONS(3902), + [anon_sym_explicit] = ACTIONS(3902), + [anon_sym_template] = ACTIONS(3902), + [anon_sym_operator] = ACTIONS(3902), + [anon_sym_try] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3902), + [anon_sym_throw] = ACTIONS(3902), + [anon_sym_namespace] = ACTIONS(3902), + [anon_sym_static_assert] = ACTIONS(3902), + [anon_sym_concept] = ACTIONS(3902), + [anon_sym_co_return] = ACTIONS(3902), + [anon_sym_co_yield] = ACTIONS(3902), + [anon_sym_R_DQUOTE] = ACTIONS(3904), + [anon_sym_LR_DQUOTE] = ACTIONS(3904), + [anon_sym_uR_DQUOTE] = ACTIONS(3904), + [anon_sym_UR_DQUOTE] = ACTIONS(3904), + [anon_sym_u8R_DQUOTE] = ACTIONS(3904), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3902), + [anon_sym_requires] = ACTIONS(3902), + [anon_sym_CARET_CARET] = ACTIONS(3904), + [anon_sym_LBRACK_COLON] = ACTIONS(3904), + [sym_this] = ACTIONS(3902), }, - [STATE(1319)] = { - [sym_expression] = STATE(4508), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(773)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_include_token1] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym___cdecl] = ACTIONS(3906), + [anon_sym___clrcall] = ACTIONS(3906), + [anon_sym___stdcall] = ACTIONS(3906), + [anon_sym___fastcall] = ACTIONS(3906), + [anon_sym___thiscall] = ACTIONS(3906), + [anon_sym___vectorcall] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3908), + [anon_sym_RBRACE] = ACTIONS(3908), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3906), + [anon_sym_case] = ACTIONS(3906), + [anon_sym_default] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_break] = ACTIONS(3906), + [anon_sym_continue] = ACTIONS(3906), + [anon_sym_goto] = ACTIONS(3906), + [anon_sym___try] = ACTIONS(3906), + [anon_sym___leave] = ACTIONS(3906), + [anon_sym_not] = ACTIONS(3906), + [anon_sym_compl] = ACTIONS(3906), + [anon_sym_DASH_DASH] = ACTIONS(3908), + [anon_sym_PLUS_PLUS] = ACTIONS(3908), + [anon_sym_sizeof] = ACTIONS(3906), + [anon_sym___alignof__] = ACTIONS(3906), + [anon_sym___alignof] = ACTIONS(3906), + [anon_sym__alignof] = ACTIONS(3906), + [anon_sym_alignof] = ACTIONS(3906), + [anon_sym__Alignof] = ACTIONS(3906), + [anon_sym_offsetof] = ACTIONS(3906), + [anon_sym__Generic] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [anon_sym_asm] = ACTIONS(3906), + [anon_sym___asm__] = ACTIONS(3906), + [anon_sym___asm] = ACTIONS(3906), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3908), + [anon_sym_u_SQUOTE] = ACTIONS(3908), + [anon_sym_U_SQUOTE] = ACTIONS(3908), + [anon_sym_u8_SQUOTE] = ACTIONS(3908), + [anon_sym_SQUOTE] = ACTIONS(3908), + [anon_sym_L_DQUOTE] = ACTIONS(3908), + [anon_sym_u_DQUOTE] = ACTIONS(3908), + [anon_sym_U_DQUOTE] = ACTIONS(3908), + [anon_sym_u8_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(3908), + [sym_true] = ACTIONS(3906), + [sym_false] = ACTIONS(3906), + [anon_sym_NULL] = ACTIONS(3906), + [anon_sym_nullptr] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3906), + [anon_sym_throw] = ACTIONS(3906), + [anon_sym_namespace] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_concept] = ACTIONS(3906), + [anon_sym_co_return] = ACTIONS(3906), + [anon_sym_co_yield] = ACTIONS(3906), + [anon_sym_R_DQUOTE] = ACTIONS(3908), + [anon_sym_LR_DQUOTE] = ACTIONS(3908), + [anon_sym_uR_DQUOTE] = ACTIONS(3908), + [anon_sym_UR_DQUOTE] = ACTIONS(3908), + [anon_sym_u8R_DQUOTE] = ACTIONS(3908), + [anon_sym_co_await] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_requires] = ACTIONS(3906), + [anon_sym_CARET_CARET] = ACTIONS(3908), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + [sym_this] = ACTIONS(3906), }, - [STATE(1320)] = { - [sym_expression] = STATE(4583), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(774)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym___try] = ACTIONS(4172), + [anon_sym___leave] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(1321)] = { - [sym_expression] = STATE(4596), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(775)] = { + [sym_identifier] = ACTIONS(3982), + [aux_sym_preproc_include_token1] = ACTIONS(3982), + [aux_sym_preproc_def_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token2] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), + [sym_preproc_directive] = ACTIONS(3982), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_TILDE] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym___extension__] = ACTIONS(3982), + [anon_sym_typedef] = ACTIONS(3982), + [anon_sym_virtual] = ACTIONS(3982), + [anon_sym_extern] = ACTIONS(3982), + [anon_sym___attribute__] = ACTIONS(3982), + [anon_sym___attribute] = ACTIONS(3982), + [anon_sym_using] = ACTIONS(3982), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), + [anon_sym___declspec] = ACTIONS(3982), + [anon_sym___based] = ACTIONS(3982), + [anon_sym___cdecl] = ACTIONS(3982), + [anon_sym___clrcall] = ACTIONS(3982), + [anon_sym___stdcall] = ACTIONS(3982), + [anon_sym___fastcall] = ACTIONS(3982), + [anon_sym___thiscall] = ACTIONS(3982), + [anon_sym___vectorcall] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3982), + [anon_sym_unsigned] = ACTIONS(3982), + [anon_sym_long] = ACTIONS(3982), + [anon_sym_short] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_static] = ACTIONS(3982), + [anon_sym_register] = ACTIONS(3982), + [anon_sym_inline] = ACTIONS(3982), + [anon_sym___inline] = ACTIONS(3982), + [anon_sym___inline__] = ACTIONS(3982), + [anon_sym___forceinline] = ACTIONS(3982), + [anon_sym_thread_local] = ACTIONS(3982), + [anon_sym___thread] = ACTIONS(3982), + [anon_sym_const] = ACTIONS(3982), + [anon_sym_constexpr] = ACTIONS(3982), + [anon_sym_volatile] = ACTIONS(3982), + [anon_sym_restrict] = ACTIONS(3982), + [anon_sym___restrict__] = ACTIONS(3982), + [anon_sym__Atomic] = ACTIONS(3982), + [anon_sym__Noreturn] = ACTIONS(3982), + [anon_sym_noreturn] = ACTIONS(3982), + [anon_sym__Nonnull] = ACTIONS(3982), + [anon_sym_mutable] = ACTIONS(3982), + [anon_sym_constinit] = ACTIONS(3982), + [anon_sym_consteval] = ACTIONS(3982), + [anon_sym_alignas] = ACTIONS(3982), + [anon_sym__Alignas] = ACTIONS(3982), + [sym_primitive_type] = ACTIONS(3982), + [anon_sym_enum] = ACTIONS(3982), + [anon_sym_class] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3982), + [anon_sym_union] = ACTIONS(3982), + [anon_sym_if] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_case] = ACTIONS(3982), + [anon_sym_default] = ACTIONS(3982), + [anon_sym_while] = ACTIONS(3982), + [anon_sym_do] = ACTIONS(3982), + [anon_sym_for] = ACTIONS(3982), + [anon_sym_return] = ACTIONS(3982), + [anon_sym_break] = ACTIONS(3982), + [anon_sym_continue] = ACTIONS(3982), + [anon_sym_goto] = ACTIONS(3982), + [anon_sym___try] = ACTIONS(3982), + [anon_sym___leave] = ACTIONS(3982), + [anon_sym_not] = ACTIONS(3982), + [anon_sym_compl] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3984), + [anon_sym_sizeof] = ACTIONS(3982), + [anon_sym___alignof__] = ACTIONS(3982), + [anon_sym___alignof] = ACTIONS(3982), + [anon_sym__alignof] = ACTIONS(3982), + [anon_sym_alignof] = ACTIONS(3982), + [anon_sym__Alignof] = ACTIONS(3982), + [anon_sym_offsetof] = ACTIONS(3982), + [anon_sym__Generic] = ACTIONS(3982), + [anon_sym_typename] = ACTIONS(3982), + [anon_sym_asm] = ACTIONS(3982), + [anon_sym___asm__] = ACTIONS(3982), + [anon_sym___asm] = ACTIONS(3982), + [sym_number_literal] = ACTIONS(3984), + [anon_sym_L_SQUOTE] = ACTIONS(3984), + [anon_sym_u_SQUOTE] = ACTIONS(3984), + [anon_sym_U_SQUOTE] = ACTIONS(3984), + [anon_sym_u8_SQUOTE] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3984), + [anon_sym_L_DQUOTE] = ACTIONS(3984), + [anon_sym_u_DQUOTE] = ACTIONS(3984), + [anon_sym_U_DQUOTE] = ACTIONS(3984), + [anon_sym_u8_DQUOTE] = ACTIONS(3984), + [anon_sym_DQUOTE] = ACTIONS(3984), + [sym_true] = ACTIONS(3982), + [sym_false] = ACTIONS(3982), + [anon_sym_NULL] = ACTIONS(3982), + [anon_sym_nullptr] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3982), + [anon_sym_decltype] = ACTIONS(3982), + [anon_sym_explicit] = ACTIONS(3982), + [anon_sym_template] = ACTIONS(3982), + [anon_sym_operator] = ACTIONS(3982), + [anon_sym_try] = ACTIONS(3982), + [anon_sym_delete] = ACTIONS(3982), + [anon_sym_throw] = ACTIONS(3982), + [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_static_assert] = ACTIONS(3982), + [anon_sym_concept] = ACTIONS(3982), + [anon_sym_co_return] = ACTIONS(3982), + [anon_sym_co_yield] = ACTIONS(3982), + [anon_sym_R_DQUOTE] = ACTIONS(3984), + [anon_sym_LR_DQUOTE] = ACTIONS(3984), + [anon_sym_uR_DQUOTE] = ACTIONS(3984), + [anon_sym_UR_DQUOTE] = ACTIONS(3984), + [anon_sym_u8R_DQUOTE] = ACTIONS(3984), + [anon_sym_co_await] = ACTIONS(3982), + [anon_sym_new] = ACTIONS(3982), + [anon_sym_requires] = ACTIONS(3982), + [anon_sym_CARET_CARET] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3984), + [sym_this] = ACTIONS(3982), }, - [STATE(1322)] = { - [sym_expression] = STATE(4610), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(776)] = { + [sym_identifier] = ACTIONS(3910), + [aux_sym_preproc_include_token1] = ACTIONS(3910), + [aux_sym_preproc_def_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), + [sym_preproc_directive] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_TILDE] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_AMP_AMP] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym___extension__] = ACTIONS(3910), + [anon_sym_typedef] = ACTIONS(3910), + [anon_sym_virtual] = ACTIONS(3910), + [anon_sym_extern] = ACTIONS(3910), + [anon_sym___attribute__] = ACTIONS(3910), + [anon_sym___attribute] = ACTIONS(3910), + [anon_sym_using] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), + [anon_sym___declspec] = ACTIONS(3910), + [anon_sym___based] = ACTIONS(3910), + [anon_sym___cdecl] = ACTIONS(3910), + [anon_sym___clrcall] = ACTIONS(3910), + [anon_sym___stdcall] = ACTIONS(3910), + [anon_sym___fastcall] = ACTIONS(3910), + [anon_sym___thiscall] = ACTIONS(3910), + [anon_sym___vectorcall] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_signed] = ACTIONS(3910), + [anon_sym_unsigned] = ACTIONS(3910), + [anon_sym_long] = ACTIONS(3910), + [anon_sym_short] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_static] = ACTIONS(3910), + [anon_sym_register] = ACTIONS(3910), + [anon_sym_inline] = ACTIONS(3910), + [anon_sym___inline] = ACTIONS(3910), + [anon_sym___inline__] = ACTIONS(3910), + [anon_sym___forceinline] = ACTIONS(3910), + [anon_sym_thread_local] = ACTIONS(3910), + [anon_sym___thread] = ACTIONS(3910), + [anon_sym_const] = ACTIONS(3910), + [anon_sym_constexpr] = ACTIONS(3910), + [anon_sym_volatile] = ACTIONS(3910), + [anon_sym_restrict] = ACTIONS(3910), + [anon_sym___restrict__] = ACTIONS(3910), + [anon_sym__Atomic] = ACTIONS(3910), + [anon_sym__Noreturn] = ACTIONS(3910), + [anon_sym_noreturn] = ACTIONS(3910), + [anon_sym__Nonnull] = ACTIONS(3910), + [anon_sym_mutable] = ACTIONS(3910), + [anon_sym_constinit] = ACTIONS(3910), + [anon_sym_consteval] = ACTIONS(3910), + [anon_sym_alignas] = ACTIONS(3910), + [anon_sym__Alignas] = ACTIONS(3910), + [sym_primitive_type] = ACTIONS(3910), + [anon_sym_enum] = ACTIONS(3910), + [anon_sym_class] = ACTIONS(3910), + [anon_sym_struct] = ACTIONS(3910), + [anon_sym_union] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_case] = ACTIONS(3910), + [anon_sym_default] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_break] = ACTIONS(3910), + [anon_sym_continue] = ACTIONS(3910), + [anon_sym_goto] = ACTIONS(3910), + [anon_sym___try] = ACTIONS(3910), + [anon_sym___leave] = ACTIONS(3910), + [anon_sym_not] = ACTIONS(3910), + [anon_sym_compl] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3912), + [anon_sym_PLUS_PLUS] = ACTIONS(3912), + [anon_sym_sizeof] = ACTIONS(3910), + [anon_sym___alignof__] = ACTIONS(3910), + [anon_sym___alignof] = ACTIONS(3910), + [anon_sym__alignof] = ACTIONS(3910), + [anon_sym_alignof] = ACTIONS(3910), + [anon_sym__Alignof] = ACTIONS(3910), + [anon_sym_offsetof] = ACTIONS(3910), + [anon_sym__Generic] = ACTIONS(3910), + [anon_sym_typename] = ACTIONS(3910), + [anon_sym_asm] = ACTIONS(3910), + [anon_sym___asm__] = ACTIONS(3910), + [anon_sym___asm] = ACTIONS(3910), + [sym_number_literal] = ACTIONS(3912), + [anon_sym_L_SQUOTE] = ACTIONS(3912), + [anon_sym_u_SQUOTE] = ACTIONS(3912), + [anon_sym_U_SQUOTE] = ACTIONS(3912), + [anon_sym_u8_SQUOTE] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3912), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_true] = ACTIONS(3910), + [sym_false] = ACTIONS(3910), + [anon_sym_NULL] = ACTIONS(3910), + [anon_sym_nullptr] = ACTIONS(3910), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3910), + [anon_sym_decltype] = ACTIONS(3910), + [anon_sym_explicit] = ACTIONS(3910), + [anon_sym_template] = ACTIONS(3910), + [anon_sym_operator] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_delete] = ACTIONS(3910), + [anon_sym_throw] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_static_assert] = ACTIONS(3910), + [anon_sym_concept] = ACTIONS(3910), + [anon_sym_co_return] = ACTIONS(3910), + [anon_sym_co_yield] = ACTIONS(3910), + [anon_sym_R_DQUOTE] = ACTIONS(3912), + [anon_sym_LR_DQUOTE] = ACTIONS(3912), + [anon_sym_uR_DQUOTE] = ACTIONS(3912), + [anon_sym_UR_DQUOTE] = ACTIONS(3912), + [anon_sym_u8R_DQUOTE] = ACTIONS(3912), + [anon_sym_co_await] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_requires] = ACTIONS(3910), + [anon_sym_CARET_CARET] = ACTIONS(3912), + [anon_sym_LBRACK_COLON] = ACTIONS(3912), + [sym_this] = ACTIONS(3910), }, - [STATE(1323)] = { - [sym_expression] = STATE(4612), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(777)] = { + [sym_identifier] = ACTIONS(3914), + [aux_sym_preproc_include_token1] = ACTIONS(3914), + [aux_sym_preproc_def_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), + [sym_preproc_directive] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_BANG] = ACTIONS(3916), + [anon_sym_TILDE] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_STAR] = ACTIONS(3916), + [anon_sym_AMP_AMP] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_SEMI] = ACTIONS(3916), + [anon_sym___extension__] = ACTIONS(3914), + [anon_sym_typedef] = ACTIONS(3914), + [anon_sym_virtual] = ACTIONS(3914), + [anon_sym_extern] = ACTIONS(3914), + [anon_sym___attribute__] = ACTIONS(3914), + [anon_sym___attribute] = ACTIONS(3914), + [anon_sym_using] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), + [anon_sym___declspec] = ACTIONS(3914), + [anon_sym___based] = ACTIONS(3914), + [anon_sym___cdecl] = ACTIONS(3914), + [anon_sym___clrcall] = ACTIONS(3914), + [anon_sym___stdcall] = ACTIONS(3914), + [anon_sym___fastcall] = ACTIONS(3914), + [anon_sym___thiscall] = ACTIONS(3914), + [anon_sym___vectorcall] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3916), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_signed] = ACTIONS(3914), + [anon_sym_unsigned] = ACTIONS(3914), + [anon_sym_long] = ACTIONS(3914), + [anon_sym_short] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3914), + [anon_sym_register] = ACTIONS(3914), + [anon_sym_inline] = ACTIONS(3914), + [anon_sym___inline] = ACTIONS(3914), + [anon_sym___inline__] = ACTIONS(3914), + [anon_sym___forceinline] = ACTIONS(3914), + [anon_sym_thread_local] = ACTIONS(3914), + [anon_sym___thread] = ACTIONS(3914), + [anon_sym_const] = ACTIONS(3914), + [anon_sym_constexpr] = ACTIONS(3914), + [anon_sym_volatile] = ACTIONS(3914), + [anon_sym_restrict] = ACTIONS(3914), + [anon_sym___restrict__] = ACTIONS(3914), + [anon_sym__Atomic] = ACTIONS(3914), + [anon_sym__Noreturn] = ACTIONS(3914), + [anon_sym_noreturn] = ACTIONS(3914), + [anon_sym__Nonnull] = ACTIONS(3914), + [anon_sym_mutable] = ACTIONS(3914), + [anon_sym_constinit] = ACTIONS(3914), + [anon_sym_consteval] = ACTIONS(3914), + [anon_sym_alignas] = ACTIONS(3914), + [anon_sym__Alignas] = ACTIONS(3914), + [sym_primitive_type] = ACTIONS(3914), + [anon_sym_enum] = ACTIONS(3914), + [anon_sym_class] = ACTIONS(3914), + [anon_sym_struct] = ACTIONS(3914), + [anon_sym_union] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_switch] = ACTIONS(3914), + [anon_sym_case] = ACTIONS(3914), + [anon_sym_default] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_break] = ACTIONS(3914), + [anon_sym_continue] = ACTIONS(3914), + [anon_sym_goto] = ACTIONS(3914), + [anon_sym___try] = ACTIONS(3914), + [anon_sym___leave] = ACTIONS(3914), + [anon_sym_not] = ACTIONS(3914), + [anon_sym_compl] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3916), + [anon_sym_PLUS_PLUS] = ACTIONS(3916), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(3914), + [anon_sym___alignof] = ACTIONS(3914), + [anon_sym__alignof] = ACTIONS(3914), + [anon_sym_alignof] = ACTIONS(3914), + [anon_sym__Alignof] = ACTIONS(3914), + [anon_sym_offsetof] = ACTIONS(3914), + [anon_sym__Generic] = ACTIONS(3914), + [anon_sym_typename] = ACTIONS(3914), + [anon_sym_asm] = ACTIONS(3914), + [anon_sym___asm__] = ACTIONS(3914), + [anon_sym___asm] = ACTIONS(3914), + [sym_number_literal] = ACTIONS(3916), + [anon_sym_L_SQUOTE] = ACTIONS(3916), + [anon_sym_u_SQUOTE] = ACTIONS(3916), + [anon_sym_U_SQUOTE] = ACTIONS(3916), + [anon_sym_u8_SQUOTE] = ACTIONS(3916), + [anon_sym_SQUOTE] = ACTIONS(3916), + [anon_sym_L_DQUOTE] = ACTIONS(3916), + [anon_sym_u_DQUOTE] = ACTIONS(3916), + [anon_sym_U_DQUOTE] = ACTIONS(3916), + [anon_sym_u8_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE] = ACTIONS(3916), + [sym_true] = ACTIONS(3914), + [sym_false] = ACTIONS(3914), + [anon_sym_NULL] = ACTIONS(3914), + [anon_sym_nullptr] = ACTIONS(3914), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3914), + [anon_sym_decltype] = ACTIONS(3914), + [anon_sym_explicit] = ACTIONS(3914), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_operator] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3914), + [anon_sym_throw] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_static_assert] = ACTIONS(3914), + [anon_sym_concept] = ACTIONS(3914), + [anon_sym_co_return] = ACTIONS(3914), + [anon_sym_co_yield] = ACTIONS(3914), + [anon_sym_R_DQUOTE] = ACTIONS(3916), + [anon_sym_LR_DQUOTE] = ACTIONS(3916), + [anon_sym_uR_DQUOTE] = ACTIONS(3916), + [anon_sym_UR_DQUOTE] = ACTIONS(3916), + [anon_sym_u8R_DQUOTE] = ACTIONS(3916), + [anon_sym_co_await] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_requires] = ACTIONS(3914), + [anon_sym_CARET_CARET] = ACTIONS(3916), + [anon_sym_LBRACK_COLON] = ACTIONS(3916), + [sym_this] = ACTIONS(3914), }, - [STATE(1324)] = { - [sym_expression] = STATE(3031), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(4958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(778)] = { + [sym_identifier] = ACTIONS(3994), + [aux_sym_preproc_include_token1] = ACTIONS(3994), + [aux_sym_preproc_def_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token2] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), + [sym_preproc_directive] = ACTIONS(3994), + [anon_sym_LPAREN2] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_TILDE] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3994), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym___extension__] = ACTIONS(3994), + [anon_sym_typedef] = ACTIONS(3994), + [anon_sym_virtual] = ACTIONS(3994), + [anon_sym_extern] = ACTIONS(3994), + [anon_sym___attribute__] = ACTIONS(3994), + [anon_sym___attribute] = ACTIONS(3994), + [anon_sym_using] = ACTIONS(3994), + [anon_sym_COLON_COLON] = ACTIONS(3996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), + [anon_sym___declspec] = ACTIONS(3994), + [anon_sym___based] = ACTIONS(3994), + [anon_sym___cdecl] = ACTIONS(3994), + [anon_sym___clrcall] = ACTIONS(3994), + [anon_sym___stdcall] = ACTIONS(3994), + [anon_sym___fastcall] = ACTIONS(3994), + [anon_sym___thiscall] = ACTIONS(3994), + [anon_sym___vectorcall] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_signed] = ACTIONS(3994), + [anon_sym_unsigned] = ACTIONS(3994), + [anon_sym_long] = ACTIONS(3994), + [anon_sym_short] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3994), + [anon_sym_register] = ACTIONS(3994), + [anon_sym_inline] = ACTIONS(3994), + [anon_sym___inline] = ACTIONS(3994), + [anon_sym___inline__] = ACTIONS(3994), + [anon_sym___forceinline] = ACTIONS(3994), + [anon_sym_thread_local] = ACTIONS(3994), + [anon_sym___thread] = ACTIONS(3994), + [anon_sym_const] = ACTIONS(3994), + [anon_sym_constexpr] = ACTIONS(3994), + [anon_sym_volatile] = ACTIONS(3994), + [anon_sym_restrict] = ACTIONS(3994), + [anon_sym___restrict__] = ACTIONS(3994), + [anon_sym__Atomic] = ACTIONS(3994), + [anon_sym__Noreturn] = ACTIONS(3994), + [anon_sym_noreturn] = ACTIONS(3994), + [anon_sym__Nonnull] = ACTIONS(3994), + [anon_sym_mutable] = ACTIONS(3994), + [anon_sym_constinit] = ACTIONS(3994), + [anon_sym_consteval] = ACTIONS(3994), + [anon_sym_alignas] = ACTIONS(3994), + [anon_sym__Alignas] = ACTIONS(3994), + [sym_primitive_type] = ACTIONS(3994), + [anon_sym_enum] = ACTIONS(3994), + [anon_sym_class] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3994), + [anon_sym_union] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_case] = ACTIONS(3994), + [anon_sym_default] = ACTIONS(3994), + [anon_sym_while] = ACTIONS(3994), + [anon_sym_do] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3994), + [anon_sym_break] = ACTIONS(3994), + [anon_sym_continue] = ACTIONS(3994), + [anon_sym_goto] = ACTIONS(3994), + [anon_sym___try] = ACTIONS(3994), + [anon_sym___leave] = ACTIONS(3994), + [anon_sym_not] = ACTIONS(3994), + [anon_sym_compl] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_sizeof] = ACTIONS(3994), + [anon_sym___alignof__] = ACTIONS(3994), + [anon_sym___alignof] = ACTIONS(3994), + [anon_sym__alignof] = ACTIONS(3994), + [anon_sym_alignof] = ACTIONS(3994), + [anon_sym__Alignof] = ACTIONS(3994), + [anon_sym_offsetof] = ACTIONS(3994), + [anon_sym__Generic] = ACTIONS(3994), + [anon_sym_typename] = ACTIONS(3994), + [anon_sym_asm] = ACTIONS(3994), + [anon_sym___asm__] = ACTIONS(3994), + [anon_sym___asm] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3996), + [anon_sym_L_SQUOTE] = ACTIONS(3996), + [anon_sym_u_SQUOTE] = ACTIONS(3996), + [anon_sym_U_SQUOTE] = ACTIONS(3996), + [anon_sym_u8_SQUOTE] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3996), + [anon_sym_L_DQUOTE] = ACTIONS(3996), + [anon_sym_u_DQUOTE] = ACTIONS(3996), + [anon_sym_U_DQUOTE] = ACTIONS(3996), + [anon_sym_u8_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [sym_true] = ACTIONS(3994), + [sym_false] = ACTIONS(3994), + [anon_sym_NULL] = ACTIONS(3994), + [anon_sym_nullptr] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3994), + [anon_sym_decltype] = ACTIONS(3994), + [anon_sym_explicit] = ACTIONS(3994), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(3994), + [anon_sym_try] = ACTIONS(3994), + [anon_sym_delete] = ACTIONS(3994), + [anon_sym_throw] = ACTIONS(3994), + [anon_sym_namespace] = ACTIONS(3994), + [anon_sym_static_assert] = ACTIONS(3994), + [anon_sym_concept] = ACTIONS(3994), + [anon_sym_co_return] = ACTIONS(3994), + [anon_sym_co_yield] = ACTIONS(3994), + [anon_sym_R_DQUOTE] = ACTIONS(3996), + [anon_sym_LR_DQUOTE] = ACTIONS(3996), + [anon_sym_uR_DQUOTE] = ACTIONS(3996), + [anon_sym_UR_DQUOTE] = ACTIONS(3996), + [anon_sym_u8R_DQUOTE] = ACTIONS(3996), + [anon_sym_co_await] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3994), + [anon_sym_CARET_CARET] = ACTIONS(3996), + [anon_sym_LBRACK_COLON] = ACTIONS(3996), + [sym_this] = ACTIONS(3994), }, - [STATE(1325)] = { - [sym_expression] = STATE(2350), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(779)] = { + [sym_identifier] = ACTIONS(3918), + [aux_sym_preproc_include_token1] = ACTIONS(3918), + [aux_sym_preproc_def_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), + [sym_preproc_directive] = ACTIONS(3918), + [anon_sym_LPAREN2] = ACTIONS(3920), + [anon_sym_BANG] = ACTIONS(3920), + [anon_sym_TILDE] = ACTIONS(3920), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym___extension__] = ACTIONS(3918), + [anon_sym_typedef] = ACTIONS(3918), + [anon_sym_virtual] = ACTIONS(3918), + [anon_sym_extern] = ACTIONS(3918), + [anon_sym___attribute__] = ACTIONS(3918), + [anon_sym___attribute] = ACTIONS(3918), + [anon_sym_using] = ACTIONS(3918), + [anon_sym_COLON_COLON] = ACTIONS(3920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), + [anon_sym___declspec] = ACTIONS(3918), + [anon_sym___based] = ACTIONS(3918), + [anon_sym___cdecl] = ACTIONS(3918), + [anon_sym___clrcall] = ACTIONS(3918), + [anon_sym___stdcall] = ACTIONS(3918), + [anon_sym___fastcall] = ACTIONS(3918), + [anon_sym___thiscall] = ACTIONS(3918), + [anon_sym___vectorcall] = ACTIONS(3918), + [anon_sym_LBRACE] = ACTIONS(3920), + [anon_sym_RBRACE] = ACTIONS(3920), + [anon_sym_signed] = ACTIONS(3918), + [anon_sym_unsigned] = ACTIONS(3918), + [anon_sym_long] = ACTIONS(3918), + [anon_sym_short] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3918), + [anon_sym_static] = ACTIONS(3918), + [anon_sym_register] = ACTIONS(3918), + [anon_sym_inline] = ACTIONS(3918), + [anon_sym___inline] = ACTIONS(3918), + [anon_sym___inline__] = ACTIONS(3918), + [anon_sym___forceinline] = ACTIONS(3918), + [anon_sym_thread_local] = ACTIONS(3918), + [anon_sym___thread] = ACTIONS(3918), + [anon_sym_const] = ACTIONS(3918), + [anon_sym_constexpr] = ACTIONS(3918), + [anon_sym_volatile] = ACTIONS(3918), + [anon_sym_restrict] = ACTIONS(3918), + [anon_sym___restrict__] = ACTIONS(3918), + [anon_sym__Atomic] = ACTIONS(3918), + [anon_sym__Noreturn] = ACTIONS(3918), + [anon_sym_noreturn] = ACTIONS(3918), + [anon_sym__Nonnull] = ACTIONS(3918), + [anon_sym_mutable] = ACTIONS(3918), + [anon_sym_constinit] = ACTIONS(3918), + [anon_sym_consteval] = ACTIONS(3918), + [anon_sym_alignas] = ACTIONS(3918), + [anon_sym__Alignas] = ACTIONS(3918), + [sym_primitive_type] = ACTIONS(3918), + [anon_sym_enum] = ACTIONS(3918), + [anon_sym_class] = ACTIONS(3918), + [anon_sym_struct] = ACTIONS(3918), + [anon_sym_union] = ACTIONS(3918), + [anon_sym_if] = ACTIONS(3918), + [anon_sym_switch] = ACTIONS(3918), + [anon_sym_case] = ACTIONS(3918), + [anon_sym_default] = ACTIONS(3918), + [anon_sym_while] = ACTIONS(3918), + [anon_sym_do] = ACTIONS(3918), + [anon_sym_for] = ACTIONS(3918), + [anon_sym_return] = ACTIONS(3918), + [anon_sym_break] = ACTIONS(3918), + [anon_sym_continue] = ACTIONS(3918), + [anon_sym_goto] = ACTIONS(3918), + [anon_sym___try] = ACTIONS(3918), + [anon_sym___leave] = ACTIONS(3918), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_compl] = ACTIONS(3918), + [anon_sym_DASH_DASH] = ACTIONS(3920), + [anon_sym_PLUS_PLUS] = ACTIONS(3920), + [anon_sym_sizeof] = ACTIONS(3918), + [anon_sym___alignof__] = ACTIONS(3918), + [anon_sym___alignof] = ACTIONS(3918), + [anon_sym__alignof] = ACTIONS(3918), + [anon_sym_alignof] = ACTIONS(3918), + [anon_sym__Alignof] = ACTIONS(3918), + [anon_sym_offsetof] = ACTIONS(3918), + [anon_sym__Generic] = ACTIONS(3918), + [anon_sym_typename] = ACTIONS(3918), + [anon_sym_asm] = ACTIONS(3918), + [anon_sym___asm__] = ACTIONS(3918), + [anon_sym___asm] = ACTIONS(3918), + [sym_number_literal] = ACTIONS(3920), + [anon_sym_L_SQUOTE] = ACTIONS(3920), + [anon_sym_u_SQUOTE] = ACTIONS(3920), + [anon_sym_U_SQUOTE] = ACTIONS(3920), + [anon_sym_u8_SQUOTE] = ACTIONS(3920), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_L_DQUOTE] = ACTIONS(3920), + [anon_sym_u_DQUOTE] = ACTIONS(3920), + [anon_sym_U_DQUOTE] = ACTIONS(3920), + [anon_sym_u8_DQUOTE] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [sym_true] = ACTIONS(3918), + [sym_false] = ACTIONS(3918), + [anon_sym_NULL] = ACTIONS(3918), + [anon_sym_nullptr] = ACTIONS(3918), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3918), + [anon_sym_decltype] = ACTIONS(3918), + [anon_sym_explicit] = ACTIONS(3918), + [anon_sym_template] = ACTIONS(3918), + [anon_sym_operator] = ACTIONS(3918), + [anon_sym_try] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3918), + [anon_sym_throw] = ACTIONS(3918), + [anon_sym_namespace] = ACTIONS(3918), + [anon_sym_static_assert] = ACTIONS(3918), + [anon_sym_concept] = ACTIONS(3918), + [anon_sym_co_return] = ACTIONS(3918), + [anon_sym_co_yield] = ACTIONS(3918), + [anon_sym_R_DQUOTE] = ACTIONS(3920), + [anon_sym_LR_DQUOTE] = ACTIONS(3920), + [anon_sym_uR_DQUOTE] = ACTIONS(3920), + [anon_sym_UR_DQUOTE] = ACTIONS(3920), + [anon_sym_u8R_DQUOTE] = ACTIONS(3920), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3918), + [anon_sym_requires] = ACTIONS(3918), + [anon_sym_CARET_CARET] = ACTIONS(3920), + [anon_sym_LBRACK_COLON] = ACTIONS(3920), + [sym_this] = ACTIONS(3918), }, - [STATE(1326)] = { - [sym_expression] = STATE(2827), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(4960), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(780)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1327)] = { - [sym_expression] = STATE(2778), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(781)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_include_token1] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token2] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym___cdecl] = ACTIONS(3990), + [anon_sym___clrcall] = ACTIONS(3990), + [anon_sym___stdcall] = ACTIONS(3990), + [anon_sym___fastcall] = ACTIONS(3990), + [anon_sym___thiscall] = ACTIONS(3990), + [anon_sym___vectorcall] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_case] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_break] = ACTIONS(3990), + [anon_sym_continue] = ACTIONS(3990), + [anon_sym_goto] = ACTIONS(3990), + [anon_sym___try] = ACTIONS(3990), + [anon_sym___leave] = ACTIONS(3990), + [anon_sym_not] = ACTIONS(3990), + [anon_sym_compl] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3992), + [anon_sym_sizeof] = ACTIONS(3990), + [anon_sym___alignof__] = ACTIONS(3990), + [anon_sym___alignof] = ACTIONS(3990), + [anon_sym__alignof] = ACTIONS(3990), + [anon_sym_alignof] = ACTIONS(3990), + [anon_sym__Alignof] = ACTIONS(3990), + [anon_sym_offsetof] = ACTIONS(3990), + [anon_sym__Generic] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [anon_sym_asm] = ACTIONS(3990), + [anon_sym___asm__] = ACTIONS(3990), + [anon_sym___asm] = ACTIONS(3990), + [sym_number_literal] = ACTIONS(3992), + [anon_sym_L_SQUOTE] = ACTIONS(3992), + [anon_sym_u_SQUOTE] = ACTIONS(3992), + [anon_sym_U_SQUOTE] = ACTIONS(3992), + [anon_sym_u8_SQUOTE] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_L_DQUOTE] = ACTIONS(3992), + [anon_sym_u_DQUOTE] = ACTIONS(3992), + [anon_sym_U_DQUOTE] = ACTIONS(3992), + [anon_sym_u8_DQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym_true] = ACTIONS(3990), + [sym_false] = ACTIONS(3990), + [anon_sym_NULL] = ACTIONS(3990), + [anon_sym_nullptr] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_delete] = ACTIONS(3990), + [anon_sym_throw] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3990), + [anon_sym_co_return] = ACTIONS(3990), + [anon_sym_co_yield] = ACTIONS(3990), + [anon_sym_R_DQUOTE] = ACTIONS(3992), + [anon_sym_LR_DQUOTE] = ACTIONS(3992), + [anon_sym_uR_DQUOTE] = ACTIONS(3992), + [anon_sym_UR_DQUOTE] = ACTIONS(3992), + [anon_sym_u8R_DQUOTE] = ACTIONS(3992), + [anon_sym_co_await] = ACTIONS(3990), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_requires] = ACTIONS(3990), + [anon_sym_CARET_CARET] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + [sym_this] = ACTIONS(3990), }, - [STATE(1328)] = { - [sym_expression] = STATE(4832), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(782)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1329)] = { - [sym_expression] = STATE(3140), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(783)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1330)] = { - [sym_expression] = STATE(2763), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(784)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1331)] = { - [sym_expression] = STATE(4587), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(785)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1332)] = { - [sym_expression] = STATE(2765), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(786)] = { + [sym_identifier] = ACTIONS(4054), + [aux_sym_preproc_include_token1] = ACTIONS(4054), + [aux_sym_preproc_def_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token2] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), + [sym_preproc_directive] = ACTIONS(4054), + [anon_sym_LPAREN2] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym___extension__] = ACTIONS(4054), + [anon_sym_typedef] = ACTIONS(4054), + [anon_sym_virtual] = ACTIONS(4054), + [anon_sym_extern] = ACTIONS(4054), + [anon_sym___attribute__] = ACTIONS(4054), + [anon_sym___attribute] = ACTIONS(4054), + [anon_sym_using] = ACTIONS(4054), + [anon_sym_COLON_COLON] = ACTIONS(4056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), + [anon_sym___declspec] = ACTIONS(4054), + [anon_sym___based] = ACTIONS(4054), + [anon_sym___cdecl] = ACTIONS(4054), + [anon_sym___clrcall] = ACTIONS(4054), + [anon_sym___stdcall] = ACTIONS(4054), + [anon_sym___fastcall] = ACTIONS(4054), + [anon_sym___thiscall] = ACTIONS(4054), + [anon_sym___vectorcall] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_signed] = ACTIONS(4054), + [anon_sym_unsigned] = ACTIONS(4054), + [anon_sym_long] = ACTIONS(4054), + [anon_sym_short] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_register] = ACTIONS(4054), + [anon_sym_inline] = ACTIONS(4054), + [anon_sym___inline] = ACTIONS(4054), + [anon_sym___inline__] = ACTIONS(4054), + [anon_sym___forceinline] = ACTIONS(4054), + [anon_sym_thread_local] = ACTIONS(4054), + [anon_sym___thread] = ACTIONS(4054), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_constexpr] = ACTIONS(4054), + [anon_sym_volatile] = ACTIONS(4054), + [anon_sym_restrict] = ACTIONS(4054), + [anon_sym___restrict__] = ACTIONS(4054), + [anon_sym__Atomic] = ACTIONS(4054), + [anon_sym__Noreturn] = ACTIONS(4054), + [anon_sym_noreturn] = ACTIONS(4054), + [anon_sym__Nonnull] = ACTIONS(4054), + [anon_sym_mutable] = ACTIONS(4054), + [anon_sym_constinit] = ACTIONS(4054), + [anon_sym_consteval] = ACTIONS(4054), + [anon_sym_alignas] = ACTIONS(4054), + [anon_sym__Alignas] = ACTIONS(4054), + [sym_primitive_type] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_class] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_case] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym___try] = ACTIONS(4054), + [anon_sym___leave] = ACTIONS(4054), + [anon_sym_not] = ACTIONS(4054), + [anon_sym_compl] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_sizeof] = ACTIONS(4054), + [anon_sym___alignof__] = ACTIONS(4054), + [anon_sym___alignof] = ACTIONS(4054), + [anon_sym__alignof] = ACTIONS(4054), + [anon_sym_alignof] = ACTIONS(4054), + [anon_sym__Alignof] = ACTIONS(4054), + [anon_sym_offsetof] = ACTIONS(4054), + [anon_sym__Generic] = ACTIONS(4054), + [anon_sym_typename] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym___asm__] = ACTIONS(4054), + [anon_sym___asm] = ACTIONS(4054), + [sym_number_literal] = ACTIONS(4056), + [anon_sym_L_SQUOTE] = ACTIONS(4056), + [anon_sym_u_SQUOTE] = ACTIONS(4056), + [anon_sym_U_SQUOTE] = ACTIONS(4056), + [anon_sym_u8_SQUOTE] = ACTIONS(4056), + [anon_sym_SQUOTE] = ACTIONS(4056), + [anon_sym_L_DQUOTE] = ACTIONS(4056), + [anon_sym_u_DQUOTE] = ACTIONS(4056), + [anon_sym_U_DQUOTE] = ACTIONS(4056), + [anon_sym_u8_DQUOTE] = ACTIONS(4056), + [anon_sym_DQUOTE] = ACTIONS(4056), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [anon_sym_NULL] = ACTIONS(4054), + [anon_sym_nullptr] = ACTIONS(4054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4054), + [anon_sym_decltype] = ACTIONS(4054), + [anon_sym_explicit] = ACTIONS(4054), + [anon_sym_template] = ACTIONS(4054), + [anon_sym_operator] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_delete] = ACTIONS(4054), + [anon_sym_throw] = ACTIONS(4054), + [anon_sym_namespace] = ACTIONS(4054), + [anon_sym_static_assert] = ACTIONS(4054), + [anon_sym_concept] = ACTIONS(4054), + [anon_sym_co_return] = ACTIONS(4054), + [anon_sym_co_yield] = ACTIONS(4054), + [anon_sym_R_DQUOTE] = ACTIONS(4056), + [anon_sym_LR_DQUOTE] = ACTIONS(4056), + [anon_sym_uR_DQUOTE] = ACTIONS(4056), + [anon_sym_UR_DQUOTE] = ACTIONS(4056), + [anon_sym_u8R_DQUOTE] = ACTIONS(4056), + [anon_sym_co_await] = ACTIONS(4054), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_requires] = ACTIONS(4054), + [anon_sym_CARET_CARET] = ACTIONS(4056), + [anon_sym_LBRACK_COLON] = ACTIONS(4056), + [sym_this] = ACTIONS(4054), }, - [STATE(1333)] = { - [sym_expression] = STATE(2338), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(787)] = { + [sym_identifier] = ACTIONS(4058), + [aux_sym_preproc_include_token1] = ACTIONS(4058), + [aux_sym_preproc_def_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token2] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), + [sym_preproc_directive] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_typedef] = ACTIONS(4058), + [anon_sym_virtual] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_using] = ACTIONS(4058), + [anon_sym_COLON_COLON] = ACTIONS(4060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym___based] = ACTIONS(4058), + [anon_sym___cdecl] = ACTIONS(4058), + [anon_sym___clrcall] = ACTIONS(4058), + [anon_sym___stdcall] = ACTIONS(4058), + [anon_sym___fastcall] = ACTIONS(4058), + [anon_sym___thiscall] = ACTIONS(4058), + [anon_sym___vectorcall] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_mutable] = ACTIONS(4058), + [anon_sym_constinit] = ACTIONS(4058), + [anon_sym_consteval] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_class] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_case] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_while] = ACTIONS(4058), + [anon_sym_do] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym___try] = ACTIONS(4058), + [anon_sym___leave] = ACTIONS(4058), + [anon_sym_not] = ACTIONS(4058), + [anon_sym_compl] = ACTIONS(4058), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_sizeof] = ACTIONS(4058), + [anon_sym___alignof__] = ACTIONS(4058), + [anon_sym___alignof] = ACTIONS(4058), + [anon_sym__alignof] = ACTIONS(4058), + [anon_sym_alignof] = ACTIONS(4058), + [anon_sym__Alignof] = ACTIONS(4058), + [anon_sym_offsetof] = ACTIONS(4058), + [anon_sym__Generic] = ACTIONS(4058), + [anon_sym_typename] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym___asm__] = ACTIONS(4058), + [anon_sym___asm] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4060), + [anon_sym_L_SQUOTE] = ACTIONS(4060), + [anon_sym_u_SQUOTE] = ACTIONS(4060), + [anon_sym_U_SQUOTE] = ACTIONS(4060), + [anon_sym_u8_SQUOTE] = ACTIONS(4060), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_L_DQUOTE] = ACTIONS(4060), + [anon_sym_u_DQUOTE] = ACTIONS(4060), + [anon_sym_U_DQUOTE] = ACTIONS(4060), + [anon_sym_u8_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [anon_sym_NULL] = ACTIONS(4058), + [anon_sym_nullptr] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4058), + [anon_sym_decltype] = ACTIONS(4058), + [anon_sym_explicit] = ACTIONS(4058), + [anon_sym_template] = ACTIONS(4058), + [anon_sym_operator] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4058), + [anon_sym_delete] = ACTIONS(4058), + [anon_sym_throw] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_static_assert] = ACTIONS(4058), + [anon_sym_concept] = ACTIONS(4058), + [anon_sym_co_return] = ACTIONS(4058), + [anon_sym_co_yield] = ACTIONS(4058), + [anon_sym_R_DQUOTE] = ACTIONS(4060), + [anon_sym_LR_DQUOTE] = ACTIONS(4060), + [anon_sym_uR_DQUOTE] = ACTIONS(4060), + [anon_sym_UR_DQUOTE] = ACTIONS(4060), + [anon_sym_u8R_DQUOTE] = ACTIONS(4060), + [anon_sym_co_await] = ACTIONS(4058), + [anon_sym_new] = ACTIONS(4058), + [anon_sym_requires] = ACTIONS(4058), + [anon_sym_CARET_CARET] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4060), + [sym_this] = ACTIONS(4058), }, - [STATE(1334)] = { - [sym_expression] = STATE(2338), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(4962), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(788)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_include_token1] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3926), + [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym___cdecl] = ACTIONS(3926), + [anon_sym___clrcall] = ACTIONS(3926), + [anon_sym___stdcall] = ACTIONS(3926), + [anon_sym___fastcall] = ACTIONS(3926), + [anon_sym___thiscall] = ACTIONS(3926), + [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_switch] = ACTIONS(3926), + [anon_sym_case] = ACTIONS(3926), + [anon_sym_default] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_break] = ACTIONS(3926), + [anon_sym_continue] = ACTIONS(3926), + [anon_sym_goto] = ACTIONS(3926), + [anon_sym___try] = ACTIONS(3926), + [anon_sym___leave] = ACTIONS(3926), + [anon_sym_not] = ACTIONS(3926), + [anon_sym_compl] = ACTIONS(3926), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3926), + [anon_sym___alignof__] = ACTIONS(3926), + [anon_sym___alignof] = ACTIONS(3926), + [anon_sym__alignof] = ACTIONS(3926), + [anon_sym_alignof] = ACTIONS(3926), + [anon_sym__Alignof] = ACTIONS(3926), + [anon_sym_offsetof] = ACTIONS(3926), + [anon_sym__Generic] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [anon_sym_asm] = ACTIONS(3926), + [anon_sym___asm__] = ACTIONS(3926), + [anon_sym___asm] = ACTIONS(3926), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3926), + [sym_false] = ACTIONS(3926), + [anon_sym_NULL] = ACTIONS(3926), + [anon_sym_nullptr] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_try] = ACTIONS(3926), + [anon_sym_delete] = ACTIONS(3926), + [anon_sym_throw] = ACTIONS(3926), + [anon_sym_namespace] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_concept] = ACTIONS(3926), + [anon_sym_co_return] = ACTIONS(3926), + [anon_sym_co_yield] = ACTIONS(3926), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3926), + [anon_sym_new] = ACTIONS(3926), + [anon_sym_requires] = ACTIONS(3926), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3926), }, - [STATE(1335)] = { - [sym_expression] = STATE(2346), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(789)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_include_token1] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3930), + [anon_sym_PLUS] = ACTIONS(3930), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym___cdecl] = ACTIONS(3930), + [anon_sym___clrcall] = ACTIONS(3930), + [anon_sym___stdcall] = ACTIONS(3930), + [anon_sym___fastcall] = ACTIONS(3930), + [anon_sym___thiscall] = ACTIONS(3930), + [anon_sym___vectorcall] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3932), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_if] = ACTIONS(3930), + [anon_sym_switch] = ACTIONS(3930), + [anon_sym_case] = ACTIONS(3930), + [anon_sym_default] = ACTIONS(3930), + [anon_sym_while] = ACTIONS(3930), + [anon_sym_do] = ACTIONS(3930), + [anon_sym_for] = ACTIONS(3930), + [anon_sym_return] = ACTIONS(3930), + [anon_sym_break] = ACTIONS(3930), + [anon_sym_continue] = ACTIONS(3930), + [anon_sym_goto] = ACTIONS(3930), + [anon_sym___try] = ACTIONS(3930), + [anon_sym___leave] = ACTIONS(3930), + [anon_sym_not] = ACTIONS(3930), + [anon_sym_compl] = ACTIONS(3930), + [anon_sym_DASH_DASH] = ACTIONS(3932), + [anon_sym_PLUS_PLUS] = ACTIONS(3932), + [anon_sym_sizeof] = ACTIONS(3930), + [anon_sym___alignof__] = ACTIONS(3930), + [anon_sym___alignof] = ACTIONS(3930), + [anon_sym__alignof] = ACTIONS(3930), + [anon_sym_alignof] = ACTIONS(3930), + [anon_sym__Alignof] = ACTIONS(3930), + [anon_sym_offsetof] = ACTIONS(3930), + [anon_sym__Generic] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [anon_sym_asm] = ACTIONS(3930), + [anon_sym___asm__] = ACTIONS(3930), + [anon_sym___asm] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3932), + [anon_sym_L_SQUOTE] = ACTIONS(3932), + [anon_sym_u_SQUOTE] = ACTIONS(3932), + [anon_sym_U_SQUOTE] = ACTIONS(3932), + [anon_sym_u8_SQUOTE] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3932), + [anon_sym_L_DQUOTE] = ACTIONS(3932), + [anon_sym_u_DQUOTE] = ACTIONS(3932), + [anon_sym_U_DQUOTE] = ACTIONS(3932), + [anon_sym_u8_DQUOTE] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(3932), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [anon_sym_NULL] = ACTIONS(3930), + [anon_sym_nullptr] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_try] = ACTIONS(3930), + [anon_sym_delete] = ACTIONS(3930), + [anon_sym_throw] = ACTIONS(3930), + [anon_sym_namespace] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_concept] = ACTIONS(3930), + [anon_sym_co_return] = ACTIONS(3930), + [anon_sym_co_yield] = ACTIONS(3930), + [anon_sym_R_DQUOTE] = ACTIONS(3932), + [anon_sym_LR_DQUOTE] = ACTIONS(3932), + [anon_sym_uR_DQUOTE] = ACTIONS(3932), + [anon_sym_UR_DQUOTE] = ACTIONS(3932), + [anon_sym_u8R_DQUOTE] = ACTIONS(3932), + [anon_sym_co_await] = ACTIONS(3930), + [anon_sym_new] = ACTIONS(3930), + [anon_sym_requires] = ACTIONS(3930), + [anon_sym_CARET_CARET] = ACTIONS(3932), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [sym_this] = ACTIONS(3930), }, - [STATE(1336)] = { - [sym_expression] = STATE(4833), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(790)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_include_token1] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3934), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym___cdecl] = ACTIONS(3934), + [anon_sym___clrcall] = ACTIONS(3934), + [anon_sym___stdcall] = ACTIONS(3934), + [anon_sym___fastcall] = ACTIONS(3934), + [anon_sym___thiscall] = ACTIONS(3934), + [anon_sym___vectorcall] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3936), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_if] = ACTIONS(3934), + [anon_sym_switch] = ACTIONS(3934), + [anon_sym_case] = ACTIONS(3934), + [anon_sym_default] = ACTIONS(3934), + [anon_sym_while] = ACTIONS(3934), + [anon_sym_do] = ACTIONS(3934), + [anon_sym_for] = ACTIONS(3934), + [anon_sym_return] = ACTIONS(3934), + [anon_sym_break] = ACTIONS(3934), + [anon_sym_continue] = ACTIONS(3934), + [anon_sym_goto] = ACTIONS(3934), + [anon_sym___try] = ACTIONS(3934), + [anon_sym___leave] = ACTIONS(3934), + [anon_sym_not] = ACTIONS(3934), + [anon_sym_compl] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3936), + [anon_sym_PLUS_PLUS] = ACTIONS(3936), + [anon_sym_sizeof] = ACTIONS(3934), + [anon_sym___alignof__] = ACTIONS(3934), + [anon_sym___alignof] = ACTIONS(3934), + [anon_sym__alignof] = ACTIONS(3934), + [anon_sym_alignof] = ACTIONS(3934), + [anon_sym__Alignof] = ACTIONS(3934), + [anon_sym_offsetof] = ACTIONS(3934), + [anon_sym__Generic] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [anon_sym_asm] = ACTIONS(3934), + [anon_sym___asm__] = ACTIONS(3934), + [anon_sym___asm] = ACTIONS(3934), + [sym_number_literal] = ACTIONS(3936), + [anon_sym_L_SQUOTE] = ACTIONS(3936), + [anon_sym_u_SQUOTE] = ACTIONS(3936), + [anon_sym_U_SQUOTE] = ACTIONS(3936), + [anon_sym_u8_SQUOTE] = ACTIONS(3936), + [anon_sym_SQUOTE] = ACTIONS(3936), + [anon_sym_L_DQUOTE] = ACTIONS(3936), + [anon_sym_u_DQUOTE] = ACTIONS(3936), + [anon_sym_U_DQUOTE] = ACTIONS(3936), + [anon_sym_u8_DQUOTE] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3936), + [sym_true] = ACTIONS(3934), + [sym_false] = ACTIONS(3934), + [anon_sym_NULL] = ACTIONS(3934), + [anon_sym_nullptr] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_try] = ACTIONS(3934), + [anon_sym_delete] = ACTIONS(3934), + [anon_sym_throw] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_concept] = ACTIONS(3934), + [anon_sym_co_return] = ACTIONS(3934), + [anon_sym_co_yield] = ACTIONS(3934), + [anon_sym_R_DQUOTE] = ACTIONS(3936), + [anon_sym_LR_DQUOTE] = ACTIONS(3936), + [anon_sym_uR_DQUOTE] = ACTIONS(3936), + [anon_sym_UR_DQUOTE] = ACTIONS(3936), + [anon_sym_u8R_DQUOTE] = ACTIONS(3936), + [anon_sym_co_await] = ACTIONS(3934), + [anon_sym_new] = ACTIONS(3934), + [anon_sym_requires] = ACTIONS(3934), + [anon_sym_CARET_CARET] = ACTIONS(3936), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [sym_this] = ACTIONS(3934), }, - [STATE(1337)] = { - [sym_expression] = STATE(4188), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(4964), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(791)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_include_token1] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_BANG] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym___cdecl] = ACTIONS(3938), + [anon_sym___clrcall] = ACTIONS(3938), + [anon_sym___stdcall] = ACTIONS(3938), + [anon_sym___fastcall] = ACTIONS(3938), + [anon_sym___thiscall] = ACTIONS(3938), + [anon_sym___vectorcall] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3940), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_switch] = ACTIONS(3938), + [anon_sym_case] = ACTIONS(3938), + [anon_sym_default] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_goto] = ACTIONS(3938), + [anon_sym___try] = ACTIONS(3938), + [anon_sym___leave] = ACTIONS(3938), + [anon_sym_not] = ACTIONS(3938), + [anon_sym_compl] = ACTIONS(3938), + [anon_sym_DASH_DASH] = ACTIONS(3940), + [anon_sym_PLUS_PLUS] = ACTIONS(3940), + [anon_sym_sizeof] = ACTIONS(3938), + [anon_sym___alignof__] = ACTIONS(3938), + [anon_sym___alignof] = ACTIONS(3938), + [anon_sym__alignof] = ACTIONS(3938), + [anon_sym_alignof] = ACTIONS(3938), + [anon_sym__Alignof] = ACTIONS(3938), + [anon_sym_offsetof] = ACTIONS(3938), + [anon_sym__Generic] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [anon_sym_asm] = ACTIONS(3938), + [anon_sym___asm__] = ACTIONS(3938), + [anon_sym___asm] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3940), + [anon_sym_L_SQUOTE] = ACTIONS(3940), + [anon_sym_u_SQUOTE] = ACTIONS(3940), + [anon_sym_U_SQUOTE] = ACTIONS(3940), + [anon_sym_u8_SQUOTE] = ACTIONS(3940), + [anon_sym_SQUOTE] = ACTIONS(3940), + [anon_sym_L_DQUOTE] = ACTIONS(3940), + [anon_sym_u_DQUOTE] = ACTIONS(3940), + [anon_sym_U_DQUOTE] = ACTIONS(3940), + [anon_sym_u8_DQUOTE] = ACTIONS(3940), + [anon_sym_DQUOTE] = ACTIONS(3940), + [sym_true] = ACTIONS(3938), + [sym_false] = ACTIONS(3938), + [anon_sym_NULL] = ACTIONS(3938), + [anon_sym_nullptr] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_delete] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_namespace] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_concept] = ACTIONS(3938), + [anon_sym_co_return] = ACTIONS(3938), + [anon_sym_co_yield] = ACTIONS(3938), + [anon_sym_R_DQUOTE] = ACTIONS(3940), + [anon_sym_LR_DQUOTE] = ACTIONS(3940), + [anon_sym_uR_DQUOTE] = ACTIONS(3940), + [anon_sym_UR_DQUOTE] = ACTIONS(3940), + [anon_sym_u8R_DQUOTE] = ACTIONS(3940), + [anon_sym_co_await] = ACTIONS(3938), + [anon_sym_new] = ACTIONS(3938), + [anon_sym_requires] = ACTIONS(3938), + [anon_sym_CARET_CARET] = ACTIONS(3940), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [sym_this] = ACTIONS(3938), }, - [STATE(1338)] = { - [sym_expression] = STATE(3133), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(4966), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(792)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_include_token1] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token2] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym___cdecl] = ACTIONS(4006), + [anon_sym___clrcall] = ACTIONS(4006), + [anon_sym___stdcall] = ACTIONS(4006), + [anon_sym___fastcall] = ACTIONS(4006), + [anon_sym___thiscall] = ACTIONS(4006), + [anon_sym___vectorcall] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_if] = ACTIONS(4006), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_case] = ACTIONS(4006), + [anon_sym_default] = ACTIONS(4006), + [anon_sym_while] = ACTIONS(4006), + [anon_sym_do] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4006), + [anon_sym_break] = ACTIONS(4006), + [anon_sym_continue] = ACTIONS(4006), + [anon_sym_goto] = ACTIONS(4006), + [anon_sym___try] = ACTIONS(4006), + [anon_sym___leave] = ACTIONS(4006), + [anon_sym_not] = ACTIONS(4006), + [anon_sym_compl] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4008), + [anon_sym_sizeof] = ACTIONS(4006), + [anon_sym___alignof__] = ACTIONS(4006), + [anon_sym___alignof] = ACTIONS(4006), + [anon_sym__alignof] = ACTIONS(4006), + [anon_sym_alignof] = ACTIONS(4006), + [anon_sym__Alignof] = ACTIONS(4006), + [anon_sym_offsetof] = ACTIONS(4006), + [anon_sym__Generic] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [anon_sym_asm] = ACTIONS(4006), + [anon_sym___asm__] = ACTIONS(4006), + [anon_sym___asm] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4008), + [anon_sym_L_SQUOTE] = ACTIONS(4008), + [anon_sym_u_SQUOTE] = ACTIONS(4008), + [anon_sym_U_SQUOTE] = ACTIONS(4008), + [anon_sym_u8_SQUOTE] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4008), + [anon_sym_L_DQUOTE] = ACTIONS(4008), + [anon_sym_u_DQUOTE] = ACTIONS(4008), + [anon_sym_U_DQUOTE] = ACTIONS(4008), + [anon_sym_u8_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [sym_true] = ACTIONS(4006), + [sym_false] = ACTIONS(4006), + [anon_sym_NULL] = ACTIONS(4006), + [anon_sym_nullptr] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_try] = ACTIONS(4006), + [anon_sym_delete] = ACTIONS(4006), + [anon_sym_throw] = ACTIONS(4006), + [anon_sym_namespace] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_concept] = ACTIONS(4006), + [anon_sym_co_return] = ACTIONS(4006), + [anon_sym_co_yield] = ACTIONS(4006), + [anon_sym_R_DQUOTE] = ACTIONS(4008), + [anon_sym_LR_DQUOTE] = ACTIONS(4008), + [anon_sym_uR_DQUOTE] = ACTIONS(4008), + [anon_sym_UR_DQUOTE] = ACTIONS(4008), + [anon_sym_u8R_DQUOTE] = ACTIONS(4008), + [anon_sym_co_await] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4006), + [anon_sym_requires] = ACTIONS(4006), + [anon_sym_CARET_CARET] = ACTIONS(4008), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [sym_this] = ACTIONS(4006), }, - [STATE(1339)] = { - [sym_expression] = STATE(3813), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(793)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_include_token1] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_BANG] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3942), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym___cdecl] = ACTIONS(3942), + [anon_sym___clrcall] = ACTIONS(3942), + [anon_sym___stdcall] = ACTIONS(3942), + [anon_sym___fastcall] = ACTIONS(3942), + [anon_sym___thiscall] = ACTIONS(3942), + [anon_sym___vectorcall] = ACTIONS(3942), + [anon_sym_LBRACE] = ACTIONS(3944), + [anon_sym_RBRACE] = ACTIONS(3944), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_if] = ACTIONS(3942), + [anon_sym_switch] = ACTIONS(3942), + [anon_sym_case] = ACTIONS(3942), + [anon_sym_default] = ACTIONS(3942), + [anon_sym_while] = ACTIONS(3942), + [anon_sym_do] = ACTIONS(3942), + [anon_sym_for] = ACTIONS(3942), + [anon_sym_return] = ACTIONS(3942), + [anon_sym_break] = ACTIONS(3942), + [anon_sym_continue] = ACTIONS(3942), + [anon_sym_goto] = ACTIONS(3942), + [anon_sym___try] = ACTIONS(3942), + [anon_sym___leave] = ACTIONS(3942), + [anon_sym_not] = ACTIONS(3942), + [anon_sym_compl] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3944), + [anon_sym_PLUS_PLUS] = ACTIONS(3944), + [anon_sym_sizeof] = ACTIONS(3942), + [anon_sym___alignof__] = ACTIONS(3942), + [anon_sym___alignof] = ACTIONS(3942), + [anon_sym__alignof] = ACTIONS(3942), + [anon_sym_alignof] = ACTIONS(3942), + [anon_sym__Alignof] = ACTIONS(3942), + [anon_sym_offsetof] = ACTIONS(3942), + [anon_sym__Generic] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [anon_sym_asm] = ACTIONS(3942), + [anon_sym___asm__] = ACTIONS(3942), + [anon_sym___asm] = ACTIONS(3942), + [sym_number_literal] = ACTIONS(3944), + [anon_sym_L_SQUOTE] = ACTIONS(3944), + [anon_sym_u_SQUOTE] = ACTIONS(3944), + [anon_sym_U_SQUOTE] = ACTIONS(3944), + [anon_sym_u8_SQUOTE] = ACTIONS(3944), + [anon_sym_SQUOTE] = ACTIONS(3944), + [anon_sym_L_DQUOTE] = ACTIONS(3944), + [anon_sym_u_DQUOTE] = ACTIONS(3944), + [anon_sym_U_DQUOTE] = ACTIONS(3944), + [anon_sym_u8_DQUOTE] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3944), + [sym_true] = ACTIONS(3942), + [sym_false] = ACTIONS(3942), + [anon_sym_NULL] = ACTIONS(3942), + [anon_sym_nullptr] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_try] = ACTIONS(3942), + [anon_sym_delete] = ACTIONS(3942), + [anon_sym_throw] = ACTIONS(3942), + [anon_sym_namespace] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_concept] = ACTIONS(3942), + [anon_sym_co_return] = ACTIONS(3942), + [anon_sym_co_yield] = ACTIONS(3942), + [anon_sym_R_DQUOTE] = ACTIONS(3944), + [anon_sym_LR_DQUOTE] = ACTIONS(3944), + [anon_sym_uR_DQUOTE] = ACTIONS(3944), + [anon_sym_UR_DQUOTE] = ACTIONS(3944), + [anon_sym_u8R_DQUOTE] = ACTIONS(3944), + [anon_sym_co_await] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3942), + [anon_sym_requires] = ACTIONS(3942), + [anon_sym_CARET_CARET] = ACTIONS(3944), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [sym_this] = ACTIONS(3942), }, - [STATE(1340)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(794)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_include_token1] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_BANG] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3946), + [anon_sym_PLUS] = ACTIONS(3946), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym___cdecl] = ACTIONS(3946), + [anon_sym___clrcall] = ACTIONS(3946), + [anon_sym___stdcall] = ACTIONS(3946), + [anon_sym___fastcall] = ACTIONS(3946), + [anon_sym___thiscall] = ACTIONS(3946), + [anon_sym___vectorcall] = ACTIONS(3946), + [anon_sym_LBRACE] = ACTIONS(3948), + [anon_sym_RBRACE] = ACTIONS(3948), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_if] = ACTIONS(3946), + [anon_sym_switch] = ACTIONS(3946), + [anon_sym_case] = ACTIONS(3946), + [anon_sym_default] = ACTIONS(3946), + [anon_sym_while] = ACTIONS(3946), + [anon_sym_do] = ACTIONS(3946), + [anon_sym_for] = ACTIONS(3946), + [anon_sym_return] = ACTIONS(3946), + [anon_sym_break] = ACTIONS(3946), + [anon_sym_continue] = ACTIONS(3946), + [anon_sym_goto] = ACTIONS(3946), + [anon_sym___try] = ACTIONS(3946), + [anon_sym___leave] = ACTIONS(3946), + [anon_sym_not] = ACTIONS(3946), + [anon_sym_compl] = ACTIONS(3946), + [anon_sym_DASH_DASH] = ACTIONS(3948), + [anon_sym_PLUS_PLUS] = ACTIONS(3948), + [anon_sym_sizeof] = ACTIONS(3946), + [anon_sym___alignof__] = ACTIONS(3946), + [anon_sym___alignof] = ACTIONS(3946), + [anon_sym__alignof] = ACTIONS(3946), + [anon_sym_alignof] = ACTIONS(3946), + [anon_sym__Alignof] = ACTIONS(3946), + [anon_sym_offsetof] = ACTIONS(3946), + [anon_sym__Generic] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [anon_sym_asm] = ACTIONS(3946), + [anon_sym___asm__] = ACTIONS(3946), + [anon_sym___asm] = ACTIONS(3946), + [sym_number_literal] = ACTIONS(3948), + [anon_sym_L_SQUOTE] = ACTIONS(3948), + [anon_sym_u_SQUOTE] = ACTIONS(3948), + [anon_sym_U_SQUOTE] = ACTIONS(3948), + [anon_sym_u8_SQUOTE] = ACTIONS(3948), + [anon_sym_SQUOTE] = ACTIONS(3948), + [anon_sym_L_DQUOTE] = ACTIONS(3948), + [anon_sym_u_DQUOTE] = ACTIONS(3948), + [anon_sym_U_DQUOTE] = ACTIONS(3948), + [anon_sym_u8_DQUOTE] = ACTIONS(3948), + [anon_sym_DQUOTE] = ACTIONS(3948), + [sym_true] = ACTIONS(3946), + [sym_false] = ACTIONS(3946), + [anon_sym_NULL] = ACTIONS(3946), + [anon_sym_nullptr] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_try] = ACTIONS(3946), + [anon_sym_delete] = ACTIONS(3946), + [anon_sym_throw] = ACTIONS(3946), + [anon_sym_namespace] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_concept] = ACTIONS(3946), + [anon_sym_co_return] = ACTIONS(3946), + [anon_sym_co_yield] = ACTIONS(3946), + [anon_sym_R_DQUOTE] = ACTIONS(3948), + [anon_sym_LR_DQUOTE] = ACTIONS(3948), + [anon_sym_uR_DQUOTE] = ACTIONS(3948), + [anon_sym_UR_DQUOTE] = ACTIONS(3948), + [anon_sym_u8R_DQUOTE] = ACTIONS(3948), + [anon_sym_co_await] = ACTIONS(3946), + [anon_sym_new] = ACTIONS(3946), + [anon_sym_requires] = ACTIONS(3946), + [anon_sym_CARET_CARET] = ACTIONS(3948), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [sym_this] = ACTIONS(3946), }, - [STATE(1341)] = { - [sym_expression] = STATE(4185), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(795)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym___try] = ACTIONS(3950), + [anon_sym___leave] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), }, - [STATE(1342)] = { - [sym_expression] = STATE(4157), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(4968), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(796)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_include_token1] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token2] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_PLUS] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym___cdecl] = ACTIONS(4010), + [anon_sym___clrcall] = ACTIONS(4010), + [anon_sym___stdcall] = ACTIONS(4010), + [anon_sym___fastcall] = ACTIONS(4010), + [anon_sym___thiscall] = ACTIONS(4010), + [anon_sym___vectorcall] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_if] = ACTIONS(4010), + [anon_sym_switch] = ACTIONS(4010), + [anon_sym_case] = ACTIONS(4010), + [anon_sym_default] = ACTIONS(4010), + [anon_sym_while] = ACTIONS(4010), + [anon_sym_do] = ACTIONS(4010), + [anon_sym_for] = ACTIONS(4010), + [anon_sym_return] = ACTIONS(4010), + [anon_sym_break] = ACTIONS(4010), + [anon_sym_continue] = ACTIONS(4010), + [anon_sym_goto] = ACTIONS(4010), + [anon_sym___try] = ACTIONS(4010), + [anon_sym___leave] = ACTIONS(4010), + [anon_sym_not] = ACTIONS(4010), + [anon_sym_compl] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4012), + [anon_sym_PLUS_PLUS] = ACTIONS(4012), + [anon_sym_sizeof] = ACTIONS(4010), + [anon_sym___alignof__] = ACTIONS(4010), + [anon_sym___alignof] = ACTIONS(4010), + [anon_sym__alignof] = ACTIONS(4010), + [anon_sym_alignof] = ACTIONS(4010), + [anon_sym__Alignof] = ACTIONS(4010), + [anon_sym_offsetof] = ACTIONS(4010), + [anon_sym__Generic] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [anon_sym_asm] = ACTIONS(4010), + [anon_sym___asm__] = ACTIONS(4010), + [anon_sym___asm] = ACTIONS(4010), + [sym_number_literal] = ACTIONS(4012), + [anon_sym_L_SQUOTE] = ACTIONS(4012), + [anon_sym_u_SQUOTE] = ACTIONS(4012), + [anon_sym_U_SQUOTE] = ACTIONS(4012), + [anon_sym_u8_SQUOTE] = ACTIONS(4012), + [anon_sym_SQUOTE] = ACTIONS(4012), + [anon_sym_L_DQUOTE] = ACTIONS(4012), + [anon_sym_u_DQUOTE] = ACTIONS(4012), + [anon_sym_U_DQUOTE] = ACTIONS(4012), + [anon_sym_u8_DQUOTE] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4012), + [sym_true] = ACTIONS(4010), + [sym_false] = ACTIONS(4010), + [anon_sym_NULL] = ACTIONS(4010), + [anon_sym_nullptr] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_try] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(4010), + [anon_sym_throw] = ACTIONS(4010), + [anon_sym_namespace] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_concept] = ACTIONS(4010), + [anon_sym_co_return] = ACTIONS(4010), + [anon_sym_co_yield] = ACTIONS(4010), + [anon_sym_R_DQUOTE] = ACTIONS(4012), + [anon_sym_LR_DQUOTE] = ACTIONS(4012), + [anon_sym_uR_DQUOTE] = ACTIONS(4012), + [anon_sym_UR_DQUOTE] = ACTIONS(4012), + [anon_sym_u8R_DQUOTE] = ACTIONS(4012), + [anon_sym_co_await] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_requires] = ACTIONS(4010), + [anon_sym_CARET_CARET] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + [sym_this] = ACTIONS(4010), }, - [STATE(1343)] = { - [sym_expression] = STATE(3743), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(797)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_RBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym___try] = ACTIONS(3954), + [anon_sym___leave] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(1344)] = { - [sym_expression] = STATE(3866), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(798)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym___try] = ACTIONS(3958), + [anon_sym___leave] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), }, - [STATE(1345)] = { - [sym_expression] = STATE(3134), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(799)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_RBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym___try] = ACTIONS(3962), + [anon_sym___leave] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), }, - [STATE(1346)] = { - [sym_expression] = STATE(4648), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(800)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_include_token1] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token2] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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___cdecl] = ACTIONS(4014), + [anon_sym___clrcall] = ACTIONS(4014), + [anon_sym___stdcall] = ACTIONS(4014), + [anon_sym___fastcall] = ACTIONS(4014), + [anon_sym___thiscall] = ACTIONS(4014), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [anon_sym_asm] = 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_explicit] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_namespace] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4016), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [sym_this] = ACTIONS(4014), }, - [STATE(1347)] = { - [sym_expression] = STATE(4194), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(801)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_include_token1] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token2] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym___cdecl] = ACTIONS(4066), + [anon_sym___clrcall] = ACTIONS(4066), + [anon_sym___stdcall] = ACTIONS(4066), + [anon_sym___fastcall] = ACTIONS(4066), + [anon_sym___thiscall] = ACTIONS(4066), + [anon_sym___vectorcall] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym___try] = ACTIONS(4066), + [anon_sym___leave] = ACTIONS(4066), + [anon_sym_not] = ACTIONS(4066), + [anon_sym_compl] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_sizeof] = ACTIONS(4066), + [anon_sym___alignof__] = ACTIONS(4066), + [anon_sym___alignof] = ACTIONS(4066), + [anon_sym__alignof] = ACTIONS(4066), + [anon_sym_alignof] = ACTIONS(4066), + [anon_sym__Alignof] = ACTIONS(4066), + [anon_sym_offsetof] = ACTIONS(4066), + [anon_sym__Generic] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym___asm__] = ACTIONS(4066), + [anon_sym___asm] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4068), + [anon_sym_L_SQUOTE] = ACTIONS(4068), + [anon_sym_u_SQUOTE] = ACTIONS(4068), + [anon_sym_U_SQUOTE] = ACTIONS(4068), + [anon_sym_u8_SQUOTE] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4068), + [anon_sym_L_DQUOTE] = ACTIONS(4068), + [anon_sym_u_DQUOTE] = ACTIONS(4068), + [anon_sym_U_DQUOTE] = ACTIONS(4068), + [anon_sym_u8_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [anon_sym_NULL] = ACTIONS(4066), + [anon_sym_nullptr] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_try] = ACTIONS(4066), + [anon_sym_delete] = ACTIONS(4066), + [anon_sym_throw] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_concept] = ACTIONS(4066), + [anon_sym_co_return] = ACTIONS(4066), + [anon_sym_co_yield] = ACTIONS(4066), + [anon_sym_R_DQUOTE] = ACTIONS(4068), + [anon_sym_LR_DQUOTE] = ACTIONS(4068), + [anon_sym_uR_DQUOTE] = ACTIONS(4068), + [anon_sym_UR_DQUOTE] = ACTIONS(4068), + [anon_sym_u8R_DQUOTE] = ACTIONS(4068), + [anon_sym_co_await] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_requires] = ACTIONS(4066), + [anon_sym_CARET_CARET] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + [sym_this] = ACTIONS(4066), }, - [STATE(1348)] = { - [sym_expression] = STATE(3740), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(802)] = { + [sym_identifier] = ACTIONS(3966), + [aux_sym_preproc_include_token1] = ACTIONS(3966), + [aux_sym_preproc_def_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), + [sym_preproc_directive] = ACTIONS(3966), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3968), + [anon_sym_TILDE] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_AMP_AMP] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3966), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_typedef] = ACTIONS(3966), + [anon_sym_virtual] = ACTIONS(3966), + [anon_sym_extern] = ACTIONS(3966), + [anon_sym___attribute__] = ACTIONS(3966), + [anon_sym___attribute] = ACTIONS(3966), + [anon_sym_using] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), + [anon_sym___declspec] = ACTIONS(3966), + [anon_sym___based] = ACTIONS(3966), + [anon_sym___cdecl] = ACTIONS(3966), + [anon_sym___clrcall] = ACTIONS(3966), + [anon_sym___stdcall] = ACTIONS(3966), + [anon_sym___fastcall] = ACTIONS(3966), + [anon_sym___thiscall] = ACTIONS(3966), + [anon_sym___vectorcall] = ACTIONS(3966), + [anon_sym_LBRACE] = ACTIONS(3968), + [anon_sym_RBRACE] = ACTIONS(3968), + [anon_sym_signed] = ACTIONS(3966), + [anon_sym_unsigned] = ACTIONS(3966), + [anon_sym_long] = ACTIONS(3966), + [anon_sym_short] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_static] = ACTIONS(3966), + [anon_sym_register] = ACTIONS(3966), + [anon_sym_inline] = ACTIONS(3966), + [anon_sym___inline] = ACTIONS(3966), + [anon_sym___inline__] = ACTIONS(3966), + [anon_sym___forceinline] = ACTIONS(3966), + [anon_sym_thread_local] = ACTIONS(3966), + [anon_sym___thread] = ACTIONS(3966), + [anon_sym_const] = ACTIONS(3966), + [anon_sym_constexpr] = ACTIONS(3966), + [anon_sym_volatile] = ACTIONS(3966), + [anon_sym_restrict] = ACTIONS(3966), + [anon_sym___restrict__] = ACTIONS(3966), + [anon_sym__Atomic] = ACTIONS(3966), + [anon_sym__Noreturn] = ACTIONS(3966), + [anon_sym_noreturn] = ACTIONS(3966), + [anon_sym__Nonnull] = ACTIONS(3966), + [anon_sym_mutable] = ACTIONS(3966), + [anon_sym_constinit] = ACTIONS(3966), + [anon_sym_consteval] = ACTIONS(3966), + [anon_sym_alignas] = ACTIONS(3966), + [anon_sym__Alignas] = ACTIONS(3966), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_enum] = ACTIONS(3966), + [anon_sym_class] = ACTIONS(3966), + [anon_sym_struct] = ACTIONS(3966), + [anon_sym_union] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3966), + [anon_sym_switch] = ACTIONS(3966), + [anon_sym_case] = ACTIONS(3966), + [anon_sym_default] = ACTIONS(3966), + [anon_sym_while] = ACTIONS(3966), + [anon_sym_do] = ACTIONS(3966), + [anon_sym_for] = ACTIONS(3966), + [anon_sym_return] = ACTIONS(3966), + [anon_sym_break] = ACTIONS(3966), + [anon_sym_continue] = ACTIONS(3966), + [anon_sym_goto] = ACTIONS(3966), + [anon_sym___try] = ACTIONS(3966), + [anon_sym___leave] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3966), + [anon_sym_compl] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3968), + [anon_sym_PLUS_PLUS] = ACTIONS(3968), + [anon_sym_sizeof] = ACTIONS(3966), + [anon_sym___alignof__] = ACTIONS(3966), + [anon_sym___alignof] = ACTIONS(3966), + [anon_sym__alignof] = ACTIONS(3966), + [anon_sym_alignof] = ACTIONS(3966), + [anon_sym__Alignof] = ACTIONS(3966), + [anon_sym_offsetof] = ACTIONS(3966), + [anon_sym__Generic] = ACTIONS(3966), + [anon_sym_typename] = ACTIONS(3966), + [anon_sym_asm] = ACTIONS(3966), + [anon_sym___asm__] = ACTIONS(3966), + [anon_sym___asm] = ACTIONS(3966), + [sym_number_literal] = ACTIONS(3968), + [anon_sym_L_SQUOTE] = ACTIONS(3968), + [anon_sym_u_SQUOTE] = ACTIONS(3968), + [anon_sym_U_SQUOTE] = ACTIONS(3968), + [anon_sym_u8_SQUOTE] = ACTIONS(3968), + [anon_sym_SQUOTE] = ACTIONS(3968), + [anon_sym_L_DQUOTE] = ACTIONS(3968), + [anon_sym_u_DQUOTE] = ACTIONS(3968), + [anon_sym_U_DQUOTE] = ACTIONS(3968), + [anon_sym_u8_DQUOTE] = ACTIONS(3968), + [anon_sym_DQUOTE] = ACTIONS(3968), + [sym_true] = ACTIONS(3966), + [sym_false] = ACTIONS(3966), + [anon_sym_NULL] = ACTIONS(3966), + [anon_sym_nullptr] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3966), + [anon_sym_decltype] = ACTIONS(3966), + [anon_sym_explicit] = ACTIONS(3966), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(3966), + [anon_sym_try] = ACTIONS(3966), + [anon_sym_delete] = ACTIONS(3966), + [anon_sym_throw] = ACTIONS(3966), + [anon_sym_namespace] = ACTIONS(3966), + [anon_sym_static_assert] = ACTIONS(3966), + [anon_sym_concept] = ACTIONS(3966), + [anon_sym_co_return] = ACTIONS(3966), + [anon_sym_co_yield] = ACTIONS(3966), + [anon_sym_R_DQUOTE] = ACTIONS(3968), + [anon_sym_LR_DQUOTE] = ACTIONS(3968), + [anon_sym_uR_DQUOTE] = ACTIONS(3968), + [anon_sym_UR_DQUOTE] = ACTIONS(3968), + [anon_sym_u8R_DQUOTE] = ACTIONS(3968), + [anon_sym_co_await] = ACTIONS(3966), + [anon_sym_new] = ACTIONS(3966), + [anon_sym_requires] = ACTIONS(3966), + [anon_sym_CARET_CARET] = ACTIONS(3968), + [anon_sym_LBRACK_COLON] = ACTIONS(3968), + [sym_this] = ACTIONS(3966), }, - [STATE(1349)] = { - [sym_expression] = STATE(4200), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(803)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_include_token1] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3970), + [anon_sym_PLUS] = ACTIONS(3970), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym___cdecl] = ACTIONS(3970), + [anon_sym___clrcall] = ACTIONS(3970), + [anon_sym___stdcall] = ACTIONS(3970), + [anon_sym___fastcall] = ACTIONS(3970), + [anon_sym___thiscall] = ACTIONS(3970), + [anon_sym___vectorcall] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_if] = ACTIONS(3970), + [anon_sym_switch] = ACTIONS(3970), + [anon_sym_case] = ACTIONS(3970), + [anon_sym_default] = ACTIONS(3970), + [anon_sym_while] = ACTIONS(3970), + [anon_sym_do] = ACTIONS(3970), + [anon_sym_for] = ACTIONS(3970), + [anon_sym_return] = ACTIONS(3970), + [anon_sym_break] = ACTIONS(3970), + [anon_sym_continue] = ACTIONS(3970), + [anon_sym_goto] = ACTIONS(3970), + [anon_sym___try] = ACTIONS(3970), + [anon_sym___leave] = ACTIONS(3970), + [anon_sym_not] = ACTIONS(3970), + [anon_sym_compl] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(3972), + [anon_sym_PLUS_PLUS] = ACTIONS(3972), + [anon_sym_sizeof] = ACTIONS(3970), + [anon_sym___alignof__] = ACTIONS(3970), + [anon_sym___alignof] = ACTIONS(3970), + [anon_sym__alignof] = ACTIONS(3970), + [anon_sym_alignof] = ACTIONS(3970), + [anon_sym__Alignof] = ACTIONS(3970), + [anon_sym_offsetof] = ACTIONS(3970), + [anon_sym__Generic] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [anon_sym_asm] = ACTIONS(3970), + [anon_sym___asm__] = ACTIONS(3970), + [anon_sym___asm] = ACTIONS(3970), + [sym_number_literal] = ACTIONS(3972), + [anon_sym_L_SQUOTE] = ACTIONS(3972), + [anon_sym_u_SQUOTE] = ACTIONS(3972), + [anon_sym_U_SQUOTE] = ACTIONS(3972), + [anon_sym_u8_SQUOTE] = ACTIONS(3972), + [anon_sym_SQUOTE] = ACTIONS(3972), + [anon_sym_L_DQUOTE] = ACTIONS(3972), + [anon_sym_u_DQUOTE] = ACTIONS(3972), + [anon_sym_U_DQUOTE] = ACTIONS(3972), + [anon_sym_u8_DQUOTE] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(3972), + [sym_true] = ACTIONS(3970), + [sym_false] = ACTIONS(3970), + [anon_sym_NULL] = ACTIONS(3970), + [anon_sym_nullptr] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_try] = ACTIONS(3970), + [anon_sym_delete] = ACTIONS(3970), + [anon_sym_throw] = ACTIONS(3970), + [anon_sym_namespace] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(3970), + [anon_sym_co_return] = ACTIONS(3970), + [anon_sym_co_yield] = ACTIONS(3970), + [anon_sym_R_DQUOTE] = ACTIONS(3972), + [anon_sym_LR_DQUOTE] = ACTIONS(3972), + [anon_sym_uR_DQUOTE] = ACTIONS(3972), + [anon_sym_UR_DQUOTE] = ACTIONS(3972), + [anon_sym_u8R_DQUOTE] = ACTIONS(3972), + [anon_sym_co_await] = ACTIONS(3970), + [anon_sym_new] = ACTIONS(3970), + [anon_sym_requires] = ACTIONS(3970), + [anon_sym_CARET_CARET] = ACTIONS(3972), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [sym_this] = ACTIONS(3970), }, - [STATE(1350)] = { - [sym_expression] = STATE(4201), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(804)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_include_token1] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token2] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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___cdecl] = ACTIONS(4018), + [anon_sym___clrcall] = ACTIONS(4018), + [anon_sym___stdcall] = ACTIONS(4018), + [anon_sym___fastcall] = ACTIONS(4018), + [anon_sym___thiscall] = ACTIONS(4018), + [anon_sym___vectorcall] = 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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [anon_sym_asm] = 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_explicit] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [sym_this] = ACTIONS(4018), }, - [STATE(1351)] = { - [sym_expression] = STATE(4213), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(805)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym___try] = ACTIONS(4180), + [anon_sym___leave] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(1352)] = { - [sym_expression] = STATE(4217), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(806)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_include_token1] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token2] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym___cdecl] = ACTIONS(4022), + [anon_sym___clrcall] = ACTIONS(4022), + [anon_sym___stdcall] = ACTIONS(4022), + [anon_sym___fastcall] = ACTIONS(4022), + [anon_sym___thiscall] = ACTIONS(4022), + [anon_sym___vectorcall] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_case] = ACTIONS(4022), + [anon_sym_default] = ACTIONS(4022), + [anon_sym_while] = ACTIONS(4022), + [anon_sym_do] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym___try] = ACTIONS(4022), + [anon_sym___leave] = ACTIONS(4022), + [anon_sym_not] = ACTIONS(4022), + [anon_sym_compl] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_sizeof] = ACTIONS(4022), + [anon_sym___alignof__] = ACTIONS(4022), + [anon_sym___alignof] = ACTIONS(4022), + [anon_sym__alignof] = ACTIONS(4022), + [anon_sym_alignof] = ACTIONS(4022), + [anon_sym__Alignof] = ACTIONS(4022), + [anon_sym_offsetof] = ACTIONS(4022), + [anon_sym__Generic] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [anon_sym_asm] = ACTIONS(4022), + [anon_sym___asm__] = ACTIONS(4022), + [anon_sym___asm] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4024), + [anon_sym_L_SQUOTE] = ACTIONS(4024), + [anon_sym_u_SQUOTE] = ACTIONS(4024), + [anon_sym_U_SQUOTE] = ACTIONS(4024), + [anon_sym_u8_SQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_L_DQUOTE] = ACTIONS(4024), + [anon_sym_u_DQUOTE] = ACTIONS(4024), + [anon_sym_U_DQUOTE] = ACTIONS(4024), + [anon_sym_u8_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE] = ACTIONS(4024), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [anon_sym_NULL] = ACTIONS(4022), + [anon_sym_nullptr] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4022), + [anon_sym_delete] = ACTIONS(4022), + [anon_sym_throw] = ACTIONS(4022), + [anon_sym_namespace] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_concept] = ACTIONS(4022), + [anon_sym_co_return] = ACTIONS(4022), + [anon_sym_co_yield] = ACTIONS(4022), + [anon_sym_R_DQUOTE] = ACTIONS(4024), + [anon_sym_LR_DQUOTE] = ACTIONS(4024), + [anon_sym_uR_DQUOTE] = ACTIONS(4024), + [anon_sym_UR_DQUOTE] = ACTIONS(4024), + [anon_sym_u8R_DQUOTE] = ACTIONS(4024), + [anon_sym_co_await] = ACTIONS(4022), + [anon_sym_new] = ACTIONS(4022), + [anon_sym_requires] = ACTIONS(4022), + [anon_sym_CARET_CARET] = ACTIONS(4024), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [sym_this] = ACTIONS(4022), }, - [STATE(1353)] = { - [sym_expression] = STATE(4190), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(807)] = { + [sym_identifier] = ACTIONS(3974), + [aux_sym_preproc_include_token1] = ACTIONS(3974), + [aux_sym_preproc_def_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), + [sym_preproc_directive] = ACTIONS(3974), + [anon_sym_LPAREN2] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_TILDE] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym___extension__] = ACTIONS(3974), + [anon_sym_typedef] = ACTIONS(3974), + [anon_sym_virtual] = ACTIONS(3974), + [anon_sym_extern] = ACTIONS(3974), + [anon_sym___attribute__] = ACTIONS(3974), + [anon_sym___attribute] = ACTIONS(3974), + [anon_sym_using] = ACTIONS(3974), + [anon_sym_COLON_COLON] = ACTIONS(3976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), + [anon_sym___declspec] = ACTIONS(3974), + [anon_sym___based] = ACTIONS(3974), + [anon_sym___cdecl] = ACTIONS(3974), + [anon_sym___clrcall] = ACTIONS(3974), + [anon_sym___stdcall] = ACTIONS(3974), + [anon_sym___fastcall] = ACTIONS(3974), + [anon_sym___thiscall] = ACTIONS(3974), + [anon_sym___vectorcall] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_signed] = ACTIONS(3974), + [anon_sym_unsigned] = ACTIONS(3974), + [anon_sym_long] = ACTIONS(3974), + [anon_sym_short] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_static] = ACTIONS(3974), + [anon_sym_register] = ACTIONS(3974), + [anon_sym_inline] = ACTIONS(3974), + [anon_sym___inline] = ACTIONS(3974), + [anon_sym___inline__] = ACTIONS(3974), + [anon_sym___forceinline] = ACTIONS(3974), + [anon_sym_thread_local] = ACTIONS(3974), + [anon_sym___thread] = ACTIONS(3974), + [anon_sym_const] = ACTIONS(3974), + [anon_sym_constexpr] = ACTIONS(3974), + [anon_sym_volatile] = ACTIONS(3974), + [anon_sym_restrict] = ACTIONS(3974), + [anon_sym___restrict__] = ACTIONS(3974), + [anon_sym__Atomic] = ACTIONS(3974), + [anon_sym__Noreturn] = ACTIONS(3974), + [anon_sym_noreturn] = ACTIONS(3974), + [anon_sym__Nonnull] = ACTIONS(3974), + [anon_sym_mutable] = ACTIONS(3974), + [anon_sym_constinit] = ACTIONS(3974), + [anon_sym_consteval] = ACTIONS(3974), + [anon_sym_alignas] = ACTIONS(3974), + [anon_sym__Alignas] = ACTIONS(3974), + [sym_primitive_type] = ACTIONS(3974), + [anon_sym_enum] = ACTIONS(3974), + [anon_sym_class] = ACTIONS(3974), + [anon_sym_struct] = ACTIONS(3974), + [anon_sym_union] = ACTIONS(3974), + [anon_sym_if] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_case] = ACTIONS(3974), + [anon_sym_default] = ACTIONS(3974), + [anon_sym_while] = ACTIONS(3974), + [anon_sym_do] = ACTIONS(3974), + [anon_sym_for] = ACTIONS(3974), + [anon_sym_return] = ACTIONS(3974), + [anon_sym_break] = ACTIONS(3974), + [anon_sym_continue] = ACTIONS(3974), + [anon_sym_goto] = ACTIONS(3974), + [anon_sym___try] = ACTIONS(3974), + [anon_sym___leave] = ACTIONS(3974), + [anon_sym_not] = ACTIONS(3974), + [anon_sym_compl] = ACTIONS(3974), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_sizeof] = ACTIONS(3974), + [anon_sym___alignof__] = ACTIONS(3974), + [anon_sym___alignof] = ACTIONS(3974), + [anon_sym__alignof] = ACTIONS(3974), + [anon_sym_alignof] = ACTIONS(3974), + [anon_sym__Alignof] = ACTIONS(3974), + [anon_sym_offsetof] = ACTIONS(3974), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_typename] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3974), + [anon_sym___asm__] = ACTIONS(3974), + [anon_sym___asm] = ACTIONS(3974), + [sym_number_literal] = ACTIONS(3976), + [anon_sym_L_SQUOTE] = ACTIONS(3976), + [anon_sym_u_SQUOTE] = ACTIONS(3976), + [anon_sym_U_SQUOTE] = ACTIONS(3976), + [anon_sym_u8_SQUOTE] = ACTIONS(3976), + [anon_sym_SQUOTE] = ACTIONS(3976), + [anon_sym_L_DQUOTE] = ACTIONS(3976), + [anon_sym_u_DQUOTE] = ACTIONS(3976), + [anon_sym_U_DQUOTE] = ACTIONS(3976), + [anon_sym_u8_DQUOTE] = ACTIONS(3976), + [anon_sym_DQUOTE] = ACTIONS(3976), + [sym_true] = ACTIONS(3974), + [sym_false] = ACTIONS(3974), + [anon_sym_NULL] = ACTIONS(3974), + [anon_sym_nullptr] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3974), + [anon_sym_decltype] = ACTIONS(3974), + [anon_sym_explicit] = ACTIONS(3974), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(3974), + [anon_sym_try] = ACTIONS(3974), + [anon_sym_delete] = ACTIONS(3974), + [anon_sym_throw] = ACTIONS(3974), + [anon_sym_namespace] = ACTIONS(3974), + [anon_sym_static_assert] = ACTIONS(3974), + [anon_sym_concept] = ACTIONS(3974), + [anon_sym_co_return] = ACTIONS(3974), + [anon_sym_co_yield] = ACTIONS(3974), + [anon_sym_R_DQUOTE] = ACTIONS(3976), + [anon_sym_LR_DQUOTE] = ACTIONS(3976), + [anon_sym_uR_DQUOTE] = ACTIONS(3976), + [anon_sym_UR_DQUOTE] = ACTIONS(3976), + [anon_sym_u8R_DQUOTE] = ACTIONS(3976), + [anon_sym_co_await] = ACTIONS(3974), + [anon_sym_new] = ACTIONS(3974), + [anon_sym_requires] = ACTIONS(3974), + [anon_sym_CARET_CARET] = ACTIONS(3976), + [anon_sym_LBRACK_COLON] = ACTIONS(3976), + [sym_this] = ACTIONS(3974), }, - [STATE(1354)] = { - [sym_expression] = STATE(4161), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(808)] = { + [sym_identifier] = ACTIONS(3978), + [aux_sym_preproc_include_token1] = ACTIONS(3978), + [aux_sym_preproc_def_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), + [sym_preproc_directive] = ACTIONS(3978), + [anon_sym_LPAREN2] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_TILDE] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym___extension__] = ACTIONS(3978), + [anon_sym_typedef] = ACTIONS(3978), + [anon_sym_virtual] = ACTIONS(3978), + [anon_sym_extern] = ACTIONS(3978), + [anon_sym___attribute__] = ACTIONS(3978), + [anon_sym___attribute] = ACTIONS(3978), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), + [anon_sym___declspec] = ACTIONS(3978), + [anon_sym___based] = ACTIONS(3978), + [anon_sym___cdecl] = ACTIONS(3978), + [anon_sym___clrcall] = ACTIONS(3978), + [anon_sym___stdcall] = ACTIONS(3978), + [anon_sym___fastcall] = ACTIONS(3978), + [anon_sym___thiscall] = ACTIONS(3978), + [anon_sym___vectorcall] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_signed] = ACTIONS(3978), + [anon_sym_unsigned] = ACTIONS(3978), + [anon_sym_long] = ACTIONS(3978), + [anon_sym_short] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_static] = ACTIONS(3978), + [anon_sym_register] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym___inline] = ACTIONS(3978), + [anon_sym___inline__] = ACTIONS(3978), + [anon_sym___forceinline] = ACTIONS(3978), + [anon_sym_thread_local] = ACTIONS(3978), + [anon_sym___thread] = ACTIONS(3978), + [anon_sym_const] = ACTIONS(3978), + [anon_sym_constexpr] = ACTIONS(3978), + [anon_sym_volatile] = ACTIONS(3978), + [anon_sym_restrict] = ACTIONS(3978), + [anon_sym___restrict__] = ACTIONS(3978), + [anon_sym__Atomic] = ACTIONS(3978), + [anon_sym__Noreturn] = ACTIONS(3978), + [anon_sym_noreturn] = ACTIONS(3978), + [anon_sym__Nonnull] = ACTIONS(3978), + [anon_sym_mutable] = ACTIONS(3978), + [anon_sym_constinit] = ACTIONS(3978), + [anon_sym_consteval] = ACTIONS(3978), + [anon_sym_alignas] = ACTIONS(3978), + [anon_sym__Alignas] = ACTIONS(3978), + [sym_primitive_type] = ACTIONS(3978), + [anon_sym_enum] = ACTIONS(3978), + [anon_sym_class] = ACTIONS(3978), + [anon_sym_struct] = ACTIONS(3978), + [anon_sym_union] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_case] = ACTIONS(3978), + [anon_sym_default] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_do] = ACTIONS(3978), + [anon_sym_for] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_goto] = ACTIONS(3978), + [anon_sym___try] = ACTIONS(3978), + [anon_sym___leave] = ACTIONS(3978), + [anon_sym_not] = ACTIONS(3978), + [anon_sym_compl] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(3978), + [anon_sym___alignof__] = ACTIONS(3978), + [anon_sym___alignof] = ACTIONS(3978), + [anon_sym__alignof] = ACTIONS(3978), + [anon_sym_alignof] = ACTIONS(3978), + [anon_sym__Alignof] = ACTIONS(3978), + [anon_sym_offsetof] = ACTIONS(3978), + [anon_sym__Generic] = ACTIONS(3978), + [anon_sym_typename] = ACTIONS(3978), + [anon_sym_asm] = ACTIONS(3978), + [anon_sym___asm__] = ACTIONS(3978), + [anon_sym___asm] = ACTIONS(3978), + [sym_number_literal] = ACTIONS(3980), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3980), + [anon_sym_u_DQUOTE] = ACTIONS(3980), + [anon_sym_U_DQUOTE] = ACTIONS(3980), + [anon_sym_u8_DQUOTE] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(3980), + [sym_true] = ACTIONS(3978), + [sym_false] = ACTIONS(3978), + [anon_sym_NULL] = ACTIONS(3978), + [anon_sym_nullptr] = ACTIONS(3978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3978), + [anon_sym_decltype] = ACTIONS(3978), + [anon_sym_explicit] = ACTIONS(3978), + [anon_sym_template] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_delete] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_static_assert] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(3978), + [anon_sym_co_return] = ACTIONS(3978), + [anon_sym_co_yield] = ACTIONS(3978), + [anon_sym_R_DQUOTE] = ACTIONS(3980), + [anon_sym_LR_DQUOTE] = ACTIONS(3980), + [anon_sym_uR_DQUOTE] = ACTIONS(3980), + [anon_sym_UR_DQUOTE] = ACTIONS(3980), + [anon_sym_u8R_DQUOTE] = ACTIONS(3980), + [anon_sym_co_await] = ACTIONS(3978), + [anon_sym_new] = ACTIONS(3978), + [anon_sym_requires] = ACTIONS(3978), + [anon_sym_CARET_CARET] = ACTIONS(3980), + [anon_sym_LBRACK_COLON] = ACTIONS(3980), + [sym_this] = ACTIONS(3978), }, - [STATE(1355)] = { - [sym_expression] = STATE(4163), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(809)] = { + [sym_identifier] = ACTIONS(3982), + [aux_sym_preproc_include_token1] = ACTIONS(3982), + [aux_sym_preproc_def_token1] = ACTIONS(3982), + [aux_sym_preproc_if_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), + [sym_preproc_directive] = ACTIONS(3982), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_TILDE] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_PLUS] = ACTIONS(3982), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym___extension__] = ACTIONS(3982), + [anon_sym_typedef] = ACTIONS(3982), + [anon_sym_virtual] = ACTIONS(3982), + [anon_sym_extern] = ACTIONS(3982), + [anon_sym___attribute__] = ACTIONS(3982), + [anon_sym___attribute] = ACTIONS(3982), + [anon_sym_using] = ACTIONS(3982), + [anon_sym_COLON_COLON] = ACTIONS(3984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), + [anon_sym___declspec] = ACTIONS(3982), + [anon_sym___based] = ACTIONS(3982), + [anon_sym___cdecl] = ACTIONS(3982), + [anon_sym___clrcall] = ACTIONS(3982), + [anon_sym___stdcall] = ACTIONS(3982), + [anon_sym___fastcall] = ACTIONS(3982), + [anon_sym___thiscall] = ACTIONS(3982), + [anon_sym___vectorcall] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_RBRACE] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3982), + [anon_sym_unsigned] = ACTIONS(3982), + [anon_sym_long] = ACTIONS(3982), + [anon_sym_short] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_static] = ACTIONS(3982), + [anon_sym_register] = ACTIONS(3982), + [anon_sym_inline] = ACTIONS(3982), + [anon_sym___inline] = ACTIONS(3982), + [anon_sym___inline__] = ACTIONS(3982), + [anon_sym___forceinline] = ACTIONS(3982), + [anon_sym_thread_local] = ACTIONS(3982), + [anon_sym___thread] = ACTIONS(3982), + [anon_sym_const] = ACTIONS(3982), + [anon_sym_constexpr] = ACTIONS(3982), + [anon_sym_volatile] = ACTIONS(3982), + [anon_sym_restrict] = ACTIONS(3982), + [anon_sym___restrict__] = ACTIONS(3982), + [anon_sym__Atomic] = ACTIONS(3982), + [anon_sym__Noreturn] = ACTIONS(3982), + [anon_sym_noreturn] = ACTIONS(3982), + [anon_sym__Nonnull] = ACTIONS(3982), + [anon_sym_mutable] = ACTIONS(3982), + [anon_sym_constinit] = ACTIONS(3982), + [anon_sym_consteval] = ACTIONS(3982), + [anon_sym_alignas] = ACTIONS(3982), + [anon_sym__Alignas] = ACTIONS(3982), + [sym_primitive_type] = ACTIONS(3982), + [anon_sym_enum] = ACTIONS(3982), + [anon_sym_class] = ACTIONS(3982), + [anon_sym_struct] = ACTIONS(3982), + [anon_sym_union] = ACTIONS(3982), + [anon_sym_if] = ACTIONS(3982), + [anon_sym_switch] = ACTIONS(3982), + [anon_sym_case] = ACTIONS(3982), + [anon_sym_default] = ACTIONS(3982), + [anon_sym_while] = ACTIONS(3982), + [anon_sym_do] = ACTIONS(3982), + [anon_sym_for] = ACTIONS(3982), + [anon_sym_return] = ACTIONS(3982), + [anon_sym_break] = ACTIONS(3982), + [anon_sym_continue] = ACTIONS(3982), + [anon_sym_goto] = ACTIONS(3982), + [anon_sym___try] = ACTIONS(3982), + [anon_sym___leave] = ACTIONS(3982), + [anon_sym_not] = ACTIONS(3982), + [anon_sym_compl] = ACTIONS(3982), + [anon_sym_DASH_DASH] = ACTIONS(3984), + [anon_sym_PLUS_PLUS] = ACTIONS(3984), + [anon_sym_sizeof] = ACTIONS(3982), + [anon_sym___alignof__] = ACTIONS(3982), + [anon_sym___alignof] = ACTIONS(3982), + [anon_sym__alignof] = ACTIONS(3982), + [anon_sym_alignof] = ACTIONS(3982), + [anon_sym__Alignof] = ACTIONS(3982), + [anon_sym_offsetof] = ACTIONS(3982), + [anon_sym__Generic] = ACTIONS(3982), + [anon_sym_typename] = ACTIONS(3982), + [anon_sym_asm] = ACTIONS(3982), + [anon_sym___asm__] = ACTIONS(3982), + [anon_sym___asm] = ACTIONS(3982), + [sym_number_literal] = ACTIONS(3984), + [anon_sym_L_SQUOTE] = ACTIONS(3984), + [anon_sym_u_SQUOTE] = ACTIONS(3984), + [anon_sym_U_SQUOTE] = ACTIONS(3984), + [anon_sym_u8_SQUOTE] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3984), + [anon_sym_L_DQUOTE] = ACTIONS(3984), + [anon_sym_u_DQUOTE] = ACTIONS(3984), + [anon_sym_U_DQUOTE] = ACTIONS(3984), + [anon_sym_u8_DQUOTE] = ACTIONS(3984), + [anon_sym_DQUOTE] = ACTIONS(3984), + [sym_true] = ACTIONS(3982), + [sym_false] = ACTIONS(3982), + [anon_sym_NULL] = ACTIONS(3982), + [anon_sym_nullptr] = ACTIONS(3982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3982), + [anon_sym_decltype] = ACTIONS(3982), + [anon_sym_explicit] = ACTIONS(3982), + [anon_sym_template] = ACTIONS(3982), + [anon_sym_operator] = ACTIONS(3982), + [anon_sym_try] = ACTIONS(3982), + [anon_sym_delete] = ACTIONS(3982), + [anon_sym_throw] = ACTIONS(3982), + [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_static_assert] = ACTIONS(3982), + [anon_sym_concept] = ACTIONS(3982), + [anon_sym_co_return] = ACTIONS(3982), + [anon_sym_co_yield] = ACTIONS(3982), + [anon_sym_R_DQUOTE] = ACTIONS(3984), + [anon_sym_LR_DQUOTE] = ACTIONS(3984), + [anon_sym_uR_DQUOTE] = ACTIONS(3984), + [anon_sym_UR_DQUOTE] = ACTIONS(3984), + [anon_sym_u8R_DQUOTE] = ACTIONS(3984), + [anon_sym_co_await] = ACTIONS(3982), + [anon_sym_new] = ACTIONS(3982), + [anon_sym_requires] = ACTIONS(3982), + [anon_sym_CARET_CARET] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3984), + [sym_this] = ACTIONS(3982), }, - [STATE(1356)] = { - [sym_expression] = STATE(4165), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(810)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_include_token1] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token2] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym___cdecl] = ACTIONS(4026), + [anon_sym___clrcall] = ACTIONS(4026), + [anon_sym___stdcall] = ACTIONS(4026), + [anon_sym___fastcall] = ACTIONS(4026), + [anon_sym___thiscall] = ACTIONS(4026), + [anon_sym___vectorcall] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_case] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_goto] = ACTIONS(4026), + [anon_sym___try] = ACTIONS(4026), + [anon_sym___leave] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_compl] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4026), + [anon_sym___alignof__] = ACTIONS(4026), + [anon_sym___alignof] = ACTIONS(4026), + [anon_sym__alignof] = ACTIONS(4026), + [anon_sym_alignof] = ACTIONS(4026), + [anon_sym__Alignof] = ACTIONS(4026), + [anon_sym_offsetof] = ACTIONS(4026), + [anon_sym__Generic] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [anon_sym_asm] = ACTIONS(4026), + [anon_sym___asm__] = ACTIONS(4026), + [anon_sym___asm] = ACTIONS(4026), + [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(4026), + [sym_false] = ACTIONS(4026), + [anon_sym_NULL] = ACTIONS(4026), + [anon_sym_nullptr] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_delete] = ACTIONS(4026), + [anon_sym_throw] = ACTIONS(4026), + [anon_sym_namespace] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_concept] = ACTIONS(4026), + [anon_sym_co_return] = ACTIONS(4026), + [anon_sym_co_yield] = ACTIONS(4026), + [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(4026), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_requires] = ACTIONS(4026), + [anon_sym_CARET_CARET] = ACTIONS(4028), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [sym_this] = ACTIONS(4026), }, - [STATE(1357)] = { - [sym_expression] = STATE(4171), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(811)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym___cdecl] = ACTIONS(4115), + [anon_sym___clrcall] = ACTIONS(4115), + [anon_sym___stdcall] = ACTIONS(4115), + [anon_sym___fastcall] = ACTIONS(4115), + [anon_sym___thiscall] = ACTIONS(4115), + [anon_sym___vectorcall] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_case] = ACTIONS(4115), + [anon_sym_default] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [anon_sym___try] = ACTIONS(4115), + [anon_sym___leave] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_compl] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym___alignof__] = ACTIONS(4115), + [anon_sym___alignof] = ACTIONS(4115), + [anon_sym__alignof] = ACTIONS(4115), + [anon_sym_alignof] = ACTIONS(4115), + [anon_sym__Alignof] = ACTIONS(4115), + [anon_sym_offsetof] = ACTIONS(4115), + [anon_sym__Generic] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_asm] = ACTIONS(4115), + [anon_sym___asm__] = ACTIONS(4115), + [anon_sym___asm] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_L_SQUOTE] = ACTIONS(4117), + [anon_sym_u_SQUOTE] = ACTIONS(4117), + [anon_sym_U_SQUOTE] = ACTIONS(4117), + [anon_sym_u8_SQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [anon_sym_NULL] = ACTIONS(4115), + [anon_sym_nullptr] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_throw] = ACTIONS(4115), + [anon_sym_namespace] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_concept] = ACTIONS(4115), + [anon_sym_co_return] = ACTIONS(4115), + [anon_sym_co_yield] = ACTIONS(4115), + [anon_sym_R_DQUOTE] = ACTIONS(4117), + [anon_sym_LR_DQUOTE] = ACTIONS(4117), + [anon_sym_uR_DQUOTE] = ACTIONS(4117), + [anon_sym_UR_DQUOTE] = ACTIONS(4117), + [anon_sym_u8R_DQUOTE] = ACTIONS(4117), + [anon_sym_co_await] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_requires] = ACTIONS(4115), + [anon_sym_CARET_CARET] = ACTIONS(4117), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + [sym_this] = ACTIONS(4115), }, - [STATE(1358)] = { - [sym_expression] = STATE(4214), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(812)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_include_token1] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token2] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym___cdecl] = ACTIONS(4062), + [anon_sym___clrcall] = ACTIONS(4062), + [anon_sym___stdcall] = ACTIONS(4062), + [anon_sym___fastcall] = ACTIONS(4062), + [anon_sym___thiscall] = ACTIONS(4062), + [anon_sym___vectorcall] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_case] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym___try] = ACTIONS(4062), + [anon_sym___leave] = ACTIONS(4062), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4062), + [anon_sym___alignof__] = ACTIONS(4062), + [anon_sym___alignof] = ACTIONS(4062), + [anon_sym__alignof] = ACTIONS(4062), + [anon_sym_alignof] = ACTIONS(4062), + [anon_sym__Alignof] = ACTIONS(4062), + [anon_sym_offsetof] = ACTIONS(4062), + [anon_sym__Generic] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym___asm__] = ACTIONS(4062), + [anon_sym___asm] = ACTIONS(4062), + [sym_number_literal] = ACTIONS(4064), + [anon_sym_L_SQUOTE] = ACTIONS(4064), + [anon_sym_u_SQUOTE] = ACTIONS(4064), + [anon_sym_U_SQUOTE] = ACTIONS(4064), + [anon_sym_u8_SQUOTE] = ACTIONS(4064), + [anon_sym_SQUOTE] = ACTIONS(4064), + [anon_sym_L_DQUOTE] = ACTIONS(4064), + [anon_sym_u_DQUOTE] = ACTIONS(4064), + [anon_sym_U_DQUOTE] = ACTIONS(4064), + [anon_sym_u8_DQUOTE] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [anon_sym_NULL] = ACTIONS(4062), + [anon_sym_nullptr] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_delete] = ACTIONS(4062), + [anon_sym_throw] = ACTIONS(4062), + [anon_sym_namespace] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_concept] = ACTIONS(4062), + [anon_sym_co_return] = ACTIONS(4062), + [anon_sym_co_yield] = ACTIONS(4062), + [anon_sym_R_DQUOTE] = ACTIONS(4064), + [anon_sym_LR_DQUOTE] = ACTIONS(4064), + [anon_sym_uR_DQUOTE] = ACTIONS(4064), + [anon_sym_UR_DQUOTE] = ACTIONS(4064), + [anon_sym_u8R_DQUOTE] = ACTIONS(4064), + [anon_sym_co_await] = ACTIONS(4062), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_requires] = ACTIONS(4062), + [anon_sym_CARET_CARET] = ACTIONS(4064), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + [sym_this] = ACTIONS(4062), }, - [STATE(1359)] = { - [sym_expression] = STATE(4625), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(813)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1360)] = { - [sym_expression] = STATE(3116), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(814)] = { + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token2] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym___try] = ACTIONS(4188), + [anon_sym___leave] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(1361)] = { - [sym_expression] = STATE(2936), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(815)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1362)] = { - [sym_expression] = STATE(4160), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(816)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1363)] = { - [sym_expression] = STATE(3163), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(4972), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(817)] = { + [sym_identifier] = ACTIONS(4082), + [aux_sym_preproc_include_token1] = ACTIONS(4082), + [aux_sym_preproc_def_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token2] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), + [sym_preproc_directive] = ACTIONS(4082), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_typedef] = ACTIONS(4082), + [anon_sym_virtual] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_using] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym___based] = ACTIONS(4082), + [anon_sym___cdecl] = ACTIONS(4082), + [anon_sym___clrcall] = ACTIONS(4082), + [anon_sym___stdcall] = ACTIONS(4082), + [anon_sym___fastcall] = ACTIONS(4082), + [anon_sym___thiscall] = ACTIONS(4082), + [anon_sym___vectorcall] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_mutable] = ACTIONS(4082), + [anon_sym_constinit] = ACTIONS(4082), + [anon_sym_consteval] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_class] = ACTIONS(4082), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(4082), + [anon_sym_case] = ACTIONS(4082), + [anon_sym_default] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_do] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_goto] = ACTIONS(4082), + [anon_sym___try] = ACTIONS(4082), + [anon_sym___leave] = ACTIONS(4082), + [anon_sym_not] = ACTIONS(4082), + [anon_sym_compl] = ACTIONS(4082), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_sizeof] = ACTIONS(4082), + [anon_sym___alignof__] = ACTIONS(4082), + [anon_sym___alignof] = ACTIONS(4082), + [anon_sym__alignof] = ACTIONS(4082), + [anon_sym_alignof] = ACTIONS(4082), + [anon_sym__Alignof] = ACTIONS(4082), + [anon_sym_offsetof] = ACTIONS(4082), + [anon_sym__Generic] = ACTIONS(4082), + [anon_sym_typename] = ACTIONS(4082), + [anon_sym_asm] = ACTIONS(4082), + [anon_sym___asm__] = ACTIONS(4082), + [anon_sym___asm] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4084), + [anon_sym_L_SQUOTE] = ACTIONS(4084), + [anon_sym_u_SQUOTE] = ACTIONS(4084), + [anon_sym_U_SQUOTE] = ACTIONS(4084), + [anon_sym_u8_SQUOTE] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4084), + [anon_sym_L_DQUOTE] = ACTIONS(4084), + [anon_sym_u_DQUOTE] = ACTIONS(4084), + [anon_sym_U_DQUOTE] = ACTIONS(4084), + [anon_sym_u8_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [sym_true] = ACTIONS(4082), + [sym_false] = ACTIONS(4082), + [anon_sym_NULL] = ACTIONS(4082), + [anon_sym_nullptr] = ACTIONS(4082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4082), + [anon_sym_decltype] = ACTIONS(4082), + [anon_sym_explicit] = ACTIONS(4082), + [anon_sym_template] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_delete] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_static_assert] = ACTIONS(4082), + [anon_sym_concept] = ACTIONS(4082), + [anon_sym_co_return] = ACTIONS(4082), + [anon_sym_co_yield] = ACTIONS(4082), + [anon_sym_R_DQUOTE] = ACTIONS(4084), + [anon_sym_LR_DQUOTE] = ACTIONS(4084), + [anon_sym_uR_DQUOTE] = ACTIONS(4084), + [anon_sym_UR_DQUOTE] = ACTIONS(4084), + [anon_sym_u8R_DQUOTE] = ACTIONS(4084), + [anon_sym_co_await] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4082), + [anon_sym_requires] = ACTIONS(4082), + [anon_sym_CARET_CARET] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4084), + [sym_this] = ACTIONS(4082), }, - [STATE(1364)] = { - [sym_expression] = STATE(4642), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(818)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4141), + [anon_sym_L_SQUOTE] = ACTIONS(4141), + [anon_sym_u_SQUOTE] = ACTIONS(4141), + [anon_sym_U_SQUOTE] = ACTIONS(4141), + [anon_sym_u8_SQUOTE] = ACTIONS(4141), + [anon_sym_SQUOTE] = ACTIONS(4141), + [anon_sym_L_DQUOTE] = ACTIONS(4141), + [anon_sym_u_DQUOTE] = ACTIONS(4141), + [anon_sym_U_DQUOTE] = ACTIONS(4141), + [anon_sym_u8_DQUOTE] = ACTIONS(4141), + [anon_sym_DQUOTE] = ACTIONS(4141), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4141), + [anon_sym_LR_DQUOTE] = ACTIONS(4141), + [anon_sym_uR_DQUOTE] = ACTIONS(4141), + [anon_sym_UR_DQUOTE] = ACTIONS(4141), + [anon_sym_u8R_DQUOTE] = ACTIONS(4141), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4141), + [anon_sym_LBRACK_COLON] = ACTIONS(4141), + [sym_this] = ACTIONS(4138), }, - [STATE(1365)] = { - [sym_expression] = STATE(4595), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(819)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_include_token1] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token2] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym___cdecl] = ACTIONS(4074), + [anon_sym___clrcall] = ACTIONS(4074), + [anon_sym___stdcall] = ACTIONS(4074), + [anon_sym___fastcall] = ACTIONS(4074), + [anon_sym___thiscall] = ACTIONS(4074), + [anon_sym___vectorcall] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_if] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_case] = ACTIONS(4074), + [anon_sym_default] = ACTIONS(4074), + [anon_sym_while] = ACTIONS(4074), + [anon_sym_do] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4074), + [anon_sym_break] = ACTIONS(4074), + [anon_sym_continue] = ACTIONS(4074), + [anon_sym_goto] = ACTIONS(4074), + [anon_sym___try] = ACTIONS(4074), + [anon_sym___leave] = ACTIONS(4074), + [anon_sym_not] = ACTIONS(4074), + [anon_sym_compl] = ACTIONS(4074), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_sizeof] = ACTIONS(4074), + [anon_sym___alignof__] = ACTIONS(4074), + [anon_sym___alignof] = ACTIONS(4074), + [anon_sym__alignof] = ACTIONS(4074), + [anon_sym_alignof] = ACTIONS(4074), + [anon_sym__Alignof] = ACTIONS(4074), + [anon_sym_offsetof] = ACTIONS(4074), + [anon_sym__Generic] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [anon_sym_asm] = ACTIONS(4074), + [anon_sym___asm__] = ACTIONS(4074), + [anon_sym___asm] = ACTIONS(4074), + [sym_number_literal] = ACTIONS(4076), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym_true] = ACTIONS(4074), + [sym_false] = ACTIONS(4074), + [anon_sym_NULL] = ACTIONS(4074), + [anon_sym_nullptr] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_try] = ACTIONS(4074), + [anon_sym_delete] = ACTIONS(4074), + [anon_sym_throw] = ACTIONS(4074), + [anon_sym_namespace] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_concept] = ACTIONS(4074), + [anon_sym_co_return] = ACTIONS(4074), + [anon_sym_co_yield] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(4076), + [anon_sym_LR_DQUOTE] = ACTIONS(4076), + [anon_sym_uR_DQUOTE] = ACTIONS(4076), + [anon_sym_UR_DQUOTE] = ACTIONS(4076), + [anon_sym_u8R_DQUOTE] = ACTIONS(4076), + [anon_sym_co_await] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4074), + [anon_sym_requires] = ACTIONS(4074), + [anon_sym_CARET_CARET] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + [sym_this] = ACTIONS(4074), }, - [STATE(1366)] = { - [sym_expression] = STATE(4829), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(820)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_include_token1] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token2] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym___cdecl] = ACTIONS(4078), + [anon_sym___clrcall] = ACTIONS(4078), + [anon_sym___stdcall] = ACTIONS(4078), + [anon_sym___fastcall] = ACTIONS(4078), + [anon_sym___thiscall] = ACTIONS(4078), + [anon_sym___vectorcall] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_if] = ACTIONS(4078), + [anon_sym_switch] = ACTIONS(4078), + [anon_sym_case] = ACTIONS(4078), + [anon_sym_default] = ACTIONS(4078), + [anon_sym_while] = ACTIONS(4078), + [anon_sym_do] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4078), + [anon_sym_break] = ACTIONS(4078), + [anon_sym_continue] = ACTIONS(4078), + [anon_sym_goto] = ACTIONS(4078), + [anon_sym___try] = ACTIONS(4078), + [anon_sym___leave] = ACTIONS(4078), + [anon_sym_not] = ACTIONS(4078), + [anon_sym_compl] = ACTIONS(4078), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_sizeof] = ACTIONS(4078), + [anon_sym___alignof__] = ACTIONS(4078), + [anon_sym___alignof] = ACTIONS(4078), + [anon_sym__alignof] = ACTIONS(4078), + [anon_sym_alignof] = ACTIONS(4078), + [anon_sym__Alignof] = ACTIONS(4078), + [anon_sym_offsetof] = ACTIONS(4078), + [anon_sym__Generic] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [anon_sym_asm] = ACTIONS(4078), + [anon_sym___asm__] = ACTIONS(4078), + [anon_sym___asm] = ACTIONS(4078), + [sym_number_literal] = ACTIONS(4080), + [anon_sym_L_SQUOTE] = ACTIONS(4080), + [anon_sym_u_SQUOTE] = ACTIONS(4080), + [anon_sym_U_SQUOTE] = ACTIONS(4080), + [anon_sym_u8_SQUOTE] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4080), + [anon_sym_L_DQUOTE] = ACTIONS(4080), + [anon_sym_u_DQUOTE] = ACTIONS(4080), + [anon_sym_U_DQUOTE] = ACTIONS(4080), + [anon_sym_u8_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [sym_true] = ACTIONS(4078), + [sym_false] = ACTIONS(4078), + [anon_sym_NULL] = ACTIONS(4078), + [anon_sym_nullptr] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_try] = ACTIONS(4078), + [anon_sym_delete] = ACTIONS(4078), + [anon_sym_throw] = ACTIONS(4078), + [anon_sym_namespace] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_concept] = ACTIONS(4078), + [anon_sym_co_return] = ACTIONS(4078), + [anon_sym_co_yield] = ACTIONS(4078), + [anon_sym_R_DQUOTE] = ACTIONS(4080), + [anon_sym_LR_DQUOTE] = ACTIONS(4080), + [anon_sym_uR_DQUOTE] = ACTIONS(4080), + [anon_sym_UR_DQUOTE] = ACTIONS(4080), + [anon_sym_u8R_DQUOTE] = ACTIONS(4080), + [anon_sym_co_await] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4078), + [anon_sym_requires] = ACTIONS(4078), + [anon_sym_CARET_CARET] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + [sym_this] = ACTIONS(4078), }, - [STATE(1367)] = { - [sym_expression] = STATE(3290), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1368)] = { - [sym_expression] = STATE(3196), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1369)] = { - [sym_expression] = STATE(3197), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1370)] = { - [sym_expression] = STATE(3198), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1371)] = { - [sym_expression] = STATE(3199), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1372)] = { - [sym_expression] = STATE(3200), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1373)] = { - [sym_expression] = STATE(3201), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1374)] = { - [sym_expression] = STATE(3202), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1375)] = { - [sym_expression] = STATE(3203), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1376)] = { - [sym_expression] = STATE(3205), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1377)] = { - [sym_expression] = STATE(3206), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), - }, - [STATE(1378)] = { - [sym_expression] = STATE(2832), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(4974), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(1379)] = { - [sym_expression] = STATE(2350), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(1380)] = { - [sym_expression] = STATE(4631), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(1381)] = { - [sym_expression] = STATE(4735), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(821)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1382)] = { - [sym_expression] = STATE(4597), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(822)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_include_token1] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token2] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym___cdecl] = ACTIONS(4090), + [anon_sym___clrcall] = ACTIONS(4090), + [anon_sym___stdcall] = ACTIONS(4090), + [anon_sym___fastcall] = ACTIONS(4090), + [anon_sym___thiscall] = ACTIONS(4090), + [anon_sym___vectorcall] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_case] = ACTIONS(4090), + [anon_sym_default] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_goto] = ACTIONS(4090), + [anon_sym___try] = ACTIONS(4090), + [anon_sym___leave] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_compl] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_sizeof] = ACTIONS(4090), + [anon_sym___alignof__] = ACTIONS(4090), + [anon_sym___alignof] = ACTIONS(4090), + [anon_sym__alignof] = ACTIONS(4090), + [anon_sym_alignof] = ACTIONS(4090), + [anon_sym__Alignof] = ACTIONS(4090), + [anon_sym_offsetof] = ACTIONS(4090), + [anon_sym__Generic] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [anon_sym_asm] = ACTIONS(4090), + [anon_sym___asm__] = ACTIONS(4090), + [anon_sym___asm] = ACTIONS(4090), + [sym_number_literal] = ACTIONS(4092), + [anon_sym_L_SQUOTE] = ACTIONS(4092), + [anon_sym_u_SQUOTE] = ACTIONS(4092), + [anon_sym_U_SQUOTE] = ACTIONS(4092), + [anon_sym_u8_SQUOTE] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [sym_true] = ACTIONS(4090), + [sym_false] = ACTIONS(4090), + [anon_sym_NULL] = ACTIONS(4090), + [anon_sym_nullptr] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_delete] = ACTIONS(4090), + [anon_sym_throw] = ACTIONS(4090), + [anon_sym_namespace] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_concept] = ACTIONS(4090), + [anon_sym_co_return] = ACTIONS(4090), + [anon_sym_co_yield] = ACTIONS(4090), + [anon_sym_R_DQUOTE] = ACTIONS(4092), + [anon_sym_LR_DQUOTE] = ACTIONS(4092), + [anon_sym_uR_DQUOTE] = ACTIONS(4092), + [anon_sym_UR_DQUOTE] = ACTIONS(4092), + [anon_sym_u8R_DQUOTE] = ACTIONS(4092), + [anon_sym_co_await] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4090), + [anon_sym_requires] = ACTIONS(4090), + [anon_sym_CARET_CARET] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + [sym_this] = ACTIONS(4090), }, - [STATE(1383)] = { - [sym_expression] = STATE(4349), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(823)] = { + [sym_identifier] = ACTIONS(4030), + [aux_sym_preproc_include_token1] = ACTIONS(4030), + [aux_sym_preproc_def_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token2] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), + [sym_preproc_directive] = ACTIONS(4030), + [anon_sym_LPAREN2] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym___extension__] = ACTIONS(4030), + [anon_sym_typedef] = ACTIONS(4030), + [anon_sym_virtual] = ACTIONS(4030), + [anon_sym_extern] = ACTIONS(4030), + [anon_sym___attribute__] = ACTIONS(4030), + [anon_sym___attribute] = ACTIONS(4030), + [anon_sym_using] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), + [anon_sym___declspec] = ACTIONS(4030), + [anon_sym___based] = ACTIONS(4030), + [anon_sym___cdecl] = ACTIONS(4030), + [anon_sym___clrcall] = ACTIONS(4030), + [anon_sym___stdcall] = ACTIONS(4030), + [anon_sym___fastcall] = ACTIONS(4030), + [anon_sym___thiscall] = ACTIONS(4030), + [anon_sym___vectorcall] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_signed] = ACTIONS(4030), + [anon_sym_unsigned] = ACTIONS(4030), + [anon_sym_long] = ACTIONS(4030), + [anon_sym_short] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_static] = ACTIONS(4030), + [anon_sym_register] = ACTIONS(4030), + [anon_sym_inline] = ACTIONS(4030), + [anon_sym___inline] = ACTIONS(4030), + [anon_sym___inline__] = ACTIONS(4030), + [anon_sym___forceinline] = ACTIONS(4030), + [anon_sym_thread_local] = ACTIONS(4030), + [anon_sym___thread] = ACTIONS(4030), + [anon_sym_const] = ACTIONS(4030), + [anon_sym_constexpr] = ACTIONS(4030), + [anon_sym_volatile] = ACTIONS(4030), + [anon_sym_restrict] = ACTIONS(4030), + [anon_sym___restrict__] = ACTIONS(4030), + [anon_sym__Atomic] = ACTIONS(4030), + [anon_sym__Noreturn] = ACTIONS(4030), + [anon_sym_noreturn] = ACTIONS(4030), + [anon_sym__Nonnull] = ACTIONS(4030), + [anon_sym_mutable] = ACTIONS(4030), + [anon_sym_constinit] = ACTIONS(4030), + [anon_sym_consteval] = ACTIONS(4030), + [anon_sym_alignas] = ACTIONS(4030), + [anon_sym__Alignas] = ACTIONS(4030), + [sym_primitive_type] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(4030), + [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(4032), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [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_typename] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [anon_sym___asm] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4032), + [anon_sym_L_SQUOTE] = ACTIONS(4032), + [anon_sym_u_SQUOTE] = ACTIONS(4032), + [anon_sym_U_SQUOTE] = ACTIONS(4032), + [anon_sym_u8_SQUOTE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(4032), + [anon_sym_L_DQUOTE] = ACTIONS(4032), + [anon_sym_u_DQUOTE] = ACTIONS(4032), + [anon_sym_U_DQUOTE] = ACTIONS(4032), + [anon_sym_u8_DQUOTE] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [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(4030), + [anon_sym_decltype] = ACTIONS(4030), + [anon_sym_explicit] = ACTIONS(4030), + [anon_sym_template] = ACTIONS(4030), + [anon_sym_operator] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_namespace] = ACTIONS(4030), + [anon_sym_static_assert] = ACTIONS(4030), + [anon_sym_concept] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4032), + [anon_sym_LR_DQUOTE] = ACTIONS(4032), + [anon_sym_uR_DQUOTE] = ACTIONS(4032), + [anon_sym_UR_DQUOTE] = ACTIONS(4032), + [anon_sym_u8R_DQUOTE] = ACTIONS(4032), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [anon_sym_CARET_CARET] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4032), + [sym_this] = ACTIONS(4030), }, - [STATE(1384)] = { - [sym_expression] = STATE(4660), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(824)] = { + [sym_identifier] = ACTIONS(3986), + [aux_sym_preproc_include_token1] = ACTIONS(3986), + [aux_sym_preproc_def_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), + [sym_preproc_directive] = ACTIONS(3986), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym___extension__] = ACTIONS(3986), + [anon_sym_typedef] = ACTIONS(3986), + [anon_sym_virtual] = ACTIONS(3986), + [anon_sym_extern] = ACTIONS(3986), + [anon_sym___attribute__] = ACTIONS(3986), + [anon_sym___attribute] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3986), + [anon_sym_COLON_COLON] = ACTIONS(3988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), + [anon_sym___declspec] = ACTIONS(3986), + [anon_sym___based] = ACTIONS(3986), + [anon_sym___cdecl] = ACTIONS(3986), + [anon_sym___clrcall] = ACTIONS(3986), + [anon_sym___stdcall] = ACTIONS(3986), + [anon_sym___fastcall] = ACTIONS(3986), + [anon_sym___thiscall] = ACTIONS(3986), + [anon_sym___vectorcall] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3986), + [anon_sym_unsigned] = ACTIONS(3986), + [anon_sym_long] = ACTIONS(3986), + [anon_sym_short] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_static] = ACTIONS(3986), + [anon_sym_register] = ACTIONS(3986), + [anon_sym_inline] = ACTIONS(3986), + [anon_sym___inline] = ACTIONS(3986), + [anon_sym___inline__] = ACTIONS(3986), + [anon_sym___forceinline] = ACTIONS(3986), + [anon_sym_thread_local] = ACTIONS(3986), + [anon_sym___thread] = ACTIONS(3986), + [anon_sym_const] = ACTIONS(3986), + [anon_sym_constexpr] = ACTIONS(3986), + [anon_sym_volatile] = ACTIONS(3986), + [anon_sym_restrict] = ACTIONS(3986), + [anon_sym___restrict__] = ACTIONS(3986), + [anon_sym__Atomic] = ACTIONS(3986), + [anon_sym__Noreturn] = ACTIONS(3986), + [anon_sym_noreturn] = ACTIONS(3986), + [anon_sym__Nonnull] = ACTIONS(3986), + [anon_sym_mutable] = ACTIONS(3986), + [anon_sym_constinit] = ACTIONS(3986), + [anon_sym_consteval] = ACTIONS(3986), + [anon_sym_alignas] = ACTIONS(3986), + [anon_sym__Alignas] = ACTIONS(3986), + [sym_primitive_type] = ACTIONS(3986), + [anon_sym_enum] = ACTIONS(3986), + [anon_sym_class] = ACTIONS(3986), + [anon_sym_struct] = ACTIONS(3986), + [anon_sym_union] = ACTIONS(3986), + [anon_sym_if] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_case] = ACTIONS(3986), + [anon_sym_default] = ACTIONS(3986), + [anon_sym_while] = ACTIONS(3986), + [anon_sym_do] = ACTIONS(3986), + [anon_sym_for] = ACTIONS(3986), + [anon_sym_return] = ACTIONS(3986), + [anon_sym_break] = ACTIONS(3986), + [anon_sym_continue] = ACTIONS(3986), + [anon_sym_goto] = ACTIONS(3986), + [anon_sym___try] = ACTIONS(3986), + [anon_sym___leave] = ACTIONS(3986), + [anon_sym_not] = ACTIONS(3986), + [anon_sym_compl] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3988), + [anon_sym_sizeof] = ACTIONS(3986), + [anon_sym___alignof__] = ACTIONS(3986), + [anon_sym___alignof] = ACTIONS(3986), + [anon_sym__alignof] = ACTIONS(3986), + [anon_sym_alignof] = ACTIONS(3986), + [anon_sym__Alignof] = ACTIONS(3986), + [anon_sym_offsetof] = ACTIONS(3986), + [anon_sym__Generic] = ACTIONS(3986), + [anon_sym_typename] = ACTIONS(3986), + [anon_sym_asm] = ACTIONS(3986), + [anon_sym___asm__] = ACTIONS(3986), + [anon_sym___asm] = ACTIONS(3986), + [sym_number_literal] = ACTIONS(3988), + [anon_sym_L_SQUOTE] = ACTIONS(3988), + [anon_sym_u_SQUOTE] = ACTIONS(3988), + [anon_sym_U_SQUOTE] = ACTIONS(3988), + [anon_sym_u8_SQUOTE] = ACTIONS(3988), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_L_DQUOTE] = ACTIONS(3988), + [anon_sym_u_DQUOTE] = ACTIONS(3988), + [anon_sym_U_DQUOTE] = ACTIONS(3988), + [anon_sym_u8_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE] = ACTIONS(3988), + [sym_true] = ACTIONS(3986), + [sym_false] = ACTIONS(3986), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3986), + [anon_sym_decltype] = ACTIONS(3986), + [anon_sym_explicit] = ACTIONS(3986), + [anon_sym_template] = ACTIONS(3986), + [anon_sym_operator] = ACTIONS(3986), + [anon_sym_try] = ACTIONS(3986), + [anon_sym_delete] = ACTIONS(3986), + [anon_sym_throw] = ACTIONS(3986), + [anon_sym_namespace] = ACTIONS(3986), + [anon_sym_static_assert] = ACTIONS(3986), + [anon_sym_concept] = ACTIONS(3986), + [anon_sym_co_return] = ACTIONS(3986), + [anon_sym_co_yield] = ACTIONS(3986), + [anon_sym_R_DQUOTE] = ACTIONS(3988), + [anon_sym_LR_DQUOTE] = ACTIONS(3988), + [anon_sym_uR_DQUOTE] = ACTIONS(3988), + [anon_sym_UR_DQUOTE] = ACTIONS(3988), + [anon_sym_u8R_DQUOTE] = ACTIONS(3988), + [anon_sym_co_await] = ACTIONS(3986), + [anon_sym_new] = ACTIONS(3986), + [anon_sym_requires] = ACTIONS(3986), + [anon_sym_CARET_CARET] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3988), + [sym_this] = ACTIONS(3986), }, - [STATE(1385)] = { - [sym_expression] = STATE(2334), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(825)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_include_token1] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3990), + [anon_sym_PLUS] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym___cdecl] = ACTIONS(3990), + [anon_sym___clrcall] = ACTIONS(3990), + [anon_sym___stdcall] = ACTIONS(3990), + [anon_sym___fastcall] = ACTIONS(3990), + [anon_sym___thiscall] = ACTIONS(3990), + [anon_sym___vectorcall] = ACTIONS(3990), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_if] = ACTIONS(3990), + [anon_sym_switch] = ACTIONS(3990), + [anon_sym_case] = ACTIONS(3990), + [anon_sym_default] = ACTIONS(3990), + [anon_sym_while] = ACTIONS(3990), + [anon_sym_do] = ACTIONS(3990), + [anon_sym_for] = ACTIONS(3990), + [anon_sym_return] = ACTIONS(3990), + [anon_sym_break] = ACTIONS(3990), + [anon_sym_continue] = ACTIONS(3990), + [anon_sym_goto] = ACTIONS(3990), + [anon_sym___try] = ACTIONS(3990), + [anon_sym___leave] = ACTIONS(3990), + [anon_sym_not] = ACTIONS(3990), + [anon_sym_compl] = ACTIONS(3990), + [anon_sym_DASH_DASH] = ACTIONS(3992), + [anon_sym_PLUS_PLUS] = ACTIONS(3992), + [anon_sym_sizeof] = ACTIONS(3990), + [anon_sym___alignof__] = ACTIONS(3990), + [anon_sym___alignof] = ACTIONS(3990), + [anon_sym__alignof] = ACTIONS(3990), + [anon_sym_alignof] = ACTIONS(3990), + [anon_sym__Alignof] = ACTIONS(3990), + [anon_sym_offsetof] = ACTIONS(3990), + [anon_sym__Generic] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [anon_sym_asm] = ACTIONS(3990), + [anon_sym___asm__] = ACTIONS(3990), + [anon_sym___asm] = ACTIONS(3990), + [sym_number_literal] = ACTIONS(3992), + [anon_sym_L_SQUOTE] = ACTIONS(3992), + [anon_sym_u_SQUOTE] = ACTIONS(3992), + [anon_sym_U_SQUOTE] = ACTIONS(3992), + [anon_sym_u8_SQUOTE] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_L_DQUOTE] = ACTIONS(3992), + [anon_sym_u_DQUOTE] = ACTIONS(3992), + [anon_sym_U_DQUOTE] = ACTIONS(3992), + [anon_sym_u8_DQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [sym_true] = ACTIONS(3990), + [sym_false] = ACTIONS(3990), + [anon_sym_NULL] = ACTIONS(3990), + [anon_sym_nullptr] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_try] = ACTIONS(3990), + [anon_sym_delete] = ACTIONS(3990), + [anon_sym_throw] = ACTIONS(3990), + [anon_sym_namespace] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3990), + [anon_sym_co_return] = ACTIONS(3990), + [anon_sym_co_yield] = ACTIONS(3990), + [anon_sym_R_DQUOTE] = ACTIONS(3992), + [anon_sym_LR_DQUOTE] = ACTIONS(3992), + [anon_sym_uR_DQUOTE] = ACTIONS(3992), + [anon_sym_UR_DQUOTE] = ACTIONS(3992), + [anon_sym_u8R_DQUOTE] = ACTIONS(3992), + [anon_sym_co_await] = ACTIONS(3990), + [anon_sym_new] = ACTIONS(3990), + [anon_sym_requires] = ACTIONS(3990), + [anon_sym_CARET_CARET] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + [sym_this] = ACTIONS(3990), }, - [STATE(1386)] = { - [sym_expression] = STATE(4756), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(826)] = { + [sym_identifier] = ACTIONS(4034), + [aux_sym_preproc_include_token1] = ACTIONS(4034), + [aux_sym_preproc_def_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token1] = ACTIONS(4034), + [aux_sym_preproc_if_token2] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), + [sym_preproc_directive] = ACTIONS(4034), + [anon_sym_LPAREN2] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4034), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4034), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_typedef] = ACTIONS(4034), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym___attribute] = ACTIONS(4034), + [anon_sym_using] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym___based] = ACTIONS(4034), + [anon_sym___cdecl] = ACTIONS(4034), + [anon_sym___clrcall] = ACTIONS(4034), + [anon_sym___stdcall] = ACTIONS(4034), + [anon_sym___fastcall] = ACTIONS(4034), + [anon_sym___thiscall] = ACTIONS(4034), + [anon_sym___vectorcall] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4034), + [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__Nonnull] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym__Alignas] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4034), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4034), + [anon_sym_switch] = ACTIONS(4034), + [anon_sym_case] = ACTIONS(4034), + [anon_sym_default] = ACTIONS(4034), + [anon_sym_while] = ACTIONS(4034), + [anon_sym_do] = ACTIONS(4034), + [anon_sym_for] = ACTIONS(4034), + [anon_sym_return] = ACTIONS(4034), + [anon_sym_break] = ACTIONS(4034), + [anon_sym_continue] = ACTIONS(4034), + [anon_sym_goto] = ACTIONS(4034), + [anon_sym___try] = ACTIONS(4034), + [anon_sym___leave] = ACTIONS(4034), + [anon_sym_not] = ACTIONS(4034), + [anon_sym_compl] = ACTIONS(4034), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(4034), + [anon_sym___alignof__] = ACTIONS(4034), + [anon_sym___alignof] = ACTIONS(4034), + [anon_sym__alignof] = ACTIONS(4034), + [anon_sym_alignof] = ACTIONS(4034), + [anon_sym__Alignof] = ACTIONS(4034), + [anon_sym_offsetof] = ACTIONS(4034), + [anon_sym__Generic] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_asm] = ACTIONS(4034), + [anon_sym___asm__] = ACTIONS(4034), + [anon_sym___asm] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4036), + [anon_sym_L_SQUOTE] = ACTIONS(4036), + [anon_sym_u_SQUOTE] = ACTIONS(4036), + [anon_sym_U_SQUOTE] = ACTIONS(4036), + [anon_sym_u8_SQUOTE] = ACTIONS(4036), + [anon_sym_SQUOTE] = ACTIONS(4036), + [anon_sym_L_DQUOTE] = ACTIONS(4036), + [anon_sym_u_DQUOTE] = ACTIONS(4036), + [anon_sym_U_DQUOTE] = ACTIONS(4036), + [anon_sym_u8_DQUOTE] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(4036), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [anon_sym_NULL] = ACTIONS(4034), + [anon_sym_nullptr] = ACTIONS(4034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4034), + [anon_sym_explicit] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4034), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4034), + [anon_sym_delete] = ACTIONS(4034), + [anon_sym_throw] = ACTIONS(4034), + [anon_sym_namespace] = ACTIONS(4034), + [anon_sym_static_assert] = ACTIONS(4034), + [anon_sym_concept] = ACTIONS(4034), + [anon_sym_co_return] = ACTIONS(4034), + [anon_sym_co_yield] = ACTIONS(4034), + [anon_sym_R_DQUOTE] = ACTIONS(4036), + [anon_sym_LR_DQUOTE] = ACTIONS(4036), + [anon_sym_uR_DQUOTE] = ACTIONS(4036), + [anon_sym_UR_DQUOTE] = ACTIONS(4036), + [anon_sym_u8R_DQUOTE] = ACTIONS(4036), + [anon_sym_co_await] = ACTIONS(4034), + [anon_sym_new] = ACTIONS(4034), + [anon_sym_requires] = ACTIONS(4034), + [anon_sym_CARET_CARET] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4036), + [sym_this] = ACTIONS(4034), }, - [STATE(1387)] = { - [sym_expression] = STATE(4762), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(827)] = { + [sym_identifier] = ACTIONS(4119), + [aux_sym_preproc_include_token1] = ACTIONS(4119), + [aux_sym_preproc_def_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token2] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), + [sym_preproc_directive] = ACTIONS(4119), + [anon_sym_LPAREN2] = ACTIONS(4121), + [anon_sym_BANG] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym___extension__] = ACTIONS(4119), + [anon_sym_typedef] = ACTIONS(4119), + [anon_sym_virtual] = ACTIONS(4119), + [anon_sym_extern] = ACTIONS(4119), + [anon_sym___attribute__] = ACTIONS(4119), + [anon_sym___attribute] = ACTIONS(4119), + [anon_sym_using] = ACTIONS(4119), + [anon_sym_COLON_COLON] = ACTIONS(4121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), + [anon_sym___declspec] = ACTIONS(4119), + [anon_sym___based] = ACTIONS(4119), + [anon_sym___cdecl] = ACTIONS(4119), + [anon_sym___clrcall] = ACTIONS(4119), + [anon_sym___stdcall] = ACTIONS(4119), + [anon_sym___fastcall] = ACTIONS(4119), + [anon_sym___thiscall] = ACTIONS(4119), + [anon_sym___vectorcall] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_signed] = ACTIONS(4119), + [anon_sym_unsigned] = ACTIONS(4119), + [anon_sym_long] = ACTIONS(4119), + [anon_sym_short] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_static] = ACTIONS(4119), + [anon_sym_register] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym___inline] = ACTIONS(4119), + [anon_sym___inline__] = ACTIONS(4119), + [anon_sym___forceinline] = ACTIONS(4119), + [anon_sym_thread_local] = ACTIONS(4119), + [anon_sym___thread] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4119), + [anon_sym_constexpr] = ACTIONS(4119), + [anon_sym_volatile] = ACTIONS(4119), + [anon_sym_restrict] = ACTIONS(4119), + [anon_sym___restrict__] = ACTIONS(4119), + [anon_sym__Atomic] = ACTIONS(4119), + [anon_sym__Noreturn] = ACTIONS(4119), + [anon_sym_noreturn] = ACTIONS(4119), + [anon_sym__Nonnull] = ACTIONS(4119), + [anon_sym_mutable] = ACTIONS(4119), + [anon_sym_constinit] = ACTIONS(4119), + [anon_sym_consteval] = ACTIONS(4119), + [anon_sym_alignas] = ACTIONS(4119), + [anon_sym__Alignas] = ACTIONS(4119), + [sym_primitive_type] = ACTIONS(4119), + [anon_sym_enum] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_struct] = ACTIONS(4119), + [anon_sym_union] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_case] = ACTIONS(4119), + [anon_sym_default] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_do] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_goto] = ACTIONS(4119), + [anon_sym___try] = ACTIONS(4119), + [anon_sym___leave] = ACTIONS(4119), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_compl] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_sizeof] = ACTIONS(4119), + [anon_sym___alignof__] = ACTIONS(4119), + [anon_sym___alignof] = ACTIONS(4119), + [anon_sym__alignof] = ACTIONS(4119), + [anon_sym_alignof] = ACTIONS(4119), + [anon_sym__Alignof] = ACTIONS(4119), + [anon_sym_offsetof] = ACTIONS(4119), + [anon_sym__Generic] = ACTIONS(4119), + [anon_sym_typename] = ACTIONS(4119), + [anon_sym_asm] = ACTIONS(4119), + [anon_sym___asm__] = ACTIONS(4119), + [anon_sym___asm] = ACTIONS(4119), + [sym_number_literal] = ACTIONS(4121), + [anon_sym_L_SQUOTE] = ACTIONS(4121), + [anon_sym_u_SQUOTE] = ACTIONS(4121), + [anon_sym_U_SQUOTE] = ACTIONS(4121), + [anon_sym_u8_SQUOTE] = ACTIONS(4121), + [anon_sym_SQUOTE] = ACTIONS(4121), + [anon_sym_L_DQUOTE] = ACTIONS(4121), + [anon_sym_u_DQUOTE] = ACTIONS(4121), + [anon_sym_U_DQUOTE] = ACTIONS(4121), + [anon_sym_u8_DQUOTE] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(4121), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [anon_sym_NULL] = ACTIONS(4119), + [anon_sym_nullptr] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4119), + [anon_sym_decltype] = ACTIONS(4119), + [anon_sym_explicit] = ACTIONS(4119), + [anon_sym_template] = ACTIONS(4119), + [anon_sym_operator] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_delete] = ACTIONS(4119), + [anon_sym_throw] = ACTIONS(4119), + [anon_sym_namespace] = ACTIONS(4119), + [anon_sym_static_assert] = ACTIONS(4119), + [anon_sym_concept] = ACTIONS(4119), + [anon_sym_co_return] = ACTIONS(4119), + [anon_sym_co_yield] = ACTIONS(4119), + [anon_sym_R_DQUOTE] = ACTIONS(4121), + [anon_sym_LR_DQUOTE] = ACTIONS(4121), + [anon_sym_uR_DQUOTE] = ACTIONS(4121), + [anon_sym_UR_DQUOTE] = ACTIONS(4121), + [anon_sym_u8R_DQUOTE] = ACTIONS(4121), + [anon_sym_co_await] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_requires] = ACTIONS(4119), + [anon_sym_CARET_CARET] = ACTIONS(4121), + [anon_sym_LBRACK_COLON] = ACTIONS(4121), + [sym_this] = ACTIONS(4119), }, - [STATE(1388)] = { - [sym_expression] = STATE(4501), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(828)] = { + [sym_identifier] = ACTIONS(3994), + [aux_sym_preproc_include_token1] = ACTIONS(3994), + [aux_sym_preproc_def_token1] = ACTIONS(3994), + [aux_sym_preproc_if_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), + [sym_preproc_directive] = ACTIONS(3994), + [anon_sym_LPAREN2] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_TILDE] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3994), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3996), + [anon_sym_AMP_AMP] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3994), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym___extension__] = ACTIONS(3994), + [anon_sym_typedef] = ACTIONS(3994), + [anon_sym_virtual] = ACTIONS(3994), + [anon_sym_extern] = ACTIONS(3994), + [anon_sym___attribute__] = ACTIONS(3994), + [anon_sym___attribute] = ACTIONS(3994), + [anon_sym_using] = ACTIONS(3994), + [anon_sym_COLON_COLON] = ACTIONS(3996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), + [anon_sym___declspec] = ACTIONS(3994), + [anon_sym___based] = ACTIONS(3994), + [anon_sym___cdecl] = ACTIONS(3994), + [anon_sym___clrcall] = ACTIONS(3994), + [anon_sym___stdcall] = ACTIONS(3994), + [anon_sym___fastcall] = ACTIONS(3994), + [anon_sym___thiscall] = ACTIONS(3994), + [anon_sym___vectorcall] = ACTIONS(3994), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_RBRACE] = ACTIONS(3996), + [anon_sym_signed] = ACTIONS(3994), + [anon_sym_unsigned] = ACTIONS(3994), + [anon_sym_long] = ACTIONS(3994), + [anon_sym_short] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3994), + [anon_sym_static] = ACTIONS(3994), + [anon_sym_register] = ACTIONS(3994), + [anon_sym_inline] = ACTIONS(3994), + [anon_sym___inline] = ACTIONS(3994), + [anon_sym___inline__] = ACTIONS(3994), + [anon_sym___forceinline] = ACTIONS(3994), + [anon_sym_thread_local] = ACTIONS(3994), + [anon_sym___thread] = ACTIONS(3994), + [anon_sym_const] = ACTIONS(3994), + [anon_sym_constexpr] = ACTIONS(3994), + [anon_sym_volatile] = ACTIONS(3994), + [anon_sym_restrict] = ACTIONS(3994), + [anon_sym___restrict__] = ACTIONS(3994), + [anon_sym__Atomic] = ACTIONS(3994), + [anon_sym__Noreturn] = ACTIONS(3994), + [anon_sym_noreturn] = ACTIONS(3994), + [anon_sym__Nonnull] = ACTIONS(3994), + [anon_sym_mutable] = ACTIONS(3994), + [anon_sym_constinit] = ACTIONS(3994), + [anon_sym_consteval] = ACTIONS(3994), + [anon_sym_alignas] = ACTIONS(3994), + [anon_sym__Alignas] = ACTIONS(3994), + [sym_primitive_type] = ACTIONS(3994), + [anon_sym_enum] = ACTIONS(3994), + [anon_sym_class] = ACTIONS(3994), + [anon_sym_struct] = ACTIONS(3994), + [anon_sym_union] = ACTIONS(3994), + [anon_sym_if] = ACTIONS(3994), + [anon_sym_switch] = ACTIONS(3994), + [anon_sym_case] = ACTIONS(3994), + [anon_sym_default] = ACTIONS(3994), + [anon_sym_while] = ACTIONS(3994), + [anon_sym_do] = ACTIONS(3994), + [anon_sym_for] = ACTIONS(3994), + [anon_sym_return] = ACTIONS(3994), + [anon_sym_break] = ACTIONS(3994), + [anon_sym_continue] = ACTIONS(3994), + [anon_sym_goto] = ACTIONS(3994), + [anon_sym___try] = ACTIONS(3994), + [anon_sym___leave] = ACTIONS(3994), + [anon_sym_not] = ACTIONS(3994), + [anon_sym_compl] = ACTIONS(3994), + [anon_sym_DASH_DASH] = ACTIONS(3996), + [anon_sym_PLUS_PLUS] = ACTIONS(3996), + [anon_sym_sizeof] = ACTIONS(3994), + [anon_sym___alignof__] = ACTIONS(3994), + [anon_sym___alignof] = ACTIONS(3994), + [anon_sym__alignof] = ACTIONS(3994), + [anon_sym_alignof] = ACTIONS(3994), + [anon_sym__Alignof] = ACTIONS(3994), + [anon_sym_offsetof] = ACTIONS(3994), + [anon_sym__Generic] = ACTIONS(3994), + [anon_sym_typename] = ACTIONS(3994), + [anon_sym_asm] = ACTIONS(3994), + [anon_sym___asm__] = ACTIONS(3994), + [anon_sym___asm] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3996), + [anon_sym_L_SQUOTE] = ACTIONS(3996), + [anon_sym_u_SQUOTE] = ACTIONS(3996), + [anon_sym_U_SQUOTE] = ACTIONS(3996), + [anon_sym_u8_SQUOTE] = ACTIONS(3996), + [anon_sym_SQUOTE] = ACTIONS(3996), + [anon_sym_L_DQUOTE] = ACTIONS(3996), + [anon_sym_u_DQUOTE] = ACTIONS(3996), + [anon_sym_U_DQUOTE] = ACTIONS(3996), + [anon_sym_u8_DQUOTE] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(3996), + [sym_true] = ACTIONS(3994), + [sym_false] = ACTIONS(3994), + [anon_sym_NULL] = ACTIONS(3994), + [anon_sym_nullptr] = ACTIONS(3994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3994), + [anon_sym_decltype] = ACTIONS(3994), + [anon_sym_explicit] = ACTIONS(3994), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(3994), + [anon_sym_try] = ACTIONS(3994), + [anon_sym_delete] = ACTIONS(3994), + [anon_sym_throw] = ACTIONS(3994), + [anon_sym_namespace] = ACTIONS(3994), + [anon_sym_static_assert] = ACTIONS(3994), + [anon_sym_concept] = ACTIONS(3994), + [anon_sym_co_return] = ACTIONS(3994), + [anon_sym_co_yield] = ACTIONS(3994), + [anon_sym_R_DQUOTE] = ACTIONS(3996), + [anon_sym_LR_DQUOTE] = ACTIONS(3996), + [anon_sym_uR_DQUOTE] = ACTIONS(3996), + [anon_sym_UR_DQUOTE] = ACTIONS(3996), + [anon_sym_u8R_DQUOTE] = ACTIONS(3996), + [anon_sym_co_await] = ACTIONS(3994), + [anon_sym_new] = ACTIONS(3994), + [anon_sym_requires] = ACTIONS(3994), + [anon_sym_CARET_CARET] = ACTIONS(3996), + [anon_sym_LBRACK_COLON] = ACTIONS(3996), + [sym_this] = ACTIONS(3994), }, - [STATE(1389)] = { - [sym_expression] = STATE(3029), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(829)] = { + [sym_identifier] = ACTIONS(4038), + [aux_sym_preproc_include_token1] = ACTIONS(4038), + [aux_sym_preproc_def_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token2] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), + [sym_preproc_directive] = ACTIONS(4038), + [anon_sym_LPAREN2] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym___extension__] = ACTIONS(4038), + [anon_sym_typedef] = ACTIONS(4038), + [anon_sym_virtual] = ACTIONS(4038), + [anon_sym_extern] = ACTIONS(4038), + [anon_sym___attribute__] = ACTIONS(4038), + [anon_sym___attribute] = ACTIONS(4038), + [anon_sym_using] = ACTIONS(4038), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), + [anon_sym___declspec] = ACTIONS(4038), + [anon_sym___based] = ACTIONS(4038), + [anon_sym___cdecl] = ACTIONS(4038), + [anon_sym___clrcall] = ACTIONS(4038), + [anon_sym___stdcall] = ACTIONS(4038), + [anon_sym___fastcall] = ACTIONS(4038), + [anon_sym___thiscall] = ACTIONS(4038), + [anon_sym___vectorcall] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_signed] = ACTIONS(4038), + [anon_sym_unsigned] = ACTIONS(4038), + [anon_sym_long] = ACTIONS(4038), + [anon_sym_short] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4038), + [anon_sym_static] = ACTIONS(4038), + [anon_sym_register] = ACTIONS(4038), + [anon_sym_inline] = ACTIONS(4038), + [anon_sym___inline] = ACTIONS(4038), + [anon_sym___inline__] = ACTIONS(4038), + [anon_sym___forceinline] = ACTIONS(4038), + [anon_sym_thread_local] = ACTIONS(4038), + [anon_sym___thread] = ACTIONS(4038), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_constexpr] = ACTIONS(4038), + [anon_sym_volatile] = ACTIONS(4038), + [anon_sym_restrict] = ACTIONS(4038), + [anon_sym___restrict__] = ACTIONS(4038), + [anon_sym__Atomic] = ACTIONS(4038), + [anon_sym__Noreturn] = ACTIONS(4038), + [anon_sym_noreturn] = ACTIONS(4038), + [anon_sym__Nonnull] = ACTIONS(4038), + [anon_sym_mutable] = ACTIONS(4038), + [anon_sym_constinit] = ACTIONS(4038), + [anon_sym_consteval] = ACTIONS(4038), + [anon_sym_alignas] = ACTIONS(4038), + [anon_sym__Alignas] = ACTIONS(4038), + [sym_primitive_type] = ACTIONS(4038), + [anon_sym_enum] = ACTIONS(4038), + [anon_sym_class] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4038), + [anon_sym_union] = ACTIONS(4038), + [anon_sym_if] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_case] = ACTIONS(4038), + [anon_sym_default] = ACTIONS(4038), + [anon_sym_while] = ACTIONS(4038), + [anon_sym_do] = ACTIONS(4038), + [anon_sym_for] = ACTIONS(4038), + [anon_sym_return] = ACTIONS(4038), + [anon_sym_break] = ACTIONS(4038), + [anon_sym_continue] = ACTIONS(4038), + [anon_sym_goto] = ACTIONS(4038), + [anon_sym___try] = ACTIONS(4038), + [anon_sym___leave] = ACTIONS(4038), + [anon_sym_not] = ACTIONS(4038), + [anon_sym_compl] = ACTIONS(4038), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_sizeof] = ACTIONS(4038), + [anon_sym___alignof__] = ACTIONS(4038), + [anon_sym___alignof] = ACTIONS(4038), + [anon_sym__alignof] = ACTIONS(4038), + [anon_sym_alignof] = ACTIONS(4038), + [anon_sym__Alignof] = ACTIONS(4038), + [anon_sym_offsetof] = ACTIONS(4038), + [anon_sym__Generic] = ACTIONS(4038), + [anon_sym_typename] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(4038), + [anon_sym___asm__] = ACTIONS(4038), + [anon_sym___asm] = ACTIONS(4038), + [sym_number_literal] = ACTIONS(4040), + [anon_sym_L_SQUOTE] = ACTIONS(4040), + [anon_sym_u_SQUOTE] = ACTIONS(4040), + [anon_sym_U_SQUOTE] = ACTIONS(4040), + [anon_sym_u8_SQUOTE] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(4040), + [anon_sym_L_DQUOTE] = ACTIONS(4040), + [anon_sym_u_DQUOTE] = ACTIONS(4040), + [anon_sym_U_DQUOTE] = ACTIONS(4040), + [anon_sym_u8_DQUOTE] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [anon_sym_NULL] = ACTIONS(4038), + [anon_sym_nullptr] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4038), + [anon_sym_decltype] = ACTIONS(4038), + [anon_sym_explicit] = ACTIONS(4038), + [anon_sym_template] = ACTIONS(4038), + [anon_sym_operator] = ACTIONS(4038), + [anon_sym_try] = ACTIONS(4038), + [anon_sym_delete] = ACTIONS(4038), + [anon_sym_throw] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_static_assert] = ACTIONS(4038), + [anon_sym_concept] = ACTIONS(4038), + [anon_sym_co_return] = ACTIONS(4038), + [anon_sym_co_yield] = ACTIONS(4038), + [anon_sym_R_DQUOTE] = ACTIONS(4040), + [anon_sym_LR_DQUOTE] = ACTIONS(4040), + [anon_sym_uR_DQUOTE] = ACTIONS(4040), + [anon_sym_UR_DQUOTE] = ACTIONS(4040), + [anon_sym_u8R_DQUOTE] = ACTIONS(4040), + [anon_sym_co_await] = ACTIONS(4038), + [anon_sym_new] = ACTIONS(4038), + [anon_sym_requires] = ACTIONS(4038), + [anon_sym_CARET_CARET] = ACTIONS(4040), + [anon_sym_LBRACK_COLON] = ACTIONS(4040), + [sym_this] = ACTIONS(4038), }, - [STATE(1390)] = { - [sym_expression] = STATE(3032), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(830)] = { + [sym_identifier] = ACTIONS(3898), + [aux_sym_preproc_include_token1] = ACTIONS(3898), + [aux_sym_preproc_def_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token2] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), + [sym_preproc_directive] = ACTIONS(3898), + [anon_sym_LPAREN2] = ACTIONS(3900), + [anon_sym_BANG] = ACTIONS(3900), + [anon_sym_TILDE] = ACTIONS(3900), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_PLUS] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3900), + [anon_sym_AMP_AMP] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(3898), + [anon_sym_typedef] = ACTIONS(3898), + [anon_sym_virtual] = ACTIONS(3898), + [anon_sym_extern] = ACTIONS(3898), + [anon_sym___attribute__] = ACTIONS(3898), + [anon_sym___attribute] = ACTIONS(3898), + [anon_sym_using] = ACTIONS(3898), + [anon_sym_COLON_COLON] = ACTIONS(3900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), + [anon_sym___declspec] = ACTIONS(3898), + [anon_sym___based] = ACTIONS(3898), + [anon_sym___cdecl] = ACTIONS(3898), + [anon_sym___clrcall] = ACTIONS(3898), + [anon_sym___stdcall] = ACTIONS(3898), + [anon_sym___fastcall] = ACTIONS(3898), + [anon_sym___thiscall] = ACTIONS(3898), + [anon_sym___vectorcall] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3900), + [anon_sym_signed] = ACTIONS(3898), + [anon_sym_unsigned] = ACTIONS(3898), + [anon_sym_long] = ACTIONS(3898), + [anon_sym_short] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_static] = ACTIONS(3898), + [anon_sym_register] = ACTIONS(3898), + [anon_sym_inline] = ACTIONS(3898), + [anon_sym___inline] = ACTIONS(3898), + [anon_sym___inline__] = ACTIONS(3898), + [anon_sym___forceinline] = ACTIONS(3898), + [anon_sym_thread_local] = ACTIONS(3898), + [anon_sym___thread] = ACTIONS(3898), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_constexpr] = ACTIONS(3898), + [anon_sym_volatile] = ACTIONS(3898), + [anon_sym_restrict] = ACTIONS(3898), + [anon_sym___restrict__] = ACTIONS(3898), + [anon_sym__Atomic] = ACTIONS(3898), + [anon_sym__Noreturn] = ACTIONS(3898), + [anon_sym_noreturn] = ACTIONS(3898), + [anon_sym__Nonnull] = ACTIONS(3898), + [anon_sym_mutable] = ACTIONS(3898), + [anon_sym_constinit] = ACTIONS(3898), + [anon_sym_consteval] = ACTIONS(3898), + [anon_sym_alignas] = ACTIONS(3898), + [anon_sym__Alignas] = ACTIONS(3898), + [sym_primitive_type] = ACTIONS(3898), + [anon_sym_enum] = ACTIONS(3898), + [anon_sym_class] = ACTIONS(3898), + [anon_sym_struct] = ACTIONS(3898), + [anon_sym_union] = ACTIONS(3898), + [anon_sym_if] = ACTIONS(3898), + [anon_sym_switch] = ACTIONS(3898), + [anon_sym_case] = ACTIONS(3898), + [anon_sym_default] = ACTIONS(3898), + [anon_sym_while] = ACTIONS(3898), + [anon_sym_do] = ACTIONS(3898), + [anon_sym_for] = ACTIONS(3898), + [anon_sym_return] = ACTIONS(3898), + [anon_sym_break] = ACTIONS(3898), + [anon_sym_continue] = ACTIONS(3898), + [anon_sym_goto] = ACTIONS(3898), + [anon_sym___try] = ACTIONS(3898), + [anon_sym___leave] = ACTIONS(3898), + [anon_sym_not] = ACTIONS(3898), + [anon_sym_compl] = ACTIONS(3898), + [anon_sym_DASH_DASH] = ACTIONS(3900), + [anon_sym_PLUS_PLUS] = ACTIONS(3900), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(3898), + [anon_sym___alignof] = ACTIONS(3898), + [anon_sym__alignof] = ACTIONS(3898), + [anon_sym_alignof] = ACTIONS(3898), + [anon_sym__Alignof] = ACTIONS(3898), + [anon_sym_offsetof] = ACTIONS(3898), + [anon_sym__Generic] = ACTIONS(3898), + [anon_sym_typename] = ACTIONS(3898), + [anon_sym_asm] = ACTIONS(3898), + [anon_sym___asm__] = ACTIONS(3898), + [anon_sym___asm] = ACTIONS(3898), + [sym_number_literal] = ACTIONS(3900), + [anon_sym_L_SQUOTE] = ACTIONS(3900), + [anon_sym_u_SQUOTE] = ACTIONS(3900), + [anon_sym_U_SQUOTE] = ACTIONS(3900), + [anon_sym_u8_SQUOTE] = ACTIONS(3900), + [anon_sym_SQUOTE] = ACTIONS(3900), + [anon_sym_L_DQUOTE] = ACTIONS(3900), + [anon_sym_u_DQUOTE] = ACTIONS(3900), + [anon_sym_U_DQUOTE] = ACTIONS(3900), + [anon_sym_u8_DQUOTE] = ACTIONS(3900), + [anon_sym_DQUOTE] = ACTIONS(3900), + [sym_true] = ACTIONS(3898), + [sym_false] = ACTIONS(3898), + [anon_sym_NULL] = ACTIONS(3898), + [anon_sym_nullptr] = ACTIONS(3898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3898), + [anon_sym_decltype] = ACTIONS(3898), + [anon_sym_explicit] = ACTIONS(3898), + [anon_sym_template] = ACTIONS(3898), + [anon_sym_operator] = ACTIONS(3898), + [anon_sym_try] = ACTIONS(3898), + [anon_sym_delete] = ACTIONS(3898), + [anon_sym_throw] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_static_assert] = ACTIONS(3898), + [anon_sym_concept] = ACTIONS(3898), + [anon_sym_co_return] = ACTIONS(3898), + [anon_sym_co_yield] = ACTIONS(3898), + [anon_sym_R_DQUOTE] = ACTIONS(3900), + [anon_sym_LR_DQUOTE] = ACTIONS(3900), + [anon_sym_uR_DQUOTE] = ACTIONS(3900), + [anon_sym_UR_DQUOTE] = ACTIONS(3900), + [anon_sym_u8R_DQUOTE] = ACTIONS(3900), + [anon_sym_co_await] = ACTIONS(3898), + [anon_sym_new] = ACTIONS(3898), + [anon_sym_requires] = ACTIONS(3898), + [anon_sym_CARET_CARET] = ACTIONS(3900), + [anon_sym_LBRACK_COLON] = ACTIONS(3900), + [sym_this] = ACTIONS(3898), }, - [STATE(1391)] = { - [sym_expression] = STATE(2399), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(831)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1392)] = { - [sym_expression] = STATE(3071), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(832)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_include_token1] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym___cdecl] = ACTIONS(3998), + [anon_sym___clrcall] = ACTIONS(3998), + [anon_sym___stdcall] = ACTIONS(3998), + [anon_sym___fastcall] = ACTIONS(3998), + [anon_sym___thiscall] = ACTIONS(3998), + [anon_sym___vectorcall] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_if] = ACTIONS(3998), + [anon_sym_switch] = ACTIONS(3998), + [anon_sym_case] = ACTIONS(3998), + [anon_sym_default] = ACTIONS(3998), + [anon_sym_while] = ACTIONS(3998), + [anon_sym_do] = ACTIONS(3998), + [anon_sym_for] = ACTIONS(3998), + [anon_sym_return] = ACTIONS(3998), + [anon_sym_break] = ACTIONS(3998), + [anon_sym_continue] = ACTIONS(3998), + [anon_sym_goto] = ACTIONS(3998), + [anon_sym___try] = ACTIONS(3998), + [anon_sym___leave] = ACTIONS(3998), + [anon_sym_not] = ACTIONS(3998), + [anon_sym_compl] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(4000), + [anon_sym_PLUS_PLUS] = ACTIONS(4000), + [anon_sym_sizeof] = ACTIONS(3998), + [anon_sym___alignof__] = ACTIONS(3998), + [anon_sym___alignof] = ACTIONS(3998), + [anon_sym__alignof] = ACTIONS(3998), + [anon_sym_alignof] = ACTIONS(3998), + [anon_sym__Alignof] = ACTIONS(3998), + [anon_sym_offsetof] = ACTIONS(3998), + [anon_sym__Generic] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(3998), + [anon_sym___asm__] = ACTIONS(3998), + [anon_sym___asm] = ACTIONS(3998), + [sym_number_literal] = ACTIONS(4000), + [anon_sym_L_SQUOTE] = ACTIONS(4000), + [anon_sym_u_SQUOTE] = ACTIONS(4000), + [anon_sym_U_SQUOTE] = ACTIONS(4000), + [anon_sym_u8_SQUOTE] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4000), + [anon_sym_L_DQUOTE] = ACTIONS(4000), + [anon_sym_u_DQUOTE] = ACTIONS(4000), + [anon_sym_U_DQUOTE] = ACTIONS(4000), + [anon_sym_u8_DQUOTE] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(4000), + [sym_true] = ACTIONS(3998), + [sym_false] = ACTIONS(3998), + [anon_sym_NULL] = ACTIONS(3998), + [anon_sym_nullptr] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_try] = ACTIONS(3998), + [anon_sym_delete] = ACTIONS(3998), + [anon_sym_throw] = ACTIONS(3998), + [anon_sym_namespace] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(3998), + [anon_sym_co_return] = ACTIONS(3998), + [anon_sym_co_yield] = ACTIONS(3998), + [anon_sym_R_DQUOTE] = ACTIONS(4000), + [anon_sym_LR_DQUOTE] = ACTIONS(4000), + [anon_sym_uR_DQUOTE] = ACTIONS(4000), + [anon_sym_UR_DQUOTE] = ACTIONS(4000), + [anon_sym_u8R_DQUOTE] = ACTIONS(4000), + [anon_sym_co_await] = ACTIONS(3998), + [anon_sym_new] = ACTIONS(3998), + [anon_sym_requires] = ACTIONS(3998), + [anon_sym_CARET_CARET] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_this] = ACTIONS(3998), }, - [STATE(1393)] = { - [sym_expression] = STATE(3072), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(833)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym___try] = ACTIONS(4196), + [anon_sym___leave] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), }, - [STATE(1394)] = { - [sym_expression] = STATE(3073), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(834)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [STATE(1395)] = { - [sym_expression] = STATE(3074), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(835)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1396)] = { - [sym_expression] = STATE(3075), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(836)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_include_token1] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym___cdecl] = ACTIONS(4002), + [anon_sym___clrcall] = ACTIONS(4002), + [anon_sym___stdcall] = ACTIONS(4002), + [anon_sym___fastcall] = ACTIONS(4002), + [anon_sym___thiscall] = ACTIONS(4002), + [anon_sym___vectorcall] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_switch] = ACTIONS(4002), + [anon_sym_case] = ACTIONS(4002), + [anon_sym_default] = ACTIONS(4002), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_do] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym___try] = ACTIONS(4002), + [anon_sym___leave] = ACTIONS(4002), + [anon_sym_not] = ACTIONS(4002), + [anon_sym_compl] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4004), + [anon_sym_PLUS_PLUS] = ACTIONS(4004), + [anon_sym_sizeof] = ACTIONS(4002), + [anon_sym___alignof__] = ACTIONS(4002), + [anon_sym___alignof] = ACTIONS(4002), + [anon_sym__alignof] = ACTIONS(4002), + [anon_sym_alignof] = ACTIONS(4002), + [anon_sym__Alignof] = ACTIONS(4002), + [anon_sym_offsetof] = ACTIONS(4002), + [anon_sym__Generic] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym___asm__] = ACTIONS(4002), + [anon_sym___asm] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4004), + [anon_sym_L_SQUOTE] = ACTIONS(4004), + [anon_sym_u_SQUOTE] = ACTIONS(4004), + [anon_sym_U_SQUOTE] = ACTIONS(4004), + [anon_sym_u8_SQUOTE] = ACTIONS(4004), + [anon_sym_SQUOTE] = ACTIONS(4004), + [anon_sym_L_DQUOTE] = ACTIONS(4004), + [anon_sym_u_DQUOTE] = ACTIONS(4004), + [anon_sym_U_DQUOTE] = ACTIONS(4004), + [anon_sym_u8_DQUOTE] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(4004), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [anon_sym_NULL] = ACTIONS(4002), + [anon_sym_nullptr] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_try] = ACTIONS(4002), + [anon_sym_delete] = ACTIONS(4002), + [anon_sym_throw] = ACTIONS(4002), + [anon_sym_namespace] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_co_return] = ACTIONS(4002), + [anon_sym_co_yield] = ACTIONS(4002), + [anon_sym_R_DQUOTE] = ACTIONS(4004), + [anon_sym_LR_DQUOTE] = ACTIONS(4004), + [anon_sym_uR_DQUOTE] = ACTIONS(4004), + [anon_sym_UR_DQUOTE] = ACTIONS(4004), + [anon_sym_u8R_DQUOTE] = ACTIONS(4004), + [anon_sym_co_await] = ACTIONS(4002), + [anon_sym_new] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(4002), + [anon_sym_CARET_CARET] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [sym_this] = ACTIONS(4002), }, - [STATE(1397)] = { - [sym_expression] = STATE(3076), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(837)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_include_token1] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym___cdecl] = ACTIONS(4006), + [anon_sym___clrcall] = ACTIONS(4006), + [anon_sym___stdcall] = ACTIONS(4006), + [anon_sym___fastcall] = ACTIONS(4006), + [anon_sym___thiscall] = ACTIONS(4006), + [anon_sym___vectorcall] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_if] = ACTIONS(4006), + [anon_sym_switch] = ACTIONS(4006), + [anon_sym_case] = ACTIONS(4006), + [anon_sym_default] = ACTIONS(4006), + [anon_sym_while] = ACTIONS(4006), + [anon_sym_do] = ACTIONS(4006), + [anon_sym_for] = ACTIONS(4006), + [anon_sym_return] = ACTIONS(4006), + [anon_sym_break] = ACTIONS(4006), + [anon_sym_continue] = ACTIONS(4006), + [anon_sym_goto] = ACTIONS(4006), + [anon_sym___try] = ACTIONS(4006), + [anon_sym___leave] = ACTIONS(4006), + [anon_sym_not] = ACTIONS(4006), + [anon_sym_compl] = ACTIONS(4006), + [anon_sym_DASH_DASH] = ACTIONS(4008), + [anon_sym_PLUS_PLUS] = ACTIONS(4008), + [anon_sym_sizeof] = ACTIONS(4006), + [anon_sym___alignof__] = ACTIONS(4006), + [anon_sym___alignof] = ACTIONS(4006), + [anon_sym__alignof] = ACTIONS(4006), + [anon_sym_alignof] = ACTIONS(4006), + [anon_sym__Alignof] = ACTIONS(4006), + [anon_sym_offsetof] = ACTIONS(4006), + [anon_sym__Generic] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [anon_sym_asm] = ACTIONS(4006), + [anon_sym___asm__] = ACTIONS(4006), + [anon_sym___asm] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4008), + [anon_sym_L_SQUOTE] = ACTIONS(4008), + [anon_sym_u_SQUOTE] = ACTIONS(4008), + [anon_sym_U_SQUOTE] = ACTIONS(4008), + [anon_sym_u8_SQUOTE] = ACTIONS(4008), + [anon_sym_SQUOTE] = ACTIONS(4008), + [anon_sym_L_DQUOTE] = ACTIONS(4008), + [anon_sym_u_DQUOTE] = ACTIONS(4008), + [anon_sym_U_DQUOTE] = ACTIONS(4008), + [anon_sym_u8_DQUOTE] = ACTIONS(4008), + [anon_sym_DQUOTE] = ACTIONS(4008), + [sym_true] = ACTIONS(4006), + [sym_false] = ACTIONS(4006), + [anon_sym_NULL] = ACTIONS(4006), + [anon_sym_nullptr] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_try] = ACTIONS(4006), + [anon_sym_delete] = ACTIONS(4006), + [anon_sym_throw] = ACTIONS(4006), + [anon_sym_namespace] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_concept] = ACTIONS(4006), + [anon_sym_co_return] = ACTIONS(4006), + [anon_sym_co_yield] = ACTIONS(4006), + [anon_sym_R_DQUOTE] = ACTIONS(4008), + [anon_sym_LR_DQUOTE] = ACTIONS(4008), + [anon_sym_uR_DQUOTE] = ACTIONS(4008), + [anon_sym_UR_DQUOTE] = ACTIONS(4008), + [anon_sym_u8R_DQUOTE] = ACTIONS(4008), + [anon_sym_co_await] = ACTIONS(4006), + [anon_sym_new] = ACTIONS(4006), + [anon_sym_requires] = ACTIONS(4006), + [anon_sym_CARET_CARET] = ACTIONS(4008), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [sym_this] = ACTIONS(4006), }, - [STATE(1398)] = { - [sym_expression] = STATE(3077), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(838)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_include_token1] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_PLUS] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym___cdecl] = ACTIONS(4010), + [anon_sym___clrcall] = ACTIONS(4010), + [anon_sym___stdcall] = ACTIONS(4010), + [anon_sym___fastcall] = ACTIONS(4010), + [anon_sym___thiscall] = ACTIONS(4010), + [anon_sym___vectorcall] = ACTIONS(4010), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_if] = ACTIONS(4010), + [anon_sym_switch] = ACTIONS(4010), + [anon_sym_case] = ACTIONS(4010), + [anon_sym_default] = ACTIONS(4010), + [anon_sym_while] = ACTIONS(4010), + [anon_sym_do] = ACTIONS(4010), + [anon_sym_for] = ACTIONS(4010), + [anon_sym_return] = ACTIONS(4010), + [anon_sym_break] = ACTIONS(4010), + [anon_sym_continue] = ACTIONS(4010), + [anon_sym_goto] = ACTIONS(4010), + [anon_sym___try] = ACTIONS(4010), + [anon_sym___leave] = ACTIONS(4010), + [anon_sym_not] = ACTIONS(4010), + [anon_sym_compl] = ACTIONS(4010), + [anon_sym_DASH_DASH] = ACTIONS(4012), + [anon_sym_PLUS_PLUS] = ACTIONS(4012), + [anon_sym_sizeof] = ACTIONS(4010), + [anon_sym___alignof__] = ACTIONS(4010), + [anon_sym___alignof] = ACTIONS(4010), + [anon_sym__alignof] = ACTIONS(4010), + [anon_sym_alignof] = ACTIONS(4010), + [anon_sym__Alignof] = ACTIONS(4010), + [anon_sym_offsetof] = ACTIONS(4010), + [anon_sym__Generic] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [anon_sym_asm] = ACTIONS(4010), + [anon_sym___asm__] = ACTIONS(4010), + [anon_sym___asm] = ACTIONS(4010), + [sym_number_literal] = ACTIONS(4012), + [anon_sym_L_SQUOTE] = ACTIONS(4012), + [anon_sym_u_SQUOTE] = ACTIONS(4012), + [anon_sym_U_SQUOTE] = ACTIONS(4012), + [anon_sym_u8_SQUOTE] = ACTIONS(4012), + [anon_sym_SQUOTE] = ACTIONS(4012), + [anon_sym_L_DQUOTE] = ACTIONS(4012), + [anon_sym_u_DQUOTE] = ACTIONS(4012), + [anon_sym_U_DQUOTE] = ACTIONS(4012), + [anon_sym_u8_DQUOTE] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4012), + [sym_true] = ACTIONS(4010), + [sym_false] = ACTIONS(4010), + [anon_sym_NULL] = ACTIONS(4010), + [anon_sym_nullptr] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_try] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(4010), + [anon_sym_throw] = ACTIONS(4010), + [anon_sym_namespace] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_concept] = ACTIONS(4010), + [anon_sym_co_return] = ACTIONS(4010), + [anon_sym_co_yield] = ACTIONS(4010), + [anon_sym_R_DQUOTE] = ACTIONS(4012), + [anon_sym_LR_DQUOTE] = ACTIONS(4012), + [anon_sym_uR_DQUOTE] = ACTIONS(4012), + [anon_sym_UR_DQUOTE] = ACTIONS(4012), + [anon_sym_u8R_DQUOTE] = ACTIONS(4012), + [anon_sym_co_await] = ACTIONS(4010), + [anon_sym_new] = ACTIONS(4010), + [anon_sym_requires] = ACTIONS(4010), + [anon_sym_CARET_CARET] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + [sym_this] = ACTIONS(4010), }, - [STATE(1399)] = { - [sym_expression] = STATE(3033), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(839)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_include_token1] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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___cdecl] = ACTIONS(4014), + [anon_sym___clrcall] = ACTIONS(4014), + [anon_sym___stdcall] = ACTIONS(4014), + [anon_sym___fastcall] = ACTIONS(4014), + [anon_sym___thiscall] = ACTIONS(4014), + [anon_sym___vectorcall] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_RBRACE] = 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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [anon_sym_asm] = 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_explicit] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_namespace] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4016), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [sym_this] = ACTIONS(4014), }, - [STATE(1400)] = { - [sym_expression] = STATE(3615), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(840)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, - [STATE(1401)] = { - [sym_expression] = STATE(3683), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(841)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_include_token1] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = 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_AMP] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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___cdecl] = ACTIONS(4018), + [anon_sym___clrcall] = ACTIONS(4018), + [anon_sym___stdcall] = ACTIONS(4018), + [anon_sym___fastcall] = ACTIONS(4018), + [anon_sym___thiscall] = ACTIONS(4018), + [anon_sym___vectorcall] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_RBRACE] = 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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [anon_sym_asm] = 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_explicit] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_namespace] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_concept] = 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), + [anon_sym_CARET_CARET] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [sym_this] = ACTIONS(4018), }, - [STATE(1402)] = { - [sym_expression] = STATE(2956), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(842)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_include_token1] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym___cdecl] = ACTIONS(4022), + [anon_sym___clrcall] = ACTIONS(4022), + [anon_sym___stdcall] = ACTIONS(4022), + [anon_sym___fastcall] = ACTIONS(4022), + [anon_sym___thiscall] = ACTIONS(4022), + [anon_sym___vectorcall] = ACTIONS(4022), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_if] = ACTIONS(4022), + [anon_sym_switch] = ACTIONS(4022), + [anon_sym_case] = ACTIONS(4022), + [anon_sym_default] = ACTIONS(4022), + [anon_sym_while] = ACTIONS(4022), + [anon_sym_do] = ACTIONS(4022), + [anon_sym_for] = ACTIONS(4022), + [anon_sym_return] = ACTIONS(4022), + [anon_sym_break] = ACTIONS(4022), + [anon_sym_continue] = ACTIONS(4022), + [anon_sym_goto] = ACTIONS(4022), + [anon_sym___try] = ACTIONS(4022), + [anon_sym___leave] = ACTIONS(4022), + [anon_sym_not] = ACTIONS(4022), + [anon_sym_compl] = ACTIONS(4022), + [anon_sym_DASH_DASH] = ACTIONS(4024), + [anon_sym_PLUS_PLUS] = ACTIONS(4024), + [anon_sym_sizeof] = ACTIONS(4022), + [anon_sym___alignof__] = ACTIONS(4022), + [anon_sym___alignof] = ACTIONS(4022), + [anon_sym__alignof] = ACTIONS(4022), + [anon_sym_alignof] = ACTIONS(4022), + [anon_sym__Alignof] = ACTIONS(4022), + [anon_sym_offsetof] = ACTIONS(4022), + [anon_sym__Generic] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [anon_sym_asm] = ACTIONS(4022), + [anon_sym___asm__] = ACTIONS(4022), + [anon_sym___asm] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4024), + [anon_sym_L_SQUOTE] = ACTIONS(4024), + [anon_sym_u_SQUOTE] = ACTIONS(4024), + [anon_sym_U_SQUOTE] = ACTIONS(4024), + [anon_sym_u8_SQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4024), + [anon_sym_L_DQUOTE] = ACTIONS(4024), + [anon_sym_u_DQUOTE] = ACTIONS(4024), + [anon_sym_U_DQUOTE] = ACTIONS(4024), + [anon_sym_u8_DQUOTE] = ACTIONS(4024), + [anon_sym_DQUOTE] = ACTIONS(4024), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [anon_sym_NULL] = ACTIONS(4022), + [anon_sym_nullptr] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4022), + [anon_sym_delete] = ACTIONS(4022), + [anon_sym_throw] = ACTIONS(4022), + [anon_sym_namespace] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_concept] = ACTIONS(4022), + [anon_sym_co_return] = ACTIONS(4022), + [anon_sym_co_yield] = ACTIONS(4022), + [anon_sym_R_DQUOTE] = ACTIONS(4024), + [anon_sym_LR_DQUOTE] = ACTIONS(4024), + [anon_sym_uR_DQUOTE] = ACTIONS(4024), + [anon_sym_UR_DQUOTE] = ACTIONS(4024), + [anon_sym_u8R_DQUOTE] = ACTIONS(4024), + [anon_sym_co_await] = ACTIONS(4022), + [anon_sym_new] = ACTIONS(4022), + [anon_sym_requires] = ACTIONS(4022), + [anon_sym_CARET_CARET] = ACTIONS(4024), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [sym_this] = ACTIONS(4022), }, - [STATE(1403)] = { - [sym_expression] = STATE(2919), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(4976), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(843)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_include_token1] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4026), + [anon_sym_PLUS] = ACTIONS(4026), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym___cdecl] = ACTIONS(4026), + [anon_sym___clrcall] = ACTIONS(4026), + [anon_sym___stdcall] = ACTIONS(4026), + [anon_sym___fastcall] = ACTIONS(4026), + [anon_sym___thiscall] = ACTIONS(4026), + [anon_sym___vectorcall] = ACTIONS(4026), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_if] = ACTIONS(4026), + [anon_sym_switch] = ACTIONS(4026), + [anon_sym_case] = ACTIONS(4026), + [anon_sym_default] = ACTIONS(4026), + [anon_sym_while] = ACTIONS(4026), + [anon_sym_do] = ACTIONS(4026), + [anon_sym_for] = ACTIONS(4026), + [anon_sym_return] = ACTIONS(4026), + [anon_sym_break] = ACTIONS(4026), + [anon_sym_continue] = ACTIONS(4026), + [anon_sym_goto] = ACTIONS(4026), + [anon_sym___try] = ACTIONS(4026), + [anon_sym___leave] = ACTIONS(4026), + [anon_sym_not] = ACTIONS(4026), + [anon_sym_compl] = ACTIONS(4026), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4026), + [anon_sym___alignof__] = ACTIONS(4026), + [anon_sym___alignof] = ACTIONS(4026), + [anon_sym__alignof] = ACTIONS(4026), + [anon_sym_alignof] = ACTIONS(4026), + [anon_sym__Alignof] = ACTIONS(4026), + [anon_sym_offsetof] = ACTIONS(4026), + [anon_sym__Generic] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [anon_sym_asm] = ACTIONS(4026), + [anon_sym___asm__] = ACTIONS(4026), + [anon_sym___asm] = ACTIONS(4026), + [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(4026), + [sym_false] = ACTIONS(4026), + [anon_sym_NULL] = ACTIONS(4026), + [anon_sym_nullptr] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_try] = ACTIONS(4026), + [anon_sym_delete] = ACTIONS(4026), + [anon_sym_throw] = ACTIONS(4026), + [anon_sym_namespace] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_concept] = ACTIONS(4026), + [anon_sym_co_return] = ACTIONS(4026), + [anon_sym_co_yield] = ACTIONS(4026), + [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(4026), + [anon_sym_new] = ACTIONS(4026), + [anon_sym_requires] = ACTIONS(4026), + [anon_sym_CARET_CARET] = ACTIONS(4028), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [sym_this] = ACTIONS(4026), }, - [STATE(1404)] = { - [sym_expression] = STATE(2350), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(844)] = { + [sym_identifier] = ACTIONS(4030), + [aux_sym_preproc_include_token1] = ACTIONS(4030), + [aux_sym_preproc_def_token1] = ACTIONS(4030), + [aux_sym_preproc_if_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), + [sym_preproc_directive] = ACTIONS(4030), + [anon_sym_LPAREN2] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym___extension__] = ACTIONS(4030), + [anon_sym_typedef] = ACTIONS(4030), + [anon_sym_virtual] = ACTIONS(4030), + [anon_sym_extern] = ACTIONS(4030), + [anon_sym___attribute__] = ACTIONS(4030), + [anon_sym___attribute] = ACTIONS(4030), + [anon_sym_using] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(4032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), + [anon_sym___declspec] = ACTIONS(4030), + [anon_sym___based] = ACTIONS(4030), + [anon_sym___cdecl] = ACTIONS(4030), + [anon_sym___clrcall] = ACTIONS(4030), + [anon_sym___stdcall] = ACTIONS(4030), + [anon_sym___fastcall] = ACTIONS(4030), + [anon_sym___thiscall] = ACTIONS(4030), + [anon_sym___vectorcall] = ACTIONS(4030), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_RBRACE] = ACTIONS(4032), + [anon_sym_signed] = ACTIONS(4030), + [anon_sym_unsigned] = ACTIONS(4030), + [anon_sym_long] = ACTIONS(4030), + [anon_sym_short] = ACTIONS(4030), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_static] = ACTIONS(4030), + [anon_sym_register] = ACTIONS(4030), + [anon_sym_inline] = ACTIONS(4030), + [anon_sym___inline] = ACTIONS(4030), + [anon_sym___inline__] = ACTIONS(4030), + [anon_sym___forceinline] = ACTIONS(4030), + [anon_sym_thread_local] = ACTIONS(4030), + [anon_sym___thread] = ACTIONS(4030), + [anon_sym_const] = ACTIONS(4030), + [anon_sym_constexpr] = ACTIONS(4030), + [anon_sym_volatile] = ACTIONS(4030), + [anon_sym_restrict] = ACTIONS(4030), + [anon_sym___restrict__] = ACTIONS(4030), + [anon_sym__Atomic] = ACTIONS(4030), + [anon_sym__Noreturn] = ACTIONS(4030), + [anon_sym_noreturn] = ACTIONS(4030), + [anon_sym__Nonnull] = ACTIONS(4030), + [anon_sym_mutable] = ACTIONS(4030), + [anon_sym_constinit] = ACTIONS(4030), + [anon_sym_consteval] = ACTIONS(4030), + [anon_sym_alignas] = ACTIONS(4030), + [anon_sym__Alignas] = ACTIONS(4030), + [sym_primitive_type] = ACTIONS(4030), + [anon_sym_enum] = ACTIONS(4030), + [anon_sym_class] = ACTIONS(4030), + [anon_sym_struct] = ACTIONS(4030), + [anon_sym_union] = ACTIONS(4030), + [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(4032), + [anon_sym_PLUS_PLUS] = ACTIONS(4032), + [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_typename] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [anon_sym___asm] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4032), + [anon_sym_L_SQUOTE] = ACTIONS(4032), + [anon_sym_u_SQUOTE] = ACTIONS(4032), + [anon_sym_U_SQUOTE] = ACTIONS(4032), + [anon_sym_u8_SQUOTE] = ACTIONS(4032), + [anon_sym_SQUOTE] = ACTIONS(4032), + [anon_sym_L_DQUOTE] = ACTIONS(4032), + [anon_sym_u_DQUOTE] = ACTIONS(4032), + [anon_sym_U_DQUOTE] = ACTIONS(4032), + [anon_sym_u8_DQUOTE] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4032), + [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(4030), + [anon_sym_decltype] = ACTIONS(4030), + [anon_sym_explicit] = ACTIONS(4030), + [anon_sym_template] = ACTIONS(4030), + [anon_sym_operator] = ACTIONS(4030), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_namespace] = ACTIONS(4030), + [anon_sym_static_assert] = ACTIONS(4030), + [anon_sym_concept] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4032), + [anon_sym_LR_DQUOTE] = ACTIONS(4032), + [anon_sym_uR_DQUOTE] = ACTIONS(4032), + [anon_sym_UR_DQUOTE] = ACTIONS(4032), + [anon_sym_u8R_DQUOTE] = ACTIONS(4032), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [anon_sym_CARET_CARET] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4032), + [sym_this] = ACTIONS(4030), }, - [STATE(1405)] = { - [sym_expression] = STATE(2831), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(845)] = { + [sym_identifier] = ACTIONS(3978), + [aux_sym_preproc_include_token1] = ACTIONS(3978), + [aux_sym_preproc_def_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token1] = ACTIONS(3978), + [aux_sym_preproc_if_token2] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), + [sym_preproc_directive] = ACTIONS(3978), + [anon_sym_LPAREN2] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_TILDE] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3978), + [anon_sym_PLUS] = ACTIONS(3978), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_AMP_AMP] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + [anon_sym_SEMI] = ACTIONS(3980), + [anon_sym___extension__] = ACTIONS(3978), + [anon_sym_typedef] = ACTIONS(3978), + [anon_sym_virtual] = ACTIONS(3978), + [anon_sym_extern] = ACTIONS(3978), + [anon_sym___attribute__] = ACTIONS(3978), + [anon_sym___attribute] = ACTIONS(3978), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_COLON_COLON] = ACTIONS(3980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), + [anon_sym___declspec] = ACTIONS(3978), + [anon_sym___based] = ACTIONS(3978), + [anon_sym___cdecl] = ACTIONS(3978), + [anon_sym___clrcall] = ACTIONS(3978), + [anon_sym___stdcall] = ACTIONS(3978), + [anon_sym___fastcall] = ACTIONS(3978), + [anon_sym___thiscall] = ACTIONS(3978), + [anon_sym___vectorcall] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_signed] = ACTIONS(3978), + [anon_sym_unsigned] = ACTIONS(3978), + [anon_sym_long] = ACTIONS(3978), + [anon_sym_short] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3978), + [anon_sym_static] = ACTIONS(3978), + [anon_sym_register] = ACTIONS(3978), + [anon_sym_inline] = ACTIONS(3978), + [anon_sym___inline] = ACTIONS(3978), + [anon_sym___inline__] = ACTIONS(3978), + [anon_sym___forceinline] = ACTIONS(3978), + [anon_sym_thread_local] = ACTIONS(3978), + [anon_sym___thread] = ACTIONS(3978), + [anon_sym_const] = ACTIONS(3978), + [anon_sym_constexpr] = ACTIONS(3978), + [anon_sym_volatile] = ACTIONS(3978), + [anon_sym_restrict] = ACTIONS(3978), + [anon_sym___restrict__] = ACTIONS(3978), + [anon_sym__Atomic] = ACTIONS(3978), + [anon_sym__Noreturn] = ACTIONS(3978), + [anon_sym_noreturn] = ACTIONS(3978), + [anon_sym__Nonnull] = ACTIONS(3978), + [anon_sym_mutable] = ACTIONS(3978), + [anon_sym_constinit] = ACTIONS(3978), + [anon_sym_consteval] = ACTIONS(3978), + [anon_sym_alignas] = ACTIONS(3978), + [anon_sym__Alignas] = ACTIONS(3978), + [sym_primitive_type] = ACTIONS(3978), + [anon_sym_enum] = ACTIONS(3978), + [anon_sym_class] = ACTIONS(3978), + [anon_sym_struct] = ACTIONS(3978), + [anon_sym_union] = ACTIONS(3978), + [anon_sym_if] = ACTIONS(3978), + [anon_sym_switch] = ACTIONS(3978), + [anon_sym_case] = ACTIONS(3978), + [anon_sym_default] = ACTIONS(3978), + [anon_sym_while] = ACTIONS(3978), + [anon_sym_do] = ACTIONS(3978), + [anon_sym_for] = ACTIONS(3978), + [anon_sym_return] = ACTIONS(3978), + [anon_sym_break] = ACTIONS(3978), + [anon_sym_continue] = ACTIONS(3978), + [anon_sym_goto] = ACTIONS(3978), + [anon_sym___try] = ACTIONS(3978), + [anon_sym___leave] = ACTIONS(3978), + [anon_sym_not] = ACTIONS(3978), + [anon_sym_compl] = ACTIONS(3978), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(3978), + [anon_sym___alignof__] = ACTIONS(3978), + [anon_sym___alignof] = ACTIONS(3978), + [anon_sym__alignof] = ACTIONS(3978), + [anon_sym_alignof] = ACTIONS(3978), + [anon_sym__Alignof] = ACTIONS(3978), + [anon_sym_offsetof] = ACTIONS(3978), + [anon_sym__Generic] = ACTIONS(3978), + [anon_sym_typename] = ACTIONS(3978), + [anon_sym_asm] = ACTIONS(3978), + [anon_sym___asm__] = ACTIONS(3978), + [anon_sym___asm] = ACTIONS(3978), + [sym_number_literal] = ACTIONS(3980), + [anon_sym_L_SQUOTE] = ACTIONS(3980), + [anon_sym_u_SQUOTE] = ACTIONS(3980), + [anon_sym_U_SQUOTE] = ACTIONS(3980), + [anon_sym_u8_SQUOTE] = ACTIONS(3980), + [anon_sym_SQUOTE] = ACTIONS(3980), + [anon_sym_L_DQUOTE] = ACTIONS(3980), + [anon_sym_u_DQUOTE] = ACTIONS(3980), + [anon_sym_U_DQUOTE] = ACTIONS(3980), + [anon_sym_u8_DQUOTE] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(3980), + [sym_true] = ACTIONS(3978), + [sym_false] = ACTIONS(3978), + [anon_sym_NULL] = ACTIONS(3978), + [anon_sym_nullptr] = ACTIONS(3978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3978), + [anon_sym_decltype] = ACTIONS(3978), + [anon_sym_explicit] = ACTIONS(3978), + [anon_sym_template] = ACTIONS(3978), + [anon_sym_operator] = ACTIONS(3978), + [anon_sym_try] = ACTIONS(3978), + [anon_sym_delete] = ACTIONS(3978), + [anon_sym_throw] = ACTIONS(3978), + [anon_sym_namespace] = ACTIONS(3978), + [anon_sym_static_assert] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(3978), + [anon_sym_co_return] = ACTIONS(3978), + [anon_sym_co_yield] = ACTIONS(3978), + [anon_sym_R_DQUOTE] = ACTIONS(3980), + [anon_sym_LR_DQUOTE] = ACTIONS(3980), + [anon_sym_uR_DQUOTE] = ACTIONS(3980), + [anon_sym_UR_DQUOTE] = ACTIONS(3980), + [anon_sym_u8R_DQUOTE] = ACTIONS(3980), + [anon_sym_co_await] = ACTIONS(3978), + [anon_sym_new] = ACTIONS(3978), + [anon_sym_requires] = ACTIONS(3978), + [anon_sym_CARET_CARET] = ACTIONS(3980), + [anon_sym_LBRACK_COLON] = ACTIONS(3980), + [sym_this] = ACTIONS(3978), }, - [STATE(1406)] = { - [sym_expression] = STATE(2776), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(846)] = { + [sym_identifier] = ACTIONS(4038), + [aux_sym_preproc_include_token1] = ACTIONS(4038), + [aux_sym_preproc_def_token1] = ACTIONS(4038), + [aux_sym_preproc_if_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), + [sym_preproc_directive] = ACTIONS(4038), + [anon_sym_LPAREN2] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_AMP_AMP] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_SEMI] = ACTIONS(4040), + [anon_sym___extension__] = ACTIONS(4038), + [anon_sym_typedef] = ACTIONS(4038), + [anon_sym_virtual] = ACTIONS(4038), + [anon_sym_extern] = ACTIONS(4038), + [anon_sym___attribute__] = ACTIONS(4038), + [anon_sym___attribute] = ACTIONS(4038), + [anon_sym_using] = ACTIONS(4038), + [anon_sym_COLON_COLON] = ACTIONS(4040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), + [anon_sym___declspec] = ACTIONS(4038), + [anon_sym___based] = ACTIONS(4038), + [anon_sym___cdecl] = ACTIONS(4038), + [anon_sym___clrcall] = ACTIONS(4038), + [anon_sym___stdcall] = ACTIONS(4038), + [anon_sym___fastcall] = ACTIONS(4038), + [anon_sym___thiscall] = ACTIONS(4038), + [anon_sym___vectorcall] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_signed] = ACTIONS(4038), + [anon_sym_unsigned] = ACTIONS(4038), + [anon_sym_long] = ACTIONS(4038), + [anon_sym_short] = ACTIONS(4038), + [anon_sym_LBRACK] = ACTIONS(4038), + [anon_sym_static] = ACTIONS(4038), + [anon_sym_register] = ACTIONS(4038), + [anon_sym_inline] = ACTIONS(4038), + [anon_sym___inline] = ACTIONS(4038), + [anon_sym___inline__] = ACTIONS(4038), + [anon_sym___forceinline] = ACTIONS(4038), + [anon_sym_thread_local] = ACTIONS(4038), + [anon_sym___thread] = ACTIONS(4038), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_constexpr] = ACTIONS(4038), + [anon_sym_volatile] = ACTIONS(4038), + [anon_sym_restrict] = ACTIONS(4038), + [anon_sym___restrict__] = ACTIONS(4038), + [anon_sym__Atomic] = ACTIONS(4038), + [anon_sym__Noreturn] = ACTIONS(4038), + [anon_sym_noreturn] = ACTIONS(4038), + [anon_sym__Nonnull] = ACTIONS(4038), + [anon_sym_mutable] = ACTIONS(4038), + [anon_sym_constinit] = ACTIONS(4038), + [anon_sym_consteval] = ACTIONS(4038), + [anon_sym_alignas] = ACTIONS(4038), + [anon_sym__Alignas] = ACTIONS(4038), + [sym_primitive_type] = ACTIONS(4038), + [anon_sym_enum] = ACTIONS(4038), + [anon_sym_class] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4038), + [anon_sym_union] = ACTIONS(4038), + [anon_sym_if] = ACTIONS(4038), + [anon_sym_switch] = ACTIONS(4038), + [anon_sym_case] = ACTIONS(4038), + [anon_sym_default] = ACTIONS(4038), + [anon_sym_while] = ACTIONS(4038), + [anon_sym_do] = ACTIONS(4038), + [anon_sym_for] = ACTIONS(4038), + [anon_sym_return] = ACTIONS(4038), + [anon_sym_break] = ACTIONS(4038), + [anon_sym_continue] = ACTIONS(4038), + [anon_sym_goto] = ACTIONS(4038), + [anon_sym___try] = ACTIONS(4038), + [anon_sym___leave] = ACTIONS(4038), + [anon_sym_not] = ACTIONS(4038), + [anon_sym_compl] = ACTIONS(4038), + [anon_sym_DASH_DASH] = ACTIONS(4040), + [anon_sym_PLUS_PLUS] = ACTIONS(4040), + [anon_sym_sizeof] = ACTIONS(4038), + [anon_sym___alignof__] = ACTIONS(4038), + [anon_sym___alignof] = ACTIONS(4038), + [anon_sym__alignof] = ACTIONS(4038), + [anon_sym_alignof] = ACTIONS(4038), + [anon_sym__Alignof] = ACTIONS(4038), + [anon_sym_offsetof] = ACTIONS(4038), + [anon_sym__Generic] = ACTIONS(4038), + [anon_sym_typename] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(4038), + [anon_sym___asm__] = ACTIONS(4038), + [anon_sym___asm] = ACTIONS(4038), + [sym_number_literal] = ACTIONS(4040), + [anon_sym_L_SQUOTE] = ACTIONS(4040), + [anon_sym_u_SQUOTE] = ACTIONS(4040), + [anon_sym_U_SQUOTE] = ACTIONS(4040), + [anon_sym_u8_SQUOTE] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(4040), + [anon_sym_L_DQUOTE] = ACTIONS(4040), + [anon_sym_u_DQUOTE] = ACTIONS(4040), + [anon_sym_U_DQUOTE] = ACTIONS(4040), + [anon_sym_u8_DQUOTE] = ACTIONS(4040), + [anon_sym_DQUOTE] = ACTIONS(4040), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [anon_sym_NULL] = ACTIONS(4038), + [anon_sym_nullptr] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4038), + [anon_sym_decltype] = ACTIONS(4038), + [anon_sym_explicit] = ACTIONS(4038), + [anon_sym_template] = ACTIONS(4038), + [anon_sym_operator] = ACTIONS(4038), + [anon_sym_try] = ACTIONS(4038), + [anon_sym_delete] = ACTIONS(4038), + [anon_sym_throw] = ACTIONS(4038), + [anon_sym_namespace] = ACTIONS(4038), + [anon_sym_static_assert] = ACTIONS(4038), + [anon_sym_concept] = ACTIONS(4038), + [anon_sym_co_return] = ACTIONS(4038), + [anon_sym_co_yield] = ACTIONS(4038), + [anon_sym_R_DQUOTE] = ACTIONS(4040), + [anon_sym_LR_DQUOTE] = ACTIONS(4040), + [anon_sym_uR_DQUOTE] = ACTIONS(4040), + [anon_sym_UR_DQUOTE] = ACTIONS(4040), + [anon_sym_u8R_DQUOTE] = ACTIONS(4040), + [anon_sym_co_await] = ACTIONS(4038), + [anon_sym_new] = ACTIONS(4038), + [anon_sym_requires] = ACTIONS(4038), + [anon_sym_CARET_CARET] = ACTIONS(4040), + [anon_sym_LBRACK_COLON] = ACTIONS(4040), + [sym_this] = ACTIONS(4038), }, - [STATE(1407)] = { - [sym_expression] = STATE(2399), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(847)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token2] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym___try] = ACTIONS(4100), + [anon_sym___leave] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), }, - [STATE(1408)] = { - [sym_expression] = STATE(2835), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(848)] = { + [sym_identifier] = ACTIONS(3898), + [aux_sym_preproc_include_token1] = ACTIONS(3898), + [aux_sym_preproc_def_token1] = ACTIONS(3898), + [aux_sym_preproc_if_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), + [sym_preproc_directive] = ACTIONS(3898), + [anon_sym_LPAREN2] = ACTIONS(3900), + [anon_sym_BANG] = ACTIONS(3900), + [anon_sym_TILDE] = ACTIONS(3900), + [anon_sym_DASH] = ACTIONS(3898), + [anon_sym_PLUS] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3900), + [anon_sym_AMP_AMP] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(3898), + [anon_sym_typedef] = ACTIONS(3898), + [anon_sym_virtual] = ACTIONS(3898), + [anon_sym_extern] = ACTIONS(3898), + [anon_sym___attribute__] = ACTIONS(3898), + [anon_sym___attribute] = ACTIONS(3898), + [anon_sym_using] = ACTIONS(3898), + [anon_sym_COLON_COLON] = ACTIONS(3900), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), + [anon_sym___declspec] = ACTIONS(3898), + [anon_sym___based] = ACTIONS(3898), + [anon_sym___cdecl] = ACTIONS(3898), + [anon_sym___clrcall] = ACTIONS(3898), + [anon_sym___stdcall] = ACTIONS(3898), + [anon_sym___fastcall] = ACTIONS(3898), + [anon_sym___thiscall] = ACTIONS(3898), + [anon_sym___vectorcall] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3900), + [anon_sym_RBRACE] = ACTIONS(3900), + [anon_sym_signed] = ACTIONS(3898), + [anon_sym_unsigned] = ACTIONS(3898), + [anon_sym_long] = ACTIONS(3898), + [anon_sym_short] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_static] = ACTIONS(3898), + [anon_sym_register] = ACTIONS(3898), + [anon_sym_inline] = ACTIONS(3898), + [anon_sym___inline] = ACTIONS(3898), + [anon_sym___inline__] = ACTIONS(3898), + [anon_sym___forceinline] = ACTIONS(3898), + [anon_sym_thread_local] = ACTIONS(3898), + [anon_sym___thread] = ACTIONS(3898), + [anon_sym_const] = ACTIONS(3898), + [anon_sym_constexpr] = ACTIONS(3898), + [anon_sym_volatile] = ACTIONS(3898), + [anon_sym_restrict] = ACTIONS(3898), + [anon_sym___restrict__] = ACTIONS(3898), + [anon_sym__Atomic] = ACTIONS(3898), + [anon_sym__Noreturn] = ACTIONS(3898), + [anon_sym_noreturn] = ACTIONS(3898), + [anon_sym__Nonnull] = ACTIONS(3898), + [anon_sym_mutable] = ACTIONS(3898), + [anon_sym_constinit] = ACTIONS(3898), + [anon_sym_consteval] = ACTIONS(3898), + [anon_sym_alignas] = ACTIONS(3898), + [anon_sym__Alignas] = ACTIONS(3898), + [sym_primitive_type] = ACTIONS(3898), + [anon_sym_enum] = ACTIONS(3898), + [anon_sym_class] = ACTIONS(3898), + [anon_sym_struct] = ACTIONS(3898), + [anon_sym_union] = ACTIONS(3898), + [anon_sym_if] = ACTIONS(3898), + [anon_sym_switch] = ACTIONS(3898), + [anon_sym_case] = ACTIONS(3898), + [anon_sym_default] = ACTIONS(3898), + [anon_sym_while] = ACTIONS(3898), + [anon_sym_do] = ACTIONS(3898), + [anon_sym_for] = ACTIONS(3898), + [anon_sym_return] = ACTIONS(3898), + [anon_sym_break] = ACTIONS(3898), + [anon_sym_continue] = ACTIONS(3898), + [anon_sym_goto] = ACTIONS(3898), + [anon_sym___try] = ACTIONS(3898), + [anon_sym___leave] = ACTIONS(3898), + [anon_sym_not] = ACTIONS(3898), + [anon_sym_compl] = ACTIONS(3898), + [anon_sym_DASH_DASH] = ACTIONS(3900), + [anon_sym_PLUS_PLUS] = ACTIONS(3900), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(3898), + [anon_sym___alignof] = ACTIONS(3898), + [anon_sym__alignof] = ACTIONS(3898), + [anon_sym_alignof] = ACTIONS(3898), + [anon_sym__Alignof] = ACTIONS(3898), + [anon_sym_offsetof] = ACTIONS(3898), + [anon_sym__Generic] = ACTIONS(3898), + [anon_sym_typename] = ACTIONS(3898), + [anon_sym_asm] = ACTIONS(3898), + [anon_sym___asm__] = ACTIONS(3898), + [anon_sym___asm] = ACTIONS(3898), + [sym_number_literal] = ACTIONS(3900), + [anon_sym_L_SQUOTE] = ACTIONS(3900), + [anon_sym_u_SQUOTE] = ACTIONS(3900), + [anon_sym_U_SQUOTE] = ACTIONS(3900), + [anon_sym_u8_SQUOTE] = ACTIONS(3900), + [anon_sym_SQUOTE] = ACTIONS(3900), + [anon_sym_L_DQUOTE] = ACTIONS(3900), + [anon_sym_u_DQUOTE] = ACTIONS(3900), + [anon_sym_U_DQUOTE] = ACTIONS(3900), + [anon_sym_u8_DQUOTE] = ACTIONS(3900), + [anon_sym_DQUOTE] = ACTIONS(3900), + [sym_true] = ACTIONS(3898), + [sym_false] = ACTIONS(3898), + [anon_sym_NULL] = ACTIONS(3898), + [anon_sym_nullptr] = ACTIONS(3898), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3898), + [anon_sym_decltype] = ACTIONS(3898), + [anon_sym_explicit] = ACTIONS(3898), + [anon_sym_template] = ACTIONS(3898), + [anon_sym_operator] = ACTIONS(3898), + [anon_sym_try] = ACTIONS(3898), + [anon_sym_delete] = ACTIONS(3898), + [anon_sym_throw] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_static_assert] = ACTIONS(3898), + [anon_sym_concept] = ACTIONS(3898), + [anon_sym_co_return] = ACTIONS(3898), + [anon_sym_co_yield] = ACTIONS(3898), + [anon_sym_R_DQUOTE] = ACTIONS(3900), + [anon_sym_LR_DQUOTE] = ACTIONS(3900), + [anon_sym_uR_DQUOTE] = ACTIONS(3900), + [anon_sym_UR_DQUOTE] = ACTIONS(3900), + [anon_sym_u8R_DQUOTE] = ACTIONS(3900), + [anon_sym_co_await] = ACTIONS(3898), + [anon_sym_new] = ACTIONS(3898), + [anon_sym_requires] = ACTIONS(3898), + [anon_sym_CARET_CARET] = ACTIONS(3900), + [anon_sym_LBRACK_COLON] = ACTIONS(3900), + [sym_this] = ACTIONS(3898), }, - [STATE(1409)] = { - [sym_expression] = STATE(2836), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(849)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_include_token1] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym___cdecl] = ACTIONS(4042), + [anon_sym___clrcall] = ACTIONS(4042), + [anon_sym___stdcall] = ACTIONS(4042), + [anon_sym___fastcall] = ACTIONS(4042), + [anon_sym___thiscall] = ACTIONS(4042), + [anon_sym___vectorcall] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_if] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_case] = ACTIONS(4042), + [anon_sym_default] = ACTIONS(4042), + [anon_sym_while] = ACTIONS(4042), + [anon_sym_do] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4042), + [anon_sym_break] = ACTIONS(4042), + [anon_sym_continue] = ACTIONS(4042), + [anon_sym_goto] = ACTIONS(4042), + [anon_sym___try] = ACTIONS(4042), + [anon_sym___leave] = ACTIONS(4042), + [anon_sym_not] = ACTIONS(4042), + [anon_sym_compl] = ACTIONS(4042), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_sizeof] = ACTIONS(4042), + [anon_sym___alignof__] = ACTIONS(4042), + [anon_sym___alignof] = ACTIONS(4042), + [anon_sym__alignof] = ACTIONS(4042), + [anon_sym_alignof] = ACTIONS(4042), + [anon_sym__Alignof] = ACTIONS(4042), + [anon_sym_offsetof] = ACTIONS(4042), + [anon_sym__Generic] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym___asm__] = ACTIONS(4042), + [anon_sym___asm] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4044), + [anon_sym_L_SQUOTE] = ACTIONS(4044), + [anon_sym_u_SQUOTE] = ACTIONS(4044), + [anon_sym_U_SQUOTE] = ACTIONS(4044), + [anon_sym_u8_SQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4044), + [anon_sym_L_DQUOTE] = ACTIONS(4044), + [anon_sym_u_DQUOTE] = ACTIONS(4044), + [anon_sym_U_DQUOTE] = ACTIONS(4044), + [anon_sym_u8_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [anon_sym_NULL] = ACTIONS(4042), + [anon_sym_nullptr] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_try] = ACTIONS(4042), + [anon_sym_delete] = ACTIONS(4042), + [anon_sym_throw] = ACTIONS(4042), + [anon_sym_namespace] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_concept] = ACTIONS(4042), + [anon_sym_co_return] = ACTIONS(4042), + [anon_sym_co_yield] = ACTIONS(4042), + [anon_sym_R_DQUOTE] = ACTIONS(4044), + [anon_sym_LR_DQUOTE] = ACTIONS(4044), + [anon_sym_uR_DQUOTE] = ACTIONS(4044), + [anon_sym_UR_DQUOTE] = ACTIONS(4044), + [anon_sym_u8R_DQUOTE] = ACTIONS(4044), + [anon_sym_co_await] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4042), + [anon_sym_requires] = ACTIONS(4042), + [anon_sym_CARET_CARET] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + [sym_this] = ACTIONS(4042), }, - [STATE(1410)] = { - [sym_expression] = STATE(2838), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(850)] = { + [sym_expression] = STATE(6656), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(7151), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_RBRACK] = ACTIONS(2026), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1411)] = { - [sym_expression] = STATE(2839), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(851)] = { + [sym_identifier] = ACTIONS(4046), + [aux_sym_preproc_include_token1] = ACTIONS(4046), + [aux_sym_preproc_def_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), + [sym_preproc_directive] = ACTIONS(4046), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_typedef] = ACTIONS(4046), + [anon_sym_virtual] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_using] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(4048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym___based] = ACTIONS(4046), + [anon_sym___cdecl] = ACTIONS(4046), + [anon_sym___clrcall] = ACTIONS(4046), + [anon_sym___stdcall] = ACTIONS(4046), + [anon_sym___fastcall] = ACTIONS(4046), + [anon_sym___thiscall] = ACTIONS(4046), + [anon_sym___vectorcall] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_mutable] = ACTIONS(4046), + [anon_sym_constinit] = ACTIONS(4046), + [anon_sym_consteval] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_class] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_if] = ACTIONS(4046), + [anon_sym_switch] = ACTIONS(4046), + [anon_sym_case] = ACTIONS(4046), + [anon_sym_default] = ACTIONS(4046), + [anon_sym_while] = ACTIONS(4046), + [anon_sym_do] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4046), + [anon_sym_break] = ACTIONS(4046), + [anon_sym_continue] = ACTIONS(4046), + [anon_sym_goto] = ACTIONS(4046), + [anon_sym___try] = ACTIONS(4046), + [anon_sym___leave] = ACTIONS(4046), + [anon_sym_not] = ACTIONS(4046), + [anon_sym_compl] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_sizeof] = ACTIONS(4046), + [anon_sym___alignof__] = ACTIONS(4046), + [anon_sym___alignof] = ACTIONS(4046), + [anon_sym__alignof] = ACTIONS(4046), + [anon_sym_alignof] = ACTIONS(4046), + [anon_sym__Alignof] = ACTIONS(4046), + [anon_sym_offsetof] = ACTIONS(4046), + [anon_sym__Generic] = ACTIONS(4046), + [anon_sym_typename] = ACTIONS(4046), + [anon_sym_asm] = ACTIONS(4046), + [anon_sym___asm__] = ACTIONS(4046), + [anon_sym___asm] = ACTIONS(4046), + [sym_number_literal] = ACTIONS(4048), + [anon_sym_L_SQUOTE] = ACTIONS(4048), + [anon_sym_u_SQUOTE] = ACTIONS(4048), + [anon_sym_U_SQUOTE] = ACTIONS(4048), + [anon_sym_u8_SQUOTE] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4048), + [anon_sym_L_DQUOTE] = ACTIONS(4048), + [anon_sym_u_DQUOTE] = ACTIONS(4048), + [anon_sym_U_DQUOTE] = ACTIONS(4048), + [anon_sym_u8_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [anon_sym_NULL] = ACTIONS(4046), + [anon_sym_nullptr] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4046), + [anon_sym_decltype] = ACTIONS(4046), + [anon_sym_explicit] = ACTIONS(4046), + [anon_sym_template] = ACTIONS(4046), + [anon_sym_operator] = ACTIONS(4046), + [anon_sym_try] = ACTIONS(4046), + [anon_sym_delete] = ACTIONS(4046), + [anon_sym_throw] = ACTIONS(4046), + [anon_sym_namespace] = ACTIONS(4046), + [anon_sym_static_assert] = ACTIONS(4046), + [anon_sym_concept] = ACTIONS(4046), + [anon_sym_co_return] = ACTIONS(4046), + [anon_sym_co_yield] = ACTIONS(4046), + [anon_sym_R_DQUOTE] = ACTIONS(4048), + [anon_sym_LR_DQUOTE] = ACTIONS(4048), + [anon_sym_uR_DQUOTE] = ACTIONS(4048), + [anon_sym_UR_DQUOTE] = ACTIONS(4048), + [anon_sym_u8R_DQUOTE] = ACTIONS(4048), + [anon_sym_co_await] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_requires] = ACTIONS(4046), + [anon_sym_CARET_CARET] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4048), + [sym_this] = ACTIONS(4046), }, - [STATE(1412)] = { - [sym_expression] = STATE(2758), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(852)] = { + [sym_identifier] = ACTIONS(4050), + [aux_sym_preproc_include_token1] = ACTIONS(4050), + [aux_sym_preproc_def_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), + [sym_preproc_directive] = ACTIONS(4050), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_typedef] = ACTIONS(4050), + [anon_sym_virtual] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_using] = ACTIONS(4050), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym___based] = ACTIONS(4050), + [anon_sym___cdecl] = ACTIONS(4050), + [anon_sym___clrcall] = ACTIONS(4050), + [anon_sym___stdcall] = ACTIONS(4050), + [anon_sym___fastcall] = ACTIONS(4050), + [anon_sym___thiscall] = ACTIONS(4050), + [anon_sym___vectorcall] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_mutable] = ACTIONS(4050), + [anon_sym_constinit] = ACTIONS(4050), + [anon_sym_consteval] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_class] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_case] = ACTIONS(4050), + [anon_sym_default] = ACTIONS(4050), + [anon_sym_while] = ACTIONS(4050), + [anon_sym_do] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym___try] = ACTIONS(4050), + [anon_sym___leave] = ACTIONS(4050), + [anon_sym_not] = ACTIONS(4050), + [anon_sym_compl] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_sizeof] = ACTIONS(4050), + [anon_sym___alignof__] = ACTIONS(4050), + [anon_sym___alignof] = ACTIONS(4050), + [anon_sym__alignof] = ACTIONS(4050), + [anon_sym_alignof] = ACTIONS(4050), + [anon_sym__Alignof] = ACTIONS(4050), + [anon_sym_offsetof] = ACTIONS(4050), + [anon_sym__Generic] = ACTIONS(4050), + [anon_sym_typename] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym___asm__] = ACTIONS(4050), + [anon_sym___asm] = ACTIONS(4050), + [sym_number_literal] = ACTIONS(4052), + [anon_sym_L_SQUOTE] = ACTIONS(4052), + [anon_sym_u_SQUOTE] = ACTIONS(4052), + [anon_sym_U_SQUOTE] = ACTIONS(4052), + [anon_sym_u8_SQUOTE] = ACTIONS(4052), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_L_DQUOTE] = ACTIONS(4052), + [anon_sym_u_DQUOTE] = ACTIONS(4052), + [anon_sym_U_DQUOTE] = ACTIONS(4052), + [anon_sym_u8_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE] = ACTIONS(4052), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [anon_sym_NULL] = ACTIONS(4050), + [anon_sym_nullptr] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4050), + [anon_sym_decltype] = ACTIONS(4050), + [anon_sym_explicit] = ACTIONS(4050), + [anon_sym_template] = ACTIONS(4050), + [anon_sym_operator] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(4050), + [anon_sym_delete] = ACTIONS(4050), + [anon_sym_throw] = ACTIONS(4050), + [anon_sym_namespace] = ACTIONS(4050), + [anon_sym_static_assert] = ACTIONS(4050), + [anon_sym_concept] = ACTIONS(4050), + [anon_sym_co_return] = ACTIONS(4050), + [anon_sym_co_yield] = ACTIONS(4050), + [anon_sym_R_DQUOTE] = ACTIONS(4052), + [anon_sym_LR_DQUOTE] = ACTIONS(4052), + [anon_sym_uR_DQUOTE] = ACTIONS(4052), + [anon_sym_UR_DQUOTE] = ACTIONS(4052), + [anon_sym_u8R_DQUOTE] = ACTIONS(4052), + [anon_sym_co_await] = ACTIONS(4050), + [anon_sym_new] = ACTIONS(4050), + [anon_sym_requires] = ACTIONS(4050), + [anon_sym_CARET_CARET] = ACTIONS(4052), + [anon_sym_LBRACK_COLON] = ACTIONS(4052), + [sym_this] = ACTIONS(4050), }, - [STATE(1413)] = { - [sym_expression] = STATE(2759), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(853)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_include_token1] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token2] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_BANG] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym___cdecl] = ACTIONS(4107), + [anon_sym___clrcall] = ACTIONS(4107), + [anon_sym___stdcall] = ACTIONS(4107), + [anon_sym___fastcall] = ACTIONS(4107), + [anon_sym___thiscall] = ACTIONS(4107), + [anon_sym___vectorcall] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_switch] = ACTIONS(4107), + [anon_sym_case] = ACTIONS(4107), + [anon_sym_default] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_do] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_goto] = ACTIONS(4107), + [anon_sym___try] = ACTIONS(4107), + [anon_sym___leave] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_compl] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4109), + [anon_sym_PLUS_PLUS] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4107), + [anon_sym___alignof__] = ACTIONS(4107), + [anon_sym___alignof] = ACTIONS(4107), + [anon_sym__alignof] = ACTIONS(4107), + [anon_sym_alignof] = ACTIONS(4107), + [anon_sym__Alignof] = ACTIONS(4107), + [anon_sym_offsetof] = ACTIONS(4107), + [anon_sym__Generic] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [anon_sym_asm] = ACTIONS(4107), + [anon_sym___asm__] = ACTIONS(4107), + [anon_sym___asm] = ACTIONS(4107), + [sym_number_literal] = ACTIONS(4109), + [anon_sym_L_SQUOTE] = ACTIONS(4109), + [anon_sym_u_SQUOTE] = ACTIONS(4109), + [anon_sym_U_SQUOTE] = ACTIONS(4109), + [anon_sym_u8_SQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4109), + [anon_sym_L_DQUOTE] = ACTIONS(4109), + [anon_sym_u_DQUOTE] = ACTIONS(4109), + [anon_sym_U_DQUOTE] = ACTIONS(4109), + [anon_sym_u8_DQUOTE] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [anon_sym_NULL] = ACTIONS(4107), + [anon_sym_nullptr] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_delete] = ACTIONS(4107), + [anon_sym_throw] = ACTIONS(4107), + [anon_sym_namespace] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_concept] = ACTIONS(4107), + [anon_sym_co_return] = ACTIONS(4107), + [anon_sym_co_yield] = ACTIONS(4107), + [anon_sym_R_DQUOTE] = ACTIONS(4109), + [anon_sym_LR_DQUOTE] = ACTIONS(4109), + [anon_sym_uR_DQUOTE] = ACTIONS(4109), + [anon_sym_UR_DQUOTE] = ACTIONS(4109), + [anon_sym_u8R_DQUOTE] = ACTIONS(4109), + [anon_sym_co_await] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_requires] = ACTIONS(4107), + [anon_sym_CARET_CARET] = ACTIONS(4109), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + [sym_this] = ACTIONS(4107), }, - [STATE(1414)] = { - [sym_expression] = STATE(2760), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(854)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym___cdecl] = ACTIONS(4111), + [anon_sym___clrcall] = ACTIONS(4111), + [anon_sym___stdcall] = ACTIONS(4111), + [anon_sym___fastcall] = ACTIONS(4111), + [anon_sym___thiscall] = ACTIONS(4111), + [anon_sym___vectorcall] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_case] = ACTIONS(4111), + [anon_sym_default] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym___try] = ACTIONS(4111), + [anon_sym___leave] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_compl] = ACTIONS(4111), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym___alignof__] = ACTIONS(4111), + [anon_sym___alignof] = ACTIONS(4111), + [anon_sym__alignof] = ACTIONS(4111), + [anon_sym_alignof] = ACTIONS(4111), + [anon_sym__Alignof] = ACTIONS(4111), + [anon_sym_offsetof] = ACTIONS(4111), + [anon_sym__Generic] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_asm] = ACTIONS(4111), + [anon_sym___asm__] = ACTIONS(4111), + [anon_sym___asm] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_L_SQUOTE] = ACTIONS(4113), + [anon_sym_u_SQUOTE] = ACTIONS(4113), + [anon_sym_U_SQUOTE] = ACTIONS(4113), + [anon_sym_u8_SQUOTE] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_L_DQUOTE] = ACTIONS(4113), + [anon_sym_u_DQUOTE] = ACTIONS(4113), + [anon_sym_U_DQUOTE] = ACTIONS(4113), + [anon_sym_u8_DQUOTE] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [anon_sym_NULL] = ACTIONS(4111), + [anon_sym_nullptr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_throw] = ACTIONS(4111), + [anon_sym_namespace] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_concept] = ACTIONS(4111), + [anon_sym_co_return] = ACTIONS(4111), + [anon_sym_co_yield] = ACTIONS(4111), + [anon_sym_R_DQUOTE] = ACTIONS(4113), + [anon_sym_LR_DQUOTE] = ACTIONS(4113), + [anon_sym_uR_DQUOTE] = ACTIONS(4113), + [anon_sym_UR_DQUOTE] = ACTIONS(4113), + [anon_sym_u8R_DQUOTE] = ACTIONS(4113), + [anon_sym_co_await] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_requires] = ACTIONS(4111), + [anon_sym_CARET_CARET] = ACTIONS(4113), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + [sym_this] = ACTIONS(4111), }, - [STATE(1415)] = { - [sym_expression] = STATE(2777), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(855)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_include_token1] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym___cdecl] = ACTIONS(4115), + [anon_sym___clrcall] = ACTIONS(4115), + [anon_sym___stdcall] = ACTIONS(4115), + [anon_sym___fastcall] = ACTIONS(4115), + [anon_sym___thiscall] = ACTIONS(4115), + [anon_sym___vectorcall] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_switch] = ACTIONS(4115), + [anon_sym_case] = ACTIONS(4115), + [anon_sym_default] = ACTIONS(4115), + [anon_sym_while] = ACTIONS(4115), + [anon_sym_do] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [anon_sym___try] = ACTIONS(4115), + [anon_sym___leave] = ACTIONS(4115), + [anon_sym_not] = ACTIONS(4115), + [anon_sym_compl] = ACTIONS(4115), + [anon_sym_DASH_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4117), + [anon_sym_sizeof] = ACTIONS(4115), + [anon_sym___alignof__] = ACTIONS(4115), + [anon_sym___alignof] = ACTIONS(4115), + [anon_sym__alignof] = ACTIONS(4115), + [anon_sym_alignof] = ACTIONS(4115), + [anon_sym__Alignof] = ACTIONS(4115), + [anon_sym_offsetof] = ACTIONS(4115), + [anon_sym__Generic] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [anon_sym_asm] = ACTIONS(4115), + [anon_sym___asm__] = ACTIONS(4115), + [anon_sym___asm] = ACTIONS(4115), + [sym_number_literal] = ACTIONS(4117), + [anon_sym_L_SQUOTE] = ACTIONS(4117), + [anon_sym_u_SQUOTE] = ACTIONS(4117), + [anon_sym_U_SQUOTE] = ACTIONS(4117), + [anon_sym_u8_SQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_L_DQUOTE] = ACTIONS(4117), + [anon_sym_u_DQUOTE] = ACTIONS(4117), + [anon_sym_U_DQUOTE] = ACTIONS(4117), + [anon_sym_u8_DQUOTE] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4117), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [anon_sym_NULL] = ACTIONS(4115), + [anon_sym_nullptr] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_try] = ACTIONS(4115), + [anon_sym_delete] = ACTIONS(4115), + [anon_sym_throw] = ACTIONS(4115), + [anon_sym_namespace] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_concept] = ACTIONS(4115), + [anon_sym_co_return] = ACTIONS(4115), + [anon_sym_co_yield] = ACTIONS(4115), + [anon_sym_R_DQUOTE] = ACTIONS(4117), + [anon_sym_LR_DQUOTE] = ACTIONS(4117), + [anon_sym_uR_DQUOTE] = ACTIONS(4117), + [anon_sym_UR_DQUOTE] = ACTIONS(4117), + [anon_sym_u8R_DQUOTE] = ACTIONS(4117), + [anon_sym_co_await] = ACTIONS(4115), + [anon_sym_new] = ACTIONS(4115), + [anon_sym_requires] = ACTIONS(4115), + [anon_sym_CARET_CARET] = ACTIONS(4117), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + [sym_this] = ACTIONS(4115), }, - [STATE(1416)] = { - [sym_expression] = STATE(3289), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(856)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [STATE(1417)] = { - [sym_expression] = STATE(3321), - [sym__string] = STATE(3517), - [sym_conditional_expression] = STATE(3592), - [sym_assignment_expression] = STATE(3592), - [sym_pointer_expression] = STATE(3601), - [sym_unary_expression] = STATE(3592), - [sym_binary_expression] = STATE(3592), - [sym_update_expression] = STATE(3592), - [sym_cast_expression] = STATE(3592), - [sym_sizeof_expression] = STATE(3592), - [sym_alignof_expression] = STATE(3592), - [sym_offsetof_expression] = STATE(3592), - [sym_generic_expression] = STATE(3592), - [sym_subscript_expression] = STATE(3601), - [sym_call_expression] = STATE(3601), - [sym_gnu_asm_expression] = STATE(3592), - [sym_extension_expression] = STATE(3592), - [sym_field_expression] = STATE(3601), - [sym_compound_literal_expression] = STATE(3592), - [sym_parenthesized_expression] = STATE(3601), - [sym_char_literal] = STATE(3517), - [sym_concatenated_string] = STATE(3517), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3592), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7942), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3592), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3592), - [sym_new_expression] = STATE(3592), - [sym_delete_expression] = STATE(3592), - [sym_requires_clause] = STATE(3592), - [sym_requires_expression] = STATE(3592), - [sym_lambda_expression] = STATE(3592), - [sym_lambda_capture_specifier] = STATE(5577), - [sym_fold_expression] = STATE(3592), - [sym_parameter_pack_expansion] = STATE(3592), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3601), - [sym_qualified_type_identifier] = STATE(7942), - [sym_user_defined_literal] = STATE(3601), - [sym_identifier] = ACTIONS(2485), - [anon_sym_LPAREN2] = ACTIONS(4676), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2497), - [anon_sym_not] = ACTIONS(2487), - [anon_sym_compl] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(2499), - [anon_sym___alignof__] = ACTIONS(2501), - [anon_sym___alignof] = ACTIONS(2501), - [anon_sym__alignof] = ACTIONS(2501), - [anon_sym_alignof] = ACTIONS(2501), - [anon_sym__Alignof] = ACTIONS(2501), - [anon_sym_offsetof] = ACTIONS(2503), - [anon_sym__Generic] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2507), - [anon_sym___asm__] = ACTIONS(2507), - [anon_sym___asm] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2511), - [anon_sym_u_SQUOTE] = ACTIONS(2511), - [anon_sym_U_SQUOTE] = ACTIONS(2511), - [anon_sym_u8_SQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [anon_sym_NULL] = ACTIONS(2517), - [anon_sym_nullptr] = ACTIONS(2517), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2515), + [STATE(857)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token2] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym___try] = ACTIONS(4196), + [anon_sym___leave] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), }, - [STATE(1418)] = { - [sym_expression] = STATE(2399), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(858)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_include_token1] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_BANG] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym___cdecl] = ACTIONS(4107), + [anon_sym___clrcall] = ACTIONS(4107), + [anon_sym___stdcall] = ACTIONS(4107), + [anon_sym___fastcall] = ACTIONS(4107), + [anon_sym___thiscall] = ACTIONS(4107), + [anon_sym___vectorcall] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4109), + [anon_sym_RBRACE] = ACTIONS(4109), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_switch] = ACTIONS(4107), + [anon_sym_case] = ACTIONS(4107), + [anon_sym_default] = ACTIONS(4107), + [anon_sym_while] = ACTIONS(4107), + [anon_sym_do] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_goto] = ACTIONS(4107), + [anon_sym___try] = ACTIONS(4107), + [anon_sym___leave] = ACTIONS(4107), + [anon_sym_not] = ACTIONS(4107), + [anon_sym_compl] = ACTIONS(4107), + [anon_sym_DASH_DASH] = ACTIONS(4109), + [anon_sym_PLUS_PLUS] = ACTIONS(4109), + [anon_sym_sizeof] = ACTIONS(4107), + [anon_sym___alignof__] = ACTIONS(4107), + [anon_sym___alignof] = ACTIONS(4107), + [anon_sym__alignof] = ACTIONS(4107), + [anon_sym_alignof] = ACTIONS(4107), + [anon_sym__Alignof] = ACTIONS(4107), + [anon_sym_offsetof] = ACTIONS(4107), + [anon_sym__Generic] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [anon_sym_asm] = ACTIONS(4107), + [anon_sym___asm__] = ACTIONS(4107), + [anon_sym___asm] = ACTIONS(4107), + [sym_number_literal] = ACTIONS(4109), + [anon_sym_L_SQUOTE] = ACTIONS(4109), + [anon_sym_u_SQUOTE] = ACTIONS(4109), + [anon_sym_U_SQUOTE] = ACTIONS(4109), + [anon_sym_u8_SQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4109), + [anon_sym_L_DQUOTE] = ACTIONS(4109), + [anon_sym_u_DQUOTE] = ACTIONS(4109), + [anon_sym_U_DQUOTE] = ACTIONS(4109), + [anon_sym_u8_DQUOTE] = ACTIONS(4109), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [anon_sym_NULL] = ACTIONS(4107), + [anon_sym_nullptr] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_try] = ACTIONS(4107), + [anon_sym_delete] = ACTIONS(4107), + [anon_sym_throw] = ACTIONS(4107), + [anon_sym_namespace] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_concept] = ACTIONS(4107), + [anon_sym_co_return] = ACTIONS(4107), + [anon_sym_co_yield] = ACTIONS(4107), + [anon_sym_R_DQUOTE] = ACTIONS(4109), + [anon_sym_LR_DQUOTE] = ACTIONS(4109), + [anon_sym_uR_DQUOTE] = ACTIONS(4109), + [anon_sym_UR_DQUOTE] = ACTIONS(4109), + [anon_sym_u8R_DQUOTE] = ACTIONS(4109), + [anon_sym_co_await] = ACTIONS(4107), + [anon_sym_new] = ACTIONS(4107), + [anon_sym_requires] = ACTIONS(4107), + [anon_sym_CARET_CARET] = ACTIONS(4109), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + [sym_this] = ACTIONS(4107), }, - [STATE(1419)] = { - [sym_expression] = STATE(3117), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(859)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token2] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_AMP_AMP] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4141), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4141), + [anon_sym_PLUS_PLUS] = ACTIONS(4141), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4141), + [anon_sym_L_SQUOTE] = ACTIONS(4141), + [anon_sym_u_SQUOTE] = ACTIONS(4141), + [anon_sym_U_SQUOTE] = ACTIONS(4141), + [anon_sym_u8_SQUOTE] = ACTIONS(4141), + [anon_sym_SQUOTE] = ACTIONS(4141), + [anon_sym_L_DQUOTE] = ACTIONS(4141), + [anon_sym_u_DQUOTE] = ACTIONS(4141), + [anon_sym_U_DQUOTE] = ACTIONS(4141), + [anon_sym_u8_DQUOTE] = ACTIONS(4141), + [anon_sym_DQUOTE] = ACTIONS(4141), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4141), + [anon_sym_LR_DQUOTE] = ACTIONS(4141), + [anon_sym_uR_DQUOTE] = ACTIONS(4141), + [anon_sym_UR_DQUOTE] = ACTIONS(4141), + [anon_sym_u8R_DQUOTE] = ACTIONS(4141), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4141), + [anon_sym_LBRACK_COLON] = ACTIONS(4141), + [sym_this] = ACTIONS(4138), }, - [STATE(1420)] = { - [sym_expression] = STATE(2918), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(4978), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(860)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, - [STATE(1421)] = { - [sym_expression] = STATE(4401), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(861)] = { + [sym_identifier] = ACTIONS(4054), + [aux_sym_preproc_include_token1] = ACTIONS(4054), + [aux_sym_preproc_def_token1] = ACTIONS(4054), + [aux_sym_preproc_if_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), + [sym_preproc_directive] = ACTIONS(4054), + [anon_sym_LPAREN2] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_AMP_AMP] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym___extension__] = ACTIONS(4054), + [anon_sym_typedef] = ACTIONS(4054), + [anon_sym_virtual] = ACTIONS(4054), + [anon_sym_extern] = ACTIONS(4054), + [anon_sym___attribute__] = ACTIONS(4054), + [anon_sym___attribute] = ACTIONS(4054), + [anon_sym_using] = ACTIONS(4054), + [anon_sym_COLON_COLON] = ACTIONS(4056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), + [anon_sym___declspec] = ACTIONS(4054), + [anon_sym___based] = ACTIONS(4054), + [anon_sym___cdecl] = ACTIONS(4054), + [anon_sym___clrcall] = ACTIONS(4054), + [anon_sym___stdcall] = ACTIONS(4054), + [anon_sym___fastcall] = ACTIONS(4054), + [anon_sym___thiscall] = ACTIONS(4054), + [anon_sym___vectorcall] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_signed] = ACTIONS(4054), + [anon_sym_unsigned] = ACTIONS(4054), + [anon_sym_long] = ACTIONS(4054), + [anon_sym_short] = ACTIONS(4054), + [anon_sym_LBRACK] = ACTIONS(4054), + [anon_sym_static] = ACTIONS(4054), + [anon_sym_register] = ACTIONS(4054), + [anon_sym_inline] = ACTIONS(4054), + [anon_sym___inline] = ACTIONS(4054), + [anon_sym___inline__] = ACTIONS(4054), + [anon_sym___forceinline] = ACTIONS(4054), + [anon_sym_thread_local] = ACTIONS(4054), + [anon_sym___thread] = ACTIONS(4054), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_constexpr] = ACTIONS(4054), + [anon_sym_volatile] = ACTIONS(4054), + [anon_sym_restrict] = ACTIONS(4054), + [anon_sym___restrict__] = ACTIONS(4054), + [anon_sym__Atomic] = ACTIONS(4054), + [anon_sym__Noreturn] = ACTIONS(4054), + [anon_sym_noreturn] = ACTIONS(4054), + [anon_sym__Nonnull] = ACTIONS(4054), + [anon_sym_mutable] = ACTIONS(4054), + [anon_sym_constinit] = ACTIONS(4054), + [anon_sym_consteval] = ACTIONS(4054), + [anon_sym_alignas] = ACTIONS(4054), + [anon_sym__Alignas] = ACTIONS(4054), + [sym_primitive_type] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_class] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_switch] = ACTIONS(4054), + [anon_sym_case] = ACTIONS(4054), + [anon_sym_default] = ACTIONS(4054), + [anon_sym_while] = ACTIONS(4054), + [anon_sym_do] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym___try] = ACTIONS(4054), + [anon_sym___leave] = ACTIONS(4054), + [anon_sym_not] = ACTIONS(4054), + [anon_sym_compl] = ACTIONS(4054), + [anon_sym_DASH_DASH] = ACTIONS(4056), + [anon_sym_PLUS_PLUS] = ACTIONS(4056), + [anon_sym_sizeof] = ACTIONS(4054), + [anon_sym___alignof__] = ACTIONS(4054), + [anon_sym___alignof] = ACTIONS(4054), + [anon_sym__alignof] = ACTIONS(4054), + [anon_sym_alignof] = ACTIONS(4054), + [anon_sym__Alignof] = ACTIONS(4054), + [anon_sym_offsetof] = ACTIONS(4054), + [anon_sym__Generic] = ACTIONS(4054), + [anon_sym_typename] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym___asm__] = ACTIONS(4054), + [anon_sym___asm] = ACTIONS(4054), + [sym_number_literal] = ACTIONS(4056), + [anon_sym_L_SQUOTE] = ACTIONS(4056), + [anon_sym_u_SQUOTE] = ACTIONS(4056), + [anon_sym_U_SQUOTE] = ACTIONS(4056), + [anon_sym_u8_SQUOTE] = ACTIONS(4056), + [anon_sym_SQUOTE] = ACTIONS(4056), + [anon_sym_L_DQUOTE] = ACTIONS(4056), + [anon_sym_u_DQUOTE] = ACTIONS(4056), + [anon_sym_U_DQUOTE] = ACTIONS(4056), + [anon_sym_u8_DQUOTE] = ACTIONS(4056), + [anon_sym_DQUOTE] = ACTIONS(4056), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [anon_sym_NULL] = ACTIONS(4054), + [anon_sym_nullptr] = ACTIONS(4054), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4054), + [anon_sym_decltype] = ACTIONS(4054), + [anon_sym_explicit] = ACTIONS(4054), + [anon_sym_template] = ACTIONS(4054), + [anon_sym_operator] = ACTIONS(4054), + [anon_sym_try] = ACTIONS(4054), + [anon_sym_delete] = ACTIONS(4054), + [anon_sym_throw] = ACTIONS(4054), + [anon_sym_namespace] = ACTIONS(4054), + [anon_sym_static_assert] = ACTIONS(4054), + [anon_sym_concept] = ACTIONS(4054), + [anon_sym_co_return] = ACTIONS(4054), + [anon_sym_co_yield] = ACTIONS(4054), + [anon_sym_R_DQUOTE] = ACTIONS(4056), + [anon_sym_LR_DQUOTE] = ACTIONS(4056), + [anon_sym_uR_DQUOTE] = ACTIONS(4056), + [anon_sym_UR_DQUOTE] = ACTIONS(4056), + [anon_sym_u8R_DQUOTE] = ACTIONS(4056), + [anon_sym_co_await] = ACTIONS(4054), + [anon_sym_new] = ACTIONS(4054), + [anon_sym_requires] = ACTIONS(4054), + [anon_sym_CARET_CARET] = ACTIONS(4056), + [anon_sym_LBRACK_COLON] = ACTIONS(4056), + [sym_this] = ACTIONS(4054), }, - [STATE(1422)] = { - [sym_expression] = STATE(3743), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(862)] = { + [sym_identifier] = ACTIONS(4058), + [aux_sym_preproc_include_token1] = ACTIONS(4058), + [aux_sym_preproc_def_token1] = ACTIONS(4058), + [aux_sym_preproc_if_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), + [sym_preproc_directive] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_AMP_AMP] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym___extension__] = ACTIONS(4058), + [anon_sym_typedef] = ACTIONS(4058), + [anon_sym_virtual] = ACTIONS(4058), + [anon_sym_extern] = ACTIONS(4058), + [anon_sym___attribute__] = ACTIONS(4058), + [anon_sym___attribute] = ACTIONS(4058), + [anon_sym_using] = ACTIONS(4058), + [anon_sym_COLON_COLON] = ACTIONS(4060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), + [anon_sym___declspec] = ACTIONS(4058), + [anon_sym___based] = ACTIONS(4058), + [anon_sym___cdecl] = ACTIONS(4058), + [anon_sym___clrcall] = ACTIONS(4058), + [anon_sym___stdcall] = ACTIONS(4058), + [anon_sym___fastcall] = ACTIONS(4058), + [anon_sym___thiscall] = ACTIONS(4058), + [anon_sym___vectorcall] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4058), + [anon_sym_unsigned] = ACTIONS(4058), + [anon_sym_long] = ACTIONS(4058), + [anon_sym_short] = ACTIONS(4058), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_static] = ACTIONS(4058), + [anon_sym_register] = ACTIONS(4058), + [anon_sym_inline] = ACTIONS(4058), + [anon_sym___inline] = ACTIONS(4058), + [anon_sym___inline__] = ACTIONS(4058), + [anon_sym___forceinline] = ACTIONS(4058), + [anon_sym_thread_local] = ACTIONS(4058), + [anon_sym___thread] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_constexpr] = ACTIONS(4058), + [anon_sym_volatile] = ACTIONS(4058), + [anon_sym_restrict] = ACTIONS(4058), + [anon_sym___restrict__] = ACTIONS(4058), + [anon_sym__Atomic] = ACTIONS(4058), + [anon_sym__Noreturn] = ACTIONS(4058), + [anon_sym_noreturn] = ACTIONS(4058), + [anon_sym__Nonnull] = ACTIONS(4058), + [anon_sym_mutable] = ACTIONS(4058), + [anon_sym_constinit] = ACTIONS(4058), + [anon_sym_consteval] = ACTIONS(4058), + [anon_sym_alignas] = ACTIONS(4058), + [anon_sym__Alignas] = ACTIONS(4058), + [sym_primitive_type] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_class] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_switch] = ACTIONS(4058), + [anon_sym_case] = ACTIONS(4058), + [anon_sym_default] = ACTIONS(4058), + [anon_sym_while] = ACTIONS(4058), + [anon_sym_do] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym___try] = ACTIONS(4058), + [anon_sym___leave] = ACTIONS(4058), + [anon_sym_not] = ACTIONS(4058), + [anon_sym_compl] = ACTIONS(4058), + [anon_sym_DASH_DASH] = ACTIONS(4060), + [anon_sym_PLUS_PLUS] = ACTIONS(4060), + [anon_sym_sizeof] = ACTIONS(4058), + [anon_sym___alignof__] = ACTIONS(4058), + [anon_sym___alignof] = ACTIONS(4058), + [anon_sym__alignof] = ACTIONS(4058), + [anon_sym_alignof] = ACTIONS(4058), + [anon_sym__Alignof] = ACTIONS(4058), + [anon_sym_offsetof] = ACTIONS(4058), + [anon_sym__Generic] = ACTIONS(4058), + [anon_sym_typename] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym___asm__] = ACTIONS(4058), + [anon_sym___asm] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4060), + [anon_sym_L_SQUOTE] = ACTIONS(4060), + [anon_sym_u_SQUOTE] = ACTIONS(4060), + [anon_sym_U_SQUOTE] = ACTIONS(4060), + [anon_sym_u8_SQUOTE] = ACTIONS(4060), + [anon_sym_SQUOTE] = ACTIONS(4060), + [anon_sym_L_DQUOTE] = ACTIONS(4060), + [anon_sym_u_DQUOTE] = ACTIONS(4060), + [anon_sym_U_DQUOTE] = ACTIONS(4060), + [anon_sym_u8_DQUOTE] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(4060), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [anon_sym_NULL] = ACTIONS(4058), + [anon_sym_nullptr] = ACTIONS(4058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4058), + [anon_sym_decltype] = ACTIONS(4058), + [anon_sym_explicit] = ACTIONS(4058), + [anon_sym_template] = ACTIONS(4058), + [anon_sym_operator] = ACTIONS(4058), + [anon_sym_try] = ACTIONS(4058), + [anon_sym_delete] = ACTIONS(4058), + [anon_sym_throw] = ACTIONS(4058), + [anon_sym_namespace] = ACTIONS(4058), + [anon_sym_static_assert] = ACTIONS(4058), + [anon_sym_concept] = ACTIONS(4058), + [anon_sym_co_return] = ACTIONS(4058), + [anon_sym_co_yield] = ACTIONS(4058), + [anon_sym_R_DQUOTE] = ACTIONS(4060), + [anon_sym_LR_DQUOTE] = ACTIONS(4060), + [anon_sym_uR_DQUOTE] = ACTIONS(4060), + [anon_sym_UR_DQUOTE] = ACTIONS(4060), + [anon_sym_u8R_DQUOTE] = ACTIONS(4060), + [anon_sym_co_await] = ACTIONS(4058), + [anon_sym_new] = ACTIONS(4058), + [anon_sym_requires] = ACTIONS(4058), + [anon_sym_CARET_CARET] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4060), + [sym_this] = ACTIONS(4058), }, - [STATE(1423)] = { - [sym_expression] = STATE(3866), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(863)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_include_token1] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym___cdecl] = ACTIONS(4062), + [anon_sym___clrcall] = ACTIONS(4062), + [anon_sym___stdcall] = ACTIONS(4062), + [anon_sym___fastcall] = ACTIONS(4062), + [anon_sym___thiscall] = ACTIONS(4062), + [anon_sym___vectorcall] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_switch] = ACTIONS(4062), + [anon_sym_case] = ACTIONS(4062), + [anon_sym_default] = ACTIONS(4062), + [anon_sym_while] = ACTIONS(4062), + [anon_sym_do] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym___try] = ACTIONS(4062), + [anon_sym___leave] = ACTIONS(4062), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4062), + [anon_sym___alignof__] = ACTIONS(4062), + [anon_sym___alignof] = ACTIONS(4062), + [anon_sym__alignof] = ACTIONS(4062), + [anon_sym_alignof] = ACTIONS(4062), + [anon_sym__Alignof] = ACTIONS(4062), + [anon_sym_offsetof] = ACTIONS(4062), + [anon_sym__Generic] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym___asm__] = ACTIONS(4062), + [anon_sym___asm] = ACTIONS(4062), + [sym_number_literal] = ACTIONS(4064), + [anon_sym_L_SQUOTE] = ACTIONS(4064), + [anon_sym_u_SQUOTE] = ACTIONS(4064), + [anon_sym_U_SQUOTE] = ACTIONS(4064), + [anon_sym_u8_SQUOTE] = ACTIONS(4064), + [anon_sym_SQUOTE] = ACTIONS(4064), + [anon_sym_L_DQUOTE] = ACTIONS(4064), + [anon_sym_u_DQUOTE] = ACTIONS(4064), + [anon_sym_U_DQUOTE] = ACTIONS(4064), + [anon_sym_u8_DQUOTE] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [anon_sym_NULL] = ACTIONS(4062), + [anon_sym_nullptr] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_try] = ACTIONS(4062), + [anon_sym_delete] = ACTIONS(4062), + [anon_sym_throw] = ACTIONS(4062), + [anon_sym_namespace] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_concept] = ACTIONS(4062), + [anon_sym_co_return] = ACTIONS(4062), + [anon_sym_co_yield] = ACTIONS(4062), + [anon_sym_R_DQUOTE] = ACTIONS(4064), + [anon_sym_LR_DQUOTE] = ACTIONS(4064), + [anon_sym_uR_DQUOTE] = ACTIONS(4064), + [anon_sym_UR_DQUOTE] = ACTIONS(4064), + [anon_sym_u8R_DQUOTE] = ACTIONS(4064), + [anon_sym_co_await] = ACTIONS(4062), + [anon_sym_new] = ACTIONS(4062), + [anon_sym_requires] = ACTIONS(4062), + [anon_sym_CARET_CARET] = ACTIONS(4064), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + [sym_this] = ACTIONS(4062), }, - [STATE(1424)] = { - [sym_expression] = STATE(2959), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(864)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_include_token1] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym___cdecl] = ACTIONS(4066), + [anon_sym___clrcall] = ACTIONS(4066), + [anon_sym___stdcall] = ACTIONS(4066), + [anon_sym___fastcall] = ACTIONS(4066), + [anon_sym___thiscall] = ACTIONS(4066), + [anon_sym___vectorcall] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym___try] = ACTIONS(4066), + [anon_sym___leave] = ACTIONS(4066), + [anon_sym_not] = ACTIONS(4066), + [anon_sym_compl] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4068), + [anon_sym_PLUS_PLUS] = ACTIONS(4068), + [anon_sym_sizeof] = ACTIONS(4066), + [anon_sym___alignof__] = ACTIONS(4066), + [anon_sym___alignof] = ACTIONS(4066), + [anon_sym__alignof] = ACTIONS(4066), + [anon_sym_alignof] = ACTIONS(4066), + [anon_sym__Alignof] = ACTIONS(4066), + [anon_sym_offsetof] = ACTIONS(4066), + [anon_sym__Generic] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym___asm__] = ACTIONS(4066), + [anon_sym___asm] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4068), + [anon_sym_L_SQUOTE] = ACTIONS(4068), + [anon_sym_u_SQUOTE] = ACTIONS(4068), + [anon_sym_U_SQUOTE] = ACTIONS(4068), + [anon_sym_u8_SQUOTE] = ACTIONS(4068), + [anon_sym_SQUOTE] = ACTIONS(4068), + [anon_sym_L_DQUOTE] = ACTIONS(4068), + [anon_sym_u_DQUOTE] = ACTIONS(4068), + [anon_sym_U_DQUOTE] = ACTIONS(4068), + [anon_sym_u8_DQUOTE] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(4068), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [anon_sym_NULL] = ACTIONS(4066), + [anon_sym_nullptr] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_try] = ACTIONS(4066), + [anon_sym_delete] = ACTIONS(4066), + [anon_sym_throw] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_concept] = ACTIONS(4066), + [anon_sym_co_return] = ACTIONS(4066), + [anon_sym_co_yield] = ACTIONS(4066), + [anon_sym_R_DQUOTE] = ACTIONS(4068), + [anon_sym_LR_DQUOTE] = ACTIONS(4068), + [anon_sym_uR_DQUOTE] = ACTIONS(4068), + [anon_sym_UR_DQUOTE] = ACTIONS(4068), + [anon_sym_u8R_DQUOTE] = ACTIONS(4068), + [anon_sym_co_await] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_requires] = ACTIONS(4066), + [anon_sym_CARET_CARET] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + [sym_this] = ACTIONS(4066), }, - [STATE(1425)] = { - [sym_expression] = STATE(3743), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(865)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(1426)] = { - [sym_expression] = STATE(3866), - [sym__string] = STATE(4231), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(2939), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(2939), - [sym_call_expression] = STATE(2939), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(2939), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(2939), - [sym_char_literal] = STATE(4231), - [sym_concatenated_string] = STATE(4231), - [sym_string_literal] = STATE(3105), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3105), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2939), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(2939), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LPAREN2] = ACTIONS(4690), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(3629), - [anon_sym_COLON_COLON] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3625), - [anon_sym_compl] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(4405), - [anon_sym_PLUS_PLUS] = ACTIONS(4405), - [anon_sym_sizeof] = ACTIONS(3635), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3637), - [anon_sym_L_SQUOTE] = ACTIONS(3639), - [anon_sym_u_SQUOTE] = ACTIONS(3639), - [anon_sym_U_SQUOTE] = ACTIONS(3639), - [anon_sym_u8_SQUOTE] = ACTIONS(3639), - [anon_sym_SQUOTE] = ACTIONS(3639), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3643), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - [anon_sym_co_await] = ACTIONS(3647), - [anon_sym_new] = ACTIONS(3649), - [anon_sym_requires] = ACTIONS(3651), - [sym_this] = ACTIONS(229), + [STATE(866)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(1427)] = { - [sym_expression] = STATE(2960), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(867)] = { + [sym_identifier] = ACTIONS(4046), + [aux_sym_preproc_include_token1] = ACTIONS(4046), + [aux_sym_preproc_def_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token1] = ACTIONS(4046), + [aux_sym_preproc_if_token2] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), + [sym_preproc_directive] = ACTIONS(4046), + [anon_sym_LPAREN2] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_AMP_AMP] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_SEMI] = ACTIONS(4048), + [anon_sym___extension__] = ACTIONS(4046), + [anon_sym_typedef] = ACTIONS(4046), + [anon_sym_virtual] = ACTIONS(4046), + [anon_sym_extern] = ACTIONS(4046), + [anon_sym___attribute__] = ACTIONS(4046), + [anon_sym___attribute] = ACTIONS(4046), + [anon_sym_using] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(4048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), + [anon_sym___declspec] = ACTIONS(4046), + [anon_sym___based] = ACTIONS(4046), + [anon_sym___cdecl] = ACTIONS(4046), + [anon_sym___clrcall] = ACTIONS(4046), + [anon_sym___stdcall] = ACTIONS(4046), + [anon_sym___fastcall] = ACTIONS(4046), + [anon_sym___thiscall] = ACTIONS(4046), + [anon_sym___vectorcall] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4046), + [anon_sym_unsigned] = ACTIONS(4046), + [anon_sym_long] = ACTIONS(4046), + [anon_sym_short] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_static] = ACTIONS(4046), + [anon_sym_register] = ACTIONS(4046), + [anon_sym_inline] = ACTIONS(4046), + [anon_sym___inline] = ACTIONS(4046), + [anon_sym___inline__] = ACTIONS(4046), + [anon_sym___forceinline] = ACTIONS(4046), + [anon_sym_thread_local] = ACTIONS(4046), + [anon_sym___thread] = ACTIONS(4046), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_constexpr] = ACTIONS(4046), + [anon_sym_volatile] = ACTIONS(4046), + [anon_sym_restrict] = ACTIONS(4046), + [anon_sym___restrict__] = ACTIONS(4046), + [anon_sym__Atomic] = ACTIONS(4046), + [anon_sym__Noreturn] = ACTIONS(4046), + [anon_sym_noreturn] = ACTIONS(4046), + [anon_sym__Nonnull] = ACTIONS(4046), + [anon_sym_mutable] = ACTIONS(4046), + [anon_sym_constinit] = ACTIONS(4046), + [anon_sym_consteval] = ACTIONS(4046), + [anon_sym_alignas] = ACTIONS(4046), + [anon_sym__Alignas] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_class] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_if] = ACTIONS(4046), + [anon_sym_switch] = ACTIONS(4046), + [anon_sym_case] = ACTIONS(4046), + [anon_sym_default] = ACTIONS(4046), + [anon_sym_while] = ACTIONS(4046), + [anon_sym_do] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4046), + [anon_sym_break] = ACTIONS(4046), + [anon_sym_continue] = ACTIONS(4046), + [anon_sym_goto] = ACTIONS(4046), + [anon_sym___try] = ACTIONS(4046), + [anon_sym___leave] = ACTIONS(4046), + [anon_sym_not] = ACTIONS(4046), + [anon_sym_compl] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4048), + [anon_sym_PLUS_PLUS] = ACTIONS(4048), + [anon_sym_sizeof] = ACTIONS(4046), + [anon_sym___alignof__] = ACTIONS(4046), + [anon_sym___alignof] = ACTIONS(4046), + [anon_sym__alignof] = ACTIONS(4046), + [anon_sym_alignof] = ACTIONS(4046), + [anon_sym__Alignof] = ACTIONS(4046), + [anon_sym_offsetof] = ACTIONS(4046), + [anon_sym__Generic] = ACTIONS(4046), + [anon_sym_typename] = ACTIONS(4046), + [anon_sym_asm] = ACTIONS(4046), + [anon_sym___asm__] = ACTIONS(4046), + [anon_sym___asm] = ACTIONS(4046), + [sym_number_literal] = ACTIONS(4048), + [anon_sym_L_SQUOTE] = ACTIONS(4048), + [anon_sym_u_SQUOTE] = ACTIONS(4048), + [anon_sym_U_SQUOTE] = ACTIONS(4048), + [anon_sym_u8_SQUOTE] = ACTIONS(4048), + [anon_sym_SQUOTE] = ACTIONS(4048), + [anon_sym_L_DQUOTE] = ACTIONS(4048), + [anon_sym_u_DQUOTE] = ACTIONS(4048), + [anon_sym_U_DQUOTE] = ACTIONS(4048), + [anon_sym_u8_DQUOTE] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(4048), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [anon_sym_NULL] = ACTIONS(4046), + [anon_sym_nullptr] = ACTIONS(4046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4046), + [anon_sym_decltype] = ACTIONS(4046), + [anon_sym_explicit] = ACTIONS(4046), + [anon_sym_template] = ACTIONS(4046), + [anon_sym_operator] = ACTIONS(4046), + [anon_sym_try] = ACTIONS(4046), + [anon_sym_delete] = ACTIONS(4046), + [anon_sym_throw] = ACTIONS(4046), + [anon_sym_namespace] = ACTIONS(4046), + [anon_sym_static_assert] = ACTIONS(4046), + [anon_sym_concept] = ACTIONS(4046), + [anon_sym_co_return] = ACTIONS(4046), + [anon_sym_co_yield] = ACTIONS(4046), + [anon_sym_R_DQUOTE] = ACTIONS(4048), + [anon_sym_LR_DQUOTE] = ACTIONS(4048), + [anon_sym_uR_DQUOTE] = ACTIONS(4048), + [anon_sym_UR_DQUOTE] = ACTIONS(4048), + [anon_sym_u8R_DQUOTE] = ACTIONS(4048), + [anon_sym_co_await] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4046), + [anon_sym_requires] = ACTIONS(4046), + [anon_sym_CARET_CARET] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4048), + [sym_this] = ACTIONS(4046), }, - [STATE(1428)] = { - [sym_expression] = STATE(2963), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(868)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1429)] = { - [sym_expression] = STATE(2338), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(869)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_include_token1] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym___cdecl] = ACTIONS(4070), + [anon_sym___clrcall] = ACTIONS(4070), + [anon_sym___stdcall] = ACTIONS(4070), + [anon_sym___fastcall] = ACTIONS(4070), + [anon_sym___thiscall] = ACTIONS(4070), + [anon_sym___vectorcall] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_switch] = ACTIONS(4070), + [anon_sym_case] = ACTIONS(4070), + [anon_sym_default] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_goto] = ACTIONS(4070), + [anon_sym___try] = ACTIONS(4070), + [anon_sym___leave] = ACTIONS(4070), + [anon_sym_not] = ACTIONS(4070), + [anon_sym_compl] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_sizeof] = ACTIONS(4070), + [anon_sym___alignof__] = ACTIONS(4070), + [anon_sym___alignof] = ACTIONS(4070), + [anon_sym__alignof] = ACTIONS(4070), + [anon_sym_alignof] = ACTIONS(4070), + [anon_sym__Alignof] = ACTIONS(4070), + [anon_sym_offsetof] = ACTIONS(4070), + [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [anon_sym_asm] = ACTIONS(4070), + [anon_sym___asm__] = ACTIONS(4070), + [anon_sym___asm] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(4072), + [anon_sym_L_SQUOTE] = ACTIONS(4072), + [anon_sym_u_SQUOTE] = ACTIONS(4072), + [anon_sym_U_SQUOTE] = ACTIONS(4072), + [anon_sym_u8_SQUOTE] = ACTIONS(4072), + [anon_sym_SQUOTE] = ACTIONS(4072), + [anon_sym_L_DQUOTE] = ACTIONS(4072), + [anon_sym_u_DQUOTE] = ACTIONS(4072), + [anon_sym_U_DQUOTE] = ACTIONS(4072), + [anon_sym_u8_DQUOTE] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4072), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [anon_sym_NULL] = ACTIONS(4070), + [anon_sym_nullptr] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_delete] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_namespace] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_concept] = ACTIONS(4070), + [anon_sym_co_return] = ACTIONS(4070), + [anon_sym_co_yield] = ACTIONS(4070), + [anon_sym_R_DQUOTE] = ACTIONS(4072), + [anon_sym_LR_DQUOTE] = ACTIONS(4072), + [anon_sym_uR_DQUOTE] = ACTIONS(4072), + [anon_sym_UR_DQUOTE] = ACTIONS(4072), + [anon_sym_u8R_DQUOTE] = ACTIONS(4072), + [anon_sym_co_await] = ACTIONS(4070), + [anon_sym_new] = ACTIONS(4070), + [anon_sym_requires] = ACTIONS(4070), + [anon_sym_CARET_CARET] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [sym_this] = ACTIONS(4070), }, - [STATE(1430)] = { - [sym_expression] = STATE(2346), - [sym__string] = STATE(3150), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(3150), - [sym_concatenated_string] = STATE(3150), - [sym_string_literal] = STATE(2269), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2269), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(4672), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_compl] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_sizeof] = ACTIONS(2313), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2315), - [anon_sym_L_SQUOTE] = ACTIONS(2317), - [anon_sym_u_SQUOTE] = ACTIONS(2317), - [anon_sym_U_SQUOTE] = ACTIONS(2317), - [anon_sym_u8_SQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_L_DQUOTE] = ACTIONS(2319), - [anon_sym_u_DQUOTE] = ACTIONS(2319), - [anon_sym_U_DQUOTE] = ACTIONS(2319), - [anon_sym_u8_DQUOTE] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2321), - [anon_sym_R_DQUOTE] = ACTIONS(2323), - [anon_sym_LR_DQUOTE] = ACTIONS(2323), - [anon_sym_uR_DQUOTE] = ACTIONS(2323), - [anon_sym_UR_DQUOTE] = ACTIONS(2323), - [anon_sym_u8R_DQUOTE] = ACTIONS(2323), - [anon_sym_co_await] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(870)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym___try] = ACTIONS(4152), + [anon_sym___leave] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), }, - [STATE(1431)] = { - [sym_expression] = STATE(2974), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(871)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_include_token1] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym___cdecl] = ACTIONS(4074), + [anon_sym___clrcall] = ACTIONS(4074), + [anon_sym___stdcall] = ACTIONS(4074), + [anon_sym___fastcall] = ACTIONS(4074), + [anon_sym___thiscall] = ACTIONS(4074), + [anon_sym___vectorcall] = ACTIONS(4074), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_if] = ACTIONS(4074), + [anon_sym_switch] = ACTIONS(4074), + [anon_sym_case] = ACTIONS(4074), + [anon_sym_default] = ACTIONS(4074), + [anon_sym_while] = ACTIONS(4074), + [anon_sym_do] = ACTIONS(4074), + [anon_sym_for] = ACTIONS(4074), + [anon_sym_return] = ACTIONS(4074), + [anon_sym_break] = ACTIONS(4074), + [anon_sym_continue] = ACTIONS(4074), + [anon_sym_goto] = ACTIONS(4074), + [anon_sym___try] = ACTIONS(4074), + [anon_sym___leave] = ACTIONS(4074), + [anon_sym_not] = ACTIONS(4074), + [anon_sym_compl] = ACTIONS(4074), + [anon_sym_DASH_DASH] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(4076), + [anon_sym_sizeof] = ACTIONS(4074), + [anon_sym___alignof__] = ACTIONS(4074), + [anon_sym___alignof] = ACTIONS(4074), + [anon_sym__alignof] = ACTIONS(4074), + [anon_sym_alignof] = ACTIONS(4074), + [anon_sym__Alignof] = ACTIONS(4074), + [anon_sym_offsetof] = ACTIONS(4074), + [anon_sym__Generic] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [anon_sym_asm] = ACTIONS(4074), + [anon_sym___asm__] = ACTIONS(4074), + [anon_sym___asm] = ACTIONS(4074), + [sym_number_literal] = ACTIONS(4076), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4076), + [anon_sym_u_DQUOTE] = ACTIONS(4076), + [anon_sym_U_DQUOTE] = ACTIONS(4076), + [anon_sym_u8_DQUOTE] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(4076), + [sym_true] = ACTIONS(4074), + [sym_false] = ACTIONS(4074), + [anon_sym_NULL] = ACTIONS(4074), + [anon_sym_nullptr] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_try] = ACTIONS(4074), + [anon_sym_delete] = ACTIONS(4074), + [anon_sym_throw] = ACTIONS(4074), + [anon_sym_namespace] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_concept] = ACTIONS(4074), + [anon_sym_co_return] = ACTIONS(4074), + [anon_sym_co_yield] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(4076), + [anon_sym_LR_DQUOTE] = ACTIONS(4076), + [anon_sym_uR_DQUOTE] = ACTIONS(4076), + [anon_sym_UR_DQUOTE] = ACTIONS(4076), + [anon_sym_u8R_DQUOTE] = ACTIONS(4076), + [anon_sym_co_await] = ACTIONS(4074), + [anon_sym_new] = ACTIONS(4074), + [anon_sym_requires] = ACTIONS(4074), + [anon_sym_CARET_CARET] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + [sym_this] = ACTIONS(4074), }, - [STATE(1432)] = { - [sym_expression] = STATE(3161), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(872)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_include_token1] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4078), + [anon_sym_PLUS] = ACTIONS(4078), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym___cdecl] = ACTIONS(4078), + [anon_sym___clrcall] = ACTIONS(4078), + [anon_sym___stdcall] = ACTIONS(4078), + [anon_sym___fastcall] = ACTIONS(4078), + [anon_sym___thiscall] = ACTIONS(4078), + [anon_sym___vectorcall] = ACTIONS(4078), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_if] = ACTIONS(4078), + [anon_sym_switch] = ACTIONS(4078), + [anon_sym_case] = ACTIONS(4078), + [anon_sym_default] = ACTIONS(4078), + [anon_sym_while] = ACTIONS(4078), + [anon_sym_do] = ACTIONS(4078), + [anon_sym_for] = ACTIONS(4078), + [anon_sym_return] = ACTIONS(4078), + [anon_sym_break] = ACTIONS(4078), + [anon_sym_continue] = ACTIONS(4078), + [anon_sym_goto] = ACTIONS(4078), + [anon_sym___try] = ACTIONS(4078), + [anon_sym___leave] = ACTIONS(4078), + [anon_sym_not] = ACTIONS(4078), + [anon_sym_compl] = ACTIONS(4078), + [anon_sym_DASH_DASH] = ACTIONS(4080), + [anon_sym_PLUS_PLUS] = ACTIONS(4080), + [anon_sym_sizeof] = ACTIONS(4078), + [anon_sym___alignof__] = ACTIONS(4078), + [anon_sym___alignof] = ACTIONS(4078), + [anon_sym__alignof] = ACTIONS(4078), + [anon_sym_alignof] = ACTIONS(4078), + [anon_sym__Alignof] = ACTIONS(4078), + [anon_sym_offsetof] = ACTIONS(4078), + [anon_sym__Generic] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [anon_sym_asm] = ACTIONS(4078), + [anon_sym___asm__] = ACTIONS(4078), + [anon_sym___asm] = ACTIONS(4078), + [sym_number_literal] = ACTIONS(4080), + [anon_sym_L_SQUOTE] = ACTIONS(4080), + [anon_sym_u_SQUOTE] = ACTIONS(4080), + [anon_sym_U_SQUOTE] = ACTIONS(4080), + [anon_sym_u8_SQUOTE] = ACTIONS(4080), + [anon_sym_SQUOTE] = ACTIONS(4080), + [anon_sym_L_DQUOTE] = ACTIONS(4080), + [anon_sym_u_DQUOTE] = ACTIONS(4080), + [anon_sym_U_DQUOTE] = ACTIONS(4080), + [anon_sym_u8_DQUOTE] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4080), + [sym_true] = ACTIONS(4078), + [sym_false] = ACTIONS(4078), + [anon_sym_NULL] = ACTIONS(4078), + [anon_sym_nullptr] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_try] = ACTIONS(4078), + [anon_sym_delete] = ACTIONS(4078), + [anon_sym_throw] = ACTIONS(4078), + [anon_sym_namespace] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_concept] = ACTIONS(4078), + [anon_sym_co_return] = ACTIONS(4078), + [anon_sym_co_yield] = ACTIONS(4078), + [anon_sym_R_DQUOTE] = ACTIONS(4080), + [anon_sym_LR_DQUOTE] = ACTIONS(4080), + [anon_sym_uR_DQUOTE] = ACTIONS(4080), + [anon_sym_UR_DQUOTE] = ACTIONS(4080), + [anon_sym_u8R_DQUOTE] = ACTIONS(4080), + [anon_sym_co_await] = ACTIONS(4078), + [anon_sym_new] = ACTIONS(4078), + [anon_sym_requires] = ACTIONS(4078), + [anon_sym_CARET_CARET] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + [sym_this] = ACTIONS(4078), }, - [STATE(1433)] = { - [sym_expression] = STATE(3164), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(873)] = { + [sym_identifier] = ACTIONS(4082), + [aux_sym_preproc_include_token1] = ACTIONS(4082), + [aux_sym_preproc_def_token1] = ACTIONS(4082), + [aux_sym_preproc_if_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), + [sym_preproc_directive] = ACTIONS(4082), + [anon_sym_LPAREN2] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_PLUS] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4082), + [anon_sym_SEMI] = ACTIONS(4084), + [anon_sym___extension__] = ACTIONS(4082), + [anon_sym_typedef] = ACTIONS(4082), + [anon_sym_virtual] = ACTIONS(4082), + [anon_sym_extern] = ACTIONS(4082), + [anon_sym___attribute__] = ACTIONS(4082), + [anon_sym___attribute] = ACTIONS(4082), + [anon_sym_using] = ACTIONS(4082), + [anon_sym_COLON_COLON] = ACTIONS(4084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), + [anon_sym___declspec] = ACTIONS(4082), + [anon_sym___based] = ACTIONS(4082), + [anon_sym___cdecl] = ACTIONS(4082), + [anon_sym___clrcall] = ACTIONS(4082), + [anon_sym___stdcall] = ACTIONS(4082), + [anon_sym___fastcall] = ACTIONS(4082), + [anon_sym___thiscall] = ACTIONS(4082), + [anon_sym___vectorcall] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4082), + [anon_sym_unsigned] = ACTIONS(4082), + [anon_sym_long] = ACTIONS(4082), + [anon_sym_short] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(4082), + [anon_sym_static] = ACTIONS(4082), + [anon_sym_register] = ACTIONS(4082), + [anon_sym_inline] = ACTIONS(4082), + [anon_sym___inline] = ACTIONS(4082), + [anon_sym___inline__] = ACTIONS(4082), + [anon_sym___forceinline] = ACTIONS(4082), + [anon_sym_thread_local] = ACTIONS(4082), + [anon_sym___thread] = ACTIONS(4082), + [anon_sym_const] = ACTIONS(4082), + [anon_sym_constexpr] = ACTIONS(4082), + [anon_sym_volatile] = ACTIONS(4082), + [anon_sym_restrict] = ACTIONS(4082), + [anon_sym___restrict__] = ACTIONS(4082), + [anon_sym__Atomic] = ACTIONS(4082), + [anon_sym__Noreturn] = ACTIONS(4082), + [anon_sym_noreturn] = ACTIONS(4082), + [anon_sym__Nonnull] = ACTIONS(4082), + [anon_sym_mutable] = ACTIONS(4082), + [anon_sym_constinit] = ACTIONS(4082), + [anon_sym_consteval] = ACTIONS(4082), + [anon_sym_alignas] = ACTIONS(4082), + [anon_sym__Alignas] = ACTIONS(4082), + [sym_primitive_type] = ACTIONS(4082), + [anon_sym_enum] = ACTIONS(4082), + [anon_sym_class] = ACTIONS(4082), + [anon_sym_struct] = ACTIONS(4082), + [anon_sym_union] = ACTIONS(4082), + [anon_sym_if] = ACTIONS(4082), + [anon_sym_switch] = ACTIONS(4082), + [anon_sym_case] = ACTIONS(4082), + [anon_sym_default] = ACTIONS(4082), + [anon_sym_while] = ACTIONS(4082), + [anon_sym_do] = ACTIONS(4082), + [anon_sym_for] = ACTIONS(4082), + [anon_sym_return] = ACTIONS(4082), + [anon_sym_break] = ACTIONS(4082), + [anon_sym_continue] = ACTIONS(4082), + [anon_sym_goto] = ACTIONS(4082), + [anon_sym___try] = ACTIONS(4082), + [anon_sym___leave] = ACTIONS(4082), + [anon_sym_not] = ACTIONS(4082), + [anon_sym_compl] = ACTIONS(4082), + [anon_sym_DASH_DASH] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(4084), + [anon_sym_sizeof] = ACTIONS(4082), + [anon_sym___alignof__] = ACTIONS(4082), + [anon_sym___alignof] = ACTIONS(4082), + [anon_sym__alignof] = ACTIONS(4082), + [anon_sym_alignof] = ACTIONS(4082), + [anon_sym__Alignof] = ACTIONS(4082), + [anon_sym_offsetof] = ACTIONS(4082), + [anon_sym__Generic] = ACTIONS(4082), + [anon_sym_typename] = ACTIONS(4082), + [anon_sym_asm] = ACTIONS(4082), + [anon_sym___asm__] = ACTIONS(4082), + [anon_sym___asm] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4084), + [anon_sym_L_SQUOTE] = ACTIONS(4084), + [anon_sym_u_SQUOTE] = ACTIONS(4084), + [anon_sym_U_SQUOTE] = ACTIONS(4084), + [anon_sym_u8_SQUOTE] = ACTIONS(4084), + [anon_sym_SQUOTE] = ACTIONS(4084), + [anon_sym_L_DQUOTE] = ACTIONS(4084), + [anon_sym_u_DQUOTE] = ACTIONS(4084), + [anon_sym_U_DQUOTE] = ACTIONS(4084), + [anon_sym_u8_DQUOTE] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(4084), + [sym_true] = ACTIONS(4082), + [sym_false] = ACTIONS(4082), + [anon_sym_NULL] = ACTIONS(4082), + [anon_sym_nullptr] = ACTIONS(4082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4082), + [anon_sym_decltype] = ACTIONS(4082), + [anon_sym_explicit] = ACTIONS(4082), + [anon_sym_template] = ACTIONS(4082), + [anon_sym_operator] = ACTIONS(4082), + [anon_sym_try] = ACTIONS(4082), + [anon_sym_delete] = ACTIONS(4082), + [anon_sym_throw] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_static_assert] = ACTIONS(4082), + [anon_sym_concept] = ACTIONS(4082), + [anon_sym_co_return] = ACTIONS(4082), + [anon_sym_co_yield] = ACTIONS(4082), + [anon_sym_R_DQUOTE] = ACTIONS(4084), + [anon_sym_LR_DQUOTE] = ACTIONS(4084), + [anon_sym_uR_DQUOTE] = ACTIONS(4084), + [anon_sym_UR_DQUOTE] = ACTIONS(4084), + [anon_sym_u8R_DQUOTE] = ACTIONS(4084), + [anon_sym_co_await] = ACTIONS(4082), + [anon_sym_new] = ACTIONS(4082), + [anon_sym_requires] = ACTIONS(4082), + [anon_sym_CARET_CARET] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4084), + [sym_this] = ACTIONS(4082), }, - [STATE(1434)] = { - [sym_expression] = STATE(3166), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(874)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1435)] = { - [sym_expression] = STATE(3111), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(875)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_include_token1] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym___cdecl] = ACTIONS(4086), + [anon_sym___clrcall] = ACTIONS(4086), + [anon_sym___stdcall] = ACTIONS(4086), + [anon_sym___fastcall] = ACTIONS(4086), + [anon_sym___thiscall] = ACTIONS(4086), + [anon_sym___vectorcall] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_RBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_switch] = ACTIONS(4086), + [anon_sym_case] = ACTIONS(4086), + [anon_sym_default] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_goto] = ACTIONS(4086), + [anon_sym___try] = ACTIONS(4086), + [anon_sym___leave] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_compl] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_sizeof] = ACTIONS(4086), + [anon_sym___alignof__] = ACTIONS(4086), + [anon_sym___alignof] = ACTIONS(4086), + [anon_sym__alignof] = ACTIONS(4086), + [anon_sym_alignof] = ACTIONS(4086), + [anon_sym__Alignof] = ACTIONS(4086), + [anon_sym_offsetof] = ACTIONS(4086), + [anon_sym__Generic] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [anon_sym_asm] = ACTIONS(4086), + [anon_sym___asm__] = ACTIONS(4086), + [anon_sym___asm] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4088), + [anon_sym_L_SQUOTE] = ACTIONS(4088), + [anon_sym_u_SQUOTE] = ACTIONS(4088), + [anon_sym_U_SQUOTE] = ACTIONS(4088), + [anon_sym_u8_SQUOTE] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4088), + [anon_sym_L_DQUOTE] = ACTIONS(4088), + [anon_sym_u_DQUOTE] = ACTIONS(4088), + [anon_sym_U_DQUOTE] = ACTIONS(4088), + [anon_sym_u8_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [anon_sym_NULL] = ACTIONS(4086), + [anon_sym_nullptr] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_delete] = ACTIONS(4086), + [anon_sym_throw] = ACTIONS(4086), + [anon_sym_namespace] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_concept] = ACTIONS(4086), + [anon_sym_co_return] = ACTIONS(4086), + [anon_sym_co_yield] = ACTIONS(4086), + [anon_sym_R_DQUOTE] = ACTIONS(4088), + [anon_sym_LR_DQUOTE] = ACTIONS(4088), + [anon_sym_uR_DQUOTE] = ACTIONS(4088), + [anon_sym_UR_DQUOTE] = ACTIONS(4088), + [anon_sym_u8R_DQUOTE] = ACTIONS(4088), + [anon_sym_co_await] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4086), + [anon_sym_requires] = ACTIONS(4086), + [anon_sym_CARET_CARET] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [sym_this] = ACTIONS(4086), }, - [STATE(1436)] = { - [sym_expression] = STATE(3170), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(876)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym___try] = ACTIONS(4164), + [anon_sym___leave] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(1437)] = { - [sym_expression] = STATE(3173), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(877)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym___try] = ACTIONS(4168), + [anon_sym___leave] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(1438)] = { - [sym_expression] = STATE(2338), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(878)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_include_token1] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token2] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym___cdecl] = ACTIONS(4042), + [anon_sym___clrcall] = ACTIONS(4042), + [anon_sym___stdcall] = ACTIONS(4042), + [anon_sym___fastcall] = ACTIONS(4042), + [anon_sym___thiscall] = ACTIONS(4042), + [anon_sym___vectorcall] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_if] = ACTIONS(4042), + [anon_sym_switch] = ACTIONS(4042), + [anon_sym_case] = ACTIONS(4042), + [anon_sym_default] = ACTIONS(4042), + [anon_sym_while] = ACTIONS(4042), + [anon_sym_do] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4042), + [anon_sym_break] = ACTIONS(4042), + [anon_sym_continue] = ACTIONS(4042), + [anon_sym_goto] = ACTIONS(4042), + [anon_sym___try] = ACTIONS(4042), + [anon_sym___leave] = ACTIONS(4042), + [anon_sym_not] = ACTIONS(4042), + [anon_sym_compl] = ACTIONS(4042), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_sizeof] = ACTIONS(4042), + [anon_sym___alignof__] = ACTIONS(4042), + [anon_sym___alignof] = ACTIONS(4042), + [anon_sym__alignof] = ACTIONS(4042), + [anon_sym_alignof] = ACTIONS(4042), + [anon_sym__Alignof] = ACTIONS(4042), + [anon_sym_offsetof] = ACTIONS(4042), + [anon_sym__Generic] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym___asm__] = ACTIONS(4042), + [anon_sym___asm] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4044), + [anon_sym_L_SQUOTE] = ACTIONS(4044), + [anon_sym_u_SQUOTE] = ACTIONS(4044), + [anon_sym_U_SQUOTE] = ACTIONS(4044), + [anon_sym_u8_SQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4044), + [anon_sym_L_DQUOTE] = ACTIONS(4044), + [anon_sym_u_DQUOTE] = ACTIONS(4044), + [anon_sym_U_DQUOTE] = ACTIONS(4044), + [anon_sym_u8_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [anon_sym_NULL] = ACTIONS(4042), + [anon_sym_nullptr] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_try] = ACTIONS(4042), + [anon_sym_delete] = ACTIONS(4042), + [anon_sym_throw] = ACTIONS(4042), + [anon_sym_namespace] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_concept] = ACTIONS(4042), + [anon_sym_co_return] = ACTIONS(4042), + [anon_sym_co_yield] = ACTIONS(4042), + [anon_sym_R_DQUOTE] = ACTIONS(4044), + [anon_sym_LR_DQUOTE] = ACTIONS(4044), + [anon_sym_uR_DQUOTE] = ACTIONS(4044), + [anon_sym_UR_DQUOTE] = ACTIONS(4044), + [anon_sym_u8R_DQUOTE] = ACTIONS(4044), + [anon_sym_co_await] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4042), + [anon_sym_requires] = ACTIONS(4042), + [anon_sym_CARET_CARET] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + [sym_this] = ACTIONS(4042), }, - [STATE(1439)] = { - [sym_expression] = STATE(3115), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(879)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym___try] = ACTIONS(4176), + [anon_sym___leave] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(1440)] = { - [sym_expression] = STATE(2346), - [sym__string] = STATE(2853), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2853), - [sym_concatenated_string] = STATE(2853), - [sym_string_literal] = STATE(1923), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(1923), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym___extension__] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_compl] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4353), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(1970), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1982), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [anon_sym_co_await] = ACTIONS(1986), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(880)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_include_token1] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token2] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym___cdecl] = ACTIONS(4086), + [anon_sym___clrcall] = ACTIONS(4086), + [anon_sym___stdcall] = ACTIONS(4086), + [anon_sym___fastcall] = ACTIONS(4086), + [anon_sym___thiscall] = ACTIONS(4086), + [anon_sym___vectorcall] = ACTIONS(4086), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_if] = ACTIONS(4086), + [anon_sym_switch] = ACTIONS(4086), + [anon_sym_case] = ACTIONS(4086), + [anon_sym_default] = ACTIONS(4086), + [anon_sym_while] = ACTIONS(4086), + [anon_sym_do] = ACTIONS(4086), + [anon_sym_for] = ACTIONS(4086), + [anon_sym_return] = ACTIONS(4086), + [anon_sym_break] = ACTIONS(4086), + [anon_sym_continue] = ACTIONS(4086), + [anon_sym_goto] = ACTIONS(4086), + [anon_sym___try] = ACTIONS(4086), + [anon_sym___leave] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_compl] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_sizeof] = ACTIONS(4086), + [anon_sym___alignof__] = ACTIONS(4086), + [anon_sym___alignof] = ACTIONS(4086), + [anon_sym__alignof] = ACTIONS(4086), + [anon_sym_alignof] = ACTIONS(4086), + [anon_sym__Alignof] = ACTIONS(4086), + [anon_sym_offsetof] = ACTIONS(4086), + [anon_sym__Generic] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [anon_sym_asm] = ACTIONS(4086), + [anon_sym___asm__] = ACTIONS(4086), + [anon_sym___asm] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4088), + [anon_sym_L_SQUOTE] = ACTIONS(4088), + [anon_sym_u_SQUOTE] = ACTIONS(4088), + [anon_sym_U_SQUOTE] = ACTIONS(4088), + [anon_sym_u8_SQUOTE] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4088), + [anon_sym_L_DQUOTE] = ACTIONS(4088), + [anon_sym_u_DQUOTE] = ACTIONS(4088), + [anon_sym_U_DQUOTE] = ACTIONS(4088), + [anon_sym_u8_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [anon_sym_NULL] = ACTIONS(4086), + [anon_sym_nullptr] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_try] = ACTIONS(4086), + [anon_sym_delete] = ACTIONS(4086), + [anon_sym_throw] = ACTIONS(4086), + [anon_sym_namespace] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_concept] = ACTIONS(4086), + [anon_sym_co_return] = ACTIONS(4086), + [anon_sym_co_yield] = ACTIONS(4086), + [anon_sym_R_DQUOTE] = ACTIONS(4088), + [anon_sym_LR_DQUOTE] = ACTIONS(4088), + [anon_sym_uR_DQUOTE] = ACTIONS(4088), + [anon_sym_UR_DQUOTE] = ACTIONS(4088), + [anon_sym_u8R_DQUOTE] = ACTIONS(4088), + [anon_sym_co_await] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4086), + [anon_sym_requires] = ACTIONS(4086), + [anon_sym_CARET_CARET] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [sym_this] = ACTIONS(4086), }, - [STATE(1441)] = { - [sym_expression] = STATE(2976), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(881)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_include_token1] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4090), + [anon_sym_PLUS] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym___cdecl] = ACTIONS(4090), + [anon_sym___clrcall] = ACTIONS(4090), + [anon_sym___stdcall] = ACTIONS(4090), + [anon_sym___fastcall] = ACTIONS(4090), + [anon_sym___thiscall] = ACTIONS(4090), + [anon_sym___vectorcall] = ACTIONS(4090), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_RBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_if] = ACTIONS(4090), + [anon_sym_switch] = ACTIONS(4090), + [anon_sym_case] = ACTIONS(4090), + [anon_sym_default] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(4090), + [anon_sym_do] = ACTIONS(4090), + [anon_sym_for] = ACTIONS(4090), + [anon_sym_return] = ACTIONS(4090), + [anon_sym_break] = ACTIONS(4090), + [anon_sym_continue] = ACTIONS(4090), + [anon_sym_goto] = ACTIONS(4090), + [anon_sym___try] = ACTIONS(4090), + [anon_sym___leave] = ACTIONS(4090), + [anon_sym_not] = ACTIONS(4090), + [anon_sym_compl] = ACTIONS(4090), + [anon_sym_DASH_DASH] = ACTIONS(4092), + [anon_sym_PLUS_PLUS] = ACTIONS(4092), + [anon_sym_sizeof] = ACTIONS(4090), + [anon_sym___alignof__] = ACTIONS(4090), + [anon_sym___alignof] = ACTIONS(4090), + [anon_sym__alignof] = ACTIONS(4090), + [anon_sym_alignof] = ACTIONS(4090), + [anon_sym__Alignof] = ACTIONS(4090), + [anon_sym_offsetof] = ACTIONS(4090), + [anon_sym__Generic] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [anon_sym_asm] = ACTIONS(4090), + [anon_sym___asm__] = ACTIONS(4090), + [anon_sym___asm] = ACTIONS(4090), + [sym_number_literal] = ACTIONS(4092), + [anon_sym_L_SQUOTE] = ACTIONS(4092), + [anon_sym_u_SQUOTE] = ACTIONS(4092), + [anon_sym_U_SQUOTE] = ACTIONS(4092), + [anon_sym_u8_SQUOTE] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(4092), + [anon_sym_L_DQUOTE] = ACTIONS(4092), + [anon_sym_u_DQUOTE] = ACTIONS(4092), + [anon_sym_U_DQUOTE] = ACTIONS(4092), + [anon_sym_u8_DQUOTE] = ACTIONS(4092), + [anon_sym_DQUOTE] = ACTIONS(4092), + [sym_true] = ACTIONS(4090), + [sym_false] = ACTIONS(4090), + [anon_sym_NULL] = ACTIONS(4090), + [anon_sym_nullptr] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_try] = ACTIONS(4090), + [anon_sym_delete] = ACTIONS(4090), + [anon_sym_throw] = ACTIONS(4090), + [anon_sym_namespace] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_concept] = ACTIONS(4090), + [anon_sym_co_return] = ACTIONS(4090), + [anon_sym_co_yield] = ACTIONS(4090), + [anon_sym_R_DQUOTE] = ACTIONS(4092), + [anon_sym_LR_DQUOTE] = ACTIONS(4092), + [anon_sym_uR_DQUOTE] = ACTIONS(4092), + [anon_sym_UR_DQUOTE] = ACTIONS(4092), + [anon_sym_u8R_DQUOTE] = ACTIONS(4092), + [anon_sym_co_await] = ACTIONS(4090), + [anon_sym_new] = ACTIONS(4090), + [anon_sym_requires] = ACTIONS(4090), + [anon_sym_CARET_CARET] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + [sym_this] = ACTIONS(4090), }, - [STATE(1442)] = { - [sym_expression] = STATE(3121), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(882)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym___try] = ACTIONS(4184), + [anon_sym___leave] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(1443)] = { - [sym_expression] = STATE(3122), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(883)] = { + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym___try] = ACTIONS(4148), + [anon_sym___leave] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(1444)] = { - [sym_expression] = STATE(3123), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(884)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym___try] = ACTIONS(4192), + [anon_sym___leave] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(1445)] = { - [sym_expression] = STATE(2988), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(885)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym___try] = ACTIONS(4152), + [anon_sym___leave] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), }, - [STATE(1446)] = { - [sym_expression] = STATE(2984), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(886)] = { + [sym_identifier] = ACTIONS(3902), + [aux_sym_preproc_include_token1] = ACTIONS(3902), + [aux_sym_preproc_def_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token1] = ACTIONS(3902), + [aux_sym_preproc_if_token2] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), + [sym_preproc_directive] = ACTIONS(3902), + [anon_sym_LPAREN2] = ACTIONS(3904), + [anon_sym_BANG] = ACTIONS(3904), + [anon_sym_TILDE] = ACTIONS(3904), + [anon_sym_DASH] = ACTIONS(3902), + [anon_sym_PLUS] = ACTIONS(3902), + [anon_sym_STAR] = ACTIONS(3904), + [anon_sym_AMP_AMP] = ACTIONS(3904), + [anon_sym_AMP] = ACTIONS(3902), + [anon_sym_SEMI] = ACTIONS(3904), + [anon_sym___extension__] = ACTIONS(3902), + [anon_sym_typedef] = ACTIONS(3902), + [anon_sym_virtual] = ACTIONS(3902), + [anon_sym_extern] = ACTIONS(3902), + [anon_sym___attribute__] = ACTIONS(3902), + [anon_sym___attribute] = ACTIONS(3902), + [anon_sym_using] = ACTIONS(3902), + [anon_sym_COLON_COLON] = ACTIONS(3904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), + [anon_sym___declspec] = ACTIONS(3902), + [anon_sym___based] = ACTIONS(3902), + [anon_sym___cdecl] = ACTIONS(3902), + [anon_sym___clrcall] = ACTIONS(3902), + [anon_sym___stdcall] = ACTIONS(3902), + [anon_sym___fastcall] = ACTIONS(3902), + [anon_sym___thiscall] = ACTIONS(3902), + [anon_sym___vectorcall] = ACTIONS(3902), + [anon_sym_LBRACE] = ACTIONS(3904), + [anon_sym_signed] = ACTIONS(3902), + [anon_sym_unsigned] = ACTIONS(3902), + [anon_sym_long] = ACTIONS(3902), + [anon_sym_short] = ACTIONS(3902), + [anon_sym_LBRACK] = ACTIONS(3902), + [anon_sym_static] = ACTIONS(3902), + [anon_sym_register] = ACTIONS(3902), + [anon_sym_inline] = ACTIONS(3902), + [anon_sym___inline] = ACTIONS(3902), + [anon_sym___inline__] = ACTIONS(3902), + [anon_sym___forceinline] = ACTIONS(3902), + [anon_sym_thread_local] = ACTIONS(3902), + [anon_sym___thread] = ACTIONS(3902), + [anon_sym_const] = ACTIONS(3902), + [anon_sym_constexpr] = ACTIONS(3902), + [anon_sym_volatile] = ACTIONS(3902), + [anon_sym_restrict] = ACTIONS(3902), + [anon_sym___restrict__] = ACTIONS(3902), + [anon_sym__Atomic] = ACTIONS(3902), + [anon_sym__Noreturn] = ACTIONS(3902), + [anon_sym_noreturn] = ACTIONS(3902), + [anon_sym__Nonnull] = ACTIONS(3902), + [anon_sym_mutable] = ACTIONS(3902), + [anon_sym_constinit] = ACTIONS(3902), + [anon_sym_consteval] = ACTIONS(3902), + [anon_sym_alignas] = ACTIONS(3902), + [anon_sym__Alignas] = ACTIONS(3902), + [sym_primitive_type] = ACTIONS(3902), + [anon_sym_enum] = ACTIONS(3902), + [anon_sym_class] = ACTIONS(3902), + [anon_sym_struct] = ACTIONS(3902), + [anon_sym_union] = ACTIONS(3902), + [anon_sym_if] = ACTIONS(3902), + [anon_sym_switch] = ACTIONS(3902), + [anon_sym_case] = ACTIONS(3902), + [anon_sym_default] = ACTIONS(3902), + [anon_sym_while] = ACTIONS(3902), + [anon_sym_do] = ACTIONS(3902), + [anon_sym_for] = ACTIONS(3902), + [anon_sym_return] = ACTIONS(3902), + [anon_sym_break] = ACTIONS(3902), + [anon_sym_continue] = ACTIONS(3902), + [anon_sym_goto] = ACTIONS(3902), + [anon_sym___try] = ACTIONS(3902), + [anon_sym___leave] = ACTIONS(3902), + [anon_sym_not] = ACTIONS(3902), + [anon_sym_compl] = ACTIONS(3902), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3902), + [anon_sym___alignof__] = ACTIONS(3902), + [anon_sym___alignof] = ACTIONS(3902), + [anon_sym__alignof] = ACTIONS(3902), + [anon_sym_alignof] = ACTIONS(3902), + [anon_sym__Alignof] = ACTIONS(3902), + [anon_sym_offsetof] = ACTIONS(3902), + [anon_sym__Generic] = ACTIONS(3902), + [anon_sym_typename] = ACTIONS(3902), + [anon_sym_asm] = ACTIONS(3902), + [anon_sym___asm__] = ACTIONS(3902), + [anon_sym___asm] = ACTIONS(3902), + [sym_number_literal] = ACTIONS(3904), + [anon_sym_L_SQUOTE] = ACTIONS(3904), + [anon_sym_u_SQUOTE] = ACTIONS(3904), + [anon_sym_U_SQUOTE] = ACTIONS(3904), + [anon_sym_u8_SQUOTE] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3904), + [anon_sym_L_DQUOTE] = ACTIONS(3904), + [anon_sym_u_DQUOTE] = ACTIONS(3904), + [anon_sym_U_DQUOTE] = ACTIONS(3904), + [anon_sym_u8_DQUOTE] = ACTIONS(3904), + [anon_sym_DQUOTE] = ACTIONS(3904), + [sym_true] = ACTIONS(3902), + [sym_false] = ACTIONS(3902), + [anon_sym_NULL] = ACTIONS(3902), + [anon_sym_nullptr] = ACTIONS(3902), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3902), + [anon_sym_decltype] = ACTIONS(3902), + [anon_sym_explicit] = ACTIONS(3902), + [anon_sym_template] = ACTIONS(3902), + [anon_sym_operator] = ACTIONS(3902), + [anon_sym_try] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3902), + [anon_sym_throw] = ACTIONS(3902), + [anon_sym_namespace] = ACTIONS(3902), + [anon_sym_static_assert] = ACTIONS(3902), + [anon_sym_concept] = ACTIONS(3902), + [anon_sym_co_return] = ACTIONS(3902), + [anon_sym_co_yield] = ACTIONS(3902), + [anon_sym_R_DQUOTE] = ACTIONS(3904), + [anon_sym_LR_DQUOTE] = ACTIONS(3904), + [anon_sym_uR_DQUOTE] = ACTIONS(3904), + [anon_sym_UR_DQUOTE] = ACTIONS(3904), + [anon_sym_u8R_DQUOTE] = ACTIONS(3904), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3902), + [anon_sym_requires] = ACTIONS(3902), + [anon_sym_CARET_CARET] = ACTIONS(3904), + [anon_sym_LBRACK_COLON] = ACTIONS(3904), + [sym_this] = ACTIONS(3902), }, - [STATE(1447)] = { - [sym_expression] = STATE(2985), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(887)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym___try] = ACTIONS(4100), + [anon_sym___leave] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), }, - [STATE(1448)] = { - [sym_expression] = STATE(4632), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(888)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1449)] = { - [sym_expression] = STATE(2986), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(889)] = { + [sym_identifier] = ACTIONS(4050), + [aux_sym_preproc_include_token1] = ACTIONS(4050), + [aux_sym_preproc_def_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token1] = ACTIONS(4050), + [aux_sym_preproc_if_token2] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), + [sym_preproc_directive] = ACTIONS(4050), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_AMP_AMP] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym___extension__] = ACTIONS(4050), + [anon_sym_typedef] = ACTIONS(4050), + [anon_sym_virtual] = ACTIONS(4050), + [anon_sym_extern] = ACTIONS(4050), + [anon_sym___attribute__] = ACTIONS(4050), + [anon_sym___attribute] = ACTIONS(4050), + [anon_sym_using] = ACTIONS(4050), + [anon_sym_COLON_COLON] = ACTIONS(4052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), + [anon_sym___declspec] = ACTIONS(4050), + [anon_sym___based] = ACTIONS(4050), + [anon_sym___cdecl] = ACTIONS(4050), + [anon_sym___clrcall] = ACTIONS(4050), + [anon_sym___stdcall] = ACTIONS(4050), + [anon_sym___fastcall] = ACTIONS(4050), + [anon_sym___thiscall] = ACTIONS(4050), + [anon_sym___vectorcall] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_signed] = ACTIONS(4050), + [anon_sym_unsigned] = ACTIONS(4050), + [anon_sym_long] = ACTIONS(4050), + [anon_sym_short] = ACTIONS(4050), + [anon_sym_LBRACK] = ACTIONS(4050), + [anon_sym_static] = ACTIONS(4050), + [anon_sym_register] = ACTIONS(4050), + [anon_sym_inline] = ACTIONS(4050), + [anon_sym___inline] = ACTIONS(4050), + [anon_sym___inline__] = ACTIONS(4050), + [anon_sym___forceinline] = ACTIONS(4050), + [anon_sym_thread_local] = ACTIONS(4050), + [anon_sym___thread] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_constexpr] = ACTIONS(4050), + [anon_sym_volatile] = ACTIONS(4050), + [anon_sym_restrict] = ACTIONS(4050), + [anon_sym___restrict__] = ACTIONS(4050), + [anon_sym__Atomic] = ACTIONS(4050), + [anon_sym__Noreturn] = ACTIONS(4050), + [anon_sym_noreturn] = ACTIONS(4050), + [anon_sym__Nonnull] = ACTIONS(4050), + [anon_sym_mutable] = ACTIONS(4050), + [anon_sym_constinit] = ACTIONS(4050), + [anon_sym_consteval] = ACTIONS(4050), + [anon_sym_alignas] = ACTIONS(4050), + [anon_sym__Alignas] = ACTIONS(4050), + [sym_primitive_type] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_class] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_switch] = ACTIONS(4050), + [anon_sym_case] = ACTIONS(4050), + [anon_sym_default] = ACTIONS(4050), + [anon_sym_while] = ACTIONS(4050), + [anon_sym_do] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym___try] = ACTIONS(4050), + [anon_sym___leave] = ACTIONS(4050), + [anon_sym_not] = ACTIONS(4050), + [anon_sym_compl] = ACTIONS(4050), + [anon_sym_DASH_DASH] = ACTIONS(4052), + [anon_sym_PLUS_PLUS] = ACTIONS(4052), + [anon_sym_sizeof] = ACTIONS(4050), + [anon_sym___alignof__] = ACTIONS(4050), + [anon_sym___alignof] = ACTIONS(4050), + [anon_sym__alignof] = ACTIONS(4050), + [anon_sym_alignof] = ACTIONS(4050), + [anon_sym__Alignof] = ACTIONS(4050), + [anon_sym_offsetof] = ACTIONS(4050), + [anon_sym__Generic] = ACTIONS(4050), + [anon_sym_typename] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym___asm__] = ACTIONS(4050), + [anon_sym___asm] = ACTIONS(4050), + [sym_number_literal] = ACTIONS(4052), + [anon_sym_L_SQUOTE] = ACTIONS(4052), + [anon_sym_u_SQUOTE] = ACTIONS(4052), + [anon_sym_U_SQUOTE] = ACTIONS(4052), + [anon_sym_u8_SQUOTE] = ACTIONS(4052), + [anon_sym_SQUOTE] = ACTIONS(4052), + [anon_sym_L_DQUOTE] = ACTIONS(4052), + [anon_sym_u_DQUOTE] = ACTIONS(4052), + [anon_sym_U_DQUOTE] = ACTIONS(4052), + [anon_sym_u8_DQUOTE] = ACTIONS(4052), + [anon_sym_DQUOTE] = ACTIONS(4052), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [anon_sym_NULL] = ACTIONS(4050), + [anon_sym_nullptr] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4050), + [anon_sym_decltype] = ACTIONS(4050), + [anon_sym_explicit] = ACTIONS(4050), + [anon_sym_template] = ACTIONS(4050), + [anon_sym_operator] = ACTIONS(4050), + [anon_sym_try] = ACTIONS(4050), + [anon_sym_delete] = ACTIONS(4050), + [anon_sym_throw] = ACTIONS(4050), + [anon_sym_namespace] = ACTIONS(4050), + [anon_sym_static_assert] = ACTIONS(4050), + [anon_sym_concept] = ACTIONS(4050), + [anon_sym_co_return] = ACTIONS(4050), + [anon_sym_co_yield] = ACTIONS(4050), + [anon_sym_R_DQUOTE] = ACTIONS(4052), + [anon_sym_LR_DQUOTE] = ACTIONS(4052), + [anon_sym_uR_DQUOTE] = ACTIONS(4052), + [anon_sym_UR_DQUOTE] = ACTIONS(4052), + [anon_sym_u8R_DQUOTE] = ACTIONS(4052), + [anon_sym_co_await] = ACTIONS(4050), + [anon_sym_new] = ACTIONS(4050), + [anon_sym_requires] = ACTIONS(4050), + [anon_sym_CARET_CARET] = ACTIONS(4052), + [anon_sym_LBRACK_COLON] = ACTIONS(4052), + [sym_this] = ACTIONS(4050), }, - [STATE(1450)] = { - [sym_expression] = STATE(4681), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(890)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1451)] = { - [sym_expression] = STATE(4684), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(891)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym___try] = ACTIONS(4164), + [anon_sym___leave] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(1452)] = { - [sym_expression] = STATE(4573), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(892)] = { + [sym_identifier] = ACTIONS(3910), + [aux_sym_preproc_include_token1] = ACTIONS(3910), + [aux_sym_preproc_def_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token1] = ACTIONS(3910), + [aux_sym_preproc_if_token2] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), + [sym_preproc_directive] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_BANG] = ACTIONS(3912), + [anon_sym_TILDE] = ACTIONS(3912), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_STAR] = ACTIONS(3912), + [anon_sym_AMP_AMP] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_SEMI] = ACTIONS(3912), + [anon_sym___extension__] = ACTIONS(3910), + [anon_sym_typedef] = ACTIONS(3910), + [anon_sym_virtual] = ACTIONS(3910), + [anon_sym_extern] = ACTIONS(3910), + [anon_sym___attribute__] = ACTIONS(3910), + [anon_sym___attribute] = ACTIONS(3910), + [anon_sym_using] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), + [anon_sym___declspec] = ACTIONS(3910), + [anon_sym___based] = ACTIONS(3910), + [anon_sym___cdecl] = ACTIONS(3910), + [anon_sym___clrcall] = ACTIONS(3910), + [anon_sym___stdcall] = ACTIONS(3910), + [anon_sym___fastcall] = ACTIONS(3910), + [anon_sym___thiscall] = ACTIONS(3910), + [anon_sym___vectorcall] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3912), + [anon_sym_signed] = ACTIONS(3910), + [anon_sym_unsigned] = ACTIONS(3910), + [anon_sym_long] = ACTIONS(3910), + [anon_sym_short] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_static] = ACTIONS(3910), + [anon_sym_register] = ACTIONS(3910), + [anon_sym_inline] = ACTIONS(3910), + [anon_sym___inline] = ACTIONS(3910), + [anon_sym___inline__] = ACTIONS(3910), + [anon_sym___forceinline] = ACTIONS(3910), + [anon_sym_thread_local] = ACTIONS(3910), + [anon_sym___thread] = ACTIONS(3910), + [anon_sym_const] = ACTIONS(3910), + [anon_sym_constexpr] = ACTIONS(3910), + [anon_sym_volatile] = ACTIONS(3910), + [anon_sym_restrict] = ACTIONS(3910), + [anon_sym___restrict__] = ACTIONS(3910), + [anon_sym__Atomic] = ACTIONS(3910), + [anon_sym__Noreturn] = ACTIONS(3910), + [anon_sym_noreturn] = ACTIONS(3910), + [anon_sym__Nonnull] = ACTIONS(3910), + [anon_sym_mutable] = ACTIONS(3910), + [anon_sym_constinit] = ACTIONS(3910), + [anon_sym_consteval] = ACTIONS(3910), + [anon_sym_alignas] = ACTIONS(3910), + [anon_sym__Alignas] = ACTIONS(3910), + [sym_primitive_type] = ACTIONS(3910), + [anon_sym_enum] = ACTIONS(3910), + [anon_sym_class] = ACTIONS(3910), + [anon_sym_struct] = ACTIONS(3910), + [anon_sym_union] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_switch] = ACTIONS(3910), + [anon_sym_case] = ACTIONS(3910), + [anon_sym_default] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_break] = ACTIONS(3910), + [anon_sym_continue] = ACTIONS(3910), + [anon_sym_goto] = ACTIONS(3910), + [anon_sym___try] = ACTIONS(3910), + [anon_sym___leave] = ACTIONS(3910), + [anon_sym_not] = ACTIONS(3910), + [anon_sym_compl] = ACTIONS(3910), + [anon_sym_DASH_DASH] = ACTIONS(3912), + [anon_sym_PLUS_PLUS] = ACTIONS(3912), + [anon_sym_sizeof] = ACTIONS(3910), + [anon_sym___alignof__] = ACTIONS(3910), + [anon_sym___alignof] = ACTIONS(3910), + [anon_sym__alignof] = ACTIONS(3910), + [anon_sym_alignof] = ACTIONS(3910), + [anon_sym__Alignof] = ACTIONS(3910), + [anon_sym_offsetof] = ACTIONS(3910), + [anon_sym__Generic] = ACTIONS(3910), + [anon_sym_typename] = ACTIONS(3910), + [anon_sym_asm] = ACTIONS(3910), + [anon_sym___asm__] = ACTIONS(3910), + [anon_sym___asm] = ACTIONS(3910), + [sym_number_literal] = ACTIONS(3912), + [anon_sym_L_SQUOTE] = ACTIONS(3912), + [anon_sym_u_SQUOTE] = ACTIONS(3912), + [anon_sym_U_SQUOTE] = ACTIONS(3912), + [anon_sym_u8_SQUOTE] = ACTIONS(3912), + [anon_sym_SQUOTE] = ACTIONS(3912), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_true] = ACTIONS(3910), + [sym_false] = ACTIONS(3910), + [anon_sym_NULL] = ACTIONS(3910), + [anon_sym_nullptr] = ACTIONS(3910), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3910), + [anon_sym_decltype] = ACTIONS(3910), + [anon_sym_explicit] = ACTIONS(3910), + [anon_sym_template] = ACTIONS(3910), + [anon_sym_operator] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_delete] = ACTIONS(3910), + [anon_sym_throw] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_static_assert] = ACTIONS(3910), + [anon_sym_concept] = ACTIONS(3910), + [anon_sym_co_return] = ACTIONS(3910), + [anon_sym_co_yield] = ACTIONS(3910), + [anon_sym_R_DQUOTE] = ACTIONS(3912), + [anon_sym_LR_DQUOTE] = ACTIONS(3912), + [anon_sym_uR_DQUOTE] = ACTIONS(3912), + [anon_sym_UR_DQUOTE] = ACTIONS(3912), + [anon_sym_u8R_DQUOTE] = ACTIONS(3912), + [anon_sym_co_await] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_requires] = ACTIONS(3910), + [anon_sym_CARET_CARET] = ACTIONS(3912), + [anon_sym_LBRACK_COLON] = ACTIONS(3912), + [sym_this] = ACTIONS(3910), }, - [STATE(1453)] = { - [sym_expression] = STATE(4620), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(4980), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(893)] = { + [sym_expression] = STATE(6747), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1454)] = { - [sym_expression] = STATE(3703), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(4982), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(894)] = { + [sym_identifier] = ACTIONS(3914), + [aux_sym_preproc_include_token1] = ACTIONS(3914), + [aux_sym_preproc_def_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token1] = ACTIONS(3914), + [aux_sym_preproc_if_token2] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), + [sym_preproc_directive] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_BANG] = ACTIONS(3916), + [anon_sym_TILDE] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_STAR] = ACTIONS(3916), + [anon_sym_AMP_AMP] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_SEMI] = ACTIONS(3916), + [anon_sym___extension__] = ACTIONS(3914), + [anon_sym_typedef] = ACTIONS(3914), + [anon_sym_virtual] = ACTIONS(3914), + [anon_sym_extern] = ACTIONS(3914), + [anon_sym___attribute__] = ACTIONS(3914), + [anon_sym___attribute] = ACTIONS(3914), + [anon_sym_using] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), + [anon_sym___declspec] = ACTIONS(3914), + [anon_sym___based] = ACTIONS(3914), + [anon_sym___cdecl] = ACTIONS(3914), + [anon_sym___clrcall] = ACTIONS(3914), + [anon_sym___stdcall] = ACTIONS(3914), + [anon_sym___fastcall] = ACTIONS(3914), + [anon_sym___thiscall] = ACTIONS(3914), + [anon_sym___vectorcall] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3916), + [anon_sym_signed] = ACTIONS(3914), + [anon_sym_unsigned] = ACTIONS(3914), + [anon_sym_long] = ACTIONS(3914), + [anon_sym_short] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_static] = ACTIONS(3914), + [anon_sym_register] = ACTIONS(3914), + [anon_sym_inline] = ACTIONS(3914), + [anon_sym___inline] = ACTIONS(3914), + [anon_sym___inline__] = ACTIONS(3914), + [anon_sym___forceinline] = ACTIONS(3914), + [anon_sym_thread_local] = ACTIONS(3914), + [anon_sym___thread] = ACTIONS(3914), + [anon_sym_const] = ACTIONS(3914), + [anon_sym_constexpr] = ACTIONS(3914), + [anon_sym_volatile] = ACTIONS(3914), + [anon_sym_restrict] = ACTIONS(3914), + [anon_sym___restrict__] = ACTIONS(3914), + [anon_sym__Atomic] = ACTIONS(3914), + [anon_sym__Noreturn] = ACTIONS(3914), + [anon_sym_noreturn] = ACTIONS(3914), + [anon_sym__Nonnull] = ACTIONS(3914), + [anon_sym_mutable] = ACTIONS(3914), + [anon_sym_constinit] = ACTIONS(3914), + [anon_sym_consteval] = ACTIONS(3914), + [anon_sym_alignas] = ACTIONS(3914), + [anon_sym__Alignas] = ACTIONS(3914), + [sym_primitive_type] = ACTIONS(3914), + [anon_sym_enum] = ACTIONS(3914), + [anon_sym_class] = ACTIONS(3914), + [anon_sym_struct] = ACTIONS(3914), + [anon_sym_union] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_switch] = ACTIONS(3914), + [anon_sym_case] = ACTIONS(3914), + [anon_sym_default] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_break] = ACTIONS(3914), + [anon_sym_continue] = ACTIONS(3914), + [anon_sym_goto] = ACTIONS(3914), + [anon_sym___try] = ACTIONS(3914), + [anon_sym___leave] = ACTIONS(3914), + [anon_sym_not] = ACTIONS(3914), + [anon_sym_compl] = ACTIONS(3914), + [anon_sym_DASH_DASH] = ACTIONS(3916), + [anon_sym_PLUS_PLUS] = ACTIONS(3916), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(3914), + [anon_sym___alignof] = ACTIONS(3914), + [anon_sym__alignof] = ACTIONS(3914), + [anon_sym_alignof] = ACTIONS(3914), + [anon_sym__Alignof] = ACTIONS(3914), + [anon_sym_offsetof] = ACTIONS(3914), + [anon_sym__Generic] = ACTIONS(3914), + [anon_sym_typename] = ACTIONS(3914), + [anon_sym_asm] = ACTIONS(3914), + [anon_sym___asm__] = ACTIONS(3914), + [anon_sym___asm] = ACTIONS(3914), + [sym_number_literal] = ACTIONS(3916), + [anon_sym_L_SQUOTE] = ACTIONS(3916), + [anon_sym_u_SQUOTE] = ACTIONS(3916), + [anon_sym_U_SQUOTE] = ACTIONS(3916), + [anon_sym_u8_SQUOTE] = ACTIONS(3916), + [anon_sym_SQUOTE] = ACTIONS(3916), + [anon_sym_L_DQUOTE] = ACTIONS(3916), + [anon_sym_u_DQUOTE] = ACTIONS(3916), + [anon_sym_U_DQUOTE] = ACTIONS(3916), + [anon_sym_u8_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE] = ACTIONS(3916), + [sym_true] = ACTIONS(3914), + [sym_false] = ACTIONS(3914), + [anon_sym_NULL] = ACTIONS(3914), + [anon_sym_nullptr] = ACTIONS(3914), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3914), + [anon_sym_decltype] = ACTIONS(3914), + [anon_sym_explicit] = ACTIONS(3914), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_operator] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3914), + [anon_sym_throw] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_static_assert] = ACTIONS(3914), + [anon_sym_concept] = ACTIONS(3914), + [anon_sym_co_return] = ACTIONS(3914), + [anon_sym_co_yield] = ACTIONS(3914), + [anon_sym_R_DQUOTE] = ACTIONS(3916), + [anon_sym_LR_DQUOTE] = ACTIONS(3916), + [anon_sym_uR_DQUOTE] = ACTIONS(3916), + [anon_sym_UR_DQUOTE] = ACTIONS(3916), + [anon_sym_u8R_DQUOTE] = ACTIONS(3916), + [anon_sym_co_await] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_requires] = ACTIONS(3914), + [anon_sym_CARET_CARET] = ACTIONS(3916), + [anon_sym_LBRACK_COLON] = ACTIONS(3916), + [sym_this] = ACTIONS(3914), }, - [STATE(1455)] = { - [sym_expression] = STATE(3580), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(895)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym___try] = ACTIONS(4168), + [anon_sym___leave] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(1456)] = { - [sym_expression] = STATE(4576), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(896)] = { + [sym_identifier] = ACTIONS(3918), + [aux_sym_preproc_include_token1] = ACTIONS(3918), + [aux_sym_preproc_def_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token1] = ACTIONS(3918), + [aux_sym_preproc_if_token2] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), + [sym_preproc_directive] = ACTIONS(3918), + [anon_sym_LPAREN2] = ACTIONS(3920), + [anon_sym_BANG] = ACTIONS(3920), + [anon_sym_TILDE] = ACTIONS(3920), + [anon_sym_DASH] = ACTIONS(3918), + [anon_sym_PLUS] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(3918), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym___extension__] = ACTIONS(3918), + [anon_sym_typedef] = ACTIONS(3918), + [anon_sym_virtual] = ACTIONS(3918), + [anon_sym_extern] = ACTIONS(3918), + [anon_sym___attribute__] = ACTIONS(3918), + [anon_sym___attribute] = ACTIONS(3918), + [anon_sym_using] = ACTIONS(3918), + [anon_sym_COLON_COLON] = ACTIONS(3920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), + [anon_sym___declspec] = ACTIONS(3918), + [anon_sym___based] = ACTIONS(3918), + [anon_sym___cdecl] = ACTIONS(3918), + [anon_sym___clrcall] = ACTIONS(3918), + [anon_sym___stdcall] = ACTIONS(3918), + [anon_sym___fastcall] = ACTIONS(3918), + [anon_sym___thiscall] = ACTIONS(3918), + [anon_sym___vectorcall] = ACTIONS(3918), + [anon_sym_LBRACE] = ACTIONS(3920), + [anon_sym_signed] = ACTIONS(3918), + [anon_sym_unsigned] = ACTIONS(3918), + [anon_sym_long] = ACTIONS(3918), + [anon_sym_short] = ACTIONS(3918), + [anon_sym_LBRACK] = ACTIONS(3918), + [anon_sym_static] = ACTIONS(3918), + [anon_sym_register] = ACTIONS(3918), + [anon_sym_inline] = ACTIONS(3918), + [anon_sym___inline] = ACTIONS(3918), + [anon_sym___inline__] = ACTIONS(3918), + [anon_sym___forceinline] = ACTIONS(3918), + [anon_sym_thread_local] = ACTIONS(3918), + [anon_sym___thread] = ACTIONS(3918), + [anon_sym_const] = ACTIONS(3918), + [anon_sym_constexpr] = ACTIONS(3918), + [anon_sym_volatile] = ACTIONS(3918), + [anon_sym_restrict] = ACTIONS(3918), + [anon_sym___restrict__] = ACTIONS(3918), + [anon_sym__Atomic] = ACTIONS(3918), + [anon_sym__Noreturn] = ACTIONS(3918), + [anon_sym_noreturn] = ACTIONS(3918), + [anon_sym__Nonnull] = ACTIONS(3918), + [anon_sym_mutable] = ACTIONS(3918), + [anon_sym_constinit] = ACTIONS(3918), + [anon_sym_consteval] = ACTIONS(3918), + [anon_sym_alignas] = ACTIONS(3918), + [anon_sym__Alignas] = ACTIONS(3918), + [sym_primitive_type] = ACTIONS(3918), + [anon_sym_enum] = ACTIONS(3918), + [anon_sym_class] = ACTIONS(3918), + [anon_sym_struct] = ACTIONS(3918), + [anon_sym_union] = ACTIONS(3918), + [anon_sym_if] = ACTIONS(3918), + [anon_sym_switch] = ACTIONS(3918), + [anon_sym_case] = ACTIONS(3918), + [anon_sym_default] = ACTIONS(3918), + [anon_sym_while] = ACTIONS(3918), + [anon_sym_do] = ACTIONS(3918), + [anon_sym_for] = ACTIONS(3918), + [anon_sym_return] = ACTIONS(3918), + [anon_sym_break] = ACTIONS(3918), + [anon_sym_continue] = ACTIONS(3918), + [anon_sym_goto] = ACTIONS(3918), + [anon_sym___try] = ACTIONS(3918), + [anon_sym___leave] = ACTIONS(3918), + [anon_sym_not] = ACTIONS(3918), + [anon_sym_compl] = ACTIONS(3918), + [anon_sym_DASH_DASH] = ACTIONS(3920), + [anon_sym_PLUS_PLUS] = ACTIONS(3920), + [anon_sym_sizeof] = ACTIONS(3918), + [anon_sym___alignof__] = ACTIONS(3918), + [anon_sym___alignof] = ACTIONS(3918), + [anon_sym__alignof] = ACTIONS(3918), + [anon_sym_alignof] = ACTIONS(3918), + [anon_sym__Alignof] = ACTIONS(3918), + [anon_sym_offsetof] = ACTIONS(3918), + [anon_sym__Generic] = ACTIONS(3918), + [anon_sym_typename] = ACTIONS(3918), + [anon_sym_asm] = ACTIONS(3918), + [anon_sym___asm__] = ACTIONS(3918), + [anon_sym___asm] = ACTIONS(3918), + [sym_number_literal] = ACTIONS(3920), + [anon_sym_L_SQUOTE] = ACTIONS(3920), + [anon_sym_u_SQUOTE] = ACTIONS(3920), + [anon_sym_U_SQUOTE] = ACTIONS(3920), + [anon_sym_u8_SQUOTE] = ACTIONS(3920), + [anon_sym_SQUOTE] = ACTIONS(3920), + [anon_sym_L_DQUOTE] = ACTIONS(3920), + [anon_sym_u_DQUOTE] = ACTIONS(3920), + [anon_sym_U_DQUOTE] = ACTIONS(3920), + [anon_sym_u8_DQUOTE] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(3920), + [sym_true] = ACTIONS(3918), + [sym_false] = ACTIONS(3918), + [anon_sym_NULL] = ACTIONS(3918), + [anon_sym_nullptr] = ACTIONS(3918), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3918), + [anon_sym_decltype] = ACTIONS(3918), + [anon_sym_explicit] = ACTIONS(3918), + [anon_sym_template] = ACTIONS(3918), + [anon_sym_operator] = ACTIONS(3918), + [anon_sym_try] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3918), + [anon_sym_throw] = ACTIONS(3918), + [anon_sym_namespace] = ACTIONS(3918), + [anon_sym_static_assert] = ACTIONS(3918), + [anon_sym_concept] = ACTIONS(3918), + [anon_sym_co_return] = ACTIONS(3918), + [anon_sym_co_yield] = ACTIONS(3918), + [anon_sym_R_DQUOTE] = ACTIONS(3920), + [anon_sym_LR_DQUOTE] = ACTIONS(3920), + [anon_sym_uR_DQUOTE] = ACTIONS(3920), + [anon_sym_UR_DQUOTE] = ACTIONS(3920), + [anon_sym_u8R_DQUOTE] = ACTIONS(3920), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3918), + [anon_sym_requires] = ACTIONS(3918), + [anon_sym_CARET_CARET] = ACTIONS(3920), + [anon_sym_LBRACK_COLON] = ACTIONS(3920), + [sym_this] = ACTIONS(3918), }, - [STATE(1457)] = { - [sym_expression] = STATE(4606), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(897)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_include_token1] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_BANG] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym___cdecl] = ACTIONS(4111), + [anon_sym___clrcall] = ACTIONS(4111), + [anon_sym___stdcall] = ACTIONS(4111), + [anon_sym___fastcall] = ACTIONS(4111), + [anon_sym___thiscall] = ACTIONS(4111), + [anon_sym___vectorcall] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4113), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_switch] = ACTIONS(4111), + [anon_sym_case] = ACTIONS(4111), + [anon_sym_default] = ACTIONS(4111), + [anon_sym_while] = ACTIONS(4111), + [anon_sym_do] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym___try] = ACTIONS(4111), + [anon_sym___leave] = ACTIONS(4111), + [anon_sym_not] = ACTIONS(4111), + [anon_sym_compl] = ACTIONS(4111), + [anon_sym_DASH_DASH] = ACTIONS(4113), + [anon_sym_PLUS_PLUS] = ACTIONS(4113), + [anon_sym_sizeof] = ACTIONS(4111), + [anon_sym___alignof__] = ACTIONS(4111), + [anon_sym___alignof] = ACTIONS(4111), + [anon_sym__alignof] = ACTIONS(4111), + [anon_sym_alignof] = ACTIONS(4111), + [anon_sym__Alignof] = ACTIONS(4111), + [anon_sym_offsetof] = ACTIONS(4111), + [anon_sym__Generic] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [anon_sym_asm] = ACTIONS(4111), + [anon_sym___asm__] = ACTIONS(4111), + [anon_sym___asm] = ACTIONS(4111), + [sym_number_literal] = ACTIONS(4113), + [anon_sym_L_SQUOTE] = ACTIONS(4113), + [anon_sym_u_SQUOTE] = ACTIONS(4113), + [anon_sym_U_SQUOTE] = ACTIONS(4113), + [anon_sym_u8_SQUOTE] = ACTIONS(4113), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_L_DQUOTE] = ACTIONS(4113), + [anon_sym_u_DQUOTE] = ACTIONS(4113), + [anon_sym_U_DQUOTE] = ACTIONS(4113), + [anon_sym_u8_DQUOTE] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [anon_sym_NULL] = ACTIONS(4111), + [anon_sym_nullptr] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_try] = ACTIONS(4111), + [anon_sym_delete] = ACTIONS(4111), + [anon_sym_throw] = ACTIONS(4111), + [anon_sym_namespace] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_concept] = ACTIONS(4111), + [anon_sym_co_return] = ACTIONS(4111), + [anon_sym_co_yield] = ACTIONS(4111), + [anon_sym_R_DQUOTE] = ACTIONS(4113), + [anon_sym_LR_DQUOTE] = ACTIONS(4113), + [anon_sym_uR_DQUOTE] = ACTIONS(4113), + [anon_sym_UR_DQUOTE] = ACTIONS(4113), + [anon_sym_u8R_DQUOTE] = ACTIONS(4113), + [anon_sym_co_await] = ACTIONS(4111), + [anon_sym_new] = ACTIONS(4111), + [anon_sym_requires] = ACTIONS(4111), + [anon_sym_CARET_CARET] = ACTIONS(4113), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + [sym_this] = ACTIONS(4111), }, - [STATE(1458)] = { - [sym_expression] = STATE(4489), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(898)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_include_token1] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token2] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_BANG] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym___cdecl] = ACTIONS(3906), + [anon_sym___clrcall] = ACTIONS(3906), + [anon_sym___stdcall] = ACTIONS(3906), + [anon_sym___fastcall] = ACTIONS(3906), + [anon_sym___thiscall] = ACTIONS(3906), + [anon_sym___vectorcall] = ACTIONS(3906), + [anon_sym_LBRACE] = ACTIONS(3908), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_switch] = ACTIONS(3906), + [anon_sym_case] = ACTIONS(3906), + [anon_sym_default] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_break] = ACTIONS(3906), + [anon_sym_continue] = ACTIONS(3906), + [anon_sym_goto] = ACTIONS(3906), + [anon_sym___try] = ACTIONS(3906), + [anon_sym___leave] = ACTIONS(3906), + [anon_sym_not] = ACTIONS(3906), + [anon_sym_compl] = ACTIONS(3906), + [anon_sym_DASH_DASH] = ACTIONS(3908), + [anon_sym_PLUS_PLUS] = ACTIONS(3908), + [anon_sym_sizeof] = ACTIONS(3906), + [anon_sym___alignof__] = ACTIONS(3906), + [anon_sym___alignof] = ACTIONS(3906), + [anon_sym__alignof] = ACTIONS(3906), + [anon_sym_alignof] = ACTIONS(3906), + [anon_sym__Alignof] = ACTIONS(3906), + [anon_sym_offsetof] = ACTIONS(3906), + [anon_sym__Generic] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [anon_sym_asm] = ACTIONS(3906), + [anon_sym___asm__] = ACTIONS(3906), + [anon_sym___asm] = ACTIONS(3906), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3908), + [anon_sym_u_SQUOTE] = ACTIONS(3908), + [anon_sym_U_SQUOTE] = ACTIONS(3908), + [anon_sym_u8_SQUOTE] = ACTIONS(3908), + [anon_sym_SQUOTE] = ACTIONS(3908), + [anon_sym_L_DQUOTE] = ACTIONS(3908), + [anon_sym_u_DQUOTE] = ACTIONS(3908), + [anon_sym_U_DQUOTE] = ACTIONS(3908), + [anon_sym_u8_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(3908), + [sym_true] = ACTIONS(3906), + [sym_false] = ACTIONS(3906), + [anon_sym_NULL] = ACTIONS(3906), + [anon_sym_nullptr] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3906), + [anon_sym_throw] = ACTIONS(3906), + [anon_sym_namespace] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_concept] = ACTIONS(3906), + [anon_sym_co_return] = ACTIONS(3906), + [anon_sym_co_yield] = ACTIONS(3906), + [anon_sym_R_DQUOTE] = ACTIONS(3908), + [anon_sym_LR_DQUOTE] = ACTIONS(3908), + [anon_sym_uR_DQUOTE] = ACTIONS(3908), + [anon_sym_UR_DQUOTE] = ACTIONS(3908), + [anon_sym_u8R_DQUOTE] = ACTIONS(3908), + [anon_sym_co_await] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_requires] = ACTIONS(3906), + [anon_sym_CARET_CARET] = ACTIONS(3908), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + [sym_this] = ACTIONS(3906), }, - [STATE(1459)] = { - [sym_expression] = STATE(4490), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(899)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1460)] = { - [sym_expression] = STATE(4493), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(900)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_include_token1] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_BANG] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym___cdecl] = ACTIONS(3922), + [anon_sym___clrcall] = ACTIONS(3922), + [anon_sym___stdcall] = ACTIONS(3922), + [anon_sym___fastcall] = ACTIONS(3922), + [anon_sym___thiscall] = ACTIONS(3922), + [anon_sym___vectorcall] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_if] = ACTIONS(3922), + [anon_sym_switch] = ACTIONS(3922), + [anon_sym_case] = ACTIONS(3922), + [anon_sym_default] = ACTIONS(3922), + [anon_sym_while] = ACTIONS(3922), + [anon_sym_do] = ACTIONS(3922), + [anon_sym_for] = ACTIONS(3922), + [anon_sym_return] = ACTIONS(3922), + [anon_sym_break] = ACTIONS(3922), + [anon_sym_continue] = ACTIONS(3922), + [anon_sym_goto] = ACTIONS(3922), + [anon_sym___try] = ACTIONS(3922), + [anon_sym___leave] = ACTIONS(3922), + [anon_sym_not] = ACTIONS(3922), + [anon_sym_compl] = ACTIONS(3922), + [anon_sym_DASH_DASH] = ACTIONS(3924), + [anon_sym_PLUS_PLUS] = ACTIONS(3924), + [anon_sym_sizeof] = ACTIONS(3922), + [anon_sym___alignof__] = ACTIONS(3922), + [anon_sym___alignof] = ACTIONS(3922), + [anon_sym__alignof] = ACTIONS(3922), + [anon_sym_alignof] = ACTIONS(3922), + [anon_sym__Alignof] = ACTIONS(3922), + [anon_sym_offsetof] = ACTIONS(3922), + [anon_sym__Generic] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [anon_sym_asm] = ACTIONS(3922), + [anon_sym___asm__] = ACTIONS(3922), + [anon_sym___asm] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3924), + [anon_sym_L_SQUOTE] = ACTIONS(3924), + [anon_sym_u_SQUOTE] = ACTIONS(3924), + [anon_sym_U_SQUOTE] = ACTIONS(3924), + [anon_sym_u8_SQUOTE] = ACTIONS(3924), + [anon_sym_SQUOTE] = ACTIONS(3924), + [anon_sym_L_DQUOTE] = ACTIONS(3924), + [anon_sym_u_DQUOTE] = ACTIONS(3924), + [anon_sym_U_DQUOTE] = ACTIONS(3924), + [anon_sym_u8_DQUOTE] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [anon_sym_NULL] = ACTIONS(3922), + [anon_sym_nullptr] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_try] = ACTIONS(3922), + [anon_sym_delete] = ACTIONS(3922), + [anon_sym_throw] = ACTIONS(3922), + [anon_sym_namespace] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_concept] = ACTIONS(3922), + [anon_sym_co_return] = ACTIONS(3922), + [anon_sym_co_yield] = ACTIONS(3922), + [anon_sym_R_DQUOTE] = ACTIONS(3924), + [anon_sym_LR_DQUOTE] = ACTIONS(3924), + [anon_sym_uR_DQUOTE] = ACTIONS(3924), + [anon_sym_UR_DQUOTE] = ACTIONS(3924), + [anon_sym_u8R_DQUOTE] = ACTIONS(3924), + [anon_sym_co_await] = ACTIONS(3922), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3922), + [anon_sym_CARET_CARET] = ACTIONS(3924), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [sym_this] = ACTIONS(3922), }, - [STATE(1461)] = { - [sym_expression] = STATE(4495), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(901)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym___try] = ACTIONS(4172), + [anon_sym___leave] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(1462)] = { - [sym_expression] = STATE(4496), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(902)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token2] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym___try] = ACTIONS(3954), + [anon_sym___leave] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(1463)] = { - [sym_expression] = STATE(4497), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(903)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token2] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym___try] = ACTIONS(3958), + [anon_sym___leave] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), }, - [STATE(1464)] = { - [sym_expression] = STATE(4499), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(904)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token2] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym___try] = ACTIONS(3962), + [anon_sym___leave] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), }, - [STATE(1465)] = { - [sym_expression] = STATE(4500), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(905)] = { + [sym_identifier] = ACTIONS(3966), + [aux_sym_preproc_include_token1] = ACTIONS(3966), + [aux_sym_preproc_def_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token1] = ACTIONS(3966), + [aux_sym_preproc_if_token2] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), + [sym_preproc_directive] = ACTIONS(3966), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3968), + [anon_sym_TILDE] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3966), + [anon_sym_PLUS] = ACTIONS(3966), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_AMP_AMP] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3966), + [anon_sym_SEMI] = ACTIONS(3968), + [anon_sym___extension__] = ACTIONS(3966), + [anon_sym_typedef] = ACTIONS(3966), + [anon_sym_virtual] = ACTIONS(3966), + [anon_sym_extern] = ACTIONS(3966), + [anon_sym___attribute__] = ACTIONS(3966), + [anon_sym___attribute] = ACTIONS(3966), + [anon_sym_using] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), + [anon_sym___declspec] = ACTIONS(3966), + [anon_sym___based] = ACTIONS(3966), + [anon_sym___cdecl] = ACTIONS(3966), + [anon_sym___clrcall] = ACTIONS(3966), + [anon_sym___stdcall] = ACTIONS(3966), + [anon_sym___fastcall] = ACTIONS(3966), + [anon_sym___thiscall] = ACTIONS(3966), + [anon_sym___vectorcall] = ACTIONS(3966), + [anon_sym_LBRACE] = ACTIONS(3968), + [anon_sym_signed] = ACTIONS(3966), + [anon_sym_unsigned] = ACTIONS(3966), + [anon_sym_long] = ACTIONS(3966), + [anon_sym_short] = ACTIONS(3966), + [anon_sym_LBRACK] = ACTIONS(3966), + [anon_sym_static] = ACTIONS(3966), + [anon_sym_register] = ACTIONS(3966), + [anon_sym_inline] = ACTIONS(3966), + [anon_sym___inline] = ACTIONS(3966), + [anon_sym___inline__] = ACTIONS(3966), + [anon_sym___forceinline] = ACTIONS(3966), + [anon_sym_thread_local] = ACTIONS(3966), + [anon_sym___thread] = ACTIONS(3966), + [anon_sym_const] = ACTIONS(3966), + [anon_sym_constexpr] = ACTIONS(3966), + [anon_sym_volatile] = ACTIONS(3966), + [anon_sym_restrict] = ACTIONS(3966), + [anon_sym___restrict__] = ACTIONS(3966), + [anon_sym__Atomic] = ACTIONS(3966), + [anon_sym__Noreturn] = ACTIONS(3966), + [anon_sym_noreturn] = ACTIONS(3966), + [anon_sym__Nonnull] = ACTIONS(3966), + [anon_sym_mutable] = ACTIONS(3966), + [anon_sym_constinit] = ACTIONS(3966), + [anon_sym_consteval] = ACTIONS(3966), + [anon_sym_alignas] = ACTIONS(3966), + [anon_sym__Alignas] = ACTIONS(3966), + [sym_primitive_type] = ACTIONS(3966), + [anon_sym_enum] = ACTIONS(3966), + [anon_sym_class] = ACTIONS(3966), + [anon_sym_struct] = ACTIONS(3966), + [anon_sym_union] = ACTIONS(3966), + [anon_sym_if] = ACTIONS(3966), + [anon_sym_switch] = ACTIONS(3966), + [anon_sym_case] = ACTIONS(3966), + [anon_sym_default] = ACTIONS(3966), + [anon_sym_while] = ACTIONS(3966), + [anon_sym_do] = ACTIONS(3966), + [anon_sym_for] = ACTIONS(3966), + [anon_sym_return] = ACTIONS(3966), + [anon_sym_break] = ACTIONS(3966), + [anon_sym_continue] = ACTIONS(3966), + [anon_sym_goto] = ACTIONS(3966), + [anon_sym___try] = ACTIONS(3966), + [anon_sym___leave] = ACTIONS(3966), + [anon_sym_not] = ACTIONS(3966), + [anon_sym_compl] = ACTIONS(3966), + [anon_sym_DASH_DASH] = ACTIONS(3968), + [anon_sym_PLUS_PLUS] = ACTIONS(3968), + [anon_sym_sizeof] = ACTIONS(3966), + [anon_sym___alignof__] = ACTIONS(3966), + [anon_sym___alignof] = ACTIONS(3966), + [anon_sym__alignof] = ACTIONS(3966), + [anon_sym_alignof] = ACTIONS(3966), + [anon_sym__Alignof] = ACTIONS(3966), + [anon_sym_offsetof] = ACTIONS(3966), + [anon_sym__Generic] = ACTIONS(3966), + [anon_sym_typename] = ACTIONS(3966), + [anon_sym_asm] = ACTIONS(3966), + [anon_sym___asm__] = ACTIONS(3966), + [anon_sym___asm] = ACTIONS(3966), + [sym_number_literal] = ACTIONS(3968), + [anon_sym_L_SQUOTE] = ACTIONS(3968), + [anon_sym_u_SQUOTE] = ACTIONS(3968), + [anon_sym_U_SQUOTE] = ACTIONS(3968), + [anon_sym_u8_SQUOTE] = ACTIONS(3968), + [anon_sym_SQUOTE] = ACTIONS(3968), + [anon_sym_L_DQUOTE] = ACTIONS(3968), + [anon_sym_u_DQUOTE] = ACTIONS(3968), + [anon_sym_U_DQUOTE] = ACTIONS(3968), + [anon_sym_u8_DQUOTE] = ACTIONS(3968), + [anon_sym_DQUOTE] = ACTIONS(3968), + [sym_true] = ACTIONS(3966), + [sym_false] = ACTIONS(3966), + [anon_sym_NULL] = ACTIONS(3966), + [anon_sym_nullptr] = ACTIONS(3966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3966), + [anon_sym_decltype] = ACTIONS(3966), + [anon_sym_explicit] = ACTIONS(3966), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(3966), + [anon_sym_try] = ACTIONS(3966), + [anon_sym_delete] = ACTIONS(3966), + [anon_sym_throw] = ACTIONS(3966), + [anon_sym_namespace] = ACTIONS(3966), + [anon_sym_static_assert] = ACTIONS(3966), + [anon_sym_concept] = ACTIONS(3966), + [anon_sym_co_return] = ACTIONS(3966), + [anon_sym_co_yield] = ACTIONS(3966), + [anon_sym_R_DQUOTE] = ACTIONS(3968), + [anon_sym_LR_DQUOTE] = ACTIONS(3968), + [anon_sym_uR_DQUOTE] = ACTIONS(3968), + [anon_sym_UR_DQUOTE] = ACTIONS(3968), + [anon_sym_u8R_DQUOTE] = ACTIONS(3968), + [anon_sym_co_await] = ACTIONS(3966), + [anon_sym_new] = ACTIONS(3966), + [anon_sym_requires] = ACTIONS(3966), + [anon_sym_CARET_CARET] = ACTIONS(3968), + [anon_sym_LBRACK_COLON] = ACTIONS(3968), + [sym_this] = ACTIONS(3966), }, - [STATE(1466)] = { - [sym_expression] = STATE(4505), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(906)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym___try] = ACTIONS(4176), + [anon_sym___leave] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(1467)] = { - [sym_expression] = STATE(4688), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(907)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym___try] = ACTIONS(4180), + [anon_sym___leave] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(1468)] = { - [sym_expression] = STATE(3124), - [sym__string] = STATE(3301), - [sym_conditional_expression] = STATE(3390), - [sym_assignment_expression] = STATE(3390), - [sym_pointer_expression] = STATE(3562), - [sym_unary_expression] = STATE(3390), - [sym_binary_expression] = STATE(3390), - [sym_update_expression] = STATE(3390), - [sym_cast_expression] = STATE(3390), - [sym_sizeof_expression] = STATE(3390), - [sym_alignof_expression] = STATE(3390), - [sym_offsetof_expression] = STATE(3390), - [sym_generic_expression] = STATE(3390), - [sym_subscript_expression] = STATE(3562), - [sym_call_expression] = STATE(3562), - [sym_gnu_asm_expression] = STATE(3390), - [sym_extension_expression] = STATE(3390), - [sym_field_expression] = STATE(3562), - [sym_compound_literal_expression] = STATE(3390), - [sym_parenthesized_expression] = STATE(3562), - [sym_char_literal] = STATE(3301), - [sym_concatenated_string] = STATE(3301), - [sym_string_literal] = STATE(2309), - [sym_null] = STATE(3390), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7864), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3390), - [sym_raw_string_literal] = STATE(2309), - [sym_co_await_expression] = STATE(3390), - [sym_new_expression] = STATE(3390), - [sym_delete_expression] = STATE(3390), - [sym_requires_clause] = STATE(3390), - [sym_requires_expression] = STATE(3390), - [sym_lambda_expression] = STATE(3390), - [sym_lambda_capture_specifier] = STATE(5571), - [sym_fold_expression] = STATE(3390), - [sym_parameter_pack_expansion] = STATE(3390), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3562), - [sym_qualified_type_identifier] = STATE(7864), - [sym_user_defined_literal] = STATE(3562), - [sym_identifier] = ACTIONS(2470), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2476), - [anon_sym_not] = ACTIONS(1798), - [anon_sym_compl] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym___asm] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_R_DQUOTE] = ACTIONS(1856), - [anon_sym_LR_DQUOTE] = ACTIONS(1856), - [anon_sym_uR_DQUOTE] = ACTIONS(1856), - [anon_sym_UR_DQUOTE] = ACTIONS(1856), - [anon_sym_u8R_DQUOTE] = ACTIONS(1856), - [anon_sym_co_await] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_requires] = ACTIONS(1862), - [sym_this] = ACTIONS(1842), + [STATE(908)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym___try] = ACTIONS(4184), + [anon_sym___leave] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(1469)] = { - [sym_expression] = STATE(4692), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(909)] = { + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym___try] = ACTIONS(4188), + [anon_sym___leave] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(1470)] = { - [sym_expression] = STATE(4693), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(910)] = { + [sym_identifier] = ACTIONS(3974), + [aux_sym_preproc_include_token1] = ACTIONS(3974), + [aux_sym_preproc_def_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token1] = ACTIONS(3974), + [aux_sym_preproc_if_token2] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), + [sym_preproc_directive] = ACTIONS(3974), + [anon_sym_LPAREN2] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_TILDE] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3974), + [anon_sym_PLUS] = ACTIONS(3974), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym___extension__] = ACTIONS(3974), + [anon_sym_typedef] = ACTIONS(3974), + [anon_sym_virtual] = ACTIONS(3974), + [anon_sym_extern] = ACTIONS(3974), + [anon_sym___attribute__] = ACTIONS(3974), + [anon_sym___attribute] = ACTIONS(3974), + [anon_sym_using] = ACTIONS(3974), + [anon_sym_COLON_COLON] = ACTIONS(3976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), + [anon_sym___declspec] = ACTIONS(3974), + [anon_sym___based] = ACTIONS(3974), + [anon_sym___cdecl] = ACTIONS(3974), + [anon_sym___clrcall] = ACTIONS(3974), + [anon_sym___stdcall] = ACTIONS(3974), + [anon_sym___fastcall] = ACTIONS(3974), + [anon_sym___thiscall] = ACTIONS(3974), + [anon_sym___vectorcall] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_signed] = ACTIONS(3974), + [anon_sym_unsigned] = ACTIONS(3974), + [anon_sym_long] = ACTIONS(3974), + [anon_sym_short] = ACTIONS(3974), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_static] = ACTIONS(3974), + [anon_sym_register] = ACTIONS(3974), + [anon_sym_inline] = ACTIONS(3974), + [anon_sym___inline] = ACTIONS(3974), + [anon_sym___inline__] = ACTIONS(3974), + [anon_sym___forceinline] = ACTIONS(3974), + [anon_sym_thread_local] = ACTIONS(3974), + [anon_sym___thread] = ACTIONS(3974), + [anon_sym_const] = ACTIONS(3974), + [anon_sym_constexpr] = ACTIONS(3974), + [anon_sym_volatile] = ACTIONS(3974), + [anon_sym_restrict] = ACTIONS(3974), + [anon_sym___restrict__] = ACTIONS(3974), + [anon_sym__Atomic] = ACTIONS(3974), + [anon_sym__Noreturn] = ACTIONS(3974), + [anon_sym_noreturn] = ACTIONS(3974), + [anon_sym__Nonnull] = ACTIONS(3974), + [anon_sym_mutable] = ACTIONS(3974), + [anon_sym_constinit] = ACTIONS(3974), + [anon_sym_consteval] = ACTIONS(3974), + [anon_sym_alignas] = ACTIONS(3974), + [anon_sym__Alignas] = ACTIONS(3974), + [sym_primitive_type] = ACTIONS(3974), + [anon_sym_enum] = ACTIONS(3974), + [anon_sym_class] = ACTIONS(3974), + [anon_sym_struct] = ACTIONS(3974), + [anon_sym_union] = ACTIONS(3974), + [anon_sym_if] = ACTIONS(3974), + [anon_sym_switch] = ACTIONS(3974), + [anon_sym_case] = ACTIONS(3974), + [anon_sym_default] = ACTIONS(3974), + [anon_sym_while] = ACTIONS(3974), + [anon_sym_do] = ACTIONS(3974), + [anon_sym_for] = ACTIONS(3974), + [anon_sym_return] = ACTIONS(3974), + [anon_sym_break] = ACTIONS(3974), + [anon_sym_continue] = ACTIONS(3974), + [anon_sym_goto] = ACTIONS(3974), + [anon_sym___try] = ACTIONS(3974), + [anon_sym___leave] = ACTIONS(3974), + [anon_sym_not] = ACTIONS(3974), + [anon_sym_compl] = ACTIONS(3974), + [anon_sym_DASH_DASH] = ACTIONS(3976), + [anon_sym_PLUS_PLUS] = ACTIONS(3976), + [anon_sym_sizeof] = ACTIONS(3974), + [anon_sym___alignof__] = ACTIONS(3974), + [anon_sym___alignof] = ACTIONS(3974), + [anon_sym__alignof] = ACTIONS(3974), + [anon_sym_alignof] = ACTIONS(3974), + [anon_sym__Alignof] = ACTIONS(3974), + [anon_sym_offsetof] = ACTIONS(3974), + [anon_sym__Generic] = ACTIONS(3974), + [anon_sym_typename] = ACTIONS(3974), + [anon_sym_asm] = ACTIONS(3974), + [anon_sym___asm__] = ACTIONS(3974), + [anon_sym___asm] = ACTIONS(3974), + [sym_number_literal] = ACTIONS(3976), + [anon_sym_L_SQUOTE] = ACTIONS(3976), + [anon_sym_u_SQUOTE] = ACTIONS(3976), + [anon_sym_U_SQUOTE] = ACTIONS(3976), + [anon_sym_u8_SQUOTE] = ACTIONS(3976), + [anon_sym_SQUOTE] = ACTIONS(3976), + [anon_sym_L_DQUOTE] = ACTIONS(3976), + [anon_sym_u_DQUOTE] = ACTIONS(3976), + [anon_sym_U_DQUOTE] = ACTIONS(3976), + [anon_sym_u8_DQUOTE] = ACTIONS(3976), + [anon_sym_DQUOTE] = ACTIONS(3976), + [sym_true] = ACTIONS(3974), + [sym_false] = ACTIONS(3974), + [anon_sym_NULL] = ACTIONS(3974), + [anon_sym_nullptr] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3974), + [anon_sym_decltype] = ACTIONS(3974), + [anon_sym_explicit] = ACTIONS(3974), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(3974), + [anon_sym_try] = ACTIONS(3974), + [anon_sym_delete] = ACTIONS(3974), + [anon_sym_throw] = ACTIONS(3974), + [anon_sym_namespace] = ACTIONS(3974), + [anon_sym_static_assert] = ACTIONS(3974), + [anon_sym_concept] = ACTIONS(3974), + [anon_sym_co_return] = ACTIONS(3974), + [anon_sym_co_yield] = ACTIONS(3974), + [anon_sym_R_DQUOTE] = ACTIONS(3976), + [anon_sym_LR_DQUOTE] = ACTIONS(3976), + [anon_sym_uR_DQUOTE] = ACTIONS(3976), + [anon_sym_UR_DQUOTE] = ACTIONS(3976), + [anon_sym_u8R_DQUOTE] = ACTIONS(3976), + [anon_sym_co_await] = ACTIONS(3974), + [anon_sym_new] = ACTIONS(3974), + [anon_sym_requires] = ACTIONS(3974), + [anon_sym_CARET_CARET] = ACTIONS(3976), + [anon_sym_LBRACK_COLON] = ACTIONS(3976), + [sym_this] = ACTIONS(3974), }, - [STATE(1471)] = { - [sym_expression] = STATE(4536), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(911)] = { + [sym_expression] = STATE(6790), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_initializer_list] = STATE(7260), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2024), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2026), + [anon_sym_GT_GT] = ACTIONS(2024), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_LT_EQ_GT] = ACTIONS(2026), + [anon_sym_or] = ACTIONS(2024), + [anon_sym_and] = ACTIONS(2024), + [anon_sym_bitor] = ACTIONS(2024), + [anon_sym_xor] = ACTIONS(2024), + [anon_sym_bitand] = ACTIONS(2024), + [anon_sym_not_eq] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_DOT_STAR] = ACTIONS(2026), + [anon_sym_DASH_GT] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1472)] = { - [sym_expression] = STATE(4694), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(912)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym___try] = ACTIONS(4192), + [anon_sym___leave] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(1473)] = { - [sym_expression] = STATE(4546), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(913)] = { + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token2] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym___try] = ACTIONS(4148), + [anon_sym___leave] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(1474)] = { - [sym_expression] = STATE(4445), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(914)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1475)] = { - [sym_expression] = STATE(4706), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(915)] = { + [sym_identifier] = ACTIONS(4119), + [aux_sym_preproc_include_token1] = ACTIONS(4119), + [aux_sym_preproc_def_token1] = ACTIONS(4119), + [aux_sym_preproc_if_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), + [sym_preproc_directive] = ACTIONS(4119), + [anon_sym_LPAREN2] = ACTIONS(4121), + [anon_sym_BANG] = ACTIONS(4121), + [anon_sym_TILDE] = ACTIONS(4121), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP_AMP] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_SEMI] = ACTIONS(4121), + [anon_sym___extension__] = ACTIONS(4119), + [anon_sym_typedef] = ACTIONS(4119), + [anon_sym_virtual] = ACTIONS(4119), + [anon_sym_extern] = ACTIONS(4119), + [anon_sym___attribute__] = ACTIONS(4119), + [anon_sym___attribute] = ACTIONS(4119), + [anon_sym_using] = ACTIONS(4119), + [anon_sym_COLON_COLON] = ACTIONS(4121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), + [anon_sym___declspec] = ACTIONS(4119), + [anon_sym___based] = ACTIONS(4119), + [anon_sym___cdecl] = ACTIONS(4119), + [anon_sym___clrcall] = ACTIONS(4119), + [anon_sym___stdcall] = ACTIONS(4119), + [anon_sym___fastcall] = ACTIONS(4119), + [anon_sym___thiscall] = ACTIONS(4119), + [anon_sym___vectorcall] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_RBRACE] = ACTIONS(4121), + [anon_sym_signed] = ACTIONS(4119), + [anon_sym_unsigned] = ACTIONS(4119), + [anon_sym_long] = ACTIONS(4119), + [anon_sym_short] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_static] = ACTIONS(4119), + [anon_sym_register] = ACTIONS(4119), + [anon_sym_inline] = ACTIONS(4119), + [anon_sym___inline] = ACTIONS(4119), + [anon_sym___inline__] = ACTIONS(4119), + [anon_sym___forceinline] = ACTIONS(4119), + [anon_sym_thread_local] = ACTIONS(4119), + [anon_sym___thread] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4119), + [anon_sym_constexpr] = ACTIONS(4119), + [anon_sym_volatile] = ACTIONS(4119), + [anon_sym_restrict] = ACTIONS(4119), + [anon_sym___restrict__] = ACTIONS(4119), + [anon_sym__Atomic] = ACTIONS(4119), + [anon_sym__Noreturn] = ACTIONS(4119), + [anon_sym_noreturn] = ACTIONS(4119), + [anon_sym__Nonnull] = ACTIONS(4119), + [anon_sym_mutable] = ACTIONS(4119), + [anon_sym_constinit] = ACTIONS(4119), + [anon_sym_consteval] = ACTIONS(4119), + [anon_sym_alignas] = ACTIONS(4119), + [anon_sym__Alignas] = ACTIONS(4119), + [sym_primitive_type] = ACTIONS(4119), + [anon_sym_enum] = ACTIONS(4119), + [anon_sym_class] = ACTIONS(4119), + [anon_sym_struct] = ACTIONS(4119), + [anon_sym_union] = ACTIONS(4119), + [anon_sym_if] = ACTIONS(4119), + [anon_sym_switch] = ACTIONS(4119), + [anon_sym_case] = ACTIONS(4119), + [anon_sym_default] = ACTIONS(4119), + [anon_sym_while] = ACTIONS(4119), + [anon_sym_do] = ACTIONS(4119), + [anon_sym_for] = ACTIONS(4119), + [anon_sym_return] = ACTIONS(4119), + [anon_sym_break] = ACTIONS(4119), + [anon_sym_continue] = ACTIONS(4119), + [anon_sym_goto] = ACTIONS(4119), + [anon_sym___try] = ACTIONS(4119), + [anon_sym___leave] = ACTIONS(4119), + [anon_sym_not] = ACTIONS(4119), + [anon_sym_compl] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4121), + [anon_sym_PLUS_PLUS] = ACTIONS(4121), + [anon_sym_sizeof] = ACTIONS(4119), + [anon_sym___alignof__] = ACTIONS(4119), + [anon_sym___alignof] = ACTIONS(4119), + [anon_sym__alignof] = ACTIONS(4119), + [anon_sym_alignof] = ACTIONS(4119), + [anon_sym__Alignof] = ACTIONS(4119), + [anon_sym_offsetof] = ACTIONS(4119), + [anon_sym__Generic] = ACTIONS(4119), + [anon_sym_typename] = ACTIONS(4119), + [anon_sym_asm] = ACTIONS(4119), + [anon_sym___asm__] = ACTIONS(4119), + [anon_sym___asm] = ACTIONS(4119), + [sym_number_literal] = ACTIONS(4121), + [anon_sym_L_SQUOTE] = ACTIONS(4121), + [anon_sym_u_SQUOTE] = ACTIONS(4121), + [anon_sym_U_SQUOTE] = ACTIONS(4121), + [anon_sym_u8_SQUOTE] = ACTIONS(4121), + [anon_sym_SQUOTE] = ACTIONS(4121), + [anon_sym_L_DQUOTE] = ACTIONS(4121), + [anon_sym_u_DQUOTE] = ACTIONS(4121), + [anon_sym_U_DQUOTE] = ACTIONS(4121), + [anon_sym_u8_DQUOTE] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(4121), + [sym_true] = ACTIONS(4119), + [sym_false] = ACTIONS(4119), + [anon_sym_NULL] = ACTIONS(4119), + [anon_sym_nullptr] = ACTIONS(4119), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4119), + [anon_sym_decltype] = ACTIONS(4119), + [anon_sym_explicit] = ACTIONS(4119), + [anon_sym_template] = ACTIONS(4119), + [anon_sym_operator] = ACTIONS(4119), + [anon_sym_try] = ACTIONS(4119), + [anon_sym_delete] = ACTIONS(4119), + [anon_sym_throw] = ACTIONS(4119), + [anon_sym_namespace] = ACTIONS(4119), + [anon_sym_static_assert] = ACTIONS(4119), + [anon_sym_concept] = ACTIONS(4119), + [anon_sym_co_return] = ACTIONS(4119), + [anon_sym_co_yield] = ACTIONS(4119), + [anon_sym_R_DQUOTE] = ACTIONS(4121), + [anon_sym_LR_DQUOTE] = ACTIONS(4121), + [anon_sym_uR_DQUOTE] = ACTIONS(4121), + [anon_sym_UR_DQUOTE] = ACTIONS(4121), + [anon_sym_u8R_DQUOTE] = ACTIONS(4121), + [anon_sym_co_await] = ACTIONS(4119), + [anon_sym_new] = ACTIONS(4119), + [anon_sym_requires] = ACTIONS(4119), + [anon_sym_CARET_CARET] = ACTIONS(4121), + [anon_sym_LBRACK_COLON] = ACTIONS(4121), + [sym_this] = ACTIONS(4119), }, - [STATE(1476)] = { - [sym_expression] = STATE(4710), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(916)] = { + [sym_identifier] = ACTIONS(3986), + [aux_sym_preproc_include_token1] = ACTIONS(3986), + [aux_sym_preproc_def_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token1] = ACTIONS(3986), + [aux_sym_preproc_if_token2] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), + [sym_preproc_directive] = ACTIONS(3986), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3986), + [anon_sym_PLUS] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3988), + [anon_sym_AMP_AMP] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym___extension__] = ACTIONS(3986), + [anon_sym_typedef] = ACTIONS(3986), + [anon_sym_virtual] = ACTIONS(3986), + [anon_sym_extern] = ACTIONS(3986), + [anon_sym___attribute__] = ACTIONS(3986), + [anon_sym___attribute] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3986), + [anon_sym_COLON_COLON] = ACTIONS(3988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), + [anon_sym___declspec] = ACTIONS(3986), + [anon_sym___based] = ACTIONS(3986), + [anon_sym___cdecl] = ACTIONS(3986), + [anon_sym___clrcall] = ACTIONS(3986), + [anon_sym___stdcall] = ACTIONS(3986), + [anon_sym___fastcall] = ACTIONS(3986), + [anon_sym___thiscall] = ACTIONS(3986), + [anon_sym___vectorcall] = ACTIONS(3986), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3986), + [anon_sym_unsigned] = ACTIONS(3986), + [anon_sym_long] = ACTIONS(3986), + [anon_sym_short] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3986), + [anon_sym_static] = ACTIONS(3986), + [anon_sym_register] = ACTIONS(3986), + [anon_sym_inline] = ACTIONS(3986), + [anon_sym___inline] = ACTIONS(3986), + [anon_sym___inline__] = ACTIONS(3986), + [anon_sym___forceinline] = ACTIONS(3986), + [anon_sym_thread_local] = ACTIONS(3986), + [anon_sym___thread] = ACTIONS(3986), + [anon_sym_const] = ACTIONS(3986), + [anon_sym_constexpr] = ACTIONS(3986), + [anon_sym_volatile] = ACTIONS(3986), + [anon_sym_restrict] = ACTIONS(3986), + [anon_sym___restrict__] = ACTIONS(3986), + [anon_sym__Atomic] = ACTIONS(3986), + [anon_sym__Noreturn] = ACTIONS(3986), + [anon_sym_noreturn] = ACTIONS(3986), + [anon_sym__Nonnull] = ACTIONS(3986), + [anon_sym_mutable] = ACTIONS(3986), + [anon_sym_constinit] = ACTIONS(3986), + [anon_sym_consteval] = ACTIONS(3986), + [anon_sym_alignas] = ACTIONS(3986), + [anon_sym__Alignas] = ACTIONS(3986), + [sym_primitive_type] = ACTIONS(3986), + [anon_sym_enum] = ACTIONS(3986), + [anon_sym_class] = ACTIONS(3986), + [anon_sym_struct] = ACTIONS(3986), + [anon_sym_union] = ACTIONS(3986), + [anon_sym_if] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3986), + [anon_sym_case] = ACTIONS(3986), + [anon_sym_default] = ACTIONS(3986), + [anon_sym_while] = ACTIONS(3986), + [anon_sym_do] = ACTIONS(3986), + [anon_sym_for] = ACTIONS(3986), + [anon_sym_return] = ACTIONS(3986), + [anon_sym_break] = ACTIONS(3986), + [anon_sym_continue] = ACTIONS(3986), + [anon_sym_goto] = ACTIONS(3986), + [anon_sym___try] = ACTIONS(3986), + [anon_sym___leave] = ACTIONS(3986), + [anon_sym_not] = ACTIONS(3986), + [anon_sym_compl] = ACTIONS(3986), + [anon_sym_DASH_DASH] = ACTIONS(3988), + [anon_sym_PLUS_PLUS] = ACTIONS(3988), + [anon_sym_sizeof] = ACTIONS(3986), + [anon_sym___alignof__] = ACTIONS(3986), + [anon_sym___alignof] = ACTIONS(3986), + [anon_sym__alignof] = ACTIONS(3986), + [anon_sym_alignof] = ACTIONS(3986), + [anon_sym__Alignof] = ACTIONS(3986), + [anon_sym_offsetof] = ACTIONS(3986), + [anon_sym__Generic] = ACTIONS(3986), + [anon_sym_typename] = ACTIONS(3986), + [anon_sym_asm] = ACTIONS(3986), + [anon_sym___asm__] = ACTIONS(3986), + [anon_sym___asm] = ACTIONS(3986), + [sym_number_literal] = ACTIONS(3988), + [anon_sym_L_SQUOTE] = ACTIONS(3988), + [anon_sym_u_SQUOTE] = ACTIONS(3988), + [anon_sym_U_SQUOTE] = ACTIONS(3988), + [anon_sym_u8_SQUOTE] = ACTIONS(3988), + [anon_sym_SQUOTE] = ACTIONS(3988), + [anon_sym_L_DQUOTE] = ACTIONS(3988), + [anon_sym_u_DQUOTE] = ACTIONS(3988), + [anon_sym_U_DQUOTE] = ACTIONS(3988), + [anon_sym_u8_DQUOTE] = ACTIONS(3988), + [anon_sym_DQUOTE] = ACTIONS(3988), + [sym_true] = ACTIONS(3986), + [sym_false] = ACTIONS(3986), + [anon_sym_NULL] = ACTIONS(3986), + [anon_sym_nullptr] = ACTIONS(3986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3986), + [anon_sym_decltype] = ACTIONS(3986), + [anon_sym_explicit] = ACTIONS(3986), + [anon_sym_template] = ACTIONS(3986), + [anon_sym_operator] = ACTIONS(3986), + [anon_sym_try] = ACTIONS(3986), + [anon_sym_delete] = ACTIONS(3986), + [anon_sym_throw] = ACTIONS(3986), + [anon_sym_namespace] = ACTIONS(3986), + [anon_sym_static_assert] = ACTIONS(3986), + [anon_sym_concept] = ACTIONS(3986), + [anon_sym_co_return] = ACTIONS(3986), + [anon_sym_co_yield] = ACTIONS(3986), + [anon_sym_R_DQUOTE] = ACTIONS(3988), + [anon_sym_LR_DQUOTE] = ACTIONS(3988), + [anon_sym_uR_DQUOTE] = ACTIONS(3988), + [anon_sym_UR_DQUOTE] = ACTIONS(3988), + [anon_sym_u8R_DQUOTE] = ACTIONS(3988), + [anon_sym_co_await] = ACTIONS(3986), + [anon_sym_new] = ACTIONS(3986), + [anon_sym_requires] = ACTIONS(3986), + [anon_sym_CARET_CARET] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3988), + [sym_this] = ACTIONS(3986), }, - [STATE(1477)] = { - [sym_expression] = STATE(4715), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(917)] = { + [sym_expression] = STATE(7005), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4572), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4568), + [anon_sym_GT_GT] = ACTIONS(4568), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(4568), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4570), + [anon_sym_and] = ACTIONS(4570), + [anon_sym_bitor] = ACTIONS(4570), + [anon_sym_xor] = ACTIONS(4570), + [anon_sym_bitand] = ACTIONS(4570), + [anon_sym_not_eq] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(4570), + [anon_sym_DOT_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT] = ACTIONS(4568), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1478)] = { - [sym_expression] = STATE(4717), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(918)] = { + [sym_expression] = STATE(6628), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4574), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4586), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4589), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(4592), + [sym_this] = ACTIONS(3425), }, - [STATE(1479)] = { - [sym_expression] = STATE(4718), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(919)] = { + [sym_expression] = STATE(5418), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(4595), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4598), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4604), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(4607), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4610), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(4613), + [sym_this] = ACTIONS(2714), }, - [STATE(1480)] = { - [sym_expression] = STATE(4721), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(920)] = { + [sym_expression] = STATE(6773), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4616), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4622), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4625), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4628), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4631), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(4634), + [sym_this] = ACTIONS(2851), }, - [STATE(1481)] = { - [sym_expression] = STATE(4409), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(921)] = { + [sym_expression] = STATE(5679), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(3472), + [anon_sym_COLON_COLON] = ACTIONS(3475), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(3481), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(3487), + [sym_this] = ACTIONS(2004), }, - [STATE(1482)] = { - [sym_expression] = STATE(4516), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(922)] = { + [sym_expression] = STATE(6237), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(4637), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4643), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4646), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(1483)] = { - [sym_expression] = STATE(4729), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(923)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4649), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4655), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(1484)] = { - [sym_expression] = STATE(4732), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(924)] = { + [sym_expression] = STATE(4650), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4658), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4664), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), }, - [STATE(1485)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(4984), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), + [STATE(925)] = { + [sym_expression] = STATE(5058), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(4679), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4685), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4688), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(4691), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4694), [anon_sym_delete] = ACTIONS(1926), [anon_sym_R_DQUOTE] = ACTIONS(1928), [anon_sym_LR_DQUOTE] = ACTIONS(1928), @@ -229680,16046 +184904,8390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_co_await] = ACTIONS(1930), [anon_sym_new] = ACTIONS(1932), [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), - }, - [STATE(1486)] = { - [sym_expression] = STATE(4740), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(4697), + [sym_this] = ACTIONS(1914), }, - [STATE(1487)] = { - [sym_expression] = STATE(4742), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(926)] = { + [sym_expression] = STATE(6426), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4706), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(1488)] = { - [sym_expression] = STATE(4743), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(927)] = { + [sym_expression] = STATE(5389), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4658), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4709), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), }, - [STATE(1489)] = { - [sym_expression] = STATE(4744), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), + [STATE(928)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN2] = ACTIONS(1296), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(1490)] = { - [sym_expression] = STATE(4410), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(929)] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4658), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4715), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), }, - [STATE(1491)] = { - [sym_expression] = STATE(4749), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(930)] = { + [sym_expression] = STATE(4764), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4721), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4724), + [anon_sym_COLON_COLON] = ACTIONS(4727), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), }, - [STATE(1492)] = { - [sym_expression] = STATE(4752), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(931)] = { + [sym_expression] = STATE(6728), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4730), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4733), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4739), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4742), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [sym_this] = ACTIONS(237), }, - [STATE(1493)] = { - [sym_expression] = STATE(4720), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(932)] = { + [sym_expression] = STATE(5306), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4658), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4745), + [anon_sym_COLON_COLON] = ACTIONS(4748), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4667), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), }, - [STATE(1494)] = { - [sym_expression] = STATE(4757), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(933)] = { + [sym_expression] = STATE(5180), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(4751), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4754), + [anon_sym_COLON_COLON] = ACTIONS(4757), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4760), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(4763), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4766), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(4769), + [sym_this] = ACTIONS(2630), }, - [STATE(1495)] = { - [sym_expression] = STATE(4758), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(934)] = { + [sym__declaration_modifiers] = STATE(2633), + [sym__declaration_specifiers] = STATE(8703), + [sym_attribute_specifier] = STATE(2633), + [sym_attribute_declaration] = STATE(2633), + [sym_ms_declspec_modifier] = STATE(2633), + [sym_storage_class_specifier] = STATE(2633), + [sym_type_qualifier] = STATE(2633), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(6302), + [sym_sized_type_specifier] = STATE(5975), + [sym_enum_specifier] = STATE(5975), + [sym_struct_specifier] = STATE(5975), + [sym_union_specifier] = STATE(5975), + [sym_placeholder_type_specifier] = STATE(5975), + [sym_decltype_auto] = STATE(6020), + [sym_decltype] = STATE(5891), + [sym_class_specifier] = STATE(5975), + [sym_dependent_type] = STATE(5975), + [sym_template_type] = STATE(5264), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8584), + [sym_qualified_type_identifier] = STATE(5495), + [sym_splice_specifier] = STATE(4691), + [sym__splice_specialization_specifier] = STATE(5263), + [sym_splice_type_specifier] = STATE(5891), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2633), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4774), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_TILDE] = ACTIONS(4774), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_PERCENT] = ACTIONS(4776), + [anon_sym_PIPE_PIPE] = ACTIONS(4774), + [anon_sym_AMP_AMP] = ACTIONS(4774), + [anon_sym_PIPE] = ACTIONS(4776), + [anon_sym_CARET] = ACTIONS(4776), + [anon_sym_AMP] = ACTIONS(4776), + [anon_sym_EQ_EQ] = ACTIONS(4774), + [anon_sym_BANG_EQ] = ACTIONS(4774), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_GT_EQ] = ACTIONS(4774), + [anon_sym_LT_EQ] = ACTIONS(4776), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_LT_LT] = ACTIONS(4776), + [anon_sym_GT_GT] = ACTIONS(4776), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(4778), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(4782), + [anon_sym_unsigned] = ACTIONS(4782), + [anon_sym_long] = ACTIONS(4782), + [anon_sym_short] = ACTIONS(4782), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4784), + [anon_sym_enum] = ACTIONS(4786), + [anon_sym_class] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4790), + [anon_sym_union] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4774), + [anon_sym_SLASH_EQ] = ACTIONS(4774), + [anon_sym_PERCENT_EQ] = ACTIONS(4774), + [anon_sym_PLUS_EQ] = ACTIONS(4774), + [anon_sym_DASH_EQ] = ACTIONS(4774), + [anon_sym_LT_LT_EQ] = ACTIONS(4774), + [anon_sym_GT_GT_EQ] = ACTIONS(4774), + [anon_sym_AMP_EQ] = ACTIONS(4774), + [anon_sym_CARET_EQ] = ACTIONS(4774), + [anon_sym_PIPE_EQ] = ACTIONS(4774), + [anon_sym_and_eq] = ACTIONS(4776), + [anon_sym_or_eq] = ACTIONS(4776), + [anon_sym_xor_eq] = ACTIONS(4776), + [anon_sym_not] = ACTIONS(4776), + [anon_sym_compl] = ACTIONS(4776), + [anon_sym_LT_EQ_GT] = ACTIONS(4774), + [anon_sym_or] = ACTIONS(4776), + [anon_sym_and] = ACTIONS(4776), + [anon_sym_bitor] = ACTIONS(4776), + [anon_sym_xor] = ACTIONS(4776), + [anon_sym_bitand] = ACTIONS(4776), + [anon_sym_not_eq] = ACTIONS(4776), + [anon_sym_DASH_DASH] = ACTIONS(4774), + [anon_sym_PLUS_PLUS] = ACTIONS(4774), + [anon_sym_typename] = ACTIONS(4794), + [anon_sym_DASH_GT] = ACTIONS(4776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4796), + [anon_sym_decltype] = ACTIONS(4798), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_delete] = ACTIONS(4802), + [anon_sym_co_await] = ACTIONS(4776), + [anon_sym_new] = ACTIONS(4802), + [anon_sym_DASH_GT_STAR] = ACTIONS(4774), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [anon_sym_LPAREN_RPAREN] = ACTIONS(4774), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4774), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4806), }, - [STATE(1496)] = { - [sym_expression] = STATE(4759), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(935)] = { + [sym__declaration_modifiers] = STATE(2633), + [sym__declaration_specifiers] = STATE(8703), + [sym_attribute_specifier] = STATE(2633), + [sym_attribute_declaration] = STATE(2633), + [sym_ms_declspec_modifier] = STATE(2633), + [sym_storage_class_specifier] = STATE(2633), + [sym_type_qualifier] = STATE(2633), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(6302), + [sym_sized_type_specifier] = STATE(5975), + [sym_enum_specifier] = STATE(5975), + [sym_struct_specifier] = STATE(5975), + [sym_union_specifier] = STATE(5975), + [sym_placeholder_type_specifier] = STATE(5975), + [sym_decltype_auto] = STATE(6020), + [sym_decltype] = STATE(5891), + [sym_class_specifier] = STATE(5975), + [sym_dependent_type] = STATE(5975), + [sym_template_type] = STATE(5264), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8584), + [sym_qualified_type_identifier] = STATE(5495), + [sym_splice_specifier] = STATE(4691), + [sym__splice_specialization_specifier] = STATE(5263), + [sym_splice_type_specifier] = STATE(5891), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2633), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(4772), + [anon_sym_COMMA] = ACTIONS(4808), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_TILDE] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_CARET] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4808), + [anon_sym_BANG_EQ] = ACTIONS(4808), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_EQ] = ACTIONS(4808), + [anon_sym_LT_EQ] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(4778), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(4782), + [anon_sym_unsigned] = ACTIONS(4782), + [anon_sym_long] = ACTIONS(4782), + [anon_sym_short] = ACTIONS(4782), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4784), + [anon_sym_enum] = ACTIONS(4786), + [anon_sym_class] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4790), + [anon_sym_union] = ACTIONS(4792), + [anon_sym_STAR_EQ] = ACTIONS(4808), + [anon_sym_SLASH_EQ] = ACTIONS(4808), + [anon_sym_PERCENT_EQ] = ACTIONS(4808), + [anon_sym_PLUS_EQ] = ACTIONS(4808), + [anon_sym_DASH_EQ] = ACTIONS(4808), + [anon_sym_LT_LT_EQ] = ACTIONS(4808), + [anon_sym_GT_GT_EQ] = ACTIONS(4808), + [anon_sym_AMP_EQ] = ACTIONS(4808), + [anon_sym_CARET_EQ] = ACTIONS(4808), + [anon_sym_PIPE_EQ] = ACTIONS(4808), + [anon_sym_and_eq] = ACTIONS(4810), + [anon_sym_or_eq] = ACTIONS(4810), + [anon_sym_xor_eq] = ACTIONS(4810), + [anon_sym_not] = ACTIONS(4810), + [anon_sym_compl] = ACTIONS(4810), + [anon_sym_LT_EQ_GT] = ACTIONS(4808), + [anon_sym_or] = ACTIONS(4810), + [anon_sym_and] = ACTIONS(4810), + [anon_sym_bitor] = ACTIONS(4810), + [anon_sym_xor] = ACTIONS(4810), + [anon_sym_bitand] = ACTIONS(4810), + [anon_sym_not_eq] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_PLUS_PLUS] = ACTIONS(4808), + [anon_sym_typename] = ACTIONS(4794), + [anon_sym_DASH_GT] = ACTIONS(4810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4796), + [anon_sym_decltype] = ACTIONS(4798), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_delete] = ACTIONS(4812), + [anon_sym_co_await] = ACTIONS(4810), + [anon_sym_new] = ACTIONS(4812), + [anon_sym_DASH_GT_STAR] = ACTIONS(4808), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [anon_sym_LPAREN_RPAREN] = ACTIONS(4808), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4808), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4814), }, - [STATE(1497)] = { - [sym_expression] = STATE(4760), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(936)] = { + [sym_type_qualifier] = STATE(980), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6856), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4816), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4820), + [anon_sym_RBRACK] = ACTIONS(4822), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1498)] = { - [sym_expression] = STATE(4425), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(937)] = { + [sym_type_qualifier] = STATE(939), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6940), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(939), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4828), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4830), + [anon_sym_RBRACK] = ACTIONS(4832), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1499)] = { - [sym_expression] = STATE(3571), - [sym__string] = STATE(3745), - [sym_conditional_expression] = STATE(3875), - [sym_assignment_expression] = STATE(3875), - [sym_pointer_expression] = STATE(3523), - [sym_unary_expression] = STATE(3875), - [sym_binary_expression] = STATE(3875), - [sym_update_expression] = STATE(3875), - [sym_cast_expression] = STATE(3875), - [sym_sizeof_expression] = STATE(3875), - [sym_alignof_expression] = STATE(3875), - [sym_offsetof_expression] = STATE(3875), - [sym_generic_expression] = STATE(3875), - [sym_subscript_expression] = STATE(3523), - [sym_call_expression] = STATE(3523), - [sym_gnu_asm_expression] = STATE(3875), - [sym_extension_expression] = STATE(3875), - [sym_field_expression] = STATE(3523), - [sym_compound_literal_expression] = STATE(3875), - [sym_parenthesized_expression] = STATE(3523), - [sym_char_literal] = STATE(3745), - [sym_concatenated_string] = STATE(3745), - [sym_string_literal] = STATE(2574), - [sym_null] = STATE(3875), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7830), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3875), - [sym_raw_string_literal] = STATE(2574), - [sym_co_await_expression] = STATE(3875), - [sym_new_expression] = STATE(3875), - [sym_delete_expression] = STATE(3875), - [sym_requires_clause] = STATE(3875), - [sym_requires_expression] = STATE(3875), - [sym_lambda_expression] = STATE(3875), - [sym_lambda_capture_specifier] = STATE(5567), - [sym_fold_expression] = STATE(3875), - [sym_parameter_pack_expansion] = STATE(3875), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5857), - [sym_qualified_identifier] = STATE(3523), - [sym_qualified_type_identifier] = STATE(7830), - [sym_user_defined_literal] = STATE(3523), - [sym_identifier] = ACTIONS(2607), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym___extension__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_not] = ACTIONS(1894), - [anon_sym_compl] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1906), - [anon_sym___alignof__] = ACTIONS(1908), - [anon_sym___alignof] = ACTIONS(1908), - [anon_sym__alignof] = ACTIONS(1908), - [anon_sym_alignof] = ACTIONS(1908), - [anon_sym__Alignof] = ACTIONS(1908), - [anon_sym_offsetof] = ACTIONS(1910), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1914), - [anon_sym___asm__] = ACTIONS(1914), - [anon_sym___asm] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [anon_sym_NULL] = ACTIONS(1924), - [anon_sym_nullptr] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [sym_this] = ACTIONS(1922), + [STATE(938)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7006), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4834), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4838), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1500)] = { - [sym_expression] = STATE(4766), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(939)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6830), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1501)] = { - [sym_expression] = STATE(4767), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(940)] = { + [sym_type_qualifier] = STATE(938), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6852), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4846), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1502)] = { - [sym_expression] = STATE(4768), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(941)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7025), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1503)] = { - [sym_expression] = STATE(4769), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(942)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7042), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4856), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1504)] = { - [sym_expression] = STATE(4433), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1505)] = { - [sym_expression] = STATE(4772), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1506)] = { - [sym_expression] = STATE(4773), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1507)] = { - [sym_expression] = STATE(4774), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1508)] = { - [sym_expression] = STATE(4763), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1509)] = { - [sym_expression] = STATE(4602), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), - }, - [STATE(1510)] = { - [sym_expression] = STATE(3743), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1511)] = { - [sym_expression] = STATE(4498), - [sym__string] = STATE(4823), - [sym_conditional_expression] = STATE(4913), - [sym_assignment_expression] = STATE(4913), - [sym_pointer_expression] = STATE(3591), - [sym_unary_expression] = STATE(4913), - [sym_binary_expression] = STATE(4913), - [sym_update_expression] = STATE(4913), - [sym_cast_expression] = STATE(4913), - [sym_sizeof_expression] = STATE(4913), - [sym_alignof_expression] = STATE(4913), - [sym_offsetof_expression] = STATE(4913), - [sym_generic_expression] = STATE(4913), - [sym_subscript_expression] = STATE(3591), - [sym_call_expression] = STATE(3591), - [sym_gnu_asm_expression] = STATE(4913), - [sym_extension_expression] = STATE(4913), - [sym_field_expression] = STATE(3591), - [sym_compound_literal_expression] = STATE(4913), - [sym_parenthesized_expression] = STATE(3591), - [sym_char_literal] = STATE(4823), - [sym_concatenated_string] = STATE(4823), - [sym_string_literal] = STATE(3748), - [sym_null] = STATE(4913), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8130), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(4913), - [sym_raw_string_literal] = STATE(3748), - [sym_co_await_expression] = STATE(4913), - [sym_new_expression] = STATE(4913), - [sym_delete_expression] = STATE(4913), - [sym_requires_clause] = STATE(4913), - [sym_requires_expression] = STATE(4913), - [sym_lambda_expression] = STATE(4913), - [sym_lambda_capture_specifier] = STATE(5575), - [sym_fold_expression] = STATE(4913), - [sym_parameter_pack_expansion] = STATE(4913), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5811), - [sym_qualified_identifier] = STATE(3591), - [sym_qualified_type_identifier] = STATE(8130), - [sym_user_defined_literal] = STATE(3591), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(3887), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(3891), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2881), - [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(2885), - [anon_sym__Generic] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [anon_sym___asm] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [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(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(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2899), - [anon_sym_nullptr] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = 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(2913), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2897), + [STATE(943)] = { + [sym_type_qualifier] = STATE(973), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7044), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(973), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4860), + [anon_sym_RBRACK] = ACTIONS(4862), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1512)] = { - [sym_expression] = STATE(4568), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(944)] = { + [sym_type_qualifier] = STATE(947), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6913), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4866), + [anon_sym_RBRACK] = ACTIONS(4868), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1513)] = { - [sym_expression] = STATE(4570), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(945)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6922), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4870), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4872), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1514)] = { - [sym_expression] = STATE(4592), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(4986), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(946)] = { + [sym_type_qualifier] = STATE(941), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6946), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4874), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4876), + [anon_sym_RBRACK] = ACTIONS(4878), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1515)] = { - [sym_expression] = STATE(4574), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3697), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3697), - [sym_call_expression] = STATE(3697), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3697), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3697), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3697), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3697), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(3873), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3869), - [anon_sym_compl] = ACTIONS(3869), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_sizeof] = ACTIONS(3877), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3879), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3881), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(947)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6939), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4882), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1516)] = { - [sym_expression] = STATE(4637), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(948)] = { + [sym_type_qualifier] = STATE(950), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6941), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(950), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4886), + [anon_sym_RBRACK] = ACTIONS(4888), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1517)] = { - [sym_expression] = STATE(3343), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(949)] = { + [sym_type_qualifier] = STATE(951), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6944), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(951), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4890), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4892), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1518)] = { - [sym_expression] = STATE(3345), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(950)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6974), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1519)] = { - [sym_expression] = STATE(3740), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(951)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6976), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1520)] = { - [sym_expression] = STATE(4518), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(952)] = { + [sym_type_qualifier] = STATE(942), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7028), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4908), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1521)] = { - [sym_expression] = STATE(4643), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(953)] = { + [sym_type_qualifier] = STATE(954), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6890), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4910), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4912), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1522)] = { - [sym_expression] = STATE(4539), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(954)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7048), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1523)] = { - [sym_expression] = STATE(4630), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(955)] = { + [sym_type_qualifier] = STATE(957), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7050), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1524)] = { - [sym_expression] = STATE(4566), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(956)] = { + [sym_type_qualifier] = STATE(958), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7069), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4928), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1525)] = { - [sym_expression] = STATE(3371), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(957)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6857), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4934), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1526)] = { - [sym_expression] = STATE(4400), - [sym__string] = STATE(4459), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3306), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3306), - [sym_call_expression] = STATE(3306), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3306), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3306), - [sym_char_literal] = STATE(4459), - [sym_concatenated_string] = STATE(4459), - [sym_string_literal] = STATE(3432), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3432), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3306), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3306), - [sym_identifier] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(4589), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_TILDE] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_AMP] = ACTIONS(4393), - [anon_sym___extension__] = ACTIONS(3849), - [anon_sym_COLON_COLON] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3845), - [anon_sym_compl] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_sizeof] = ACTIONS(3853), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(3855), - [anon_sym_L_SQUOTE] = ACTIONS(3857), - [anon_sym_u_SQUOTE] = ACTIONS(3857), - [anon_sym_U_SQUOTE] = ACTIONS(3857), - [anon_sym_u8_SQUOTE] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(3857), - [anon_sym_L_DQUOTE] = ACTIONS(3859), - [anon_sym_u_DQUOTE] = ACTIONS(3859), - [anon_sym_U_DQUOTE] = ACTIONS(3859), - [anon_sym_u8_DQUOTE] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3859), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3861), - [anon_sym_R_DQUOTE] = ACTIONS(3863), - [anon_sym_LR_DQUOTE] = ACTIONS(3863), - [anon_sym_uR_DQUOTE] = ACTIONS(3863), - [anon_sym_UR_DQUOTE] = ACTIONS(3863), - [anon_sym_u8R_DQUOTE] = ACTIONS(3863), - [anon_sym_co_await] = ACTIONS(3865), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(958)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6870), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1527)] = { - [sym_expression] = STATE(3344), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(959)] = { + [sym_type_qualifier] = STATE(960), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4944), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1528)] = { - [sym_expression] = STATE(3351), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(960)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6970), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4946), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4948), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1529)] = { - [sym_expression] = STATE(3352), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(961)] = { + [sym_type_qualifier] = STATE(963), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6975), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(963), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4950), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4952), + [anon_sym_RBRACK] = ACTIONS(4954), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1530)] = { - [sym_expression] = STATE(3353), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(962)] = { + [sym_type_qualifier] = STATE(964), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6981), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(964), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4960), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1531)] = { - [sym_expression] = STATE(3354), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(963)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6992), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4962), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4964), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1532)] = { - [sym_expression] = STATE(3355), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(964)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6999), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4966), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4968), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1533)] = { - [sym_expression] = STATE(3356), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(965)] = { + [sym_type_qualifier] = STATE(966), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6917), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(966), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4970), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4972), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1534)] = { - [sym_expression] = STATE(3357), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(966)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6982), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1535)] = { - [sym_expression] = STATE(4753), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(967)] = { + [sym_type_qualifier] = STATE(968), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6984), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4984), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1536)] = { - [sym_expression] = STATE(3359), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(968)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6989), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1537)] = { - [sym_expression] = STATE(3360), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(969)] = { + [sym_type_qualifier] = STATE(970), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7030), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4990), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4992), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1538)] = { - [sym_expression] = STATE(3347), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(4988), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(970)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6949), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1539)] = { - [sym_expression] = STATE(3348), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(971)] = { + [sym_type_qualifier] = STATE(972), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6952), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(972), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5004), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1540)] = { - [sym_expression] = STATE(3349), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(4990), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(972)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6967), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5008), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1541)] = { - [sym_expression] = STATE(3361), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(973)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7051), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1542)] = { - [sym_expression] = STATE(3364), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(974)] = { + [sym_type_qualifier] = STATE(976), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6945), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5016), + [anon_sym_RBRACK] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1543)] = { - [sym_expression] = STATE(3366), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_TILDE] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(2529), - [anon_sym_compl] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(4531), - [anon_sym_sizeof] = ACTIONS(2537), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), + [STATE(975)] = { + [sym_type_qualifier] = STATE(990), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6997), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(990), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1544)] = { - [sym_expression] = STATE(4540), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(976)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6987), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1545)] = { - [sym_expression] = STATE(4519), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(4992), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(977)] = { + [sym_type_qualifier] = STATE(978), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7003), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5032), + [anon_sym_RBRACK] = ACTIONS(5034), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1546)] = { - [sym_expression] = STATE(4521), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(978)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(7011), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5038), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1547)] = { - [sym_expression] = STATE(4522), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(979)] = { + [sym_type_qualifier] = STATE(945), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6846), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(945), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5042), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1548)] = { - [sym_expression] = STATE(4523), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [STATE(980)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6869), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1549)] = { - [sym_expression] = STATE(4524), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1550)] = { - [sym_expression] = STATE(4525), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1551)] = { - [sym_expression] = STATE(4526), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1552)] = { - [sym_expression] = STATE(4527), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1553)] = { - [sym_expression] = STATE(4528), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1554)] = { - [sym_expression] = STATE(4529), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1555)] = { - [sym_expression] = STATE(4530), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1556)] = { - [sym_expression] = STATE(4533), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1557)] = { - [sym_expression] = STATE(4535), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1558)] = { - [sym_expression] = STATE(3743), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1559)] = { - [sym_expression] = STATE(3866), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1560)] = { - [sym_expression] = STATE(4542), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(4994), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1561)] = { - [sym_expression] = STATE(3813), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3706), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3706), - [sym_call_expression] = STATE(3706), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3706), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3706), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3706), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3706), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3899), - [anon_sym_COLON_COLON] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(3895), - [anon_sym_compl] = ACTIONS(3895), - [anon_sym_DASH_DASH] = ACTIONS(3915), - [anon_sym_PLUS_PLUS] = ACTIONS(3915), - [anon_sym_sizeof] = ACTIONS(3903), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3905), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(3907), - [anon_sym_new] = ACTIONS(3883), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1562)] = { - [sym_expression] = STATE(2896), - [sym__string] = STATE(2934), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2415), - [sym_unary_expression] = STATE(2485), - [sym_binary_expression] = STATE(2485), - [sym_update_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_alignof_expression] = STATE(2485), - [sym_offsetof_expression] = STATE(2485), - [sym_generic_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_gnu_asm_expression] = STATE(2485), - [sym_extension_expression] = STATE(2485), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2415), - [sym_char_literal] = STATE(2934), - [sym_concatenated_string] = STATE(2934), - [sym_string_literal] = STATE(2130), - [sym_null] = STATE(2485), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(7816), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(2485), - [sym_raw_string_literal] = STATE(2130), - [sym_co_await_expression] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_requires_clause] = STATE(2485), - [sym_requires_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(5574), - [sym_fold_expression] = STATE(2485), - [sym_parameter_pack_expansion] = STATE(2485), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(2415), - [sym_qualified_type_identifier] = STATE(7816), - [sym_user_defined_literal] = STATE(2415), - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1994), - [anon_sym_compl] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(2002), - [anon_sym___alignof__] = ACTIONS(1962), - [anon_sym___alignof] = ACTIONS(1962), - [anon_sym__alignof] = ACTIONS(1962), - [anon_sym_alignof] = ACTIONS(1962), - [anon_sym__Alignof] = ACTIONS(1962), - [anon_sym_offsetof] = ACTIONS(1964), - [anon_sym__Generic] = ACTIONS(1966), - [anon_sym_asm] = ACTIONS(1968), - [anon_sym___asm__] = ACTIONS(1968), - [anon_sym___asm] = ACTIONS(1968), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_u_SQUOTE] = ACTIONS(2006), - [anon_sym_U_SQUOTE] = ACTIONS(2006), - [anon_sym_u8_SQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), - [anon_sym_NULL] = ACTIONS(1978), - [anon_sym_nullptr] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(1990), - [sym_this] = ACTIONS(1976), - }, - [STATE(1563)] = { - [sym_expression] = STATE(4834), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1564)] = { - [sym_expression] = STATE(4835), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1565)] = { - [sym_expression] = STATE(4653), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1566)] = { - [sym_expression] = STATE(4836), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1567)] = { - [sym_expression] = STATE(4615), - [sym__string] = STATE(4314), - [sym_conditional_expression] = STATE(3996), - [sym_assignment_expression] = STATE(3996), - [sym_pointer_expression] = STATE(3334), - [sym_unary_expression] = STATE(3996), - [sym_binary_expression] = STATE(3996), - [sym_update_expression] = STATE(3996), - [sym_cast_expression] = STATE(3996), - [sym_sizeof_expression] = STATE(3996), - [sym_alignof_expression] = STATE(3996), - [sym_offsetof_expression] = STATE(3996), - [sym_generic_expression] = STATE(3996), - [sym_subscript_expression] = STATE(3334), - [sym_call_expression] = STATE(3334), - [sym_gnu_asm_expression] = STATE(3996), - [sym_extension_expression] = STATE(3996), - [sym_field_expression] = STATE(3334), - [sym_compound_literal_expression] = STATE(3996), - [sym_parenthesized_expression] = STATE(3334), - [sym_char_literal] = STATE(4314), - [sym_concatenated_string] = STATE(4314), - [sym_string_literal] = STATE(3128), - [sym_null] = STATE(3996), - [sym_decltype] = STATE(9058), - [sym__class_name] = STATE(8005), - [sym_template_type] = STATE(1933), - [sym_template_function] = STATE(3996), - [sym_raw_string_literal] = STATE(3128), - [sym_co_await_expression] = STATE(3996), - [sym_new_expression] = STATE(3996), - [sym_delete_expression] = STATE(3996), - [sym_requires_clause] = STATE(3996), - [sym_requires_expression] = STATE(3996), - [sym_lambda_expression] = STATE(3996), - [sym_lambda_capture_specifier] = STATE(5558), - [sym_fold_expression] = STATE(3996), - [sym_parameter_pack_expansion] = STATE(3996), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5842), - [sym_qualified_identifier] = STATE(3334), - [sym_qualified_type_identifier] = STATE(8005), - [sym_user_defined_literal] = STATE(3334), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LPAREN2] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [anon_sym___alignof__] = ACTIONS(107), - [anon_sym___alignof] = ACTIONS(107), - [anon_sym__alignof] = ACTIONS(107), - [anon_sym_alignof] = ACTIONS(107), - [anon_sym__Alignof] = ACTIONS(107), - [anon_sym_offsetof] = ACTIONS(109), - [anon_sym__Generic] = ACTIONS(111), - [anon_sym_asm] = ACTIONS(113), - [anon_sym___asm__] = ACTIONS(113), - [anon_sym___asm] = ACTIONS(113), - [sym_number_literal] = ACTIONS(227), - [anon_sym_L_SQUOTE] = ACTIONS(117), - [anon_sym_u_SQUOTE] = ACTIONS(117), - [anon_sym_U_SQUOTE] = ACTIONS(117), - [anon_sym_u8_SQUOTE] = ACTIONS(117), - [anon_sym_SQUOTE] = ACTIONS(117), - [anon_sym_L_DQUOTE] = ACTIONS(119), - [anon_sym_u_DQUOTE] = ACTIONS(119), - [anon_sym_U_DQUOTE] = ACTIONS(119), - [anon_sym_u8_DQUOTE] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_true] = ACTIONS(229), - [sym_false] = ACTIONS(229), - [anon_sym_NULL] = ACTIONS(123), - [anon_sym_nullptr] = ACTIONS(123), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_R_DQUOTE] = ACTIONS(159), - [anon_sym_LR_DQUOTE] = ACTIONS(159), - [anon_sym_uR_DQUOTE] = ACTIONS(159), - [anon_sym_UR_DQUOTE] = ACTIONS(159), - [anon_sym_u8R_DQUOTE] = ACTIONS(159), - [anon_sym_co_await] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), - }, - [STATE(1568)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - }, - [STATE(1569)] = { - [sym_template_argument_list] = STATE(1577), - [sym_identifier] = ACTIONS(4931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4935), - [anon_sym___extension__] = ACTIONS(4931), - [anon_sym_virtual] = ACTIONS(4931), - [anon_sym_extern] = ACTIONS(4931), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4935), - [anon_sym___declspec] = ACTIONS(4931), - [anon_sym___based] = ACTIONS(4931), - [anon_sym___cdecl] = ACTIONS(4931), - [anon_sym___clrcall] = ACTIONS(4931), - [anon_sym___stdcall] = ACTIONS(4931), - [anon_sym___fastcall] = ACTIONS(4931), - [anon_sym___thiscall] = ACTIONS(4931), - [anon_sym___vectorcall] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_register] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym___inline] = ACTIONS(4931), - [anon_sym___inline__] = ACTIONS(4931), - [anon_sym___forceinline] = ACTIONS(4931), - [anon_sym_thread_local] = ACTIONS(4931), - [anon_sym___thread] = ACTIONS(4931), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4931), - [anon_sym_volatile] = ACTIONS(4931), - [anon_sym_restrict] = ACTIONS(4931), - [anon_sym___restrict__] = ACTIONS(4931), - [anon_sym__Atomic] = ACTIONS(4931), - [anon_sym__Noreturn] = ACTIONS(4931), - [anon_sym_noreturn] = ACTIONS(4931), - [anon_sym__Nonnull] = ACTIONS(4931), - [anon_sym_mutable] = ACTIONS(4931), - [anon_sym_constinit] = ACTIONS(4931), - [anon_sym_consteval] = ACTIONS(4931), - [anon_sym_alignas] = ACTIONS(4931), - [anon_sym__Alignas] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4940), - [anon_sym_or_eq] = ACTIONS(4940), - [anon_sym_xor_eq] = ACTIONS(4940), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4940), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4940), - [anon_sym_not_eq] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_template] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - }, - [STATE(1570)] = { - [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_virtual] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = 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___cdecl] = ACTIONS(5000), - [anon_sym___clrcall] = ACTIONS(5000), - [anon_sym___stdcall] = ACTIONS(5000), - [anon_sym___fastcall] = ACTIONS(5000), - [anon_sym___thiscall] = ACTIONS(5000), - [anon_sym___vectorcall] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_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_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - }, - [STATE(1571)] = { - [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_virtual] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = 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___cdecl] = ACTIONS(5004), - [anon_sym___clrcall] = ACTIONS(5004), - [anon_sym___stdcall] = ACTIONS(5004), - [anon_sym___fastcall] = ACTIONS(5004), - [anon_sym___thiscall] = ACTIONS(5004), - [anon_sym___vectorcall] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - }, - [STATE(1572)] = { - [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_virtual] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = 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___cdecl] = ACTIONS(5008), - [anon_sym___clrcall] = ACTIONS(5008), - [anon_sym___stdcall] = ACTIONS(5008), - [anon_sym___fastcall] = ACTIONS(5008), - [anon_sym___thiscall] = ACTIONS(5008), - [anon_sym___vectorcall] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - }, - [STATE(1573)] = { - [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(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [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(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [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(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(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(5012), - [anon_sym_or_eq] = ACTIONS(5012), - [anon_sym_xor_eq] = ACTIONS(5012), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5012), - [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_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - }, - [STATE(1574)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym_virtual] = ACTIONS(5016), - [anon_sym_extern] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5018), - [anon_sym___declspec] = ACTIONS(5016), - [anon_sym___based] = ACTIONS(5016), - [anon_sym___cdecl] = ACTIONS(5016), - [anon_sym___clrcall] = ACTIONS(5016), - [anon_sym___stdcall] = ACTIONS(5016), - [anon_sym___fastcall] = ACTIONS(5016), - [anon_sym___thiscall] = ACTIONS(5016), - [anon_sym___vectorcall] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_register] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym___inline] = ACTIONS(5016), - [anon_sym___inline__] = ACTIONS(5016), - [anon_sym___forceinline] = ACTIONS(5016), - [anon_sym_thread_local] = ACTIONS(5016), - [anon_sym___thread] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_and_eq] = ACTIONS(5016), - [anon_sym_or_eq] = ACTIONS(5016), - [anon_sym_xor_eq] = ACTIONS(5016), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_template] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - }, - [STATE(1575)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym_virtual] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5022), - [anon_sym___declspec] = ACTIONS(5020), - [anon_sym___based] = ACTIONS(5020), - [anon_sym___cdecl] = ACTIONS(5020), - [anon_sym___clrcall] = ACTIONS(5020), - [anon_sym___stdcall] = ACTIONS(5020), - [anon_sym___fastcall] = ACTIONS(5020), - [anon_sym___thiscall] = ACTIONS(5020), - [anon_sym___vectorcall] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_register] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym___inline] = ACTIONS(5020), - [anon_sym___inline__] = ACTIONS(5020), - [anon_sym___forceinline] = ACTIONS(5020), - [anon_sym_thread_local] = ACTIONS(5020), - [anon_sym___thread] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5022), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_and_eq] = ACTIONS(5020), - [anon_sym_or_eq] = ACTIONS(5020), - [anon_sym_xor_eq] = ACTIONS(5020), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - }, - [STATE(1576)] = { - [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(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___cdecl] = ACTIONS(5024), - [anon_sym___clrcall] = ACTIONS(5024), - [anon_sym___stdcall] = ACTIONS(5024), - [anon_sym___fastcall] = ACTIONS(5024), - [anon_sym___thiscall] = ACTIONS(5024), - [anon_sym___vectorcall] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5033), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(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(5033), - [anon_sym_or_eq] = ACTIONS(5033), - [anon_sym_xor_eq] = ACTIONS(5033), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - }, - [STATE(1577)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5028), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5028), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___cdecl] = ACTIONS(5024), - [anon_sym___clrcall] = ACTIONS(5024), - [anon_sym___stdcall] = ACTIONS(5024), - [anon_sym___fastcall] = ACTIONS(5024), - [anon_sym___thiscall] = ACTIONS(5024), - [anon_sym___vectorcall] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5033), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(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(5033), - [anon_sym_or_eq] = ACTIONS(5033), - [anon_sym_xor_eq] = ACTIONS(5033), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - }, - [STATE(1578)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_ms_call_modifier] = STATE(6510), - [sym__abstract_declarator] = STATE(7130), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_abstract_function_declarator] = STATE(6295), - [sym_abstract_array_declarator] = STATE(6295), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_list] = STATE(3096), - [sym_parameter_declaration] = STATE(7500), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7500), - [sym_optional_parameter_declaration] = STATE(7500), - [sym_variadic_parameter_declaration] = STATE(7500), - [sym_abstract_reference_declarator] = STATE(6295), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LPAREN2] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_AMP_AMP] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5046), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), - }, - [STATE(1579)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_ms_call_modifier] = STATE(6539), - [sym__abstract_declarator] = STATE(7094), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_abstract_function_declarator] = STATE(6295), - [sym_abstract_array_declarator] = STATE(6295), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_list] = STATE(3096), - [sym_parameter_declaration] = STATE(7500), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7500), - [sym_optional_parameter_declaration] = STATE(7500), - [sym_variadic_parameter_declaration] = STATE(7500), - [sym_abstract_reference_declarator] = STATE(6295), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LPAREN2] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5042), - [anon_sym_AMP_AMP] = ACTIONS(5044), - [anon_sym_AMP] = ACTIONS(5046), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(1808), - [anon_sym___clrcall] = ACTIONS(1808), - [anon_sym___stdcall] = ACTIONS(1808), - [anon_sym___fastcall] = ACTIONS(1808), - [anon_sym___thiscall] = ACTIONS(1808), - [anon_sym___vectorcall] = ACTIONS(1808), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), - }, - [STATE(1580)] = { - [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(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_LT_LT] = ACTIONS(5014), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [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(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_RBRACK] = ACTIONS(5014), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_asm] = ACTIONS(5012), - [anon_sym___asm__] = ACTIONS(5012), - [anon_sym___asm] = ACTIONS(5012), - [anon_sym_DOT] = ACTIONS(5012), - [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_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_noexcept] = ACTIONS(5012), - [anon_sym_throw] = ACTIONS(5012), - [anon_sym_requires] = ACTIONS(5012), - }, - [STATE(1581)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5018), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym_virtual] = ACTIONS(5016), - [anon_sym_extern] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5018), - [anon_sym___declspec] = ACTIONS(5016), - [anon_sym___based] = ACTIONS(5016), - [anon_sym___cdecl] = ACTIONS(5016), - [anon_sym___clrcall] = ACTIONS(5016), - [anon_sym___stdcall] = ACTIONS(5016), - [anon_sym___fastcall] = ACTIONS(5016), - [anon_sym___thiscall] = ACTIONS(5016), - [anon_sym___vectorcall] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_register] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym___inline] = ACTIONS(5016), - [anon_sym___inline__] = ACTIONS(5016), - [anon_sym___forceinline] = ACTIONS(5016), - [anon_sym_thread_local] = ACTIONS(5016), - [anon_sym___thread] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_asm] = ACTIONS(5016), - [anon_sym___asm__] = ACTIONS(5016), - [anon_sym___asm] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - [anon_sym_template] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_try] = ACTIONS(5016), - [anon_sym_noexcept] = ACTIONS(5016), - [anon_sym_throw] = ACTIONS(5016), - [anon_sym_requires] = ACTIONS(5016), - }, - [STATE(1582)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_asm] = ACTIONS(4996), - [anon_sym___asm__] = ACTIONS(4996), - [anon_sym___asm] = ACTIONS(4996), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_noexcept] = ACTIONS(4996), - [anon_sym_throw] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), - }, - [STATE(1583)] = { - [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_virtual] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym___attribute] = ACTIONS(5008), - [anon_sym_COLON] = 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___cdecl] = ACTIONS(5008), - [anon_sym___clrcall] = ACTIONS(5008), - [anon_sym___stdcall] = ACTIONS(5008), - [anon_sym___fastcall] = ACTIONS(5008), - [anon_sym___thiscall] = ACTIONS(5008), - [anon_sym___vectorcall] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_RBRACK] = ACTIONS(5010), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(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_asm] = ACTIONS(5008), - [anon_sym___asm__] = ACTIONS(5008), - [anon_sym___asm] = ACTIONS(5008), - [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_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_noexcept] = ACTIONS(5008), - [anon_sym_throw] = ACTIONS(5008), - [anon_sym_requires] = ACTIONS(5008), - }, - [STATE(1584)] = { - [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_virtual] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym___attribute] = ACTIONS(5004), - [anon_sym_COLON] = 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___cdecl] = ACTIONS(5004), - [anon_sym___clrcall] = ACTIONS(5004), - [anon_sym___stdcall] = ACTIONS(5004), - [anon_sym___fastcall] = ACTIONS(5004), - [anon_sym___thiscall] = ACTIONS(5004), - [anon_sym___vectorcall] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(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_asm] = ACTIONS(5004), - [anon_sym___asm__] = ACTIONS(5004), - [anon_sym___asm] = ACTIONS(5004), - [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_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_noexcept] = ACTIONS(5004), - [anon_sym_throw] = ACTIONS(5004), - [anon_sym_requires] = ACTIONS(5004), - }, - [STATE(1585)] = { - [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_virtual] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym___attribute] = ACTIONS(5000), - [anon_sym_COLON] = 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___cdecl] = ACTIONS(5000), - [anon_sym___clrcall] = ACTIONS(5000), - [anon_sym___stdcall] = ACTIONS(5000), - [anon_sym___fastcall] = ACTIONS(5000), - [anon_sym___thiscall] = ACTIONS(5000), - [anon_sym___vectorcall] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_RBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(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_asm] = ACTIONS(5000), - [anon_sym___asm__] = ACTIONS(5000), - [anon_sym___asm] = ACTIONS(5000), - [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_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_try] = ACTIONS(5000), - [anon_sym_noexcept] = ACTIONS(5000), - [anon_sym_throw] = ACTIONS(5000), - [anon_sym_requires] = ACTIONS(5000), - }, - [STATE(1586)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5022), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5022), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5022), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym_virtual] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5022), - [anon_sym___declspec] = ACTIONS(5020), - [anon_sym___based] = ACTIONS(5020), - [anon_sym___cdecl] = ACTIONS(5020), - [anon_sym___clrcall] = ACTIONS(5020), - [anon_sym___stdcall] = ACTIONS(5020), - [anon_sym___fastcall] = ACTIONS(5020), - [anon_sym___thiscall] = ACTIONS(5020), - [anon_sym___vectorcall] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_RBRACK] = ACTIONS(5022), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_register] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym___inline] = ACTIONS(5020), - [anon_sym___inline__] = ACTIONS(5020), - [anon_sym___forceinline] = ACTIONS(5020), - [anon_sym_thread_local] = ACTIONS(5020), - [anon_sym___thread] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_asm] = ACTIONS(5020), - [anon_sym___asm__] = ACTIONS(5020), - [anon_sym___asm] = ACTIONS(5020), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_try] = ACTIONS(5020), - [anon_sym_noexcept] = ACTIONS(5020), - [anon_sym_throw] = ACTIONS(5020), - [anon_sym_requires] = ACTIONS(5020), - }, - [STATE(1587)] = { - [sym_identifier] = ACTIONS(3191), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym___attribute__] = ACTIONS(3191), - [anon_sym___attribute] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = 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__Nonnull] = ACTIONS(3191), - [anon_sym_mutable] = ACTIONS(3191), - [anon_sym_constinit] = ACTIONS(3191), - [anon_sym_consteval] = ACTIONS(3191), - [anon_sym_alignas] = ACTIONS(3191), - [anon_sym__Alignas] = 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_not] = ACTIONS(3191), - [anon_sym_compl] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [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), - [anon_sym___asm] = ACTIONS(3191), - [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(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_typename] = ACTIONS(3191), - [anon_sym_template] = ACTIONS(3191), - [anon_sym_delete] = ACTIONS(3191), - [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(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_requires] = ACTIONS(3191), - [sym_this] = ACTIONS(3191), - }, - [STATE(1588)] = { - [sym_identifier] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_not] = ACTIONS(3037), - [anon_sym_compl] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(3037), - [anon_sym___alignof__] = ACTIONS(3037), - [anon_sym___alignof] = ACTIONS(3037), - [anon_sym__alignof] = ACTIONS(3037), - [anon_sym_alignof] = ACTIONS(3037), - [anon_sym__Alignof] = ACTIONS(3037), - [anon_sym_offsetof] = ACTIONS(3037), - [anon_sym__Generic] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym___asm__] = ACTIONS(3037), - [anon_sym___asm] = ACTIONS(3037), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_L_SQUOTE] = ACTIONS(3039), - [anon_sym_u_SQUOTE] = ACTIONS(3039), - [anon_sym_U_SQUOTE] = ACTIONS(3039), - [anon_sym_u8_SQUOTE] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3039), - [anon_sym_L_DQUOTE] = ACTIONS(3039), - [anon_sym_u_DQUOTE] = ACTIONS(3039), - [anon_sym_U_DQUOTE] = ACTIONS(3039), - [anon_sym_u8_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE] = ACTIONS(3039), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [anon_sym_NULL] = ACTIONS(3037), - [anon_sym_nullptr] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_delete] = ACTIONS(3037), - [anon_sym_R_DQUOTE] = ACTIONS(3039), - [anon_sym_LR_DQUOTE] = ACTIONS(3039), - [anon_sym_uR_DQUOTE] = ACTIONS(3039), - [anon_sym_UR_DQUOTE] = ACTIONS(3039), - [anon_sym_u8R_DQUOTE] = ACTIONS(3039), - [anon_sym_co_await] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_requires] = ACTIONS(3037), - [sym_this] = ACTIONS(3037), - }, - [STATE(1589)] = { - [sym_identifier] = 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] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = 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_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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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_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), - [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_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_delete] = 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), - }, - [STATE(1590)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5375), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6890), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_parameter_list] = STATE(858), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(4175), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5054), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1591)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5391), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6854), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_parameter_list] = STATE(862), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(4175), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5054), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1592)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5367), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6906), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_parameter_list] = STATE(860), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(4175), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5054), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1593)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5376), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6932), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_parameter_list] = STATE(861), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(4175), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5054), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1594)] = { - [sym_template_argument_list] = STATE(1606), - [sym_identifier] = ACTIONS(4931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4935), - [anon_sym_COMMA] = ACTIONS(4935), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5058), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4931), - [anon_sym_virtual] = ACTIONS(4931), - [anon_sym_extern] = ACTIONS(4931), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4938), - [anon_sym___declspec] = ACTIONS(4931), - [anon_sym___based] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4942), - [anon_sym_register] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym___inline] = ACTIONS(4931), - [anon_sym___inline__] = ACTIONS(4931), - [anon_sym___forceinline] = ACTIONS(4931), - [anon_sym_thread_local] = ACTIONS(4931), - [anon_sym___thread] = ACTIONS(4931), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4931), - [anon_sym_volatile] = ACTIONS(4931), - [anon_sym_restrict] = ACTIONS(4931), - [anon_sym___restrict__] = ACTIONS(4931), - [anon_sym__Atomic] = ACTIONS(4931), - [anon_sym__Noreturn] = ACTIONS(4931), - [anon_sym_noreturn] = ACTIONS(4931), - [anon_sym__Nonnull] = ACTIONS(4931), - [anon_sym_mutable] = ACTIONS(4931), - [anon_sym_constinit] = ACTIONS(4931), - [anon_sym_consteval] = ACTIONS(4931), - [anon_sym_alignas] = ACTIONS(4931), - [anon_sym__Alignas] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4940), - [anon_sym_or_eq] = ACTIONS(4940), - [anon_sym_xor_eq] = ACTIONS(4940), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4940), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4940), - [anon_sym_not_eq] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_template] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_DASH_GT_STAR] = ACTIONS(4933), - }, - [STATE(1595)] = { - [sym_string_literal] = STATE(2215), - [sym_decltype_auto] = STATE(1947), - [sym_template_argument_list] = STATE(1740), - [sym_raw_string_literal] = STATE(2215), - [aux_sym_sized_type_specifier_repeat1] = STATE(2216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4167), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(5066), - [anon_sym_unsigned] = ACTIONS(5066), - [anon_sym_long] = ACTIONS(5066), - [anon_sym_short] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(4191), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4167), - [anon_sym_volatile] = ACTIONS(4167), - [anon_sym_restrict] = ACTIONS(4167), - [anon_sym___restrict__] = ACTIONS(4167), - [anon_sym__Atomic] = ACTIONS(4167), - [anon_sym__Noreturn] = ACTIONS(4167), - [anon_sym_noreturn] = ACTIONS(4167), - [anon_sym__Nonnull] = ACTIONS(4167), - [anon_sym_mutable] = ACTIONS(4167), - [anon_sym_constinit] = ACTIONS(4167), - [anon_sym_consteval] = ACTIONS(4167), - [anon_sym_alignas] = ACTIONS(4167), - [anon_sym__Alignas] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5072), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), - }, - [STATE(1596)] = { - [sym_template_argument_list] = STATE(1611), - [sym_identifier] = ACTIONS(4931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4935), - [anon_sym_COMMA] = ACTIONS(4935), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4931), - [anon_sym_virtual] = ACTIONS(4931), - [anon_sym_extern] = ACTIONS(4931), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4938), - [anon_sym___declspec] = ACTIONS(4931), - [anon_sym___based] = ACTIONS(4931), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4931), - [anon_sym_EQ] = ACTIONS(4942), - [anon_sym_register] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym___inline] = ACTIONS(4931), - [anon_sym___inline__] = ACTIONS(4931), - [anon_sym___forceinline] = ACTIONS(4931), - [anon_sym_thread_local] = ACTIONS(4931), - [anon_sym___thread] = ACTIONS(4931), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4931), - [anon_sym_volatile] = ACTIONS(4931), - [anon_sym_restrict] = ACTIONS(4931), - [anon_sym___restrict__] = ACTIONS(4931), - [anon_sym__Atomic] = ACTIONS(4931), - [anon_sym__Noreturn] = ACTIONS(4931), - [anon_sym_noreturn] = ACTIONS(4931), - [anon_sym__Nonnull] = ACTIONS(4931), - [anon_sym_mutable] = ACTIONS(4931), - [anon_sym_constinit] = ACTIONS(4931), - [anon_sym_consteval] = ACTIONS(4931), - [anon_sym_alignas] = ACTIONS(4931), - [anon_sym__Alignas] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4940), - [anon_sym_or_eq] = ACTIONS(4940), - [anon_sym_xor_eq] = ACTIONS(4940), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4940), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4940), - [anon_sym_not_eq] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_template] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - }, - [STATE(1597)] = { - [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_virtual] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = 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_static] = ACTIONS(5008), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), - }, - [STATE(1598)] = { - [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_virtual] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = 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_static] = ACTIONS(5004), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), - }, - [STATE(1599)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5379), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6860), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1600)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5392), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6936), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1601)] = { - [sym_string_literal] = STATE(2215), - [sym_decltype_auto] = STATE(1947), - [sym_template_argument_list] = STATE(1869), - [sym_raw_string_literal] = STATE(2215), - [aux_sym_sized_type_specifier_repeat1] = STATE(2216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5076), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4167), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(5066), - [anon_sym_unsigned] = ACTIONS(5066), - [anon_sym_long] = ACTIONS(5066), - [anon_sym_short] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4167), - [anon_sym_volatile] = ACTIONS(4167), - [anon_sym_restrict] = ACTIONS(4167), - [anon_sym___restrict__] = ACTIONS(4167), - [anon_sym__Atomic] = ACTIONS(4167), - [anon_sym__Noreturn] = ACTIONS(4167), - [anon_sym_noreturn] = ACTIONS(4167), - [anon_sym__Nonnull] = ACTIONS(4167), - [anon_sym_mutable] = ACTIONS(4167), - [anon_sym_constinit] = ACTIONS(4167), - [anon_sym_consteval] = ACTIONS(4167), - [anon_sym_alignas] = ACTIONS(4167), - [anon_sym__Alignas] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5072), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), - }, - [STATE(1602)] = { - [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(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [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___extension__] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(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(5012), - [anon_sym_or_eq] = ACTIONS(5012), - [anon_sym_xor_eq] = ACTIONS(5012), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), - }, - [STATE(1603)] = { - [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_virtual] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = 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_static] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_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_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), - }, - [STATE(1604)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5351), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6904), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1605)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5370), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6900), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6229), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(2970), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5951), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_type_identifier] = STATE(2915), - [sym_operator_name] = STATE(6229), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5052), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), - }, - [STATE(1606)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5035), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(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(5033), - [anon_sym_or_eq] = ACTIONS(5033), - [anon_sym_xor_eq] = ACTIONS(5033), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5033), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5024), - [anon_sym_decltype] = ACTIONS(5024), - [anon_sym_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_DASH_GT_STAR] = ACTIONS(5026), - }, - [STATE(1607)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym_virtual] = ACTIONS(5016), - [anon_sym_extern] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5018), - [anon_sym___declspec] = ACTIONS(5016), - [anon_sym___based] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_register] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym___inline] = ACTIONS(5016), - [anon_sym___inline__] = ACTIONS(5016), - [anon_sym___forceinline] = ACTIONS(5016), - [anon_sym_thread_local] = ACTIONS(5016), - [anon_sym___thread] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_and_eq] = ACTIONS(5016), - [anon_sym_or_eq] = ACTIONS(5016), - [anon_sym_xor_eq] = ACTIONS(5016), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_template] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_DASH_GT_STAR] = ACTIONS(5018), - }, - [STATE(1608)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym_virtual] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5022), - [anon_sym___declspec] = ACTIONS(5020), - [anon_sym___based] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_register] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym___inline] = ACTIONS(5020), - [anon_sym___inline__] = ACTIONS(5020), - [anon_sym___forceinline] = ACTIONS(5020), - [anon_sym_thread_local] = ACTIONS(5020), - [anon_sym___thread] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5022), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_and_eq] = ACTIONS(5020), - [anon_sym_or_eq] = ACTIONS(5020), - [anon_sym_xor_eq] = ACTIONS(5020), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_DASH_GT_STAR] = ACTIONS(5022), - }, - [STATE(1609)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [STATE(1610)] = { - [sym_string_literal] = STATE(3406), - [sym_decltype_auto] = STATE(2825), - [sym_template_argument_list] = STATE(2906), - [sym_raw_string_literal] = STATE(3406), - [aux_sym_sized_type_specifier_repeat1] = STATE(2492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4174), - [anon_sym_COMMA] = ACTIONS(4174), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4169), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4167), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(5082), - [anon_sym_unsigned] = ACTIONS(5082), - [anon_sym_long] = ACTIONS(5082), - [anon_sym_short] = ACTIONS(5082), - [anon_sym_LBRACK] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4167), - [anon_sym_volatile] = ACTIONS(4167), - [anon_sym_restrict] = ACTIONS(4167), - [anon_sym___restrict__] = ACTIONS(4167), - [anon_sym__Atomic] = ACTIONS(4167), - [anon_sym__Noreturn] = ACTIONS(4167), - [anon_sym_noreturn] = ACTIONS(4167), - [anon_sym__Nonnull] = ACTIONS(4167), - [anon_sym_mutable] = ACTIONS(4167), - [anon_sym_constinit] = ACTIONS(4167), - [anon_sym_consteval] = ACTIONS(4167), - [anon_sym_alignas] = ACTIONS(4167), - [anon_sym__Alignas] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5084), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_and_eq] = ACTIONS(5086), - [anon_sym_or_eq] = ACTIONS(5086), - [anon_sym_xor_eq] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(5088), - [anon_sym_u_DQUOTE] = ACTIONS(5088), - [anon_sym_U_DQUOTE] = ACTIONS(5088), - [anon_sym_u8_DQUOTE] = ACTIONS(5088), - [anon_sym_DQUOTE] = ACTIONS(5088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5090), - [anon_sym_decltype] = ACTIONS(5092), - [anon_sym_GT2] = ACTIONS(4174), - [anon_sym_R_DQUOTE] = ACTIONS(5094), - [anon_sym_LR_DQUOTE] = ACTIONS(5094), - [anon_sym_uR_DQUOTE] = ACTIONS(5094), - [anon_sym_UR_DQUOTE] = ACTIONS(5094), - [anon_sym_u8R_DQUOTE] = ACTIONS(5094), - }, - [STATE(1611)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5035), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(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(5033), - [anon_sym_or_eq] = ACTIONS(5033), - [anon_sym_xor_eq] = ACTIONS(5033), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - }, - [STATE(1612)] = { - [sym_string_literal] = STATE(2624), - [sym_decltype_auto] = STATE(1947), - [sym_template_argument_list] = STATE(3012), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4174), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym___extension__] = ACTIONS(4167), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_signed] = ACTIONS(5066), - [anon_sym_unsigned] = ACTIONS(5066), - [anon_sym_long] = ACTIONS(5066), - [anon_sym_short] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_constexpr] = ACTIONS(4167), - [anon_sym_volatile] = ACTIONS(4167), - [anon_sym_restrict] = ACTIONS(4167), - [anon_sym___restrict__] = ACTIONS(4167), - [anon_sym__Atomic] = ACTIONS(4167), - [anon_sym__Noreturn] = ACTIONS(4167), - [anon_sym_noreturn] = ACTIONS(4167), - [anon_sym__Nonnull] = ACTIONS(4167), - [anon_sym_mutable] = ACTIONS(4167), - [anon_sym_constinit] = ACTIONS(4167), - [anon_sym_consteval] = ACTIONS(4167), - [anon_sym_alignas] = ACTIONS(4167), - [anon_sym__Alignas] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5070), - [anon_sym_decltype] = ACTIONS(5072), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - }, - [STATE(1613)] = { - [sym_type_qualifier] = STATE(1613), - [sym_alignas_qualifier] = STATE(1625), - [aux_sym__type_definition_type_repeat1] = STATE(1613), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(5101), - [aux_sym_preproc_if_token2] = ACTIONS(5101), - [aux_sym_preproc_else_token1] = ACTIONS(5101), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5101), - [anon_sym___extension__] = ACTIONS(5103), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_RBRACK] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_const] = ACTIONS(5103), - [anon_sym_constexpr] = ACTIONS(5103), - [anon_sym_volatile] = ACTIONS(5103), - [anon_sym_restrict] = ACTIONS(5103), - [anon_sym___restrict__] = ACTIONS(5103), - [anon_sym__Atomic] = ACTIONS(5103), - [anon_sym__Noreturn] = ACTIONS(5103), - [anon_sym_noreturn] = ACTIONS(5103), - [anon_sym__Nonnull] = ACTIONS(5103), - [anon_sym_mutable] = ACTIONS(5103), - [anon_sym_constinit] = ACTIONS(5103), - [anon_sym_consteval] = ACTIONS(5103), - [anon_sym_alignas] = ACTIONS(5106), - [anon_sym__Alignas] = ACTIONS(5106), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_LT_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_GT_EQ] = ACTIONS(5101), - [anon_sym_AMP_EQ] = ACTIONS(5101), - [anon_sym_CARET_EQ] = ACTIONS(5101), - [anon_sym_PIPE_EQ] = ACTIONS(5101), - [anon_sym_and_eq] = ACTIONS(5099), - [anon_sym_or_eq] = ACTIONS(5099), - [anon_sym_xor_eq] = ACTIONS(5099), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5101), + [STATE(981)] = { + [sym_type_qualifier] = STATE(982), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6874), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5052), + [anon_sym_RBRACK] = ACTIONS(5054), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1614)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [STATE(1615)] = { - [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_virtual] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = 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_static] = ACTIONS(5008), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), - }, - [STATE(1616)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym_virtual] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5022), - [anon_sym___declspec] = ACTIONS(5020), - [anon_sym___based] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_register] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym___inline] = ACTIONS(5020), - [anon_sym___inline__] = ACTIONS(5020), - [anon_sym___forceinline] = ACTIONS(5020), - [anon_sym_thread_local] = ACTIONS(5020), - [anon_sym___thread] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5022), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_DASH_GT_STAR] = ACTIONS(5022), - }, - [STATE(1617)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5035), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(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(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5033), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5024), - [anon_sym_decltype] = ACTIONS(5024), - [anon_sym_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_DASH_GT_STAR] = ACTIONS(5026), - }, - [STATE(1618)] = { - [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(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [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___extension__] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(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(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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), - }, - [STATE(1619)] = { - [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_virtual] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = 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_static] = ACTIONS(5004), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(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_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), - }, - [STATE(1620)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym_virtual] = ACTIONS(5016), - [anon_sym_extern] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5018), - [anon_sym___declspec] = ACTIONS(5016), - [anon_sym___based] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_register] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym___inline] = ACTIONS(5016), - [anon_sym___inline__] = ACTIONS(5016), - [anon_sym___forceinline] = ACTIONS(5016), - [anon_sym_thread_local] = ACTIONS(5016), - [anon_sym___thread] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_template] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_DASH_GT_STAR] = ACTIONS(5018), - }, - [STATE(1621)] = { - [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_virtual] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = 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_static] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_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_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), - }, - [STATE(1622)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1622), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [aux_sym_preproc_if_token2] = ACTIONS(5111), - [aux_sym_preproc_else_token1] = ACTIONS(5111), - [aux_sym_preproc_elif_token1] = ACTIONS(5109), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5111), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5109), - [anon_sym_GT_GT] = ACTIONS(5109), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(5113), - [anon_sym_unsigned] = ACTIONS(5113), - [anon_sym_long] = ACTIONS(5113), - [anon_sym_short] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5109), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_STAR_EQ] = ACTIONS(5111), - [anon_sym_SLASH_EQ] = ACTIONS(5111), - [anon_sym_PERCENT_EQ] = ACTIONS(5111), - [anon_sym_PLUS_EQ] = ACTIONS(5111), - [anon_sym_DASH_EQ] = ACTIONS(5111), - [anon_sym_LT_LT_EQ] = ACTIONS(5111), - [anon_sym_GT_GT_EQ] = ACTIONS(5111), - [anon_sym_AMP_EQ] = ACTIONS(5111), - [anon_sym_CARET_EQ] = ACTIONS(5111), - [anon_sym_PIPE_EQ] = ACTIONS(5111), - [anon_sym_and_eq] = ACTIONS(5109), - [anon_sym_or_eq] = ACTIONS(5109), - [anon_sym_xor_eq] = ACTIONS(5109), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5111), + [STATE(982)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6882), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5058), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1623)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [aux_sym_preproc_if_token2] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_CARET] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5116), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5116), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_LT_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_GT_EQ] = ACTIONS(5118), - [anon_sym_AMP_EQ] = ACTIONS(5118), - [anon_sym_CARET_EQ] = ACTIONS(5118), - [anon_sym_PIPE_EQ] = ACTIONS(5118), - [anon_sym_and_eq] = ACTIONS(5116), - [anon_sym_or_eq] = ACTIONS(5116), - [anon_sym_xor_eq] = ACTIONS(5116), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_and] = ACTIONS(5116), - [anon_sym_bitor] = ACTIONS(5116), - [anon_sym_xor] = ACTIONS(5116), - [anon_sym_bitand] = ACTIONS(5116), - [anon_sym_not_eq] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), + [STATE(983)] = { + [sym_type_qualifier] = STATE(984), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6905), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5062), + [anon_sym_RBRACK] = ACTIONS(5064), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1624)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [aux_sym_preproc_if_token2] = ACTIONS(5022), - [aux_sym_preproc_else_token1] = ACTIONS(5022), - [aux_sym_preproc_elif_token1] = ACTIONS(5020), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5022), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_RBRACK] = ACTIONS(5022), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5022), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_and_eq] = ACTIONS(5020), - [anon_sym_or_eq] = ACTIONS(5020), - [anon_sym_xor_eq] = ACTIONS(5020), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - }, - [STATE(1625)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [aux_sym_preproc_if_token2] = ACTIONS(2561), - [aux_sym_preproc_else_token1] = ACTIONS(2561), - [aux_sym_preproc_elif_token1] = ACTIONS(2571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_EQ_EQ] = ACTIONS(2561), - [anon_sym_BANG_EQ] = ACTIONS(2561), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2561), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2571), - [anon_sym_GT_GT] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_EQ] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2561), - [anon_sym_STAR_EQ] = ACTIONS(2561), - [anon_sym_SLASH_EQ] = ACTIONS(2561), - [anon_sym_PERCENT_EQ] = ACTIONS(2561), - [anon_sym_PLUS_EQ] = ACTIONS(2561), - [anon_sym_DASH_EQ] = ACTIONS(2561), - [anon_sym_LT_LT_EQ] = ACTIONS(2561), - [anon_sym_GT_GT_EQ] = ACTIONS(2561), - [anon_sym_AMP_EQ] = ACTIONS(2561), - [anon_sym_CARET_EQ] = ACTIONS(2561), - [anon_sym_PIPE_EQ] = ACTIONS(2561), - [anon_sym_and_eq] = ACTIONS(2571), - [anon_sym_or_eq] = ACTIONS(2571), - [anon_sym_xor_eq] = ACTIONS(2571), - [anon_sym_LT_EQ_GT] = ACTIONS(2561), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_bitor] = ACTIONS(2571), - [anon_sym_xor] = ACTIONS(2571), - [anon_sym_bitand] = ACTIONS(2571), - [anon_sym_not_eq] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_DOT_STAR] = ACTIONS(2561), - [anon_sym_DASH_GT] = ACTIONS(2561), + [STATE(984)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6910), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5068), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1626)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LPAREN2] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_using] = ACTIONS(5024), - [anon_sym_COLON] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___cdecl] = ACTIONS(5024), - [anon_sym___clrcall] = ACTIONS(5024), - [anon_sym___stdcall] = ACTIONS(5024), - [anon_sym___fastcall] = ACTIONS(5024), - [anon_sym___thiscall] = ACTIONS(5024), - [anon_sym___vectorcall] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_signed] = ACTIONS(5024), - [anon_sym_unsigned] = ACTIONS(5024), - [anon_sym_long] = ACTIONS(5024), - [anon_sym_short] = ACTIONS(5024), - [anon_sym_LBRACK] = ACTIONS(5024), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = ACTIONS(5031), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [sym_primitive_type] = ACTIONS(5024), - [anon_sym_enum] = ACTIONS(5024), - [anon_sym_class] = ACTIONS(5024), - [anon_sym_struct] = ACTIONS(5024), - [anon_sym_union] = ACTIONS(5024), - [anon_sym_or] = ACTIONS(5024), - [anon_sym_and] = ACTIONS(5024), - [anon_sym_asm] = ACTIONS(5024), - [anon_sym___asm__] = ACTIONS(5024), - [anon_sym___asm] = ACTIONS(5024), - [anon_sym_DASH_GT] = ACTIONS(5031), - [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_explicit] = ACTIONS(5024), - [anon_sym_typename] = ACTIONS(5024), - [anon_sym_template] = ACTIONS(5024), - [anon_sym_GT2] = ACTIONS(5031), - [anon_sym_operator] = ACTIONS(5024), - [anon_sym_try] = ACTIONS(5024), - [anon_sym_friend] = ACTIONS(5024), - [anon_sym_noexcept] = ACTIONS(5024), - [anon_sym_throw] = ACTIONS(5024), - [anon_sym_concept] = ACTIONS(5024), - [anon_sym_requires] = ACTIONS(5024), - }, - [STATE(1627)] = { - [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___extension__] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym___attribute] = ACTIONS(5008), - [anon_sym_COLON] = 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_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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(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), - }, - [STATE(1628)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [aux_sym_preproc_if_token2] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - }, - [STATE(1629)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [aux_sym_preproc_if_token2] = ACTIONS(5018), - [aux_sym_preproc_else_token1] = ACTIONS(5018), - [aux_sym_preproc_elif_token1] = ACTIONS(5016), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5018), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_and_eq] = ACTIONS(5016), - [anon_sym_or_eq] = ACTIONS(5016), - [anon_sym_xor_eq] = ACTIONS(5016), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - }, - [STATE(1630)] = { - [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___extension__] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym___attribute] = ACTIONS(5000), - [anon_sym_COLON] = 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_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(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), - }, - [STATE(1631)] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [aux_sym_preproc_if_token2] = ACTIONS(5014), - [aux_sym_preproc_else_token1] = ACTIONS(5014), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5014), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [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(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_RBRACK] = ACTIONS(5014), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(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(5012), - [anon_sym_or_eq] = ACTIONS(5012), - [anon_sym_xor_eq] = ACTIONS(5012), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5012), - [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_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - }, - [STATE(1632)] = { - [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___extension__] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym___attribute] = ACTIONS(5004), - [anon_sym_COLON] = 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_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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(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), - }, - [STATE(1633)] = { - [sym_type_qualifier] = STATE(1638), - [sym_alignas_qualifier] = STATE(1625), - [aux_sym__type_definition_type_repeat1] = STATE(1638), - [aux_sym_sized_type_specifier_repeat1] = STATE(1655), - [sym_identifier] = ACTIONS(5120), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5124), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym___extension__] = ACTIONS(5126), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5128), - [anon_sym_unsigned] = ACTIONS(5128), - [anon_sym_long] = ACTIONS(5128), - [anon_sym_short] = ACTIONS(5128), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5126), - [anon_sym_constexpr] = ACTIONS(5126), - [anon_sym_volatile] = ACTIONS(5126), - [anon_sym_restrict] = ACTIONS(5126), - [anon_sym___restrict__] = ACTIONS(5126), - [anon_sym__Atomic] = ACTIONS(5126), - [anon_sym__Noreturn] = ACTIONS(5126), - [anon_sym_noreturn] = ACTIONS(5126), - [anon_sym__Nonnull] = ACTIONS(5126), - [anon_sym_mutable] = ACTIONS(5126), - [anon_sym_constinit] = ACTIONS(5126), - [anon_sym_consteval] = ACTIONS(5126), - [anon_sym_alignas] = ACTIONS(5130), - [anon_sym__Alignas] = ACTIONS(5130), - [sym_primitive_type] = ACTIONS(5132), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_LT_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_GT_EQ] = ACTIONS(5122), - [anon_sym_AMP_EQ] = ACTIONS(5122), - [anon_sym_CARET_EQ] = ACTIONS(5122), - [anon_sym_PIPE_EQ] = ACTIONS(5122), - [anon_sym_and_eq] = ACTIONS(5124), - [anon_sym_or_eq] = ACTIONS(5124), - [anon_sym_xor_eq] = ACTIONS(5124), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), + [STATE(985)] = { + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6911), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(986), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5072), + [anon_sym_RBRACK] = ACTIONS(5074), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1634)] = { - [sym_type_qualifier] = STATE(1613), - [sym_alignas_qualifier] = STATE(1625), - [aux_sym__type_definition_type_repeat1] = STATE(1613), - [aux_sym_sized_type_specifier_repeat1] = STATE(2362), - [sym_identifier] = ACTIONS(5134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [aux_sym_preproc_if_token2] = ACTIONS(5137), - [aux_sym_preproc_else_token1] = ACTIONS(5137), - [aux_sym_preproc_elif_token1] = ACTIONS(5139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5139), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym___extension__] = ACTIONS(5126), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5141), - [anon_sym_unsigned] = ACTIONS(5141), - [anon_sym_long] = ACTIONS(5141), - [anon_sym_short] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5126), - [anon_sym_constexpr] = ACTIONS(5126), - [anon_sym_volatile] = ACTIONS(5126), - [anon_sym_restrict] = ACTIONS(5126), - [anon_sym___restrict__] = ACTIONS(5126), - [anon_sym__Atomic] = ACTIONS(5126), - [anon_sym__Noreturn] = ACTIONS(5126), - [anon_sym_noreturn] = ACTIONS(5126), - [anon_sym__Nonnull] = ACTIONS(5126), - [anon_sym_mutable] = ACTIONS(5126), - [anon_sym_constinit] = ACTIONS(5126), - [anon_sym_consteval] = ACTIONS(5126), - [anon_sym_alignas] = ACTIONS(5130), - [anon_sym__Alignas] = ACTIONS(5130), - [sym_primitive_type] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_STAR_EQ] = ACTIONS(5137), - [anon_sym_SLASH_EQ] = ACTIONS(5137), - [anon_sym_PERCENT_EQ] = ACTIONS(5137), - [anon_sym_PLUS_EQ] = ACTIONS(5137), - [anon_sym_DASH_EQ] = ACTIONS(5137), - [anon_sym_LT_LT_EQ] = ACTIONS(5137), - [anon_sym_GT_GT_EQ] = ACTIONS(5137), - [anon_sym_AMP_EQ] = ACTIONS(5137), - [anon_sym_CARET_EQ] = ACTIONS(5137), - [anon_sym_PIPE_EQ] = ACTIONS(5137), - [anon_sym_and_eq] = ACTIONS(5139), - [anon_sym_or_eq] = ACTIONS(5139), - [anon_sym_xor_eq] = ACTIONS(5139), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), + [STATE(986)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6914), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5076), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1635)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5026), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5026), - [anon_sym_GT_GT] = ACTIONS(5026), - [anon_sym_SEMI] = ACTIONS(5028), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5028), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___cdecl] = ACTIONS(5024), - [anon_sym___clrcall] = ACTIONS(5024), - [anon_sym___stdcall] = ACTIONS(5024), - [anon_sym___fastcall] = ACTIONS(5024), - [anon_sym___thiscall] = ACTIONS(5024), - [anon_sym___vectorcall] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_RBRACK] = ACTIONS(5026), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(5026), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - }, - [STATE(1636)] = { - [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(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5026), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5026), - [anon_sym_GT_GT] = ACTIONS(5026), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym___cdecl] = ACTIONS(5024), - [anon_sym___clrcall] = ACTIONS(5024), - [anon_sym___stdcall] = ACTIONS(5024), - [anon_sym___fastcall] = ACTIONS(5024), - [anon_sym___thiscall] = ACTIONS(5024), - [anon_sym___vectorcall] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5035), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(5026), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), - }, - [STATE(1637)] = { - [sym_type_qualifier] = STATE(1634), - [sym_alignas_qualifier] = STATE(1625), - [aux_sym__type_definition_type_repeat1] = STATE(1634), - [aux_sym_sized_type_specifier_repeat1] = STATE(1658), - [sym_identifier] = ACTIONS(5145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [aux_sym_preproc_if_token2] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5124), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5122), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5124), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym___extension__] = ACTIONS(5126), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5148), - [anon_sym_unsigned] = ACTIONS(5148), - [anon_sym_long] = ACTIONS(5148), - [anon_sym_short] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5126), - [anon_sym_constexpr] = ACTIONS(5126), - [anon_sym_volatile] = ACTIONS(5126), - [anon_sym_restrict] = ACTIONS(5126), - [anon_sym___restrict__] = ACTIONS(5126), - [anon_sym__Atomic] = ACTIONS(5126), - [anon_sym__Noreturn] = ACTIONS(5126), - [anon_sym_noreturn] = ACTIONS(5126), - [anon_sym__Nonnull] = ACTIONS(5126), - [anon_sym_mutable] = ACTIONS(5126), - [anon_sym_constinit] = ACTIONS(5126), - [anon_sym_consteval] = ACTIONS(5126), - [anon_sym_alignas] = ACTIONS(5130), - [anon_sym__Alignas] = ACTIONS(5130), - [sym_primitive_type] = ACTIONS(5150), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_LT_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_GT_EQ] = ACTIONS(5122), - [anon_sym_AMP_EQ] = ACTIONS(5122), - [anon_sym_CARET_EQ] = ACTIONS(5122), - [anon_sym_PIPE_EQ] = ACTIONS(5122), - [anon_sym_and_eq] = ACTIONS(5124), - [anon_sym_or_eq] = ACTIONS(5124), - [anon_sym_xor_eq] = ACTIONS(5124), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), + [STATE(987)] = { + [sym_type_qualifier] = STATE(945), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6846), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(945), + [sym_identifier] = ACTIONS(5080), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5040), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5042), + [anon_sym_RBRACK] = ACTIONS(5044), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1638)] = { - [sym_type_qualifier] = STATE(1613), - [sym_alignas_qualifier] = STATE(1625), - [aux_sym__type_definition_type_repeat1] = STATE(1613), - [aux_sym_sized_type_specifier_repeat1] = STATE(2506), - [sym_identifier] = ACTIONS(5152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5139), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5137), - [anon_sym___extension__] = ACTIONS(5126), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5154), - [anon_sym_unsigned] = ACTIONS(5154), - [anon_sym_long] = ACTIONS(5154), - [anon_sym_short] = ACTIONS(5154), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5126), - [anon_sym_constexpr] = ACTIONS(5126), - [anon_sym_volatile] = ACTIONS(5126), - [anon_sym_restrict] = ACTIONS(5126), - [anon_sym___restrict__] = ACTIONS(5126), - [anon_sym__Atomic] = ACTIONS(5126), - [anon_sym__Noreturn] = ACTIONS(5126), - [anon_sym_noreturn] = ACTIONS(5126), - [anon_sym__Nonnull] = ACTIONS(5126), - [anon_sym_mutable] = ACTIONS(5126), - [anon_sym_constinit] = ACTIONS(5126), - [anon_sym_consteval] = ACTIONS(5126), - [anon_sym_alignas] = ACTIONS(5130), - [anon_sym__Alignas] = ACTIONS(5130), - [sym_primitive_type] = ACTIONS(5156), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_STAR_EQ] = ACTIONS(5137), - [anon_sym_SLASH_EQ] = ACTIONS(5137), - [anon_sym_PERCENT_EQ] = ACTIONS(5137), - [anon_sym_PLUS_EQ] = ACTIONS(5137), - [anon_sym_DASH_EQ] = ACTIONS(5137), - [anon_sym_LT_LT_EQ] = ACTIONS(5137), - [anon_sym_GT_GT_EQ] = ACTIONS(5137), - [anon_sym_AMP_EQ] = ACTIONS(5137), - [anon_sym_CARET_EQ] = ACTIONS(5137), - [anon_sym_PIPE_EQ] = ACTIONS(5137), - [anon_sym_and_eq] = ACTIONS(5139), - [anon_sym_or_eq] = ACTIONS(5139), - [anon_sym_xor_eq] = ACTIONS(5139), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), + [STATE(988)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6844), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1639)] = { - [sym_identifier] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_LPAREN2] = ACTIONS(5160), - [anon_sym_TILDE] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5158), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym___extension__] = ACTIONS(5158), - [anon_sym_virtual] = ACTIONS(5158), - [anon_sym_extern] = ACTIONS(5158), - [anon_sym___attribute__] = ACTIONS(5158), - [anon_sym___attribute] = ACTIONS(5158), - [anon_sym_using] = ACTIONS(5158), - [anon_sym_COLON_COLON] = ACTIONS(5160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5160), - [anon_sym___declspec] = ACTIONS(5158), - [anon_sym___based] = ACTIONS(5158), - [anon_sym___cdecl] = ACTIONS(5158), - [anon_sym___clrcall] = ACTIONS(5158), - [anon_sym___stdcall] = ACTIONS(5158), - [anon_sym___fastcall] = ACTIONS(5158), - [anon_sym___thiscall] = ACTIONS(5158), - [anon_sym___vectorcall] = ACTIONS(5158), - [anon_sym_LBRACE] = ACTIONS(5160), - [anon_sym_signed] = ACTIONS(5158), - [anon_sym_unsigned] = ACTIONS(5158), - [anon_sym_long] = ACTIONS(5158), - [anon_sym_short] = ACTIONS(5158), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_static] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_register] = ACTIONS(5158), - [anon_sym_inline] = ACTIONS(5158), - [anon_sym___inline] = ACTIONS(5158), - [anon_sym___inline__] = ACTIONS(5158), - [anon_sym___forceinline] = ACTIONS(5158), - [anon_sym_thread_local] = ACTIONS(5158), - [anon_sym___thread] = ACTIONS(5158), - [anon_sym_const] = ACTIONS(5158), - [anon_sym_constexpr] = ACTIONS(5158), - [anon_sym_volatile] = ACTIONS(5158), - [anon_sym_restrict] = ACTIONS(5158), - [anon_sym___restrict__] = ACTIONS(5158), - [anon_sym__Atomic] = ACTIONS(5158), - [anon_sym__Noreturn] = ACTIONS(5158), - [anon_sym_noreturn] = ACTIONS(5158), - [anon_sym__Nonnull] = ACTIONS(5158), - [anon_sym_mutable] = ACTIONS(5158), - [anon_sym_constinit] = ACTIONS(5158), - [anon_sym_consteval] = ACTIONS(5158), - [anon_sym_alignas] = ACTIONS(5158), - [anon_sym__Alignas] = ACTIONS(5158), - [sym_primitive_type] = ACTIONS(5158), - [anon_sym_enum] = ACTIONS(5158), - [anon_sym_class] = ACTIONS(5158), - [anon_sym_struct] = ACTIONS(5158), - [anon_sym_union] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5158), - [anon_sym_and] = ACTIONS(5158), - [anon_sym_asm] = ACTIONS(5158), - [anon_sym___asm__] = ACTIONS(5158), - [anon_sym___asm] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5158), - [anon_sym_decltype] = ACTIONS(5158), - [anon_sym_final] = ACTIONS(5158), - [anon_sym_override] = ACTIONS(5158), - [anon_sym_explicit] = ACTIONS(5158), - [anon_sym_typename] = ACTIONS(5158), - [anon_sym_template] = ACTIONS(5158), - [anon_sym_GT2] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(5158), - [anon_sym_try] = ACTIONS(5158), - [anon_sym_friend] = ACTIONS(5158), - [anon_sym_noexcept] = ACTIONS(5158), - [anon_sym_throw] = ACTIONS(5158), - [anon_sym_concept] = ACTIONS(5158), - [anon_sym_requires] = ACTIONS(5158), - }, - [STATE(1640)] = { - [sym_identifier] = ACTIONS(5162), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_LPAREN2] = ACTIONS(5164), - [anon_sym_TILDE] = ACTIONS(5164), - [anon_sym_STAR] = ACTIONS(5164), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym___extension__] = ACTIONS(5162), - [anon_sym_virtual] = ACTIONS(5162), - [anon_sym_extern] = ACTIONS(5162), - [anon_sym___attribute__] = ACTIONS(5162), - [anon_sym___attribute] = ACTIONS(5162), - [anon_sym_using] = ACTIONS(5162), - [anon_sym_COLON_COLON] = ACTIONS(5164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5164), - [anon_sym___declspec] = ACTIONS(5162), - [anon_sym___based] = ACTIONS(5162), - [anon_sym___cdecl] = ACTIONS(5162), - [anon_sym___clrcall] = ACTIONS(5162), - [anon_sym___stdcall] = ACTIONS(5162), - [anon_sym___fastcall] = ACTIONS(5162), - [anon_sym___thiscall] = ACTIONS(5162), - [anon_sym___vectorcall] = ACTIONS(5162), - [anon_sym_LBRACE] = ACTIONS(5164), - [anon_sym_signed] = ACTIONS(5162), - [anon_sym_unsigned] = ACTIONS(5162), - [anon_sym_long] = ACTIONS(5162), - [anon_sym_short] = ACTIONS(5162), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_static] = ACTIONS(5162), - [anon_sym_EQ] = ACTIONS(5164), - [anon_sym_register] = ACTIONS(5162), - [anon_sym_inline] = ACTIONS(5162), - [anon_sym___inline] = ACTIONS(5162), - [anon_sym___inline__] = ACTIONS(5162), - [anon_sym___forceinline] = ACTIONS(5162), - [anon_sym_thread_local] = ACTIONS(5162), - [anon_sym___thread] = ACTIONS(5162), - [anon_sym_const] = ACTIONS(5162), - [anon_sym_constexpr] = ACTIONS(5162), - [anon_sym_volatile] = ACTIONS(5162), - [anon_sym_restrict] = ACTIONS(5162), - [anon_sym___restrict__] = ACTIONS(5162), - [anon_sym__Atomic] = ACTIONS(5162), - [anon_sym__Noreturn] = ACTIONS(5162), - [anon_sym_noreturn] = ACTIONS(5162), - [anon_sym__Nonnull] = ACTIONS(5162), - [anon_sym_mutable] = ACTIONS(5162), - [anon_sym_constinit] = ACTIONS(5162), - [anon_sym_consteval] = ACTIONS(5162), - [anon_sym_alignas] = ACTIONS(5162), - [anon_sym__Alignas] = ACTIONS(5162), - [sym_primitive_type] = ACTIONS(5162), - [anon_sym_enum] = ACTIONS(5162), - [anon_sym_class] = ACTIONS(5162), - [anon_sym_struct] = ACTIONS(5162), - [anon_sym_union] = ACTIONS(5162), - [anon_sym_or] = ACTIONS(5162), - [anon_sym_and] = ACTIONS(5162), - [anon_sym_asm] = ACTIONS(5162), - [anon_sym___asm__] = ACTIONS(5162), - [anon_sym___asm] = ACTIONS(5162), - [anon_sym_DASH_GT] = ACTIONS(5164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5162), - [anon_sym_decltype] = ACTIONS(5162), - [anon_sym_final] = ACTIONS(5162), - [anon_sym_override] = ACTIONS(5162), - [anon_sym_explicit] = ACTIONS(5162), - [anon_sym_typename] = ACTIONS(5162), - [anon_sym_template] = ACTIONS(5162), - [anon_sym_GT2] = ACTIONS(5164), - [anon_sym_operator] = ACTIONS(5162), - [anon_sym_try] = ACTIONS(5162), - [anon_sym_friend] = ACTIONS(5162), - [anon_sym_noexcept] = ACTIONS(5162), - [anon_sym_throw] = ACTIONS(5162), - [anon_sym_concept] = ACTIONS(5162), - [anon_sym_requires] = ACTIONS(5162), - }, - [STATE(1641)] = { - [sym_identifier] = ACTIONS(5166), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_RPAREN] = ACTIONS(5168), - [anon_sym_LPAREN2] = ACTIONS(5168), - [anon_sym_TILDE] = ACTIONS(5168), - [anon_sym_STAR] = ACTIONS(5168), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_SEMI] = ACTIONS(5168), - [anon_sym___extension__] = ACTIONS(5166), - [anon_sym_virtual] = ACTIONS(5166), - [anon_sym_extern] = ACTIONS(5166), - [anon_sym___attribute__] = ACTIONS(5166), - [anon_sym___attribute] = ACTIONS(5166), - [anon_sym_using] = ACTIONS(5166), - [anon_sym_COLON_COLON] = ACTIONS(5168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5168), - [anon_sym___declspec] = ACTIONS(5166), - [anon_sym___based] = ACTIONS(5166), - [anon_sym___cdecl] = ACTIONS(5166), - [anon_sym___clrcall] = ACTIONS(5166), - [anon_sym___stdcall] = ACTIONS(5166), - [anon_sym___fastcall] = ACTIONS(5166), - [anon_sym___thiscall] = ACTIONS(5166), - [anon_sym___vectorcall] = ACTIONS(5166), - [anon_sym_LBRACE] = ACTIONS(5168), - [anon_sym_signed] = ACTIONS(5166), - [anon_sym_unsigned] = ACTIONS(5166), - [anon_sym_long] = ACTIONS(5166), - [anon_sym_short] = ACTIONS(5166), - [anon_sym_LBRACK] = ACTIONS(5166), - [anon_sym_static] = ACTIONS(5166), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_register] = ACTIONS(5166), - [anon_sym_inline] = ACTIONS(5166), - [anon_sym___inline] = ACTIONS(5166), - [anon_sym___inline__] = ACTIONS(5166), - [anon_sym___forceinline] = ACTIONS(5166), - [anon_sym_thread_local] = ACTIONS(5166), - [anon_sym___thread] = ACTIONS(5166), - [anon_sym_const] = ACTIONS(5166), - [anon_sym_constexpr] = ACTIONS(5166), - [anon_sym_volatile] = ACTIONS(5166), - [anon_sym_restrict] = ACTIONS(5166), - [anon_sym___restrict__] = ACTIONS(5166), - [anon_sym__Atomic] = ACTIONS(5166), - [anon_sym__Noreturn] = ACTIONS(5166), - [anon_sym_noreturn] = ACTIONS(5166), - [anon_sym__Nonnull] = ACTIONS(5166), - [anon_sym_mutable] = ACTIONS(5166), - [anon_sym_constinit] = ACTIONS(5166), - [anon_sym_consteval] = ACTIONS(5166), - [anon_sym_alignas] = ACTIONS(5166), - [anon_sym__Alignas] = ACTIONS(5166), - [sym_primitive_type] = ACTIONS(5166), - [anon_sym_enum] = ACTIONS(5166), - [anon_sym_class] = ACTIONS(5166), - [anon_sym_struct] = ACTIONS(5166), - [anon_sym_union] = ACTIONS(5166), - [anon_sym_or] = ACTIONS(5166), - [anon_sym_and] = ACTIONS(5166), - [anon_sym_asm] = ACTIONS(5166), - [anon_sym___asm__] = ACTIONS(5166), - [anon_sym___asm] = ACTIONS(5166), - [anon_sym_DASH_GT] = ACTIONS(5168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5166), - [anon_sym_decltype] = ACTIONS(5166), - [anon_sym_final] = ACTIONS(5166), - [anon_sym_override] = ACTIONS(5166), - [anon_sym_explicit] = ACTIONS(5166), - [anon_sym_typename] = ACTIONS(5166), - [anon_sym_template] = ACTIONS(5166), - [anon_sym_GT2] = ACTIONS(5168), - [anon_sym_operator] = ACTIONS(5166), - [anon_sym_try] = ACTIONS(5166), - [anon_sym_friend] = ACTIONS(5166), - [anon_sym_noexcept] = ACTIONS(5166), - [anon_sym_throw] = ACTIONS(5166), - [anon_sym_concept] = ACTIONS(5166), - [anon_sym_requires] = ACTIONS(5166), - }, - [STATE(1642)] = { - [sym_identifier] = ACTIONS(5170), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_LPAREN2] = ACTIONS(5172), - [anon_sym_TILDE] = ACTIONS(5172), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym___extension__] = ACTIONS(5170), - [anon_sym_virtual] = ACTIONS(5170), - [anon_sym_extern] = ACTIONS(5170), - [anon_sym___attribute__] = ACTIONS(5170), - [anon_sym___attribute] = ACTIONS(5170), - [anon_sym_using] = ACTIONS(5170), - [anon_sym_COLON_COLON] = ACTIONS(5172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5172), - [anon_sym___declspec] = ACTIONS(5170), - [anon_sym___based] = ACTIONS(5170), - [anon_sym___cdecl] = ACTIONS(5170), - [anon_sym___clrcall] = ACTIONS(5170), - [anon_sym___stdcall] = ACTIONS(5170), - [anon_sym___fastcall] = ACTIONS(5170), - [anon_sym___thiscall] = ACTIONS(5170), - [anon_sym___vectorcall] = ACTIONS(5170), - [anon_sym_LBRACE] = ACTIONS(5172), - [anon_sym_signed] = ACTIONS(5170), - [anon_sym_unsigned] = ACTIONS(5170), - [anon_sym_long] = ACTIONS(5170), - [anon_sym_short] = ACTIONS(5170), - [anon_sym_LBRACK] = ACTIONS(5170), - [anon_sym_static] = ACTIONS(5170), - [anon_sym_EQ] = ACTIONS(5172), - [anon_sym_register] = ACTIONS(5170), - [anon_sym_inline] = ACTIONS(5170), - [anon_sym___inline] = ACTIONS(5170), - [anon_sym___inline__] = ACTIONS(5170), - [anon_sym___forceinline] = ACTIONS(5170), - [anon_sym_thread_local] = ACTIONS(5170), - [anon_sym___thread] = ACTIONS(5170), - [anon_sym_const] = ACTIONS(5170), - [anon_sym_constexpr] = ACTIONS(5170), - [anon_sym_volatile] = ACTIONS(5170), - [anon_sym_restrict] = ACTIONS(5170), - [anon_sym___restrict__] = ACTIONS(5170), - [anon_sym__Atomic] = ACTIONS(5170), - [anon_sym__Noreturn] = ACTIONS(5170), - [anon_sym_noreturn] = ACTIONS(5170), - [anon_sym__Nonnull] = ACTIONS(5170), - [anon_sym_mutable] = ACTIONS(5170), - [anon_sym_constinit] = ACTIONS(5170), - [anon_sym_consteval] = ACTIONS(5170), - [anon_sym_alignas] = ACTIONS(5170), - [anon_sym__Alignas] = ACTIONS(5170), - [sym_primitive_type] = ACTIONS(5170), - [anon_sym_enum] = ACTIONS(5170), - [anon_sym_class] = ACTIONS(5170), - [anon_sym_struct] = ACTIONS(5170), - [anon_sym_union] = ACTIONS(5170), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_and] = ACTIONS(5170), - [anon_sym_asm] = ACTIONS(5170), - [anon_sym___asm__] = ACTIONS(5170), - [anon_sym___asm] = ACTIONS(5170), - [anon_sym_DASH_GT] = ACTIONS(5172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5170), - [anon_sym_decltype] = ACTIONS(5170), - [anon_sym_final] = ACTIONS(5170), - [anon_sym_override] = ACTIONS(5170), - [anon_sym_explicit] = ACTIONS(5170), - [anon_sym_typename] = ACTIONS(5170), - [anon_sym_template] = ACTIONS(5170), - [anon_sym_GT2] = ACTIONS(5172), - [anon_sym_operator] = ACTIONS(5170), - [anon_sym_try] = ACTIONS(5170), - [anon_sym_friend] = ACTIONS(5170), - [anon_sym_noexcept] = ACTIONS(5170), - [anon_sym_throw] = ACTIONS(5170), - [anon_sym_concept] = ACTIONS(5170), - [anon_sym_requires] = ACTIONS(5170), - }, - [STATE(1643)] = { - [sym_identifier] = ACTIONS(5174), - [anon_sym_COMMA] = ACTIONS(5176), - [anon_sym_RPAREN] = ACTIONS(5176), - [anon_sym_LPAREN2] = ACTIONS(5176), - [anon_sym_TILDE] = ACTIONS(5176), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_PIPE_PIPE] = ACTIONS(5176), - [anon_sym_AMP_AMP] = ACTIONS(5176), - [anon_sym_AMP] = ACTIONS(5174), - [anon_sym_SEMI] = ACTIONS(5176), - [anon_sym___extension__] = ACTIONS(5174), - [anon_sym_virtual] = ACTIONS(5174), - [anon_sym_extern] = ACTIONS(5174), - [anon_sym___attribute__] = ACTIONS(5174), - [anon_sym___attribute] = ACTIONS(5174), - [anon_sym_using] = ACTIONS(5174), - [anon_sym_COLON_COLON] = ACTIONS(5176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5176), - [anon_sym___declspec] = ACTIONS(5174), - [anon_sym___based] = ACTIONS(5174), - [anon_sym___cdecl] = ACTIONS(5174), - [anon_sym___clrcall] = ACTIONS(5174), - [anon_sym___stdcall] = ACTIONS(5174), - [anon_sym___fastcall] = ACTIONS(5174), - [anon_sym___thiscall] = ACTIONS(5174), - [anon_sym___vectorcall] = ACTIONS(5174), - [anon_sym_LBRACE] = ACTIONS(5176), - [anon_sym_signed] = ACTIONS(5174), - [anon_sym_unsigned] = ACTIONS(5174), - [anon_sym_long] = ACTIONS(5174), - [anon_sym_short] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5174), - [anon_sym_static] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(5176), - [anon_sym_register] = ACTIONS(5174), - [anon_sym_inline] = ACTIONS(5174), - [anon_sym___inline] = ACTIONS(5174), - [anon_sym___inline__] = ACTIONS(5174), - [anon_sym___forceinline] = ACTIONS(5174), - [anon_sym_thread_local] = ACTIONS(5174), - [anon_sym___thread] = ACTIONS(5174), - [anon_sym_const] = ACTIONS(5174), - [anon_sym_constexpr] = ACTIONS(5174), - [anon_sym_volatile] = ACTIONS(5174), - [anon_sym_restrict] = ACTIONS(5174), - [anon_sym___restrict__] = ACTIONS(5174), - [anon_sym__Atomic] = ACTIONS(5174), - [anon_sym__Noreturn] = ACTIONS(5174), - [anon_sym_noreturn] = ACTIONS(5174), - [anon_sym__Nonnull] = ACTIONS(5174), - [anon_sym_mutable] = ACTIONS(5174), - [anon_sym_constinit] = ACTIONS(5174), - [anon_sym_consteval] = ACTIONS(5174), - [anon_sym_alignas] = ACTIONS(5174), - [anon_sym__Alignas] = ACTIONS(5174), - [sym_primitive_type] = ACTIONS(5174), - [anon_sym_enum] = ACTIONS(5174), - [anon_sym_class] = ACTIONS(5174), - [anon_sym_struct] = ACTIONS(5174), - [anon_sym_union] = ACTIONS(5174), - [anon_sym_or] = ACTIONS(5174), - [anon_sym_and] = ACTIONS(5174), - [anon_sym_asm] = ACTIONS(5174), - [anon_sym___asm__] = ACTIONS(5174), - [anon_sym___asm] = ACTIONS(5174), - [anon_sym_DASH_GT] = ACTIONS(5176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5174), - [anon_sym_decltype] = ACTIONS(5174), - [anon_sym_final] = ACTIONS(5174), - [anon_sym_override] = ACTIONS(5174), - [anon_sym_explicit] = ACTIONS(5174), - [anon_sym_typename] = ACTIONS(5174), - [anon_sym_template] = ACTIONS(5174), - [anon_sym_GT2] = ACTIONS(5176), - [anon_sym_operator] = ACTIONS(5174), - [anon_sym_try] = ACTIONS(5174), - [anon_sym_friend] = ACTIONS(5174), - [anon_sym_noexcept] = ACTIONS(5174), - [anon_sym_throw] = ACTIONS(5174), - [anon_sym_concept] = ACTIONS(5174), - [anon_sym_requires] = ACTIONS(5174), - }, - [STATE(1644)] = { - [sym_identifier] = ACTIONS(5178), - [anon_sym_COMMA] = ACTIONS(5180), - [anon_sym_RPAREN] = ACTIONS(5180), - [anon_sym_LPAREN2] = ACTIONS(5180), - [anon_sym_TILDE] = ACTIONS(5180), - [anon_sym_STAR] = ACTIONS(5180), - [anon_sym_PIPE_PIPE] = ACTIONS(5180), - [anon_sym_AMP_AMP] = ACTIONS(5180), - [anon_sym_AMP] = ACTIONS(5178), - [anon_sym_SEMI] = ACTIONS(5180), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_virtual] = ACTIONS(5178), - [anon_sym_extern] = ACTIONS(5178), - [anon_sym___attribute__] = ACTIONS(5178), - [anon_sym___attribute] = ACTIONS(5178), - [anon_sym_using] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(5180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5180), - [anon_sym___declspec] = ACTIONS(5178), - [anon_sym___based] = ACTIONS(5178), - [anon_sym___cdecl] = ACTIONS(5178), - [anon_sym___clrcall] = ACTIONS(5178), - [anon_sym___stdcall] = ACTIONS(5178), - [anon_sym___fastcall] = ACTIONS(5178), - [anon_sym___thiscall] = ACTIONS(5178), - [anon_sym___vectorcall] = ACTIONS(5178), - [anon_sym_LBRACE] = ACTIONS(5180), - [anon_sym_signed] = ACTIONS(5178), - [anon_sym_unsigned] = ACTIONS(5178), - [anon_sym_long] = ACTIONS(5178), - [anon_sym_short] = ACTIONS(5178), - [anon_sym_LBRACK] = ACTIONS(5178), - [anon_sym_static] = ACTIONS(5178), - [anon_sym_EQ] = ACTIONS(5180), - [anon_sym_register] = ACTIONS(5178), - [anon_sym_inline] = ACTIONS(5178), - [anon_sym___inline] = ACTIONS(5178), - [anon_sym___inline__] = ACTIONS(5178), - [anon_sym___forceinline] = ACTIONS(5178), - [anon_sym_thread_local] = ACTIONS(5178), - [anon_sym___thread] = ACTIONS(5178), - [anon_sym_const] = ACTIONS(5178), - [anon_sym_constexpr] = ACTIONS(5178), - [anon_sym_volatile] = ACTIONS(5178), - [anon_sym_restrict] = ACTIONS(5178), - [anon_sym___restrict__] = ACTIONS(5178), - [anon_sym__Atomic] = ACTIONS(5178), - [anon_sym__Noreturn] = ACTIONS(5178), - [anon_sym_noreturn] = ACTIONS(5178), - [anon_sym__Nonnull] = ACTIONS(5178), - [anon_sym_mutable] = ACTIONS(5178), - [anon_sym_constinit] = ACTIONS(5178), - [anon_sym_consteval] = ACTIONS(5178), - [anon_sym_alignas] = ACTIONS(5178), - [anon_sym__Alignas] = ACTIONS(5178), - [sym_primitive_type] = ACTIONS(5178), - [anon_sym_enum] = ACTIONS(5178), - [anon_sym_class] = ACTIONS(5178), - [anon_sym_struct] = ACTIONS(5178), - [anon_sym_union] = ACTIONS(5178), - [anon_sym_or] = ACTIONS(5178), - [anon_sym_and] = ACTIONS(5178), - [anon_sym_asm] = ACTIONS(5178), - [anon_sym___asm__] = ACTIONS(5178), - [anon_sym___asm] = ACTIONS(5178), - [anon_sym_DASH_GT] = ACTIONS(5180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5178), - [anon_sym_decltype] = ACTIONS(5178), - [anon_sym_final] = ACTIONS(5178), - [anon_sym_override] = ACTIONS(5178), - [anon_sym_explicit] = ACTIONS(5178), - [anon_sym_typename] = ACTIONS(5178), - [anon_sym_template] = ACTIONS(5178), - [anon_sym_GT2] = ACTIONS(5180), - [anon_sym_operator] = ACTIONS(5178), - [anon_sym_try] = ACTIONS(5178), - [anon_sym_friend] = ACTIONS(5178), - [anon_sym_noexcept] = ACTIONS(5178), - [anon_sym_throw] = ACTIONS(5178), - [anon_sym_concept] = ACTIONS(5178), - [anon_sym_requires] = ACTIONS(5178), - }, - [STATE(1645)] = { - [sym_identifier] = ACTIONS(5182), - [anon_sym_COMMA] = ACTIONS(5184), - [anon_sym_RPAREN] = ACTIONS(5184), - [anon_sym_LPAREN2] = ACTIONS(5184), - [anon_sym_TILDE] = ACTIONS(5184), - [anon_sym_STAR] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_AMP] = ACTIONS(5182), - [anon_sym_SEMI] = ACTIONS(5184), - [anon_sym___extension__] = ACTIONS(5182), - [anon_sym_virtual] = ACTIONS(5182), - [anon_sym_extern] = ACTIONS(5182), - [anon_sym___attribute__] = ACTIONS(5182), - [anon_sym___attribute] = ACTIONS(5182), - [anon_sym_using] = ACTIONS(5182), - [anon_sym_COLON_COLON] = ACTIONS(5184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5184), - [anon_sym___declspec] = ACTIONS(5182), - [anon_sym___based] = ACTIONS(5182), - [anon_sym___cdecl] = ACTIONS(5182), - [anon_sym___clrcall] = ACTIONS(5182), - [anon_sym___stdcall] = ACTIONS(5182), - [anon_sym___fastcall] = ACTIONS(5182), - [anon_sym___thiscall] = ACTIONS(5182), - [anon_sym___vectorcall] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5184), - [anon_sym_signed] = ACTIONS(5182), - [anon_sym_unsigned] = ACTIONS(5182), - [anon_sym_long] = ACTIONS(5182), - [anon_sym_short] = ACTIONS(5182), - [anon_sym_LBRACK] = ACTIONS(5182), - [anon_sym_static] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_register] = ACTIONS(5182), - [anon_sym_inline] = ACTIONS(5182), - [anon_sym___inline] = ACTIONS(5182), - [anon_sym___inline__] = ACTIONS(5182), - [anon_sym___forceinline] = ACTIONS(5182), - [anon_sym_thread_local] = ACTIONS(5182), - [anon_sym___thread] = ACTIONS(5182), - [anon_sym_const] = ACTIONS(5182), - [anon_sym_constexpr] = ACTIONS(5182), - [anon_sym_volatile] = ACTIONS(5182), - [anon_sym_restrict] = ACTIONS(5182), - [anon_sym___restrict__] = ACTIONS(5182), - [anon_sym__Atomic] = ACTIONS(5182), - [anon_sym__Noreturn] = ACTIONS(5182), - [anon_sym_noreturn] = ACTIONS(5182), - [anon_sym__Nonnull] = ACTIONS(5182), - [anon_sym_mutable] = ACTIONS(5182), - [anon_sym_constinit] = ACTIONS(5182), - [anon_sym_consteval] = ACTIONS(5182), - [anon_sym_alignas] = ACTIONS(5182), - [anon_sym__Alignas] = ACTIONS(5182), - [sym_primitive_type] = ACTIONS(5182), - [anon_sym_enum] = ACTIONS(5182), - [anon_sym_class] = ACTIONS(5182), - [anon_sym_struct] = ACTIONS(5182), - [anon_sym_union] = ACTIONS(5182), - [anon_sym_or] = ACTIONS(5182), - [anon_sym_and] = ACTIONS(5182), - [anon_sym_asm] = ACTIONS(5182), - [anon_sym___asm__] = ACTIONS(5182), - [anon_sym___asm] = ACTIONS(5182), - [anon_sym_DASH_GT] = ACTIONS(5184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5182), - [anon_sym_decltype] = ACTIONS(5182), - [anon_sym_final] = ACTIONS(5182), - [anon_sym_override] = ACTIONS(5182), - [anon_sym_explicit] = ACTIONS(5182), - [anon_sym_typename] = ACTIONS(5182), - [anon_sym_template] = ACTIONS(5182), - [anon_sym_GT2] = ACTIONS(5184), - [anon_sym_operator] = ACTIONS(5182), - [anon_sym_try] = ACTIONS(5182), - [anon_sym_friend] = ACTIONS(5182), - [anon_sym_noexcept] = ACTIONS(5182), - [anon_sym_throw] = ACTIONS(5182), - [anon_sym_concept] = ACTIONS(5182), - [anon_sym_requires] = ACTIONS(5182), - }, - [STATE(1646)] = { - [sym_identifier] = ACTIONS(5186), - [anon_sym_COMMA] = ACTIONS(5188), - [anon_sym_RPAREN] = ACTIONS(5188), - [anon_sym_LPAREN2] = ACTIONS(5188), - [anon_sym_TILDE] = ACTIONS(5188), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_PIPE_PIPE] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_AMP] = ACTIONS(5186), - [anon_sym_SEMI] = ACTIONS(5188), - [anon_sym___extension__] = ACTIONS(5186), - [anon_sym_virtual] = ACTIONS(5186), - [anon_sym_extern] = ACTIONS(5186), - [anon_sym___attribute__] = ACTIONS(5186), - [anon_sym___attribute] = ACTIONS(5186), - [anon_sym_using] = ACTIONS(5186), - [anon_sym_COLON_COLON] = ACTIONS(5188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5188), - [anon_sym___declspec] = ACTIONS(5186), - [anon_sym___based] = ACTIONS(5186), - [anon_sym___cdecl] = ACTIONS(5186), - [anon_sym___clrcall] = ACTIONS(5186), - [anon_sym___stdcall] = ACTIONS(5186), - [anon_sym___fastcall] = ACTIONS(5186), - [anon_sym___thiscall] = ACTIONS(5186), - [anon_sym___vectorcall] = ACTIONS(5186), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_signed] = ACTIONS(5186), - [anon_sym_unsigned] = ACTIONS(5186), - [anon_sym_long] = ACTIONS(5186), - [anon_sym_short] = ACTIONS(5186), - [anon_sym_LBRACK] = ACTIONS(5186), - [anon_sym_static] = ACTIONS(5186), - [anon_sym_EQ] = ACTIONS(5188), - [anon_sym_register] = ACTIONS(5186), - [anon_sym_inline] = ACTIONS(5186), - [anon_sym___inline] = ACTIONS(5186), - [anon_sym___inline__] = ACTIONS(5186), - [anon_sym___forceinline] = ACTIONS(5186), - [anon_sym_thread_local] = ACTIONS(5186), - [anon_sym___thread] = ACTIONS(5186), - [anon_sym_const] = ACTIONS(5186), - [anon_sym_constexpr] = ACTIONS(5186), - [anon_sym_volatile] = ACTIONS(5186), - [anon_sym_restrict] = ACTIONS(5186), - [anon_sym___restrict__] = ACTIONS(5186), - [anon_sym__Atomic] = ACTIONS(5186), - [anon_sym__Noreturn] = ACTIONS(5186), - [anon_sym_noreturn] = ACTIONS(5186), - [anon_sym__Nonnull] = ACTIONS(5186), - [anon_sym_mutable] = ACTIONS(5186), - [anon_sym_constinit] = ACTIONS(5186), - [anon_sym_consteval] = ACTIONS(5186), - [anon_sym_alignas] = ACTIONS(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(5186), - [anon_sym_enum] = ACTIONS(5186), - [anon_sym_class] = ACTIONS(5186), - [anon_sym_struct] = ACTIONS(5186), - [anon_sym_union] = ACTIONS(5186), - [anon_sym_or] = ACTIONS(5186), - [anon_sym_and] = ACTIONS(5186), - [anon_sym_asm] = ACTIONS(5186), - [anon_sym___asm__] = ACTIONS(5186), - [anon_sym___asm] = ACTIONS(5186), - [anon_sym_DASH_GT] = ACTIONS(5188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5186), - [anon_sym_decltype] = ACTIONS(5186), - [anon_sym_final] = ACTIONS(5186), - [anon_sym_override] = ACTIONS(5186), - [anon_sym_explicit] = ACTIONS(5186), - [anon_sym_typename] = ACTIONS(5186), - [anon_sym_template] = ACTIONS(5186), - [anon_sym_GT2] = ACTIONS(5188), - [anon_sym_operator] = ACTIONS(5186), - [anon_sym_try] = ACTIONS(5186), - [anon_sym_friend] = ACTIONS(5186), - [anon_sym_noexcept] = ACTIONS(5186), - [anon_sym_throw] = ACTIONS(5186), - [anon_sym_concept] = ACTIONS(5186), - [anon_sym_requires] = ACTIONS(5186), - }, - [STATE(1647)] = { - [sym_identifier] = ACTIONS(5190), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RPAREN] = ACTIONS(5192), - [anon_sym_LPAREN2] = ACTIONS(5192), - [anon_sym_TILDE] = ACTIONS(5192), - [anon_sym_STAR] = ACTIONS(5192), - [anon_sym_PIPE_PIPE] = ACTIONS(5192), - [anon_sym_AMP_AMP] = ACTIONS(5192), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_SEMI] = ACTIONS(5192), - [anon_sym___extension__] = ACTIONS(5190), - [anon_sym_virtual] = ACTIONS(5190), - [anon_sym_extern] = ACTIONS(5190), - [anon_sym___attribute__] = ACTIONS(5190), - [anon_sym___attribute] = ACTIONS(5190), - [anon_sym_using] = ACTIONS(5190), - [anon_sym_COLON_COLON] = ACTIONS(5192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5192), - [anon_sym___declspec] = ACTIONS(5190), - [anon_sym___based] = ACTIONS(5190), - [anon_sym___cdecl] = ACTIONS(5190), - [anon_sym___clrcall] = ACTIONS(5190), - [anon_sym___stdcall] = ACTIONS(5190), - [anon_sym___fastcall] = ACTIONS(5190), - [anon_sym___thiscall] = ACTIONS(5190), - [anon_sym___vectorcall] = ACTIONS(5190), - [anon_sym_LBRACE] = ACTIONS(5192), - [anon_sym_signed] = ACTIONS(5190), - [anon_sym_unsigned] = ACTIONS(5190), - [anon_sym_long] = ACTIONS(5190), - [anon_sym_short] = ACTIONS(5190), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_static] = ACTIONS(5190), - [anon_sym_EQ] = ACTIONS(5192), - [anon_sym_register] = ACTIONS(5190), - [anon_sym_inline] = ACTIONS(5190), - [anon_sym___inline] = ACTIONS(5190), - [anon_sym___inline__] = ACTIONS(5190), - [anon_sym___forceinline] = ACTIONS(5190), - [anon_sym_thread_local] = ACTIONS(5190), - [anon_sym___thread] = ACTIONS(5190), - [anon_sym_const] = ACTIONS(5190), - [anon_sym_constexpr] = ACTIONS(5190), - [anon_sym_volatile] = ACTIONS(5190), - [anon_sym_restrict] = ACTIONS(5190), - [anon_sym___restrict__] = ACTIONS(5190), - [anon_sym__Atomic] = ACTIONS(5190), - [anon_sym__Noreturn] = ACTIONS(5190), - [anon_sym_noreturn] = ACTIONS(5190), - [anon_sym__Nonnull] = ACTIONS(5190), - [anon_sym_mutable] = ACTIONS(5190), - [anon_sym_constinit] = ACTIONS(5190), - [anon_sym_consteval] = ACTIONS(5190), - [anon_sym_alignas] = ACTIONS(5190), - [anon_sym__Alignas] = ACTIONS(5190), - [sym_primitive_type] = ACTIONS(5190), - [anon_sym_enum] = ACTIONS(5190), - [anon_sym_class] = ACTIONS(5190), - [anon_sym_struct] = ACTIONS(5190), - [anon_sym_union] = ACTIONS(5190), - [anon_sym_or] = ACTIONS(5190), - [anon_sym_and] = ACTIONS(5190), - [anon_sym_asm] = ACTIONS(5190), - [anon_sym___asm__] = ACTIONS(5190), - [anon_sym___asm] = ACTIONS(5190), - [anon_sym_DASH_GT] = ACTIONS(5192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5190), - [anon_sym_decltype] = ACTIONS(5190), - [anon_sym_final] = ACTIONS(5190), - [anon_sym_override] = ACTIONS(5190), - [anon_sym_explicit] = ACTIONS(5190), - [anon_sym_typename] = ACTIONS(5190), - [anon_sym_template] = ACTIONS(5190), - [anon_sym_GT2] = ACTIONS(5192), - [anon_sym_operator] = ACTIONS(5190), - [anon_sym_try] = ACTIONS(5190), - [anon_sym_friend] = ACTIONS(5190), - [anon_sym_noexcept] = ACTIONS(5190), - [anon_sym_throw] = ACTIONS(5190), - [anon_sym_concept] = ACTIONS(5190), - [anon_sym_requires] = ACTIONS(5190), - }, - [STATE(1648)] = { - [sym_identifier] = ACTIONS(5194), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), - [anon_sym_LPAREN2] = ACTIONS(5196), - [anon_sym_TILDE] = ACTIONS(5196), - [anon_sym_STAR] = ACTIONS(5196), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_SEMI] = ACTIONS(5196), - [anon_sym___extension__] = ACTIONS(5194), - [anon_sym_virtual] = ACTIONS(5194), - [anon_sym_extern] = ACTIONS(5194), - [anon_sym___attribute__] = ACTIONS(5194), - [anon_sym___attribute] = ACTIONS(5194), - [anon_sym_using] = ACTIONS(5194), - [anon_sym_COLON_COLON] = ACTIONS(5196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5196), - [anon_sym___declspec] = ACTIONS(5194), - [anon_sym___based] = ACTIONS(5194), - [anon_sym___cdecl] = ACTIONS(5194), - [anon_sym___clrcall] = ACTIONS(5194), - [anon_sym___stdcall] = ACTIONS(5194), - [anon_sym___fastcall] = ACTIONS(5194), - [anon_sym___thiscall] = ACTIONS(5194), - [anon_sym___vectorcall] = ACTIONS(5194), - [anon_sym_LBRACE] = ACTIONS(5196), - [anon_sym_signed] = ACTIONS(5194), - [anon_sym_unsigned] = ACTIONS(5194), - [anon_sym_long] = ACTIONS(5194), - [anon_sym_short] = ACTIONS(5194), - [anon_sym_LBRACK] = ACTIONS(5194), - [anon_sym_static] = ACTIONS(5194), - [anon_sym_EQ] = ACTIONS(5196), - [anon_sym_register] = ACTIONS(5194), - [anon_sym_inline] = ACTIONS(5194), - [anon_sym___inline] = ACTIONS(5194), - [anon_sym___inline__] = ACTIONS(5194), - [anon_sym___forceinline] = ACTIONS(5194), - [anon_sym_thread_local] = ACTIONS(5194), - [anon_sym___thread] = ACTIONS(5194), - [anon_sym_const] = ACTIONS(5194), - [anon_sym_constexpr] = ACTIONS(5194), - [anon_sym_volatile] = ACTIONS(5194), - [anon_sym_restrict] = ACTIONS(5194), - [anon_sym___restrict__] = ACTIONS(5194), - [anon_sym__Atomic] = ACTIONS(5194), - [anon_sym__Noreturn] = ACTIONS(5194), - [anon_sym_noreturn] = ACTIONS(5194), - [anon_sym__Nonnull] = ACTIONS(5194), - [anon_sym_mutable] = ACTIONS(5194), - [anon_sym_constinit] = ACTIONS(5194), - [anon_sym_consteval] = ACTIONS(5194), - [anon_sym_alignas] = ACTIONS(5194), - [anon_sym__Alignas] = ACTIONS(5194), - [sym_primitive_type] = ACTIONS(5194), - [anon_sym_enum] = ACTIONS(5194), - [anon_sym_class] = ACTIONS(5194), - [anon_sym_struct] = ACTIONS(5194), - [anon_sym_union] = ACTIONS(5194), - [anon_sym_or] = ACTIONS(5194), - [anon_sym_and] = ACTIONS(5194), - [anon_sym_asm] = ACTIONS(5194), - [anon_sym___asm__] = ACTIONS(5194), - [anon_sym___asm] = ACTIONS(5194), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5194), - [anon_sym_decltype] = ACTIONS(5194), - [anon_sym_final] = ACTIONS(5194), - [anon_sym_override] = ACTIONS(5194), - [anon_sym_explicit] = ACTIONS(5194), - [anon_sym_typename] = ACTIONS(5194), - [anon_sym_template] = ACTIONS(5194), - [anon_sym_GT2] = ACTIONS(5196), - [anon_sym_operator] = ACTIONS(5194), - [anon_sym_try] = ACTIONS(5194), - [anon_sym_friend] = ACTIONS(5194), - [anon_sym_noexcept] = ACTIONS(5194), - [anon_sym_throw] = ACTIONS(5194), - [anon_sym_concept] = ACTIONS(5194), - [anon_sym_requires] = ACTIONS(5194), - }, - [STATE(1649)] = { - [sym_identifier] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_LPAREN2] = ACTIONS(5200), - [anon_sym_TILDE] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5200), - [anon_sym_AMP_AMP] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5198), - [anon_sym_SEMI] = ACTIONS(5200), - [anon_sym___extension__] = ACTIONS(5198), - [anon_sym_virtual] = ACTIONS(5198), - [anon_sym_extern] = ACTIONS(5198), - [anon_sym___attribute__] = ACTIONS(5198), - [anon_sym___attribute] = ACTIONS(5198), - [anon_sym_using] = ACTIONS(5198), - [anon_sym_COLON_COLON] = ACTIONS(5200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5200), - [anon_sym___declspec] = ACTIONS(5198), - [anon_sym___based] = ACTIONS(5198), - [anon_sym___cdecl] = ACTIONS(5198), - [anon_sym___clrcall] = ACTIONS(5198), - [anon_sym___stdcall] = ACTIONS(5198), - [anon_sym___fastcall] = ACTIONS(5198), - [anon_sym___thiscall] = ACTIONS(5198), - [anon_sym___vectorcall] = ACTIONS(5198), - [anon_sym_LBRACE] = ACTIONS(5200), - [anon_sym_signed] = ACTIONS(5198), - [anon_sym_unsigned] = ACTIONS(5198), - [anon_sym_long] = ACTIONS(5198), - [anon_sym_short] = ACTIONS(5198), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_static] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_register] = ACTIONS(5198), - [anon_sym_inline] = ACTIONS(5198), - [anon_sym___inline] = ACTIONS(5198), - [anon_sym___inline__] = ACTIONS(5198), - [anon_sym___forceinline] = ACTIONS(5198), - [anon_sym_thread_local] = ACTIONS(5198), - [anon_sym___thread] = ACTIONS(5198), - [anon_sym_const] = ACTIONS(5198), - [anon_sym_constexpr] = ACTIONS(5198), - [anon_sym_volatile] = ACTIONS(5198), - [anon_sym_restrict] = ACTIONS(5198), - [anon_sym___restrict__] = ACTIONS(5198), - [anon_sym__Atomic] = ACTIONS(5198), - [anon_sym__Noreturn] = ACTIONS(5198), - [anon_sym_noreturn] = ACTIONS(5198), - [anon_sym__Nonnull] = ACTIONS(5198), - [anon_sym_mutable] = ACTIONS(5198), - [anon_sym_constinit] = ACTIONS(5198), - [anon_sym_consteval] = ACTIONS(5198), - [anon_sym_alignas] = ACTIONS(5198), - [anon_sym__Alignas] = ACTIONS(5198), - [sym_primitive_type] = ACTIONS(5198), - [anon_sym_enum] = ACTIONS(5198), - [anon_sym_class] = ACTIONS(5198), - [anon_sym_struct] = ACTIONS(5198), - [anon_sym_union] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5198), - [anon_sym_and] = ACTIONS(5198), - [anon_sym_asm] = ACTIONS(5198), - [anon_sym___asm__] = ACTIONS(5198), - [anon_sym___asm] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5200), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5198), - [anon_sym_decltype] = ACTIONS(5198), - [anon_sym_final] = ACTIONS(5198), - [anon_sym_override] = ACTIONS(5198), - [anon_sym_explicit] = ACTIONS(5198), - [anon_sym_typename] = ACTIONS(5198), - [anon_sym_template] = ACTIONS(5198), - [anon_sym_GT2] = ACTIONS(5200), - [anon_sym_operator] = ACTIONS(5198), - [anon_sym_try] = ACTIONS(5198), - [anon_sym_friend] = ACTIONS(5198), - [anon_sym_noexcept] = ACTIONS(5198), - [anon_sym_throw] = ACTIONS(5198), - [anon_sym_concept] = ACTIONS(5198), - [anon_sym_requires] = ACTIONS(5198), - }, - [STATE(1650)] = { - [sym_identifier] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_LPAREN2] = ACTIONS(5204), - [anon_sym_TILDE] = ACTIONS(5204), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym___extension__] = ACTIONS(5202), - [anon_sym_virtual] = ACTIONS(5202), - [anon_sym_extern] = ACTIONS(5202), - [anon_sym___attribute__] = ACTIONS(5202), - [anon_sym___attribute] = ACTIONS(5202), - [anon_sym_using] = ACTIONS(5202), - [anon_sym_COLON_COLON] = ACTIONS(5204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5204), - [anon_sym___declspec] = ACTIONS(5202), - [anon_sym___based] = ACTIONS(5202), - [anon_sym___cdecl] = ACTIONS(5202), - [anon_sym___clrcall] = ACTIONS(5202), - [anon_sym___stdcall] = ACTIONS(5202), - [anon_sym___fastcall] = ACTIONS(5202), - [anon_sym___thiscall] = ACTIONS(5202), - [anon_sym___vectorcall] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_signed] = ACTIONS(5202), - [anon_sym_unsigned] = ACTIONS(5202), - [anon_sym_long] = ACTIONS(5202), - [anon_sym_short] = ACTIONS(5202), - [anon_sym_LBRACK] = ACTIONS(5202), - [anon_sym_static] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_register] = ACTIONS(5202), - [anon_sym_inline] = ACTIONS(5202), - [anon_sym___inline] = ACTIONS(5202), - [anon_sym___inline__] = ACTIONS(5202), - [anon_sym___forceinline] = ACTIONS(5202), - [anon_sym_thread_local] = ACTIONS(5202), - [anon_sym___thread] = ACTIONS(5202), - [anon_sym_const] = ACTIONS(5202), - [anon_sym_constexpr] = ACTIONS(5202), - [anon_sym_volatile] = ACTIONS(5202), - [anon_sym_restrict] = ACTIONS(5202), - [anon_sym___restrict__] = ACTIONS(5202), - [anon_sym__Atomic] = ACTIONS(5202), - [anon_sym__Noreturn] = ACTIONS(5202), - [anon_sym_noreturn] = ACTIONS(5202), - [anon_sym__Nonnull] = ACTIONS(5202), - [anon_sym_mutable] = ACTIONS(5202), - [anon_sym_constinit] = ACTIONS(5202), - [anon_sym_consteval] = ACTIONS(5202), - [anon_sym_alignas] = ACTIONS(5202), - [anon_sym__Alignas] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5202), - [anon_sym_enum] = ACTIONS(5202), - [anon_sym_class] = ACTIONS(5202), - [anon_sym_struct] = ACTIONS(5202), - [anon_sym_union] = ACTIONS(5202), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_and] = ACTIONS(5202), - [anon_sym_asm] = ACTIONS(5202), - [anon_sym___asm__] = ACTIONS(5202), - [anon_sym___asm] = ACTIONS(5202), - [anon_sym_DASH_GT] = ACTIONS(5204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5202), - [anon_sym_decltype] = ACTIONS(5202), - [anon_sym_final] = ACTIONS(5202), - [anon_sym_override] = ACTIONS(5202), - [anon_sym_explicit] = ACTIONS(5202), - [anon_sym_typename] = ACTIONS(5202), - [anon_sym_template] = ACTIONS(5202), - [anon_sym_GT2] = ACTIONS(5204), - [anon_sym_operator] = ACTIONS(5202), - [anon_sym_try] = ACTIONS(5202), - [anon_sym_friend] = ACTIONS(5202), - [anon_sym_noexcept] = ACTIONS(5202), - [anon_sym_throw] = ACTIONS(5202), - [anon_sym_concept] = ACTIONS(5202), - [anon_sym_requires] = ACTIONS(5202), - }, - [STATE(1651)] = { - [sym_identifier] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_LPAREN2] = ACTIONS(5204), - [anon_sym_TILDE] = ACTIONS(5204), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym___extension__] = ACTIONS(5202), - [anon_sym_virtual] = ACTIONS(5202), - [anon_sym_extern] = ACTIONS(5202), - [anon_sym___attribute__] = ACTIONS(5202), - [anon_sym___attribute] = ACTIONS(5202), - [anon_sym_using] = ACTIONS(5202), - [anon_sym_COLON_COLON] = ACTIONS(5204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5204), - [anon_sym___declspec] = ACTIONS(5202), - [anon_sym___based] = ACTIONS(5202), - [anon_sym___cdecl] = ACTIONS(5202), - [anon_sym___clrcall] = ACTIONS(5202), - [anon_sym___stdcall] = ACTIONS(5202), - [anon_sym___fastcall] = ACTIONS(5202), - [anon_sym___thiscall] = ACTIONS(5202), - [anon_sym___vectorcall] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_signed] = ACTIONS(5202), - [anon_sym_unsigned] = ACTIONS(5202), - [anon_sym_long] = ACTIONS(5202), - [anon_sym_short] = ACTIONS(5202), - [anon_sym_LBRACK] = ACTIONS(5202), - [anon_sym_static] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_register] = ACTIONS(5202), - [anon_sym_inline] = ACTIONS(5202), - [anon_sym___inline] = ACTIONS(5202), - [anon_sym___inline__] = ACTIONS(5202), - [anon_sym___forceinline] = ACTIONS(5202), - [anon_sym_thread_local] = ACTIONS(5202), - [anon_sym___thread] = ACTIONS(5202), - [anon_sym_const] = ACTIONS(5202), - [anon_sym_constexpr] = ACTIONS(5202), - [anon_sym_volatile] = ACTIONS(5202), - [anon_sym_restrict] = ACTIONS(5202), - [anon_sym___restrict__] = ACTIONS(5202), - [anon_sym__Atomic] = ACTIONS(5202), - [anon_sym__Noreturn] = ACTIONS(5202), - [anon_sym_noreturn] = ACTIONS(5202), - [anon_sym__Nonnull] = ACTIONS(5202), - [anon_sym_mutable] = ACTIONS(5202), - [anon_sym_constinit] = ACTIONS(5202), - [anon_sym_consteval] = ACTIONS(5202), - [anon_sym_alignas] = ACTIONS(5202), - [anon_sym__Alignas] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5202), - [anon_sym_enum] = ACTIONS(5202), - [anon_sym_class] = ACTIONS(5202), - [anon_sym_struct] = ACTIONS(5202), - [anon_sym_union] = ACTIONS(5202), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_and] = ACTIONS(5202), - [anon_sym_asm] = ACTIONS(5202), - [anon_sym___asm__] = ACTIONS(5202), - [anon_sym___asm] = ACTIONS(5202), - [anon_sym_DASH_GT] = ACTIONS(5204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5202), - [anon_sym_decltype] = ACTIONS(5202), - [anon_sym_final] = ACTIONS(5202), - [anon_sym_override] = ACTIONS(5202), - [anon_sym_explicit] = ACTIONS(5202), - [anon_sym_typename] = ACTIONS(5202), - [anon_sym_template] = ACTIONS(5202), - [anon_sym_GT2] = ACTIONS(5204), - [anon_sym_operator] = ACTIONS(5202), - [anon_sym_try] = ACTIONS(5202), - [anon_sym_friend] = ACTIONS(5202), - [anon_sym_noexcept] = ACTIONS(5202), - [anon_sym_throw] = ACTIONS(5202), - [anon_sym_concept] = ACTIONS(5202), - [anon_sym_requires] = ACTIONS(5202), - }, - [STATE(1652)] = { - [sym_identifier] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5204), - [anon_sym_LPAREN2] = ACTIONS(5204), - [anon_sym_TILDE] = ACTIONS(5204), - [anon_sym_STAR] = ACTIONS(5204), - [anon_sym_PIPE_PIPE] = ACTIONS(5204), - [anon_sym_AMP_AMP] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym___extension__] = ACTIONS(5202), - [anon_sym_virtual] = ACTIONS(5202), - [anon_sym_extern] = ACTIONS(5202), - [anon_sym___attribute__] = ACTIONS(5202), - [anon_sym___attribute] = ACTIONS(5202), - [anon_sym_using] = ACTIONS(5202), - [anon_sym_COLON_COLON] = ACTIONS(5204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5204), - [anon_sym___declspec] = ACTIONS(5202), - [anon_sym___based] = ACTIONS(5202), - [anon_sym___cdecl] = ACTIONS(5202), - [anon_sym___clrcall] = ACTIONS(5202), - [anon_sym___stdcall] = ACTIONS(5202), - [anon_sym___fastcall] = ACTIONS(5202), - [anon_sym___thiscall] = ACTIONS(5202), - [anon_sym___vectorcall] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_signed] = ACTIONS(5202), - [anon_sym_unsigned] = ACTIONS(5202), - [anon_sym_long] = ACTIONS(5202), - [anon_sym_short] = ACTIONS(5202), - [anon_sym_LBRACK] = ACTIONS(5202), - [anon_sym_static] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_register] = ACTIONS(5202), - [anon_sym_inline] = ACTIONS(5202), - [anon_sym___inline] = ACTIONS(5202), - [anon_sym___inline__] = ACTIONS(5202), - [anon_sym___forceinline] = ACTIONS(5202), - [anon_sym_thread_local] = ACTIONS(5202), - [anon_sym___thread] = ACTIONS(5202), - [anon_sym_const] = ACTIONS(5202), - [anon_sym_constexpr] = ACTIONS(5202), - [anon_sym_volatile] = ACTIONS(5202), - [anon_sym_restrict] = ACTIONS(5202), - [anon_sym___restrict__] = ACTIONS(5202), - [anon_sym__Atomic] = ACTIONS(5202), - [anon_sym__Noreturn] = ACTIONS(5202), - [anon_sym_noreturn] = ACTIONS(5202), - [anon_sym__Nonnull] = ACTIONS(5202), - [anon_sym_mutable] = ACTIONS(5202), - [anon_sym_constinit] = ACTIONS(5202), - [anon_sym_consteval] = ACTIONS(5202), - [anon_sym_alignas] = ACTIONS(5202), - [anon_sym__Alignas] = ACTIONS(5202), - [sym_primitive_type] = ACTIONS(5202), - [anon_sym_enum] = ACTIONS(5202), - [anon_sym_class] = ACTIONS(5202), - [anon_sym_struct] = ACTIONS(5202), - [anon_sym_union] = ACTIONS(5202), - [anon_sym_or] = ACTIONS(5202), - [anon_sym_and] = ACTIONS(5202), - [anon_sym_asm] = ACTIONS(5202), - [anon_sym___asm__] = ACTIONS(5202), - [anon_sym___asm] = ACTIONS(5202), - [anon_sym_DASH_GT] = ACTIONS(5204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5202), - [anon_sym_decltype] = ACTIONS(5202), - [anon_sym_final] = ACTIONS(5202), - [anon_sym_override] = ACTIONS(5202), - [anon_sym_explicit] = ACTIONS(5202), - [anon_sym_typename] = ACTIONS(5202), - [anon_sym_template] = ACTIONS(5202), - [anon_sym_GT2] = ACTIONS(5204), - [anon_sym_operator] = ACTIONS(5202), - [anon_sym_try] = ACTIONS(5202), - [anon_sym_friend] = ACTIONS(5202), - [anon_sym_noexcept] = ACTIONS(5202), - [anon_sym_throw] = ACTIONS(5202), - [anon_sym_concept] = ACTIONS(5202), - [anon_sym_requires] = ACTIONS(5202), + [STATE(989)] = { + [sym_type_qualifier] = STATE(988), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6986), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(988), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5088), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1653)] = { - [sym_identifier] = ACTIONS(5206), - [anon_sym_COMMA] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_LPAREN2] = ACTIONS(5208), - [anon_sym_TILDE] = ACTIONS(5208), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5208), - [anon_sym_AMP_AMP] = ACTIONS(5208), - [anon_sym_AMP] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym___extension__] = ACTIONS(5206), - [anon_sym_virtual] = ACTIONS(5206), - [anon_sym_extern] = ACTIONS(5206), - [anon_sym___attribute__] = ACTIONS(5206), - [anon_sym___attribute] = ACTIONS(5206), - [anon_sym_using] = ACTIONS(5206), - [anon_sym_COLON_COLON] = ACTIONS(5208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5208), - [anon_sym___declspec] = ACTIONS(5206), - [anon_sym___based] = ACTIONS(5206), - [anon_sym___cdecl] = ACTIONS(5206), - [anon_sym___clrcall] = ACTIONS(5206), - [anon_sym___stdcall] = ACTIONS(5206), - [anon_sym___fastcall] = ACTIONS(5206), - [anon_sym___thiscall] = ACTIONS(5206), - [anon_sym___vectorcall] = ACTIONS(5206), - [anon_sym_LBRACE] = ACTIONS(5208), - [anon_sym_signed] = ACTIONS(5206), - [anon_sym_unsigned] = ACTIONS(5206), - [anon_sym_long] = ACTIONS(5206), - [anon_sym_short] = ACTIONS(5206), - [anon_sym_LBRACK] = ACTIONS(5206), - [anon_sym_static] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5206), - [anon_sym_inline] = ACTIONS(5206), - [anon_sym___inline] = ACTIONS(5206), - [anon_sym___inline__] = ACTIONS(5206), - [anon_sym___forceinline] = ACTIONS(5206), - [anon_sym_thread_local] = ACTIONS(5206), - [anon_sym___thread] = ACTIONS(5206), - [anon_sym_const] = ACTIONS(5206), - [anon_sym_constexpr] = ACTIONS(5206), - [anon_sym_volatile] = ACTIONS(5206), - [anon_sym_restrict] = ACTIONS(5206), - [anon_sym___restrict__] = ACTIONS(5206), - [anon_sym__Atomic] = ACTIONS(5206), - [anon_sym__Noreturn] = ACTIONS(5206), - [anon_sym_noreturn] = ACTIONS(5206), - [anon_sym__Nonnull] = ACTIONS(5206), - [anon_sym_mutable] = ACTIONS(5206), - [anon_sym_constinit] = ACTIONS(5206), - [anon_sym_consteval] = ACTIONS(5206), - [anon_sym_alignas] = ACTIONS(5206), - [anon_sym__Alignas] = ACTIONS(5206), - [sym_primitive_type] = ACTIONS(5206), - [anon_sym_enum] = ACTIONS(5206), - [anon_sym_class] = ACTIONS(5206), - [anon_sym_struct] = ACTIONS(5206), - [anon_sym_union] = ACTIONS(5206), - [anon_sym_or] = ACTIONS(5206), - [anon_sym_and] = ACTIONS(5206), - [anon_sym_asm] = ACTIONS(5206), - [anon_sym___asm__] = ACTIONS(5206), - [anon_sym___asm] = ACTIONS(5206), - [anon_sym_DASH_GT] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5206), - [anon_sym_decltype] = ACTIONS(5206), - [anon_sym_final] = ACTIONS(5206), - [anon_sym_override] = ACTIONS(5206), - [anon_sym_explicit] = ACTIONS(5206), - [anon_sym_typename] = ACTIONS(5206), - [anon_sym_template] = ACTIONS(5206), - [anon_sym_GT2] = ACTIONS(5208), - [anon_sym_operator] = ACTIONS(5206), - [anon_sym_try] = ACTIONS(5206), - [anon_sym_friend] = ACTIONS(5206), - [anon_sym_noexcept] = ACTIONS(5206), - [anon_sym_throw] = ACTIONS(5206), - [anon_sym_concept] = ACTIONS(5206), - [anon_sym_requires] = ACTIONS(5206), + [STATE(990)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [sym_expression] = STATE(6979), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4818), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_const] = ACTIONS(4824), + [anon_sym_constexpr] = ACTIONS(4824), + [anon_sym_volatile] = ACTIONS(4824), + [anon_sym_restrict] = ACTIONS(4824), + [anon_sym___restrict__] = ACTIONS(4824), + [anon_sym__Atomic] = ACTIONS(4824), + [anon_sym__Noreturn] = ACTIONS(4824), + [anon_sym_noreturn] = ACTIONS(4824), + [anon_sym__Nonnull] = ACTIONS(4824), + [anon_sym_mutable] = ACTIONS(4824), + [anon_sym_constinit] = ACTIONS(4824), + [anon_sym_consteval] = ACTIONS(4824), + [anon_sym_alignas] = ACTIONS(4826), + [anon_sym__Alignas] = ACTIONS(4826), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1654)] = { - [sym_function_definition] = STATE(703), - [sym_declaration] = STATE(703), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4784), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1952), - [sym_declaration_list] = STATE(703), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), + [STATE(991)] = { + [sym_function_definition] = STATE(2725), + [sym_declaration] = STATE(2725), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6285), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2622), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4348), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(2725), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(2725), + [sym_operator_cast] = STATE(9050), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(2725), + [sym_operator_cast_declaration] = STATE(2725), + [sym_constructor_or_destructor_definition] = STATE(2725), + [sym_constructor_or_destructor_declaration] = STATE(2725), + [sym_friend_declaration] = STATE(2725), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(2725), + [sym_concept_definition] = STATE(2725), + [sym_requires_clause] = STATE(1002), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5098), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5210), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -245729,7 +193297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -245740,232 +193308,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1655)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1622), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5215), - [anon_sym_GT_GT] = ACTIONS(5215), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5113), - [anon_sym_unsigned] = ACTIONS(5113), - [anon_sym_long] = ACTIONS(5113), - [anon_sym_short] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_RBRACK] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_STAR_EQ] = ACTIONS(5212), - [anon_sym_SLASH_EQ] = ACTIONS(5212), - [anon_sym_PERCENT_EQ] = ACTIONS(5212), - [anon_sym_PLUS_EQ] = ACTIONS(5212), - [anon_sym_DASH_EQ] = ACTIONS(5212), - [anon_sym_LT_LT_EQ] = ACTIONS(5212), - [anon_sym_GT_GT_EQ] = ACTIONS(5212), - [anon_sym_AMP_EQ] = ACTIONS(5212), - [anon_sym_CARET_EQ] = ACTIONS(5212), - [anon_sym_PIPE_EQ] = ACTIONS(5212), - [anon_sym_and_eq] = ACTIONS(5215), - [anon_sym_or_eq] = ACTIONS(5215), - [anon_sym_xor_eq] = ACTIONS(5215), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - }, - [STATE(1656)] = { - [sym_type_qualifier] = STATE(1660), - [sym_alignas_qualifier] = STATE(1691), - [aux_sym__type_definition_type_repeat1] = STATE(1660), - [aux_sym_sized_type_specifier_repeat1] = STATE(1686), - [sym_identifier] = ACTIONS(5218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5124), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5222), - [anon_sym_unsigned] = ACTIONS(5222), - [anon_sym_long] = ACTIONS(5222), - [anon_sym_short] = ACTIONS(5222), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5220), - [anon_sym_constexpr] = ACTIONS(5220), - [anon_sym_volatile] = ACTIONS(5220), - [anon_sym_restrict] = ACTIONS(5220), - [anon_sym___restrict__] = ACTIONS(5220), - [anon_sym__Atomic] = ACTIONS(5220), - [anon_sym__Noreturn] = ACTIONS(5220), - [anon_sym_noreturn] = ACTIONS(5220), - [anon_sym__Nonnull] = ACTIONS(5220), - [anon_sym_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5224), - [anon_sym__Alignas] = ACTIONS(5224), - [sym_primitive_type] = ACTIONS(5226), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_LT_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_GT_EQ] = ACTIONS(5122), - [anon_sym_AMP_EQ] = ACTIONS(5122), - [anon_sym_CARET_EQ] = ACTIONS(5122), - [anon_sym_PIPE_EQ] = ACTIONS(5122), - [anon_sym_and_eq] = ACTIONS(5124), - [anon_sym_or_eq] = ACTIONS(5124), - [anon_sym_xor_eq] = ACTIONS(5124), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5124), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5122), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(5104), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1657)] = { - [sym_function_definition] = STATE(710), - [sym_declaration] = STATE(710), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4811), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1958), - [sym_declaration_list] = STATE(710), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), + [STATE(992)] = { + [sym_function_definition] = STATE(898), + [sym_declaration] = STATE(898), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6279), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2620), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8592), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4324), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(898), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2416), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(898), + [sym_operator_cast] = STATE(9049), + [sym__constructor_specifiers] = STATE(2416), + [sym_operator_cast_definition] = STATE(898), + [sym_operator_cast_declaration] = STATE(898), + [sym_constructor_or_destructor_definition] = STATE(898), + [sym_constructor_or_destructor_declaration] = STATE(898), + [sym_friend_declaration] = STATE(898), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(898), + [sym_concept_definition] = STATE(898), + [sym_requires_clause] = STATE(1003), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9049), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2416), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5108), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5228), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -245975,7 +193423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5110), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -245986,150 +193434,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1658)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1622), - [sym_identifier] = ACTIONS(5215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5215), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5215), - [anon_sym_GT_GT] = ACTIONS(5215), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5113), - [anon_sym_unsigned] = ACTIONS(5113), - [anon_sym_long] = ACTIONS(5113), - [anon_sym_short] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_STAR_EQ] = ACTIONS(5212), - [anon_sym_SLASH_EQ] = ACTIONS(5212), - [anon_sym_PERCENT_EQ] = ACTIONS(5212), - [anon_sym_PLUS_EQ] = ACTIONS(5212), - [anon_sym_DASH_EQ] = ACTIONS(5212), - [anon_sym_LT_LT_EQ] = ACTIONS(5212), - [anon_sym_GT_GT_EQ] = ACTIONS(5212), - [anon_sym_AMP_EQ] = ACTIONS(5212), - [anon_sym_CARET_EQ] = ACTIONS(5212), - [anon_sym_PIPE_EQ] = ACTIONS(5212), - [anon_sym_and_eq] = ACTIONS(5215), - [anon_sym_or_eq] = ACTIONS(5215), - [anon_sym_xor_eq] = ACTIONS(5215), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5112), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5114), + [anon_sym_concept] = ACTIONS(1204), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1659)] = { - [sym_function_definition] = STATE(428), - [sym_declaration] = STATE(428), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4803), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1957), - [sym_declaration_list] = STATE(428), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), + [STATE(993)] = { + [sym_function_definition] = STATE(408), + [sym_declaration] = STATE(408), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8585), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(408), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2410), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(408), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2410), + [sym_operator_cast_definition] = STATE(408), + [sym_operator_cast_declaration] = STATE(408), + [sym_constructor_or_destructor_definition] = STATE(408), + [sym_constructor_or_destructor_declaration] = STATE(408), + [sym_friend_declaration] = STATE(408), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(408), + [sym_concept_definition] = STATE(408), + [sym_requires_clause] = STATE(1001), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2410), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5116), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5230), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246139,7 +193549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5118), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246150,150 +193560,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1660)] = { - [sym_type_qualifier] = STATE(1670), - [sym_alignas_qualifier] = STATE(1691), - [aux_sym__type_definition_type_repeat1] = STATE(1670), - [aux_sym_sized_type_specifier_repeat1] = STATE(2671), - [sym_identifier] = ACTIONS(5232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5139), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym___extension__] = ACTIONS(5220), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5234), - [anon_sym_unsigned] = ACTIONS(5234), - [anon_sym_long] = ACTIONS(5234), - [anon_sym_short] = ACTIONS(5234), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5220), - [anon_sym_constexpr] = ACTIONS(5220), - [anon_sym_volatile] = ACTIONS(5220), - [anon_sym_restrict] = ACTIONS(5220), - [anon_sym___restrict__] = ACTIONS(5220), - [anon_sym__Atomic] = ACTIONS(5220), - [anon_sym__Noreturn] = ACTIONS(5220), - [anon_sym_noreturn] = ACTIONS(5220), - [anon_sym__Nonnull] = ACTIONS(5220), - [anon_sym_mutable] = ACTIONS(5220), - [anon_sym_constinit] = ACTIONS(5220), - [anon_sym_consteval] = ACTIONS(5220), - [anon_sym_alignas] = ACTIONS(5224), - [anon_sym__Alignas] = ACTIONS(5224), - [sym_primitive_type] = ACTIONS(5236), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_STAR_EQ] = ACTIONS(5137), - [anon_sym_SLASH_EQ] = ACTIONS(5137), - [anon_sym_PERCENT_EQ] = ACTIONS(5137), - [anon_sym_PLUS_EQ] = ACTIONS(5137), - [anon_sym_DASH_EQ] = ACTIONS(5137), - [anon_sym_LT_LT_EQ] = ACTIONS(5137), - [anon_sym_GT_GT_EQ] = ACTIONS(5137), - [anon_sym_AMP_EQ] = ACTIONS(5137), - [anon_sym_CARET_EQ] = ACTIONS(5137), - [anon_sym_PIPE_EQ] = ACTIONS(5137), - [anon_sym_and_eq] = ACTIONS(5139), - [anon_sym_or_eq] = ACTIONS(5139), - [anon_sym_xor_eq] = ACTIONS(5139), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5139), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5137), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5120), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5122), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1661)] = { - [sym_function_definition] = STATE(514), - [sym_declaration] = STATE(514), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4783), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1962), - [sym_declaration_list] = STATE(514), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), + [STATE(994)] = { + [sym_function_definition] = STATE(704), + [sym_declaration] = STATE(704), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8554), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(704), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2350), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(704), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2350), + [sym_operator_cast_definition] = STATE(704), + [sym_operator_cast_declaration] = STATE(704), + [sym_constructor_or_destructor_definition] = STATE(704), + [sym_constructor_or_destructor_declaration] = STATE(704), + [sym_friend_declaration] = STATE(704), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(704), + [sym_concept_definition] = STATE(704), + [sym_requires_clause] = STATE(1006), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2350), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(5238), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246303,7 +193675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5126), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246314,138 +193686,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1662)] = { - [sym_type_qualifier] = STATE(1662), - [sym_alignas_qualifier] = STATE(1683), - [aux_sym__type_definition_type_repeat1] = STATE(1662), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_TILDE] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5101), - [anon_sym___extension__] = ACTIONS(5240), - [anon_sym_virtual] = ACTIONS(5099), - [anon_sym_extern] = ACTIONS(5099), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_COLON_COLON] = ACTIONS(5101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5101), - [anon_sym___declspec] = ACTIONS(5099), - [anon_sym___based] = ACTIONS(5099), - [anon_sym___cdecl] = ACTIONS(5099), - [anon_sym___clrcall] = ACTIONS(5099), - [anon_sym___stdcall] = ACTIONS(5099), - [anon_sym___fastcall] = ACTIONS(5099), - [anon_sym___thiscall] = ACTIONS(5099), - [anon_sym___vectorcall] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_static] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5101), - [anon_sym_register] = ACTIONS(5099), - [anon_sym_inline] = ACTIONS(5099), - [anon_sym___inline] = ACTIONS(5099), - [anon_sym___inline__] = ACTIONS(5099), - [anon_sym___forceinline] = ACTIONS(5099), - [anon_sym_thread_local] = ACTIONS(5099), - [anon_sym___thread] = ACTIONS(5099), - [anon_sym_const] = ACTIONS(5240), - [anon_sym_constexpr] = ACTIONS(5240), - [anon_sym_volatile] = ACTIONS(5240), - [anon_sym_restrict] = ACTIONS(5240), - [anon_sym___restrict__] = ACTIONS(5240), - [anon_sym__Atomic] = ACTIONS(5240), - [anon_sym__Noreturn] = ACTIONS(5240), - [anon_sym_noreturn] = ACTIONS(5240), - [anon_sym__Nonnull] = ACTIONS(5240), - [anon_sym_mutable] = ACTIONS(5240), - [anon_sym_constinit] = ACTIONS(5240), - [anon_sym_consteval] = ACTIONS(5240), - [anon_sym_alignas] = ACTIONS(5243), - [anon_sym__Alignas] = ACTIONS(5243), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_enum] = ACTIONS(5099), - [anon_sym_class] = ACTIONS(5099), - [anon_sym_struct] = ACTIONS(5099), - [anon_sym_union] = ACTIONS(5099), - [anon_sym_asm] = ACTIONS(5099), - [anon_sym___asm__] = ACTIONS(5099), - [anon_sym___asm] = ACTIONS(5099), - [anon_sym_DASH_GT] = ACTIONS(5101), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5099), - [anon_sym_decltype] = ACTIONS(5099), - [anon_sym_final] = ACTIONS(5099), - [anon_sym_override] = ACTIONS(5099), - [anon_sym_typename] = ACTIONS(5099), - [anon_sym_template] = ACTIONS(5099), - [anon_sym_GT2] = ACTIONS(5101), - [anon_sym_operator] = ACTIONS(5099), - [anon_sym_try] = ACTIONS(5099), - [anon_sym_noexcept] = ACTIONS(5099), - [anon_sym_throw] = ACTIONS(5099), - [anon_sym_requires] = ACTIONS(5099), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5128), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5130), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1663)] = { - [sym_function_definition] = STATE(1859), - [sym_declaration] = STATE(1859), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4813), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1960), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8770), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(995)] = { + [sym_function_definition] = STATE(3348), + [sym_declaration] = STATE(3348), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6294), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2623), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8578), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4357), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(3348), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2417), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(3348), + [sym_operator_cast] = STATE(9064), + [sym__constructor_specifiers] = STATE(2417), + [sym_operator_cast_definition] = STATE(3348), + [sym_operator_cast_declaration] = STATE(3348), + [sym_constructor_or_destructor_definition] = STATE(3348), + [sym_constructor_or_destructor_declaration] = STATE(3348), + [sym_friend_declaration] = STATE(3348), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(3348), + [sym_concept_definition] = STATE(3348), + [sym_requires_clause] = STATE(1004), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9064), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2417), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5132), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246456,6 +193791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246465,7 +193801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4342), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246476,57 +193812,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5248), - [anon_sym_struct] = ACTIONS(5250), - [anon_sym_union] = ACTIONS(5252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4348), + [anon_sym_concept] = ACTIONS(5134), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1664)] = { - [sym_function_definition] = STATE(1862), - [sym_declaration] = STATE(1862), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4813), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1960), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(9029), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(996)] = { + [sym_function_definition] = STATE(773), + [sym_declaration] = STATE(773), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8557), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(773), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2397), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(773), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2397), + [sym_operator_cast_definition] = STATE(773), + [sym_operator_cast_declaration] = STATE(773), + [sym_constructor_or_destructor_definition] = STATE(773), + [sym_constructor_or_destructor_declaration] = STATE(773), + [sym_friend_declaration] = STATE(773), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(773), + [sym_concept_definition] = STATE(773), + [sym_requires_clause] = STATE(1007), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2397), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5136), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246537,6 +193917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246546,7 +193927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5138), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246557,57 +193938,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5254), - [anon_sym_struct] = ACTIONS(5256), - [anon_sym_union] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5140), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5142), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1665)] = { - [sym_function_definition] = STATE(812), - [sym_declaration] = STATE(812), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4784), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1952), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8627), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(997)] = { + [sym_function_definition] = STATE(3277), + [sym_declaration] = STATE(3277), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6283), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2621), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4342), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(3277), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(3277), + [sym_operator_cast] = STATE(9142), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(3277), + [sym_operator_cast_declaration] = STATE(3277), + [sym_constructor_or_destructor_definition] = STATE(3277), + [sym_constructor_or_destructor_declaration] = STATE(3277), + [sym_friend_declaration] = STATE(3277), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(3277), + [sym_concept_definition] = STATE(3277), + [sym_requires_clause] = STATE(1000), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5144), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246618,6 +194043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246627,7 +194053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246638,57 +194064,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5260), - [anon_sym_struct] = ACTIONS(5262), - [anon_sym_union] = ACTIONS(5264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_concept] = ACTIONS(5146), + [anon_sym_requires] = ACTIONS(5106), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1666)] = { - [sym_function_definition] = STATE(2030), - [sym_declaration] = STATE(2030), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4812), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1959), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8520), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(998)] = { + [sym_expression] = STATE(4650), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(4658), + [anon_sym_LPAREN2] = ACTIONS(5148), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(5151), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym___extension__] = ACTIONS(4661), + [anon_sym_COLON_COLON] = ACTIONS(4664), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4673), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(4676), + [sym_this] = ACTIONS(2058), + }, + [STATE(999)] = { + [sym_expression] = STATE(5058), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(4679), + [anon_sym_LPAREN2] = ACTIONS(5154), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(5163), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4685), + [anon_sym___based] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4694), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(4697), + [sym_this] = ACTIONS(1914), + }, + [STATE(1000)] = { + [sym_function_definition] = STATE(3365), + [sym_declaration] = STATE(3365), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6283), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2621), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8599), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4342), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(3365), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2332), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(3365), + [sym_operator_cast] = STATE(9142), + [sym__constructor_specifiers] = STATE(2332), + [sym_operator_cast_definition] = STATE(3365), + [sym_operator_cast_declaration] = STATE(3365), + [sym_constructor_or_destructor_definition] = STATE(3365), + [sym_constructor_or_destructor_declaration] = STATE(3365), + [sym_friend_declaration] = STATE(3365), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(3365), + [sym_concept_definition] = STATE(3365), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9142), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5144), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246699,6 +194418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246708,7 +194428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4370), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246719,57 +194439,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5266), - [anon_sym_struct] = ACTIONS(5268), - [anon_sym_union] = ACTIONS(5270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4374), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4376), + [anon_sym_concept] = ACTIONS(5146), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1667)] = { - [sym_function_definition] = STATE(433), - [sym_declaration] = STATE(433), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4803), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1957), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8941), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1001)] = { + [sym_function_definition] = STATE(432), + [sym_declaration] = STATE(432), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6273), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2618), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8585), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4302), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(432), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2410), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(432), + [sym_operator_cast] = STATE(9076), + [sym__constructor_specifiers] = STATE(2410), + [sym_operator_cast_definition] = STATE(432), + [sym_operator_cast_declaration] = STATE(432), + [sym_constructor_or_destructor_definition] = STATE(432), + [sym_constructor_or_destructor_declaration] = STATE(432), + [sym_friend_declaration] = STATE(432), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(432), + [sym_concept_definition] = STATE(432), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9076), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2410), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5116), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246780,6 +194542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246789,7 +194552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5118), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246800,57 +194563,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5272), - [anon_sym_struct] = ACTIONS(5274), - [anon_sym_union] = ACTIONS(5276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5120), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5122), + [anon_sym_concept] = ACTIONS(347), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1668)] = { - [sym_function_definition] = STATE(439), - [sym_declaration] = STATE(439), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4803), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1957), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8734), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1002)] = { + [sym_function_definition] = STATE(2751), + [sym_declaration] = STATE(2751), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6285), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2622), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8548), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4348), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(2751), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2414), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(2751), + [sym_operator_cast] = STATE(9050), + [sym__constructor_specifiers] = STATE(2414), + [sym_operator_cast_definition] = STATE(2751), + [sym_operator_cast_declaration] = STATE(2751), + [sym_constructor_or_destructor_definition] = STATE(2751), + [sym_constructor_or_destructor_declaration] = STATE(2751), + [sym_friend_declaration] = STATE(2751), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(2751), + [sym_concept_definition] = STATE(2751), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9050), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5098), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246861,6 +194666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246870,7 +194676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3067), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246881,57 +194687,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5278), - [anon_sym_struct] = ACTIONS(5280), - [anon_sym_union] = ACTIONS(5282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_concept] = ACTIONS(5104), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1669)] = { - [sym_function_definition] = STATE(672), - [sym_declaration] = STATE(672), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4811), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1958), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8485), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1003)] = { + [sym_function_definition] = STATE(781), + [sym_declaration] = STATE(781), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6279), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2620), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8592), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4324), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(781), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2416), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(781), + [sym_operator_cast] = STATE(9049), + [sym__constructor_specifiers] = STATE(2416), + [sym_operator_cast_definition] = STATE(781), + [sym_operator_cast_declaration] = STATE(781), + [sym_constructor_or_destructor_definition] = STATE(781), + [sym_constructor_or_destructor_declaration] = STATE(781), + [sym_friend_declaration] = STATE(781), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(781), + [sym_concept_definition] = STATE(781), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9049), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2416), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5108), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -246942,6 +194790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -246951,7 +194800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5110), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -246962,138 +194811,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5284), - [anon_sym_struct] = ACTIONS(5286), - [anon_sym_union] = ACTIONS(5288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1670)] = { - [sym_type_qualifier] = STATE(1670), - [sym_alignas_qualifier] = STATE(1691), - [aux_sym__type_definition_type_repeat1] = STATE(1670), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5099), - [anon_sym___extension__] = ACTIONS(5290), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_const] = ACTIONS(5290), - [anon_sym_constexpr] = ACTIONS(5290), - [anon_sym_volatile] = ACTIONS(5290), - [anon_sym_restrict] = ACTIONS(5290), - [anon_sym___restrict__] = ACTIONS(5290), - [anon_sym__Atomic] = ACTIONS(5290), - [anon_sym__Noreturn] = ACTIONS(5290), - [anon_sym_noreturn] = ACTIONS(5290), - [anon_sym__Nonnull] = ACTIONS(5290), - [anon_sym_mutable] = ACTIONS(5290), - [anon_sym_constinit] = ACTIONS(5290), - [anon_sym_consteval] = ACTIONS(5290), - [anon_sym_alignas] = ACTIONS(5293), - [anon_sym__Alignas] = ACTIONS(5293), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_LT_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_GT_EQ] = ACTIONS(5101), - [anon_sym_AMP_EQ] = ACTIONS(5101), - [anon_sym_CARET_EQ] = ACTIONS(5101), - [anon_sym_PIPE_EQ] = ACTIONS(5101), - [anon_sym_and_eq] = ACTIONS(5099), - [anon_sym_or_eq] = ACTIONS(5099), - [anon_sym_xor_eq] = ACTIONS(5099), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5101), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5112), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5114), + [anon_sym_concept] = ACTIONS(1204), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1671)] = { - [sym_function_definition] = STATE(675), - [sym_declaration] = STATE(675), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4811), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1958), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8563), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1004)] = { + [sym_function_definition] = STATE(3266), + [sym_declaration] = STATE(3266), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6294), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2623), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8578), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4357), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(3266), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2417), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(3266), + [sym_operator_cast] = STATE(9064), + [sym__constructor_specifiers] = STATE(2417), + [sym_operator_cast_definition] = STATE(3266), + [sym_operator_cast_declaration] = STATE(3266), + [sym_constructor_or_destructor_definition] = STATE(3266), + [sym_constructor_or_destructor_declaration] = STATE(3266), + [sym_friend_declaration] = STATE(3266), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(3266), + [sym_concept_definition] = STATE(3266), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9064), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2417), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5132), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -247104,6 +194914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -247113,7 +194924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4342), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -247124,219 +194935,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5296), - [anon_sym_struct] = ACTIONS(5298), - [anon_sym_union] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1672)] = { - [sym_type_qualifier] = STATE(1680), - [sym_alignas_qualifier] = STATE(1713), - [aux_sym__type_definition_type_repeat1] = STATE(1680), - [aux_sym_sized_type_specifier_repeat1] = STATE(2702), - [sym_identifier] = ACTIONS(5302), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5139), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym___extension__] = ACTIONS(5304), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5306), - [anon_sym_unsigned] = ACTIONS(5306), - [anon_sym_long] = ACTIONS(5306), - [anon_sym_short] = ACTIONS(5306), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5304), - [anon_sym_constexpr] = ACTIONS(5304), - [anon_sym_volatile] = ACTIONS(5304), - [anon_sym_restrict] = ACTIONS(5304), - [anon_sym___restrict__] = ACTIONS(5304), - [anon_sym__Atomic] = ACTIONS(5304), - [anon_sym__Noreturn] = ACTIONS(5304), - [anon_sym_noreturn] = ACTIONS(5304), - [anon_sym__Nonnull] = ACTIONS(5304), - [anon_sym_mutable] = ACTIONS(5304), - [anon_sym_constinit] = ACTIONS(5304), - [anon_sym_consteval] = ACTIONS(5304), - [anon_sym_alignas] = ACTIONS(5308), - [anon_sym__Alignas] = ACTIONS(5308), - [sym_primitive_type] = ACTIONS(5310), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_STAR_EQ] = ACTIONS(5137), - [anon_sym_SLASH_EQ] = ACTIONS(5137), - [anon_sym_PERCENT_EQ] = ACTIONS(5137), - [anon_sym_PLUS_EQ] = ACTIONS(5137), - [anon_sym_DASH_EQ] = ACTIONS(5137), - [anon_sym_LT_LT_EQ] = ACTIONS(5137), - [anon_sym_GT_GT_EQ] = ACTIONS(5139), - [anon_sym_AMP_EQ] = ACTIONS(5137), - [anon_sym_CARET_EQ] = ACTIONS(5137), - [anon_sym_PIPE_EQ] = ACTIONS(5137), - [anon_sym_and_eq] = ACTIONS(5139), - [anon_sym_or_eq] = ACTIONS(5139), - [anon_sym_xor_eq] = ACTIONS(5139), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5137), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4348), + [anon_sym_concept] = ACTIONS(5134), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1673)] = { - [sym_type_qualifier] = STATE(1672), - [sym_alignas_qualifier] = STATE(1713), - [aux_sym__type_definition_type_repeat1] = STATE(1672), - [aux_sym_sized_type_specifier_repeat1] = STATE(1702), - [sym_identifier] = ACTIONS(5312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5124), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5124), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym___extension__] = ACTIONS(5304), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5314), - [anon_sym_unsigned] = ACTIONS(5314), - [anon_sym_long] = ACTIONS(5314), - [anon_sym_short] = ACTIONS(5314), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5304), - [anon_sym_constexpr] = ACTIONS(5304), - [anon_sym_volatile] = ACTIONS(5304), - [anon_sym_restrict] = ACTIONS(5304), - [anon_sym___restrict__] = ACTIONS(5304), - [anon_sym__Atomic] = ACTIONS(5304), - [anon_sym__Noreturn] = ACTIONS(5304), - [anon_sym_noreturn] = ACTIONS(5304), - [anon_sym__Nonnull] = ACTIONS(5304), - [anon_sym_mutable] = ACTIONS(5304), - [anon_sym_constinit] = ACTIONS(5304), - [anon_sym_consteval] = ACTIONS(5304), - [anon_sym_alignas] = ACTIONS(5308), - [anon_sym__Alignas] = ACTIONS(5308), - [sym_primitive_type] = ACTIONS(5316), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_LT_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_GT_EQ] = ACTIONS(5124), - [anon_sym_AMP_EQ] = ACTIONS(5122), - [anon_sym_CARET_EQ] = ACTIONS(5122), - [anon_sym_PIPE_EQ] = ACTIONS(5122), - [anon_sym_and_eq] = ACTIONS(5124), - [anon_sym_or_eq] = ACTIONS(5124), - [anon_sym_xor_eq] = ACTIONS(5124), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5122), + [STATE(1005)] = { + [sym_expression] = STATE(6628), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4574), + [anon_sym_LPAREN2] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_TILDE] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5175), + [anon_sym_AMP] = ACTIONS(5175), + [anon_sym___extension__] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_not] = ACTIONS(5172), + [anon_sym_compl] = ACTIONS(5172), + [anon_sym_DASH_DASH] = ACTIONS(5178), + [anon_sym_PLUS_PLUS] = ACTIONS(5178), + [anon_sym_sizeof] = ACTIONS(5181), + [anon_sym___alignof__] = ACTIONS(5184), + [anon_sym___alignof] = ACTIONS(5184), + [anon_sym__alignof] = ACTIONS(5184), + [anon_sym_alignof] = ACTIONS(5184), + [anon_sym__Alignof] = ACTIONS(5184), + [anon_sym_offsetof] = ACTIONS(5187), + [anon_sym__Generic] = ACTIONS(5190), + [anon_sym_typename] = ACTIONS(4586), + [anon_sym_asm] = ACTIONS(5193), + [anon_sym___asm__] = ACTIONS(5193), + [anon_sym___asm] = ACTIONS(5193), + [sym_number_literal] = ACTIONS(5196), + [anon_sym_L_SQUOTE] = ACTIONS(5199), + [anon_sym_u_SQUOTE] = ACTIONS(5199), + [anon_sym_U_SQUOTE] = ACTIONS(5199), + [anon_sym_u8_SQUOTE] = ACTIONS(5199), + [anon_sym_SQUOTE] = ACTIONS(5199), + [anon_sym_L_DQUOTE] = ACTIONS(5202), + [anon_sym_u_DQUOTE] = ACTIONS(5202), + [anon_sym_U_DQUOTE] = ACTIONS(5202), + [anon_sym_u8_DQUOTE] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [sym_true] = ACTIONS(5205), + [sym_false] = ACTIONS(5205), + [anon_sym_NULL] = ACTIONS(5208), + [anon_sym_nullptr] = ACTIONS(5208), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2782), + [anon_sym_template] = ACTIONS(4589), + [anon_sym_delete] = ACTIONS(5211), + [anon_sym_R_DQUOTE] = ACTIONS(5214), + [anon_sym_LR_DQUOTE] = ACTIONS(5214), + [anon_sym_uR_DQUOTE] = ACTIONS(5214), + [anon_sym_UR_DQUOTE] = ACTIONS(5214), + [anon_sym_u8R_DQUOTE] = ACTIONS(5214), + [anon_sym_co_await] = ACTIONS(5217), + [anon_sym_new] = ACTIONS(5220), + [anon_sym_requires] = ACTIONS(5223), + [anon_sym_CARET_CARET] = ACTIONS(5226), + [anon_sym_LBRACK_COLON] = ACTIONS(4592), + [sym_this] = ACTIONS(5205), }, - [STATE(1674)] = { - [sym_function_definition] = STATE(2139), - [sym_declaration] = STATE(2139), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4815), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1961), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8934), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1006)] = { + [sym_function_definition] = STATE(615), + [sym_declaration] = STATE(615), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6284), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2569), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8554), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4304), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(615), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2350), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(615), + [sym_operator_cast] = STATE(9060), + [sym__constructor_specifiers] = STATE(2350), + [sym_operator_cast_definition] = STATE(615), + [sym_operator_cast_declaration] = STATE(615), + [sym_constructor_or_destructor_definition] = STATE(615), + [sym_constructor_or_destructor_declaration] = STATE(615), + [sym_friend_declaration] = STATE(615), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(615), + [sym_concept_definition] = STATE(615), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9060), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2350), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -247347,6 +195162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -247356,7 +195172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5126), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -247367,57 +195183,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5318), - [anon_sym_struct] = ACTIONS(5320), - [anon_sym_union] = ACTIONS(5322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5128), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5130), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1675)] = { - [sym_function_definition] = STATE(639), - [sym_declaration] = STATE(639), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4783), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1962), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8541), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1007)] = { + [sym_function_definition] = STATE(825), + [sym_declaration] = STATE(825), + [sym__declaration_modifiers] = STATE(4663), + [sym__declaration_specifiers] = STATE(6309), + [sym_attribute_specifier] = STATE(4663), + [sym_attribute_declaration] = STATE(4663), + [sym_ms_declspec_modifier] = STATE(4663), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(2615), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8557), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(4663), + [sym_type_qualifier] = STATE(4663), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(4369), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym__empty_declaration] = STATE(825), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_explicit_function_specifier] = STATE(2397), + [sym_dependent_type] = STATE(4714), + [sym_template_declaration] = STATE(825), + [sym_operator_cast] = STATE(9110), + [sym__constructor_specifiers] = STATE(2397), + [sym_operator_cast_definition] = STATE(825), + [sym_operator_cast_declaration] = STATE(825), + [sym_constructor_or_destructor_definition] = STATE(825), + [sym_constructor_or_destructor_declaration] = STATE(825), + [sym_friend_declaration] = STATE(825), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_alias_declaration] = STATE(825), + [sym_concept_definition] = STATE(825), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7652), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_qualified_operator_cast_identifier] = STATE(9110), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [aux_sym_operator_cast_definition_repeat1] = STATE(2397), + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(5136), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), [anon_sym___stdcall] = ACTIONS(55), @@ -247428,6 +195286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -247437,7 +195296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5138), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -247448,67 +195307,954 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5324), - [anon_sym_struct] = ACTIONS(5326), - [anon_sym_union] = ACTIONS(5328), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5140), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5142), + [anon_sym_concept] = ACTIONS(249), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1676)] = { - [sym_function_definition] = STATE(770), - [sym_declaration] = STATE(770), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4784), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1952), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8923), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), + [STATE(1008)] = { + [sym_identifier] = ACTIONS(5229), + [anon_sym_LPAREN2] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(5231), + [anon_sym___extension__] = ACTIONS(5229), + [anon_sym_virtual] = ACTIONS(5229), + [anon_sym_extern] = ACTIONS(5229), + [anon_sym___attribute__] = ACTIONS(5229), + [anon_sym___attribute] = ACTIONS(5229), + [anon_sym_using] = ACTIONS(5229), + [anon_sym_COLON_COLON] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), + [anon_sym___declspec] = ACTIONS(5229), + [anon_sym___based] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5231), + [anon_sym_signed] = ACTIONS(5229), + [anon_sym_unsigned] = ACTIONS(5229), + [anon_sym_long] = ACTIONS(5229), + [anon_sym_short] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_static] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_register] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5229), + [anon_sym___inline] = ACTIONS(5229), + [anon_sym___inline__] = ACTIONS(5229), + [anon_sym___forceinline] = ACTIONS(5229), + [anon_sym_thread_local] = ACTIONS(5229), + [anon_sym___thread] = ACTIONS(5229), + [anon_sym_const] = ACTIONS(5229), + [anon_sym_constexpr] = ACTIONS(5229), + [anon_sym_volatile] = ACTIONS(5229), + [anon_sym_restrict] = ACTIONS(5229), + [anon_sym___restrict__] = ACTIONS(5229), + [anon_sym__Atomic] = ACTIONS(5229), + [anon_sym__Noreturn] = ACTIONS(5229), + [anon_sym_noreturn] = ACTIONS(5229), + [anon_sym__Nonnull] = ACTIONS(5229), + [anon_sym_mutable] = ACTIONS(5229), + [anon_sym_constinit] = ACTIONS(5229), + [anon_sym_consteval] = ACTIONS(5229), + [anon_sym_alignas] = ACTIONS(5229), + [anon_sym__Alignas] = ACTIONS(5229), + [sym_primitive_type] = ACTIONS(5229), + [anon_sym_enum] = ACTIONS(5229), + [anon_sym_class] = ACTIONS(5229), + [anon_sym_struct] = ACTIONS(5229), + [anon_sym_union] = ACTIONS(5229), + [anon_sym_if] = ACTIONS(5229), + [anon_sym_switch] = ACTIONS(5229), + [anon_sym_case] = ACTIONS(5229), + [anon_sym_default] = ACTIONS(5229), + [anon_sym_while] = ACTIONS(5229), + [anon_sym_do] = ACTIONS(5229), + [anon_sym_for] = ACTIONS(5229), + [anon_sym_return] = ACTIONS(5229), + [anon_sym_break] = ACTIONS(5229), + [anon_sym_continue] = ACTIONS(5229), + [anon_sym_goto] = ACTIONS(5229), + [anon_sym___try] = ACTIONS(5229), + [anon_sym___leave] = ACTIONS(5229), + [anon_sym_not] = ACTIONS(5229), + [anon_sym_compl] = ACTIONS(5229), + [anon_sym_DASH_DASH] = ACTIONS(5231), + [anon_sym_PLUS_PLUS] = ACTIONS(5231), + [anon_sym_sizeof] = ACTIONS(5229), + [anon_sym___alignof__] = ACTIONS(5229), + [anon_sym___alignof] = ACTIONS(5229), + [anon_sym__alignof] = ACTIONS(5229), + [anon_sym_alignof] = ACTIONS(5229), + [anon_sym__Alignof] = ACTIONS(5229), + [anon_sym_offsetof] = ACTIONS(5229), + [anon_sym__Generic] = ACTIONS(5229), + [anon_sym_typename] = ACTIONS(5229), + [anon_sym_asm] = ACTIONS(5229), + [anon_sym___asm__] = ACTIONS(5229), + [anon_sym___asm] = ACTIONS(5229), + [sym_number_literal] = ACTIONS(5231), + [anon_sym_L_SQUOTE] = ACTIONS(5231), + [anon_sym_u_SQUOTE] = ACTIONS(5231), + [anon_sym_U_SQUOTE] = ACTIONS(5231), + [anon_sym_u8_SQUOTE] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_L_DQUOTE] = ACTIONS(5231), + [anon_sym_u_DQUOTE] = ACTIONS(5231), + [anon_sym_U_DQUOTE] = ACTIONS(5231), + [anon_sym_u8_DQUOTE] = ACTIONS(5231), + [anon_sym_DQUOTE] = ACTIONS(5231), + [sym_true] = ACTIONS(5229), + [sym_false] = ACTIONS(5229), + [anon_sym_NULL] = ACTIONS(5229), + [anon_sym_nullptr] = ACTIONS(5229), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5229), + [anon_sym_decltype] = ACTIONS(5229), + [anon_sym_explicit] = ACTIONS(5229), + [anon_sym_template] = ACTIONS(5229), + [anon_sym_operator] = ACTIONS(5229), + [anon_sym_try] = ACTIONS(5229), + [anon_sym_delete] = ACTIONS(5229), + [anon_sym_throw] = ACTIONS(5229), + [anon_sym_co_return] = ACTIONS(5229), + [anon_sym_co_yield] = ACTIONS(5229), + [anon_sym_R_DQUOTE] = ACTIONS(5231), + [anon_sym_LR_DQUOTE] = ACTIONS(5231), + [anon_sym_uR_DQUOTE] = ACTIONS(5231), + [anon_sym_UR_DQUOTE] = ACTIONS(5231), + [anon_sym_u8R_DQUOTE] = ACTIONS(5231), + [anon_sym_co_await] = ACTIONS(5229), + [anon_sym_new] = ACTIONS(5229), + [anon_sym_requires] = ACTIONS(5229), + [anon_sym_CARET_CARET] = ACTIONS(5231), + [anon_sym_LBRACK_COLON] = ACTIONS(5231), + [sym_this] = ACTIONS(5229), + }, + [STATE(1009)] = { + [sym_identifier] = ACTIONS(5233), + [anon_sym_LPAREN2] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_TILDE] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5235), + [anon_sym_AMP] = ACTIONS(5233), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym___extension__] = ACTIONS(5233), + [anon_sym_virtual] = ACTIONS(5233), + [anon_sym_extern] = ACTIONS(5233), + [anon_sym___attribute__] = ACTIONS(5233), + [anon_sym___attribute] = ACTIONS(5233), + [anon_sym_using] = ACTIONS(5233), + [anon_sym_COLON_COLON] = ACTIONS(5235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), + [anon_sym___declspec] = ACTIONS(5233), + [anon_sym___based] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5235), + [anon_sym_signed] = ACTIONS(5233), + [anon_sym_unsigned] = ACTIONS(5233), + [anon_sym_long] = ACTIONS(5233), + [anon_sym_short] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_static] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_register] = ACTIONS(5233), + [anon_sym_inline] = ACTIONS(5233), + [anon_sym___inline] = ACTIONS(5233), + [anon_sym___inline__] = ACTIONS(5233), + [anon_sym___forceinline] = ACTIONS(5233), + [anon_sym_thread_local] = ACTIONS(5233), + [anon_sym___thread] = ACTIONS(5233), + [anon_sym_const] = ACTIONS(5233), + [anon_sym_constexpr] = ACTIONS(5233), + [anon_sym_volatile] = ACTIONS(5233), + [anon_sym_restrict] = ACTIONS(5233), + [anon_sym___restrict__] = ACTIONS(5233), + [anon_sym__Atomic] = ACTIONS(5233), + [anon_sym__Noreturn] = ACTIONS(5233), + [anon_sym_noreturn] = ACTIONS(5233), + [anon_sym__Nonnull] = ACTIONS(5233), + [anon_sym_mutable] = ACTIONS(5233), + [anon_sym_constinit] = ACTIONS(5233), + [anon_sym_consteval] = ACTIONS(5233), + [anon_sym_alignas] = ACTIONS(5233), + [anon_sym__Alignas] = ACTIONS(5233), + [sym_primitive_type] = ACTIONS(5233), + [anon_sym_enum] = ACTIONS(5233), + [anon_sym_class] = ACTIONS(5233), + [anon_sym_struct] = ACTIONS(5233), + [anon_sym_union] = ACTIONS(5233), + [anon_sym_if] = ACTIONS(5233), + [anon_sym_switch] = ACTIONS(5233), + [anon_sym_case] = ACTIONS(5233), + [anon_sym_default] = ACTIONS(5233), + [anon_sym_while] = ACTIONS(5233), + [anon_sym_do] = ACTIONS(5233), + [anon_sym_for] = ACTIONS(5233), + [anon_sym_return] = ACTIONS(5233), + [anon_sym_break] = ACTIONS(5233), + [anon_sym_continue] = ACTIONS(5233), + [anon_sym_goto] = ACTIONS(5233), + [anon_sym___try] = ACTIONS(5233), + [anon_sym___leave] = ACTIONS(5233), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_compl] = ACTIONS(5233), + [anon_sym_DASH_DASH] = ACTIONS(5235), + [anon_sym_PLUS_PLUS] = ACTIONS(5235), + [anon_sym_sizeof] = ACTIONS(5233), + [anon_sym___alignof__] = ACTIONS(5233), + [anon_sym___alignof] = ACTIONS(5233), + [anon_sym__alignof] = ACTIONS(5233), + [anon_sym_alignof] = ACTIONS(5233), + [anon_sym__Alignof] = ACTIONS(5233), + [anon_sym_offsetof] = ACTIONS(5233), + [anon_sym__Generic] = ACTIONS(5233), + [anon_sym_typename] = ACTIONS(5233), + [anon_sym_asm] = ACTIONS(5233), + [anon_sym___asm__] = ACTIONS(5233), + [anon_sym___asm] = ACTIONS(5233), + [sym_number_literal] = ACTIONS(5235), + [anon_sym_L_SQUOTE] = ACTIONS(5235), + [anon_sym_u_SQUOTE] = ACTIONS(5235), + [anon_sym_U_SQUOTE] = ACTIONS(5235), + [anon_sym_u8_SQUOTE] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_L_DQUOTE] = ACTIONS(5235), + [anon_sym_u_DQUOTE] = ACTIONS(5235), + [anon_sym_U_DQUOTE] = ACTIONS(5235), + [anon_sym_u8_DQUOTE] = ACTIONS(5235), + [anon_sym_DQUOTE] = ACTIONS(5235), + [sym_true] = ACTIONS(5233), + [sym_false] = ACTIONS(5233), + [anon_sym_NULL] = ACTIONS(5233), + [anon_sym_nullptr] = ACTIONS(5233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5233), + [anon_sym_decltype] = ACTIONS(5233), + [anon_sym_explicit] = ACTIONS(5233), + [anon_sym_template] = ACTIONS(5233), + [anon_sym_operator] = ACTIONS(5233), + [anon_sym_try] = ACTIONS(5233), + [anon_sym_delete] = ACTIONS(5233), + [anon_sym_throw] = ACTIONS(5233), + [anon_sym_co_return] = ACTIONS(5233), + [anon_sym_co_yield] = ACTIONS(5233), + [anon_sym_R_DQUOTE] = ACTIONS(5235), + [anon_sym_LR_DQUOTE] = ACTIONS(5235), + [anon_sym_uR_DQUOTE] = ACTIONS(5235), + [anon_sym_UR_DQUOTE] = ACTIONS(5235), + [anon_sym_u8R_DQUOTE] = ACTIONS(5235), + [anon_sym_co_await] = ACTIONS(5233), + [anon_sym_new] = ACTIONS(5233), + [anon_sym_requires] = ACTIONS(5233), + [anon_sym_CARET_CARET] = ACTIONS(5235), + [anon_sym_LBRACK_COLON] = ACTIONS(5235), + [sym_this] = ACTIONS(5233), + }, + [STATE(1010)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8684), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_expression] = STATE(5050), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5293), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7840), + [sym_qualified_identifier] = STATE(5294), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), + }, + [STATE(1011)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8684), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_expression] = STATE(3665), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5195), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7863), + [sym_qualified_identifier] = STATE(5196), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_operator_name] = STATE(8469), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1012)] = { + [sym_identifier] = ACTIONS(5237), + [anon_sym_LPAREN2] = ACTIONS(5240), + [anon_sym_BANG] = ACTIONS(5243), + [anon_sym_TILDE] = ACTIONS(5240), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5247), + [anon_sym_AMP] = ACTIONS(5237), + [anon_sym_SEMI] = ACTIONS(5243), + [anon_sym___extension__] = ACTIONS(5237), + [anon_sym_virtual] = ACTIONS(5249), + [anon_sym_extern] = ACTIONS(5249), + [anon_sym___attribute__] = ACTIONS(5249), + [anon_sym___attribute] = ACTIONS(5249), + [anon_sym_using] = ACTIONS(5245), + [anon_sym_COLON_COLON] = ACTIONS(5240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5240), + [anon_sym___declspec] = ACTIONS(5249), + [anon_sym___based] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(5243), + [anon_sym_signed] = ACTIONS(5249), + [anon_sym_unsigned] = ACTIONS(5249), + [anon_sym_long] = ACTIONS(5249), + [anon_sym_short] = ACTIONS(5249), + [anon_sym_LBRACK] = ACTIONS(5237), + [anon_sym_static] = ACTIONS(5249), + [anon_sym_register] = ACTIONS(5249), + [anon_sym_inline] = ACTIONS(5249), + [anon_sym___inline] = ACTIONS(5249), + [anon_sym___inline__] = ACTIONS(5249), + [anon_sym___forceinline] = ACTIONS(5249), + [anon_sym_thread_local] = ACTIONS(5249), + [anon_sym___thread] = ACTIONS(5249), + [anon_sym_const] = ACTIONS(5249), + [anon_sym_constexpr] = ACTIONS(5249), + [anon_sym_volatile] = ACTIONS(5249), + [anon_sym_restrict] = ACTIONS(5249), + [anon_sym___restrict__] = ACTIONS(5249), + [anon_sym__Atomic] = ACTIONS(5249), + [anon_sym__Noreturn] = ACTIONS(5249), + [anon_sym_noreturn] = ACTIONS(5249), + [anon_sym__Nonnull] = ACTIONS(5249), + [anon_sym_mutable] = ACTIONS(5249), + [anon_sym_constinit] = ACTIONS(5249), + [anon_sym_consteval] = ACTIONS(5249), + [anon_sym_alignas] = ACTIONS(5249), + [anon_sym__Alignas] = ACTIONS(5249), + [sym_primitive_type] = ACTIONS(5237), + [anon_sym_enum] = ACTIONS(5249), + [anon_sym_class] = ACTIONS(5249), + [anon_sym_struct] = ACTIONS(5249), + [anon_sym_union] = ACTIONS(5249), + [anon_sym_if] = ACTIONS(5245), + [anon_sym_switch] = ACTIONS(5245), + [anon_sym_case] = ACTIONS(5245), + [anon_sym_default] = ACTIONS(5245), + [anon_sym_while] = ACTIONS(5245), + [anon_sym_do] = ACTIONS(5245), + [anon_sym_for] = ACTIONS(5245), + [anon_sym_return] = ACTIONS(5245), + [anon_sym_break] = ACTIONS(5245), + [anon_sym_continue] = ACTIONS(5245), + [anon_sym_goto] = ACTIONS(5245), + [anon_sym___try] = ACTIONS(5245), + [anon_sym___leave] = ACTIONS(5245), + [anon_sym_not] = ACTIONS(5245), + [anon_sym_compl] = ACTIONS(5245), + [anon_sym_DASH_DASH] = ACTIONS(5243), + [anon_sym_PLUS_PLUS] = ACTIONS(5243), + [anon_sym_sizeof] = ACTIONS(5245), + [anon_sym___alignof__] = ACTIONS(5245), + [anon_sym___alignof] = ACTIONS(5245), + [anon_sym__alignof] = ACTIONS(5245), + [anon_sym_alignof] = ACTIONS(5245), + [anon_sym__Alignof] = ACTIONS(5245), + [anon_sym_offsetof] = ACTIONS(5245), + [anon_sym__Generic] = ACTIONS(5245), + [anon_sym_typename] = ACTIONS(5237), + [anon_sym_asm] = ACTIONS(5245), + [anon_sym___asm__] = ACTIONS(5245), + [anon_sym___asm] = ACTIONS(5245), + [sym_number_literal] = ACTIONS(5243), + [anon_sym_L_SQUOTE] = ACTIONS(5243), + [anon_sym_u_SQUOTE] = ACTIONS(5243), + [anon_sym_U_SQUOTE] = ACTIONS(5243), + [anon_sym_u8_SQUOTE] = ACTIONS(5243), + [anon_sym_SQUOTE] = ACTIONS(5243), + [anon_sym_L_DQUOTE] = ACTIONS(5243), + [anon_sym_u_DQUOTE] = ACTIONS(5243), + [anon_sym_U_DQUOTE] = ACTIONS(5243), + [anon_sym_u8_DQUOTE] = ACTIONS(5243), + [anon_sym_DQUOTE] = ACTIONS(5243), + [sym_true] = ACTIONS(5245), + [sym_false] = ACTIONS(5245), + [anon_sym_NULL] = ACTIONS(5245), + [anon_sym_nullptr] = ACTIONS(5245), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5249), + [anon_sym_decltype] = ACTIONS(5237), + [anon_sym_explicit] = ACTIONS(5249), + [anon_sym_template] = ACTIONS(5237), + [anon_sym_operator] = ACTIONS(5249), + [anon_sym_try] = ACTIONS(5245), + [anon_sym_delete] = ACTIONS(5245), + [anon_sym_throw] = ACTIONS(5245), + [anon_sym_co_return] = ACTIONS(5245), + [anon_sym_co_yield] = ACTIONS(5245), + [anon_sym_R_DQUOTE] = ACTIONS(5243), + [anon_sym_LR_DQUOTE] = ACTIONS(5243), + [anon_sym_uR_DQUOTE] = ACTIONS(5243), + [anon_sym_UR_DQUOTE] = ACTIONS(5243), + [anon_sym_u8R_DQUOTE] = ACTIONS(5243), + [anon_sym_co_await] = ACTIONS(5245), + [anon_sym_new] = ACTIONS(5245), + [anon_sym_requires] = ACTIONS(5245), + [anon_sym_CARET_CARET] = ACTIONS(5243), + [anon_sym_LBRACK_COLON] = ACTIONS(5240), + [sym_this] = ACTIONS(5245), + }, + [STATE(1013)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), + }, + [STATE(1014)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), + }, + [STATE(1015)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_call_modifier] = STATE(6282), + [sym__declarator] = STATE(8939), + [sym__abstract_declarator] = STATE(9271), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9742), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9742), + [sym_optional_parameter_declaration] = STATE(9742), + [sym_variadic_parameter_declaration] = STATE(9742), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7829), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_AMP_AMP] = ACTIONS(5305), + [anon_sym_AMP] = ACTIONS(5307), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(1950), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(5309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(5311), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -247529,10269 +196275,17179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5330), - [anon_sym_struct] = ACTIONS(5332), - [anon_sym_union] = ACTIONS(5334), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), }, - [STATE(1677)] = { - [sym_function_definition] = STATE(2176), - [sym_declaration] = STATE(2176), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4815), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1961), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8973), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5336), - [anon_sym_struct] = ACTIONS(5338), - [anon_sym_union] = ACTIONS(5340), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1016)] = { + [sym_catch_clause] = STATE(1016), + [aux_sym_constructor_try_statement_repeat1] = STATE(1016), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_goto] = ACTIONS(3137), + [anon_sym___try] = ACTIONS(3137), + [anon_sym___leave] = ACTIONS(3137), + [anon_sym_not] = ACTIONS(3137), + [anon_sym_compl] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_sizeof] = ACTIONS(3137), + [anon_sym___alignof__] = ACTIONS(3137), + [anon_sym___alignof] = ACTIONS(3137), + [anon_sym__alignof] = ACTIONS(3137), + [anon_sym_alignof] = ACTIONS(3137), + [anon_sym__Alignof] = ACTIONS(3137), + [anon_sym_offsetof] = ACTIONS(3137), + [anon_sym__Generic] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(3137), + [anon_sym___asm__] = ACTIONS(3137), + [anon_sym___asm] = ACTIONS(3137), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_L_SQUOTE] = ACTIONS(3139), + [anon_sym_u_SQUOTE] = ACTIONS(3139), + [anon_sym_U_SQUOTE] = ACTIONS(3139), + [anon_sym_u8_SQUOTE] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_L_DQUOTE] = ACTIONS(3139), + [anon_sym_u_DQUOTE] = ACTIONS(3139), + [anon_sym_U_DQUOTE] = ACTIONS(3139), + [anon_sym_u8_DQUOTE] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3139), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [anon_sym_NULL] = ACTIONS(3137), + [anon_sym_nullptr] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_delete] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_co_return] = ACTIONS(3137), + [anon_sym_co_yield] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(5317), + [anon_sym_R_DQUOTE] = ACTIONS(3139), + [anon_sym_LR_DQUOTE] = ACTIONS(3139), + [anon_sym_uR_DQUOTE] = ACTIONS(3139), + [anon_sym_UR_DQUOTE] = ACTIONS(3139), + [anon_sym_u8R_DQUOTE] = ACTIONS(3139), + [anon_sym_co_await] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_requires] = ACTIONS(3137), + [anon_sym_CARET_CARET] = ACTIONS(3139), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [sym_this] = ACTIONS(3137), }, - [STATE(1678)] = { - [sym_function_definition] = STATE(623), - [sym_declaration] = STATE(623), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4783), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1962), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8412), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5342), - [anon_sym_struct] = ACTIONS(5344), - [anon_sym_union] = ACTIONS(5346), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1017)] = { + [sym_catch_clause] = STATE(1016), + [aux_sym_constructor_try_statement_repeat1] = STATE(1016), + [sym_identifier] = 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] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym___extension__] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = 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_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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_else] = ACTIONS(3148), + [anon_sym_switch] = 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_typename] = ACTIONS(3148), + [anon_sym_asm] = 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_template] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_co_return] = ACTIONS(3148), + [anon_sym_co_yield] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(5320), + [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), + [anon_sym_CARET_CARET] = ACTIONS(3150), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [sym_this] = ACTIONS(3148), }, - [STATE(1679)] = { - [sym_function_definition] = STATE(2181), - [sym_declaration] = STATE(2181), - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4812), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_ms_call_modifier] = STATE(1959), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym__class_name] = STATE(8558), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3691), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(3705), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5246), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(5348), - [anon_sym_struct] = ACTIONS(5350), - [anon_sym_union] = ACTIONS(5352), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1018)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1680)] = { - [sym_type_qualifier] = STATE(1680), - [sym_alignas_qualifier] = STATE(1713), - [aux_sym__type_definition_type_repeat1] = STATE(1680), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5099), - [anon_sym___extension__] = ACTIONS(5354), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_const] = ACTIONS(5354), - [anon_sym_constexpr] = ACTIONS(5354), - [anon_sym_volatile] = ACTIONS(5354), - [anon_sym_restrict] = ACTIONS(5354), - [anon_sym___restrict__] = ACTIONS(5354), - [anon_sym__Atomic] = ACTIONS(5354), - [anon_sym__Noreturn] = ACTIONS(5354), - [anon_sym_noreturn] = ACTIONS(5354), - [anon_sym__Nonnull] = ACTIONS(5354), - [anon_sym_mutable] = ACTIONS(5354), - [anon_sym_constinit] = ACTIONS(5354), - [anon_sym_consteval] = ACTIONS(5354), - [anon_sym_alignas] = ACTIONS(5357), - [anon_sym__Alignas] = ACTIONS(5357), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_LT_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_GT_EQ] = ACTIONS(5099), - [anon_sym_AMP_EQ] = ACTIONS(5101), - [anon_sym_CARET_EQ] = ACTIONS(5101), - [anon_sym_PIPE_EQ] = ACTIONS(5101), - [anon_sym_and_eq] = ACTIONS(5099), - [anon_sym_or_eq] = ACTIONS(5099), - [anon_sym_xor_eq] = ACTIONS(5099), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5101), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5101), + [STATE(1019)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1681)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1681), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5111), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5109), - [anon_sym_GT_GT] = ACTIONS(5109), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(5360), - [anon_sym_unsigned] = ACTIONS(5360), - [anon_sym_long] = ACTIONS(5360), - [anon_sym_short] = ACTIONS(5360), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5109), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_STAR_EQ] = ACTIONS(5111), - [anon_sym_SLASH_EQ] = ACTIONS(5111), - [anon_sym_PERCENT_EQ] = ACTIONS(5111), - [anon_sym_PLUS_EQ] = ACTIONS(5111), - [anon_sym_DASH_EQ] = ACTIONS(5111), - [anon_sym_LT_LT_EQ] = ACTIONS(5111), - [anon_sym_GT_GT_EQ] = ACTIONS(5111), - [anon_sym_AMP_EQ] = ACTIONS(5111), - [anon_sym_CARET_EQ] = ACTIONS(5111), - [anon_sym_PIPE_EQ] = ACTIONS(5111), - [anon_sym_and_eq] = ACTIONS(5109), - [anon_sym_or_eq] = ACTIONS(5109), - [anon_sym_xor_eq] = ACTIONS(5109), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5109), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5111), + [STATE(1020)] = { + [sym_expression] = STATE(4440), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1682)] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1741), - [aux_sym__type_definition_type_repeat1] = STATE(1698), - [aux_sym_sized_type_specifier_repeat1] = STATE(2841), - [sym_identifier] = ACTIONS(5363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5139), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym___extension__] = ACTIONS(5365), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5367), - [anon_sym_unsigned] = ACTIONS(5367), - [anon_sym_long] = ACTIONS(5367), - [anon_sym_short] = ACTIONS(5367), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_const] = ACTIONS(5365), - [anon_sym_constexpr] = ACTIONS(5365), - [anon_sym_volatile] = ACTIONS(5365), - [anon_sym_restrict] = ACTIONS(5365), - [anon_sym___restrict__] = ACTIONS(5365), - [anon_sym__Atomic] = ACTIONS(5365), - [anon_sym__Noreturn] = ACTIONS(5365), - [anon_sym_noreturn] = ACTIONS(5365), - [anon_sym__Nonnull] = ACTIONS(5365), - [anon_sym_mutable] = ACTIONS(5365), - [anon_sym_constinit] = ACTIONS(5365), - [anon_sym_consteval] = ACTIONS(5365), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym__Alignas] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5371), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_STAR_EQ] = ACTIONS(5137), - [anon_sym_SLASH_EQ] = ACTIONS(5137), - [anon_sym_PERCENT_EQ] = ACTIONS(5137), - [anon_sym_PLUS_EQ] = ACTIONS(5137), - [anon_sym_DASH_EQ] = ACTIONS(5137), - [anon_sym_LT_LT_EQ] = ACTIONS(5137), - [anon_sym_GT_GT_EQ] = ACTIONS(5137), - [anon_sym_AMP_EQ] = ACTIONS(5137), - [anon_sym_CARET_EQ] = ACTIONS(5137), - [anon_sym_PIPE_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5139), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5137), + [STATE(1021)] = { + [sym_expression] = STATE(5090), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1683)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym_virtual] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), - [anon_sym___declspec] = ACTIONS(2571), - [anon_sym___based] = ACTIONS(2571), - [anon_sym___cdecl] = ACTIONS(2571), - [anon_sym___clrcall] = ACTIONS(2571), - [anon_sym___stdcall] = ACTIONS(2571), - [anon_sym___fastcall] = ACTIONS(2571), - [anon_sym___thiscall] = ACTIONS(2571), - [anon_sym___vectorcall] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_register] = ACTIONS(2571), - [anon_sym_inline] = ACTIONS(2571), - [anon_sym___inline] = ACTIONS(2571), - [anon_sym___inline__] = ACTIONS(2571), - [anon_sym___forceinline] = ACTIONS(2571), - [anon_sym_thread_local] = ACTIONS(2571), - [anon_sym___thread] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_asm] = ACTIONS(2571), - [anon_sym___asm__] = ACTIONS(2571), - [anon_sym___asm] = ACTIONS(2571), - [anon_sym_DASH_GT] = ACTIONS(2561), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2571), - [anon_sym_decltype] = ACTIONS(2571), - [anon_sym_final] = ACTIONS(2571), - [anon_sym_override] = ACTIONS(2571), - [anon_sym_explicit] = ACTIONS(2571), - [anon_sym_typename] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2561), - [anon_sym_operator] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_noexcept] = ACTIONS(2571), - [anon_sym_throw] = ACTIONS(2571), - [anon_sym_requires] = ACTIONS(2571), + [STATE(1022)] = { + [sym_expression] = STATE(6324), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1684)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4037), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7557), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_type_parameter_declaration] = STATE(7557), - [sym_variadic_type_parameter_declaration] = STATE(7557), - [sym_optional_type_parameter_declaration] = STATE(7557), - [sym_template_template_parameter_declaration] = STATE(7557), - [sym_optional_parameter_declaration] = STATE(7557), - [sym_variadic_parameter_declaration] = STATE(7557), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(5373), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5375), - [anon_sym_template] = ACTIONS(5377), - [anon_sym_GT2] = ACTIONS(5379), + [STATE(1023)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1685)] = { - [sym_type_qualifier] = STATE(1682), - [sym_alignas_qualifier] = STATE(1741), - [aux_sym__type_definition_type_repeat1] = STATE(1682), - [aux_sym_sized_type_specifier_repeat1] = STATE(1729), - [sym_identifier] = ACTIONS(5381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5124), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5124), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5124), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym___extension__] = ACTIONS(5365), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5383), - [anon_sym_unsigned] = ACTIONS(5383), - [anon_sym_long] = ACTIONS(5383), - [anon_sym_short] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_EQ] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5365), - [anon_sym_constexpr] = ACTIONS(5365), - [anon_sym_volatile] = ACTIONS(5365), - [anon_sym_restrict] = ACTIONS(5365), - [anon_sym___restrict__] = ACTIONS(5365), - [anon_sym__Atomic] = ACTIONS(5365), - [anon_sym__Noreturn] = ACTIONS(5365), - [anon_sym_noreturn] = ACTIONS(5365), - [anon_sym__Nonnull] = ACTIONS(5365), - [anon_sym_mutable] = ACTIONS(5365), - [anon_sym_constinit] = ACTIONS(5365), - [anon_sym_consteval] = ACTIONS(5365), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym__Alignas] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_STAR_EQ] = ACTIONS(5122), - [anon_sym_SLASH_EQ] = ACTIONS(5122), - [anon_sym_PERCENT_EQ] = ACTIONS(5122), - [anon_sym_PLUS_EQ] = ACTIONS(5122), - [anon_sym_DASH_EQ] = ACTIONS(5122), - [anon_sym_LT_LT_EQ] = ACTIONS(5122), - [anon_sym_GT_GT_EQ] = ACTIONS(5122), - [anon_sym_AMP_EQ] = ACTIONS(5122), - [anon_sym_CARET_EQ] = ACTIONS(5122), - [anon_sym_PIPE_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5124), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5122), + [STATE(1024)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1686)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1681), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5215), - [anon_sym_GT_GT] = ACTIONS(5215), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5360), - [anon_sym_unsigned] = ACTIONS(5360), - [anon_sym_long] = ACTIONS(5360), - [anon_sym_short] = ACTIONS(5360), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_STAR_EQ] = ACTIONS(5212), - [anon_sym_SLASH_EQ] = ACTIONS(5212), - [anon_sym_PERCENT_EQ] = ACTIONS(5212), - [anon_sym_PLUS_EQ] = ACTIONS(5212), - [anon_sym_DASH_EQ] = ACTIONS(5212), - [anon_sym_LT_LT_EQ] = ACTIONS(5212), - [anon_sym_GT_GT_EQ] = ACTIONS(5212), - [anon_sym_AMP_EQ] = ACTIONS(5212), - [anon_sym_CARET_EQ] = ACTIONS(5212), - [anon_sym_PIPE_EQ] = ACTIONS(5212), - [anon_sym_and_eq] = ACTIONS(5215), - [anon_sym_or_eq] = ACTIONS(5215), - [anon_sym_xor_eq] = ACTIONS(5215), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5215), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5212), + [STATE(1025)] = { + [sym_expression] = STATE(5702), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1687)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_TILDE] = ACTIONS(5118), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym_virtual] = ACTIONS(5116), - [anon_sym_extern] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5118), - [anon_sym___declspec] = ACTIONS(5116), - [anon_sym___based] = ACTIONS(5116), - [anon_sym___cdecl] = ACTIONS(5116), - [anon_sym___clrcall] = ACTIONS(5116), - [anon_sym___stdcall] = ACTIONS(5116), - [anon_sym___fastcall] = ACTIONS(5116), - [anon_sym___thiscall] = ACTIONS(5116), - [anon_sym___vectorcall] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5116), - [anon_sym_static] = ACTIONS(5116), - [anon_sym_EQ] = ACTIONS(5118), - [anon_sym_register] = ACTIONS(5116), - [anon_sym_inline] = ACTIONS(5116), - [anon_sym___inline] = ACTIONS(5116), - [anon_sym___inline__] = ACTIONS(5116), - [anon_sym___forceinline] = ACTIONS(5116), - [anon_sym_thread_local] = ACTIONS(5116), - [anon_sym___thread] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_enum] = ACTIONS(5116), - [anon_sym_class] = ACTIONS(5116), - [anon_sym_struct] = ACTIONS(5116), - [anon_sym_union] = ACTIONS(5116), - [anon_sym_asm] = ACTIONS(5116), - [anon_sym___asm__] = ACTIONS(5116), - [anon_sym___asm] = ACTIONS(5116), - [anon_sym_DASH_GT] = ACTIONS(5118), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5116), - [anon_sym_decltype] = ACTIONS(5116), - [anon_sym_final] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_explicit] = ACTIONS(5116), - [anon_sym_typename] = ACTIONS(5116), - [anon_sym_template] = ACTIONS(5116), - [anon_sym_GT2] = ACTIONS(5118), - [anon_sym_operator] = ACTIONS(5116), - [anon_sym_try] = ACTIONS(5116), - [anon_sym_noexcept] = ACTIONS(5116), - [anon_sym_throw] = ACTIONS(5116), - [anon_sym_requires] = ACTIONS(5116), + [STATE(1026)] = { + [sym_expression] = STATE(6568), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9603), + [sym_initializer_pair] = STATE(9603), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5336), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5338), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1688)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5018), - [anon_sym___attribute__] = ACTIONS(5018), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5018), - [anon_sym_volatile] = ACTIONS(5018), - [anon_sym_restrict] = ACTIONS(5018), - [anon_sym___restrict__] = ACTIONS(5018), - [anon_sym__Atomic] = ACTIONS(5018), - [anon_sym__Noreturn] = ACTIONS(5018), - [anon_sym_noreturn] = ACTIONS(5018), - [anon_sym__Nonnull] = ACTIONS(5018), - [anon_sym_mutable] = ACTIONS(5018), - [anon_sym_constinit] = ACTIONS(5018), - [anon_sym_consteval] = ACTIONS(5018), - [anon_sym_alignas] = ACTIONS(5018), - [anon_sym__Alignas] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5018), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_and_eq] = ACTIONS(5018), - [anon_sym_or_eq] = ACTIONS(5018), - [anon_sym_xor_eq] = ACTIONS(5018), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5018), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5018), - [anon_sym_not_eq] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5018), - [anon_sym_decltype] = ACTIONS(5018), - [anon_sym_final] = ACTIONS(5018), - [anon_sym_override] = ACTIONS(5018), - [anon_sym_DASH_GT_STAR] = ACTIONS(5018), + [STATE(1027)] = { + [sym_expression] = STATE(6565), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9620), + [sym_initializer_pair] = STATE(9620), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5342), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1689)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1689), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5109), - [anon_sym_GT_GT] = ACTIONS(5109), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(5387), - [anon_sym_unsigned] = ACTIONS(5387), - [anon_sym_long] = ACTIONS(5387), - [anon_sym_short] = ACTIONS(5387), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5109), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_STAR_EQ] = ACTIONS(5111), - [anon_sym_SLASH_EQ] = ACTIONS(5111), - [anon_sym_PERCENT_EQ] = ACTIONS(5111), - [anon_sym_PLUS_EQ] = ACTIONS(5111), - [anon_sym_DASH_EQ] = ACTIONS(5111), - [anon_sym_LT_LT_EQ] = ACTIONS(5111), - [anon_sym_GT_GT_EQ] = ACTIONS(5109), - [anon_sym_AMP_EQ] = ACTIONS(5111), - [anon_sym_CARET_EQ] = ACTIONS(5111), - [anon_sym_PIPE_EQ] = ACTIONS(5111), - [anon_sym_and_eq] = ACTIONS(5109), - [anon_sym_or_eq] = ACTIONS(5109), - [anon_sym_xor_eq] = ACTIONS(5109), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5111), + [STATE(1028)] = { + [sym_expression] = STATE(4442), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1690)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7384), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7384), - [sym_optional_parameter_declaration] = STATE(7384), - [sym_variadic_parameter_declaration] = STATE(7384), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5390), - [anon_sym_RPAREN] = ACTIONS(5392), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), + [STATE(1029)] = { + [sym_expression] = STATE(6255), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1691)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_EQ_EQ] = ACTIONS(2561), - [anon_sym_BANG_EQ] = ACTIONS(2561), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2561), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2571), - [anon_sym_GT_GT] = ACTIONS(2571), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_EQ] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2561), - [anon_sym_STAR_EQ] = ACTIONS(2561), - [anon_sym_SLASH_EQ] = ACTIONS(2561), - [anon_sym_PERCENT_EQ] = ACTIONS(2561), - [anon_sym_PLUS_EQ] = ACTIONS(2561), - [anon_sym_DASH_EQ] = ACTIONS(2561), - [anon_sym_LT_LT_EQ] = ACTIONS(2561), - [anon_sym_GT_GT_EQ] = ACTIONS(2561), - [anon_sym_AMP_EQ] = ACTIONS(2561), - [anon_sym_CARET_EQ] = ACTIONS(2561), - [anon_sym_PIPE_EQ] = ACTIONS(2561), - [anon_sym_and_eq] = ACTIONS(2571), - [anon_sym_or_eq] = ACTIONS(2571), - [anon_sym_xor_eq] = ACTIONS(2571), - [anon_sym_LT_EQ_GT] = ACTIONS(2561), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_bitor] = ACTIONS(2571), - [anon_sym_xor] = ACTIONS(2571), - [anon_sym_bitand] = ACTIONS(2571), - [anon_sym_not_eq] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_DOT_STAR] = ACTIONS(2561), - [anon_sym_DASH_GT] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(2561), + [STATE(1030)] = { + [sym_expression] = STATE(4595), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1692)] = { - [sym_string_literal] = STATE(1726), - [sym_template_argument_list] = STATE(2316), - [sym_raw_string_literal] = STATE(1726), - [sym_identifier] = ACTIONS(4169), - [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(4169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4169), - [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(4169), - [anon_sym_or_eq] = ACTIONS(4169), - [anon_sym_xor_eq] = ACTIONS(4169), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), + [STATE(1031)] = { + [sym_expression] = STATE(6609), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10056), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1693)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4037), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7963), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_type_parameter_declaration] = STATE(7963), - [sym_variadic_type_parameter_declaration] = STATE(7963), - [sym_optional_type_parameter_declaration] = STATE(7963), - [sym_template_template_parameter_declaration] = STATE(7963), - [sym_optional_parameter_declaration] = STATE(7963), - [sym_variadic_parameter_declaration] = STATE(7963), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(5373), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(5375), - [anon_sym_template] = ACTIONS(5377), + [STATE(1032)] = { + [sym_expression] = STATE(5061), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1694)] = { - [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___attribute] = ACTIONS(5008), - [anon_sym_COLON] = ACTIONS(5008), - [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__Nonnull] = ACTIONS(5010), - [anon_sym_mutable] = ACTIONS(5010), - [anon_sym_constinit] = ACTIONS(5010), - [anon_sym_consteval] = ACTIONS(5010), - [anon_sym_alignas] = ACTIONS(5010), - [anon_sym__Alignas] = ACTIONS(5010), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1033)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1695)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7500), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7500), - [sym_optional_parameter_declaration] = STATE(7500), - [sym_variadic_parameter_declaration] = STATE(7500), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), + [STATE(1034)] = { + [sym_expression] = STATE(6596), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9533), + [sym_initializer_pair] = STATE(9533), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1696)] = { - [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___attribute] = ACTIONS(5000), - [anon_sym_COLON] = ACTIONS(5000), - [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__Nonnull] = ACTIONS(5002), - [anon_sym_mutable] = ACTIONS(5002), - [anon_sym_constinit] = ACTIONS(5002), - [anon_sym_consteval] = ACTIONS(5002), - [anon_sym_alignas] = ACTIONS(5002), - [anon_sym__Alignas] = ACTIONS(5002), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1035)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1697)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4998), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4998), - [anon_sym_volatile] = ACTIONS(4998), - [anon_sym_restrict] = ACTIONS(4998), - [anon_sym___restrict__] = ACTIONS(4998), - [anon_sym__Atomic] = ACTIONS(4998), - [anon_sym__Noreturn] = ACTIONS(4998), - [anon_sym_noreturn] = ACTIONS(4998), - [anon_sym__Nonnull] = ACTIONS(4998), - [anon_sym_mutable] = ACTIONS(4998), - [anon_sym_constinit] = ACTIONS(4998), - [anon_sym_consteval] = ACTIONS(4998), - [anon_sym_alignas] = ACTIONS(4998), - [anon_sym__Alignas] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(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), + [STATE(1036)] = { + [sym_expression] = STATE(6456), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9755), + [sym_initializer_pair] = STATE(9755), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1698)] = { - [sym_type_qualifier] = STATE(1698), - [sym_alignas_qualifier] = STATE(1741), - [aux_sym__type_definition_type_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5099), - [anon_sym_GT_GT] = ACTIONS(5099), - [anon_sym___extension__] = ACTIONS(5397), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5099), - [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__Nonnull] = ACTIONS(5397), - [anon_sym_mutable] = ACTIONS(5397), - [anon_sym_constinit] = ACTIONS(5397), - [anon_sym_consteval] = ACTIONS(5397), - [anon_sym_alignas] = ACTIONS(5400), - [anon_sym__Alignas] = ACTIONS(5400), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_STAR_EQ] = ACTIONS(5101), - [anon_sym_SLASH_EQ] = ACTIONS(5101), - [anon_sym_PERCENT_EQ] = ACTIONS(5101), - [anon_sym_PLUS_EQ] = ACTIONS(5101), - [anon_sym_DASH_EQ] = ACTIONS(5101), - [anon_sym_LT_LT_EQ] = ACTIONS(5101), - [anon_sym_GT_GT_EQ] = ACTIONS(5101), - [anon_sym_AMP_EQ] = ACTIONS(5101), - [anon_sym_CARET_EQ] = ACTIONS(5101), - [anon_sym_PIPE_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5099), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5101), + [STATE(1037)] = { + [sym_expression] = STATE(6772), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1699)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5028), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5026), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5026), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5026), - [anon_sym_GT_GT] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym_virtual] = ACTIONS(5024), - [anon_sym_extern] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5031), - [anon_sym___declspec] = ACTIONS(5024), - [anon_sym___based] = ACTIONS(5024), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_EQ] = 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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(5026), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [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_template] = ACTIONS(5024), - [anon_sym_operator] = ACTIONS(5024), + [STATE(1038)] = { + [sym_expression] = STATE(6629), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1700)] = { - [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___attribute] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [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__Nonnull] = ACTIONS(5006), - [anon_sym_mutable] = ACTIONS(5006), - [anon_sym_constinit] = ACTIONS(5006), - [anon_sym_consteval] = ACTIONS(5006), - [anon_sym_alignas] = ACTIONS(5006), - [anon_sym__Alignas] = ACTIONS(5006), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1039)] = { + [sym_expression] = STATE(6560), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9879), + [sym_initializer_pair] = STATE(9879), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5356), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5358), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1701)] = { - [sym_type_qualifier] = STATE(1701), - [sym_alignas_qualifier] = STATE(1731), - [aux_sym__type_definition_type_repeat1] = STATE(1701), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_RPAREN] = ACTIONS(5101), - [aux_sym_preproc_if_token2] = ACTIONS(5101), - [aux_sym_preproc_else_token1] = ACTIONS(5101), - [aux_sym_preproc_elif_token1] = ACTIONS(5099), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5101), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5101), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5101), - [anon_sym_GT_GT] = ACTIONS(5101), - [anon_sym_SEMI] = ACTIONS(5101), - [anon_sym___extension__] = ACTIONS(5403), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_RBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_RBRACK] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(5403), - [anon_sym_constexpr] = ACTIONS(5403), - [anon_sym_volatile] = ACTIONS(5403), - [anon_sym_restrict] = ACTIONS(5403), - [anon_sym___restrict__] = ACTIONS(5403), - [anon_sym__Atomic] = ACTIONS(5403), - [anon_sym__Noreturn] = ACTIONS(5403), - [anon_sym_noreturn] = ACTIONS(5403), - [anon_sym__Nonnull] = ACTIONS(5403), - [anon_sym_mutable] = ACTIONS(5403), - [anon_sym_constinit] = ACTIONS(5403), - [anon_sym_consteval] = ACTIONS(5403), - [anon_sym_alignas] = ACTIONS(5406), - [anon_sym__Alignas] = ACTIONS(5406), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5099), - [anon_sym_override] = ACTIONS(5099), - [anon_sym_requires] = ACTIONS(5099), + [STATE(1040)] = { + [sym_expression] = STATE(6366), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1702)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1689), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5215), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5215), - [anon_sym_GT_GT] = ACTIONS(5215), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5387), - [anon_sym_unsigned] = ACTIONS(5387), - [anon_sym_long] = ACTIONS(5387), - [anon_sym_short] = ACTIONS(5387), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_STAR_EQ] = ACTIONS(5212), - [anon_sym_SLASH_EQ] = ACTIONS(5212), - [anon_sym_PERCENT_EQ] = ACTIONS(5212), - [anon_sym_PLUS_EQ] = ACTIONS(5212), - [anon_sym_DASH_EQ] = ACTIONS(5212), - [anon_sym_LT_LT_EQ] = ACTIONS(5212), - [anon_sym_GT_GT_EQ] = ACTIONS(5215), - [anon_sym_AMP_EQ] = ACTIONS(5212), - [anon_sym_CARET_EQ] = ACTIONS(5212), - [anon_sym_PIPE_EQ] = ACTIONS(5212), - [anon_sym_and_eq] = ACTIONS(5215), - [anon_sym_or_eq] = ACTIONS(5215), - [anon_sym_xor_eq] = ACTIONS(5215), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5212), + [STATE(1041)] = { + [sym_expression] = STATE(6257), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1703)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym___extension__] = ACTIONS(5022), - [anon_sym___attribute__] = ACTIONS(5022), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5022), - [anon_sym_volatile] = ACTIONS(5022), - [anon_sym_restrict] = ACTIONS(5022), - [anon_sym___restrict__] = ACTIONS(5022), - [anon_sym__Atomic] = ACTIONS(5022), - [anon_sym__Noreturn] = ACTIONS(5022), - [anon_sym_noreturn] = ACTIONS(5022), - [anon_sym__Nonnull] = ACTIONS(5022), - [anon_sym_mutable] = ACTIONS(5022), - [anon_sym_constinit] = ACTIONS(5022), - [anon_sym_consteval] = ACTIONS(5022), - [anon_sym_alignas] = ACTIONS(5022), - [anon_sym__Alignas] = ACTIONS(5022), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5022), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_and_eq] = ACTIONS(5022), - [anon_sym_or_eq] = ACTIONS(5022), - [anon_sym_xor_eq] = ACTIONS(5022), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5022), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5022), - [anon_sym_not_eq] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5022), - [anon_sym_decltype] = ACTIONS(5022), - [anon_sym_final] = ACTIONS(5022), - [anon_sym_override] = ACTIONS(5022), - [anon_sym_DASH_GT_STAR] = ACTIONS(5022), + [STATE(1042)] = { + [sym_expression] = STATE(6472), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9848), + [sym_initializer_pair] = STATE(9848), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5360), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1704)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7386), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7386), - [sym_optional_parameter_declaration] = STATE(7386), - [sym_variadic_parameter_declaration] = STATE(7386), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5411), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), + [STATE(1043)] = { + [sym_expression] = STATE(5376), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(1705)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7601), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7601), - [sym_optional_parameter_declaration] = STATE(7601), - [sym_variadic_parameter_declaration] = STATE(7601), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5415), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), + [STATE(1044)] = { + [sym_expression] = STATE(5408), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(1706)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [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___extension__] = ACTIONS(5014), - [anon_sym___attribute__] = ACTIONS(5014), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5014), - [anon_sym_volatile] = ACTIONS(5014), - [anon_sym_restrict] = ACTIONS(5014), - [anon_sym___restrict__] = ACTIONS(5014), - [anon_sym__Atomic] = ACTIONS(5014), - [anon_sym__Noreturn] = ACTIONS(5014), - [anon_sym_noreturn] = ACTIONS(5014), - [anon_sym__Nonnull] = ACTIONS(5014), - [anon_sym_mutable] = ACTIONS(5014), - [anon_sym_constinit] = ACTIONS(5014), - [anon_sym_consteval] = ACTIONS(5014), - [anon_sym_alignas] = ACTIONS(5014), - [anon_sym__Alignas] = ACTIONS(5014), - [anon_sym_QMARK] = ACTIONS(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(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5012), - [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(5012), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_final] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), + [STATE(1045)] = { + [sym_expression] = STATE(6620), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1707)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_CARET] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5116), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5116), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_LT_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_GT_EQ] = ACTIONS(5118), - [anon_sym_AMP_EQ] = ACTIONS(5118), - [anon_sym_CARET_EQ] = ACTIONS(5118), - [anon_sym_PIPE_EQ] = ACTIONS(5118), - [anon_sym_and_eq] = ACTIONS(5116), - [anon_sym_or_eq] = ACTIONS(5116), - [anon_sym_xor_eq] = ACTIONS(5116), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_and] = ACTIONS(5116), - [anon_sym_bitor] = ACTIONS(5116), - [anon_sym_xor] = ACTIONS(5116), - [anon_sym_bitand] = ACTIONS(5116), - [anon_sym_not_eq] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5116), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5118), + [STATE(1046)] = { + [sym_expression] = STATE(6622), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1708)] = { - [sym_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [aux_sym_concatenated_string_repeat1] = STATE(1722), - [sym_identifier] = ACTIONS(5417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_RPAREN] = ACTIONS(5419), - [aux_sym_preproc_if_token2] = ACTIONS(5419), - [aux_sym_preproc_else_token1] = ACTIONS(5419), - [aux_sym_preproc_elif_token1] = ACTIONS(5421), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5419), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5419), - [anon_sym_LPAREN2] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5421), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_CARET] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5419), - [anon_sym_COLON] = ACTIONS(5419), - [anon_sym_RBRACE] = ACTIONS(5419), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_RBRACK] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_QMARK] = ACTIONS(5419), - [anon_sym_STAR_EQ] = ACTIONS(5419), - [anon_sym_SLASH_EQ] = ACTIONS(5419), - [anon_sym_PERCENT_EQ] = ACTIONS(5419), - [anon_sym_PLUS_EQ] = ACTIONS(5419), - [anon_sym_DASH_EQ] = ACTIONS(5419), - [anon_sym_LT_LT_EQ] = ACTIONS(5419), - [anon_sym_GT_GT_EQ] = ACTIONS(5419), - [anon_sym_AMP_EQ] = ACTIONS(5419), - [anon_sym_CARET_EQ] = ACTIONS(5419), - [anon_sym_PIPE_EQ] = ACTIONS(5419), - [anon_sym_and_eq] = ACTIONS(5421), - [anon_sym_or_eq] = ACTIONS(5421), - [anon_sym_xor_eq] = ACTIONS(5421), - [anon_sym_LT_EQ_GT] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5421), - [anon_sym_and] = ACTIONS(5421), - [anon_sym_bitor] = ACTIONS(5421), - [anon_sym_xor] = ACTIONS(5421), - [anon_sym_bitand] = ACTIONS(5421), - [anon_sym_not_eq] = ACTIONS(5421), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_DOT_STAR] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [sym_literal_suffix] = ACTIONS(5421), + [STATE(1047)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1709)] = { - [sym_catch_clause] = STATE(1712), - [aux_sym_constructor_try_statement_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [aux_sym_preproc_else_token1] = ACTIONS(2588), - [aux_sym_preproc_elif_token1] = ACTIONS(2588), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_friend] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(5423), + [STATE(1048)] = { + [sym_expression] = STATE(5322), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1710)] = { - [sym_catch_clause] = STATE(1712), - [aux_sym_constructor_try_statement_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token2] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [aux_sym_preproc_else_token1] = ACTIONS(2594), - [aux_sym_preproc_elif_token1] = ACTIONS(2594), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_friend] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(5423), + [STATE(1049)] = { + [sym_expression] = STATE(5324), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1711)] = { - [sym_catch_clause] = STATE(1712), - [aux_sym_constructor_try_statement_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token2] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [aux_sym_preproc_else_token1] = ACTIONS(2543), - [aux_sym_preproc_elif_token1] = ACTIONS(2543), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_private] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_friend] = ACTIONS(2543), - [anon_sym_public] = ACTIONS(2543), - [anon_sym_protected] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(5423), + [STATE(1050)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1712)] = { - [sym_catch_clause] = STATE(1712), - [aux_sym_constructor_try_statement_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token2] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [aux_sym_preproc_else_token1] = ACTIONS(2478), - [aux_sym_preproc_elif_token1] = ACTIONS(2478), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_friend] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(5425), + [STATE(1051)] = { + [sym_expression] = STATE(5209), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1713)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_EQ_EQ] = ACTIONS(2561), - [anon_sym_BANG_EQ] = ACTIONS(2561), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2571), - [anon_sym_GT_GT] = ACTIONS(2571), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_EQ] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2561), - [anon_sym_STAR_EQ] = ACTIONS(2561), - [anon_sym_SLASH_EQ] = ACTIONS(2561), - [anon_sym_PERCENT_EQ] = ACTIONS(2561), - [anon_sym_PLUS_EQ] = ACTIONS(2561), - [anon_sym_DASH_EQ] = ACTIONS(2561), - [anon_sym_LT_LT_EQ] = ACTIONS(2561), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2561), - [anon_sym_CARET_EQ] = ACTIONS(2561), - [anon_sym_PIPE_EQ] = ACTIONS(2561), - [anon_sym_and_eq] = ACTIONS(2571), - [anon_sym_or_eq] = ACTIONS(2571), - [anon_sym_xor_eq] = ACTIONS(2571), - [anon_sym_LT_EQ_GT] = ACTIONS(2561), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_bitor] = ACTIONS(2571), - [anon_sym_xor] = ACTIONS(2571), - [anon_sym_bitand] = ACTIONS(2571), - [anon_sym_not_eq] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_DOT_STAR] = ACTIONS(2561), - [anon_sym_DASH_GT] = ACTIONS(2561), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(2561), + [STATE(1052)] = { + [sym_expression] = STATE(5336), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1714)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_CARET] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_GT_EQ] = ACTIONS(5116), - [anon_sym_LT_EQ] = ACTIONS(5116), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5116), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_LT_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_GT_EQ] = ACTIONS(5116), - [anon_sym_AMP_EQ] = ACTIONS(5118), - [anon_sym_CARET_EQ] = ACTIONS(5118), - [anon_sym_PIPE_EQ] = ACTIONS(5118), - [anon_sym_and_eq] = ACTIONS(5116), - [anon_sym_or_eq] = ACTIONS(5116), - [anon_sym_xor_eq] = ACTIONS(5116), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_and] = ACTIONS(5116), - [anon_sym_bitor] = ACTIONS(5116), - [anon_sym_xor] = ACTIONS(5116), - [anon_sym_bitand] = ACTIONS(5116), - [anon_sym_not_eq] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5118), + [STATE(1053)] = { + [sym_expression] = STATE(4902), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1715)] = { - [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___attribute] = ACTIONS(5008), - [anon_sym_COLON] = ACTIONS(5008), - [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__Nonnull] = ACTIONS(5010), - [anon_sym_mutable] = ACTIONS(5010), - [anon_sym_constinit] = ACTIONS(5010), - [anon_sym_consteval] = ACTIONS(5010), - [anon_sym_alignas] = ACTIONS(5010), - [anon_sym__Alignas] = ACTIONS(5010), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1054)] = { + [sym_expression] = STATE(4689), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1716)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4996), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4998), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4998), - [anon_sym_volatile] = ACTIONS(4998), - [anon_sym_restrict] = ACTIONS(4998), - [anon_sym___restrict__] = ACTIONS(4998), - [anon_sym__Atomic] = ACTIONS(4998), - [anon_sym__Noreturn] = ACTIONS(4998), - [anon_sym_noreturn] = ACTIONS(4998), - [anon_sym__Nonnull] = ACTIONS(4998), - [anon_sym_mutable] = ACTIONS(4998), - [anon_sym_constinit] = ACTIONS(4998), - [anon_sym_consteval] = ACTIONS(4998), - [anon_sym_alignas] = ACTIONS(4998), - [anon_sym__Alignas] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4996), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(4998), + [STATE(1055)] = { + [sym_expression] = STATE(6512), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9807), + [sym_initializer_pair] = STATE(9807), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5364), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1717)] = { - [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___attribute] = ACTIONS(5000), - [anon_sym_COLON] = ACTIONS(5000), - [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__Nonnull] = ACTIONS(5002), - [anon_sym_mutable] = ACTIONS(5002), - [anon_sym_constinit] = ACTIONS(5002), - [anon_sym_consteval] = ACTIONS(5002), - [anon_sym_alignas] = ACTIONS(5002), - [anon_sym__Alignas] = ACTIONS(5002), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1056)] = { + [sym_expression] = STATE(6432), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1718)] = { - [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___attribute] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [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__Nonnull] = ACTIONS(5006), - [anon_sym_mutable] = ACTIONS(5006), - [anon_sym_constinit] = ACTIONS(5006), - [anon_sym_consteval] = ACTIONS(5006), - [anon_sym_alignas] = ACTIONS(5006), - [anon_sym__Alignas] = ACTIONS(5006), - [anon_sym_QMARK] = ACTIONS(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), + [STATE(1057)] = { + [sym_expression] = STATE(6548), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9881), + [sym_initializer_pair] = STATE(9881), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_COMMA] = ACTIONS(5368), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5370), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1719)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5014), - [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(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5012), - [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___extension__] = ACTIONS(5014), - [anon_sym___attribute__] = ACTIONS(5014), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5014), - [anon_sym_volatile] = ACTIONS(5014), - [anon_sym_restrict] = ACTIONS(5014), - [anon_sym___restrict__] = ACTIONS(5014), - [anon_sym__Atomic] = ACTIONS(5014), - [anon_sym__Noreturn] = ACTIONS(5014), - [anon_sym_noreturn] = ACTIONS(5014), - [anon_sym__Nonnull] = ACTIONS(5014), - [anon_sym_mutable] = ACTIONS(5014), - [anon_sym_constinit] = ACTIONS(5014), - [anon_sym_consteval] = ACTIONS(5014), - [anon_sym_alignas] = ACTIONS(5014), - [anon_sym__Alignas] = ACTIONS(5014), - [anon_sym_QMARK] = ACTIONS(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(5012), - [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(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5012), - [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(5012), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_final] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), - [anon_sym_GT2] = ACTIONS(5014), + [STATE(1058)] = { + [sym_expression] = STATE(6766), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1720)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5016), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5016), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5016), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5016), - [anon_sym_GT_GT] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5018), - [anon_sym___attribute__] = ACTIONS(5018), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_EQ] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5018), - [anon_sym_volatile] = ACTIONS(5018), - [anon_sym_restrict] = ACTIONS(5018), - [anon_sym___restrict__] = ACTIONS(5018), - [anon_sym__Atomic] = ACTIONS(5018), - [anon_sym__Noreturn] = ACTIONS(5018), - [anon_sym_noreturn] = ACTIONS(5018), - [anon_sym__Nonnull] = ACTIONS(5018), - [anon_sym_mutable] = ACTIONS(5018), - [anon_sym_constinit] = ACTIONS(5018), - [anon_sym_consteval] = ACTIONS(5018), - [anon_sym_alignas] = ACTIONS(5018), - [anon_sym__Alignas] = ACTIONS(5018), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_STAR_EQ] = ACTIONS(5018), - [anon_sym_SLASH_EQ] = ACTIONS(5018), - [anon_sym_PERCENT_EQ] = ACTIONS(5018), - [anon_sym_PLUS_EQ] = ACTIONS(5018), - [anon_sym_DASH_EQ] = ACTIONS(5018), - [anon_sym_LT_LT_EQ] = ACTIONS(5018), - [anon_sym_GT_GT_EQ] = ACTIONS(5016), - [anon_sym_AMP_EQ] = ACTIONS(5018), - [anon_sym_CARET_EQ] = ACTIONS(5018), - [anon_sym_PIPE_EQ] = ACTIONS(5018), - [anon_sym_and_eq] = ACTIONS(5018), - [anon_sym_or_eq] = ACTIONS(5018), - [anon_sym_xor_eq] = ACTIONS(5018), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5018), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5018), - [anon_sym_not_eq] = ACTIONS(5018), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5018), - [anon_sym_decltype] = ACTIONS(5018), - [anon_sym_final] = ACTIONS(5018), - [anon_sym_override] = ACTIONS(5018), - [anon_sym_GT2] = ACTIONS(5018), + [STATE(1059)] = { + [sym_expression] = STATE(6748), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1721)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5020), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5020), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5020), - [anon_sym_GT_GT] = ACTIONS(5020), - [anon_sym___extension__] = ACTIONS(5022), - [anon_sym___attribute__] = ACTIONS(5022), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_EQ] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5022), - [anon_sym_volatile] = ACTIONS(5022), - [anon_sym_restrict] = ACTIONS(5022), - [anon_sym___restrict__] = ACTIONS(5022), - [anon_sym__Atomic] = ACTIONS(5022), - [anon_sym__Noreturn] = ACTIONS(5022), - [anon_sym_noreturn] = ACTIONS(5022), - [anon_sym__Nonnull] = ACTIONS(5022), - [anon_sym_mutable] = ACTIONS(5022), - [anon_sym_constinit] = ACTIONS(5022), - [anon_sym_consteval] = ACTIONS(5022), - [anon_sym_alignas] = ACTIONS(5022), - [anon_sym__Alignas] = ACTIONS(5022), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_STAR_EQ] = ACTIONS(5022), - [anon_sym_SLASH_EQ] = ACTIONS(5022), - [anon_sym_PERCENT_EQ] = ACTIONS(5022), - [anon_sym_PLUS_EQ] = ACTIONS(5022), - [anon_sym_DASH_EQ] = ACTIONS(5022), - [anon_sym_LT_LT_EQ] = ACTIONS(5022), - [anon_sym_GT_GT_EQ] = ACTIONS(5020), - [anon_sym_AMP_EQ] = ACTIONS(5022), - [anon_sym_CARET_EQ] = ACTIONS(5022), - [anon_sym_PIPE_EQ] = ACTIONS(5022), - [anon_sym_and_eq] = ACTIONS(5022), - [anon_sym_or_eq] = ACTIONS(5022), - [anon_sym_xor_eq] = ACTIONS(5022), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5022), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5022), - [anon_sym_not_eq] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5022), - [anon_sym_decltype] = ACTIONS(5022), - [anon_sym_final] = ACTIONS(5022), - [anon_sym_override] = ACTIONS(5022), - [anon_sym_GT2] = ACTIONS(5022), + [STATE(1060)] = { + [sym_expression] = STATE(6750), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1722)] = { - [sym_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [aux_sym_concatenated_string_repeat1] = STATE(1722), - [sym_identifier] = ACTIONS(5428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), - [anon_sym_COMMA] = ACTIONS(5431), - [anon_sym_RPAREN] = ACTIONS(5431), - [aux_sym_preproc_if_token2] = ACTIONS(5431), - [aux_sym_preproc_else_token1] = ACTIONS(5431), - [aux_sym_preproc_elif_token1] = ACTIONS(5433), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5431), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5431), - [anon_sym_LPAREN2] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5433), - [anon_sym_STAR] = ACTIONS(5433), - [anon_sym_SLASH] = ACTIONS(5433), - [anon_sym_PERCENT] = ACTIONS(5433), - [anon_sym_PIPE_PIPE] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(5433), - [anon_sym_AMP] = ACTIONS(5433), - [anon_sym_EQ_EQ] = ACTIONS(5431), - [anon_sym_BANG_EQ] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5431), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_LT] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5433), - [anon_sym_GT_GT] = ACTIONS(5433), - [anon_sym_SEMI] = ACTIONS(5431), - [anon_sym_COLON] = ACTIONS(5431), - [anon_sym_RBRACE] = ACTIONS(5431), - [anon_sym_LBRACK] = ACTIONS(5431), - [anon_sym_RBRACK] = ACTIONS(5431), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_STAR_EQ] = ACTIONS(5431), - [anon_sym_SLASH_EQ] = ACTIONS(5431), - [anon_sym_PERCENT_EQ] = ACTIONS(5431), - [anon_sym_PLUS_EQ] = ACTIONS(5431), - [anon_sym_DASH_EQ] = ACTIONS(5431), - [anon_sym_LT_LT_EQ] = ACTIONS(5431), - [anon_sym_GT_GT_EQ] = ACTIONS(5431), - [anon_sym_AMP_EQ] = ACTIONS(5431), - [anon_sym_CARET_EQ] = ACTIONS(5431), - [anon_sym_PIPE_EQ] = ACTIONS(5431), - [anon_sym_and_eq] = ACTIONS(5433), - [anon_sym_or_eq] = ACTIONS(5433), - [anon_sym_xor_eq] = ACTIONS(5433), - [anon_sym_LT_EQ_GT] = ACTIONS(5431), - [anon_sym_or] = ACTIONS(5433), - [anon_sym_and] = ACTIONS(5433), - [anon_sym_bitor] = ACTIONS(5433), - [anon_sym_xor] = ACTIONS(5433), - [anon_sym_bitand] = ACTIONS(5433), - [anon_sym_not_eq] = ACTIONS(5433), - [anon_sym_DASH_DASH] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(5431), - [anon_sym_DOT] = ACTIONS(5433), - [anon_sym_DOT_STAR] = ACTIONS(5431), - [anon_sym_DASH_GT] = ACTIONS(5431), - [anon_sym_L_DQUOTE] = ACTIONS(5435), - [anon_sym_u_DQUOTE] = ACTIONS(5435), - [anon_sym_U_DQUOTE] = ACTIONS(5435), - [anon_sym_u8_DQUOTE] = ACTIONS(5435), - [anon_sym_DQUOTE] = ACTIONS(5435), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5438), - [anon_sym_LR_DQUOTE] = ACTIONS(5438), - [anon_sym_uR_DQUOTE] = ACTIONS(5438), - [anon_sym_UR_DQUOTE] = ACTIONS(5438), - [anon_sym_u8R_DQUOTE] = ACTIONS(5438), - [sym_literal_suffix] = ACTIONS(5433), + [STATE(1061)] = { + [sym_expression] = STATE(5409), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1723)] = { - [sym_identifier] = ACTIONS(5441), - [anon_sym_LPAREN2] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5443), - [anon_sym_TILDE] = ACTIONS(5443), - [anon_sym_DASH] = ACTIONS(5441), - [anon_sym_PLUS] = ACTIONS(5441), - [anon_sym_STAR] = ACTIONS(5443), - [anon_sym_AMP] = ACTIONS(5443), - [anon_sym_SEMI] = ACTIONS(5443), - [anon_sym___extension__] = ACTIONS(5441), - [anon_sym_COLON_COLON] = ACTIONS(5443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5443), - [anon_sym_LBRACE] = ACTIONS(5443), - [anon_sym_LBRACK] = ACTIONS(5441), - [sym_primitive_type] = ACTIONS(5441), - [anon_sym_if] = ACTIONS(5441), - [anon_sym_switch] = ACTIONS(5441), - [anon_sym_case] = ACTIONS(5441), - [anon_sym_default] = ACTIONS(5441), - [anon_sym_while] = ACTIONS(5441), - [anon_sym_do] = ACTIONS(5441), - [anon_sym_for] = ACTIONS(5441), - [anon_sym_return] = ACTIONS(5441), - [anon_sym_break] = ACTIONS(5441), - [anon_sym_continue] = ACTIONS(5441), - [anon_sym_goto] = ACTIONS(5441), - [anon_sym___try] = ACTIONS(5441), - [anon_sym___leave] = ACTIONS(5441), - [anon_sym_not] = ACTIONS(5441), - [anon_sym_compl] = ACTIONS(5441), - [anon_sym_DASH_DASH] = ACTIONS(5443), - [anon_sym_PLUS_PLUS] = ACTIONS(5443), - [anon_sym_sizeof] = ACTIONS(5441), - [anon_sym___alignof__] = ACTIONS(5441), - [anon_sym___alignof] = ACTIONS(5441), - [anon_sym__alignof] = ACTIONS(5441), - [anon_sym_alignof] = ACTIONS(5441), - [anon_sym__Alignof] = ACTIONS(5441), - [anon_sym_offsetof] = ACTIONS(5441), - [anon_sym__Generic] = ACTIONS(5441), - [anon_sym_asm] = ACTIONS(5441), - [anon_sym___asm__] = ACTIONS(5441), - [anon_sym___asm] = ACTIONS(5441), - [sym_number_literal] = ACTIONS(5443), - [anon_sym_L_SQUOTE] = ACTIONS(5443), - [anon_sym_u_SQUOTE] = ACTIONS(5443), - [anon_sym_U_SQUOTE] = ACTIONS(5443), - [anon_sym_u8_SQUOTE] = ACTIONS(5443), - [anon_sym_SQUOTE] = ACTIONS(5443), - [anon_sym_L_DQUOTE] = ACTIONS(5443), - [anon_sym_u_DQUOTE] = ACTIONS(5443), - [anon_sym_U_DQUOTE] = ACTIONS(5443), - [anon_sym_u8_DQUOTE] = ACTIONS(5443), - [anon_sym_DQUOTE] = ACTIONS(5443), - [sym_true] = ACTIONS(5441), - [sym_false] = ACTIONS(5441), - [anon_sym_NULL] = ACTIONS(5441), - [anon_sym_nullptr] = ACTIONS(5441), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5441), - [anon_sym_template] = ACTIONS(5441), - [anon_sym_try] = ACTIONS(5441), - [anon_sym_delete] = ACTIONS(5441), - [anon_sym_throw] = ACTIONS(5441), - [anon_sym_co_return] = ACTIONS(5441), - [anon_sym_co_yield] = ACTIONS(5441), - [anon_sym_R_DQUOTE] = ACTIONS(5443), - [anon_sym_LR_DQUOTE] = ACTIONS(5443), - [anon_sym_uR_DQUOTE] = ACTIONS(5443), - [anon_sym_UR_DQUOTE] = ACTIONS(5443), - [anon_sym_u8R_DQUOTE] = ACTIONS(5443), - [anon_sym_co_await] = ACTIONS(5441), - [anon_sym_new] = ACTIONS(5441), - [anon_sym_requires] = ACTIONS(5441), - [sym_this] = ACTIONS(5441), + [STATE(1062)] = { + [sym_expression] = STATE(5411), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1724)] = { - [sym_identifier] = ACTIONS(5445), - [anon_sym_LPAREN2] = ACTIONS(5447), - [anon_sym_BANG] = ACTIONS(5447), - [anon_sym_TILDE] = ACTIONS(5447), - [anon_sym_DASH] = ACTIONS(5445), - [anon_sym_PLUS] = ACTIONS(5445), - [anon_sym_STAR] = ACTIONS(5447), - [anon_sym_AMP] = ACTIONS(5447), - [anon_sym_SEMI] = ACTIONS(5447), - [anon_sym___extension__] = ACTIONS(5445), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5447), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_LBRACK] = ACTIONS(5445), - [sym_primitive_type] = ACTIONS(5445), - [anon_sym_if] = ACTIONS(5445), - [anon_sym_switch] = ACTIONS(5445), - [anon_sym_case] = ACTIONS(5445), - [anon_sym_default] = ACTIONS(5445), - [anon_sym_while] = ACTIONS(5445), - [anon_sym_do] = ACTIONS(5445), - [anon_sym_for] = ACTIONS(5445), - [anon_sym_return] = ACTIONS(5445), - [anon_sym_break] = ACTIONS(5445), - [anon_sym_continue] = ACTIONS(5445), - [anon_sym_goto] = ACTIONS(5445), - [anon_sym___try] = ACTIONS(5445), - [anon_sym___leave] = ACTIONS(5445), - [anon_sym_not] = ACTIONS(5445), - [anon_sym_compl] = ACTIONS(5445), - [anon_sym_DASH_DASH] = ACTIONS(5447), - [anon_sym_PLUS_PLUS] = ACTIONS(5447), - [anon_sym_sizeof] = ACTIONS(5445), - [anon_sym___alignof__] = ACTIONS(5445), - [anon_sym___alignof] = ACTIONS(5445), - [anon_sym__alignof] = ACTIONS(5445), - [anon_sym_alignof] = ACTIONS(5445), - [anon_sym__Alignof] = ACTIONS(5445), - [anon_sym_offsetof] = ACTIONS(5445), - [anon_sym__Generic] = ACTIONS(5445), - [anon_sym_asm] = ACTIONS(5445), - [anon_sym___asm__] = ACTIONS(5445), - [anon_sym___asm] = ACTIONS(5445), - [sym_number_literal] = ACTIONS(5447), - [anon_sym_L_SQUOTE] = ACTIONS(5447), - [anon_sym_u_SQUOTE] = ACTIONS(5447), - [anon_sym_U_SQUOTE] = ACTIONS(5447), - [anon_sym_u8_SQUOTE] = ACTIONS(5447), - [anon_sym_SQUOTE] = ACTIONS(5447), - [anon_sym_L_DQUOTE] = ACTIONS(5447), - [anon_sym_u_DQUOTE] = ACTIONS(5447), - [anon_sym_U_DQUOTE] = ACTIONS(5447), - [anon_sym_u8_DQUOTE] = ACTIONS(5447), - [anon_sym_DQUOTE] = ACTIONS(5447), - [sym_true] = ACTIONS(5445), - [sym_false] = ACTIONS(5445), - [anon_sym_NULL] = ACTIONS(5445), - [anon_sym_nullptr] = ACTIONS(5445), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5445), - [anon_sym_template] = ACTIONS(5445), - [anon_sym_try] = ACTIONS(5445), - [anon_sym_delete] = ACTIONS(5445), - [anon_sym_throw] = ACTIONS(5445), - [anon_sym_co_return] = ACTIONS(5445), - [anon_sym_co_yield] = ACTIONS(5445), - [anon_sym_R_DQUOTE] = ACTIONS(5447), - [anon_sym_LR_DQUOTE] = ACTIONS(5447), - [anon_sym_uR_DQUOTE] = ACTIONS(5447), - [anon_sym_UR_DQUOTE] = ACTIONS(5447), - [anon_sym_u8R_DQUOTE] = ACTIONS(5447), - [anon_sym_co_await] = ACTIONS(5445), - [anon_sym_new] = ACTIONS(5445), - [anon_sym_requires] = ACTIONS(5445), - [sym_this] = ACTIONS(5445), + [STATE(1063)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1725)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7874), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_explicit_object_parameter_declaration] = STATE(7874), - [sym_optional_parameter_declaration] = STATE(7874), - [sym_variadic_parameter_declaration] = STATE(7874), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5449), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [sym_this] = ACTIONS(4336), + [STATE(1064)] = { + [sym_expression] = STATE(6635), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1726)] = { - [sym_string_literal] = STATE(1708), - [sym_raw_string_literal] = STATE(1708), - [aux_sym_concatenated_string_repeat1] = STATE(1708), - [sym_identifier] = ACTIONS(5451), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [aux_sym_preproc_if_token2] = ACTIONS(5453), - [aux_sym_preproc_else_token1] = ACTIONS(5453), - [aux_sym_preproc_elif_token1] = ACTIONS(5455), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5453), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5453), - [anon_sym_LPAREN2] = ACTIONS(5453), - [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(5453), - [anon_sym_AMP_AMP] = ACTIONS(5453), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5453), - [anon_sym_BANG_EQ] = ACTIONS(5453), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5453), - [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(5453), - [anon_sym_COLON] = ACTIONS(5453), - [anon_sym_RBRACE] = ACTIONS(5453), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_RBRACK] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5453), - [anon_sym_STAR_EQ] = ACTIONS(5453), - [anon_sym_SLASH_EQ] = ACTIONS(5453), - [anon_sym_PERCENT_EQ] = ACTIONS(5453), - [anon_sym_PLUS_EQ] = ACTIONS(5453), - [anon_sym_DASH_EQ] = ACTIONS(5453), - [anon_sym_LT_LT_EQ] = ACTIONS(5453), - [anon_sym_GT_GT_EQ] = ACTIONS(5453), - [anon_sym_AMP_EQ] = ACTIONS(5453), - [anon_sym_CARET_EQ] = ACTIONS(5453), - [anon_sym_PIPE_EQ] = ACTIONS(5453), - [anon_sym_and_eq] = ACTIONS(5455), - [anon_sym_or_eq] = ACTIONS(5455), - [anon_sym_xor_eq] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5453), - [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(5453), - [anon_sym_PLUS_PLUS] = ACTIONS(5453), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5453), - [anon_sym_DASH_GT] = ACTIONS(5453), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [sym_literal_suffix] = ACTIONS(5455), + [STATE(1065)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2029), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1727)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [aux_sym_preproc_if_token2] = ACTIONS(5111), - [aux_sym_preproc_else_token1] = ACTIONS(5111), - [aux_sym_preproc_elif_token1] = ACTIONS(5109), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5111), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5111), - [anon_sym_GT_GT] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(5457), - [anon_sym_unsigned] = ACTIONS(5457), - [anon_sym_long] = ACTIONS(5457), - [anon_sym_short] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5109), - [anon_sym_override] = ACTIONS(5109), - [anon_sym_requires] = ACTIONS(5109), + [STATE(1066)] = { + [sym_expression] = STATE(4615), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1728)] = { - [sym_type_qualifier] = STATE(1728), - [sym_alignas_qualifier] = STATE(1872), - [aux_sym_array_declarator_repeat1] = STATE(1728), - [sym_identifier] = ACTIONS(5460), - [anon_sym_LPAREN2] = ACTIONS(5462), - [anon_sym_BANG] = ACTIONS(5462), - [anon_sym_TILDE] = ACTIONS(5462), - [anon_sym_DASH] = ACTIONS(5460), - [anon_sym_PLUS] = ACTIONS(5460), - [anon_sym_STAR] = ACTIONS(5462), - [anon_sym_AMP] = ACTIONS(5462), - [anon_sym___extension__] = ACTIONS(5464), - [anon_sym_COLON_COLON] = ACTIONS(5462), - [anon_sym_LBRACK] = ACTIONS(5462), - [anon_sym_static] = ACTIONS(5467), - [anon_sym_RBRACK] = ACTIONS(5462), - [anon_sym_const] = ACTIONS(5464), - [anon_sym_constexpr] = ACTIONS(5464), - [anon_sym_volatile] = ACTIONS(5464), - [anon_sym_restrict] = ACTIONS(5464), - [anon_sym___restrict__] = ACTIONS(5464), - [anon_sym__Atomic] = ACTIONS(5464), - [anon_sym__Noreturn] = ACTIONS(5464), - [anon_sym_noreturn] = ACTIONS(5464), - [anon_sym__Nonnull] = ACTIONS(5464), - [anon_sym_mutable] = ACTIONS(5464), - [anon_sym_constinit] = ACTIONS(5464), - [anon_sym_consteval] = ACTIONS(5464), - [anon_sym_alignas] = ACTIONS(5470), - [anon_sym__Alignas] = ACTIONS(5470), - [sym_primitive_type] = ACTIONS(5460), - [anon_sym_not] = ACTIONS(5460), - [anon_sym_compl] = ACTIONS(5460), - [anon_sym_DASH_DASH] = ACTIONS(5462), - [anon_sym_PLUS_PLUS] = ACTIONS(5462), - [anon_sym_sizeof] = ACTIONS(5460), - [anon_sym___alignof__] = ACTIONS(5460), - [anon_sym___alignof] = ACTIONS(5460), - [anon_sym__alignof] = ACTIONS(5460), - [anon_sym_alignof] = ACTIONS(5460), - [anon_sym__Alignof] = ACTIONS(5460), - [anon_sym_offsetof] = ACTIONS(5460), - [anon_sym__Generic] = ACTIONS(5460), - [anon_sym_asm] = ACTIONS(5460), - [anon_sym___asm__] = ACTIONS(5460), - [anon_sym___asm] = ACTIONS(5460), - [sym_number_literal] = ACTIONS(5462), - [anon_sym_L_SQUOTE] = ACTIONS(5462), - [anon_sym_u_SQUOTE] = ACTIONS(5462), - [anon_sym_U_SQUOTE] = ACTIONS(5462), - [anon_sym_u8_SQUOTE] = ACTIONS(5462), - [anon_sym_SQUOTE] = ACTIONS(5462), - [anon_sym_L_DQUOTE] = ACTIONS(5462), - [anon_sym_u_DQUOTE] = ACTIONS(5462), - [anon_sym_U_DQUOTE] = ACTIONS(5462), - [anon_sym_u8_DQUOTE] = ACTIONS(5462), - [anon_sym_DQUOTE] = ACTIONS(5462), - [sym_true] = ACTIONS(5460), - [sym_false] = ACTIONS(5460), - [anon_sym_NULL] = ACTIONS(5460), - [anon_sym_nullptr] = ACTIONS(5460), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5460), - [anon_sym_template] = ACTIONS(5460), - [anon_sym_delete] = ACTIONS(5460), - [anon_sym_R_DQUOTE] = ACTIONS(5462), - [anon_sym_LR_DQUOTE] = ACTIONS(5462), - [anon_sym_uR_DQUOTE] = ACTIONS(5462), - [anon_sym_UR_DQUOTE] = ACTIONS(5462), - [anon_sym_u8R_DQUOTE] = ACTIONS(5462), - [anon_sym_co_await] = ACTIONS(5460), - [anon_sym_new] = ACTIONS(5460), - [anon_sym_requires] = ACTIONS(5460), - [sym_this] = ACTIONS(5460), + [STATE(1067)] = { + [sym_expression] = STATE(6416), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1729)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1730), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5215), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5215), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5215), - [anon_sym_GT_GT] = ACTIONS(5215), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5473), - [anon_sym_unsigned] = ACTIONS(5473), - [anon_sym_long] = ACTIONS(5473), - [anon_sym_short] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_STAR_EQ] = ACTIONS(5212), - [anon_sym_SLASH_EQ] = ACTIONS(5212), - [anon_sym_PERCENT_EQ] = ACTIONS(5212), - [anon_sym_PLUS_EQ] = ACTIONS(5212), - [anon_sym_DASH_EQ] = ACTIONS(5212), - [anon_sym_LT_LT_EQ] = ACTIONS(5212), - [anon_sym_GT_GT_EQ] = ACTIONS(5212), - [anon_sym_AMP_EQ] = ACTIONS(5212), - [anon_sym_CARET_EQ] = ACTIONS(5212), - [anon_sym_PIPE_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5215), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5212), + [STATE(1068)] = { + [sym_expression] = STATE(5785), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(5326), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(5326), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), + [anon_sym_LBRACE] = ACTIONS(5326), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(5328), + [anon_sym_constexpr] = ACTIONS(5328), + [anon_sym_mutable] = ACTIONS(5328), + [anon_sym_consteval] = ACTIONS(5328), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [anon_sym_DASH_GT] = ACTIONS(5326), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_noexcept] = ACTIONS(5328), + [anon_sym_throw] = ACTIONS(5328), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1730)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1730), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5109), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5111), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5109), - [anon_sym_GT_GT] = ACTIONS(5109), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(5473), - [anon_sym_unsigned] = ACTIONS(5473), - [anon_sym_long] = ACTIONS(5473), - [anon_sym_short] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5109), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_STAR_EQ] = ACTIONS(5111), - [anon_sym_SLASH_EQ] = ACTIONS(5111), - [anon_sym_PERCENT_EQ] = ACTIONS(5111), - [anon_sym_PLUS_EQ] = ACTIONS(5111), - [anon_sym_DASH_EQ] = ACTIONS(5111), - [anon_sym_LT_LT_EQ] = ACTIONS(5111), - [anon_sym_GT_GT_EQ] = ACTIONS(5111), - [anon_sym_AMP_EQ] = ACTIONS(5111), - [anon_sym_CARET_EQ] = ACTIONS(5111), - [anon_sym_PIPE_EQ] = ACTIONS(5111), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5109), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5111), + [STATE(1069)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1731)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [aux_sym_preproc_if_token2] = ACTIONS(2561), - [aux_sym_preproc_else_token1] = ACTIONS(2561), - [aux_sym_preproc_elif_token1] = ACTIONS(2571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_EQ_EQ] = ACTIONS(2561), - [anon_sym_BANG_EQ] = ACTIONS(2561), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2561), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2561), - [anon_sym_GT_GT] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_COLON] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2561), - [anon_sym_LT_EQ_GT] = ACTIONS(2561), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_bitor] = ACTIONS(2571), - [anon_sym_xor] = ACTIONS(2571), - [anon_sym_bitand] = ACTIONS(2571), - [anon_sym_not_eq] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_DOT_STAR] = ACTIONS(2561), - [anon_sym_DASH_GT] = ACTIONS(2561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2571), - [anon_sym_override] = ACTIONS(2571), - [anon_sym_requires] = ACTIONS(2571), + [STATE(1070)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1071), + [sym_compound_requirement] = STATE(1071), + [sym__requirement] = STATE(1071), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1732)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5116), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5116), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_CARET] = ACTIONS(5116), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5116), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5116), - [anon_sym_GT_GT] = ACTIONS(5116), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5118), - [anon_sym_STAR_EQ] = ACTIONS(5118), - [anon_sym_SLASH_EQ] = ACTIONS(5118), - [anon_sym_PERCENT_EQ] = ACTIONS(5118), - [anon_sym_PLUS_EQ] = ACTIONS(5118), - [anon_sym_DASH_EQ] = ACTIONS(5118), - [anon_sym_LT_LT_EQ] = ACTIONS(5118), - [anon_sym_GT_GT_EQ] = ACTIONS(5118), - [anon_sym_AMP_EQ] = ACTIONS(5118), - [anon_sym_CARET_EQ] = ACTIONS(5118), - [anon_sym_PIPE_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_and] = ACTIONS(5116), - [anon_sym_bitor] = ACTIONS(5116), - [anon_sym_xor] = ACTIONS(5116), - [anon_sym_bitand] = ACTIONS(5116), - [anon_sym_not_eq] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5116), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(5118), + [STATE(1071)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1733)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7378), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(7378), - [sym_variadic_parameter_declaration] = STATE(7378), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), + [STATE(1072)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5386), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1734)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [aux_sym_preproc_else_token1] = ACTIONS(1938), - [aux_sym_preproc_elif_token1] = ACTIONS(1938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_private] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_friend] = ACTIONS(1938), - [anon_sym_public] = ACTIONS(1938), - [anon_sym_protected] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), + [STATE(1073)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1735)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), + [STATE(1074)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5390), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1736)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [aux_sym_preproc_else_token1] = ACTIONS(2621), - [aux_sym_preproc_elif_token1] = ACTIONS(2621), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_private] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_friend] = ACTIONS(2621), - [anon_sym_public] = ACTIONS(2621), - [anon_sym_protected] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), + [STATE(1075)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1077), + [sym_compound_requirement] = STATE(1077), + [sym__requirement] = STATE(1077), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1737)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5118), - [anon_sym_COMMA] = ACTIONS(5118), - [anon_sym_RPAREN] = ACTIONS(5118), - [aux_sym_preproc_if_token2] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5118), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_SLASH] = ACTIONS(5116), - [anon_sym_PERCENT] = ACTIONS(5118), - [anon_sym_PIPE_PIPE] = ACTIONS(5118), - [anon_sym_AMP_AMP] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5116), - [anon_sym_CARET] = ACTIONS(5118), - [anon_sym_AMP] = ACTIONS(5116), - [anon_sym_EQ_EQ] = ACTIONS(5118), - [anon_sym_BANG_EQ] = ACTIONS(5118), - [anon_sym_GT] = ACTIONS(5116), - [anon_sym_GT_EQ] = ACTIONS(5118), - [anon_sym_LT_EQ] = ACTIONS(5116), - [anon_sym_LT] = ACTIONS(5116), - [anon_sym_LT_LT] = ACTIONS(5118), - [anon_sym_GT_GT] = ACTIONS(5118), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym___attribute__] = ACTIONS(5116), - [anon_sym___attribute] = ACTIONS(5116), - [anon_sym_COLON] = ACTIONS(5118), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_signed] = ACTIONS(5116), - [anon_sym_unsigned] = ACTIONS(5116), - [anon_sym_long] = ACTIONS(5116), - [anon_sym_short] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_QMARK] = ACTIONS(5118), - [anon_sym_LT_EQ_GT] = ACTIONS(5118), - [anon_sym_or] = ACTIONS(5116), - [anon_sym_and] = ACTIONS(5116), - [anon_sym_bitor] = ACTIONS(5116), - [anon_sym_xor] = ACTIONS(5116), - [anon_sym_bitand] = ACTIONS(5116), - [anon_sym_not_eq] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_DOT] = ACTIONS(5116), - [anon_sym_DOT_STAR] = ACTIONS(5118), - [anon_sym_DASH_GT] = ACTIONS(5118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_requires] = ACTIONS(5116), + [STATE(1076)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1098), + [sym_compound_requirement] = STATE(1098), + [sym__requirement] = STATE(1098), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1098), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1738)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(5476), - [anon_sym___attribute] = ACTIONS(5476), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), + [STATE(1077)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1739)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), + [STATE(1078)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1740)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym___extension__] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_const] = ACTIONS(5024), - [anon_sym_constexpr] = ACTIONS(5031), - [anon_sym_volatile] = ACTIONS(5031), - [anon_sym_restrict] = ACTIONS(5031), - [anon_sym___restrict__] = ACTIONS(5031), - [anon_sym__Atomic] = ACTIONS(5031), - [anon_sym__Noreturn] = ACTIONS(5031), - [anon_sym_noreturn] = ACTIONS(5031), - [anon_sym__Nonnull] = ACTIONS(5031), - [anon_sym_mutable] = ACTIONS(5031), - [anon_sym_constinit] = ACTIONS(5031), - [anon_sym_consteval] = ACTIONS(5031), - [anon_sym_alignas] = ACTIONS(5031), - [anon_sym__Alignas] = ACTIONS(5031), - [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(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5026), - [anon_sym_xor] = ACTIONS(5033), - [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(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5033), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5031), - [anon_sym_decltype] = ACTIONS(5031), - [anon_sym_DASH_GT_STAR] = ACTIONS(5026), + [STATE(1079)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1741)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2561), - [anon_sym_COMMA] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2571), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_PERCENT] = ACTIONS(2571), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2571), - [anon_sym_EQ_EQ] = ACTIONS(2561), - [anon_sym_BANG_EQ] = ACTIONS(2561), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2561), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2571), - [anon_sym_GT_GT] = ACTIONS(2571), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym___attribute__] = ACTIONS(2571), - [anon_sym___attribute] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_signed] = ACTIONS(2571), - [anon_sym_unsigned] = ACTIONS(2571), - [anon_sym_long] = ACTIONS(2571), - [anon_sym_short] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_EQ] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2561), - [anon_sym_STAR_EQ] = ACTIONS(2561), - [anon_sym_SLASH_EQ] = ACTIONS(2561), - [anon_sym_PERCENT_EQ] = ACTIONS(2561), - [anon_sym_PLUS_EQ] = ACTIONS(2561), - [anon_sym_DASH_EQ] = ACTIONS(2561), - [anon_sym_LT_LT_EQ] = ACTIONS(2561), - [anon_sym_GT_GT_EQ] = ACTIONS(2561), - [anon_sym_AMP_EQ] = ACTIONS(2561), - [anon_sym_CARET_EQ] = ACTIONS(2561), - [anon_sym_PIPE_EQ] = ACTIONS(2561), - [anon_sym_LT_EQ_GT] = ACTIONS(2561), - [anon_sym_or] = ACTIONS(2571), - [anon_sym_and] = ACTIONS(2571), - [anon_sym_bitor] = ACTIONS(2571), - [anon_sym_xor] = ACTIONS(2571), - [anon_sym_bitand] = ACTIONS(2571), - [anon_sym_not_eq] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DOT] = ACTIONS(2571), - [anon_sym_DOT_STAR] = ACTIONS(2561), - [anon_sym_DASH_GT] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(2561), + [STATE(1080)] = { + [sym_else_clause] = STATE(1124), + [sym_identifier] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(1742)] = { - [sym_template_argument_list] = STATE(1740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5058), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4938), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4933), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4938), - [anon_sym_volatile] = ACTIONS(4938), - [anon_sym_restrict] = ACTIONS(4938), - [anon_sym___restrict__] = ACTIONS(4938), - [anon_sym__Atomic] = ACTIONS(4938), - [anon_sym__Noreturn] = ACTIONS(4938), - [anon_sym_noreturn] = ACTIONS(4938), - [anon_sym__Nonnull] = ACTIONS(4938), - [anon_sym_mutable] = ACTIONS(4938), - [anon_sym_constinit] = ACTIONS(4938), - [anon_sym_consteval] = ACTIONS(4938), - [anon_sym_alignas] = ACTIONS(4938), - [anon_sym__Alignas] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4933), - [anon_sym_or_eq] = ACTIONS(4933), - [anon_sym_xor_eq] = ACTIONS(4933), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4933), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4933), - [anon_sym_not_eq] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4938), - [anon_sym_decltype] = ACTIONS(4938), - [anon_sym_DASH_GT_STAR] = ACTIONS(4933), + [STATE(1081)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1743)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [aux_sym_preproc_else_token1] = ACTIONS(3019), - [aux_sym_preproc_elif_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_friend] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_protected] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), + [STATE(1082)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2061), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5406), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym___cdecl] = ACTIONS(5251), + [anon_sym___clrcall] = ACTIONS(5251), + [anon_sym___stdcall] = ACTIONS(5251), + [anon_sym___fastcall] = ACTIONS(5251), + [anon_sym___thiscall] = ACTIONS(5251), + [anon_sym___vectorcall] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1744)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token2] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [aux_sym_preproc_else_token1] = ACTIONS(3119), - [aux_sym_preproc_elif_token1] = ACTIONS(3119), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_friend] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), + [STATE(1083)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1086), + [sym_compound_requirement] = STATE(1086), + [sym__requirement] = STATE(1086), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5408), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1745)] = { - [sym_identifier] = ACTIONS(5478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_RPAREN] = ACTIONS(5480), - [aux_sym_preproc_if_token2] = ACTIONS(5480), - [aux_sym_preproc_else_token1] = ACTIONS(5480), - [aux_sym_preproc_elif_token1] = ACTIONS(5478), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_RBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), + [STATE(1084)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1092), + [sym_compound_requirement] = STATE(1092), + [sym__requirement] = STATE(1092), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1092), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5410), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1746)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [aux_sym_preproc_else_token1] = ACTIONS(3135), - [aux_sym_preproc_elif_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1085)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1106), + [sym_compound_requirement] = STATE(1106), + [sym__requirement] = STATE(1106), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5412), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1747)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [aux_sym_preproc_else_token1] = ACTIONS(3135), - [aux_sym_preproc_elif_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1086)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5414), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1748)] = { - [sym_identifier] = 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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3266), - [sym_preproc_directive] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_friend] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), + [STATE(1087)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5416), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1749)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token2] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [aux_sym_preproc_else_token1] = ACTIONS(3145), - [aux_sym_preproc_elif_token1] = ACTIONS(3145), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_friend] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), + [STATE(1088)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1750)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token2] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [aux_sym_preproc_else_token1] = ACTIONS(3149), - [aux_sym_preproc_elif_token1] = ACTIONS(3149), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_friend] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), + [STATE(1089)] = { + [sym_identifier] = ACTIONS(5233), + [anon_sym_LPAREN2] = ACTIONS(5235), + [anon_sym_BANG] = ACTIONS(5235), + [anon_sym_TILDE] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_AMP] = ACTIONS(5235), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym___extension__] = ACTIONS(5233), + [anon_sym_virtual] = ACTIONS(5233), + [anon_sym_extern] = ACTIONS(5233), + [anon_sym___attribute__] = ACTIONS(5233), + [anon_sym___attribute] = ACTIONS(5233), + [anon_sym_using] = ACTIONS(5233), + [anon_sym_COLON_COLON] = ACTIONS(5235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), + [anon_sym___declspec] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5235), + [anon_sym_signed] = ACTIONS(5233), + [anon_sym_unsigned] = ACTIONS(5233), + [anon_sym_long] = ACTIONS(5233), + [anon_sym_short] = ACTIONS(5233), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_static] = ACTIONS(5233), + [anon_sym_register] = ACTIONS(5233), + [anon_sym_inline] = ACTIONS(5233), + [anon_sym___inline] = ACTIONS(5233), + [anon_sym___inline__] = ACTIONS(5233), + [anon_sym___forceinline] = ACTIONS(5233), + [anon_sym_thread_local] = ACTIONS(5233), + [anon_sym___thread] = ACTIONS(5233), + [anon_sym_const] = ACTIONS(5233), + [anon_sym_constexpr] = ACTIONS(5233), + [anon_sym_volatile] = ACTIONS(5233), + [anon_sym_restrict] = ACTIONS(5233), + [anon_sym___restrict__] = ACTIONS(5233), + [anon_sym__Atomic] = ACTIONS(5233), + [anon_sym__Noreturn] = ACTIONS(5233), + [anon_sym_noreturn] = ACTIONS(5233), + [anon_sym__Nonnull] = ACTIONS(5233), + [anon_sym_mutable] = ACTIONS(5233), + [anon_sym_constinit] = ACTIONS(5233), + [anon_sym_consteval] = ACTIONS(5233), + [anon_sym_alignas] = ACTIONS(5233), + [anon_sym__Alignas] = ACTIONS(5233), + [sym_primitive_type] = ACTIONS(5233), + [anon_sym_enum] = ACTIONS(5233), + [anon_sym_class] = ACTIONS(5233), + [anon_sym_struct] = ACTIONS(5233), + [anon_sym_union] = ACTIONS(5233), + [anon_sym_if] = ACTIONS(5233), + [anon_sym_switch] = ACTIONS(5233), + [anon_sym_case] = ACTIONS(5233), + [anon_sym_default] = ACTIONS(5233), + [anon_sym_while] = ACTIONS(5233), + [anon_sym_do] = ACTIONS(5233), + [anon_sym_for] = ACTIONS(5233), + [anon_sym_return] = ACTIONS(5233), + [anon_sym_break] = ACTIONS(5233), + [anon_sym_continue] = ACTIONS(5233), + [anon_sym_goto] = ACTIONS(5233), + [anon_sym___try] = ACTIONS(5233), + [anon_sym___leave] = ACTIONS(5233), + [anon_sym_not] = ACTIONS(5233), + [anon_sym_compl] = ACTIONS(5233), + [anon_sym_DASH_DASH] = ACTIONS(5235), + [anon_sym_PLUS_PLUS] = ACTIONS(5235), + [anon_sym_sizeof] = ACTIONS(5233), + [anon_sym___alignof__] = ACTIONS(5233), + [anon_sym___alignof] = ACTIONS(5233), + [anon_sym__alignof] = ACTIONS(5233), + [anon_sym_alignof] = ACTIONS(5233), + [anon_sym__Alignof] = ACTIONS(5233), + [anon_sym_offsetof] = ACTIONS(5233), + [anon_sym__Generic] = ACTIONS(5233), + [anon_sym_typename] = ACTIONS(5233), + [anon_sym_asm] = ACTIONS(5233), + [anon_sym___asm__] = ACTIONS(5233), + [anon_sym___asm] = ACTIONS(5233), + [sym_number_literal] = ACTIONS(5235), + [anon_sym_L_SQUOTE] = ACTIONS(5235), + [anon_sym_u_SQUOTE] = ACTIONS(5235), + [anon_sym_U_SQUOTE] = ACTIONS(5235), + [anon_sym_u8_SQUOTE] = ACTIONS(5235), + [anon_sym_SQUOTE] = ACTIONS(5235), + [anon_sym_L_DQUOTE] = ACTIONS(5235), + [anon_sym_u_DQUOTE] = ACTIONS(5235), + [anon_sym_U_DQUOTE] = ACTIONS(5235), + [anon_sym_u8_DQUOTE] = ACTIONS(5235), + [anon_sym_DQUOTE] = ACTIONS(5235), + [sym_true] = ACTIONS(5233), + [sym_false] = ACTIONS(5233), + [anon_sym_NULL] = ACTIONS(5233), + [anon_sym_nullptr] = ACTIONS(5233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5233), + [anon_sym_decltype] = ACTIONS(5233), + [anon_sym_template] = ACTIONS(5233), + [anon_sym_try] = ACTIONS(5233), + [anon_sym_delete] = ACTIONS(5233), + [anon_sym_throw] = ACTIONS(5233), + [anon_sym_co_return] = ACTIONS(5233), + [anon_sym_co_yield] = ACTIONS(5233), + [anon_sym_R_DQUOTE] = ACTIONS(5235), + [anon_sym_LR_DQUOTE] = ACTIONS(5235), + [anon_sym_uR_DQUOTE] = ACTIONS(5235), + [anon_sym_UR_DQUOTE] = ACTIONS(5235), + [anon_sym_u8R_DQUOTE] = ACTIONS(5235), + [anon_sym_co_await] = ACTIONS(5233), + [anon_sym_new] = ACTIONS(5233), + [anon_sym_requires] = ACTIONS(5233), + [anon_sym_CARET_CARET] = ACTIONS(5235), + [anon_sym_LBRACK_COLON] = ACTIONS(5235), + [sym_this] = ACTIONS(5233), }, - [STATE(1751)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token2] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [aux_sym_preproc_else_token1] = ACTIONS(3238), - [aux_sym_preproc_elif_token1] = ACTIONS(3238), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_friend] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), + [STATE(1090)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1752)] = { - [sym_identifier] = ACTIONS(5482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [aux_sym_preproc_if_token2] = ACTIONS(5484), - [aux_sym_preproc_else_token1] = ACTIONS(5484), - [aux_sym_preproc_elif_token1] = ACTIONS(5482), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5484), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), + [STATE(1091)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1093), + [sym_compound_requirement] = STATE(1093), + [sym__requirement] = STATE(1093), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1093), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1753)] = { - [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_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), + [STATE(1092)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1754)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token2] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [aux_sym_preproc_else_token1] = ACTIONS(3276), - [aux_sym_preproc_elif_token1] = ACTIONS(3276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_friend] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), + [STATE(1093)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5426), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1755)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [aux_sym_preproc_else_token1] = ACTIONS(2683), - [aux_sym_preproc_elif_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1094)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1095), + [sym_compound_requirement] = STATE(1095), + [sym__requirement] = STATE(1095), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1095), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5428), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1756)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [aux_sym_preproc_else_token1] = ACTIONS(2683), - [aux_sym_preproc_elif_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1095)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1757)] = { - [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_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_friend] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), + [STATE(1096)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1758)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3290), - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_friend] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), + [STATE(1097)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5434), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1759)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [aux_sym_preproc_else_token1] = ACTIONS(2637), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1098)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5436), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1760)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [aux_sym_preproc_else_token1] = ACTIONS(2637), - [aux_sym_preproc_elif_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1099)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1761)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [aux_sym_preproc_else_token1] = ACTIONS(2641), - [aux_sym_preproc_elif_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1100)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1762)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [aux_sym_preproc_else_token1] = ACTIONS(2641), - [aux_sym_preproc_elif_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1101)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(5440), + [anon_sym_LPAREN2] = ACTIONS(5443), + [anon_sym_BANG] = ACTIONS(5446), + [anon_sym_TILDE] = ACTIONS(5446), + [anon_sym_DASH] = ACTIONS(5449), + [anon_sym_PLUS] = ACTIONS(5449), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(5452), + [anon_sym_SEMI] = ACTIONS(5455), + [anon_sym___extension__] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5461), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_RBRACE] = ACTIONS(5467), + [anon_sym_LBRACK] = ACTIONS(5469), + [sym_primitive_type] = ACTIONS(5472), + [anon_sym_not] = ACTIONS(5449), + [anon_sym_compl] = ACTIONS(5449), + [anon_sym_DASH_DASH] = ACTIONS(5475), + [anon_sym_PLUS_PLUS] = ACTIONS(5475), + [anon_sym_sizeof] = ACTIONS(5478), + [anon_sym___alignof__] = ACTIONS(5481), + [anon_sym___alignof] = ACTIONS(5481), + [anon_sym__alignof] = ACTIONS(5481), + [anon_sym_alignof] = ACTIONS(5481), + [anon_sym__Alignof] = ACTIONS(5481), + [anon_sym_offsetof] = ACTIONS(5484), + [anon_sym__Generic] = ACTIONS(5487), + [anon_sym_typename] = ACTIONS(5490), + [anon_sym_asm] = ACTIONS(5493), + [anon_sym___asm__] = ACTIONS(5493), + [anon_sym___asm] = ACTIONS(5493), + [sym_number_literal] = ACTIONS(5496), + [anon_sym_L_SQUOTE] = ACTIONS(5499), + [anon_sym_u_SQUOTE] = ACTIONS(5499), + [anon_sym_U_SQUOTE] = ACTIONS(5499), + [anon_sym_u8_SQUOTE] = ACTIONS(5499), + [anon_sym_SQUOTE] = ACTIONS(5499), + [anon_sym_L_DQUOTE] = ACTIONS(5502), + [anon_sym_u_DQUOTE] = ACTIONS(5502), + [anon_sym_U_DQUOTE] = ACTIONS(5502), + [anon_sym_u8_DQUOTE] = ACTIONS(5502), + [anon_sym_DQUOTE] = ACTIONS(5502), + [sym_true] = ACTIONS(5505), + [sym_false] = ACTIONS(5505), + [anon_sym_NULL] = ACTIONS(5508), + [anon_sym_nullptr] = ACTIONS(5508), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5514), + [anon_sym_delete] = ACTIONS(5517), + [anon_sym_R_DQUOTE] = ACTIONS(5520), + [anon_sym_LR_DQUOTE] = ACTIONS(5520), + [anon_sym_uR_DQUOTE] = ACTIONS(5520), + [anon_sym_UR_DQUOTE] = ACTIONS(5520), + [anon_sym_u8R_DQUOTE] = ACTIONS(5520), + [anon_sym_co_await] = ACTIONS(5523), + [anon_sym_new] = ACTIONS(5526), + [anon_sym_requires] = ACTIONS(5529), + [anon_sym_CARET_CARET] = ACTIONS(5532), + [anon_sym_LBRACK_COLON] = ACTIONS(5535), + [sym_this] = ACTIONS(5505), }, - [STATE(1763)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_signed] = ACTIONS(4996), - [anon_sym_unsigned] = ACTIONS(4996), - [anon_sym_long] = ACTIONS(4996), - [anon_sym_short] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [sym_primitive_type] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), + [STATE(1102)] = { + [sym_identifier] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(1764)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token2] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [aux_sym_preproc_else_token1] = ACTIONS(3296), - [aux_sym_preproc_elif_token1] = ACTIONS(3296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_friend] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), + [STATE(1103)] = { + [sym_identifier] = ACTIONS(5229), + [anon_sym_LPAREN2] = ACTIONS(5231), + [anon_sym_BANG] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5231), + [anon_sym_SEMI] = ACTIONS(5231), + [anon_sym___extension__] = ACTIONS(5229), + [anon_sym_virtual] = ACTIONS(5229), + [anon_sym_extern] = ACTIONS(5229), + [anon_sym___attribute__] = ACTIONS(5229), + [anon_sym___attribute] = ACTIONS(5229), + [anon_sym_using] = ACTIONS(5229), + [anon_sym_COLON_COLON] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), + [anon_sym___declspec] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5231), + [anon_sym_signed] = ACTIONS(5229), + [anon_sym_unsigned] = ACTIONS(5229), + [anon_sym_long] = ACTIONS(5229), + [anon_sym_short] = ACTIONS(5229), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_static] = ACTIONS(5229), + [anon_sym_register] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5229), + [anon_sym___inline] = ACTIONS(5229), + [anon_sym___inline__] = ACTIONS(5229), + [anon_sym___forceinline] = ACTIONS(5229), + [anon_sym_thread_local] = ACTIONS(5229), + [anon_sym___thread] = ACTIONS(5229), + [anon_sym_const] = ACTIONS(5229), + [anon_sym_constexpr] = ACTIONS(5229), + [anon_sym_volatile] = ACTIONS(5229), + [anon_sym_restrict] = ACTIONS(5229), + [anon_sym___restrict__] = ACTIONS(5229), + [anon_sym__Atomic] = ACTIONS(5229), + [anon_sym__Noreturn] = ACTIONS(5229), + [anon_sym_noreturn] = ACTIONS(5229), + [anon_sym__Nonnull] = ACTIONS(5229), + [anon_sym_mutable] = ACTIONS(5229), + [anon_sym_constinit] = ACTIONS(5229), + [anon_sym_consteval] = ACTIONS(5229), + [anon_sym_alignas] = ACTIONS(5229), + [anon_sym__Alignas] = ACTIONS(5229), + [sym_primitive_type] = ACTIONS(5229), + [anon_sym_enum] = ACTIONS(5229), + [anon_sym_class] = ACTIONS(5229), + [anon_sym_struct] = ACTIONS(5229), + [anon_sym_union] = ACTIONS(5229), + [anon_sym_if] = ACTIONS(5229), + [anon_sym_switch] = ACTIONS(5229), + [anon_sym_case] = ACTIONS(5229), + [anon_sym_default] = ACTIONS(5229), + [anon_sym_while] = ACTIONS(5229), + [anon_sym_do] = ACTIONS(5229), + [anon_sym_for] = ACTIONS(5229), + [anon_sym_return] = ACTIONS(5229), + [anon_sym_break] = ACTIONS(5229), + [anon_sym_continue] = ACTIONS(5229), + [anon_sym_goto] = ACTIONS(5229), + [anon_sym___try] = ACTIONS(5229), + [anon_sym___leave] = ACTIONS(5229), + [anon_sym_not] = ACTIONS(5229), + [anon_sym_compl] = ACTIONS(5229), + [anon_sym_DASH_DASH] = ACTIONS(5231), + [anon_sym_PLUS_PLUS] = ACTIONS(5231), + [anon_sym_sizeof] = ACTIONS(5229), + [anon_sym___alignof__] = ACTIONS(5229), + [anon_sym___alignof] = ACTIONS(5229), + [anon_sym__alignof] = ACTIONS(5229), + [anon_sym_alignof] = ACTIONS(5229), + [anon_sym__Alignof] = ACTIONS(5229), + [anon_sym_offsetof] = ACTIONS(5229), + [anon_sym__Generic] = ACTIONS(5229), + [anon_sym_typename] = ACTIONS(5229), + [anon_sym_asm] = ACTIONS(5229), + [anon_sym___asm__] = ACTIONS(5229), + [anon_sym___asm] = ACTIONS(5229), + [sym_number_literal] = ACTIONS(5231), + [anon_sym_L_SQUOTE] = ACTIONS(5231), + [anon_sym_u_SQUOTE] = ACTIONS(5231), + [anon_sym_U_SQUOTE] = ACTIONS(5231), + [anon_sym_u8_SQUOTE] = ACTIONS(5231), + [anon_sym_SQUOTE] = ACTIONS(5231), + [anon_sym_L_DQUOTE] = ACTIONS(5231), + [anon_sym_u_DQUOTE] = ACTIONS(5231), + [anon_sym_U_DQUOTE] = ACTIONS(5231), + [anon_sym_u8_DQUOTE] = ACTIONS(5231), + [anon_sym_DQUOTE] = ACTIONS(5231), + [sym_true] = ACTIONS(5229), + [sym_false] = ACTIONS(5229), + [anon_sym_NULL] = ACTIONS(5229), + [anon_sym_nullptr] = ACTIONS(5229), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5229), + [anon_sym_decltype] = ACTIONS(5229), + [anon_sym_template] = ACTIONS(5229), + [anon_sym_try] = ACTIONS(5229), + [anon_sym_delete] = ACTIONS(5229), + [anon_sym_throw] = ACTIONS(5229), + [anon_sym_co_return] = ACTIONS(5229), + [anon_sym_co_yield] = ACTIONS(5229), + [anon_sym_R_DQUOTE] = ACTIONS(5231), + [anon_sym_LR_DQUOTE] = ACTIONS(5231), + [anon_sym_uR_DQUOTE] = ACTIONS(5231), + [anon_sym_UR_DQUOTE] = ACTIONS(5231), + [anon_sym_u8R_DQUOTE] = ACTIONS(5231), + [anon_sym_co_await] = ACTIONS(5229), + [anon_sym_new] = ACTIONS(5229), + [anon_sym_requires] = ACTIONS(5229), + [anon_sym_CARET_CARET] = ACTIONS(5231), + [anon_sym_LBRACK_COLON] = ACTIONS(5231), + [sym_this] = ACTIONS(5229), }, - [STATE(1765)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token2] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [aux_sym_preproc_else_token1] = ACTIONS(2687), - [aux_sym_preproc_elif_token1] = ACTIONS(2687), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_friend] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_protected] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), + [STATE(1104)] = { + [sym_else_clause] = STATE(1140), + [sym_identifier] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3612), + [anon_sym_typedef] = ACTIONS(3612), + [anon_sym_virtual] = ACTIONS(3612), + [anon_sym_extern] = ACTIONS(3612), + [anon_sym___attribute__] = ACTIONS(3612), + [anon_sym___attribute] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), + [anon_sym___declspec] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_signed] = ACTIONS(3612), + [anon_sym_unsigned] = ACTIONS(3612), + [anon_sym_long] = ACTIONS(3612), + [anon_sym_short] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_register] = ACTIONS(3612), + [anon_sym_inline] = ACTIONS(3612), + [anon_sym___inline] = ACTIONS(3612), + [anon_sym___inline__] = ACTIONS(3612), + [anon_sym___forceinline] = ACTIONS(3612), + [anon_sym_thread_local] = ACTIONS(3612), + [anon_sym___thread] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_constexpr] = ACTIONS(3612), + [anon_sym_volatile] = ACTIONS(3612), + [anon_sym_restrict] = ACTIONS(3612), + [anon_sym___restrict__] = ACTIONS(3612), + [anon_sym__Atomic] = ACTIONS(3612), + [anon_sym__Noreturn] = ACTIONS(3612), + [anon_sym_noreturn] = ACTIONS(3612), + [anon_sym__Nonnull] = ACTIONS(3612), + [anon_sym_mutable] = ACTIONS(3612), + [anon_sym_constinit] = ACTIONS(3612), + [anon_sym_consteval] = ACTIONS(3612), + [anon_sym_alignas] = ACTIONS(3612), + [anon_sym__Alignas] = ACTIONS(3612), + [sym_primitive_type] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3612), + [anon_sym_union] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(5402), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_goto] = ACTIONS(3612), + [anon_sym___try] = ACTIONS(3612), + [anon_sym___leave] = ACTIONS(3612), + [anon_sym_not] = ACTIONS(3612), + [anon_sym_compl] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_sizeof] = ACTIONS(3612), + [anon_sym___alignof__] = ACTIONS(3612), + [anon_sym___alignof] = ACTIONS(3612), + [anon_sym__alignof] = ACTIONS(3612), + [anon_sym_alignof] = ACTIONS(3612), + [anon_sym__Alignof] = ACTIONS(3612), + [anon_sym_offsetof] = ACTIONS(3612), + [anon_sym__Generic] = ACTIONS(3612), + [anon_sym_typename] = ACTIONS(3612), + [anon_sym_asm] = ACTIONS(3612), + [anon_sym___asm__] = ACTIONS(3612), + [anon_sym___asm] = ACTIONS(3612), + [sym_number_literal] = ACTIONS(3614), + [anon_sym_L_SQUOTE] = ACTIONS(3614), + [anon_sym_u_SQUOTE] = ACTIONS(3614), + [anon_sym_U_SQUOTE] = ACTIONS(3614), + [anon_sym_u8_SQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_L_DQUOTE] = ACTIONS(3614), + [anon_sym_u_DQUOTE] = ACTIONS(3614), + [anon_sym_U_DQUOTE] = ACTIONS(3614), + [anon_sym_u8_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [anon_sym_NULL] = ACTIONS(3612), + [anon_sym_nullptr] = ACTIONS(3612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3612), + [anon_sym_decltype] = ACTIONS(3612), + [anon_sym_template] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_co_return] = ACTIONS(3612), + [anon_sym_co_yield] = ACTIONS(3612), + [anon_sym_R_DQUOTE] = ACTIONS(3614), + [anon_sym_LR_DQUOTE] = ACTIONS(3614), + [anon_sym_uR_DQUOTE] = ACTIONS(3614), + [anon_sym_UR_DQUOTE] = ACTIONS(3614), + [anon_sym_u8R_DQUOTE] = ACTIONS(3614), + [anon_sym_co_await] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_requires] = ACTIONS(3612), + [anon_sym_CARET_CARET] = ACTIONS(3614), + [anon_sym_LBRACK_COLON] = ACTIONS(3614), + [sym_this] = ACTIONS(3612), }, - [STATE(1766)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1105)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1109), + [sym_compound_requirement] = STATE(1109), + [sym__requirement] = STATE(1109), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1109), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1767)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1106)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1768)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [aux_sym_preproc_else_token1] = ACTIONS(2747), - [aux_sym_preproc_elif_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_private] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_friend] = ACTIONS(2747), - [anon_sym_public] = ACTIONS(2747), - [anon_sym_protected] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), + [STATE(1107)] = { + [sym_identifier] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_goto] = ACTIONS(2803), + [anon_sym___try] = ACTIONS(2803), + [anon_sym___leave] = ACTIONS(2803), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2803), + [anon_sym___alignof__] = ACTIONS(2803), + [anon_sym___alignof] = ACTIONS(2803), + [anon_sym__alignof] = ACTIONS(2803), + [anon_sym_alignof] = ACTIONS(2803), + [anon_sym__Alignof] = ACTIONS(2803), + [anon_sym_offsetof] = ACTIONS(2803), + [anon_sym__Generic] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_asm] = ACTIONS(2803), + [anon_sym___asm__] = ACTIONS(2803), + [anon_sym___asm] = ACTIONS(2803), + [sym_number_literal] = ACTIONS(2801), + [anon_sym_L_SQUOTE] = ACTIONS(2801), + [anon_sym_u_SQUOTE] = ACTIONS(2801), + [anon_sym_U_SQUOTE] = ACTIONS(2801), + [anon_sym_u8_SQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_L_DQUOTE] = ACTIONS(2801), + [anon_sym_u_DQUOTE] = ACTIONS(2801), + [anon_sym_U_DQUOTE] = ACTIONS(2801), + [anon_sym_u8_DQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [anon_sym_NULL] = ACTIONS(2803), + [anon_sym_nullptr] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_co_return] = ACTIONS(2803), + [anon_sym_co_yield] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_R_DQUOTE] = ACTIONS(2801), + [anon_sym_LR_DQUOTE] = ACTIONS(2801), + [anon_sym_uR_DQUOTE] = ACTIONS(2801), + [anon_sym_UR_DQUOTE] = ACTIONS(2801), + [anon_sym_u8R_DQUOTE] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_CARET_CARET] = ACTIONS(2801), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), }, - [STATE(1769)] = { - [sym_identifier] = ACTIONS(5486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(5488), - [aux_sym_preproc_if_token2] = ACTIONS(5488), - [aux_sym_preproc_else_token1] = ACTIONS(5488), - [aux_sym_preproc_elif_token1] = ACTIONS(5486), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5488), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5488), - [anon_sym_LPAREN2] = ACTIONS(5488), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5486), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5486), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5486), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5486), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_RBRACK] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(5486), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_STAR_EQ] = ACTIONS(5488), - [anon_sym_SLASH_EQ] = ACTIONS(5488), - [anon_sym_PERCENT_EQ] = ACTIONS(5488), - [anon_sym_PLUS_EQ] = ACTIONS(5488), - [anon_sym_DASH_EQ] = ACTIONS(5488), - [anon_sym_LT_LT_EQ] = ACTIONS(5488), - [anon_sym_GT_GT_EQ] = ACTIONS(5488), - [anon_sym_AMP_EQ] = ACTIONS(5488), - [anon_sym_CARET_EQ] = ACTIONS(5488), - [anon_sym_PIPE_EQ] = ACTIONS(5488), - [anon_sym_and_eq] = ACTIONS(5486), - [anon_sym_or_eq] = ACTIONS(5486), - [anon_sym_xor_eq] = ACTIONS(5486), - [anon_sym_LT_EQ_GT] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5486), - [anon_sym_and] = ACTIONS(5486), - [anon_sym_bitor] = ACTIONS(5486), - [anon_sym_xor] = ACTIONS(5486), - [anon_sym_bitand] = ACTIONS(5486), - [anon_sym_not_eq] = ACTIONS(5486), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_DOT_STAR] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_L_DQUOTE] = ACTIONS(5488), - [anon_sym_u_DQUOTE] = ACTIONS(5488), - [anon_sym_U_DQUOTE] = ACTIONS(5488), - [anon_sym_u8_DQUOTE] = ACTIONS(5488), - [anon_sym_DQUOTE] = ACTIONS(5488), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5488), - [anon_sym_LR_DQUOTE] = ACTIONS(5488), - [anon_sym_uR_DQUOTE] = ACTIONS(5488), - [anon_sym_UR_DQUOTE] = ACTIONS(5488), - [anon_sym_u8R_DQUOTE] = ACTIONS(5488), - [sym_literal_suffix] = ACTIONS(5486), + [STATE(1108)] = { + [sym_identifier] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_do] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_goto] = ACTIONS(2795), + [anon_sym___try] = ACTIONS(2795), + [anon_sym___leave] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2795), + [anon_sym_compl] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(2795), + [anon_sym___alignof__] = ACTIONS(2795), + [anon_sym___alignof] = ACTIONS(2795), + [anon_sym__alignof] = ACTIONS(2795), + [anon_sym_alignof] = ACTIONS(2795), + [anon_sym__Alignof] = ACTIONS(2795), + [anon_sym_offsetof] = ACTIONS(2795), + [anon_sym__Generic] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_asm] = ACTIONS(2795), + [anon_sym___asm__] = ACTIONS(2795), + [anon_sym___asm] = ACTIONS(2795), + [sym_number_literal] = ACTIONS(2793), + [anon_sym_L_SQUOTE] = ACTIONS(2793), + [anon_sym_u_SQUOTE] = ACTIONS(2793), + [anon_sym_U_SQUOTE] = ACTIONS(2793), + [anon_sym_u8_SQUOTE] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_L_DQUOTE] = ACTIONS(2793), + [anon_sym_u_DQUOTE] = ACTIONS(2793), + [anon_sym_U_DQUOTE] = ACTIONS(2793), + [anon_sym_u8_DQUOTE] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2793), + [sym_true] = ACTIONS(2795), + [sym_false] = ACTIONS(2795), + [anon_sym_NULL] = ACTIONS(2795), + [anon_sym_nullptr] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [anon_sym_delete] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_R_DQUOTE] = ACTIONS(2793), + [anon_sym_LR_DQUOTE] = ACTIONS(2793), + [anon_sym_uR_DQUOTE] = ACTIONS(2793), + [anon_sym_UR_DQUOTE] = ACTIONS(2793), + [anon_sym_u8R_DQUOTE] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2793), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_this] = ACTIONS(2795), }, - [STATE(1770)] = { - [sym_template_argument_list] = STATE(1869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4938), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4938), - [anon_sym_volatile] = ACTIONS(4938), - [anon_sym_restrict] = ACTIONS(4938), - [anon_sym___restrict__] = ACTIONS(4938), - [anon_sym__Atomic] = ACTIONS(4938), - [anon_sym__Noreturn] = ACTIONS(4938), - [anon_sym_noreturn] = ACTIONS(4938), - [anon_sym__Nonnull] = ACTIONS(4938), - [anon_sym_mutable] = ACTIONS(4938), - [anon_sym_constinit] = ACTIONS(4938), - [anon_sym_consteval] = ACTIONS(4938), - [anon_sym_alignas] = ACTIONS(4938), - [anon_sym__Alignas] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4933), - [anon_sym_or_eq] = ACTIONS(4933), - [anon_sym_xor_eq] = ACTIONS(4933), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4933), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4933), - [anon_sym_not_eq] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4938), - [anon_sym_decltype] = ACTIONS(4938), - [anon_sym_DASH_GT_STAR] = ACTIONS(4933), + [STATE(1109)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1101), + [sym_compound_requirement] = STATE(1101), + [sym__requirement] = STATE(1101), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1771)] = { - [sym_identifier] = ACTIONS(5493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_RPAREN] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5493), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5493), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5495), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5493), - [anon_sym_GT_GT] = ACTIONS(5493), - [anon_sym_SEMI] = ACTIONS(5495), - [anon_sym_COLON] = ACTIONS(5495), - [anon_sym_RBRACE] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(5495), - [anon_sym_EQ] = ACTIONS(5493), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_STAR_EQ] = ACTIONS(5495), - [anon_sym_SLASH_EQ] = ACTIONS(5495), - [anon_sym_PERCENT_EQ] = ACTIONS(5495), - [anon_sym_PLUS_EQ] = ACTIONS(5495), - [anon_sym_DASH_EQ] = ACTIONS(5495), - [anon_sym_LT_LT_EQ] = ACTIONS(5495), - [anon_sym_GT_GT_EQ] = ACTIONS(5495), - [anon_sym_AMP_EQ] = ACTIONS(5495), - [anon_sym_CARET_EQ] = ACTIONS(5495), - [anon_sym_PIPE_EQ] = ACTIONS(5495), - [anon_sym_and_eq] = ACTIONS(5493), - [anon_sym_or_eq] = ACTIONS(5493), - [anon_sym_xor_eq] = ACTIONS(5493), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5493), - [anon_sym_and] = ACTIONS(5493), - [anon_sym_bitor] = ACTIONS(5493), - [anon_sym_xor] = ACTIONS(5493), - [anon_sym_bitand] = ACTIONS(5493), - [anon_sym_not_eq] = ACTIONS(5493), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [anon_sym_L_DQUOTE] = ACTIONS(5495), - [anon_sym_u_DQUOTE] = ACTIONS(5495), - [anon_sym_U_DQUOTE] = ACTIONS(5495), - [anon_sym_u8_DQUOTE] = ACTIONS(5495), - [anon_sym_DQUOTE] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5495), - [anon_sym_LR_DQUOTE] = ACTIONS(5495), - [anon_sym_uR_DQUOTE] = ACTIONS(5495), - [anon_sym_UR_DQUOTE] = ACTIONS(5495), - [anon_sym_u8R_DQUOTE] = ACTIONS(5495), - [sym_literal_suffix] = ACTIONS(5493), + [STATE(1110)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1772)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [aux_sym_preproc_else_token1] = ACTIONS(2751), - [aux_sym_preproc_elif_token1] = ACTIONS(2751), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_private] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_friend] = ACTIONS(2751), - [anon_sym_public] = ACTIONS(2751), - [anon_sym_protected] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), + [STATE(1111)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1773)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token2] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [aux_sym_preproc_else_token1] = ACTIONS(3304), - [aux_sym_preproc_elif_token1] = ACTIONS(3304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), + [STATE(1112)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1774)] = { - [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___attribute] = ACTIONS(5000), - [anon_sym_COLON] = 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__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [sym_primitive_type] = ACTIONS(5000), - [anon_sym_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), + [STATE(1113)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1079), + [sym_compound_requirement] = STATE(1079), + [sym__requirement] = STATE(1079), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1775)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [aux_sym_preproc_else_token1] = ACTIONS(2649), - [aux_sym_preproc_elif_token1] = ACTIONS(2649), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_private] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_friend] = ACTIONS(2649), - [anon_sym_public] = ACTIONS(2649), - [anon_sym_protected] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), + [STATE(1114)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1776)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [aux_sym_preproc_else_token1] = ACTIONS(2655), - [aux_sym_preproc_elif_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_friend] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_protected] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), + [STATE(1115)] = { + [sym_expression_statement] = STATE(4052), + [sym_expression] = STATE(6806), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10957), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_type_requirement] = STATE(1090), + [sym_compound_requirement] = STATE(1090), + [sym__requirement] = STATE(1090), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_requirement_seq_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5378), + [anon_sym_RBRACE] = ACTIONS(5554), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(5382), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1777)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token2] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3037), - [aux_sym_preproc_elif_token1] = ACTIONS(3037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_private] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_friend] = ACTIONS(3037), - [anon_sym_public] = ACTIONS(3037), - [anon_sym_protected] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), + [STATE(1116)] = { + [sym_identifier] = ACTIONS(3872), + [anon_sym_LPAREN2] = ACTIONS(3874), + [anon_sym_BANG] = ACTIONS(3874), + [anon_sym_TILDE] = ACTIONS(3874), + [anon_sym_DASH] = ACTIONS(3872), + [anon_sym_PLUS] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3874), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym___extension__] = ACTIONS(3872), + [anon_sym_typedef] = ACTIONS(3872), + [anon_sym_virtual] = ACTIONS(3872), + [anon_sym_extern] = ACTIONS(3872), + [anon_sym___attribute__] = ACTIONS(3872), + [anon_sym___attribute] = ACTIONS(3872), + [anon_sym_COLON_COLON] = ACTIONS(3874), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), + [anon_sym___declspec] = ACTIONS(3872), + [anon_sym_LBRACE] = ACTIONS(3874), + [anon_sym_signed] = ACTIONS(3872), + [anon_sym_unsigned] = ACTIONS(3872), + [anon_sym_long] = ACTIONS(3872), + [anon_sym_short] = ACTIONS(3872), + [anon_sym_LBRACK] = ACTIONS(3872), + [anon_sym_static] = ACTIONS(3872), + [anon_sym_register] = ACTIONS(3872), + [anon_sym_inline] = ACTIONS(3872), + [anon_sym___inline] = ACTIONS(3872), + [anon_sym___inline__] = ACTIONS(3872), + [anon_sym___forceinline] = ACTIONS(3872), + [anon_sym_thread_local] = ACTIONS(3872), + [anon_sym___thread] = ACTIONS(3872), + [anon_sym_const] = ACTIONS(3872), + [anon_sym_constexpr] = ACTIONS(3872), + [anon_sym_volatile] = ACTIONS(3872), + [anon_sym_restrict] = ACTIONS(3872), + [anon_sym___restrict__] = ACTIONS(3872), + [anon_sym__Atomic] = ACTIONS(3872), + [anon_sym__Noreturn] = ACTIONS(3872), + [anon_sym_noreturn] = ACTIONS(3872), + [anon_sym__Nonnull] = ACTIONS(3872), + [anon_sym_mutable] = ACTIONS(3872), + [anon_sym_constinit] = ACTIONS(3872), + [anon_sym_consteval] = ACTIONS(3872), + [anon_sym_alignas] = ACTIONS(3872), + [anon_sym__Alignas] = ACTIONS(3872), + [sym_primitive_type] = ACTIONS(3872), + [anon_sym_enum] = ACTIONS(3872), + [anon_sym_class] = ACTIONS(3872), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3872), + [anon_sym_if] = ACTIONS(3872), + [anon_sym_else] = ACTIONS(3872), + [anon_sym_switch] = ACTIONS(3872), + [anon_sym_while] = ACTIONS(3872), + [anon_sym_do] = ACTIONS(3872), + [anon_sym_for] = ACTIONS(3872), + [anon_sym_return] = ACTIONS(3872), + [anon_sym_break] = ACTIONS(3872), + [anon_sym_continue] = ACTIONS(3872), + [anon_sym_goto] = ACTIONS(3872), + [anon_sym___try] = ACTIONS(3872), + [anon_sym___leave] = ACTIONS(3872), + [anon_sym_not] = ACTIONS(3872), + [anon_sym_compl] = ACTIONS(3872), + [anon_sym_DASH_DASH] = ACTIONS(3874), + [anon_sym_PLUS_PLUS] = ACTIONS(3874), + [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym___alignof__] = ACTIONS(3872), + [anon_sym___alignof] = ACTIONS(3872), + [anon_sym__alignof] = ACTIONS(3872), + [anon_sym_alignof] = ACTIONS(3872), + [anon_sym__Alignof] = ACTIONS(3872), + [anon_sym_offsetof] = ACTIONS(3872), + [anon_sym__Generic] = ACTIONS(3872), + [anon_sym_typename] = ACTIONS(3872), + [anon_sym_asm] = ACTIONS(3872), + [anon_sym___asm__] = ACTIONS(3872), + [anon_sym___asm] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3874), + [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(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3872), + [sym_false] = ACTIONS(3872), + [anon_sym_NULL] = ACTIONS(3872), + [anon_sym_nullptr] = ACTIONS(3872), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3872), + [anon_sym_decltype] = ACTIONS(3872), + [anon_sym_template] = ACTIONS(3872), + [anon_sym_try] = ACTIONS(3872), + [anon_sym_delete] = ACTIONS(3872), + [anon_sym_throw] = ACTIONS(3872), + [anon_sym_co_return] = ACTIONS(3872), + [anon_sym_co_yield] = ACTIONS(3872), + [anon_sym_R_DQUOTE] = ACTIONS(3874), + [anon_sym_LR_DQUOTE] = ACTIONS(3874), + [anon_sym_uR_DQUOTE] = ACTIONS(3874), + [anon_sym_UR_DQUOTE] = ACTIONS(3874), + [anon_sym_u8R_DQUOTE] = ACTIONS(3874), + [anon_sym_co_await] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3872), + [anon_sym_requires] = ACTIONS(3872), + [anon_sym_CARET_CARET] = ACTIONS(3874), + [anon_sym_LBRACK_COLON] = ACTIONS(3874), + [sym_this] = ACTIONS(3872), }, - [STATE(1778)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token2] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [aux_sym_preproc_else_token1] = ACTIONS(2735), - [aux_sym_preproc_elif_token1] = ACTIONS(2735), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_friend] = ACTIONS(2735), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), + [STATE(1117)] = { + [sym_identifier] = ACTIONS(3868), + [anon_sym_LPAREN2] = ACTIONS(3870), + [anon_sym_BANG] = ACTIONS(3870), + [anon_sym_TILDE] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3868), + [anon_sym_PLUS] = ACTIONS(3868), + [anon_sym_STAR] = ACTIONS(3870), + [anon_sym_AMP] = ACTIONS(3870), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym___extension__] = ACTIONS(3868), + [anon_sym_typedef] = ACTIONS(3868), + [anon_sym_virtual] = ACTIONS(3868), + [anon_sym_extern] = ACTIONS(3868), + [anon_sym___attribute__] = ACTIONS(3868), + [anon_sym___attribute] = ACTIONS(3868), + [anon_sym_COLON_COLON] = ACTIONS(3870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), + [anon_sym___declspec] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3870), + [anon_sym_signed] = ACTIONS(3868), + [anon_sym_unsigned] = ACTIONS(3868), + [anon_sym_long] = ACTIONS(3868), + [anon_sym_short] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(3868), + [anon_sym_static] = ACTIONS(3868), + [anon_sym_register] = ACTIONS(3868), + [anon_sym_inline] = ACTIONS(3868), + [anon_sym___inline] = ACTIONS(3868), + [anon_sym___inline__] = ACTIONS(3868), + [anon_sym___forceinline] = ACTIONS(3868), + [anon_sym_thread_local] = ACTIONS(3868), + [anon_sym___thread] = ACTIONS(3868), + [anon_sym_const] = ACTIONS(3868), + [anon_sym_constexpr] = ACTIONS(3868), + [anon_sym_volatile] = ACTIONS(3868), + [anon_sym_restrict] = ACTIONS(3868), + [anon_sym___restrict__] = ACTIONS(3868), + [anon_sym__Atomic] = ACTIONS(3868), + [anon_sym__Noreturn] = ACTIONS(3868), + [anon_sym_noreturn] = ACTIONS(3868), + [anon_sym__Nonnull] = ACTIONS(3868), + [anon_sym_mutable] = ACTIONS(3868), + [anon_sym_constinit] = ACTIONS(3868), + [anon_sym_consteval] = ACTIONS(3868), + [anon_sym_alignas] = ACTIONS(3868), + [anon_sym__Alignas] = ACTIONS(3868), + [sym_primitive_type] = ACTIONS(3868), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3868), + [anon_sym_struct] = ACTIONS(3868), + [anon_sym_union] = ACTIONS(3868), + [anon_sym_if] = ACTIONS(3868), + [anon_sym_else] = ACTIONS(3868), + [anon_sym_switch] = ACTIONS(3868), + [anon_sym_while] = ACTIONS(3868), + [anon_sym_do] = ACTIONS(3868), + [anon_sym_for] = ACTIONS(3868), + [anon_sym_return] = ACTIONS(3868), + [anon_sym_break] = ACTIONS(3868), + [anon_sym_continue] = ACTIONS(3868), + [anon_sym_goto] = ACTIONS(3868), + [anon_sym___try] = ACTIONS(3868), + [anon_sym___leave] = ACTIONS(3868), + [anon_sym_not] = ACTIONS(3868), + [anon_sym_compl] = ACTIONS(3868), + [anon_sym_DASH_DASH] = ACTIONS(3870), + [anon_sym_PLUS_PLUS] = ACTIONS(3870), + [anon_sym_sizeof] = ACTIONS(3868), + [anon_sym___alignof__] = ACTIONS(3868), + [anon_sym___alignof] = ACTIONS(3868), + [anon_sym__alignof] = ACTIONS(3868), + [anon_sym_alignof] = ACTIONS(3868), + [anon_sym__Alignof] = ACTIONS(3868), + [anon_sym_offsetof] = ACTIONS(3868), + [anon_sym__Generic] = ACTIONS(3868), + [anon_sym_typename] = ACTIONS(3868), + [anon_sym_asm] = ACTIONS(3868), + [anon_sym___asm__] = ACTIONS(3868), + [anon_sym___asm] = ACTIONS(3868), + [sym_number_literal] = ACTIONS(3870), + [anon_sym_L_SQUOTE] = ACTIONS(3870), + [anon_sym_u_SQUOTE] = ACTIONS(3870), + [anon_sym_U_SQUOTE] = ACTIONS(3870), + [anon_sym_u8_SQUOTE] = ACTIONS(3870), + [anon_sym_SQUOTE] = ACTIONS(3870), + [anon_sym_L_DQUOTE] = ACTIONS(3870), + [anon_sym_u_DQUOTE] = ACTIONS(3870), + [anon_sym_U_DQUOTE] = ACTIONS(3870), + [anon_sym_u8_DQUOTE] = ACTIONS(3870), + [anon_sym_DQUOTE] = ACTIONS(3870), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [anon_sym_NULL] = ACTIONS(3868), + [anon_sym_nullptr] = ACTIONS(3868), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3868), + [anon_sym_decltype] = ACTIONS(3868), + [anon_sym_template] = ACTIONS(3868), + [anon_sym_try] = ACTIONS(3868), + [anon_sym_delete] = ACTIONS(3868), + [anon_sym_throw] = ACTIONS(3868), + [anon_sym_co_return] = ACTIONS(3868), + [anon_sym_co_yield] = ACTIONS(3868), + [anon_sym_R_DQUOTE] = ACTIONS(3870), + [anon_sym_LR_DQUOTE] = ACTIONS(3870), + [anon_sym_uR_DQUOTE] = ACTIONS(3870), + [anon_sym_UR_DQUOTE] = ACTIONS(3870), + [anon_sym_u8R_DQUOTE] = ACTIONS(3870), + [anon_sym_co_await] = ACTIONS(3868), + [anon_sym_new] = ACTIONS(3868), + [anon_sym_requires] = ACTIONS(3868), + [anon_sym_CARET_CARET] = ACTIONS(3870), + [anon_sym_LBRACK_COLON] = ACTIONS(3870), + [sym_this] = ACTIONS(3868), }, - [STATE(1779)] = { - [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_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_friend] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), + [STATE(1118)] = { + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_PLUS] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3892), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_if] = ACTIONS(3890), + [anon_sym_else] = ACTIONS(3890), + [anon_sym_switch] = ACTIONS(3890), + [anon_sym_while] = ACTIONS(3890), + [anon_sym_do] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3890), + [anon_sym_return] = ACTIONS(3890), + [anon_sym_break] = ACTIONS(3890), + [anon_sym_continue] = ACTIONS(3890), + [anon_sym_goto] = ACTIONS(3890), + [anon_sym___try] = ACTIONS(3890), + [anon_sym___leave] = ACTIONS(3890), + [anon_sym_not] = ACTIONS(3890), + [anon_sym_compl] = ACTIONS(3890), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_sizeof] = ACTIONS(3890), + [anon_sym___alignof__] = ACTIONS(3890), + [anon_sym___alignof] = ACTIONS(3890), + [anon_sym__alignof] = ACTIONS(3890), + [anon_sym_alignof] = ACTIONS(3890), + [anon_sym__Alignof] = ACTIONS(3890), + [anon_sym_offsetof] = ACTIONS(3890), + [anon_sym__Generic] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [anon_sym_asm] = ACTIONS(3890), + [anon_sym___asm__] = ACTIONS(3890), + [anon_sym___asm] = ACTIONS(3890), + [sym_number_literal] = ACTIONS(3892), + [anon_sym_L_SQUOTE] = ACTIONS(3892), + [anon_sym_u_SQUOTE] = ACTIONS(3892), + [anon_sym_U_SQUOTE] = ACTIONS(3892), + [anon_sym_u8_SQUOTE] = ACTIONS(3892), + [anon_sym_SQUOTE] = ACTIONS(3892), + [anon_sym_L_DQUOTE] = ACTIONS(3892), + [anon_sym_u_DQUOTE] = ACTIONS(3892), + [anon_sym_U_DQUOTE] = ACTIONS(3892), + [anon_sym_u8_DQUOTE] = ACTIONS(3892), + [anon_sym_DQUOTE] = ACTIONS(3892), + [sym_true] = ACTIONS(3890), + [sym_false] = ACTIONS(3890), + [anon_sym_NULL] = ACTIONS(3890), + [anon_sym_nullptr] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_try] = ACTIONS(3890), + [anon_sym_delete] = ACTIONS(3890), + [anon_sym_throw] = ACTIONS(3890), + [anon_sym_co_return] = ACTIONS(3890), + [anon_sym_co_yield] = ACTIONS(3890), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_co_await] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3890), + [anon_sym_requires] = ACTIONS(3890), + [anon_sym_CARET_CARET] = ACTIONS(3892), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [sym_this] = ACTIONS(3890), }, - [STATE(1780)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token2] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [aux_sym_preproc_else_token1] = ACTIONS(3217), - [aux_sym_preproc_elif_token1] = ACTIONS(3217), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_friend] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), + [STATE(1119)] = { + [sym_identifier] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(1781)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [aux_sym_preproc_else_token1] = ACTIONS(2919), - [aux_sym_preproc_elif_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1120)] = { + [sym_identifier] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_goto] = ACTIONS(3680), + [anon_sym___try] = ACTIONS(3680), + [anon_sym___leave] = ACTIONS(3680), + [anon_sym_not] = ACTIONS(3680), + [anon_sym_compl] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_sizeof] = ACTIONS(3680), + [anon_sym___alignof__] = ACTIONS(3680), + [anon_sym___alignof] = ACTIONS(3680), + [anon_sym__alignof] = ACTIONS(3680), + [anon_sym_alignof] = ACTIONS(3680), + [anon_sym__Alignof] = ACTIONS(3680), + [anon_sym_offsetof] = ACTIONS(3680), + [anon_sym__Generic] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [anon_sym_asm] = ACTIONS(3680), + [anon_sym___asm__] = ACTIONS(3680), + [anon_sym___asm] = ACTIONS(3680), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_L_SQUOTE] = ACTIONS(3682), + [anon_sym_u_SQUOTE] = ACTIONS(3682), + [anon_sym_U_SQUOTE] = ACTIONS(3682), + [anon_sym_u8_SQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_L_DQUOTE] = ACTIONS(3682), + [anon_sym_u_DQUOTE] = ACTIONS(3682), + [anon_sym_U_DQUOTE] = ACTIONS(3682), + [anon_sym_u8_DQUOTE] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [anon_sym_NULL] = ACTIONS(3680), + [anon_sym_nullptr] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_co_return] = ACTIONS(3680), + [anon_sym_co_yield] = ACTIONS(3680), + [anon_sym_R_DQUOTE] = ACTIONS(3682), + [anon_sym_LR_DQUOTE] = ACTIONS(3682), + [anon_sym_uR_DQUOTE] = ACTIONS(3682), + [anon_sym_UR_DQUOTE] = ACTIONS(3682), + [anon_sym_u8R_DQUOTE] = ACTIONS(3682), + [anon_sym_co_await] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_requires] = ACTIONS(3680), + [anon_sym_CARET_CARET] = ACTIONS(3682), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [sym_this] = ACTIONS(3680), }, - [STATE(1782)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [aux_sym_preproc_else_token1] = ACTIONS(2919), - [aux_sym_preproc_elif_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1121)] = { + [sym_identifier] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, - [STATE(1783)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [aux_sym_preproc_else_token1] = ACTIONS(2951), - [aux_sym_preproc_elif_token1] = ACTIONS(2951), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_friend] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), + [STATE(1122)] = { + [sym_identifier] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), }, - [STATE(1784)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [aux_sym_preproc_else_token1] = ACTIONS(2955), - [aux_sym_preproc_elif_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), + [STATE(1123)] = { + [sym_identifier] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(3866), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3866), + [anon_sym_AMP] = ACTIONS(3866), + [anon_sym_SEMI] = ACTIONS(3866), + [anon_sym___extension__] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_virtual] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym___attribute__] = ACTIONS(3864), + [anon_sym___attribute] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3866), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), + [anon_sym___declspec] = ACTIONS(3864), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym___inline] = ACTIONS(3864), + [anon_sym___inline__] = ACTIONS(3864), + [anon_sym___forceinline] = ACTIONS(3864), + [anon_sym_thread_local] = ACTIONS(3864), + [anon_sym___thread] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym___restrict__] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym__Noreturn] = ACTIONS(3864), + [anon_sym_noreturn] = ACTIONS(3864), + [anon_sym__Nonnull] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_constinit] = ACTIONS(3864), + [anon_sym_consteval] = ACTIONS(3864), + [anon_sym_alignas] = ACTIONS(3864), + [anon_sym__Alignas] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_if] = ACTIONS(3864), + [anon_sym_else] = ACTIONS(3864), + [anon_sym_switch] = ACTIONS(3864), + [anon_sym_while] = ACTIONS(3864), + [anon_sym_do] = ACTIONS(3864), + [anon_sym_for] = ACTIONS(3864), + [anon_sym_return] = ACTIONS(3864), + [anon_sym_break] = ACTIONS(3864), + [anon_sym_continue] = ACTIONS(3864), + [anon_sym_goto] = ACTIONS(3864), + [anon_sym___try] = ACTIONS(3864), + [anon_sym___leave] = ACTIONS(3864), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(3866), + [anon_sym_PLUS_PLUS] = ACTIONS(3866), + [anon_sym_sizeof] = ACTIONS(3864), + [anon_sym___alignof__] = ACTIONS(3864), + [anon_sym___alignof] = ACTIONS(3864), + [anon_sym__alignof] = ACTIONS(3864), + [anon_sym_alignof] = ACTIONS(3864), + [anon_sym__Alignof] = ACTIONS(3864), + [anon_sym_offsetof] = ACTIONS(3864), + [anon_sym__Generic] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(3864), + [anon_sym___asm__] = ACTIONS(3864), + [anon_sym___asm] = ACTIONS(3864), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_L_SQUOTE] = ACTIONS(3866), + [anon_sym_u_SQUOTE] = ACTIONS(3866), + [anon_sym_U_SQUOTE] = ACTIONS(3866), + [anon_sym_u8_SQUOTE] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(3866), + [anon_sym_L_DQUOTE] = ACTIONS(3866), + [anon_sym_u_DQUOTE] = ACTIONS(3866), + [anon_sym_U_DQUOTE] = ACTIONS(3866), + [anon_sym_u8_DQUOTE] = ACTIONS(3866), + [anon_sym_DQUOTE] = ACTIONS(3866), + [sym_true] = ACTIONS(3864), + [sym_false] = ACTIONS(3864), + [anon_sym_NULL] = ACTIONS(3864), + [anon_sym_nullptr] = ACTIONS(3864), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3864), + [anon_sym_decltype] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_try] = ACTIONS(3864), + [anon_sym_delete] = ACTIONS(3864), + [anon_sym_throw] = ACTIONS(3864), + [anon_sym_co_return] = ACTIONS(3864), + [anon_sym_co_yield] = ACTIONS(3864), + [anon_sym_R_DQUOTE] = ACTIONS(3866), + [anon_sym_LR_DQUOTE] = ACTIONS(3866), + [anon_sym_uR_DQUOTE] = ACTIONS(3866), + [anon_sym_UR_DQUOTE] = ACTIONS(3866), + [anon_sym_u8R_DQUOTE] = ACTIONS(3866), + [anon_sym_co_await] = ACTIONS(3864), + [anon_sym_new] = ACTIONS(3864), + [anon_sym_requires] = ACTIONS(3864), + [anon_sym_CARET_CARET] = ACTIONS(3866), + [anon_sym_LBRACK_COLON] = ACTIONS(3866), + [sym_this] = ACTIONS(3864), }, - [STATE(1785)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2983), - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_private] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_friend] = ACTIONS(2981), - [anon_sym_public] = ACTIONS(2981), - [anon_sym_protected] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), + [STATE(1124)] = { + [sym_identifier] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(1786)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token2] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [aux_sym_preproc_else_token1] = ACTIONS(3337), - [aux_sym_preproc_elif_token1] = ACTIONS(3337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_friend] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), + [STATE(1125)] = { + [sym_identifier] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3688), + [anon_sym_PLUS] = ACTIONS(3688), + [anon_sym_STAR] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym___extension__] = ACTIONS(3688), + [anon_sym_typedef] = ACTIONS(3688), + [anon_sym_virtual] = ACTIONS(3688), + [anon_sym_extern] = ACTIONS(3688), + [anon_sym___attribute__] = ACTIONS(3688), + [anon_sym___attribute] = ACTIONS(3688), + [anon_sym_COLON_COLON] = ACTIONS(3690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), + [anon_sym___declspec] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_signed] = ACTIONS(3688), + [anon_sym_unsigned] = ACTIONS(3688), + [anon_sym_long] = ACTIONS(3688), + [anon_sym_short] = ACTIONS(3688), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3688), + [anon_sym_register] = ACTIONS(3688), + [anon_sym_inline] = ACTIONS(3688), + [anon_sym___inline] = ACTIONS(3688), + [anon_sym___inline__] = ACTIONS(3688), + [anon_sym___forceinline] = ACTIONS(3688), + [anon_sym_thread_local] = ACTIONS(3688), + [anon_sym___thread] = ACTIONS(3688), + [anon_sym_const] = ACTIONS(3688), + [anon_sym_constexpr] = ACTIONS(3688), + [anon_sym_volatile] = ACTIONS(3688), + [anon_sym_restrict] = ACTIONS(3688), + [anon_sym___restrict__] = ACTIONS(3688), + [anon_sym__Atomic] = ACTIONS(3688), + [anon_sym__Noreturn] = ACTIONS(3688), + [anon_sym_noreturn] = ACTIONS(3688), + [anon_sym__Nonnull] = ACTIONS(3688), + [anon_sym_mutable] = ACTIONS(3688), + [anon_sym_constinit] = ACTIONS(3688), + [anon_sym_consteval] = ACTIONS(3688), + [anon_sym_alignas] = ACTIONS(3688), + [anon_sym__Alignas] = ACTIONS(3688), + [sym_primitive_type] = ACTIONS(3688), + [anon_sym_enum] = ACTIONS(3688), + [anon_sym_class] = ACTIONS(3688), + [anon_sym_struct] = ACTIONS(3688), + [anon_sym_union] = ACTIONS(3688), + [anon_sym_if] = ACTIONS(3688), + [anon_sym_else] = ACTIONS(3688), + [anon_sym_switch] = ACTIONS(3688), + [anon_sym_while] = ACTIONS(3688), + [anon_sym_do] = ACTIONS(3688), + [anon_sym_for] = ACTIONS(3688), + [anon_sym_return] = ACTIONS(3688), + [anon_sym_break] = ACTIONS(3688), + [anon_sym_continue] = ACTIONS(3688), + [anon_sym_goto] = ACTIONS(3688), + [anon_sym___try] = ACTIONS(3688), + [anon_sym___leave] = ACTIONS(3688), + [anon_sym_not] = ACTIONS(3688), + [anon_sym_compl] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_sizeof] = ACTIONS(3688), + [anon_sym___alignof__] = ACTIONS(3688), + [anon_sym___alignof] = ACTIONS(3688), + [anon_sym__alignof] = ACTIONS(3688), + [anon_sym_alignof] = ACTIONS(3688), + [anon_sym__Alignof] = ACTIONS(3688), + [anon_sym_offsetof] = ACTIONS(3688), + [anon_sym__Generic] = ACTIONS(3688), + [anon_sym_typename] = ACTIONS(3688), + [anon_sym_asm] = ACTIONS(3688), + [anon_sym___asm__] = ACTIONS(3688), + [anon_sym___asm] = ACTIONS(3688), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_L_SQUOTE] = ACTIONS(3690), + [anon_sym_u_SQUOTE] = ACTIONS(3690), + [anon_sym_U_SQUOTE] = ACTIONS(3690), + [anon_sym_u8_SQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_L_DQUOTE] = ACTIONS(3690), + [anon_sym_u_DQUOTE] = ACTIONS(3690), + [anon_sym_U_DQUOTE] = ACTIONS(3690), + [anon_sym_u8_DQUOTE] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [anon_sym_NULL] = ACTIONS(3688), + [anon_sym_nullptr] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3688), + [anon_sym_decltype] = ACTIONS(3688), + [anon_sym_template] = ACTIONS(3688), + [anon_sym_try] = ACTIONS(3688), + [anon_sym_delete] = ACTIONS(3688), + [anon_sym_throw] = ACTIONS(3688), + [anon_sym_co_return] = ACTIONS(3688), + [anon_sym_co_yield] = ACTIONS(3688), + [anon_sym_R_DQUOTE] = ACTIONS(3690), + [anon_sym_LR_DQUOTE] = ACTIONS(3690), + [anon_sym_uR_DQUOTE] = ACTIONS(3690), + [anon_sym_UR_DQUOTE] = ACTIONS(3690), + [anon_sym_u8R_DQUOTE] = ACTIONS(3690), + [anon_sym_co_await] = ACTIONS(3688), + [anon_sym_new] = ACTIONS(3688), + [anon_sym_requires] = ACTIONS(3688), + [anon_sym_CARET_CARET] = ACTIONS(3690), + [anon_sym_LBRACK_COLON] = ACTIONS(3690), + [sym_this] = ACTIONS(3688), }, - [STATE(1787)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [aux_sym_preproc_else_token1] = ACTIONS(3023), - [aux_sym_preproc_elif_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_friend] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), + [STATE(1126)] = { + [sym_identifier] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3696), + [anon_sym_virtual] = ACTIONS(3696), + [anon_sym_extern] = ACTIONS(3696), + [anon_sym___attribute__] = ACTIONS(3696), + [anon_sym___attribute] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), + [anon_sym___declspec] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_signed] = ACTIONS(3696), + [anon_sym_unsigned] = ACTIONS(3696), + [anon_sym_long] = ACTIONS(3696), + [anon_sym_short] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_register] = ACTIONS(3696), + [anon_sym_inline] = ACTIONS(3696), + [anon_sym___inline] = ACTIONS(3696), + [anon_sym___inline__] = ACTIONS(3696), + [anon_sym___forceinline] = ACTIONS(3696), + [anon_sym_thread_local] = ACTIONS(3696), + [anon_sym___thread] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_constexpr] = ACTIONS(3696), + [anon_sym_volatile] = ACTIONS(3696), + [anon_sym_restrict] = ACTIONS(3696), + [anon_sym___restrict__] = ACTIONS(3696), + [anon_sym__Atomic] = ACTIONS(3696), + [anon_sym__Noreturn] = ACTIONS(3696), + [anon_sym_noreturn] = ACTIONS(3696), + [anon_sym__Nonnull] = ACTIONS(3696), + [anon_sym_mutable] = ACTIONS(3696), + [anon_sym_constinit] = ACTIONS(3696), + [anon_sym_consteval] = ACTIONS(3696), + [anon_sym_alignas] = ACTIONS(3696), + [anon_sym__Alignas] = ACTIONS(3696), + [sym_primitive_type] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3696), + [anon_sym_union] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_goto] = ACTIONS(3696), + [anon_sym___try] = ACTIONS(3696), + [anon_sym___leave] = ACTIONS(3696), + [anon_sym_not] = ACTIONS(3696), + [anon_sym_compl] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3696), + [anon_sym___alignof__] = ACTIONS(3696), + [anon_sym___alignof] = ACTIONS(3696), + [anon_sym__alignof] = ACTIONS(3696), + [anon_sym_alignof] = ACTIONS(3696), + [anon_sym__Alignof] = ACTIONS(3696), + [anon_sym_offsetof] = ACTIONS(3696), + [anon_sym__Generic] = ACTIONS(3696), + [anon_sym_typename] = ACTIONS(3696), + [anon_sym_asm] = ACTIONS(3696), + [anon_sym___asm__] = ACTIONS(3696), + [anon_sym___asm] = ACTIONS(3696), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_L_SQUOTE] = ACTIONS(3698), + [anon_sym_u_SQUOTE] = ACTIONS(3698), + [anon_sym_U_SQUOTE] = ACTIONS(3698), + [anon_sym_u8_SQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_L_DQUOTE] = ACTIONS(3698), + [anon_sym_u_DQUOTE] = ACTIONS(3698), + [anon_sym_U_DQUOTE] = ACTIONS(3698), + [anon_sym_u8_DQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [anon_sym_NULL] = ACTIONS(3696), + [anon_sym_nullptr] = ACTIONS(3696), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3696), + [anon_sym_decltype] = ACTIONS(3696), + [anon_sym_template] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_co_return] = ACTIONS(3696), + [anon_sym_co_yield] = ACTIONS(3696), + [anon_sym_R_DQUOTE] = ACTIONS(3698), + [anon_sym_LR_DQUOTE] = ACTIONS(3698), + [anon_sym_uR_DQUOTE] = ACTIONS(3698), + [anon_sym_UR_DQUOTE] = ACTIONS(3698), + [anon_sym_u8R_DQUOTE] = ACTIONS(3698), + [anon_sym_co_await] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_requires] = ACTIONS(3696), + [anon_sym_CARET_CARET] = ACTIONS(3698), + [anon_sym_LBRACK_COLON] = ACTIONS(3698), + [sym_this] = ACTIONS(3696), }, - [STATE(1788)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token2] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [aux_sym_preproc_else_token1] = ACTIONS(3041), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_friend] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), + [STATE(1127)] = { + [sym_identifier] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym___extension__] = ACTIONS(3720), + [anon_sym_typedef] = ACTIONS(3720), + [anon_sym_virtual] = ACTIONS(3720), + [anon_sym_extern] = ACTIONS(3720), + [anon_sym___attribute__] = ACTIONS(3720), + [anon_sym___attribute] = ACTIONS(3720), + [anon_sym_COLON_COLON] = ACTIONS(3722), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), + [anon_sym___declspec] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3720), + [anon_sym_unsigned] = ACTIONS(3720), + [anon_sym_long] = ACTIONS(3720), + [anon_sym_short] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_register] = ACTIONS(3720), + [anon_sym_inline] = ACTIONS(3720), + [anon_sym___inline] = ACTIONS(3720), + [anon_sym___inline__] = ACTIONS(3720), + [anon_sym___forceinline] = ACTIONS(3720), + [anon_sym_thread_local] = ACTIONS(3720), + [anon_sym___thread] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_constexpr] = ACTIONS(3720), + [anon_sym_volatile] = ACTIONS(3720), + [anon_sym_restrict] = ACTIONS(3720), + [anon_sym___restrict__] = ACTIONS(3720), + [anon_sym__Atomic] = ACTIONS(3720), + [anon_sym__Noreturn] = ACTIONS(3720), + [anon_sym_noreturn] = ACTIONS(3720), + [anon_sym__Nonnull] = ACTIONS(3720), + [anon_sym_mutable] = ACTIONS(3720), + [anon_sym_constinit] = ACTIONS(3720), + [anon_sym_consteval] = ACTIONS(3720), + [anon_sym_alignas] = ACTIONS(3720), + [anon_sym__Alignas] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_struct] = ACTIONS(3720), + [anon_sym_union] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_else] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_goto] = ACTIONS(3720), + [anon_sym___try] = ACTIONS(3720), + [anon_sym___leave] = ACTIONS(3720), + [anon_sym_not] = ACTIONS(3720), + [anon_sym_compl] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_sizeof] = ACTIONS(3720), + [anon_sym___alignof__] = ACTIONS(3720), + [anon_sym___alignof] = ACTIONS(3720), + [anon_sym__alignof] = ACTIONS(3720), + [anon_sym_alignof] = ACTIONS(3720), + [anon_sym__Alignof] = ACTIONS(3720), + [anon_sym_offsetof] = ACTIONS(3720), + [anon_sym__Generic] = ACTIONS(3720), + [anon_sym_typename] = ACTIONS(3720), + [anon_sym_asm] = ACTIONS(3720), + [anon_sym___asm__] = ACTIONS(3720), + [anon_sym___asm] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3722), + [anon_sym_L_SQUOTE] = ACTIONS(3722), + [anon_sym_u_SQUOTE] = ACTIONS(3722), + [anon_sym_U_SQUOTE] = ACTIONS(3722), + [anon_sym_u8_SQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_L_DQUOTE] = ACTIONS(3722), + [anon_sym_u_DQUOTE] = ACTIONS(3722), + [anon_sym_U_DQUOTE] = ACTIONS(3722), + [anon_sym_u8_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [anon_sym_NULL] = ACTIONS(3720), + [anon_sym_nullptr] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(3720), + [anon_sym_template] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_co_return] = ACTIONS(3720), + [anon_sym_co_yield] = ACTIONS(3720), + [anon_sym_R_DQUOTE] = ACTIONS(3722), + [anon_sym_LR_DQUOTE] = ACTIONS(3722), + [anon_sym_uR_DQUOTE] = ACTIONS(3722), + [anon_sym_UR_DQUOTE] = ACTIONS(3722), + [anon_sym_u8R_DQUOTE] = ACTIONS(3722), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_requires] = ACTIONS(3720), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3722), + [sym_this] = ACTIONS(3720), }, - [STATE(1789)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token2] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [aux_sym_preproc_else_token1] = ACTIONS(3055), - [aux_sym_preproc_elif_token1] = ACTIONS(3055), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_friend] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), + [STATE(1128)] = { + [sym_identifier] = ACTIONS(3894), + [anon_sym_LPAREN2] = ACTIONS(3896), + [anon_sym_BANG] = ACTIONS(3896), + [anon_sym_TILDE] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AMP] = ACTIONS(3896), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym___extension__] = ACTIONS(3894), + [anon_sym_typedef] = ACTIONS(3894), + [anon_sym_virtual] = ACTIONS(3894), + [anon_sym_extern] = ACTIONS(3894), + [anon_sym___attribute__] = ACTIONS(3894), + [anon_sym___attribute] = ACTIONS(3894), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), + [anon_sym___declspec] = ACTIONS(3894), + [anon_sym_LBRACE] = ACTIONS(3896), + [anon_sym_signed] = ACTIONS(3894), + [anon_sym_unsigned] = ACTIONS(3894), + [anon_sym_long] = ACTIONS(3894), + [anon_sym_short] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3894), + [anon_sym_static] = ACTIONS(3894), + [anon_sym_register] = ACTIONS(3894), + [anon_sym_inline] = ACTIONS(3894), + [anon_sym___inline] = ACTIONS(3894), + [anon_sym___inline__] = ACTIONS(3894), + [anon_sym___forceinline] = ACTIONS(3894), + [anon_sym_thread_local] = ACTIONS(3894), + [anon_sym___thread] = ACTIONS(3894), + [anon_sym_const] = ACTIONS(3894), + [anon_sym_constexpr] = ACTIONS(3894), + [anon_sym_volatile] = ACTIONS(3894), + [anon_sym_restrict] = ACTIONS(3894), + [anon_sym___restrict__] = ACTIONS(3894), + [anon_sym__Atomic] = ACTIONS(3894), + [anon_sym__Noreturn] = ACTIONS(3894), + [anon_sym_noreturn] = ACTIONS(3894), + [anon_sym__Nonnull] = ACTIONS(3894), + [anon_sym_mutable] = ACTIONS(3894), + [anon_sym_constinit] = ACTIONS(3894), + [anon_sym_consteval] = ACTIONS(3894), + [anon_sym_alignas] = ACTIONS(3894), + [anon_sym__Alignas] = ACTIONS(3894), + [sym_primitive_type] = ACTIONS(3894), + [anon_sym_enum] = ACTIONS(3894), + [anon_sym_class] = ACTIONS(3894), + [anon_sym_struct] = ACTIONS(3894), + [anon_sym_union] = ACTIONS(3894), + [anon_sym_if] = ACTIONS(3894), + [anon_sym_else] = ACTIONS(3894), + [anon_sym_switch] = ACTIONS(3894), + [anon_sym_while] = ACTIONS(3894), + [anon_sym_do] = ACTIONS(3894), + [anon_sym_for] = ACTIONS(3894), + [anon_sym_return] = ACTIONS(3894), + [anon_sym_break] = ACTIONS(3894), + [anon_sym_continue] = ACTIONS(3894), + [anon_sym_goto] = ACTIONS(3894), + [anon_sym___try] = ACTIONS(3894), + [anon_sym___leave] = ACTIONS(3894), + [anon_sym_not] = ACTIONS(3894), + [anon_sym_compl] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3896), + [anon_sym_PLUS_PLUS] = ACTIONS(3896), + [anon_sym_sizeof] = ACTIONS(3894), + [anon_sym___alignof__] = ACTIONS(3894), + [anon_sym___alignof] = ACTIONS(3894), + [anon_sym__alignof] = ACTIONS(3894), + [anon_sym_alignof] = ACTIONS(3894), + [anon_sym__Alignof] = ACTIONS(3894), + [anon_sym_offsetof] = ACTIONS(3894), + [anon_sym__Generic] = ACTIONS(3894), + [anon_sym_typename] = ACTIONS(3894), + [anon_sym_asm] = ACTIONS(3894), + [anon_sym___asm__] = ACTIONS(3894), + [anon_sym___asm] = ACTIONS(3894), + [sym_number_literal] = ACTIONS(3896), + [anon_sym_L_SQUOTE] = ACTIONS(3896), + [anon_sym_u_SQUOTE] = ACTIONS(3896), + [anon_sym_U_SQUOTE] = ACTIONS(3896), + [anon_sym_u8_SQUOTE] = ACTIONS(3896), + [anon_sym_SQUOTE] = ACTIONS(3896), + [anon_sym_L_DQUOTE] = ACTIONS(3896), + [anon_sym_u_DQUOTE] = ACTIONS(3896), + [anon_sym_U_DQUOTE] = ACTIONS(3896), + [anon_sym_u8_DQUOTE] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym_true] = ACTIONS(3894), + [sym_false] = ACTIONS(3894), + [anon_sym_NULL] = ACTIONS(3894), + [anon_sym_nullptr] = ACTIONS(3894), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3894), + [anon_sym_decltype] = ACTIONS(3894), + [anon_sym_template] = ACTIONS(3894), + [anon_sym_try] = ACTIONS(3894), + [anon_sym_delete] = ACTIONS(3894), + [anon_sym_throw] = ACTIONS(3894), + [anon_sym_co_return] = ACTIONS(3894), + [anon_sym_co_yield] = ACTIONS(3894), + [anon_sym_R_DQUOTE] = ACTIONS(3896), + [anon_sym_LR_DQUOTE] = ACTIONS(3896), + [anon_sym_uR_DQUOTE] = ACTIONS(3896), + [anon_sym_UR_DQUOTE] = ACTIONS(3896), + [anon_sym_u8R_DQUOTE] = ACTIONS(3896), + [anon_sym_co_await] = ACTIONS(3894), + [anon_sym_new] = ACTIONS(3894), + [anon_sym_requires] = ACTIONS(3894), + [anon_sym_CARET_CARET] = ACTIONS(3896), + [anon_sym_LBRACK_COLON] = ACTIONS(3896), + [sym_this] = ACTIONS(3894), }, - [STATE(1790)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token2] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [aux_sym_preproc_else_token1] = ACTIONS(3123), - [aux_sym_preproc_elif_token1] = ACTIONS(3123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), + [STATE(1129)] = { + [sym_identifier] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(3734), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3732), + [anon_sym_PLUS] = ACTIONS(3732), + [anon_sym_STAR] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym___extension__] = ACTIONS(3732), + [anon_sym_typedef] = ACTIONS(3732), + [anon_sym_virtual] = ACTIONS(3732), + [anon_sym_extern] = ACTIONS(3732), + [anon_sym___attribute__] = ACTIONS(3732), + [anon_sym___attribute] = ACTIONS(3732), + [anon_sym_COLON_COLON] = ACTIONS(3734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), + [anon_sym___declspec] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_signed] = ACTIONS(3732), + [anon_sym_unsigned] = ACTIONS(3732), + [anon_sym_long] = ACTIONS(3732), + [anon_sym_short] = ACTIONS(3732), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_static] = ACTIONS(3732), + [anon_sym_register] = ACTIONS(3732), + [anon_sym_inline] = ACTIONS(3732), + [anon_sym___inline] = ACTIONS(3732), + [anon_sym___inline__] = ACTIONS(3732), + [anon_sym___forceinline] = ACTIONS(3732), + [anon_sym_thread_local] = ACTIONS(3732), + [anon_sym___thread] = ACTIONS(3732), + [anon_sym_const] = ACTIONS(3732), + [anon_sym_constexpr] = ACTIONS(3732), + [anon_sym_volatile] = ACTIONS(3732), + [anon_sym_restrict] = ACTIONS(3732), + [anon_sym___restrict__] = ACTIONS(3732), + [anon_sym__Atomic] = ACTIONS(3732), + [anon_sym__Noreturn] = ACTIONS(3732), + [anon_sym_noreturn] = ACTIONS(3732), + [anon_sym__Nonnull] = ACTIONS(3732), + [anon_sym_mutable] = ACTIONS(3732), + [anon_sym_constinit] = ACTIONS(3732), + [anon_sym_consteval] = ACTIONS(3732), + [anon_sym_alignas] = ACTIONS(3732), + [anon_sym__Alignas] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(3732), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(3732), + [anon_sym_union] = ACTIONS(3732), + [anon_sym_if] = ACTIONS(3732), + [anon_sym_else] = ACTIONS(3732), + [anon_sym_switch] = ACTIONS(3732), + [anon_sym_while] = ACTIONS(3732), + [anon_sym_do] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3732), + [anon_sym_return] = ACTIONS(3732), + [anon_sym_break] = ACTIONS(3732), + [anon_sym_continue] = ACTIONS(3732), + [anon_sym_goto] = ACTIONS(3732), + [anon_sym___try] = ACTIONS(3732), + [anon_sym___leave] = ACTIONS(3732), + [anon_sym_not] = ACTIONS(3732), + [anon_sym_compl] = ACTIONS(3732), + [anon_sym_DASH_DASH] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(3734), + [anon_sym_sizeof] = ACTIONS(3732), + [anon_sym___alignof__] = ACTIONS(3732), + [anon_sym___alignof] = ACTIONS(3732), + [anon_sym__alignof] = ACTIONS(3732), + [anon_sym_alignof] = ACTIONS(3732), + [anon_sym__Alignof] = ACTIONS(3732), + [anon_sym_offsetof] = ACTIONS(3732), + [anon_sym__Generic] = ACTIONS(3732), + [anon_sym_typename] = ACTIONS(3732), + [anon_sym_asm] = ACTIONS(3732), + [anon_sym___asm__] = ACTIONS(3732), + [anon_sym___asm] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_L_SQUOTE] = ACTIONS(3734), + [anon_sym_u_SQUOTE] = ACTIONS(3734), + [anon_sym_U_SQUOTE] = ACTIONS(3734), + [anon_sym_u8_SQUOTE] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(3734), + [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(3732), + [sym_false] = ACTIONS(3732), + [anon_sym_NULL] = ACTIONS(3732), + [anon_sym_nullptr] = ACTIONS(3732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3732), + [anon_sym_decltype] = ACTIONS(3732), + [anon_sym_template] = ACTIONS(3732), + [anon_sym_try] = ACTIONS(3732), + [anon_sym_delete] = ACTIONS(3732), + [anon_sym_throw] = ACTIONS(3732), + [anon_sym_co_return] = ACTIONS(3732), + [anon_sym_co_yield] = ACTIONS(3732), + [anon_sym_R_DQUOTE] = ACTIONS(3734), + [anon_sym_LR_DQUOTE] = ACTIONS(3734), + [anon_sym_uR_DQUOTE] = ACTIONS(3734), + [anon_sym_UR_DQUOTE] = ACTIONS(3734), + [anon_sym_u8R_DQUOTE] = ACTIONS(3734), + [anon_sym_co_await] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3732), + [anon_sym_requires] = ACTIONS(3732), + [anon_sym_CARET_CARET] = ACTIONS(3734), + [anon_sym_LBRACK_COLON] = ACTIONS(3734), + [sym_this] = ACTIONS(3732), }, - [STATE(1791)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [aux_sym_preproc_else_token1] = ACTIONS(2785), - [aux_sym_preproc_elif_token1] = ACTIONS(2785), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_friend] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_protected] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), + [STATE(1130)] = { + [sym_identifier] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_goto] = ACTIONS(3676), + [anon_sym___try] = ACTIONS(3676), + [anon_sym___leave] = ACTIONS(3676), + [anon_sym_not] = ACTIONS(3676), + [anon_sym_compl] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym___alignof__] = ACTIONS(3676), + [anon_sym___alignof] = ACTIONS(3676), + [anon_sym__alignof] = ACTIONS(3676), + [anon_sym_alignof] = ACTIONS(3676), + [anon_sym__Alignof] = ACTIONS(3676), + [anon_sym_offsetof] = ACTIONS(3676), + [anon_sym__Generic] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [anon_sym_asm] = ACTIONS(3676), + [anon_sym___asm__] = ACTIONS(3676), + [anon_sym___asm] = ACTIONS(3676), + [sym_number_literal] = ACTIONS(3678), + [anon_sym_L_SQUOTE] = ACTIONS(3678), + [anon_sym_u_SQUOTE] = ACTIONS(3678), + [anon_sym_U_SQUOTE] = ACTIONS(3678), + [anon_sym_u8_SQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_L_DQUOTE] = ACTIONS(3678), + [anon_sym_u_DQUOTE] = ACTIONS(3678), + [anon_sym_U_DQUOTE] = ACTIONS(3678), + [anon_sym_u8_DQUOTE] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [anon_sym_NULL] = ACTIONS(3676), + [anon_sym_nullptr] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_co_return] = ACTIONS(3676), + [anon_sym_co_yield] = ACTIONS(3676), + [anon_sym_R_DQUOTE] = ACTIONS(3678), + [anon_sym_LR_DQUOTE] = ACTIONS(3678), + [anon_sym_uR_DQUOTE] = ACTIONS(3678), + [anon_sym_UR_DQUOTE] = ACTIONS(3678), + [anon_sym_u8R_DQUOTE] = ACTIONS(3678), + [anon_sym_co_await] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_requires] = ACTIONS(3676), + [anon_sym_CARET_CARET] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [sym_this] = ACTIONS(3676), }, - [STATE(1792)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [aux_sym_preproc_else_token1] = ACTIONS(2923), - [aux_sym_preproc_elif_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1131)] = { + [sym_identifier] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1793)] = { - [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___attribute] = ACTIONS(5004), - [anon_sym_COLON] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [sym_primitive_type] = 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), + [STATE(1132)] = { + [sym_identifier] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(1794)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [aux_sym_preproc_else_token1] = ACTIONS(2923), - [aux_sym_preproc_elif_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1133)] = { + [sym_identifier] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, - [STATE(1795)] = { - [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_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1134)] = { + [sym_identifier] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(1796)] = { - [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_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1135)] = { + [sym_expression] = STATE(6853), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_lambda_default_capture] = STATE(10128), + [sym__lambda_capture_identifier] = STATE(9644), + [sym_lambda_capture_initializer] = STATE(9644), + [sym__lambda_capture] = STATE(9644), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_identifier_parameter_pack_expansion] = STATE(9644), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5720), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(5556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5562), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5566), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(5568), }, - [STATE(1797)] = { - [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_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_friend] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_protected] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), + [STATE(1136)] = { + [sym_identifier] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, - [STATE(1798)] = { - [sym_identifier] = ACTIONS(5497), - [aux_sym_preproc_def_token1] = ACTIONS(5497), - [aux_sym_preproc_if_token1] = ACTIONS(5497), - [aux_sym_preproc_if_token2] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), - [aux_sym_preproc_else_token1] = ACTIONS(5497), - [aux_sym_preproc_elif_token1] = ACTIONS(5497), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5497), - [sym_preproc_directive] = ACTIONS(5497), - [anon_sym_LPAREN2] = ACTIONS(5499), - [anon_sym_TILDE] = ACTIONS(5499), - [anon_sym_STAR] = ACTIONS(5499), - [anon_sym_AMP_AMP] = ACTIONS(5499), - [anon_sym_AMP] = ACTIONS(5497), - [anon_sym_SEMI] = ACTIONS(5499), - [anon_sym___extension__] = ACTIONS(5497), - [anon_sym_typedef] = ACTIONS(5497), - [anon_sym_virtual] = ACTIONS(5497), - [anon_sym_extern] = ACTIONS(5497), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_using] = ACTIONS(5497), - [anon_sym_COLON_COLON] = ACTIONS(5499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5499), - [anon_sym___declspec] = ACTIONS(5497), - [anon_sym___based] = ACTIONS(5497), - [anon_sym_signed] = ACTIONS(5497), - [anon_sym_unsigned] = ACTIONS(5497), - [anon_sym_long] = ACTIONS(5497), - [anon_sym_short] = ACTIONS(5497), - [anon_sym_LBRACK] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5497), - [anon_sym_register] = ACTIONS(5497), - [anon_sym_inline] = ACTIONS(5497), - [anon_sym___inline] = ACTIONS(5497), - [anon_sym___inline__] = ACTIONS(5497), - [anon_sym___forceinline] = ACTIONS(5497), - [anon_sym_thread_local] = ACTIONS(5497), - [anon_sym___thread] = ACTIONS(5497), - [anon_sym_const] = ACTIONS(5497), - [anon_sym_constexpr] = ACTIONS(5497), - [anon_sym_volatile] = ACTIONS(5497), - [anon_sym_restrict] = ACTIONS(5497), - [anon_sym___restrict__] = ACTIONS(5497), - [anon_sym__Atomic] = ACTIONS(5497), - [anon_sym__Noreturn] = ACTIONS(5497), - [anon_sym_noreturn] = ACTIONS(5497), - [anon_sym__Nonnull] = ACTIONS(5497), - [anon_sym_mutable] = ACTIONS(5497), - [anon_sym_constinit] = ACTIONS(5497), - [anon_sym_consteval] = ACTIONS(5497), - [anon_sym_alignas] = ACTIONS(5497), - [anon_sym__Alignas] = ACTIONS(5497), - [sym_primitive_type] = ACTIONS(5497), - [anon_sym_enum] = ACTIONS(5497), - [anon_sym_class] = ACTIONS(5497), - [anon_sym_struct] = ACTIONS(5497), - [anon_sym_union] = ACTIONS(5497), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5497), - [anon_sym_decltype] = ACTIONS(5497), - [anon_sym_explicit] = ACTIONS(5497), - [anon_sym_typename] = ACTIONS(5497), - [anon_sym_private] = ACTIONS(5497), - [anon_sym_template] = ACTIONS(5497), - [anon_sym_operator] = ACTIONS(5497), - [anon_sym_friend] = ACTIONS(5497), - [anon_sym_public] = ACTIONS(5497), - [anon_sym_protected] = ACTIONS(5497), - [anon_sym_static_assert] = ACTIONS(5497), + [STATE(1137)] = { + [sym_identifier] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1799)] = { - [sym_identifier] = ACTIONS(5501), - [aux_sym_preproc_def_token1] = ACTIONS(5501), - [aux_sym_preproc_if_token1] = ACTIONS(5501), - [aux_sym_preproc_if_token2] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5501), - [aux_sym_preproc_else_token1] = ACTIONS(5501), - [aux_sym_preproc_elif_token1] = ACTIONS(5501), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5501), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5501), - [sym_preproc_directive] = ACTIONS(5501), - [anon_sym_LPAREN2] = ACTIONS(5503), - [anon_sym_TILDE] = ACTIONS(5503), - [anon_sym_STAR] = ACTIONS(5503), - [anon_sym_AMP_AMP] = ACTIONS(5503), - [anon_sym_AMP] = ACTIONS(5501), - [anon_sym_SEMI] = ACTIONS(5503), - [anon_sym___extension__] = ACTIONS(5501), - [anon_sym_typedef] = ACTIONS(5501), - [anon_sym_virtual] = ACTIONS(5501), - [anon_sym_extern] = ACTIONS(5501), - [anon_sym___attribute__] = ACTIONS(5501), - [anon_sym___attribute] = ACTIONS(5501), - [anon_sym_using] = ACTIONS(5501), - [anon_sym_COLON_COLON] = ACTIONS(5503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5503), - [anon_sym___declspec] = ACTIONS(5501), - [anon_sym___based] = ACTIONS(5501), - [anon_sym_signed] = ACTIONS(5501), - [anon_sym_unsigned] = ACTIONS(5501), - [anon_sym_long] = ACTIONS(5501), - [anon_sym_short] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(5501), - [anon_sym_static] = ACTIONS(5501), - [anon_sym_register] = ACTIONS(5501), - [anon_sym_inline] = ACTIONS(5501), - [anon_sym___inline] = ACTIONS(5501), - [anon_sym___inline__] = ACTIONS(5501), - [anon_sym___forceinline] = ACTIONS(5501), - [anon_sym_thread_local] = ACTIONS(5501), - [anon_sym___thread] = ACTIONS(5501), - [anon_sym_const] = ACTIONS(5501), - [anon_sym_constexpr] = ACTIONS(5501), - [anon_sym_volatile] = ACTIONS(5501), - [anon_sym_restrict] = ACTIONS(5501), - [anon_sym___restrict__] = ACTIONS(5501), - [anon_sym__Atomic] = ACTIONS(5501), - [anon_sym__Noreturn] = ACTIONS(5501), - [anon_sym_noreturn] = ACTIONS(5501), - [anon_sym__Nonnull] = ACTIONS(5501), - [anon_sym_mutable] = ACTIONS(5501), - [anon_sym_constinit] = ACTIONS(5501), - [anon_sym_consteval] = ACTIONS(5501), - [anon_sym_alignas] = ACTIONS(5501), - [anon_sym__Alignas] = ACTIONS(5501), - [sym_primitive_type] = ACTIONS(5501), - [anon_sym_enum] = ACTIONS(5501), - [anon_sym_class] = ACTIONS(5501), - [anon_sym_struct] = ACTIONS(5501), - [anon_sym_union] = ACTIONS(5501), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5501), - [anon_sym_decltype] = ACTIONS(5501), - [anon_sym_explicit] = ACTIONS(5501), - [anon_sym_typename] = ACTIONS(5501), - [anon_sym_private] = ACTIONS(5501), - [anon_sym_template] = ACTIONS(5501), - [anon_sym_operator] = ACTIONS(5501), - [anon_sym_friend] = ACTIONS(5501), - [anon_sym_public] = ACTIONS(5501), - [anon_sym_protected] = ACTIONS(5501), - [anon_sym_static_assert] = ACTIONS(5501), + [STATE(1138)] = { + [sym_identifier] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_else] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [STATE(1800)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6469), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7043), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7043), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1139)] = { + [sym_identifier] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), }, - [STATE(1801)] = { - [sym_identifier] = 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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_private] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_friend] = ACTIONS(2973), - [anon_sym_public] = ACTIONS(2973), - [anon_sym_protected] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), + [STATE(1140)] = { + [sym_identifier] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(1802)] = { - [sym_identifier] = 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), - [aux_sym_preproc_else_token1] = ACTIONS(2977), - [aux_sym_preproc_elif_token1] = ACTIONS(2977), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_friend] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), + [STATE(1141)] = { + [sym_identifier] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym___extension__] = ACTIONS(3700), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_virtual] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym___attribute__] = ACTIONS(3700), + [anon_sym___attribute] = ACTIONS(3700), + [anon_sym_COLON_COLON] = ACTIONS(3702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), + [anon_sym___declspec] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_signed] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym___inline] = ACTIONS(3700), + [anon_sym___inline__] = ACTIONS(3700), + [anon_sym___forceinline] = ACTIONS(3700), + [anon_sym_thread_local] = ACTIONS(3700), + [anon_sym___thread] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_constexpr] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym___restrict__] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym__Noreturn] = ACTIONS(3700), + [anon_sym_noreturn] = ACTIONS(3700), + [anon_sym__Nonnull] = ACTIONS(3700), + [anon_sym_mutable] = ACTIONS(3700), + [anon_sym_constinit] = ACTIONS(3700), + [anon_sym_consteval] = ACTIONS(3700), + [anon_sym_alignas] = ACTIONS(3700), + [anon_sym__Alignas] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym___try] = ACTIONS(3700), + [anon_sym___leave] = ACTIONS(3700), + [anon_sym_not] = ACTIONS(3700), + [anon_sym_compl] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_sizeof] = ACTIONS(3700), + [anon_sym___alignof__] = ACTIONS(3700), + [anon_sym___alignof] = ACTIONS(3700), + [anon_sym__alignof] = ACTIONS(3700), + [anon_sym_alignof] = ACTIONS(3700), + [anon_sym__Alignof] = ACTIONS(3700), + [anon_sym_offsetof] = ACTIONS(3700), + [anon_sym__Generic] = ACTIONS(3700), + [anon_sym_typename] = ACTIONS(3700), + [anon_sym_asm] = ACTIONS(3700), + [anon_sym___asm__] = ACTIONS(3700), + [anon_sym___asm] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3702), + [anon_sym_L_SQUOTE] = ACTIONS(3702), + [anon_sym_u_SQUOTE] = ACTIONS(3702), + [anon_sym_U_SQUOTE] = ACTIONS(3702), + [anon_sym_u8_SQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_L_DQUOTE] = ACTIONS(3702), + [anon_sym_u_DQUOTE] = ACTIONS(3702), + [anon_sym_U_DQUOTE] = ACTIONS(3702), + [anon_sym_u8_DQUOTE] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [anon_sym_NULL] = ACTIONS(3700), + [anon_sym_nullptr] = ACTIONS(3700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3700), + [anon_sym_decltype] = ACTIONS(3700), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_co_return] = ACTIONS(3700), + [anon_sym_co_yield] = ACTIONS(3700), + [anon_sym_R_DQUOTE] = ACTIONS(3702), + [anon_sym_LR_DQUOTE] = ACTIONS(3702), + [anon_sym_uR_DQUOTE] = ACTIONS(3702), + [anon_sym_UR_DQUOTE] = ACTIONS(3702), + [anon_sym_u8R_DQUOTE] = ACTIONS(3702), + [anon_sym_co_await] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_requires] = ACTIONS(3700), + [anon_sym_CARET_CARET] = ACTIONS(3702), + [anon_sym_LBRACK_COLON] = ACTIONS(3702), + [sym_this] = ACTIONS(3700), }, - [STATE(1803)] = { - [sym_identifier] = ACTIONS(5523), - [aux_sym_preproc_def_token1] = ACTIONS(5523), - [aux_sym_preproc_if_token1] = ACTIONS(5523), - [aux_sym_preproc_if_token2] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5523), - [aux_sym_preproc_else_token1] = ACTIONS(5523), - [aux_sym_preproc_elif_token1] = ACTIONS(5523), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5523), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5523), - [sym_preproc_directive] = ACTIONS(5523), - [anon_sym_LPAREN2] = ACTIONS(5525), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_STAR] = ACTIONS(5525), - [anon_sym_AMP_AMP] = ACTIONS(5525), - [anon_sym_AMP] = ACTIONS(5523), - [anon_sym_SEMI] = ACTIONS(5525), - [anon_sym___extension__] = ACTIONS(5523), - [anon_sym_typedef] = ACTIONS(5523), - [anon_sym_virtual] = ACTIONS(5523), - [anon_sym_extern] = ACTIONS(5523), - [anon_sym___attribute__] = ACTIONS(5523), - [anon_sym___attribute] = ACTIONS(5523), - [anon_sym_using] = ACTIONS(5523), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5523), - [anon_sym___based] = ACTIONS(5523), - [anon_sym_signed] = ACTIONS(5523), - [anon_sym_unsigned] = ACTIONS(5523), - [anon_sym_long] = ACTIONS(5523), - [anon_sym_short] = ACTIONS(5523), - [anon_sym_LBRACK] = ACTIONS(5523), - [anon_sym_static] = ACTIONS(5523), - [anon_sym_register] = ACTIONS(5523), - [anon_sym_inline] = ACTIONS(5523), - [anon_sym___inline] = ACTIONS(5523), - [anon_sym___inline__] = ACTIONS(5523), - [anon_sym___forceinline] = ACTIONS(5523), - [anon_sym_thread_local] = ACTIONS(5523), - [anon_sym___thread] = ACTIONS(5523), - [anon_sym_const] = ACTIONS(5523), - [anon_sym_constexpr] = ACTIONS(5523), - [anon_sym_volatile] = ACTIONS(5523), - [anon_sym_restrict] = ACTIONS(5523), - [anon_sym___restrict__] = ACTIONS(5523), - [anon_sym__Atomic] = ACTIONS(5523), - [anon_sym__Noreturn] = ACTIONS(5523), - [anon_sym_noreturn] = ACTIONS(5523), - [anon_sym__Nonnull] = ACTIONS(5523), - [anon_sym_mutable] = ACTIONS(5523), - [anon_sym_constinit] = ACTIONS(5523), - [anon_sym_consteval] = ACTIONS(5523), - [anon_sym_alignas] = ACTIONS(5523), - [anon_sym__Alignas] = ACTIONS(5523), - [sym_primitive_type] = ACTIONS(5523), - [anon_sym_enum] = ACTIONS(5523), - [anon_sym_class] = ACTIONS(5523), - [anon_sym_struct] = ACTIONS(5523), - [anon_sym_union] = ACTIONS(5523), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5523), - [anon_sym_decltype] = ACTIONS(5523), - [anon_sym_explicit] = ACTIONS(5523), - [anon_sym_typename] = ACTIONS(5523), - [anon_sym_private] = ACTIONS(5523), - [anon_sym_template] = ACTIONS(5523), - [anon_sym_operator] = ACTIONS(5523), - [anon_sym_friend] = ACTIONS(5523), - [anon_sym_public] = ACTIONS(5523), - [anon_sym_protected] = ACTIONS(5523), - [anon_sym_static_assert] = ACTIONS(5523), + [STATE(1142)] = { + [sym_identifier] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(1804)] = { - [sym_identifier] = ACTIONS(5527), - [aux_sym_preproc_def_token1] = ACTIONS(5527), - [aux_sym_preproc_if_token1] = ACTIONS(5527), - [aux_sym_preproc_if_token2] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5527), - [aux_sym_preproc_else_token1] = ACTIONS(5527), - [aux_sym_preproc_elif_token1] = ACTIONS(5527), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5527), - [sym_preproc_directive] = ACTIONS(5527), - [anon_sym_LPAREN2] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_AMP_AMP] = ACTIONS(5529), - [anon_sym_AMP] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5529), - [anon_sym___extension__] = ACTIONS(5527), - [anon_sym_typedef] = ACTIONS(5527), - [anon_sym_virtual] = ACTIONS(5527), - [anon_sym_extern] = ACTIONS(5527), - [anon_sym___attribute__] = ACTIONS(5527), - [anon_sym___attribute] = ACTIONS(5527), - [anon_sym_using] = ACTIONS(5527), - [anon_sym_COLON_COLON] = ACTIONS(5529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5529), - [anon_sym___declspec] = ACTIONS(5527), - [anon_sym___based] = ACTIONS(5527), - [anon_sym_signed] = ACTIONS(5527), - [anon_sym_unsigned] = ACTIONS(5527), - [anon_sym_long] = ACTIONS(5527), - [anon_sym_short] = ACTIONS(5527), - [anon_sym_LBRACK] = ACTIONS(5527), - [anon_sym_static] = ACTIONS(5527), - [anon_sym_register] = ACTIONS(5527), - [anon_sym_inline] = ACTIONS(5527), - [anon_sym___inline] = ACTIONS(5527), - [anon_sym___inline__] = ACTIONS(5527), - [anon_sym___forceinline] = ACTIONS(5527), - [anon_sym_thread_local] = ACTIONS(5527), - [anon_sym___thread] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5527), - [anon_sym_constexpr] = ACTIONS(5527), - [anon_sym_volatile] = ACTIONS(5527), - [anon_sym_restrict] = ACTIONS(5527), - [anon_sym___restrict__] = ACTIONS(5527), - [anon_sym__Atomic] = ACTIONS(5527), - [anon_sym__Noreturn] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym__Nonnull] = ACTIONS(5527), - [anon_sym_mutable] = ACTIONS(5527), - [anon_sym_constinit] = ACTIONS(5527), - [anon_sym_consteval] = ACTIONS(5527), - [anon_sym_alignas] = ACTIONS(5527), - [anon_sym__Alignas] = ACTIONS(5527), - [sym_primitive_type] = ACTIONS(5527), - [anon_sym_enum] = ACTIONS(5527), - [anon_sym_class] = ACTIONS(5527), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_union] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5527), - [anon_sym_decltype] = ACTIONS(5527), - [anon_sym_explicit] = ACTIONS(5527), - [anon_sym_typename] = ACTIONS(5527), - [anon_sym_private] = ACTIONS(5527), - [anon_sym_template] = ACTIONS(5527), - [anon_sym_operator] = ACTIONS(5527), - [anon_sym_friend] = ACTIONS(5527), - [anon_sym_public] = ACTIONS(5527), - [anon_sym_protected] = ACTIONS(5527), - [anon_sym_static_assert] = ACTIONS(5527), + [STATE(1143)] = { + [sym_identifier] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_else] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [STATE(1805)] = { - [sym_identifier] = ACTIONS(5531), - [aux_sym_preproc_def_token1] = ACTIONS(5531), - [aux_sym_preproc_if_token1] = ACTIONS(5531), - [aux_sym_preproc_if_token2] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5531), - [aux_sym_preproc_else_token1] = ACTIONS(5531), - [aux_sym_preproc_elif_token1] = ACTIONS(5531), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5531), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5531), - [sym_preproc_directive] = ACTIONS(5531), - [anon_sym_LPAREN2] = ACTIONS(5533), - [anon_sym_TILDE] = ACTIONS(5533), - [anon_sym_STAR] = ACTIONS(5533), - [anon_sym_AMP_AMP] = ACTIONS(5533), - [anon_sym_AMP] = ACTIONS(5531), - [anon_sym_SEMI] = ACTIONS(5533), - [anon_sym___extension__] = ACTIONS(5531), - [anon_sym_typedef] = ACTIONS(5531), - [anon_sym_virtual] = ACTIONS(5531), - [anon_sym_extern] = ACTIONS(5531), - [anon_sym___attribute__] = ACTIONS(5531), - [anon_sym___attribute] = ACTIONS(5531), - [anon_sym_using] = ACTIONS(5531), - [anon_sym_COLON_COLON] = ACTIONS(5533), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym___declspec] = ACTIONS(5531), - [anon_sym___based] = ACTIONS(5531), - [anon_sym_signed] = ACTIONS(5531), - [anon_sym_unsigned] = ACTIONS(5531), - [anon_sym_long] = ACTIONS(5531), - [anon_sym_short] = ACTIONS(5531), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_static] = ACTIONS(5531), - [anon_sym_register] = ACTIONS(5531), - [anon_sym_inline] = ACTIONS(5531), - [anon_sym___inline] = ACTIONS(5531), - [anon_sym___inline__] = ACTIONS(5531), - [anon_sym___forceinline] = ACTIONS(5531), - [anon_sym_thread_local] = ACTIONS(5531), - [anon_sym___thread] = ACTIONS(5531), - [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__Nonnull] = ACTIONS(5531), - [anon_sym_mutable] = ACTIONS(5531), - [anon_sym_constinit] = ACTIONS(5531), - [anon_sym_consteval] = ACTIONS(5531), - [anon_sym_alignas] = ACTIONS(5531), - [anon_sym__Alignas] = ACTIONS(5531), - [sym_primitive_type] = ACTIONS(5531), - [anon_sym_enum] = ACTIONS(5531), - [anon_sym_class] = ACTIONS(5531), - [anon_sym_struct] = ACTIONS(5531), - [anon_sym_union] = ACTIONS(5531), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5531), - [anon_sym_decltype] = ACTIONS(5531), - [anon_sym_explicit] = ACTIONS(5531), - [anon_sym_typename] = ACTIONS(5531), - [anon_sym_private] = ACTIONS(5531), - [anon_sym_template] = ACTIONS(5531), - [anon_sym_operator] = ACTIONS(5531), - [anon_sym_friend] = ACTIONS(5531), - [anon_sym_public] = ACTIONS(5531), - [anon_sym_protected] = ACTIONS(5531), - [anon_sym_static_assert] = ACTIONS(5531), + [STATE(1144)] = { + [sym_expression] = STATE(6853), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_lambda_default_capture] = STATE(10128), + [sym__lambda_capture_identifier] = STATE(9644), + [sym_lambda_capture_initializer] = STATE(9644), + [sym__lambda_capture] = STATE(9644), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_identifier_parameter_pack_expansion] = STATE(9644), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5720), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(5570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5562), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5566), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(5568), }, - [STATE(1806)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token2] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [aux_sym_preproc_else_token1] = ACTIONS(5535), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1145)] = { + [sym_identifier] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), }, - [STATE(1807)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [aux_sym_preproc_else_token1] = ACTIONS(5539), - [aux_sym_preproc_elif_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1146)] = { + [sym_identifier] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym___attribute] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2910), + [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__Nonnull] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym__Alignas] = 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(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [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_typename] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [anon_sym___asm] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [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_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(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [anon_sym_CARET_CARET] = ACTIONS(2910), + [anon_sym_LBRACK_COLON] = ACTIONS(2910), + [sym_this] = ACTIONS(2905), }, - [STATE(1808)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [aux_sym_preproc_else_token1] = ACTIONS(5539), - [aux_sym_preproc_elif_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1147)] = { + [sym_identifier] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_else] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(1809)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [aux_sym_preproc_else_token1] = ACTIONS(5539), - [aux_sym_preproc_elif_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1148)] = { + [sym_identifier] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(3726), + [anon_sym_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym___extension__] = ACTIONS(3724), + [anon_sym_typedef] = ACTIONS(3724), + [anon_sym_virtual] = ACTIONS(3724), + [anon_sym_extern] = ACTIONS(3724), + [anon_sym___attribute__] = ACTIONS(3724), + [anon_sym___attribute] = ACTIONS(3724), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), + [anon_sym___declspec] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3724), + [anon_sym_unsigned] = ACTIONS(3724), + [anon_sym_long] = ACTIONS(3724), + [anon_sym_short] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_static] = ACTIONS(3724), + [anon_sym_register] = ACTIONS(3724), + [anon_sym_inline] = ACTIONS(3724), + [anon_sym___inline] = ACTIONS(3724), + [anon_sym___inline__] = ACTIONS(3724), + [anon_sym___forceinline] = ACTIONS(3724), + [anon_sym_thread_local] = ACTIONS(3724), + [anon_sym___thread] = ACTIONS(3724), + [anon_sym_const] = ACTIONS(3724), + [anon_sym_constexpr] = ACTIONS(3724), + [anon_sym_volatile] = ACTIONS(3724), + [anon_sym_restrict] = ACTIONS(3724), + [anon_sym___restrict__] = ACTIONS(3724), + [anon_sym__Atomic] = ACTIONS(3724), + [anon_sym__Noreturn] = ACTIONS(3724), + [anon_sym_noreturn] = ACTIONS(3724), + [anon_sym__Nonnull] = ACTIONS(3724), + [anon_sym_mutable] = ACTIONS(3724), + [anon_sym_constinit] = ACTIONS(3724), + [anon_sym_consteval] = ACTIONS(3724), + [anon_sym_alignas] = ACTIONS(3724), + [anon_sym__Alignas] = ACTIONS(3724), + [sym_primitive_type] = ACTIONS(3724), + [anon_sym_enum] = ACTIONS(3724), + [anon_sym_class] = ACTIONS(3724), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_union] = ACTIONS(3724), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_else] = ACTIONS(3724), + [anon_sym_switch] = ACTIONS(3724), + [anon_sym_while] = ACTIONS(3724), + [anon_sym_do] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3724), + [anon_sym_return] = ACTIONS(3724), + [anon_sym_break] = ACTIONS(3724), + [anon_sym_continue] = ACTIONS(3724), + [anon_sym_goto] = ACTIONS(3724), + [anon_sym___try] = ACTIONS(3724), + [anon_sym___leave] = ACTIONS(3724), + [anon_sym_not] = ACTIONS(3724), + [anon_sym_compl] = ACTIONS(3724), + [anon_sym_DASH_DASH] = ACTIONS(3726), + [anon_sym_PLUS_PLUS] = ACTIONS(3726), + [anon_sym_sizeof] = ACTIONS(3724), + [anon_sym___alignof__] = ACTIONS(3724), + [anon_sym___alignof] = ACTIONS(3724), + [anon_sym__alignof] = ACTIONS(3724), + [anon_sym_alignof] = ACTIONS(3724), + [anon_sym__Alignof] = ACTIONS(3724), + [anon_sym_offsetof] = ACTIONS(3724), + [anon_sym__Generic] = ACTIONS(3724), + [anon_sym_typename] = ACTIONS(3724), + [anon_sym_asm] = ACTIONS(3724), + [anon_sym___asm__] = ACTIONS(3724), + [anon_sym___asm] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3726), + [anon_sym_L_SQUOTE] = ACTIONS(3726), + [anon_sym_u_SQUOTE] = ACTIONS(3726), + [anon_sym_U_SQUOTE] = ACTIONS(3726), + [anon_sym_u8_SQUOTE] = ACTIONS(3726), + [anon_sym_SQUOTE] = ACTIONS(3726), + [anon_sym_L_DQUOTE] = ACTIONS(3726), + [anon_sym_u_DQUOTE] = ACTIONS(3726), + [anon_sym_U_DQUOTE] = ACTIONS(3726), + [anon_sym_u8_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [anon_sym_NULL] = ACTIONS(3724), + [anon_sym_nullptr] = ACTIONS(3724), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3724), + [anon_sym_decltype] = ACTIONS(3724), + [anon_sym_template] = ACTIONS(3724), + [anon_sym_try] = ACTIONS(3724), + [anon_sym_delete] = ACTIONS(3724), + [anon_sym_throw] = ACTIONS(3724), + [anon_sym_co_return] = ACTIONS(3724), + [anon_sym_co_yield] = ACTIONS(3724), + [anon_sym_R_DQUOTE] = ACTIONS(3726), + [anon_sym_LR_DQUOTE] = ACTIONS(3726), + [anon_sym_uR_DQUOTE] = ACTIONS(3726), + [anon_sym_UR_DQUOTE] = ACTIONS(3726), + [anon_sym_u8R_DQUOTE] = ACTIONS(3726), + [anon_sym_co_await] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3724), + [anon_sym_requires] = ACTIONS(3724), + [anon_sym_CARET_CARET] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3726), + [sym_this] = ACTIONS(3724), }, - [STATE(1810)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token2] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [aux_sym_preproc_else_token1] = ACTIONS(5535), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1149)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10342), + [sym_initializer_pair] = STATE(10342), + [sym_subscript_designator] = STATE(9030), + [sym_subscript_range_designator] = STATE(9030), + [sym_field_designator] = STATE(9030), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [aux_sym_initializer_pair_repeat1] = STATE(9030), + [sym_identifier] = ACTIONS(5334), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(5340), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1811)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6555), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7043), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7043), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1150)] = { + [sym_identifier] = ACTIONS(5237), + [anon_sym_LPAREN2] = ACTIONS(5243), + [anon_sym_BANG] = ACTIONS(5243), + [anon_sym_TILDE] = ACTIONS(5243), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5243), + [anon_sym_AMP] = ACTIONS(5243), + [anon_sym_SEMI] = ACTIONS(5243), + [anon_sym___extension__] = ACTIONS(5237), + [anon_sym_virtual] = ACTIONS(5249), + [anon_sym_extern] = ACTIONS(5249), + [anon_sym___attribute__] = ACTIONS(5249), + [anon_sym___attribute] = ACTIONS(5249), + [anon_sym_COLON_COLON] = ACTIONS(5240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5240), + [anon_sym___declspec] = ACTIONS(5249), + [anon_sym_LBRACE] = ACTIONS(5243), + [anon_sym_signed] = ACTIONS(5249), + [anon_sym_unsigned] = ACTIONS(5249), + [anon_sym_long] = ACTIONS(5249), + [anon_sym_short] = ACTIONS(5249), + [anon_sym_LBRACK] = ACTIONS(5245), + [anon_sym_static] = ACTIONS(5249), + [anon_sym_register] = ACTIONS(5249), + [anon_sym_inline] = ACTIONS(5249), + [anon_sym___inline] = ACTIONS(5249), + [anon_sym___inline__] = ACTIONS(5249), + [anon_sym___forceinline] = ACTIONS(5249), + [anon_sym_thread_local] = ACTIONS(5249), + [anon_sym___thread] = ACTIONS(5249), + [anon_sym_const] = ACTIONS(5249), + [anon_sym_constexpr] = ACTIONS(5249), + [anon_sym_volatile] = ACTIONS(5249), + [anon_sym_restrict] = ACTIONS(5249), + [anon_sym___restrict__] = ACTIONS(5249), + [anon_sym__Atomic] = ACTIONS(5249), + [anon_sym__Noreturn] = ACTIONS(5249), + [anon_sym_noreturn] = ACTIONS(5249), + [anon_sym__Nonnull] = ACTIONS(5249), + [anon_sym_mutable] = ACTIONS(5249), + [anon_sym_constinit] = ACTIONS(5249), + [anon_sym_consteval] = ACTIONS(5249), + [anon_sym_alignas] = ACTIONS(5249), + [anon_sym__Alignas] = ACTIONS(5249), + [sym_primitive_type] = ACTIONS(5237), + [anon_sym_enum] = ACTIONS(5249), + [anon_sym_class] = ACTIONS(5249), + [anon_sym_struct] = ACTIONS(5249), + [anon_sym_union] = ACTIONS(5249), + [anon_sym_if] = ACTIONS(5245), + [anon_sym_switch] = ACTIONS(5245), + [anon_sym_case] = ACTIONS(5245), + [anon_sym_default] = ACTIONS(5245), + [anon_sym_while] = ACTIONS(5245), + [anon_sym_do] = ACTIONS(5245), + [anon_sym_for] = ACTIONS(5245), + [anon_sym_return] = ACTIONS(5245), + [anon_sym_break] = ACTIONS(5245), + [anon_sym_continue] = ACTIONS(5245), + [anon_sym_goto] = ACTIONS(5245), + [anon_sym___try] = ACTIONS(5245), + [anon_sym___leave] = ACTIONS(5245), + [anon_sym_not] = ACTIONS(5245), + [anon_sym_compl] = ACTIONS(5245), + [anon_sym_DASH_DASH] = ACTIONS(5243), + [anon_sym_PLUS_PLUS] = ACTIONS(5243), + [anon_sym_sizeof] = ACTIONS(5245), + [anon_sym___alignof__] = ACTIONS(5245), + [anon_sym___alignof] = ACTIONS(5245), + [anon_sym__alignof] = ACTIONS(5245), + [anon_sym_alignof] = ACTIONS(5245), + [anon_sym__Alignof] = ACTIONS(5245), + [anon_sym_offsetof] = ACTIONS(5245), + [anon_sym__Generic] = ACTIONS(5245), + [anon_sym_typename] = ACTIONS(5237), + [anon_sym_asm] = ACTIONS(5245), + [anon_sym___asm__] = ACTIONS(5245), + [anon_sym___asm] = ACTIONS(5245), + [sym_number_literal] = ACTIONS(5243), + [anon_sym_L_SQUOTE] = ACTIONS(5243), + [anon_sym_u_SQUOTE] = ACTIONS(5243), + [anon_sym_U_SQUOTE] = ACTIONS(5243), + [anon_sym_u8_SQUOTE] = ACTIONS(5243), + [anon_sym_SQUOTE] = ACTIONS(5243), + [anon_sym_L_DQUOTE] = ACTIONS(5243), + [anon_sym_u_DQUOTE] = ACTIONS(5243), + [anon_sym_U_DQUOTE] = ACTIONS(5243), + [anon_sym_u8_DQUOTE] = ACTIONS(5243), + [anon_sym_DQUOTE] = ACTIONS(5243), + [sym_true] = ACTIONS(5245), + [sym_false] = ACTIONS(5245), + [anon_sym_NULL] = ACTIONS(5245), + [anon_sym_nullptr] = ACTIONS(5245), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5249), + [anon_sym_decltype] = ACTIONS(5237), + [anon_sym_template] = ACTIONS(5237), + [anon_sym_try] = ACTIONS(5245), + [anon_sym_delete] = ACTIONS(5245), + [anon_sym_throw] = ACTIONS(5245), + [anon_sym_co_return] = ACTIONS(5245), + [anon_sym_co_yield] = ACTIONS(5245), + [anon_sym_R_DQUOTE] = ACTIONS(5243), + [anon_sym_LR_DQUOTE] = ACTIONS(5243), + [anon_sym_uR_DQUOTE] = ACTIONS(5243), + [anon_sym_UR_DQUOTE] = ACTIONS(5243), + [anon_sym_u8R_DQUOTE] = ACTIONS(5243), + [anon_sym_co_await] = ACTIONS(5245), + [anon_sym_new] = ACTIONS(5245), + [anon_sym_requires] = ACTIONS(5245), + [anon_sym_CARET_CARET] = ACTIONS(5243), + [anon_sym_LBRACK_COLON] = ACTIONS(5240), + [sym_this] = ACTIONS(5245), }, - [STATE(1812)] = { - [sym__declaration_modifiers] = STATE(2147), - [sym__declaration_specifiers] = STATE(4054), - [sym_attribute_specifier] = STATE(2147), - [sym_attribute_declaration] = STATE(2147), - [sym_ms_declspec_modifier] = STATE(2147), - [sym_storage_class_specifier] = STATE(2147), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(8151), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_optional_parameter_declaration] = STATE(8151), - [sym_variadic_parameter_declaration] = STATE(8151), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2147), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), + [STATE(1151)] = { + [sym_identifier] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), + }, + [STATE(1152)] = { + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_else] = ACTIONS(3884), + [anon_sym_switch] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_break] = ACTIONS(3884), + [anon_sym_continue] = ACTIONS(3884), + [anon_sym_goto] = ACTIONS(3884), + [anon_sym___try] = ACTIONS(3884), + [anon_sym___leave] = ACTIONS(3884), + [anon_sym_not] = ACTIONS(3884), + [anon_sym_compl] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3886), + [anon_sym_PLUS_PLUS] = ACTIONS(3886), + [anon_sym_sizeof] = ACTIONS(3884), + [anon_sym___alignof__] = ACTIONS(3884), + [anon_sym___alignof] = ACTIONS(3884), + [anon_sym__alignof] = ACTIONS(3884), + [anon_sym_alignof] = ACTIONS(3884), + [anon_sym__Alignof] = ACTIONS(3884), + [anon_sym_offsetof] = ACTIONS(3884), + [anon_sym__Generic] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [anon_sym_asm] = ACTIONS(3884), + [anon_sym___asm__] = ACTIONS(3884), + [anon_sym___asm] = ACTIONS(3884), + [sym_number_literal] = ACTIONS(3886), + [anon_sym_L_SQUOTE] = ACTIONS(3886), + [anon_sym_u_SQUOTE] = ACTIONS(3886), + [anon_sym_U_SQUOTE] = ACTIONS(3886), + [anon_sym_u8_SQUOTE] = ACTIONS(3886), + [anon_sym_SQUOTE] = ACTIONS(3886), + [anon_sym_L_DQUOTE] = ACTIONS(3886), + [anon_sym_u_DQUOTE] = ACTIONS(3886), + [anon_sym_U_DQUOTE] = ACTIONS(3886), + [anon_sym_u8_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [sym_true] = ACTIONS(3884), + [sym_false] = ACTIONS(3884), + [anon_sym_NULL] = ACTIONS(3884), + [anon_sym_nullptr] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3884), + [anon_sym_throw] = ACTIONS(3884), + [anon_sym_co_return] = ACTIONS(3884), + [anon_sym_co_yield] = ACTIONS(3884), + [anon_sym_R_DQUOTE] = ACTIONS(3886), + [anon_sym_LR_DQUOTE] = ACTIONS(3886), + [anon_sym_uR_DQUOTE] = ACTIONS(3886), + [anon_sym_UR_DQUOTE] = ACTIONS(3886), + [anon_sym_u8R_DQUOTE] = ACTIONS(3886), + [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_requires] = ACTIONS(3884), + [anon_sym_CARET_CARET] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [sym_this] = ACTIONS(3884), + }, + [STATE(1153)] = { + [sym_identifier] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym___attribute] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2954), + [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__Nonnull] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym__Alignas] = 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(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [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_typename] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [anon_sym___asm] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [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_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(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [anon_sym_CARET_CARET] = ACTIONS(2954), + [anon_sym_LBRACK_COLON] = ACTIONS(2954), + [sym_this] = ACTIONS(2949), + }, + [STATE(1154)] = { + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(1155)] = { + [sym_identifier] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), + }, + [STATE(1156)] = { + [sym_identifier] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_else] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), + }, + [STATE(1157)] = { + [sym_identifier] = ACTIONS(3880), + [anon_sym_LPAREN2] = ACTIONS(3882), + [anon_sym_BANG] = ACTIONS(3882), + [anon_sym_TILDE] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_PLUS] = ACTIONS(3880), + [anon_sym_STAR] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3882), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym___extension__] = ACTIONS(3880), + [anon_sym_typedef] = ACTIONS(3880), + [anon_sym_virtual] = ACTIONS(3880), + [anon_sym_extern] = ACTIONS(3880), + [anon_sym___attribute__] = ACTIONS(3880), + [anon_sym___attribute] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), + [anon_sym___declspec] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_signed] = ACTIONS(3880), + [anon_sym_unsigned] = ACTIONS(3880), + [anon_sym_long] = ACTIONS(3880), + [anon_sym_short] = ACTIONS(3880), + [anon_sym_LBRACK] = ACTIONS(3880), + [anon_sym_static] = ACTIONS(3880), + [anon_sym_register] = ACTIONS(3880), + [anon_sym_inline] = ACTIONS(3880), + [anon_sym___inline] = ACTIONS(3880), + [anon_sym___inline__] = ACTIONS(3880), + [anon_sym___forceinline] = ACTIONS(3880), + [anon_sym_thread_local] = ACTIONS(3880), + [anon_sym___thread] = ACTIONS(3880), + [anon_sym_const] = ACTIONS(3880), + [anon_sym_constexpr] = ACTIONS(3880), + [anon_sym_volatile] = ACTIONS(3880), + [anon_sym_restrict] = ACTIONS(3880), + [anon_sym___restrict__] = ACTIONS(3880), + [anon_sym__Atomic] = ACTIONS(3880), + [anon_sym__Noreturn] = ACTIONS(3880), + [anon_sym_noreturn] = ACTIONS(3880), + [anon_sym__Nonnull] = ACTIONS(3880), + [anon_sym_mutable] = ACTIONS(3880), + [anon_sym_constinit] = ACTIONS(3880), + [anon_sym_consteval] = ACTIONS(3880), + [anon_sym_alignas] = ACTIONS(3880), + [anon_sym__Alignas] = ACTIONS(3880), + [sym_primitive_type] = ACTIONS(3880), + [anon_sym_enum] = ACTIONS(3880), + [anon_sym_class] = ACTIONS(3880), + [anon_sym_struct] = ACTIONS(3880), + [anon_sym_union] = ACTIONS(3880), + [anon_sym_if] = ACTIONS(3880), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3880), + [anon_sym_while] = ACTIONS(3880), + [anon_sym_do] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3880), + [anon_sym_return] = ACTIONS(3880), + [anon_sym_break] = ACTIONS(3880), + [anon_sym_continue] = ACTIONS(3880), + [anon_sym_goto] = ACTIONS(3880), + [anon_sym___try] = ACTIONS(3880), + [anon_sym___leave] = ACTIONS(3880), + [anon_sym_not] = ACTIONS(3880), + [anon_sym_compl] = ACTIONS(3880), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_sizeof] = ACTIONS(3880), + [anon_sym___alignof__] = ACTIONS(3880), + [anon_sym___alignof] = ACTIONS(3880), + [anon_sym__alignof] = ACTIONS(3880), + [anon_sym_alignof] = ACTIONS(3880), + [anon_sym__Alignof] = ACTIONS(3880), + [anon_sym_offsetof] = ACTIONS(3880), + [anon_sym__Generic] = ACTIONS(3880), + [anon_sym_typename] = ACTIONS(3880), + [anon_sym_asm] = ACTIONS(3880), + [anon_sym___asm__] = ACTIONS(3880), + [anon_sym___asm] = ACTIONS(3880), + [sym_number_literal] = ACTIONS(3882), + [anon_sym_L_SQUOTE] = ACTIONS(3882), + [anon_sym_u_SQUOTE] = ACTIONS(3882), + [anon_sym_U_SQUOTE] = ACTIONS(3882), + [anon_sym_u8_SQUOTE] = ACTIONS(3882), + [anon_sym_SQUOTE] = ACTIONS(3882), + [anon_sym_L_DQUOTE] = ACTIONS(3882), + [anon_sym_u_DQUOTE] = ACTIONS(3882), + [anon_sym_U_DQUOTE] = ACTIONS(3882), + [anon_sym_u8_DQUOTE] = ACTIONS(3882), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3880), + [anon_sym_template] = ACTIONS(3880), + [anon_sym_try] = ACTIONS(3880), + [anon_sym_delete] = ACTIONS(3880), + [anon_sym_throw] = ACTIONS(3880), + [anon_sym_co_return] = ACTIONS(3880), + [anon_sym_co_yield] = 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(3880), + [anon_sym_new] = ACTIONS(3880), + [anon_sym_requires] = ACTIONS(3880), + [anon_sym_CARET_CARET] = ACTIONS(3882), + [anon_sym_LBRACK_COLON] = ACTIONS(3882), + [sym_this] = ACTIONS(3880), + }, + [STATE(1158)] = { + [sym_identifier] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_BANG] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_else] = ACTIONS(3728), + [anon_sym_switch] = ACTIONS(3728), + [anon_sym_while] = ACTIONS(3728), + [anon_sym_do] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3728), + [anon_sym_return] = ACTIONS(3728), + [anon_sym_break] = ACTIONS(3728), + [anon_sym_continue] = ACTIONS(3728), + [anon_sym_goto] = ACTIONS(3728), + [anon_sym___try] = ACTIONS(3728), + [anon_sym___leave] = ACTIONS(3728), + [anon_sym_not] = ACTIONS(3728), + [anon_sym_compl] = ACTIONS(3728), + [anon_sym_DASH_DASH] = ACTIONS(3730), + [anon_sym_PLUS_PLUS] = ACTIONS(3730), + [anon_sym_sizeof] = ACTIONS(3728), + [anon_sym___alignof__] = ACTIONS(3728), + [anon_sym___alignof] = ACTIONS(3728), + [anon_sym__alignof] = ACTIONS(3728), + [anon_sym_alignof] = ACTIONS(3728), + [anon_sym__Alignof] = ACTIONS(3728), + [anon_sym_offsetof] = ACTIONS(3728), + [anon_sym__Generic] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [anon_sym_asm] = ACTIONS(3728), + [anon_sym___asm__] = ACTIONS(3728), + [anon_sym___asm] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3730), + [anon_sym_L_SQUOTE] = ACTIONS(3730), + [anon_sym_u_SQUOTE] = ACTIONS(3730), + [anon_sym_U_SQUOTE] = ACTIONS(3730), + [anon_sym_u8_SQUOTE] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_L_DQUOTE] = ACTIONS(3730), + [anon_sym_u_DQUOTE] = ACTIONS(3730), + [anon_sym_U_DQUOTE] = ACTIONS(3730), + [anon_sym_u8_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [anon_sym_NULL] = ACTIONS(3728), + [anon_sym_nullptr] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_try] = ACTIONS(3728), + [anon_sym_delete] = ACTIONS(3728), + [anon_sym_throw] = ACTIONS(3728), + [anon_sym_co_return] = ACTIONS(3728), + [anon_sym_co_yield] = ACTIONS(3728), + [anon_sym_R_DQUOTE] = ACTIONS(3730), + [anon_sym_LR_DQUOTE] = ACTIONS(3730), + [anon_sym_uR_DQUOTE] = ACTIONS(3730), + [anon_sym_UR_DQUOTE] = ACTIONS(3730), + [anon_sym_u8R_DQUOTE] = ACTIONS(3730), + [anon_sym_co_await] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3728), + [anon_sym_requires] = ACTIONS(3728), + [anon_sym_CARET_CARET] = ACTIONS(3730), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [sym_this] = ACTIONS(3728), + }, + [STATE(1159)] = { + [sym_identifier] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_PLUS] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_if] = ACTIONS(3876), + [anon_sym_else] = ACTIONS(3876), + [anon_sym_switch] = ACTIONS(3876), + [anon_sym_while] = ACTIONS(3876), + [anon_sym_do] = ACTIONS(3876), + [anon_sym_for] = ACTIONS(3876), + [anon_sym_return] = ACTIONS(3876), + [anon_sym_break] = ACTIONS(3876), + [anon_sym_continue] = ACTIONS(3876), + [anon_sym_goto] = ACTIONS(3876), + [anon_sym___try] = ACTIONS(3876), + [anon_sym___leave] = ACTIONS(3876), + [anon_sym_not] = ACTIONS(3876), + [anon_sym_compl] = ACTIONS(3876), + [anon_sym_DASH_DASH] = ACTIONS(3878), + [anon_sym_PLUS_PLUS] = ACTIONS(3878), + [anon_sym_sizeof] = ACTIONS(3876), + [anon_sym___alignof__] = ACTIONS(3876), + [anon_sym___alignof] = ACTIONS(3876), + [anon_sym__alignof] = ACTIONS(3876), + [anon_sym_alignof] = ACTIONS(3876), + [anon_sym__Alignof] = ACTIONS(3876), + [anon_sym_offsetof] = ACTIONS(3876), + [anon_sym__Generic] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [anon_sym_asm] = ACTIONS(3876), + [anon_sym___asm__] = ACTIONS(3876), + [anon_sym___asm] = ACTIONS(3876), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_L_SQUOTE] = ACTIONS(3878), + [anon_sym_u_SQUOTE] = ACTIONS(3878), + [anon_sym_U_SQUOTE] = ACTIONS(3878), + [anon_sym_u8_SQUOTE] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(3878), + [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(3876), + [sym_false] = ACTIONS(3876), + [anon_sym_NULL] = ACTIONS(3876), + [anon_sym_nullptr] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_try] = ACTIONS(3876), + [anon_sym_delete] = ACTIONS(3876), + [anon_sym_throw] = ACTIONS(3876), + [anon_sym_co_return] = ACTIONS(3876), + [anon_sym_co_yield] = ACTIONS(3876), + [anon_sym_R_DQUOTE] = ACTIONS(3878), + [anon_sym_LR_DQUOTE] = ACTIONS(3878), + [anon_sym_uR_DQUOTE] = ACTIONS(3878), + [anon_sym_UR_DQUOTE] = ACTIONS(3878), + [anon_sym_u8R_DQUOTE] = ACTIONS(3878), + [anon_sym_co_await] = ACTIONS(3876), + [anon_sym_new] = ACTIONS(3876), + [anon_sym_requires] = ACTIONS(3876), + [anon_sym_CARET_CARET] = ACTIONS(3878), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [sym_this] = ACTIONS(3876), + }, + [STATE(1160)] = { + [sym_identifier] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), + }, + [STATE(1161)] = { + [sym_identifier] = ACTIONS(3692), + [anon_sym_LPAREN2] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_STAR] = ACTIONS(3694), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym___extension__] = ACTIONS(3692), + [anon_sym_typedef] = ACTIONS(3692), + [anon_sym_virtual] = ACTIONS(3692), + [anon_sym_extern] = ACTIONS(3692), + [anon_sym___attribute__] = ACTIONS(3692), + [anon_sym___attribute] = ACTIONS(3692), + [anon_sym_COLON_COLON] = ACTIONS(3694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), + [anon_sym___declspec] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_signed] = ACTIONS(3692), + [anon_sym_unsigned] = ACTIONS(3692), + [anon_sym_long] = ACTIONS(3692), + [anon_sym_short] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_register] = ACTIONS(3692), + [anon_sym_inline] = ACTIONS(3692), + [anon_sym___inline] = ACTIONS(3692), + [anon_sym___inline__] = ACTIONS(3692), + [anon_sym___forceinline] = ACTIONS(3692), + [anon_sym_thread_local] = ACTIONS(3692), + [anon_sym___thread] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_constexpr] = ACTIONS(3692), + [anon_sym_volatile] = ACTIONS(3692), + [anon_sym_restrict] = ACTIONS(3692), + [anon_sym___restrict__] = ACTIONS(3692), + [anon_sym__Atomic] = ACTIONS(3692), + [anon_sym__Noreturn] = ACTIONS(3692), + [anon_sym_noreturn] = ACTIONS(3692), + [anon_sym__Nonnull] = ACTIONS(3692), + [anon_sym_mutable] = ACTIONS(3692), + [anon_sym_constinit] = ACTIONS(3692), + [anon_sym_consteval] = ACTIONS(3692), + [anon_sym_alignas] = ACTIONS(3692), + [anon_sym__Alignas] = ACTIONS(3692), + [sym_primitive_type] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_struct] = ACTIONS(3692), + [anon_sym_union] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_goto] = ACTIONS(3692), + [anon_sym___try] = ACTIONS(3692), + [anon_sym___leave] = ACTIONS(3692), + [anon_sym_not] = ACTIONS(3692), + [anon_sym_compl] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_sizeof] = ACTIONS(3692), + [anon_sym___alignof__] = ACTIONS(3692), + [anon_sym___alignof] = ACTIONS(3692), + [anon_sym__alignof] = ACTIONS(3692), + [anon_sym_alignof] = ACTIONS(3692), + [anon_sym__Alignof] = ACTIONS(3692), + [anon_sym_offsetof] = ACTIONS(3692), + [anon_sym__Generic] = ACTIONS(3692), + [anon_sym_typename] = ACTIONS(3692), + [anon_sym_asm] = ACTIONS(3692), + [anon_sym___asm__] = ACTIONS(3692), + [anon_sym___asm] = ACTIONS(3692), + [sym_number_literal] = ACTIONS(3694), + [anon_sym_L_SQUOTE] = ACTIONS(3694), + [anon_sym_u_SQUOTE] = ACTIONS(3694), + [anon_sym_U_SQUOTE] = ACTIONS(3694), + [anon_sym_u8_SQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_L_DQUOTE] = ACTIONS(3694), + [anon_sym_u_DQUOTE] = ACTIONS(3694), + [anon_sym_U_DQUOTE] = ACTIONS(3694), + [anon_sym_u8_DQUOTE] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [anon_sym_NULL] = ACTIONS(3692), + [anon_sym_nullptr] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3692), + [anon_sym_decltype] = ACTIONS(3692), + [anon_sym_template] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_co_return] = ACTIONS(3692), + [anon_sym_co_yield] = ACTIONS(3692), + [anon_sym_R_DQUOTE] = ACTIONS(3694), + [anon_sym_LR_DQUOTE] = ACTIONS(3694), + [anon_sym_uR_DQUOTE] = ACTIONS(3694), + [anon_sym_UR_DQUOTE] = ACTIONS(3694), + [anon_sym_u8R_DQUOTE] = ACTIONS(3694), + [anon_sym_co_await] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_requires] = ACTIONS(3692), + [anon_sym_CARET_CARET] = ACTIONS(3694), + [anon_sym_LBRACK_COLON] = ACTIONS(3694), + [sym_this] = ACTIONS(3692), + }, + [STATE(1162)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(5999), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(10257), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5253), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5253), + [anon_sym_GT_GT] = ACTIONS(5253), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [anon_sym_virtual] = ACTIONS(1306), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(5260), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -257812,35485 +213468,261539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(1813)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token2] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [aux_sym_preproc_else_token1] = ACTIONS(3260), - [aux_sym_preproc_elif_token1] = ACTIONS(3260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_friend] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), - }, - [STATE(1814)] = { - [sym_identifier] = ACTIONS(5543), - [aux_sym_preproc_def_token1] = ACTIONS(5543), - [aux_sym_preproc_if_token1] = ACTIONS(5543), - [aux_sym_preproc_if_token2] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5543), - [aux_sym_preproc_else_token1] = ACTIONS(5543), - [aux_sym_preproc_elif_token1] = ACTIONS(5543), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5543), - [sym_preproc_directive] = ACTIONS(5543), - [anon_sym_LPAREN2] = ACTIONS(5545), - [anon_sym_TILDE] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5545), - [anon_sym_AMP_AMP] = ACTIONS(5545), - [anon_sym_AMP] = ACTIONS(5543), - [anon_sym_SEMI] = ACTIONS(5545), - [anon_sym___extension__] = ACTIONS(5543), - [anon_sym_typedef] = ACTIONS(5543), - [anon_sym_virtual] = ACTIONS(5543), - [anon_sym_extern] = ACTIONS(5543), - [anon_sym___attribute__] = ACTIONS(5543), - [anon_sym___attribute] = ACTIONS(5543), - [anon_sym_using] = ACTIONS(5543), - [anon_sym_COLON_COLON] = ACTIONS(5545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5545), - [anon_sym___declspec] = ACTIONS(5543), - [anon_sym___based] = ACTIONS(5543), - [anon_sym_signed] = ACTIONS(5543), - [anon_sym_unsigned] = ACTIONS(5543), - [anon_sym_long] = ACTIONS(5543), - [anon_sym_short] = ACTIONS(5543), - [anon_sym_LBRACK] = ACTIONS(5543), - [anon_sym_static] = ACTIONS(5543), - [anon_sym_register] = ACTIONS(5543), - [anon_sym_inline] = ACTIONS(5543), - [anon_sym___inline] = ACTIONS(5543), - [anon_sym___inline__] = ACTIONS(5543), - [anon_sym___forceinline] = ACTIONS(5543), - [anon_sym_thread_local] = ACTIONS(5543), - [anon_sym___thread] = ACTIONS(5543), - [anon_sym_const] = ACTIONS(5543), - [anon_sym_constexpr] = ACTIONS(5543), - [anon_sym_volatile] = ACTIONS(5543), - [anon_sym_restrict] = ACTIONS(5543), - [anon_sym___restrict__] = ACTIONS(5543), - [anon_sym__Atomic] = ACTIONS(5543), - [anon_sym__Noreturn] = ACTIONS(5543), - [anon_sym_noreturn] = ACTIONS(5543), - [anon_sym__Nonnull] = ACTIONS(5543), - [anon_sym_mutable] = ACTIONS(5543), - [anon_sym_constinit] = ACTIONS(5543), - [anon_sym_consteval] = ACTIONS(5543), - [anon_sym_alignas] = ACTIONS(5543), - [anon_sym__Alignas] = ACTIONS(5543), - [sym_primitive_type] = ACTIONS(5543), - [anon_sym_enum] = ACTIONS(5543), - [anon_sym_class] = ACTIONS(5543), - [anon_sym_struct] = ACTIONS(5543), - [anon_sym_union] = ACTIONS(5543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5543), - [anon_sym_decltype] = ACTIONS(5543), - [anon_sym_explicit] = ACTIONS(5543), - [anon_sym_typename] = ACTIONS(5543), - [anon_sym_private] = ACTIONS(5543), - [anon_sym_template] = ACTIONS(5543), - [anon_sym_operator] = ACTIONS(5543), - [anon_sym_friend] = ACTIONS(5543), - [anon_sym_public] = ACTIONS(5543), - [anon_sym_protected] = ACTIONS(5543), - [anon_sym_static_assert] = ACTIONS(5543), - }, - [STATE(1815)] = { - [sym_identifier] = ACTIONS(5547), - [aux_sym_preproc_def_token1] = ACTIONS(5547), - [aux_sym_preproc_if_token1] = ACTIONS(5547), - [aux_sym_preproc_if_token2] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5547), - [aux_sym_preproc_else_token1] = ACTIONS(5547), - [aux_sym_preproc_elif_token1] = ACTIONS(5547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5547), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5547), - [sym_preproc_directive] = ACTIONS(5547), - [anon_sym_LPAREN2] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_STAR] = ACTIONS(5549), - [anon_sym_AMP_AMP] = ACTIONS(5549), - [anon_sym_AMP] = ACTIONS(5547), - [anon_sym_SEMI] = ACTIONS(5549), - [anon_sym___extension__] = ACTIONS(5547), - [anon_sym_typedef] = ACTIONS(5547), - [anon_sym_virtual] = ACTIONS(5547), - [anon_sym_extern] = ACTIONS(5547), - [anon_sym___attribute__] = ACTIONS(5547), - [anon_sym___attribute] = ACTIONS(5547), - [anon_sym_using] = ACTIONS(5547), - [anon_sym_COLON_COLON] = ACTIONS(5549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym___declspec] = ACTIONS(5547), - [anon_sym___based] = ACTIONS(5547), - [anon_sym_signed] = ACTIONS(5547), - [anon_sym_unsigned] = ACTIONS(5547), - [anon_sym_long] = ACTIONS(5547), - [anon_sym_short] = ACTIONS(5547), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_static] = ACTIONS(5547), - [anon_sym_register] = ACTIONS(5547), - [anon_sym_inline] = ACTIONS(5547), - [anon_sym___inline] = ACTIONS(5547), - [anon_sym___inline__] = ACTIONS(5547), - [anon_sym___forceinline] = ACTIONS(5547), - [anon_sym_thread_local] = ACTIONS(5547), - [anon_sym___thread] = ACTIONS(5547), - [anon_sym_const] = ACTIONS(5547), - [anon_sym_constexpr] = ACTIONS(5547), - [anon_sym_volatile] = ACTIONS(5547), - [anon_sym_restrict] = ACTIONS(5547), - [anon_sym___restrict__] = ACTIONS(5547), - [anon_sym__Atomic] = ACTIONS(5547), - [anon_sym__Noreturn] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym__Nonnull] = ACTIONS(5547), - [anon_sym_mutable] = ACTIONS(5547), - [anon_sym_constinit] = ACTIONS(5547), - [anon_sym_consteval] = ACTIONS(5547), - [anon_sym_alignas] = ACTIONS(5547), - [anon_sym__Alignas] = ACTIONS(5547), - [sym_primitive_type] = ACTIONS(5547), - [anon_sym_enum] = ACTIONS(5547), - [anon_sym_class] = ACTIONS(5547), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_union] = ACTIONS(5547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5547), - [anon_sym_decltype] = ACTIONS(5547), - [anon_sym_explicit] = ACTIONS(5547), - [anon_sym_typename] = ACTIONS(5547), - [anon_sym_private] = ACTIONS(5547), - [anon_sym_template] = ACTIONS(5547), - [anon_sym_operator] = ACTIONS(5547), - [anon_sym_friend] = ACTIONS(5547), - [anon_sym_public] = ACTIONS(5547), - [anon_sym_protected] = ACTIONS(5547), - [anon_sym_static_assert] = ACTIONS(5547), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_typename] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(1816)] = { - [sym_identifier] = ACTIONS(5551), - [aux_sym_preproc_def_token1] = ACTIONS(5551), - [aux_sym_preproc_if_token1] = ACTIONS(5551), - [aux_sym_preproc_if_token2] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5551), - [aux_sym_preproc_else_token1] = ACTIONS(5551), - [aux_sym_preproc_elif_token1] = ACTIONS(5551), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5551), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5551), - [sym_preproc_directive] = ACTIONS(5551), - [anon_sym_LPAREN2] = ACTIONS(5553), - [anon_sym_TILDE] = ACTIONS(5553), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_AMP_AMP] = ACTIONS(5553), - [anon_sym_AMP] = ACTIONS(5551), - [anon_sym_SEMI] = ACTIONS(5553), - [anon_sym___extension__] = ACTIONS(5551), - [anon_sym_typedef] = ACTIONS(5551), - [anon_sym_virtual] = ACTIONS(5551), - [anon_sym_extern] = ACTIONS(5551), - [anon_sym___attribute__] = ACTIONS(5551), - [anon_sym___attribute] = ACTIONS(5551), - [anon_sym_using] = ACTIONS(5551), - [anon_sym_COLON_COLON] = ACTIONS(5553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5553), - [anon_sym___declspec] = ACTIONS(5551), - [anon_sym___based] = ACTIONS(5551), - [anon_sym_signed] = ACTIONS(5551), - [anon_sym_unsigned] = ACTIONS(5551), - [anon_sym_long] = ACTIONS(5551), - [anon_sym_short] = ACTIONS(5551), - [anon_sym_LBRACK] = ACTIONS(5551), - [anon_sym_static] = ACTIONS(5551), - [anon_sym_register] = ACTIONS(5551), - [anon_sym_inline] = ACTIONS(5551), - [anon_sym___inline] = ACTIONS(5551), - [anon_sym___inline__] = ACTIONS(5551), - [anon_sym___forceinline] = ACTIONS(5551), - [anon_sym_thread_local] = ACTIONS(5551), - [anon_sym___thread] = ACTIONS(5551), - [anon_sym_const] = ACTIONS(5551), - [anon_sym_constexpr] = ACTIONS(5551), - [anon_sym_volatile] = ACTIONS(5551), - [anon_sym_restrict] = ACTIONS(5551), - [anon_sym___restrict__] = ACTIONS(5551), - [anon_sym__Atomic] = ACTIONS(5551), - [anon_sym__Noreturn] = ACTIONS(5551), - [anon_sym_noreturn] = ACTIONS(5551), - [anon_sym__Nonnull] = ACTIONS(5551), - [anon_sym_mutable] = ACTIONS(5551), - [anon_sym_constinit] = ACTIONS(5551), - [anon_sym_consteval] = ACTIONS(5551), - [anon_sym_alignas] = ACTIONS(5551), - [anon_sym__Alignas] = ACTIONS(5551), - [sym_primitive_type] = ACTIONS(5551), - [anon_sym_enum] = ACTIONS(5551), - [anon_sym_class] = ACTIONS(5551), - [anon_sym_struct] = ACTIONS(5551), - [anon_sym_union] = ACTIONS(5551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5551), - [anon_sym_decltype] = ACTIONS(5551), - [anon_sym_explicit] = ACTIONS(5551), - [anon_sym_typename] = ACTIONS(5551), - [anon_sym_private] = ACTIONS(5551), - [anon_sym_template] = ACTIONS(5551), - [anon_sym_operator] = ACTIONS(5551), - [anon_sym_friend] = ACTIONS(5551), - [anon_sym_public] = ACTIONS(5551), - [anon_sym_protected] = ACTIONS(5551), - [anon_sym_static_assert] = ACTIONS(5551), + [STATE(1163)] = { + [sym_expression] = STATE(5236), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10538), + [sym__unary_right_fold] = STATE(10540), + [sym__binary_fold] = STATE(10544), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1817)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token2] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [aux_sym_preproc_else_token1] = ACTIONS(5555), - [aux_sym_preproc_elif_token1] = ACTIONS(5555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1164)] = { + [sym_expression] = STATE(5262), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(11315), + [sym__unary_right_fold] = STATE(11317), + [sym__binary_fold] = STATE(11318), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1818)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token2] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [aux_sym_preproc_else_token1] = ACTIONS(5555), - [aux_sym_preproc_elif_token1] = ACTIONS(5555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1165)] = { + [sym_expression] = STATE(6275), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(9078), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(5576), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(5578), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5580), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1819)] = { - [sym_identifier] = ACTIONS(5559), - [aux_sym_preproc_def_token1] = ACTIONS(5559), - [aux_sym_preproc_if_token1] = ACTIONS(5559), - [aux_sym_preproc_if_token2] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5559), - [aux_sym_preproc_else_token1] = ACTIONS(5559), - [aux_sym_preproc_elif_token1] = ACTIONS(5559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5559), - [sym_preproc_directive] = ACTIONS(5559), - [anon_sym_LPAREN2] = ACTIONS(5561), - [anon_sym_TILDE] = ACTIONS(5561), - [anon_sym_STAR] = ACTIONS(5561), - [anon_sym_AMP_AMP] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5559), - [anon_sym_SEMI] = ACTIONS(5561), - [anon_sym___extension__] = ACTIONS(5559), - [anon_sym_typedef] = ACTIONS(5559), - [anon_sym_virtual] = ACTIONS(5559), - [anon_sym_extern] = ACTIONS(5559), - [anon_sym___attribute__] = ACTIONS(5559), - [anon_sym___attribute] = ACTIONS(5559), - [anon_sym_using] = ACTIONS(5559), - [anon_sym_COLON_COLON] = ACTIONS(5561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5561), - [anon_sym___declspec] = ACTIONS(5559), - [anon_sym___based] = ACTIONS(5559), - [anon_sym_signed] = ACTIONS(5559), - [anon_sym_unsigned] = ACTIONS(5559), - [anon_sym_long] = ACTIONS(5559), - [anon_sym_short] = ACTIONS(5559), - [anon_sym_LBRACK] = ACTIONS(5559), - [anon_sym_static] = ACTIONS(5559), - [anon_sym_register] = ACTIONS(5559), - [anon_sym_inline] = ACTIONS(5559), - [anon_sym___inline] = ACTIONS(5559), - [anon_sym___inline__] = ACTIONS(5559), - [anon_sym___forceinline] = ACTIONS(5559), - [anon_sym_thread_local] = ACTIONS(5559), - [anon_sym___thread] = ACTIONS(5559), - [anon_sym_const] = ACTIONS(5559), - [anon_sym_constexpr] = ACTIONS(5559), - [anon_sym_volatile] = ACTIONS(5559), - [anon_sym_restrict] = ACTIONS(5559), - [anon_sym___restrict__] = ACTIONS(5559), - [anon_sym__Atomic] = ACTIONS(5559), - [anon_sym__Noreturn] = ACTIONS(5559), - [anon_sym_noreturn] = ACTIONS(5559), - [anon_sym__Nonnull] = ACTIONS(5559), - [anon_sym_mutable] = ACTIONS(5559), - [anon_sym_constinit] = ACTIONS(5559), - [anon_sym_consteval] = ACTIONS(5559), - [anon_sym_alignas] = ACTIONS(5559), - [anon_sym__Alignas] = ACTIONS(5559), - [sym_primitive_type] = ACTIONS(5559), - [anon_sym_enum] = ACTIONS(5559), - [anon_sym_class] = ACTIONS(5559), - [anon_sym_struct] = ACTIONS(5559), - [anon_sym_union] = ACTIONS(5559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5559), - [anon_sym_decltype] = ACTIONS(5559), - [anon_sym_explicit] = ACTIONS(5559), - [anon_sym_typename] = ACTIONS(5559), - [anon_sym_private] = ACTIONS(5559), - [anon_sym_template] = ACTIONS(5559), - [anon_sym_operator] = ACTIONS(5559), - [anon_sym_friend] = ACTIONS(5559), - [anon_sym_public] = ACTIONS(5559), - [anon_sym_protected] = ACTIONS(5559), - [anon_sym_static_assert] = ACTIONS(5559), + [STATE(1166)] = { + [sym_expression] = STATE(6289), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(9109), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(5582), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(5584), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5586), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1820)] = { - [sym_identifier] = ACTIONS(5563), - [aux_sym_preproc_def_token1] = ACTIONS(5563), - [aux_sym_preproc_if_token1] = ACTIONS(5563), - [aux_sym_preproc_if_token2] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5563), - [aux_sym_preproc_else_token1] = ACTIONS(5563), - [aux_sym_preproc_elif_token1] = ACTIONS(5563), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5563), - [sym_preproc_directive] = ACTIONS(5563), - [anon_sym_LPAREN2] = ACTIONS(5565), - [anon_sym_TILDE] = ACTIONS(5565), - [anon_sym_STAR] = ACTIONS(5565), - [anon_sym_AMP_AMP] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5563), - [anon_sym_SEMI] = ACTIONS(5565), - [anon_sym___extension__] = ACTIONS(5563), - [anon_sym_typedef] = ACTIONS(5563), - [anon_sym_virtual] = ACTIONS(5563), - [anon_sym_extern] = ACTIONS(5563), - [anon_sym___attribute__] = ACTIONS(5563), - [anon_sym___attribute] = ACTIONS(5563), - [anon_sym_using] = ACTIONS(5563), - [anon_sym_COLON_COLON] = ACTIONS(5565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5565), - [anon_sym___declspec] = ACTIONS(5563), - [anon_sym___based] = ACTIONS(5563), - [anon_sym_signed] = ACTIONS(5563), - [anon_sym_unsigned] = ACTIONS(5563), - [anon_sym_long] = ACTIONS(5563), - [anon_sym_short] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_static] = ACTIONS(5563), - [anon_sym_register] = ACTIONS(5563), - [anon_sym_inline] = ACTIONS(5563), - [anon_sym___inline] = ACTIONS(5563), - [anon_sym___inline__] = ACTIONS(5563), - [anon_sym___forceinline] = ACTIONS(5563), - [anon_sym_thread_local] = ACTIONS(5563), - [anon_sym___thread] = ACTIONS(5563), - [anon_sym_const] = ACTIONS(5563), - [anon_sym_constexpr] = ACTIONS(5563), - [anon_sym_volatile] = ACTIONS(5563), - [anon_sym_restrict] = ACTIONS(5563), - [anon_sym___restrict__] = ACTIONS(5563), - [anon_sym__Atomic] = ACTIONS(5563), - [anon_sym__Noreturn] = ACTIONS(5563), - [anon_sym_noreturn] = ACTIONS(5563), - [anon_sym__Nonnull] = ACTIONS(5563), - [anon_sym_mutable] = ACTIONS(5563), - [anon_sym_constinit] = ACTIONS(5563), - [anon_sym_consteval] = ACTIONS(5563), - [anon_sym_alignas] = ACTIONS(5563), - [anon_sym__Alignas] = ACTIONS(5563), - [sym_primitive_type] = ACTIONS(5563), - [anon_sym_enum] = ACTIONS(5563), - [anon_sym_class] = ACTIONS(5563), - [anon_sym_struct] = ACTIONS(5563), - [anon_sym_union] = ACTIONS(5563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5563), - [anon_sym_decltype] = ACTIONS(5563), - [anon_sym_explicit] = ACTIONS(5563), - [anon_sym_typename] = ACTIONS(5563), - [anon_sym_private] = ACTIONS(5563), - [anon_sym_template] = ACTIONS(5563), - [anon_sym_operator] = ACTIONS(5563), - [anon_sym_friend] = ACTIONS(5563), - [anon_sym_public] = ACTIONS(5563), - [anon_sym_protected] = ACTIONS(5563), - [anon_sym_static_assert] = ACTIONS(5563), + [STATE(1167)] = { + [sym_expression] = STATE(6671), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10492), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10492), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5588), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1821)] = { - [sym_identifier] = ACTIONS(5567), - [aux_sym_preproc_def_token1] = ACTIONS(5567), - [aux_sym_preproc_if_token1] = ACTIONS(5567), - [aux_sym_preproc_if_token2] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5567), - [aux_sym_preproc_else_token1] = ACTIONS(5567), - [aux_sym_preproc_elif_token1] = ACTIONS(5567), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5567), - [sym_preproc_directive] = ACTIONS(5567), - [anon_sym_LPAREN2] = ACTIONS(5569), - [anon_sym_TILDE] = ACTIONS(5569), - [anon_sym_STAR] = ACTIONS(5569), - [anon_sym_AMP_AMP] = ACTIONS(5569), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_SEMI] = ACTIONS(5569), - [anon_sym___extension__] = ACTIONS(5567), - [anon_sym_typedef] = ACTIONS(5567), - [anon_sym_virtual] = ACTIONS(5567), - [anon_sym_extern] = ACTIONS(5567), - [anon_sym___attribute__] = ACTIONS(5567), - [anon_sym___attribute] = ACTIONS(5567), - [anon_sym_using] = ACTIONS(5567), - [anon_sym_COLON_COLON] = ACTIONS(5569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5569), - [anon_sym___declspec] = ACTIONS(5567), - [anon_sym___based] = ACTIONS(5567), - [anon_sym_signed] = ACTIONS(5567), - [anon_sym_unsigned] = ACTIONS(5567), - [anon_sym_long] = ACTIONS(5567), - [anon_sym_short] = ACTIONS(5567), - [anon_sym_LBRACK] = ACTIONS(5567), - [anon_sym_static] = ACTIONS(5567), - [anon_sym_register] = ACTIONS(5567), - [anon_sym_inline] = ACTIONS(5567), - [anon_sym___inline] = ACTIONS(5567), - [anon_sym___inline__] = ACTIONS(5567), - [anon_sym___forceinline] = ACTIONS(5567), - [anon_sym_thread_local] = ACTIONS(5567), - [anon_sym___thread] = ACTIONS(5567), - [anon_sym_const] = ACTIONS(5567), - [anon_sym_constexpr] = ACTIONS(5567), - [anon_sym_volatile] = ACTIONS(5567), - [anon_sym_restrict] = ACTIONS(5567), - [anon_sym___restrict__] = ACTIONS(5567), - [anon_sym__Atomic] = ACTIONS(5567), - [anon_sym__Noreturn] = ACTIONS(5567), - [anon_sym_noreturn] = ACTIONS(5567), - [anon_sym__Nonnull] = ACTIONS(5567), - [anon_sym_mutable] = ACTIONS(5567), - [anon_sym_constinit] = ACTIONS(5567), - [anon_sym_consteval] = ACTIONS(5567), - [anon_sym_alignas] = ACTIONS(5567), - [anon_sym__Alignas] = ACTIONS(5567), - [sym_primitive_type] = ACTIONS(5567), - [anon_sym_enum] = ACTIONS(5567), - [anon_sym_class] = ACTIONS(5567), - [anon_sym_struct] = ACTIONS(5567), - [anon_sym_union] = ACTIONS(5567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5567), - [anon_sym_decltype] = ACTIONS(5567), - [anon_sym_explicit] = ACTIONS(5567), - [anon_sym_typename] = ACTIONS(5567), - [anon_sym_private] = ACTIONS(5567), - [anon_sym_template] = ACTIONS(5567), - [anon_sym_operator] = ACTIONS(5567), - [anon_sym_friend] = ACTIONS(5567), - [anon_sym_public] = ACTIONS(5567), - [anon_sym_protected] = ACTIONS(5567), - [anon_sym_static_assert] = ACTIONS(5567), + [STATE(1168)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_identifier_parameter_pack_expansion] = STATE(10386), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5655), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(5590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), + [anon_sym_COMMA] = ACTIONS(5594), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5594), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1822)] = { - [sym_identifier] = ACTIONS(5571), - [aux_sym_preproc_def_token1] = ACTIONS(5571), - [aux_sym_preproc_if_token1] = ACTIONS(5571), - [aux_sym_preproc_if_token2] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5571), - [aux_sym_preproc_else_token1] = ACTIONS(5571), - [aux_sym_preproc_elif_token1] = ACTIONS(5571), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5571), - [sym_preproc_directive] = ACTIONS(5571), - [anon_sym_LPAREN2] = ACTIONS(5573), - [anon_sym_TILDE] = ACTIONS(5573), - [anon_sym_STAR] = ACTIONS(5573), - [anon_sym_AMP_AMP] = ACTIONS(5573), - [anon_sym_AMP] = ACTIONS(5571), - [anon_sym_SEMI] = ACTIONS(5573), - [anon_sym___extension__] = ACTIONS(5571), - [anon_sym_typedef] = ACTIONS(5571), - [anon_sym_virtual] = ACTIONS(5571), - [anon_sym_extern] = ACTIONS(5571), - [anon_sym___attribute__] = ACTIONS(5571), - [anon_sym___attribute] = ACTIONS(5571), - [anon_sym_using] = ACTIONS(5571), - [anon_sym_COLON_COLON] = ACTIONS(5573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5573), - [anon_sym___declspec] = ACTIONS(5571), - [anon_sym___based] = ACTIONS(5571), - [anon_sym_signed] = ACTIONS(5571), - [anon_sym_unsigned] = ACTIONS(5571), - [anon_sym_long] = ACTIONS(5571), - [anon_sym_short] = ACTIONS(5571), - [anon_sym_LBRACK] = ACTIONS(5571), - [anon_sym_static] = ACTIONS(5571), - [anon_sym_register] = ACTIONS(5571), - [anon_sym_inline] = ACTIONS(5571), - [anon_sym___inline] = ACTIONS(5571), - [anon_sym___inline__] = ACTIONS(5571), - [anon_sym___forceinline] = ACTIONS(5571), - [anon_sym_thread_local] = ACTIONS(5571), - [anon_sym___thread] = ACTIONS(5571), - [anon_sym_const] = ACTIONS(5571), - [anon_sym_constexpr] = ACTIONS(5571), - [anon_sym_volatile] = ACTIONS(5571), - [anon_sym_restrict] = ACTIONS(5571), - [anon_sym___restrict__] = ACTIONS(5571), - [anon_sym__Atomic] = ACTIONS(5571), - [anon_sym__Noreturn] = ACTIONS(5571), - [anon_sym_noreturn] = ACTIONS(5571), - [anon_sym__Nonnull] = ACTIONS(5571), - [anon_sym_mutable] = ACTIONS(5571), - [anon_sym_constinit] = ACTIONS(5571), - [anon_sym_consteval] = ACTIONS(5571), - [anon_sym_alignas] = ACTIONS(5571), - [anon_sym__Alignas] = ACTIONS(5571), - [sym_primitive_type] = ACTIONS(5571), - [anon_sym_enum] = ACTIONS(5571), - [anon_sym_class] = ACTIONS(5571), - [anon_sym_struct] = ACTIONS(5571), - [anon_sym_union] = ACTIONS(5571), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5571), - [anon_sym_decltype] = ACTIONS(5571), - [anon_sym_explicit] = ACTIONS(5571), - [anon_sym_typename] = ACTIONS(5571), - [anon_sym_private] = ACTIONS(5571), - [anon_sym_template] = ACTIONS(5571), - [anon_sym_operator] = ACTIONS(5571), - [anon_sym_friend] = ACTIONS(5571), - [anon_sym_public] = ACTIONS(5571), - [anon_sym_protected] = ACTIONS(5571), - [anon_sym_static_assert] = ACTIONS(5571), + [STATE(1169)] = { + [sym_expression] = STATE(5226), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(11484), + [sym__unary_right_fold] = STATE(11496), + [sym__binary_fold] = STATE(11510), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1823)] = { - [sym_identifier] = ACTIONS(5575), - [aux_sym_preproc_def_token1] = ACTIONS(5575), - [aux_sym_preproc_if_token1] = ACTIONS(5575), - [aux_sym_preproc_if_token2] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5575), - [aux_sym_preproc_else_token1] = ACTIONS(5575), - [aux_sym_preproc_elif_token1] = ACTIONS(5575), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5575), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5575), - [sym_preproc_directive] = ACTIONS(5575), - [anon_sym_LPAREN2] = ACTIONS(5577), - [anon_sym_TILDE] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_AMP_AMP] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(5577), - [anon_sym___extension__] = ACTIONS(5575), - [anon_sym_typedef] = ACTIONS(5575), - [anon_sym_virtual] = ACTIONS(5575), - [anon_sym_extern] = ACTIONS(5575), - [anon_sym___attribute__] = ACTIONS(5575), - [anon_sym___attribute] = ACTIONS(5575), - [anon_sym_using] = ACTIONS(5575), - [anon_sym_COLON_COLON] = ACTIONS(5577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5577), - [anon_sym___declspec] = ACTIONS(5575), - [anon_sym___based] = ACTIONS(5575), - [anon_sym_signed] = ACTIONS(5575), - [anon_sym_unsigned] = ACTIONS(5575), - [anon_sym_long] = ACTIONS(5575), - [anon_sym_short] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(5575), - [anon_sym_static] = ACTIONS(5575), - [anon_sym_register] = ACTIONS(5575), - [anon_sym_inline] = ACTIONS(5575), - [anon_sym___inline] = ACTIONS(5575), - [anon_sym___inline__] = ACTIONS(5575), - [anon_sym___forceinline] = ACTIONS(5575), - [anon_sym_thread_local] = ACTIONS(5575), - [anon_sym___thread] = ACTIONS(5575), - [anon_sym_const] = ACTIONS(5575), - [anon_sym_constexpr] = ACTIONS(5575), - [anon_sym_volatile] = ACTIONS(5575), - [anon_sym_restrict] = ACTIONS(5575), - [anon_sym___restrict__] = ACTIONS(5575), - [anon_sym__Atomic] = ACTIONS(5575), - [anon_sym__Noreturn] = ACTIONS(5575), - [anon_sym_noreturn] = ACTIONS(5575), - [anon_sym__Nonnull] = ACTIONS(5575), - [anon_sym_mutable] = ACTIONS(5575), - [anon_sym_constinit] = ACTIONS(5575), - [anon_sym_consteval] = ACTIONS(5575), - [anon_sym_alignas] = ACTIONS(5575), - [anon_sym__Alignas] = ACTIONS(5575), - [sym_primitive_type] = ACTIONS(5575), - [anon_sym_enum] = ACTIONS(5575), - [anon_sym_class] = ACTIONS(5575), - [anon_sym_struct] = ACTIONS(5575), - [anon_sym_union] = ACTIONS(5575), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5575), - [anon_sym_decltype] = ACTIONS(5575), - [anon_sym_explicit] = ACTIONS(5575), - [anon_sym_typename] = ACTIONS(5575), - [anon_sym_private] = ACTIONS(5575), - [anon_sym_template] = ACTIONS(5575), - [anon_sym_operator] = ACTIONS(5575), - [anon_sym_friend] = ACTIONS(5575), - [anon_sym_public] = ACTIONS(5575), - [anon_sym_protected] = ACTIONS(5575), - [anon_sym_static_assert] = ACTIONS(5575), + [STATE(1170)] = { + [sym_compound_statement] = STATE(10588), + [sym_expression] = STATE(5244), + [sym__string] = STATE(4474), + [sym_comma_expression] = STATE(10588), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym__assignment_expression_lhs] = STATE(11136), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1824)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token2] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [aux_sym_preproc_else_token1] = ACTIONS(5579), - [aux_sym_preproc_elif_token1] = ACTIONS(5579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), + [STATE(1171)] = { + [sym_string_literal] = STATE(3798), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(1955), + [sym_raw_string_literal] = STATE(3798), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5596), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5599), + [anon_sym_or_eq] = ACTIONS(5599), + [anon_sym_xor_eq] = ACTIONS(5599), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(5601), + [anon_sym_u_DQUOTE] = ACTIONS(5601), + [anon_sym_U_DQUOTE] = ACTIONS(5601), + [anon_sym_u8_DQUOTE] = ACTIONS(5601), + [anon_sym_DQUOTE] = ACTIONS(5601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1825)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token2] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [aux_sym_preproc_else_token1] = ACTIONS(5579), - [aux_sym_preproc_elif_token1] = ACTIONS(5579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), + [STATE(1172)] = { + [sym_expression] = STATE(6654), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10956), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10956), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5605), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1826)] = { - [sym_identifier] = ACTIONS(5583), - [aux_sym_preproc_def_token1] = ACTIONS(5583), - [aux_sym_preproc_if_token1] = ACTIONS(5583), - [aux_sym_preproc_if_token2] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5583), - [aux_sym_preproc_else_token1] = ACTIONS(5583), - [aux_sym_preproc_elif_token1] = ACTIONS(5583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5583), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5583), - [sym_preproc_directive] = ACTIONS(5583), - [anon_sym_LPAREN2] = ACTIONS(5585), - [anon_sym_TILDE] = ACTIONS(5585), - [anon_sym_STAR] = ACTIONS(5585), - [anon_sym_AMP_AMP] = ACTIONS(5585), - [anon_sym_AMP] = ACTIONS(5583), - [anon_sym_SEMI] = ACTIONS(5585), - [anon_sym___extension__] = ACTIONS(5583), - [anon_sym_typedef] = ACTIONS(5583), - [anon_sym_virtual] = ACTIONS(5583), - [anon_sym_extern] = ACTIONS(5583), - [anon_sym___attribute__] = ACTIONS(5583), - [anon_sym___attribute] = ACTIONS(5583), - [anon_sym_using] = ACTIONS(5583), - [anon_sym_COLON_COLON] = ACTIONS(5585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5585), - [anon_sym___declspec] = ACTIONS(5583), - [anon_sym___based] = ACTIONS(5583), - [anon_sym_signed] = ACTIONS(5583), - [anon_sym_unsigned] = ACTIONS(5583), - [anon_sym_long] = ACTIONS(5583), - [anon_sym_short] = ACTIONS(5583), - [anon_sym_LBRACK] = ACTIONS(5583), - [anon_sym_static] = ACTIONS(5583), - [anon_sym_register] = ACTIONS(5583), - [anon_sym_inline] = ACTIONS(5583), - [anon_sym___inline] = ACTIONS(5583), - [anon_sym___inline__] = ACTIONS(5583), - [anon_sym___forceinline] = ACTIONS(5583), - [anon_sym_thread_local] = ACTIONS(5583), - [anon_sym___thread] = ACTIONS(5583), - [anon_sym_const] = ACTIONS(5583), - [anon_sym_constexpr] = ACTIONS(5583), - [anon_sym_volatile] = ACTIONS(5583), - [anon_sym_restrict] = ACTIONS(5583), - [anon_sym___restrict__] = ACTIONS(5583), - [anon_sym__Atomic] = ACTIONS(5583), - [anon_sym__Noreturn] = ACTIONS(5583), - [anon_sym_noreturn] = ACTIONS(5583), - [anon_sym__Nonnull] = ACTIONS(5583), - [anon_sym_mutable] = ACTIONS(5583), - [anon_sym_constinit] = ACTIONS(5583), - [anon_sym_consteval] = ACTIONS(5583), - [anon_sym_alignas] = ACTIONS(5583), - [anon_sym__Alignas] = ACTIONS(5583), - [sym_primitive_type] = ACTIONS(5583), - [anon_sym_enum] = ACTIONS(5583), - [anon_sym_class] = ACTIONS(5583), - [anon_sym_struct] = ACTIONS(5583), - [anon_sym_union] = ACTIONS(5583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5583), - [anon_sym_decltype] = ACTIONS(5583), - [anon_sym_explicit] = ACTIONS(5583), - [anon_sym_typename] = ACTIONS(5583), - [anon_sym_private] = ACTIONS(5583), - [anon_sym_template] = ACTIONS(5583), - [anon_sym_operator] = ACTIONS(5583), - [anon_sym_friend] = ACTIONS(5583), - [anon_sym_public] = ACTIONS(5583), - [anon_sym_protected] = ACTIONS(5583), - [anon_sym_static_assert] = ACTIONS(5583), + [STATE(1173)] = { + [sym_expression] = STATE(5286), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10607), + [sym__unary_right_fold] = STATE(10613), + [sym__binary_fold] = STATE(10617), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1827)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token2] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [aux_sym_preproc_else_token1] = ACTIONS(2995), - [aux_sym_preproc_elif_token1] = ACTIONS(2995), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_friend] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_protected] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), + [STATE(1174)] = { + [sym_expression] = STATE(6303), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(9082), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(5607), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(5609), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5611), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1828)] = { - [sym_identifier] = ACTIONS(5587), - [aux_sym_preproc_def_token1] = ACTIONS(5587), - [aux_sym_preproc_if_token1] = ACTIONS(5587), - [aux_sym_preproc_if_token2] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5587), - [aux_sym_preproc_else_token1] = ACTIONS(5587), - [aux_sym_preproc_elif_token1] = ACTIONS(5587), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5587), - [sym_preproc_directive] = ACTIONS(5587), - [anon_sym_LPAREN2] = ACTIONS(5589), - [anon_sym_TILDE] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_AMP_AMP] = ACTIONS(5589), - [anon_sym_AMP] = ACTIONS(5587), - [anon_sym_SEMI] = ACTIONS(5589), - [anon_sym___extension__] = ACTIONS(5587), - [anon_sym_typedef] = ACTIONS(5587), - [anon_sym_virtual] = ACTIONS(5587), - [anon_sym_extern] = ACTIONS(5587), - [anon_sym___attribute__] = ACTIONS(5587), - [anon_sym___attribute] = ACTIONS(5587), - [anon_sym_using] = ACTIONS(5587), - [anon_sym_COLON_COLON] = ACTIONS(5589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), - [anon_sym___declspec] = ACTIONS(5587), - [anon_sym___based] = ACTIONS(5587), - [anon_sym_signed] = ACTIONS(5587), - [anon_sym_unsigned] = ACTIONS(5587), - [anon_sym_long] = ACTIONS(5587), - [anon_sym_short] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5587), - [anon_sym_register] = ACTIONS(5587), - [anon_sym_inline] = ACTIONS(5587), - [anon_sym___inline] = ACTIONS(5587), - [anon_sym___inline__] = ACTIONS(5587), - [anon_sym___forceinline] = ACTIONS(5587), - [anon_sym_thread_local] = ACTIONS(5587), - [anon_sym___thread] = ACTIONS(5587), - [anon_sym_const] = ACTIONS(5587), - [anon_sym_constexpr] = ACTIONS(5587), - [anon_sym_volatile] = ACTIONS(5587), - [anon_sym_restrict] = ACTIONS(5587), - [anon_sym___restrict__] = ACTIONS(5587), - [anon_sym__Atomic] = ACTIONS(5587), - [anon_sym__Noreturn] = ACTIONS(5587), - [anon_sym_noreturn] = ACTIONS(5587), - [anon_sym__Nonnull] = ACTIONS(5587), - [anon_sym_mutable] = ACTIONS(5587), - [anon_sym_constinit] = ACTIONS(5587), - [anon_sym_consteval] = ACTIONS(5587), - [anon_sym_alignas] = ACTIONS(5587), - [anon_sym__Alignas] = ACTIONS(5587), - [sym_primitive_type] = ACTIONS(5587), - [anon_sym_enum] = ACTIONS(5587), - [anon_sym_class] = ACTIONS(5587), - [anon_sym_struct] = ACTIONS(5587), - [anon_sym_union] = ACTIONS(5587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5587), - [anon_sym_decltype] = ACTIONS(5587), - [anon_sym_explicit] = ACTIONS(5587), - [anon_sym_typename] = ACTIONS(5587), - [anon_sym_private] = ACTIONS(5587), - [anon_sym_template] = ACTIONS(5587), - [anon_sym_operator] = ACTIONS(5587), - [anon_sym_friend] = ACTIONS(5587), - [anon_sym_public] = ACTIONS(5587), - [anon_sym_protected] = ACTIONS(5587), - [anon_sym_static_assert] = ACTIONS(5587), + [STATE(1175)] = { + [sym_compound_statement] = STATE(9753), + [sym_expression] = STATE(6455), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9753), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5613), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1829)] = { - [sym_identifier] = ACTIONS(5591), - [aux_sym_preproc_def_token1] = ACTIONS(5591), - [aux_sym_preproc_if_token1] = ACTIONS(5591), - [aux_sym_preproc_if_token2] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5591), - [aux_sym_preproc_else_token1] = ACTIONS(5591), - [aux_sym_preproc_elif_token1] = ACTIONS(5591), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5591), - [sym_preproc_directive] = ACTIONS(5591), - [anon_sym_LPAREN2] = ACTIONS(5593), - [anon_sym_TILDE] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5593), - [anon_sym_AMP_AMP] = ACTIONS(5593), - [anon_sym_AMP] = ACTIONS(5591), - [anon_sym_SEMI] = ACTIONS(5593), - [anon_sym___extension__] = ACTIONS(5591), - [anon_sym_typedef] = ACTIONS(5591), - [anon_sym_virtual] = ACTIONS(5591), - [anon_sym_extern] = ACTIONS(5591), - [anon_sym___attribute__] = ACTIONS(5591), - [anon_sym___attribute] = ACTIONS(5591), - [anon_sym_using] = ACTIONS(5591), - [anon_sym_COLON_COLON] = ACTIONS(5593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), - [anon_sym___declspec] = ACTIONS(5591), - [anon_sym___based] = ACTIONS(5591), - [anon_sym_signed] = ACTIONS(5591), - [anon_sym_unsigned] = ACTIONS(5591), - [anon_sym_long] = ACTIONS(5591), - [anon_sym_short] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5591), - [anon_sym_static] = ACTIONS(5591), - [anon_sym_register] = ACTIONS(5591), - [anon_sym_inline] = ACTIONS(5591), - [anon_sym___inline] = ACTIONS(5591), - [anon_sym___inline__] = ACTIONS(5591), - [anon_sym___forceinline] = ACTIONS(5591), - [anon_sym_thread_local] = ACTIONS(5591), - [anon_sym___thread] = ACTIONS(5591), - [anon_sym_const] = ACTIONS(5591), - [anon_sym_constexpr] = ACTIONS(5591), - [anon_sym_volatile] = ACTIONS(5591), - [anon_sym_restrict] = ACTIONS(5591), - [anon_sym___restrict__] = ACTIONS(5591), - [anon_sym__Atomic] = ACTIONS(5591), - [anon_sym__Noreturn] = ACTIONS(5591), - [anon_sym_noreturn] = ACTIONS(5591), - [anon_sym__Nonnull] = ACTIONS(5591), - [anon_sym_mutable] = ACTIONS(5591), - [anon_sym_constinit] = ACTIONS(5591), - [anon_sym_consteval] = ACTIONS(5591), - [anon_sym_alignas] = ACTIONS(5591), - [anon_sym__Alignas] = ACTIONS(5591), - [sym_primitive_type] = ACTIONS(5591), - [anon_sym_enum] = ACTIONS(5591), - [anon_sym_class] = ACTIONS(5591), - [anon_sym_struct] = ACTIONS(5591), - [anon_sym_union] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5591), - [anon_sym_decltype] = ACTIONS(5591), - [anon_sym_explicit] = ACTIONS(5591), - [anon_sym_typename] = ACTIONS(5591), - [anon_sym_private] = ACTIONS(5591), - [anon_sym_template] = ACTIONS(5591), - [anon_sym_operator] = ACTIONS(5591), - [anon_sym_friend] = ACTIONS(5591), - [anon_sym_public] = ACTIONS(5591), - [anon_sym_protected] = ACTIONS(5591), - [anon_sym_static_assert] = ACTIONS(5591), + [STATE(1176)] = { + [sym_expression] = STATE(5172), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(11307), + [sym__unary_right_fold] = STATE(11319), + [sym__binary_fold] = STATE(11322), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1830)] = { - [sym_identifier] = ACTIONS(5595), - [aux_sym_preproc_def_token1] = ACTIONS(5595), - [aux_sym_preproc_if_token1] = ACTIONS(5595), - [aux_sym_preproc_if_token2] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5595), - [aux_sym_preproc_else_token1] = ACTIONS(5595), - [aux_sym_preproc_elif_token1] = ACTIONS(5595), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5595), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5595), - [sym_preproc_directive] = ACTIONS(5595), - [anon_sym_LPAREN2] = ACTIONS(5597), - [anon_sym_TILDE] = ACTIONS(5597), - [anon_sym_STAR] = ACTIONS(5597), - [anon_sym_AMP_AMP] = ACTIONS(5597), - [anon_sym_AMP] = ACTIONS(5595), - [anon_sym_SEMI] = ACTIONS(5597), - [anon_sym___extension__] = ACTIONS(5595), - [anon_sym_typedef] = ACTIONS(5595), - [anon_sym_virtual] = ACTIONS(5595), - [anon_sym_extern] = ACTIONS(5595), - [anon_sym___attribute__] = ACTIONS(5595), - [anon_sym___attribute] = ACTIONS(5595), - [anon_sym_using] = ACTIONS(5595), - [anon_sym_COLON_COLON] = ACTIONS(5597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5597), - [anon_sym___declspec] = ACTIONS(5595), - [anon_sym___based] = ACTIONS(5595), - [anon_sym_signed] = ACTIONS(5595), - [anon_sym_unsigned] = ACTIONS(5595), - [anon_sym_long] = ACTIONS(5595), - [anon_sym_short] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5595), - [anon_sym_static] = ACTIONS(5595), - [anon_sym_register] = ACTIONS(5595), - [anon_sym_inline] = ACTIONS(5595), - [anon_sym___inline] = ACTIONS(5595), - [anon_sym___inline__] = ACTIONS(5595), - [anon_sym___forceinline] = ACTIONS(5595), - [anon_sym_thread_local] = ACTIONS(5595), - [anon_sym___thread] = ACTIONS(5595), - [anon_sym_const] = ACTIONS(5595), - [anon_sym_constexpr] = ACTIONS(5595), - [anon_sym_volatile] = ACTIONS(5595), - [anon_sym_restrict] = ACTIONS(5595), - [anon_sym___restrict__] = ACTIONS(5595), - [anon_sym__Atomic] = ACTIONS(5595), - [anon_sym__Noreturn] = ACTIONS(5595), - [anon_sym_noreturn] = ACTIONS(5595), - [anon_sym__Nonnull] = ACTIONS(5595), - [anon_sym_mutable] = ACTIONS(5595), - [anon_sym_constinit] = ACTIONS(5595), - [anon_sym_consteval] = ACTIONS(5595), - [anon_sym_alignas] = ACTIONS(5595), - [anon_sym__Alignas] = ACTIONS(5595), - [sym_primitive_type] = ACTIONS(5595), - [anon_sym_enum] = ACTIONS(5595), - [anon_sym_class] = ACTIONS(5595), - [anon_sym_struct] = ACTIONS(5595), - [anon_sym_union] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5595), - [anon_sym_decltype] = ACTIONS(5595), - [anon_sym_explicit] = ACTIONS(5595), - [anon_sym_typename] = ACTIONS(5595), - [anon_sym_private] = ACTIONS(5595), - [anon_sym_template] = ACTIONS(5595), - [anon_sym_operator] = ACTIONS(5595), - [anon_sym_friend] = ACTIONS(5595), - [anon_sym_public] = ACTIONS(5595), - [anon_sym_protected] = ACTIONS(5595), - [anon_sym_static_assert] = ACTIONS(5595), + [STATE(1177)] = { + [sym_expression] = STATE(5272), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10543), + [sym__unary_right_fold] = STATE(10552), + [sym__binary_fold] = STATE(10580), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1831)] = { - [sym_identifier] = ACTIONS(5599), - [aux_sym_preproc_def_token1] = ACTIONS(5599), - [aux_sym_preproc_if_token1] = ACTIONS(5599), - [aux_sym_preproc_if_token2] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5599), - [aux_sym_preproc_else_token1] = ACTIONS(5599), - [aux_sym_preproc_elif_token1] = ACTIONS(5599), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5599), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5599), - [sym_preproc_directive] = ACTIONS(5599), - [anon_sym_LPAREN2] = ACTIONS(5601), - [anon_sym_TILDE] = ACTIONS(5601), - [anon_sym_STAR] = ACTIONS(5601), - [anon_sym_AMP_AMP] = ACTIONS(5601), - [anon_sym_AMP] = ACTIONS(5599), - [anon_sym_SEMI] = ACTIONS(5601), - [anon_sym___extension__] = ACTIONS(5599), - [anon_sym_typedef] = ACTIONS(5599), - [anon_sym_virtual] = ACTIONS(5599), - [anon_sym_extern] = ACTIONS(5599), - [anon_sym___attribute__] = ACTIONS(5599), - [anon_sym___attribute] = ACTIONS(5599), - [anon_sym_using] = ACTIONS(5599), - [anon_sym_COLON_COLON] = ACTIONS(5601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5601), - [anon_sym___declspec] = ACTIONS(5599), - [anon_sym___based] = ACTIONS(5599), - [anon_sym_signed] = ACTIONS(5599), - [anon_sym_unsigned] = ACTIONS(5599), - [anon_sym_long] = ACTIONS(5599), - [anon_sym_short] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(5599), - [anon_sym_static] = ACTIONS(5599), - [anon_sym_register] = ACTIONS(5599), - [anon_sym_inline] = ACTIONS(5599), - [anon_sym___inline] = ACTIONS(5599), - [anon_sym___inline__] = ACTIONS(5599), - [anon_sym___forceinline] = ACTIONS(5599), - [anon_sym_thread_local] = ACTIONS(5599), - [anon_sym___thread] = ACTIONS(5599), - [anon_sym_const] = ACTIONS(5599), - [anon_sym_constexpr] = ACTIONS(5599), - [anon_sym_volatile] = ACTIONS(5599), - [anon_sym_restrict] = ACTIONS(5599), - [anon_sym___restrict__] = ACTIONS(5599), - [anon_sym__Atomic] = ACTIONS(5599), - [anon_sym__Noreturn] = ACTIONS(5599), - [anon_sym_noreturn] = ACTIONS(5599), - [anon_sym__Nonnull] = ACTIONS(5599), - [anon_sym_mutable] = ACTIONS(5599), - [anon_sym_constinit] = ACTIONS(5599), - [anon_sym_consteval] = ACTIONS(5599), - [anon_sym_alignas] = ACTIONS(5599), - [anon_sym__Alignas] = ACTIONS(5599), - [sym_primitive_type] = ACTIONS(5599), - [anon_sym_enum] = ACTIONS(5599), - [anon_sym_class] = ACTIONS(5599), - [anon_sym_struct] = ACTIONS(5599), - [anon_sym_union] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5599), - [anon_sym_decltype] = ACTIONS(5599), - [anon_sym_explicit] = ACTIONS(5599), - [anon_sym_typename] = ACTIONS(5599), - [anon_sym_private] = ACTIONS(5599), - [anon_sym_template] = ACTIONS(5599), - [anon_sym_operator] = ACTIONS(5599), - [anon_sym_friend] = ACTIONS(5599), - [anon_sym_public] = ACTIONS(5599), - [anon_sym_protected] = ACTIONS(5599), - [anon_sym_static_assert] = ACTIONS(5599), + [STATE(1178)] = { + [sym_compound_statement] = STATE(9593), + [sym_expression] = STATE(6551), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9593), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1832)] = { - [sym_identifier] = ACTIONS(5603), - [aux_sym_preproc_def_token1] = ACTIONS(5603), - [aux_sym_preproc_if_token1] = ACTIONS(5603), - [aux_sym_preproc_if_token2] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5603), - [aux_sym_preproc_else_token1] = ACTIONS(5603), - [aux_sym_preproc_elif_token1] = ACTIONS(5603), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5603), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5603), - [sym_preproc_directive] = ACTIONS(5603), - [anon_sym_LPAREN2] = ACTIONS(5605), - [anon_sym_TILDE] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5605), - [anon_sym_AMP_AMP] = ACTIONS(5605), - [anon_sym_AMP] = ACTIONS(5603), - [anon_sym_SEMI] = ACTIONS(5605), - [anon_sym___extension__] = ACTIONS(5603), - [anon_sym_typedef] = ACTIONS(5603), - [anon_sym_virtual] = ACTIONS(5603), - [anon_sym_extern] = ACTIONS(5603), - [anon_sym___attribute__] = ACTIONS(5603), - [anon_sym___attribute] = ACTIONS(5603), - [anon_sym_using] = ACTIONS(5603), - [anon_sym_COLON_COLON] = ACTIONS(5605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5605), - [anon_sym___declspec] = ACTIONS(5603), - [anon_sym___based] = ACTIONS(5603), - [anon_sym_signed] = ACTIONS(5603), - [anon_sym_unsigned] = ACTIONS(5603), - [anon_sym_long] = ACTIONS(5603), - [anon_sym_short] = ACTIONS(5603), - [anon_sym_LBRACK] = ACTIONS(5603), - [anon_sym_static] = ACTIONS(5603), - [anon_sym_register] = ACTIONS(5603), - [anon_sym_inline] = ACTIONS(5603), - [anon_sym___inline] = ACTIONS(5603), - [anon_sym___inline__] = ACTIONS(5603), - [anon_sym___forceinline] = ACTIONS(5603), - [anon_sym_thread_local] = ACTIONS(5603), - [anon_sym___thread] = ACTIONS(5603), - [anon_sym_const] = ACTIONS(5603), - [anon_sym_constexpr] = ACTIONS(5603), - [anon_sym_volatile] = ACTIONS(5603), - [anon_sym_restrict] = ACTIONS(5603), - [anon_sym___restrict__] = ACTIONS(5603), - [anon_sym__Atomic] = ACTIONS(5603), - [anon_sym__Noreturn] = ACTIONS(5603), - [anon_sym_noreturn] = ACTIONS(5603), - [anon_sym__Nonnull] = ACTIONS(5603), - [anon_sym_mutable] = ACTIONS(5603), - [anon_sym_constinit] = ACTIONS(5603), - [anon_sym_consteval] = ACTIONS(5603), - [anon_sym_alignas] = ACTIONS(5603), - [anon_sym__Alignas] = ACTIONS(5603), - [sym_primitive_type] = ACTIONS(5603), - [anon_sym_enum] = ACTIONS(5603), - [anon_sym_class] = ACTIONS(5603), - [anon_sym_struct] = ACTIONS(5603), - [anon_sym_union] = ACTIONS(5603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5603), - [anon_sym_decltype] = ACTIONS(5603), - [anon_sym_explicit] = ACTIONS(5603), - [anon_sym_typename] = ACTIONS(5603), - [anon_sym_private] = ACTIONS(5603), - [anon_sym_template] = ACTIONS(5603), - [anon_sym_operator] = ACTIONS(5603), - [anon_sym_friend] = ACTIONS(5603), - [anon_sym_public] = ACTIONS(5603), - [anon_sym_protected] = ACTIONS(5603), - [anon_sym_static_assert] = ACTIONS(5603), + [STATE(1179)] = { + [sym_compound_statement] = STATE(9961), + [sym_expression] = STATE(6487), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9961), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1833)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token2] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [aux_sym_preproc_else_token1] = ACTIONS(5607), - [aux_sym_preproc_elif_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [anon_sym_signed] = ACTIONS(5607), - [anon_sym_unsigned] = ACTIONS(5607), - [anon_sym_long] = ACTIONS(5607), - [anon_sym_short] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1180)] = { + [sym_compound_statement] = STATE(9939), + [sym_expression] = STATE(6567), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9939), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5619), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1834)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token2] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [aux_sym_preproc_else_token1] = ACTIONS(5611), - [aux_sym_preproc_elif_token1] = ACTIONS(5611), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1181)] = { + [sym_expression] = STATE(5250), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10597), + [sym__unary_right_fold] = STATE(10627), + [sym__binary_fold] = STATE(10638), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1835)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token2] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [aux_sym_preproc_else_token1] = ACTIONS(5607), - [aux_sym_preproc_elif_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [anon_sym_signed] = ACTIONS(5607), - [anon_sym_unsigned] = ACTIONS(5607), - [anon_sym_long] = ACTIONS(5607), - [anon_sym_short] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1182)] = { + [sym_expression] = STATE(5269), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10646), + [sym__unary_right_fold] = STATE(10648), + [sym__binary_fold] = STATE(10649), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1836)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token2] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [aux_sym_preproc_else_token1] = ACTIONS(5611), - [aux_sym_preproc_elif_token1] = ACTIONS(5611), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1183)] = { + [sym_expression] = STATE(5277), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10841), + [sym__unary_right_fold] = STATE(10845), + [sym__binary_fold] = STATE(10846), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1837)] = { - [sym_identifier] = ACTIONS(5615), - [aux_sym_preproc_def_token1] = ACTIONS(5615), - [aux_sym_preproc_if_token1] = ACTIONS(5615), - [aux_sym_preproc_if_token2] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5615), - [aux_sym_preproc_else_token1] = ACTIONS(5615), - [aux_sym_preproc_elif_token1] = ACTIONS(5615), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5615), - [sym_preproc_directive] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_AMP_AMP] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5615), - [anon_sym_SEMI] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5615), - [anon_sym_typedef] = ACTIONS(5615), - [anon_sym_virtual] = ACTIONS(5615), - [anon_sym_extern] = ACTIONS(5615), - [anon_sym___attribute__] = ACTIONS(5615), - [anon_sym___attribute] = ACTIONS(5615), - [anon_sym_using] = ACTIONS(5615), - [anon_sym_COLON_COLON] = ACTIONS(5617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), - [anon_sym___declspec] = ACTIONS(5615), - [anon_sym___based] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5615), - [anon_sym_unsigned] = ACTIONS(5615), - [anon_sym_long] = ACTIONS(5615), - [anon_sym_short] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_static] = ACTIONS(5615), - [anon_sym_register] = ACTIONS(5615), - [anon_sym_inline] = ACTIONS(5615), - [anon_sym___inline] = ACTIONS(5615), - [anon_sym___inline__] = ACTIONS(5615), - [anon_sym___forceinline] = ACTIONS(5615), - [anon_sym_thread_local] = ACTIONS(5615), - [anon_sym___thread] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5615), - [anon_sym_constexpr] = ACTIONS(5615), - [anon_sym_volatile] = ACTIONS(5615), - [anon_sym_restrict] = ACTIONS(5615), - [anon_sym___restrict__] = ACTIONS(5615), - [anon_sym__Atomic] = ACTIONS(5615), - [anon_sym__Noreturn] = ACTIONS(5615), - [anon_sym_noreturn] = ACTIONS(5615), - [anon_sym__Nonnull] = ACTIONS(5615), - [anon_sym_mutable] = ACTIONS(5615), - [anon_sym_constinit] = ACTIONS(5615), - [anon_sym_consteval] = ACTIONS(5615), - [anon_sym_alignas] = ACTIONS(5615), - [anon_sym__Alignas] = ACTIONS(5615), - [sym_primitive_type] = ACTIONS(5615), - [anon_sym_enum] = ACTIONS(5615), - [anon_sym_class] = ACTIONS(5615), - [anon_sym_struct] = ACTIONS(5615), - [anon_sym_union] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5615), - [anon_sym_decltype] = ACTIONS(5615), - [anon_sym_explicit] = ACTIONS(5615), - [anon_sym_typename] = ACTIONS(5615), - [anon_sym_private] = ACTIONS(5615), - [anon_sym_template] = ACTIONS(5615), - [anon_sym_operator] = ACTIONS(5615), - [anon_sym_friend] = ACTIONS(5615), - [anon_sym_public] = ACTIONS(5615), - [anon_sym_protected] = ACTIONS(5615), - [anon_sym_static_assert] = ACTIONS(5615), + [STATE(1184)] = { + [sym_expression] = STATE(5352), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10925), + [sym__unary_right_fold] = STATE(10775), + [sym__binary_fold] = STATE(10807), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1838)] = { - [sym_identifier] = ACTIONS(5619), - [aux_sym_preproc_def_token1] = ACTIONS(5619), - [aux_sym_preproc_if_token1] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5619), - [aux_sym_preproc_else_token1] = ACTIONS(5619), - [aux_sym_preproc_elif_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), - [sym_preproc_directive] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5621), - [anon_sym_TILDE] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5621), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5619), + [STATE(1185)] = { + [sym_expression] = STATE(6692), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10952), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10952), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym___extension__] = ACTIONS(5619), - [anon_sym_typedef] = ACTIONS(5619), - [anon_sym_virtual] = ACTIONS(5619), - [anon_sym_extern] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5619), - [anon_sym___attribute] = ACTIONS(5619), - [anon_sym_using] = ACTIONS(5619), - [anon_sym_COLON_COLON] = ACTIONS(5621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), - [anon_sym___declspec] = ACTIONS(5619), - [anon_sym___based] = ACTIONS(5619), - [anon_sym_signed] = ACTIONS(5619), - [anon_sym_unsigned] = ACTIONS(5619), - [anon_sym_long] = ACTIONS(5619), - [anon_sym_short] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_static] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5619), - [anon_sym_inline] = ACTIONS(5619), - [anon_sym___inline] = ACTIONS(5619), - [anon_sym___inline__] = ACTIONS(5619), - [anon_sym___forceinline] = ACTIONS(5619), - [anon_sym_thread_local] = ACTIONS(5619), - [anon_sym___thread] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5619), - [anon_sym_constexpr] = ACTIONS(5619), - [anon_sym_volatile] = ACTIONS(5619), - [anon_sym_restrict] = ACTIONS(5619), - [anon_sym___restrict__] = ACTIONS(5619), - [anon_sym__Atomic] = ACTIONS(5619), - [anon_sym__Noreturn] = ACTIONS(5619), - [anon_sym_noreturn] = ACTIONS(5619), - [anon_sym__Nonnull] = ACTIONS(5619), - [anon_sym_mutable] = ACTIONS(5619), - [anon_sym_constinit] = ACTIONS(5619), - [anon_sym_consteval] = ACTIONS(5619), - [anon_sym_alignas] = ACTIONS(5619), - [anon_sym__Alignas] = ACTIONS(5619), - [sym_primitive_type] = ACTIONS(5619), - [anon_sym_enum] = ACTIONS(5619), - [anon_sym_class] = ACTIONS(5619), - [anon_sym_struct] = ACTIONS(5619), - [anon_sym_union] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5619), - [anon_sym_decltype] = ACTIONS(5619), - [anon_sym_explicit] = ACTIONS(5619), - [anon_sym_typename] = ACTIONS(5619), - [anon_sym_private] = ACTIONS(5619), - [anon_sym_template] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5619), - [anon_sym_friend] = ACTIONS(5619), - [anon_sym_public] = ACTIONS(5619), - [anon_sym_protected] = ACTIONS(5619), - [anon_sym_static_assert] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1839)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token2] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [aux_sym_preproc_else_token1] = ACTIONS(5623), - [aux_sym_preproc_elif_token1] = ACTIONS(5623), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), + [STATE(1186)] = { + [sym_compound_statement] = STATE(9861), + [sym_expression] = STATE(6547), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9861), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5623), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1840)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token2] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [aux_sym_preproc_else_token1] = ACTIONS(5623), - [aux_sym_preproc_elif_token1] = ACTIONS(5623), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), + [STATE(1187)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11377), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(11377), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), - }, - [STATE(1841)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token2] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [aux_sym_preproc_else_token1] = ACTIONS(2999), - [aux_sym_preproc_elif_token1] = ACTIONS(2999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_friend] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1842)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token2] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [aux_sym_preproc_else_token1] = ACTIONS(3003), - [aux_sym_preproc_elif_token1] = ACTIONS(3003), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_friend] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), + [STATE(1188)] = { + [sym_compound_statement] = STATE(9872), + [sym_expression] = STATE(6559), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9872), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5627), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1843)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_GT_GT] = ACTIONS(5629), + [STATE(1189)] = { + [sym_expression] = STATE(6710), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10696), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10696), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym___based] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1844)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_GT_GT] = ACTIONS(5629), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym___based] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [STATE(1190)] = { + [sym_compound_statement] = STATE(9797), + [sym_expression] = STATE(6510), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9797), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5631), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1845)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6548), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7007), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7007), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1191)] = { + [sym_compound_statement] = STATE(9601), + [sym_expression] = STATE(6566), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9601), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5633), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1846)] = { - [sym_identifier] = ACTIONS(5633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5635), - [anon_sym_COMMA] = ACTIONS(5635), + [STATE(1192)] = { + [sym_compound_statement] = STATE(9846), + [sym_expression] = STATE(6471), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(9846), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), [anon_sym_RPAREN] = ACTIONS(5635), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_DASH] = ACTIONS(5633), - [anon_sym_PLUS] = ACTIONS(5633), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_SLASH] = ACTIONS(5633), - [anon_sym_PERCENT] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_PIPE] = ACTIONS(5633), - [anon_sym_CARET] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym_EQ_EQ] = ACTIONS(5635), - [anon_sym_BANG_EQ] = ACTIONS(5635), - [anon_sym_GT] = ACTIONS(5633), - [anon_sym_GT_EQ] = ACTIONS(5635), - [anon_sym_LT_EQ] = ACTIONS(5633), - [anon_sym_LT] = ACTIONS(5633), - [anon_sym_LT_LT] = ACTIONS(5635), - [anon_sym_GT_GT] = ACTIONS(5635), - [anon_sym_SEMI] = ACTIONS(5635), - [anon_sym___extension__] = ACTIONS(5633), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym___based] = ACTIONS(5633), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_RBRACE] = ACTIONS(5635), - [anon_sym_signed] = ACTIONS(5633), - [anon_sym_unsigned] = ACTIONS(5633), - [anon_sym_long] = ACTIONS(5633), - [anon_sym_short] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(5635), - [anon_sym_RBRACK] = ACTIONS(5635), - [anon_sym_const] = ACTIONS(5633), - [anon_sym_constexpr] = ACTIONS(5633), - [anon_sym_volatile] = ACTIONS(5633), - [anon_sym_restrict] = ACTIONS(5633), - [anon_sym___restrict__] = ACTIONS(5633), - [anon_sym__Atomic] = ACTIONS(5633), - [anon_sym__Noreturn] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym__Nonnull] = ACTIONS(5633), - [anon_sym_mutable] = ACTIONS(5633), - [anon_sym_constinit] = ACTIONS(5633), - [anon_sym_consteval] = ACTIONS(5633), - [anon_sym_alignas] = ACTIONS(5633), - [anon_sym__Alignas] = ACTIONS(5633), - [sym_primitive_type] = ACTIONS(5633), - [anon_sym_QMARK] = ACTIONS(5635), - [anon_sym_LT_EQ_GT] = ACTIONS(5635), - [anon_sym_or] = ACTIONS(5633), - [anon_sym_and] = ACTIONS(5633), - [anon_sym_bitor] = ACTIONS(5633), - [anon_sym_xor] = ACTIONS(5633), - [anon_sym_bitand] = ACTIONS(5633), - [anon_sym_not_eq] = ACTIONS(5633), - [anon_sym_DASH_DASH] = ACTIONS(5635), - [anon_sym_PLUS_PLUS] = ACTIONS(5635), - [anon_sym_DOT] = ACTIONS(5633), - [anon_sym_DOT_STAR] = ACTIONS(5635), - [anon_sym_DASH_GT] = ACTIONS(5635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_final] = ACTIONS(5633), - [anon_sym_override] = ACTIONS(5633), - [anon_sym_requires] = ACTIONS(5633), - }, - [STATE(1847)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6419), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7007), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7007), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1848)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token2] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [aux_sym_preproc_else_token1] = ACTIONS(3115), - [aux_sym_preproc_elif_token1] = ACTIONS(3115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_friend] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), + [STATE(1193)] = { + [sym_expression] = STATE(5201), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym__unary_left_fold] = STATE(10962), + [sym__unary_right_fold] = STATE(11139), + [sym__binary_fold] = STATE(11401), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1849)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6488), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7006), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7006), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1194)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1850)] = { - [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(5014), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_LT_LT] = ACTIONS(5014), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_signed] = ACTIONS(5012), - [anon_sym_unsigned] = ACTIONS(5012), - [anon_sym_long] = ACTIONS(5012), - [anon_sym_short] = ACTIONS(5012), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_RBRACK] = ACTIONS(5014), - [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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [sym_primitive_type] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [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(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5012), - [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_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_requires] = ACTIONS(5012), + [STATE(1195)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1851)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6418), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7006), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7006), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1196)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1852)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5018), - [anon_sym_COMMA] = ACTIONS(5018), - [anon_sym_RPAREN] = ACTIONS(5018), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_DASH] = ACTIONS(5016), - [anon_sym_PLUS] = ACTIONS(5016), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_SLASH] = ACTIONS(5016), - [anon_sym_PERCENT] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_PIPE] = ACTIONS(5016), - [anon_sym_CARET] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym_EQ_EQ] = ACTIONS(5018), - [anon_sym_BANG_EQ] = ACTIONS(5018), - [anon_sym_GT] = ACTIONS(5016), - [anon_sym_GT_EQ] = ACTIONS(5018), - [anon_sym_LT_EQ] = ACTIONS(5016), - [anon_sym_LT] = ACTIONS(5016), - [anon_sym_LT_LT] = ACTIONS(5018), - [anon_sym_GT_GT] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5018), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_COLON] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym___based] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5018), - [anon_sym_RBRACE] = ACTIONS(5018), - [anon_sym_signed] = ACTIONS(5016), - [anon_sym_unsigned] = ACTIONS(5016), - [anon_sym_long] = ACTIONS(5016), - [anon_sym_short] = ACTIONS(5016), - [anon_sym_LBRACK] = ACTIONS(5018), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [sym_primitive_type] = ACTIONS(5016), - [anon_sym_QMARK] = ACTIONS(5018), - [anon_sym_LT_EQ_GT] = ACTIONS(5018), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [anon_sym_bitor] = ACTIONS(5016), - [anon_sym_xor] = ACTIONS(5016), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5018), - [anon_sym_PLUS_PLUS] = ACTIONS(5018), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_STAR] = ACTIONS(5018), - [anon_sym_DASH_GT] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_final] = ACTIONS(5016), - [anon_sym_override] = ACTIONS(5016), - [anon_sym_requires] = ACTIONS(5016), + [STATE(1197)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5646), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1853)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5022), - [anon_sym_COMMA] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_DASH] = ACTIONS(5020), - [anon_sym_PLUS] = ACTIONS(5020), - [anon_sym_STAR] = ACTIONS(5022), - [anon_sym_SLASH] = ACTIONS(5020), - [anon_sym_PERCENT] = ACTIONS(5022), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_CARET] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym_EQ_EQ] = ACTIONS(5022), - [anon_sym_BANG_EQ] = ACTIONS(5022), - [anon_sym_GT] = ACTIONS(5020), - [anon_sym_GT_EQ] = ACTIONS(5022), - [anon_sym_LT_EQ] = ACTIONS(5020), - [anon_sym_LT] = ACTIONS(5020), - [anon_sym_LT_LT] = ACTIONS(5022), - [anon_sym_GT_GT] = ACTIONS(5022), - [anon_sym_SEMI] = ACTIONS(5022), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_COLON] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym___based] = ACTIONS(5020), - [anon_sym_LBRACE] = ACTIONS(5022), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_signed] = ACTIONS(5020), - [anon_sym_unsigned] = ACTIONS(5020), - [anon_sym_long] = ACTIONS(5020), - [anon_sym_short] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5022), - [anon_sym_RBRACK] = ACTIONS(5022), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [sym_primitive_type] = ACTIONS(5020), - [anon_sym_QMARK] = ACTIONS(5022), - [anon_sym_LT_EQ_GT] = ACTIONS(5022), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [anon_sym_bitor] = ACTIONS(5020), - [anon_sym_xor] = ACTIONS(5020), - [anon_sym_bitand] = ACTIONS(5020), - [anon_sym_not_eq] = ACTIONS(5020), - [anon_sym_DASH_DASH] = ACTIONS(5022), - [anon_sym_PLUS_PLUS] = ACTIONS(5022), - [anon_sym_DOT] = ACTIONS(5020), - [anon_sym_DOT_STAR] = ACTIONS(5022), - [anon_sym_DASH_GT] = ACTIONS(5022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_final] = ACTIONS(5020), - [anon_sym_override] = ACTIONS(5020), - [anon_sym_requires] = ACTIONS(5020), + [STATE(1198)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1854)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6551), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7037), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7037), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1199)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5652), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1855)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6396), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7005), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7005), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1200)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5655), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1856)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6423), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7037), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7037), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1201)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5658), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1857)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6441), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7028), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7028), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1202)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(4767), + [sym_template_argument_list] = STATE(2361), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(4121), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_TILDE] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_virtual] = ACTIONS(5251), + [anon_sym_extern] = ACTIONS(5251), + [anon_sym___attribute__] = ACTIONS(5251), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), + [anon_sym___declspec] = ACTIONS(5251), + [anon_sym___based] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(5274), + [anon_sym_unsigned] = ACTIONS(5274), + [anon_sym_long] = ACTIONS(5274), + [anon_sym_short] = ACTIONS(5274), + [anon_sym_LBRACK] = ACTIONS(5262), + [anon_sym_static] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_register] = ACTIONS(5251), + [anon_sym_inline] = ACTIONS(5251), + [anon_sym___inline] = ACTIONS(5251), + [anon_sym___inline__] = ACTIONS(5251), + [anon_sym___forceinline] = ACTIONS(5251), + [anon_sym_thread_local] = ACTIONS(5251), + [anon_sym___thread] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5276), + [anon_sym_or_eq] = ACTIONS(5276), + [anon_sym_xor_eq] = ACTIONS(5276), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5280), + [anon_sym_decltype] = ACTIONS(5282), + [anon_sym_template] = ACTIONS(5251), + [anon_sym_operator] = ACTIONS(5251), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_LBRACK_COLON] = ACTIONS(5258), }, - [STATE(1858)] = { - [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___attribute] = ACTIONS(5008), - [anon_sym_COLON] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [sym_primitive_type] = 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), + [STATE(1203)] = { + [sym_compound_statement] = STATE(10280), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10280), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1859)] = { - [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_SEMI] = ACTIONS(3312), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_friend] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), + [STATE(1204)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5661), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1860)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token2] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [aux_sym_preproc_else_token1] = ACTIONS(3318), - [aux_sym_preproc_elif_token1] = ACTIONS(3318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = ACTIONS(3318), - [anon_sym_LPAREN2] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_AMP_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = 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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_friend] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), + [STATE(1205)] = { + [sym_expression] = STATE(6574), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(9989), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5664), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1861)] = { - [sym__declaration_modifiers] = STATE(3385), - [sym_attribute_specifier] = STATE(3385), - [sym_attribute_declaration] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_ms_based_modifier] = STATE(8771), - [sym__declarator] = STATE(6994), - [sym_parenthesized_declarator] = STATE(6229), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_function_declarator] = STATE(6406), - [sym_array_declarator] = STATE(6229), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_alignas_qualifier] = STATE(3059), - [sym_decltype] = STATE(9058), - [sym_explicit_function_specifier] = STATE(3385), - [sym_operator_cast] = STATE(7017), - [sym__constructor_specifiers] = STATE(3385), - [sym_reference_declarator] = STATE(6229), - [sym_structured_binding_declarator] = STATE(6229), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5801), - [sym_qualified_identifier] = STATE(6229), - [sym_qualified_operator_cast_identifier] = STATE(7017), - [sym_operator_name] = STATE(6229), - [aux_sym_operator_cast_definition_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(5505), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5509), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5513), - [anon_sym___attribute] = ACTIONS(5513), - [anon_sym_COLON_COLON] = ACTIONS(5515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5517), - [anon_sym___declspec] = ACTIONS(5519), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(2825), - [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(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym__Nonnull] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5521), - [anon_sym__Alignas] = ACTIONS(5521), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [STATE(1206)] = { + [sym_expression] = STATE(6520), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(9771), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5666), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1862)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token2] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [aux_sym_preproc_else_token1] = ACTIONS(3325), - [aux_sym_preproc_elif_token1] = ACTIONS(3325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_friend] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), + [STATE(1207)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5668), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1863)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token2] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [aux_sym_preproc_else_token1] = ACTIONS(3329), - [aux_sym_preproc_elif_token1] = ACTIONS(3329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_friend] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), + [STATE(1208)] = { + [sym_expression] = STATE(6462), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(9731), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5671), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1864)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token2] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [aux_sym_preproc_else_token1] = ACTIONS(3333), - [aux_sym_preproc_elif_token1] = ACTIONS(3333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_friend] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), + [STATE(1209)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5673), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1865)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token2] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [aux_sym_preproc_else_token1] = ACTIONS(3228), - [aux_sym_preproc_elif_token1] = ACTIONS(3228), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_friend] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), + [STATE(1210)] = { + [sym_expression] = STATE(6573), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(9918), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5676), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1866)] = { - [sym_catch_clause] = STATE(1866), - [aux_sym_constructor_try_statement_repeat1] = STATE(1866), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token2] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_friend] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(5637), + [STATE(1211)] = { + [sym_expression] = STATE(6615), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10847), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5678), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1867)] = { - [sym_catch_clause] = STATE(1880), - [aux_sym_constructor_try_statement_repeat1] = STATE(1880), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_friend] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(5640), + [STATE(1212)] = { + [sym_expression] = STATE(6649), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10639), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5680), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1868)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [aux_sym_preproc_if_token2] = ACTIONS(5031), - [aux_sym_preproc_else_token1] = ACTIONS(5031), - [aux_sym_preproc_elif_token1] = ACTIONS(5024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5031), - [anon_sym_LPAREN2] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5024), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5024), - [anon_sym_CARET] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5024), - [anon_sym_GT_EQ] = ACTIONS(5031), - [anon_sym_LT_EQ] = ACTIONS(5024), - [anon_sym_LT] = ACTIONS(5024), - [anon_sym_LT_LT] = ACTIONS(5031), - [anon_sym_GT_GT] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym___extension__] = ACTIONS(5024), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [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__Nonnull] = ACTIONS(5024), - [anon_sym_mutable] = ACTIONS(5024), - [anon_sym_constinit] = ACTIONS(5024), - [anon_sym_consteval] = ACTIONS(5024), - [anon_sym_alignas] = ACTIONS(5024), - [anon_sym__Alignas] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LT_EQ_GT] = ACTIONS(5031), - [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(5031), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5024), - [anon_sym_DOT_STAR] = ACTIONS(5031), - [anon_sym_DASH_GT] = ACTIONS(5031), - [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), + [STATE(1213)] = { + [sym_expression] = STATE(5658), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_initializer_list] = STATE(5954), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1869)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), - [anon_sym_COMMA] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_const] = ACTIONS(5024), - [anon_sym_constexpr] = ACTIONS(5031), - [anon_sym_volatile] = ACTIONS(5031), - [anon_sym_restrict] = ACTIONS(5031), - [anon_sym___restrict__] = ACTIONS(5031), - [anon_sym__Atomic] = ACTIONS(5031), - [anon_sym__Noreturn] = ACTIONS(5031), - [anon_sym_noreturn] = ACTIONS(5031), - [anon_sym__Nonnull] = ACTIONS(5031), - [anon_sym_mutable] = ACTIONS(5031), - [anon_sym_constinit] = ACTIONS(5031), - [anon_sym_consteval] = ACTIONS(5031), - [anon_sym_alignas] = ACTIONS(5031), - [anon_sym__Alignas] = ACTIONS(5031), - [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(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5026), - [anon_sym_xor] = ACTIONS(5033), - [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(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5033), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5031), - [anon_sym_decltype] = ACTIONS(5031), - [anon_sym_DASH_GT_STAR] = ACTIONS(5026), + [STATE(1214)] = { + [sym_expression] = STATE(6630), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(7120), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1870)] = { - [sym_catch_clause] = STATE(1866), - [aux_sym_constructor_try_statement_repeat1] = STATE(1866), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym___extension__] = ACTIONS(2588), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym___attribute] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym___inline] = ACTIONS(2588), - [anon_sym___inline__] = ACTIONS(2588), - [anon_sym___forceinline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym___thread] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym___restrict__] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym__Noreturn] = ACTIONS(2588), - [anon_sym_noreturn] = ACTIONS(2588), - [anon_sym__Nonnull] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_alignas] = ACTIONS(2588), - [anon_sym__Alignas] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_friend] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_catch] = ACTIONS(5642), + [STATE(1215)] = { + [sym_expression] = STATE(6425), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(5866), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1871)] = { - [sym_catch_clause] = STATE(1880), - [aux_sym_constructor_try_statement_repeat1] = STATE(1880), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_friend] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(5640), + [STATE(1216)] = { + [sym_expression] = STATE(6562), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10056), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5682), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1872)] = { - [sym_identifier] = ACTIONS(2571), - [anon_sym_LPAREN2] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym___extension__] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_RBRACK] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_constexpr] = ACTIONS(2571), - [anon_sym_volatile] = ACTIONS(2571), - [anon_sym_restrict] = ACTIONS(2571), - [anon_sym___restrict__] = ACTIONS(2571), - [anon_sym__Atomic] = ACTIONS(2571), - [anon_sym__Noreturn] = ACTIONS(2571), - [anon_sym_noreturn] = ACTIONS(2571), - [anon_sym__Nonnull] = ACTIONS(2571), - [anon_sym_mutable] = ACTIONS(2571), - [anon_sym_constinit] = ACTIONS(2571), - [anon_sym_consteval] = ACTIONS(2571), - [anon_sym_alignas] = ACTIONS(2571), - [anon_sym__Alignas] = ACTIONS(2571), - [sym_primitive_type] = ACTIONS(2571), - [anon_sym_not] = ACTIONS(2571), - [anon_sym_compl] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_sizeof] = ACTIONS(2571), - [anon_sym___alignof__] = ACTIONS(2571), - [anon_sym___alignof] = ACTIONS(2571), - [anon_sym__alignof] = ACTIONS(2571), - [anon_sym_alignof] = ACTIONS(2571), - [anon_sym__Alignof] = ACTIONS(2571), - [anon_sym_offsetof] = ACTIONS(2571), - [anon_sym__Generic] = ACTIONS(2571), - [anon_sym_asm] = ACTIONS(2571), - [anon_sym___asm__] = ACTIONS(2571), - [anon_sym___asm] = ACTIONS(2571), - [sym_number_literal] = ACTIONS(2561), - [anon_sym_L_SQUOTE] = ACTIONS(2561), - [anon_sym_u_SQUOTE] = ACTIONS(2561), - [anon_sym_U_SQUOTE] = ACTIONS(2561), - [anon_sym_u8_SQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [anon_sym_NULL] = ACTIONS(2571), - [anon_sym_nullptr] = ACTIONS(2571), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2571), - [anon_sym_template] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(2571), - [anon_sym_R_DQUOTE] = ACTIONS(2561), - [anon_sym_LR_DQUOTE] = ACTIONS(2561), - [anon_sym_uR_DQUOTE] = ACTIONS(2561), - [anon_sym_UR_DQUOTE] = ACTIONS(2561), - [anon_sym_u8R_DQUOTE] = ACTIONS(2561), - [anon_sym_co_await] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_requires] = ACTIONS(2571), - [sym_this] = ACTIONS(2571), + [STATE(1217)] = { + [sym_expression] = STATE(6436), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(9362), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1873)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5629), - [anon_sym_GT_GT] = ACTIONS(5629), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5629), - [anon_sym___based] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [STATE(1218)] = { + [sym_expression] = STATE(6770), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11046), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5685), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1874)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [sym_identifier] = ACTIONS(4169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [aux_sym_preproc_if_token2] = ACTIONS(4161), - [aux_sym_preproc_else_token1] = ACTIONS(4161), - [aux_sym_preproc_elif_token1] = ACTIONS(4169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5644), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_QMARK] = ACTIONS(4161), - [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(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4169), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4169), - [anon_sym_not_eq] = ACTIONS(4169), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1219)] = { + [sym_expression] = STATE(6816), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11504), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5687), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1875)] = { - [sym_template_argument_list] = STATE(1892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4935), - [anon_sym_COMMA] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4940), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5651), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4938), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4938), - [anon_sym_volatile] = ACTIONS(4938), - [anon_sym_restrict] = ACTIONS(4938), - [anon_sym___restrict__] = ACTIONS(4938), - [anon_sym__Atomic] = ACTIONS(4938), - [anon_sym__Noreturn] = ACTIONS(4938), - [anon_sym_noreturn] = ACTIONS(4938), - [anon_sym__Nonnull] = ACTIONS(4938), - [anon_sym_mutable] = ACTIONS(4938), - [anon_sym_constinit] = ACTIONS(4938), - [anon_sym_consteval] = ACTIONS(4938), - [anon_sym_alignas] = ACTIONS(4938), - [anon_sym__Alignas] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4940), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4933), - [anon_sym_or_eq] = ACTIONS(4933), - [anon_sym_xor_eq] = ACTIONS(4933), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4933), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4933), - [anon_sym_not_eq] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4938), - [anon_sym_decltype] = ACTIONS(4938), - [anon_sym_GT2] = ACTIONS(4935), + [STATE(1220)] = { + [sym_expression] = STATE(6817), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10562), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5689), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1876)] = { - [sym_catch_clause] = STATE(1880), - [aux_sym_constructor_try_statement_repeat1] = STATE(1880), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_private] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_friend] = ACTIONS(2543), - [anon_sym_public] = ACTIONS(2543), - [anon_sym_protected] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(5640), + [STATE(1221)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10712), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1877)] = { - [sym_catch_clause] = STATE(1866), - [aux_sym_constructor_try_statement_repeat1] = STATE(1866), - [sym_identifier] = ACTIONS(2543), - [aux_sym_preproc_def_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token1] = ACTIONS(2543), - [aux_sym_preproc_if_token2] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2543), - [sym_preproc_directive] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym___extension__] = ACTIONS(2543), - [anon_sym_typedef] = ACTIONS(2543), - [anon_sym_virtual] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym___attribute__] = ACTIONS(2543), - [anon_sym___attribute] = ACTIONS(2543), - [anon_sym_using] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2545), - [anon_sym___declspec] = ACTIONS(2543), - [anon_sym___based] = ACTIONS(2543), - [anon_sym_signed] = ACTIONS(2543), - [anon_sym_unsigned] = ACTIONS(2543), - [anon_sym_long] = ACTIONS(2543), - [anon_sym_short] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_inline] = ACTIONS(2543), - [anon_sym___inline] = ACTIONS(2543), - [anon_sym___inline__] = ACTIONS(2543), - [anon_sym___forceinline] = ACTIONS(2543), - [anon_sym_thread_local] = ACTIONS(2543), - [anon_sym___thread] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_constexpr] = ACTIONS(2543), - [anon_sym_volatile] = ACTIONS(2543), - [anon_sym_restrict] = ACTIONS(2543), - [anon_sym___restrict__] = ACTIONS(2543), - [anon_sym__Atomic] = ACTIONS(2543), - [anon_sym__Noreturn] = ACTIONS(2543), - [anon_sym_noreturn] = ACTIONS(2543), - [anon_sym__Nonnull] = ACTIONS(2543), - [anon_sym_mutable] = ACTIONS(2543), - [anon_sym_constinit] = ACTIONS(2543), - [anon_sym_consteval] = ACTIONS(2543), - [anon_sym_alignas] = ACTIONS(2543), - [anon_sym__Alignas] = ACTIONS(2543), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2543), - [anon_sym_decltype] = ACTIONS(2543), - [anon_sym_explicit] = ACTIONS(2543), - [anon_sym_typename] = ACTIONS(2543), - [anon_sym_private] = ACTIONS(2543), - [anon_sym_template] = ACTIONS(2543), - [anon_sym_operator] = ACTIONS(2543), - [anon_sym_friend] = ACTIONS(2543), - [anon_sym_public] = ACTIONS(2543), - [anon_sym_protected] = ACTIONS(2543), - [anon_sym_static_assert] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(5642), + [STATE(1222)] = { + [sym_expression] = STATE(6387), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(5866), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1878)] = { - [sym_identifier] = ACTIONS(5116), - [anon_sym_LPAREN2] = ACTIONS(5118), - [anon_sym_BANG] = ACTIONS(5118), - [anon_sym_TILDE] = ACTIONS(5118), - [anon_sym_DASH] = ACTIONS(5116), - [anon_sym_PLUS] = ACTIONS(5116), - [anon_sym_STAR] = ACTIONS(5118), - [anon_sym_AMP] = ACTIONS(5118), - [anon_sym___extension__] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_static] = ACTIONS(5116), - [anon_sym_RBRACK] = ACTIONS(5118), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_constexpr] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_restrict] = ACTIONS(5116), - [anon_sym___restrict__] = ACTIONS(5116), - [anon_sym__Atomic] = ACTIONS(5116), - [anon_sym__Noreturn] = ACTIONS(5116), - [anon_sym_noreturn] = ACTIONS(5116), - [anon_sym__Nonnull] = ACTIONS(5116), - [anon_sym_mutable] = ACTIONS(5116), - [anon_sym_constinit] = ACTIONS(5116), - [anon_sym_consteval] = ACTIONS(5116), - [anon_sym_alignas] = ACTIONS(5116), - [anon_sym__Alignas] = ACTIONS(5116), - [sym_primitive_type] = ACTIONS(5116), - [anon_sym_not] = ACTIONS(5116), - [anon_sym_compl] = ACTIONS(5116), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_PLUS_PLUS] = ACTIONS(5118), - [anon_sym_sizeof] = ACTIONS(5116), - [anon_sym___alignof__] = ACTIONS(5116), - [anon_sym___alignof] = ACTIONS(5116), - [anon_sym__alignof] = ACTIONS(5116), - [anon_sym_alignof] = ACTIONS(5116), - [anon_sym__Alignof] = ACTIONS(5116), - [anon_sym_offsetof] = ACTIONS(5116), - [anon_sym__Generic] = ACTIONS(5116), - [anon_sym_asm] = ACTIONS(5116), - [anon_sym___asm__] = ACTIONS(5116), - [anon_sym___asm] = ACTIONS(5116), - [sym_number_literal] = ACTIONS(5118), - [anon_sym_L_SQUOTE] = ACTIONS(5118), - [anon_sym_u_SQUOTE] = ACTIONS(5118), - [anon_sym_U_SQUOTE] = ACTIONS(5118), - [anon_sym_u8_SQUOTE] = ACTIONS(5118), - [anon_sym_SQUOTE] = ACTIONS(5118), - [anon_sym_L_DQUOTE] = ACTIONS(5118), - [anon_sym_u_DQUOTE] = ACTIONS(5118), - [anon_sym_U_DQUOTE] = ACTIONS(5118), - [anon_sym_u8_DQUOTE] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [sym_true] = ACTIONS(5116), - [sym_false] = ACTIONS(5116), - [anon_sym_NULL] = ACTIONS(5116), - [anon_sym_nullptr] = ACTIONS(5116), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5116), - [anon_sym_template] = ACTIONS(5116), - [anon_sym_delete] = ACTIONS(5116), - [anon_sym_R_DQUOTE] = ACTIONS(5118), - [anon_sym_LR_DQUOTE] = ACTIONS(5118), - [anon_sym_uR_DQUOTE] = ACTIONS(5118), - [anon_sym_UR_DQUOTE] = ACTIONS(5118), - [anon_sym_u8R_DQUOTE] = ACTIONS(5118), - [anon_sym_co_await] = ACTIONS(5116), - [anon_sym_new] = ACTIONS(5116), - [anon_sym_requires] = ACTIONS(5116), - [sym_this] = ACTIONS(5116), + [STATE(1223)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1879)] = { - [sym_catch_clause] = STATE(1866), - [aux_sym_constructor_try_statement_repeat1] = STATE(1866), - [sym_identifier] = ACTIONS(2594), - [aux_sym_preproc_def_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token1] = ACTIONS(2594), - [aux_sym_preproc_if_token2] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_AMP_AMP] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_virtual] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym___attribute__] = ACTIONS(2594), - [anon_sym___attribute] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2596), - [anon_sym___declspec] = ACTIONS(2594), - [anon_sym___based] = ACTIONS(2594), - [anon_sym_signed] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym___inline] = ACTIONS(2594), - [anon_sym___inline__] = ACTIONS(2594), - [anon_sym___forceinline] = ACTIONS(2594), - [anon_sym_thread_local] = ACTIONS(2594), - [anon_sym___thread] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_constexpr] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym___restrict__] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym__Noreturn] = ACTIONS(2594), - [anon_sym_noreturn] = ACTIONS(2594), - [anon_sym__Nonnull] = ACTIONS(2594), - [anon_sym_mutable] = ACTIONS(2594), - [anon_sym_constinit] = ACTIONS(2594), - [anon_sym_consteval] = ACTIONS(2594), - [anon_sym_alignas] = ACTIONS(2594), - [anon_sym__Alignas] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2594), - [anon_sym_decltype] = ACTIONS(2594), - [anon_sym_explicit] = ACTIONS(2594), - [anon_sym_typename] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_template] = ACTIONS(2594), - [anon_sym_operator] = ACTIONS(2594), - [anon_sym_friend] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_static_assert] = ACTIONS(2594), - [anon_sym_catch] = ACTIONS(5642), + [STATE(1224)] = { + [sym_expression] = STATE(6708), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10830), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5691), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1880)] = { - [sym_catch_clause] = STATE(1880), - [aux_sym_constructor_try_statement_repeat1] = STATE(1880), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_def_token1] = ACTIONS(2478), - [aux_sym_preproc_if_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_LPAREN2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym___extension__] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym___attribute] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym___inline] = ACTIONS(2478), - [anon_sym___inline__] = ACTIONS(2478), - [anon_sym___forceinline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym___thread] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym___restrict__] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym__Noreturn] = ACTIONS(2478), - [anon_sym_noreturn] = ACTIONS(2478), - [anon_sym__Nonnull] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_alignas] = ACTIONS(2478), - [anon_sym__Alignas] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_friend] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(5654), + [STATE(1225)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1881)] = { - [sym_identifier] = ACTIONS(5657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), - [anon_sym_COMMA] = ACTIONS(5659), - [anon_sym_RPAREN] = ACTIONS(5659), - [anon_sym_LPAREN2] = ACTIONS(5659), - [anon_sym_TILDE] = ACTIONS(5659), - [anon_sym_STAR] = ACTIONS(5659), - [anon_sym_AMP_AMP] = ACTIONS(5659), - [anon_sym_AMP] = ACTIONS(5657), - [anon_sym_SEMI] = ACTIONS(5659), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym_virtual] = ACTIONS(5657), - [anon_sym_extern] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(5657), - [anon_sym_COLON_COLON] = ACTIONS(5659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5659), - [anon_sym___declspec] = ACTIONS(5657), - [anon_sym___based] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_signed] = ACTIONS(5657), - [anon_sym_unsigned] = ACTIONS(5657), - [anon_sym_long] = ACTIONS(5657), - [anon_sym_short] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_static] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(5659), - [anon_sym_register] = ACTIONS(5657), - [anon_sym_inline] = ACTIONS(5657), - [anon_sym___inline] = ACTIONS(5657), - [anon_sym___inline__] = ACTIONS(5657), - [anon_sym___forceinline] = ACTIONS(5657), - [anon_sym_thread_local] = ACTIONS(5657), - [anon_sym___thread] = ACTIONS(5657), - [anon_sym_const] = ACTIONS(5657), - [anon_sym_constexpr] = ACTIONS(5657), - [anon_sym_volatile] = ACTIONS(5657), - [anon_sym_restrict] = ACTIONS(5657), - [anon_sym___restrict__] = ACTIONS(5657), - [anon_sym__Atomic] = ACTIONS(5657), - [anon_sym__Noreturn] = ACTIONS(5657), - [anon_sym_noreturn] = ACTIONS(5657), - [anon_sym__Nonnull] = ACTIONS(5657), - [anon_sym_mutable] = ACTIONS(5657), - [anon_sym_constinit] = ACTIONS(5657), - [anon_sym_consteval] = ACTIONS(5657), - [anon_sym_alignas] = ACTIONS(5657), - [anon_sym__Alignas] = ACTIONS(5657), - [sym_primitive_type] = ACTIONS(5657), - [anon_sym_enum] = ACTIONS(5657), - [anon_sym_class] = ACTIONS(5657), - [anon_sym_struct] = ACTIONS(5657), - [anon_sym_union] = ACTIONS(5657), - [anon_sym_asm] = ACTIONS(5657), - [anon_sym___asm__] = ACTIONS(5657), - [anon_sym___asm] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5657), - [anon_sym_decltype] = ACTIONS(5657), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_explicit] = ACTIONS(5657), - [anon_sym_typename] = ACTIONS(5657), - [anon_sym_template] = ACTIONS(5657), - [anon_sym_GT2] = ACTIONS(5659), - [anon_sym_operator] = ACTIONS(5657), - [anon_sym_try] = ACTIONS(5657), - [anon_sym_noexcept] = ACTIONS(5657), - [anon_sym_throw] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), + [STATE(1226)] = { + [sym_expression] = STATE(6624), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11393), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5693), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1882)] = { - [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___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [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__Nonnull] = ACTIONS(5661), - [anon_sym_mutable] = ACTIONS(5661), - [anon_sym_constinit] = ACTIONS(5661), - [anon_sym_consteval] = ACTIONS(5661), - [anon_sym_alignas] = ACTIONS(5661), - [anon_sym__Alignas] = ACTIONS(5661), - [sym_primitive_type] = ACTIONS(5661), - [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), - [anon_sym_final] = ACTIONS(5661), - [anon_sym_override] = ACTIONS(5661), - [anon_sym_requires] = ACTIONS(5661), + [STATE(1227)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1883)] = { - [sym_template_argument_list] = STATE(1918), - [sym_identifier] = ACTIONS(4931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [aux_sym_preproc_if_token2] = ACTIONS(4938), - [aux_sym_preproc_else_token1] = ACTIONS(4938), - [aux_sym_preproc_elif_token1] = ACTIONS(4931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4938), - [anon_sym_LPAREN2] = ACTIONS(4938), - [anon_sym_DASH] = ACTIONS(4931), - [anon_sym_PLUS] = ACTIONS(4931), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_SLASH] = ACTIONS(4931), - [anon_sym_PERCENT] = ACTIONS(4931), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4931), - [anon_sym_CARET] = ACTIONS(4931), - [anon_sym_AMP] = ACTIONS(4931), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT] = ACTIONS(4931), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(5665), - [anon_sym_LT_LT] = ACTIONS(4931), - [anon_sym_GT_GT] = ACTIONS(4931), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_COLON] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_EQ] = ACTIONS(4931), - [anon_sym_QMARK] = ACTIONS(4938), - [anon_sym_STAR_EQ] = ACTIONS(4938), - [anon_sym_SLASH_EQ] = ACTIONS(4938), - [anon_sym_PERCENT_EQ] = ACTIONS(4938), - [anon_sym_PLUS_EQ] = ACTIONS(4938), - [anon_sym_DASH_EQ] = ACTIONS(4938), - [anon_sym_LT_LT_EQ] = ACTIONS(4938), - [anon_sym_GT_GT_EQ] = ACTIONS(4938), - [anon_sym_AMP_EQ] = ACTIONS(4938), - [anon_sym_CARET_EQ] = ACTIONS(4938), - [anon_sym_PIPE_EQ] = ACTIONS(4938), - [anon_sym_and_eq] = ACTIONS(4931), - [anon_sym_or_eq] = ACTIONS(4931), - [anon_sym_xor_eq] = ACTIONS(4931), - [anon_sym_LT_EQ_GT] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [anon_sym_bitor] = ACTIONS(4931), - [anon_sym_xor] = ACTIONS(4931), - [anon_sym_bitand] = ACTIONS(4931), - [anon_sym_not_eq] = ACTIONS(4931), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_DOT_STAR] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_final] = ACTIONS(4931), - [anon_sym_override] = ACTIONS(4931), + [STATE(1228)] = { + [sym_expression] = STATE(5128), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_initializer_list] = STATE(5529), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1884)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4211), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_parameter_declaration] = STATE(7835), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1229)] = { + [sym_expression] = STATE(6593), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10200), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1885)] = { - [sym_identifier] = ACTIONS(5668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5670), - [anon_sym_COMMA] = ACTIONS(5670), - [anon_sym_RPAREN] = ACTIONS(5670), - [anon_sym_LPAREN2] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5668), - [anon_sym_STAR] = ACTIONS(5670), - [anon_sym_SLASH] = ACTIONS(5668), - [anon_sym_PERCENT] = ACTIONS(5670), - [anon_sym_PIPE_PIPE] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(5670), - [anon_sym_PIPE] = ACTIONS(5668), - [anon_sym_CARET] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(5668), - [anon_sym_EQ_EQ] = ACTIONS(5670), - [anon_sym_BANG_EQ] = ACTIONS(5670), - [anon_sym_GT] = ACTIONS(5668), - [anon_sym_GT_EQ] = ACTIONS(5670), - [anon_sym_LT_EQ] = ACTIONS(5668), - [anon_sym_LT] = ACTIONS(5668), - [anon_sym_LT_LT] = ACTIONS(5670), - [anon_sym_GT_GT] = ACTIONS(5670), - [anon_sym_SEMI] = ACTIONS(5670), - [anon_sym___extension__] = ACTIONS(5668), - [anon_sym___attribute__] = ACTIONS(5668), - [anon_sym___attribute] = ACTIONS(5668), - [anon_sym_COLON] = ACTIONS(5668), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym___based] = ACTIONS(5668), - [anon_sym_LBRACE] = ACTIONS(5670), - [anon_sym_RBRACE] = ACTIONS(5670), - [anon_sym_signed] = ACTIONS(5668), - [anon_sym_unsigned] = ACTIONS(5668), - [anon_sym_long] = ACTIONS(5668), - [anon_sym_short] = ACTIONS(5668), - [anon_sym_LBRACK] = ACTIONS(5670), - [anon_sym_RBRACK] = ACTIONS(5670), - [anon_sym_const] = ACTIONS(5668), - [anon_sym_constexpr] = ACTIONS(5668), - [anon_sym_volatile] = ACTIONS(5668), - [anon_sym_restrict] = ACTIONS(5668), - [anon_sym___restrict__] = ACTIONS(5668), - [anon_sym__Atomic] = ACTIONS(5668), - [anon_sym__Noreturn] = ACTIONS(5668), - [anon_sym_noreturn] = ACTIONS(5668), - [anon_sym__Nonnull] = ACTIONS(5668), - [anon_sym_mutable] = ACTIONS(5668), - [anon_sym_constinit] = ACTIONS(5668), - [anon_sym_consteval] = ACTIONS(5668), - [anon_sym_alignas] = ACTIONS(5668), - [anon_sym__Alignas] = ACTIONS(5668), - [sym_primitive_type] = ACTIONS(5668), - [anon_sym_QMARK] = ACTIONS(5670), - [anon_sym_LT_EQ_GT] = ACTIONS(5670), - [anon_sym_or] = ACTIONS(5668), - [anon_sym_and] = ACTIONS(5668), - [anon_sym_bitor] = ACTIONS(5668), - [anon_sym_xor] = ACTIONS(5668), - [anon_sym_bitand] = ACTIONS(5668), - [anon_sym_not_eq] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5670), - [anon_sym_PLUS_PLUS] = ACTIONS(5670), - [anon_sym_DOT] = ACTIONS(5668), - [anon_sym_DOT_STAR] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5670), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5668), - [anon_sym_override] = ACTIONS(5668), - [anon_sym_requires] = ACTIONS(5668), + [STATE(1230)] = { + [sym_expression] = STATE(6798), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(7120), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1886)] = { - [sym_attribute_specifier] = STATE(2376), - [sym_field_declaration_list] = STATE(2292), - [sym_virtual_specifier] = STATE(7229), - [sym_base_class_clause] = STATE(8056), - [sym_identifier] = ACTIONS(5672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5674), - [anon_sym_COMMA] = ACTIONS(5674), - [anon_sym_RPAREN] = ACTIONS(5674), - [aux_sym_preproc_if_token2] = ACTIONS(5674), - [aux_sym_preproc_else_token1] = ACTIONS(5674), - [aux_sym_preproc_elif_token1] = ACTIONS(5672), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5674), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5674), - [anon_sym_LPAREN2] = ACTIONS(5674), - [anon_sym_DASH] = ACTIONS(5672), - [anon_sym_PLUS] = ACTIONS(5672), - [anon_sym_STAR] = ACTIONS(5672), - [anon_sym_SLASH] = ACTIONS(5672), - [anon_sym_PERCENT] = ACTIONS(5672), - [anon_sym_PIPE_PIPE] = ACTIONS(5674), - [anon_sym_AMP_AMP] = ACTIONS(5674), - [anon_sym_PIPE] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5672), - [anon_sym_AMP] = ACTIONS(5672), - [anon_sym_EQ_EQ] = ACTIONS(5674), - [anon_sym_BANG_EQ] = ACTIONS(5674), - [anon_sym_GT] = ACTIONS(5672), - [anon_sym_GT_EQ] = ACTIONS(5674), - [anon_sym_LT_EQ] = ACTIONS(5672), - [anon_sym_LT] = ACTIONS(5672), - [anon_sym_LT_LT] = ACTIONS(5672), - [anon_sym_GT_GT] = ACTIONS(5672), - [anon_sym_SEMI] = ACTIONS(5674), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(5678), - [anon_sym_LBRACE] = ACTIONS(5680), - [anon_sym_RBRACE] = ACTIONS(5674), - [anon_sym_LBRACK] = ACTIONS(5674), - [anon_sym_RBRACK] = ACTIONS(5674), - [anon_sym_EQ] = ACTIONS(5672), - [anon_sym_QMARK] = ACTIONS(5674), - [anon_sym_STAR_EQ] = ACTIONS(5674), - [anon_sym_SLASH_EQ] = ACTIONS(5674), - [anon_sym_PERCENT_EQ] = ACTIONS(5674), - [anon_sym_PLUS_EQ] = ACTIONS(5674), - [anon_sym_DASH_EQ] = ACTIONS(5674), - [anon_sym_LT_LT_EQ] = ACTIONS(5674), - [anon_sym_GT_GT_EQ] = ACTIONS(5674), - [anon_sym_AMP_EQ] = ACTIONS(5674), - [anon_sym_CARET_EQ] = ACTIONS(5674), - [anon_sym_PIPE_EQ] = ACTIONS(5674), - [anon_sym_and_eq] = ACTIONS(5672), - [anon_sym_or_eq] = ACTIONS(5672), - [anon_sym_xor_eq] = ACTIONS(5672), - [anon_sym_LT_EQ_GT] = ACTIONS(5674), - [anon_sym_or] = ACTIONS(5672), - [anon_sym_and] = ACTIONS(5672), - [anon_sym_bitor] = ACTIONS(5672), - [anon_sym_xor] = ACTIONS(5672), - [anon_sym_bitand] = ACTIONS(5672), - [anon_sym_not_eq] = ACTIONS(5672), - [anon_sym_DASH_DASH] = ACTIONS(5674), - [anon_sym_PLUS_PLUS] = ACTIONS(5674), - [anon_sym_DOT] = ACTIONS(5672), - [anon_sym_DOT_STAR] = ACTIONS(5674), - [anon_sym_DASH_GT] = ACTIONS(5674), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5682), - [anon_sym_override] = ACTIONS(5682), + [STATE(1231)] = { + [sym_expression] = STATE(6243), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_initializer_list] = STATE(5866), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1887)] = { - [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___attribute] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COLON_COLON] = ACTIONS(5686), - [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__Nonnull] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_constinit] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [anon_sym_alignas] = ACTIONS(5684), - [anon_sym__Alignas] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(5684), - [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), - [anon_sym_final] = ACTIONS(5684), - [anon_sym_override] = ACTIONS(5684), - [anon_sym_requires] = ACTIONS(5684), + [STATE(1232)] = { + [sym_expression] = STATE(6656), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(7151), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1888)] = { - [sym_identifier] = ACTIONS(3981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3983), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_LPAREN2] = ACTIONS(3983), - [anon_sym_TILDE] = ACTIONS(3983), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_AMP_AMP] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3981), - [anon_sym_SEMI] = ACTIONS(3983), - [anon_sym___extension__] = ACTIONS(3981), - [anon_sym_virtual] = ACTIONS(3981), - [anon_sym_extern] = ACTIONS(3981), - [anon_sym___attribute__] = ACTIONS(3981), - [anon_sym___attribute] = ACTIONS(3981), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(3983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), - [anon_sym___declspec] = ACTIONS(3981), - [anon_sym___based] = ACTIONS(3981), - [anon_sym___cdecl] = ACTIONS(3981), - [anon_sym___clrcall] = ACTIONS(3981), - [anon_sym___stdcall] = ACTIONS(3981), - [anon_sym___fastcall] = ACTIONS(3981), - [anon_sym___thiscall] = ACTIONS(3981), - [anon_sym___vectorcall] = ACTIONS(3981), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_LBRACK] = ACTIONS(3981), - [anon_sym_static] = ACTIONS(3981), - [anon_sym_EQ] = ACTIONS(3983), - [anon_sym_register] = ACTIONS(3981), - [anon_sym_inline] = ACTIONS(3981), - [anon_sym___inline] = ACTIONS(3981), - [anon_sym___inline__] = ACTIONS(3981), - [anon_sym___forceinline] = ACTIONS(3981), - [anon_sym_thread_local] = ACTIONS(3981), - [anon_sym___thread] = ACTIONS(3981), - [anon_sym_const] = ACTIONS(3981), - [anon_sym_constexpr] = ACTIONS(3981), - [anon_sym_volatile] = ACTIONS(3981), - [anon_sym_restrict] = ACTIONS(3981), - [anon_sym___restrict__] = ACTIONS(3981), - [anon_sym__Atomic] = ACTIONS(3981), - [anon_sym__Noreturn] = ACTIONS(3981), - [anon_sym_noreturn] = ACTIONS(3981), - [anon_sym__Nonnull] = ACTIONS(3981), - [anon_sym_mutable] = ACTIONS(3981), - [anon_sym_constinit] = ACTIONS(3981), - [anon_sym_consteval] = ACTIONS(3981), - [anon_sym_alignas] = ACTIONS(3981), - [anon_sym__Alignas] = ACTIONS(3981), - [anon_sym_asm] = ACTIONS(3981), - [anon_sym___asm__] = ACTIONS(3981), - [anon_sym___asm] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(3983), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3981), - [anon_sym_final] = ACTIONS(3981), - [anon_sym_override] = ACTIONS(3981), - [anon_sym_explicit] = ACTIONS(3981), - [anon_sym_private] = ACTIONS(3981), - [anon_sym_template] = ACTIONS(3981), - [anon_sym_GT2] = ACTIONS(3983), - [anon_sym_operator] = ACTIONS(3981), - [anon_sym_try] = ACTIONS(3981), - [anon_sym_public] = ACTIONS(3981), - [anon_sym_protected] = ACTIONS(3981), - [anon_sym_noexcept] = ACTIONS(3981), - [anon_sym_throw] = ACTIONS(3981), - [anon_sym_requires] = ACTIONS(3981), + [STATE(1233)] = { + [sym_expression] = STATE(6648), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11072), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5695), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1889)] = { - [sym_template_argument_list] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_LPAREN2] = ACTIONS(4935), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4935), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5688), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym___extension__] = ACTIONS(4938), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4935), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4938), - [anon_sym_volatile] = ACTIONS(4938), - [anon_sym_restrict] = ACTIONS(4938), - [anon_sym___restrict__] = ACTIONS(4938), - [anon_sym__Atomic] = ACTIONS(4938), - [anon_sym__Noreturn] = ACTIONS(4938), - [anon_sym_noreturn] = ACTIONS(4938), - [anon_sym__Nonnull] = ACTIONS(4938), - [anon_sym_mutable] = ACTIONS(4938), - [anon_sym_constinit] = ACTIONS(4938), - [anon_sym_consteval] = ACTIONS(4938), - [anon_sym_alignas] = ACTIONS(4938), - [anon_sym__Alignas] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4933), - [anon_sym_or_eq] = ACTIONS(4933), - [anon_sym_xor_eq] = ACTIONS(4933), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4933), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4933), - [anon_sym_not_eq] = ACTIONS(4933), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4938), - [anon_sym_decltype] = ACTIONS(4938), + [STATE(1234)] = { + [sym_expression] = STATE(6707), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10715), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5697), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1890)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(5629), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_asm] = ACTIONS(5627), - [anon_sym___asm__] = ACTIONS(5627), - [anon_sym___asm] = ACTIONS(5627), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_GT2] = ACTIONS(5629), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_try] = ACTIONS(5627), - [anon_sym_noexcept] = ACTIONS(5627), - [anon_sym_throw] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [STATE(1235)] = { + [sym_expression] = STATE(6705), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5699), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1891)] = { - [sym_identifier] = ACTIONS(5633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5635), - [anon_sym_COMMA] = ACTIONS(5635), - [anon_sym_RPAREN] = ACTIONS(5635), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_TILDE] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym_SEMI] = ACTIONS(5635), - [anon_sym___extension__] = ACTIONS(5633), - [anon_sym_virtual] = ACTIONS(5633), - [anon_sym_extern] = ACTIONS(5633), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), - [anon_sym___declspec] = ACTIONS(5633), - [anon_sym___based] = ACTIONS(5633), - [anon_sym___cdecl] = ACTIONS(5633), - [anon_sym___clrcall] = ACTIONS(5633), - [anon_sym___stdcall] = ACTIONS(5633), - [anon_sym___fastcall] = ACTIONS(5633), - [anon_sym___thiscall] = ACTIONS(5633), - [anon_sym___vectorcall] = ACTIONS(5633), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5633), - [anon_sym_static] = ACTIONS(5633), - [anon_sym_EQ] = ACTIONS(5635), - [anon_sym_register] = ACTIONS(5633), - [anon_sym_inline] = ACTIONS(5633), - [anon_sym___inline] = ACTIONS(5633), - [anon_sym___inline__] = ACTIONS(5633), - [anon_sym___forceinline] = ACTIONS(5633), - [anon_sym_thread_local] = ACTIONS(5633), - [anon_sym___thread] = ACTIONS(5633), - [anon_sym_const] = ACTIONS(5633), - [anon_sym_constexpr] = ACTIONS(5633), - [anon_sym_volatile] = ACTIONS(5633), - [anon_sym_restrict] = ACTIONS(5633), - [anon_sym___restrict__] = ACTIONS(5633), - [anon_sym__Atomic] = ACTIONS(5633), - [anon_sym__Noreturn] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym__Nonnull] = ACTIONS(5633), - [anon_sym_mutable] = ACTIONS(5633), - [anon_sym_constinit] = ACTIONS(5633), - [anon_sym_consteval] = ACTIONS(5633), - [anon_sym_alignas] = ACTIONS(5633), - [anon_sym__Alignas] = ACTIONS(5633), - [anon_sym_or] = ACTIONS(5633), - [anon_sym_and] = ACTIONS(5633), - [anon_sym_asm] = ACTIONS(5633), - [anon_sym___asm__] = ACTIONS(5633), - [anon_sym___asm] = ACTIONS(5633), - [anon_sym_DASH_GT] = ACTIONS(5635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_final] = ACTIONS(5633), - [anon_sym_override] = ACTIONS(5633), - [anon_sym_template] = ACTIONS(5633), - [anon_sym_GT2] = ACTIONS(5635), - [anon_sym_operator] = ACTIONS(5633), - [anon_sym_try] = ACTIONS(5633), - [anon_sym_noexcept] = ACTIONS(5633), - [anon_sym_throw] = ACTIONS(5633), - [anon_sym_requires] = ACTIONS(5633), + [STATE(1236)] = { + [sym_expression] = STATE(5354), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_initializer_list] = STATE(5704), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(1892)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5028), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5033), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_const] = ACTIONS(5024), - [anon_sym_constexpr] = ACTIONS(5031), - [anon_sym_volatile] = ACTIONS(5031), - [anon_sym_restrict] = ACTIONS(5031), - [anon_sym___restrict__] = ACTIONS(5031), - [anon_sym__Atomic] = ACTIONS(5031), - [anon_sym__Noreturn] = ACTIONS(5031), - [anon_sym_noreturn] = ACTIONS(5031), - [anon_sym__Nonnull] = ACTIONS(5031), - [anon_sym_mutable] = ACTIONS(5031), - [anon_sym_constinit] = ACTIONS(5031), - [anon_sym_consteval] = ACTIONS(5031), - [anon_sym_alignas] = ACTIONS(5031), - [anon_sym__Alignas] = ACTIONS(5031), - [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(5033), - [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(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5026), - [anon_sym_xor] = ACTIONS(5033), - [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(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5031), - [anon_sym_decltype] = ACTIONS(5031), - [anon_sym_GT2] = ACTIONS(5028), + [STATE(1237)] = { + [sym_expression] = STATE(6616), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10615), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5701), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1893)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(5629), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_asm] = ACTIONS(5627), - [anon_sym___asm__] = ACTIONS(5627), - [anon_sym___asm] = ACTIONS(5627), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_GT2] = ACTIONS(5629), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_try] = ACTIONS(5627), - [anon_sym_noexcept] = ACTIONS(5627), - [anon_sym_throw] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [STATE(1238)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1894)] = { - [sym_identifier] = ACTIONS(3953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3955), - [anon_sym_COMMA] = ACTIONS(3955), - [anon_sym_RPAREN] = ACTIONS(3955), - [anon_sym_LPAREN2] = ACTIONS(3955), - [anon_sym_TILDE] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3953), - [anon_sym_SEMI] = ACTIONS(3955), - [anon_sym___extension__] = ACTIONS(3953), - [anon_sym_virtual] = ACTIONS(3953), - [anon_sym_extern] = ACTIONS(3953), - [anon_sym___attribute__] = ACTIONS(3953), - [anon_sym___attribute] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COLON_COLON] = ACTIONS(3955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3955), - [anon_sym___declspec] = ACTIONS(3953), - [anon_sym___based] = ACTIONS(3953), - [anon_sym___cdecl] = ACTIONS(3953), - [anon_sym___clrcall] = ACTIONS(3953), - [anon_sym___stdcall] = ACTIONS(3953), - [anon_sym___fastcall] = ACTIONS(3953), - [anon_sym___thiscall] = ACTIONS(3953), - [anon_sym___vectorcall] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3955), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_static] = ACTIONS(3953), - [anon_sym_EQ] = ACTIONS(3955), - [anon_sym_register] = ACTIONS(3953), - [anon_sym_inline] = ACTIONS(3953), - [anon_sym___inline] = ACTIONS(3953), - [anon_sym___inline__] = ACTIONS(3953), - [anon_sym___forceinline] = ACTIONS(3953), - [anon_sym_thread_local] = ACTIONS(3953), - [anon_sym___thread] = ACTIONS(3953), - [anon_sym_const] = ACTIONS(3953), - [anon_sym_constexpr] = ACTIONS(3953), - [anon_sym_volatile] = ACTIONS(3953), - [anon_sym_restrict] = ACTIONS(3953), - [anon_sym___restrict__] = ACTIONS(3953), - [anon_sym__Atomic] = ACTIONS(3953), - [anon_sym__Noreturn] = ACTIONS(3953), - [anon_sym_noreturn] = ACTIONS(3953), - [anon_sym__Nonnull] = ACTIONS(3953), - [anon_sym_mutable] = ACTIONS(3953), - [anon_sym_constinit] = ACTIONS(3953), - [anon_sym_consteval] = ACTIONS(3953), - [anon_sym_alignas] = ACTIONS(3953), - [anon_sym__Alignas] = ACTIONS(3953), - [anon_sym_asm] = ACTIONS(3953), - [anon_sym___asm__] = ACTIONS(3953), - [anon_sym___asm] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(3955), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3953), - [anon_sym_final] = ACTIONS(3953), - [anon_sym_override] = ACTIONS(3953), - [anon_sym_explicit] = ACTIONS(3953), - [anon_sym_private] = ACTIONS(3953), - [anon_sym_template] = ACTIONS(3953), - [anon_sym_GT2] = ACTIONS(3955), - [anon_sym_operator] = ACTIONS(3953), - [anon_sym_try] = ACTIONS(3953), - [anon_sym_public] = ACTIONS(3953), - [anon_sym_protected] = ACTIONS(3953), - [anon_sym_noexcept] = ACTIONS(3953), - [anon_sym_throw] = ACTIONS(3953), - [anon_sym_requires] = ACTIONS(3953), + [STATE(1239)] = { + [sym_expression] = STATE(6953), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(11205), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1895)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(5629), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_asm] = ACTIONS(5627), - [anon_sym___asm__] = ACTIONS(5627), - [anon_sym___asm] = ACTIONS(5627), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_GT2] = ACTIONS(5629), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_try] = ACTIONS(5627), - [anon_sym_noexcept] = ACTIONS(5627), - [anon_sym_throw] = ACTIONS(5627), - [anon_sym_requires] = ACTIONS(5627), + [STATE(1240)] = { + [sym_expression] = STATE(5795), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_initializer_list] = STATE(5991), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1896)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(1897), - [sym__declarator] = STATE(6550), - [sym__abstract_declarator] = STATE(6754), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2604), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3081), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2604), - [aux_sym_pointer_declarator_repeat1] = STATE(1897), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5695), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5701), - [anon_sym___attribute] = ACTIONS(5701), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_EQ] = ACTIONS(5693), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5693), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1241)] = { + [sym_expression] = STATE(6662), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11090), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1897)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(3928), - [sym__declarator] = STATE(6561), - [sym__abstract_declarator] = STATE(6780), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2605), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3081), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2605), - [aux_sym_pointer_declarator_repeat1] = STATE(3928), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5707), - [anon_sym_RPAREN] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5695), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5709), - [anon_sym___attribute] = ACTIONS(5709), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_EQ] = ACTIONS(5707), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5707), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1242)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1898)] = { - [sym_identifier] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_or] = ACTIONS(1942), - [anon_sym_and] = ACTIONS(1942), - [anon_sym_DASH_GT] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_noexcept] = ACTIONS(1942), - [anon_sym_throw] = ACTIONS(1942), - [anon_sym_concept] = ACTIONS(1942), + [STATE(1243)] = { + [sym_expression] = STATE(6771), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10200), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1899)] = { - [sym_identifier] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_or] = ACTIONS(1938), - [anon_sym_and] = ACTIONS(1938), - [anon_sym_DASH_GT] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_friend] = ACTIONS(1938), - [anon_sym_noexcept] = ACTIONS(1938), - [anon_sym_throw] = ACTIONS(1938), - [anon_sym_concept] = ACTIONS(1938), + [STATE(1244)] = { + [sym_expression] = STATE(5370), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_initializer_list] = STATE(5752), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1900)] = { - [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___attribute] = ACTIONS(5711), - [anon_sym_COLON] = ACTIONS(5713), - [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__Nonnull] = ACTIONS(5711), - [anon_sym_mutable] = ACTIONS(5711), - [anon_sym_constinit] = ACTIONS(5711), - [anon_sym_consteval] = ACTIONS(5711), - [anon_sym_alignas] = ACTIONS(5711), - [anon_sym__Alignas] = ACTIONS(5711), - [sym_primitive_type] = ACTIONS(5711), - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5711), - [anon_sym_override] = ACTIONS(5711), - [anon_sym_requires] = ACTIONS(5711), + [STATE(1245)] = { + [sym_expression] = STATE(6675), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11539), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5705), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1901)] = { - [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___attribute] = ACTIONS(5715), - [anon_sym_COLON] = ACTIONS(5717), - [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__Nonnull] = ACTIONS(5715), - [anon_sym_mutable] = ACTIONS(5715), - [anon_sym_constinit] = ACTIONS(5715), - [anon_sym_consteval] = ACTIONS(5715), - [anon_sym_alignas] = ACTIONS(5715), - [anon_sym__Alignas] = ACTIONS(5715), - [sym_primitive_type] = ACTIONS(5715), - [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), - [anon_sym_final] = ACTIONS(5715), - [anon_sym_override] = ACTIONS(5715), - [anon_sym_requires] = ACTIONS(5715), + [STATE(1246)] = { + [sym_expression] = STATE(6809), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10853), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5707), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1902)] = { - [sym_identifier] = ACTIONS(5719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5721), - [anon_sym_COMMA] = ACTIONS(5721), - [anon_sym_RPAREN] = ACTIONS(5721), - [anon_sym_LPAREN2] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(5719), - [anon_sym_PLUS] = ACTIONS(5719), - [anon_sym_STAR] = ACTIONS(5721), - [anon_sym_SLASH] = ACTIONS(5719), - [anon_sym_PERCENT] = ACTIONS(5721), - [anon_sym_PIPE_PIPE] = ACTIONS(5721), - [anon_sym_AMP_AMP] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(5719), - [anon_sym_CARET] = ACTIONS(5721), - [anon_sym_AMP] = ACTIONS(5719), - [anon_sym_EQ_EQ] = ACTIONS(5721), - [anon_sym_BANG_EQ] = ACTIONS(5721), - [anon_sym_GT] = ACTIONS(5719), - [anon_sym_GT_EQ] = ACTIONS(5721), - [anon_sym_LT_EQ] = ACTIONS(5719), - [anon_sym_LT] = ACTIONS(5719), - [anon_sym_LT_LT] = ACTIONS(5721), - [anon_sym_GT_GT] = ACTIONS(5721), - [anon_sym_SEMI] = ACTIONS(5721), - [anon_sym___extension__] = ACTIONS(5719), - [anon_sym___attribute__] = ACTIONS(5719), - [anon_sym___attribute] = ACTIONS(5719), - [anon_sym_COLON] = ACTIONS(5721), - [anon_sym___based] = ACTIONS(5719), - [anon_sym_LBRACE] = ACTIONS(5721), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_signed] = ACTIONS(5719), - [anon_sym_unsigned] = ACTIONS(5719), - [anon_sym_long] = ACTIONS(5719), - [anon_sym_short] = ACTIONS(5719), - [anon_sym_LBRACK] = ACTIONS(5721), - [anon_sym_RBRACK] = ACTIONS(5721), - [anon_sym_const] = ACTIONS(5719), - [anon_sym_constexpr] = ACTIONS(5719), - [anon_sym_volatile] = ACTIONS(5719), - [anon_sym_restrict] = ACTIONS(5719), - [anon_sym___restrict__] = ACTIONS(5719), - [anon_sym__Atomic] = ACTIONS(5719), - [anon_sym__Noreturn] = ACTIONS(5719), - [anon_sym_noreturn] = ACTIONS(5719), - [anon_sym__Nonnull] = ACTIONS(5719), - [anon_sym_mutable] = ACTIONS(5719), - [anon_sym_constinit] = ACTIONS(5719), - [anon_sym_consteval] = ACTIONS(5719), - [anon_sym_alignas] = ACTIONS(5719), - [anon_sym__Alignas] = ACTIONS(5719), - [sym_primitive_type] = ACTIONS(5719), - [anon_sym_QMARK] = ACTIONS(5721), - [anon_sym_LT_EQ_GT] = ACTIONS(5721), - [anon_sym_or] = ACTIONS(5719), - [anon_sym_and] = ACTIONS(5719), - [anon_sym_bitor] = ACTIONS(5719), - [anon_sym_xor] = ACTIONS(5719), - [anon_sym_bitand] = ACTIONS(5719), - [anon_sym_not_eq] = ACTIONS(5719), - [anon_sym_DASH_DASH] = ACTIONS(5721), - [anon_sym_PLUS_PLUS] = ACTIONS(5721), - [anon_sym_DOT] = ACTIONS(5719), - [anon_sym_DOT_STAR] = ACTIONS(5721), - [anon_sym_DASH_GT] = ACTIONS(5721), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5719), - [anon_sym_override] = ACTIONS(5719), - [anon_sym_requires] = ACTIONS(5719), + [STATE(1247)] = { + [sym_expression] = STATE(6668), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_initializer_list] = STATE(10079), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1903)] = { - [sym_identifier] = ACTIONS(5723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_COMMA] = ACTIONS(5725), - [anon_sym_RPAREN] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5723), - [anon_sym_PLUS] = ACTIONS(5723), - [anon_sym_STAR] = ACTIONS(5725), - [anon_sym_SLASH] = ACTIONS(5723), - [anon_sym_PERCENT] = ACTIONS(5725), - [anon_sym_PIPE_PIPE] = ACTIONS(5725), - [anon_sym_AMP_AMP] = ACTIONS(5725), - [anon_sym_PIPE] = ACTIONS(5723), - [anon_sym_CARET] = ACTIONS(5725), - [anon_sym_AMP] = ACTIONS(5723), - [anon_sym_EQ_EQ] = ACTIONS(5725), - [anon_sym_BANG_EQ] = ACTIONS(5725), - [anon_sym_GT] = ACTIONS(5723), - [anon_sym_GT_EQ] = ACTIONS(5725), - [anon_sym_LT_EQ] = ACTIONS(5723), - [anon_sym_LT] = ACTIONS(5723), - [anon_sym_LT_LT] = ACTIONS(5725), - [anon_sym_GT_GT] = ACTIONS(5725), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym___extension__] = ACTIONS(5723), - [anon_sym___attribute__] = ACTIONS(5723), - [anon_sym___attribute] = ACTIONS(5723), - [anon_sym_COLON] = ACTIONS(5725), - [anon_sym___based] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(5725), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_signed] = ACTIONS(5723), - [anon_sym_unsigned] = ACTIONS(5723), - [anon_sym_long] = ACTIONS(5723), - [anon_sym_short] = ACTIONS(5723), - [anon_sym_LBRACK] = ACTIONS(5725), - [anon_sym_RBRACK] = ACTIONS(5725), - [anon_sym_const] = ACTIONS(5723), - [anon_sym_constexpr] = ACTIONS(5723), - [anon_sym_volatile] = ACTIONS(5723), - [anon_sym_restrict] = ACTIONS(5723), - [anon_sym___restrict__] = ACTIONS(5723), - [anon_sym__Atomic] = ACTIONS(5723), - [anon_sym__Noreturn] = ACTIONS(5723), - [anon_sym_noreturn] = ACTIONS(5723), - [anon_sym__Nonnull] = ACTIONS(5723), - [anon_sym_mutable] = ACTIONS(5723), - [anon_sym_constinit] = ACTIONS(5723), - [anon_sym_consteval] = ACTIONS(5723), - [anon_sym_alignas] = ACTIONS(5723), - [anon_sym__Alignas] = ACTIONS(5723), - [sym_primitive_type] = ACTIONS(5723), - [anon_sym_QMARK] = ACTIONS(5725), - [anon_sym_LT_EQ_GT] = ACTIONS(5725), - [anon_sym_or] = ACTIONS(5723), - [anon_sym_and] = ACTIONS(5723), - [anon_sym_bitor] = ACTIONS(5723), - [anon_sym_xor] = ACTIONS(5723), - [anon_sym_bitand] = ACTIONS(5723), - [anon_sym_not_eq] = ACTIONS(5723), - [anon_sym_DASH_DASH] = ACTIONS(5725), - [anon_sym_PLUS_PLUS] = ACTIONS(5725), - [anon_sym_DOT] = ACTIONS(5723), - [anon_sym_DOT_STAR] = ACTIONS(5725), - [anon_sym_DASH_GT] = ACTIONS(5725), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5723), - [anon_sym_override] = ACTIONS(5723), - [anon_sym_requires] = ACTIONS(5723), + [STATE(1248)] = { + [sym_expression] = STATE(6789), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11373), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5709), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1904)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_private] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_friend] = ACTIONS(2621), - [anon_sym_public] = ACTIONS(2621), - [anon_sym_protected] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), + [STATE(1249)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1905)] = { - [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___attribute] = ACTIONS(5715), - [anon_sym_COLON] = ACTIONS(5717), - [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__Nonnull] = ACTIONS(5715), - [anon_sym_mutable] = ACTIONS(5715), - [anon_sym_constinit] = ACTIONS(5715), - [anon_sym_consteval] = ACTIONS(5715), - [anon_sym_alignas] = ACTIONS(5715), - [anon_sym__Alignas] = ACTIONS(5715), - [sym_primitive_type] = ACTIONS(5715), - [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), - [anon_sym_final] = ACTIONS(5715), - [anon_sym_override] = ACTIONS(5715), - [anon_sym_requires] = ACTIONS(5715), - }, - [STATE(1906)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - }, - [STATE(1907)] = { - [sym_identifier] = ACTIONS(5727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), - [anon_sym_COMMA] = ACTIONS(5729), - [anon_sym_RPAREN] = ACTIONS(5729), - [aux_sym_preproc_if_token2] = ACTIONS(5729), - [aux_sym_preproc_else_token1] = ACTIONS(5729), - [aux_sym_preproc_elif_token1] = ACTIONS(5727), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5729), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5729), - [anon_sym_LPAREN2] = ACTIONS(5729), - [anon_sym_DASH] = ACTIONS(5727), - [anon_sym_PLUS] = ACTIONS(5727), - [anon_sym_STAR] = ACTIONS(5727), - [anon_sym_SLASH] = ACTIONS(5727), - [anon_sym_PERCENT] = ACTIONS(5727), - [anon_sym_PIPE_PIPE] = ACTIONS(5729), - [anon_sym_AMP_AMP] = ACTIONS(5729), - [anon_sym_PIPE] = ACTIONS(5727), - [anon_sym_CARET] = ACTIONS(5727), - [anon_sym_AMP] = ACTIONS(5727), - [anon_sym_EQ_EQ] = ACTIONS(5729), - [anon_sym_BANG_EQ] = ACTIONS(5729), - [anon_sym_GT] = ACTIONS(5727), - [anon_sym_GT_EQ] = ACTIONS(5729), - [anon_sym_LT_EQ] = ACTIONS(5727), - [anon_sym_LT] = ACTIONS(5727), - [anon_sym_LT_LT] = ACTIONS(5727), - [anon_sym_GT_GT] = ACTIONS(5727), - [anon_sym_SEMI] = ACTIONS(5729), - [anon_sym___attribute__] = ACTIONS(5727), - [anon_sym___attribute] = ACTIONS(5727), - [anon_sym_COLON] = ACTIONS(5729), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5729), - [anon_sym_LBRACE] = ACTIONS(5729), - [anon_sym_RBRACE] = ACTIONS(5729), - [anon_sym_LBRACK] = ACTIONS(5727), - [anon_sym_RBRACK] = ACTIONS(5729), - [anon_sym_EQ] = ACTIONS(5727), - [anon_sym_QMARK] = ACTIONS(5729), - [anon_sym_STAR_EQ] = ACTIONS(5729), - [anon_sym_SLASH_EQ] = ACTIONS(5729), - [anon_sym_PERCENT_EQ] = ACTIONS(5729), - [anon_sym_PLUS_EQ] = ACTIONS(5729), - [anon_sym_DASH_EQ] = ACTIONS(5729), - [anon_sym_LT_LT_EQ] = ACTIONS(5729), - [anon_sym_GT_GT_EQ] = ACTIONS(5729), - [anon_sym_AMP_EQ] = ACTIONS(5729), - [anon_sym_CARET_EQ] = ACTIONS(5729), - [anon_sym_PIPE_EQ] = ACTIONS(5729), - [anon_sym_and_eq] = ACTIONS(5727), - [anon_sym_or_eq] = ACTIONS(5727), - [anon_sym_xor_eq] = ACTIONS(5727), - [anon_sym_LT_EQ_GT] = ACTIONS(5729), - [anon_sym_or] = ACTIONS(5727), - [anon_sym_and] = ACTIONS(5727), - [anon_sym_bitor] = ACTIONS(5727), - [anon_sym_xor] = ACTIONS(5727), - [anon_sym_bitand] = ACTIONS(5727), - [anon_sym_not_eq] = ACTIONS(5727), - [anon_sym_DASH_DASH] = ACTIONS(5729), - [anon_sym_PLUS_PLUS] = ACTIONS(5729), - [anon_sym_asm] = ACTIONS(5727), - [anon_sym___asm__] = ACTIONS(5727), - [anon_sym___asm] = ACTIONS(5727), - [anon_sym_DOT] = ACTIONS(5727), - [anon_sym_DOT_STAR] = ACTIONS(5729), - [anon_sym_DASH_GT] = ACTIONS(5729), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5727), - }, - [STATE(1908)] = { - [sym_identifier] = ACTIONS(5731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5733), - [anon_sym_COMMA] = ACTIONS(5733), - [anon_sym_RPAREN] = ACTIONS(5733), - [aux_sym_preproc_if_token2] = ACTIONS(5733), - [aux_sym_preproc_else_token1] = ACTIONS(5733), - [aux_sym_preproc_elif_token1] = ACTIONS(5731), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5733), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5733), - [anon_sym_LPAREN2] = ACTIONS(5733), - [anon_sym_DASH] = ACTIONS(5731), - [anon_sym_PLUS] = ACTIONS(5731), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5731), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5733), - [anon_sym_AMP_AMP] = ACTIONS(5733), - [anon_sym_PIPE] = ACTIONS(5731), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_AMP] = ACTIONS(5731), - [anon_sym_EQ_EQ] = ACTIONS(5733), - [anon_sym_BANG_EQ] = ACTIONS(5733), - [anon_sym_GT] = ACTIONS(5731), - [anon_sym_GT_EQ] = ACTIONS(5733), - [anon_sym_LT_EQ] = ACTIONS(5731), - [anon_sym_LT] = ACTIONS(5731), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5731), - [anon_sym_SEMI] = ACTIONS(5733), - [anon_sym___attribute__] = ACTIONS(5731), - [anon_sym___attribute] = ACTIONS(5731), - [anon_sym_COLON] = ACTIONS(5733), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5733), - [anon_sym_LBRACE] = ACTIONS(5733), - [anon_sym_RBRACE] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(5731), - [anon_sym_RBRACK] = ACTIONS(5733), - [anon_sym_EQ] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5733), - [anon_sym_STAR_EQ] = ACTIONS(5733), - [anon_sym_SLASH_EQ] = ACTIONS(5733), - [anon_sym_PERCENT_EQ] = ACTIONS(5733), - [anon_sym_PLUS_EQ] = ACTIONS(5733), - [anon_sym_DASH_EQ] = ACTIONS(5733), - [anon_sym_LT_LT_EQ] = ACTIONS(5733), - [anon_sym_GT_GT_EQ] = ACTIONS(5733), - [anon_sym_AMP_EQ] = ACTIONS(5733), - [anon_sym_CARET_EQ] = ACTIONS(5733), - [anon_sym_PIPE_EQ] = ACTIONS(5733), - [anon_sym_and_eq] = ACTIONS(5731), - [anon_sym_or_eq] = ACTIONS(5731), - [anon_sym_xor_eq] = ACTIONS(5731), - [anon_sym_LT_EQ_GT] = ACTIONS(5733), - [anon_sym_or] = ACTIONS(5731), - [anon_sym_and] = ACTIONS(5731), - [anon_sym_bitor] = ACTIONS(5731), - [anon_sym_xor] = ACTIONS(5731), - [anon_sym_bitand] = ACTIONS(5731), - [anon_sym_not_eq] = ACTIONS(5731), - [anon_sym_DASH_DASH] = ACTIONS(5733), - [anon_sym_PLUS_PLUS] = ACTIONS(5733), - [anon_sym_asm] = ACTIONS(5731), - [anon_sym___asm__] = ACTIONS(5731), - [anon_sym___asm] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(5731), - [anon_sym_DOT_STAR] = ACTIONS(5733), - [anon_sym_DASH_GT] = ACTIONS(5733), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5731), - }, - [STATE(1909)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(5403), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1250)] = { + [sym_expression] = STATE(6793), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11380), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5711), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1910)] = { - [sym_identifier] = ACTIONS(5735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5737), - [anon_sym_COMMA] = ACTIONS(5737), - [anon_sym_RPAREN] = ACTIONS(5737), - [aux_sym_preproc_if_token2] = ACTIONS(5737), - [aux_sym_preproc_else_token1] = ACTIONS(5737), - [aux_sym_preproc_elif_token1] = ACTIONS(5735), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5737), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5737), - [anon_sym_LPAREN2] = ACTIONS(5737), - [anon_sym_DASH] = ACTIONS(5735), - [anon_sym_PLUS] = ACTIONS(5735), - [anon_sym_STAR] = ACTIONS(5735), - [anon_sym_SLASH] = ACTIONS(5735), - [anon_sym_PERCENT] = ACTIONS(5735), - [anon_sym_PIPE_PIPE] = ACTIONS(5737), - [anon_sym_AMP_AMP] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(5735), - [anon_sym_CARET] = ACTIONS(5735), - [anon_sym_AMP] = ACTIONS(5735), - [anon_sym_EQ_EQ] = ACTIONS(5737), - [anon_sym_BANG_EQ] = ACTIONS(5737), - [anon_sym_GT] = ACTIONS(5735), - [anon_sym_GT_EQ] = ACTIONS(5737), - [anon_sym_LT_EQ] = ACTIONS(5735), - [anon_sym_LT] = ACTIONS(5735), - [anon_sym_LT_LT] = ACTIONS(5735), - [anon_sym_GT_GT] = ACTIONS(5735), - [anon_sym_SEMI] = ACTIONS(5737), - [anon_sym___attribute__] = ACTIONS(5735), - [anon_sym___attribute] = ACTIONS(5735), - [anon_sym_COLON] = ACTIONS(5737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5737), - [anon_sym_LBRACE] = ACTIONS(5737), - [anon_sym_RBRACE] = ACTIONS(5737), - [anon_sym_LBRACK] = ACTIONS(5735), - [anon_sym_RBRACK] = ACTIONS(5737), - [anon_sym_EQ] = ACTIONS(5735), - [anon_sym_QMARK] = ACTIONS(5737), - [anon_sym_STAR_EQ] = ACTIONS(5737), - [anon_sym_SLASH_EQ] = ACTIONS(5737), - [anon_sym_PERCENT_EQ] = ACTIONS(5737), - [anon_sym_PLUS_EQ] = ACTIONS(5737), - [anon_sym_DASH_EQ] = ACTIONS(5737), - [anon_sym_LT_LT_EQ] = ACTIONS(5737), - [anon_sym_GT_GT_EQ] = ACTIONS(5737), - [anon_sym_AMP_EQ] = ACTIONS(5737), - [anon_sym_CARET_EQ] = ACTIONS(5737), - [anon_sym_PIPE_EQ] = ACTIONS(5737), - [anon_sym_and_eq] = ACTIONS(5735), - [anon_sym_or_eq] = ACTIONS(5735), - [anon_sym_xor_eq] = ACTIONS(5735), - [anon_sym_LT_EQ_GT] = ACTIONS(5737), - [anon_sym_or] = ACTIONS(5735), - [anon_sym_and] = ACTIONS(5735), - [anon_sym_bitor] = ACTIONS(5735), - [anon_sym_xor] = ACTIONS(5735), - [anon_sym_bitand] = ACTIONS(5735), - [anon_sym_not_eq] = ACTIONS(5735), - [anon_sym_DASH_DASH] = ACTIONS(5737), - [anon_sym_PLUS_PLUS] = ACTIONS(5737), - [anon_sym_asm] = ACTIONS(5735), - [anon_sym___asm__] = ACTIONS(5735), - [anon_sym___asm] = ACTIONS(5735), - [anon_sym_DOT] = ACTIONS(5735), - [anon_sym_DOT_STAR] = ACTIONS(5737), - [anon_sym_DASH_GT] = ACTIONS(5737), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5735), + [STATE(1251)] = { + [sym_expression] = STATE(7037), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(11382), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1911)] = { - [sym_identifier] = ACTIONS(5739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5741), - [anon_sym_COMMA] = ACTIONS(5741), - [anon_sym_RPAREN] = ACTIONS(5741), - [aux_sym_preproc_if_token2] = ACTIONS(5741), - [aux_sym_preproc_else_token1] = ACTIONS(5741), - [aux_sym_preproc_elif_token1] = ACTIONS(5739), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5741), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5741), - [anon_sym_LPAREN2] = ACTIONS(5741), - [anon_sym_DASH] = ACTIONS(5739), - [anon_sym_PLUS] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5739), - [anon_sym_SLASH] = ACTIONS(5739), - [anon_sym_PERCENT] = ACTIONS(5739), - [anon_sym_PIPE_PIPE] = ACTIONS(5741), - [anon_sym_AMP_AMP] = ACTIONS(5741), - [anon_sym_PIPE] = ACTIONS(5739), - [anon_sym_CARET] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5739), - [anon_sym_EQ_EQ] = ACTIONS(5741), - [anon_sym_BANG_EQ] = ACTIONS(5741), - [anon_sym_GT] = ACTIONS(5739), - [anon_sym_GT_EQ] = ACTIONS(5741), - [anon_sym_LT_EQ] = ACTIONS(5739), - [anon_sym_LT] = ACTIONS(5739), - [anon_sym_LT_LT] = ACTIONS(5739), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_SEMI] = ACTIONS(5741), - [anon_sym___attribute__] = ACTIONS(5739), - [anon_sym___attribute] = ACTIONS(5739), - [anon_sym_COLON] = ACTIONS(5741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5741), - [anon_sym_LBRACE] = ACTIONS(5741), - [anon_sym_RBRACE] = ACTIONS(5741), - [anon_sym_LBRACK] = ACTIONS(5739), - [anon_sym_RBRACK] = ACTIONS(5741), - [anon_sym_EQ] = ACTIONS(5739), - [anon_sym_QMARK] = ACTIONS(5741), - [anon_sym_STAR_EQ] = ACTIONS(5741), - [anon_sym_SLASH_EQ] = ACTIONS(5741), - [anon_sym_PERCENT_EQ] = ACTIONS(5741), - [anon_sym_PLUS_EQ] = ACTIONS(5741), - [anon_sym_DASH_EQ] = ACTIONS(5741), - [anon_sym_LT_LT_EQ] = ACTIONS(5741), - [anon_sym_GT_GT_EQ] = ACTIONS(5741), - [anon_sym_AMP_EQ] = ACTIONS(5741), - [anon_sym_CARET_EQ] = ACTIONS(5741), - [anon_sym_PIPE_EQ] = ACTIONS(5741), - [anon_sym_and_eq] = ACTIONS(5739), - [anon_sym_or_eq] = ACTIONS(5739), - [anon_sym_xor_eq] = ACTIONS(5739), - [anon_sym_LT_EQ_GT] = ACTIONS(5741), - [anon_sym_or] = ACTIONS(5739), - [anon_sym_and] = ACTIONS(5739), - [anon_sym_bitor] = ACTIONS(5739), - [anon_sym_xor] = ACTIONS(5739), - [anon_sym_bitand] = ACTIONS(5739), - [anon_sym_not_eq] = ACTIONS(5739), - [anon_sym_DASH_DASH] = ACTIONS(5741), - [anon_sym_PLUS_PLUS] = ACTIONS(5741), - [anon_sym_asm] = ACTIONS(5739), - [anon_sym___asm__] = ACTIONS(5739), - [anon_sym___asm] = ACTIONS(5739), - [anon_sym_DOT] = ACTIONS(5739), - [anon_sym_DOT_STAR] = ACTIONS(5741), - [anon_sym_DASH_GT] = ACTIONS(5741), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5739), + [STATE(1252)] = { + [sym_expression] = STATE(6761), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10928), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5713), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1912)] = { - [sym_identifier] = ACTIONS(5743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5745), - [anon_sym_COMMA] = ACTIONS(5745), - [anon_sym_RPAREN] = ACTIONS(5745), - [aux_sym_preproc_if_token2] = ACTIONS(5745), - [aux_sym_preproc_else_token1] = ACTIONS(5745), - [aux_sym_preproc_elif_token1] = ACTIONS(5743), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5745), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5745), - [anon_sym_LPAREN2] = ACTIONS(5745), - [anon_sym_DASH] = ACTIONS(5743), - [anon_sym_PLUS] = ACTIONS(5743), - [anon_sym_STAR] = ACTIONS(5743), - [anon_sym_SLASH] = ACTIONS(5743), - [anon_sym_PERCENT] = ACTIONS(5743), - [anon_sym_PIPE_PIPE] = ACTIONS(5745), - [anon_sym_AMP_AMP] = ACTIONS(5745), - [anon_sym_PIPE] = ACTIONS(5743), - [anon_sym_CARET] = ACTIONS(5743), - [anon_sym_AMP] = ACTIONS(5743), - [anon_sym_EQ_EQ] = ACTIONS(5745), - [anon_sym_BANG_EQ] = ACTIONS(5745), - [anon_sym_GT] = ACTIONS(5743), - [anon_sym_GT_EQ] = ACTIONS(5745), - [anon_sym_LT_EQ] = ACTIONS(5743), - [anon_sym_LT] = ACTIONS(5743), - [anon_sym_LT_LT] = ACTIONS(5743), - [anon_sym_GT_GT] = ACTIONS(5743), - [anon_sym_SEMI] = ACTIONS(5745), - [anon_sym___attribute__] = ACTIONS(5743), - [anon_sym___attribute] = ACTIONS(5743), - [anon_sym_COLON] = ACTIONS(5745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5745), - [anon_sym_LBRACE] = ACTIONS(5745), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(5743), - [anon_sym_RBRACK] = ACTIONS(5745), - [anon_sym_EQ] = ACTIONS(5743), - [anon_sym_QMARK] = ACTIONS(5745), - [anon_sym_STAR_EQ] = ACTIONS(5745), - [anon_sym_SLASH_EQ] = ACTIONS(5745), - [anon_sym_PERCENT_EQ] = ACTIONS(5745), - [anon_sym_PLUS_EQ] = ACTIONS(5745), - [anon_sym_DASH_EQ] = ACTIONS(5745), - [anon_sym_LT_LT_EQ] = ACTIONS(5745), - [anon_sym_GT_GT_EQ] = ACTIONS(5745), - [anon_sym_AMP_EQ] = ACTIONS(5745), - [anon_sym_CARET_EQ] = ACTIONS(5745), - [anon_sym_PIPE_EQ] = ACTIONS(5745), - [anon_sym_and_eq] = ACTIONS(5743), - [anon_sym_or_eq] = ACTIONS(5743), - [anon_sym_xor_eq] = ACTIONS(5743), - [anon_sym_LT_EQ_GT] = ACTIONS(5745), - [anon_sym_or] = ACTIONS(5743), - [anon_sym_and] = ACTIONS(5743), - [anon_sym_bitor] = ACTIONS(5743), - [anon_sym_xor] = ACTIONS(5743), - [anon_sym_bitand] = ACTIONS(5743), - [anon_sym_not_eq] = ACTIONS(5743), - [anon_sym_DASH_DASH] = ACTIONS(5745), - [anon_sym_PLUS_PLUS] = ACTIONS(5745), - [anon_sym_asm] = ACTIONS(5743), - [anon_sym___asm__] = ACTIONS(5743), - [anon_sym___asm] = ACTIONS(5743), - [anon_sym_DOT] = ACTIONS(5743), - [anon_sym_DOT_STAR] = ACTIONS(5745), - [anon_sym_DASH_GT] = ACTIONS(5745), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5743), + [STATE(1253)] = { + [sym_expression] = STATE(6795), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11384), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5715), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1913)] = { - [sym_identifier] = ACTIONS(5633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5635), - [anon_sym_COMMA] = ACTIONS(5635), - [anon_sym_RPAREN] = ACTIONS(5635), - [aux_sym_preproc_if_token2] = ACTIONS(5635), - [aux_sym_preproc_else_token1] = ACTIONS(5635), - [aux_sym_preproc_elif_token1] = ACTIONS(5633), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5635), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5635), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_DASH] = ACTIONS(5633), - [anon_sym_PLUS] = ACTIONS(5633), - [anon_sym_STAR] = ACTIONS(5633), - [anon_sym_SLASH] = ACTIONS(5633), - [anon_sym_PERCENT] = ACTIONS(5633), - [anon_sym_PIPE_PIPE] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_PIPE] = ACTIONS(5633), - [anon_sym_CARET] = ACTIONS(5633), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym_EQ_EQ] = ACTIONS(5635), - [anon_sym_BANG_EQ] = ACTIONS(5635), - [anon_sym_GT] = ACTIONS(5633), - [anon_sym_GT_EQ] = ACTIONS(5635), - [anon_sym_LT_EQ] = ACTIONS(5633), - [anon_sym_LT] = ACTIONS(5633), - [anon_sym_LT_LT] = ACTIONS(5633), - [anon_sym_GT_GT] = ACTIONS(5633), - [anon_sym_SEMI] = ACTIONS(5635), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_COLON] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym_LBRACE] = ACTIONS(5635), - [anon_sym_RBRACE] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(5635), - [anon_sym_RBRACK] = ACTIONS(5635), - [anon_sym_EQ] = ACTIONS(5633), - [anon_sym_QMARK] = ACTIONS(5635), - [anon_sym_STAR_EQ] = ACTIONS(5635), - [anon_sym_SLASH_EQ] = ACTIONS(5635), - [anon_sym_PERCENT_EQ] = ACTIONS(5635), - [anon_sym_PLUS_EQ] = ACTIONS(5635), - [anon_sym_DASH_EQ] = ACTIONS(5635), - [anon_sym_LT_LT_EQ] = ACTIONS(5635), - [anon_sym_GT_GT_EQ] = ACTIONS(5635), - [anon_sym_AMP_EQ] = ACTIONS(5635), - [anon_sym_CARET_EQ] = ACTIONS(5635), - [anon_sym_PIPE_EQ] = ACTIONS(5635), - [anon_sym_and_eq] = ACTIONS(5633), - [anon_sym_or_eq] = ACTIONS(5633), - [anon_sym_xor_eq] = ACTIONS(5633), - [anon_sym_LT_EQ_GT] = ACTIONS(5635), - [anon_sym_or] = ACTIONS(5633), - [anon_sym_and] = ACTIONS(5633), - [anon_sym_bitor] = ACTIONS(5633), - [anon_sym_xor] = ACTIONS(5633), - [anon_sym_bitand] = ACTIONS(5633), - [anon_sym_not_eq] = ACTIONS(5633), - [anon_sym_DASH_DASH] = ACTIONS(5635), - [anon_sym_PLUS_PLUS] = ACTIONS(5635), - [anon_sym_DOT] = ACTIONS(5633), - [anon_sym_DOT_STAR] = ACTIONS(5635), - [anon_sym_DASH_GT] = ACTIONS(5635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_final] = ACTIONS(5633), - [anon_sym_override] = ACTIONS(5633), + [STATE(1254)] = { + [sym_expression] = STATE(6815), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10331), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1914)] = { - [sym_identifier] = ACTIONS(5747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5749), - [anon_sym_COMMA] = ACTIONS(5749), - [anon_sym_RPAREN] = ACTIONS(5749), - [anon_sym_LPAREN2] = ACTIONS(5749), - [anon_sym_DASH] = ACTIONS(5747), - [anon_sym_PLUS] = ACTIONS(5747), - [anon_sym_STAR] = ACTIONS(5749), - [anon_sym_SLASH] = ACTIONS(5747), - [anon_sym_PERCENT] = ACTIONS(5749), - [anon_sym_PIPE_PIPE] = ACTIONS(5749), - [anon_sym_AMP_AMP] = ACTIONS(5749), - [anon_sym_PIPE] = ACTIONS(5747), - [anon_sym_CARET] = ACTIONS(5749), - [anon_sym_AMP] = ACTIONS(5747), - [anon_sym_EQ_EQ] = ACTIONS(5749), - [anon_sym_BANG_EQ] = ACTIONS(5749), - [anon_sym_GT] = ACTIONS(5747), - [anon_sym_GT_EQ] = ACTIONS(5749), - [anon_sym_LT_EQ] = ACTIONS(5747), - [anon_sym_LT] = ACTIONS(5747), - [anon_sym_LT_LT] = ACTIONS(5749), - [anon_sym_GT_GT] = ACTIONS(5749), - [anon_sym_SEMI] = ACTIONS(5749), - [anon_sym___extension__] = ACTIONS(5747), - [anon_sym___attribute__] = ACTIONS(5747), - [anon_sym___attribute] = ACTIONS(5747), - [anon_sym_COLON] = ACTIONS(5749), - [anon_sym___based] = ACTIONS(5747), - [anon_sym_LBRACE] = ACTIONS(5749), - [anon_sym_RBRACE] = ACTIONS(5749), - [anon_sym_signed] = ACTIONS(5747), - [anon_sym_unsigned] = ACTIONS(5747), - [anon_sym_long] = ACTIONS(5747), - [anon_sym_short] = ACTIONS(5747), - [anon_sym_LBRACK] = ACTIONS(5749), - [anon_sym_RBRACK] = ACTIONS(5749), - [anon_sym_const] = ACTIONS(5747), - [anon_sym_constexpr] = ACTIONS(5747), - [anon_sym_volatile] = ACTIONS(5747), - [anon_sym_restrict] = ACTIONS(5747), - [anon_sym___restrict__] = ACTIONS(5747), - [anon_sym__Atomic] = ACTIONS(5747), - [anon_sym__Noreturn] = ACTIONS(5747), - [anon_sym_noreturn] = ACTIONS(5747), - [anon_sym__Nonnull] = ACTIONS(5747), - [anon_sym_mutable] = ACTIONS(5747), - [anon_sym_constinit] = ACTIONS(5747), - [anon_sym_consteval] = ACTIONS(5747), - [anon_sym_alignas] = ACTIONS(5747), - [anon_sym__Alignas] = ACTIONS(5747), - [sym_primitive_type] = ACTIONS(5747), - [anon_sym_QMARK] = ACTIONS(5749), - [anon_sym_LT_EQ_GT] = ACTIONS(5749), - [anon_sym_or] = ACTIONS(5747), - [anon_sym_and] = ACTIONS(5747), - [anon_sym_bitor] = ACTIONS(5747), - [anon_sym_xor] = ACTIONS(5747), - [anon_sym_bitand] = ACTIONS(5747), - [anon_sym_not_eq] = ACTIONS(5747), - [anon_sym_DASH_DASH] = ACTIONS(5749), - [anon_sym_PLUS_PLUS] = ACTIONS(5749), - [anon_sym_DOT] = ACTIONS(5747), - [anon_sym_DOT_STAR] = ACTIONS(5749), - [anon_sym_DASH_GT] = ACTIONS(5749), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5747), - [anon_sym_override] = ACTIONS(5747), - [anon_sym_requires] = ACTIONS(5747), + [STATE(1255)] = { + [sym_expression] = STATE(6640), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_initializer_list] = STATE(7121), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1915)] = { - [sym_type_qualifier] = STATE(1927), - [sym_alignas_qualifier] = STATE(1731), - [aux_sym__type_definition_type_repeat1] = STATE(1927), - [aux_sym_sized_type_specifier_repeat1] = STATE(2260), - [sym_identifier] = ACTIONS(5751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_RPAREN] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5122), - [anon_sym_SEMI] = ACTIONS(5122), - [anon_sym___extension__] = ACTIONS(5753), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_COLON] = ACTIONS(5122), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5755), - [anon_sym_unsigned] = ACTIONS(5755), - [anon_sym_long] = ACTIONS(5755), - [anon_sym_short] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_RBRACK] = ACTIONS(5122), - [anon_sym_const] = ACTIONS(5753), - [anon_sym_constexpr] = ACTIONS(5753), - [anon_sym_volatile] = ACTIONS(5753), - [anon_sym_restrict] = ACTIONS(5753), - [anon_sym___restrict__] = ACTIONS(5753), - [anon_sym__Atomic] = ACTIONS(5753), - [anon_sym__Noreturn] = ACTIONS(5753), - [anon_sym_noreturn] = ACTIONS(5753), - [anon_sym__Nonnull] = ACTIONS(5753), - [anon_sym_mutable] = ACTIONS(5753), - [anon_sym_constinit] = ACTIONS(5753), - [anon_sym_consteval] = ACTIONS(5753), - [anon_sym_alignas] = ACTIONS(5757), - [anon_sym__Alignas] = ACTIONS(5757), - [sym_primitive_type] = ACTIONS(5759), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), + [STATE(1256)] = { + [sym_expression] = STATE(6790), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_initializer_list] = STATE(7260), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1916)] = { - [sym_identifier] = ACTIONS(5761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5763), - [anon_sym_COMMA] = ACTIONS(5763), - [anon_sym_RPAREN] = ACTIONS(5763), - [aux_sym_preproc_if_token2] = ACTIONS(5763), - [aux_sym_preproc_else_token1] = ACTIONS(5763), - [aux_sym_preproc_elif_token1] = ACTIONS(5761), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5763), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5763), - [anon_sym_LPAREN2] = ACTIONS(5763), - [anon_sym_DASH] = ACTIONS(5761), - [anon_sym_PLUS] = ACTIONS(5761), - [anon_sym_STAR] = ACTIONS(5761), - [anon_sym_SLASH] = ACTIONS(5761), - [anon_sym_PERCENT] = ACTIONS(5761), - [anon_sym_PIPE_PIPE] = ACTIONS(5763), - [anon_sym_AMP_AMP] = ACTIONS(5763), - [anon_sym_PIPE] = ACTIONS(5761), - [anon_sym_CARET] = ACTIONS(5761), - [anon_sym_AMP] = ACTIONS(5761), - [anon_sym_EQ_EQ] = ACTIONS(5763), - [anon_sym_BANG_EQ] = ACTIONS(5763), - [anon_sym_GT] = ACTIONS(5761), - [anon_sym_GT_EQ] = ACTIONS(5763), - [anon_sym_LT_EQ] = ACTIONS(5761), - [anon_sym_LT] = ACTIONS(5761), - [anon_sym_LT_LT] = ACTIONS(5761), - [anon_sym_GT_GT] = ACTIONS(5761), - [anon_sym_SEMI] = ACTIONS(5763), - [anon_sym___attribute__] = ACTIONS(5761), - [anon_sym___attribute] = ACTIONS(5761), - [anon_sym_COLON] = ACTIONS(5763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5763), - [anon_sym_LBRACE] = ACTIONS(5763), - [anon_sym_RBRACE] = ACTIONS(5763), - [anon_sym_LBRACK] = ACTIONS(5761), - [anon_sym_RBRACK] = ACTIONS(5763), - [anon_sym_EQ] = ACTIONS(5761), - [anon_sym_QMARK] = ACTIONS(5763), - [anon_sym_STAR_EQ] = ACTIONS(5763), - [anon_sym_SLASH_EQ] = ACTIONS(5763), - [anon_sym_PERCENT_EQ] = ACTIONS(5763), - [anon_sym_PLUS_EQ] = ACTIONS(5763), - [anon_sym_DASH_EQ] = ACTIONS(5763), - [anon_sym_LT_LT_EQ] = ACTIONS(5763), - [anon_sym_GT_GT_EQ] = ACTIONS(5763), - [anon_sym_AMP_EQ] = ACTIONS(5763), - [anon_sym_CARET_EQ] = ACTIONS(5763), - [anon_sym_PIPE_EQ] = ACTIONS(5763), - [anon_sym_and_eq] = ACTIONS(5761), - [anon_sym_or_eq] = ACTIONS(5761), - [anon_sym_xor_eq] = ACTIONS(5761), - [anon_sym_LT_EQ_GT] = ACTIONS(5763), - [anon_sym_or] = ACTIONS(5761), - [anon_sym_and] = ACTIONS(5761), - [anon_sym_bitor] = ACTIONS(5761), - [anon_sym_xor] = ACTIONS(5761), - [anon_sym_bitand] = ACTIONS(5761), - [anon_sym_not_eq] = ACTIONS(5761), - [anon_sym_DASH_DASH] = ACTIONS(5763), - [anon_sym_PLUS_PLUS] = ACTIONS(5763), - [anon_sym_asm] = ACTIONS(5761), - [anon_sym___asm__] = ACTIONS(5761), - [anon_sym___asm] = ACTIONS(5761), - [anon_sym_DOT] = ACTIONS(5761), - [anon_sym_DOT_STAR] = ACTIONS(5763), - [anon_sym_DASH_GT] = ACTIONS(5763), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5761), + [STATE(1257)] = { + [sym_expression] = STATE(6744), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11001), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5717), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1917)] = { - [sym_identifier] = ACTIONS(5765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5767), - [anon_sym_COMMA] = ACTIONS(5767), - [anon_sym_RPAREN] = ACTIONS(5767), - [anon_sym_LPAREN2] = ACTIONS(5767), - [anon_sym_DASH] = ACTIONS(5765), - [anon_sym_PLUS] = ACTIONS(5765), - [anon_sym_STAR] = ACTIONS(5767), - [anon_sym_SLASH] = ACTIONS(5765), - [anon_sym_PERCENT] = ACTIONS(5767), - [anon_sym_PIPE_PIPE] = ACTIONS(5767), - [anon_sym_AMP_AMP] = ACTIONS(5767), - [anon_sym_PIPE] = ACTIONS(5765), - [anon_sym_CARET] = ACTIONS(5767), - [anon_sym_AMP] = ACTIONS(5765), - [anon_sym_EQ_EQ] = ACTIONS(5767), - [anon_sym_BANG_EQ] = ACTIONS(5767), - [anon_sym_GT] = ACTIONS(5765), - [anon_sym_GT_EQ] = ACTIONS(5767), - [anon_sym_LT_EQ] = ACTIONS(5765), - [anon_sym_LT] = ACTIONS(5765), - [anon_sym_LT_LT] = ACTIONS(5767), - [anon_sym_GT_GT] = ACTIONS(5767), - [anon_sym_SEMI] = ACTIONS(5767), - [anon_sym___extension__] = ACTIONS(5765), - [anon_sym___attribute__] = ACTIONS(5765), - [anon_sym___attribute] = ACTIONS(5765), - [anon_sym_COLON] = ACTIONS(5767), - [anon_sym___based] = ACTIONS(5765), - [anon_sym_LBRACE] = ACTIONS(5767), - [anon_sym_RBRACE] = ACTIONS(5767), - [anon_sym_signed] = ACTIONS(5765), - [anon_sym_unsigned] = ACTIONS(5765), - [anon_sym_long] = ACTIONS(5765), - [anon_sym_short] = ACTIONS(5765), - [anon_sym_LBRACK] = ACTIONS(5767), - [anon_sym_RBRACK] = ACTIONS(5767), - [anon_sym_const] = ACTIONS(5765), - [anon_sym_constexpr] = ACTIONS(5765), - [anon_sym_volatile] = ACTIONS(5765), - [anon_sym_restrict] = ACTIONS(5765), - [anon_sym___restrict__] = ACTIONS(5765), - [anon_sym__Atomic] = ACTIONS(5765), - [anon_sym__Noreturn] = ACTIONS(5765), - [anon_sym_noreturn] = ACTIONS(5765), - [anon_sym__Nonnull] = ACTIONS(5765), - [anon_sym_mutable] = ACTIONS(5765), - [anon_sym_constinit] = ACTIONS(5765), - [anon_sym_consteval] = ACTIONS(5765), - [anon_sym_alignas] = ACTIONS(5765), - [anon_sym__Alignas] = ACTIONS(5765), - [sym_primitive_type] = ACTIONS(5765), - [anon_sym_QMARK] = ACTIONS(5767), - [anon_sym_LT_EQ_GT] = ACTIONS(5767), - [anon_sym_or] = ACTIONS(5765), - [anon_sym_and] = ACTIONS(5765), - [anon_sym_bitor] = ACTIONS(5765), - [anon_sym_xor] = ACTIONS(5765), - [anon_sym_bitand] = ACTIONS(5765), - [anon_sym_not_eq] = ACTIONS(5765), - [anon_sym_DASH_DASH] = ACTIONS(5767), - [anon_sym_PLUS_PLUS] = ACTIONS(5767), - [anon_sym_DOT] = ACTIONS(5765), - [anon_sym_DOT_STAR] = ACTIONS(5767), - [anon_sym_DASH_GT] = ACTIONS(5767), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5765), - [anon_sym_override] = ACTIONS(5765), - [anon_sym_requires] = ACTIONS(5765), + [STATE(1258)] = { + [sym_expression] = STATE(6794), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_initializer_list] = STATE(5866), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1918)] = { - [sym_identifier] = ACTIONS(5024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [aux_sym_preproc_if_token2] = ACTIONS(5031), - [aux_sym_preproc_else_token1] = ACTIONS(5031), - [aux_sym_preproc_elif_token1] = ACTIONS(5024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5031), - [anon_sym_LPAREN2] = ACTIONS(5031), - [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(5031), - [anon_sym_AMP_AMP] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5024), - [anon_sym_CARET] = ACTIONS(5024), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_GT] = ACTIONS(5024), - [anon_sym_GT_EQ] = ACTIONS(5031), - [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(5031), - [anon_sym___attribute__] = ACTIONS(5024), - [anon_sym___attribute] = ACTIONS(5024), - [anon_sym_COLON] = ACTIONS(5024), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5024), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_LT_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_GT_EQ] = ACTIONS(5031), - [anon_sym_AMP_EQ] = ACTIONS(5031), - [anon_sym_CARET_EQ] = ACTIONS(5031), - [anon_sym_PIPE_EQ] = ACTIONS(5031), - [anon_sym_and_eq] = ACTIONS(5024), - [anon_sym_or_eq] = ACTIONS(5024), - [anon_sym_xor_eq] = ACTIONS(5024), - [anon_sym_LT_EQ_GT] = ACTIONS(5031), - [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(5031), - [anon_sym_PLUS_PLUS] = ACTIONS(5031), - [anon_sym_DOT] = ACTIONS(5024), - [anon_sym_DOT_STAR] = ACTIONS(5031), - [anon_sym_DASH_GT] = ACTIONS(5031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5024), - [anon_sym_decltype] = ACTIONS(5024), - [anon_sym_final] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), + [STATE(1259)] = { + [sym_expression] = STATE(6733), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_initializer_list] = STATE(5866), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1919)] = { - [sym_identifier] = ACTIONS(5769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5771), - [anon_sym_COMMA] = ACTIONS(5771), - [anon_sym_RPAREN] = ACTIONS(5771), - [anon_sym_LPAREN2] = ACTIONS(5771), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5771), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5771), - [anon_sym_PIPE_PIPE] = ACTIONS(5771), - [anon_sym_AMP_AMP] = ACTIONS(5771), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_CARET] = ACTIONS(5771), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_EQ_EQ] = ACTIONS(5771), - [anon_sym_BANG_EQ] = ACTIONS(5771), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_GT_EQ] = ACTIONS(5771), - [anon_sym_LT_EQ] = ACTIONS(5769), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5771), - [anon_sym_GT_GT] = ACTIONS(5771), - [anon_sym_SEMI] = ACTIONS(5771), - [anon_sym___extension__] = ACTIONS(5769), - [anon_sym___attribute__] = ACTIONS(5769), - [anon_sym___attribute] = ACTIONS(5769), - [anon_sym_COLON] = ACTIONS(5771), - [anon_sym___based] = ACTIONS(5769), - [anon_sym_LBRACE] = ACTIONS(5771), - [anon_sym_RBRACE] = ACTIONS(5771), - [anon_sym_signed] = ACTIONS(5769), - [anon_sym_unsigned] = ACTIONS(5769), - [anon_sym_long] = ACTIONS(5769), - [anon_sym_short] = ACTIONS(5769), - [anon_sym_LBRACK] = ACTIONS(5771), - [anon_sym_RBRACK] = ACTIONS(5771), - [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__Nonnull] = ACTIONS(5769), - [anon_sym_mutable] = ACTIONS(5769), - [anon_sym_constinit] = ACTIONS(5769), - [anon_sym_consteval] = ACTIONS(5769), - [anon_sym_alignas] = ACTIONS(5769), - [anon_sym__Alignas] = ACTIONS(5769), - [sym_primitive_type] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_LT_EQ_GT] = ACTIONS(5771), - [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(5771), - [anon_sym_PLUS_PLUS] = ACTIONS(5771), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_DOT_STAR] = ACTIONS(5771), - [anon_sym_DASH_GT] = ACTIONS(5771), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5769), - [anon_sym_override] = ACTIONS(5769), - [anon_sym_requires] = ACTIONS(5769), + [STATE(1260)] = { + [sym_expression] = STATE(6747), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1920)] = { - [sym_type_qualifier] = STATE(1701), - [sym_alignas_qualifier] = STATE(1731), - [aux_sym__type_definition_type_repeat1] = STATE(1701), - [aux_sym_sized_type_specifier_repeat1] = STATE(3783), - [sym_identifier] = ACTIONS(5773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [aux_sym_preproc_if_token2] = ACTIONS(5137), - [aux_sym_preproc_else_token1] = ACTIONS(5137), - [aux_sym_preproc_elif_token1] = ACTIONS(5139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5137), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5137), - [anon_sym_GT_GT] = ACTIONS(5137), - [anon_sym___extension__] = ACTIONS(5753), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5776), - [anon_sym_unsigned] = ACTIONS(5776), - [anon_sym_long] = ACTIONS(5776), - [anon_sym_short] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_const] = ACTIONS(5753), - [anon_sym_constexpr] = ACTIONS(5753), - [anon_sym_volatile] = ACTIONS(5753), - [anon_sym_restrict] = ACTIONS(5753), - [anon_sym___restrict__] = ACTIONS(5753), - [anon_sym__Atomic] = ACTIONS(5753), - [anon_sym__Noreturn] = ACTIONS(5753), - [anon_sym_noreturn] = ACTIONS(5753), - [anon_sym__Nonnull] = ACTIONS(5753), - [anon_sym_mutable] = ACTIONS(5753), - [anon_sym_constinit] = ACTIONS(5753), - [anon_sym_consteval] = ACTIONS(5753), - [anon_sym_alignas] = ACTIONS(5757), - [anon_sym__Alignas] = ACTIONS(5757), - [sym_primitive_type] = ACTIONS(5778), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), + [STATE(1261)] = { + [sym_expression] = STATE(5407), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1921)] = { - [sym_identifier] = ACTIONS(5780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5782), - [anon_sym_COMMA] = ACTIONS(5782), - [anon_sym_RPAREN] = ACTIONS(5782), - [anon_sym_LPAREN2] = ACTIONS(5782), - [anon_sym_DASH] = ACTIONS(5780), - [anon_sym_PLUS] = ACTIONS(5780), - [anon_sym_STAR] = ACTIONS(5782), - [anon_sym_SLASH] = ACTIONS(5780), - [anon_sym_PERCENT] = ACTIONS(5782), - [anon_sym_PIPE_PIPE] = ACTIONS(5782), - [anon_sym_AMP_AMP] = ACTIONS(5782), - [anon_sym_PIPE] = ACTIONS(5780), - [anon_sym_CARET] = ACTIONS(5782), - [anon_sym_AMP] = ACTIONS(5780), - [anon_sym_EQ_EQ] = ACTIONS(5782), - [anon_sym_BANG_EQ] = ACTIONS(5782), - [anon_sym_GT] = ACTIONS(5780), - [anon_sym_GT_EQ] = ACTIONS(5782), - [anon_sym_LT_EQ] = ACTIONS(5780), - [anon_sym_LT] = ACTIONS(5780), - [anon_sym_LT_LT] = ACTIONS(5782), - [anon_sym_GT_GT] = ACTIONS(5782), - [anon_sym_SEMI] = ACTIONS(5782), - [anon_sym___extension__] = ACTIONS(5780), - [anon_sym___attribute__] = ACTIONS(5780), - [anon_sym___attribute] = ACTIONS(5780), - [anon_sym_COLON] = ACTIONS(5782), - [anon_sym___based] = ACTIONS(5780), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(5782), - [anon_sym_signed] = ACTIONS(5780), - [anon_sym_unsigned] = ACTIONS(5780), - [anon_sym_long] = ACTIONS(5780), - [anon_sym_short] = ACTIONS(5780), - [anon_sym_LBRACK] = ACTIONS(5782), - [anon_sym_RBRACK] = ACTIONS(5782), - [anon_sym_const] = ACTIONS(5780), - [anon_sym_constexpr] = ACTIONS(5780), - [anon_sym_volatile] = ACTIONS(5780), - [anon_sym_restrict] = ACTIONS(5780), - [anon_sym___restrict__] = ACTIONS(5780), - [anon_sym__Atomic] = ACTIONS(5780), - [anon_sym__Noreturn] = ACTIONS(5780), - [anon_sym_noreturn] = ACTIONS(5780), - [anon_sym__Nonnull] = ACTIONS(5780), - [anon_sym_mutable] = ACTIONS(5780), - [anon_sym_constinit] = ACTIONS(5780), - [anon_sym_consteval] = ACTIONS(5780), - [anon_sym_alignas] = ACTIONS(5780), - [anon_sym__Alignas] = ACTIONS(5780), - [sym_primitive_type] = ACTIONS(5780), - [anon_sym_QMARK] = ACTIONS(5782), - [anon_sym_LT_EQ_GT] = ACTIONS(5782), - [anon_sym_or] = ACTIONS(5780), - [anon_sym_and] = ACTIONS(5780), - [anon_sym_bitor] = ACTIONS(5780), - [anon_sym_xor] = ACTIONS(5780), - [anon_sym_bitand] = ACTIONS(5780), - [anon_sym_not_eq] = ACTIONS(5780), - [anon_sym_DASH_DASH] = ACTIONS(5782), - [anon_sym_PLUS_PLUS] = ACTIONS(5782), - [anon_sym_DOT] = ACTIONS(5780), - [anon_sym_DOT_STAR] = ACTIONS(5782), - [anon_sym_DASH_GT] = ACTIONS(5782), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5780), - [anon_sym_override] = ACTIONS(5780), - [anon_sym_requires] = ACTIONS(5780), + [STATE(1262)] = { + [sym_expression] = STATE(6717), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11079), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5719), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1922)] = { - [sym_identifier] = ACTIONS(5784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(5786), - [anon_sym_RPAREN] = ACTIONS(5786), - [aux_sym_preproc_if_token2] = ACTIONS(5786), - [aux_sym_preproc_else_token1] = ACTIONS(5786), - [aux_sym_preproc_elif_token1] = ACTIONS(5784), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(5786), - [anon_sym_DASH] = ACTIONS(5784), - [anon_sym_PLUS] = ACTIONS(5784), - [anon_sym_STAR] = ACTIONS(5784), - [anon_sym_SLASH] = ACTIONS(5784), - [anon_sym_PERCENT] = ACTIONS(5784), - [anon_sym_PIPE_PIPE] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(5786), - [anon_sym_PIPE] = ACTIONS(5784), - [anon_sym_CARET] = ACTIONS(5784), - [anon_sym_AMP] = ACTIONS(5784), - [anon_sym_EQ_EQ] = ACTIONS(5786), - [anon_sym_BANG_EQ] = ACTIONS(5786), - [anon_sym_GT] = ACTIONS(5784), - [anon_sym_GT_EQ] = ACTIONS(5786), - [anon_sym_LT_EQ] = ACTIONS(5784), - [anon_sym_LT] = ACTIONS(5784), - [anon_sym_LT_LT] = ACTIONS(5784), - [anon_sym_GT_GT] = ACTIONS(5784), - [anon_sym_SEMI] = ACTIONS(5786), - [anon_sym___attribute__] = ACTIONS(5784), - [anon_sym___attribute] = ACTIONS(5784), - [anon_sym_COLON] = ACTIONS(5786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5786), - [anon_sym_LBRACE] = ACTIONS(5786), - [anon_sym_RBRACE] = ACTIONS(5786), - [anon_sym_LBRACK] = ACTIONS(5784), - [anon_sym_RBRACK] = ACTIONS(5786), - [anon_sym_EQ] = ACTIONS(5784), - [anon_sym_QMARK] = ACTIONS(5786), - [anon_sym_STAR_EQ] = ACTIONS(5786), - [anon_sym_SLASH_EQ] = ACTIONS(5786), - [anon_sym_PERCENT_EQ] = ACTIONS(5786), - [anon_sym_PLUS_EQ] = ACTIONS(5786), - [anon_sym_DASH_EQ] = ACTIONS(5786), - [anon_sym_LT_LT_EQ] = ACTIONS(5786), - [anon_sym_GT_GT_EQ] = ACTIONS(5786), - [anon_sym_AMP_EQ] = ACTIONS(5786), - [anon_sym_CARET_EQ] = ACTIONS(5786), - [anon_sym_PIPE_EQ] = ACTIONS(5786), - [anon_sym_and_eq] = ACTIONS(5784), - [anon_sym_or_eq] = ACTIONS(5784), - [anon_sym_xor_eq] = ACTIONS(5784), - [anon_sym_LT_EQ_GT] = ACTIONS(5786), - [anon_sym_or] = ACTIONS(5784), - [anon_sym_and] = ACTIONS(5784), - [anon_sym_bitor] = ACTIONS(5784), - [anon_sym_xor] = ACTIONS(5784), - [anon_sym_bitand] = ACTIONS(5784), - [anon_sym_not_eq] = ACTIONS(5784), - [anon_sym_DASH_DASH] = ACTIONS(5786), - [anon_sym_PLUS_PLUS] = ACTIONS(5786), - [anon_sym_asm] = ACTIONS(5784), - [anon_sym___asm__] = ACTIONS(5784), - [anon_sym___asm] = ACTIONS(5784), - [anon_sym_DOT] = ACTIONS(5784), - [anon_sym_DOT_STAR] = ACTIONS(5786), - [anon_sym_DASH_GT] = ACTIONS(5786), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5784), + [STATE(1263)] = { + [sym_expression] = STATE(6800), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11396), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON] = ACTIONS(5721), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1923)] = { - [sym_string_literal] = STATE(1726), - [sym_raw_string_literal] = STATE(1726), - [sym_identifier] = ACTIONS(5788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), - [anon_sym_COMMA] = 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_LBRACK] = ACTIONS(5790), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_QMARK] = ACTIONS(5790), - [anon_sym_STAR_EQ] = ACTIONS(5790), - [anon_sym_SLASH_EQ] = ACTIONS(5790), - [anon_sym_PERCENT_EQ] = ACTIONS(5790), - [anon_sym_PLUS_EQ] = ACTIONS(5790), - [anon_sym_DASH_EQ] = ACTIONS(5790), - [anon_sym_LT_LT_EQ] = ACTIONS(5790), - [anon_sym_GT_GT_EQ] = ACTIONS(5790), - [anon_sym_AMP_EQ] = ACTIONS(5790), - [anon_sym_CARET_EQ] = ACTIONS(5790), - [anon_sym_PIPE_EQ] = ACTIONS(5790), - [anon_sym_and_eq] = ACTIONS(5788), - [anon_sym_or_eq] = ACTIONS(5788), - [anon_sym_xor_eq] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5790), - [anon_sym_or] = ACTIONS(5788), - [anon_sym_and] = ACTIONS(5788), - [anon_sym_bitor] = ACTIONS(5788), - [anon_sym_xor] = ACTIONS(5788), - [anon_sym_bitand] = ACTIONS(5788), - [anon_sym_not_eq] = ACTIONS(5788), - [anon_sym_DASH_DASH] = ACTIONS(5790), - [anon_sym_PLUS_PLUS] = ACTIONS(5790), - [anon_sym_DOT] = ACTIONS(5788), - [anon_sym_DOT_STAR] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(5790), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [sym_literal_suffix] = ACTIONS(5788), + [STATE(1264)] = { + [sym_expression] = STATE(6805), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_initializer_list] = STATE(10373), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1924)] = { - [sym_identifier] = ACTIONS(5792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5794), - [anon_sym_COMMA] = ACTIONS(5794), - [anon_sym_RPAREN] = ACTIONS(5794), - [anon_sym_LPAREN2] = ACTIONS(5794), - [anon_sym_DASH] = ACTIONS(5792), - [anon_sym_PLUS] = ACTIONS(5792), - [anon_sym_STAR] = ACTIONS(5794), - [anon_sym_SLASH] = ACTIONS(5792), - [anon_sym_PERCENT] = ACTIONS(5794), - [anon_sym_PIPE_PIPE] = ACTIONS(5794), - [anon_sym_AMP_AMP] = ACTIONS(5794), - [anon_sym_PIPE] = ACTIONS(5792), - [anon_sym_CARET] = ACTIONS(5794), - [anon_sym_AMP] = ACTIONS(5792), - [anon_sym_EQ_EQ] = ACTIONS(5794), - [anon_sym_BANG_EQ] = ACTIONS(5794), - [anon_sym_GT] = ACTIONS(5792), - [anon_sym_GT_EQ] = ACTIONS(5794), - [anon_sym_LT_EQ] = ACTIONS(5792), - [anon_sym_LT] = ACTIONS(5792), - [anon_sym_LT_LT] = ACTIONS(5794), - [anon_sym_GT_GT] = ACTIONS(5794), - [anon_sym_SEMI] = ACTIONS(5794), - [anon_sym___extension__] = ACTIONS(5792), - [anon_sym___attribute__] = ACTIONS(5792), - [anon_sym___attribute] = ACTIONS(5792), - [anon_sym_COLON] = ACTIONS(5794), - [anon_sym___based] = ACTIONS(5792), - [anon_sym_LBRACE] = ACTIONS(5794), - [anon_sym_RBRACE] = ACTIONS(5794), - [anon_sym_signed] = ACTIONS(5792), - [anon_sym_unsigned] = ACTIONS(5792), - [anon_sym_long] = ACTIONS(5792), - [anon_sym_short] = ACTIONS(5792), - [anon_sym_LBRACK] = ACTIONS(5794), - [anon_sym_RBRACK] = ACTIONS(5794), - [anon_sym_const] = ACTIONS(5792), - [anon_sym_constexpr] = ACTIONS(5792), - [anon_sym_volatile] = ACTIONS(5792), - [anon_sym_restrict] = ACTIONS(5792), - [anon_sym___restrict__] = ACTIONS(5792), - [anon_sym__Atomic] = ACTIONS(5792), - [anon_sym__Noreturn] = ACTIONS(5792), - [anon_sym_noreturn] = ACTIONS(5792), - [anon_sym__Nonnull] = ACTIONS(5792), - [anon_sym_mutable] = ACTIONS(5792), - [anon_sym_constinit] = ACTIONS(5792), - [anon_sym_consteval] = ACTIONS(5792), - [anon_sym_alignas] = ACTIONS(5792), - [anon_sym__Alignas] = ACTIONS(5792), - [sym_primitive_type] = ACTIONS(5792), - [anon_sym_QMARK] = ACTIONS(5794), - [anon_sym_LT_EQ_GT] = ACTIONS(5794), - [anon_sym_or] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(5792), - [anon_sym_bitor] = ACTIONS(5792), - [anon_sym_xor] = ACTIONS(5792), - [anon_sym_bitand] = ACTIONS(5792), - [anon_sym_not_eq] = ACTIONS(5792), - [anon_sym_DASH_DASH] = ACTIONS(5794), - [anon_sym_PLUS_PLUS] = ACTIONS(5794), - [anon_sym_DOT] = ACTIONS(5792), - [anon_sym_DOT_STAR] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(5794), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5792), - [anon_sym_override] = ACTIONS(5792), - [anon_sym_requires] = ACTIONS(5792), + [STATE(1265)] = { + [sym_expression] = STATE(5661), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_initializer_list] = STATE(5840), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1925)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), + [STATE(1266)] = { + [sym_expression] = STATE(6765), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(11065), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5723), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1926)] = { - [sym_identifier] = ACTIONS(5796), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5798), - [anon_sym_COMMA] = ACTIONS(5798), - [anon_sym_RPAREN] = ACTIONS(5798), - [aux_sym_preproc_if_token2] = ACTIONS(5798), - [aux_sym_preproc_else_token1] = ACTIONS(5798), - [aux_sym_preproc_elif_token1] = ACTIONS(5796), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5798), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5798), - [anon_sym_LPAREN2] = ACTIONS(5798), - [anon_sym_DASH] = ACTIONS(5796), - [anon_sym_PLUS] = ACTIONS(5796), - [anon_sym_STAR] = ACTIONS(5796), - [anon_sym_SLASH] = ACTIONS(5796), - [anon_sym_PERCENT] = ACTIONS(5796), - [anon_sym_PIPE_PIPE] = ACTIONS(5798), - [anon_sym_AMP_AMP] = ACTIONS(5798), - [anon_sym_PIPE] = ACTIONS(5796), - [anon_sym_CARET] = ACTIONS(5796), - [anon_sym_AMP] = ACTIONS(5796), - [anon_sym_EQ_EQ] = ACTIONS(5798), - [anon_sym_BANG_EQ] = ACTIONS(5798), - [anon_sym_GT] = ACTIONS(5796), - [anon_sym_GT_EQ] = ACTIONS(5798), - [anon_sym_LT_EQ] = ACTIONS(5796), - [anon_sym_LT] = ACTIONS(5796), - [anon_sym_LT_LT] = ACTIONS(5796), - [anon_sym_GT_GT] = ACTIONS(5796), - [anon_sym_SEMI] = ACTIONS(5798), - [anon_sym___attribute__] = ACTIONS(5796), - [anon_sym___attribute] = ACTIONS(5796), - [anon_sym_COLON] = ACTIONS(5798), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5798), - [anon_sym_LBRACE] = ACTIONS(5798), - [anon_sym_RBRACE] = ACTIONS(5798), - [anon_sym_LBRACK] = ACTIONS(5796), - [anon_sym_RBRACK] = ACTIONS(5798), - [anon_sym_EQ] = ACTIONS(5796), - [anon_sym_QMARK] = ACTIONS(5798), - [anon_sym_STAR_EQ] = ACTIONS(5798), - [anon_sym_SLASH_EQ] = ACTIONS(5798), - [anon_sym_PERCENT_EQ] = ACTIONS(5798), - [anon_sym_PLUS_EQ] = ACTIONS(5798), - [anon_sym_DASH_EQ] = ACTIONS(5798), - [anon_sym_LT_LT_EQ] = ACTIONS(5798), - [anon_sym_GT_GT_EQ] = ACTIONS(5798), - [anon_sym_AMP_EQ] = ACTIONS(5798), - [anon_sym_CARET_EQ] = ACTIONS(5798), - [anon_sym_PIPE_EQ] = ACTIONS(5798), - [anon_sym_and_eq] = ACTIONS(5796), - [anon_sym_or_eq] = ACTIONS(5796), - [anon_sym_xor_eq] = ACTIONS(5796), - [anon_sym_LT_EQ_GT] = ACTIONS(5798), - [anon_sym_or] = ACTIONS(5796), - [anon_sym_and] = ACTIONS(5796), - [anon_sym_bitor] = ACTIONS(5796), - [anon_sym_xor] = ACTIONS(5796), - [anon_sym_bitand] = ACTIONS(5796), - [anon_sym_not_eq] = ACTIONS(5796), - [anon_sym_DASH_DASH] = ACTIONS(5798), - [anon_sym_PLUS_PLUS] = ACTIONS(5798), - [anon_sym_asm] = ACTIONS(5796), - [anon_sym___asm__] = ACTIONS(5796), - [anon_sym___asm] = ACTIONS(5796), - [anon_sym_DOT] = ACTIONS(5796), - [anon_sym_DOT_STAR] = ACTIONS(5798), - [anon_sym_DASH_GT] = ACTIONS(5798), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5796), + [STATE(1267)] = { + [sym_expression] = STATE(3678), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_initializer_list] = STATE(3758), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1927)] = { - [sym_type_qualifier] = STATE(1701), - [sym_alignas_qualifier] = STATE(1731), - [aux_sym__type_definition_type_repeat1] = STATE(1701), - [aux_sym_sized_type_specifier_repeat1] = STATE(2225), - [sym_identifier] = ACTIONS(5800), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5137), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5137), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5137), - [anon_sym_GT_GT] = ACTIONS(5137), - [anon_sym_SEMI] = ACTIONS(5137), - [anon_sym___extension__] = ACTIONS(5753), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(5802), - [anon_sym_unsigned] = ACTIONS(5802), - [anon_sym_long] = ACTIONS(5802), - [anon_sym_short] = ACTIONS(5802), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_const] = ACTIONS(5753), - [anon_sym_constexpr] = ACTIONS(5753), - [anon_sym_volatile] = ACTIONS(5753), - [anon_sym_restrict] = ACTIONS(5753), - [anon_sym___restrict__] = ACTIONS(5753), - [anon_sym__Atomic] = ACTIONS(5753), - [anon_sym__Noreturn] = ACTIONS(5753), - [anon_sym_noreturn] = ACTIONS(5753), - [anon_sym__Nonnull] = ACTIONS(5753), - [anon_sym_mutable] = ACTIONS(5753), - [anon_sym_constinit] = ACTIONS(5753), - [anon_sym_consteval] = ACTIONS(5753), - [anon_sym_alignas] = ACTIONS(5757), - [anon_sym__Alignas] = ACTIONS(5757), - [sym_primitive_type] = ACTIONS(5804), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), + [STATE(1268)] = { + [sym_expression] = STATE(3668), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5727), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1928)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_private] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_friend] = ACTIONS(1938), - [anon_sym_public] = ACTIONS(1938), - [anon_sym_protected] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), + [STATE(1269)] = { + [sym_expression] = STATE(5086), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1929)] = { - [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___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [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__Nonnull] = ACTIONS(5661), - [anon_sym_mutable] = ACTIONS(5661), - [anon_sym_constinit] = ACTIONS(5661), - [anon_sym_consteval] = ACTIONS(5661), - [anon_sym_alignas] = ACTIONS(5661), - [anon_sym__Alignas] = ACTIONS(5661), - [sym_primitive_type] = ACTIONS(5661), - [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), - [anon_sym_final] = ACTIONS(5661), - [anon_sym_override] = ACTIONS(5661), - [anon_sym_requires] = ACTIONS(5661), + [STATE(1270)] = { + [sym_expression] = STATE(5701), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5734), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1930)] = { - [sym_identifier] = ACTIONS(5806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5808), - [anon_sym_COMMA] = ACTIONS(5808), - [anon_sym_RPAREN] = ACTIONS(5808), - [aux_sym_preproc_if_token2] = ACTIONS(5808), - [aux_sym_preproc_else_token1] = ACTIONS(5808), - [aux_sym_preproc_elif_token1] = ACTIONS(5806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5808), - [anon_sym_LPAREN2] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5806), - [anon_sym_PLUS] = ACTIONS(5806), - [anon_sym_STAR] = ACTIONS(5806), - [anon_sym_SLASH] = ACTIONS(5806), - [anon_sym_PERCENT] = ACTIONS(5806), - [anon_sym_PIPE_PIPE] = ACTIONS(5808), - [anon_sym_AMP_AMP] = ACTIONS(5808), - [anon_sym_PIPE] = ACTIONS(5806), - [anon_sym_CARET] = ACTIONS(5806), - [anon_sym_AMP] = ACTIONS(5806), - [anon_sym_EQ_EQ] = ACTIONS(5808), - [anon_sym_BANG_EQ] = ACTIONS(5808), - [anon_sym_GT] = ACTIONS(5806), - [anon_sym_GT_EQ] = ACTIONS(5808), - [anon_sym_LT_EQ] = ACTIONS(5806), - [anon_sym_LT] = ACTIONS(5806), - [anon_sym_LT_LT] = ACTIONS(5806), - [anon_sym_GT_GT] = ACTIONS(5806), - [anon_sym_SEMI] = ACTIONS(5808), - [anon_sym___attribute__] = ACTIONS(5806), - [anon_sym___attribute] = ACTIONS(5806), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5808), - [anon_sym_LBRACE] = ACTIONS(5808), - [anon_sym_RBRACE] = ACTIONS(5808), - [anon_sym_LBRACK] = ACTIONS(5806), - [anon_sym_RBRACK] = ACTIONS(5808), - [anon_sym_EQ] = ACTIONS(5806), - [anon_sym_QMARK] = ACTIONS(5808), - [anon_sym_STAR_EQ] = ACTIONS(5808), - [anon_sym_SLASH_EQ] = ACTIONS(5808), - [anon_sym_PERCENT_EQ] = ACTIONS(5808), - [anon_sym_PLUS_EQ] = ACTIONS(5808), - [anon_sym_DASH_EQ] = ACTIONS(5808), - [anon_sym_LT_LT_EQ] = ACTIONS(5808), - [anon_sym_GT_GT_EQ] = ACTIONS(5808), - [anon_sym_AMP_EQ] = ACTIONS(5808), - [anon_sym_CARET_EQ] = ACTIONS(5808), - [anon_sym_PIPE_EQ] = ACTIONS(5808), - [anon_sym_and_eq] = ACTIONS(5806), - [anon_sym_or_eq] = ACTIONS(5806), - [anon_sym_xor_eq] = ACTIONS(5806), - [anon_sym_LT_EQ_GT] = ACTIONS(5808), - [anon_sym_or] = ACTIONS(5806), - [anon_sym_and] = ACTIONS(5806), - [anon_sym_bitor] = ACTIONS(5806), - [anon_sym_xor] = ACTIONS(5806), - [anon_sym_bitand] = ACTIONS(5806), - [anon_sym_not_eq] = ACTIONS(5806), - [anon_sym_DASH_DASH] = ACTIONS(5808), - [anon_sym_PLUS_PLUS] = ACTIONS(5808), - [anon_sym_asm] = ACTIONS(5806), - [anon_sym___asm__] = ACTIONS(5806), - [anon_sym___asm] = ACTIONS(5806), - [anon_sym_DOT] = ACTIONS(5806), - [anon_sym_DOT_STAR] = ACTIONS(5808), - [anon_sym_DASH_GT] = ACTIONS(5808), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5806), + [STATE(1271)] = { + [sym_expression] = STATE(5086), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5736), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1931)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), - [anon_sym_RPAREN] = ACTIONS(5028), - [anon_sym_LPAREN2] = ACTIONS(5028), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5028), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5035), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym___extension__] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(5033), - [anon_sym_const] = ACTIONS(5024), - [anon_sym_constexpr] = ACTIONS(5031), - [anon_sym_volatile] = ACTIONS(5031), - [anon_sym_restrict] = ACTIONS(5031), - [anon_sym___restrict__] = ACTIONS(5031), - [anon_sym__Atomic] = ACTIONS(5031), - [anon_sym__Noreturn] = ACTIONS(5031), - [anon_sym_noreturn] = ACTIONS(5031), - [anon_sym__Nonnull] = ACTIONS(5031), - [anon_sym_mutable] = ACTIONS(5031), - [anon_sym_constinit] = ACTIONS(5031), - [anon_sym_consteval] = ACTIONS(5031), - [anon_sym_alignas] = ACTIONS(5031), - [anon_sym__Alignas] = ACTIONS(5031), - [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(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5026), - [anon_sym_xor] = ACTIONS(5033), - [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(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5031), - [anon_sym_decltype] = ACTIONS(5031), + [STATE(1272)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5739), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1932)] = { - [sym_identifier] = ACTIONS(5810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5812), - [anon_sym_COMMA] = ACTIONS(5812), - [anon_sym_RPAREN] = ACTIONS(5812), - [anon_sym_LPAREN2] = ACTIONS(5812), - [anon_sym_DASH] = ACTIONS(5810), - [anon_sym_PLUS] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5812), - [anon_sym_SLASH] = ACTIONS(5810), - [anon_sym_PERCENT] = ACTIONS(5812), - [anon_sym_PIPE_PIPE] = ACTIONS(5812), - [anon_sym_AMP_AMP] = ACTIONS(5812), - [anon_sym_PIPE] = ACTIONS(5810), - [anon_sym_CARET] = ACTIONS(5812), - [anon_sym_AMP] = ACTIONS(5810), - [anon_sym_EQ_EQ] = ACTIONS(5812), - [anon_sym_BANG_EQ] = ACTIONS(5812), - [anon_sym_GT] = ACTIONS(5810), - [anon_sym_GT_EQ] = ACTIONS(5812), - [anon_sym_LT_EQ] = ACTIONS(5810), - [anon_sym_LT] = ACTIONS(5810), - [anon_sym_LT_LT] = ACTIONS(5812), - [anon_sym_GT_GT] = ACTIONS(5812), - [anon_sym_SEMI] = ACTIONS(5812), - [anon_sym___extension__] = ACTIONS(5810), - [anon_sym___attribute__] = ACTIONS(5810), - [anon_sym___attribute] = ACTIONS(5810), - [anon_sym_COLON] = ACTIONS(5812), - [anon_sym___based] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_signed] = ACTIONS(5810), - [anon_sym_unsigned] = ACTIONS(5810), - [anon_sym_long] = ACTIONS(5810), - [anon_sym_short] = ACTIONS(5810), - [anon_sym_LBRACK] = ACTIONS(5812), - [anon_sym_RBRACK] = ACTIONS(5812), - [anon_sym_const] = ACTIONS(5810), - [anon_sym_constexpr] = ACTIONS(5810), - [anon_sym_volatile] = ACTIONS(5810), - [anon_sym_restrict] = ACTIONS(5810), - [anon_sym___restrict__] = ACTIONS(5810), - [anon_sym__Atomic] = ACTIONS(5810), - [anon_sym__Noreturn] = ACTIONS(5810), - [anon_sym_noreturn] = ACTIONS(5810), - [anon_sym__Nonnull] = ACTIONS(5810), - [anon_sym_mutable] = ACTIONS(5810), - [anon_sym_constinit] = ACTIONS(5810), - [anon_sym_consteval] = ACTIONS(5810), - [anon_sym_alignas] = ACTIONS(5810), - [anon_sym__Alignas] = ACTIONS(5810), - [sym_primitive_type] = ACTIONS(5810), - [anon_sym_QMARK] = ACTIONS(5812), - [anon_sym_LT_EQ_GT] = ACTIONS(5812), - [anon_sym_or] = ACTIONS(5810), - [anon_sym_and] = ACTIONS(5810), - [anon_sym_bitor] = ACTIONS(5810), - [anon_sym_xor] = ACTIONS(5810), - [anon_sym_bitand] = ACTIONS(5810), - [anon_sym_not_eq] = ACTIONS(5810), - [anon_sym_DASH_DASH] = ACTIONS(5812), - [anon_sym_PLUS_PLUS] = ACTIONS(5812), - [anon_sym_DOT] = ACTIONS(5810), - [anon_sym_DOT_STAR] = ACTIONS(5812), - [anon_sym_DASH_GT] = ACTIONS(5812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5810), - [anon_sym_override] = ACTIONS(5810), - [anon_sym_requires] = ACTIONS(5810), + [STATE(1273)] = { + [sym_expression] = STATE(4924), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1933)] = { - [sym_identifier] = ACTIONS(5668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5670), - [anon_sym_COMMA] = ACTIONS(5670), - [anon_sym_RPAREN] = ACTIONS(5670), - [anon_sym_LPAREN2] = ACTIONS(5670), - [anon_sym_TILDE] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5670), - [anon_sym_PIPE_PIPE] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(5668), - [anon_sym_SEMI] = ACTIONS(5670), - [anon_sym___extension__] = ACTIONS(5668), - [anon_sym_virtual] = ACTIONS(5668), - [anon_sym_extern] = ACTIONS(5668), - [anon_sym___attribute__] = ACTIONS(5668), - [anon_sym___attribute] = ACTIONS(5668), - [anon_sym_COLON] = ACTIONS(5668), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5670), - [anon_sym___declspec] = ACTIONS(5668), - [anon_sym___based] = ACTIONS(5668), - [anon_sym___cdecl] = ACTIONS(5668), - [anon_sym___clrcall] = ACTIONS(5668), - [anon_sym___stdcall] = ACTIONS(5668), - [anon_sym___fastcall] = ACTIONS(5668), - [anon_sym___thiscall] = ACTIONS(5668), - [anon_sym___vectorcall] = ACTIONS(5668), - [anon_sym_LBRACE] = ACTIONS(5670), - [anon_sym_LBRACK] = ACTIONS(5668), - [anon_sym_static] = ACTIONS(5668), - [anon_sym_EQ] = ACTIONS(5670), - [anon_sym_register] = ACTIONS(5668), - [anon_sym_inline] = ACTIONS(5668), - [anon_sym___inline] = ACTIONS(5668), - [anon_sym___inline__] = ACTIONS(5668), - [anon_sym___forceinline] = ACTIONS(5668), - [anon_sym_thread_local] = ACTIONS(5668), - [anon_sym___thread] = ACTIONS(5668), - [anon_sym_const] = ACTIONS(5668), - [anon_sym_constexpr] = ACTIONS(5668), - [anon_sym_volatile] = ACTIONS(5668), - [anon_sym_restrict] = ACTIONS(5668), - [anon_sym___restrict__] = ACTIONS(5668), - [anon_sym__Atomic] = ACTIONS(5668), - [anon_sym__Noreturn] = ACTIONS(5668), - [anon_sym_noreturn] = ACTIONS(5668), - [anon_sym__Nonnull] = ACTIONS(5668), - [anon_sym_mutable] = ACTIONS(5668), - [anon_sym_constinit] = ACTIONS(5668), - [anon_sym_consteval] = ACTIONS(5668), - [anon_sym_alignas] = ACTIONS(5668), - [anon_sym__Alignas] = ACTIONS(5668), - [anon_sym_or] = ACTIONS(5668), - [anon_sym_and] = ACTIONS(5668), - [anon_sym_asm] = ACTIONS(5668), - [anon_sym___asm__] = ACTIONS(5668), - [anon_sym___asm] = ACTIONS(5668), - [anon_sym_DASH_GT] = ACTIONS(5670), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5668), - [anon_sym_final] = ACTIONS(5668), - [anon_sym_override] = ACTIONS(5668), - [anon_sym_template] = ACTIONS(5668), - [anon_sym_GT2] = ACTIONS(5670), - [anon_sym_operator] = ACTIONS(5668), - [anon_sym_try] = ACTIONS(5668), - [anon_sym_noexcept] = ACTIONS(5668), - [anon_sym_throw] = ACTIONS(5668), - [anon_sym_requires] = ACTIONS(5668), + [STATE(1274)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5744), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1934)] = { - [sym_identifier] = ACTIONS(5814), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5816), - [anon_sym_COMMA] = ACTIONS(5816), - [anon_sym_RPAREN] = ACTIONS(5816), - [anon_sym_LPAREN2] = ACTIONS(5816), - [anon_sym_DASH] = ACTIONS(5814), - [anon_sym_PLUS] = ACTIONS(5814), - [anon_sym_STAR] = ACTIONS(5816), - [anon_sym_SLASH] = ACTIONS(5814), - [anon_sym_PERCENT] = ACTIONS(5816), - [anon_sym_PIPE_PIPE] = ACTIONS(5816), - [anon_sym_AMP_AMP] = ACTIONS(5816), - [anon_sym_PIPE] = ACTIONS(5814), - [anon_sym_CARET] = ACTIONS(5816), - [anon_sym_AMP] = ACTIONS(5814), - [anon_sym_EQ_EQ] = ACTIONS(5816), - [anon_sym_BANG_EQ] = ACTIONS(5816), - [anon_sym_GT] = ACTIONS(5814), - [anon_sym_GT_EQ] = ACTIONS(5816), - [anon_sym_LT_EQ] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5814), - [anon_sym_LT_LT] = ACTIONS(5816), - [anon_sym_GT_GT] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(5816), - [anon_sym___extension__] = ACTIONS(5814), - [anon_sym___attribute__] = ACTIONS(5814), - [anon_sym___attribute] = ACTIONS(5814), - [anon_sym_COLON] = ACTIONS(5816), - [anon_sym___based] = ACTIONS(5814), - [anon_sym_LBRACE] = ACTIONS(5816), - [anon_sym_RBRACE] = ACTIONS(5816), - [anon_sym_signed] = ACTIONS(5814), - [anon_sym_unsigned] = ACTIONS(5814), - [anon_sym_long] = ACTIONS(5814), - [anon_sym_short] = ACTIONS(5814), - [anon_sym_LBRACK] = ACTIONS(5816), - [anon_sym_RBRACK] = ACTIONS(5816), - [anon_sym_const] = ACTIONS(5814), - [anon_sym_constexpr] = ACTIONS(5814), - [anon_sym_volatile] = ACTIONS(5814), - [anon_sym_restrict] = ACTIONS(5814), - [anon_sym___restrict__] = ACTIONS(5814), - [anon_sym__Atomic] = ACTIONS(5814), - [anon_sym__Noreturn] = ACTIONS(5814), - [anon_sym_noreturn] = ACTIONS(5814), - [anon_sym__Nonnull] = ACTIONS(5814), - [anon_sym_mutable] = ACTIONS(5814), - [anon_sym_constinit] = ACTIONS(5814), - [anon_sym_consteval] = ACTIONS(5814), - [anon_sym_alignas] = ACTIONS(5814), - [anon_sym__Alignas] = ACTIONS(5814), - [sym_primitive_type] = ACTIONS(5814), - [anon_sym_QMARK] = ACTIONS(5816), - [anon_sym_LT_EQ_GT] = ACTIONS(5816), - [anon_sym_or] = ACTIONS(5814), - [anon_sym_and] = ACTIONS(5814), - [anon_sym_bitor] = ACTIONS(5814), - [anon_sym_xor] = ACTIONS(5814), - [anon_sym_bitand] = ACTIONS(5814), - [anon_sym_not_eq] = ACTIONS(5814), - [anon_sym_DASH_DASH] = ACTIONS(5816), - [anon_sym_PLUS_PLUS] = ACTIONS(5816), - [anon_sym_DOT] = ACTIONS(5814), - [anon_sym_DOT_STAR] = ACTIONS(5816), - [anon_sym_DASH_GT] = ACTIONS(5816), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5814), - [anon_sym_override] = ACTIONS(5814), - [anon_sym_requires] = ACTIONS(5814), + [STATE(1275)] = { + [sym_expression] = STATE(5113), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5746), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1935)] = { - [sym_identifier] = ACTIONS(5818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), - [anon_sym_COMMA] = ACTIONS(5820), - [anon_sym_RPAREN] = ACTIONS(5820), - [anon_sym_LPAREN2] = ACTIONS(5820), - [anon_sym_DASH] = ACTIONS(5818), - [anon_sym_PLUS] = ACTIONS(5818), - [anon_sym_STAR] = ACTIONS(5820), - [anon_sym_SLASH] = ACTIONS(5818), - [anon_sym_PERCENT] = ACTIONS(5820), - [anon_sym_PIPE_PIPE] = ACTIONS(5820), - [anon_sym_AMP_AMP] = ACTIONS(5820), - [anon_sym_PIPE] = ACTIONS(5818), - [anon_sym_CARET] = ACTIONS(5820), - [anon_sym_AMP] = ACTIONS(5818), - [anon_sym_EQ_EQ] = ACTIONS(5820), - [anon_sym_BANG_EQ] = ACTIONS(5820), - [anon_sym_GT] = ACTIONS(5818), - [anon_sym_GT_EQ] = ACTIONS(5820), - [anon_sym_LT_EQ] = ACTIONS(5818), - [anon_sym_LT] = ACTIONS(5818), - [anon_sym_LT_LT] = ACTIONS(5820), - [anon_sym_GT_GT] = ACTIONS(5820), - [anon_sym_SEMI] = ACTIONS(5820), - [anon_sym___extension__] = ACTIONS(5818), - [anon_sym___attribute__] = ACTIONS(5818), - [anon_sym___attribute] = ACTIONS(5818), - [anon_sym_COLON] = ACTIONS(5820), - [anon_sym___based] = ACTIONS(5818), - [anon_sym_LBRACE] = ACTIONS(5820), - [anon_sym_RBRACE] = ACTIONS(5820), - [anon_sym_signed] = ACTIONS(5818), - [anon_sym_unsigned] = ACTIONS(5818), - [anon_sym_long] = ACTIONS(5818), - [anon_sym_short] = ACTIONS(5818), - [anon_sym_LBRACK] = ACTIONS(5820), - [anon_sym_RBRACK] = ACTIONS(5820), - [anon_sym_const] = ACTIONS(5818), - [anon_sym_constexpr] = ACTIONS(5818), - [anon_sym_volatile] = ACTIONS(5818), - [anon_sym_restrict] = ACTIONS(5818), - [anon_sym___restrict__] = ACTIONS(5818), - [anon_sym__Atomic] = ACTIONS(5818), - [anon_sym__Noreturn] = ACTIONS(5818), - [anon_sym_noreturn] = ACTIONS(5818), - [anon_sym__Nonnull] = ACTIONS(5818), - [anon_sym_mutable] = ACTIONS(5818), - [anon_sym_constinit] = ACTIONS(5818), - [anon_sym_consteval] = ACTIONS(5818), - [anon_sym_alignas] = ACTIONS(5818), - [anon_sym__Alignas] = ACTIONS(5818), - [sym_primitive_type] = ACTIONS(5818), - [anon_sym_QMARK] = ACTIONS(5820), - [anon_sym_LT_EQ_GT] = ACTIONS(5820), - [anon_sym_or] = ACTIONS(5818), - [anon_sym_and] = ACTIONS(5818), - [anon_sym_bitor] = ACTIONS(5818), - [anon_sym_xor] = ACTIONS(5818), - [anon_sym_bitand] = ACTIONS(5818), - [anon_sym_not_eq] = ACTIONS(5818), - [anon_sym_DASH_DASH] = ACTIONS(5820), - [anon_sym_PLUS_PLUS] = ACTIONS(5820), - [anon_sym_DOT] = ACTIONS(5818), - [anon_sym_DOT_STAR] = ACTIONS(5820), - [anon_sym_DASH_GT] = ACTIONS(5820), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5818), - [anon_sym_override] = ACTIONS(5818), - [anon_sym_requires] = ACTIONS(5818), + [STATE(1276)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5749), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1936)] = { - [sym_identifier] = ACTIONS(5822), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5824), - [anon_sym_COMMA] = ACTIONS(5824), - [anon_sym_RPAREN] = ACTIONS(5824), - [anon_sym_LPAREN2] = ACTIONS(5824), - [anon_sym_DASH] = ACTIONS(5822), - [anon_sym_PLUS] = ACTIONS(5822), - [anon_sym_STAR] = ACTIONS(5824), - [anon_sym_SLASH] = ACTIONS(5822), - [anon_sym_PERCENT] = ACTIONS(5824), - [anon_sym_PIPE_PIPE] = ACTIONS(5824), - [anon_sym_AMP_AMP] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5822), - [anon_sym_CARET] = ACTIONS(5824), - [anon_sym_AMP] = ACTIONS(5822), - [anon_sym_EQ_EQ] = ACTIONS(5824), - [anon_sym_BANG_EQ] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5822), - [anon_sym_GT_EQ] = ACTIONS(5824), - [anon_sym_LT_EQ] = ACTIONS(5822), - [anon_sym_LT] = ACTIONS(5822), - [anon_sym_LT_LT] = ACTIONS(5824), - [anon_sym_GT_GT] = ACTIONS(5824), - [anon_sym_SEMI] = ACTIONS(5824), - [anon_sym___extension__] = ACTIONS(5822), - [anon_sym___attribute__] = ACTIONS(5822), - [anon_sym___attribute] = ACTIONS(5822), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym___based] = ACTIONS(5822), - [anon_sym_LBRACE] = ACTIONS(5824), - [anon_sym_RBRACE] = ACTIONS(5824), - [anon_sym_signed] = ACTIONS(5822), - [anon_sym_unsigned] = ACTIONS(5822), - [anon_sym_long] = ACTIONS(5822), - [anon_sym_short] = ACTIONS(5822), - [anon_sym_LBRACK] = ACTIONS(5824), - [anon_sym_RBRACK] = ACTIONS(5824), - [anon_sym_const] = ACTIONS(5822), - [anon_sym_constexpr] = ACTIONS(5822), - [anon_sym_volatile] = ACTIONS(5822), - [anon_sym_restrict] = ACTIONS(5822), - [anon_sym___restrict__] = ACTIONS(5822), - [anon_sym__Atomic] = ACTIONS(5822), - [anon_sym__Noreturn] = ACTIONS(5822), - [anon_sym_noreturn] = ACTIONS(5822), - [anon_sym__Nonnull] = ACTIONS(5822), - [anon_sym_mutable] = ACTIONS(5822), - [anon_sym_constinit] = ACTIONS(5822), - [anon_sym_consteval] = ACTIONS(5822), - [anon_sym_alignas] = ACTIONS(5822), - [anon_sym__Alignas] = ACTIONS(5822), - [sym_primitive_type] = ACTIONS(5822), - [anon_sym_QMARK] = ACTIONS(5824), - [anon_sym_LT_EQ_GT] = ACTIONS(5824), - [anon_sym_or] = ACTIONS(5822), - [anon_sym_and] = ACTIONS(5822), - [anon_sym_bitor] = ACTIONS(5822), - [anon_sym_xor] = ACTIONS(5822), - [anon_sym_bitand] = ACTIONS(5822), - [anon_sym_not_eq] = ACTIONS(5822), - [anon_sym_DASH_DASH] = ACTIONS(5824), - [anon_sym_PLUS_PLUS] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(5822), - [anon_sym_DOT_STAR] = ACTIONS(5824), - [anon_sym_DASH_GT] = ACTIONS(5824), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5822), - [anon_sym_override] = ACTIONS(5822), - [anon_sym_requires] = ACTIONS(5822), + [STATE(1277)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5752), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1937)] = { - [sym_identifier] = ACTIONS(5826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5828), - [anon_sym_COMMA] = ACTIONS(5828), - [anon_sym_RPAREN] = ACTIONS(5828), - [anon_sym_LPAREN2] = ACTIONS(5828), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5828), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_PERCENT] = ACTIONS(5828), - [anon_sym_PIPE_PIPE] = ACTIONS(5828), - [anon_sym_AMP_AMP] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5828), - [anon_sym_AMP] = ACTIONS(5826), - [anon_sym_EQ_EQ] = ACTIONS(5828), - [anon_sym_BANG_EQ] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5826), - [anon_sym_GT_EQ] = ACTIONS(5828), - [anon_sym_LT_EQ] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5826), - [anon_sym_LT_LT] = ACTIONS(5828), - [anon_sym_GT_GT] = ACTIONS(5828), - [anon_sym_SEMI] = ACTIONS(5828), - [anon_sym___extension__] = ACTIONS(5826), - [anon_sym___attribute__] = ACTIONS(5826), - [anon_sym___attribute] = ACTIONS(5826), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym___based] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5828), - [anon_sym_RBRACE] = ACTIONS(5828), - [anon_sym_signed] = ACTIONS(5826), - [anon_sym_unsigned] = ACTIONS(5826), - [anon_sym_long] = ACTIONS(5826), - [anon_sym_short] = ACTIONS(5826), - [anon_sym_LBRACK] = ACTIONS(5828), - [anon_sym_RBRACK] = ACTIONS(5828), - [anon_sym_const] = ACTIONS(5826), - [anon_sym_constexpr] = ACTIONS(5826), - [anon_sym_volatile] = ACTIONS(5826), - [anon_sym_restrict] = ACTIONS(5826), - [anon_sym___restrict__] = ACTIONS(5826), - [anon_sym__Atomic] = ACTIONS(5826), - [anon_sym__Noreturn] = ACTIONS(5826), - [anon_sym_noreturn] = ACTIONS(5826), - [anon_sym__Nonnull] = ACTIONS(5826), - [anon_sym_mutable] = ACTIONS(5826), - [anon_sym_constinit] = ACTIONS(5826), - [anon_sym_consteval] = ACTIONS(5826), - [anon_sym_alignas] = ACTIONS(5826), - [anon_sym__Alignas] = ACTIONS(5826), - [sym_primitive_type] = ACTIONS(5826), - [anon_sym_QMARK] = ACTIONS(5828), - [anon_sym_LT_EQ_GT] = ACTIONS(5828), - [anon_sym_or] = ACTIONS(5826), - [anon_sym_and] = ACTIONS(5826), - [anon_sym_bitor] = ACTIONS(5826), - [anon_sym_xor] = ACTIONS(5826), - [anon_sym_bitand] = ACTIONS(5826), - [anon_sym_not_eq] = ACTIONS(5826), - [anon_sym_DASH_DASH] = ACTIONS(5828), - [anon_sym_PLUS_PLUS] = ACTIONS(5828), - [anon_sym_DOT] = ACTIONS(5826), - [anon_sym_DOT_STAR] = ACTIONS(5828), - [anon_sym_DASH_GT] = ACTIONS(5828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5826), - [anon_sym_override] = ACTIONS(5826), - [anon_sym_requires] = ACTIONS(5826), + [STATE(1278)] = { + [sym_expression] = STATE(6653), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5754), + [anon_sym_LPAREN2] = ACTIONS(5756), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(1938)] = { - [sym_identifier] = ACTIONS(5830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5832), - [anon_sym_COMMA] = ACTIONS(5832), - [anon_sym_RPAREN] = ACTIONS(5832), - [anon_sym_LPAREN2] = ACTIONS(5832), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5832), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_PERCENT] = ACTIONS(5832), - [anon_sym_PIPE_PIPE] = ACTIONS(5832), - [anon_sym_AMP_AMP] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5832), - [anon_sym_AMP] = ACTIONS(5830), - [anon_sym_EQ_EQ] = ACTIONS(5832), - [anon_sym_BANG_EQ] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5830), - [anon_sym_GT_EQ] = ACTIONS(5832), - [anon_sym_LT_EQ] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5830), - [anon_sym_LT_LT] = ACTIONS(5832), - [anon_sym_GT_GT] = ACTIONS(5832), - [anon_sym_SEMI] = ACTIONS(5832), - [anon_sym___extension__] = ACTIONS(5830), - [anon_sym___attribute__] = ACTIONS(5830), - [anon_sym___attribute] = ACTIONS(5830), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym___based] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(5832), - [anon_sym_RBRACE] = ACTIONS(5832), - [anon_sym_signed] = ACTIONS(5830), - [anon_sym_unsigned] = ACTIONS(5830), - [anon_sym_long] = ACTIONS(5830), - [anon_sym_short] = ACTIONS(5830), - [anon_sym_LBRACK] = ACTIONS(5832), - [anon_sym_RBRACK] = ACTIONS(5832), - [anon_sym_const] = ACTIONS(5830), - [anon_sym_constexpr] = ACTIONS(5830), - [anon_sym_volatile] = ACTIONS(5830), - [anon_sym_restrict] = ACTIONS(5830), - [anon_sym___restrict__] = ACTIONS(5830), - [anon_sym__Atomic] = ACTIONS(5830), - [anon_sym__Noreturn] = ACTIONS(5830), - [anon_sym_noreturn] = ACTIONS(5830), - [anon_sym__Nonnull] = ACTIONS(5830), - [anon_sym_mutable] = ACTIONS(5830), - [anon_sym_constinit] = ACTIONS(5830), - [anon_sym_consteval] = ACTIONS(5830), - [anon_sym_alignas] = ACTIONS(5830), - [anon_sym__Alignas] = ACTIONS(5830), - [sym_primitive_type] = ACTIONS(5830), - [anon_sym_QMARK] = ACTIONS(5832), - [anon_sym_LT_EQ_GT] = ACTIONS(5832), - [anon_sym_or] = ACTIONS(5830), - [anon_sym_and] = ACTIONS(5830), - [anon_sym_bitor] = ACTIONS(5830), - [anon_sym_xor] = ACTIONS(5830), - [anon_sym_bitand] = ACTIONS(5830), - [anon_sym_not_eq] = ACTIONS(5830), - [anon_sym_DASH_DASH] = ACTIONS(5832), - [anon_sym_PLUS_PLUS] = ACTIONS(5832), - [anon_sym_DOT] = ACTIONS(5830), - [anon_sym_DOT_STAR] = ACTIONS(5832), - [anon_sym_DASH_GT] = ACTIONS(5832), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5830), - [anon_sym_override] = ACTIONS(5830), - [anon_sym_requires] = ACTIONS(5830), + [STATE(1279)] = { + [sym_expression] = STATE(3668), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5758), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1939)] = { - [sym_identifier] = ACTIONS(5834), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5836), - [anon_sym_COMMA] = ACTIONS(5836), - [anon_sym_RPAREN] = ACTIONS(5836), - [anon_sym_LPAREN2] = ACTIONS(5836), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5836), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_PERCENT] = ACTIONS(5836), - [anon_sym_PIPE_PIPE] = ACTIONS(5836), - [anon_sym_AMP_AMP] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5836), - [anon_sym_AMP] = ACTIONS(5834), - [anon_sym_EQ_EQ] = ACTIONS(5836), - [anon_sym_BANG_EQ] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5834), - [anon_sym_GT_EQ] = ACTIONS(5836), - [anon_sym_LT_EQ] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5834), - [anon_sym_LT_LT] = ACTIONS(5836), - [anon_sym_GT_GT] = ACTIONS(5836), - [anon_sym_SEMI] = ACTIONS(5836), - [anon_sym___extension__] = ACTIONS(5834), - [anon_sym___attribute__] = ACTIONS(5834), - [anon_sym___attribute] = ACTIONS(5834), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym___based] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(5836), - [anon_sym_RBRACE] = ACTIONS(5836), - [anon_sym_signed] = ACTIONS(5834), - [anon_sym_unsigned] = ACTIONS(5834), - [anon_sym_long] = ACTIONS(5834), - [anon_sym_short] = ACTIONS(5834), - [anon_sym_LBRACK] = ACTIONS(5836), - [anon_sym_RBRACK] = ACTIONS(5836), - [anon_sym_const] = ACTIONS(5834), - [anon_sym_constexpr] = ACTIONS(5834), - [anon_sym_volatile] = ACTIONS(5834), - [anon_sym_restrict] = ACTIONS(5834), - [anon_sym___restrict__] = ACTIONS(5834), - [anon_sym__Atomic] = ACTIONS(5834), - [anon_sym__Noreturn] = ACTIONS(5834), - [anon_sym_noreturn] = ACTIONS(5834), - [anon_sym__Nonnull] = ACTIONS(5834), - [anon_sym_mutable] = ACTIONS(5834), - [anon_sym_constinit] = ACTIONS(5834), - [anon_sym_consteval] = ACTIONS(5834), - [anon_sym_alignas] = ACTIONS(5834), - [anon_sym__Alignas] = ACTIONS(5834), - [sym_primitive_type] = ACTIONS(5834), - [anon_sym_QMARK] = ACTIONS(5836), - [anon_sym_LT_EQ_GT] = ACTIONS(5836), - [anon_sym_or] = ACTIONS(5834), - [anon_sym_and] = ACTIONS(5834), - [anon_sym_bitor] = ACTIONS(5834), - [anon_sym_xor] = ACTIONS(5834), - [anon_sym_bitand] = ACTIONS(5834), - [anon_sym_not_eq] = ACTIONS(5834), - [anon_sym_DASH_DASH] = ACTIONS(5836), - [anon_sym_PLUS_PLUS] = ACTIONS(5836), - [anon_sym_DOT] = ACTIONS(5834), - [anon_sym_DOT_STAR] = ACTIONS(5836), - [anon_sym_DASH_GT] = ACTIONS(5836), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5834), - [anon_sym_override] = ACTIONS(5834), - [anon_sym_requires] = ACTIONS(5834), + [STATE(1280)] = { + [sym_expression] = STATE(5163), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), + [anon_sym_LPAREN2] = ACTIONS(5762), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1940)] = { - [sym_identifier] = ACTIONS(5838), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5840), - [anon_sym_COMMA] = ACTIONS(5840), - [anon_sym_RPAREN] = ACTIONS(5840), - [anon_sym_LPAREN2] = ACTIONS(5840), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5840), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_PERCENT] = ACTIONS(5840), - [anon_sym_PIPE_PIPE] = ACTIONS(5840), - [anon_sym_AMP_AMP] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5840), - [anon_sym_AMP] = ACTIONS(5838), - [anon_sym_EQ_EQ] = ACTIONS(5840), - [anon_sym_BANG_EQ] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5838), - [anon_sym_GT_EQ] = ACTIONS(5840), - [anon_sym_LT_EQ] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5838), - [anon_sym_LT_LT] = ACTIONS(5840), - [anon_sym_GT_GT] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(5840), - [anon_sym___extension__] = ACTIONS(5838), - [anon_sym___attribute__] = ACTIONS(5838), - [anon_sym___attribute] = ACTIONS(5838), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym___based] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(5840), - [anon_sym_RBRACE] = ACTIONS(5840), - [anon_sym_signed] = ACTIONS(5838), - [anon_sym_unsigned] = ACTIONS(5838), - [anon_sym_long] = ACTIONS(5838), - [anon_sym_short] = ACTIONS(5838), - [anon_sym_LBRACK] = ACTIONS(5840), - [anon_sym_RBRACK] = ACTIONS(5840), - [anon_sym_const] = ACTIONS(5838), - [anon_sym_constexpr] = ACTIONS(5838), - [anon_sym_volatile] = ACTIONS(5838), - [anon_sym_restrict] = ACTIONS(5838), - [anon_sym___restrict__] = ACTIONS(5838), - [anon_sym__Atomic] = ACTIONS(5838), - [anon_sym__Noreturn] = ACTIONS(5838), - [anon_sym_noreturn] = ACTIONS(5838), - [anon_sym__Nonnull] = ACTIONS(5838), - [anon_sym_mutable] = ACTIONS(5838), - [anon_sym_constinit] = ACTIONS(5838), - [anon_sym_consteval] = ACTIONS(5838), - [anon_sym_alignas] = ACTIONS(5838), - [anon_sym__Alignas] = ACTIONS(5838), - [sym_primitive_type] = ACTIONS(5838), - [anon_sym_QMARK] = ACTIONS(5840), - [anon_sym_LT_EQ_GT] = ACTIONS(5840), - [anon_sym_or] = ACTIONS(5838), - [anon_sym_and] = ACTIONS(5838), - [anon_sym_bitor] = ACTIONS(5838), - [anon_sym_xor] = ACTIONS(5838), - [anon_sym_bitand] = ACTIONS(5838), - [anon_sym_not_eq] = ACTIONS(5838), - [anon_sym_DASH_DASH] = ACTIONS(5840), - [anon_sym_PLUS_PLUS] = ACTIONS(5840), - [anon_sym_DOT] = ACTIONS(5838), - [anon_sym_DOT_STAR] = ACTIONS(5840), - [anon_sym_DASH_GT] = ACTIONS(5840), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5838), - [anon_sym_override] = ACTIONS(5838), - [anon_sym_requires] = ACTIONS(5838), + [STATE(1281)] = { + [sym_expression] = STATE(6883), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1941)] = { - [sym_identifier] = ACTIONS(5842), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5844), - [anon_sym_COMMA] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(5844), - [anon_sym_LPAREN2] = ACTIONS(5844), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5844), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_PERCENT] = ACTIONS(5844), - [anon_sym_PIPE_PIPE] = ACTIONS(5844), - [anon_sym_AMP_AMP] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5844), - [anon_sym_AMP] = ACTIONS(5842), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_BANG_EQ] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5842), - [anon_sym_GT_EQ] = ACTIONS(5844), - [anon_sym_LT_EQ] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5842), - [anon_sym_LT_LT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(5844), - [anon_sym_SEMI] = ACTIONS(5844), - [anon_sym___extension__] = ACTIONS(5842), - [anon_sym___attribute__] = ACTIONS(5842), - [anon_sym___attribute] = ACTIONS(5842), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym___based] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(5844), - [anon_sym_RBRACE] = ACTIONS(5844), - [anon_sym_signed] = ACTIONS(5842), - [anon_sym_unsigned] = ACTIONS(5842), - [anon_sym_long] = ACTIONS(5842), - [anon_sym_short] = ACTIONS(5842), - [anon_sym_LBRACK] = ACTIONS(5844), - [anon_sym_RBRACK] = ACTIONS(5844), - [anon_sym_const] = ACTIONS(5842), - [anon_sym_constexpr] = ACTIONS(5842), - [anon_sym_volatile] = ACTIONS(5842), - [anon_sym_restrict] = ACTIONS(5842), - [anon_sym___restrict__] = ACTIONS(5842), - [anon_sym__Atomic] = ACTIONS(5842), - [anon_sym__Noreturn] = ACTIONS(5842), - [anon_sym_noreturn] = ACTIONS(5842), - [anon_sym__Nonnull] = ACTIONS(5842), - [anon_sym_mutable] = ACTIONS(5842), - [anon_sym_constinit] = ACTIONS(5842), - [anon_sym_consteval] = ACTIONS(5842), - [anon_sym_alignas] = ACTIONS(5842), - [anon_sym__Alignas] = ACTIONS(5842), - [sym_primitive_type] = ACTIONS(5842), - [anon_sym_QMARK] = ACTIONS(5844), - [anon_sym_LT_EQ_GT] = ACTIONS(5844), - [anon_sym_or] = ACTIONS(5842), - [anon_sym_and] = ACTIONS(5842), - [anon_sym_bitor] = ACTIONS(5842), - [anon_sym_xor] = ACTIONS(5842), - [anon_sym_bitand] = ACTIONS(5842), - [anon_sym_not_eq] = ACTIONS(5842), - [anon_sym_DASH_DASH] = ACTIONS(5844), - [anon_sym_PLUS_PLUS] = ACTIONS(5844), - [anon_sym_DOT] = ACTIONS(5842), - [anon_sym_DOT_STAR] = ACTIONS(5844), - [anon_sym_DASH_GT] = ACTIONS(5844), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5842), - [anon_sym_override] = ACTIONS(5842), - [anon_sym_requires] = ACTIONS(5842), + [STATE(1282)] = { + [sym_expression] = STATE(5138), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1942)] = { - [sym_identifier] = ACTIONS(5846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5848), - [anon_sym_COMMA] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(5848), - [anon_sym_LPAREN2] = ACTIONS(5848), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5848), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5848), - [anon_sym_PIPE_PIPE] = ACTIONS(5848), - [anon_sym_AMP_AMP] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5848), - [anon_sym_AMP] = ACTIONS(5846), - [anon_sym_EQ_EQ] = ACTIONS(5848), - [anon_sym_BANG_EQ] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_EQ] = ACTIONS(5848), - [anon_sym_LT_EQ] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_LT_LT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(5848), - [anon_sym_SEMI] = ACTIONS(5848), - [anon_sym___extension__] = ACTIONS(5846), - [anon_sym___attribute__] = ACTIONS(5846), - [anon_sym___attribute] = ACTIONS(5846), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym___based] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5848), - [anon_sym_RBRACE] = ACTIONS(5848), - [anon_sym_signed] = ACTIONS(5846), - [anon_sym_unsigned] = ACTIONS(5846), - [anon_sym_long] = ACTIONS(5846), - [anon_sym_short] = ACTIONS(5846), - [anon_sym_LBRACK] = ACTIONS(5848), - [anon_sym_RBRACK] = ACTIONS(5848), - [anon_sym_const] = ACTIONS(5846), - [anon_sym_constexpr] = ACTIONS(5846), - [anon_sym_volatile] = ACTIONS(5846), - [anon_sym_restrict] = ACTIONS(5846), - [anon_sym___restrict__] = ACTIONS(5846), - [anon_sym__Atomic] = ACTIONS(5846), - [anon_sym__Noreturn] = ACTIONS(5846), - [anon_sym_noreturn] = ACTIONS(5846), - [anon_sym__Nonnull] = ACTIONS(5846), - [anon_sym_mutable] = ACTIONS(5846), - [anon_sym_constinit] = ACTIONS(5846), - [anon_sym_consteval] = ACTIONS(5846), - [anon_sym_alignas] = ACTIONS(5846), - [anon_sym__Alignas] = ACTIONS(5846), - [sym_primitive_type] = ACTIONS(5846), - [anon_sym_QMARK] = ACTIONS(5848), - [anon_sym_LT_EQ_GT] = ACTIONS(5848), - [anon_sym_or] = ACTIONS(5846), - [anon_sym_and] = ACTIONS(5846), - [anon_sym_bitor] = ACTIONS(5846), - [anon_sym_xor] = ACTIONS(5846), - [anon_sym_bitand] = ACTIONS(5846), - [anon_sym_not_eq] = ACTIONS(5846), - [anon_sym_DASH_DASH] = ACTIONS(5848), - [anon_sym_PLUS_PLUS] = ACTIONS(5848), - [anon_sym_DOT] = ACTIONS(5846), - [anon_sym_DOT_STAR] = ACTIONS(5848), - [anon_sym_DASH_GT] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5846), - [anon_sym_override] = ACTIONS(5846), - [anon_sym_requires] = ACTIONS(5846), + [STATE(1283)] = { + [sym_expression] = STATE(3668), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5769), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1943)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), - [anon_sym_catch] = ACTIONS(1942), + [STATE(1284)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5771), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1944)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), + [STATE(1285)] = { + [sym_expression] = STATE(3668), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5773), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(1945)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(5476), - [anon_sym___attribute] = ACTIONS(5476), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), + [STATE(1286)] = { + [sym_expression] = STATE(4960), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1946)] = { - [sym_identifier] = ACTIONS(5850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5852), - [anon_sym_COMMA] = ACTIONS(5852), - [anon_sym_RPAREN] = ACTIONS(5852), - [anon_sym_LPAREN2] = ACTIONS(5852), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5852), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_PIPE_PIPE] = ACTIONS(5852), - [anon_sym_AMP_AMP] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5852), - [anon_sym_AMP] = ACTIONS(5850), - [anon_sym_EQ_EQ] = ACTIONS(5852), - [anon_sym_BANG_EQ] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_GT_EQ] = ACTIONS(5852), - [anon_sym_LT_EQ] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5850), - [anon_sym_LT_LT] = ACTIONS(5852), - [anon_sym_GT_GT] = ACTIONS(5852), - [anon_sym_SEMI] = ACTIONS(5852), - [anon_sym___extension__] = ACTIONS(5850), - [anon_sym___attribute__] = ACTIONS(5850), - [anon_sym___attribute] = ACTIONS(5850), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym___based] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(5852), - [anon_sym_RBRACE] = ACTIONS(5852), - [anon_sym_signed] = ACTIONS(5850), - [anon_sym_unsigned] = ACTIONS(5850), - [anon_sym_long] = ACTIONS(5850), - [anon_sym_short] = ACTIONS(5850), - [anon_sym_LBRACK] = ACTIONS(5852), - [anon_sym_RBRACK] = ACTIONS(5852), - [anon_sym_const] = ACTIONS(5850), - [anon_sym_constexpr] = ACTIONS(5850), - [anon_sym_volatile] = ACTIONS(5850), - [anon_sym_restrict] = ACTIONS(5850), - [anon_sym___restrict__] = ACTIONS(5850), - [anon_sym__Atomic] = ACTIONS(5850), - [anon_sym__Noreturn] = ACTIONS(5850), - [anon_sym_noreturn] = ACTIONS(5850), - [anon_sym__Nonnull] = ACTIONS(5850), - [anon_sym_mutable] = ACTIONS(5850), - [anon_sym_constinit] = ACTIONS(5850), - [anon_sym_consteval] = ACTIONS(5850), - [anon_sym_alignas] = ACTIONS(5850), - [anon_sym__Alignas] = ACTIONS(5850), - [sym_primitive_type] = ACTIONS(5850), - [anon_sym_QMARK] = ACTIONS(5852), - [anon_sym_LT_EQ_GT] = ACTIONS(5852), - [anon_sym_or] = ACTIONS(5850), - [anon_sym_and] = ACTIONS(5850), - [anon_sym_bitor] = ACTIONS(5850), - [anon_sym_xor] = ACTIONS(5850), - [anon_sym_bitand] = ACTIONS(5850), - [anon_sym_not_eq] = ACTIONS(5850), - [anon_sym_DASH_DASH] = ACTIONS(5852), - [anon_sym_PLUS_PLUS] = ACTIONS(5852), - [anon_sym_DOT] = ACTIONS(5850), - [anon_sym_DOT_STAR] = ACTIONS(5852), - [anon_sym_DASH_GT] = ACTIONS(5852), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5850), - [anon_sym_override] = ACTIONS(5850), - [anon_sym_requires] = ACTIONS(5850), + [STATE(1287)] = { + [sym_expression] = STATE(6833), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1947)] = { - [sym_identifier] = ACTIONS(5854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5856), - [anon_sym_COMMA] = ACTIONS(5856), - [anon_sym_RPAREN] = ACTIONS(5856), - [anon_sym_LPAREN2] = ACTIONS(5856), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5856), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_PERCENT] = ACTIONS(5856), - [anon_sym_PIPE_PIPE] = ACTIONS(5856), - [anon_sym_AMP_AMP] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5856), - [anon_sym_AMP] = ACTIONS(5854), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5854), - [anon_sym_GT_EQ] = ACTIONS(5856), - [anon_sym_LT_EQ] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5854), - [anon_sym_LT_LT] = ACTIONS(5856), - [anon_sym_GT_GT] = ACTIONS(5856), - [anon_sym_SEMI] = ACTIONS(5856), - [anon_sym___extension__] = ACTIONS(5854), - [anon_sym___attribute__] = ACTIONS(5854), - [anon_sym___attribute] = ACTIONS(5854), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym___based] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(5856), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_signed] = ACTIONS(5854), - [anon_sym_unsigned] = ACTIONS(5854), - [anon_sym_long] = ACTIONS(5854), - [anon_sym_short] = ACTIONS(5854), - [anon_sym_LBRACK] = ACTIONS(5856), - [anon_sym_RBRACK] = ACTIONS(5856), - [anon_sym_const] = ACTIONS(5854), - [anon_sym_constexpr] = ACTIONS(5854), - [anon_sym_volatile] = ACTIONS(5854), - [anon_sym_restrict] = ACTIONS(5854), - [anon_sym___restrict__] = ACTIONS(5854), - [anon_sym__Atomic] = ACTIONS(5854), - [anon_sym__Noreturn] = ACTIONS(5854), - [anon_sym_noreturn] = ACTIONS(5854), - [anon_sym__Nonnull] = ACTIONS(5854), - [anon_sym_mutable] = ACTIONS(5854), - [anon_sym_constinit] = ACTIONS(5854), - [anon_sym_consteval] = ACTIONS(5854), - [anon_sym_alignas] = ACTIONS(5854), - [anon_sym__Alignas] = ACTIONS(5854), - [sym_primitive_type] = ACTIONS(5854), - [anon_sym_QMARK] = ACTIONS(5856), - [anon_sym_LT_EQ_GT] = ACTIONS(5856), - [anon_sym_or] = ACTIONS(5854), - [anon_sym_and] = ACTIONS(5854), - [anon_sym_bitor] = ACTIONS(5854), - [anon_sym_xor] = ACTIONS(5854), - [anon_sym_bitand] = ACTIONS(5854), - [anon_sym_not_eq] = ACTIONS(5854), - [anon_sym_DASH_DASH] = ACTIONS(5856), - [anon_sym_PLUS_PLUS] = ACTIONS(5856), - [anon_sym_DOT] = ACTIONS(5854), - [anon_sym_DOT_STAR] = ACTIONS(5856), - [anon_sym_DASH_GT] = ACTIONS(5856), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5854), - [anon_sym_override] = ACTIONS(5854), - [anon_sym_requires] = ACTIONS(5854), + [STATE(1288)] = { + [sym_expression] = STATE(6969), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5780), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1948)] = { - [sym_identifier] = ACTIONS(5858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5860), - [anon_sym_COMMA] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(5860), - [anon_sym_LPAREN2] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5860), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5860), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5860), - [anon_sym_AMP] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_BANG_EQ] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_GT_EQ] = ACTIONS(5860), - [anon_sym_LT_EQ] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(5860), - [anon_sym_SEMI] = ACTIONS(5860), - [anon_sym___extension__] = ACTIONS(5858), - [anon_sym___attribute__] = ACTIONS(5858), - [anon_sym___attribute] = ACTIONS(5858), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym___based] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(5860), - [anon_sym_RBRACE] = ACTIONS(5860), - [anon_sym_signed] = ACTIONS(5858), - [anon_sym_unsigned] = ACTIONS(5858), - [anon_sym_long] = ACTIONS(5858), - [anon_sym_short] = ACTIONS(5858), - [anon_sym_LBRACK] = ACTIONS(5860), - [anon_sym_RBRACK] = ACTIONS(5860), - [anon_sym_const] = ACTIONS(5858), - [anon_sym_constexpr] = ACTIONS(5858), - [anon_sym_volatile] = ACTIONS(5858), - [anon_sym_restrict] = ACTIONS(5858), - [anon_sym___restrict__] = ACTIONS(5858), - [anon_sym__Atomic] = ACTIONS(5858), - [anon_sym__Noreturn] = ACTIONS(5858), - [anon_sym_noreturn] = ACTIONS(5858), - [anon_sym__Nonnull] = ACTIONS(5858), - [anon_sym_mutable] = ACTIONS(5858), - [anon_sym_constinit] = ACTIONS(5858), - [anon_sym_consteval] = ACTIONS(5858), - [anon_sym_alignas] = ACTIONS(5858), - [anon_sym__Alignas] = ACTIONS(5858), - [sym_primitive_type] = ACTIONS(5858), - [anon_sym_QMARK] = ACTIONS(5860), - [anon_sym_LT_EQ_GT] = ACTIONS(5860), - [anon_sym_or] = ACTIONS(5858), - [anon_sym_and] = ACTIONS(5858), - [anon_sym_bitor] = ACTIONS(5858), - [anon_sym_xor] = ACTIONS(5858), - [anon_sym_bitand] = ACTIONS(5858), - [anon_sym_not_eq] = ACTIONS(5858), - [anon_sym_DASH_DASH] = ACTIONS(5860), - [anon_sym_PLUS_PLUS] = ACTIONS(5860), - [anon_sym_DOT] = ACTIONS(5858), - [anon_sym_DOT_STAR] = ACTIONS(5860), - [anon_sym_DASH_GT] = ACTIONS(5860), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5858), - [anon_sym_override] = ACTIONS(5858), - [anon_sym_requires] = ACTIONS(5858), + [STATE(1289)] = { + [sym_expression] = STATE(6900), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5782), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1949)] = { - [sym_identifier] = ACTIONS(5862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5864), - [anon_sym_COMMA] = ACTIONS(5864), - [anon_sym_RPAREN] = ACTIONS(5864), - [anon_sym_LPAREN2] = ACTIONS(5864), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5864), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_PERCENT] = ACTIONS(5864), - [anon_sym_PIPE_PIPE] = ACTIONS(5864), - [anon_sym_AMP_AMP] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5864), - [anon_sym_AMP] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_EQ] = ACTIONS(5864), - [anon_sym_LT_EQ] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_LT_LT] = ACTIONS(5864), - [anon_sym_GT_GT] = ACTIONS(5864), - [anon_sym_SEMI] = ACTIONS(5864), - [anon_sym___extension__] = ACTIONS(5862), - [anon_sym___attribute__] = ACTIONS(5862), - [anon_sym___attribute] = ACTIONS(5862), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym___based] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5864), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_signed] = ACTIONS(5862), - [anon_sym_unsigned] = ACTIONS(5862), - [anon_sym_long] = ACTIONS(5862), - [anon_sym_short] = ACTIONS(5862), - [anon_sym_LBRACK] = ACTIONS(5864), - [anon_sym_RBRACK] = ACTIONS(5864), - [anon_sym_const] = ACTIONS(5862), - [anon_sym_constexpr] = ACTIONS(5862), - [anon_sym_volatile] = ACTIONS(5862), - [anon_sym_restrict] = ACTIONS(5862), - [anon_sym___restrict__] = ACTIONS(5862), - [anon_sym__Atomic] = ACTIONS(5862), - [anon_sym__Noreturn] = ACTIONS(5862), - [anon_sym_noreturn] = ACTIONS(5862), - [anon_sym__Nonnull] = ACTIONS(5862), - [anon_sym_mutable] = ACTIONS(5862), - [anon_sym_constinit] = ACTIONS(5862), - [anon_sym_consteval] = ACTIONS(5862), - [anon_sym_alignas] = ACTIONS(5862), - [anon_sym__Alignas] = ACTIONS(5862), - [sym_primitive_type] = ACTIONS(5862), - [anon_sym_QMARK] = ACTIONS(5864), - [anon_sym_LT_EQ_GT] = ACTIONS(5864), - [anon_sym_or] = ACTIONS(5862), - [anon_sym_and] = ACTIONS(5862), - [anon_sym_bitor] = ACTIONS(5862), - [anon_sym_xor] = ACTIONS(5862), - [anon_sym_bitand] = ACTIONS(5862), - [anon_sym_not_eq] = ACTIONS(5862), - [anon_sym_DASH_DASH] = ACTIONS(5864), - [anon_sym_PLUS_PLUS] = ACTIONS(5864), - [anon_sym_DOT] = ACTIONS(5862), - [anon_sym_DOT_STAR] = ACTIONS(5864), - [anon_sym_DASH_GT] = ACTIONS(5864), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5862), - [anon_sym_override] = ACTIONS(5862), - [anon_sym_requires] = ACTIONS(5862), + [STATE(1290)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5784), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1950)] = { - [sym_identifier] = ACTIONS(5866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5868), - [anon_sym_COMMA] = ACTIONS(5868), - [anon_sym_RPAREN] = ACTIONS(5868), - [anon_sym_LPAREN2] = ACTIONS(5868), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5868), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_PERCENT] = ACTIONS(5868), - [anon_sym_PIPE_PIPE] = ACTIONS(5868), - [anon_sym_AMP_AMP] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_AMP] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5868), - [anon_sym_BANG_EQ] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_LT_EQ] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_LT_LT] = ACTIONS(5868), - [anon_sym_GT_GT] = ACTIONS(5868), - [anon_sym_SEMI] = ACTIONS(5868), - [anon_sym___extension__] = ACTIONS(5866), - [anon_sym___attribute__] = ACTIONS(5866), - [anon_sym___attribute] = ACTIONS(5866), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym___based] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5868), - [anon_sym_RBRACE] = ACTIONS(5868), - [anon_sym_signed] = ACTIONS(5866), - [anon_sym_unsigned] = ACTIONS(5866), - [anon_sym_long] = ACTIONS(5866), - [anon_sym_short] = ACTIONS(5866), - [anon_sym_LBRACK] = ACTIONS(5868), - [anon_sym_RBRACK] = ACTIONS(5868), - [anon_sym_const] = ACTIONS(5866), - [anon_sym_constexpr] = ACTIONS(5866), - [anon_sym_volatile] = ACTIONS(5866), - [anon_sym_restrict] = ACTIONS(5866), - [anon_sym___restrict__] = ACTIONS(5866), - [anon_sym__Atomic] = ACTIONS(5866), - [anon_sym__Noreturn] = ACTIONS(5866), - [anon_sym_noreturn] = ACTIONS(5866), - [anon_sym__Nonnull] = ACTIONS(5866), - [anon_sym_mutable] = ACTIONS(5866), - [anon_sym_constinit] = ACTIONS(5866), - [anon_sym_consteval] = ACTIONS(5866), - [anon_sym_alignas] = ACTIONS(5866), - [anon_sym__Alignas] = ACTIONS(5866), - [sym_primitive_type] = ACTIONS(5866), - [anon_sym_QMARK] = ACTIONS(5868), - [anon_sym_LT_EQ_GT] = ACTIONS(5868), - [anon_sym_or] = ACTIONS(5866), - [anon_sym_and] = ACTIONS(5866), - [anon_sym_bitor] = ACTIONS(5866), - [anon_sym_xor] = ACTIONS(5866), - [anon_sym_bitand] = ACTIONS(5866), - [anon_sym_not_eq] = ACTIONS(5866), - [anon_sym_DASH_DASH] = ACTIONS(5868), - [anon_sym_PLUS_PLUS] = ACTIONS(5868), - [anon_sym_DOT] = ACTIONS(5866), - [anon_sym_DOT_STAR] = ACTIONS(5868), - [anon_sym_DASH_GT] = ACTIONS(5868), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5866), - [anon_sym_override] = ACTIONS(5866), - [anon_sym_requires] = ACTIONS(5866), + [STATE(1291)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1951)] = { - [sym_identifier] = ACTIONS(5870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5872), - [anon_sym_COMMA] = ACTIONS(5872), - [anon_sym_RPAREN] = ACTIONS(5872), - [anon_sym_LPAREN2] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_PERCENT] = ACTIONS(5872), - [anon_sym_PIPE_PIPE] = ACTIONS(5872), - [anon_sym_AMP_AMP] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5872), - [anon_sym_AMP] = ACTIONS(5870), - [anon_sym_EQ_EQ] = ACTIONS(5872), - [anon_sym_BANG_EQ] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5870), - [anon_sym_GT_EQ] = ACTIONS(5872), - [anon_sym_LT_EQ] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_LT_LT] = ACTIONS(5872), - [anon_sym_GT_GT] = ACTIONS(5872), - [anon_sym_SEMI] = ACTIONS(5872), - [anon_sym___extension__] = ACTIONS(5870), - [anon_sym___attribute__] = ACTIONS(5870), - [anon_sym___attribute] = ACTIONS(5870), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym___based] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(5872), - [anon_sym_signed] = ACTIONS(5870), - [anon_sym_unsigned] = ACTIONS(5870), - [anon_sym_long] = ACTIONS(5870), - [anon_sym_short] = ACTIONS(5870), - [anon_sym_LBRACK] = ACTIONS(5872), - [anon_sym_RBRACK] = ACTIONS(5872), - [anon_sym_const] = ACTIONS(5870), - [anon_sym_constexpr] = ACTIONS(5870), - [anon_sym_volatile] = ACTIONS(5870), - [anon_sym_restrict] = ACTIONS(5870), - [anon_sym___restrict__] = ACTIONS(5870), - [anon_sym__Atomic] = ACTIONS(5870), - [anon_sym__Noreturn] = ACTIONS(5870), - [anon_sym_noreturn] = ACTIONS(5870), - [anon_sym__Nonnull] = ACTIONS(5870), - [anon_sym_mutable] = ACTIONS(5870), - [anon_sym_constinit] = ACTIONS(5870), - [anon_sym_consteval] = ACTIONS(5870), - [anon_sym_alignas] = ACTIONS(5870), - [anon_sym__Alignas] = ACTIONS(5870), - [sym_primitive_type] = ACTIONS(5870), - [anon_sym_QMARK] = ACTIONS(5872), - [anon_sym_LT_EQ_GT] = ACTIONS(5872), - [anon_sym_or] = ACTIONS(5870), - [anon_sym_and] = ACTIONS(5870), - [anon_sym_bitor] = ACTIONS(5870), - [anon_sym_xor] = ACTIONS(5870), - [anon_sym_bitand] = ACTIONS(5870), - [anon_sym_not_eq] = ACTIONS(5870), - [anon_sym_DASH_DASH] = ACTIONS(5872), - [anon_sym_PLUS_PLUS] = ACTIONS(5872), - [anon_sym_DOT] = ACTIONS(5870), - [anon_sym_DOT_STAR] = ACTIONS(5872), - [anon_sym_DASH_GT] = ACTIONS(5872), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5870), - [anon_sym_override] = ACTIONS(5870), - [anon_sym_requires] = ACTIONS(5870), + [STATE(1292)] = { + [sym_expression] = STATE(6818), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1952)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4879), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1293)] = { + [sym_expression] = STATE(6562), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10056), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1953)] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_def_token1] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [sym_preproc_directive] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym___extension__] = ACTIONS(1942), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_virtual] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(5476), - [anon_sym___attribute] = ACTIONS(5476), - [anon_sym_using] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1940), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___based] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [anon_sym___inline] = ACTIONS(1942), - [anon_sym___inline__] = ACTIONS(1942), - [anon_sym___forceinline] = ACTIONS(1942), - [anon_sym_thread_local] = ACTIONS(1942), - [anon_sym___thread] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_constexpr] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym___restrict__] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym__Noreturn] = ACTIONS(1942), - [anon_sym_noreturn] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym_mutable] = ACTIONS(1942), - [anon_sym_constinit] = ACTIONS(1942), - [anon_sym_consteval] = ACTIONS(1942), - [anon_sym_alignas] = ACTIONS(1942), - [anon_sym__Alignas] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1942), - [anon_sym_decltype] = ACTIONS(1942), - [anon_sym_explicit] = ACTIONS(1942), - [anon_sym_typename] = ACTIONS(1942), - [anon_sym_private] = ACTIONS(1942), - [anon_sym_template] = ACTIONS(1942), - [anon_sym_operator] = ACTIONS(1942), - [anon_sym_friend] = ACTIONS(1942), - [anon_sym_public] = ACTIONS(1942), - [anon_sym_protected] = ACTIONS(1942), - [anon_sym_static_assert] = ACTIONS(1942), + [STATE(1294)] = { + [sym_expression] = STATE(4976), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1954)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [aux_sym_preproc_if_token2] = ACTIONS(5629), - [aux_sym_preproc_else_token1] = ACTIONS(5629), - [aux_sym_preproc_elif_token1] = ACTIONS(5627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5627), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_EQ] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_STAR_EQ] = ACTIONS(5629), - [anon_sym_SLASH_EQ] = ACTIONS(5629), - [anon_sym_PERCENT_EQ] = ACTIONS(5629), - [anon_sym_PLUS_EQ] = ACTIONS(5629), - [anon_sym_DASH_EQ] = ACTIONS(5629), - [anon_sym_LT_LT_EQ] = ACTIONS(5629), - [anon_sym_GT_GT_EQ] = ACTIONS(5629), - [anon_sym_AMP_EQ] = ACTIONS(5629), - [anon_sym_CARET_EQ] = ACTIONS(5629), - [anon_sym_PIPE_EQ] = ACTIONS(5629), - [anon_sym_and_eq] = ACTIONS(5627), - [anon_sym_or_eq] = ACTIONS(5627), - [anon_sym_xor_eq] = ACTIONS(5627), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), + [STATE(1295)] = { + [sym_expression] = STATE(5701), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5794), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1955)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [aux_sym_preproc_if_token2] = ACTIONS(5629), - [aux_sym_preproc_else_token1] = ACTIONS(5629), - [aux_sym_preproc_elif_token1] = ACTIONS(5627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5627), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_EQ] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_STAR_EQ] = ACTIONS(5629), - [anon_sym_SLASH_EQ] = ACTIONS(5629), - [anon_sym_PERCENT_EQ] = ACTIONS(5629), - [anon_sym_PLUS_EQ] = ACTIONS(5629), - [anon_sym_DASH_EQ] = ACTIONS(5629), - [anon_sym_LT_LT_EQ] = ACTIONS(5629), - [anon_sym_GT_GT_EQ] = ACTIONS(5629), - [anon_sym_AMP_EQ] = ACTIONS(5629), - [anon_sym_CARET_EQ] = ACTIONS(5629), - [anon_sym_PIPE_EQ] = ACTIONS(5629), - [anon_sym_and_eq] = ACTIONS(5627), - [anon_sym_or_eq] = ACTIONS(5627), - [anon_sym_xor_eq] = ACTIONS(5627), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), + [STATE(1296)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1956)] = { - [sym_identifier] = ACTIONS(5874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5876), - [anon_sym_COMMA] = ACTIONS(5876), - [anon_sym_RPAREN] = ACTIONS(5876), - [aux_sym_preproc_if_token2] = ACTIONS(5876), - [aux_sym_preproc_else_token1] = ACTIONS(5876), - [aux_sym_preproc_elif_token1] = ACTIONS(5874), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5876), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5876), - [anon_sym_LPAREN2] = ACTIONS(5876), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5874), - [anon_sym_PIPE_PIPE] = ACTIONS(5876), - [anon_sym_AMP_AMP] = ACTIONS(5876), - [anon_sym_PIPE] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_AMP] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5876), - [anon_sym_BANG_EQ] = ACTIONS(5876), - [anon_sym_GT] = ACTIONS(5874), - [anon_sym_GT_EQ] = ACTIONS(5876), - [anon_sym_LT_EQ] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5874), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5874), - [anon_sym_SEMI] = ACTIONS(5876), - [anon_sym___attribute__] = ACTIONS(5874), - [anon_sym___attribute] = ACTIONS(5874), - [anon_sym_COLON] = ACTIONS(5876), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5876), - [anon_sym_LBRACE] = ACTIONS(5876), - [anon_sym_RBRACE] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5876), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_QMARK] = ACTIONS(5876), - [anon_sym_STAR_EQ] = ACTIONS(5876), - [anon_sym_SLASH_EQ] = ACTIONS(5876), - [anon_sym_PERCENT_EQ] = ACTIONS(5876), - [anon_sym_PLUS_EQ] = ACTIONS(5876), - [anon_sym_DASH_EQ] = ACTIONS(5876), - [anon_sym_LT_LT_EQ] = ACTIONS(5876), - [anon_sym_GT_GT_EQ] = ACTIONS(5876), - [anon_sym_AMP_EQ] = ACTIONS(5876), - [anon_sym_CARET_EQ] = ACTIONS(5876), - [anon_sym_PIPE_EQ] = ACTIONS(5876), - [anon_sym_and_eq] = ACTIONS(5874), - [anon_sym_or_eq] = ACTIONS(5874), - [anon_sym_xor_eq] = ACTIONS(5874), - [anon_sym_LT_EQ_GT] = ACTIONS(5876), - [anon_sym_or] = ACTIONS(5874), - [anon_sym_and] = ACTIONS(5874), - [anon_sym_bitor] = ACTIONS(5874), - [anon_sym_xor] = ACTIONS(5874), - [anon_sym_bitand] = ACTIONS(5874), - [anon_sym_not_eq] = ACTIONS(5874), - [anon_sym_DASH_DASH] = ACTIONS(5876), - [anon_sym_PLUS_PLUS] = ACTIONS(5876), - [anon_sym_asm] = ACTIONS(5874), - [anon_sym___asm__] = ACTIONS(5874), - [anon_sym___asm] = ACTIONS(5874), - [anon_sym_DOT] = ACTIONS(5874), - [anon_sym_DOT_STAR] = ACTIONS(5876), - [anon_sym_DASH_GT] = ACTIONS(5876), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5874), + [STATE(1297)] = { + [sym_expression] = STATE(4924), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1957)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4891), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1298)] = { + [sym_expression] = STATE(4976), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1958)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4895), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1299)] = { + [sym_expression] = STATE(6894), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1959)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4896), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1300)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5807), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1960)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4898), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1301)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1961)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4902), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1302)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5813), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1962)] = { - [sym__declaration_modifiers] = STATE(2078), - [sym__declaration_specifiers] = STATE(4860), - [sym_attribute_specifier] = STATE(2078), - [sym_attribute_declaration] = STATE(2078), - [sym_ms_declspec_modifier] = STATE(2078), - [sym_storage_class_specifier] = STATE(2078), - [sym_type_qualifier] = STATE(2078), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2546), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(2078), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1303)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5815), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1963)] = { - [sym_identifier] = ACTIONS(5878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5880), - [anon_sym_COMMA] = ACTIONS(5880), - [anon_sym_RPAREN] = ACTIONS(5880), - [anon_sym_LPAREN2] = ACTIONS(5880), - [anon_sym_DASH] = ACTIONS(5878), - [anon_sym_PLUS] = ACTIONS(5878), - [anon_sym_STAR] = ACTIONS(5880), - [anon_sym_SLASH] = ACTIONS(5878), - [anon_sym_PERCENT] = ACTIONS(5880), - [anon_sym_PIPE_PIPE] = ACTIONS(5880), - [anon_sym_AMP_AMP] = ACTIONS(5880), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_CARET] = ACTIONS(5880), - [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(5880), - [anon_sym_GT_GT] = ACTIONS(5880), - [anon_sym_SEMI] = ACTIONS(5880), - [anon_sym___extension__] = ACTIONS(5878), - [anon_sym___attribute__] = ACTIONS(5878), - [anon_sym___attribute] = ACTIONS(5878), - [anon_sym_COLON] = ACTIONS(5880), - [anon_sym___based] = ACTIONS(5878), - [anon_sym_LBRACE] = ACTIONS(5880), - [anon_sym_RBRACE] = ACTIONS(5880), - [anon_sym_signed] = ACTIONS(5878), - [anon_sym_unsigned] = ACTIONS(5878), - [anon_sym_long] = ACTIONS(5878), - [anon_sym_short] = ACTIONS(5878), - [anon_sym_LBRACK] = ACTIONS(5880), - [anon_sym_RBRACK] = ACTIONS(5880), - [anon_sym_const] = ACTIONS(5878), - [anon_sym_constexpr] = ACTIONS(5878), - [anon_sym_volatile] = ACTIONS(5878), - [anon_sym_restrict] = ACTIONS(5878), - [anon_sym___restrict__] = ACTIONS(5878), - [anon_sym__Atomic] = ACTIONS(5878), - [anon_sym__Noreturn] = ACTIONS(5878), - [anon_sym_noreturn] = ACTIONS(5878), - [anon_sym__Nonnull] = ACTIONS(5878), - [anon_sym_mutable] = ACTIONS(5878), - [anon_sym_constinit] = ACTIONS(5878), - [anon_sym_consteval] = ACTIONS(5878), - [anon_sym_alignas] = ACTIONS(5878), - [anon_sym__Alignas] = ACTIONS(5878), - [sym_primitive_type] = ACTIONS(5878), - [anon_sym_QMARK] = ACTIONS(5880), - [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), - [anon_sym_final] = ACTIONS(5878), - [anon_sym_override] = ACTIONS(5878), - [anon_sym_requires] = ACTIONS(5878), + [STATE(1304)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1964)] = { - [sym_identifier] = ACTIONS(5882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_LPAREN2] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5882), - [anon_sym_PLUS] = ACTIONS(5882), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5882), - [anon_sym_PERCENT] = ACTIONS(5884), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_AMP_AMP] = ACTIONS(5884), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_CARET] = ACTIONS(5884), - [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(5884), - [anon_sym_GT_GT] = ACTIONS(5884), - [anon_sym_SEMI] = ACTIONS(5884), - [anon_sym___extension__] = ACTIONS(5882), - [anon_sym___attribute__] = ACTIONS(5882), - [anon_sym___attribute] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5884), - [anon_sym___based] = ACTIONS(5882), - [anon_sym_LBRACE] = ACTIONS(5884), - [anon_sym_RBRACE] = ACTIONS(5884), - [anon_sym_signed] = ACTIONS(5882), - [anon_sym_unsigned] = ACTIONS(5882), - [anon_sym_long] = ACTIONS(5882), - [anon_sym_short] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_const] = ACTIONS(5882), - [anon_sym_constexpr] = ACTIONS(5882), - [anon_sym_volatile] = ACTIONS(5882), - [anon_sym_restrict] = ACTIONS(5882), - [anon_sym___restrict__] = ACTIONS(5882), - [anon_sym__Atomic] = ACTIONS(5882), - [anon_sym__Noreturn] = ACTIONS(5882), - [anon_sym_noreturn] = ACTIONS(5882), - [anon_sym__Nonnull] = ACTIONS(5882), - [anon_sym_mutable] = ACTIONS(5882), - [anon_sym_constinit] = ACTIONS(5882), - [anon_sym_consteval] = ACTIONS(5882), - [anon_sym_alignas] = ACTIONS(5882), - [anon_sym__Alignas] = ACTIONS(5882), - [sym_primitive_type] = ACTIONS(5882), - [anon_sym_QMARK] = ACTIONS(5884), - [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), - [anon_sym_final] = ACTIONS(5882), - [anon_sym_override] = ACTIONS(5882), - [anon_sym_requires] = ACTIONS(5882), + [STATE(1305)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1965)] = { - [sym_identifier] = ACTIONS(5886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5888), - [anon_sym_COMMA] = ACTIONS(5888), - [anon_sym_RPAREN] = ACTIONS(5888), - [anon_sym_LPAREN2] = ACTIONS(5888), - [anon_sym_DASH] = ACTIONS(5886), - [anon_sym_PLUS] = ACTIONS(5886), - [anon_sym_STAR] = ACTIONS(5888), - [anon_sym_SLASH] = ACTIONS(5886), - [anon_sym_PERCENT] = ACTIONS(5888), - [anon_sym_PIPE_PIPE] = ACTIONS(5888), - [anon_sym_AMP_AMP] = ACTIONS(5888), - [anon_sym_PIPE] = ACTIONS(5886), - [anon_sym_CARET] = ACTIONS(5888), - [anon_sym_AMP] = ACTIONS(5886), - [anon_sym_EQ_EQ] = ACTIONS(5888), - [anon_sym_BANG_EQ] = ACTIONS(5888), - [anon_sym_GT] = ACTIONS(5886), - [anon_sym_GT_EQ] = ACTIONS(5888), - [anon_sym_LT_EQ] = ACTIONS(5886), - [anon_sym_LT] = ACTIONS(5886), - [anon_sym_LT_LT] = ACTIONS(5888), - [anon_sym_GT_GT] = ACTIONS(5888), - [anon_sym_SEMI] = ACTIONS(5888), - [anon_sym___extension__] = ACTIONS(5886), - [anon_sym___attribute__] = ACTIONS(5886), - [anon_sym___attribute] = ACTIONS(5886), - [anon_sym_COLON] = ACTIONS(5888), - [anon_sym___based] = ACTIONS(5886), - [anon_sym_LBRACE] = ACTIONS(5888), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_signed] = ACTIONS(5886), - [anon_sym_unsigned] = ACTIONS(5886), - [anon_sym_long] = ACTIONS(5886), - [anon_sym_short] = ACTIONS(5886), - [anon_sym_LBRACK] = ACTIONS(5888), - [anon_sym_RBRACK] = ACTIONS(5888), - [anon_sym_const] = ACTIONS(5886), - [anon_sym_constexpr] = ACTIONS(5886), - [anon_sym_volatile] = ACTIONS(5886), - [anon_sym_restrict] = ACTIONS(5886), - [anon_sym___restrict__] = ACTIONS(5886), - [anon_sym__Atomic] = ACTIONS(5886), - [anon_sym__Noreturn] = ACTIONS(5886), - [anon_sym_noreturn] = ACTIONS(5886), - [anon_sym__Nonnull] = ACTIONS(5886), - [anon_sym_mutable] = ACTIONS(5886), - [anon_sym_constinit] = ACTIONS(5886), - [anon_sym_consteval] = ACTIONS(5886), - [anon_sym_alignas] = ACTIONS(5886), - [anon_sym__Alignas] = ACTIONS(5886), - [sym_primitive_type] = ACTIONS(5886), - [anon_sym_QMARK] = ACTIONS(5888), - [anon_sym_LT_EQ_GT] = ACTIONS(5888), - [anon_sym_or] = ACTIONS(5886), - [anon_sym_and] = ACTIONS(5886), - [anon_sym_bitor] = ACTIONS(5886), - [anon_sym_xor] = ACTIONS(5886), - [anon_sym_bitand] = ACTIONS(5886), - [anon_sym_not_eq] = ACTIONS(5886), - [anon_sym_DASH_DASH] = ACTIONS(5888), - [anon_sym_PLUS_PLUS] = ACTIONS(5888), - [anon_sym_DOT] = ACTIONS(5886), - [anon_sym_DOT_STAR] = ACTIONS(5888), - [anon_sym_DASH_GT] = ACTIONS(5888), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5886), - [anon_sym_override] = ACTIONS(5886), - [anon_sym_requires] = ACTIONS(5886), + [STATE(1306)] = { + [sym_expression] = STATE(6935), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5823), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1966)] = { - [sym_identifier] = ACTIONS(5890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5892), - [anon_sym_COMMA] = ACTIONS(5892), - [anon_sym_RPAREN] = ACTIONS(5892), - [anon_sym_LPAREN2] = ACTIONS(5892), - [anon_sym_DASH] = ACTIONS(5890), - [anon_sym_PLUS] = ACTIONS(5890), - [anon_sym_STAR] = ACTIONS(5892), - [anon_sym_SLASH] = ACTIONS(5890), - [anon_sym_PERCENT] = ACTIONS(5892), - [anon_sym_PIPE_PIPE] = ACTIONS(5892), - [anon_sym_AMP_AMP] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5890), - [anon_sym_CARET] = ACTIONS(5892), - [anon_sym_AMP] = ACTIONS(5890), - [anon_sym_EQ_EQ] = ACTIONS(5892), - [anon_sym_BANG_EQ] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5890), - [anon_sym_GT_EQ] = ACTIONS(5892), - [anon_sym_LT_EQ] = ACTIONS(5890), - [anon_sym_LT] = ACTIONS(5890), - [anon_sym_LT_LT] = ACTIONS(5892), - [anon_sym_GT_GT] = ACTIONS(5892), - [anon_sym_SEMI] = ACTIONS(5892), - [anon_sym___extension__] = ACTIONS(5890), - [anon_sym___attribute__] = ACTIONS(5890), - [anon_sym___attribute] = ACTIONS(5890), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym___based] = ACTIONS(5890), - [anon_sym_LBRACE] = ACTIONS(5892), - [anon_sym_RBRACE] = ACTIONS(5892), - [anon_sym_signed] = ACTIONS(5890), - [anon_sym_unsigned] = ACTIONS(5890), - [anon_sym_long] = ACTIONS(5890), - [anon_sym_short] = ACTIONS(5890), - [anon_sym_LBRACK] = ACTIONS(5892), - [anon_sym_RBRACK] = ACTIONS(5892), - [anon_sym_const] = ACTIONS(5890), - [anon_sym_constexpr] = ACTIONS(5890), - [anon_sym_volatile] = ACTIONS(5890), - [anon_sym_restrict] = ACTIONS(5890), - [anon_sym___restrict__] = ACTIONS(5890), - [anon_sym__Atomic] = ACTIONS(5890), - [anon_sym__Noreturn] = ACTIONS(5890), - [anon_sym_noreturn] = ACTIONS(5890), - [anon_sym__Nonnull] = ACTIONS(5890), - [anon_sym_mutable] = ACTIONS(5890), - [anon_sym_constinit] = ACTIONS(5890), - [anon_sym_consteval] = ACTIONS(5890), - [anon_sym_alignas] = ACTIONS(5890), - [anon_sym__Alignas] = ACTIONS(5890), - [sym_primitive_type] = ACTIONS(5890), - [anon_sym_QMARK] = ACTIONS(5892), - [anon_sym_LT_EQ_GT] = ACTIONS(5892), - [anon_sym_or] = ACTIONS(5890), - [anon_sym_and] = ACTIONS(5890), - [anon_sym_bitor] = ACTIONS(5890), - [anon_sym_xor] = ACTIONS(5890), - [anon_sym_bitand] = ACTIONS(5890), - [anon_sym_not_eq] = ACTIONS(5890), - [anon_sym_DASH_DASH] = ACTIONS(5892), - [anon_sym_PLUS_PLUS] = ACTIONS(5892), - [anon_sym_DOT] = ACTIONS(5890), - [anon_sym_DOT_STAR] = ACTIONS(5892), - [anon_sym_DASH_GT] = ACTIONS(5892), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5890), - [anon_sym_override] = ACTIONS(5890), - [anon_sym_requires] = ACTIONS(5890), + [STATE(1307)] = { + [sym_expression] = STATE(5701), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1967)] = { - [sym_identifier] = ACTIONS(5894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5896), - [anon_sym_COMMA] = ACTIONS(5896), - [anon_sym_RPAREN] = ACTIONS(5896), - [anon_sym_LPAREN2] = ACTIONS(5896), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5896), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_PERCENT] = ACTIONS(5896), - [anon_sym_PIPE_PIPE] = ACTIONS(5896), - [anon_sym_AMP_AMP] = ACTIONS(5896), - [anon_sym_PIPE] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5896), - [anon_sym_AMP] = ACTIONS(5894), - [anon_sym_EQ_EQ] = ACTIONS(5896), - [anon_sym_BANG_EQ] = ACTIONS(5896), - [anon_sym_GT] = ACTIONS(5894), - [anon_sym_GT_EQ] = ACTIONS(5896), - [anon_sym_LT_EQ] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5894), - [anon_sym_LT_LT] = ACTIONS(5896), - [anon_sym_GT_GT] = ACTIONS(5896), - [anon_sym_SEMI] = ACTIONS(5896), - [anon_sym___extension__] = ACTIONS(5894), - [anon_sym___attribute__] = ACTIONS(5894), - [anon_sym___attribute] = ACTIONS(5894), - [anon_sym_COLON] = ACTIONS(5896), - [anon_sym___based] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5896), - [anon_sym_RBRACE] = ACTIONS(5896), - [anon_sym_signed] = ACTIONS(5894), - [anon_sym_unsigned] = ACTIONS(5894), - [anon_sym_long] = ACTIONS(5894), - [anon_sym_short] = ACTIONS(5894), - [anon_sym_LBRACK] = ACTIONS(5896), - [anon_sym_RBRACK] = ACTIONS(5896), - [anon_sym_const] = ACTIONS(5894), - [anon_sym_constexpr] = ACTIONS(5894), - [anon_sym_volatile] = ACTIONS(5894), - [anon_sym_restrict] = ACTIONS(5894), - [anon_sym___restrict__] = ACTIONS(5894), - [anon_sym__Atomic] = ACTIONS(5894), - [anon_sym__Noreturn] = ACTIONS(5894), - [anon_sym_noreturn] = ACTIONS(5894), - [anon_sym__Nonnull] = ACTIONS(5894), - [anon_sym_mutable] = ACTIONS(5894), - [anon_sym_constinit] = ACTIONS(5894), - [anon_sym_consteval] = ACTIONS(5894), - [anon_sym_alignas] = ACTIONS(5894), - [anon_sym__Alignas] = ACTIONS(5894), - [sym_primitive_type] = ACTIONS(5894), - [anon_sym_QMARK] = ACTIONS(5896), - [anon_sym_LT_EQ_GT] = ACTIONS(5896), - [anon_sym_or] = ACTIONS(5894), - [anon_sym_and] = ACTIONS(5894), - [anon_sym_bitor] = ACTIONS(5894), - [anon_sym_xor] = ACTIONS(5894), - [anon_sym_bitand] = ACTIONS(5894), - [anon_sym_not_eq] = ACTIONS(5894), - [anon_sym_DASH_DASH] = ACTIONS(5896), - [anon_sym_PLUS_PLUS] = ACTIONS(5896), - [anon_sym_DOT] = ACTIONS(5894), - [anon_sym_DOT_STAR] = ACTIONS(5896), - [anon_sym_DASH_GT] = ACTIONS(5896), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5894), - [anon_sym_override] = ACTIONS(5894), - [anon_sym_requires] = ACTIONS(5894), + [STATE(1308)] = { + [sym_expression] = STATE(5091), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5827), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1968)] = { - [sym_identifier] = ACTIONS(5898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5900), - [anon_sym_COMMA] = ACTIONS(5900), - [anon_sym_RPAREN] = ACTIONS(5900), - [anon_sym_LPAREN2] = ACTIONS(5900), - [anon_sym_DASH] = ACTIONS(5898), - [anon_sym_PLUS] = ACTIONS(5898), - [anon_sym_STAR] = ACTIONS(5900), - [anon_sym_SLASH] = ACTIONS(5898), - [anon_sym_PERCENT] = ACTIONS(5900), - [anon_sym_PIPE_PIPE] = ACTIONS(5900), - [anon_sym_AMP_AMP] = ACTIONS(5900), - [anon_sym_PIPE] = ACTIONS(5898), - [anon_sym_CARET] = ACTIONS(5900), - [anon_sym_AMP] = ACTIONS(5898), - [anon_sym_EQ_EQ] = ACTIONS(5900), - [anon_sym_BANG_EQ] = ACTIONS(5900), - [anon_sym_GT] = ACTIONS(5898), - [anon_sym_GT_EQ] = ACTIONS(5900), - [anon_sym_LT_EQ] = ACTIONS(5898), - [anon_sym_LT] = ACTIONS(5898), - [anon_sym_LT_LT] = ACTIONS(5900), - [anon_sym_GT_GT] = ACTIONS(5900), - [anon_sym_SEMI] = ACTIONS(5900), - [anon_sym___extension__] = ACTIONS(5898), - [anon_sym___attribute__] = ACTIONS(5898), - [anon_sym___attribute] = ACTIONS(5898), - [anon_sym_COLON] = ACTIONS(5900), - [anon_sym___based] = ACTIONS(5898), - [anon_sym_LBRACE] = ACTIONS(5900), - [anon_sym_RBRACE] = ACTIONS(5900), - [anon_sym_signed] = ACTIONS(5898), - [anon_sym_unsigned] = ACTIONS(5898), - [anon_sym_long] = ACTIONS(5898), - [anon_sym_short] = ACTIONS(5898), - [anon_sym_LBRACK] = ACTIONS(5900), - [anon_sym_RBRACK] = ACTIONS(5900), - [anon_sym_const] = ACTIONS(5898), - [anon_sym_constexpr] = ACTIONS(5898), - [anon_sym_volatile] = ACTIONS(5898), - [anon_sym_restrict] = ACTIONS(5898), - [anon_sym___restrict__] = ACTIONS(5898), - [anon_sym__Atomic] = ACTIONS(5898), - [anon_sym__Noreturn] = ACTIONS(5898), - [anon_sym_noreturn] = ACTIONS(5898), - [anon_sym__Nonnull] = ACTIONS(5898), - [anon_sym_mutable] = ACTIONS(5898), - [anon_sym_constinit] = ACTIONS(5898), - [anon_sym_consteval] = ACTIONS(5898), - [anon_sym_alignas] = ACTIONS(5898), - [anon_sym__Alignas] = ACTIONS(5898), - [sym_primitive_type] = ACTIONS(5898), - [anon_sym_QMARK] = ACTIONS(5900), - [anon_sym_LT_EQ_GT] = ACTIONS(5900), - [anon_sym_or] = ACTIONS(5898), - [anon_sym_and] = ACTIONS(5898), - [anon_sym_bitor] = ACTIONS(5898), - [anon_sym_xor] = ACTIONS(5898), - [anon_sym_bitand] = ACTIONS(5898), - [anon_sym_not_eq] = ACTIONS(5898), - [anon_sym_DASH_DASH] = ACTIONS(5900), - [anon_sym_PLUS_PLUS] = ACTIONS(5900), - [anon_sym_DOT] = ACTIONS(5898), - [anon_sym_DOT_STAR] = ACTIONS(5900), - [anon_sym_DASH_GT] = ACTIONS(5900), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5898), - [anon_sym_override] = ACTIONS(5898), - [anon_sym_requires] = ACTIONS(5898), + [STATE(1309)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5830), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1969)] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [sym_preproc_directive] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym___extension__] = ACTIONS(1938), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_virtual] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym_using] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1936), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___based] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [anon_sym___inline] = ACTIONS(1938), - [anon_sym___inline__] = ACTIONS(1938), - [anon_sym___forceinline] = ACTIONS(1938), - [anon_sym_thread_local] = ACTIONS(1938), - [anon_sym___thread] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_constexpr] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym___restrict__] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym__Noreturn] = ACTIONS(1938), - [anon_sym_noreturn] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym_mutable] = ACTIONS(1938), - [anon_sym_constinit] = ACTIONS(1938), - [anon_sym_consteval] = ACTIONS(1938), - [anon_sym_alignas] = ACTIONS(1938), - [anon_sym__Alignas] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1938), - [anon_sym_decltype] = ACTIONS(1938), - [anon_sym_explicit] = ACTIONS(1938), - [anon_sym_typename] = ACTIONS(1938), - [anon_sym_private] = ACTIONS(1938), - [anon_sym_template] = ACTIONS(1938), - [anon_sym_operator] = ACTIONS(1938), - [anon_sym_friend] = ACTIONS(1938), - [anon_sym_public] = ACTIONS(1938), - [anon_sym_protected] = ACTIONS(1938), - [anon_sym_static_assert] = ACTIONS(1938), - [anon_sym_catch] = ACTIONS(1938), + [STATE(1310)] = { + [sym_expression] = STATE(5091), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5832), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1970)] = { - [sym_identifier] = ACTIONS(5902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_LPAREN2] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5902), - [anon_sym_PLUS] = ACTIONS(5902), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5902), - [anon_sym_PERCENT] = ACTIONS(5904), - [anon_sym_PIPE_PIPE] = ACTIONS(5904), - [anon_sym_AMP_AMP] = ACTIONS(5904), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_AMP] = ACTIONS(5902), - [anon_sym_EQ_EQ] = ACTIONS(5904), - [anon_sym_BANG_EQ] = ACTIONS(5904), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_GT_EQ] = ACTIONS(5904), - [anon_sym_LT_EQ] = ACTIONS(5902), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_LT_LT] = ACTIONS(5904), - [anon_sym_GT_GT] = ACTIONS(5904), - [anon_sym_SEMI] = ACTIONS(5904), - [anon_sym___extension__] = ACTIONS(5902), - [anon_sym___attribute__] = ACTIONS(5902), - [anon_sym___attribute] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5904), - [anon_sym___based] = ACTIONS(5902), - [anon_sym_LBRACE] = ACTIONS(5904), - [anon_sym_RBRACE] = ACTIONS(5904), - [anon_sym_signed] = ACTIONS(5902), - [anon_sym_unsigned] = ACTIONS(5902), - [anon_sym_long] = ACTIONS(5902), - [anon_sym_short] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_const] = ACTIONS(5902), - [anon_sym_constexpr] = ACTIONS(5902), - [anon_sym_volatile] = ACTIONS(5902), - [anon_sym_restrict] = ACTIONS(5902), - [anon_sym___restrict__] = ACTIONS(5902), - [anon_sym__Atomic] = ACTIONS(5902), - [anon_sym__Noreturn] = ACTIONS(5902), - [anon_sym_noreturn] = ACTIONS(5902), - [anon_sym__Nonnull] = ACTIONS(5902), - [anon_sym_mutable] = ACTIONS(5902), - [anon_sym_constinit] = ACTIONS(5902), - [anon_sym_consteval] = ACTIONS(5902), - [anon_sym_alignas] = ACTIONS(5902), - [anon_sym__Alignas] = ACTIONS(5902), - [sym_primitive_type] = ACTIONS(5902), - [anon_sym_QMARK] = ACTIONS(5904), - [anon_sym_LT_EQ_GT] = ACTIONS(5904), - [anon_sym_or] = ACTIONS(5902), - [anon_sym_and] = ACTIONS(5902), - [anon_sym_bitor] = ACTIONS(5902), - [anon_sym_xor] = ACTIONS(5902), - [anon_sym_bitand] = ACTIONS(5902), - [anon_sym_not_eq] = ACTIONS(5902), - [anon_sym_DASH_DASH] = ACTIONS(5904), - [anon_sym_PLUS_PLUS] = ACTIONS(5904), - [anon_sym_DOT] = ACTIONS(5902), - [anon_sym_DOT_STAR] = ACTIONS(5904), - [anon_sym_DASH_GT] = ACTIONS(5904), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5902), - [anon_sym_override] = ACTIONS(5902), - [anon_sym_requires] = ACTIONS(5902), + [STATE(1311)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5835), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1971)] = { - [sym_identifier] = ACTIONS(5906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5908), - [anon_sym_COMMA] = ACTIONS(5908), - [anon_sym_RPAREN] = ACTIONS(5908), - [anon_sym_LPAREN2] = ACTIONS(5908), - [anon_sym_DASH] = ACTIONS(5906), - [anon_sym_PLUS] = ACTIONS(5906), - [anon_sym_STAR] = ACTIONS(5908), - [anon_sym_SLASH] = ACTIONS(5906), - [anon_sym_PERCENT] = ACTIONS(5908), - [anon_sym_PIPE_PIPE] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(5908), - [anon_sym_PIPE] = ACTIONS(5906), - [anon_sym_CARET] = ACTIONS(5908), - [anon_sym_AMP] = ACTIONS(5906), - [anon_sym_EQ_EQ] = ACTIONS(5908), - [anon_sym_BANG_EQ] = ACTIONS(5908), - [anon_sym_GT] = ACTIONS(5906), - [anon_sym_GT_EQ] = ACTIONS(5908), - [anon_sym_LT_EQ] = ACTIONS(5906), - [anon_sym_LT] = ACTIONS(5906), - [anon_sym_LT_LT] = ACTIONS(5908), - [anon_sym_GT_GT] = ACTIONS(5908), - [anon_sym_SEMI] = ACTIONS(5908), - [anon_sym___extension__] = ACTIONS(5906), - [anon_sym___attribute__] = ACTIONS(5906), - [anon_sym___attribute] = ACTIONS(5906), - [anon_sym_COLON] = ACTIONS(5908), - [anon_sym___based] = ACTIONS(5906), - [anon_sym_LBRACE] = ACTIONS(5908), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_signed] = ACTIONS(5906), - [anon_sym_unsigned] = ACTIONS(5906), - [anon_sym_long] = ACTIONS(5906), - [anon_sym_short] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(5908), - [anon_sym_RBRACK] = ACTIONS(5908), - [anon_sym_const] = ACTIONS(5906), - [anon_sym_constexpr] = ACTIONS(5906), - [anon_sym_volatile] = ACTIONS(5906), - [anon_sym_restrict] = ACTIONS(5906), - [anon_sym___restrict__] = ACTIONS(5906), - [anon_sym__Atomic] = ACTIONS(5906), - [anon_sym__Noreturn] = ACTIONS(5906), - [anon_sym_noreturn] = ACTIONS(5906), - [anon_sym__Nonnull] = ACTIONS(5906), - [anon_sym_mutable] = ACTIONS(5906), - [anon_sym_constinit] = ACTIONS(5906), - [anon_sym_consteval] = ACTIONS(5906), - [anon_sym_alignas] = ACTIONS(5906), - [anon_sym__Alignas] = ACTIONS(5906), - [sym_primitive_type] = ACTIONS(5906), - [anon_sym_QMARK] = ACTIONS(5908), - [anon_sym_LT_EQ_GT] = ACTIONS(5908), - [anon_sym_or] = ACTIONS(5906), - [anon_sym_and] = ACTIONS(5906), - [anon_sym_bitor] = ACTIONS(5906), - [anon_sym_xor] = ACTIONS(5906), - [anon_sym_bitand] = ACTIONS(5906), - [anon_sym_not_eq] = ACTIONS(5906), - [anon_sym_DASH_DASH] = ACTIONS(5908), - [anon_sym_PLUS_PLUS] = ACTIONS(5908), - [anon_sym_DOT] = ACTIONS(5906), - [anon_sym_DOT_STAR] = ACTIONS(5908), - [anon_sym_DASH_GT] = ACTIONS(5908), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5906), - [anon_sym_override] = ACTIONS(5906), - [anon_sym_requires] = ACTIONS(5906), + [STATE(1312)] = { + [sym_expression] = STATE(6948), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5837), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1972)] = { - [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___attribute] = ACTIONS(5711), - [anon_sym_COLON] = ACTIONS(5713), - [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__Nonnull] = ACTIONS(5711), - [anon_sym_mutable] = ACTIONS(5711), - [anon_sym_constinit] = ACTIONS(5711), - [anon_sym_consteval] = ACTIONS(5711), - [anon_sym_alignas] = ACTIONS(5711), - [anon_sym__Alignas] = ACTIONS(5711), - [sym_primitive_type] = ACTIONS(5711), - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5711), - [anon_sym_override] = ACTIONS(5711), - [anon_sym_requires] = ACTIONS(5711), + [STATE(1313)] = { + [sym_expression] = STATE(6837), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5839), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1973)] = { - [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___attribute] = ACTIONS(5711), - [anon_sym_COLON] = ACTIONS(5713), - [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__Nonnull] = ACTIONS(5711), - [anon_sym_mutable] = ACTIONS(5711), - [anon_sym_constinit] = ACTIONS(5711), - [anon_sym_consteval] = ACTIONS(5711), - [anon_sym_alignas] = ACTIONS(5711), - [anon_sym__Alignas] = ACTIONS(5711), - [sym_primitive_type] = ACTIONS(5711), - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5711), - [anon_sym_override] = ACTIONS(5711), - [anon_sym_requires] = ACTIONS(5711), + [STATE(1314)] = { + [sym_expression] = STATE(4960), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1974)] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym___extension__] = ACTIONS(2621), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym___attribute] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym___inline] = ACTIONS(2621), - [anon_sym___inline__] = ACTIONS(2621), - [anon_sym___forceinline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym___thread] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym___restrict__] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym__Noreturn] = ACTIONS(2621), - [anon_sym_noreturn] = ACTIONS(2621), - [anon_sym__Nonnull] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_alignas] = ACTIONS(2621), - [anon_sym__Alignas] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_private] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_friend] = ACTIONS(2621), - [anon_sym_public] = ACTIONS(2621), - [anon_sym_protected] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), + [STATE(1315)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5844), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1975)] = { - [sym_identifier] = ACTIONS(5910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5912), - [anon_sym_COMMA] = ACTIONS(5912), - [anon_sym_RPAREN] = ACTIONS(5912), - [aux_sym_preproc_if_token2] = ACTIONS(5912), - [aux_sym_preproc_else_token1] = ACTIONS(5912), - [aux_sym_preproc_elif_token1] = ACTIONS(5910), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5912), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5912), - [anon_sym_LPAREN2] = ACTIONS(5912), - [anon_sym_DASH] = ACTIONS(5910), - [anon_sym_PLUS] = ACTIONS(5910), - [anon_sym_STAR] = ACTIONS(5910), - [anon_sym_SLASH] = ACTIONS(5910), - [anon_sym_PERCENT] = ACTIONS(5910), - [anon_sym_PIPE_PIPE] = ACTIONS(5912), - [anon_sym_AMP_AMP] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5910), - [anon_sym_CARET] = ACTIONS(5910), - [anon_sym_AMP] = ACTIONS(5910), - [anon_sym_EQ_EQ] = ACTIONS(5912), - [anon_sym_BANG_EQ] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5910), - [anon_sym_GT_EQ] = ACTIONS(5912), - [anon_sym_LT_EQ] = ACTIONS(5910), - [anon_sym_LT] = ACTIONS(5910), - [anon_sym_LT_LT] = ACTIONS(5910), - [anon_sym_GT_GT] = ACTIONS(5910), - [anon_sym_SEMI] = ACTIONS(5912), - [anon_sym___attribute__] = ACTIONS(5910), - [anon_sym___attribute] = ACTIONS(5910), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5912), - [anon_sym_LBRACE] = ACTIONS(5912), - [anon_sym_RBRACE] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5910), - [anon_sym_RBRACK] = ACTIONS(5912), - [anon_sym_EQ] = ACTIONS(5910), - [anon_sym_QMARK] = ACTIONS(5912), - [anon_sym_STAR_EQ] = ACTIONS(5912), - [anon_sym_SLASH_EQ] = ACTIONS(5912), - [anon_sym_PERCENT_EQ] = ACTIONS(5912), - [anon_sym_PLUS_EQ] = ACTIONS(5912), - [anon_sym_DASH_EQ] = ACTIONS(5912), - [anon_sym_LT_LT_EQ] = ACTIONS(5912), - [anon_sym_GT_GT_EQ] = ACTIONS(5912), - [anon_sym_AMP_EQ] = ACTIONS(5912), - [anon_sym_CARET_EQ] = ACTIONS(5912), - [anon_sym_PIPE_EQ] = ACTIONS(5912), - [anon_sym_and_eq] = ACTIONS(5910), - [anon_sym_or_eq] = ACTIONS(5910), - [anon_sym_xor_eq] = ACTIONS(5910), - [anon_sym_LT_EQ_GT] = ACTIONS(5912), - [anon_sym_or] = ACTIONS(5910), - [anon_sym_and] = ACTIONS(5910), - [anon_sym_bitor] = ACTIONS(5910), - [anon_sym_xor] = ACTIONS(5910), - [anon_sym_bitand] = ACTIONS(5910), - [anon_sym_not_eq] = ACTIONS(5910), - [anon_sym_DASH_DASH] = ACTIONS(5912), - [anon_sym_PLUS_PLUS] = ACTIONS(5912), - [anon_sym_asm] = ACTIONS(5910), - [anon_sym___asm__] = ACTIONS(5910), - [anon_sym___asm] = ACTIONS(5910), - [anon_sym_DOT] = ACTIONS(5910), - [anon_sym_DOT_STAR] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(5912), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5910), + [STATE(1316)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5846), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1976)] = { - [sym_type_qualifier] = STATE(1920), - [sym_alignas_qualifier] = STATE(1731), - [aux_sym__type_definition_type_repeat1] = STATE(1920), - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [sym_identifier] = ACTIONS(5914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [aux_sym_preproc_if_token2] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5124), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5122), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5122), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5122), - [anon_sym___extension__] = ACTIONS(5753), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(5917), - [anon_sym_unsigned] = ACTIONS(5917), - [anon_sym_long] = ACTIONS(5917), - [anon_sym_short] = ACTIONS(5917), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_const] = ACTIONS(5753), - [anon_sym_constexpr] = ACTIONS(5753), - [anon_sym_volatile] = ACTIONS(5753), - [anon_sym_restrict] = ACTIONS(5753), - [anon_sym___restrict__] = ACTIONS(5753), - [anon_sym__Atomic] = ACTIONS(5753), - [anon_sym__Noreturn] = ACTIONS(5753), - [anon_sym_noreturn] = ACTIONS(5753), - [anon_sym__Nonnull] = ACTIONS(5753), - [anon_sym_mutable] = ACTIONS(5753), - [anon_sym_constinit] = ACTIONS(5753), - [anon_sym_consteval] = ACTIONS(5753), - [anon_sym_alignas] = ACTIONS(5757), - [anon_sym__Alignas] = ACTIONS(5757), - [sym_primitive_type] = ACTIONS(5919), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), + [STATE(1317)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5848), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1977)] = { - [sym_identifier] = ACTIONS(5921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), - [anon_sym_COMMA] = ACTIONS(5923), - [anon_sym_RPAREN] = ACTIONS(5923), - [anon_sym_LPAREN2] = ACTIONS(5923), - [anon_sym_DASH] = ACTIONS(5921), - [anon_sym_PLUS] = ACTIONS(5921), - [anon_sym_STAR] = ACTIONS(5923), - [anon_sym_SLASH] = ACTIONS(5921), - [anon_sym_PERCENT] = ACTIONS(5923), - [anon_sym_PIPE_PIPE] = ACTIONS(5923), - [anon_sym_AMP_AMP] = ACTIONS(5923), - [anon_sym_PIPE] = ACTIONS(5921), - [anon_sym_CARET] = ACTIONS(5923), - [anon_sym_AMP] = ACTIONS(5921), - [anon_sym_EQ_EQ] = ACTIONS(5923), - [anon_sym_BANG_EQ] = ACTIONS(5923), - [anon_sym_GT] = ACTIONS(5921), - [anon_sym_GT_EQ] = ACTIONS(5923), - [anon_sym_LT_EQ] = ACTIONS(5921), - [anon_sym_LT] = ACTIONS(5921), - [anon_sym_LT_LT] = ACTIONS(5923), - [anon_sym_GT_GT] = ACTIONS(5923), - [anon_sym_SEMI] = ACTIONS(5923), - [anon_sym___extension__] = ACTIONS(5921), - [anon_sym___attribute__] = ACTIONS(5921), - [anon_sym___attribute] = ACTIONS(5921), - [anon_sym_COLON] = ACTIONS(5923), - [anon_sym___based] = ACTIONS(5921), - [anon_sym_LBRACE] = ACTIONS(5923), - [anon_sym_RBRACE] = ACTIONS(5923), - [anon_sym_signed] = ACTIONS(5921), - [anon_sym_unsigned] = ACTIONS(5921), - [anon_sym_long] = ACTIONS(5921), - [anon_sym_short] = ACTIONS(5921), - [anon_sym_LBRACK] = ACTIONS(5923), - [anon_sym_RBRACK] = ACTIONS(5923), - [anon_sym_const] = ACTIONS(5921), - [anon_sym_constexpr] = ACTIONS(5921), - [anon_sym_volatile] = ACTIONS(5921), - [anon_sym_restrict] = ACTIONS(5921), - [anon_sym___restrict__] = ACTIONS(5921), - [anon_sym__Atomic] = ACTIONS(5921), - [anon_sym__Noreturn] = ACTIONS(5921), - [anon_sym_noreturn] = ACTIONS(5921), - [anon_sym__Nonnull] = ACTIONS(5921), - [anon_sym_mutable] = ACTIONS(5921), - [anon_sym_constinit] = ACTIONS(5921), - [anon_sym_consteval] = ACTIONS(5921), - [anon_sym_alignas] = ACTIONS(5921), - [anon_sym__Alignas] = ACTIONS(5921), - [sym_primitive_type] = ACTIONS(5921), - [anon_sym_QMARK] = ACTIONS(5923), - [anon_sym_LT_EQ_GT] = ACTIONS(5923), - [anon_sym_or] = ACTIONS(5921), - [anon_sym_and] = ACTIONS(5921), - [anon_sym_bitor] = ACTIONS(5921), - [anon_sym_xor] = ACTIONS(5921), - [anon_sym_bitand] = ACTIONS(5921), - [anon_sym_not_eq] = ACTIONS(5921), - [anon_sym_DASH_DASH] = ACTIONS(5923), - [anon_sym_PLUS_PLUS] = ACTIONS(5923), - [anon_sym_DOT] = ACTIONS(5921), - [anon_sym_DOT_STAR] = ACTIONS(5923), - [anon_sym_DASH_GT] = ACTIONS(5923), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5921), - [anon_sym_override] = ACTIONS(5921), - [anon_sym_requires] = ACTIONS(5921), + [STATE(1318)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5850), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1978)] = { - [sym_identifier] = ACTIONS(5925), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5927), - [anon_sym_COMMA] = ACTIONS(5927), - [anon_sym_RPAREN] = ACTIONS(5927), - [anon_sym_LPAREN2] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5925), - [anon_sym_PLUS] = ACTIONS(5925), - [anon_sym_STAR] = ACTIONS(5927), - [anon_sym_SLASH] = ACTIONS(5925), - [anon_sym_PERCENT] = ACTIONS(5927), - [anon_sym_PIPE_PIPE] = ACTIONS(5927), - [anon_sym_AMP_AMP] = ACTIONS(5927), - [anon_sym_PIPE] = ACTIONS(5925), - [anon_sym_CARET] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5925), - [anon_sym_EQ_EQ] = ACTIONS(5927), - [anon_sym_BANG_EQ] = ACTIONS(5927), - [anon_sym_GT] = ACTIONS(5925), - [anon_sym_GT_EQ] = ACTIONS(5927), - [anon_sym_LT_EQ] = ACTIONS(5925), - [anon_sym_LT] = ACTIONS(5925), - [anon_sym_LT_LT] = ACTIONS(5927), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_SEMI] = ACTIONS(5927), - [anon_sym___extension__] = ACTIONS(5925), - [anon_sym___attribute__] = ACTIONS(5925), - [anon_sym___attribute] = ACTIONS(5925), - [anon_sym_COLON] = ACTIONS(5927), - [anon_sym___based] = ACTIONS(5925), - [anon_sym_LBRACE] = ACTIONS(5927), - [anon_sym_RBRACE] = ACTIONS(5927), - [anon_sym_signed] = ACTIONS(5925), - [anon_sym_unsigned] = ACTIONS(5925), - [anon_sym_long] = ACTIONS(5925), - [anon_sym_short] = ACTIONS(5925), - [anon_sym_LBRACK] = ACTIONS(5927), - [anon_sym_RBRACK] = ACTIONS(5927), - [anon_sym_const] = ACTIONS(5925), - [anon_sym_constexpr] = ACTIONS(5925), - [anon_sym_volatile] = ACTIONS(5925), - [anon_sym_restrict] = ACTIONS(5925), - [anon_sym___restrict__] = ACTIONS(5925), - [anon_sym__Atomic] = ACTIONS(5925), - [anon_sym__Noreturn] = ACTIONS(5925), - [anon_sym_noreturn] = ACTIONS(5925), - [anon_sym__Nonnull] = ACTIONS(5925), - [anon_sym_mutable] = ACTIONS(5925), - [anon_sym_constinit] = ACTIONS(5925), - [anon_sym_consteval] = ACTIONS(5925), - [anon_sym_alignas] = ACTIONS(5925), - [anon_sym__Alignas] = ACTIONS(5925), - [sym_primitive_type] = ACTIONS(5925), - [anon_sym_QMARK] = ACTIONS(5927), - [anon_sym_LT_EQ_GT] = ACTIONS(5927), - [anon_sym_or] = ACTIONS(5925), - [anon_sym_and] = ACTIONS(5925), - [anon_sym_bitor] = ACTIONS(5925), - [anon_sym_xor] = ACTIONS(5925), - [anon_sym_bitand] = ACTIONS(5925), - [anon_sym_not_eq] = ACTIONS(5925), - [anon_sym_DASH_DASH] = ACTIONS(5927), - [anon_sym_PLUS_PLUS] = ACTIONS(5927), - [anon_sym_DOT] = ACTIONS(5925), - [anon_sym_DOT_STAR] = ACTIONS(5927), - [anon_sym_DASH_GT] = ACTIONS(5927), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5925), - [anon_sym_override] = ACTIONS(5925), - [anon_sym_requires] = ACTIONS(5925), + [STATE(1319)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5852), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1979)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1320)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5854), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1980)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1321)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5856), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1981)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1322)] = { + [sym_expression] = STATE(6638), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5859), + [anon_sym_LPAREN2] = ACTIONS(5861), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(1982)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1323)] = { + [sym_expression] = STATE(5113), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1983)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1324)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5866), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1984)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token2] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1325)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5868), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1985)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1326)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5870), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1986)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token2] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1327)] = { + [sym_expression] = STATE(5714), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5872), + [anon_sym_LPAREN2] = ACTIONS(5874), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1987)] = { - [sym_string_literal] = STATE(1726), - [sym_template_argument_list] = STATE(2607), - [sym_raw_string_literal] = STATE(1726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(5935), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), + [STATE(1328)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5876), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1988)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token2] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_friend] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_protected] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), + [STATE(1329)] = { + [sym_expression] = STATE(6865), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5878), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1989)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1330)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5880), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1990)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1331)] = { + [sym_expression] = STATE(7073), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5882), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1991)] = { - [sym_identifier] = ACTIONS(5567), - [aux_sym_preproc_def_token1] = ACTIONS(5567), - [aux_sym_preproc_if_token1] = ACTIONS(5567), - [aux_sym_preproc_if_token2] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5567), - [sym_preproc_directive] = ACTIONS(5567), - [anon_sym_LPAREN2] = ACTIONS(5569), - [anon_sym_TILDE] = ACTIONS(5569), - [anon_sym_STAR] = ACTIONS(5569), - [anon_sym_AMP_AMP] = ACTIONS(5569), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_SEMI] = ACTIONS(5569), - [anon_sym___extension__] = ACTIONS(5567), - [anon_sym_typedef] = ACTIONS(5567), - [anon_sym_virtual] = ACTIONS(5567), - [anon_sym_extern] = ACTIONS(5567), - [anon_sym___attribute__] = ACTIONS(5567), - [anon_sym___attribute] = ACTIONS(5567), - [anon_sym_using] = ACTIONS(5567), - [anon_sym_COLON_COLON] = ACTIONS(5569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5569), - [anon_sym___declspec] = ACTIONS(5567), - [anon_sym___based] = ACTIONS(5567), - [anon_sym_signed] = ACTIONS(5567), - [anon_sym_unsigned] = ACTIONS(5567), - [anon_sym_long] = ACTIONS(5567), - [anon_sym_short] = ACTIONS(5567), - [anon_sym_LBRACK] = ACTIONS(5567), - [anon_sym_static] = ACTIONS(5567), - [anon_sym_register] = ACTIONS(5567), - [anon_sym_inline] = ACTIONS(5567), - [anon_sym___inline] = ACTIONS(5567), - [anon_sym___inline__] = ACTIONS(5567), - [anon_sym___forceinline] = ACTIONS(5567), - [anon_sym_thread_local] = ACTIONS(5567), - [anon_sym___thread] = ACTIONS(5567), - [anon_sym_const] = ACTIONS(5567), - [anon_sym_constexpr] = ACTIONS(5567), - [anon_sym_volatile] = ACTIONS(5567), - [anon_sym_restrict] = ACTIONS(5567), - [anon_sym___restrict__] = ACTIONS(5567), - [anon_sym__Atomic] = ACTIONS(5567), - [anon_sym__Noreturn] = ACTIONS(5567), - [anon_sym_noreturn] = ACTIONS(5567), - [anon_sym__Nonnull] = ACTIONS(5567), - [anon_sym_mutable] = ACTIONS(5567), - [anon_sym_constinit] = ACTIONS(5567), - [anon_sym_consteval] = ACTIONS(5567), - [anon_sym_alignas] = ACTIONS(5567), - [anon_sym__Alignas] = ACTIONS(5567), - [sym_primitive_type] = ACTIONS(5567), - [anon_sym_enum] = ACTIONS(5567), - [anon_sym_class] = ACTIONS(5567), - [anon_sym_struct] = ACTIONS(5567), - [anon_sym_union] = ACTIONS(5567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5567), - [anon_sym_decltype] = ACTIONS(5567), - [anon_sym_explicit] = ACTIONS(5567), - [anon_sym_typename] = ACTIONS(5567), - [anon_sym_private] = ACTIONS(5567), - [anon_sym_template] = ACTIONS(5567), - [anon_sym_operator] = ACTIONS(5567), - [anon_sym_friend] = ACTIONS(5567), - [anon_sym_public] = ACTIONS(5567), - [anon_sym_protected] = ACTIONS(5567), - [anon_sym_static_assert] = ACTIONS(5567), + [STATE(1332)] = { + [sym_expression] = STATE(6862), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5884), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1992)] = { - [sym_identifier] = ACTIONS(5571), - [aux_sym_preproc_def_token1] = ACTIONS(5571), - [aux_sym_preproc_if_token1] = ACTIONS(5571), - [aux_sym_preproc_if_token2] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5571), - [sym_preproc_directive] = ACTIONS(5571), - [anon_sym_LPAREN2] = ACTIONS(5573), - [anon_sym_TILDE] = ACTIONS(5573), - [anon_sym_STAR] = ACTIONS(5573), - [anon_sym_AMP_AMP] = ACTIONS(5573), - [anon_sym_AMP] = ACTIONS(5571), - [anon_sym_SEMI] = ACTIONS(5573), - [anon_sym___extension__] = ACTIONS(5571), - [anon_sym_typedef] = ACTIONS(5571), - [anon_sym_virtual] = ACTIONS(5571), - [anon_sym_extern] = ACTIONS(5571), - [anon_sym___attribute__] = ACTIONS(5571), - [anon_sym___attribute] = ACTIONS(5571), - [anon_sym_using] = ACTIONS(5571), - [anon_sym_COLON_COLON] = ACTIONS(5573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5573), - [anon_sym___declspec] = ACTIONS(5571), - [anon_sym___based] = ACTIONS(5571), - [anon_sym_signed] = ACTIONS(5571), - [anon_sym_unsigned] = ACTIONS(5571), - [anon_sym_long] = ACTIONS(5571), - [anon_sym_short] = ACTIONS(5571), - [anon_sym_LBRACK] = ACTIONS(5571), - [anon_sym_static] = ACTIONS(5571), - [anon_sym_register] = ACTIONS(5571), - [anon_sym_inline] = ACTIONS(5571), - [anon_sym___inline] = ACTIONS(5571), - [anon_sym___inline__] = ACTIONS(5571), - [anon_sym___forceinline] = ACTIONS(5571), - [anon_sym_thread_local] = ACTIONS(5571), - [anon_sym___thread] = ACTIONS(5571), - [anon_sym_const] = ACTIONS(5571), - [anon_sym_constexpr] = ACTIONS(5571), - [anon_sym_volatile] = ACTIONS(5571), - [anon_sym_restrict] = ACTIONS(5571), - [anon_sym___restrict__] = ACTIONS(5571), - [anon_sym__Atomic] = ACTIONS(5571), - [anon_sym__Noreturn] = ACTIONS(5571), - [anon_sym_noreturn] = ACTIONS(5571), - [anon_sym__Nonnull] = ACTIONS(5571), - [anon_sym_mutable] = ACTIONS(5571), - [anon_sym_constinit] = ACTIONS(5571), - [anon_sym_consteval] = ACTIONS(5571), - [anon_sym_alignas] = ACTIONS(5571), - [anon_sym__Alignas] = ACTIONS(5571), - [sym_primitive_type] = ACTIONS(5571), - [anon_sym_enum] = ACTIONS(5571), - [anon_sym_class] = ACTIONS(5571), - [anon_sym_struct] = ACTIONS(5571), - [anon_sym_union] = ACTIONS(5571), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5571), - [anon_sym_decltype] = ACTIONS(5571), - [anon_sym_explicit] = ACTIONS(5571), - [anon_sym_typename] = ACTIONS(5571), - [anon_sym_private] = ACTIONS(5571), - [anon_sym_template] = ACTIONS(5571), - [anon_sym_operator] = ACTIONS(5571), - [anon_sym_friend] = ACTIONS(5571), - [anon_sym_public] = ACTIONS(5571), - [anon_sym_protected] = ACTIONS(5571), - [anon_sym_static_assert] = ACTIONS(5571), + [STATE(1333)] = { + [sym_expression] = STATE(7082), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5886), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1993)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_private] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_friend] = ACTIONS(2747), - [anon_sym_public] = ACTIONS(2747), - [anon_sym_protected] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), + [STATE(1334)] = { + [sym_expression] = STATE(6872), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5888), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1994)] = { - [sym_identifier] = ACTIONS(5575), - [aux_sym_preproc_def_token1] = ACTIONS(5575), - [aux_sym_preproc_if_token1] = ACTIONS(5575), - [aux_sym_preproc_if_token2] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5575), - [sym_preproc_directive] = ACTIONS(5575), - [anon_sym_LPAREN2] = ACTIONS(5577), - [anon_sym_TILDE] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_AMP_AMP] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(5577), - [anon_sym___extension__] = ACTIONS(5575), - [anon_sym_typedef] = ACTIONS(5575), - [anon_sym_virtual] = ACTIONS(5575), - [anon_sym_extern] = ACTIONS(5575), - [anon_sym___attribute__] = ACTIONS(5575), - [anon_sym___attribute] = ACTIONS(5575), - [anon_sym_using] = ACTIONS(5575), - [anon_sym_COLON_COLON] = ACTIONS(5577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5577), - [anon_sym___declspec] = ACTIONS(5575), - [anon_sym___based] = ACTIONS(5575), - [anon_sym_signed] = ACTIONS(5575), - [anon_sym_unsigned] = ACTIONS(5575), - [anon_sym_long] = ACTIONS(5575), - [anon_sym_short] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(5575), - [anon_sym_static] = ACTIONS(5575), - [anon_sym_register] = ACTIONS(5575), - [anon_sym_inline] = ACTIONS(5575), - [anon_sym___inline] = ACTIONS(5575), - [anon_sym___inline__] = ACTIONS(5575), - [anon_sym___forceinline] = ACTIONS(5575), - [anon_sym_thread_local] = ACTIONS(5575), - [anon_sym___thread] = ACTIONS(5575), - [anon_sym_const] = ACTIONS(5575), - [anon_sym_constexpr] = ACTIONS(5575), - [anon_sym_volatile] = ACTIONS(5575), - [anon_sym_restrict] = ACTIONS(5575), - [anon_sym___restrict__] = ACTIONS(5575), - [anon_sym__Atomic] = ACTIONS(5575), - [anon_sym__Noreturn] = ACTIONS(5575), - [anon_sym_noreturn] = ACTIONS(5575), - [anon_sym__Nonnull] = ACTIONS(5575), - [anon_sym_mutable] = ACTIONS(5575), - [anon_sym_constinit] = ACTIONS(5575), - [anon_sym_consteval] = ACTIONS(5575), - [anon_sym_alignas] = ACTIONS(5575), - [anon_sym__Alignas] = ACTIONS(5575), - [sym_primitive_type] = ACTIONS(5575), - [anon_sym_enum] = ACTIONS(5575), - [anon_sym_class] = ACTIONS(5575), - [anon_sym_struct] = ACTIONS(5575), - [anon_sym_union] = ACTIONS(5575), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5575), - [anon_sym_decltype] = ACTIONS(5575), - [anon_sym_explicit] = ACTIONS(5575), - [anon_sym_typename] = ACTIONS(5575), - [anon_sym_private] = ACTIONS(5575), - [anon_sym_template] = ACTIONS(5575), - [anon_sym_operator] = ACTIONS(5575), - [anon_sym_friend] = ACTIONS(5575), - [anon_sym_public] = ACTIONS(5575), - [anon_sym_protected] = ACTIONS(5575), - [anon_sym_static_assert] = ACTIONS(5575), + [STATE(1335)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5890), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1995)] = { - [sym_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [aux_sym_concatenated_string_repeat1] = STATE(1997), - [sym_identifier] = ACTIONS(5938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_LPAREN2] = ACTIONS(5453), - [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(5453), - [anon_sym_AMP_AMP] = ACTIONS(5453), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5453), - [anon_sym_BANG_EQ] = ACTIONS(5453), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5453), - [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(5453), - [anon_sym___attribute__] = ACTIONS(5455), - [anon_sym___attribute] = ACTIONS(5455), - [anon_sym_LBRACK] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5453), - [anon_sym_STAR_EQ] = ACTIONS(5453), - [anon_sym_SLASH_EQ] = ACTIONS(5453), - [anon_sym_PERCENT_EQ] = ACTIONS(5453), - [anon_sym_PLUS_EQ] = ACTIONS(5453), - [anon_sym_DASH_EQ] = ACTIONS(5453), - [anon_sym_LT_LT_EQ] = ACTIONS(5453), - [anon_sym_GT_GT_EQ] = ACTIONS(5453), - [anon_sym_AMP_EQ] = ACTIONS(5453), - [anon_sym_CARET_EQ] = ACTIONS(5453), - [anon_sym_PIPE_EQ] = ACTIONS(5453), - [anon_sym_and_eq] = ACTIONS(5455), - [anon_sym_or_eq] = ACTIONS(5455), - [anon_sym_xor_eq] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5453), - [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(5453), - [anon_sym_PLUS_PLUS] = ACTIONS(5453), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5453), - [anon_sym_DASH_GT] = ACTIONS(5453), - [anon_sym_L_DQUOTE] = ACTIONS(5940), - [anon_sym_u_DQUOTE] = ACTIONS(5940), - [anon_sym_U_DQUOTE] = ACTIONS(5940), - [anon_sym_u8_DQUOTE] = ACTIONS(5940), - [anon_sym_DQUOTE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5942), - [anon_sym_LR_DQUOTE] = ACTIONS(5942), - [anon_sym_uR_DQUOTE] = ACTIONS(5942), - [anon_sym_UR_DQUOTE] = ACTIONS(5942), - [anon_sym_u8R_DQUOTE] = ACTIONS(5942), - [sym_literal_suffix] = ACTIONS(5455), + [STATE(1336)] = { + [sym_expression] = STATE(5640), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5856), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(1996)] = { - [sym_identifier] = ACTIONS(5543), - [aux_sym_preproc_def_token1] = ACTIONS(5543), - [aux_sym_preproc_if_token1] = ACTIONS(5543), - [aux_sym_preproc_if_token2] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5543), - [sym_preproc_directive] = ACTIONS(5543), - [anon_sym_LPAREN2] = ACTIONS(5545), - [anon_sym_TILDE] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5545), - [anon_sym_AMP_AMP] = ACTIONS(5545), - [anon_sym_AMP] = ACTIONS(5543), - [anon_sym_SEMI] = ACTIONS(5545), - [anon_sym___extension__] = ACTIONS(5543), - [anon_sym_typedef] = ACTIONS(5543), - [anon_sym_virtual] = ACTIONS(5543), - [anon_sym_extern] = ACTIONS(5543), - [anon_sym___attribute__] = ACTIONS(5543), - [anon_sym___attribute] = ACTIONS(5543), - [anon_sym_using] = ACTIONS(5543), - [anon_sym_COLON_COLON] = ACTIONS(5545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5545), - [anon_sym___declspec] = ACTIONS(5543), - [anon_sym___based] = ACTIONS(5543), - [anon_sym_signed] = ACTIONS(5543), - [anon_sym_unsigned] = ACTIONS(5543), - [anon_sym_long] = ACTIONS(5543), - [anon_sym_short] = ACTIONS(5543), - [anon_sym_LBRACK] = ACTIONS(5543), - [anon_sym_static] = ACTIONS(5543), - [anon_sym_register] = ACTIONS(5543), - [anon_sym_inline] = ACTIONS(5543), - [anon_sym___inline] = ACTIONS(5543), - [anon_sym___inline__] = ACTIONS(5543), - [anon_sym___forceinline] = ACTIONS(5543), - [anon_sym_thread_local] = ACTIONS(5543), - [anon_sym___thread] = ACTIONS(5543), - [anon_sym_const] = ACTIONS(5543), - [anon_sym_constexpr] = ACTIONS(5543), - [anon_sym_volatile] = ACTIONS(5543), - [anon_sym_restrict] = ACTIONS(5543), - [anon_sym___restrict__] = ACTIONS(5543), - [anon_sym__Atomic] = ACTIONS(5543), - [anon_sym__Noreturn] = ACTIONS(5543), - [anon_sym_noreturn] = ACTIONS(5543), - [anon_sym__Nonnull] = ACTIONS(5543), - [anon_sym_mutable] = ACTIONS(5543), - [anon_sym_constinit] = ACTIONS(5543), - [anon_sym_consteval] = ACTIONS(5543), - [anon_sym_alignas] = ACTIONS(5543), - [anon_sym__Alignas] = ACTIONS(5543), - [sym_primitive_type] = ACTIONS(5543), - [anon_sym_enum] = ACTIONS(5543), - [anon_sym_class] = ACTIONS(5543), - [anon_sym_struct] = ACTIONS(5543), - [anon_sym_union] = ACTIONS(5543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5543), - [anon_sym_decltype] = ACTIONS(5543), - [anon_sym_explicit] = ACTIONS(5543), - [anon_sym_typename] = ACTIONS(5543), - [anon_sym_private] = ACTIONS(5543), - [anon_sym_template] = ACTIONS(5543), - [anon_sym_operator] = ACTIONS(5543), - [anon_sym_friend] = ACTIONS(5543), - [anon_sym_public] = ACTIONS(5543), - [anon_sym_protected] = ACTIONS(5543), - [anon_sym_static_assert] = ACTIONS(5543), + [STATE(1337)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5892), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(1997)] = { - [sym_string_literal] = STATE(2000), - [sym_raw_string_literal] = STATE(2000), - [aux_sym_concatenated_string_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(5944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_LPAREN2] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5421), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_CARET] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_SEMI] = ACTIONS(5419), - [anon_sym___attribute__] = ACTIONS(5421), - [anon_sym___attribute] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_QMARK] = ACTIONS(5419), - [anon_sym_STAR_EQ] = ACTIONS(5419), - [anon_sym_SLASH_EQ] = ACTIONS(5419), - [anon_sym_PERCENT_EQ] = ACTIONS(5419), - [anon_sym_PLUS_EQ] = ACTIONS(5419), - [anon_sym_DASH_EQ] = ACTIONS(5419), - [anon_sym_LT_LT_EQ] = ACTIONS(5419), - [anon_sym_GT_GT_EQ] = ACTIONS(5419), - [anon_sym_AMP_EQ] = ACTIONS(5419), - [anon_sym_CARET_EQ] = ACTIONS(5419), - [anon_sym_PIPE_EQ] = ACTIONS(5419), - [anon_sym_and_eq] = ACTIONS(5421), - [anon_sym_or_eq] = ACTIONS(5421), - [anon_sym_xor_eq] = ACTIONS(5421), - [anon_sym_LT_EQ_GT] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5421), - [anon_sym_and] = ACTIONS(5421), - [anon_sym_bitor] = ACTIONS(5421), - [anon_sym_xor] = ACTIONS(5421), - [anon_sym_bitand] = ACTIONS(5421), - [anon_sym_not_eq] = ACTIONS(5421), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_DOT_STAR] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_L_DQUOTE] = ACTIONS(5940), - [anon_sym_u_DQUOTE] = ACTIONS(5940), - [anon_sym_U_DQUOTE] = ACTIONS(5940), - [anon_sym_u8_DQUOTE] = ACTIONS(5940), - [anon_sym_DQUOTE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5942), - [anon_sym_LR_DQUOTE] = ACTIONS(5942), - [anon_sym_uR_DQUOTE] = ACTIONS(5942), - [anon_sym_UR_DQUOTE] = ACTIONS(5942), - [anon_sym_u8R_DQUOTE] = ACTIONS(5942), - [sym_literal_suffix] = ACTIONS(5421), + [STATE(1338)] = { + [sym_expression] = STATE(7017), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5895), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(1998)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_private] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_friend] = ACTIONS(2751), - [anon_sym_public] = ACTIONS(2751), - [anon_sym_protected] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), + [STATE(1339)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5897), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(1999)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1340)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5899), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2000)] = { - [sym_string_literal] = STATE(2000), - [sym_raw_string_literal] = STATE(2000), - [aux_sym_concatenated_string_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(5946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), - [anon_sym_COMMA] = ACTIONS(5431), - [anon_sym_LPAREN2] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5433), - [anon_sym_STAR] = ACTIONS(5433), - [anon_sym_SLASH] = ACTIONS(5433), - [anon_sym_PERCENT] = ACTIONS(5433), - [anon_sym_PIPE_PIPE] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(5433), - [anon_sym_AMP] = ACTIONS(5433), - [anon_sym_EQ_EQ] = ACTIONS(5431), - [anon_sym_BANG_EQ] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5431), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_LT] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5433), - [anon_sym_GT_GT] = ACTIONS(5433), - [anon_sym_SEMI] = ACTIONS(5431), - [anon_sym___attribute__] = ACTIONS(5433), - [anon_sym___attribute] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5431), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_STAR_EQ] = ACTIONS(5431), - [anon_sym_SLASH_EQ] = ACTIONS(5431), - [anon_sym_PERCENT_EQ] = ACTIONS(5431), - [anon_sym_PLUS_EQ] = ACTIONS(5431), - [anon_sym_DASH_EQ] = ACTIONS(5431), - [anon_sym_LT_LT_EQ] = ACTIONS(5431), - [anon_sym_GT_GT_EQ] = ACTIONS(5431), - [anon_sym_AMP_EQ] = ACTIONS(5431), - [anon_sym_CARET_EQ] = ACTIONS(5431), - [anon_sym_PIPE_EQ] = ACTIONS(5431), - [anon_sym_and_eq] = ACTIONS(5433), - [anon_sym_or_eq] = ACTIONS(5433), - [anon_sym_xor_eq] = ACTIONS(5433), - [anon_sym_LT_EQ_GT] = ACTIONS(5431), - [anon_sym_or] = ACTIONS(5433), - [anon_sym_and] = ACTIONS(5433), - [anon_sym_bitor] = ACTIONS(5433), - [anon_sym_xor] = ACTIONS(5433), - [anon_sym_bitand] = ACTIONS(5433), - [anon_sym_not_eq] = ACTIONS(5433), - [anon_sym_DASH_DASH] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(5431), - [anon_sym_DOT] = ACTIONS(5433), - [anon_sym_DOT_STAR] = ACTIONS(5431), - [anon_sym_DASH_GT] = ACTIONS(5431), - [anon_sym_L_DQUOTE] = ACTIONS(5949), - [anon_sym_u_DQUOTE] = ACTIONS(5949), - [anon_sym_U_DQUOTE] = ACTIONS(5949), - [anon_sym_u8_DQUOTE] = ACTIONS(5949), - [anon_sym_DQUOTE] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5952), - [anon_sym_LR_DQUOTE] = ACTIONS(5952), - [anon_sym_uR_DQUOTE] = ACTIONS(5952), - [anon_sym_UR_DQUOTE] = ACTIONS(5952), - [anon_sym_u8R_DQUOTE] = ACTIONS(5952), - [sym_literal_suffix] = ACTIONS(5433), + [STATE(1341)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5901), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2001)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token2] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_private] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_friend] = ACTIONS(2649), - [anon_sym_public] = ACTIONS(2649), - [anon_sym_protected] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), + [STATE(1342)] = { + [sym_expression] = STATE(7029), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5903), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2002)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_friend] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_protected] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), + [STATE(1343)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5905), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2003)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token2] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_private] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_friend] = ACTIONS(3037), - [anon_sym_public] = ACTIONS(3037), - [anon_sym_protected] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), + [STATE(1344)] = { + [sym_expression] = STATE(6956), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5907), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2004)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token2] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_friend] = ACTIONS(2735), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), + [STATE(1345)] = { + [sym_expression] = STATE(6858), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5909), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2005)] = { - [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), - [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_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_friend] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), + [STATE(1346)] = { + [sym_expression] = STATE(5701), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2006)] = { - [sym_identifier] = ACTIONS(2637), - [aux_sym_preproc_def_token1] = ACTIONS(2637), - [aux_sym_preproc_if_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2637), - [sym_preproc_directive] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym___extension__] = ACTIONS(2637), - [anon_sym_typedef] = ACTIONS(2637), - [anon_sym_virtual] = ACTIONS(2637), - [anon_sym_extern] = ACTIONS(2637), - [anon_sym___attribute__] = ACTIONS(2637), - [anon_sym___attribute] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2639), - [anon_sym___declspec] = ACTIONS(2637), - [anon_sym___based] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2637), - [anon_sym_unsigned] = ACTIONS(2637), - [anon_sym_long] = ACTIONS(2637), - [anon_sym_short] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_register] = ACTIONS(2637), - [anon_sym_inline] = ACTIONS(2637), - [anon_sym___inline] = ACTIONS(2637), - [anon_sym___inline__] = ACTIONS(2637), - [anon_sym___forceinline] = ACTIONS(2637), - [anon_sym_thread_local] = ACTIONS(2637), - [anon_sym___thread] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_constexpr] = ACTIONS(2637), - [anon_sym_volatile] = ACTIONS(2637), - [anon_sym_restrict] = ACTIONS(2637), - [anon_sym___restrict__] = ACTIONS(2637), - [anon_sym__Atomic] = ACTIONS(2637), - [anon_sym__Noreturn] = ACTIONS(2637), - [anon_sym_noreturn] = ACTIONS(2637), - [anon_sym__Nonnull] = ACTIONS(2637), - [anon_sym_mutable] = ACTIONS(2637), - [anon_sym_constinit] = ACTIONS(2637), - [anon_sym_consteval] = ACTIONS(2637), - [anon_sym_alignas] = ACTIONS(2637), - [anon_sym__Alignas] = ACTIONS(2637), - [sym_primitive_type] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2637), - [anon_sym_union] = ACTIONS(2637), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2637), - [anon_sym_decltype] = ACTIONS(2637), - [anon_sym_explicit] = ACTIONS(2637), - [anon_sym_typename] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_template] = ACTIONS(2637), - [anon_sym_operator] = ACTIONS(2637), - [anon_sym_friend] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_static_assert] = ACTIONS(2637), + [STATE(1347)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5913), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2007)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1348)] = { + [sym_expression] = STATE(6891), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5915), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2008)] = { - [sym_identifier] = ACTIONS(2641), - [aux_sym_preproc_def_token1] = ACTIONS(2641), - [aux_sym_preproc_if_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2641), - [sym_preproc_directive] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AMP_AMP] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2641), - [anon_sym_virtual] = ACTIONS(2641), - [anon_sym_extern] = ACTIONS(2641), - [anon_sym___attribute__] = ACTIONS(2641), - [anon_sym___attribute] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2643), - [anon_sym___declspec] = ACTIONS(2641), - [anon_sym___based] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2641), - [anon_sym_unsigned] = ACTIONS(2641), - [anon_sym_long] = ACTIONS(2641), - [anon_sym_short] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_register] = ACTIONS(2641), - [anon_sym_inline] = ACTIONS(2641), - [anon_sym___inline] = ACTIONS(2641), - [anon_sym___inline__] = ACTIONS(2641), - [anon_sym___forceinline] = ACTIONS(2641), - [anon_sym_thread_local] = ACTIONS(2641), - [anon_sym___thread] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_constexpr] = ACTIONS(2641), - [anon_sym_volatile] = ACTIONS(2641), - [anon_sym_restrict] = ACTIONS(2641), - [anon_sym___restrict__] = ACTIONS(2641), - [anon_sym__Atomic] = ACTIONS(2641), - [anon_sym__Noreturn] = ACTIONS(2641), - [anon_sym_noreturn] = ACTIONS(2641), - [anon_sym__Nonnull] = ACTIONS(2641), - [anon_sym_mutable] = ACTIONS(2641), - [anon_sym_constinit] = ACTIONS(2641), - [anon_sym_consteval] = ACTIONS(2641), - [anon_sym_alignas] = ACTIONS(2641), - [anon_sym__Alignas] = ACTIONS(2641), - [sym_primitive_type] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2641), - [anon_sym_union] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2641), - [anon_sym_decltype] = ACTIONS(2641), - [anon_sym_explicit] = ACTIONS(2641), - [anon_sym_typename] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_template] = ACTIONS(2641), - [anon_sym_operator] = ACTIONS(2641), - [anon_sym_friend] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_static_assert] = ACTIONS(2641), + [STATE(1349)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5917), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2009)] = { - [sym_identifier] = ACTIONS(5547), - [aux_sym_preproc_def_token1] = ACTIONS(5547), - [aux_sym_preproc_if_token1] = ACTIONS(5547), - [aux_sym_preproc_if_token2] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5547), - [sym_preproc_directive] = ACTIONS(5547), - [anon_sym_LPAREN2] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_STAR] = ACTIONS(5549), - [anon_sym_AMP_AMP] = ACTIONS(5549), - [anon_sym_AMP] = ACTIONS(5547), - [anon_sym_SEMI] = ACTIONS(5549), - [anon_sym___extension__] = ACTIONS(5547), - [anon_sym_typedef] = ACTIONS(5547), - [anon_sym_virtual] = ACTIONS(5547), - [anon_sym_extern] = ACTIONS(5547), - [anon_sym___attribute__] = ACTIONS(5547), - [anon_sym___attribute] = ACTIONS(5547), - [anon_sym_using] = ACTIONS(5547), - [anon_sym_COLON_COLON] = ACTIONS(5549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym___declspec] = ACTIONS(5547), - [anon_sym___based] = ACTIONS(5547), - [anon_sym_signed] = ACTIONS(5547), - [anon_sym_unsigned] = ACTIONS(5547), - [anon_sym_long] = ACTIONS(5547), - [anon_sym_short] = ACTIONS(5547), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_static] = ACTIONS(5547), - [anon_sym_register] = ACTIONS(5547), - [anon_sym_inline] = ACTIONS(5547), - [anon_sym___inline] = ACTIONS(5547), - [anon_sym___inline__] = ACTIONS(5547), - [anon_sym___forceinline] = ACTIONS(5547), - [anon_sym_thread_local] = ACTIONS(5547), - [anon_sym___thread] = ACTIONS(5547), - [anon_sym_const] = ACTIONS(5547), - [anon_sym_constexpr] = ACTIONS(5547), - [anon_sym_volatile] = ACTIONS(5547), - [anon_sym_restrict] = ACTIONS(5547), - [anon_sym___restrict__] = ACTIONS(5547), - [anon_sym__Atomic] = ACTIONS(5547), - [anon_sym__Noreturn] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym__Nonnull] = ACTIONS(5547), - [anon_sym_mutable] = ACTIONS(5547), - [anon_sym_constinit] = ACTIONS(5547), - [anon_sym_consteval] = ACTIONS(5547), - [anon_sym_alignas] = ACTIONS(5547), - [anon_sym__Alignas] = ACTIONS(5547), - [sym_primitive_type] = ACTIONS(5547), - [anon_sym_enum] = ACTIONS(5547), - [anon_sym_class] = ACTIONS(5547), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_union] = ACTIONS(5547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5547), - [anon_sym_decltype] = ACTIONS(5547), - [anon_sym_explicit] = ACTIONS(5547), - [anon_sym_typename] = ACTIONS(5547), - [anon_sym_private] = ACTIONS(5547), - [anon_sym_template] = ACTIONS(5547), - [anon_sym_operator] = ACTIONS(5547), - [anon_sym_friend] = ACTIONS(5547), - [anon_sym_public] = ACTIONS(5547), - [anon_sym_protected] = ACTIONS(5547), - [anon_sym_static_assert] = ACTIONS(5547), + [STATE(1350)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5919), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2010)] = { - [sym_identifier] = ACTIONS(5567), - [aux_sym_preproc_def_token1] = ACTIONS(5567), - [aux_sym_preproc_if_token1] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5567), - [sym_preproc_directive] = ACTIONS(5567), - [anon_sym_LPAREN2] = ACTIONS(5569), - [anon_sym_TILDE] = ACTIONS(5569), - [anon_sym_STAR] = ACTIONS(5569), - [anon_sym_AMP_AMP] = ACTIONS(5569), - [anon_sym_AMP] = ACTIONS(5567), - [anon_sym_SEMI] = ACTIONS(5569), - [anon_sym___extension__] = ACTIONS(5567), - [anon_sym_typedef] = ACTIONS(5567), - [anon_sym_virtual] = ACTIONS(5567), - [anon_sym_extern] = ACTIONS(5567), - [anon_sym___attribute__] = ACTIONS(5567), - [anon_sym___attribute] = ACTIONS(5567), - [anon_sym_using] = ACTIONS(5567), - [anon_sym_COLON_COLON] = ACTIONS(5569), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5569), - [anon_sym___declspec] = ACTIONS(5567), - [anon_sym___based] = ACTIONS(5567), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_signed] = ACTIONS(5567), - [anon_sym_unsigned] = ACTIONS(5567), - [anon_sym_long] = ACTIONS(5567), - [anon_sym_short] = ACTIONS(5567), - [anon_sym_LBRACK] = ACTIONS(5567), - [anon_sym_static] = ACTIONS(5567), - [anon_sym_register] = ACTIONS(5567), - [anon_sym_inline] = ACTIONS(5567), - [anon_sym___inline] = ACTIONS(5567), - [anon_sym___inline__] = ACTIONS(5567), - [anon_sym___forceinline] = ACTIONS(5567), - [anon_sym_thread_local] = ACTIONS(5567), - [anon_sym___thread] = ACTIONS(5567), - [anon_sym_const] = ACTIONS(5567), - [anon_sym_constexpr] = ACTIONS(5567), - [anon_sym_volatile] = ACTIONS(5567), - [anon_sym_restrict] = ACTIONS(5567), - [anon_sym___restrict__] = ACTIONS(5567), - [anon_sym__Atomic] = ACTIONS(5567), - [anon_sym__Noreturn] = ACTIONS(5567), - [anon_sym_noreturn] = ACTIONS(5567), - [anon_sym__Nonnull] = ACTIONS(5567), - [anon_sym_mutable] = ACTIONS(5567), - [anon_sym_constinit] = ACTIONS(5567), - [anon_sym_consteval] = ACTIONS(5567), - [anon_sym_alignas] = ACTIONS(5567), - [anon_sym__Alignas] = ACTIONS(5567), - [sym_primitive_type] = ACTIONS(5567), - [anon_sym_enum] = ACTIONS(5567), - [anon_sym_class] = ACTIONS(5567), - [anon_sym_struct] = ACTIONS(5567), - [anon_sym_union] = ACTIONS(5567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5567), - [anon_sym_decltype] = ACTIONS(5567), - [anon_sym_explicit] = ACTIONS(5567), - [anon_sym_typename] = ACTIONS(5567), - [anon_sym_private] = ACTIONS(5567), - [anon_sym_template] = ACTIONS(5567), - [anon_sym_operator] = ACTIONS(5567), - [anon_sym_friend] = ACTIONS(5567), - [anon_sym_public] = ACTIONS(5567), - [anon_sym_protected] = ACTIONS(5567), - [anon_sym_static_assert] = ACTIONS(5567), + [STATE(1351)] = { + [sym_expression] = STATE(6943), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5921), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2011)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token2] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1352)] = { + [sym_expression] = STATE(6879), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2012)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token2] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1353)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5925), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2013)] = { - [sym_identifier] = ACTIONS(5571), - [aux_sym_preproc_def_token1] = ACTIONS(5571), - [aux_sym_preproc_if_token1] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5571), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5571), - [sym_preproc_directive] = ACTIONS(5571), - [anon_sym_LPAREN2] = ACTIONS(5573), - [anon_sym_TILDE] = ACTIONS(5573), - [anon_sym_STAR] = ACTIONS(5573), - [anon_sym_AMP_AMP] = ACTIONS(5573), - [anon_sym_AMP] = ACTIONS(5571), - [anon_sym_SEMI] = ACTIONS(5573), - [anon_sym___extension__] = ACTIONS(5571), - [anon_sym_typedef] = ACTIONS(5571), - [anon_sym_virtual] = ACTIONS(5571), - [anon_sym_extern] = ACTIONS(5571), - [anon_sym___attribute__] = ACTIONS(5571), - [anon_sym___attribute] = ACTIONS(5571), - [anon_sym_using] = ACTIONS(5571), - [anon_sym_COLON_COLON] = ACTIONS(5573), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5573), - [anon_sym___declspec] = ACTIONS(5571), - [anon_sym___based] = ACTIONS(5571), - [anon_sym_RBRACE] = ACTIONS(5573), - [anon_sym_signed] = ACTIONS(5571), - [anon_sym_unsigned] = ACTIONS(5571), - [anon_sym_long] = ACTIONS(5571), - [anon_sym_short] = ACTIONS(5571), - [anon_sym_LBRACK] = ACTIONS(5571), - [anon_sym_static] = ACTIONS(5571), - [anon_sym_register] = ACTIONS(5571), - [anon_sym_inline] = ACTIONS(5571), - [anon_sym___inline] = ACTIONS(5571), - [anon_sym___inline__] = ACTIONS(5571), - [anon_sym___forceinline] = ACTIONS(5571), - [anon_sym_thread_local] = ACTIONS(5571), - [anon_sym___thread] = ACTIONS(5571), - [anon_sym_const] = ACTIONS(5571), - [anon_sym_constexpr] = ACTIONS(5571), - [anon_sym_volatile] = ACTIONS(5571), - [anon_sym_restrict] = ACTIONS(5571), - [anon_sym___restrict__] = ACTIONS(5571), - [anon_sym__Atomic] = ACTIONS(5571), - [anon_sym__Noreturn] = ACTIONS(5571), - [anon_sym_noreturn] = ACTIONS(5571), - [anon_sym__Nonnull] = ACTIONS(5571), - [anon_sym_mutable] = ACTIONS(5571), - [anon_sym_constinit] = ACTIONS(5571), - [anon_sym_consteval] = ACTIONS(5571), - [anon_sym_alignas] = ACTIONS(5571), - [anon_sym__Alignas] = ACTIONS(5571), - [sym_primitive_type] = ACTIONS(5571), - [anon_sym_enum] = ACTIONS(5571), - [anon_sym_class] = ACTIONS(5571), - [anon_sym_struct] = ACTIONS(5571), - [anon_sym_union] = ACTIONS(5571), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5571), - [anon_sym_decltype] = ACTIONS(5571), - [anon_sym_explicit] = ACTIONS(5571), - [anon_sym_typename] = ACTIONS(5571), - [anon_sym_private] = ACTIONS(5571), - [anon_sym_template] = ACTIONS(5571), - [anon_sym_operator] = ACTIONS(5571), - [anon_sym_friend] = ACTIONS(5571), - [anon_sym_public] = ACTIONS(5571), - [anon_sym_protected] = ACTIONS(5571), - [anon_sym_static_assert] = ACTIONS(5571), + [STATE(1354)] = { + [sym_expression] = STATE(6920), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5927), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2014)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token2] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), + [STATE(1355)] = { + [sym_expression] = STATE(6880), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5929), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2015)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token2] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), - }, - [STATE(2016)] = { - [sym_identifier] = ACTIONS(5583), - [aux_sym_preproc_def_token1] = ACTIONS(5583), - [aux_sym_preproc_if_token1] = ACTIONS(5583), - [aux_sym_preproc_if_token2] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5583), - [sym_preproc_directive] = ACTIONS(5583), - [anon_sym_LPAREN2] = ACTIONS(5585), - [anon_sym_TILDE] = ACTIONS(5585), - [anon_sym_STAR] = ACTIONS(5585), - [anon_sym_AMP_AMP] = ACTIONS(5585), - [anon_sym_AMP] = ACTIONS(5583), - [anon_sym_SEMI] = ACTIONS(5585), - [anon_sym___extension__] = ACTIONS(5583), - [anon_sym_typedef] = ACTIONS(5583), - [anon_sym_virtual] = ACTIONS(5583), - [anon_sym_extern] = ACTIONS(5583), - [anon_sym___attribute__] = ACTIONS(5583), - [anon_sym___attribute] = ACTIONS(5583), - [anon_sym_using] = ACTIONS(5583), - [anon_sym_COLON_COLON] = ACTIONS(5585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5585), - [anon_sym___declspec] = ACTIONS(5583), - [anon_sym___based] = ACTIONS(5583), - [anon_sym_signed] = ACTIONS(5583), - [anon_sym_unsigned] = ACTIONS(5583), - [anon_sym_long] = ACTIONS(5583), - [anon_sym_short] = ACTIONS(5583), - [anon_sym_LBRACK] = ACTIONS(5583), - [anon_sym_static] = ACTIONS(5583), - [anon_sym_register] = ACTIONS(5583), - [anon_sym_inline] = ACTIONS(5583), - [anon_sym___inline] = ACTIONS(5583), - [anon_sym___inline__] = ACTIONS(5583), - [anon_sym___forceinline] = ACTIONS(5583), - [anon_sym_thread_local] = ACTIONS(5583), - [anon_sym___thread] = ACTIONS(5583), - [anon_sym_const] = ACTIONS(5583), - [anon_sym_constexpr] = ACTIONS(5583), - [anon_sym_volatile] = ACTIONS(5583), - [anon_sym_restrict] = ACTIONS(5583), - [anon_sym___restrict__] = ACTIONS(5583), - [anon_sym__Atomic] = ACTIONS(5583), - [anon_sym__Noreturn] = ACTIONS(5583), - [anon_sym_noreturn] = ACTIONS(5583), - [anon_sym__Nonnull] = ACTIONS(5583), - [anon_sym_mutable] = ACTIONS(5583), - [anon_sym_constinit] = ACTIONS(5583), - [anon_sym_consteval] = ACTIONS(5583), - [anon_sym_alignas] = ACTIONS(5583), - [anon_sym__Alignas] = ACTIONS(5583), - [sym_primitive_type] = ACTIONS(5583), - [anon_sym_enum] = ACTIONS(5583), - [anon_sym_class] = ACTIONS(5583), - [anon_sym_struct] = ACTIONS(5583), - [anon_sym_union] = ACTIONS(5583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5583), - [anon_sym_decltype] = ACTIONS(5583), - [anon_sym_explicit] = ACTIONS(5583), - [anon_sym_typename] = ACTIONS(5583), - [anon_sym_private] = ACTIONS(5583), - [anon_sym_template] = ACTIONS(5583), - [anon_sym_operator] = ACTIONS(5583), - [anon_sym_friend] = ACTIONS(5583), - [anon_sym_public] = ACTIONS(5583), - [anon_sym_protected] = ACTIONS(5583), - [anon_sym_static_assert] = ACTIONS(5583), - }, - [STATE(2017)] = { - [sym_identifier] = ACTIONS(5587), - [aux_sym_preproc_def_token1] = ACTIONS(5587), - [aux_sym_preproc_if_token1] = ACTIONS(5587), - [aux_sym_preproc_if_token2] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5587), - [sym_preproc_directive] = ACTIONS(5587), - [anon_sym_LPAREN2] = ACTIONS(5589), - [anon_sym_TILDE] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_AMP_AMP] = ACTIONS(5589), - [anon_sym_AMP] = ACTIONS(5587), - [anon_sym_SEMI] = ACTIONS(5589), - [anon_sym___extension__] = ACTIONS(5587), - [anon_sym_typedef] = ACTIONS(5587), - [anon_sym_virtual] = ACTIONS(5587), - [anon_sym_extern] = ACTIONS(5587), - [anon_sym___attribute__] = ACTIONS(5587), - [anon_sym___attribute] = ACTIONS(5587), - [anon_sym_using] = ACTIONS(5587), - [anon_sym_COLON_COLON] = ACTIONS(5589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), - [anon_sym___declspec] = ACTIONS(5587), - [anon_sym___based] = ACTIONS(5587), - [anon_sym_signed] = ACTIONS(5587), - [anon_sym_unsigned] = ACTIONS(5587), - [anon_sym_long] = ACTIONS(5587), - [anon_sym_short] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5587), - [anon_sym_register] = ACTIONS(5587), - [anon_sym_inline] = ACTIONS(5587), - [anon_sym___inline] = ACTIONS(5587), - [anon_sym___inline__] = ACTIONS(5587), - [anon_sym___forceinline] = ACTIONS(5587), - [anon_sym_thread_local] = ACTIONS(5587), - [anon_sym___thread] = ACTIONS(5587), - [anon_sym_const] = ACTIONS(5587), - [anon_sym_constexpr] = ACTIONS(5587), - [anon_sym_volatile] = ACTIONS(5587), - [anon_sym_restrict] = ACTIONS(5587), - [anon_sym___restrict__] = ACTIONS(5587), - [anon_sym__Atomic] = ACTIONS(5587), - [anon_sym__Noreturn] = ACTIONS(5587), - [anon_sym_noreturn] = ACTIONS(5587), - [anon_sym__Nonnull] = ACTIONS(5587), - [anon_sym_mutable] = ACTIONS(5587), - [anon_sym_constinit] = ACTIONS(5587), - [anon_sym_consteval] = ACTIONS(5587), - [anon_sym_alignas] = ACTIONS(5587), - [anon_sym__Alignas] = ACTIONS(5587), - [sym_primitive_type] = ACTIONS(5587), - [anon_sym_enum] = ACTIONS(5587), - [anon_sym_class] = ACTIONS(5587), - [anon_sym_struct] = ACTIONS(5587), - [anon_sym_union] = ACTIONS(5587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5587), - [anon_sym_decltype] = ACTIONS(5587), - [anon_sym_explicit] = ACTIONS(5587), - [anon_sym_typename] = ACTIONS(5587), - [anon_sym_private] = ACTIONS(5587), - [anon_sym_template] = ACTIONS(5587), - [anon_sym_operator] = ACTIONS(5587), - [anon_sym_friend] = ACTIONS(5587), - [anon_sym_public] = ACTIONS(5587), - [anon_sym_protected] = ACTIONS(5587), - [anon_sym_static_assert] = ACTIONS(5587), - }, - [STATE(2018)] = { - [sym_identifier] = ACTIONS(5575), - [aux_sym_preproc_def_token1] = ACTIONS(5575), - [aux_sym_preproc_if_token1] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5575), - [sym_preproc_directive] = ACTIONS(5575), - [anon_sym_LPAREN2] = ACTIONS(5577), - [anon_sym_TILDE] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5577), - [anon_sym_AMP_AMP] = ACTIONS(5577), - [anon_sym_AMP] = ACTIONS(5575), - [anon_sym_SEMI] = ACTIONS(5577), - [anon_sym___extension__] = ACTIONS(5575), - [anon_sym_typedef] = ACTIONS(5575), - [anon_sym_virtual] = ACTIONS(5575), - [anon_sym_extern] = ACTIONS(5575), - [anon_sym___attribute__] = ACTIONS(5575), - [anon_sym___attribute] = ACTIONS(5575), - [anon_sym_using] = ACTIONS(5575), - [anon_sym_COLON_COLON] = ACTIONS(5577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5577), - [anon_sym___declspec] = ACTIONS(5575), - [anon_sym___based] = ACTIONS(5575), - [anon_sym_RBRACE] = ACTIONS(5577), - [anon_sym_signed] = ACTIONS(5575), - [anon_sym_unsigned] = ACTIONS(5575), - [anon_sym_long] = ACTIONS(5575), - [anon_sym_short] = ACTIONS(5575), - [anon_sym_LBRACK] = ACTIONS(5575), - [anon_sym_static] = ACTIONS(5575), - [anon_sym_register] = ACTIONS(5575), - [anon_sym_inline] = ACTIONS(5575), - [anon_sym___inline] = ACTIONS(5575), - [anon_sym___inline__] = ACTIONS(5575), - [anon_sym___forceinline] = ACTIONS(5575), - [anon_sym_thread_local] = ACTIONS(5575), - [anon_sym___thread] = ACTIONS(5575), - [anon_sym_const] = ACTIONS(5575), - [anon_sym_constexpr] = ACTIONS(5575), - [anon_sym_volatile] = ACTIONS(5575), - [anon_sym_restrict] = ACTIONS(5575), - [anon_sym___restrict__] = ACTIONS(5575), - [anon_sym__Atomic] = ACTIONS(5575), - [anon_sym__Noreturn] = ACTIONS(5575), - [anon_sym_noreturn] = ACTIONS(5575), - [anon_sym__Nonnull] = ACTIONS(5575), - [anon_sym_mutable] = ACTIONS(5575), - [anon_sym_constinit] = ACTIONS(5575), - [anon_sym_consteval] = ACTIONS(5575), - [anon_sym_alignas] = ACTIONS(5575), - [anon_sym__Alignas] = ACTIONS(5575), - [sym_primitive_type] = ACTIONS(5575), - [anon_sym_enum] = ACTIONS(5575), - [anon_sym_class] = ACTIONS(5575), - [anon_sym_struct] = ACTIONS(5575), - [anon_sym_union] = ACTIONS(5575), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5575), - [anon_sym_decltype] = ACTIONS(5575), - [anon_sym_explicit] = ACTIONS(5575), - [anon_sym_typename] = ACTIONS(5575), - [anon_sym_private] = ACTIONS(5575), - [anon_sym_template] = ACTIONS(5575), - [anon_sym_operator] = ACTIONS(5575), - [anon_sym_friend] = ACTIONS(5575), - [anon_sym_public] = ACTIONS(5575), - [anon_sym_protected] = ACTIONS(5575), - [anon_sym_static_assert] = ACTIONS(5575), - }, - [STATE(2019)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_friend] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), + [STATE(1356)] = { + [sym_expression] = STATE(5630), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2020)] = { - [sym_identifier] = ACTIONS(2687), - [aux_sym_preproc_def_token1] = ACTIONS(2687), - [aux_sym_preproc_if_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2687), - [sym_preproc_directive] = ACTIONS(2687), - [anon_sym_LPAREN2] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym___extension__] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2687), - [anon_sym_virtual] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym___attribute__] = ACTIONS(2687), - [anon_sym___attribute] = ACTIONS(2687), - [anon_sym_using] = ACTIONS(2687), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2689), - [anon_sym___declspec] = ACTIONS(2687), - [anon_sym___based] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_signed] = ACTIONS(2687), - [anon_sym_unsigned] = ACTIONS(2687), - [anon_sym_long] = ACTIONS(2687), - [anon_sym_short] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_register] = ACTIONS(2687), - [anon_sym_inline] = ACTIONS(2687), - [anon_sym___inline] = ACTIONS(2687), - [anon_sym___inline__] = ACTIONS(2687), - [anon_sym___forceinline] = ACTIONS(2687), - [anon_sym_thread_local] = ACTIONS(2687), - [anon_sym___thread] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_constexpr] = ACTIONS(2687), - [anon_sym_volatile] = ACTIONS(2687), - [anon_sym_restrict] = ACTIONS(2687), - [anon_sym___restrict__] = ACTIONS(2687), - [anon_sym__Atomic] = ACTIONS(2687), - [anon_sym__Noreturn] = ACTIONS(2687), - [anon_sym_noreturn] = ACTIONS(2687), - [anon_sym__Nonnull] = ACTIONS(2687), - [anon_sym_mutable] = ACTIONS(2687), - [anon_sym_constinit] = ACTIONS(2687), - [anon_sym_consteval] = ACTIONS(2687), - [anon_sym_alignas] = ACTIONS(2687), - [anon_sym__Alignas] = ACTIONS(2687), - [sym_primitive_type] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2687), - [anon_sym_decltype] = ACTIONS(2687), - [anon_sym_explicit] = ACTIONS(2687), - [anon_sym_typename] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_template] = ACTIONS(2687), - [anon_sym_operator] = ACTIONS(2687), - [anon_sym_friend] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_protected] = ACTIONS(2687), - [anon_sym_static_assert] = ACTIONS(2687), + [STATE(1357)] = { + [sym_expression] = STATE(6847), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5931), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2021)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1358)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5933), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2022)] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym___extension__] = ACTIONS(2691), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym___attribute] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym___inline] = ACTIONS(2691), - [anon_sym___inline__] = ACTIONS(2691), - [anon_sym___forceinline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym___thread] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym___restrict__] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym__Noreturn] = ACTIONS(2691), - [anon_sym_noreturn] = ACTIONS(2691), - [anon_sym__Nonnull] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_alignas] = ACTIONS(2691), - [anon_sym__Alignas] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_friend] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_protected] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), + [STATE(1359)] = { + [sym_expression] = STATE(5630), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2023)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_RBRACE] = ACTIONS(5581), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), + [STATE(1360)] = { + [sym_expression] = STATE(6899), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5935), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2024)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_friend] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), + [STATE(1361)] = { + [sym_expression] = STATE(6908), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2025)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3268), - [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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_friend] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), + [STATE(1362)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5939), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2026)] = { - [sym_identifier] = ACTIONS(5579), - [aux_sym_preproc_def_token1] = ACTIONS(5579), - [aux_sym_preproc_if_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5579), - [sym_preproc_directive] = ACTIONS(5579), - [anon_sym_LPAREN2] = ACTIONS(5581), - [anon_sym_TILDE] = ACTIONS(5581), - [anon_sym_STAR] = ACTIONS(5581), - [anon_sym_AMP_AMP] = ACTIONS(5581), - [anon_sym_AMP] = ACTIONS(5579), - [anon_sym_SEMI] = ACTIONS(5581), - [anon_sym___extension__] = ACTIONS(5579), - [anon_sym_typedef] = ACTIONS(5579), - [anon_sym_virtual] = ACTIONS(5579), - [anon_sym_extern] = ACTIONS(5579), - [anon_sym___attribute__] = ACTIONS(5579), - [anon_sym___attribute] = ACTIONS(5579), - [anon_sym_using] = ACTIONS(5579), - [anon_sym_COLON_COLON] = ACTIONS(5581), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5581), - [anon_sym___declspec] = ACTIONS(5579), - [anon_sym___based] = ACTIONS(5579), - [anon_sym_RBRACE] = ACTIONS(5581), - [anon_sym_signed] = ACTIONS(5579), - [anon_sym_unsigned] = ACTIONS(5579), - [anon_sym_long] = ACTIONS(5579), - [anon_sym_short] = ACTIONS(5579), - [anon_sym_LBRACK] = ACTIONS(5579), - [anon_sym_static] = ACTIONS(5579), - [anon_sym_register] = ACTIONS(5579), - [anon_sym_inline] = ACTIONS(5579), - [anon_sym___inline] = ACTIONS(5579), - [anon_sym___inline__] = ACTIONS(5579), - [anon_sym___forceinline] = ACTIONS(5579), - [anon_sym_thread_local] = ACTIONS(5579), - [anon_sym___thread] = ACTIONS(5579), - [anon_sym_const] = ACTIONS(5579), - [anon_sym_constexpr] = ACTIONS(5579), - [anon_sym_volatile] = ACTIONS(5579), - [anon_sym_restrict] = ACTIONS(5579), - [anon_sym___restrict__] = ACTIONS(5579), - [anon_sym__Atomic] = ACTIONS(5579), - [anon_sym__Noreturn] = ACTIONS(5579), - [anon_sym_noreturn] = ACTIONS(5579), - [anon_sym__Nonnull] = ACTIONS(5579), - [anon_sym_mutable] = ACTIONS(5579), - [anon_sym_constinit] = ACTIONS(5579), - [anon_sym_consteval] = ACTIONS(5579), - [anon_sym_alignas] = ACTIONS(5579), - [anon_sym__Alignas] = ACTIONS(5579), - [sym_primitive_type] = ACTIONS(5579), - [anon_sym_enum] = ACTIONS(5579), - [anon_sym_class] = ACTIONS(5579), - [anon_sym_struct] = ACTIONS(5579), - [anon_sym_union] = ACTIONS(5579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5579), - [anon_sym_decltype] = ACTIONS(5579), - [anon_sym_explicit] = ACTIONS(5579), - [anon_sym_typename] = ACTIONS(5579), - [anon_sym_private] = ACTIONS(5579), - [anon_sym_template] = ACTIONS(5579), - [anon_sym_operator] = ACTIONS(5579), - [anon_sym_friend] = ACTIONS(5579), - [anon_sym_public] = ACTIONS(5579), - [anon_sym_protected] = ACTIONS(5579), - [anon_sym_static_assert] = ACTIONS(5579), + [STATE(1363)] = { + [sym_expression] = STATE(6942), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5941), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2027)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(3928), - [sym__declarator] = STATE(6561), - [sym__abstract_declarator] = STATE(6856), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2696), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3333), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2696), - [aux_sym_pointer_declarator_repeat1] = STATE(3928), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5955), - [anon_sym_AMP_AMP] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5959), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5709), - [anon_sym___attribute] = ACTIONS(5709), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5707), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1364)] = { + [sym_expression] = STATE(6440), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(5945), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2028)] = { - [sym__declaration_modifiers] = STATE(3342), - [sym_attribute_specifier] = STATE(3342), - [sym_attribute_declaration] = STATE(3342), - [sym_ms_declspec_modifier] = STATE(3342), - [sym_storage_class_specifier] = STATE(3342), - [sym_type_qualifier] = STATE(3342), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(4260), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(3484), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6813), - [sym_qualified_type_identifier] = STATE(3590), - [aux_sym__declaration_specifiers_repeat1] = STATE(3342), - [aux_sym_sized_type_specifier_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(3917), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5961), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(3927), - [anon_sym_unsigned] = ACTIONS(3927), - [anon_sym_long] = ACTIONS(3927), - [anon_sym_short] = ACTIONS(3927), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(3929), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3933), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(1268), + [STATE(1365)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5947), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2029)] = { - [sym_identifier] = ACTIONS(5559), - [aux_sym_preproc_def_token1] = ACTIONS(5559), - [aux_sym_preproc_if_token1] = ACTIONS(5559), - [aux_sym_preproc_if_token2] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5559), - [sym_preproc_directive] = ACTIONS(5559), - [anon_sym_LPAREN2] = ACTIONS(5561), - [anon_sym_TILDE] = ACTIONS(5561), - [anon_sym_STAR] = ACTIONS(5561), - [anon_sym_AMP_AMP] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5559), - [anon_sym_SEMI] = ACTIONS(5561), - [anon_sym___extension__] = ACTIONS(5559), - [anon_sym_typedef] = ACTIONS(5559), - [anon_sym_virtual] = ACTIONS(5559), - [anon_sym_extern] = ACTIONS(5559), - [anon_sym___attribute__] = ACTIONS(5559), - [anon_sym___attribute] = ACTIONS(5559), - [anon_sym_using] = ACTIONS(5559), - [anon_sym_COLON_COLON] = ACTIONS(5561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5561), - [anon_sym___declspec] = ACTIONS(5559), - [anon_sym___based] = ACTIONS(5559), - [anon_sym_signed] = ACTIONS(5559), - [anon_sym_unsigned] = ACTIONS(5559), - [anon_sym_long] = ACTIONS(5559), - [anon_sym_short] = ACTIONS(5559), - [anon_sym_LBRACK] = ACTIONS(5559), - [anon_sym_static] = ACTIONS(5559), - [anon_sym_register] = ACTIONS(5559), - [anon_sym_inline] = ACTIONS(5559), - [anon_sym___inline] = ACTIONS(5559), - [anon_sym___inline__] = ACTIONS(5559), - [anon_sym___forceinline] = ACTIONS(5559), - [anon_sym_thread_local] = ACTIONS(5559), - [anon_sym___thread] = ACTIONS(5559), - [anon_sym_const] = ACTIONS(5559), - [anon_sym_constexpr] = ACTIONS(5559), - [anon_sym_volatile] = ACTIONS(5559), - [anon_sym_restrict] = ACTIONS(5559), - [anon_sym___restrict__] = ACTIONS(5559), - [anon_sym__Atomic] = ACTIONS(5559), - [anon_sym__Noreturn] = ACTIONS(5559), - [anon_sym_noreturn] = ACTIONS(5559), - [anon_sym__Nonnull] = ACTIONS(5559), - [anon_sym_mutable] = ACTIONS(5559), - [anon_sym_constinit] = ACTIONS(5559), - [anon_sym_consteval] = ACTIONS(5559), - [anon_sym_alignas] = ACTIONS(5559), - [anon_sym__Alignas] = ACTIONS(5559), - [sym_primitive_type] = ACTIONS(5559), - [anon_sym_enum] = ACTIONS(5559), - [anon_sym_class] = ACTIONS(5559), - [anon_sym_struct] = ACTIONS(5559), - [anon_sym_union] = ACTIONS(5559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5559), - [anon_sym_decltype] = ACTIONS(5559), - [anon_sym_explicit] = ACTIONS(5559), - [anon_sym_typename] = ACTIONS(5559), - [anon_sym_private] = ACTIONS(5559), - [anon_sym_template] = ACTIONS(5559), - [anon_sym_operator] = ACTIONS(5559), - [anon_sym_friend] = ACTIONS(5559), - [anon_sym_public] = ACTIONS(5559), - [anon_sym_protected] = ACTIONS(5559), - [anon_sym_static_assert] = ACTIONS(5559), + [STATE(1366)] = { + [sym_expression] = STATE(5631), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2030)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3312), - [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_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym___based] = ACTIONS(3310), - [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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_friend] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), + [STATE(1367)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5952), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2031)] = { - [sym_string_literal] = STATE(3175), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___attribute__] = ACTIONS(4161), - [anon_sym___attribute] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(5963), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(5965), - [anon_sym_SLASH_EQ] = ACTIONS(5965), - [anon_sym_PERCENT_EQ] = ACTIONS(5965), - [anon_sym_PLUS_EQ] = ACTIONS(5965), - [anon_sym_DASH_EQ] = ACTIONS(5965), - [anon_sym_LT_LT_EQ] = ACTIONS(5965), - [anon_sym_GT_GT_EQ] = ACTIONS(5965), - [anon_sym_AMP_EQ] = ACTIONS(5965), - [anon_sym_CARET_EQ] = ACTIONS(5965), - [anon_sym_PIPE_EQ] = ACTIONS(5965), - [anon_sym_and_eq] = ACTIONS(5965), - [anon_sym_or_eq] = ACTIONS(5965), - [anon_sym_xor_eq] = ACTIONS(5965), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(5967), - [anon_sym_u_DQUOTE] = ACTIONS(5967), - [anon_sym_U_DQUOTE] = ACTIONS(5967), - [anon_sym_u8_DQUOTE] = ACTIONS(5967), - [anon_sym_DQUOTE] = ACTIONS(5967), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5969), - [anon_sym_LR_DQUOTE] = ACTIONS(5969), - [anon_sym_uR_DQUOTE] = ACTIONS(5969), - [anon_sym_UR_DQUOTE] = ACTIONS(5969), - [anon_sym_u8R_DQUOTE] = ACTIONS(5969), + [STATE(1368)] = { + [sym_expression] = STATE(5631), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2032)] = { - [sym_identifier] = ACTIONS(5497), - [aux_sym_preproc_def_token1] = ACTIONS(5497), - [aux_sym_preproc_if_token1] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), - [sym_preproc_directive] = ACTIONS(5497), - [anon_sym_LPAREN2] = ACTIONS(5499), - [anon_sym_TILDE] = ACTIONS(5499), - [anon_sym_STAR] = ACTIONS(5499), - [anon_sym_AMP_AMP] = ACTIONS(5499), - [anon_sym_AMP] = ACTIONS(5497), - [anon_sym_SEMI] = ACTIONS(5499), - [anon_sym___extension__] = ACTIONS(5497), - [anon_sym_typedef] = ACTIONS(5497), - [anon_sym_virtual] = ACTIONS(5497), - [anon_sym_extern] = ACTIONS(5497), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_using] = ACTIONS(5497), - [anon_sym_COLON_COLON] = ACTIONS(5499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5499), - [anon_sym___declspec] = ACTIONS(5497), - [anon_sym___based] = ACTIONS(5497), - [anon_sym_RBRACE] = ACTIONS(5499), - [anon_sym_signed] = ACTIONS(5497), - [anon_sym_unsigned] = ACTIONS(5497), - [anon_sym_long] = ACTIONS(5497), - [anon_sym_short] = ACTIONS(5497), - [anon_sym_LBRACK] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5497), - [anon_sym_register] = ACTIONS(5497), - [anon_sym_inline] = ACTIONS(5497), - [anon_sym___inline] = ACTIONS(5497), - [anon_sym___inline__] = ACTIONS(5497), - [anon_sym___forceinline] = ACTIONS(5497), - [anon_sym_thread_local] = ACTIONS(5497), - [anon_sym___thread] = ACTIONS(5497), - [anon_sym_const] = ACTIONS(5497), - [anon_sym_constexpr] = ACTIONS(5497), - [anon_sym_volatile] = ACTIONS(5497), - [anon_sym_restrict] = ACTIONS(5497), - [anon_sym___restrict__] = ACTIONS(5497), - [anon_sym__Atomic] = ACTIONS(5497), - [anon_sym__Noreturn] = ACTIONS(5497), - [anon_sym_noreturn] = ACTIONS(5497), - [anon_sym__Nonnull] = ACTIONS(5497), - [anon_sym_mutable] = ACTIONS(5497), - [anon_sym_constinit] = ACTIONS(5497), - [anon_sym_consteval] = ACTIONS(5497), - [anon_sym_alignas] = ACTIONS(5497), - [anon_sym__Alignas] = ACTIONS(5497), - [sym_primitive_type] = ACTIONS(5497), - [anon_sym_enum] = ACTIONS(5497), - [anon_sym_class] = ACTIONS(5497), - [anon_sym_struct] = ACTIONS(5497), - [anon_sym_union] = ACTIONS(5497), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5497), - [anon_sym_decltype] = ACTIONS(5497), - [anon_sym_explicit] = ACTIONS(5497), - [anon_sym_typename] = ACTIONS(5497), - [anon_sym_private] = ACTIONS(5497), - [anon_sym_template] = ACTIONS(5497), - [anon_sym_operator] = ACTIONS(5497), - [anon_sym_friend] = ACTIONS(5497), - [anon_sym_public] = ACTIONS(5497), - [anon_sym_protected] = ACTIONS(5497), - [anon_sym_static_assert] = ACTIONS(5497), + [STATE(1369)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5954), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2033)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = ACTIONS(3318), - [anon_sym_LPAREN2] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_AMP_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3320), - [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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_friend] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), + [STATE(1370)] = { + [sym_expression] = STATE(4973), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5958), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2034)] = { - [sym_identifier] = ACTIONS(5501), - [aux_sym_preproc_def_token1] = ACTIONS(5501), - [aux_sym_preproc_if_token1] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5501), - [sym_preproc_directive] = ACTIONS(5501), - [anon_sym_LPAREN2] = ACTIONS(5503), - [anon_sym_TILDE] = ACTIONS(5503), - [anon_sym_STAR] = ACTIONS(5503), - [anon_sym_AMP_AMP] = ACTIONS(5503), - [anon_sym_AMP] = ACTIONS(5501), - [anon_sym_SEMI] = ACTIONS(5503), - [anon_sym___extension__] = ACTIONS(5501), - [anon_sym_typedef] = ACTIONS(5501), - [anon_sym_virtual] = ACTIONS(5501), - [anon_sym_extern] = ACTIONS(5501), - [anon_sym___attribute__] = ACTIONS(5501), - [anon_sym___attribute] = ACTIONS(5501), - [anon_sym_using] = ACTIONS(5501), - [anon_sym_COLON_COLON] = ACTIONS(5503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5503), - [anon_sym___declspec] = ACTIONS(5501), - [anon_sym___based] = ACTIONS(5501), - [anon_sym_RBRACE] = ACTIONS(5503), - [anon_sym_signed] = ACTIONS(5501), - [anon_sym_unsigned] = ACTIONS(5501), - [anon_sym_long] = ACTIONS(5501), - [anon_sym_short] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(5501), - [anon_sym_static] = ACTIONS(5501), - [anon_sym_register] = ACTIONS(5501), - [anon_sym_inline] = ACTIONS(5501), - [anon_sym___inline] = ACTIONS(5501), - [anon_sym___inline__] = ACTIONS(5501), - [anon_sym___forceinline] = ACTIONS(5501), - [anon_sym_thread_local] = ACTIONS(5501), - [anon_sym___thread] = ACTIONS(5501), - [anon_sym_const] = ACTIONS(5501), - [anon_sym_constexpr] = ACTIONS(5501), - [anon_sym_volatile] = ACTIONS(5501), - [anon_sym_restrict] = ACTIONS(5501), - [anon_sym___restrict__] = ACTIONS(5501), - [anon_sym__Atomic] = ACTIONS(5501), - [anon_sym__Noreturn] = ACTIONS(5501), - [anon_sym_noreturn] = ACTIONS(5501), - [anon_sym__Nonnull] = ACTIONS(5501), - [anon_sym_mutable] = ACTIONS(5501), - [anon_sym_constinit] = ACTIONS(5501), - [anon_sym_consteval] = ACTIONS(5501), - [anon_sym_alignas] = ACTIONS(5501), - [anon_sym__Alignas] = ACTIONS(5501), - [sym_primitive_type] = ACTIONS(5501), - [anon_sym_enum] = ACTIONS(5501), - [anon_sym_class] = ACTIONS(5501), - [anon_sym_struct] = ACTIONS(5501), - [anon_sym_union] = ACTIONS(5501), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5501), - [anon_sym_decltype] = ACTIONS(5501), - [anon_sym_explicit] = ACTIONS(5501), - [anon_sym_typename] = ACTIONS(5501), - [anon_sym_private] = ACTIONS(5501), - [anon_sym_template] = ACTIONS(5501), - [anon_sym_operator] = ACTIONS(5501), - [anon_sym_friend] = ACTIONS(5501), - [anon_sym_public] = ACTIONS(5501), - [anon_sym_protected] = ACTIONS(5501), - [anon_sym_static_assert] = ACTIONS(5501), + [STATE(1371)] = { + [sym_expression] = STATE(5631), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5736), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2035)] = { - [sym_identifier] = ACTIONS(5591), - [aux_sym_preproc_def_token1] = ACTIONS(5591), - [aux_sym_preproc_if_token1] = ACTIONS(5591), - [aux_sym_preproc_if_token2] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5591), - [sym_preproc_directive] = ACTIONS(5591), - [anon_sym_LPAREN2] = ACTIONS(5593), - [anon_sym_TILDE] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5593), - [anon_sym_AMP_AMP] = ACTIONS(5593), - [anon_sym_AMP] = ACTIONS(5591), - [anon_sym_SEMI] = ACTIONS(5593), - [anon_sym___extension__] = ACTIONS(5591), - [anon_sym_typedef] = ACTIONS(5591), - [anon_sym_virtual] = ACTIONS(5591), - [anon_sym_extern] = ACTIONS(5591), - [anon_sym___attribute__] = ACTIONS(5591), - [anon_sym___attribute] = ACTIONS(5591), - [anon_sym_using] = ACTIONS(5591), - [anon_sym_COLON_COLON] = ACTIONS(5593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), - [anon_sym___declspec] = ACTIONS(5591), - [anon_sym___based] = ACTIONS(5591), - [anon_sym_signed] = ACTIONS(5591), - [anon_sym_unsigned] = ACTIONS(5591), - [anon_sym_long] = ACTIONS(5591), - [anon_sym_short] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5591), - [anon_sym_static] = ACTIONS(5591), - [anon_sym_register] = ACTIONS(5591), - [anon_sym_inline] = ACTIONS(5591), - [anon_sym___inline] = ACTIONS(5591), - [anon_sym___inline__] = ACTIONS(5591), - [anon_sym___forceinline] = ACTIONS(5591), - [anon_sym_thread_local] = ACTIONS(5591), - [anon_sym___thread] = ACTIONS(5591), - [anon_sym_const] = ACTIONS(5591), - [anon_sym_constexpr] = ACTIONS(5591), - [anon_sym_volatile] = ACTIONS(5591), - [anon_sym_restrict] = ACTIONS(5591), - [anon_sym___restrict__] = ACTIONS(5591), - [anon_sym__Atomic] = ACTIONS(5591), - [anon_sym__Noreturn] = ACTIONS(5591), - [anon_sym_noreturn] = ACTIONS(5591), - [anon_sym__Nonnull] = ACTIONS(5591), - [anon_sym_mutable] = ACTIONS(5591), - [anon_sym_constinit] = ACTIONS(5591), - [anon_sym_consteval] = ACTIONS(5591), - [anon_sym_alignas] = ACTIONS(5591), - [anon_sym__Alignas] = ACTIONS(5591), - [sym_primitive_type] = ACTIONS(5591), - [anon_sym_enum] = ACTIONS(5591), - [anon_sym_class] = ACTIONS(5591), - [anon_sym_struct] = ACTIONS(5591), - [anon_sym_union] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5591), - [anon_sym_decltype] = ACTIONS(5591), - [anon_sym_explicit] = ACTIONS(5591), - [anon_sym_typename] = ACTIONS(5591), - [anon_sym_private] = ACTIONS(5591), - [anon_sym_template] = ACTIONS(5591), - [anon_sym_operator] = ACTIONS(5591), - [anon_sym_friend] = ACTIONS(5591), - [anon_sym_public] = ACTIONS(5591), - [anon_sym_protected] = ACTIONS(5591), - [anon_sym_static_assert] = ACTIONS(5591), + [STATE(1372)] = { + [sym_expression] = STATE(6958), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5960), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2036)] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym___extension__] = ACTIONS(2747), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym___attribute] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym___inline] = ACTIONS(2747), - [anon_sym___inline__] = ACTIONS(2747), - [anon_sym___forceinline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym___thread] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym___restrict__] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym__Noreturn] = ACTIONS(2747), - [anon_sym_noreturn] = ACTIONS(2747), - [anon_sym__Nonnull] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_alignas] = ACTIONS(2747), - [anon_sym__Alignas] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_private] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_friend] = ACTIONS(2747), - [anon_sym_public] = ACTIONS(2747), - [anon_sym_protected] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), + [STATE(1373)] = { + [sym_expression] = STATE(7010), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(5962), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2037)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_friend] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), + [STATE(1374)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5741), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2038)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3282), - [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_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_friend] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), + [STATE(1375)] = { + [sym_expression] = STATE(5636), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5746), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2039)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5629), - [anon_sym_COMMA] = ACTIONS(5629), - [anon_sym_RPAREN] = ACTIONS(5629), - [aux_sym_preproc_if_token2] = ACTIONS(5629), - [aux_sym_preproc_else_token1] = ACTIONS(5629), - [aux_sym_preproc_elif_token1] = ACTIONS(5627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5629), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_DASH] = ACTIONS(5627), - [anon_sym_PLUS] = ACTIONS(5627), - [anon_sym_STAR] = ACTIONS(5627), - [anon_sym_SLASH] = ACTIONS(5627), - [anon_sym_PERCENT] = ACTIONS(5627), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_PIPE] = ACTIONS(5627), - [anon_sym_CARET] = ACTIONS(5627), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym_EQ_EQ] = ACTIONS(5629), - [anon_sym_BANG_EQ] = ACTIONS(5629), - [anon_sym_GT] = ACTIONS(5627), - [anon_sym_GT_EQ] = ACTIONS(5629), - [anon_sym_LT_EQ] = ACTIONS(5627), - [anon_sym_LT] = ACTIONS(5627), - [anon_sym_LT_LT] = ACTIONS(5627), - [anon_sym_GT_GT] = ACTIONS(5627), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_COLON] = ACTIONS(5629), - [anon_sym_LBRACE] = ACTIONS(5629), - [anon_sym_RBRACE] = ACTIONS(5629), - [anon_sym_LBRACK] = ACTIONS(5629), - [anon_sym_RBRACK] = ACTIONS(5629), - [anon_sym_EQ] = ACTIONS(5627), - [anon_sym_QMARK] = ACTIONS(5629), - [anon_sym_STAR_EQ] = ACTIONS(5629), - [anon_sym_SLASH_EQ] = ACTIONS(5629), - [anon_sym_PERCENT_EQ] = ACTIONS(5629), - [anon_sym_PLUS_EQ] = ACTIONS(5629), - [anon_sym_DASH_EQ] = ACTIONS(5629), - [anon_sym_LT_LT_EQ] = ACTIONS(5629), - [anon_sym_GT_GT_EQ] = ACTIONS(5629), - [anon_sym_AMP_EQ] = ACTIONS(5629), - [anon_sym_CARET_EQ] = ACTIONS(5629), - [anon_sym_PIPE_EQ] = ACTIONS(5629), - [anon_sym_and_eq] = ACTIONS(5627), - [anon_sym_or_eq] = ACTIONS(5627), - [anon_sym_xor_eq] = ACTIONS(5627), - [anon_sym_LT_EQ_GT] = ACTIONS(5629), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [anon_sym_bitor] = ACTIONS(5627), - [anon_sym_xor] = ACTIONS(5627), - [anon_sym_bitand] = ACTIONS(5627), - [anon_sym_not_eq] = ACTIONS(5627), - [anon_sym_DASH_DASH] = ACTIONS(5629), - [anon_sym_PLUS_PLUS] = ACTIONS(5629), - [anon_sym_DOT] = ACTIONS(5627), - [anon_sym_DOT_STAR] = ACTIONS(5629), - [anon_sym_DASH_GT] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_final] = ACTIONS(5627), - [anon_sym_override] = ACTIONS(5627), + [STATE(1376)] = { + [sym_expression] = STATE(5637), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5749), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2040)] = { - [sym_identifier] = ACTIONS(5583), - [aux_sym_preproc_def_token1] = ACTIONS(5583), - [aux_sym_preproc_if_token1] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5583), - [sym_preproc_directive] = ACTIONS(5583), - [anon_sym_LPAREN2] = ACTIONS(5585), - [anon_sym_TILDE] = ACTIONS(5585), - [anon_sym_STAR] = ACTIONS(5585), - [anon_sym_AMP_AMP] = ACTIONS(5585), - [anon_sym_AMP] = ACTIONS(5583), - [anon_sym_SEMI] = ACTIONS(5585), - [anon_sym___extension__] = ACTIONS(5583), - [anon_sym_typedef] = ACTIONS(5583), - [anon_sym_virtual] = ACTIONS(5583), - [anon_sym_extern] = ACTIONS(5583), - [anon_sym___attribute__] = ACTIONS(5583), - [anon_sym___attribute] = ACTIONS(5583), - [anon_sym_using] = ACTIONS(5583), - [anon_sym_COLON_COLON] = ACTIONS(5585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5585), - [anon_sym___declspec] = ACTIONS(5583), - [anon_sym___based] = ACTIONS(5583), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_signed] = ACTIONS(5583), - [anon_sym_unsigned] = ACTIONS(5583), - [anon_sym_long] = ACTIONS(5583), - [anon_sym_short] = ACTIONS(5583), - [anon_sym_LBRACK] = ACTIONS(5583), - [anon_sym_static] = ACTIONS(5583), - [anon_sym_register] = ACTIONS(5583), - [anon_sym_inline] = ACTIONS(5583), - [anon_sym___inline] = ACTIONS(5583), - [anon_sym___inline__] = ACTIONS(5583), - [anon_sym___forceinline] = ACTIONS(5583), - [anon_sym_thread_local] = ACTIONS(5583), - [anon_sym___thread] = ACTIONS(5583), - [anon_sym_const] = ACTIONS(5583), - [anon_sym_constexpr] = ACTIONS(5583), - [anon_sym_volatile] = ACTIONS(5583), - [anon_sym_restrict] = ACTIONS(5583), - [anon_sym___restrict__] = ACTIONS(5583), - [anon_sym__Atomic] = ACTIONS(5583), - [anon_sym__Noreturn] = ACTIONS(5583), - [anon_sym_noreturn] = ACTIONS(5583), - [anon_sym__Nonnull] = ACTIONS(5583), - [anon_sym_mutable] = ACTIONS(5583), - [anon_sym_constinit] = ACTIONS(5583), - [anon_sym_consteval] = ACTIONS(5583), - [anon_sym_alignas] = ACTIONS(5583), - [anon_sym__Alignas] = ACTIONS(5583), - [sym_primitive_type] = ACTIONS(5583), - [anon_sym_enum] = ACTIONS(5583), - [anon_sym_class] = ACTIONS(5583), - [anon_sym_struct] = ACTIONS(5583), - [anon_sym_union] = ACTIONS(5583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5583), - [anon_sym_decltype] = ACTIONS(5583), - [anon_sym_explicit] = ACTIONS(5583), - [anon_sym_typename] = ACTIONS(5583), - [anon_sym_private] = ACTIONS(5583), - [anon_sym_template] = ACTIONS(5583), - [anon_sym_operator] = ACTIONS(5583), - [anon_sym_friend] = ACTIONS(5583), - [anon_sym_public] = ACTIONS(5583), - [anon_sym_protected] = ACTIONS(5583), - [anon_sym_static_assert] = ACTIONS(5583), + [STATE(1377)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5964), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2041)] = { - [sym_identifier] = ACTIONS(5587), - [aux_sym_preproc_def_token1] = ACTIONS(5587), - [aux_sym_preproc_if_token1] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5587), - [sym_preproc_directive] = ACTIONS(5587), - [anon_sym_LPAREN2] = ACTIONS(5589), - [anon_sym_TILDE] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_AMP_AMP] = ACTIONS(5589), - [anon_sym_AMP] = ACTIONS(5587), - [anon_sym_SEMI] = ACTIONS(5589), - [anon_sym___extension__] = ACTIONS(5587), - [anon_sym_typedef] = ACTIONS(5587), - [anon_sym_virtual] = ACTIONS(5587), - [anon_sym_extern] = ACTIONS(5587), - [anon_sym___attribute__] = ACTIONS(5587), - [anon_sym___attribute] = ACTIONS(5587), - [anon_sym_using] = ACTIONS(5587), - [anon_sym_COLON_COLON] = ACTIONS(5589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), - [anon_sym___declspec] = ACTIONS(5587), - [anon_sym___based] = ACTIONS(5587), - [anon_sym_RBRACE] = ACTIONS(5589), - [anon_sym_signed] = ACTIONS(5587), - [anon_sym_unsigned] = ACTIONS(5587), - [anon_sym_long] = ACTIONS(5587), - [anon_sym_short] = ACTIONS(5587), - [anon_sym_LBRACK] = ACTIONS(5587), - [anon_sym_static] = ACTIONS(5587), - [anon_sym_register] = ACTIONS(5587), - [anon_sym_inline] = ACTIONS(5587), - [anon_sym___inline] = ACTIONS(5587), - [anon_sym___inline__] = ACTIONS(5587), - [anon_sym___forceinline] = ACTIONS(5587), - [anon_sym_thread_local] = ACTIONS(5587), - [anon_sym___thread] = ACTIONS(5587), - [anon_sym_const] = ACTIONS(5587), - [anon_sym_constexpr] = ACTIONS(5587), - [anon_sym_volatile] = ACTIONS(5587), - [anon_sym_restrict] = ACTIONS(5587), - [anon_sym___restrict__] = ACTIONS(5587), - [anon_sym__Atomic] = ACTIONS(5587), - [anon_sym__Noreturn] = ACTIONS(5587), - [anon_sym_noreturn] = ACTIONS(5587), - [anon_sym__Nonnull] = ACTIONS(5587), - [anon_sym_mutable] = ACTIONS(5587), - [anon_sym_constinit] = ACTIONS(5587), - [anon_sym_consteval] = ACTIONS(5587), - [anon_sym_alignas] = ACTIONS(5587), - [anon_sym__Alignas] = ACTIONS(5587), - [sym_primitive_type] = ACTIONS(5587), - [anon_sym_enum] = ACTIONS(5587), - [anon_sym_class] = ACTIONS(5587), - [anon_sym_struct] = ACTIONS(5587), - [anon_sym_union] = ACTIONS(5587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5587), - [anon_sym_decltype] = ACTIONS(5587), - [anon_sym_explicit] = ACTIONS(5587), - [anon_sym_typename] = ACTIONS(5587), - [anon_sym_private] = ACTIONS(5587), - [anon_sym_template] = ACTIONS(5587), - [anon_sym_operator] = ACTIONS(5587), - [anon_sym_friend] = ACTIONS(5587), - [anon_sym_public] = ACTIONS(5587), - [anon_sym_protected] = ACTIONS(5587), - [anon_sym_static_assert] = ACTIONS(5587), + [STATE(1378)] = { + [sym_expression] = STATE(5638), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2042)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3290), - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_friend] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), + [STATE(1379)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5966), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2043)] = { - [sym_identifier] = ACTIONS(5591), - [aux_sym_preproc_def_token1] = ACTIONS(5591), - [aux_sym_preproc_if_token1] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5591), - [sym_preproc_directive] = ACTIONS(5591), - [anon_sym_LPAREN2] = ACTIONS(5593), - [anon_sym_TILDE] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5593), - [anon_sym_AMP_AMP] = ACTIONS(5593), - [anon_sym_AMP] = ACTIONS(5591), - [anon_sym_SEMI] = ACTIONS(5593), - [anon_sym___extension__] = ACTIONS(5591), - [anon_sym_typedef] = ACTIONS(5591), - [anon_sym_virtual] = ACTIONS(5591), - [anon_sym_extern] = ACTIONS(5591), - [anon_sym___attribute__] = ACTIONS(5591), - [anon_sym___attribute] = ACTIONS(5591), - [anon_sym_using] = ACTIONS(5591), - [anon_sym_COLON_COLON] = ACTIONS(5593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), - [anon_sym___declspec] = ACTIONS(5591), - [anon_sym___based] = ACTIONS(5591), - [anon_sym_RBRACE] = ACTIONS(5593), - [anon_sym_signed] = ACTIONS(5591), - [anon_sym_unsigned] = ACTIONS(5591), - [anon_sym_long] = ACTIONS(5591), - [anon_sym_short] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5591), - [anon_sym_static] = ACTIONS(5591), - [anon_sym_register] = ACTIONS(5591), - [anon_sym_inline] = ACTIONS(5591), - [anon_sym___inline] = ACTIONS(5591), - [anon_sym___inline__] = ACTIONS(5591), - [anon_sym___forceinline] = ACTIONS(5591), - [anon_sym_thread_local] = ACTIONS(5591), - [anon_sym___thread] = ACTIONS(5591), - [anon_sym_const] = ACTIONS(5591), - [anon_sym_constexpr] = ACTIONS(5591), - [anon_sym_volatile] = ACTIONS(5591), - [anon_sym_restrict] = ACTIONS(5591), - [anon_sym___restrict__] = ACTIONS(5591), - [anon_sym__Atomic] = ACTIONS(5591), - [anon_sym__Noreturn] = ACTIONS(5591), - [anon_sym_noreturn] = ACTIONS(5591), - [anon_sym__Nonnull] = ACTIONS(5591), - [anon_sym_mutable] = ACTIONS(5591), - [anon_sym_constinit] = ACTIONS(5591), - [anon_sym_consteval] = ACTIONS(5591), - [anon_sym_alignas] = ACTIONS(5591), - [anon_sym__Alignas] = ACTIONS(5591), - [sym_primitive_type] = ACTIONS(5591), - [anon_sym_enum] = ACTIONS(5591), - [anon_sym_class] = ACTIONS(5591), - [anon_sym_struct] = ACTIONS(5591), - [anon_sym_union] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5591), - [anon_sym_decltype] = ACTIONS(5591), - [anon_sym_explicit] = ACTIONS(5591), - [anon_sym_typename] = ACTIONS(5591), - [anon_sym_private] = ACTIONS(5591), - [anon_sym_template] = ACTIONS(5591), - [anon_sym_operator] = ACTIONS(5591), - [anon_sym_friend] = ACTIONS(5591), - [anon_sym_public] = ACTIONS(5591), - [anon_sym_protected] = ACTIONS(5591), - [anon_sym_static_assert] = ACTIONS(5591), + [STATE(1380)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5968), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2044)] = { - [sym_identifier] = ACTIONS(5595), - [aux_sym_preproc_def_token1] = ACTIONS(5595), - [aux_sym_preproc_if_token1] = ACTIONS(5595), - [aux_sym_preproc_if_token2] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5595), - [sym_preproc_directive] = ACTIONS(5595), - [anon_sym_LPAREN2] = ACTIONS(5597), - [anon_sym_TILDE] = ACTIONS(5597), - [anon_sym_STAR] = ACTIONS(5597), - [anon_sym_AMP_AMP] = ACTIONS(5597), - [anon_sym_AMP] = ACTIONS(5595), - [anon_sym_SEMI] = ACTIONS(5597), - [anon_sym___extension__] = ACTIONS(5595), - [anon_sym_typedef] = ACTIONS(5595), - [anon_sym_virtual] = ACTIONS(5595), - [anon_sym_extern] = ACTIONS(5595), - [anon_sym___attribute__] = ACTIONS(5595), - [anon_sym___attribute] = ACTIONS(5595), - [anon_sym_using] = ACTIONS(5595), - [anon_sym_COLON_COLON] = ACTIONS(5597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5597), - [anon_sym___declspec] = ACTIONS(5595), - [anon_sym___based] = ACTIONS(5595), - [anon_sym_signed] = ACTIONS(5595), - [anon_sym_unsigned] = ACTIONS(5595), - [anon_sym_long] = ACTIONS(5595), - [anon_sym_short] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5595), - [anon_sym_static] = ACTIONS(5595), - [anon_sym_register] = ACTIONS(5595), - [anon_sym_inline] = ACTIONS(5595), - [anon_sym___inline] = ACTIONS(5595), - [anon_sym___inline__] = ACTIONS(5595), - [anon_sym___forceinline] = ACTIONS(5595), - [anon_sym_thread_local] = ACTIONS(5595), - [anon_sym___thread] = ACTIONS(5595), - [anon_sym_const] = ACTIONS(5595), - [anon_sym_constexpr] = ACTIONS(5595), - [anon_sym_volatile] = ACTIONS(5595), - [anon_sym_restrict] = ACTIONS(5595), - [anon_sym___restrict__] = ACTIONS(5595), - [anon_sym__Atomic] = ACTIONS(5595), - [anon_sym__Noreturn] = ACTIONS(5595), - [anon_sym_noreturn] = ACTIONS(5595), - [anon_sym__Nonnull] = ACTIONS(5595), - [anon_sym_mutable] = ACTIONS(5595), - [anon_sym_constinit] = ACTIONS(5595), - [anon_sym_consteval] = ACTIONS(5595), - [anon_sym_alignas] = ACTIONS(5595), - [anon_sym__Alignas] = ACTIONS(5595), - [sym_primitive_type] = ACTIONS(5595), - [anon_sym_enum] = ACTIONS(5595), - [anon_sym_class] = ACTIONS(5595), - [anon_sym_struct] = ACTIONS(5595), - [anon_sym_union] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5595), - [anon_sym_decltype] = ACTIONS(5595), - [anon_sym_explicit] = ACTIONS(5595), - [anon_sym_typename] = ACTIONS(5595), - [anon_sym_private] = ACTIONS(5595), - [anon_sym_template] = ACTIONS(5595), - [anon_sym_operator] = ACTIONS(5595), - [anon_sym_friend] = ACTIONS(5595), - [anon_sym_public] = ACTIONS(5595), - [anon_sym_protected] = ACTIONS(5595), - [anon_sym_static_assert] = ACTIONS(5595), + [STATE(1381)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5970), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2045)] = { - [sym_identifier] = ACTIONS(5599), - [aux_sym_preproc_def_token1] = ACTIONS(5599), - [aux_sym_preproc_if_token1] = ACTIONS(5599), - [aux_sym_preproc_if_token2] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5599), - [sym_preproc_directive] = ACTIONS(5599), - [anon_sym_LPAREN2] = ACTIONS(5601), - [anon_sym_TILDE] = ACTIONS(5601), - [anon_sym_STAR] = ACTIONS(5601), - [anon_sym_AMP_AMP] = ACTIONS(5601), - [anon_sym_AMP] = ACTIONS(5599), - [anon_sym_SEMI] = ACTIONS(5601), - [anon_sym___extension__] = ACTIONS(5599), - [anon_sym_typedef] = ACTIONS(5599), - [anon_sym_virtual] = ACTIONS(5599), - [anon_sym_extern] = ACTIONS(5599), - [anon_sym___attribute__] = ACTIONS(5599), - [anon_sym___attribute] = ACTIONS(5599), - [anon_sym_using] = ACTIONS(5599), - [anon_sym_COLON_COLON] = ACTIONS(5601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5601), - [anon_sym___declspec] = ACTIONS(5599), - [anon_sym___based] = ACTIONS(5599), - [anon_sym_signed] = ACTIONS(5599), - [anon_sym_unsigned] = ACTIONS(5599), - [anon_sym_long] = ACTIONS(5599), - [anon_sym_short] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(5599), - [anon_sym_static] = ACTIONS(5599), - [anon_sym_register] = ACTIONS(5599), - [anon_sym_inline] = ACTIONS(5599), - [anon_sym___inline] = ACTIONS(5599), - [anon_sym___inline__] = ACTIONS(5599), - [anon_sym___forceinline] = ACTIONS(5599), - [anon_sym_thread_local] = ACTIONS(5599), - [anon_sym___thread] = ACTIONS(5599), - [anon_sym_const] = ACTIONS(5599), - [anon_sym_constexpr] = ACTIONS(5599), - [anon_sym_volatile] = ACTIONS(5599), - [anon_sym_restrict] = ACTIONS(5599), - [anon_sym___restrict__] = ACTIONS(5599), - [anon_sym__Atomic] = ACTIONS(5599), - [anon_sym__Noreturn] = ACTIONS(5599), - [anon_sym_noreturn] = ACTIONS(5599), - [anon_sym__Nonnull] = ACTIONS(5599), - [anon_sym_mutable] = ACTIONS(5599), - [anon_sym_constinit] = ACTIONS(5599), - [anon_sym_consteval] = ACTIONS(5599), - [anon_sym_alignas] = ACTIONS(5599), - [anon_sym__Alignas] = ACTIONS(5599), - [sym_primitive_type] = ACTIONS(5599), - [anon_sym_enum] = ACTIONS(5599), - [anon_sym_class] = ACTIONS(5599), - [anon_sym_struct] = ACTIONS(5599), - [anon_sym_union] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5599), - [anon_sym_decltype] = ACTIONS(5599), - [anon_sym_explicit] = ACTIONS(5599), - [anon_sym_typename] = ACTIONS(5599), - [anon_sym_private] = ACTIONS(5599), - [anon_sym_template] = ACTIONS(5599), - [anon_sym_operator] = ACTIONS(5599), - [anon_sym_friend] = ACTIONS(5599), - [anon_sym_public] = ACTIONS(5599), - [anon_sym_protected] = ACTIONS(5599), - [anon_sym_static_assert] = ACTIONS(5599), + [STATE(1382)] = { + [sym_expression] = STATE(5639), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2046)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token2] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_friend] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), + [STATE(1383)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5972), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2047)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_friend] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), + [STATE(1384)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5974), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2048)] = { - [sym_identifier] = ACTIONS(5595), - [aux_sym_preproc_def_token1] = ACTIONS(5595), - [aux_sym_preproc_if_token1] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5595), - [sym_preproc_directive] = ACTIONS(5595), - [anon_sym_LPAREN2] = ACTIONS(5597), - [anon_sym_TILDE] = ACTIONS(5597), - [anon_sym_STAR] = ACTIONS(5597), - [anon_sym_AMP_AMP] = ACTIONS(5597), - [anon_sym_AMP] = ACTIONS(5595), - [anon_sym_SEMI] = ACTIONS(5597), - [anon_sym___extension__] = ACTIONS(5595), - [anon_sym_typedef] = ACTIONS(5595), - [anon_sym_virtual] = ACTIONS(5595), - [anon_sym_extern] = ACTIONS(5595), - [anon_sym___attribute__] = ACTIONS(5595), - [anon_sym___attribute] = ACTIONS(5595), - [anon_sym_using] = ACTIONS(5595), - [anon_sym_COLON_COLON] = ACTIONS(5597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5597), - [anon_sym___declspec] = ACTIONS(5595), - [anon_sym___based] = ACTIONS(5595), - [anon_sym_RBRACE] = ACTIONS(5597), - [anon_sym_signed] = ACTIONS(5595), - [anon_sym_unsigned] = ACTIONS(5595), - [anon_sym_long] = ACTIONS(5595), - [anon_sym_short] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5595), - [anon_sym_static] = ACTIONS(5595), - [anon_sym_register] = ACTIONS(5595), - [anon_sym_inline] = ACTIONS(5595), - [anon_sym___inline] = ACTIONS(5595), - [anon_sym___inline__] = ACTIONS(5595), - [anon_sym___forceinline] = ACTIONS(5595), - [anon_sym_thread_local] = ACTIONS(5595), - [anon_sym___thread] = ACTIONS(5595), - [anon_sym_const] = ACTIONS(5595), - [anon_sym_constexpr] = ACTIONS(5595), - [anon_sym_volatile] = ACTIONS(5595), - [anon_sym_restrict] = ACTIONS(5595), - [anon_sym___restrict__] = ACTIONS(5595), - [anon_sym__Atomic] = ACTIONS(5595), - [anon_sym__Noreturn] = ACTIONS(5595), - [anon_sym_noreturn] = ACTIONS(5595), - [anon_sym__Nonnull] = ACTIONS(5595), - [anon_sym_mutable] = ACTIONS(5595), - [anon_sym_constinit] = ACTIONS(5595), - [anon_sym_consteval] = ACTIONS(5595), - [anon_sym_alignas] = ACTIONS(5595), - [anon_sym__Alignas] = ACTIONS(5595), - [sym_primitive_type] = ACTIONS(5595), - [anon_sym_enum] = ACTIONS(5595), - [anon_sym_class] = ACTIONS(5595), - [anon_sym_struct] = ACTIONS(5595), - [anon_sym_union] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5595), - [anon_sym_decltype] = ACTIONS(5595), - [anon_sym_explicit] = ACTIONS(5595), - [anon_sym_typename] = ACTIONS(5595), - [anon_sym_private] = ACTIONS(5595), - [anon_sym_template] = ACTIONS(5595), - [anon_sym_operator] = ACTIONS(5595), - [anon_sym_friend] = ACTIONS(5595), - [anon_sym_public] = ACTIONS(5595), - [anon_sym_protected] = ACTIONS(5595), - [anon_sym_static_assert] = ACTIONS(5595), + [STATE(1385)] = { + [sym_expression] = STATE(5391), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5976), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2049)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_RBRACE] = ACTIONS(5541), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1386)] = { + [sym_expression] = STATE(5640), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2050)] = { - [sym_template_argument_list] = STATE(1626), - [sym_identifier] = ACTIONS(5971), - [anon_sym_LPAREN2] = ACTIONS(4187), - [anon_sym_TILDE] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(5973), - [anon_sym___extension__] = ACTIONS(5971), - [anon_sym_virtual] = ACTIONS(5971), - [anon_sym_extern] = ACTIONS(5971), - [anon_sym___attribute__] = ACTIONS(5971), - [anon_sym___attribute] = ACTIONS(5971), - [anon_sym_using] = ACTIONS(5971), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4187), - [anon_sym___declspec] = ACTIONS(5971), - [anon_sym___based] = ACTIONS(5971), - [anon_sym___cdecl] = ACTIONS(5971), - [anon_sym___clrcall] = ACTIONS(5971), - [anon_sym___stdcall] = ACTIONS(5971), - [anon_sym___fastcall] = ACTIONS(5971), - [anon_sym___thiscall] = ACTIONS(5971), - [anon_sym___vectorcall] = ACTIONS(5971), - [anon_sym_signed] = ACTIONS(5971), - [anon_sym_unsigned] = ACTIONS(5971), - [anon_sym_long] = ACTIONS(5971), - [anon_sym_short] = ACTIONS(5971), - [anon_sym_LBRACK] = ACTIONS(5971), - [anon_sym_static] = ACTIONS(5971), - [anon_sym_register] = ACTIONS(5971), - [anon_sym_inline] = ACTIONS(5971), - [anon_sym___inline] = ACTIONS(5971), - [anon_sym___inline__] = ACTIONS(5971), - [anon_sym___forceinline] = ACTIONS(5971), - [anon_sym_thread_local] = ACTIONS(5971), - [anon_sym___thread] = ACTIONS(5971), - [anon_sym_const] = ACTIONS(5971), - [anon_sym_constexpr] = ACTIONS(5971), - [anon_sym_volatile] = ACTIONS(5971), - [anon_sym_restrict] = ACTIONS(5971), - [anon_sym___restrict__] = ACTIONS(5971), - [anon_sym__Atomic] = ACTIONS(5971), - [anon_sym__Noreturn] = ACTIONS(5971), - [anon_sym_noreturn] = ACTIONS(5971), - [anon_sym__Nonnull] = ACTIONS(5971), - [anon_sym_mutable] = ACTIONS(5971), - [anon_sym_constinit] = ACTIONS(5971), - [anon_sym_consteval] = ACTIONS(5971), - [anon_sym_alignas] = ACTIONS(5971), - [anon_sym__Alignas] = ACTIONS(5971), - [sym_primitive_type] = ACTIONS(5971), - [anon_sym_enum] = ACTIONS(5971), - [anon_sym_class] = ACTIONS(5971), - [anon_sym_struct] = ACTIONS(5971), - [anon_sym_union] = ACTIONS(5971), - [anon_sym_or] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5971), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5971), - [anon_sym_decltype] = ACTIONS(5971), - [anon_sym_explicit] = ACTIONS(5971), - [anon_sym_typename] = ACTIONS(5971), - [anon_sym_template] = ACTIONS(5971), - [anon_sym_operator] = ACTIONS(5971), - [anon_sym_friend] = ACTIONS(5971), - [anon_sym_concept] = ACTIONS(5971), + [STATE(1387)] = { + [sym_expression] = STATE(5640), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2051)] = { - [sym_identifier] = ACTIONS(5599), - [aux_sym_preproc_def_token1] = ACTIONS(5599), - [aux_sym_preproc_if_token1] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5599), - [sym_preproc_directive] = ACTIONS(5599), - [anon_sym_LPAREN2] = ACTIONS(5601), - [anon_sym_TILDE] = ACTIONS(5601), - [anon_sym_STAR] = ACTIONS(5601), - [anon_sym_AMP_AMP] = ACTIONS(5601), - [anon_sym_AMP] = ACTIONS(5599), - [anon_sym_SEMI] = ACTIONS(5601), - [anon_sym___extension__] = ACTIONS(5599), - [anon_sym_typedef] = ACTIONS(5599), - [anon_sym_virtual] = ACTIONS(5599), - [anon_sym_extern] = ACTIONS(5599), - [anon_sym___attribute__] = ACTIONS(5599), - [anon_sym___attribute] = ACTIONS(5599), - [anon_sym_using] = ACTIONS(5599), - [anon_sym_COLON_COLON] = ACTIONS(5601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5601), - [anon_sym___declspec] = ACTIONS(5599), - [anon_sym___based] = ACTIONS(5599), - [anon_sym_RBRACE] = ACTIONS(5601), - [anon_sym_signed] = ACTIONS(5599), - [anon_sym_unsigned] = ACTIONS(5599), - [anon_sym_long] = ACTIONS(5599), - [anon_sym_short] = ACTIONS(5599), - [anon_sym_LBRACK] = ACTIONS(5599), - [anon_sym_static] = ACTIONS(5599), - [anon_sym_register] = ACTIONS(5599), - [anon_sym_inline] = ACTIONS(5599), - [anon_sym___inline] = ACTIONS(5599), - [anon_sym___inline__] = ACTIONS(5599), - [anon_sym___forceinline] = ACTIONS(5599), - [anon_sym_thread_local] = ACTIONS(5599), - [anon_sym___thread] = ACTIONS(5599), - [anon_sym_const] = ACTIONS(5599), - [anon_sym_constexpr] = ACTIONS(5599), - [anon_sym_volatile] = ACTIONS(5599), - [anon_sym_restrict] = ACTIONS(5599), - [anon_sym___restrict__] = ACTIONS(5599), - [anon_sym__Atomic] = ACTIONS(5599), - [anon_sym__Noreturn] = ACTIONS(5599), - [anon_sym_noreturn] = ACTIONS(5599), - [anon_sym__Nonnull] = ACTIONS(5599), - [anon_sym_mutable] = ACTIONS(5599), - [anon_sym_constinit] = ACTIONS(5599), - [anon_sym_consteval] = ACTIONS(5599), - [anon_sym_alignas] = ACTIONS(5599), - [anon_sym__Alignas] = ACTIONS(5599), - [sym_primitive_type] = ACTIONS(5599), - [anon_sym_enum] = ACTIONS(5599), - [anon_sym_class] = ACTIONS(5599), - [anon_sym_struct] = ACTIONS(5599), - [anon_sym_union] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5599), - [anon_sym_decltype] = ACTIONS(5599), - [anon_sym_explicit] = ACTIONS(5599), - [anon_sym_typename] = ACTIONS(5599), - [anon_sym_private] = ACTIONS(5599), - [anon_sym_template] = ACTIONS(5599), - [anon_sym_operator] = ACTIONS(5599), - [anon_sym_friend] = ACTIONS(5599), - [anon_sym_public] = ACTIONS(5599), - [anon_sym_protected] = ACTIONS(5599), - [anon_sym_static_assert] = ACTIONS(5599), + [STATE(1388)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5807), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2052)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), + [STATE(1389)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2053)] = { - [sym_identifier] = ACTIONS(5603), - [aux_sym_preproc_def_token1] = ACTIONS(5603), - [aux_sym_preproc_if_token1] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5603), - [sym_preproc_directive] = ACTIONS(5603), - [anon_sym_LPAREN2] = ACTIONS(5605), - [anon_sym_TILDE] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5605), - [anon_sym_AMP_AMP] = ACTIONS(5605), - [anon_sym_AMP] = ACTIONS(5603), - [anon_sym_SEMI] = ACTIONS(5605), - [anon_sym___extension__] = ACTIONS(5603), - [anon_sym_typedef] = ACTIONS(5603), - [anon_sym_virtual] = ACTIONS(5603), - [anon_sym_extern] = ACTIONS(5603), - [anon_sym___attribute__] = ACTIONS(5603), - [anon_sym___attribute] = ACTIONS(5603), - [anon_sym_using] = ACTIONS(5603), - [anon_sym_COLON_COLON] = ACTIONS(5605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5605), - [anon_sym___declspec] = ACTIONS(5603), - [anon_sym___based] = ACTIONS(5603), - [anon_sym_RBRACE] = ACTIONS(5605), - [anon_sym_signed] = ACTIONS(5603), - [anon_sym_unsigned] = ACTIONS(5603), - [anon_sym_long] = ACTIONS(5603), - [anon_sym_short] = ACTIONS(5603), - [anon_sym_LBRACK] = ACTIONS(5603), - [anon_sym_static] = ACTIONS(5603), - [anon_sym_register] = ACTIONS(5603), - [anon_sym_inline] = ACTIONS(5603), - [anon_sym___inline] = ACTIONS(5603), - [anon_sym___inline__] = ACTIONS(5603), - [anon_sym___forceinline] = ACTIONS(5603), - [anon_sym_thread_local] = ACTIONS(5603), - [anon_sym___thread] = ACTIONS(5603), - [anon_sym_const] = ACTIONS(5603), - [anon_sym_constexpr] = ACTIONS(5603), - [anon_sym_volatile] = ACTIONS(5603), - [anon_sym_restrict] = ACTIONS(5603), - [anon_sym___restrict__] = ACTIONS(5603), - [anon_sym__Atomic] = ACTIONS(5603), - [anon_sym__Noreturn] = ACTIONS(5603), - [anon_sym_noreturn] = ACTIONS(5603), - [anon_sym__Nonnull] = ACTIONS(5603), - [anon_sym_mutable] = ACTIONS(5603), - [anon_sym_constinit] = ACTIONS(5603), - [anon_sym_consteval] = ACTIONS(5603), - [anon_sym_alignas] = ACTIONS(5603), - [anon_sym__Alignas] = ACTIONS(5603), - [sym_primitive_type] = ACTIONS(5603), - [anon_sym_enum] = ACTIONS(5603), - [anon_sym_class] = ACTIONS(5603), - [anon_sym_struct] = ACTIONS(5603), - [anon_sym_union] = ACTIONS(5603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5603), - [anon_sym_decltype] = ACTIONS(5603), - [anon_sym_explicit] = ACTIONS(5603), - [anon_sym_typename] = ACTIONS(5603), - [anon_sym_private] = ACTIONS(5603), - [anon_sym_template] = ACTIONS(5603), - [anon_sym_operator] = ACTIONS(5603), - [anon_sym_friend] = ACTIONS(5603), - [anon_sym_public] = ACTIONS(5603), - [anon_sym_protected] = ACTIONS(5603), - [anon_sym_static_assert] = ACTIONS(5603), + [STATE(1390)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2054)] = { - [sym_identifier] = ACTIONS(5975), - [anon_sym_LPAREN2] = ACTIONS(5977), - [anon_sym_TILDE] = ACTIONS(5977), - [anon_sym_STAR] = ACTIONS(5977), - [anon_sym_AMP_AMP] = ACTIONS(5977), - [anon_sym_AMP] = ACTIONS(5975), - [anon_sym___extension__] = ACTIONS(5975), - [anon_sym_virtual] = ACTIONS(5975), - [anon_sym_extern] = ACTIONS(5975), - [anon_sym___attribute__] = ACTIONS(5975), - [anon_sym___attribute] = ACTIONS(5975), - [anon_sym_using] = ACTIONS(5975), - [anon_sym_COLON_COLON] = ACTIONS(5977), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5977), - [anon_sym___declspec] = ACTIONS(5975), - [anon_sym___based] = ACTIONS(5975), - [anon_sym___cdecl] = ACTIONS(5975), - [anon_sym___clrcall] = ACTIONS(5975), - [anon_sym___stdcall] = ACTIONS(5975), - [anon_sym___fastcall] = ACTIONS(5975), - [anon_sym___thiscall] = ACTIONS(5975), - [anon_sym___vectorcall] = ACTIONS(5975), - [anon_sym_LBRACE] = ACTIONS(5977), - [anon_sym_signed] = ACTIONS(5975), - [anon_sym_unsigned] = ACTIONS(5975), - [anon_sym_long] = ACTIONS(5975), - [anon_sym_short] = ACTIONS(5975), - [anon_sym_LBRACK] = ACTIONS(5975), - [anon_sym_static] = ACTIONS(5975), - [anon_sym_register] = ACTIONS(5975), - [anon_sym_inline] = ACTIONS(5975), - [anon_sym___inline] = ACTIONS(5975), - [anon_sym___inline__] = ACTIONS(5975), - [anon_sym___forceinline] = ACTIONS(5975), - [anon_sym_thread_local] = ACTIONS(5975), - [anon_sym___thread] = ACTIONS(5975), - [anon_sym_const] = ACTIONS(5975), - [anon_sym_constexpr] = ACTIONS(5975), - [anon_sym_volatile] = ACTIONS(5975), - [anon_sym_restrict] = ACTIONS(5975), - [anon_sym___restrict__] = ACTIONS(5975), - [anon_sym__Atomic] = ACTIONS(5975), - [anon_sym__Noreturn] = ACTIONS(5975), - [anon_sym_noreturn] = ACTIONS(5975), - [anon_sym__Nonnull] = ACTIONS(5975), - [anon_sym_mutable] = ACTIONS(5975), - [anon_sym_constinit] = ACTIONS(5975), - [anon_sym_consteval] = ACTIONS(5975), - [anon_sym_alignas] = ACTIONS(5975), - [anon_sym__Alignas] = ACTIONS(5975), - [sym_primitive_type] = ACTIONS(5975), - [anon_sym_enum] = ACTIONS(5975), - [anon_sym_class] = ACTIONS(5975), - [anon_sym_struct] = ACTIONS(5975), - [anon_sym_union] = ACTIONS(5975), - [anon_sym_DASH_GT] = ACTIONS(5977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5975), - [anon_sym_decltype] = ACTIONS(5975), - [anon_sym_explicit] = ACTIONS(5975), - [anon_sym_typename] = ACTIONS(5975), - [anon_sym_template] = ACTIONS(5975), - [anon_sym_operator] = ACTIONS(5975), - [anon_sym_friend] = ACTIONS(5975), - [anon_sym_noexcept] = ACTIONS(5975), - [anon_sym_throw] = ACTIONS(5975), - [anon_sym_concept] = ACTIONS(5975), - [anon_sym_requires] = ACTIONS(5975), + [STATE(1391)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2055)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2056), - [sym__declarator] = STATE(6550), - [sym__abstract_declarator] = STATE(6875), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2693), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3247), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2693), - [aux_sym_pointer_declarator_repeat1] = STATE(2056), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5983), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5701), - [anon_sym___attribute] = ACTIONS(5701), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1392)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5978), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2056)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(3928), - [sym__declarator] = STATE(6561), - [sym__abstract_declarator] = STATE(6919), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2650), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3247), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2650), - [aux_sym_pointer_declarator_repeat1] = STATE(3928), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5707), - [anon_sym_RPAREN] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5979), - [anon_sym_AMP_AMP] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5983), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5709), - [anon_sym___attribute] = ACTIONS(5709), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1393)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5980), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2057)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [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(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1394)] = { + [sym_expression] = STATE(5086), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2058)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_RBRACE] = ACTIONS(5613), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1395)] = { + [sym_expression] = STATE(6440), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(5982), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(5945), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2059)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [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(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1396)] = { + [sym_expression] = STATE(6746), + [sym__string] = STATE(6317), + [sym_comma_expression] = STATE(10056), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2060)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_RBRACE] = ACTIONS(5613), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1397)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5984), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2061)] = { - [sym_identifier] = ACTIONS(5615), - [aux_sym_preproc_def_token1] = ACTIONS(5615), - [aux_sym_preproc_if_token1] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5615), - [sym_preproc_directive] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_AMP_AMP] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5615), - [anon_sym_SEMI] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5615), - [anon_sym_typedef] = ACTIONS(5615), - [anon_sym_virtual] = ACTIONS(5615), - [anon_sym_extern] = ACTIONS(5615), - [anon_sym___attribute__] = ACTIONS(5615), - [anon_sym___attribute] = ACTIONS(5615), - [anon_sym_using] = ACTIONS(5615), - [anon_sym_COLON_COLON] = ACTIONS(5617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), - [anon_sym___declspec] = ACTIONS(5615), - [anon_sym___based] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5617), - [anon_sym_signed] = ACTIONS(5615), - [anon_sym_unsigned] = ACTIONS(5615), - [anon_sym_long] = ACTIONS(5615), - [anon_sym_short] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_static] = ACTIONS(5615), - [anon_sym_register] = ACTIONS(5615), - [anon_sym_inline] = ACTIONS(5615), - [anon_sym___inline] = ACTIONS(5615), - [anon_sym___inline__] = ACTIONS(5615), - [anon_sym___forceinline] = ACTIONS(5615), - [anon_sym_thread_local] = ACTIONS(5615), - [anon_sym___thread] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5615), - [anon_sym_constexpr] = ACTIONS(5615), - [anon_sym_volatile] = ACTIONS(5615), - [anon_sym_restrict] = ACTIONS(5615), - [anon_sym___restrict__] = ACTIONS(5615), - [anon_sym__Atomic] = ACTIONS(5615), - [anon_sym__Noreturn] = ACTIONS(5615), - [anon_sym_noreturn] = ACTIONS(5615), - [anon_sym__Nonnull] = ACTIONS(5615), - [anon_sym_mutable] = ACTIONS(5615), - [anon_sym_constinit] = ACTIONS(5615), - [anon_sym_consteval] = ACTIONS(5615), - [anon_sym_alignas] = ACTIONS(5615), - [anon_sym__Alignas] = ACTIONS(5615), - [sym_primitive_type] = ACTIONS(5615), - [anon_sym_enum] = ACTIONS(5615), - [anon_sym_class] = ACTIONS(5615), - [anon_sym_struct] = ACTIONS(5615), - [anon_sym_union] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5615), - [anon_sym_decltype] = ACTIONS(5615), - [anon_sym_explicit] = ACTIONS(5615), - [anon_sym_typename] = ACTIONS(5615), - [anon_sym_private] = ACTIONS(5615), - [anon_sym_template] = ACTIONS(5615), - [anon_sym_operator] = ACTIONS(5615), - [anon_sym_friend] = ACTIONS(5615), - [anon_sym_public] = ACTIONS(5615), - [anon_sym_protected] = ACTIONS(5615), - [anon_sym_static_assert] = ACTIONS(5615), + [STATE(1398)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5986), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2062)] = { - [sym_identifier] = ACTIONS(5619), - [aux_sym_preproc_def_token1] = ACTIONS(5619), - [aux_sym_preproc_if_token1] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5619), - [sym_preproc_directive] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5621), - [anon_sym_TILDE] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5621), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5619), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym___extension__] = ACTIONS(5619), - [anon_sym_typedef] = ACTIONS(5619), - [anon_sym_virtual] = ACTIONS(5619), - [anon_sym_extern] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5619), - [anon_sym___attribute] = ACTIONS(5619), - [anon_sym_using] = ACTIONS(5619), - [anon_sym_COLON_COLON] = ACTIONS(5621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), - [anon_sym___declspec] = ACTIONS(5619), - [anon_sym___based] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5621), - [anon_sym_signed] = ACTIONS(5619), - [anon_sym_unsigned] = ACTIONS(5619), - [anon_sym_long] = ACTIONS(5619), - [anon_sym_short] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_static] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5619), - [anon_sym_inline] = ACTIONS(5619), - [anon_sym___inline] = ACTIONS(5619), - [anon_sym___inline__] = ACTIONS(5619), - [anon_sym___forceinline] = ACTIONS(5619), - [anon_sym_thread_local] = ACTIONS(5619), - [anon_sym___thread] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5619), - [anon_sym_constexpr] = ACTIONS(5619), - [anon_sym_volatile] = ACTIONS(5619), - [anon_sym_restrict] = ACTIONS(5619), - [anon_sym___restrict__] = ACTIONS(5619), - [anon_sym__Atomic] = ACTIONS(5619), - [anon_sym__Noreturn] = ACTIONS(5619), - [anon_sym_noreturn] = ACTIONS(5619), - [anon_sym__Nonnull] = ACTIONS(5619), - [anon_sym_mutable] = ACTIONS(5619), - [anon_sym_constinit] = ACTIONS(5619), - [anon_sym_consteval] = ACTIONS(5619), - [anon_sym_alignas] = ACTIONS(5619), - [anon_sym__Alignas] = ACTIONS(5619), - [sym_primitive_type] = ACTIONS(5619), - [anon_sym_enum] = ACTIONS(5619), - [anon_sym_class] = ACTIONS(5619), - [anon_sym_struct] = ACTIONS(5619), - [anon_sym_union] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5619), - [anon_sym_decltype] = ACTIONS(5619), - [anon_sym_explicit] = ACTIONS(5619), - [anon_sym_typename] = ACTIONS(5619), - [anon_sym_private] = ACTIONS(5619), - [anon_sym_template] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5619), - [anon_sym_friend] = ACTIONS(5619), - [anon_sym_public] = ACTIONS(5619), - [anon_sym_protected] = ACTIONS(5619), - [anon_sym_static_assert] = ACTIONS(5619), + [STATE(1399)] = { + [sym_expression] = STATE(5643), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5827), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2063)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_RBRACE] = ACTIONS(5625), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), + [STATE(1400)] = { + [sym_expression] = STATE(5643), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5832), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2064)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_friend] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), + [STATE(1401)] = { + [sym_expression] = STATE(5187), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5988), + [anon_sym_LPAREN2] = ACTIONS(5990), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2065)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_RBRACE] = ACTIONS(5625), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), + [STATE(1402)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5992), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2066)] = { - [sym_string_literal] = STATE(1995), - [sym_template_argument_list] = STATE(2316), - [sym_raw_string_literal] = STATE(1995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym___attribute__] = ACTIONS(4161), - [anon_sym___attribute] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(5940), - [anon_sym_u_DQUOTE] = ACTIONS(5940), - [anon_sym_U_DQUOTE] = ACTIONS(5940), - [anon_sym_u8_DQUOTE] = ACTIONS(5940), - [anon_sym_DQUOTE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5942), - [anon_sym_LR_DQUOTE] = ACTIONS(5942), - [anon_sym_uR_DQUOTE] = ACTIONS(5942), - [anon_sym_UR_DQUOTE] = ACTIONS(5942), - [anon_sym_u8R_DQUOTE] = ACTIONS(5942), + [STATE(1403)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5994), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2067)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_friend] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), + [STATE(1404)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5996), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2068)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), + [STATE(1405)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(5998), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2069)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2983), - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_private] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_friend] = ACTIONS(2981), - [anon_sym_public] = ACTIONS(2981), - [anon_sym_protected] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), + [STATE(1406)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6000), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2070)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_friend] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_protected] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), + [STATE(1407)] = { + [sym_expression] = STATE(7068), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_RPAREN] = ACTIONS(6002), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2071)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_friend] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), + [STATE(1408)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2072)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_friend] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), + [STATE(1409)] = { + [sym_expression] = STATE(5636), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5863), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2073)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_friend] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), + [STATE(1410)] = { + [sym_expression] = STATE(5637), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5892), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2074)] = { - [sym__declaration_modifiers] = STATE(3342), - [sym_attribute_specifier] = STATE(3342), - [sym_attribute_declaration] = STATE(3342), - [sym_ms_declspec_modifier] = STATE(3342), - [sym_storage_class_specifier] = STATE(3342), - [sym_type_qualifier] = STATE(3342), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2608), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(3342), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5961), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_template] = ACTIONS(1268), + [STATE(1411)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6004), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2075)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [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(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1412)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6006), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2076)] = { - [sym_identifier] = ACTIONS(2751), - [aux_sym_preproc_def_token1] = ACTIONS(2751), - [aux_sym_preproc_if_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2751), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2751), - [sym_preproc_directive] = ACTIONS(2751), - [anon_sym_LPAREN2] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym___extension__] = ACTIONS(2751), - [anon_sym_typedef] = ACTIONS(2751), - [anon_sym_virtual] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym___attribute__] = ACTIONS(2751), - [anon_sym___attribute] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2753), - [anon_sym___declspec] = ACTIONS(2751), - [anon_sym___based] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2751), - [anon_sym_unsigned] = ACTIONS(2751), - [anon_sym_long] = ACTIONS(2751), - [anon_sym_short] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_register] = ACTIONS(2751), - [anon_sym_inline] = ACTIONS(2751), - [anon_sym___inline] = ACTIONS(2751), - [anon_sym___inline__] = ACTIONS(2751), - [anon_sym___forceinline] = ACTIONS(2751), - [anon_sym_thread_local] = ACTIONS(2751), - [anon_sym___thread] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_constexpr] = ACTIONS(2751), - [anon_sym_volatile] = ACTIONS(2751), - [anon_sym_restrict] = ACTIONS(2751), - [anon_sym___restrict__] = ACTIONS(2751), - [anon_sym__Atomic] = ACTIONS(2751), - [anon_sym__Noreturn] = ACTIONS(2751), - [anon_sym_noreturn] = ACTIONS(2751), - [anon_sym__Nonnull] = ACTIONS(2751), - [anon_sym_mutable] = ACTIONS(2751), - [anon_sym_constinit] = ACTIONS(2751), - [anon_sym_consteval] = ACTIONS(2751), - [anon_sym_alignas] = ACTIONS(2751), - [anon_sym__Alignas] = ACTIONS(2751), - [sym_primitive_type] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2751), - [anon_sym_decltype] = ACTIONS(2751), - [anon_sym_explicit] = ACTIONS(2751), - [anon_sym_typename] = ACTIONS(2751), - [anon_sym_private] = ACTIONS(2751), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_operator] = ACTIONS(2751), - [anon_sym_friend] = ACTIONS(2751), - [anon_sym_public] = ACTIONS(2751), - [anon_sym_protected] = ACTIONS(2751), - [anon_sym_static_assert] = ACTIONS(2751), + [STATE(1413)] = { + [sym_expression] = STATE(5638), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6008), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2077)] = { - [sym_identifier] = ACTIONS(5657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), - [anon_sym_COMMA] = ACTIONS(5659), - [anon_sym_RPAREN] = ACTIONS(5659), - [aux_sym_preproc_if_token2] = ACTIONS(5659), - [aux_sym_preproc_else_token1] = ACTIONS(5659), - [aux_sym_preproc_elif_token1] = ACTIONS(5657), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5659), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5659), - [anon_sym_LPAREN2] = ACTIONS(5659), - [anon_sym_DASH] = ACTIONS(5657), - [anon_sym_PLUS] = ACTIONS(5657), - [anon_sym_STAR] = ACTIONS(5659), - [anon_sym_SLASH] = ACTIONS(5657), - [anon_sym_PERCENT] = ACTIONS(5659), - [anon_sym_PIPE_PIPE] = ACTIONS(5659), - [anon_sym_AMP_AMP] = ACTIONS(5659), - [anon_sym_PIPE] = ACTIONS(5657), - [anon_sym_CARET] = ACTIONS(5659), - [anon_sym_AMP] = ACTIONS(5657), - [anon_sym_EQ_EQ] = ACTIONS(5659), - [anon_sym_BANG_EQ] = ACTIONS(5659), - [anon_sym_GT] = ACTIONS(5657), - [anon_sym_GT_EQ] = ACTIONS(5659), - [anon_sym_LT_EQ] = ACTIONS(5657), - [anon_sym_LT] = ACTIONS(5657), - [anon_sym_LT_LT] = ACTIONS(5659), - [anon_sym_GT_GT] = ACTIONS(5659), - [anon_sym_SEMI] = ACTIONS(5659), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(5657), - [anon_sym_COLON] = ACTIONS(5659), - [anon_sym_LBRACE] = ACTIONS(5659), - [anon_sym_RBRACE] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5659), - [anon_sym_RBRACK] = ACTIONS(5659), - [anon_sym_const] = ACTIONS(5657), - [anon_sym_constexpr] = ACTIONS(5657), - [anon_sym_volatile] = ACTIONS(5657), - [anon_sym_restrict] = ACTIONS(5657), - [anon_sym___restrict__] = ACTIONS(5657), - [anon_sym__Atomic] = ACTIONS(5657), - [anon_sym__Noreturn] = ACTIONS(5657), - [anon_sym_noreturn] = ACTIONS(5657), - [anon_sym__Nonnull] = ACTIONS(5657), - [anon_sym_mutable] = ACTIONS(5657), - [anon_sym_constinit] = ACTIONS(5657), - [anon_sym_consteval] = ACTIONS(5657), - [anon_sym_alignas] = ACTIONS(5657), - [anon_sym__Alignas] = ACTIONS(5657), - [anon_sym_QMARK] = ACTIONS(5659), - [anon_sym_LT_EQ_GT] = ACTIONS(5659), - [anon_sym_or] = ACTIONS(5657), - [anon_sym_and] = ACTIONS(5657), - [anon_sym_bitor] = ACTIONS(5657), - [anon_sym_xor] = ACTIONS(5657), - [anon_sym_bitand] = ACTIONS(5657), - [anon_sym_not_eq] = ACTIONS(5657), - [anon_sym_DASH_DASH] = ACTIONS(5659), - [anon_sym_PLUS_PLUS] = ACTIONS(5659), - [anon_sym_DOT] = ACTIONS(5657), - [anon_sym_DOT_STAR] = ACTIONS(5659), - [anon_sym_DASH_GT] = ACTIONS(5659), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), + [STATE(1414)] = { + [sym_expression] = STATE(5138), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6008), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2078)] = { - [sym__declaration_modifiers] = STATE(3342), - [sym_attribute_specifier] = STATE(3342), - [sym_attribute_declaration] = STATE(3342), - [sym_ms_declspec_modifier] = STATE(3342), - [sym_storage_class_specifier] = STATE(3342), - [sym_type_qualifier] = STATE(3342), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2608), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6842), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(3342), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(4573), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5961), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [STATE(1415)] = { + [sym_expression] = STATE(5639), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2079)] = { - [sym_ms_based_modifier] = STATE(8390), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2027), - [sym__declarator] = STATE(6550), - [sym__abstract_declarator] = STATE(6869), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2688), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3333), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(5969), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2688), - [aux_sym_pointer_declarator_repeat1] = STATE(2027), - [sym_identifier] = ACTIONS(5691), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5955), - [anon_sym_AMP_AMP] = ACTIONS(5957), - [anon_sym_AMP] = ACTIONS(5959), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5701), - [anon_sym___attribute] = ACTIONS(5701), - [anon_sym_COLON_COLON] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5693), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1416)] = { + [sym_expression] = STATE(6777), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(6011), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2080)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), + [STATE(1417)] = { + [sym_expression] = STATE(6440), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(6013), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(5945), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2081)] = { - [sym_identifier] = ACTIONS(3260), - [aux_sym_preproc_def_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token1] = ACTIONS(3260), - [aux_sym_preproc_if_token2] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3260), - [sym_preproc_directive] = ACTIONS(3260), - [anon_sym_LPAREN2] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym___extension__] = ACTIONS(3260), - [anon_sym_typedef] = ACTIONS(3260), - [anon_sym_virtual] = ACTIONS(3260), - [anon_sym_extern] = ACTIONS(3260), - [anon_sym___attribute__] = ACTIONS(3260), - [anon_sym___attribute] = ACTIONS(3260), - [anon_sym_using] = ACTIONS(3260), - [anon_sym_COLON_COLON] = ACTIONS(3262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3262), - [anon_sym___declspec] = ACTIONS(3260), - [anon_sym___based] = ACTIONS(3260), - [anon_sym_signed] = ACTIONS(3260), - [anon_sym_unsigned] = ACTIONS(3260), - [anon_sym_long] = ACTIONS(3260), - [anon_sym_short] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_register] = ACTIONS(3260), - [anon_sym_inline] = ACTIONS(3260), - [anon_sym___inline] = ACTIONS(3260), - [anon_sym___inline__] = ACTIONS(3260), - [anon_sym___forceinline] = ACTIONS(3260), - [anon_sym_thread_local] = ACTIONS(3260), - [anon_sym___thread] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_constexpr] = ACTIONS(3260), - [anon_sym_volatile] = ACTIONS(3260), - [anon_sym_restrict] = ACTIONS(3260), - [anon_sym___restrict__] = ACTIONS(3260), - [anon_sym__Atomic] = ACTIONS(3260), - [anon_sym__Noreturn] = ACTIONS(3260), - [anon_sym_noreturn] = ACTIONS(3260), - [anon_sym__Nonnull] = ACTIONS(3260), - [anon_sym_mutable] = ACTIONS(3260), - [anon_sym_constinit] = ACTIONS(3260), - [anon_sym_consteval] = ACTIONS(3260), - [anon_sym_alignas] = ACTIONS(3260), - [anon_sym__Alignas] = ACTIONS(3260), - [sym_primitive_type] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(3260), - [anon_sym_union] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3260), - [anon_sym_decltype] = ACTIONS(3260), - [anon_sym_explicit] = ACTIONS(3260), - [anon_sym_typename] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_template] = ACTIONS(3260), - [anon_sym_operator] = ACTIONS(3260), - [anon_sym_friend] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_static_assert] = ACTIONS(3260), + [STATE(1418)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6015), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2082)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3268), - [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_virtual] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym___attribute] = ACTIONS(3266), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_friend] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), + [STATE(1419)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6017), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2083)] = { - [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), - [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_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), + [STATE(1420)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(6019), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2084)] = { - [sym_string_literal] = STATE(2215), - [sym_template_argument_list] = STATE(3176), - [sym_raw_string_literal] = STATE(2215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LPAREN2] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5076), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(5987), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + [STATE(1421)] = { + [sym_expression] = STATE(5186), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2085)] = { - [sym_string_literal] = STATE(2215), - [sym_template_argument_list] = STATE(3006), - [sym_raw_string_literal] = STATE(2215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(5929), - [anon_sym_LPAREN2] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(5935), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + [STATE(1422)] = { + [sym_expression] = STATE(7080), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2086)] = { - [sym_identifier] = ACTIONS(5603), - [aux_sym_preproc_def_token1] = ACTIONS(5603), - [aux_sym_preproc_if_token1] = ACTIONS(5603), - [aux_sym_preproc_if_token2] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5603), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5603), - [sym_preproc_directive] = ACTIONS(5603), - [anon_sym_LPAREN2] = ACTIONS(5605), - [anon_sym_TILDE] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5605), - [anon_sym_AMP_AMP] = ACTIONS(5605), - [anon_sym_AMP] = ACTIONS(5603), - [anon_sym_SEMI] = ACTIONS(5605), - [anon_sym___extension__] = ACTIONS(5603), - [anon_sym_typedef] = ACTIONS(5603), - [anon_sym_virtual] = ACTIONS(5603), - [anon_sym_extern] = ACTIONS(5603), - [anon_sym___attribute__] = ACTIONS(5603), - [anon_sym___attribute] = ACTIONS(5603), - [anon_sym_using] = ACTIONS(5603), - [anon_sym_COLON_COLON] = ACTIONS(5605), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5605), - [anon_sym___declspec] = ACTIONS(5603), - [anon_sym___based] = ACTIONS(5603), - [anon_sym_signed] = ACTIONS(5603), - [anon_sym_unsigned] = ACTIONS(5603), - [anon_sym_long] = ACTIONS(5603), - [anon_sym_short] = ACTIONS(5603), - [anon_sym_LBRACK] = ACTIONS(5603), - [anon_sym_static] = ACTIONS(5603), - [anon_sym_register] = ACTIONS(5603), - [anon_sym_inline] = ACTIONS(5603), - [anon_sym___inline] = ACTIONS(5603), - [anon_sym___inline__] = ACTIONS(5603), - [anon_sym___forceinline] = ACTIONS(5603), - [anon_sym_thread_local] = ACTIONS(5603), - [anon_sym___thread] = ACTIONS(5603), - [anon_sym_const] = ACTIONS(5603), - [anon_sym_constexpr] = ACTIONS(5603), - [anon_sym_volatile] = ACTIONS(5603), - [anon_sym_restrict] = ACTIONS(5603), - [anon_sym___restrict__] = ACTIONS(5603), - [anon_sym__Atomic] = ACTIONS(5603), - [anon_sym__Noreturn] = ACTIONS(5603), - [anon_sym_noreturn] = ACTIONS(5603), - [anon_sym__Nonnull] = ACTIONS(5603), - [anon_sym_mutable] = ACTIONS(5603), - [anon_sym_constinit] = ACTIONS(5603), - [anon_sym_consteval] = ACTIONS(5603), - [anon_sym_alignas] = ACTIONS(5603), - [anon_sym__Alignas] = ACTIONS(5603), - [sym_primitive_type] = ACTIONS(5603), - [anon_sym_enum] = ACTIONS(5603), - [anon_sym_class] = ACTIONS(5603), - [anon_sym_struct] = ACTIONS(5603), - [anon_sym_union] = ACTIONS(5603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5603), - [anon_sym_decltype] = ACTIONS(5603), - [anon_sym_explicit] = ACTIONS(5603), - [anon_sym_typename] = ACTIONS(5603), - [anon_sym_private] = ACTIONS(5603), - [anon_sym_template] = ACTIONS(5603), - [anon_sym_operator] = ACTIONS(5603), - [anon_sym_friend] = ACTIONS(5603), - [anon_sym_public] = ACTIONS(5603), - [anon_sym_protected] = ACTIONS(5603), - [anon_sym_static_assert] = ACTIONS(5603), + [STATE(1423)] = { + [sym_expression] = STATE(6677), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2087)] = { - [sym_identifier] = ACTIONS(3276), - [aux_sym_preproc_def_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token1] = ACTIONS(3276), - [aux_sym_preproc_if_token2] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3276), - [sym_preproc_directive] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym___extension__] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3276), - [anon_sym_virtual] = ACTIONS(3276), - [anon_sym_extern] = ACTIONS(3276), - [anon_sym___attribute__] = ACTIONS(3276), - [anon_sym___attribute] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3278), - [anon_sym___declspec] = ACTIONS(3276), - [anon_sym___based] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3276), - [anon_sym_unsigned] = ACTIONS(3276), - [anon_sym_long] = ACTIONS(3276), - [anon_sym_short] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_register] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym___inline] = ACTIONS(3276), - [anon_sym___inline__] = ACTIONS(3276), - [anon_sym___forceinline] = ACTIONS(3276), - [anon_sym_thread_local] = ACTIONS(3276), - [anon_sym___thread] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_constexpr] = ACTIONS(3276), - [anon_sym_volatile] = ACTIONS(3276), - [anon_sym_restrict] = ACTIONS(3276), - [anon_sym___restrict__] = ACTIONS(3276), - [anon_sym__Atomic] = ACTIONS(3276), - [anon_sym__Noreturn] = ACTIONS(3276), - [anon_sym_noreturn] = ACTIONS(3276), - [anon_sym__Nonnull] = ACTIONS(3276), - [anon_sym_mutable] = ACTIONS(3276), - [anon_sym_constinit] = ACTIONS(3276), - [anon_sym_consteval] = ACTIONS(3276), - [anon_sym_alignas] = ACTIONS(3276), - [anon_sym__Alignas] = ACTIONS(3276), - [sym_primitive_type] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_struct] = ACTIONS(3276), - [anon_sym_union] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3276), - [anon_sym_decltype] = ACTIONS(3276), - [anon_sym_explicit] = ACTIONS(3276), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_friend] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_static_assert] = ACTIONS(3276), + [STATE(1424)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(6021), }, - [STATE(2088)] = { - [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), - [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_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym___attribute] = ACTIONS(3280), - [anon_sym_using] = 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__Nonnull] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_friend] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), + [STATE(1425)] = { + [sym_expression] = STATE(6641), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2089)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token2] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [anon_sym_signed] = ACTIONS(5607), - [anon_sym_unsigned] = ACTIONS(5607), - [anon_sym_long] = ACTIONS(5607), - [anon_sym_short] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1426)] = { + [sym_expression] = STATE(5751), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(6023), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2090)] = { - [sym_identifier] = ACTIONS(5989), - [anon_sym_LPAREN2] = ACTIONS(5991), - [anon_sym_TILDE] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5989), - [anon_sym___extension__] = ACTIONS(5989), - [anon_sym_virtual] = ACTIONS(5989), - [anon_sym_extern] = ACTIONS(5989), - [anon_sym___attribute__] = ACTIONS(5989), - [anon_sym___attribute] = ACTIONS(5989), - [anon_sym_using] = ACTIONS(5989), - [anon_sym_COLON_COLON] = ACTIONS(5991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5991), - [anon_sym___declspec] = ACTIONS(5989), - [anon_sym___based] = ACTIONS(5989), - [anon_sym___cdecl] = ACTIONS(5989), - [anon_sym___clrcall] = ACTIONS(5989), - [anon_sym___stdcall] = ACTIONS(5989), - [anon_sym___fastcall] = ACTIONS(5989), - [anon_sym___thiscall] = ACTIONS(5989), - [anon_sym___vectorcall] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5991), - [anon_sym_signed] = ACTIONS(5989), - [anon_sym_unsigned] = ACTIONS(5989), - [anon_sym_long] = ACTIONS(5989), - [anon_sym_short] = ACTIONS(5989), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_static] = ACTIONS(5989), - [anon_sym_register] = ACTIONS(5989), - [anon_sym_inline] = ACTIONS(5989), - [anon_sym___inline] = ACTIONS(5989), - [anon_sym___inline__] = ACTIONS(5989), - [anon_sym___forceinline] = ACTIONS(5989), - [anon_sym_thread_local] = ACTIONS(5989), - [anon_sym___thread] = ACTIONS(5989), - [anon_sym_const] = ACTIONS(5989), - [anon_sym_constexpr] = ACTIONS(5989), - [anon_sym_volatile] = ACTIONS(5989), - [anon_sym_restrict] = ACTIONS(5989), - [anon_sym___restrict__] = ACTIONS(5989), - [anon_sym__Atomic] = ACTIONS(5989), - [anon_sym__Noreturn] = ACTIONS(5989), - [anon_sym_noreturn] = ACTIONS(5989), - [anon_sym__Nonnull] = ACTIONS(5989), - [anon_sym_mutable] = ACTIONS(5989), - [anon_sym_constinit] = ACTIONS(5989), - [anon_sym_consteval] = ACTIONS(5989), - [anon_sym_alignas] = ACTIONS(5989), - [anon_sym__Alignas] = ACTIONS(5989), - [sym_primitive_type] = ACTIONS(5989), - [anon_sym_enum] = ACTIONS(5989), - [anon_sym_class] = ACTIONS(5989), - [anon_sym_struct] = ACTIONS(5989), - [anon_sym_union] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5991), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5989), - [anon_sym_decltype] = ACTIONS(5989), - [anon_sym_explicit] = ACTIONS(5989), - [anon_sym_typename] = ACTIONS(5989), - [anon_sym_template] = ACTIONS(5989), - [anon_sym_operator] = ACTIONS(5989), - [anon_sym_friend] = ACTIONS(5989), - [anon_sym_noexcept] = ACTIONS(5989), - [anon_sym_throw] = ACTIONS(5989), - [anon_sym_concept] = ACTIONS(5989), - [anon_sym_requires] = ACTIONS(5989), + [STATE(1427)] = { + [sym_expression] = STATE(5778), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2091)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token2] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1428)] = { + [sym_expression] = STATE(6769), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2092)] = { - [sym_identifier] = ACTIONS(5607), - [aux_sym_preproc_def_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token1] = ACTIONS(5607), - [aux_sym_preproc_if_token2] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5607), - [sym_preproc_directive] = ACTIONS(5607), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_TILDE] = ACTIONS(5609), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym_typedef] = ACTIONS(5607), - [anon_sym_virtual] = ACTIONS(5607), - [anon_sym_extern] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___attribute] = ACTIONS(5607), - [anon_sym_using] = ACTIONS(5607), - [anon_sym_COLON_COLON] = ACTIONS(5609), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5609), - [anon_sym___declspec] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [anon_sym_signed] = ACTIONS(5607), - [anon_sym_unsigned] = ACTIONS(5607), - [anon_sym_long] = ACTIONS(5607), - [anon_sym_short] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5607), - [anon_sym_static] = ACTIONS(5607), - [anon_sym_register] = ACTIONS(5607), - [anon_sym_inline] = ACTIONS(5607), - [anon_sym___inline] = ACTIONS(5607), - [anon_sym___inline__] = ACTIONS(5607), - [anon_sym___forceinline] = ACTIONS(5607), - [anon_sym_thread_local] = ACTIONS(5607), - [anon_sym___thread] = ACTIONS(5607), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym__Nonnull] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [anon_sym_alignas] = ACTIONS(5607), - [anon_sym__Alignas] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_enum] = ACTIONS(5607), - [anon_sym_class] = ACTIONS(5607), - [anon_sym_struct] = ACTIONS(5607), - [anon_sym_union] = ACTIONS(5607), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_explicit] = ACTIONS(5607), - [anon_sym_typename] = ACTIONS(5607), - [anon_sym_private] = ACTIONS(5607), - [anon_sym_template] = ACTIONS(5607), - [anon_sym_operator] = ACTIONS(5607), - [anon_sym_friend] = ACTIONS(5607), - [anon_sym_public] = ACTIONS(5607), - [anon_sym_protected] = ACTIONS(5607), - [anon_sym_static_assert] = ACTIONS(5607), + [STATE(1429)] = { + [sym_expression] = STATE(5744), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(6025), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2093)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3290), - [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_virtual] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym___attribute] = ACTIONS(3288), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_friend] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), + [STATE(1430)] = { + [sym_expression] = STATE(6853), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2094)] = { - [sym_identifier] = ACTIONS(3296), - [aux_sym_preproc_def_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token1] = ACTIONS(3296), - [aux_sym_preproc_if_token2] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3296), - [sym_preproc_directive] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(3298), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3296), - [anon_sym_virtual] = ACTIONS(3296), - [anon_sym_extern] = ACTIONS(3296), - [anon_sym___attribute__] = ACTIONS(3296), - [anon_sym___attribute] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3298), - [anon_sym___declspec] = ACTIONS(3296), - [anon_sym___based] = ACTIONS(3296), - [anon_sym_signed] = ACTIONS(3296), - [anon_sym_unsigned] = ACTIONS(3296), - [anon_sym_long] = ACTIONS(3296), - [anon_sym_short] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_register] = ACTIONS(3296), - [anon_sym_inline] = ACTIONS(3296), - [anon_sym___inline] = ACTIONS(3296), - [anon_sym___inline__] = ACTIONS(3296), - [anon_sym___forceinline] = ACTIONS(3296), - [anon_sym_thread_local] = ACTIONS(3296), - [anon_sym___thread] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_constexpr] = ACTIONS(3296), - [anon_sym_volatile] = ACTIONS(3296), - [anon_sym_restrict] = ACTIONS(3296), - [anon_sym___restrict__] = ACTIONS(3296), - [anon_sym__Atomic] = ACTIONS(3296), - [anon_sym__Noreturn] = ACTIONS(3296), - [anon_sym_noreturn] = ACTIONS(3296), - [anon_sym__Nonnull] = ACTIONS(3296), - [anon_sym_mutable] = ACTIONS(3296), - [anon_sym_constinit] = ACTIONS(3296), - [anon_sym_consteval] = ACTIONS(3296), - [anon_sym_alignas] = ACTIONS(3296), - [anon_sym__Alignas] = ACTIONS(3296), - [sym_primitive_type] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_struct] = ACTIONS(3296), - [anon_sym_union] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3296), - [anon_sym_decltype] = ACTIONS(3296), - [anon_sym_explicit] = ACTIONS(3296), - [anon_sym_typename] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_template] = ACTIONS(3296), - [anon_sym_operator] = ACTIONS(3296), - [anon_sym_friend] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_static_assert] = ACTIONS(3296), + [STATE(1431)] = { + [sym_expression] = STATE(6698), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2095)] = { - [sym_identifier] = ACTIONS(5993), - [anon_sym_LPAREN2] = ACTIONS(5995), - [anon_sym_TILDE] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5993), - [anon_sym___extension__] = ACTIONS(5993), - [anon_sym_virtual] = ACTIONS(5993), - [anon_sym_extern] = ACTIONS(5993), - [anon_sym___attribute__] = ACTIONS(5993), - [anon_sym___attribute] = ACTIONS(5993), - [anon_sym_using] = ACTIONS(5993), - [anon_sym_COLON_COLON] = ACTIONS(5995), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5995), - [anon_sym___declspec] = ACTIONS(5993), - [anon_sym___based] = ACTIONS(5993), - [anon_sym___cdecl] = ACTIONS(5993), - [anon_sym___clrcall] = ACTIONS(5993), - [anon_sym___stdcall] = ACTIONS(5993), - [anon_sym___fastcall] = ACTIONS(5993), - [anon_sym___thiscall] = ACTIONS(5993), - [anon_sym___vectorcall] = ACTIONS(5993), - [anon_sym_LBRACE] = ACTIONS(5995), - [anon_sym_signed] = ACTIONS(5993), - [anon_sym_unsigned] = ACTIONS(5993), - [anon_sym_long] = ACTIONS(5993), - [anon_sym_short] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_static] = ACTIONS(5993), - [anon_sym_register] = ACTIONS(5993), - [anon_sym_inline] = ACTIONS(5993), - [anon_sym___inline] = ACTIONS(5993), - [anon_sym___inline__] = ACTIONS(5993), - [anon_sym___forceinline] = ACTIONS(5993), - [anon_sym_thread_local] = ACTIONS(5993), - [anon_sym___thread] = ACTIONS(5993), - [anon_sym_const] = ACTIONS(5993), - [anon_sym_constexpr] = ACTIONS(5993), - [anon_sym_volatile] = ACTIONS(5993), - [anon_sym_restrict] = ACTIONS(5993), - [anon_sym___restrict__] = ACTIONS(5993), - [anon_sym__Atomic] = ACTIONS(5993), - [anon_sym__Noreturn] = ACTIONS(5993), - [anon_sym_noreturn] = ACTIONS(5993), - [anon_sym__Nonnull] = ACTIONS(5993), - [anon_sym_mutable] = ACTIONS(5993), - [anon_sym_constinit] = ACTIONS(5993), - [anon_sym_consteval] = ACTIONS(5993), - [anon_sym_alignas] = ACTIONS(5993), - [anon_sym__Alignas] = ACTIONS(5993), - [sym_primitive_type] = ACTIONS(5993), - [anon_sym_enum] = ACTIONS(5993), - [anon_sym_class] = ACTIONS(5993), - [anon_sym_struct] = ACTIONS(5993), - [anon_sym_union] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5993), - [anon_sym_decltype] = ACTIONS(5993), - [anon_sym_explicit] = ACTIONS(5993), - [anon_sym_typename] = ACTIONS(5993), - [anon_sym_template] = ACTIONS(5993), - [anon_sym_operator] = ACTIONS(5993), - [anon_sym_friend] = ACTIONS(5993), - [anon_sym_noexcept] = ACTIONS(5993), - [anon_sym_throw] = ACTIONS(5993), - [anon_sym_concept] = ACTIONS(5993), - [anon_sym_requires] = ACTIONS(5993), + [STATE(1432)] = { + [sym_expression] = STATE(5644), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2096)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_friend] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), + [STATE(1433)] = { + [sym_expression] = STATE(6633), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2097)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_friend] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_protected] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), + [STATE(1434)] = { + [sym_expression] = STATE(6938), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2098)] = { - [sym_identifier] = ACTIONS(5611), - [aux_sym_preproc_def_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token1] = ACTIONS(5611), - [aux_sym_preproc_if_token2] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5611), - [sym_preproc_directive] = ACTIONS(5611), - [anon_sym_LPAREN2] = ACTIONS(5613), - [anon_sym_TILDE] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_AMP_AMP] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_SEMI] = ACTIONS(5613), - [anon_sym___extension__] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5611), - [anon_sym_virtual] = ACTIONS(5611), - [anon_sym_extern] = ACTIONS(5611), - [anon_sym___attribute__] = ACTIONS(5611), - [anon_sym___attribute] = ACTIONS(5611), - [anon_sym_using] = ACTIONS(5611), - [anon_sym_COLON_COLON] = ACTIONS(5613), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5613), - [anon_sym___declspec] = ACTIONS(5611), - [anon_sym___based] = ACTIONS(5611), - [anon_sym_signed] = ACTIONS(5611), - [anon_sym_unsigned] = ACTIONS(5611), - [anon_sym_long] = ACTIONS(5611), - [anon_sym_short] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5611), - [anon_sym_register] = ACTIONS(5611), - [anon_sym_inline] = ACTIONS(5611), - [anon_sym___inline] = ACTIONS(5611), - [anon_sym___inline__] = ACTIONS(5611), - [anon_sym___forceinline] = ACTIONS(5611), - [anon_sym_thread_local] = ACTIONS(5611), - [anon_sym___thread] = ACTIONS(5611), - [anon_sym_const] = ACTIONS(5611), - [anon_sym_constexpr] = ACTIONS(5611), - [anon_sym_volatile] = ACTIONS(5611), - [anon_sym_restrict] = ACTIONS(5611), - [anon_sym___restrict__] = ACTIONS(5611), - [anon_sym__Atomic] = ACTIONS(5611), - [anon_sym__Noreturn] = ACTIONS(5611), - [anon_sym_noreturn] = ACTIONS(5611), - [anon_sym__Nonnull] = ACTIONS(5611), - [anon_sym_mutable] = ACTIONS(5611), - [anon_sym_constinit] = ACTIONS(5611), - [anon_sym_consteval] = ACTIONS(5611), - [anon_sym_alignas] = ACTIONS(5611), - [anon_sym__Alignas] = ACTIONS(5611), - [sym_primitive_type] = ACTIONS(5611), - [anon_sym_enum] = ACTIONS(5611), - [anon_sym_class] = ACTIONS(5611), - [anon_sym_struct] = ACTIONS(5611), - [anon_sym_union] = ACTIONS(5611), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5611), - [anon_sym_decltype] = ACTIONS(5611), - [anon_sym_explicit] = ACTIONS(5611), - [anon_sym_typename] = ACTIONS(5611), - [anon_sym_private] = ACTIONS(5611), - [anon_sym_template] = ACTIONS(5611), - [anon_sym_operator] = ACTIONS(5611), - [anon_sym_friend] = ACTIONS(5611), - [anon_sym_public] = ACTIONS(5611), - [anon_sym_protected] = ACTIONS(5611), - [anon_sym_static_assert] = ACTIONS(5611), + [STATE(1435)] = { + [sym_expression] = STATE(5011), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2099)] = { - [sym_identifier] = ACTIONS(5615), - [aux_sym_preproc_def_token1] = ACTIONS(5615), - [aux_sym_preproc_if_token1] = ACTIONS(5615), - [aux_sym_preproc_if_token2] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5615), - [sym_preproc_directive] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_AMP_AMP] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5615), - [anon_sym_SEMI] = ACTIONS(5617), - [anon_sym___extension__] = ACTIONS(5615), - [anon_sym_typedef] = ACTIONS(5615), - [anon_sym_virtual] = ACTIONS(5615), - [anon_sym_extern] = ACTIONS(5615), - [anon_sym___attribute__] = ACTIONS(5615), - [anon_sym___attribute] = ACTIONS(5615), - [anon_sym_using] = ACTIONS(5615), - [anon_sym_COLON_COLON] = ACTIONS(5617), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), - [anon_sym___declspec] = ACTIONS(5615), - [anon_sym___based] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5615), - [anon_sym_unsigned] = ACTIONS(5615), - [anon_sym_long] = ACTIONS(5615), - [anon_sym_short] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_static] = ACTIONS(5615), - [anon_sym_register] = ACTIONS(5615), - [anon_sym_inline] = ACTIONS(5615), - [anon_sym___inline] = ACTIONS(5615), - [anon_sym___inline__] = ACTIONS(5615), - [anon_sym___forceinline] = ACTIONS(5615), - [anon_sym_thread_local] = ACTIONS(5615), - [anon_sym___thread] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5615), - [anon_sym_constexpr] = ACTIONS(5615), - [anon_sym_volatile] = ACTIONS(5615), - [anon_sym_restrict] = ACTIONS(5615), - [anon_sym___restrict__] = ACTIONS(5615), - [anon_sym__Atomic] = ACTIONS(5615), - [anon_sym__Noreturn] = ACTIONS(5615), - [anon_sym_noreturn] = ACTIONS(5615), - [anon_sym__Nonnull] = ACTIONS(5615), - [anon_sym_mutable] = ACTIONS(5615), - [anon_sym_constinit] = ACTIONS(5615), - [anon_sym_consteval] = ACTIONS(5615), - [anon_sym_alignas] = ACTIONS(5615), - [anon_sym__Alignas] = ACTIONS(5615), - [sym_primitive_type] = ACTIONS(5615), - [anon_sym_enum] = ACTIONS(5615), - [anon_sym_class] = ACTIONS(5615), - [anon_sym_struct] = ACTIONS(5615), - [anon_sym_union] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5615), - [anon_sym_decltype] = ACTIONS(5615), - [anon_sym_explicit] = ACTIONS(5615), - [anon_sym_typename] = ACTIONS(5615), - [anon_sym_private] = ACTIONS(5615), - [anon_sym_template] = ACTIONS(5615), - [anon_sym_operator] = ACTIONS(5615), - [anon_sym_friend] = ACTIONS(5615), - [anon_sym_public] = ACTIONS(5615), - [anon_sym_protected] = ACTIONS(5615), - [anon_sym_static_assert] = ACTIONS(5615), + [STATE(1436)] = { + [sym_expression] = STATE(5738), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2100)] = { - [sym_identifier] = ACTIONS(5619), - [aux_sym_preproc_def_token1] = ACTIONS(5619), - [aux_sym_preproc_if_token1] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5619), - [sym_preproc_directive] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5621), - [anon_sym_TILDE] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5621), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5619), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym___extension__] = ACTIONS(5619), - [anon_sym_typedef] = ACTIONS(5619), - [anon_sym_virtual] = ACTIONS(5619), - [anon_sym_extern] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5619), - [anon_sym___attribute] = ACTIONS(5619), - [anon_sym_using] = ACTIONS(5619), - [anon_sym_COLON_COLON] = ACTIONS(5621), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), - [anon_sym___declspec] = ACTIONS(5619), - [anon_sym___based] = ACTIONS(5619), - [anon_sym_signed] = ACTIONS(5619), - [anon_sym_unsigned] = ACTIONS(5619), - [anon_sym_long] = ACTIONS(5619), - [anon_sym_short] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_static] = ACTIONS(5619), - [anon_sym_register] = ACTIONS(5619), - [anon_sym_inline] = ACTIONS(5619), - [anon_sym___inline] = ACTIONS(5619), - [anon_sym___inline__] = ACTIONS(5619), - [anon_sym___forceinline] = ACTIONS(5619), - [anon_sym_thread_local] = ACTIONS(5619), - [anon_sym___thread] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5619), - [anon_sym_constexpr] = ACTIONS(5619), - [anon_sym_volatile] = ACTIONS(5619), - [anon_sym_restrict] = ACTIONS(5619), - [anon_sym___restrict__] = ACTIONS(5619), - [anon_sym__Atomic] = ACTIONS(5619), - [anon_sym__Noreturn] = ACTIONS(5619), - [anon_sym_noreturn] = ACTIONS(5619), - [anon_sym__Nonnull] = ACTIONS(5619), - [anon_sym_mutable] = ACTIONS(5619), - [anon_sym_constinit] = ACTIONS(5619), - [anon_sym_consteval] = ACTIONS(5619), - [anon_sym_alignas] = ACTIONS(5619), - [anon_sym__Alignas] = ACTIONS(5619), - [sym_primitive_type] = ACTIONS(5619), - [anon_sym_enum] = ACTIONS(5619), - [anon_sym_class] = ACTIONS(5619), - [anon_sym_struct] = ACTIONS(5619), - [anon_sym_union] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5619), - [anon_sym_decltype] = ACTIONS(5619), - [anon_sym_explicit] = ACTIONS(5619), - [anon_sym_typename] = ACTIONS(5619), - [anon_sym_private] = ACTIONS(5619), - [anon_sym_template] = ACTIONS(5619), - [anon_sym_operator] = ACTIONS(5619), - [anon_sym_friend] = ACTIONS(5619), - [anon_sym_public] = ACTIONS(5619), - [anon_sym_protected] = ACTIONS(5619), - [anon_sym_static_assert] = ACTIONS(5619), + [STATE(1437)] = { + [sym_expression] = STATE(7053), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2101)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2967), - [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_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_friend] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_protected] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), + [STATE(1438)] = { + [sym_expression] = STATE(5693), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2102)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2975), - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_private] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_friend] = ACTIONS(2973), - [anon_sym_public] = ACTIONS(2973), - [anon_sym_protected] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), + [STATE(1439)] = { + [sym_expression] = STATE(6689), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2103)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2979), - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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_RBRACE] = 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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_friend] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), + [STATE(1440)] = { + [sym_expression] = STATE(6693), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2104)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_friend] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_protected] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), + [STATE(1441)] = { + [sym_expression] = STATE(6860), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2105)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_friend] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), + [STATE(1442)] = { + [sym_expression] = STATE(6533), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2106)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), + [STATE(1443)] = { + [sym_expression] = STATE(6664), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(6027), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_friend] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - }, - [STATE(2107)] = { - [sym_identifier] = ACTIONS(3304), - [aux_sym_preproc_def_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token1] = ACTIONS(3304), - [aux_sym_preproc_if_token2] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), - [sym_preproc_directive] = ACTIONS(3304), - [anon_sym_LPAREN2] = ACTIONS(3306), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_AMP_AMP] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3304), - [anon_sym_typedef] = ACTIONS(3304), - [anon_sym_virtual] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(3304), - [anon_sym___attribute__] = ACTIONS(3304), - [anon_sym___attribute] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_COLON_COLON] = ACTIONS(3306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), - [anon_sym___declspec] = ACTIONS(3304), - [anon_sym___based] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3304), - [anon_sym_unsigned] = ACTIONS(3304), - [anon_sym_long] = ACTIONS(3304), - [anon_sym_short] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_register] = ACTIONS(3304), - [anon_sym_inline] = ACTIONS(3304), - [anon_sym___inline] = ACTIONS(3304), - [anon_sym___inline__] = ACTIONS(3304), - [anon_sym___forceinline] = ACTIONS(3304), - [anon_sym_thread_local] = ACTIONS(3304), - [anon_sym___thread] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_constexpr] = ACTIONS(3304), - [anon_sym_volatile] = ACTIONS(3304), - [anon_sym_restrict] = ACTIONS(3304), - [anon_sym___restrict__] = ACTIONS(3304), - [anon_sym__Atomic] = ACTIONS(3304), - [anon_sym__Noreturn] = ACTIONS(3304), - [anon_sym_noreturn] = ACTIONS(3304), - [anon_sym__Nonnull] = ACTIONS(3304), - [anon_sym_mutable] = ACTIONS(3304), - [anon_sym_constinit] = ACTIONS(3304), - [anon_sym_consteval] = ACTIONS(3304), - [anon_sym_alignas] = ACTIONS(3304), - [anon_sym__Alignas] = ACTIONS(3304), - [sym_primitive_type] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3304), - [anon_sym_union] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3304), - [anon_sym_decltype] = ACTIONS(3304), - [anon_sym_explicit] = ACTIONS(3304), - [anon_sym_typename] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_template] = ACTIONS(3304), - [anon_sym_operator] = ACTIONS(3304), - [anon_sym_friend] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_static_assert] = ACTIONS(3304), - }, - [STATE(2108)] = { - [sym_identifier] = ACTIONS(2649), - [aux_sym_preproc_def_token1] = ACTIONS(2649), - [aux_sym_preproc_if_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), - [sym_preproc_directive] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2651), - [anon_sym_AMP_AMP] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym___extension__] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2649), - [anon_sym_virtual] = ACTIONS(2649), - [anon_sym_extern] = ACTIONS(2649), - [anon_sym___attribute__] = ACTIONS(2649), - [anon_sym___attribute] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2651), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), - [anon_sym___declspec] = ACTIONS(2649), - [anon_sym___based] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2649), - [anon_sym_unsigned] = ACTIONS(2649), - [anon_sym_long] = ACTIONS(2649), - [anon_sym_short] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_register] = ACTIONS(2649), - [anon_sym_inline] = ACTIONS(2649), - [anon_sym___inline] = ACTIONS(2649), - [anon_sym___inline__] = ACTIONS(2649), - [anon_sym___forceinline] = ACTIONS(2649), - [anon_sym_thread_local] = ACTIONS(2649), - [anon_sym___thread] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_constexpr] = ACTIONS(2649), - [anon_sym_volatile] = ACTIONS(2649), - [anon_sym_restrict] = ACTIONS(2649), - [anon_sym___restrict__] = ACTIONS(2649), - [anon_sym__Atomic] = ACTIONS(2649), - [anon_sym__Noreturn] = ACTIONS(2649), - [anon_sym_noreturn] = ACTIONS(2649), - [anon_sym__Nonnull] = ACTIONS(2649), - [anon_sym_mutable] = ACTIONS(2649), - [anon_sym_constinit] = ACTIONS(2649), - [anon_sym_consteval] = ACTIONS(2649), - [anon_sym_alignas] = ACTIONS(2649), - [anon_sym__Alignas] = ACTIONS(2649), - [sym_primitive_type] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2649), - [anon_sym_union] = ACTIONS(2649), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2649), - [anon_sym_decltype] = ACTIONS(2649), - [anon_sym_explicit] = ACTIONS(2649), - [anon_sym_typename] = ACTIONS(2649), - [anon_sym_private] = ACTIONS(2649), - [anon_sym_template] = ACTIONS(2649), - [anon_sym_operator] = ACTIONS(2649), - [anon_sym_friend] = ACTIONS(2649), - [anon_sym_public] = ACTIONS(2649), - [anon_sym_protected] = ACTIONS(2649), - [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2109)] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym___extension__] = ACTIONS(2655), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym___attribute] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym___inline] = ACTIONS(2655), - [anon_sym___inline__] = ACTIONS(2655), - [anon_sym___forceinline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym___thread] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym___restrict__] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym__Noreturn] = ACTIONS(2655), - [anon_sym_noreturn] = ACTIONS(2655), - [anon_sym__Nonnull] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_alignas] = ACTIONS(2655), - [anon_sym__Alignas] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_friend] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_protected] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), + [STATE(1444)] = { + [sym_expression] = STATE(6666), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2110)] = { - [sym_identifier] = ACTIONS(3217), - [aux_sym_preproc_def_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token1] = ACTIONS(3217), - [aux_sym_preproc_if_token2] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3217), - [sym_preproc_directive] = ACTIONS(3217), - [anon_sym_LPAREN2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_typedef] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym___attribute__] = ACTIONS(3217), - [anon_sym___attribute] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3219), - [anon_sym___declspec] = ACTIONS(3217), - [anon_sym___based] = ACTIONS(3217), - [anon_sym_signed] = ACTIONS(3217), - [anon_sym_unsigned] = ACTIONS(3217), - [anon_sym_long] = ACTIONS(3217), - [anon_sym_short] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_register] = ACTIONS(3217), - [anon_sym_inline] = ACTIONS(3217), - [anon_sym___inline] = ACTIONS(3217), - [anon_sym___inline__] = ACTIONS(3217), - [anon_sym___forceinline] = ACTIONS(3217), - [anon_sym_thread_local] = ACTIONS(3217), - [anon_sym___thread] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_constexpr] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_restrict] = ACTIONS(3217), - [anon_sym___restrict__] = ACTIONS(3217), - [anon_sym__Atomic] = ACTIONS(3217), - [anon_sym__Noreturn] = ACTIONS(3217), - [anon_sym_noreturn] = ACTIONS(3217), - [anon_sym__Nonnull] = ACTIONS(3217), - [anon_sym_mutable] = ACTIONS(3217), - [anon_sym_constinit] = ACTIONS(3217), - [anon_sym_consteval] = ACTIONS(3217), - [anon_sym_alignas] = ACTIONS(3217), - [anon_sym__Alignas] = ACTIONS(3217), - [sym_primitive_type] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_union] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3217), - [anon_sym_decltype] = ACTIONS(3217), - [anon_sym_explicit] = ACTIONS(3217), - [anon_sym_typename] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_template] = ACTIONS(3217), - [anon_sym_operator] = ACTIONS(3217), - [anon_sym_friend] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_static_assert] = ACTIONS(3217), + [STATE(1445)] = { + [sym_expression] = STATE(6990), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2111)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token2] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), + [STATE(1446)] = { + [sym_expression] = STATE(6665), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(6029), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2112)] = { - [sym_ms_based_modifier] = STATE(8527), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2116), - [sym__declarator] = STATE(6677), - [sym__abstract_declarator] = STATE(6875), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2659), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3247), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6011), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2659), - [aux_sym_pointer_declarator_repeat1] = STATE(2116), - [sym_identifier] = ACTIONS(5505), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_AMP] = ACTIONS(6001), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5701), - [anon_sym___attribute] = ACTIONS(5701), - [anon_sym_COLON_COLON] = ACTIONS(6003), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1447)] = { + [sym_expression] = STATE(6355), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6031), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2113)] = { - [sym_identifier] = ACTIONS(3037), - [aux_sym_preproc_def_token1] = ACTIONS(3037), - [aux_sym_preproc_if_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym___extension__] = ACTIONS(3037), - [anon_sym_typedef] = ACTIONS(3037), - [anon_sym_virtual] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym___attribute__] = ACTIONS(3037), - [anon_sym___attribute] = ACTIONS(3037), - [anon_sym_using] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3039), - [anon_sym___declspec] = ACTIONS(3037), - [anon_sym___based] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_signed] = ACTIONS(3037), - [anon_sym_unsigned] = ACTIONS(3037), - [anon_sym_long] = ACTIONS(3037), - [anon_sym_short] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_register] = ACTIONS(3037), - [anon_sym_inline] = ACTIONS(3037), - [anon_sym___inline] = ACTIONS(3037), - [anon_sym___inline__] = ACTIONS(3037), - [anon_sym___forceinline] = ACTIONS(3037), - [anon_sym_thread_local] = ACTIONS(3037), - [anon_sym___thread] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_constexpr] = ACTIONS(3037), - [anon_sym_volatile] = ACTIONS(3037), - [anon_sym_restrict] = ACTIONS(3037), - [anon_sym___restrict__] = ACTIONS(3037), - [anon_sym__Atomic] = ACTIONS(3037), - [anon_sym__Noreturn] = ACTIONS(3037), - [anon_sym_noreturn] = ACTIONS(3037), - [anon_sym__Nonnull] = ACTIONS(3037), - [anon_sym_mutable] = ACTIONS(3037), - [anon_sym_constinit] = ACTIONS(3037), - [anon_sym_consteval] = ACTIONS(3037), - [anon_sym_alignas] = ACTIONS(3037), - [anon_sym__Alignas] = ACTIONS(3037), - [sym_primitive_type] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3037), - [anon_sym_decltype] = ACTIONS(3037), - [anon_sym_explicit] = ACTIONS(3037), - [anon_sym_typename] = ACTIONS(3037), - [anon_sym_private] = ACTIONS(3037), - [anon_sym_template] = ACTIONS(3037), - [anon_sym_operator] = ACTIONS(3037), - [anon_sym_friend] = ACTIONS(3037), - [anon_sym_public] = ACTIONS(3037), - [anon_sym_protected] = ACTIONS(3037), - [anon_sym_static_assert] = ACTIONS(3037), + [STATE(1448)] = { + [sym_expression] = STATE(6926), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2114)] = { - [sym_identifier] = ACTIONS(5563), - [aux_sym_preproc_def_token1] = ACTIONS(5563), - [aux_sym_preproc_if_token1] = ACTIONS(5563), - [aux_sym_preproc_if_token2] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5563), - [sym_preproc_directive] = ACTIONS(5563), - [anon_sym_LPAREN2] = ACTIONS(5565), - [anon_sym_TILDE] = ACTIONS(5565), - [anon_sym_STAR] = ACTIONS(5565), - [anon_sym_AMP_AMP] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5563), - [anon_sym_SEMI] = ACTIONS(5565), - [anon_sym___extension__] = ACTIONS(5563), - [anon_sym_typedef] = ACTIONS(5563), - [anon_sym_virtual] = ACTIONS(5563), - [anon_sym_extern] = ACTIONS(5563), - [anon_sym___attribute__] = ACTIONS(5563), - [anon_sym___attribute] = ACTIONS(5563), - [anon_sym_using] = ACTIONS(5563), - [anon_sym_COLON_COLON] = ACTIONS(5565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5565), - [anon_sym___declspec] = ACTIONS(5563), - [anon_sym___based] = ACTIONS(5563), - [anon_sym_signed] = ACTIONS(5563), - [anon_sym_unsigned] = ACTIONS(5563), - [anon_sym_long] = ACTIONS(5563), - [anon_sym_short] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_static] = ACTIONS(5563), - [anon_sym_register] = ACTIONS(5563), - [anon_sym_inline] = ACTIONS(5563), - [anon_sym___inline] = ACTIONS(5563), - [anon_sym___inline__] = ACTIONS(5563), - [anon_sym___forceinline] = ACTIONS(5563), - [anon_sym_thread_local] = ACTIONS(5563), - [anon_sym___thread] = ACTIONS(5563), - [anon_sym_const] = ACTIONS(5563), - [anon_sym_constexpr] = ACTIONS(5563), - [anon_sym_volatile] = ACTIONS(5563), - [anon_sym_restrict] = ACTIONS(5563), - [anon_sym___restrict__] = ACTIONS(5563), - [anon_sym__Atomic] = ACTIONS(5563), - [anon_sym__Noreturn] = ACTIONS(5563), - [anon_sym_noreturn] = ACTIONS(5563), - [anon_sym__Nonnull] = ACTIONS(5563), - [anon_sym_mutable] = ACTIONS(5563), - [anon_sym_constinit] = ACTIONS(5563), - [anon_sym_consteval] = ACTIONS(5563), - [anon_sym_alignas] = ACTIONS(5563), - [anon_sym__Alignas] = ACTIONS(5563), - [sym_primitive_type] = ACTIONS(5563), - [anon_sym_enum] = ACTIONS(5563), - [anon_sym_class] = ACTIONS(5563), - [anon_sym_struct] = ACTIONS(5563), - [anon_sym_union] = ACTIONS(5563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5563), - [anon_sym_decltype] = ACTIONS(5563), - [anon_sym_explicit] = ACTIONS(5563), - [anon_sym_typename] = ACTIONS(5563), - [anon_sym_private] = ACTIONS(5563), - [anon_sym_template] = ACTIONS(5563), - [anon_sym_operator] = ACTIONS(5563), - [anon_sym_friend] = ACTIONS(5563), - [anon_sym_public] = ACTIONS(5563), - [anon_sym_protected] = ACTIONS(5563), - [anon_sym_static_assert] = ACTIONS(5563), + [STATE(1449)] = { + [sym_expression] = STATE(6619), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2115)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1450)] = { + [sym_expression] = STATE(6720), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2116)] = { - [sym_ms_based_modifier] = STATE(8527), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(3928), - [sym__declarator] = STATE(6685), - [sym__abstract_declarator] = STATE(6919), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2676), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3247), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6011), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2676), - [aux_sym_pointer_declarator_repeat1] = STATE(3928), - [sym_identifier] = ACTIONS(5505), - [anon_sym_COMMA] = ACTIONS(5707), - [anon_sym_RPAREN] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(5997), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_AMP] = ACTIONS(6001), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym___attribute__] = ACTIONS(5709), - [anon_sym___attribute] = ACTIONS(5709), - [anon_sym_COLON_COLON] = ACTIONS(6003), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [STATE(1451)] = { + [sym_expression] = STATE(6695), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2117)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1452)] = { + [sym_expression] = STATE(6977), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2118)] = { - [sym_identifier] = ACTIONS(2951), - [aux_sym_preproc_def_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token1] = ACTIONS(2951), - [aux_sym_preproc_if_token2] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2951), - [sym_preproc_directive] = ACTIONS(2951), - [anon_sym_LPAREN2] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym___extension__] = ACTIONS(2951), - [anon_sym_typedef] = ACTIONS(2951), - [anon_sym_virtual] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym___attribute__] = ACTIONS(2951), - [anon_sym___attribute] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2953), - [anon_sym___declspec] = ACTIONS(2951), - [anon_sym___based] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2951), - [anon_sym_unsigned] = ACTIONS(2951), - [anon_sym_long] = ACTIONS(2951), - [anon_sym_short] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_register] = ACTIONS(2951), - [anon_sym_inline] = ACTIONS(2951), - [anon_sym___inline] = ACTIONS(2951), - [anon_sym___inline__] = ACTIONS(2951), - [anon_sym___forceinline] = ACTIONS(2951), - [anon_sym_thread_local] = ACTIONS(2951), - [anon_sym___thread] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_constexpr] = ACTIONS(2951), - [anon_sym_volatile] = ACTIONS(2951), - [anon_sym_restrict] = ACTIONS(2951), - [anon_sym___restrict__] = ACTIONS(2951), - [anon_sym__Atomic] = ACTIONS(2951), - [anon_sym__Noreturn] = ACTIONS(2951), - [anon_sym_noreturn] = ACTIONS(2951), - [anon_sym__Nonnull] = ACTIONS(2951), - [anon_sym_mutable] = ACTIONS(2951), - [anon_sym_constinit] = ACTIONS(2951), - [anon_sym_consteval] = ACTIONS(2951), - [anon_sym_alignas] = ACTIONS(2951), - [anon_sym__Alignas] = ACTIONS(2951), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2951), - [anon_sym_decltype] = ACTIONS(2951), - [anon_sym_explicit] = ACTIONS(2951), - [anon_sym_typename] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_template] = ACTIONS(2951), - [anon_sym_operator] = ACTIONS(2951), - [anon_sym_friend] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_static_assert] = ACTIONS(2951), + [STATE(1453)] = { + [sym_expression] = STATE(6626), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2119)] = { - [sym_identifier] = ACTIONS(5623), - [aux_sym_preproc_def_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token1] = ACTIONS(5623), - [aux_sym_preproc_if_token2] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5623), - [sym_preproc_directive] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5625), - [anon_sym_TILDE] = ACTIONS(5625), - [anon_sym_STAR] = ACTIONS(5625), - [anon_sym_AMP_AMP] = ACTIONS(5625), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(5623), - [anon_sym_typedef] = ACTIONS(5623), - [anon_sym_virtual] = ACTIONS(5623), - [anon_sym_extern] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5623), - [anon_sym___attribute] = ACTIONS(5623), - [anon_sym_using] = ACTIONS(5623), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), - [anon_sym___declspec] = ACTIONS(5623), - [anon_sym___based] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5623), - [anon_sym_unsigned] = ACTIONS(5623), - [anon_sym_long] = ACTIONS(5623), - [anon_sym_short] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_static] = ACTIONS(5623), - [anon_sym_register] = ACTIONS(5623), - [anon_sym_inline] = ACTIONS(5623), - [anon_sym___inline] = ACTIONS(5623), - [anon_sym___inline__] = ACTIONS(5623), - [anon_sym___forceinline] = ACTIONS(5623), - [anon_sym_thread_local] = ACTIONS(5623), - [anon_sym___thread] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5623), - [anon_sym_constexpr] = ACTIONS(5623), - [anon_sym_volatile] = ACTIONS(5623), - [anon_sym_restrict] = ACTIONS(5623), - [anon_sym___restrict__] = ACTIONS(5623), - [anon_sym__Atomic] = ACTIONS(5623), - [anon_sym__Noreturn] = ACTIONS(5623), - [anon_sym_noreturn] = ACTIONS(5623), - [anon_sym__Nonnull] = ACTIONS(5623), - [anon_sym_mutable] = ACTIONS(5623), - [anon_sym_constinit] = ACTIONS(5623), - [anon_sym_consteval] = ACTIONS(5623), - [anon_sym_alignas] = ACTIONS(5623), - [anon_sym__Alignas] = ACTIONS(5623), - [sym_primitive_type] = ACTIONS(5623), - [anon_sym_enum] = ACTIONS(5623), - [anon_sym_class] = ACTIONS(5623), - [anon_sym_struct] = ACTIONS(5623), - [anon_sym_union] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5623), - [anon_sym_decltype] = ACTIONS(5623), - [anon_sym_explicit] = ACTIONS(5623), - [anon_sym_typename] = ACTIONS(5623), - [anon_sym_private] = ACTIONS(5623), - [anon_sym_template] = ACTIONS(5623), - [anon_sym_operator] = ACTIONS(5623), - [anon_sym_friend] = ACTIONS(5623), - [anon_sym_public] = ACTIONS(5623), - [anon_sym_protected] = ACTIONS(5623), - [anon_sym_static_assert] = ACTIONS(5623), + [STATE(1454)] = { + [sym_expression] = STATE(5191), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(6033), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2120)] = { - [sym_identifier] = ACTIONS(2955), - [aux_sym_preproc_def_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token1] = ACTIONS(2955), - [aux_sym_preproc_if_token2] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2955), - [sym_preproc_directive] = ACTIONS(2955), - [anon_sym_LPAREN2] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym___extension__] = ACTIONS(2955), - [anon_sym_typedef] = ACTIONS(2955), - [anon_sym_virtual] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym___attribute__] = ACTIONS(2955), - [anon_sym___attribute] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2957), - [anon_sym___declspec] = ACTIONS(2955), - [anon_sym___based] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2955), - [anon_sym_unsigned] = ACTIONS(2955), - [anon_sym_long] = ACTIONS(2955), - [anon_sym_short] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_register] = ACTIONS(2955), - [anon_sym_inline] = ACTIONS(2955), - [anon_sym___inline] = ACTIONS(2955), - [anon_sym___inline__] = ACTIONS(2955), - [anon_sym___forceinline] = ACTIONS(2955), - [anon_sym_thread_local] = ACTIONS(2955), - [anon_sym___thread] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_constexpr] = ACTIONS(2955), - [anon_sym_volatile] = ACTIONS(2955), - [anon_sym_restrict] = ACTIONS(2955), - [anon_sym___restrict__] = ACTIONS(2955), - [anon_sym__Atomic] = ACTIONS(2955), - [anon_sym__Noreturn] = ACTIONS(2955), - [anon_sym_noreturn] = ACTIONS(2955), - [anon_sym__Nonnull] = ACTIONS(2955), - [anon_sym_mutable] = ACTIONS(2955), - [anon_sym_constinit] = ACTIONS(2955), - [anon_sym_consteval] = ACTIONS(2955), - [anon_sym_alignas] = ACTIONS(2955), - [anon_sym__Alignas] = ACTIONS(2955), - [sym_primitive_type] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2955), - [anon_sym_decltype] = ACTIONS(2955), - [anon_sym_explicit] = ACTIONS(2955), - [anon_sym_typename] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_template] = ACTIONS(2955), - [anon_sym_operator] = ACTIONS(2955), - [anon_sym_friend] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_static_assert] = ACTIONS(2955), + [STATE(1455)] = { + [sym_expression] = STATE(5192), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2121)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2983), - [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_virtual] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym___attribute] = ACTIONS(2981), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_private] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_friend] = ACTIONS(2981), - [anon_sym_public] = ACTIONS(2981), - [anon_sym_protected] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), + [STATE(1456)] = { + [sym_expression] = STATE(5301), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(6035), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2122)] = { - [sym_identifier] = ACTIONS(3019), - [aux_sym_preproc_def_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token1] = ACTIONS(3019), - [aux_sym_preproc_if_token2] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3019), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3019), - [sym_preproc_directive] = ACTIONS(3019), - [anon_sym_LPAREN2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym___extension__] = ACTIONS(3019), - [anon_sym_typedef] = ACTIONS(3019), - [anon_sym_virtual] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(3019), - [anon_sym___attribute__] = ACTIONS(3019), - [anon_sym___attribute] = ACTIONS(3019), - [anon_sym_using] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3021), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3021), - [anon_sym___declspec] = ACTIONS(3019), - [anon_sym___based] = ACTIONS(3019), - [anon_sym_signed] = ACTIONS(3019), - [anon_sym_unsigned] = ACTIONS(3019), - [anon_sym_long] = ACTIONS(3019), - [anon_sym_short] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_register] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym___inline] = ACTIONS(3019), - [anon_sym___inline__] = ACTIONS(3019), - [anon_sym___forceinline] = ACTIONS(3019), - [anon_sym_thread_local] = ACTIONS(3019), - [anon_sym___thread] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_constexpr] = ACTIONS(3019), - [anon_sym_volatile] = ACTIONS(3019), - [anon_sym_restrict] = ACTIONS(3019), - [anon_sym___restrict__] = ACTIONS(3019), - [anon_sym__Atomic] = ACTIONS(3019), - [anon_sym__Noreturn] = ACTIONS(3019), - [anon_sym_noreturn] = ACTIONS(3019), - [anon_sym__Nonnull] = ACTIONS(3019), - [anon_sym_mutable] = ACTIONS(3019), - [anon_sym_constinit] = ACTIONS(3019), - [anon_sym_consteval] = ACTIONS(3019), - [anon_sym_alignas] = ACTIONS(3019), - [anon_sym__Alignas] = ACTIONS(3019), - [sym_primitive_type] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3019), - [anon_sym_decltype] = ACTIONS(3019), - [anon_sym_explicit] = ACTIONS(3019), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(3019), - [anon_sym_operator] = ACTIONS(3019), - [anon_sym_friend] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_protected] = ACTIONS(3019), - [anon_sym_static_assert] = ACTIONS(3019), + [STATE(1457)] = { + [sym_expression] = STATE(5347), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2123)] = { - [sym_identifier] = ACTIONS(3023), - [aux_sym_preproc_def_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token1] = ACTIONS(3023), - [aux_sym_preproc_if_token2] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3023), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3023), - [sym_preproc_directive] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym___extension__] = ACTIONS(3023), - [anon_sym_typedef] = ACTIONS(3023), - [anon_sym_virtual] = ACTIONS(3023), - [anon_sym_extern] = ACTIONS(3023), - [anon_sym___attribute__] = ACTIONS(3023), - [anon_sym___attribute] = ACTIONS(3023), - [anon_sym_using] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3025), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3025), - [anon_sym___declspec] = ACTIONS(3023), - [anon_sym___based] = ACTIONS(3023), - [anon_sym_signed] = ACTIONS(3023), - [anon_sym_unsigned] = ACTIONS(3023), - [anon_sym_long] = ACTIONS(3023), - [anon_sym_short] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_register] = ACTIONS(3023), - [anon_sym_inline] = ACTIONS(3023), - [anon_sym___inline] = ACTIONS(3023), - [anon_sym___inline__] = ACTIONS(3023), - [anon_sym___forceinline] = ACTIONS(3023), - [anon_sym_thread_local] = ACTIONS(3023), - [anon_sym___thread] = ACTIONS(3023), - [anon_sym_const] = ACTIONS(3023), - [anon_sym_constexpr] = ACTIONS(3023), - [anon_sym_volatile] = ACTIONS(3023), - [anon_sym_restrict] = ACTIONS(3023), - [anon_sym___restrict__] = ACTIONS(3023), - [anon_sym__Atomic] = ACTIONS(3023), - [anon_sym__Noreturn] = ACTIONS(3023), - [anon_sym_noreturn] = ACTIONS(3023), - [anon_sym__Nonnull] = ACTIONS(3023), - [anon_sym_mutable] = ACTIONS(3023), - [anon_sym_constinit] = ACTIONS(3023), - [anon_sym_consteval] = ACTIONS(3023), - [anon_sym_alignas] = ACTIONS(3023), - [anon_sym__Alignas] = ACTIONS(3023), - [sym_primitive_type] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_union] = ACTIONS(3023), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3023), - [anon_sym_decltype] = ACTIONS(3023), - [anon_sym_explicit] = ACTIONS(3023), - [anon_sym_typename] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_template] = ACTIONS(3023), - [anon_sym_operator] = ACTIONS(3023), - [anon_sym_friend] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_protected] = ACTIONS(3023), - [anon_sym_static_assert] = ACTIONS(3023), + [STATE(1458)] = { + [sym_expression] = STATE(5382), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2124)] = { - [sym_identifier] = ACTIONS(3041), - [aux_sym_preproc_def_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token1] = ACTIONS(3041), - [aux_sym_preproc_if_token2] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3041), - [sym_preproc_directive] = ACTIONS(3041), - [anon_sym_LPAREN2] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym___extension__] = ACTIONS(3041), - [anon_sym_typedef] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym___attribute__] = ACTIONS(3041), - [anon_sym___attribute] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3043), - [anon_sym___declspec] = ACTIONS(3041), - [anon_sym___based] = ACTIONS(3041), - [anon_sym_signed] = ACTIONS(3041), - [anon_sym_unsigned] = ACTIONS(3041), - [anon_sym_long] = ACTIONS(3041), - [anon_sym_short] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_register] = ACTIONS(3041), - [anon_sym_inline] = ACTIONS(3041), - [anon_sym___inline] = ACTIONS(3041), - [anon_sym___inline__] = ACTIONS(3041), - [anon_sym___forceinline] = ACTIONS(3041), - [anon_sym_thread_local] = ACTIONS(3041), - [anon_sym___thread] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_constexpr] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_restrict] = ACTIONS(3041), - [anon_sym___restrict__] = ACTIONS(3041), - [anon_sym__Atomic] = ACTIONS(3041), - [anon_sym__Noreturn] = ACTIONS(3041), - [anon_sym_noreturn] = ACTIONS(3041), - [anon_sym__Nonnull] = ACTIONS(3041), - [anon_sym_mutable] = ACTIONS(3041), - [anon_sym_constinit] = ACTIONS(3041), - [anon_sym_consteval] = ACTIONS(3041), - [anon_sym_alignas] = ACTIONS(3041), - [anon_sym__Alignas] = ACTIONS(3041), - [sym_primitive_type] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3041), - [anon_sym_decltype] = ACTIONS(3041), - [anon_sym_explicit] = ACTIONS(3041), - [anon_sym_typename] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_template] = ACTIONS(3041), - [anon_sym_operator] = ACTIONS(3041), - [anon_sym_friend] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_static_assert] = ACTIONS(3041), + [STATE(1459)] = { + [sym_expression] = STATE(5424), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2125)] = { - [sym_identifier] = ACTIONS(3055), - [aux_sym_preproc_def_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token2] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), - [sym_preproc_directive] = ACTIONS(3055), - [anon_sym_LPAREN2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym___extension__] = ACTIONS(3055), - [anon_sym_typedef] = ACTIONS(3055), - [anon_sym_virtual] = ACTIONS(3055), - [anon_sym_extern] = ACTIONS(3055), - [anon_sym___attribute__] = ACTIONS(3055), - [anon_sym___attribute] = ACTIONS(3055), - [anon_sym_using] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3057), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), - [anon_sym___declspec] = ACTIONS(3055), - [anon_sym___based] = ACTIONS(3055), - [anon_sym_signed] = ACTIONS(3055), - [anon_sym_unsigned] = ACTIONS(3055), - [anon_sym_long] = ACTIONS(3055), - [anon_sym_short] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_static] = ACTIONS(3055), - [anon_sym_register] = ACTIONS(3055), - [anon_sym_inline] = ACTIONS(3055), - [anon_sym___inline] = ACTIONS(3055), - [anon_sym___inline__] = ACTIONS(3055), - [anon_sym___forceinline] = ACTIONS(3055), - [anon_sym_thread_local] = ACTIONS(3055), - [anon_sym___thread] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_constexpr] = ACTIONS(3055), - [anon_sym_volatile] = ACTIONS(3055), - [anon_sym_restrict] = ACTIONS(3055), - [anon_sym___restrict__] = ACTIONS(3055), - [anon_sym__Atomic] = ACTIONS(3055), - [anon_sym__Noreturn] = ACTIONS(3055), - [anon_sym_noreturn] = ACTIONS(3055), - [anon_sym__Nonnull] = ACTIONS(3055), - [anon_sym_mutable] = ACTIONS(3055), - [anon_sym_constinit] = ACTIONS(3055), - [anon_sym_consteval] = ACTIONS(3055), - [anon_sym_alignas] = ACTIONS(3055), - [anon_sym__Alignas] = ACTIONS(3055), - [sym_primitive_type] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_class] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3055), - [anon_sym_decltype] = ACTIONS(3055), - [anon_sym_explicit] = ACTIONS(3055), - [anon_sym_typename] = ACTIONS(3055), - [anon_sym_private] = ACTIONS(3055), - [anon_sym_template] = ACTIONS(3055), - [anon_sym_operator] = ACTIONS(3055), - [anon_sym_friend] = ACTIONS(3055), - [anon_sym_public] = ACTIONS(3055), - [anon_sym_protected] = ACTIONS(3055), - [anon_sym_static_assert] = ACTIONS(3055), + [STATE(1460)] = { + [sym_expression] = STATE(5199), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(6037), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2126)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1461)] = { + [sym_expression] = STATE(5288), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2127)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_friend] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), + [STATE(1462)] = { + [sym_expression] = STATE(5254), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2128)] = { - [sym_identifier] = ACTIONS(3123), - [aux_sym_preproc_def_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token1] = ACTIONS(3123), - [aux_sym_preproc_if_token2] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3123), - [sym_preproc_directive] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym___attribute__] = ACTIONS(3123), - [anon_sym___attribute] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3125), - [anon_sym___declspec] = ACTIONS(3123), - [anon_sym___based] = ACTIONS(3123), - [anon_sym_signed] = ACTIONS(3123), - [anon_sym_unsigned] = ACTIONS(3123), - [anon_sym_long] = ACTIONS(3123), - [anon_sym_short] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_register] = ACTIONS(3123), - [anon_sym_inline] = ACTIONS(3123), - [anon_sym___inline] = ACTIONS(3123), - [anon_sym___inline__] = ACTIONS(3123), - [anon_sym___forceinline] = ACTIONS(3123), - [anon_sym_thread_local] = ACTIONS(3123), - [anon_sym___thread] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_constexpr] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_restrict] = ACTIONS(3123), - [anon_sym___restrict__] = ACTIONS(3123), - [anon_sym__Atomic] = ACTIONS(3123), - [anon_sym__Noreturn] = ACTIONS(3123), - [anon_sym_noreturn] = ACTIONS(3123), - [anon_sym__Nonnull] = ACTIONS(3123), - [anon_sym_mutable] = ACTIONS(3123), - [anon_sym_constinit] = ACTIONS(3123), - [anon_sym_consteval] = ACTIONS(3123), - [anon_sym_alignas] = ACTIONS(3123), - [anon_sym__Alignas] = ACTIONS(3123), - [sym_primitive_type] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3123), - [anon_sym_decltype] = ACTIONS(3123), - [anon_sym_explicit] = ACTIONS(3123), - [anon_sym_typename] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_template] = ACTIONS(3123), - [anon_sym_operator] = ACTIONS(3123), - [anon_sym_friend] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_static_assert] = ACTIONS(3123), + [STATE(1463)] = { + [sym_expression] = STATE(5414), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2129)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_friend] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), + [STATE(1464)] = { + [sym_expression] = STATE(4879), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(6039), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2130)] = { - [sym_string_literal] = STATE(1726), - [sym_raw_string_literal] = STATE(1726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), - [anon_sym_COMMA] = ACTIONS(5790), - [anon_sym_RPAREN] = ACTIONS(5790), - [anon_sym_LPAREN2] = ACTIONS(5790), - [anon_sym_DASH] = ACTIONS(5788), - [anon_sym_PLUS] = ACTIONS(5788), - [anon_sym_STAR] = ACTIONS(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_COLON] = ACTIONS(5790), - [anon_sym_RBRACE] = ACTIONS(5790), - [anon_sym_LBRACK] = ACTIONS(5790), - [anon_sym_RBRACK] = ACTIONS(5790), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_QMARK] = ACTIONS(5790), - [anon_sym_STAR_EQ] = ACTIONS(5790), - [anon_sym_SLASH_EQ] = ACTIONS(5790), - [anon_sym_PERCENT_EQ] = ACTIONS(5790), - [anon_sym_PLUS_EQ] = ACTIONS(5790), - [anon_sym_DASH_EQ] = ACTIONS(5790), - [anon_sym_LT_LT_EQ] = ACTIONS(5790), - [anon_sym_GT_GT_EQ] = ACTIONS(5790), - [anon_sym_AMP_EQ] = ACTIONS(5790), - [anon_sym_CARET_EQ] = ACTIONS(5790), - [anon_sym_PIPE_EQ] = ACTIONS(5790), - [anon_sym_and_eq] = ACTIONS(5788), - [anon_sym_or_eq] = ACTIONS(5788), - [anon_sym_xor_eq] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5790), - [anon_sym_or] = ACTIONS(5788), - [anon_sym_and] = ACTIONS(5788), - [anon_sym_bitor] = ACTIONS(5788), - [anon_sym_xor] = ACTIONS(5788), - [anon_sym_bitand] = ACTIONS(5788), - [anon_sym_not_eq] = ACTIONS(5788), - [anon_sym_DASH_DASH] = ACTIONS(5790), - [anon_sym_PLUS_PLUS] = ACTIONS(5790), - [anon_sym_DOT] = ACTIONS(5788), - [anon_sym_DOT_STAR] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(5790), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), - [sym_literal_suffix] = ACTIONS(5788), + [STATE(1465)] = { + [sym_expression] = STATE(4841), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2131)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_friend] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), + [STATE(1466)] = { + [sym_expression] = STATE(4678), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2132)] = { - [sym_string_literal] = STATE(1726), - [sym_template_argument_list] = STATE(2316), - [sym_raw_string_literal] = STATE(1726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(5987), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), + [STATE(1467)] = { + [sym_expression] = STATE(4711), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2133)] = { - [sym_identifier] = ACTIONS(2735), - [aux_sym_preproc_def_token1] = ACTIONS(2735), - [aux_sym_preproc_if_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2735), - [sym_preproc_directive] = ACTIONS(2735), - [anon_sym_LPAREN2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_AMP_AMP] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym___extension__] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2735), - [anon_sym_virtual] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym___attribute__] = ACTIONS(2735), - [anon_sym___attribute] = ACTIONS(2735), - [anon_sym_using] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = ACTIONS(2735), - [anon_sym___based] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_signed] = ACTIONS(2735), - [anon_sym_unsigned] = ACTIONS(2735), - [anon_sym_long] = ACTIONS(2735), - [anon_sym_short] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_register] = ACTIONS(2735), - [anon_sym_inline] = ACTIONS(2735), - [anon_sym___inline] = ACTIONS(2735), - [anon_sym___inline__] = ACTIONS(2735), - [anon_sym___forceinline] = ACTIONS(2735), - [anon_sym_thread_local] = ACTIONS(2735), - [anon_sym___thread] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_constexpr] = ACTIONS(2735), - [anon_sym_volatile] = ACTIONS(2735), - [anon_sym_restrict] = ACTIONS(2735), - [anon_sym___restrict__] = ACTIONS(2735), - [anon_sym__Atomic] = ACTIONS(2735), - [anon_sym__Noreturn] = ACTIONS(2735), - [anon_sym_noreturn] = ACTIONS(2735), - [anon_sym__Nonnull] = ACTIONS(2735), - [anon_sym_mutable] = ACTIONS(2735), - [anon_sym_constinit] = ACTIONS(2735), - [anon_sym_consteval] = ACTIONS(2735), - [anon_sym_alignas] = ACTIONS(2735), - [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2735), - [anon_sym_decltype] = ACTIONS(2735), - [anon_sym_explicit] = ACTIONS(2735), - [anon_sym_typename] = ACTIONS(2735), - [anon_sym_private] = ACTIONS(2735), - [anon_sym_template] = ACTIONS(2735), - [anon_sym_operator] = ACTIONS(2735), - [anon_sym_friend] = ACTIONS(2735), - [anon_sym_public] = ACTIONS(2735), - [anon_sym_protected] = ACTIONS(2735), - [anon_sym_static_assert] = ACTIONS(2735), + [STATE(1468)] = { + [sym_expression] = STATE(4528), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(6041), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2134)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3213), - [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_virtual] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym___attribute] = ACTIONS(3211), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_friend] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - }, - [STATE(2135)] = { - [sym_identifier] = ACTIONS(5523), - [aux_sym_preproc_def_token1] = ACTIONS(5523), - [aux_sym_preproc_if_token1] = ACTIONS(5523), - [aux_sym_preproc_if_token2] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5523), - [sym_preproc_directive] = ACTIONS(5523), - [anon_sym_LPAREN2] = ACTIONS(5525), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_STAR] = ACTIONS(5525), - [anon_sym_AMP_AMP] = ACTIONS(5525), - [anon_sym_AMP] = ACTIONS(5523), - [anon_sym_SEMI] = ACTIONS(5525), - [anon_sym___extension__] = ACTIONS(5523), - [anon_sym_typedef] = ACTIONS(5523), - [anon_sym_virtual] = ACTIONS(5523), - [anon_sym_extern] = ACTIONS(5523), - [anon_sym___attribute__] = ACTIONS(5523), - [anon_sym___attribute] = ACTIONS(5523), - [anon_sym_using] = ACTIONS(5523), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5523), - [anon_sym___based] = ACTIONS(5523), - [anon_sym_signed] = ACTIONS(5523), - [anon_sym_unsigned] = ACTIONS(5523), - [anon_sym_long] = ACTIONS(5523), - [anon_sym_short] = ACTIONS(5523), - [anon_sym_LBRACK] = ACTIONS(5523), - [anon_sym_static] = ACTIONS(5523), - [anon_sym_register] = ACTIONS(5523), - [anon_sym_inline] = ACTIONS(5523), - [anon_sym___inline] = ACTIONS(5523), - [anon_sym___inline__] = ACTIONS(5523), - [anon_sym___forceinline] = ACTIONS(5523), - [anon_sym_thread_local] = ACTIONS(5523), - [anon_sym___thread] = ACTIONS(5523), - [anon_sym_const] = ACTIONS(5523), - [anon_sym_constexpr] = ACTIONS(5523), - [anon_sym_volatile] = ACTIONS(5523), - [anon_sym_restrict] = ACTIONS(5523), - [anon_sym___restrict__] = ACTIONS(5523), - [anon_sym__Atomic] = ACTIONS(5523), - [anon_sym__Noreturn] = ACTIONS(5523), - [anon_sym_noreturn] = ACTIONS(5523), - [anon_sym__Nonnull] = ACTIONS(5523), - [anon_sym_mutable] = ACTIONS(5523), - [anon_sym_constinit] = ACTIONS(5523), - [anon_sym_consteval] = ACTIONS(5523), - [anon_sym_alignas] = ACTIONS(5523), - [anon_sym__Alignas] = ACTIONS(5523), - [sym_primitive_type] = ACTIONS(5523), - [anon_sym_enum] = ACTIONS(5523), - [anon_sym_class] = ACTIONS(5523), - [anon_sym_struct] = ACTIONS(5523), - [anon_sym_union] = ACTIONS(5523), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5523), - [anon_sym_decltype] = ACTIONS(5523), - [anon_sym_explicit] = ACTIONS(5523), - [anon_sym_typename] = ACTIONS(5523), - [anon_sym_private] = ACTIONS(5523), - [anon_sym_template] = ACTIONS(5523), - [anon_sym_operator] = ACTIONS(5523), - [anon_sym_friend] = ACTIONS(5523), - [anon_sym_public] = ACTIONS(5523), - [anon_sym_protected] = ACTIONS(5523), - [anon_sym_static_assert] = ACTIONS(5523), + [STATE(1469)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2136)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_friend] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), + [STATE(1470)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(6043), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2137)] = { - [sym_identifier] = ACTIONS(5527), - [aux_sym_preproc_def_token1] = ACTIONS(5527), - [aux_sym_preproc_if_token1] = ACTIONS(5527), - [aux_sym_preproc_if_token2] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5527), - [sym_preproc_directive] = ACTIONS(5527), - [anon_sym_LPAREN2] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_AMP_AMP] = ACTIONS(5529), - [anon_sym_AMP] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5529), - [anon_sym___extension__] = ACTIONS(5527), - [anon_sym_typedef] = ACTIONS(5527), - [anon_sym_virtual] = ACTIONS(5527), - [anon_sym_extern] = ACTIONS(5527), - [anon_sym___attribute__] = ACTIONS(5527), - [anon_sym___attribute] = ACTIONS(5527), - [anon_sym_using] = ACTIONS(5527), - [anon_sym_COLON_COLON] = ACTIONS(5529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5529), - [anon_sym___declspec] = ACTIONS(5527), - [anon_sym___based] = ACTIONS(5527), - [anon_sym_signed] = ACTIONS(5527), - [anon_sym_unsigned] = ACTIONS(5527), - [anon_sym_long] = ACTIONS(5527), - [anon_sym_short] = ACTIONS(5527), - [anon_sym_LBRACK] = ACTIONS(5527), - [anon_sym_static] = ACTIONS(5527), - [anon_sym_register] = ACTIONS(5527), - [anon_sym_inline] = ACTIONS(5527), - [anon_sym___inline] = ACTIONS(5527), - [anon_sym___inline__] = ACTIONS(5527), - [anon_sym___forceinline] = ACTIONS(5527), - [anon_sym_thread_local] = ACTIONS(5527), - [anon_sym___thread] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5527), - [anon_sym_constexpr] = ACTIONS(5527), - [anon_sym_volatile] = ACTIONS(5527), - [anon_sym_restrict] = ACTIONS(5527), - [anon_sym___restrict__] = ACTIONS(5527), - [anon_sym__Atomic] = ACTIONS(5527), - [anon_sym__Noreturn] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym__Nonnull] = ACTIONS(5527), - [anon_sym_mutable] = ACTIONS(5527), - [anon_sym_constinit] = ACTIONS(5527), - [anon_sym_consteval] = ACTIONS(5527), - [anon_sym_alignas] = ACTIONS(5527), - [anon_sym__Alignas] = ACTIONS(5527), - [sym_primitive_type] = ACTIONS(5527), - [anon_sym_enum] = ACTIONS(5527), - [anon_sym_class] = ACTIONS(5527), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_union] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5527), - [anon_sym_decltype] = ACTIONS(5527), - [anon_sym_explicit] = ACTIONS(5527), - [anon_sym_typename] = ACTIONS(5527), - [anon_sym_private] = ACTIONS(5527), - [anon_sym_template] = ACTIONS(5527), - [anon_sym_operator] = ACTIONS(5527), - [anon_sym_friend] = ACTIONS(5527), - [anon_sym_public] = ACTIONS(5527), - [anon_sym_protected] = ACTIONS(5527), - [anon_sym_static_assert] = ACTIONS(5527), + [STATE(1471)] = { + [sym_expression] = STATE(3695), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2138)] = { - [sym_identifier] = ACTIONS(5531), - [aux_sym_preproc_def_token1] = ACTIONS(5531), - [aux_sym_preproc_if_token1] = ACTIONS(5531), - [aux_sym_preproc_if_token2] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5531), - [sym_preproc_directive] = ACTIONS(5531), - [anon_sym_LPAREN2] = ACTIONS(5533), - [anon_sym_TILDE] = ACTIONS(5533), - [anon_sym_STAR] = ACTIONS(5533), - [anon_sym_AMP_AMP] = ACTIONS(5533), - [anon_sym_AMP] = ACTIONS(5531), - [anon_sym_SEMI] = ACTIONS(5533), - [anon_sym___extension__] = ACTIONS(5531), - [anon_sym_typedef] = ACTIONS(5531), - [anon_sym_virtual] = ACTIONS(5531), - [anon_sym_extern] = ACTIONS(5531), - [anon_sym___attribute__] = ACTIONS(5531), - [anon_sym___attribute] = ACTIONS(5531), - [anon_sym_using] = ACTIONS(5531), - [anon_sym_COLON_COLON] = ACTIONS(5533), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym___declspec] = ACTIONS(5531), - [anon_sym___based] = ACTIONS(5531), - [anon_sym_signed] = ACTIONS(5531), - [anon_sym_unsigned] = ACTIONS(5531), - [anon_sym_long] = ACTIONS(5531), - [anon_sym_short] = ACTIONS(5531), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_static] = ACTIONS(5531), - [anon_sym_register] = ACTIONS(5531), - [anon_sym_inline] = ACTIONS(5531), - [anon_sym___inline] = ACTIONS(5531), - [anon_sym___inline__] = ACTIONS(5531), - [anon_sym___forceinline] = ACTIONS(5531), - [anon_sym_thread_local] = ACTIONS(5531), - [anon_sym___thread] = ACTIONS(5531), - [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__Nonnull] = ACTIONS(5531), - [anon_sym_mutable] = ACTIONS(5531), - [anon_sym_constinit] = ACTIONS(5531), - [anon_sym_consteval] = ACTIONS(5531), - [anon_sym_alignas] = ACTIONS(5531), - [anon_sym__Alignas] = ACTIONS(5531), - [sym_primitive_type] = ACTIONS(5531), - [anon_sym_enum] = ACTIONS(5531), - [anon_sym_class] = ACTIONS(5531), - [anon_sym_struct] = ACTIONS(5531), - [anon_sym_union] = ACTIONS(5531), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5531), - [anon_sym_decltype] = ACTIONS(5531), - [anon_sym_explicit] = ACTIONS(5531), - [anon_sym_typename] = ACTIONS(5531), - [anon_sym_private] = ACTIONS(5531), - [anon_sym_template] = ACTIONS(5531), - [anon_sym_operator] = ACTIONS(5531), - [anon_sym_friend] = ACTIONS(5531), - [anon_sym_public] = ACTIONS(5531), - [anon_sym_protected] = ACTIONS(5531), - [anon_sym_static_assert] = ACTIONS(5531), + [STATE(1472)] = { + [sym_expression] = STATE(4972), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2139)] = { - [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), - [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_SEMI] = ACTIONS(3312), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(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__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_private] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_friend] = ACTIONS(3310), - [anon_sym_public] = ACTIONS(3310), - [anon_sym_protected] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), + [STATE(1473)] = { + [sym_expression] = STATE(6440), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(5945), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2140)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token2] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1474)] = { + [sym_expression] = STATE(5763), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2141)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1475)] = { + [sym_expression] = STATE(5287), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2142)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1476)] = { + [sym_expression] = STATE(6426), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2143)] = { - [sym_template_argument_list] = STATE(1918), - [sym_identifier] = ACTIONS(5971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), - [anon_sym_COMMA] = ACTIONS(4187), - [anon_sym_RPAREN] = ACTIONS(4187), - [aux_sym_preproc_if_token2] = ACTIONS(4187), - [aux_sym_preproc_else_token1] = ACTIONS(4187), - [aux_sym_preproc_elif_token1] = ACTIONS(5971), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4187), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4187), - [anon_sym_LPAREN2] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(5971), - [anon_sym_PLUS] = ACTIONS(5971), - [anon_sym_STAR] = ACTIONS(5971), - [anon_sym_SLASH] = ACTIONS(5971), - [anon_sym_PERCENT] = ACTIONS(5971), - [anon_sym_PIPE_PIPE] = ACTIONS(4187), - [anon_sym_AMP_AMP] = ACTIONS(4187), - [anon_sym_PIPE] = ACTIONS(5971), - [anon_sym_CARET] = ACTIONS(5971), - [anon_sym_AMP] = ACTIONS(5971), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(5971), - [anon_sym_GT_EQ] = ACTIONS(4187), - [anon_sym_LT_EQ] = ACTIONS(5971), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(5971), - [anon_sym_GT_GT] = ACTIONS(5971), - [anon_sym_SEMI] = ACTIONS(4187), - [anon_sym___attribute__] = ACTIONS(5971), - [anon_sym___attribute] = ACTIONS(5971), - [anon_sym_COLON] = ACTIONS(5971), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4187), - [anon_sym_RBRACK] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(5971), - [anon_sym_QMARK] = ACTIONS(4187), - [anon_sym_STAR_EQ] = ACTIONS(4187), - [anon_sym_SLASH_EQ] = ACTIONS(4187), - [anon_sym_PERCENT_EQ] = ACTIONS(4187), - [anon_sym_PLUS_EQ] = ACTIONS(4187), - [anon_sym_DASH_EQ] = ACTIONS(4187), - [anon_sym_LT_LT_EQ] = ACTIONS(4187), - [anon_sym_GT_GT_EQ] = ACTIONS(4187), - [anon_sym_AMP_EQ] = ACTIONS(4187), - [anon_sym_CARET_EQ] = ACTIONS(4187), - [anon_sym_PIPE_EQ] = ACTIONS(4187), - [anon_sym_and_eq] = ACTIONS(5971), - [anon_sym_or_eq] = ACTIONS(5971), - [anon_sym_xor_eq] = ACTIONS(5971), - [anon_sym_LT_EQ_GT] = ACTIONS(4187), - [anon_sym_or] = ACTIONS(5971), - [anon_sym_and] = ACTIONS(5971), - [anon_sym_bitor] = ACTIONS(5971), - [anon_sym_xor] = ACTIONS(5971), - [anon_sym_bitand] = ACTIONS(5971), - [anon_sym_not_eq] = ACTIONS(5971), - [anon_sym_DASH_DASH] = ACTIONS(4187), - [anon_sym_PLUS_PLUS] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(5971), - [anon_sym_DOT_STAR] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4187), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5971), - [anon_sym_override] = ACTIONS(5971), + [STATE(1477)] = { + [sym_expression] = STATE(6399), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(6045), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2144)] = { - [sym_identifier] = ACTIONS(3318), - [aux_sym_preproc_def_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token1] = ACTIONS(3318), - [aux_sym_preproc_if_token2] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3318), - [sym_preproc_directive] = ACTIONS(3318), - [anon_sym_LPAREN2] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_AMP_AMP] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym___attribute] = ACTIONS(3318), - [anon_sym_using] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym___based] = 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__Nonnull] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_explicit] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_private] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_operator] = ACTIONS(3318), - [anon_sym_friend] = ACTIONS(3318), - [anon_sym_public] = ACTIONS(3318), - [anon_sym_protected] = ACTIONS(3318), - [anon_sym_static_assert] = ACTIONS(3318), + [STATE(1478)] = { + [sym_expression] = STATE(5058), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2145)] = { - [sym_identifier] = ACTIONS(2785), - [aux_sym_preproc_def_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token1] = ACTIONS(2785), - [aux_sym_preproc_if_token2] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), - [sym_preproc_directive] = ACTIONS(2785), - [anon_sym_LPAREN2] = ACTIONS(2787), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym___extension__] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2785), - [anon_sym_virtual] = ACTIONS(2785), - [anon_sym_extern] = ACTIONS(2785), - [anon_sym___attribute__] = ACTIONS(2785), - [anon_sym___attribute] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), - [anon_sym___declspec] = ACTIONS(2785), - [anon_sym___based] = ACTIONS(2785), - [anon_sym_signed] = ACTIONS(2785), - [anon_sym_unsigned] = ACTIONS(2785), - [anon_sym_long] = ACTIONS(2785), - [anon_sym_short] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_register] = ACTIONS(2785), - [anon_sym_inline] = ACTIONS(2785), - [anon_sym___inline] = ACTIONS(2785), - [anon_sym___inline__] = ACTIONS(2785), - [anon_sym___forceinline] = ACTIONS(2785), - [anon_sym_thread_local] = ACTIONS(2785), - [anon_sym___thread] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_constexpr] = ACTIONS(2785), - [anon_sym_volatile] = ACTIONS(2785), - [anon_sym_restrict] = ACTIONS(2785), - [anon_sym___restrict__] = ACTIONS(2785), - [anon_sym__Atomic] = ACTIONS(2785), - [anon_sym__Noreturn] = ACTIONS(2785), - [anon_sym_noreturn] = ACTIONS(2785), - [anon_sym__Nonnull] = ACTIONS(2785), - [anon_sym_mutable] = ACTIONS(2785), - [anon_sym_constinit] = ACTIONS(2785), - [anon_sym_consteval] = ACTIONS(2785), - [anon_sym_alignas] = ACTIONS(2785), - [anon_sym__Alignas] = ACTIONS(2785), - [sym_primitive_type] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2785), - [anon_sym_union] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2785), - [anon_sym_decltype] = ACTIONS(2785), - [anon_sym_explicit] = ACTIONS(2785), - [anon_sym_typename] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2785), - [anon_sym_friend] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_protected] = ACTIONS(2785), - [anon_sym_static_assert] = ACTIONS(2785), + [STATE(1479)] = { + [sym_expression] = STATE(4553), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(6047), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2146)] = { - [sym_identifier] = ACTIONS(5539), - [aux_sym_preproc_def_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token1] = ACTIONS(5539), - [aux_sym_preproc_if_token2] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5539), - [sym_preproc_directive] = ACTIONS(5539), - [anon_sym_LPAREN2] = ACTIONS(5541), - [anon_sym_TILDE] = ACTIONS(5541), - [anon_sym_STAR] = ACTIONS(5541), - [anon_sym_AMP_AMP] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5539), - [anon_sym_SEMI] = ACTIONS(5541), - [anon_sym___extension__] = ACTIONS(5539), - [anon_sym_typedef] = ACTIONS(5539), - [anon_sym_virtual] = ACTIONS(5539), - [anon_sym_extern] = ACTIONS(5539), - [anon_sym___attribute__] = ACTIONS(5539), - [anon_sym___attribute] = ACTIONS(5539), - [anon_sym_using] = ACTIONS(5539), - [anon_sym_COLON_COLON] = ACTIONS(5541), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5541), - [anon_sym___declspec] = ACTIONS(5539), - [anon_sym___based] = ACTIONS(5539), - [anon_sym_signed] = ACTIONS(5539), - [anon_sym_unsigned] = ACTIONS(5539), - [anon_sym_long] = ACTIONS(5539), - [anon_sym_short] = ACTIONS(5539), - [anon_sym_LBRACK] = ACTIONS(5539), - [anon_sym_static] = ACTIONS(5539), - [anon_sym_register] = ACTIONS(5539), - [anon_sym_inline] = ACTIONS(5539), - [anon_sym___inline] = ACTIONS(5539), - [anon_sym___inline__] = ACTIONS(5539), - [anon_sym___forceinline] = ACTIONS(5539), - [anon_sym_thread_local] = ACTIONS(5539), - [anon_sym___thread] = ACTIONS(5539), - [anon_sym_const] = ACTIONS(5539), - [anon_sym_constexpr] = ACTIONS(5539), - [anon_sym_volatile] = ACTIONS(5539), - [anon_sym_restrict] = ACTIONS(5539), - [anon_sym___restrict__] = ACTIONS(5539), - [anon_sym__Atomic] = ACTIONS(5539), - [anon_sym__Noreturn] = ACTIONS(5539), - [anon_sym_noreturn] = ACTIONS(5539), - [anon_sym__Nonnull] = ACTIONS(5539), - [anon_sym_mutable] = ACTIONS(5539), - [anon_sym_constinit] = ACTIONS(5539), - [anon_sym_consteval] = ACTIONS(5539), - [anon_sym_alignas] = ACTIONS(5539), - [anon_sym__Alignas] = ACTIONS(5539), - [sym_primitive_type] = ACTIONS(5539), - [anon_sym_enum] = ACTIONS(5539), - [anon_sym_class] = ACTIONS(5539), - [anon_sym_struct] = ACTIONS(5539), - [anon_sym_union] = ACTIONS(5539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5539), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_explicit] = ACTIONS(5539), - [anon_sym_typename] = ACTIONS(5539), - [anon_sym_private] = ACTIONS(5539), - [anon_sym_template] = ACTIONS(5539), - [anon_sym_operator] = ACTIONS(5539), - [anon_sym_friend] = ACTIONS(5539), - [anon_sym_public] = ACTIONS(5539), - [anon_sym_protected] = ACTIONS(5539), - [anon_sym_static_assert] = ACTIONS(5539), + [STATE(1480)] = { + [sym_expression] = STATE(6832), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2147)] = { - [sym__declaration_modifiers] = STATE(3342), - [sym_attribute_specifier] = STATE(3342), - [sym_attribute_declaration] = STATE(3342), - [sym_ms_declspec_modifier] = STATE(3342), - [sym_storage_class_specifier] = STATE(3342), - [sym_type_qualifier] = STATE(3342), - [sym_alignas_qualifier] = STATE(1683), - [sym_type_specifier] = STATE(2608), - [sym_sized_type_specifier] = STATE(2553), - [sym_enum_specifier] = STATE(2553), - [sym_struct_specifier] = STATE(2553), - [sym_union_specifier] = STATE(2553), - [sym_placeholder_type_specifier] = STATE(2553), - [sym_decltype_auto] = STATE(2569), - [sym_decltype] = STATE(2471), - [sym_class_specifier] = STATE(2553), - [sym_dependent_type] = STATE(2553), - [sym_template_type] = STATE(2970), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6840), - [sym_qualified_type_identifier] = STATE(2915), - [aux_sym__declaration_specifiers_repeat1] = STATE(3342), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [sym_identifier] = ACTIONS(5038), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5961), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(69), - [anon_sym__Alignas] = ACTIONS(69), - [sym_primitive_type] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), + [STATE(1481)] = { + [sym_expression] = STATE(6446), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2148)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(3272), - [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_virtual] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym___attribute] = ACTIONS(3270), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), + [STATE(1482)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2149)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1483)] = { + [sym_expression] = STATE(6437), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2150)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token2] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1484)] = { + [sym_expression] = STATE(6400), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2151)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1485)] = { + [sym_expression] = STATE(6403), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2152)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1486)] = { + [sym_expression] = STATE(6407), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2153)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token2] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1487)] = { + [sym_expression] = STATE(6412), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2154)] = { - [sym_decltype_auto] = STATE(2349), - [sym_template_argument_list] = STATE(1918), - [aux_sym_sized_type_specifier_repeat1] = STATE(2448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [anon_sym_RPAREN] = ACTIONS(4167), - [anon_sym_LPAREN2] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE] = ACTIONS(4159), - [anon_sym_CARET] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_EQ_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4167), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4159), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(4159), - [anon_sym_GT_GT] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4167), - [anon_sym___attribute__] = ACTIONS(4167), - [anon_sym___attribute] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_RBRACE] = ACTIONS(4167), - [anon_sym_signed] = ACTIONS(6009), - [anon_sym_unsigned] = ACTIONS(6009), - [anon_sym_long] = ACTIONS(6009), - [anon_sym_short] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_RBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_LT_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_GT_EQ] = ACTIONS(4167), - [anon_sym_AMP_EQ] = ACTIONS(4167), - [anon_sym_CARET_EQ] = ACTIONS(4167), - [anon_sym_PIPE_EQ] = ACTIONS(4167), - [anon_sym_and_eq] = ACTIONS(4167), - [anon_sym_or_eq] = ACTIONS(4167), - [anon_sym_xor_eq] = ACTIONS(4167), - [anon_sym_LT_EQ_GT] = ACTIONS(4167), - [anon_sym_or] = ACTIONS(4159), - [anon_sym_and] = ACTIONS(4159), - [anon_sym_bitor] = ACTIONS(4167), - [anon_sym_xor] = ACTIONS(4159), - [anon_sym_bitand] = ACTIONS(4167), - [anon_sym_not_eq] = ACTIONS(4167), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_DOT_STAR] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6011), - [anon_sym_decltype] = ACTIONS(6013), + [STATE(1488)] = { + [sym_expression] = STATE(6414), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2155)] = { - [sym_identifier] = ACTIONS(2683), - [aux_sym_preproc_def_token1] = ACTIONS(2683), - [aux_sym_preproc_if_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2683), - [sym_preproc_directive] = ACTIONS(2683), - [anon_sym_LPAREN2] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_AMP_AMP] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym___extension__] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2683), - [anon_sym_virtual] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym___attribute__] = ACTIONS(2683), - [anon_sym___attribute] = ACTIONS(2683), - [anon_sym_using] = ACTIONS(2683), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2685), - [anon_sym___declspec] = ACTIONS(2683), - [anon_sym___based] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2683), - [anon_sym_unsigned] = ACTIONS(2683), - [anon_sym_long] = ACTIONS(2683), - [anon_sym_short] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_register] = ACTIONS(2683), - [anon_sym_inline] = ACTIONS(2683), - [anon_sym___inline] = ACTIONS(2683), - [anon_sym___inline__] = ACTIONS(2683), - [anon_sym___forceinline] = ACTIONS(2683), - [anon_sym_thread_local] = ACTIONS(2683), - [anon_sym___thread] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_constexpr] = ACTIONS(2683), - [anon_sym_volatile] = ACTIONS(2683), - [anon_sym_restrict] = ACTIONS(2683), - [anon_sym___restrict__] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(2683), - [anon_sym__Noreturn] = ACTIONS(2683), - [anon_sym_noreturn] = ACTIONS(2683), - [anon_sym__Nonnull] = ACTIONS(2683), - [anon_sym_mutable] = ACTIONS(2683), - [anon_sym_constinit] = ACTIONS(2683), - [anon_sym_consteval] = ACTIONS(2683), - [anon_sym_alignas] = ACTIONS(2683), - [anon_sym__Alignas] = ACTIONS(2683), - [sym_primitive_type] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2683), - [anon_sym_decltype] = ACTIONS(2683), - [anon_sym_explicit] = ACTIONS(2683), - [anon_sym_typename] = ACTIONS(2683), - [anon_sym_private] = ACTIONS(2683), - [anon_sym_template] = ACTIONS(2683), - [anon_sym_operator] = ACTIONS(2683), - [anon_sym_friend] = ACTIONS(2683), - [anon_sym_public] = ACTIONS(2683), - [anon_sym_protected] = ACTIONS(2683), - [anon_sym_static_assert] = ACTIONS(2683), + [STATE(1489)] = { + [sym_expression] = STATE(6447), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2156)] = { - [sym_template_argument_list] = STATE(1626), - [sym_identifier] = ACTIONS(4931), - [anon_sym_LPAREN2] = ACTIONS(4938), - [anon_sym_TILDE] = ACTIONS(4938), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_AMP] = ACTIONS(4931), - [anon_sym_LT] = ACTIONS(5973), - [anon_sym___extension__] = ACTIONS(4931), - [anon_sym_virtual] = ACTIONS(4931), - [anon_sym_extern] = ACTIONS(4931), - [anon_sym___attribute__] = ACTIONS(4931), - [anon_sym___attribute] = ACTIONS(4931), - [anon_sym_using] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4938), - [anon_sym___declspec] = ACTIONS(4931), - [anon_sym___based] = ACTIONS(4931), - [anon_sym___cdecl] = ACTIONS(4931), - [anon_sym___clrcall] = ACTIONS(4931), - [anon_sym___stdcall] = ACTIONS(4931), - [anon_sym___fastcall] = ACTIONS(4931), - [anon_sym___thiscall] = ACTIONS(4931), - [anon_sym___vectorcall] = ACTIONS(4931), - [anon_sym_signed] = ACTIONS(4931), - [anon_sym_unsigned] = ACTIONS(4931), - [anon_sym_long] = ACTIONS(4931), - [anon_sym_short] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_static] = ACTIONS(4931), - [anon_sym_register] = ACTIONS(4931), - [anon_sym_inline] = ACTIONS(4931), - [anon_sym___inline] = ACTIONS(4931), - [anon_sym___inline__] = ACTIONS(4931), - [anon_sym___forceinline] = ACTIONS(4931), - [anon_sym_thread_local] = ACTIONS(4931), - [anon_sym___thread] = ACTIONS(4931), - [anon_sym_const] = ACTIONS(4931), - [anon_sym_constexpr] = ACTIONS(4931), - [anon_sym_volatile] = ACTIONS(4931), - [anon_sym_restrict] = ACTIONS(4931), - [anon_sym___restrict__] = ACTIONS(4931), - [anon_sym__Atomic] = ACTIONS(4931), - [anon_sym__Noreturn] = ACTIONS(4931), - [anon_sym_noreturn] = ACTIONS(4931), - [anon_sym__Nonnull] = ACTIONS(4931), - [anon_sym_mutable] = ACTIONS(4931), - [anon_sym_constinit] = ACTIONS(4931), - [anon_sym_consteval] = ACTIONS(4931), - [anon_sym_alignas] = ACTIONS(4931), - [anon_sym__Alignas] = ACTIONS(4931), - [sym_primitive_type] = ACTIONS(4931), - [anon_sym_enum] = ACTIONS(4931), - [anon_sym_class] = ACTIONS(4931), - [anon_sym_struct] = ACTIONS(4931), - [anon_sym_union] = ACTIONS(4931), - [anon_sym_or] = ACTIONS(4931), - [anon_sym_and] = ACTIONS(4931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4931), - [anon_sym_decltype] = ACTIONS(4931), - [anon_sym_explicit] = ACTIONS(4931), - [anon_sym_typename] = ACTIONS(4931), - [anon_sym_template] = ACTIONS(4931), - [anon_sym_operator] = ACTIONS(4931), - [anon_sym_friend] = ACTIONS(4931), - [anon_sym_concept] = ACTIONS(4931), + [STATE(1490)] = { + [sym_expression] = STATE(6433), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2157)] = { - [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), - [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_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1491)] = { + [sym_expression] = STATE(6397), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2158)] = { - [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), - [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_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1492)] = { + [sym_expression] = STATE(6424), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2159)] = { - [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), - [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_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym___attribute] = ACTIONS(2965), - [anon_sym_using] = 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__Nonnull] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_private] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_friend] = ACTIONS(2965), - [anon_sym_public] = ACTIONS(2965), - [anon_sym_protected] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), + [STATE(1493)] = { + [sym_expression] = STATE(6867), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2160)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2975), - [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_virtual] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym___attribute] = ACTIONS(2973), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_private] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_friend] = ACTIONS(2973), - [anon_sym_public] = ACTIONS(2973), - [anon_sym_protected] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), + [STATE(1494)] = { + [sym_expression] = STATE(6714), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2161)] = { - [sym_identifier] = ACTIONS(5543), - [aux_sym_preproc_def_token1] = ACTIONS(5543), - [aux_sym_preproc_if_token1] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5543), - [sym_preproc_directive] = ACTIONS(5543), - [anon_sym_LPAREN2] = ACTIONS(5545), - [anon_sym_TILDE] = ACTIONS(5545), - [anon_sym_STAR] = ACTIONS(5545), - [anon_sym_AMP_AMP] = ACTIONS(5545), - [anon_sym_AMP] = ACTIONS(5543), - [anon_sym_SEMI] = ACTIONS(5545), - [anon_sym___extension__] = ACTIONS(5543), - [anon_sym_typedef] = ACTIONS(5543), - [anon_sym_virtual] = ACTIONS(5543), - [anon_sym_extern] = ACTIONS(5543), - [anon_sym___attribute__] = ACTIONS(5543), - [anon_sym___attribute] = ACTIONS(5543), - [anon_sym_using] = ACTIONS(5543), - [anon_sym_COLON_COLON] = ACTIONS(5545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5545), - [anon_sym___declspec] = ACTIONS(5543), - [anon_sym___based] = ACTIONS(5543), - [anon_sym_RBRACE] = ACTIONS(5545), - [anon_sym_signed] = ACTIONS(5543), - [anon_sym_unsigned] = ACTIONS(5543), - [anon_sym_long] = ACTIONS(5543), - [anon_sym_short] = ACTIONS(5543), - [anon_sym_LBRACK] = ACTIONS(5543), - [anon_sym_static] = ACTIONS(5543), - [anon_sym_register] = ACTIONS(5543), - [anon_sym_inline] = ACTIONS(5543), - [anon_sym___inline] = ACTIONS(5543), - [anon_sym___inline__] = ACTIONS(5543), - [anon_sym___forceinline] = ACTIONS(5543), - [anon_sym_thread_local] = ACTIONS(5543), - [anon_sym___thread] = ACTIONS(5543), - [anon_sym_const] = ACTIONS(5543), - [anon_sym_constexpr] = ACTIONS(5543), - [anon_sym_volatile] = ACTIONS(5543), - [anon_sym_restrict] = ACTIONS(5543), - [anon_sym___restrict__] = ACTIONS(5543), - [anon_sym__Atomic] = ACTIONS(5543), - [anon_sym__Noreturn] = ACTIONS(5543), - [anon_sym_noreturn] = ACTIONS(5543), - [anon_sym__Nonnull] = ACTIONS(5543), - [anon_sym_mutable] = ACTIONS(5543), - [anon_sym_constinit] = ACTIONS(5543), - [anon_sym_consteval] = ACTIONS(5543), - [anon_sym_alignas] = ACTIONS(5543), - [anon_sym__Alignas] = ACTIONS(5543), - [sym_primitive_type] = ACTIONS(5543), - [anon_sym_enum] = ACTIONS(5543), - [anon_sym_class] = ACTIONS(5543), - [anon_sym_struct] = ACTIONS(5543), - [anon_sym_union] = ACTIONS(5543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5543), - [anon_sym_decltype] = ACTIONS(5543), - [anon_sym_explicit] = ACTIONS(5543), - [anon_sym_typename] = ACTIONS(5543), - [anon_sym_private] = ACTIONS(5543), - [anon_sym_template] = ACTIONS(5543), - [anon_sym_operator] = ACTIONS(5543), - [anon_sym_friend] = ACTIONS(5543), - [anon_sym_public] = ACTIONS(5543), - [anon_sym_protected] = ACTIONS(5543), - [anon_sym_static_assert] = ACTIONS(5543), + [STATE(1495)] = { + [sym_expression] = STATE(6915), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2162)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2979), - [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_virtual] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym___attribute] = ACTIONS(2977), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym__Alignas] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_private] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_friend] = ACTIONS(2977), - [anon_sym_public] = ACTIONS(2977), - [anon_sym_protected] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), + [STATE(1496)] = { + [sym_expression] = STATE(4976), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2163)] = { - [sym_identifier] = ACTIONS(5551), - [aux_sym_preproc_def_token1] = ACTIONS(5551), - [aux_sym_preproc_if_token1] = ACTIONS(5551), - [aux_sym_preproc_if_token2] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5551), - [sym_preproc_directive] = ACTIONS(5551), - [anon_sym_LPAREN2] = ACTIONS(5553), - [anon_sym_TILDE] = ACTIONS(5553), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_AMP_AMP] = ACTIONS(5553), - [anon_sym_AMP] = ACTIONS(5551), - [anon_sym_SEMI] = ACTIONS(5553), - [anon_sym___extension__] = ACTIONS(5551), - [anon_sym_typedef] = ACTIONS(5551), - [anon_sym_virtual] = ACTIONS(5551), - [anon_sym_extern] = ACTIONS(5551), - [anon_sym___attribute__] = ACTIONS(5551), - [anon_sym___attribute] = ACTIONS(5551), - [anon_sym_using] = ACTIONS(5551), - [anon_sym_COLON_COLON] = ACTIONS(5553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5553), - [anon_sym___declspec] = ACTIONS(5551), - [anon_sym___based] = ACTIONS(5551), - [anon_sym_signed] = ACTIONS(5551), - [anon_sym_unsigned] = ACTIONS(5551), - [anon_sym_long] = ACTIONS(5551), - [anon_sym_short] = ACTIONS(5551), - [anon_sym_LBRACK] = ACTIONS(5551), - [anon_sym_static] = ACTIONS(5551), - [anon_sym_register] = ACTIONS(5551), - [anon_sym_inline] = ACTIONS(5551), - [anon_sym___inline] = ACTIONS(5551), - [anon_sym___inline__] = ACTIONS(5551), - [anon_sym___forceinline] = ACTIONS(5551), - [anon_sym_thread_local] = ACTIONS(5551), - [anon_sym___thread] = ACTIONS(5551), - [anon_sym_const] = ACTIONS(5551), - [anon_sym_constexpr] = ACTIONS(5551), - [anon_sym_volatile] = ACTIONS(5551), - [anon_sym_restrict] = ACTIONS(5551), - [anon_sym___restrict__] = ACTIONS(5551), - [anon_sym__Atomic] = ACTIONS(5551), - [anon_sym__Noreturn] = ACTIONS(5551), - [anon_sym_noreturn] = ACTIONS(5551), - [anon_sym__Nonnull] = ACTIONS(5551), - [anon_sym_mutable] = ACTIONS(5551), - [anon_sym_constinit] = ACTIONS(5551), - [anon_sym_consteval] = ACTIONS(5551), - [anon_sym_alignas] = ACTIONS(5551), - [anon_sym__Alignas] = ACTIONS(5551), - [sym_primitive_type] = ACTIONS(5551), - [anon_sym_enum] = ACTIONS(5551), - [anon_sym_class] = ACTIONS(5551), - [anon_sym_struct] = ACTIONS(5551), - [anon_sym_union] = ACTIONS(5551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5551), - [anon_sym_decltype] = ACTIONS(5551), - [anon_sym_explicit] = ACTIONS(5551), - [anon_sym_typename] = ACTIONS(5551), - [anon_sym_private] = ACTIONS(5551), - [anon_sym_template] = ACTIONS(5551), - [anon_sym_operator] = ACTIONS(5551), - [anon_sym_friend] = ACTIONS(5551), - [anon_sym_public] = ACTIONS(5551), - [anon_sym_protected] = ACTIONS(5551), - [anon_sym_static_assert] = ACTIONS(5551), + [STATE(1497)] = { + [sym_expression] = STATE(6199), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2164)] = { - [sym_identifier] = ACTIONS(2995), - [aux_sym_preproc_def_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token1] = ACTIONS(2995), - [aux_sym_preproc_if_token2] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), - [sym_preproc_directive] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym___extension__] = ACTIONS(2995), - [anon_sym_typedef] = ACTIONS(2995), - [anon_sym_virtual] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2995), - [anon_sym___attribute__] = ACTIONS(2995), - [anon_sym___attribute] = ACTIONS(2995), - [anon_sym_using] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2997), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2997), - [anon_sym___declspec] = ACTIONS(2995), - [anon_sym___based] = ACTIONS(2995), - [anon_sym_signed] = ACTIONS(2995), - [anon_sym_unsigned] = ACTIONS(2995), - [anon_sym_long] = ACTIONS(2995), - [anon_sym_short] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_register] = ACTIONS(2995), - [anon_sym_inline] = ACTIONS(2995), - [anon_sym___inline] = ACTIONS(2995), - [anon_sym___inline__] = ACTIONS(2995), - [anon_sym___forceinline] = ACTIONS(2995), - [anon_sym_thread_local] = ACTIONS(2995), - [anon_sym___thread] = ACTIONS(2995), - [anon_sym_const] = ACTIONS(2995), - [anon_sym_constexpr] = ACTIONS(2995), - [anon_sym_volatile] = ACTIONS(2995), - [anon_sym_restrict] = ACTIONS(2995), - [anon_sym___restrict__] = ACTIONS(2995), - [anon_sym__Atomic] = ACTIONS(2995), - [anon_sym__Noreturn] = ACTIONS(2995), - [anon_sym_noreturn] = ACTIONS(2995), - [anon_sym__Nonnull] = ACTIONS(2995), - [anon_sym_mutable] = ACTIONS(2995), - [anon_sym_constinit] = ACTIONS(2995), - [anon_sym_consteval] = ACTIONS(2995), - [anon_sym_alignas] = ACTIONS(2995), - [anon_sym__Alignas] = ACTIONS(2995), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_union] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2995), - [anon_sym_decltype] = ACTIONS(2995), - [anon_sym_explicit] = ACTIONS(2995), - [anon_sym_typename] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_template] = ACTIONS(2995), - [anon_sym_operator] = ACTIONS(2995), - [anon_sym_friend] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_protected] = ACTIONS(2995), - [anon_sym_static_assert] = ACTIONS(2995), + [STATE(1498)] = { + [sym_expression] = STATE(5086), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2165)] = { - [sym_identifier] = ACTIONS(5497), - [aux_sym_preproc_def_token1] = ACTIONS(5497), - [aux_sym_preproc_if_token1] = ACTIONS(5497), - [aux_sym_preproc_if_token2] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5497), - [sym_preproc_directive] = ACTIONS(5497), - [anon_sym_LPAREN2] = ACTIONS(5499), - [anon_sym_TILDE] = ACTIONS(5499), - [anon_sym_STAR] = ACTIONS(5499), - [anon_sym_AMP_AMP] = ACTIONS(5499), - [anon_sym_AMP] = ACTIONS(5497), - [anon_sym_SEMI] = ACTIONS(5499), - [anon_sym___extension__] = ACTIONS(5497), - [anon_sym_typedef] = ACTIONS(5497), - [anon_sym_virtual] = ACTIONS(5497), - [anon_sym_extern] = ACTIONS(5497), - [anon_sym___attribute__] = ACTIONS(5497), - [anon_sym___attribute] = ACTIONS(5497), - [anon_sym_using] = ACTIONS(5497), - [anon_sym_COLON_COLON] = ACTIONS(5499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5499), - [anon_sym___declspec] = ACTIONS(5497), - [anon_sym___based] = ACTIONS(5497), - [anon_sym_signed] = ACTIONS(5497), - [anon_sym_unsigned] = ACTIONS(5497), - [anon_sym_long] = ACTIONS(5497), - [anon_sym_short] = ACTIONS(5497), - [anon_sym_LBRACK] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5497), - [anon_sym_register] = ACTIONS(5497), - [anon_sym_inline] = ACTIONS(5497), - [anon_sym___inline] = ACTIONS(5497), - [anon_sym___inline__] = ACTIONS(5497), - [anon_sym___forceinline] = ACTIONS(5497), - [anon_sym_thread_local] = ACTIONS(5497), - [anon_sym___thread] = ACTIONS(5497), - [anon_sym_const] = ACTIONS(5497), - [anon_sym_constexpr] = ACTIONS(5497), - [anon_sym_volatile] = ACTIONS(5497), - [anon_sym_restrict] = ACTIONS(5497), - [anon_sym___restrict__] = ACTIONS(5497), - [anon_sym__Atomic] = ACTIONS(5497), - [anon_sym__Noreturn] = ACTIONS(5497), - [anon_sym_noreturn] = ACTIONS(5497), - [anon_sym__Nonnull] = ACTIONS(5497), - [anon_sym_mutable] = ACTIONS(5497), - [anon_sym_constinit] = ACTIONS(5497), - [anon_sym_consteval] = ACTIONS(5497), - [anon_sym_alignas] = ACTIONS(5497), - [anon_sym__Alignas] = ACTIONS(5497), - [sym_primitive_type] = ACTIONS(5497), - [anon_sym_enum] = ACTIONS(5497), - [anon_sym_class] = ACTIONS(5497), - [anon_sym_struct] = ACTIONS(5497), - [anon_sym_union] = ACTIONS(5497), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5497), - [anon_sym_decltype] = ACTIONS(5497), - [anon_sym_explicit] = ACTIONS(5497), - [anon_sym_typename] = ACTIONS(5497), - [anon_sym_private] = ACTIONS(5497), - [anon_sym_template] = ACTIONS(5497), - [anon_sym_operator] = ACTIONS(5497), - [anon_sym_friend] = ACTIONS(5497), - [anon_sym_public] = ACTIONS(5497), - [anon_sym_protected] = ACTIONS(5497), - [anon_sym_static_assert] = ACTIONS(5497), + [STATE(1499)] = { + [sym_expression] = STATE(4924), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2166)] = { - [sym_identifier] = ACTIONS(3228), - [aux_sym_preproc_def_token1] = ACTIONS(3228), - [aux_sym_preproc_if_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3228), - [sym_preproc_directive] = ACTIONS(3228), - [anon_sym_LPAREN2] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3228), - [anon_sym_typedef] = ACTIONS(3228), - [anon_sym_virtual] = ACTIONS(3228), - [anon_sym_extern] = ACTIONS(3228), - [anon_sym___attribute__] = ACTIONS(3228), - [anon_sym___attribute] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3230), - [anon_sym___declspec] = ACTIONS(3228), - [anon_sym___based] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_signed] = ACTIONS(3228), - [anon_sym_unsigned] = ACTIONS(3228), - [anon_sym_long] = ACTIONS(3228), - [anon_sym_short] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_register] = ACTIONS(3228), - [anon_sym_inline] = ACTIONS(3228), - [anon_sym___inline] = ACTIONS(3228), - [anon_sym___inline__] = ACTIONS(3228), - [anon_sym___forceinline] = ACTIONS(3228), - [anon_sym_thread_local] = ACTIONS(3228), - [anon_sym___thread] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_constexpr] = ACTIONS(3228), - [anon_sym_volatile] = ACTIONS(3228), - [anon_sym_restrict] = ACTIONS(3228), - [anon_sym___restrict__] = ACTIONS(3228), - [anon_sym__Atomic] = ACTIONS(3228), - [anon_sym__Noreturn] = ACTIONS(3228), - [anon_sym_noreturn] = ACTIONS(3228), - [anon_sym__Nonnull] = ACTIONS(3228), - [anon_sym_mutable] = ACTIONS(3228), - [anon_sym_constinit] = ACTIONS(3228), - [anon_sym_consteval] = ACTIONS(3228), - [anon_sym_alignas] = ACTIONS(3228), - [anon_sym__Alignas] = ACTIONS(3228), - [sym_primitive_type] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_struct] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3228), - [anon_sym_decltype] = ACTIONS(3228), - [anon_sym_explicit] = ACTIONS(3228), - [anon_sym_typename] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_template] = ACTIONS(3228), - [anon_sym_operator] = ACTIONS(3228), - [anon_sym_friend] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_static_assert] = ACTIONS(3228), + [STATE(1500)] = { + [sym_expression] = STATE(5113), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2167)] = { - [sym_identifier] = ACTIONS(5501), - [aux_sym_preproc_def_token1] = ACTIONS(5501), - [aux_sym_preproc_if_token1] = ACTIONS(5501), - [aux_sym_preproc_if_token2] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5501), - [sym_preproc_directive] = ACTIONS(5501), - [anon_sym_LPAREN2] = ACTIONS(5503), - [anon_sym_TILDE] = ACTIONS(5503), - [anon_sym_STAR] = ACTIONS(5503), - [anon_sym_AMP_AMP] = ACTIONS(5503), - [anon_sym_AMP] = ACTIONS(5501), - [anon_sym_SEMI] = ACTIONS(5503), - [anon_sym___extension__] = ACTIONS(5501), - [anon_sym_typedef] = ACTIONS(5501), - [anon_sym_virtual] = ACTIONS(5501), - [anon_sym_extern] = ACTIONS(5501), - [anon_sym___attribute__] = ACTIONS(5501), - [anon_sym___attribute] = ACTIONS(5501), - [anon_sym_using] = ACTIONS(5501), - [anon_sym_COLON_COLON] = ACTIONS(5503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5503), - [anon_sym___declspec] = ACTIONS(5501), - [anon_sym___based] = ACTIONS(5501), - [anon_sym_signed] = ACTIONS(5501), - [anon_sym_unsigned] = ACTIONS(5501), - [anon_sym_long] = ACTIONS(5501), - [anon_sym_short] = ACTIONS(5501), - [anon_sym_LBRACK] = ACTIONS(5501), - [anon_sym_static] = ACTIONS(5501), - [anon_sym_register] = ACTIONS(5501), - [anon_sym_inline] = ACTIONS(5501), - [anon_sym___inline] = ACTIONS(5501), - [anon_sym___inline__] = ACTIONS(5501), - [anon_sym___forceinline] = ACTIONS(5501), - [anon_sym_thread_local] = ACTIONS(5501), - [anon_sym___thread] = ACTIONS(5501), - [anon_sym_const] = ACTIONS(5501), - [anon_sym_constexpr] = ACTIONS(5501), - [anon_sym_volatile] = ACTIONS(5501), - [anon_sym_restrict] = ACTIONS(5501), - [anon_sym___restrict__] = ACTIONS(5501), - [anon_sym__Atomic] = ACTIONS(5501), - [anon_sym__Noreturn] = ACTIONS(5501), - [anon_sym_noreturn] = ACTIONS(5501), - [anon_sym__Nonnull] = ACTIONS(5501), - [anon_sym_mutable] = ACTIONS(5501), - [anon_sym_constinit] = ACTIONS(5501), - [anon_sym_consteval] = ACTIONS(5501), - [anon_sym_alignas] = ACTIONS(5501), - [anon_sym__Alignas] = ACTIONS(5501), - [sym_primitive_type] = ACTIONS(5501), - [anon_sym_enum] = ACTIONS(5501), - [anon_sym_class] = ACTIONS(5501), - [anon_sym_struct] = ACTIONS(5501), - [anon_sym_union] = ACTIONS(5501), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5501), - [anon_sym_decltype] = ACTIONS(5501), - [anon_sym_explicit] = ACTIONS(5501), - [anon_sym_typename] = ACTIONS(5501), - [anon_sym_private] = ACTIONS(5501), - [anon_sym_template] = ACTIONS(5501), - [anon_sym_operator] = ACTIONS(5501), - [anon_sym_friend] = ACTIONS(5501), - [anon_sym_public] = ACTIONS(5501), - [anon_sym_protected] = ACTIONS(5501), - [anon_sym_static_assert] = ACTIONS(5501), + [STATE(1501)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2168)] = { - [sym_identifier] = ACTIONS(5547), - [aux_sym_preproc_def_token1] = ACTIONS(5547), - [aux_sym_preproc_if_token1] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5547), - [sym_preproc_directive] = ACTIONS(5547), - [anon_sym_LPAREN2] = ACTIONS(5549), - [anon_sym_TILDE] = ACTIONS(5549), - [anon_sym_STAR] = ACTIONS(5549), - [anon_sym_AMP_AMP] = ACTIONS(5549), - [anon_sym_AMP] = ACTIONS(5547), - [anon_sym_SEMI] = ACTIONS(5549), - [anon_sym___extension__] = ACTIONS(5547), - [anon_sym_typedef] = ACTIONS(5547), - [anon_sym_virtual] = ACTIONS(5547), - [anon_sym_extern] = ACTIONS(5547), - [anon_sym___attribute__] = ACTIONS(5547), - [anon_sym___attribute] = ACTIONS(5547), - [anon_sym_using] = ACTIONS(5547), - [anon_sym_COLON_COLON] = ACTIONS(5549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), - [anon_sym___declspec] = ACTIONS(5547), - [anon_sym___based] = ACTIONS(5547), - [anon_sym_RBRACE] = ACTIONS(5549), - [anon_sym_signed] = ACTIONS(5547), - [anon_sym_unsigned] = ACTIONS(5547), - [anon_sym_long] = ACTIONS(5547), - [anon_sym_short] = ACTIONS(5547), - [anon_sym_LBRACK] = ACTIONS(5547), - [anon_sym_static] = ACTIONS(5547), - [anon_sym_register] = ACTIONS(5547), - [anon_sym_inline] = ACTIONS(5547), - [anon_sym___inline] = ACTIONS(5547), - [anon_sym___inline__] = ACTIONS(5547), - [anon_sym___forceinline] = ACTIONS(5547), - [anon_sym_thread_local] = ACTIONS(5547), - [anon_sym___thread] = ACTIONS(5547), - [anon_sym_const] = ACTIONS(5547), - [anon_sym_constexpr] = ACTIONS(5547), - [anon_sym_volatile] = ACTIONS(5547), - [anon_sym_restrict] = ACTIONS(5547), - [anon_sym___restrict__] = ACTIONS(5547), - [anon_sym__Atomic] = ACTIONS(5547), - [anon_sym__Noreturn] = ACTIONS(5547), - [anon_sym_noreturn] = ACTIONS(5547), - [anon_sym__Nonnull] = ACTIONS(5547), - [anon_sym_mutable] = ACTIONS(5547), - [anon_sym_constinit] = ACTIONS(5547), - [anon_sym_consteval] = ACTIONS(5547), - [anon_sym_alignas] = ACTIONS(5547), - [anon_sym__Alignas] = ACTIONS(5547), - [sym_primitive_type] = ACTIONS(5547), - [anon_sym_enum] = ACTIONS(5547), - [anon_sym_class] = ACTIONS(5547), - [anon_sym_struct] = ACTIONS(5547), - [anon_sym_union] = ACTIONS(5547), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5547), - [anon_sym_decltype] = ACTIONS(5547), - [anon_sym_explicit] = ACTIONS(5547), - [anon_sym_typename] = ACTIONS(5547), - [anon_sym_private] = ACTIONS(5547), - [anon_sym_template] = ACTIONS(5547), - [anon_sym_operator] = ACTIONS(5547), - [anon_sym_friend] = ACTIONS(5547), - [anon_sym_public] = ACTIONS(5547), - [anon_sym_protected] = ACTIONS(5547), - [anon_sym_static_assert] = ACTIONS(5547), + [STATE(1502)] = { + [sym_expression] = STATE(5138), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2169)] = { - [sym_identifier] = ACTIONS(5551), - [aux_sym_preproc_def_token1] = ACTIONS(5551), - [aux_sym_preproc_if_token1] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5551), - [sym_preproc_directive] = ACTIONS(5551), - [anon_sym_LPAREN2] = ACTIONS(5553), - [anon_sym_TILDE] = ACTIONS(5553), - [anon_sym_STAR] = ACTIONS(5553), - [anon_sym_AMP_AMP] = ACTIONS(5553), - [anon_sym_AMP] = ACTIONS(5551), - [anon_sym_SEMI] = ACTIONS(5553), - [anon_sym___extension__] = ACTIONS(5551), - [anon_sym_typedef] = ACTIONS(5551), - [anon_sym_virtual] = ACTIONS(5551), - [anon_sym_extern] = ACTIONS(5551), - [anon_sym___attribute__] = ACTIONS(5551), - [anon_sym___attribute] = ACTIONS(5551), - [anon_sym_using] = ACTIONS(5551), - [anon_sym_COLON_COLON] = ACTIONS(5553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5553), - [anon_sym___declspec] = ACTIONS(5551), - [anon_sym___based] = ACTIONS(5551), - [anon_sym_RBRACE] = ACTIONS(5553), - [anon_sym_signed] = ACTIONS(5551), - [anon_sym_unsigned] = ACTIONS(5551), - [anon_sym_long] = ACTIONS(5551), - [anon_sym_short] = ACTIONS(5551), - [anon_sym_LBRACK] = ACTIONS(5551), - [anon_sym_static] = ACTIONS(5551), - [anon_sym_register] = ACTIONS(5551), - [anon_sym_inline] = ACTIONS(5551), - [anon_sym___inline] = ACTIONS(5551), - [anon_sym___inline__] = ACTIONS(5551), - [anon_sym___forceinline] = ACTIONS(5551), - [anon_sym_thread_local] = ACTIONS(5551), - [anon_sym___thread] = ACTIONS(5551), - [anon_sym_const] = ACTIONS(5551), - [anon_sym_constexpr] = ACTIONS(5551), - [anon_sym_volatile] = ACTIONS(5551), - [anon_sym_restrict] = ACTIONS(5551), - [anon_sym___restrict__] = ACTIONS(5551), - [anon_sym__Atomic] = ACTIONS(5551), - [anon_sym__Noreturn] = ACTIONS(5551), - [anon_sym_noreturn] = ACTIONS(5551), - [anon_sym__Nonnull] = ACTIONS(5551), - [anon_sym_mutable] = ACTIONS(5551), - [anon_sym_constinit] = ACTIONS(5551), - [anon_sym_consteval] = ACTIONS(5551), - [anon_sym_alignas] = ACTIONS(5551), - [anon_sym__Alignas] = ACTIONS(5551), - [sym_primitive_type] = ACTIONS(5551), - [anon_sym_enum] = ACTIONS(5551), - [anon_sym_class] = ACTIONS(5551), - [anon_sym_struct] = ACTIONS(5551), - [anon_sym_union] = ACTIONS(5551), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5551), - [anon_sym_decltype] = ACTIONS(5551), - [anon_sym_explicit] = ACTIONS(5551), - [anon_sym_typename] = ACTIONS(5551), - [anon_sym_private] = ACTIONS(5551), - [anon_sym_template] = ACTIONS(5551), - [anon_sym_operator] = ACTIONS(5551), - [anon_sym_friend] = ACTIONS(5551), - [anon_sym_public] = ACTIONS(5551), - [anon_sym_protected] = ACTIONS(5551), - [anon_sym_static_assert] = ACTIONS(5551), + [STATE(1503)] = { + [sym_expression] = STATE(4960), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2170)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1504)] = { + [sym_expression] = STATE(6445), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2171)] = { - [sym_identifier] = ACTIONS(2919), - [aux_sym_preproc_def_token1] = ACTIONS(2919), - [aux_sym_preproc_if_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), - [sym_preproc_directive] = ACTIONS(2919), - [anon_sym_LPAREN2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2919), - [anon_sym_typedef] = ACTIONS(2919), - [anon_sym_virtual] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym___attribute__] = ACTIONS(2919), - [anon_sym___attribute] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), - [anon_sym___declspec] = ACTIONS(2919), - [anon_sym___based] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2919), - [anon_sym_unsigned] = ACTIONS(2919), - [anon_sym_long] = ACTIONS(2919), - [anon_sym_short] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_register] = ACTIONS(2919), - [anon_sym_inline] = ACTIONS(2919), - [anon_sym___inline] = ACTIONS(2919), - [anon_sym___inline__] = ACTIONS(2919), - [anon_sym___forceinline] = ACTIONS(2919), - [anon_sym_thread_local] = ACTIONS(2919), - [anon_sym___thread] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_constexpr] = ACTIONS(2919), - [anon_sym_volatile] = ACTIONS(2919), - [anon_sym_restrict] = ACTIONS(2919), - [anon_sym___restrict__] = ACTIONS(2919), - [anon_sym__Atomic] = ACTIONS(2919), - [anon_sym__Noreturn] = ACTIONS(2919), - [anon_sym_noreturn] = ACTIONS(2919), - [anon_sym__Nonnull] = ACTIONS(2919), - [anon_sym_mutable] = ACTIONS(2919), - [anon_sym_constinit] = ACTIONS(2919), - [anon_sym_consteval] = ACTIONS(2919), - [anon_sym_alignas] = ACTIONS(2919), - [anon_sym__Alignas] = ACTIONS(2919), - [sym_primitive_type] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2919), - [anon_sym_decltype] = ACTIONS(2919), - [anon_sym_explicit] = ACTIONS(2919), - [anon_sym_typename] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_template] = ACTIONS(2919), - [anon_sym_operator] = ACTIONS(2919), - [anon_sym_friend] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_static_assert] = ACTIONS(2919), + [STATE(1505)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2172)] = { - [sym_identifier] = ACTIONS(2999), - [aux_sym_preproc_def_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token1] = ACTIONS(2999), - [aux_sym_preproc_if_token2] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2999), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2999), - [sym_preproc_directive] = ACTIONS(2999), - [anon_sym_LPAREN2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym___extension__] = ACTIONS(2999), - [anon_sym_typedef] = ACTIONS(2999), - [anon_sym_virtual] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2999), - [anon_sym___attribute__] = ACTIONS(2999), - [anon_sym___attribute] = ACTIONS(2999), - [anon_sym_using] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(3001), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3001), - [anon_sym___declspec] = ACTIONS(2999), - [anon_sym___based] = ACTIONS(2999), - [anon_sym_signed] = ACTIONS(2999), - [anon_sym_unsigned] = ACTIONS(2999), - [anon_sym_long] = ACTIONS(2999), - [anon_sym_short] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_register] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym___inline] = ACTIONS(2999), - [anon_sym___inline__] = ACTIONS(2999), - [anon_sym___forceinline] = ACTIONS(2999), - [anon_sym_thread_local] = ACTIONS(2999), - [anon_sym___thread] = ACTIONS(2999), - [anon_sym_const] = ACTIONS(2999), - [anon_sym_constexpr] = ACTIONS(2999), - [anon_sym_volatile] = ACTIONS(2999), - [anon_sym_restrict] = ACTIONS(2999), - [anon_sym___restrict__] = ACTIONS(2999), - [anon_sym__Atomic] = ACTIONS(2999), - [anon_sym__Noreturn] = ACTIONS(2999), - [anon_sym_noreturn] = ACTIONS(2999), - [anon_sym__Nonnull] = ACTIONS(2999), - [anon_sym_mutable] = ACTIONS(2999), - [anon_sym_constinit] = ACTIONS(2999), - [anon_sym_consteval] = ACTIONS(2999), - [anon_sym_alignas] = ACTIONS(2999), - [anon_sym__Alignas] = ACTIONS(2999), - [sym_primitive_type] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_union] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2999), - [anon_sym_decltype] = ACTIONS(2999), - [anon_sym_explicit] = ACTIONS(2999), - [anon_sym_typename] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_operator] = ACTIONS(2999), - [anon_sym_friend] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_protected] = ACTIONS(2999), - [anon_sym_static_assert] = ACTIONS(2999), + [STATE(1506)] = { + [sym_expression] = STATE(5040), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2173)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_friend] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), + [STATE(1507)] = { + [sym_expression] = STATE(5091), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2174)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_RBRACE] = ACTIONS(5557), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1508)] = { + [sym_expression] = STATE(4586), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2175)] = { - [sym_identifier] = ACTIONS(3003), - [aux_sym_preproc_def_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token1] = ACTIONS(3003), - [aux_sym_preproc_if_token2] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3003), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3003), - [sym_preproc_directive] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_typedef] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_using] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3005), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym___based] = ACTIONS(3003), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), + [STATE(1509)] = { + [sym_expression] = STATE(6628), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_explicit] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_operator] = ACTIONS(3003), - [anon_sym_friend] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_protected] = ACTIONS(3003), - [anon_sym_static_assert] = ACTIONS(3003), - }, - [STATE(2176)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token2] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_friend] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2177)] = { - [sym_identifier] = ACTIONS(3329), - [aux_sym_preproc_def_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3329), - [aux_sym_preproc_if_token2] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), - [sym_preproc_directive] = ACTIONS(3329), - [anon_sym_LPAREN2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym___extension__] = ACTIONS(3329), - [anon_sym_typedef] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym___attribute__] = ACTIONS(3329), - [anon_sym___attribute] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), - [anon_sym___declspec] = ACTIONS(3329), - [anon_sym___based] = ACTIONS(3329), - [anon_sym_signed] = ACTIONS(3329), - [anon_sym_unsigned] = ACTIONS(3329), - [anon_sym_long] = ACTIONS(3329), - [anon_sym_short] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_register] = ACTIONS(3329), - [anon_sym_inline] = ACTIONS(3329), - [anon_sym___inline] = ACTIONS(3329), - [anon_sym___inline__] = ACTIONS(3329), - [anon_sym___forceinline] = ACTIONS(3329), - [anon_sym_thread_local] = ACTIONS(3329), - [anon_sym___thread] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_constexpr] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_restrict] = ACTIONS(3329), - [anon_sym___restrict__] = ACTIONS(3329), - [anon_sym__Atomic] = ACTIONS(3329), - [anon_sym__Noreturn] = ACTIONS(3329), - [anon_sym_noreturn] = ACTIONS(3329), - [anon_sym__Nonnull] = ACTIONS(3329), - [anon_sym_mutable] = ACTIONS(3329), - [anon_sym_constinit] = ACTIONS(3329), - [anon_sym_consteval] = ACTIONS(3329), - [anon_sym_alignas] = ACTIONS(3329), - [anon_sym__Alignas] = ACTIONS(3329), - [sym_primitive_type] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_union] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3329), - [anon_sym_decltype] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_typename] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_template] = ACTIONS(3329), - [anon_sym_operator] = ACTIONS(3329), - [anon_sym_friend] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_static_assert] = ACTIONS(3329), + [STATE(1510)] = { + [sym_expression] = STATE(5020), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(6049), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2178)] = { - [sym_identifier] = ACTIONS(5523), - [aux_sym_preproc_def_token1] = ACTIONS(5523), - [aux_sym_preproc_if_token1] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5523), - [sym_preproc_directive] = ACTIONS(5523), - [anon_sym_LPAREN2] = ACTIONS(5525), - [anon_sym_TILDE] = ACTIONS(5525), - [anon_sym_STAR] = ACTIONS(5525), - [anon_sym_AMP_AMP] = ACTIONS(5525), - [anon_sym_AMP] = ACTIONS(5523), - [anon_sym_SEMI] = ACTIONS(5525), - [anon_sym___extension__] = ACTIONS(5523), - [anon_sym_typedef] = ACTIONS(5523), - [anon_sym_virtual] = ACTIONS(5523), - [anon_sym_extern] = ACTIONS(5523), - [anon_sym___attribute__] = ACTIONS(5523), - [anon_sym___attribute] = ACTIONS(5523), - [anon_sym_using] = ACTIONS(5523), - [anon_sym_COLON_COLON] = ACTIONS(5525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5525), - [anon_sym___declspec] = ACTIONS(5523), - [anon_sym___based] = ACTIONS(5523), - [anon_sym_RBRACE] = ACTIONS(5525), - [anon_sym_signed] = ACTIONS(5523), - [anon_sym_unsigned] = ACTIONS(5523), - [anon_sym_long] = ACTIONS(5523), - [anon_sym_short] = ACTIONS(5523), - [anon_sym_LBRACK] = ACTIONS(5523), - [anon_sym_static] = ACTIONS(5523), - [anon_sym_register] = ACTIONS(5523), - [anon_sym_inline] = ACTIONS(5523), - [anon_sym___inline] = ACTIONS(5523), - [anon_sym___inline__] = ACTIONS(5523), - [anon_sym___forceinline] = ACTIONS(5523), - [anon_sym_thread_local] = ACTIONS(5523), - [anon_sym___thread] = ACTIONS(5523), - [anon_sym_const] = ACTIONS(5523), - [anon_sym_constexpr] = ACTIONS(5523), - [anon_sym_volatile] = ACTIONS(5523), - [anon_sym_restrict] = ACTIONS(5523), - [anon_sym___restrict__] = ACTIONS(5523), - [anon_sym__Atomic] = ACTIONS(5523), - [anon_sym__Noreturn] = ACTIONS(5523), - [anon_sym_noreturn] = ACTIONS(5523), - [anon_sym__Nonnull] = ACTIONS(5523), - [anon_sym_mutable] = ACTIONS(5523), - [anon_sym_constinit] = ACTIONS(5523), - [anon_sym_consteval] = ACTIONS(5523), - [anon_sym_alignas] = ACTIONS(5523), - [anon_sym__Alignas] = ACTIONS(5523), - [sym_primitive_type] = ACTIONS(5523), - [anon_sym_enum] = ACTIONS(5523), - [anon_sym_class] = ACTIONS(5523), - [anon_sym_struct] = ACTIONS(5523), - [anon_sym_union] = ACTIONS(5523), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5523), - [anon_sym_decltype] = ACTIONS(5523), - [anon_sym_explicit] = ACTIONS(5523), - [anon_sym_typename] = ACTIONS(5523), - [anon_sym_private] = ACTIONS(5523), - [anon_sym_template] = ACTIONS(5523), - [anon_sym_operator] = ACTIONS(5523), - [anon_sym_friend] = ACTIONS(5523), - [anon_sym_public] = ACTIONS(5523), - [anon_sym_protected] = ACTIONS(5523), - [anon_sym_static_assert] = ACTIONS(5523), + [STATE(1511)] = { + [sym_expression] = STATE(6637), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2179)] = { - [sym_identifier] = ACTIONS(3115), - [aux_sym_preproc_def_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token1] = ACTIONS(3115), - [aux_sym_preproc_if_token2] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3115), - [sym_preproc_directive] = ACTIONS(3115), - [anon_sym_LPAREN2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym___extension__] = ACTIONS(3115), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym___attribute__] = ACTIONS(3115), - [anon_sym___attribute] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_COLON_COLON] = ACTIONS(3117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3117), - [anon_sym___declspec] = ACTIONS(3115), - [anon_sym___based] = ACTIONS(3115), - [anon_sym_signed] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym___inline] = ACTIONS(3115), - [anon_sym___inline__] = ACTIONS(3115), - [anon_sym___forceinline] = ACTIONS(3115), - [anon_sym_thread_local] = ACTIONS(3115), - [anon_sym___thread] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_constexpr] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym___restrict__] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym__Noreturn] = ACTIONS(3115), - [anon_sym_noreturn] = ACTIONS(3115), - [anon_sym__Nonnull] = ACTIONS(3115), - [anon_sym_mutable] = ACTIONS(3115), - [anon_sym_constinit] = ACTIONS(3115), - [anon_sym_consteval] = ACTIONS(3115), - [anon_sym_alignas] = ACTIONS(3115), - [anon_sym__Alignas] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3115), - [anon_sym_decltype] = ACTIONS(3115), - [anon_sym_explicit] = ACTIONS(3115), - [anon_sym_typename] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_template] = ACTIONS(3115), - [anon_sym_operator] = ACTIONS(3115), - [anon_sym_friend] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_static_assert] = ACTIONS(3115), + [STATE(1512)] = { + [sym_expression] = STATE(6716), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2180)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token2] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_friend] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), + [STATE(1513)] = { + [sym_expression] = STATE(6724), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2181)] = { - [sym_identifier] = ACTIONS(3325), - [aux_sym_preproc_def_token1] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3325), - [sym_preproc_directive] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym___extension__] = ACTIONS(3325), - [anon_sym_typedef] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym___attribute__] = ACTIONS(3325), - [anon_sym___attribute] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3327), - [anon_sym___declspec] = ACTIONS(3325), - [anon_sym___based] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_signed] = ACTIONS(3325), - [anon_sym_unsigned] = ACTIONS(3325), - [anon_sym_long] = ACTIONS(3325), - [anon_sym_short] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_register] = ACTIONS(3325), - [anon_sym_inline] = ACTIONS(3325), - [anon_sym___inline] = ACTIONS(3325), - [anon_sym___inline__] = ACTIONS(3325), - [anon_sym___forceinline] = ACTIONS(3325), - [anon_sym_thread_local] = ACTIONS(3325), - [anon_sym___thread] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_constexpr] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_restrict] = ACTIONS(3325), - [anon_sym___restrict__] = ACTIONS(3325), - [anon_sym__Atomic] = ACTIONS(3325), - [anon_sym__Noreturn] = ACTIONS(3325), - [anon_sym_noreturn] = ACTIONS(3325), - [anon_sym__Nonnull] = ACTIONS(3325), - [anon_sym_mutable] = ACTIONS(3325), - [anon_sym_constinit] = ACTIONS(3325), - [anon_sym_consteval] = ACTIONS(3325), - [anon_sym_alignas] = ACTIONS(3325), - [anon_sym__Alignas] = ACTIONS(3325), - [sym_primitive_type] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_union] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3325), - [anon_sym_decltype] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_typename] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_template] = ACTIONS(3325), - [anon_sym_operator] = ACTIONS(3325), - [anon_sym_friend] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_static_assert] = ACTIONS(3325), + [STATE(1514)] = { + [sym_expression] = STATE(6783), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2182)] = { - [sym_identifier] = ACTIONS(5555), - [aux_sym_preproc_def_token1] = ACTIONS(5555), - [aux_sym_preproc_if_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5555), - [sym_preproc_directive] = ACTIONS(5555), - [anon_sym_LPAREN2] = ACTIONS(5557), - [anon_sym_TILDE] = ACTIONS(5557), - [anon_sym_STAR] = ACTIONS(5557), - [anon_sym_AMP_AMP] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5555), - [anon_sym_SEMI] = ACTIONS(5557), - [anon_sym___extension__] = ACTIONS(5555), - [anon_sym_typedef] = ACTIONS(5555), - [anon_sym_virtual] = ACTIONS(5555), - [anon_sym_extern] = ACTIONS(5555), - [anon_sym___attribute__] = ACTIONS(5555), - [anon_sym___attribute] = ACTIONS(5555), - [anon_sym_using] = ACTIONS(5555), - [anon_sym_COLON_COLON] = ACTIONS(5557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5557), - [anon_sym___declspec] = ACTIONS(5555), - [anon_sym___based] = ACTIONS(5555), - [anon_sym_RBRACE] = ACTIONS(5557), - [anon_sym_signed] = ACTIONS(5555), - [anon_sym_unsigned] = ACTIONS(5555), - [anon_sym_long] = ACTIONS(5555), - [anon_sym_short] = ACTIONS(5555), - [anon_sym_LBRACK] = ACTIONS(5555), - [anon_sym_static] = ACTIONS(5555), - [anon_sym_register] = ACTIONS(5555), - [anon_sym_inline] = ACTIONS(5555), - [anon_sym___inline] = ACTIONS(5555), - [anon_sym___inline__] = ACTIONS(5555), - [anon_sym___forceinline] = ACTIONS(5555), - [anon_sym_thread_local] = ACTIONS(5555), - [anon_sym___thread] = ACTIONS(5555), - [anon_sym_const] = ACTIONS(5555), - [anon_sym_constexpr] = ACTIONS(5555), - [anon_sym_volatile] = ACTIONS(5555), - [anon_sym_restrict] = ACTIONS(5555), - [anon_sym___restrict__] = ACTIONS(5555), - [anon_sym__Atomic] = ACTIONS(5555), - [anon_sym__Noreturn] = ACTIONS(5555), - [anon_sym_noreturn] = ACTIONS(5555), - [anon_sym__Nonnull] = ACTIONS(5555), - [anon_sym_mutable] = ACTIONS(5555), - [anon_sym_constinit] = ACTIONS(5555), - [anon_sym_consteval] = ACTIONS(5555), - [anon_sym_alignas] = ACTIONS(5555), - [anon_sym__Alignas] = ACTIONS(5555), - [sym_primitive_type] = ACTIONS(5555), - [anon_sym_enum] = ACTIONS(5555), - [anon_sym_class] = ACTIONS(5555), - [anon_sym_struct] = ACTIONS(5555), - [anon_sym_union] = ACTIONS(5555), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5555), - [anon_sym_decltype] = ACTIONS(5555), - [anon_sym_explicit] = ACTIONS(5555), - [anon_sym_typename] = ACTIONS(5555), - [anon_sym_private] = ACTIONS(5555), - [anon_sym_template] = ACTIONS(5555), - [anon_sym_operator] = ACTIONS(5555), - [anon_sym_friend] = ACTIONS(5555), - [anon_sym_public] = ACTIONS(5555), - [anon_sym_protected] = ACTIONS(5555), - [anon_sym_static_assert] = ACTIONS(5555), + [STATE(1515)] = { + [sym_expression] = STATE(6644), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2183)] = { - [sym_identifier] = ACTIONS(5559), - [aux_sym_preproc_def_token1] = ACTIONS(5559), - [aux_sym_preproc_if_token1] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5559), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5559), - [sym_preproc_directive] = ACTIONS(5559), - [anon_sym_LPAREN2] = ACTIONS(5561), - [anon_sym_TILDE] = ACTIONS(5561), - [anon_sym_STAR] = ACTIONS(5561), - [anon_sym_AMP_AMP] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5559), - [anon_sym_SEMI] = ACTIONS(5561), - [anon_sym___extension__] = ACTIONS(5559), - [anon_sym_typedef] = ACTIONS(5559), - [anon_sym_virtual] = ACTIONS(5559), - [anon_sym_extern] = ACTIONS(5559), - [anon_sym___attribute__] = ACTIONS(5559), - [anon_sym___attribute] = ACTIONS(5559), - [anon_sym_using] = ACTIONS(5559), - [anon_sym_COLON_COLON] = ACTIONS(5561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5561), - [anon_sym___declspec] = ACTIONS(5559), - [anon_sym___based] = ACTIONS(5559), - [anon_sym_RBRACE] = ACTIONS(5561), - [anon_sym_signed] = ACTIONS(5559), - [anon_sym_unsigned] = ACTIONS(5559), - [anon_sym_long] = ACTIONS(5559), - [anon_sym_short] = ACTIONS(5559), - [anon_sym_LBRACK] = ACTIONS(5559), - [anon_sym_static] = ACTIONS(5559), - [anon_sym_register] = ACTIONS(5559), - [anon_sym_inline] = ACTIONS(5559), - [anon_sym___inline] = ACTIONS(5559), - [anon_sym___inline__] = ACTIONS(5559), - [anon_sym___forceinline] = ACTIONS(5559), - [anon_sym_thread_local] = ACTIONS(5559), - [anon_sym___thread] = ACTIONS(5559), - [anon_sym_const] = ACTIONS(5559), - [anon_sym_constexpr] = ACTIONS(5559), - [anon_sym_volatile] = ACTIONS(5559), - [anon_sym_restrict] = ACTIONS(5559), - [anon_sym___restrict__] = ACTIONS(5559), - [anon_sym__Atomic] = ACTIONS(5559), - [anon_sym__Noreturn] = ACTIONS(5559), - [anon_sym_noreturn] = ACTIONS(5559), - [anon_sym__Nonnull] = ACTIONS(5559), - [anon_sym_mutable] = ACTIONS(5559), - [anon_sym_constinit] = ACTIONS(5559), - [anon_sym_consteval] = ACTIONS(5559), - [anon_sym_alignas] = ACTIONS(5559), - [anon_sym__Alignas] = ACTIONS(5559), - [sym_primitive_type] = ACTIONS(5559), - [anon_sym_enum] = ACTIONS(5559), - [anon_sym_class] = ACTIONS(5559), - [anon_sym_struct] = ACTIONS(5559), - [anon_sym_union] = ACTIONS(5559), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5559), - [anon_sym_decltype] = ACTIONS(5559), - [anon_sym_explicit] = ACTIONS(5559), - [anon_sym_typename] = ACTIONS(5559), - [anon_sym_private] = ACTIONS(5559), - [anon_sym_template] = ACTIONS(5559), - [anon_sym_operator] = ACTIONS(5559), - [anon_sym_friend] = ACTIONS(5559), - [anon_sym_public] = ACTIONS(5559), - [anon_sym_protected] = ACTIONS(5559), - [anon_sym_static_assert] = ACTIONS(5559), + [STATE(1516)] = { + [sym_expression] = STATE(6645), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2184)] = { - [sym_identifier] = ACTIONS(5563), - [aux_sym_preproc_def_token1] = ACTIONS(5563), - [aux_sym_preproc_if_token1] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5563), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5563), - [sym_preproc_directive] = ACTIONS(5563), - [anon_sym_LPAREN2] = ACTIONS(5565), - [anon_sym_TILDE] = ACTIONS(5565), - [anon_sym_STAR] = ACTIONS(5565), - [anon_sym_AMP_AMP] = ACTIONS(5565), - [anon_sym_AMP] = ACTIONS(5563), - [anon_sym_SEMI] = ACTIONS(5565), - [anon_sym___extension__] = ACTIONS(5563), - [anon_sym_typedef] = ACTIONS(5563), - [anon_sym_virtual] = ACTIONS(5563), - [anon_sym_extern] = ACTIONS(5563), - [anon_sym___attribute__] = ACTIONS(5563), - [anon_sym___attribute] = ACTIONS(5563), - [anon_sym_using] = ACTIONS(5563), - [anon_sym_COLON_COLON] = ACTIONS(5565), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5565), - [anon_sym___declspec] = ACTIONS(5563), - [anon_sym___based] = ACTIONS(5563), - [anon_sym_RBRACE] = ACTIONS(5565), - [anon_sym_signed] = ACTIONS(5563), - [anon_sym_unsigned] = ACTIONS(5563), - [anon_sym_long] = ACTIONS(5563), - [anon_sym_short] = ACTIONS(5563), - [anon_sym_LBRACK] = ACTIONS(5563), - [anon_sym_static] = ACTIONS(5563), - [anon_sym_register] = ACTIONS(5563), - [anon_sym_inline] = ACTIONS(5563), - [anon_sym___inline] = ACTIONS(5563), - [anon_sym___inline__] = ACTIONS(5563), - [anon_sym___forceinline] = ACTIONS(5563), - [anon_sym_thread_local] = ACTIONS(5563), - [anon_sym___thread] = ACTIONS(5563), - [anon_sym_const] = ACTIONS(5563), - [anon_sym_constexpr] = ACTIONS(5563), - [anon_sym_volatile] = ACTIONS(5563), - [anon_sym_restrict] = ACTIONS(5563), - [anon_sym___restrict__] = ACTIONS(5563), - [anon_sym__Atomic] = ACTIONS(5563), - [anon_sym__Noreturn] = ACTIONS(5563), - [anon_sym_noreturn] = ACTIONS(5563), - [anon_sym__Nonnull] = ACTIONS(5563), - [anon_sym_mutable] = ACTIONS(5563), - [anon_sym_constinit] = ACTIONS(5563), - [anon_sym_consteval] = ACTIONS(5563), - [anon_sym_alignas] = ACTIONS(5563), - [anon_sym__Alignas] = ACTIONS(5563), - [sym_primitive_type] = ACTIONS(5563), - [anon_sym_enum] = ACTIONS(5563), - [anon_sym_class] = ACTIONS(5563), - [anon_sym_struct] = ACTIONS(5563), - [anon_sym_union] = ACTIONS(5563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5563), - [anon_sym_decltype] = ACTIONS(5563), - [anon_sym_explicit] = ACTIONS(5563), - [anon_sym_typename] = ACTIONS(5563), - [anon_sym_private] = ACTIONS(5563), - [anon_sym_template] = ACTIONS(5563), - [anon_sym_operator] = ACTIONS(5563), - [anon_sym_friend] = ACTIONS(5563), - [anon_sym_public] = ACTIONS(5563), - [anon_sym_protected] = ACTIONS(5563), - [anon_sym_static_assert] = ACTIONS(5563), + [STATE(1517)] = { + [sym_expression] = STATE(6646), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2185)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1518)] = { + [sym_expression] = STATE(6647), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2186)] = { - [sym_identifier] = ACTIONS(2923), - [aux_sym_preproc_def_token1] = ACTIONS(2923), - [aux_sym_preproc_if_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), - [sym_preproc_directive] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2923), - [anon_sym_typedef] = ACTIONS(2923), - [anon_sym_virtual] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym___attribute__] = ACTIONS(2923), - [anon_sym___attribute] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), - [anon_sym___declspec] = ACTIONS(2923), - [anon_sym___based] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2923), - [anon_sym_unsigned] = ACTIONS(2923), - [anon_sym_long] = ACTIONS(2923), - [anon_sym_short] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_register] = ACTIONS(2923), - [anon_sym_inline] = ACTIONS(2923), - [anon_sym___inline] = ACTIONS(2923), - [anon_sym___inline__] = ACTIONS(2923), - [anon_sym___forceinline] = ACTIONS(2923), - [anon_sym_thread_local] = ACTIONS(2923), - [anon_sym___thread] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_constexpr] = ACTIONS(2923), - [anon_sym_volatile] = ACTIONS(2923), - [anon_sym_restrict] = ACTIONS(2923), - [anon_sym___restrict__] = ACTIONS(2923), - [anon_sym__Atomic] = ACTIONS(2923), - [anon_sym__Noreturn] = ACTIONS(2923), - [anon_sym_noreturn] = ACTIONS(2923), - [anon_sym__Nonnull] = ACTIONS(2923), - [anon_sym_mutable] = ACTIONS(2923), - [anon_sym_constinit] = ACTIONS(2923), - [anon_sym_consteval] = ACTIONS(2923), - [anon_sym_alignas] = ACTIONS(2923), - [anon_sym__Alignas] = ACTIONS(2923), - [sym_primitive_type] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2923), - [anon_sym_decltype] = ACTIONS(2923), - [anon_sym_explicit] = ACTIONS(2923), - [anon_sym_typename] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_template] = ACTIONS(2923), - [anon_sym_operator] = ACTIONS(2923), - [anon_sym_friend] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_static_assert] = ACTIONS(2923), + [STATE(1519)] = { + [sym_expression] = STATE(6650), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2187)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1520)] = { + [sym_expression] = STATE(6660), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2188)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token2] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1521)] = { + [sym_expression] = STATE(5038), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2189)] = { - [sym_identifier] = ACTIONS(5527), - [aux_sym_preproc_def_token1] = ACTIONS(5527), - [aux_sym_preproc_if_token1] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5527), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5527), - [sym_preproc_directive] = ACTIONS(5527), - [anon_sym_LPAREN2] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_STAR] = ACTIONS(5529), - [anon_sym_AMP_AMP] = ACTIONS(5529), - [anon_sym_AMP] = ACTIONS(5527), - [anon_sym_SEMI] = ACTIONS(5529), - [anon_sym___extension__] = ACTIONS(5527), - [anon_sym_typedef] = ACTIONS(5527), - [anon_sym_virtual] = ACTIONS(5527), - [anon_sym_extern] = ACTIONS(5527), - [anon_sym___attribute__] = ACTIONS(5527), - [anon_sym___attribute] = ACTIONS(5527), - [anon_sym_using] = ACTIONS(5527), - [anon_sym_COLON_COLON] = ACTIONS(5529), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5529), - [anon_sym___declspec] = ACTIONS(5527), - [anon_sym___based] = ACTIONS(5527), - [anon_sym_RBRACE] = ACTIONS(5529), - [anon_sym_signed] = ACTIONS(5527), - [anon_sym_unsigned] = ACTIONS(5527), - [anon_sym_long] = ACTIONS(5527), - [anon_sym_short] = ACTIONS(5527), - [anon_sym_LBRACK] = ACTIONS(5527), - [anon_sym_static] = ACTIONS(5527), - [anon_sym_register] = ACTIONS(5527), - [anon_sym_inline] = ACTIONS(5527), - [anon_sym___inline] = ACTIONS(5527), - [anon_sym___inline__] = ACTIONS(5527), - [anon_sym___forceinline] = ACTIONS(5527), - [anon_sym_thread_local] = ACTIONS(5527), - [anon_sym___thread] = ACTIONS(5527), - [anon_sym_const] = ACTIONS(5527), - [anon_sym_constexpr] = ACTIONS(5527), - [anon_sym_volatile] = ACTIONS(5527), - [anon_sym_restrict] = ACTIONS(5527), - [anon_sym___restrict__] = ACTIONS(5527), - [anon_sym__Atomic] = ACTIONS(5527), - [anon_sym__Noreturn] = ACTIONS(5527), - [anon_sym_noreturn] = ACTIONS(5527), - [anon_sym__Nonnull] = ACTIONS(5527), - [anon_sym_mutable] = ACTIONS(5527), - [anon_sym_constinit] = ACTIONS(5527), - [anon_sym_consteval] = ACTIONS(5527), - [anon_sym_alignas] = ACTIONS(5527), - [anon_sym__Alignas] = ACTIONS(5527), - [sym_primitive_type] = ACTIONS(5527), - [anon_sym_enum] = ACTIONS(5527), - [anon_sym_class] = ACTIONS(5527), - [anon_sym_struct] = ACTIONS(5527), - [anon_sym_union] = ACTIONS(5527), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5527), - [anon_sym_decltype] = ACTIONS(5527), - [anon_sym_explicit] = ACTIONS(5527), - [anon_sym_typename] = ACTIONS(5527), - [anon_sym_private] = ACTIONS(5527), - [anon_sym_template] = ACTIONS(5527), - [anon_sym_operator] = ACTIONS(5527), - [anon_sym_friend] = ACTIONS(5527), - [anon_sym_public] = ACTIONS(5527), - [anon_sym_protected] = ACTIONS(5527), - [anon_sym_static_assert] = ACTIONS(5527), + [STATE(1522)] = { + [sym_expression] = STATE(5699), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2190)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2963), - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1523)] = { + [sym_expression] = STATE(4766), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(6051), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2191)] = { - [sym_identifier] = ACTIONS(5531), - [aux_sym_preproc_def_token1] = ACTIONS(5531), - [aux_sym_preproc_if_token1] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5531), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5531), - [sym_preproc_directive] = ACTIONS(5531), - [anon_sym_LPAREN2] = ACTIONS(5533), - [anon_sym_TILDE] = ACTIONS(5533), - [anon_sym_STAR] = ACTIONS(5533), - [anon_sym_AMP_AMP] = ACTIONS(5533), - [anon_sym_AMP] = ACTIONS(5531), - [anon_sym_SEMI] = ACTIONS(5533), - [anon_sym___extension__] = ACTIONS(5531), - [anon_sym_typedef] = ACTIONS(5531), - [anon_sym_virtual] = ACTIONS(5531), - [anon_sym_extern] = ACTIONS(5531), - [anon_sym___attribute__] = ACTIONS(5531), - [anon_sym___attribute] = ACTIONS(5531), - [anon_sym_using] = ACTIONS(5531), - [anon_sym_COLON_COLON] = ACTIONS(5533), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym___declspec] = ACTIONS(5531), - [anon_sym___based] = ACTIONS(5531), - [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(5531), - [anon_sym_static] = ACTIONS(5531), - [anon_sym_register] = ACTIONS(5531), - [anon_sym_inline] = ACTIONS(5531), - [anon_sym___inline] = ACTIONS(5531), - [anon_sym___inline__] = ACTIONS(5531), - [anon_sym___forceinline] = ACTIONS(5531), - [anon_sym_thread_local] = ACTIONS(5531), - [anon_sym___thread] = ACTIONS(5531), - [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__Nonnull] = ACTIONS(5531), - [anon_sym_mutable] = ACTIONS(5531), - [anon_sym_constinit] = ACTIONS(5531), - [anon_sym_consteval] = ACTIONS(5531), - [anon_sym_alignas] = ACTIONS(5531), - [anon_sym__Alignas] = ACTIONS(5531), - [sym_primitive_type] = ACTIONS(5531), - [anon_sym_enum] = ACTIONS(5531), - [anon_sym_class] = ACTIONS(5531), - [anon_sym_struct] = ACTIONS(5531), - [anon_sym_union] = ACTIONS(5531), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5531), - [anon_sym_decltype] = ACTIONS(5531), - [anon_sym_explicit] = ACTIONS(5531), - [anon_sym_typename] = ACTIONS(5531), - [anon_sym_private] = ACTIONS(5531), - [anon_sym_template] = ACTIONS(5531), - [anon_sym_operator] = ACTIONS(5531), - [anon_sym_friend] = ACTIONS(5531), - [anon_sym_public] = ACTIONS(5531), - [anon_sym_protected] = ACTIONS(5531), - [anon_sym_static_assert] = ACTIONS(5531), + [STATE(1524)] = { + [sym_expression] = STATE(3695), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2192)] = { - [sym_identifier] = 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_TILDE] = ACTIONS(2963), - [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_virtual] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym___attribute] = ACTIONS(2961), - [anon_sym_using] = 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_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__Nonnull] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym__Alignas] = 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_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_private] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_friend] = ACTIONS(2961), - [anon_sym_public] = ACTIONS(2961), - [anon_sym_protected] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), + [STATE(1525)] = { + [sym_expression] = STATE(5750), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2193)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2193), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym_virtual] = ACTIONS(5109), - [anon_sym_extern] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_COLON_COLON] = ACTIONS(5111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5111), - [anon_sym___declspec] = ACTIONS(5109), - [anon_sym___based] = ACTIONS(5109), - [anon_sym___cdecl] = ACTIONS(5109), - [anon_sym___clrcall] = ACTIONS(5109), - [anon_sym___stdcall] = ACTIONS(5109), - [anon_sym___fastcall] = ACTIONS(5109), - [anon_sym___thiscall] = ACTIONS(5109), - [anon_sym___vectorcall] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(6015), - [anon_sym_unsigned] = ACTIONS(6015), - [anon_sym_long] = ACTIONS(6015), - [anon_sym_short] = ACTIONS(6015), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_static] = ACTIONS(5109), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_register] = ACTIONS(5109), - [anon_sym_inline] = ACTIONS(5109), - [anon_sym___inline] = ACTIONS(5109), - [anon_sym___inline__] = ACTIONS(5109), - [anon_sym___forceinline] = ACTIONS(5109), - [anon_sym_thread_local] = ACTIONS(5109), - [anon_sym___thread] = ACTIONS(5109), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_asm] = ACTIONS(5109), - [anon_sym___asm__] = ACTIONS(5109), - [anon_sym___asm] = ACTIONS(5109), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5109), - [anon_sym_final] = ACTIONS(5109), - [anon_sym_override] = ACTIONS(5109), - [anon_sym_template] = ACTIONS(5109), - [anon_sym_GT2] = ACTIONS(5111), - [anon_sym_operator] = ACTIONS(5109), - [anon_sym_try] = ACTIONS(5109), - [anon_sym_requires] = ACTIONS(5109), + [STATE(1526)] = { + [sym_expression] = STATE(5367), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(6053), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2194)] = { - [sym_identifier] = ACTIONS(3145), - [aux_sym_preproc_def_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token2] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3145), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3145), - [sym_preproc_directive] = ACTIONS(3145), - [anon_sym_LPAREN2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym___extension__] = ACTIONS(3145), - [anon_sym_typedef] = ACTIONS(3145), - [anon_sym_virtual] = ACTIONS(3145), - [anon_sym_extern] = ACTIONS(3145), - [anon_sym___attribute__] = ACTIONS(3145), - [anon_sym___attribute] = ACTIONS(3145), - [anon_sym_using] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), - [anon_sym___declspec] = ACTIONS(3145), - [anon_sym___based] = ACTIONS(3145), - [anon_sym_signed] = ACTIONS(3145), - [anon_sym_unsigned] = ACTIONS(3145), - [anon_sym_long] = ACTIONS(3145), - [anon_sym_short] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_static] = ACTIONS(3145), - [anon_sym_register] = ACTIONS(3145), - [anon_sym_inline] = ACTIONS(3145), - [anon_sym___inline] = ACTIONS(3145), - [anon_sym___inline__] = ACTIONS(3145), - [anon_sym___forceinline] = ACTIONS(3145), - [anon_sym_thread_local] = ACTIONS(3145), - [anon_sym___thread] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_constexpr] = ACTIONS(3145), - [anon_sym_volatile] = ACTIONS(3145), - [anon_sym_restrict] = ACTIONS(3145), - [anon_sym___restrict__] = ACTIONS(3145), - [anon_sym__Atomic] = ACTIONS(3145), - [anon_sym__Noreturn] = ACTIONS(3145), - [anon_sym_noreturn] = ACTIONS(3145), - [anon_sym__Nonnull] = ACTIONS(3145), - [anon_sym_mutable] = ACTIONS(3145), - [anon_sym_constinit] = ACTIONS(3145), - [anon_sym_consteval] = ACTIONS(3145), - [anon_sym_alignas] = ACTIONS(3145), - [anon_sym__Alignas] = ACTIONS(3145), - [sym_primitive_type] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3145), - [anon_sym_decltype] = ACTIONS(3145), - [anon_sym_explicit] = ACTIONS(3145), - [anon_sym_typename] = ACTIONS(3145), - [anon_sym_private] = ACTIONS(3145), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3145), - [anon_sym_friend] = ACTIONS(3145), - [anon_sym_public] = ACTIONS(3145), - [anon_sym_protected] = ACTIONS(3145), - [anon_sym_static_assert] = ACTIONS(3145), + [STATE(1527)] = { + [sym_expression] = STATE(5413), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2195)] = { - [sym_identifier] = ACTIONS(3149), - [aux_sym_preproc_def_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token2] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), - [sym_preproc_directive] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym___extension__] = ACTIONS(3149), - [anon_sym_typedef] = ACTIONS(3149), - [anon_sym_virtual] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3149), - [anon_sym___attribute__] = ACTIONS(3149), - [anon_sym___attribute] = ACTIONS(3149), - [anon_sym_using] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3151), - [anon_sym___declspec] = ACTIONS(3149), - [anon_sym___based] = ACTIONS(3149), - [anon_sym_signed] = ACTIONS(3149), - [anon_sym_unsigned] = ACTIONS(3149), - [anon_sym_long] = ACTIONS(3149), - [anon_sym_short] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_static] = ACTIONS(3149), - [anon_sym_register] = ACTIONS(3149), - [anon_sym_inline] = ACTIONS(3149), - [anon_sym___inline] = ACTIONS(3149), - [anon_sym___inline__] = ACTIONS(3149), - [anon_sym___forceinline] = ACTIONS(3149), - [anon_sym_thread_local] = ACTIONS(3149), - [anon_sym___thread] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_constexpr] = ACTIONS(3149), - [anon_sym_volatile] = ACTIONS(3149), - [anon_sym_restrict] = ACTIONS(3149), - [anon_sym___restrict__] = ACTIONS(3149), - [anon_sym__Atomic] = ACTIONS(3149), - [anon_sym__Noreturn] = ACTIONS(3149), - [anon_sym_noreturn] = ACTIONS(3149), - [anon_sym__Nonnull] = ACTIONS(3149), - [anon_sym_mutable] = ACTIONS(3149), - [anon_sym_constinit] = ACTIONS(3149), - [anon_sym_consteval] = ACTIONS(3149), - [anon_sym_alignas] = ACTIONS(3149), - [anon_sym__Alignas] = ACTIONS(3149), - [sym_primitive_type] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3149), - [anon_sym_decltype] = ACTIONS(3149), - [anon_sym_explicit] = ACTIONS(3149), - [anon_sym_typename] = ACTIONS(3149), - [anon_sym_private] = ACTIONS(3149), - [anon_sym_template] = ACTIONS(3149), - [anon_sym_operator] = ACTIONS(3149), - [anon_sym_friend] = ACTIONS(3149), - [anon_sym_public] = ACTIONS(3149), - [anon_sym_protected] = ACTIONS(3149), - [anon_sym_static_assert] = ACTIONS(3149), + [STATE(1528)] = { + [sym_expression] = STATE(4431), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(6055), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2196)] = { - [sym_identifier] = ACTIONS(3333), - [aux_sym_preproc_def_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token1] = ACTIONS(3333), - [aux_sym_preproc_if_token2] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), - [sym_preproc_directive] = ACTIONS(3333), - [anon_sym_LPAREN2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_typedef] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym___attribute__] = ACTIONS(3333), - [anon_sym___attribute] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3335), - [anon_sym___declspec] = ACTIONS(3333), - [anon_sym___based] = ACTIONS(3333), - [anon_sym_signed] = ACTIONS(3333), - [anon_sym_unsigned] = ACTIONS(3333), - [anon_sym_long] = ACTIONS(3333), - [anon_sym_short] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_register] = ACTIONS(3333), - [anon_sym_inline] = ACTIONS(3333), - [anon_sym___inline] = ACTIONS(3333), - [anon_sym___inline__] = ACTIONS(3333), - [anon_sym___forceinline] = ACTIONS(3333), - [anon_sym_thread_local] = ACTIONS(3333), - [anon_sym___thread] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_constexpr] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_restrict] = ACTIONS(3333), - [anon_sym___restrict__] = ACTIONS(3333), - [anon_sym__Atomic] = ACTIONS(3333), - [anon_sym__Noreturn] = ACTIONS(3333), - [anon_sym_noreturn] = ACTIONS(3333), - [anon_sym__Nonnull] = ACTIONS(3333), - [anon_sym_mutable] = ACTIONS(3333), - [anon_sym_constinit] = ACTIONS(3333), - [anon_sym_consteval] = ACTIONS(3333), - [anon_sym_alignas] = ACTIONS(3333), - [anon_sym__Alignas] = ACTIONS(3333), - [sym_primitive_type] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_union] = ACTIONS(3333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3333), - [anon_sym_decltype] = ACTIONS(3333), - [anon_sym_explicit] = ACTIONS(3333), - [anon_sym_typename] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_template] = ACTIONS(3333), - [anon_sym_operator] = ACTIONS(3333), - [anon_sym_friend] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_static_assert] = ACTIONS(3333), + [STATE(1529)] = { + [sym_expression] = STATE(4393), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2197)] = { - [sym_identifier] = ACTIONS(3337), - [aux_sym_preproc_def_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3337), - [aux_sym_preproc_if_token2] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3337), - [sym_preproc_directive] = ACTIONS(3337), - [anon_sym_LPAREN2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_typedef] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym___attribute__] = ACTIONS(3337), - [anon_sym___attribute] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3339), - [anon_sym___declspec] = ACTIONS(3337), - [anon_sym___based] = ACTIONS(3337), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_register] = ACTIONS(3337), - [anon_sym_inline] = ACTIONS(3337), - [anon_sym___inline] = ACTIONS(3337), - [anon_sym___inline__] = ACTIONS(3337), - [anon_sym___forceinline] = ACTIONS(3337), - [anon_sym_thread_local] = ACTIONS(3337), - [anon_sym___thread] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_constexpr] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_restrict] = ACTIONS(3337), - [anon_sym___restrict__] = ACTIONS(3337), - [anon_sym__Atomic] = ACTIONS(3337), - [anon_sym__Noreturn] = ACTIONS(3337), - [anon_sym_noreturn] = ACTIONS(3337), - [anon_sym__Nonnull] = ACTIONS(3337), - [anon_sym_mutable] = ACTIONS(3337), - [anon_sym_constinit] = ACTIONS(3337), - [anon_sym_consteval] = ACTIONS(3337), - [anon_sym_alignas] = ACTIONS(3337), - [anon_sym__Alignas] = ACTIONS(3337), - [sym_primitive_type] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_union] = ACTIONS(3337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3337), - [anon_sym_decltype] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_typename] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_template] = ACTIONS(3337), - [anon_sym_operator] = ACTIONS(3337), - [anon_sym_friend] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_static_assert] = ACTIONS(3337), + [STATE(1530)] = { + [sym_expression] = STATE(4441), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2198)] = { - [sym_identifier] = ACTIONS(3238), - [aux_sym_preproc_def_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token1] = ACTIONS(3238), - [aux_sym_preproc_if_token2] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), - [sym_preproc_directive] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_STAR] = ACTIONS(3240), - [anon_sym_AMP_AMP] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym___extension__] = ACTIONS(3238), - [anon_sym_typedef] = ACTIONS(3238), - [anon_sym_virtual] = ACTIONS(3238), - [anon_sym_extern] = ACTIONS(3238), - [anon_sym___attribute__] = ACTIONS(3238), - [anon_sym___attribute] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(3240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), - [anon_sym___declspec] = ACTIONS(3238), - [anon_sym___based] = ACTIONS(3238), - [anon_sym_signed] = ACTIONS(3238), - [anon_sym_unsigned] = ACTIONS(3238), - [anon_sym_long] = ACTIONS(3238), - [anon_sym_short] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_register] = ACTIONS(3238), - [anon_sym_inline] = ACTIONS(3238), - [anon_sym___inline] = ACTIONS(3238), - [anon_sym___inline__] = ACTIONS(3238), - [anon_sym___forceinline] = ACTIONS(3238), - [anon_sym_thread_local] = ACTIONS(3238), - [anon_sym___thread] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_constexpr] = ACTIONS(3238), - [anon_sym_volatile] = ACTIONS(3238), - [anon_sym_restrict] = ACTIONS(3238), - [anon_sym___restrict__] = ACTIONS(3238), - [anon_sym__Atomic] = ACTIONS(3238), - [anon_sym__Noreturn] = ACTIONS(3238), - [anon_sym_noreturn] = ACTIONS(3238), - [anon_sym__Nonnull] = ACTIONS(3238), - [anon_sym_mutable] = ACTIONS(3238), - [anon_sym_constinit] = ACTIONS(3238), - [anon_sym_consteval] = ACTIONS(3238), - [anon_sym_alignas] = ACTIONS(3238), - [anon_sym__Alignas] = ACTIONS(3238), - [sym_primitive_type] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_struct] = ACTIONS(3238), - [anon_sym_union] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3238), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_explicit] = ACTIONS(3238), - [anon_sym_typename] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3238), - [anon_sym_operator] = ACTIONS(3238), - [anon_sym_friend] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_static_assert] = ACTIONS(3238), + [STATE(1531)] = { + [sym_expression] = STATE(4443), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2199)] = { - [sym_decltype_auto] = STATE(2337), - [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___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [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_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(6018), - [anon_sym_decltype] = ACTIONS(6020), + [STATE(1532)] = { + [sym_expression] = STATE(3689), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2200)] = { - [sym_identifier] = ACTIONS(3119), - [aux_sym_preproc_def_token1] = ACTIONS(3119), - [aux_sym_preproc_if_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3119), - [sym_preproc_directive] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym___extension__] = ACTIONS(3119), - [anon_sym_typedef] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym___attribute__] = ACTIONS(3119), - [anon_sym___attribute] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_COLON_COLON] = ACTIONS(3121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3121), - [anon_sym___declspec] = ACTIONS(3119), - [anon_sym___based] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_signed] = ACTIONS(3119), - [anon_sym_unsigned] = ACTIONS(3119), - [anon_sym_long] = ACTIONS(3119), - [anon_sym_short] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_register] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym___inline] = ACTIONS(3119), - [anon_sym___inline__] = ACTIONS(3119), - [anon_sym___forceinline] = ACTIONS(3119), - [anon_sym_thread_local] = ACTIONS(3119), - [anon_sym___thread] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_constexpr] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_restrict] = ACTIONS(3119), - [anon_sym___restrict__] = ACTIONS(3119), - [anon_sym__Atomic] = ACTIONS(3119), - [anon_sym__Noreturn] = ACTIONS(3119), - [anon_sym_noreturn] = ACTIONS(3119), - [anon_sym__Nonnull] = ACTIONS(3119), - [anon_sym_mutable] = ACTIONS(3119), - [anon_sym_constinit] = ACTIONS(3119), - [anon_sym_consteval] = ACTIONS(3119), - [anon_sym_alignas] = ACTIONS(3119), - [anon_sym__Alignas] = ACTIONS(3119), - [sym_primitive_type] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3119), - [anon_sym_decltype] = ACTIONS(3119), - [anon_sym_explicit] = ACTIONS(3119), - [anon_sym_typename] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(3119), - [anon_sym_friend] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_static_assert] = ACTIONS(3119), + [STATE(1533)] = { + [sym_expression] = STATE(3689), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(6057), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2201)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1534)] = { + [sym_expression] = STATE(3666), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2202)] = { - [sym_identifier] = ACTIONS(3135), - [aux_sym_preproc_def_token1] = ACTIONS(3135), - [aux_sym_preproc_if_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3135), - [sym_preproc_directive] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym___extension__] = ACTIONS(3135), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym___attribute] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym___inline] = ACTIONS(3135), - [anon_sym___inline__] = ACTIONS(3135), - [anon_sym___forceinline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym___thread] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym___restrict__] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym__Noreturn] = ACTIONS(3135), - [anon_sym_noreturn] = ACTIONS(3135), - [anon_sym__Nonnull] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_alignas] = ACTIONS(3135), - [anon_sym__Alignas] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_friend] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_static_assert] = ACTIONS(3135), + [STATE(1535)] = { + [sym_expression] = STATE(6239), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(6059), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2203)] = { - [sym_identifier] = ACTIONS(5535), - [aux_sym_preproc_def_token1] = ACTIONS(5535), - [aux_sym_preproc_if_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5535), - [sym_preproc_directive] = ACTIONS(5535), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_TILDE] = ACTIONS(5537), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym_typedef] = ACTIONS(5535), - [anon_sym_virtual] = ACTIONS(5535), - [anon_sym_extern] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___attribute] = ACTIONS(5535), - [anon_sym_using] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5537), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5537), - [anon_sym___declspec] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [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(5535), - [anon_sym_static] = ACTIONS(5535), - [anon_sym_register] = ACTIONS(5535), - [anon_sym_inline] = ACTIONS(5535), - [anon_sym___inline] = ACTIONS(5535), - [anon_sym___inline__] = ACTIONS(5535), - [anon_sym___forceinline] = ACTIONS(5535), - [anon_sym_thread_local] = ACTIONS(5535), - [anon_sym___thread] = ACTIONS(5535), - [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__Nonnull] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_alignas] = ACTIONS(5535), - [anon_sym__Alignas] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_enum] = ACTIONS(5535), - [anon_sym_class] = ACTIONS(5535), - [anon_sym_struct] = ACTIONS(5535), - [anon_sym_union] = ACTIONS(5535), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_explicit] = ACTIONS(5535), - [anon_sym_typename] = ACTIONS(5535), - [anon_sym_private] = ACTIONS(5535), - [anon_sym_template] = ACTIONS(5535), - [anon_sym_operator] = ACTIONS(5535), - [anon_sym_friend] = ACTIONS(5535), - [anon_sym_public] = ACTIONS(5535), - [anon_sym_protected] = ACTIONS(5535), - [anon_sym_static_assert] = ACTIONS(5535), + [STATE(1536)] = { + [sym_expression] = STATE(5763), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2204)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_LBRACK] = ACTIONS(5987), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1537)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2205)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_COMMA] = ACTIONS(6022), - [anon_sym_RPAREN] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(6022), - [anon_sym_DASH] = ACTIONS(6024), - [anon_sym_PLUS] = ACTIONS(6024), - [anon_sym_STAR] = ACTIONS(6022), - [anon_sym_SLASH] = ACTIONS(6024), - [anon_sym_PERCENT] = ACTIONS(6022), - [anon_sym_PIPE_PIPE] = ACTIONS(6022), - [anon_sym_AMP_AMP] = ACTIONS(6022), - [anon_sym_PIPE] = ACTIONS(6024), - [anon_sym_CARET] = ACTIONS(6022), - [anon_sym_AMP] = ACTIONS(6024), - [anon_sym_EQ_EQ] = ACTIONS(6022), - [anon_sym_BANG_EQ] = ACTIONS(6022), - [anon_sym_GT] = ACTIONS(6024), - [anon_sym_GT_EQ] = ACTIONS(6022), - [anon_sym_LT_EQ] = ACTIONS(6024), - [anon_sym_LT] = ACTIONS(6024), - [anon_sym_LT_LT] = ACTIONS(6022), - [anon_sym_GT_GT] = ACTIONS(6022), - [anon_sym_SEMI] = ACTIONS(6022), - [anon_sym___extension__] = ACTIONS(6022), - [anon_sym___attribute__] = ACTIONS(6022), - [anon_sym___attribute] = ACTIONS(6024), - [anon_sym_COLON] = ACTIONS(6022), - [anon_sym_LBRACE] = ACTIONS(6022), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_signed] = ACTIONS(6026), - [anon_sym_unsigned] = ACTIONS(6026), - [anon_sym_long] = ACTIONS(6026), - [anon_sym_short] = ACTIONS(6026), - [anon_sym_LBRACK] = ACTIONS(6022), - [anon_sym_RBRACK] = ACTIONS(6022), - [anon_sym_const] = ACTIONS(6024), - [anon_sym_constexpr] = ACTIONS(6022), - [anon_sym_volatile] = ACTIONS(6022), - [anon_sym_restrict] = ACTIONS(6022), - [anon_sym___restrict__] = ACTIONS(6022), - [anon_sym__Atomic] = ACTIONS(6022), - [anon_sym__Noreturn] = ACTIONS(6022), - [anon_sym_noreturn] = ACTIONS(6022), - [anon_sym__Nonnull] = ACTIONS(6022), - [anon_sym_mutable] = ACTIONS(6022), - [anon_sym_constinit] = ACTIONS(6022), - [anon_sym_consteval] = ACTIONS(6022), - [anon_sym_alignas] = ACTIONS(6022), - [anon_sym__Alignas] = ACTIONS(6022), - [anon_sym_QMARK] = ACTIONS(6022), - [anon_sym_LT_EQ_GT] = ACTIONS(6022), - [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(6022), - [anon_sym_PLUS_PLUS] = ACTIONS(6022), - [anon_sym_DOT] = ACTIONS(6024), - [anon_sym_DOT_STAR] = ACTIONS(6022), - [anon_sym_DASH_GT] = ACTIONS(6022), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6022), - [anon_sym_override] = ACTIONS(6022), - [anon_sym_requires] = ACTIONS(6022), + [STATE(1538)] = { + [sym_expression] = STATE(6237), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2206)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1539)] = { + [sym_expression] = STATE(6242), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(6061), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2207)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1540)] = { + [sym_expression] = STATE(5050), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2208)] = { - [sym_decltype_auto] = STATE(2337), - [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___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [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_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(6018), - [anon_sym_decltype] = ACTIONS(6020), + [STATE(1541)] = { + [sym_expression] = STATE(4650), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2209)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6028), - [anon_sym_COMMA] = ACTIONS(6028), - [anon_sym_RPAREN] = ACTIONS(6028), - [anon_sym_LPAREN2] = ACTIONS(6028), - [anon_sym_DASH] = ACTIONS(6030), - [anon_sym_PLUS] = ACTIONS(6030), - [anon_sym_STAR] = ACTIONS(6028), - [anon_sym_SLASH] = ACTIONS(6030), - [anon_sym_PERCENT] = ACTIONS(6028), - [anon_sym_PIPE_PIPE] = ACTIONS(6028), - [anon_sym_AMP_AMP] = ACTIONS(6028), - [anon_sym_PIPE] = ACTIONS(6030), - [anon_sym_CARET] = ACTIONS(6028), - [anon_sym_AMP] = ACTIONS(6030), - [anon_sym_EQ_EQ] = ACTIONS(6028), - [anon_sym_BANG_EQ] = ACTIONS(6028), - [anon_sym_GT] = ACTIONS(6030), - [anon_sym_GT_EQ] = ACTIONS(6028), - [anon_sym_LT_EQ] = ACTIONS(6030), - [anon_sym_LT] = ACTIONS(6030), - [anon_sym_LT_LT] = ACTIONS(6028), - [anon_sym_GT_GT] = ACTIONS(6028), - [anon_sym_SEMI] = ACTIONS(6028), - [anon_sym___extension__] = ACTIONS(6028), - [anon_sym___attribute__] = ACTIONS(6028), - [anon_sym___attribute] = ACTIONS(6030), - [anon_sym_COLON] = ACTIONS(6028), - [anon_sym_LBRACE] = ACTIONS(6028), - [anon_sym_RBRACE] = ACTIONS(6028), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6028), - [anon_sym_RBRACK] = ACTIONS(6028), - [anon_sym_const] = ACTIONS(6030), - [anon_sym_constexpr] = ACTIONS(6028), - [anon_sym_volatile] = ACTIONS(6028), - [anon_sym_restrict] = ACTIONS(6028), - [anon_sym___restrict__] = ACTIONS(6028), - [anon_sym__Atomic] = ACTIONS(6028), - [anon_sym__Noreturn] = ACTIONS(6028), - [anon_sym_noreturn] = ACTIONS(6028), - [anon_sym__Nonnull] = ACTIONS(6028), - [anon_sym_mutable] = ACTIONS(6028), - [anon_sym_constinit] = ACTIONS(6028), - [anon_sym_consteval] = ACTIONS(6028), - [anon_sym_alignas] = ACTIONS(6028), - [anon_sym__Alignas] = ACTIONS(6028), - [anon_sym_QMARK] = ACTIONS(6028), - [anon_sym_LT_EQ_GT] = ACTIONS(6028), - [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(6028), - [anon_sym_PLUS_PLUS] = ACTIONS(6028), - [anon_sym_DOT] = ACTIONS(6030), - [anon_sym_DOT_STAR] = ACTIONS(6028), - [anon_sym_DASH_GT] = ACTIONS(6028), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6028), - [anon_sym_override] = ACTIONS(6028), - [anon_sym_requires] = ACTIONS(6028), + [STATE(1542)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(6063), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2210)] = { - [sym_attribute_declaration] = STATE(2262), - [sym_parameter_list] = STATE(1975), - [aux_sym_attributed_declarator_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(6034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6036), - [anon_sym_COMMA] = ACTIONS(6036), - [anon_sym_RPAREN] = ACTIONS(6036), - [aux_sym_preproc_if_token2] = ACTIONS(6036), - [aux_sym_preproc_else_token1] = ACTIONS(6036), - [aux_sym_preproc_elif_token1] = ACTIONS(6034), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6036), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6036), - [anon_sym_LPAREN2] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6034), - [anon_sym_PLUS] = ACTIONS(6034), - [anon_sym_STAR] = ACTIONS(6034), - [anon_sym_SLASH] = ACTIONS(6034), - [anon_sym_PERCENT] = ACTIONS(6034), - [anon_sym_PIPE_PIPE] = ACTIONS(6036), - [anon_sym_AMP_AMP] = ACTIONS(6036), - [anon_sym_PIPE] = ACTIONS(6034), - [anon_sym_CARET] = ACTIONS(6034), - [anon_sym_AMP] = ACTIONS(6034), - [anon_sym_EQ_EQ] = ACTIONS(6036), - [anon_sym_BANG_EQ] = ACTIONS(6036), - [anon_sym_GT] = ACTIONS(6034), - [anon_sym_GT_EQ] = ACTIONS(6036), - [anon_sym_LT_EQ] = ACTIONS(6034), - [anon_sym_LT] = ACTIONS(6034), - [anon_sym_LT_LT] = ACTIONS(6034), - [anon_sym_GT_GT] = ACTIONS(6034), - [anon_sym_SEMI] = ACTIONS(6036), - [anon_sym___attribute__] = ACTIONS(6034), - [anon_sym___attribute] = ACTIONS(6034), - [anon_sym_COLON] = ACTIONS(6036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6036), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_RBRACK] = ACTIONS(6036), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_QMARK] = ACTIONS(6036), - [anon_sym_STAR_EQ] = ACTIONS(6036), - [anon_sym_SLASH_EQ] = ACTIONS(6036), - [anon_sym_PERCENT_EQ] = ACTIONS(6036), - [anon_sym_PLUS_EQ] = ACTIONS(6036), - [anon_sym_DASH_EQ] = ACTIONS(6036), - [anon_sym_LT_LT_EQ] = ACTIONS(6036), - [anon_sym_GT_GT_EQ] = ACTIONS(6036), - [anon_sym_AMP_EQ] = ACTIONS(6036), - [anon_sym_CARET_EQ] = ACTIONS(6036), - [anon_sym_PIPE_EQ] = ACTIONS(6036), - [anon_sym_and_eq] = ACTIONS(6034), - [anon_sym_or_eq] = ACTIONS(6034), - [anon_sym_xor_eq] = ACTIONS(6034), - [anon_sym_LT_EQ_GT] = ACTIONS(6036), - [anon_sym_or] = ACTIONS(6034), - [anon_sym_and] = ACTIONS(6034), - [anon_sym_bitor] = ACTIONS(6034), - [anon_sym_xor] = ACTIONS(6034), - [anon_sym_bitand] = ACTIONS(6034), - [anon_sym_not_eq] = ACTIONS(6034), - [anon_sym_DASH_DASH] = ACTIONS(6036), - [anon_sym_PLUS_PLUS] = ACTIONS(6036), - [anon_sym_DOT] = ACTIONS(6034), - [anon_sym_DOT_STAR] = ACTIONS(6036), - [anon_sym_DASH_GT] = ACTIONS(6036), - [sym_comment] = ACTIONS(3), + [STATE(1543)] = { + [sym_expression] = STATE(6709), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2211)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1544)] = { + [sym_expression] = STATE(6244), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2212)] = { - [sym_attribute_declaration] = STATE(2262), - [sym_parameter_list] = STATE(1975), - [aux_sym_attributed_declarator_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(6044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6046), - [anon_sym_COMMA] = ACTIONS(6046), - [anon_sym_RPAREN] = ACTIONS(6046), - [aux_sym_preproc_if_token2] = ACTIONS(6046), - [aux_sym_preproc_else_token1] = ACTIONS(6046), - [aux_sym_preproc_elif_token1] = ACTIONS(6044), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6046), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6046), - [anon_sym_LPAREN2] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6044), - [anon_sym_PLUS] = ACTIONS(6044), - [anon_sym_STAR] = ACTIONS(6044), - [anon_sym_SLASH] = ACTIONS(6044), - [anon_sym_PERCENT] = ACTIONS(6044), - [anon_sym_PIPE_PIPE] = ACTIONS(6046), - [anon_sym_AMP_AMP] = ACTIONS(6046), - [anon_sym_PIPE] = ACTIONS(6044), - [anon_sym_CARET] = ACTIONS(6044), - [anon_sym_AMP] = ACTIONS(6044), - [anon_sym_EQ_EQ] = ACTIONS(6046), - [anon_sym_BANG_EQ] = ACTIONS(6046), - [anon_sym_GT] = ACTIONS(6044), - [anon_sym_GT_EQ] = ACTIONS(6046), - [anon_sym_LT_EQ] = ACTIONS(6044), - [anon_sym_LT] = ACTIONS(6044), - [anon_sym_LT_LT] = ACTIONS(6044), - [anon_sym_GT_GT] = ACTIONS(6044), - [anon_sym_SEMI] = ACTIONS(6046), - [anon_sym___attribute__] = ACTIONS(6044), - [anon_sym___attribute] = ACTIONS(6044), - [anon_sym_COLON] = ACTIONS(6046), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6046), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_RBRACK] = ACTIONS(6046), - [anon_sym_EQ] = ACTIONS(6044), - [anon_sym_QMARK] = ACTIONS(6046), - [anon_sym_STAR_EQ] = ACTIONS(6046), - [anon_sym_SLASH_EQ] = ACTIONS(6046), - [anon_sym_PERCENT_EQ] = ACTIONS(6046), - [anon_sym_PLUS_EQ] = ACTIONS(6046), - [anon_sym_DASH_EQ] = ACTIONS(6046), - [anon_sym_LT_LT_EQ] = ACTIONS(6046), - [anon_sym_GT_GT_EQ] = ACTIONS(6046), - [anon_sym_AMP_EQ] = ACTIONS(6046), - [anon_sym_CARET_EQ] = ACTIONS(6046), - [anon_sym_PIPE_EQ] = ACTIONS(6046), - [anon_sym_and_eq] = ACTIONS(6044), - [anon_sym_or_eq] = ACTIONS(6044), - [anon_sym_xor_eq] = ACTIONS(6044), - [anon_sym_LT_EQ_GT] = ACTIONS(6046), - [anon_sym_or] = ACTIONS(6044), - [anon_sym_and] = ACTIONS(6044), - [anon_sym_bitor] = ACTIONS(6044), - [anon_sym_xor] = ACTIONS(6044), - [anon_sym_bitand] = ACTIONS(6044), - [anon_sym_not_eq] = ACTIONS(6044), - [anon_sym_DASH_DASH] = ACTIONS(6046), - [anon_sym_PLUS_PLUS] = ACTIONS(6046), - [anon_sym_DOT] = ACTIONS(6044), - [anon_sym_DOT_STAR] = ACTIONS(6046), - [anon_sym_DASH_GT] = ACTIONS(6046), - [sym_comment] = ACTIONS(3), + [STATE(1545)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2213)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), - [anon_sym_COMMA] = ACTIONS(6048), - [anon_sym_RPAREN] = ACTIONS(6048), - [anon_sym_LPAREN2] = ACTIONS(6048), - [anon_sym_DASH] = ACTIONS(6050), - [anon_sym_PLUS] = ACTIONS(6050), - [anon_sym_STAR] = ACTIONS(6048), - [anon_sym_SLASH] = ACTIONS(6050), - [anon_sym_PERCENT] = ACTIONS(6048), - [anon_sym_PIPE_PIPE] = ACTIONS(6048), - [anon_sym_AMP_AMP] = ACTIONS(6048), - [anon_sym_PIPE] = ACTIONS(6050), - [anon_sym_CARET] = ACTIONS(6048), - [anon_sym_AMP] = ACTIONS(6050), - [anon_sym_EQ_EQ] = ACTIONS(6048), - [anon_sym_BANG_EQ] = ACTIONS(6048), - [anon_sym_GT] = ACTIONS(6050), - [anon_sym_GT_EQ] = ACTIONS(6048), - [anon_sym_LT_EQ] = ACTIONS(6050), - [anon_sym_LT] = ACTIONS(6050), - [anon_sym_LT_LT] = ACTIONS(6048), - [anon_sym_GT_GT] = ACTIONS(6048), - [anon_sym_SEMI] = ACTIONS(6048), - [anon_sym___extension__] = ACTIONS(6048), - [anon_sym___attribute__] = ACTIONS(6048), - [anon_sym___attribute] = ACTIONS(6050), - [anon_sym_COLON] = ACTIONS(6048), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_RBRACE] = ACTIONS(6048), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6048), - [anon_sym_RBRACK] = ACTIONS(6048), - [anon_sym_const] = ACTIONS(6050), - [anon_sym_constexpr] = ACTIONS(6048), - [anon_sym_volatile] = ACTIONS(6048), - [anon_sym_restrict] = ACTIONS(6048), - [anon_sym___restrict__] = ACTIONS(6048), - [anon_sym__Atomic] = ACTIONS(6048), - [anon_sym__Noreturn] = ACTIONS(6048), - [anon_sym_noreturn] = ACTIONS(6048), - [anon_sym__Nonnull] = ACTIONS(6048), - [anon_sym_mutable] = ACTIONS(6048), - [anon_sym_constinit] = ACTIONS(6048), - [anon_sym_consteval] = ACTIONS(6048), - [anon_sym_alignas] = ACTIONS(6048), - [anon_sym__Alignas] = ACTIONS(6048), - [anon_sym_QMARK] = ACTIONS(6048), - [anon_sym_LT_EQ_GT] = ACTIONS(6048), - [anon_sym_or] = ACTIONS(6048), - [anon_sym_and] = ACTIONS(6048), - [anon_sym_bitor] = ACTIONS(6048), - [anon_sym_xor] = ACTIONS(6048), - [anon_sym_bitand] = ACTIONS(6048), - [anon_sym_not_eq] = ACTIONS(6048), - [anon_sym_DASH_DASH] = ACTIONS(6048), - [anon_sym_PLUS_PLUS] = ACTIONS(6048), - [anon_sym_DOT] = ACTIONS(6050), - [anon_sym_DOT_STAR] = ACTIONS(6048), - [anon_sym_DASH_GT] = ACTIONS(6048), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6048), - [anon_sym_override] = ACTIONS(6048), - [anon_sym_requires] = ACTIONS(6048), + [STATE(1546)] = { + [sym_expression] = STATE(6245), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2214)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6052), - [anon_sym_COMMA] = ACTIONS(6052), - [anon_sym_RPAREN] = ACTIONS(6052), - [anon_sym_LPAREN2] = ACTIONS(6052), - [anon_sym_DASH] = ACTIONS(6054), - [anon_sym_PLUS] = ACTIONS(6054), - [anon_sym_STAR] = ACTIONS(6052), - [anon_sym_SLASH] = ACTIONS(6054), - [anon_sym_PERCENT] = ACTIONS(6052), - [anon_sym_PIPE_PIPE] = ACTIONS(6052), - [anon_sym_AMP_AMP] = ACTIONS(6052), - [anon_sym_PIPE] = ACTIONS(6054), - [anon_sym_CARET] = ACTIONS(6052), - [anon_sym_AMP] = ACTIONS(6054), - [anon_sym_EQ_EQ] = ACTIONS(6052), - [anon_sym_BANG_EQ] = ACTIONS(6052), - [anon_sym_GT] = ACTIONS(6054), - [anon_sym_GT_EQ] = ACTIONS(6052), - [anon_sym_LT_EQ] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(6054), - [anon_sym_LT_LT] = ACTIONS(6052), - [anon_sym_GT_GT] = ACTIONS(6052), - [anon_sym_SEMI] = ACTIONS(6052), - [anon_sym___extension__] = ACTIONS(6052), - [anon_sym___attribute__] = ACTIONS(6052), - [anon_sym___attribute] = ACTIONS(6054), - [anon_sym_COLON] = ACTIONS(6052), - [anon_sym_LBRACE] = ACTIONS(6052), - [anon_sym_RBRACE] = ACTIONS(6052), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6052), - [anon_sym_RBRACK] = ACTIONS(6052), - [anon_sym_const] = ACTIONS(6054), - [anon_sym_constexpr] = ACTIONS(6052), - [anon_sym_volatile] = ACTIONS(6052), - [anon_sym_restrict] = ACTIONS(6052), - [anon_sym___restrict__] = ACTIONS(6052), - [anon_sym__Atomic] = ACTIONS(6052), - [anon_sym__Noreturn] = ACTIONS(6052), - [anon_sym_noreturn] = ACTIONS(6052), - [anon_sym__Nonnull] = ACTIONS(6052), - [anon_sym_mutable] = ACTIONS(6052), - [anon_sym_constinit] = ACTIONS(6052), - [anon_sym_consteval] = ACTIONS(6052), - [anon_sym_alignas] = ACTIONS(6052), - [anon_sym__Alignas] = ACTIONS(6052), - [anon_sym_QMARK] = ACTIONS(6052), - [anon_sym_LT_EQ_GT] = ACTIONS(6052), - [anon_sym_or] = ACTIONS(6052), - [anon_sym_and] = ACTIONS(6052), - [anon_sym_bitor] = ACTIONS(6052), - [anon_sym_xor] = ACTIONS(6052), - [anon_sym_bitand] = ACTIONS(6052), - [anon_sym_not_eq] = ACTIONS(6052), - [anon_sym_DASH_DASH] = ACTIONS(6052), - [anon_sym_PLUS_PLUS] = ACTIONS(6052), - [anon_sym_DOT] = ACTIONS(6054), - [anon_sym_DOT_STAR] = ACTIONS(6052), - [anon_sym_DASH_GT] = ACTIONS(6052), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6052), - [anon_sym_override] = ACTIONS(6052), - [anon_sym_requires] = ACTIONS(6052), + [STATE(1547)] = { + [sym_expression] = STATE(6246), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2215)] = { - [sym_string_literal] = STATE(2237), - [sym_raw_string_literal] = STATE(2237), - [aux_sym_concatenated_string_repeat1] = STATE(2237), - [sym_identifier] = ACTIONS(6056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_RPAREN] = ACTIONS(5453), - [anon_sym_LPAREN2] = ACTIONS(5453), - [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(5453), - [anon_sym_AMP_AMP] = ACTIONS(5453), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5453), - [anon_sym_BANG_EQ] = ACTIONS(5453), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5453), - [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_LBRACK] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5453), - [anon_sym_STAR_EQ] = ACTIONS(5453), - [anon_sym_SLASH_EQ] = ACTIONS(5453), - [anon_sym_PERCENT_EQ] = ACTIONS(5453), - [anon_sym_PLUS_EQ] = ACTIONS(5453), - [anon_sym_DASH_EQ] = ACTIONS(5453), - [anon_sym_LT_LT_EQ] = ACTIONS(5453), - [anon_sym_GT_GT_EQ] = ACTIONS(5453), - [anon_sym_AMP_EQ] = ACTIONS(5453), - [anon_sym_CARET_EQ] = ACTIONS(5453), - [anon_sym_PIPE_EQ] = ACTIONS(5453), - [anon_sym_and_eq] = ACTIONS(5455), - [anon_sym_or_eq] = ACTIONS(5455), - [anon_sym_xor_eq] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5453), - [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(5453), - [anon_sym_PLUS_PLUS] = ACTIONS(5453), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5453), - [anon_sym_DASH_GT] = ACTIONS(5455), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(5453), - [sym_literal_suffix] = ACTIONS(5455), + [STATE(1548)] = { + [sym_expression] = STATE(6247), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2216)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6058), - [anon_sym_COMMA] = ACTIONS(6058), - [anon_sym_RPAREN] = ACTIONS(6058), - [anon_sym_LPAREN2] = ACTIONS(6058), - [anon_sym_DASH] = ACTIONS(6060), - [anon_sym_PLUS] = ACTIONS(6060), - [anon_sym_STAR] = ACTIONS(6058), - [anon_sym_SLASH] = ACTIONS(6060), - [anon_sym_PERCENT] = ACTIONS(6058), - [anon_sym_PIPE_PIPE] = ACTIONS(6058), - [anon_sym_AMP_AMP] = ACTIONS(6058), - [anon_sym_PIPE] = ACTIONS(6060), - [anon_sym_CARET] = ACTIONS(6058), - [anon_sym_AMP] = ACTIONS(6060), - [anon_sym_EQ_EQ] = ACTIONS(6058), - [anon_sym_BANG_EQ] = ACTIONS(6058), - [anon_sym_GT] = ACTIONS(6060), - [anon_sym_GT_EQ] = ACTIONS(6058), - [anon_sym_LT_EQ] = ACTIONS(6060), - [anon_sym_LT] = ACTIONS(6060), - [anon_sym_LT_LT] = ACTIONS(6058), - [anon_sym_GT_GT] = ACTIONS(6058), - [anon_sym_SEMI] = ACTIONS(6058), - [anon_sym___extension__] = ACTIONS(6058), - [anon_sym___attribute__] = ACTIONS(6058), - [anon_sym___attribute] = ACTIONS(6060), - [anon_sym_COLON] = ACTIONS(6058), - [anon_sym_LBRACE] = ACTIONS(6058), - [anon_sym_RBRACE] = ACTIONS(6058), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6058), - [anon_sym_RBRACK] = ACTIONS(6058), - [anon_sym_const] = ACTIONS(6060), - [anon_sym_constexpr] = ACTIONS(6058), - [anon_sym_volatile] = ACTIONS(6058), - [anon_sym_restrict] = ACTIONS(6058), - [anon_sym___restrict__] = ACTIONS(6058), - [anon_sym__Atomic] = ACTIONS(6058), - [anon_sym__Noreturn] = ACTIONS(6058), - [anon_sym_noreturn] = ACTIONS(6058), - [anon_sym__Nonnull] = ACTIONS(6058), - [anon_sym_mutable] = ACTIONS(6058), - [anon_sym_constinit] = ACTIONS(6058), - [anon_sym_consteval] = ACTIONS(6058), - [anon_sym_alignas] = ACTIONS(6058), - [anon_sym__Alignas] = ACTIONS(6058), - [anon_sym_QMARK] = ACTIONS(6058), - [anon_sym_LT_EQ_GT] = ACTIONS(6058), - [anon_sym_or] = ACTIONS(6058), - [anon_sym_and] = ACTIONS(6058), - [anon_sym_bitor] = ACTIONS(6058), - [anon_sym_xor] = ACTIONS(6058), - [anon_sym_bitand] = ACTIONS(6058), - [anon_sym_not_eq] = ACTIONS(6058), - [anon_sym_DASH_DASH] = ACTIONS(6058), - [anon_sym_PLUS_PLUS] = ACTIONS(6058), - [anon_sym_DOT] = ACTIONS(6060), - [anon_sym_DOT_STAR] = ACTIONS(6058), - [anon_sym_DASH_GT] = ACTIONS(6058), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6058), - [anon_sym_override] = ACTIONS(6058), - [anon_sym_requires] = ACTIONS(6058), + [STATE(1549)] = { + [sym_expression] = STATE(6248), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2217)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1550)] = { + [sym_expression] = STATE(6249), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2218)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1551)] = { + [sym_expression] = STATE(6250), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2219)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5860), - [anon_sym_COMMA] = ACTIONS(5860), - [anon_sym_RPAREN] = ACTIONS(5860), - [anon_sym_LPAREN2] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5860), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5860), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5860), - [anon_sym_AMP] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5860), - [anon_sym_BANG_EQ] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_GT_EQ] = ACTIONS(5860), - [anon_sym_LT_EQ] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_LT_LT] = ACTIONS(5860), - [anon_sym_GT_GT] = ACTIONS(5860), - [anon_sym_SEMI] = ACTIONS(5860), - [anon_sym___extension__] = ACTIONS(5860), - [anon_sym___attribute__] = ACTIONS(5860), - [anon_sym___attribute] = ACTIONS(5858), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_LBRACE] = ACTIONS(5860), - [anon_sym_RBRACE] = ACTIONS(5860), - [anon_sym_signed] = ACTIONS(6062), - [anon_sym_unsigned] = ACTIONS(6062), - [anon_sym_long] = ACTIONS(6062), - [anon_sym_short] = ACTIONS(6062), - [anon_sym_LBRACK] = ACTIONS(5860), - [anon_sym_RBRACK] = ACTIONS(5860), - [anon_sym_const] = ACTIONS(5858), - [anon_sym_constexpr] = ACTIONS(5860), - [anon_sym_volatile] = ACTIONS(5860), - [anon_sym_restrict] = ACTIONS(5860), - [anon_sym___restrict__] = ACTIONS(5860), - [anon_sym__Atomic] = ACTIONS(5860), - [anon_sym__Noreturn] = ACTIONS(5860), - [anon_sym_noreturn] = ACTIONS(5860), - [anon_sym__Nonnull] = ACTIONS(5860), - [anon_sym_mutable] = ACTIONS(5860), - [anon_sym_constinit] = ACTIONS(5860), - [anon_sym_consteval] = ACTIONS(5860), - [anon_sym_alignas] = ACTIONS(5860), - [anon_sym__Alignas] = ACTIONS(5860), - [anon_sym_QMARK] = ACTIONS(5860), - [anon_sym_LT_EQ_GT] = ACTIONS(5860), - [anon_sym_or] = ACTIONS(5860), - [anon_sym_and] = ACTIONS(5860), - [anon_sym_bitor] = ACTIONS(5860), - [anon_sym_xor] = ACTIONS(5860), - [anon_sym_bitand] = ACTIONS(5860), - [anon_sym_not_eq] = ACTIONS(5860), - [anon_sym_DASH_DASH] = ACTIONS(5860), - [anon_sym_PLUS_PLUS] = ACTIONS(5860), - [anon_sym_DOT] = ACTIONS(5858), - [anon_sym_DOT_STAR] = ACTIONS(5860), - [anon_sym_DASH_GT] = ACTIONS(5860), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5860), - [anon_sym_override] = ACTIONS(5860), - [anon_sym_requires] = ACTIONS(5860), + [STATE(1552)] = { + [sym_expression] = STATE(6251), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2220)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6064), - [anon_sym_COMMA] = ACTIONS(6064), - [anon_sym_RPAREN] = ACTIONS(6064), - [anon_sym_LPAREN2] = ACTIONS(6064), - [anon_sym_DASH] = ACTIONS(6066), - [anon_sym_PLUS] = ACTIONS(6066), - [anon_sym_STAR] = ACTIONS(6064), - [anon_sym_SLASH] = ACTIONS(6066), - [anon_sym_PERCENT] = ACTIONS(6064), - [anon_sym_PIPE_PIPE] = ACTIONS(6064), - [anon_sym_AMP_AMP] = ACTIONS(6064), - [anon_sym_PIPE] = ACTIONS(6066), - [anon_sym_CARET] = ACTIONS(6064), - [anon_sym_AMP] = ACTIONS(6066), - [anon_sym_EQ_EQ] = ACTIONS(6064), - [anon_sym_BANG_EQ] = ACTIONS(6064), - [anon_sym_GT] = ACTIONS(6066), - [anon_sym_GT_EQ] = ACTIONS(6064), - [anon_sym_LT_EQ] = ACTIONS(6066), - [anon_sym_LT] = ACTIONS(6066), - [anon_sym_LT_LT] = ACTIONS(6064), - [anon_sym_GT_GT] = ACTIONS(6064), - [anon_sym_SEMI] = ACTIONS(6064), - [anon_sym___extension__] = ACTIONS(6064), - [anon_sym___attribute__] = ACTIONS(6064), - [anon_sym___attribute] = ACTIONS(6066), - [anon_sym_COLON] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(6064), - [anon_sym_RBRACE] = ACTIONS(6064), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6064), - [anon_sym_RBRACK] = ACTIONS(6064), - [anon_sym_const] = ACTIONS(6066), - [anon_sym_constexpr] = ACTIONS(6064), - [anon_sym_volatile] = ACTIONS(6064), - [anon_sym_restrict] = ACTIONS(6064), - [anon_sym___restrict__] = ACTIONS(6064), - [anon_sym__Atomic] = ACTIONS(6064), - [anon_sym__Noreturn] = ACTIONS(6064), - [anon_sym_noreturn] = ACTIONS(6064), - [anon_sym__Nonnull] = ACTIONS(6064), - [anon_sym_mutable] = ACTIONS(6064), - [anon_sym_constinit] = ACTIONS(6064), - [anon_sym_consteval] = ACTIONS(6064), - [anon_sym_alignas] = ACTIONS(6064), - [anon_sym__Alignas] = ACTIONS(6064), - [anon_sym_QMARK] = ACTIONS(6064), - [anon_sym_LT_EQ_GT] = ACTIONS(6064), - [anon_sym_or] = ACTIONS(6064), - [anon_sym_and] = ACTIONS(6064), - [anon_sym_bitor] = ACTIONS(6064), - [anon_sym_xor] = ACTIONS(6064), - [anon_sym_bitand] = ACTIONS(6064), - [anon_sym_not_eq] = ACTIONS(6064), - [anon_sym_DASH_DASH] = ACTIONS(6064), - [anon_sym_PLUS_PLUS] = ACTIONS(6064), - [anon_sym_DOT] = ACTIONS(6066), - [anon_sym_DOT_STAR] = ACTIONS(6064), - [anon_sym_DASH_GT] = ACTIONS(6064), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6064), - [anon_sym_override] = ACTIONS(6064), - [anon_sym_requires] = ACTIONS(6064), + [STATE(1553)] = { + [sym_expression] = STATE(6252), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2221)] = { - [sym_string_literal] = STATE(2215), - [sym_template_argument_list] = STATE(3176), - [sym_raw_string_literal] = STATE(2215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5076), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + [STATE(1554)] = { + [sym_expression] = STATE(6253), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2222)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2220), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), - [anon_sym_COMMA] = ACTIONS(6068), - [anon_sym_RPAREN] = ACTIONS(6068), - [anon_sym_LPAREN2] = ACTIONS(6068), - [anon_sym_DASH] = ACTIONS(6070), - [anon_sym_PLUS] = ACTIONS(6070), - [anon_sym_STAR] = ACTIONS(6068), - [anon_sym_SLASH] = ACTIONS(6070), - [anon_sym_PERCENT] = ACTIONS(6068), - [anon_sym_PIPE_PIPE] = ACTIONS(6068), - [anon_sym_AMP_AMP] = ACTIONS(6068), - [anon_sym_PIPE] = ACTIONS(6070), - [anon_sym_CARET] = ACTIONS(6068), - [anon_sym_AMP] = ACTIONS(6070), - [anon_sym_EQ_EQ] = ACTIONS(6068), - [anon_sym_BANG_EQ] = ACTIONS(6068), - [anon_sym_GT] = ACTIONS(6070), - [anon_sym_GT_EQ] = ACTIONS(6068), - [anon_sym_LT_EQ] = ACTIONS(6070), - [anon_sym_LT] = ACTIONS(6070), - [anon_sym_LT_LT] = ACTIONS(6068), - [anon_sym_GT_GT] = ACTIONS(6068), - [anon_sym_SEMI] = ACTIONS(6068), - [anon_sym___extension__] = ACTIONS(6068), - [anon_sym___attribute__] = ACTIONS(6068), - [anon_sym___attribute] = ACTIONS(6070), - [anon_sym_COLON] = ACTIONS(6068), - [anon_sym_LBRACE] = ACTIONS(6068), - [anon_sym_RBRACE] = ACTIONS(6068), - [anon_sym_signed] = ACTIONS(6072), - [anon_sym_unsigned] = ACTIONS(6072), - [anon_sym_long] = ACTIONS(6072), - [anon_sym_short] = ACTIONS(6072), - [anon_sym_LBRACK] = ACTIONS(6068), - [anon_sym_RBRACK] = ACTIONS(6068), - [anon_sym_const] = ACTIONS(6070), - [anon_sym_constexpr] = ACTIONS(6068), - [anon_sym_volatile] = ACTIONS(6068), - [anon_sym_restrict] = ACTIONS(6068), - [anon_sym___restrict__] = ACTIONS(6068), - [anon_sym__Atomic] = ACTIONS(6068), - [anon_sym__Noreturn] = ACTIONS(6068), - [anon_sym_noreturn] = ACTIONS(6068), - [anon_sym__Nonnull] = ACTIONS(6068), - [anon_sym_mutable] = ACTIONS(6068), - [anon_sym_constinit] = ACTIONS(6068), - [anon_sym_consteval] = ACTIONS(6068), - [anon_sym_alignas] = ACTIONS(6068), - [anon_sym__Alignas] = ACTIONS(6068), - [anon_sym_QMARK] = ACTIONS(6068), - [anon_sym_LT_EQ_GT] = ACTIONS(6068), - [anon_sym_or] = ACTIONS(6068), - [anon_sym_and] = ACTIONS(6068), - [anon_sym_bitor] = ACTIONS(6068), - [anon_sym_xor] = ACTIONS(6068), - [anon_sym_bitand] = ACTIONS(6068), - [anon_sym_not_eq] = ACTIONS(6068), - [anon_sym_DASH_DASH] = ACTIONS(6068), - [anon_sym_PLUS_PLUS] = ACTIONS(6068), - [anon_sym_DOT] = ACTIONS(6070), - [anon_sym_DOT_STAR] = ACTIONS(6068), - [anon_sym_DASH_GT] = ACTIONS(6068), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6068), - [anon_sym_override] = ACTIONS(6068), - [anon_sym_requires] = ACTIONS(6068), + [STATE(1555)] = { + [sym_expression] = STATE(6687), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2223)] = { - [sym_attribute_declaration] = STATE(2262), - [sym_parameter_list] = STATE(1975), - [aux_sym_attributed_declarator_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(6074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6076), - [anon_sym_COMMA] = ACTIONS(6076), - [anon_sym_RPAREN] = ACTIONS(6076), - [aux_sym_preproc_if_token2] = ACTIONS(6076), - [aux_sym_preproc_else_token1] = ACTIONS(6076), - [aux_sym_preproc_elif_token1] = ACTIONS(6074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6076), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6076), - [anon_sym_LPAREN2] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6074), - [anon_sym_PLUS] = ACTIONS(6074), - [anon_sym_STAR] = ACTIONS(6074), - [anon_sym_SLASH] = ACTIONS(6074), - [anon_sym_PERCENT] = ACTIONS(6074), - [anon_sym_PIPE_PIPE] = ACTIONS(6076), - [anon_sym_AMP_AMP] = ACTIONS(6076), - [anon_sym_PIPE] = ACTIONS(6074), - [anon_sym_CARET] = ACTIONS(6074), - [anon_sym_AMP] = ACTIONS(6074), - [anon_sym_EQ_EQ] = ACTIONS(6076), - [anon_sym_BANG_EQ] = ACTIONS(6076), - [anon_sym_GT] = ACTIONS(6074), - [anon_sym_GT_EQ] = ACTIONS(6076), - [anon_sym_LT_EQ] = ACTIONS(6074), - [anon_sym_LT] = ACTIONS(6074), - [anon_sym_LT_LT] = ACTIONS(6074), - [anon_sym_GT_GT] = ACTIONS(6074), - [anon_sym_SEMI] = ACTIONS(6076), - [anon_sym___attribute__] = ACTIONS(6074), - [anon_sym___attribute] = ACTIONS(6074), - [anon_sym_COLON] = ACTIONS(6076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6076), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_RBRACK] = ACTIONS(6076), - [anon_sym_EQ] = ACTIONS(6074), - [anon_sym_QMARK] = ACTIONS(6076), - [anon_sym_STAR_EQ] = ACTIONS(6076), - [anon_sym_SLASH_EQ] = ACTIONS(6076), - [anon_sym_PERCENT_EQ] = ACTIONS(6076), - [anon_sym_PLUS_EQ] = ACTIONS(6076), - [anon_sym_DASH_EQ] = ACTIONS(6076), - [anon_sym_LT_LT_EQ] = ACTIONS(6076), - [anon_sym_GT_GT_EQ] = ACTIONS(6076), - [anon_sym_AMP_EQ] = ACTIONS(6076), - [anon_sym_CARET_EQ] = ACTIONS(6076), - [anon_sym_PIPE_EQ] = ACTIONS(6076), - [anon_sym_and_eq] = ACTIONS(6074), - [anon_sym_or_eq] = ACTIONS(6074), - [anon_sym_xor_eq] = ACTIONS(6074), - [anon_sym_LT_EQ_GT] = ACTIONS(6076), - [anon_sym_or] = ACTIONS(6074), - [anon_sym_and] = ACTIONS(6074), - [anon_sym_bitor] = ACTIONS(6074), - [anon_sym_xor] = ACTIONS(6074), - [anon_sym_bitand] = ACTIONS(6074), - [anon_sym_not_eq] = ACTIONS(6074), - [anon_sym_DASH_DASH] = ACTIONS(6076), - [anon_sym_PLUS_PLUS] = ACTIONS(6076), - [anon_sym_DOT] = ACTIONS(6074), - [anon_sym_DOT_STAR] = ACTIONS(6076), - [anon_sym_DASH_GT] = ACTIONS(6076), - [sym_comment] = ACTIONS(3), + [STATE(1556)] = { + [sym_expression] = STATE(6256), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2224)] = { - [sym_argument_list] = STATE(2496), - [sym_initializer_list] = STATE(2496), - [sym_new_declarator] = STATE(2275), - [sym_identifier] = ACTIONS(6078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6080), - [anon_sym_COMMA] = ACTIONS(6080), - [anon_sym_RPAREN] = ACTIONS(6080), - [aux_sym_preproc_if_token2] = ACTIONS(6080), - [aux_sym_preproc_else_token1] = ACTIONS(6080), - [aux_sym_preproc_elif_token1] = ACTIONS(6078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6080), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6078), - [anon_sym_PLUS] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(6078), - [anon_sym_SLASH] = ACTIONS(6078), - [anon_sym_PERCENT] = ACTIONS(6078), - [anon_sym_PIPE_PIPE] = ACTIONS(6080), - [anon_sym_AMP_AMP] = ACTIONS(6080), - [anon_sym_PIPE] = ACTIONS(6078), - [anon_sym_CARET] = ACTIONS(6078), - [anon_sym_AMP] = ACTIONS(6078), - [anon_sym_EQ_EQ] = ACTIONS(6080), - [anon_sym_BANG_EQ] = ACTIONS(6080), - [anon_sym_GT] = ACTIONS(6078), - [anon_sym_GT_EQ] = ACTIONS(6080), - [anon_sym_LT_EQ] = ACTIONS(6078), - [anon_sym_LT] = ACTIONS(6078), - [anon_sym_LT_LT] = ACTIONS(6078), - [anon_sym_GT_GT] = ACTIONS(6078), - [anon_sym_SEMI] = ACTIONS(6080), - [anon_sym___attribute__] = ACTIONS(6078), - [anon_sym___attribute] = ACTIONS(6078), - [anon_sym_COLON] = ACTIONS(6080), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6080), - [anon_sym_LBRACK] = ACTIONS(6084), - [anon_sym_RBRACK] = ACTIONS(6080), - [anon_sym_EQ] = ACTIONS(6078), - [anon_sym_QMARK] = ACTIONS(6080), - [anon_sym_STAR_EQ] = ACTIONS(6080), - [anon_sym_SLASH_EQ] = ACTIONS(6080), - [anon_sym_PERCENT_EQ] = ACTIONS(6080), - [anon_sym_PLUS_EQ] = ACTIONS(6080), - [anon_sym_DASH_EQ] = ACTIONS(6080), - [anon_sym_LT_LT_EQ] = ACTIONS(6080), - [anon_sym_GT_GT_EQ] = ACTIONS(6080), - [anon_sym_AMP_EQ] = ACTIONS(6080), - [anon_sym_CARET_EQ] = ACTIONS(6080), - [anon_sym_PIPE_EQ] = ACTIONS(6080), - [anon_sym_and_eq] = ACTIONS(6078), - [anon_sym_or_eq] = ACTIONS(6078), - [anon_sym_xor_eq] = ACTIONS(6078), - [anon_sym_LT_EQ_GT] = ACTIONS(6080), - [anon_sym_or] = ACTIONS(6078), - [anon_sym_and] = ACTIONS(6078), - [anon_sym_bitor] = ACTIONS(6078), - [anon_sym_xor] = ACTIONS(6078), - [anon_sym_bitand] = ACTIONS(6078), - [anon_sym_not_eq] = ACTIONS(6078), - [anon_sym_DASH_DASH] = ACTIONS(6080), - [anon_sym_PLUS_PLUS] = ACTIONS(6080), - [anon_sym_DOT] = ACTIONS(6078), - [anon_sym_DOT_STAR] = ACTIONS(6080), - [anon_sym_DASH_GT] = ACTIONS(6080), - [sym_comment] = ACTIONS(3), + [STATE(1557)] = { + [sym_expression] = STATE(6330), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6065), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2225)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6086), - [anon_sym_COMMA] = ACTIONS(6086), - [anon_sym_RPAREN] = ACTIONS(6086), - [anon_sym_LPAREN2] = ACTIONS(6086), - [anon_sym_DASH] = ACTIONS(6088), - [anon_sym_PLUS] = ACTIONS(6088), - [anon_sym_STAR] = ACTIONS(6086), - [anon_sym_SLASH] = ACTIONS(6088), - [anon_sym_PERCENT] = ACTIONS(6086), - [anon_sym_PIPE_PIPE] = ACTIONS(6086), - [anon_sym_AMP_AMP] = ACTIONS(6086), - [anon_sym_PIPE] = ACTIONS(6088), - [anon_sym_CARET] = ACTIONS(6086), - [anon_sym_AMP] = ACTIONS(6088), - [anon_sym_EQ_EQ] = ACTIONS(6086), - [anon_sym_BANG_EQ] = ACTIONS(6086), - [anon_sym_GT] = ACTIONS(6088), - [anon_sym_GT_EQ] = ACTIONS(6086), - [anon_sym_LT_EQ] = ACTIONS(6088), - [anon_sym_LT] = ACTIONS(6088), - [anon_sym_LT_LT] = ACTIONS(6086), - [anon_sym_GT_GT] = ACTIONS(6086), - [anon_sym_SEMI] = ACTIONS(6086), - [anon_sym___extension__] = ACTIONS(6086), - [anon_sym___attribute__] = ACTIONS(6086), - [anon_sym___attribute] = ACTIONS(6088), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_LBRACE] = ACTIONS(6086), - [anon_sym_RBRACE] = ACTIONS(6086), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6086), - [anon_sym_RBRACK] = ACTIONS(6086), - [anon_sym_const] = ACTIONS(6088), - [anon_sym_constexpr] = ACTIONS(6086), - [anon_sym_volatile] = ACTIONS(6086), - [anon_sym_restrict] = ACTIONS(6086), - [anon_sym___restrict__] = ACTIONS(6086), - [anon_sym__Atomic] = ACTIONS(6086), - [anon_sym__Noreturn] = ACTIONS(6086), - [anon_sym_noreturn] = ACTIONS(6086), - [anon_sym__Nonnull] = ACTIONS(6086), - [anon_sym_mutable] = ACTIONS(6086), - [anon_sym_constinit] = ACTIONS(6086), - [anon_sym_consteval] = ACTIONS(6086), - [anon_sym_alignas] = ACTIONS(6086), - [anon_sym__Alignas] = ACTIONS(6086), - [anon_sym_QMARK] = ACTIONS(6086), - [anon_sym_LT_EQ_GT] = ACTIONS(6086), - [anon_sym_or] = ACTIONS(6086), - [anon_sym_and] = ACTIONS(6086), - [anon_sym_bitor] = ACTIONS(6086), - [anon_sym_xor] = ACTIONS(6086), - [anon_sym_bitand] = ACTIONS(6086), - [anon_sym_not_eq] = ACTIONS(6086), - [anon_sym_DASH_DASH] = ACTIONS(6086), - [anon_sym_PLUS_PLUS] = ACTIONS(6086), - [anon_sym_DOT] = ACTIONS(6088), - [anon_sym_DOT_STAR] = ACTIONS(6086), - [anon_sym_DASH_GT] = ACTIONS(6086), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6086), - [anon_sym_override] = ACTIONS(6086), - [anon_sym_requires] = ACTIONS(6086), + [STATE(1558)] = { + [sym_expression] = STATE(4606), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2226)] = { - [sym_string_literal] = STATE(2363), - [sym_template_argument_list] = STATE(3655), - [sym_raw_string_literal] = STATE(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_RPAREN] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6090), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4169), - [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(6093), - [anon_sym_or_eq] = ACTIONS(6093), - [anon_sym_xor_eq] = ACTIONS(6093), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4169), - [anon_sym_L_DQUOTE] = ACTIONS(4343), - [anon_sym_u_DQUOTE] = ACTIONS(4343), - [anon_sym_U_DQUOTE] = ACTIONS(4343), - [anon_sym_u8_DQUOTE] = ACTIONS(4343), - [anon_sym_DQUOTE] = ACTIONS(4343), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4345), - [anon_sym_LR_DQUOTE] = ACTIONS(4345), - [anon_sym_uR_DQUOTE] = ACTIONS(4345), - [anon_sym_UR_DQUOTE] = ACTIONS(4345), - [anon_sym_u8R_DQUOTE] = ACTIONS(4345), - [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + [STATE(1559)] = { + [sym_expression] = STATE(6258), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2227)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6095), - [anon_sym_COMMA] = ACTIONS(6095), - [anon_sym_RPAREN] = ACTIONS(6095), - [anon_sym_LPAREN2] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6097), - [anon_sym_PLUS] = ACTIONS(6097), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_SLASH] = ACTIONS(6097), - [anon_sym_PERCENT] = ACTIONS(6095), - [anon_sym_PIPE_PIPE] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6095), - [anon_sym_PIPE] = ACTIONS(6097), - [anon_sym_CARET] = ACTIONS(6095), - [anon_sym_AMP] = ACTIONS(6097), - [anon_sym_EQ_EQ] = ACTIONS(6095), - [anon_sym_BANG_EQ] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6097), - [anon_sym_GT_EQ] = ACTIONS(6095), - [anon_sym_LT_EQ] = ACTIONS(6097), - [anon_sym_LT] = ACTIONS(6097), - [anon_sym_LT_LT] = ACTIONS(6095), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_SEMI] = ACTIONS(6095), - [anon_sym___extension__] = ACTIONS(6095), - [anon_sym___attribute__] = ACTIONS(6095), - [anon_sym___attribute] = ACTIONS(6097), - [anon_sym_COLON] = ACTIONS(6095), - [anon_sym_LBRACE] = ACTIONS(6095), - [anon_sym_RBRACE] = ACTIONS(6095), - [anon_sym_signed] = ACTIONS(6099), - [anon_sym_unsigned] = ACTIONS(6099), - [anon_sym_long] = ACTIONS(6099), - [anon_sym_short] = ACTIONS(6099), - [anon_sym_LBRACK] = ACTIONS(6095), - [anon_sym_RBRACK] = ACTIONS(6095), - [anon_sym_const] = ACTIONS(6097), - [anon_sym_constexpr] = ACTIONS(6095), - [anon_sym_volatile] = ACTIONS(6095), - [anon_sym_restrict] = ACTIONS(6095), - [anon_sym___restrict__] = ACTIONS(6095), - [anon_sym__Atomic] = ACTIONS(6095), - [anon_sym__Noreturn] = ACTIONS(6095), - [anon_sym_noreturn] = ACTIONS(6095), - [anon_sym__Nonnull] = ACTIONS(6095), - [anon_sym_mutable] = ACTIONS(6095), - [anon_sym_constinit] = ACTIONS(6095), - [anon_sym_consteval] = ACTIONS(6095), - [anon_sym_alignas] = ACTIONS(6095), - [anon_sym__Alignas] = ACTIONS(6095), - [anon_sym_QMARK] = ACTIONS(6095), - [anon_sym_LT_EQ_GT] = ACTIONS(6095), - [anon_sym_or] = ACTIONS(6095), - [anon_sym_and] = ACTIONS(6095), - [anon_sym_bitor] = ACTIONS(6095), - [anon_sym_xor] = ACTIONS(6095), - [anon_sym_bitand] = ACTIONS(6095), - [anon_sym_not_eq] = ACTIONS(6095), - [anon_sym_DASH_DASH] = ACTIONS(6095), - [anon_sym_PLUS_PLUS] = ACTIONS(6095), - [anon_sym_DOT] = ACTIONS(6097), - [anon_sym_DOT_STAR] = ACTIONS(6095), - [anon_sym_DASH_GT] = ACTIONS(6095), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6095), - [anon_sym_override] = ACTIONS(6095), - [anon_sym_requires] = ACTIONS(6095), + [STATE(1560)] = { + [sym_expression] = STATE(7059), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2228)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6101), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_RPAREN] = ACTIONS(6101), - [anon_sym_LPAREN2] = ACTIONS(6101), - [anon_sym_DASH] = ACTIONS(6103), - [anon_sym_PLUS] = ACTIONS(6103), - [anon_sym_STAR] = ACTIONS(6101), - [anon_sym_SLASH] = ACTIONS(6103), - [anon_sym_PERCENT] = ACTIONS(6101), - [anon_sym_PIPE_PIPE] = ACTIONS(6101), - [anon_sym_AMP_AMP] = ACTIONS(6101), - [anon_sym_PIPE] = ACTIONS(6103), - [anon_sym_CARET] = ACTIONS(6101), - [anon_sym_AMP] = ACTIONS(6103), - [anon_sym_EQ_EQ] = ACTIONS(6101), - [anon_sym_BANG_EQ] = ACTIONS(6101), - [anon_sym_GT] = ACTIONS(6103), - [anon_sym_GT_EQ] = ACTIONS(6101), - [anon_sym_LT_EQ] = ACTIONS(6103), - [anon_sym_LT] = ACTIONS(6103), - [anon_sym_LT_LT] = ACTIONS(6101), - [anon_sym_GT_GT] = ACTIONS(6101), - [anon_sym_SEMI] = ACTIONS(6101), - [anon_sym___extension__] = ACTIONS(6101), - [anon_sym___attribute__] = ACTIONS(6101), - [anon_sym___attribute] = ACTIONS(6103), - [anon_sym_COLON] = ACTIONS(6101), - [anon_sym_LBRACE] = ACTIONS(6101), - [anon_sym_RBRACE] = ACTIONS(6101), - [anon_sym_signed] = ACTIONS(6105), - [anon_sym_unsigned] = ACTIONS(6105), - [anon_sym_long] = ACTIONS(6105), - [anon_sym_short] = ACTIONS(6105), - [anon_sym_LBRACK] = ACTIONS(6101), - [anon_sym_RBRACK] = ACTIONS(6101), - [anon_sym_const] = ACTIONS(6103), - [anon_sym_constexpr] = ACTIONS(6101), - [anon_sym_volatile] = ACTIONS(6101), - [anon_sym_restrict] = ACTIONS(6101), - [anon_sym___restrict__] = ACTIONS(6101), - [anon_sym__Atomic] = ACTIONS(6101), - [anon_sym__Noreturn] = ACTIONS(6101), - [anon_sym_noreturn] = ACTIONS(6101), - [anon_sym__Nonnull] = ACTIONS(6101), - [anon_sym_mutable] = ACTIONS(6101), - [anon_sym_constinit] = ACTIONS(6101), - [anon_sym_consteval] = ACTIONS(6101), - [anon_sym_alignas] = ACTIONS(6101), - [anon_sym__Alignas] = ACTIONS(6101), - [anon_sym_QMARK] = ACTIONS(6101), - [anon_sym_LT_EQ_GT] = ACTIONS(6101), - [anon_sym_or] = ACTIONS(6101), - [anon_sym_and] = ACTIONS(6101), - [anon_sym_bitor] = ACTIONS(6101), - [anon_sym_xor] = ACTIONS(6101), - [anon_sym_bitand] = ACTIONS(6101), - [anon_sym_not_eq] = ACTIONS(6101), - [anon_sym_DASH_DASH] = ACTIONS(6101), - [anon_sym_PLUS_PLUS] = ACTIONS(6101), - [anon_sym_DOT] = ACTIONS(6103), - [anon_sym_DOT_STAR] = ACTIONS(6101), - [anon_sym_DASH_GT] = ACTIONS(6101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6101), - [anon_sym_override] = ACTIONS(6101), - [anon_sym_requires] = ACTIONS(6101), + [STATE(1561)] = { + [sym_expression] = STATE(6902), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2229)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4161), - [anon_sym_COLON] = ACTIONS(4203), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4195), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4197), - [anon_sym_SLASH_EQ] = ACTIONS(4197), - [anon_sym_PERCENT_EQ] = ACTIONS(4197), - [anon_sym_PLUS_EQ] = ACTIONS(4197), - [anon_sym_DASH_EQ] = ACTIONS(4197), - [anon_sym_LT_LT_EQ] = ACTIONS(4197), - [anon_sym_GT_GT_EQ] = ACTIONS(4197), - [anon_sym_AMP_EQ] = ACTIONS(4197), - [anon_sym_CARET_EQ] = ACTIONS(4197), - [anon_sym_PIPE_EQ] = ACTIONS(4197), - [anon_sym_and_eq] = ACTIONS(4197), - [anon_sym_or_eq] = ACTIONS(4197), - [anon_sym_xor_eq] = ACTIONS(4197), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1562)] = { + [sym_expression] = STATE(6773), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2230)] = { - [sym_attribute_declaration] = STATE(2262), - [sym_parameter_list] = STATE(1975), - [aux_sym_attributed_declarator_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(6107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6109), - [anon_sym_COMMA] = ACTIONS(6109), - [anon_sym_RPAREN] = ACTIONS(6109), - [aux_sym_preproc_if_token2] = ACTIONS(6109), - [aux_sym_preproc_else_token1] = ACTIONS(6109), - [aux_sym_preproc_elif_token1] = ACTIONS(6107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6109), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6109), - [anon_sym_LPAREN2] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6107), - [anon_sym_PLUS] = ACTIONS(6107), - [anon_sym_STAR] = ACTIONS(6107), - [anon_sym_SLASH] = ACTIONS(6107), - [anon_sym_PERCENT] = ACTIONS(6107), - [anon_sym_PIPE_PIPE] = ACTIONS(6109), - [anon_sym_AMP_AMP] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6107), - [anon_sym_CARET] = ACTIONS(6107), - [anon_sym_AMP] = ACTIONS(6107), - [anon_sym_EQ_EQ] = ACTIONS(6109), - [anon_sym_BANG_EQ] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6107), - [anon_sym_GT_EQ] = ACTIONS(6109), - [anon_sym_LT_EQ] = ACTIONS(6107), - [anon_sym_LT] = ACTIONS(6107), - [anon_sym_LT_LT] = ACTIONS(6107), - [anon_sym_GT_GT] = ACTIONS(6107), - [anon_sym_SEMI] = ACTIONS(6109), - [anon_sym___attribute__] = ACTIONS(6107), - [anon_sym___attribute] = ACTIONS(6107), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_RBRACK] = ACTIONS(6109), - [anon_sym_EQ] = ACTIONS(6107), - [anon_sym_QMARK] = ACTIONS(6109), - [anon_sym_STAR_EQ] = ACTIONS(6109), - [anon_sym_SLASH_EQ] = ACTIONS(6109), - [anon_sym_PERCENT_EQ] = ACTIONS(6109), - [anon_sym_PLUS_EQ] = ACTIONS(6109), - [anon_sym_DASH_EQ] = ACTIONS(6109), - [anon_sym_LT_LT_EQ] = ACTIONS(6109), - [anon_sym_GT_GT_EQ] = ACTIONS(6109), - [anon_sym_AMP_EQ] = ACTIONS(6109), - [anon_sym_CARET_EQ] = ACTIONS(6109), - [anon_sym_PIPE_EQ] = ACTIONS(6109), - [anon_sym_and_eq] = ACTIONS(6107), - [anon_sym_or_eq] = ACTIONS(6107), - [anon_sym_xor_eq] = ACTIONS(6107), - [anon_sym_LT_EQ_GT] = ACTIONS(6109), - [anon_sym_or] = ACTIONS(6107), - [anon_sym_and] = ACTIONS(6107), - [anon_sym_bitor] = ACTIONS(6107), - [anon_sym_xor] = ACTIONS(6107), - [anon_sym_bitand] = ACTIONS(6107), - [anon_sym_not_eq] = ACTIONS(6107), - [anon_sym_DASH_DASH] = ACTIONS(6109), - [anon_sym_PLUS_PLUS] = ACTIONS(6109), - [anon_sym_DOT] = ACTIONS(6107), - [anon_sym_DOT_STAR] = ACTIONS(6109), - [anon_sym_DASH_GT] = ACTIONS(6109), + [STATE(1563)] = { + [sym_expression] = STATE(6691), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2231)] = { - [sym_argument_list] = STATE(2510), - [sym_initializer_list] = STATE(2510), - [sym_new_declarator] = STATE(2277), - [sym_identifier] = ACTIONS(6111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [aux_sym_preproc_if_token2] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6111), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___attribute__] = ACTIONS(6111), - [anon_sym___attribute] = ACTIONS(6111), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6084), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6111), - [anon_sym_or_eq] = ACTIONS(6111), - [anon_sym_xor_eq] = ACTIONS(6111), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6111), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6111), - [anon_sym_not_eq] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), + [STATE(1564)] = { + [sym_expression] = STATE(6699), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2232)] = { - [sym_type_qualifier] = STATE(2232), - [sym_alignas_qualifier] = STATE(2397), - [aux_sym__type_definition_type_repeat1] = STATE(2232), - [sym_identifier] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5101), - [anon_sym_COMMA] = ACTIONS(5101), - [anon_sym_LPAREN2] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5101), - [anon_sym_PIPE_PIPE] = ACTIONS(5101), - [anon_sym_AMP_AMP] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_AMP] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5099), - [anon_sym_LT_LT] = ACTIONS(5101), - [anon_sym_GT_GT] = ACTIONS(5099), - [anon_sym___extension__] = ACTIONS(6115), - [anon_sym___attribute__] = ACTIONS(5099), - [anon_sym___attribute] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5101), - [anon_sym_signed] = ACTIONS(5099), - [anon_sym_unsigned] = ACTIONS(5099), - [anon_sym_long] = ACTIONS(5099), - [anon_sym_short] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_const] = ACTIONS(6115), - [anon_sym_constexpr] = ACTIONS(6115), - [anon_sym_volatile] = ACTIONS(6115), - [anon_sym_restrict] = ACTIONS(6115), - [anon_sym___restrict__] = ACTIONS(6115), - [anon_sym__Atomic] = ACTIONS(6115), - [anon_sym__Noreturn] = ACTIONS(6115), - [anon_sym_noreturn] = ACTIONS(6115), - [anon_sym__Nonnull] = ACTIONS(6115), - [anon_sym_mutable] = ACTIONS(6115), - [anon_sym_constinit] = ACTIONS(6115), - [anon_sym_consteval] = ACTIONS(6115), - [anon_sym_alignas] = ACTIONS(6118), - [anon_sym__Alignas] = ACTIONS(6118), - [sym_primitive_type] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5101), - [anon_sym_LT_EQ_GT] = ACTIONS(5101), - [anon_sym_or] = ACTIONS(5099), - [anon_sym_and] = ACTIONS(5099), - [anon_sym_bitor] = ACTIONS(5099), - [anon_sym_xor] = ACTIONS(5099), - [anon_sym_bitand] = ACTIONS(5099), - [anon_sym_not_eq] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_PLUS_PLUS] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5099), - [anon_sym_DOT_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5099), - [anon_sym_override] = ACTIONS(5099), - [anon_sym_GT2] = ACTIONS(5101), - [anon_sym_requires] = ACTIONS(5099), - }, - [STATE(2233)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6124), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(6133), - [anon_sym_SLASH_EQ] = ACTIONS(6133), - [anon_sym_PERCENT_EQ] = ACTIONS(6133), - [anon_sym_PLUS_EQ] = ACTIONS(6133), - [anon_sym_DASH_EQ] = ACTIONS(6133), - [anon_sym_LT_LT_EQ] = ACTIONS(6133), - [anon_sym_GT_GT_EQ] = ACTIONS(6133), - [anon_sym_AMP_EQ] = ACTIONS(6133), - [anon_sym_CARET_EQ] = ACTIONS(6133), - [anon_sym_PIPE_EQ] = ACTIONS(6133), - [anon_sym_and_eq] = ACTIONS(6133), - [anon_sym_or_eq] = ACTIONS(6133), - [anon_sym_xor_eq] = ACTIONS(6133), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), - }, - [STATE(2234)] = { - [sym_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [aux_sym_concatenated_string_repeat1] = STATE(2234), - [sym_identifier] = ACTIONS(6135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), - [anon_sym_COMMA] = ACTIONS(5431), - [anon_sym_RPAREN] = ACTIONS(5431), - [anon_sym_LPAREN2] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5433), - [anon_sym_STAR] = ACTIONS(5433), - [anon_sym_SLASH] = ACTIONS(5433), - [anon_sym_PERCENT] = ACTIONS(5433), - [anon_sym_PIPE_PIPE] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(5433), - [anon_sym_AMP] = ACTIONS(5433), - [anon_sym_EQ_EQ] = ACTIONS(5431), - [anon_sym_BANG_EQ] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5431), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_LT] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5433), - [anon_sym_GT_GT] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5431), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_STAR_EQ] = ACTIONS(5431), - [anon_sym_SLASH_EQ] = ACTIONS(5431), - [anon_sym_PERCENT_EQ] = ACTIONS(5431), - [anon_sym_PLUS_EQ] = ACTIONS(5431), - [anon_sym_DASH_EQ] = ACTIONS(5431), - [anon_sym_LT_LT_EQ] = ACTIONS(5431), - [anon_sym_GT_GT_EQ] = ACTIONS(5431), - [anon_sym_AMP_EQ] = ACTIONS(5431), - [anon_sym_CARET_EQ] = ACTIONS(5431), - [anon_sym_PIPE_EQ] = ACTIONS(5431), - [anon_sym_and_eq] = ACTIONS(5433), - [anon_sym_or_eq] = ACTIONS(5433), - [anon_sym_xor_eq] = ACTIONS(5433), - [anon_sym_LT_EQ_GT] = ACTIONS(5431), - [anon_sym_or] = ACTIONS(5433), - [anon_sym_and] = ACTIONS(5433), - [anon_sym_bitor] = ACTIONS(5433), - [anon_sym_xor] = ACTIONS(5433), - [anon_sym_bitand] = ACTIONS(5433), - [anon_sym_not_eq] = ACTIONS(5433), - [anon_sym_DASH_DASH] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(5431), - [anon_sym_DOT] = ACTIONS(5433), - [anon_sym_DOT_STAR] = ACTIONS(5431), - [anon_sym_DASH_GT] = ACTIONS(5433), - [anon_sym_L_DQUOTE] = ACTIONS(6138), - [anon_sym_u_DQUOTE] = ACTIONS(6138), - [anon_sym_U_DQUOTE] = ACTIONS(6138), - [anon_sym_u8_DQUOTE] = ACTIONS(6138), - [anon_sym_DQUOTE] = ACTIONS(6138), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6141), - [anon_sym_LR_DQUOTE] = ACTIONS(6141), - [anon_sym_uR_DQUOTE] = ACTIONS(6141), - [anon_sym_UR_DQUOTE] = ACTIONS(6141), - [anon_sym_u8R_DQUOTE] = ACTIONS(6141), - [anon_sym_DASH_GT_STAR] = ACTIONS(5431), - [sym_literal_suffix] = ACTIONS(5433), - }, - [STATE(2235)] = { - [sym_identifier] = ACTIONS(5668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5670), - [anon_sym_COMMA] = ACTIONS(5670), - [anon_sym_RPAREN] = ACTIONS(5670), - [aux_sym_preproc_if_token2] = ACTIONS(5670), - [aux_sym_preproc_else_token1] = ACTIONS(5670), - [aux_sym_preproc_elif_token1] = ACTIONS(5668), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5670), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5670), - [anon_sym_LPAREN2] = ACTIONS(5670), - [anon_sym_DASH] = ACTIONS(5668), - [anon_sym_PLUS] = ACTIONS(5668), - [anon_sym_STAR] = ACTIONS(5668), - [anon_sym_SLASH] = ACTIONS(5668), - [anon_sym_PERCENT] = ACTIONS(5668), - [anon_sym_PIPE_PIPE] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(5670), - [anon_sym_PIPE] = ACTIONS(5668), - [anon_sym_CARET] = ACTIONS(5668), - [anon_sym_AMP] = ACTIONS(5668), - [anon_sym_EQ_EQ] = ACTIONS(5670), - [anon_sym_BANG_EQ] = ACTIONS(5670), - [anon_sym_GT] = ACTIONS(5668), - [anon_sym_GT_EQ] = ACTIONS(5670), - [anon_sym_LT_EQ] = ACTIONS(5668), - [anon_sym_LT] = ACTIONS(5668), - [anon_sym_LT_LT] = ACTIONS(5668), - [anon_sym_GT_GT] = ACTIONS(5668), - [anon_sym_SEMI] = ACTIONS(5670), - [anon_sym___attribute__] = ACTIONS(5668), - [anon_sym___attribute] = ACTIONS(5668), - [anon_sym_COLON] = ACTIONS(5668), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACE] = ACTIONS(5670), - [anon_sym_RBRACE] = ACTIONS(5670), - [anon_sym_LBRACK] = ACTIONS(5670), - [anon_sym_RBRACK] = ACTIONS(5670), - [anon_sym_EQ] = ACTIONS(5668), - [anon_sym_QMARK] = ACTIONS(5670), - [anon_sym_STAR_EQ] = ACTIONS(5670), - [anon_sym_SLASH_EQ] = ACTIONS(5670), - [anon_sym_PERCENT_EQ] = ACTIONS(5670), - [anon_sym_PLUS_EQ] = ACTIONS(5670), - [anon_sym_DASH_EQ] = ACTIONS(5670), - [anon_sym_LT_LT_EQ] = ACTIONS(5670), - [anon_sym_GT_GT_EQ] = ACTIONS(5670), - [anon_sym_AMP_EQ] = ACTIONS(5670), - [anon_sym_CARET_EQ] = ACTIONS(5670), - [anon_sym_PIPE_EQ] = ACTIONS(5670), - [anon_sym_and_eq] = ACTIONS(5668), - [anon_sym_or_eq] = ACTIONS(5668), - [anon_sym_xor_eq] = ACTIONS(5668), - [anon_sym_LT_EQ_GT] = ACTIONS(5670), - [anon_sym_or] = ACTIONS(5668), - [anon_sym_and] = ACTIONS(5668), - [anon_sym_bitor] = ACTIONS(5668), - [anon_sym_xor] = ACTIONS(5668), - [anon_sym_bitand] = ACTIONS(5668), - [anon_sym_not_eq] = ACTIONS(5668), - [anon_sym_DASH_DASH] = ACTIONS(5670), - [anon_sym_PLUS_PLUS] = ACTIONS(5670), - [anon_sym_DOT] = ACTIONS(5668), - [anon_sym_DOT_STAR] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5670), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5668), - [anon_sym_override] = ACTIONS(5668), - }, - [STATE(2236)] = { - [sym_decltype_auto] = STATE(2349), - [sym_template_argument_list] = STATE(1918), - [aux_sym_sized_type_specifier_repeat1] = STATE(2340), - [sym_identifier] = ACTIONS(4159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4167), - [aux_sym_preproc_if_token2] = ACTIONS(4167), - [aux_sym_preproc_else_token1] = ACTIONS(4167), - [aux_sym_preproc_elif_token1] = ACTIONS(4159), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4167), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4167), - [anon_sym_LPAREN2] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_PIPE_PIPE] = ACTIONS(4167), - [anon_sym_AMP_AMP] = ACTIONS(4167), - [anon_sym_PIPE] = ACTIONS(4159), - [anon_sym_CARET] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_EQ_EQ] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4167), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_GT_EQ] = ACTIONS(4167), - [anon_sym_LT_EQ] = ACTIONS(4159), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(4159), - [anon_sym_GT_GT] = ACTIONS(4159), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_signed] = ACTIONS(6144), - [anon_sym_unsigned] = ACTIONS(6144), - [anon_sym_long] = ACTIONS(6144), - [anon_sym_short] = ACTIONS(6144), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4167), - [anon_sym_STAR_EQ] = ACTIONS(4167), - [anon_sym_SLASH_EQ] = ACTIONS(4167), - [anon_sym_PERCENT_EQ] = ACTIONS(4167), - [anon_sym_PLUS_EQ] = ACTIONS(4167), - [anon_sym_DASH_EQ] = ACTIONS(4167), - [anon_sym_LT_LT_EQ] = ACTIONS(4167), - [anon_sym_GT_GT_EQ] = ACTIONS(4167), - [anon_sym_AMP_EQ] = ACTIONS(4167), - [anon_sym_CARET_EQ] = ACTIONS(4167), - [anon_sym_PIPE_EQ] = ACTIONS(4167), - [anon_sym_and_eq] = ACTIONS(4159), - [anon_sym_or_eq] = ACTIONS(4159), - [anon_sym_xor_eq] = ACTIONS(4159), - [anon_sym_LT_EQ_GT] = ACTIONS(4167), - [anon_sym_or] = ACTIONS(4159), - [anon_sym_and] = ACTIONS(4159), - [anon_sym_bitor] = ACTIONS(4159), - [anon_sym_xor] = ACTIONS(4159), - [anon_sym_bitand] = ACTIONS(4159), - [anon_sym_not_eq] = ACTIONS(4159), - [anon_sym_DASH_DASH] = ACTIONS(4167), - [anon_sym_PLUS_PLUS] = ACTIONS(4167), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_DOT_STAR] = ACTIONS(4167), - [anon_sym_DASH_GT] = ACTIONS(4167), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6146), - [anon_sym_decltype] = ACTIONS(6020), - }, - [STATE(2237)] = { - [sym_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [aux_sym_concatenated_string_repeat1] = STATE(2234), - [sym_identifier] = ACTIONS(6148), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_RPAREN] = ACTIONS(5419), - [anon_sym_LPAREN2] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5421), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_CARET] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_EQ] = ACTIONS(5419), - [anon_sym_LT_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_QMARK] = ACTIONS(5419), - [anon_sym_STAR_EQ] = ACTIONS(5419), - [anon_sym_SLASH_EQ] = ACTIONS(5419), - [anon_sym_PERCENT_EQ] = ACTIONS(5419), - [anon_sym_PLUS_EQ] = ACTIONS(5419), - [anon_sym_DASH_EQ] = ACTIONS(5419), - [anon_sym_LT_LT_EQ] = ACTIONS(5419), - [anon_sym_GT_GT_EQ] = ACTIONS(5419), - [anon_sym_AMP_EQ] = ACTIONS(5419), - [anon_sym_CARET_EQ] = ACTIONS(5419), - [anon_sym_PIPE_EQ] = ACTIONS(5419), - [anon_sym_and_eq] = ACTIONS(5421), - [anon_sym_or_eq] = ACTIONS(5421), - [anon_sym_xor_eq] = ACTIONS(5421), - [anon_sym_LT_EQ_GT] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5421), - [anon_sym_and] = ACTIONS(5421), - [anon_sym_bitor] = ACTIONS(5421), - [anon_sym_xor] = ACTIONS(5421), - [anon_sym_bitand] = ACTIONS(5421), - [anon_sym_not_eq] = ACTIONS(5421), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_DOT_STAR] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5421), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(5419), - [sym_literal_suffix] = ACTIONS(5421), - }, - [STATE(2238)] = { - [sym_argument_list] = STATE(2440), - [sym_initializer_list] = STATE(2440), - [sym_new_declarator] = STATE(2276), - [sym_identifier] = ACTIONS(6150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), - [anon_sym_COMMA] = ACTIONS(6152), - [anon_sym_RPAREN] = ACTIONS(6152), - [aux_sym_preproc_if_token2] = ACTIONS(6152), - [aux_sym_preproc_else_token1] = ACTIONS(6152), - [aux_sym_preproc_elif_token1] = ACTIONS(6150), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6152), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6150), - [anon_sym_PLUS] = ACTIONS(6150), - [anon_sym_STAR] = ACTIONS(6150), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_PERCENT] = ACTIONS(6150), - [anon_sym_PIPE_PIPE] = ACTIONS(6152), - [anon_sym_AMP_AMP] = ACTIONS(6152), - [anon_sym_PIPE] = ACTIONS(6150), - [anon_sym_CARET] = ACTIONS(6150), - [anon_sym_AMP] = ACTIONS(6150), - [anon_sym_EQ_EQ] = ACTIONS(6152), - [anon_sym_BANG_EQ] = ACTIONS(6152), - [anon_sym_GT] = ACTIONS(6150), - [anon_sym_GT_EQ] = ACTIONS(6152), - [anon_sym_LT_EQ] = ACTIONS(6150), - [anon_sym_LT] = ACTIONS(6150), - [anon_sym_LT_LT] = ACTIONS(6150), - [anon_sym_GT_GT] = ACTIONS(6150), - [anon_sym_SEMI] = ACTIONS(6152), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6150), - [anon_sym_COLON] = ACTIONS(6152), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6152), - [anon_sym_LBRACK] = ACTIONS(6084), - [anon_sym_RBRACK] = ACTIONS(6152), - [anon_sym_EQ] = ACTIONS(6150), - [anon_sym_QMARK] = ACTIONS(6152), - [anon_sym_STAR_EQ] = ACTIONS(6152), - [anon_sym_SLASH_EQ] = ACTIONS(6152), - [anon_sym_PERCENT_EQ] = ACTIONS(6152), - [anon_sym_PLUS_EQ] = ACTIONS(6152), - [anon_sym_DASH_EQ] = ACTIONS(6152), - [anon_sym_LT_LT_EQ] = ACTIONS(6152), - [anon_sym_GT_GT_EQ] = ACTIONS(6152), - [anon_sym_AMP_EQ] = ACTIONS(6152), - [anon_sym_CARET_EQ] = ACTIONS(6152), - [anon_sym_PIPE_EQ] = ACTIONS(6152), - [anon_sym_and_eq] = ACTIONS(6150), - [anon_sym_or_eq] = ACTIONS(6150), - [anon_sym_xor_eq] = ACTIONS(6150), - [anon_sym_LT_EQ_GT] = ACTIONS(6152), - [anon_sym_or] = ACTIONS(6150), - [anon_sym_and] = ACTIONS(6150), - [anon_sym_bitor] = ACTIONS(6150), - [anon_sym_xor] = ACTIONS(6150), - [anon_sym_bitand] = ACTIONS(6150), - [anon_sym_not_eq] = ACTIONS(6150), - [anon_sym_DASH_DASH] = ACTIONS(6152), - [anon_sym_PLUS_PLUS] = ACTIONS(6152), - [anon_sym_DOT] = ACTIONS(6150), - [anon_sym_DOT_STAR] = ACTIONS(6152), - [anon_sym_DASH_GT] = ACTIONS(6152), + [STATE(1565)] = { + [sym_expression] = STATE(6700), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2239)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [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(5663), - [anon_sym___attribute__] = ACTIONS(5663), - [anon_sym___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_signed] = ACTIONS(6062), - [anon_sym_unsigned] = ACTIONS(6062), - [anon_sym_long] = ACTIONS(6062), - [anon_sym_short] = ACTIONS(6062), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_const] = ACTIONS(5661), - [anon_sym_constexpr] = ACTIONS(5663), - [anon_sym_volatile] = ACTIONS(5663), - [anon_sym_restrict] = ACTIONS(5663), - [anon_sym___restrict__] = ACTIONS(5663), - [anon_sym__Atomic] = ACTIONS(5663), - [anon_sym__Noreturn] = ACTIONS(5663), - [anon_sym_noreturn] = ACTIONS(5663), - [anon_sym__Nonnull] = ACTIONS(5663), - [anon_sym_mutable] = ACTIONS(5663), - [anon_sym_constinit] = ACTIONS(5663), - [anon_sym_consteval] = ACTIONS(5663), - [anon_sym_alignas] = ACTIONS(5663), - [anon_sym__Alignas] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [anon_sym_or] = ACTIONS(5663), - [anon_sym_and] = ACTIONS(5663), - [anon_sym_bitor] = ACTIONS(5663), - [anon_sym_xor] = ACTIONS(5663), - [anon_sym_bitand] = ACTIONS(5663), - [anon_sym_not_eq] = ACTIONS(5663), - [anon_sym_DASH_DASH] = ACTIONS(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), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - [anon_sym_requires] = ACTIONS(5663), - }, - [STATE(2240)] = { - [sym_argument_list] = STATE(2465), - [sym_initializer_list] = STATE(2465), - [sym_new_declarator] = STATE(2250), - [sym_identifier] = ACTIONS(6154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6156), - [anon_sym_COMMA] = ACTIONS(6156), - [anon_sym_RPAREN] = ACTIONS(6156), - [aux_sym_preproc_if_token2] = ACTIONS(6156), - [aux_sym_preproc_else_token1] = ACTIONS(6156), - [aux_sym_preproc_elif_token1] = ACTIONS(6154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6156), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6154), - [anon_sym_PLUS] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6154), - [anon_sym_SLASH] = ACTIONS(6154), - [anon_sym_PERCENT] = ACTIONS(6154), - [anon_sym_PIPE_PIPE] = ACTIONS(6156), - [anon_sym_AMP_AMP] = ACTIONS(6156), - [anon_sym_PIPE] = ACTIONS(6154), - [anon_sym_CARET] = ACTIONS(6154), - [anon_sym_AMP] = ACTIONS(6154), - [anon_sym_EQ_EQ] = ACTIONS(6156), - [anon_sym_BANG_EQ] = ACTIONS(6156), - [anon_sym_GT] = ACTIONS(6154), - [anon_sym_GT_EQ] = ACTIONS(6156), - [anon_sym_LT_EQ] = ACTIONS(6154), - [anon_sym_LT] = ACTIONS(6154), - [anon_sym_LT_LT] = ACTIONS(6154), - [anon_sym_GT_GT] = ACTIONS(6154), - [anon_sym_SEMI] = ACTIONS(6156), - [anon_sym___attribute__] = ACTIONS(6154), - [anon_sym___attribute] = ACTIONS(6154), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(6084), - [anon_sym_RBRACK] = ACTIONS(6156), - [anon_sym_EQ] = ACTIONS(6154), - [anon_sym_QMARK] = ACTIONS(6156), - [anon_sym_STAR_EQ] = ACTIONS(6156), - [anon_sym_SLASH_EQ] = ACTIONS(6156), - [anon_sym_PERCENT_EQ] = ACTIONS(6156), - [anon_sym_PLUS_EQ] = ACTIONS(6156), - [anon_sym_DASH_EQ] = ACTIONS(6156), - [anon_sym_LT_LT_EQ] = ACTIONS(6156), - [anon_sym_GT_GT_EQ] = ACTIONS(6156), - [anon_sym_AMP_EQ] = ACTIONS(6156), - [anon_sym_CARET_EQ] = ACTIONS(6156), - [anon_sym_PIPE_EQ] = ACTIONS(6156), - [anon_sym_and_eq] = ACTIONS(6154), - [anon_sym_or_eq] = ACTIONS(6154), - [anon_sym_xor_eq] = ACTIONS(6154), - [anon_sym_LT_EQ_GT] = ACTIONS(6156), - [anon_sym_or] = ACTIONS(6154), - [anon_sym_and] = ACTIONS(6154), - [anon_sym_bitor] = ACTIONS(6154), - [anon_sym_xor] = ACTIONS(6154), - [anon_sym_bitand] = ACTIONS(6154), - [anon_sym_not_eq] = ACTIONS(6154), - [anon_sym_DASH_DASH] = ACTIONS(6156), - [anon_sym_PLUS_PLUS] = ACTIONS(6156), - [anon_sym_DOT] = ACTIONS(6154), - [anon_sym_DOT_STAR] = ACTIONS(6156), - [anon_sym_DASH_GT] = ACTIONS(6156), + [STATE(1566)] = { + [sym_expression] = STATE(6715), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2241)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_COMMA] = ACTIONS(6158), - [anon_sym_RPAREN] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6158), - [anon_sym_DASH] = ACTIONS(6160), - [anon_sym_PLUS] = ACTIONS(6160), - [anon_sym_STAR] = ACTIONS(6158), - [anon_sym_SLASH] = ACTIONS(6160), - [anon_sym_PERCENT] = ACTIONS(6158), - [anon_sym_PIPE_PIPE] = ACTIONS(6158), - [anon_sym_AMP_AMP] = ACTIONS(6158), - [anon_sym_PIPE] = ACTIONS(6160), - [anon_sym_CARET] = ACTIONS(6158), - [anon_sym_AMP] = ACTIONS(6160), - [anon_sym_EQ_EQ] = ACTIONS(6158), - [anon_sym_BANG_EQ] = ACTIONS(6158), - [anon_sym_GT] = ACTIONS(6160), - [anon_sym_GT_EQ] = ACTIONS(6158), - [anon_sym_LT_EQ] = ACTIONS(6160), - [anon_sym_LT] = ACTIONS(6160), - [anon_sym_LT_LT] = ACTIONS(6158), - [anon_sym_GT_GT] = ACTIONS(6158), - [anon_sym_SEMI] = ACTIONS(6158), - [anon_sym___extension__] = ACTIONS(6158), - [anon_sym___attribute__] = ACTIONS(6158), - [anon_sym___attribute] = ACTIONS(6160), - [anon_sym_COLON] = ACTIONS(6158), - [anon_sym_LBRACE] = ACTIONS(6158), - [anon_sym_RBRACE] = ACTIONS(6158), - [anon_sym_signed] = ACTIONS(6032), - [anon_sym_unsigned] = ACTIONS(6032), - [anon_sym_long] = ACTIONS(6032), - [anon_sym_short] = ACTIONS(6032), - [anon_sym_LBRACK] = ACTIONS(6158), - [anon_sym_RBRACK] = ACTIONS(6158), - [anon_sym_const] = ACTIONS(6160), - [anon_sym_constexpr] = ACTIONS(6158), - [anon_sym_volatile] = ACTIONS(6158), - [anon_sym_restrict] = ACTIONS(6158), - [anon_sym___restrict__] = ACTIONS(6158), - [anon_sym__Atomic] = ACTIONS(6158), - [anon_sym__Noreturn] = ACTIONS(6158), - [anon_sym_noreturn] = ACTIONS(6158), - [anon_sym__Nonnull] = ACTIONS(6158), - [anon_sym_mutable] = ACTIONS(6158), - [anon_sym_constinit] = ACTIONS(6158), - [anon_sym_consteval] = ACTIONS(6158), - [anon_sym_alignas] = ACTIONS(6158), - [anon_sym__Alignas] = ACTIONS(6158), - [anon_sym_QMARK] = ACTIONS(6158), - [anon_sym_LT_EQ_GT] = ACTIONS(6158), - [anon_sym_or] = ACTIONS(6158), - [anon_sym_and] = ACTIONS(6158), - [anon_sym_bitor] = ACTIONS(6158), - [anon_sym_xor] = ACTIONS(6158), - [anon_sym_bitand] = ACTIONS(6158), - [anon_sym_not_eq] = ACTIONS(6158), - [anon_sym_DASH_DASH] = ACTIONS(6158), - [anon_sym_PLUS_PLUS] = ACTIONS(6158), - [anon_sym_DOT] = ACTIONS(6160), - [anon_sym_DOT_STAR] = ACTIONS(6158), - [anon_sym_DASH_GT] = ACTIONS(6158), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6158), - [anon_sym_override] = ACTIONS(6158), - [anon_sym_requires] = ACTIONS(6158), + [STATE(1567)] = { + [sym_expression] = STATE(6723), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2242)] = { - [sym_attribute_declaration] = STATE(2262), - [sym_parameter_list] = STATE(1975), - [aux_sym_attributed_declarator_repeat1] = STATE(2262), - [sym_identifier] = ACTIONS(6162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6164), - [anon_sym_COMMA] = ACTIONS(6164), - [anon_sym_RPAREN] = ACTIONS(6164), - [aux_sym_preproc_if_token2] = ACTIONS(6164), - [aux_sym_preproc_else_token1] = ACTIONS(6164), - [aux_sym_preproc_elif_token1] = ACTIONS(6162), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6164), - [anon_sym_LPAREN2] = ACTIONS(6038), - [anon_sym_DASH] = ACTIONS(6162), - [anon_sym_PLUS] = ACTIONS(6162), - [anon_sym_STAR] = ACTIONS(6162), - [anon_sym_SLASH] = ACTIONS(6162), - [anon_sym_PERCENT] = ACTIONS(6162), - [anon_sym_PIPE_PIPE] = ACTIONS(6164), - [anon_sym_AMP_AMP] = ACTIONS(6164), - [anon_sym_PIPE] = ACTIONS(6162), - [anon_sym_CARET] = ACTIONS(6162), - [anon_sym_AMP] = ACTIONS(6162), - [anon_sym_EQ_EQ] = ACTIONS(6164), - [anon_sym_BANG_EQ] = ACTIONS(6164), - [anon_sym_GT] = ACTIONS(6162), - [anon_sym_GT_EQ] = ACTIONS(6164), - [anon_sym_LT_EQ] = ACTIONS(6162), - [anon_sym_LT] = ACTIONS(6162), - [anon_sym_LT_LT] = ACTIONS(6162), - [anon_sym_GT_GT] = ACTIONS(6162), - [anon_sym_SEMI] = ACTIONS(6164), - [anon_sym___attribute__] = ACTIONS(6162), - [anon_sym___attribute] = ACTIONS(6162), - [anon_sym_COLON] = ACTIONS(6164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6164), - [anon_sym_LBRACK] = ACTIONS(6042), - [anon_sym_RBRACK] = ACTIONS(6164), - [anon_sym_EQ] = ACTIONS(6162), - [anon_sym_QMARK] = ACTIONS(6164), - [anon_sym_STAR_EQ] = ACTIONS(6164), - [anon_sym_SLASH_EQ] = ACTIONS(6164), - [anon_sym_PERCENT_EQ] = ACTIONS(6164), - [anon_sym_PLUS_EQ] = ACTIONS(6164), - [anon_sym_DASH_EQ] = ACTIONS(6164), - [anon_sym_LT_LT_EQ] = ACTIONS(6164), - [anon_sym_GT_GT_EQ] = ACTIONS(6164), - [anon_sym_AMP_EQ] = ACTIONS(6164), - [anon_sym_CARET_EQ] = ACTIONS(6164), - [anon_sym_PIPE_EQ] = ACTIONS(6164), - [anon_sym_and_eq] = ACTIONS(6162), - [anon_sym_or_eq] = ACTIONS(6162), - [anon_sym_xor_eq] = ACTIONS(6162), - [anon_sym_LT_EQ_GT] = ACTIONS(6164), - [anon_sym_or] = ACTIONS(6162), - [anon_sym_and] = ACTIONS(6162), - [anon_sym_bitor] = ACTIONS(6162), - [anon_sym_xor] = ACTIONS(6162), - [anon_sym_bitand] = ACTIONS(6162), - [anon_sym_not_eq] = ACTIONS(6162), - [anon_sym_DASH_DASH] = ACTIONS(6164), - [anon_sym_PLUS_PLUS] = ACTIONS(6164), - [anon_sym_DOT] = ACTIONS(6162), - [anon_sym_DOT_STAR] = ACTIONS(6164), - [anon_sym_DASH_GT] = ACTIONS(6164), + [STATE(1568)] = { + [sym_expression] = STATE(6757), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2243)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(6166), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(6168), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(6133), - [anon_sym_SLASH_EQ] = ACTIONS(6133), - [anon_sym_PERCENT_EQ] = ACTIONS(6133), - [anon_sym_PLUS_EQ] = ACTIONS(6133), - [anon_sym_DASH_EQ] = ACTIONS(6133), - [anon_sym_LT_LT_EQ] = ACTIONS(6133), - [anon_sym_GT_GT_EQ] = ACTIONS(6133), - [anon_sym_AMP_EQ] = ACTIONS(6133), - [anon_sym_CARET_EQ] = ACTIONS(6133), - [anon_sym_PIPE_EQ] = ACTIONS(6133), - [anon_sym_and_eq] = ACTIONS(6133), - [anon_sym_or_eq] = ACTIONS(6133), - [anon_sym_xor_eq] = ACTIONS(6133), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1569)] = { + [sym_expression] = STATE(6762), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2244)] = { - [sym_template_argument_list] = STATE(2316), - [sym_identifier] = ACTIONS(4940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4933), - [anon_sym_COMMA] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(4933), - [aux_sym_preproc_if_token2] = ACTIONS(4933), - [aux_sym_preproc_else_token1] = ACTIONS(4933), - [aux_sym_preproc_elif_token1] = ACTIONS(4940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4933), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4933), - [anon_sym_LPAREN2] = ACTIONS(4933), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_PIPE_PIPE] = ACTIONS(4933), - [anon_sym_AMP_AMP] = ACTIONS(4933), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_CARET] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_EQ_EQ] = ACTIONS(4933), - [anon_sym_BANG_EQ] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_GT_EQ] = ACTIONS(4933), - [anon_sym_LT_EQ] = ACTIONS(4940), - [anon_sym_LT] = ACTIONS(5688), - [anon_sym_LT_LT] = ACTIONS(4940), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4933), - [anon_sym___attribute__] = ACTIONS(4940), - [anon_sym___attribute] = ACTIONS(4940), - [anon_sym_COLON] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4933), - [anon_sym_LBRACK] = ACTIONS(4933), - [anon_sym_RBRACK] = ACTIONS(4933), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_QMARK] = ACTIONS(4933), - [anon_sym_STAR_EQ] = ACTIONS(4933), - [anon_sym_SLASH_EQ] = ACTIONS(4933), - [anon_sym_PERCENT_EQ] = ACTIONS(4933), - [anon_sym_PLUS_EQ] = ACTIONS(4933), - [anon_sym_DASH_EQ] = ACTIONS(4933), - [anon_sym_LT_LT_EQ] = ACTIONS(4933), - [anon_sym_GT_GT_EQ] = ACTIONS(4933), - [anon_sym_AMP_EQ] = ACTIONS(4933), - [anon_sym_CARET_EQ] = ACTIONS(4933), - [anon_sym_PIPE_EQ] = ACTIONS(4933), - [anon_sym_and_eq] = ACTIONS(4940), - [anon_sym_or_eq] = ACTIONS(4940), - [anon_sym_xor_eq] = ACTIONS(4940), - [anon_sym_LT_EQ_GT] = ACTIONS(4933), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_and] = ACTIONS(4940), - [anon_sym_bitor] = ACTIONS(4940), - [anon_sym_xor] = ACTIONS(4940), - [anon_sym_bitand] = ACTIONS(4940), - [anon_sym_not_eq] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4933), - [anon_sym_PLUS_PLUS] = ACTIONS(4933), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_DOT_STAR] = ACTIONS(4933), - [anon_sym_DASH_GT] = ACTIONS(4933), + [STATE(1570)] = { + [sym_expression] = STATE(6778), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2245)] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_LPAREN2] = ACTIONS(5014), - [anon_sym_TILDE] = ACTIONS(5014), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym___attribute] = ACTIONS(5012), - [anon_sym_using] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [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_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_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__Nonnull] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym__Alignas] = ACTIONS(5012), - [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_or] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_explicit] = ACTIONS(5012), - [anon_sym_typename] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_friend] = ACTIONS(5012), - [anon_sym_concept] = ACTIONS(5012), + [STATE(1571)] = { + [sym_expression] = STATE(6785), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2246)] = { - [sym_attribute_specifier] = STATE(2408), - [sym_enumerator_list] = STATE(2311), - [sym_identifier] = ACTIONS(6173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [aux_sym_preproc_if_token2] = ACTIONS(6175), - [aux_sym_preproc_else_token1] = ACTIONS(6175), - [aux_sym_preproc_elif_token1] = ACTIONS(6173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6175), - [anon_sym_LPAREN2] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6173), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6173), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_CARET] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6173), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6173), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_SEMI] = ACTIONS(6175), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6177), - [anon_sym_RBRACE] = ACTIONS(6175), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6173), - [anon_sym_QMARK] = ACTIONS(6175), - [anon_sym_STAR_EQ] = ACTIONS(6175), - [anon_sym_SLASH_EQ] = ACTIONS(6175), - [anon_sym_PERCENT_EQ] = ACTIONS(6175), - [anon_sym_PLUS_EQ] = ACTIONS(6175), - [anon_sym_DASH_EQ] = ACTIONS(6175), - [anon_sym_LT_LT_EQ] = ACTIONS(6175), - [anon_sym_GT_GT_EQ] = ACTIONS(6175), - [anon_sym_AMP_EQ] = ACTIONS(6175), - [anon_sym_CARET_EQ] = ACTIONS(6175), - [anon_sym_PIPE_EQ] = ACTIONS(6175), - [anon_sym_and_eq] = ACTIONS(6173), - [anon_sym_or_eq] = ACTIONS(6173), - [anon_sym_xor_eq] = ACTIONS(6173), - [anon_sym_LT_EQ_GT] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6173), - [anon_sym_and] = ACTIONS(6173), - [anon_sym_bitor] = ACTIONS(6173), - [anon_sym_xor] = ACTIONS(6173), - [anon_sym_bitand] = ACTIONS(6173), - [anon_sym_not_eq] = ACTIONS(6173), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_DOT_STAR] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), + [STATE(1572)] = { + [sym_expression] = STATE(6792), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2247)] = { - [sym_identifier] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5018), - [anon_sym_TILDE] = ACTIONS(5018), - [anon_sym_STAR] = ACTIONS(5018), - [anon_sym_PIPE_PIPE] = ACTIONS(5018), - [anon_sym_AMP_AMP] = ACTIONS(5018), - [anon_sym_AMP] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5016), - [anon_sym_virtual] = ACTIONS(5016), - [anon_sym_extern] = ACTIONS(5016), - [anon_sym___attribute__] = ACTIONS(5016), - [anon_sym___attribute] = ACTIONS(5016), - [anon_sym_using] = ACTIONS(5016), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5018), - [anon_sym___declspec] = ACTIONS(5016), - [anon_sym___based] = ACTIONS(5016), - [anon_sym___cdecl] = ACTIONS(5016), - [anon_sym___clrcall] = ACTIONS(5016), - [anon_sym___stdcall] = ACTIONS(5016), - [anon_sym___fastcall] = ACTIONS(5016), - [anon_sym___thiscall] = ACTIONS(5016), - [anon_sym___vectorcall] = ACTIONS(5016), - [anon_sym_signed] = ACTIONS(5016), - [anon_sym_unsigned] = ACTIONS(5016), - [anon_sym_long] = ACTIONS(5016), - [anon_sym_short] = ACTIONS(5016), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_register] = ACTIONS(5016), - [anon_sym_inline] = ACTIONS(5016), - [anon_sym___inline] = ACTIONS(5016), - [anon_sym___inline__] = ACTIONS(5016), - [anon_sym___forceinline] = ACTIONS(5016), - [anon_sym_thread_local] = ACTIONS(5016), - [anon_sym___thread] = ACTIONS(5016), - [anon_sym_const] = ACTIONS(5016), - [anon_sym_constexpr] = ACTIONS(5016), - [anon_sym_volatile] = ACTIONS(5016), - [anon_sym_restrict] = ACTIONS(5016), - [anon_sym___restrict__] = ACTIONS(5016), - [anon_sym__Atomic] = ACTIONS(5016), - [anon_sym__Noreturn] = ACTIONS(5016), - [anon_sym_noreturn] = ACTIONS(5016), - [anon_sym__Nonnull] = ACTIONS(5016), - [anon_sym_mutable] = ACTIONS(5016), - [anon_sym_constinit] = ACTIONS(5016), - [anon_sym_consteval] = ACTIONS(5016), - [anon_sym_alignas] = ACTIONS(5016), - [anon_sym__Alignas] = ACTIONS(5016), - [sym_primitive_type] = ACTIONS(5016), - [anon_sym_enum] = ACTIONS(5016), - [anon_sym_class] = ACTIONS(5016), - [anon_sym_struct] = ACTIONS(5016), - [anon_sym_union] = ACTIONS(5016), - [anon_sym_or] = ACTIONS(5016), - [anon_sym_and] = ACTIONS(5016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5016), - [anon_sym_decltype] = ACTIONS(5016), - [anon_sym_explicit] = ACTIONS(5016), - [anon_sym_typename] = ACTIONS(5016), - [anon_sym_template] = ACTIONS(5016), - [anon_sym_operator] = ACTIONS(5016), - [anon_sym_friend] = ACTIONS(5016), - [anon_sym_concept] = ACTIONS(5016), + [STATE(1573)] = { + [sym_expression] = STATE(4320), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(6067), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2248)] = { - [sym_identifier] = ACTIONS(5020), - [anon_sym_LPAREN2] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5022), - [anon_sym_PIPE_PIPE] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_AMP] = ACTIONS(5020), - [anon_sym___extension__] = ACTIONS(5020), - [anon_sym_virtual] = ACTIONS(5020), - [anon_sym_extern] = ACTIONS(5020), - [anon_sym___attribute__] = ACTIONS(5020), - [anon_sym___attribute] = ACTIONS(5020), - [anon_sym_using] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5022), - [anon_sym___declspec] = ACTIONS(5020), - [anon_sym___based] = ACTIONS(5020), - [anon_sym___cdecl] = ACTIONS(5020), - [anon_sym___clrcall] = ACTIONS(5020), - [anon_sym___stdcall] = ACTIONS(5020), - [anon_sym___fastcall] = ACTIONS(5020), - [anon_sym___thiscall] = ACTIONS(5020), - [anon_sym___vectorcall] = ACTIONS(5020), - [anon_sym_signed] = ACTIONS(5020), - [anon_sym_unsigned] = ACTIONS(5020), - [anon_sym_long] = ACTIONS(5020), - [anon_sym_short] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_static] = ACTIONS(5020), - [anon_sym_register] = ACTIONS(5020), - [anon_sym_inline] = ACTIONS(5020), - [anon_sym___inline] = ACTIONS(5020), - [anon_sym___inline__] = ACTIONS(5020), - [anon_sym___forceinline] = ACTIONS(5020), - [anon_sym_thread_local] = ACTIONS(5020), - [anon_sym___thread] = ACTIONS(5020), - [anon_sym_const] = ACTIONS(5020), - [anon_sym_constexpr] = ACTIONS(5020), - [anon_sym_volatile] = ACTIONS(5020), - [anon_sym_restrict] = ACTIONS(5020), - [anon_sym___restrict__] = ACTIONS(5020), - [anon_sym__Atomic] = ACTIONS(5020), - [anon_sym__Noreturn] = ACTIONS(5020), - [anon_sym_noreturn] = ACTIONS(5020), - [anon_sym__Nonnull] = ACTIONS(5020), - [anon_sym_mutable] = ACTIONS(5020), - [anon_sym_constinit] = ACTIONS(5020), - [anon_sym_consteval] = ACTIONS(5020), - [anon_sym_alignas] = ACTIONS(5020), - [anon_sym__Alignas] = ACTIONS(5020), - [sym_primitive_type] = ACTIONS(5020), - [anon_sym_enum] = ACTIONS(5020), - [anon_sym_class] = ACTIONS(5020), - [anon_sym_struct] = ACTIONS(5020), - [anon_sym_union] = ACTIONS(5020), - [anon_sym_or] = ACTIONS(5020), - [anon_sym_and] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5020), - [anon_sym_decltype] = ACTIONS(5020), - [anon_sym_explicit] = ACTIONS(5020), - [anon_sym_typename] = ACTIONS(5020), - [anon_sym_template] = ACTIONS(5020), - [anon_sym_operator] = ACTIONS(5020), - [anon_sym_friend] = ACTIONS(5020), - [anon_sym_concept] = ACTIONS(5020), + [STATE(1574)] = { + [sym_expression] = STATE(3695), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2249)] = { - [sym_identifier] = ACTIONS(5668), - [anon_sym_LPAREN2] = ACTIONS(5670), - [anon_sym_TILDE] = ACTIONS(5670), - [anon_sym_STAR] = ACTIONS(5670), - [anon_sym_PIPE_PIPE] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(5668), - [anon_sym___extension__] = ACTIONS(5668), - [anon_sym_virtual] = ACTIONS(5668), - [anon_sym_extern] = ACTIONS(5668), - [anon_sym___attribute__] = ACTIONS(5668), - [anon_sym___attribute] = ACTIONS(5668), - [anon_sym_using] = ACTIONS(5668), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5670), - [anon_sym___declspec] = ACTIONS(5668), - [anon_sym___based] = ACTIONS(5668), - [anon_sym___cdecl] = ACTIONS(5668), - [anon_sym___clrcall] = ACTIONS(5668), - [anon_sym___stdcall] = ACTIONS(5668), - [anon_sym___fastcall] = ACTIONS(5668), - [anon_sym___thiscall] = ACTIONS(5668), - [anon_sym___vectorcall] = ACTIONS(5668), - [anon_sym_signed] = ACTIONS(5668), - [anon_sym_unsigned] = ACTIONS(5668), - [anon_sym_long] = ACTIONS(5668), - [anon_sym_short] = ACTIONS(5668), - [anon_sym_LBRACK] = ACTIONS(5668), - [anon_sym_static] = ACTIONS(5668), - [anon_sym_register] = ACTIONS(5668), - [anon_sym_inline] = ACTIONS(5668), - [anon_sym___inline] = ACTIONS(5668), - [anon_sym___inline__] = ACTIONS(5668), - [anon_sym___forceinline] = ACTIONS(5668), - [anon_sym_thread_local] = ACTIONS(5668), - [anon_sym___thread] = ACTIONS(5668), - [anon_sym_const] = ACTIONS(5668), - [anon_sym_constexpr] = ACTIONS(5668), - [anon_sym_volatile] = ACTIONS(5668), - [anon_sym_restrict] = ACTIONS(5668), - [anon_sym___restrict__] = ACTIONS(5668), - [anon_sym__Atomic] = ACTIONS(5668), - [anon_sym__Noreturn] = ACTIONS(5668), - [anon_sym_noreturn] = ACTIONS(5668), - [anon_sym__Nonnull] = ACTIONS(5668), - [anon_sym_mutable] = ACTIONS(5668), - [anon_sym_constinit] = ACTIONS(5668), - [anon_sym_consteval] = ACTIONS(5668), - [anon_sym_alignas] = ACTIONS(5668), - [anon_sym__Alignas] = ACTIONS(5668), - [sym_primitive_type] = ACTIONS(5668), - [anon_sym_enum] = ACTIONS(5668), - [anon_sym_class] = ACTIONS(5668), - [anon_sym_struct] = ACTIONS(5668), - [anon_sym_union] = ACTIONS(5668), - [anon_sym_or] = ACTIONS(5668), - [anon_sym_and] = ACTIONS(5668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5668), - [anon_sym_decltype] = ACTIONS(5668), - [anon_sym_explicit] = ACTIONS(5668), - [anon_sym_typename] = ACTIONS(5668), - [anon_sym_template] = ACTIONS(5668), - [anon_sym_operator] = ACTIONS(5668), - [anon_sym_friend] = ACTIONS(5668), - [anon_sym_concept] = ACTIONS(5668), + [STATE(1575)] = { + [sym_expression] = STATE(6768), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2250)] = { - [sym_argument_list] = STATE(2542), - [sym_initializer_list] = STATE(2542), - [sym_identifier] = ACTIONS(6179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6181), - [anon_sym_COMMA] = ACTIONS(6181), - [anon_sym_RPAREN] = ACTIONS(6181), - [aux_sym_preproc_if_token2] = ACTIONS(6181), - [aux_sym_preproc_else_token1] = ACTIONS(6181), - [aux_sym_preproc_elif_token1] = ACTIONS(6179), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6181), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6181), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6181), - [anon_sym_AMP_AMP] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_AMP] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6181), - [anon_sym_BANG_EQ] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6181), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6179), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6179), - [anon_sym_SEMI] = ACTIONS(6181), - [anon_sym___attribute__] = ACTIONS(6179), - [anon_sym___attribute] = ACTIONS(6179), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6181), - [anon_sym_RBRACK] = ACTIONS(6181), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_STAR_EQ] = ACTIONS(6181), - [anon_sym_SLASH_EQ] = ACTIONS(6181), - [anon_sym_PERCENT_EQ] = ACTIONS(6181), - [anon_sym_PLUS_EQ] = ACTIONS(6181), - [anon_sym_DASH_EQ] = ACTIONS(6181), - [anon_sym_LT_LT_EQ] = ACTIONS(6181), - [anon_sym_GT_GT_EQ] = ACTIONS(6181), - [anon_sym_AMP_EQ] = ACTIONS(6181), - [anon_sym_CARET_EQ] = ACTIONS(6181), - [anon_sym_PIPE_EQ] = ACTIONS(6181), - [anon_sym_and_eq] = ACTIONS(6179), - [anon_sym_or_eq] = ACTIONS(6179), - [anon_sym_xor_eq] = ACTIONS(6179), - [anon_sym_LT_EQ_GT] = ACTIONS(6181), - [anon_sym_or] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_bitor] = ACTIONS(6179), - [anon_sym_xor] = ACTIONS(6179), - [anon_sym_bitand] = ACTIONS(6179), - [anon_sym_not_eq] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6181), - [anon_sym_DOT] = ACTIONS(6179), - [anon_sym_DOT_STAR] = ACTIONS(6181), - [anon_sym_DASH_GT] = ACTIONS(6181), + [STATE(1576)] = { + [sym_expression] = STATE(6718), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), + }, + [STATE(1577)] = { + [sym_expression] = STATE(6909), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2251)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_RPAREN] = ACTIONS(5488), - [anon_sym_LPAREN2] = ACTIONS(5488), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5486), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5486), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5486), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5486), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym_COLON] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_RBRACK] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(5486), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_STAR_EQ] = ACTIONS(5488), - [anon_sym_SLASH_EQ] = ACTIONS(5488), - [anon_sym_PERCENT_EQ] = ACTIONS(5488), - [anon_sym_PLUS_EQ] = ACTIONS(5488), - [anon_sym_DASH_EQ] = ACTIONS(5488), - [anon_sym_LT_LT_EQ] = ACTIONS(5488), - [anon_sym_GT_GT_EQ] = ACTIONS(5488), - [anon_sym_AMP_EQ] = ACTIONS(5488), - [anon_sym_CARET_EQ] = ACTIONS(5488), - [anon_sym_PIPE_EQ] = ACTIONS(5488), - [anon_sym_and_eq] = ACTIONS(5486), - [anon_sym_or_eq] = ACTIONS(5486), - [anon_sym_xor_eq] = ACTIONS(5486), - [anon_sym_LT_EQ_GT] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5486), - [anon_sym_and] = ACTIONS(5486), - [anon_sym_bitor] = ACTIONS(5486), - [anon_sym_xor] = ACTIONS(5486), - [anon_sym_bitand] = ACTIONS(5486), - [anon_sym_not_eq] = ACTIONS(5486), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_DOT_STAR] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_L_DQUOTE] = ACTIONS(5488), - [anon_sym_u_DQUOTE] = ACTIONS(5488), - [anon_sym_U_DQUOTE] = ACTIONS(5488), - [anon_sym_u8_DQUOTE] = ACTIONS(5488), - [anon_sym_DQUOTE] = ACTIONS(5488), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5488), - [anon_sym_LR_DQUOTE] = ACTIONS(5488), - [anon_sym_uR_DQUOTE] = ACTIONS(5488), - [anon_sym_UR_DQUOTE] = ACTIONS(5488), - [anon_sym_u8R_DQUOTE] = ACTIONS(5488), - [sym_literal_suffix] = ACTIONS(5486), + [STATE(1578)] = { + [sym_expression] = STATE(3665), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2252)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_using] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_enum] = ACTIONS(5627), - [anon_sym_class] = ACTIONS(5627), - [anon_sym_struct] = ACTIONS(5627), - [anon_sym_union] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_explicit] = ACTIONS(5627), - [anon_sym_typename] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_friend] = ACTIONS(5627), - [anon_sym_concept] = ACTIONS(5627), + [STATE(1579)] = { + [sym_expression] = STATE(6929), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2253)] = { - [sym_string_literal] = STATE(2279), - [sym_template_argument_list] = STATE(3313), - [sym_raw_string_literal] = STATE(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4169), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6183), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(4169), - [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(4169), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(6186), - [anon_sym_u_DQUOTE] = ACTIONS(6186), - [anon_sym_U_DQUOTE] = ACTIONS(6186), - [anon_sym_u8_DQUOTE] = ACTIONS(6186), - [anon_sym_DQUOTE] = ACTIONS(6186), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4161), - [anon_sym_R_DQUOTE] = ACTIONS(6188), - [anon_sym_LR_DQUOTE] = ACTIONS(6188), - [anon_sym_uR_DQUOTE] = ACTIONS(6188), - [anon_sym_UR_DQUOTE] = ACTIONS(6188), - [anon_sym_u8R_DQUOTE] = ACTIONS(6188), + [STATE(1580)] = { + [sym_expression] = STATE(4574), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2254)] = { - [sym_string_literal] = STATE(2254), - [sym_raw_string_literal] = STATE(2254), - [aux_sym_concatenated_string_repeat1] = STATE(2254), - [sym_identifier] = ACTIONS(6190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5431), - [anon_sym_COMMA] = ACTIONS(5431), - [anon_sym_LPAREN2] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5433), - [anon_sym_PLUS] = ACTIONS(5433), - [anon_sym_STAR] = ACTIONS(5433), - [anon_sym_SLASH] = ACTIONS(5433), - [anon_sym_PERCENT] = ACTIONS(5433), - [anon_sym_PIPE_PIPE] = ACTIONS(5431), - [anon_sym_AMP_AMP] = ACTIONS(5431), - [anon_sym_PIPE] = ACTIONS(5433), - [anon_sym_CARET] = ACTIONS(5433), - [anon_sym_AMP] = ACTIONS(5433), - [anon_sym_EQ_EQ] = ACTIONS(5431), - [anon_sym_BANG_EQ] = ACTIONS(5431), - [anon_sym_GT] = ACTIONS(5433), - [anon_sym_GT_EQ] = ACTIONS(5433), - [anon_sym_LT_EQ] = ACTIONS(5433), - [anon_sym_LT] = ACTIONS(5433), - [anon_sym_LT_LT] = ACTIONS(5433), - [anon_sym_GT_GT] = ACTIONS(5433), - [anon_sym_LBRACK] = ACTIONS(5431), - [anon_sym_EQ] = ACTIONS(5433), - [anon_sym_QMARK] = ACTIONS(5431), - [anon_sym_STAR_EQ] = ACTIONS(5431), - [anon_sym_SLASH_EQ] = ACTIONS(5431), - [anon_sym_PERCENT_EQ] = ACTIONS(5431), - [anon_sym_PLUS_EQ] = ACTIONS(5431), - [anon_sym_DASH_EQ] = ACTIONS(5431), - [anon_sym_LT_LT_EQ] = ACTIONS(5431), - [anon_sym_GT_GT_EQ] = ACTIONS(5433), - [anon_sym_AMP_EQ] = ACTIONS(5431), - [anon_sym_CARET_EQ] = ACTIONS(5431), - [anon_sym_PIPE_EQ] = ACTIONS(5431), - [anon_sym_and_eq] = ACTIONS(5433), - [anon_sym_or_eq] = ACTIONS(5433), - [anon_sym_xor_eq] = ACTIONS(5433), - [anon_sym_LT_EQ_GT] = ACTIONS(5431), - [anon_sym_or] = ACTIONS(5433), - [anon_sym_and] = ACTIONS(5433), - [anon_sym_bitor] = ACTIONS(5433), - [anon_sym_xor] = ACTIONS(5433), - [anon_sym_bitand] = ACTIONS(5433), - [anon_sym_not_eq] = ACTIONS(5433), - [anon_sym_DASH_DASH] = ACTIONS(5431), - [anon_sym_PLUS_PLUS] = ACTIONS(5431), - [anon_sym_DOT] = ACTIONS(5433), - [anon_sym_DOT_STAR] = ACTIONS(5431), - [anon_sym_DASH_GT] = ACTIONS(5431), - [anon_sym_L_DQUOTE] = ACTIONS(6193), - [anon_sym_u_DQUOTE] = ACTIONS(6193), - [anon_sym_U_DQUOTE] = ACTIONS(6193), - [anon_sym_u8_DQUOTE] = ACTIONS(6193), - [anon_sym_DQUOTE] = ACTIONS(6193), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5431), - [anon_sym_R_DQUOTE] = ACTIONS(6196), - [anon_sym_LR_DQUOTE] = ACTIONS(6196), - [anon_sym_uR_DQUOTE] = ACTIONS(6196), - [anon_sym_UR_DQUOTE] = ACTIONS(6196), - [anon_sym_u8R_DQUOTE] = ACTIONS(6196), - [sym_literal_suffix] = ACTIONS(5433), + [STATE(1581)] = { + [sym_expression] = STATE(3685), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2255)] = { - [sym_identifier] = ACTIONS(6199), - [anon_sym_LPAREN2] = ACTIONS(6201), - [anon_sym_TILDE] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6199), - [anon_sym___extension__] = ACTIONS(6199), - [anon_sym_virtual] = ACTIONS(6199), - [anon_sym_extern] = ACTIONS(6199), - [anon_sym___attribute__] = ACTIONS(6199), - [anon_sym___attribute] = ACTIONS(6199), - [anon_sym_using] = ACTIONS(6199), - [anon_sym_COLON_COLON] = ACTIONS(6201), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6201), - [anon_sym___declspec] = ACTIONS(6199), - [anon_sym___based] = ACTIONS(6199), - [anon_sym___cdecl] = ACTIONS(6199), - [anon_sym___clrcall] = ACTIONS(6199), - [anon_sym___stdcall] = ACTIONS(6199), - [anon_sym___fastcall] = ACTIONS(6199), - [anon_sym___thiscall] = ACTIONS(6199), - [anon_sym___vectorcall] = ACTIONS(6199), - [anon_sym_signed] = ACTIONS(6199), - [anon_sym_unsigned] = ACTIONS(6199), - [anon_sym_long] = ACTIONS(6199), - [anon_sym_short] = ACTIONS(6199), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_static] = ACTIONS(6199), - [anon_sym_register] = ACTIONS(6199), - [anon_sym_inline] = ACTIONS(6199), - [anon_sym___inline] = ACTIONS(6199), - [anon_sym___inline__] = ACTIONS(6199), - [anon_sym___forceinline] = ACTIONS(6199), - [anon_sym_thread_local] = ACTIONS(6199), - [anon_sym___thread] = ACTIONS(6199), - [anon_sym_const] = ACTIONS(6199), - [anon_sym_constexpr] = ACTIONS(6199), - [anon_sym_volatile] = ACTIONS(6199), - [anon_sym_restrict] = ACTIONS(6199), - [anon_sym___restrict__] = ACTIONS(6199), - [anon_sym__Atomic] = ACTIONS(6199), - [anon_sym__Noreturn] = ACTIONS(6199), - [anon_sym_noreturn] = ACTIONS(6199), - [anon_sym__Nonnull] = ACTIONS(6199), - [anon_sym_mutable] = ACTIONS(6199), - [anon_sym_constinit] = ACTIONS(6199), - [anon_sym_consteval] = ACTIONS(6199), - [anon_sym_alignas] = ACTIONS(6199), - [anon_sym__Alignas] = ACTIONS(6199), - [sym_primitive_type] = ACTIONS(6199), - [anon_sym_enum] = ACTIONS(6199), - [anon_sym_class] = ACTIONS(6199), - [anon_sym_struct] = ACTIONS(6199), - [anon_sym_union] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6209), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6199), - [anon_sym_decltype] = ACTIONS(6199), - [anon_sym_explicit] = ACTIONS(6199), - [anon_sym_typename] = ACTIONS(6199), - [anon_sym_template] = ACTIONS(6199), - [anon_sym_operator] = ACTIONS(6199), - [anon_sym_friend] = ACTIONS(6199), - [anon_sym_concept] = ACTIONS(6199), + [STATE(1582)] = { + [sym_expression] = STATE(4576), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2256)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_RPAREN] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym_COLON] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(5484), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_RBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), + [STATE(1583)] = { + [sym_expression] = STATE(4578), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2257)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_using] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_enum] = ACTIONS(5627), - [anon_sym_class] = ACTIONS(5627), - [anon_sym_struct] = ACTIONS(5627), - [anon_sym_union] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_explicit] = ACTIONS(5627), - [anon_sym_typename] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_friend] = ACTIONS(5627), - [anon_sym_concept] = ACTIONS(5627), + [STATE(1584)] = { + [sym_expression] = STATE(4579), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2258)] = { - [sym_identifier] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(5629), - [anon_sym_TILDE] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(5629), - [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_AMP_AMP] = ACTIONS(5629), - [anon_sym_AMP] = ACTIONS(5627), - [anon_sym___extension__] = ACTIONS(5627), - [anon_sym_virtual] = ACTIONS(5627), - [anon_sym_extern] = ACTIONS(5627), - [anon_sym___attribute__] = ACTIONS(5627), - [anon_sym___attribute] = ACTIONS(5627), - [anon_sym_using] = ACTIONS(5627), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5629), - [anon_sym___declspec] = ACTIONS(5627), - [anon_sym___based] = ACTIONS(5627), - [anon_sym___cdecl] = ACTIONS(5627), - [anon_sym___clrcall] = ACTIONS(5627), - [anon_sym___stdcall] = ACTIONS(5627), - [anon_sym___fastcall] = ACTIONS(5627), - [anon_sym___thiscall] = ACTIONS(5627), - [anon_sym___vectorcall] = ACTIONS(5627), - [anon_sym_signed] = ACTIONS(5627), - [anon_sym_unsigned] = ACTIONS(5627), - [anon_sym_long] = ACTIONS(5627), - [anon_sym_short] = ACTIONS(5627), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_static] = ACTIONS(5627), - [anon_sym_register] = ACTIONS(5627), - [anon_sym_inline] = ACTIONS(5627), - [anon_sym___inline] = ACTIONS(5627), - [anon_sym___inline__] = ACTIONS(5627), - [anon_sym___forceinline] = ACTIONS(5627), - [anon_sym_thread_local] = ACTIONS(5627), - [anon_sym___thread] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(5627), - [anon_sym_constexpr] = ACTIONS(5627), - [anon_sym_volatile] = ACTIONS(5627), - [anon_sym_restrict] = ACTIONS(5627), - [anon_sym___restrict__] = ACTIONS(5627), - [anon_sym__Atomic] = ACTIONS(5627), - [anon_sym__Noreturn] = ACTIONS(5627), - [anon_sym_noreturn] = ACTIONS(5627), - [anon_sym__Nonnull] = ACTIONS(5627), - [anon_sym_mutable] = ACTIONS(5627), - [anon_sym_constinit] = ACTIONS(5627), - [anon_sym_consteval] = ACTIONS(5627), - [anon_sym_alignas] = ACTIONS(5627), - [anon_sym__Alignas] = ACTIONS(5627), - [sym_primitive_type] = ACTIONS(5627), - [anon_sym_enum] = ACTIONS(5627), - [anon_sym_class] = ACTIONS(5627), - [anon_sym_struct] = ACTIONS(5627), - [anon_sym_union] = ACTIONS(5627), - [anon_sym_or] = ACTIONS(5627), - [anon_sym_and] = ACTIONS(5627), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5627), - [anon_sym_decltype] = ACTIONS(5627), - [anon_sym_explicit] = ACTIONS(5627), - [anon_sym_typename] = ACTIONS(5627), - [anon_sym_template] = ACTIONS(5627), - [anon_sym_operator] = ACTIONS(5627), - [anon_sym_friend] = ACTIONS(5627), - [anon_sym_concept] = ACTIONS(5627), + [STATE(1585)] = { + [sym_expression] = STATE(4581), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2259)] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_STAR] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym___attribute] = ACTIONS(5008), - [anon_sym_using] = 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___cdecl] = ACTIONS(5008), - [anon_sym___clrcall] = ACTIONS(5008), - [anon_sym___stdcall] = ACTIONS(5008), - [anon_sym___fastcall] = ACTIONS(5008), - [anon_sym___thiscall] = ACTIONS(5008), - [anon_sym___vectorcall] = ACTIONS(5008), - [anon_sym_signed] = ACTIONS(5008), - [anon_sym_unsigned] = ACTIONS(5008), - [anon_sym_long] = ACTIONS(5008), - [anon_sym_short] = ACTIONS(5008), - [anon_sym_LBRACK] = 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__Nonnull] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym__Alignas] = ACTIONS(5008), - [sym_primitive_type] = ACTIONS(5008), - [anon_sym_enum] = ACTIONS(5008), - [anon_sym_class] = ACTIONS(5008), - [anon_sym_struct] = ACTIONS(5008), - [anon_sym_union] = ACTIONS(5008), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_explicit] = ACTIONS(5008), - [anon_sym_typename] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_friend] = ACTIONS(5008), - [anon_sym_concept] = ACTIONS(5008), + [STATE(1586)] = { + [sym_expression] = STATE(4582), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2260)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [anon_sym_RPAREN] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym_SEMI] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_COLON] = ACTIONS(5212), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5457), - [anon_sym_unsigned] = ACTIONS(5457), - [anon_sym_long] = ACTIONS(5457), - [anon_sym_short] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_RBRACK] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), + [STATE(1587)] = { + [sym_expression] = STATE(4583), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2261)] = { - [sym_identifier] = ACTIONS(5633), - [anon_sym_LPAREN2] = ACTIONS(5635), - [anon_sym_TILDE] = ACTIONS(5635), - [anon_sym_STAR] = ACTIONS(5635), - [anon_sym_PIPE_PIPE] = ACTIONS(5635), - [anon_sym_AMP_AMP] = ACTIONS(5635), - [anon_sym_AMP] = ACTIONS(5633), - [anon_sym___extension__] = ACTIONS(5633), - [anon_sym_virtual] = ACTIONS(5633), - [anon_sym_extern] = ACTIONS(5633), - [anon_sym___attribute__] = ACTIONS(5633), - [anon_sym___attribute] = ACTIONS(5633), - [anon_sym_using] = ACTIONS(5633), - [anon_sym_COLON_COLON] = ACTIONS(5635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5635), - [anon_sym___declspec] = ACTIONS(5633), - [anon_sym___based] = ACTIONS(5633), - [anon_sym___cdecl] = ACTIONS(5633), - [anon_sym___clrcall] = ACTIONS(5633), - [anon_sym___stdcall] = ACTIONS(5633), - [anon_sym___fastcall] = ACTIONS(5633), - [anon_sym___thiscall] = ACTIONS(5633), - [anon_sym___vectorcall] = ACTIONS(5633), - [anon_sym_signed] = ACTIONS(5633), - [anon_sym_unsigned] = ACTIONS(5633), - [anon_sym_long] = ACTIONS(5633), - [anon_sym_short] = ACTIONS(5633), - [anon_sym_LBRACK] = ACTIONS(5633), - [anon_sym_static] = ACTIONS(5633), - [anon_sym_register] = ACTIONS(5633), - [anon_sym_inline] = ACTIONS(5633), - [anon_sym___inline] = ACTIONS(5633), - [anon_sym___inline__] = ACTIONS(5633), - [anon_sym___forceinline] = ACTIONS(5633), - [anon_sym_thread_local] = ACTIONS(5633), - [anon_sym___thread] = ACTIONS(5633), - [anon_sym_const] = ACTIONS(5633), - [anon_sym_constexpr] = ACTIONS(5633), - [anon_sym_volatile] = ACTIONS(5633), - [anon_sym_restrict] = ACTIONS(5633), - [anon_sym___restrict__] = ACTIONS(5633), - [anon_sym__Atomic] = ACTIONS(5633), - [anon_sym__Noreturn] = ACTIONS(5633), - [anon_sym_noreturn] = ACTIONS(5633), - [anon_sym__Nonnull] = ACTIONS(5633), - [anon_sym_mutable] = ACTIONS(5633), - [anon_sym_constinit] = ACTIONS(5633), - [anon_sym_consteval] = ACTIONS(5633), - [anon_sym_alignas] = ACTIONS(5633), - [anon_sym__Alignas] = ACTIONS(5633), - [sym_primitive_type] = ACTIONS(5633), - [anon_sym_enum] = ACTIONS(5633), - [anon_sym_class] = ACTIONS(5633), - [anon_sym_struct] = ACTIONS(5633), - [anon_sym_union] = ACTIONS(5633), - [anon_sym_or] = ACTIONS(5633), - [anon_sym_and] = ACTIONS(5633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5633), - [anon_sym_decltype] = ACTIONS(5633), - [anon_sym_explicit] = ACTIONS(5633), - [anon_sym_typename] = ACTIONS(5633), - [anon_sym_template] = ACTIONS(5633), - [anon_sym_operator] = ACTIONS(5633), - [anon_sym_friend] = ACTIONS(5633), - [anon_sym_concept] = ACTIONS(5633), + [STATE(1588)] = { + [sym_expression] = STATE(4584), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2262)] = { - [sym_attribute_declaration] = STATE(2285), - [aux_sym_attributed_declarator_repeat1] = STATE(2285), - [sym_identifier] = ACTIONS(6211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [aux_sym_preproc_if_token2] = ACTIONS(6213), - [aux_sym_preproc_else_token1] = ACTIONS(6213), - [aux_sym_preproc_elif_token1] = ACTIONS(6211), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6213), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6213), - [anon_sym_LPAREN2] = ACTIONS(6213), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_PERCENT] = ACTIONS(6211), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_AMP] = ACTIONS(6211), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6211), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6211), - [anon_sym_LT_LT] = ACTIONS(6211), - [anon_sym_GT_GT] = ACTIONS(6211), - [anon_sym_SEMI] = ACTIONS(6213), - [anon_sym___attribute__] = ACTIONS(6211), - [anon_sym___attribute] = ACTIONS(6211), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6040), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6213), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_QMARK] = ACTIONS(6213), - [anon_sym_STAR_EQ] = ACTIONS(6213), - [anon_sym_SLASH_EQ] = ACTIONS(6213), - [anon_sym_PERCENT_EQ] = ACTIONS(6213), - [anon_sym_PLUS_EQ] = ACTIONS(6213), - [anon_sym_DASH_EQ] = ACTIONS(6213), - [anon_sym_LT_LT_EQ] = ACTIONS(6213), - [anon_sym_GT_GT_EQ] = ACTIONS(6213), - [anon_sym_AMP_EQ] = ACTIONS(6213), - [anon_sym_CARET_EQ] = ACTIONS(6213), - [anon_sym_PIPE_EQ] = ACTIONS(6213), - [anon_sym_and_eq] = ACTIONS(6211), - [anon_sym_or_eq] = ACTIONS(6211), - [anon_sym_xor_eq] = ACTIONS(6211), - [anon_sym_LT_EQ_GT] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6211), - [anon_sym_and] = ACTIONS(6211), - [anon_sym_bitor] = ACTIONS(6211), - [anon_sym_xor] = ACTIONS(6211), - [anon_sym_bitand] = ACTIONS(6211), - [anon_sym_not_eq] = ACTIONS(6211), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6211), - [anon_sym_DOT_STAR] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [sym_comment] = ACTIONS(3), + [STATE(1589)] = { + [sym_expression] = STATE(4585), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2263)] = { - [sym_attribute_specifier] = STATE(1971), - [sym_field_declaration_list] = STATE(2524), - [sym_virtual_specifier] = STATE(7197), - [sym_base_class_clause] = STATE(7865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5674), - [anon_sym_COMMA] = ACTIONS(5674), - [anon_sym_RPAREN] = ACTIONS(5674), - [anon_sym_LPAREN2] = ACTIONS(5674), - [anon_sym_DASH] = ACTIONS(5672), - [anon_sym_PLUS] = ACTIONS(5672), - [anon_sym_STAR] = ACTIONS(5674), - [anon_sym_SLASH] = ACTIONS(5672), - [anon_sym_PERCENT] = ACTIONS(5674), - [anon_sym_PIPE_PIPE] = ACTIONS(5674), - [anon_sym_AMP_AMP] = ACTIONS(5674), - [anon_sym_PIPE] = ACTIONS(5672), - [anon_sym_CARET] = ACTIONS(5674), - [anon_sym_AMP] = ACTIONS(5672), - [anon_sym_EQ_EQ] = ACTIONS(5674), - [anon_sym_BANG_EQ] = ACTIONS(5674), - [anon_sym_GT] = ACTIONS(5672), - [anon_sym_GT_EQ] = ACTIONS(5674), - [anon_sym_LT_EQ] = ACTIONS(5672), - [anon_sym_LT] = ACTIONS(5672), - [anon_sym_LT_LT] = ACTIONS(5674), - [anon_sym_GT_GT] = ACTIONS(5674), - [anon_sym_SEMI] = ACTIONS(5674), - [anon_sym___extension__] = ACTIONS(5674), - [anon_sym___attribute__] = ACTIONS(6215), - [anon_sym___attribute] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(5678), - [anon_sym_LBRACE] = ACTIONS(6219), - [anon_sym_RBRACE] = ACTIONS(5674), - [anon_sym_LBRACK] = ACTIONS(5674), - [anon_sym_RBRACK] = ACTIONS(5674), - [anon_sym_const] = ACTIONS(5672), - [anon_sym_constexpr] = ACTIONS(5674), - [anon_sym_volatile] = ACTIONS(5674), - [anon_sym_restrict] = ACTIONS(5674), - [anon_sym___restrict__] = ACTIONS(5674), - [anon_sym__Atomic] = ACTIONS(5674), - [anon_sym__Noreturn] = ACTIONS(5674), - [anon_sym_noreturn] = ACTIONS(5674), - [anon_sym__Nonnull] = ACTIONS(5674), - [anon_sym_mutable] = ACTIONS(5674), - [anon_sym_constinit] = ACTIONS(5674), - [anon_sym_consteval] = ACTIONS(5674), - [anon_sym_alignas] = ACTIONS(5674), - [anon_sym__Alignas] = ACTIONS(5674), - [anon_sym_QMARK] = ACTIONS(5674), - [anon_sym_LT_EQ_GT] = ACTIONS(5674), - [anon_sym_or] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(5674), - [anon_sym_bitor] = ACTIONS(5674), - [anon_sym_xor] = ACTIONS(5674), - [anon_sym_bitand] = ACTIONS(5674), - [anon_sym_not_eq] = ACTIONS(5674), - [anon_sym_DASH_DASH] = ACTIONS(5674), - [anon_sym_PLUS_PLUS] = ACTIONS(5674), - [anon_sym_DOT] = ACTIONS(5672), - [anon_sym_DOT_STAR] = ACTIONS(5674), - [anon_sym_DASH_GT] = ACTIONS(5674), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6221), - [anon_sym_override] = ACTIONS(6221), - [anon_sym_requires] = ACTIONS(5674), + [STATE(1590)] = { + [sym_expression] = STATE(4961), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), }, - [STATE(2264)] = { - [sym_string_literal] = STATE(2254), - [sym_raw_string_literal] = STATE(2254), - [aux_sym_concatenated_string_repeat1] = STATE(2254), - [sym_identifier] = ACTIONS(6223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), - [anon_sym_COMMA] = ACTIONS(5419), - [anon_sym_LPAREN2] = ACTIONS(5419), - [anon_sym_DASH] = ACTIONS(5421), - [anon_sym_PLUS] = ACTIONS(5421), - [anon_sym_STAR] = ACTIONS(5421), - [anon_sym_SLASH] = ACTIONS(5421), - [anon_sym_PERCENT] = ACTIONS(5421), - [anon_sym_PIPE_PIPE] = ACTIONS(5419), - [anon_sym_AMP_AMP] = ACTIONS(5419), - [anon_sym_PIPE] = ACTIONS(5421), - [anon_sym_CARET] = ACTIONS(5421), - [anon_sym_AMP] = ACTIONS(5421), - [anon_sym_EQ_EQ] = ACTIONS(5419), - [anon_sym_BANG_EQ] = ACTIONS(5419), - [anon_sym_GT] = ACTIONS(5421), - [anon_sym_GT_EQ] = ACTIONS(5421), - [anon_sym_LT_EQ] = ACTIONS(5421), - [anon_sym_LT] = ACTIONS(5421), - [anon_sym_LT_LT] = ACTIONS(5421), - [anon_sym_GT_GT] = ACTIONS(5421), - [anon_sym_LBRACK] = ACTIONS(5419), - [anon_sym_EQ] = ACTIONS(5421), - [anon_sym_QMARK] = ACTIONS(5419), - [anon_sym_STAR_EQ] = ACTIONS(5419), - [anon_sym_SLASH_EQ] = ACTIONS(5419), - [anon_sym_PERCENT_EQ] = ACTIONS(5419), - [anon_sym_PLUS_EQ] = ACTIONS(5419), - [anon_sym_DASH_EQ] = ACTIONS(5419), - [anon_sym_LT_LT_EQ] = ACTIONS(5419), - [anon_sym_GT_GT_EQ] = ACTIONS(5421), - [anon_sym_AMP_EQ] = ACTIONS(5419), - [anon_sym_CARET_EQ] = ACTIONS(5419), - [anon_sym_PIPE_EQ] = ACTIONS(5419), - [anon_sym_and_eq] = ACTIONS(5421), - [anon_sym_or_eq] = ACTIONS(5421), - [anon_sym_xor_eq] = ACTIONS(5421), - [anon_sym_LT_EQ_GT] = ACTIONS(5419), - [anon_sym_or] = ACTIONS(5421), - [anon_sym_and] = ACTIONS(5421), - [anon_sym_bitor] = ACTIONS(5421), - [anon_sym_xor] = ACTIONS(5421), - [anon_sym_bitand] = ACTIONS(5421), - [anon_sym_not_eq] = ACTIONS(5421), - [anon_sym_DASH_DASH] = ACTIONS(5419), - [anon_sym_PLUS_PLUS] = ACTIONS(5419), - [anon_sym_DOT] = ACTIONS(5421), - [anon_sym_DOT_STAR] = ACTIONS(5419), - [anon_sym_DASH_GT] = ACTIONS(5419), - [anon_sym_L_DQUOTE] = ACTIONS(6186), - [anon_sym_u_DQUOTE] = ACTIONS(6186), - [anon_sym_U_DQUOTE] = ACTIONS(6186), - [anon_sym_u8_DQUOTE] = ACTIONS(6186), - [anon_sym_DQUOTE] = ACTIONS(6186), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5419), - [anon_sym_R_DQUOTE] = ACTIONS(6188), - [anon_sym_LR_DQUOTE] = ACTIONS(6188), - [anon_sym_uR_DQUOTE] = ACTIONS(6188), - [anon_sym_UR_DQUOTE] = ACTIONS(6188), - [anon_sym_u8R_DQUOTE] = ACTIONS(6188), - [sym_literal_suffix] = ACTIONS(5421), + [STATE(1591)] = { + [sym_expression] = STATE(5750), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(6069), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2265)] = { - [sym_attribute_specifier] = STATE(2377), - [sym_enumerator_list] = STATE(2306), - [sym_identifier] = ACTIONS(6225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [aux_sym_preproc_if_token2] = ACTIONS(6227), - [aux_sym_preproc_else_token1] = ACTIONS(6227), - [aux_sym_preproc_elif_token1] = ACTIONS(6225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6227), - [anon_sym_LPAREN2] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6225), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6225), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6227), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_AMP] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6227), - [anon_sym_BANG_EQ] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6227), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6225), - [anon_sym_SEMI] = ACTIONS(6227), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6177), - [anon_sym_RBRACE] = ACTIONS(6227), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6225), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_STAR_EQ] = ACTIONS(6227), - [anon_sym_SLASH_EQ] = ACTIONS(6227), - [anon_sym_PERCENT_EQ] = ACTIONS(6227), - [anon_sym_PLUS_EQ] = ACTIONS(6227), - [anon_sym_DASH_EQ] = ACTIONS(6227), - [anon_sym_LT_LT_EQ] = ACTIONS(6227), - [anon_sym_GT_GT_EQ] = ACTIONS(6227), - [anon_sym_AMP_EQ] = ACTIONS(6227), - [anon_sym_CARET_EQ] = ACTIONS(6227), - [anon_sym_PIPE_EQ] = ACTIONS(6227), - [anon_sym_and_eq] = ACTIONS(6225), - [anon_sym_or_eq] = ACTIONS(6225), - [anon_sym_xor_eq] = ACTIONS(6225), - [anon_sym_LT_EQ_GT] = ACTIONS(6227), - [anon_sym_or] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_bitor] = ACTIONS(6225), - [anon_sym_xor] = ACTIONS(6225), - [anon_sym_bitand] = ACTIONS(6225), - [anon_sym_not_eq] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6227), - [anon_sym_DOT] = ACTIONS(6225), - [anon_sym_DOT_STAR] = ACTIONS(6227), - [anon_sym_DASH_GT] = ACTIONS(6227), - [sym_comment] = ACTIONS(3), + [STATE(1592)] = { + [sym_expression] = STATE(6391), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2266)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_RPAREN] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_RBRACE] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_RBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), + [STATE(1593)] = { + [sym_expression] = STATE(5180), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2267)] = { - [sym_string_literal] = STATE(1726), - [sym_template_argument_list] = STATE(2316), - [sym_raw_string_literal] = STATE(1726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5394), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(4161), - [anon_sym_SLASH_EQ] = ACTIONS(4161), - [anon_sym_PERCENT_EQ] = ACTIONS(4161), - [anon_sym_PLUS_EQ] = ACTIONS(4161), - [anon_sym_DASH_EQ] = ACTIONS(4161), - [anon_sym_LT_LT_EQ] = ACTIONS(4161), - [anon_sym_GT_GT_EQ] = ACTIONS(4161), - [anon_sym_AMP_EQ] = ACTIONS(4161), - [anon_sym_CARET_EQ] = ACTIONS(4161), - [anon_sym_PIPE_EQ] = ACTIONS(4161), - [anon_sym_and_eq] = ACTIONS(4161), - [anon_sym_or_eq] = ACTIONS(4161), - [anon_sym_xor_eq] = ACTIONS(4161), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(1974), - [anon_sym_u_DQUOTE] = ACTIONS(1974), - [anon_sym_U_DQUOTE] = ACTIONS(1974), - [anon_sym_u8_DQUOTE] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1984), - [anon_sym_LR_DQUOTE] = ACTIONS(1984), - [anon_sym_uR_DQUOTE] = ACTIONS(1984), - [anon_sym_UR_DQUOTE] = ACTIONS(1984), - [anon_sym_u8R_DQUOTE] = ACTIONS(1984), + [STATE(1594)] = { + [sym_expression] = STATE(5334), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2268)] = { - [sym_string_literal] = STATE(3406), - [sym_template_argument_list] = STATE(4515), - [sym_raw_string_literal] = STATE(3406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4169), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5079), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(5084), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(5086), - [anon_sym_SLASH_EQ] = ACTIONS(5086), - [anon_sym_PERCENT_EQ] = ACTIONS(5086), - [anon_sym_PLUS_EQ] = ACTIONS(5086), - [anon_sym_DASH_EQ] = ACTIONS(5086), - [anon_sym_LT_LT_EQ] = ACTIONS(5086), - [anon_sym_GT_GT_EQ] = ACTIONS(5084), - [anon_sym_AMP_EQ] = ACTIONS(5086), - [anon_sym_CARET_EQ] = ACTIONS(5086), - [anon_sym_PIPE_EQ] = ACTIONS(5086), - [anon_sym_and_eq] = ACTIONS(5086), - [anon_sym_or_eq] = ACTIONS(5086), - [anon_sym_xor_eq] = ACTIONS(5086), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(5088), - [anon_sym_u_DQUOTE] = ACTIONS(5088), - [anon_sym_U_DQUOTE] = ACTIONS(5088), - [anon_sym_u8_DQUOTE] = ACTIONS(5088), - [anon_sym_DQUOTE] = ACTIONS(5088), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4161), - [anon_sym_R_DQUOTE] = ACTIONS(5094), - [anon_sym_LR_DQUOTE] = ACTIONS(5094), - [anon_sym_uR_DQUOTE] = ACTIONS(5094), - [anon_sym_UR_DQUOTE] = ACTIONS(5094), - [anon_sym_u8R_DQUOTE] = ACTIONS(5094), + [STATE(1595)] = { + [sym_expression] = STATE(5335), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2269)] = { - [sym_string_literal] = STATE(1995), - [sym_raw_string_literal] = STATE(1995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), - [anon_sym_COMMA] = ACTIONS(5790), - [anon_sym_LPAREN2] = ACTIONS(5790), - [anon_sym_DASH] = ACTIONS(5788), - [anon_sym_PLUS] = ACTIONS(5788), - [anon_sym_STAR] = ACTIONS(5788), - [anon_sym_SLASH] = ACTIONS(5788), - [anon_sym_PERCENT] = ACTIONS(5788), - [anon_sym_PIPE_PIPE] = ACTIONS(5790), - [anon_sym_AMP_AMP] = ACTIONS(5790), - [anon_sym_PIPE] = ACTIONS(5788), - [anon_sym_CARET] = ACTIONS(5788), - [anon_sym_AMP] = ACTIONS(5788), - [anon_sym_EQ_EQ] = ACTIONS(5790), - [anon_sym_BANG_EQ] = ACTIONS(5790), - [anon_sym_GT] = ACTIONS(5788), - [anon_sym_GT_EQ] = ACTIONS(5790), - [anon_sym_LT_EQ] = ACTIONS(5788), - [anon_sym_LT] = ACTIONS(5788), - [anon_sym_LT_LT] = ACTIONS(5788), - [anon_sym_GT_GT] = ACTIONS(5788), - [anon_sym_SEMI] = ACTIONS(5790), - [anon_sym___attribute__] = ACTIONS(5788), - [anon_sym___attribute] = ACTIONS(5788), - [anon_sym_LBRACK] = ACTIONS(5790), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_QMARK] = ACTIONS(5790), - [anon_sym_STAR_EQ] = ACTIONS(5790), - [anon_sym_SLASH_EQ] = ACTIONS(5790), - [anon_sym_PERCENT_EQ] = ACTIONS(5790), - [anon_sym_PLUS_EQ] = ACTIONS(5790), - [anon_sym_DASH_EQ] = ACTIONS(5790), - [anon_sym_LT_LT_EQ] = ACTIONS(5790), - [anon_sym_GT_GT_EQ] = ACTIONS(5790), - [anon_sym_AMP_EQ] = ACTIONS(5790), - [anon_sym_CARET_EQ] = ACTIONS(5790), - [anon_sym_PIPE_EQ] = ACTIONS(5790), - [anon_sym_and_eq] = ACTIONS(5788), - [anon_sym_or_eq] = ACTIONS(5788), - [anon_sym_xor_eq] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5790), - [anon_sym_or] = ACTIONS(5788), - [anon_sym_and] = ACTIONS(5788), - [anon_sym_bitor] = ACTIONS(5788), - [anon_sym_xor] = ACTIONS(5788), - [anon_sym_bitand] = ACTIONS(5788), - [anon_sym_not_eq] = ACTIONS(5788), - [anon_sym_DASH_DASH] = ACTIONS(5790), - [anon_sym_PLUS_PLUS] = ACTIONS(5790), - [anon_sym_DOT] = ACTIONS(5788), - [anon_sym_DOT_STAR] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(5790), - [anon_sym_L_DQUOTE] = ACTIONS(5940), - [anon_sym_u_DQUOTE] = ACTIONS(5940), - [anon_sym_U_DQUOTE] = ACTIONS(5940), - [anon_sym_u8_DQUOTE] = ACTIONS(5940), - [anon_sym_DQUOTE] = ACTIONS(5940), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5942), - [anon_sym_LR_DQUOTE] = ACTIONS(5942), - [anon_sym_uR_DQUOTE] = ACTIONS(5942), - [anon_sym_UR_DQUOTE] = ACTIONS(5942), - [anon_sym_u8R_DQUOTE] = ACTIONS(5942), - [sym_literal_suffix] = ACTIONS(5788), + [STATE(1596)] = { + [sym_expression] = STATE(5338), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2270)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(6234), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(6236), - [anon_sym_SLASH_EQ] = ACTIONS(6236), - [anon_sym_PERCENT_EQ] = ACTIONS(6236), - [anon_sym_PLUS_EQ] = ACTIONS(6236), - [anon_sym_DASH_EQ] = ACTIONS(6236), - [anon_sym_LT_LT_EQ] = ACTIONS(6236), - [anon_sym_GT_GT_EQ] = ACTIONS(6236), - [anon_sym_AMP_EQ] = ACTIONS(6236), - [anon_sym_CARET_EQ] = ACTIONS(6236), - [anon_sym_PIPE_EQ] = ACTIONS(6236), - [anon_sym_and_eq] = ACTIONS(6236), - [anon_sym_or_eq] = ACTIONS(6236), - [anon_sym_xor_eq] = ACTIONS(6236), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1597)] = { + [sym_expression] = STATE(5339), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2271)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6238), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(6240), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(6133), - [anon_sym_SLASH_EQ] = ACTIONS(6133), - [anon_sym_PERCENT_EQ] = ACTIONS(6133), - [anon_sym_PLUS_EQ] = ACTIONS(6133), - [anon_sym_DASH_EQ] = ACTIONS(6133), - [anon_sym_LT_LT_EQ] = ACTIONS(6133), - [anon_sym_GT_GT_EQ] = ACTIONS(6133), - [anon_sym_AMP_EQ] = ACTIONS(6133), - [anon_sym_CARET_EQ] = ACTIONS(6133), - [anon_sym_PIPE_EQ] = ACTIONS(6133), - [anon_sym_and_eq] = ACTIONS(6133), - [anon_sym_or_eq] = ACTIONS(6133), - [anon_sym_xor_eq] = ACTIONS(6133), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1598)] = { + [sym_expression] = STATE(5340), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2272)] = { - [sym_template_argument_list] = STATE(1626), - [aux_sym_sized_type_specifier_repeat1] = STATE(2340), - [sym_identifier] = ACTIONS(6243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6245), - [anon_sym_COMMA] = ACTIONS(6245), - [aux_sym_preproc_if_token2] = ACTIONS(6245), - [aux_sym_preproc_else_token1] = ACTIONS(6245), - [aux_sym_preproc_elif_token1] = ACTIONS(6243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6245), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6245), - [anon_sym_LPAREN2] = ACTIONS(6245), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6243), - [anon_sym_PIPE_PIPE] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_EQ_EQ] = ACTIONS(6245), - [anon_sym_BANG_EQ] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_GT_EQ] = ACTIONS(6245), - [anon_sym_LT_EQ] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6243), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym___attribute__] = ACTIONS(6243), - [anon_sym___attribute] = ACTIONS(6243), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_signed] = ACTIONS(6144), - [anon_sym_unsigned] = ACTIONS(6144), - [anon_sym_long] = ACTIONS(6144), - [anon_sym_short] = ACTIONS(6144), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_QMARK] = ACTIONS(6245), - [anon_sym_STAR_EQ] = ACTIONS(6245), - [anon_sym_SLASH_EQ] = ACTIONS(6245), - [anon_sym_PERCENT_EQ] = ACTIONS(6245), - [anon_sym_PLUS_EQ] = ACTIONS(6245), - [anon_sym_DASH_EQ] = ACTIONS(6245), - [anon_sym_LT_LT_EQ] = ACTIONS(6245), - [anon_sym_GT_GT_EQ] = ACTIONS(6245), - [anon_sym_AMP_EQ] = ACTIONS(6245), - [anon_sym_CARET_EQ] = ACTIONS(6245), - [anon_sym_PIPE_EQ] = ACTIONS(6245), - [anon_sym_and_eq] = ACTIONS(6243), - [anon_sym_or_eq] = ACTIONS(6243), - [anon_sym_xor_eq] = ACTIONS(6243), - [anon_sym_LT_EQ_GT] = ACTIONS(6245), - [anon_sym_or] = ACTIONS(6243), - [anon_sym_and] = ACTIONS(6243), - [anon_sym_bitor] = ACTIONS(6243), - [anon_sym_xor] = ACTIONS(6243), - [anon_sym_bitand] = ACTIONS(6243), - [anon_sym_not_eq] = ACTIONS(6243), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_DOT_STAR] = ACTIONS(6245), - [anon_sym_DASH_GT] = ACTIONS(6245), - [sym_comment] = ACTIONS(3), + [STATE(1599)] = { + [sym_expression] = STATE(5341), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2273)] = { - [sym_identifier] = ACTIONS(6247), - [anon_sym_LPAREN2] = ACTIONS(6249), - [anon_sym_TILDE] = ACTIONS(6249), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(6249), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6247), - [anon_sym___extension__] = ACTIONS(6247), - [anon_sym_virtual] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym___attribute__] = ACTIONS(6247), - [anon_sym___attribute] = ACTIONS(6247), - [anon_sym_using] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6249), - [anon_sym___declspec] = ACTIONS(6247), - [anon_sym___based] = ACTIONS(6247), - [anon_sym___cdecl] = ACTIONS(6247), - [anon_sym___clrcall] = ACTIONS(6247), - [anon_sym___stdcall] = ACTIONS(6247), - [anon_sym___fastcall] = ACTIONS(6247), - [anon_sym___thiscall] = ACTIONS(6247), - [anon_sym___vectorcall] = ACTIONS(6247), - [anon_sym_signed] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym___inline] = ACTIONS(6247), - [anon_sym___inline__] = ACTIONS(6247), - [anon_sym___forceinline] = ACTIONS(6247), - [anon_sym_thread_local] = ACTIONS(6247), - [anon_sym___thread] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym___restrict__] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym__Noreturn] = ACTIONS(6247), - [anon_sym_noreturn] = ACTIONS(6247), - [anon_sym__Nonnull] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_constinit] = ACTIONS(6247), - [anon_sym_consteval] = ACTIONS(6247), - [anon_sym_alignas] = ACTIONS(6247), - [anon_sym__Alignas] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_class] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_or] = ACTIONS(6247), - [anon_sym_and] = ACTIONS(6209), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6247), - [anon_sym_decltype] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_template] = ACTIONS(6247), - [anon_sym_operator] = ACTIONS(6247), - [anon_sym_friend] = ACTIONS(6247), - [anon_sym_concept] = ACTIONS(6247), + [STATE(1600)] = { + [sym_expression] = STATE(5343), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2274)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_RPAREN] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5493), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5495), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5493), - [anon_sym_GT_GT] = ACTIONS(5493), - [anon_sym_SEMI] = ACTIONS(5495), - [anon_sym_COLON] = ACTIONS(5495), - [anon_sym_RBRACE] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_RBRACK] = ACTIONS(5495), - [anon_sym_EQ] = ACTIONS(5493), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_STAR_EQ] = ACTIONS(5495), - [anon_sym_SLASH_EQ] = ACTIONS(5495), - [anon_sym_PERCENT_EQ] = ACTIONS(5495), - [anon_sym_PLUS_EQ] = ACTIONS(5495), - [anon_sym_DASH_EQ] = ACTIONS(5495), - [anon_sym_LT_LT_EQ] = ACTIONS(5495), - [anon_sym_GT_GT_EQ] = ACTIONS(5495), - [anon_sym_AMP_EQ] = ACTIONS(5495), - [anon_sym_CARET_EQ] = ACTIONS(5495), - [anon_sym_PIPE_EQ] = ACTIONS(5495), - [anon_sym_and_eq] = ACTIONS(5493), - [anon_sym_or_eq] = ACTIONS(5493), - [anon_sym_xor_eq] = ACTIONS(5493), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5493), - [anon_sym_and] = ACTIONS(5493), - [anon_sym_bitor] = ACTIONS(5493), - [anon_sym_xor] = ACTIONS(5493), - [anon_sym_bitand] = ACTIONS(5493), - [anon_sym_not_eq] = ACTIONS(5493), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [anon_sym_L_DQUOTE] = ACTIONS(5495), - [anon_sym_u_DQUOTE] = ACTIONS(5495), - [anon_sym_U_DQUOTE] = ACTIONS(5495), - [anon_sym_u8_DQUOTE] = ACTIONS(5495), - [anon_sym_DQUOTE] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5495), - [anon_sym_LR_DQUOTE] = ACTIONS(5495), - [anon_sym_uR_DQUOTE] = ACTIONS(5495), - [anon_sym_UR_DQUOTE] = ACTIONS(5495), - [anon_sym_u8R_DQUOTE] = ACTIONS(5495), - [sym_literal_suffix] = ACTIONS(5493), + [STATE(1601)] = { + [sym_expression] = STATE(5344), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2275)] = { - [sym_argument_list] = STATE(2436), - [sym_initializer_list] = STATE(2436), - [sym_identifier] = ACTIONS(6251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), - [anon_sym_COMMA] = ACTIONS(6253), - [anon_sym_RPAREN] = ACTIONS(6253), - [aux_sym_preproc_if_token2] = ACTIONS(6253), - [aux_sym_preproc_else_token1] = ACTIONS(6253), - [aux_sym_preproc_elif_token1] = ACTIONS(6251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6253), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_PERCENT] = ACTIONS(6251), - [anon_sym_PIPE_PIPE] = ACTIONS(6253), - [anon_sym_AMP_AMP] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_AMP] = ACTIONS(6251), - [anon_sym_EQ_EQ] = ACTIONS(6253), - [anon_sym_BANG_EQ] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6251), - [anon_sym_GT_EQ] = ACTIONS(6253), - [anon_sym_LT_EQ] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6251), - [anon_sym_LT_LT] = ACTIONS(6251), - [anon_sym_GT_GT] = ACTIONS(6251), - [anon_sym_SEMI] = ACTIONS(6253), - [anon_sym___attribute__] = ACTIONS(6251), - [anon_sym___attribute] = ACTIONS(6251), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6253), - [anon_sym_RBRACK] = ACTIONS(6253), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_QMARK] = ACTIONS(6253), - [anon_sym_STAR_EQ] = ACTIONS(6253), - [anon_sym_SLASH_EQ] = ACTIONS(6253), - [anon_sym_PERCENT_EQ] = ACTIONS(6253), - [anon_sym_PLUS_EQ] = ACTIONS(6253), - [anon_sym_DASH_EQ] = ACTIONS(6253), - [anon_sym_LT_LT_EQ] = ACTIONS(6253), - [anon_sym_GT_GT_EQ] = ACTIONS(6253), - [anon_sym_AMP_EQ] = ACTIONS(6253), - [anon_sym_CARET_EQ] = ACTIONS(6253), - [anon_sym_PIPE_EQ] = ACTIONS(6253), - [anon_sym_and_eq] = ACTIONS(6251), - [anon_sym_or_eq] = ACTIONS(6251), - [anon_sym_xor_eq] = ACTIONS(6251), - [anon_sym_LT_EQ_GT] = ACTIONS(6253), - [anon_sym_or] = ACTIONS(6251), - [anon_sym_and] = ACTIONS(6251), - [anon_sym_bitor] = ACTIONS(6251), - [anon_sym_xor] = ACTIONS(6251), - [anon_sym_bitand] = ACTIONS(6251), - [anon_sym_not_eq] = ACTIONS(6251), - [anon_sym_DASH_DASH] = ACTIONS(6253), - [anon_sym_PLUS_PLUS] = ACTIONS(6253), - [anon_sym_DOT] = ACTIONS(6251), - [anon_sym_DOT_STAR] = ACTIONS(6253), - [anon_sym_DASH_GT] = ACTIONS(6253), - [sym_comment] = ACTIONS(3), + [STATE(1602)] = { + [sym_expression] = STATE(5345), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2276)] = { - [sym_argument_list] = STATE(2466), - [sym_initializer_list] = STATE(2466), - [sym_identifier] = ACTIONS(6255), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6257), - [anon_sym_COMMA] = ACTIONS(6257), - [anon_sym_RPAREN] = ACTIONS(6257), - [aux_sym_preproc_if_token2] = ACTIONS(6257), - [aux_sym_preproc_else_token1] = ACTIONS(6257), - [aux_sym_preproc_elif_token1] = ACTIONS(6255), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6257), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6257), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_PIPE_PIPE] = ACTIONS(6257), - [anon_sym_AMP_AMP] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_AMP] = ACTIONS(6255), - [anon_sym_EQ_EQ] = ACTIONS(6257), - [anon_sym_BANG_EQ] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6255), - [anon_sym_GT_EQ] = ACTIONS(6257), - [anon_sym_LT_EQ] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6255), - [anon_sym_LT_LT] = ACTIONS(6255), - [anon_sym_GT_GT] = ACTIONS(6255), - [anon_sym_SEMI] = ACTIONS(6257), - [anon_sym___attribute__] = ACTIONS(6255), - [anon_sym___attribute] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6257), - [anon_sym_RBRACK] = ACTIONS(6257), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6257), - [anon_sym_STAR_EQ] = ACTIONS(6257), - [anon_sym_SLASH_EQ] = ACTIONS(6257), - [anon_sym_PERCENT_EQ] = ACTIONS(6257), - [anon_sym_PLUS_EQ] = ACTIONS(6257), - [anon_sym_DASH_EQ] = ACTIONS(6257), - [anon_sym_LT_LT_EQ] = ACTIONS(6257), - [anon_sym_GT_GT_EQ] = ACTIONS(6257), - [anon_sym_AMP_EQ] = ACTIONS(6257), - [anon_sym_CARET_EQ] = ACTIONS(6257), - [anon_sym_PIPE_EQ] = ACTIONS(6257), - [anon_sym_and_eq] = ACTIONS(6255), - [anon_sym_or_eq] = ACTIONS(6255), - [anon_sym_xor_eq] = ACTIONS(6255), - [anon_sym_LT_EQ_GT] = ACTIONS(6257), - [anon_sym_or] = ACTIONS(6255), - [anon_sym_and] = ACTIONS(6255), - [anon_sym_bitor] = ACTIONS(6255), - [anon_sym_xor] = ACTIONS(6255), - [anon_sym_bitand] = ACTIONS(6255), - [anon_sym_not_eq] = ACTIONS(6255), - [anon_sym_DASH_DASH] = ACTIONS(6257), - [anon_sym_PLUS_PLUS] = ACTIONS(6257), - [anon_sym_DOT] = ACTIONS(6255), - [anon_sym_DOT_STAR] = ACTIONS(6257), - [anon_sym_DASH_GT] = ACTIONS(6257), - [sym_comment] = ACTIONS(3), + [STATE(1603)] = { + [sym_expression] = STATE(5346), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), }, - [STATE(2277)] = { - [sym_argument_list] = STATE(2458), - [sym_initializer_list] = STATE(2458), - [sym_identifier] = ACTIONS(6259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6261), - [anon_sym_COMMA] = ACTIONS(6261), - [anon_sym_RPAREN] = ACTIONS(6261), - [aux_sym_preproc_if_token2] = ACTIONS(6261), - [aux_sym_preproc_else_token1] = ACTIONS(6261), - [aux_sym_preproc_elif_token1] = ACTIONS(6259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6261), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6261), - [anon_sym_LPAREN2] = ACTIONS(6082), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6261), - [anon_sym_AMP_AMP] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_AMP] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6261), - [anon_sym_BANG_EQ] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6261), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6259), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6259), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym___attribute__] = ACTIONS(6259), - [anon_sym___attribute] = ACTIONS(6259), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_RBRACK] = ACTIONS(6261), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_STAR_EQ] = ACTIONS(6261), - [anon_sym_SLASH_EQ] = ACTIONS(6261), - [anon_sym_PERCENT_EQ] = ACTIONS(6261), - [anon_sym_PLUS_EQ] = ACTIONS(6261), - [anon_sym_DASH_EQ] = ACTIONS(6261), - [anon_sym_LT_LT_EQ] = ACTIONS(6261), - [anon_sym_GT_GT_EQ] = ACTIONS(6261), - [anon_sym_AMP_EQ] = ACTIONS(6261), - [anon_sym_CARET_EQ] = ACTIONS(6261), - [anon_sym_PIPE_EQ] = ACTIONS(6261), - [anon_sym_and_eq] = ACTIONS(6259), - [anon_sym_or_eq] = ACTIONS(6259), - [anon_sym_xor_eq] = ACTIONS(6259), - [anon_sym_LT_EQ_GT] = ACTIONS(6261), - [anon_sym_or] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_bitor] = ACTIONS(6259), - [anon_sym_xor] = ACTIONS(6259), - [anon_sym_bitand] = ACTIONS(6259), - [anon_sym_not_eq] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_DOT] = ACTIONS(6259), - [anon_sym_DOT_STAR] = ACTIONS(6261), - [anon_sym_DASH_GT] = ACTIONS(6261), - [sym_comment] = ACTIONS(3), + [STATE(1604)] = { + [sym_expression] = STATE(5659), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2278)] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym___attribute] = ACTIONS(4996), - [anon_sym_using] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym___cdecl] = ACTIONS(4996), - [anon_sym___clrcall] = ACTIONS(4996), - [anon_sym___stdcall] = ACTIONS(4996), - [anon_sym___fastcall] = ACTIONS(4996), - [anon_sym___thiscall] = ACTIONS(4996), - [anon_sym___vectorcall] = ACTIONS(4996), - [anon_sym_signed] = ACTIONS(4996), - [anon_sym_unsigned] = ACTIONS(4996), - [anon_sym_long] = ACTIONS(4996), - [anon_sym_short] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym__Nonnull] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym__Alignas] = ACTIONS(4996), - [sym_primitive_type] = ACTIONS(4996), - [anon_sym_enum] = ACTIONS(4996), - [anon_sym_class] = ACTIONS(4996), - [anon_sym_struct] = ACTIONS(4996), - [anon_sym_union] = ACTIONS(4996), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_explicit] = ACTIONS(4996), - [anon_sym_typename] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_friend] = ACTIONS(4996), - [anon_sym_concept] = ACTIONS(4996), + [STATE(1605)] = { + [sym_expression] = STATE(4621), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2279)] = { - [sym_string_literal] = STATE(2264), - [sym_raw_string_literal] = STATE(2264), - [aux_sym_concatenated_string_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(6263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5453), - [anon_sym_COMMA] = ACTIONS(5453), - [anon_sym_LPAREN2] = ACTIONS(5453), - [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(5453), - [anon_sym_AMP_AMP] = ACTIONS(5453), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5453), - [anon_sym_BANG_EQ] = ACTIONS(5453), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5455), - [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_LBRACK] = ACTIONS(5453), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5453), - [anon_sym_STAR_EQ] = ACTIONS(5453), - [anon_sym_SLASH_EQ] = ACTIONS(5453), - [anon_sym_PERCENT_EQ] = ACTIONS(5453), - [anon_sym_PLUS_EQ] = ACTIONS(5453), - [anon_sym_DASH_EQ] = ACTIONS(5453), - [anon_sym_LT_LT_EQ] = ACTIONS(5453), - [anon_sym_GT_GT_EQ] = ACTIONS(5455), - [anon_sym_AMP_EQ] = ACTIONS(5453), - [anon_sym_CARET_EQ] = ACTIONS(5453), - [anon_sym_PIPE_EQ] = ACTIONS(5453), - [anon_sym_and_eq] = ACTIONS(5455), - [anon_sym_or_eq] = ACTIONS(5455), - [anon_sym_xor_eq] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5453), - [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(5453), - [anon_sym_PLUS_PLUS] = ACTIONS(5453), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5453), - [anon_sym_DASH_GT] = ACTIONS(5453), - [anon_sym_L_DQUOTE] = ACTIONS(6186), - [anon_sym_u_DQUOTE] = ACTIONS(6186), - [anon_sym_U_DQUOTE] = ACTIONS(6186), - [anon_sym_u8_DQUOTE] = ACTIONS(6186), - [anon_sym_DQUOTE] = ACTIONS(6186), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5453), - [anon_sym_R_DQUOTE] = ACTIONS(6188), - [anon_sym_LR_DQUOTE] = ACTIONS(6188), - [anon_sym_uR_DQUOTE] = ACTIONS(6188), - [anon_sym_UR_DQUOTE] = ACTIONS(6188), - [anon_sym_u8R_DQUOTE] = ACTIONS(6188), - [sym_literal_suffix] = ACTIONS(5455), + [STATE(1606)] = { + [sym_expression] = STATE(5712), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2280)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1727), - [sym_identifier] = ACTIONS(5215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5212), - [anon_sym_COMMA] = ACTIONS(5212), - [aux_sym_preproc_if_token2] = ACTIONS(5212), - [aux_sym_preproc_else_token1] = ACTIONS(5212), - [aux_sym_preproc_elif_token1] = ACTIONS(5215), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5212), - [anon_sym_LPAREN2] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5215), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5212), - [anon_sym_AMP_AMP] = ACTIONS(5212), - [anon_sym_PIPE] = ACTIONS(5215), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_AMP] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5212), - [anon_sym_BANG_EQ] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5215), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5215), - [anon_sym___attribute] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5212), - [anon_sym_signed] = ACTIONS(5457), - [anon_sym_unsigned] = ACTIONS(5457), - [anon_sym_long] = ACTIONS(5457), - [anon_sym_short] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_LT_EQ_GT] = ACTIONS(5212), - [anon_sym_or] = ACTIONS(5215), - [anon_sym_and] = ACTIONS(5215), - [anon_sym_bitor] = ACTIONS(5215), - [anon_sym_xor] = ACTIONS(5215), - [anon_sym_bitand] = ACTIONS(5215), - [anon_sym_not_eq] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5212), - [anon_sym_PLUS_PLUS] = ACTIONS(5212), - [anon_sym_DOT] = ACTIONS(5215), - [anon_sym_DOT_STAR] = ACTIONS(5212), - [anon_sym_DASH_GT] = ACTIONS(5212), - [sym_comment] = ACTIONS(3), + [STATE(1607)] = { + [sym_expression] = STATE(3665), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2281)] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_STAR] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym_virtual] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym___attribute] = ACTIONS(5000), - [anon_sym_using] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), - [anon_sym___declspec] = ACTIONS(5000), - [anon_sym___based] = ACTIONS(5000), - [anon_sym___cdecl] = ACTIONS(5000), - [anon_sym___clrcall] = ACTIONS(5000), - [anon_sym___stdcall] = ACTIONS(5000), - [anon_sym___fastcall] = ACTIONS(5000), - [anon_sym___thiscall] = ACTIONS(5000), - [anon_sym___vectorcall] = ACTIONS(5000), - [anon_sym_signed] = ACTIONS(5000), - [anon_sym_unsigned] = ACTIONS(5000), - [anon_sym_long] = ACTIONS(5000), - [anon_sym_short] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym__Nonnull] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym__Alignas] = ACTIONS(5000), - [sym_primitive_type] = ACTIONS(5000), - [anon_sym_enum] = ACTIONS(5000), - [anon_sym_class] = ACTIONS(5000), - [anon_sym_struct] = ACTIONS(5000), - [anon_sym_union] = ACTIONS(5000), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_explicit] = ACTIONS(5000), - [anon_sym_typename] = ACTIONS(5000), - [anon_sym_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_friend] = ACTIONS(5000), - [anon_sym_concept] = ACTIONS(5000), + [STATE(1608)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2282)] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym_virtual] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym___attribute] = ACTIONS(5004), - [anon_sym_using] = 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___cdecl] = ACTIONS(5004), - [anon_sym___clrcall] = ACTIONS(5004), - [anon_sym___stdcall] = ACTIONS(5004), - [anon_sym___fastcall] = ACTIONS(5004), - [anon_sym___thiscall] = ACTIONS(5004), - [anon_sym___vectorcall] = ACTIONS(5004), - [anon_sym_signed] = ACTIONS(5004), - [anon_sym_unsigned] = ACTIONS(5004), - [anon_sym_long] = ACTIONS(5004), - [anon_sym_short] = ACTIONS(5004), - [anon_sym_LBRACK] = 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__Nonnull] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym__Alignas] = ACTIONS(5004), - [sym_primitive_type] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_union] = ACTIONS(5004), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_explicit] = ACTIONS(5004), - [anon_sym_typename] = ACTIONS(5004), - [anon_sym_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_friend] = ACTIONS(5004), - [anon_sym_concept] = ACTIONS(5004), + [STATE(1609)] = { + [sym_expression] = STATE(6337), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2283)] = { - [sym_decltype_auto] = STATE(1917), - [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(5663), - [anon_sym___attribute__] = ACTIONS(5663), - [anon_sym___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_const] = ACTIONS(5661), - [anon_sym_constexpr] = ACTIONS(5663), - [anon_sym_volatile] = ACTIONS(5663), - [anon_sym_restrict] = ACTIONS(5663), - [anon_sym___restrict__] = ACTIONS(5663), - [anon_sym__Atomic] = ACTIONS(5663), - [anon_sym__Noreturn] = ACTIONS(5663), - [anon_sym_noreturn] = ACTIONS(5663), - [anon_sym__Nonnull] = ACTIONS(5663), - [anon_sym_mutable] = ACTIONS(5663), - [anon_sym_constinit] = ACTIONS(5663), - [anon_sym_consteval] = ACTIONS(5663), - [anon_sym_alignas] = ACTIONS(5663), - [anon_sym__Alignas] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [anon_sym_or] = ACTIONS(5663), - [anon_sym_and] = ACTIONS(5663), - [anon_sym_bitor] = ACTIONS(5663), - [anon_sym_xor] = ACTIONS(5663), - [anon_sym_bitand] = ACTIONS(5663), - [anon_sym_not_eq] = ACTIONS(5663), - [anon_sym_DASH_DASH] = ACTIONS(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(6265), - [anon_sym_decltype] = ACTIONS(5072), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - [anon_sym_requires] = ACTIONS(5663), + [STATE(1610)] = { + [sym_expression] = STATE(6339), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2284)] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), - [anon_sym_COMMA] = ACTIONS(4161), - [anon_sym_LPAREN2] = ACTIONS(4161), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4161), - [anon_sym_AMP_AMP] = ACTIONS(4161), - [anon_sym_PIPE] = ACTIONS(4169), - [anon_sym_CARET] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [anon_sym_EQ_EQ] = ACTIONS(4161), - [anon_sym_BANG_EQ] = ACTIONS(4161), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_GT_EQ] = ACTIONS(4161), - [anon_sym_LT_EQ] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(5096), - [anon_sym_LT_LT] = ACTIONS(4169), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4161), - [anon_sym_RBRACK] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(4161), - [anon_sym_STAR_EQ] = ACTIONS(6133), - [anon_sym_SLASH_EQ] = ACTIONS(6133), - [anon_sym_PERCENT_EQ] = ACTIONS(6133), - [anon_sym_PLUS_EQ] = ACTIONS(6133), - [anon_sym_DASH_EQ] = ACTIONS(6133), - [anon_sym_LT_LT_EQ] = ACTIONS(6133), - [anon_sym_GT_GT_EQ] = ACTIONS(6133), - [anon_sym_AMP_EQ] = ACTIONS(6133), - [anon_sym_CARET_EQ] = ACTIONS(6133), - [anon_sym_PIPE_EQ] = ACTIONS(6133), - [anon_sym_and_eq] = ACTIONS(6133), - [anon_sym_or_eq] = ACTIONS(6133), - [anon_sym_xor_eq] = ACTIONS(6133), - [anon_sym_LT_EQ_GT] = ACTIONS(4161), - [anon_sym_or] = ACTIONS(4169), - [anon_sym_and] = ACTIONS(4169), - [anon_sym_bitor] = ACTIONS(4161), - [anon_sym_xor] = ACTIONS(4169), - [anon_sym_bitand] = ACTIONS(4161), - [anon_sym_not_eq] = ACTIONS(4161), - [anon_sym_DASH_DASH] = ACTIONS(4161), - [anon_sym_PLUS_PLUS] = ACTIONS(4161), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_DOT_STAR] = ACTIONS(4161), - [anon_sym_DASH_GT] = ACTIONS(4161), - [anon_sym_L_DQUOTE] = ACTIONS(3641), - [anon_sym_u_DQUOTE] = ACTIONS(3641), - [anon_sym_U_DQUOTE] = ACTIONS(3641), - [anon_sym_u8_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3645), - [anon_sym_LR_DQUOTE] = ACTIONS(3645), - [anon_sym_uR_DQUOTE] = ACTIONS(3645), - [anon_sym_UR_DQUOTE] = ACTIONS(3645), - [anon_sym_u8R_DQUOTE] = ACTIONS(3645), + [STATE(1611)] = { + [sym_expression] = STATE(6341), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2285)] = { - [sym_attribute_declaration] = STATE(2285), - [aux_sym_attributed_declarator_repeat1] = STATE(2285), - [sym_identifier] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [aux_sym_preproc_if_token2] = ACTIONS(6267), - [aux_sym_preproc_else_token1] = ACTIONS(6267), - [aux_sym_preproc_elif_token1] = ACTIONS(2039), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6267), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6267), - [anon_sym_LPAREN2] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PLUS] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2039), - [anon_sym_PERCENT] = ACTIONS(2039), - [anon_sym_PIPE_PIPE] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_EQ_EQ] = ACTIONS(6267), - [anon_sym_BANG_EQ] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(6267), - [anon_sym_LT_EQ] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym___attribute__] = ACTIONS(2039), - [anon_sym___attribute] = ACTIONS(2039), - [anon_sym_COLON] = ACTIONS(6267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6269), - [anon_sym_RBRACE] = ACTIONS(6267), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(2039), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_STAR_EQ] = ACTIONS(6267), - [anon_sym_SLASH_EQ] = ACTIONS(6267), - [anon_sym_PERCENT_EQ] = ACTIONS(6267), - [anon_sym_PLUS_EQ] = ACTIONS(6267), - [anon_sym_DASH_EQ] = ACTIONS(6267), - [anon_sym_LT_LT_EQ] = ACTIONS(6267), - [anon_sym_GT_GT_EQ] = ACTIONS(6267), - [anon_sym_AMP_EQ] = ACTIONS(6267), - [anon_sym_CARET_EQ] = ACTIONS(6267), - [anon_sym_PIPE_EQ] = ACTIONS(6267), - [anon_sym_and_eq] = ACTIONS(2039), - [anon_sym_or_eq] = ACTIONS(2039), - [anon_sym_xor_eq] = ACTIONS(2039), - [anon_sym_LT_EQ_GT] = ACTIONS(6267), - [anon_sym_or] = ACTIONS(2039), - [anon_sym_and] = ACTIONS(2039), - [anon_sym_bitor] = ACTIONS(2039), - [anon_sym_xor] = ACTIONS(2039), - [anon_sym_bitand] = ACTIONS(2039), - [anon_sym_not_eq] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6267), - [anon_sym_DOT] = ACTIONS(2039), - [anon_sym_DOT_STAR] = ACTIONS(6267), - [anon_sym_DASH_GT] = ACTIONS(6267), - [sym_comment] = ACTIONS(3), + [STATE(1612)] = { + [sym_expression] = STATE(6345), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2286)] = { - [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___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_COLON_COLON] = ACTIONS(5631), - [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_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), + [STATE(1613)] = { + [sym_expression] = STATE(6343), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1614)] = { + [sym_expression] = STATE(5418), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1615)] = { + [sym_expression] = STATE(5222), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1616)] = { + [sym_expression] = STATE(5223), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1617)] = { + [sym_expression] = STATE(5240), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1618)] = { + [sym_expression] = STATE(5243), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1619)] = { + [sym_expression] = STATE(5245), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1620)] = { + [sym_expression] = STATE(5246), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1621)] = { + [sym_expression] = STATE(5251), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1622)] = { + [sym_expression] = STATE(5253), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1623)] = { + [sym_expression] = STATE(5267), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1624)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), + }, + [STATE(1625)] = { + [sym_expression] = STATE(6627), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2287)] = { - [sym_attribute_specifier] = STATE(2360), - [sym_identifier] = ACTIONS(6272), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6274), - [anon_sym_COMMA] = ACTIONS(6274), - [anon_sym_RPAREN] = ACTIONS(6274), - [aux_sym_preproc_if_token2] = ACTIONS(6274), - [aux_sym_preproc_else_token1] = ACTIONS(6274), - [aux_sym_preproc_elif_token1] = ACTIONS(6272), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6274), - [anon_sym_LPAREN2] = ACTIONS(6274), - [anon_sym_DASH] = ACTIONS(6272), - [anon_sym_PLUS] = ACTIONS(6272), - [anon_sym_STAR] = ACTIONS(6272), - [anon_sym_SLASH] = ACTIONS(6272), - [anon_sym_PERCENT] = ACTIONS(6272), - [anon_sym_PIPE_PIPE] = ACTIONS(6274), - [anon_sym_AMP_AMP] = ACTIONS(6274), - [anon_sym_PIPE] = ACTIONS(6272), - [anon_sym_CARET] = ACTIONS(6272), - [anon_sym_AMP] = ACTIONS(6272), - [anon_sym_EQ_EQ] = ACTIONS(6274), - [anon_sym_BANG_EQ] = ACTIONS(6274), - [anon_sym_GT] = ACTIONS(6272), - [anon_sym_GT_EQ] = ACTIONS(6274), - [anon_sym_LT_EQ] = ACTIONS(6272), - [anon_sym_LT] = ACTIONS(6272), - [anon_sym_LT_LT] = ACTIONS(6272), - [anon_sym_GT_GT] = ACTIONS(6272), - [anon_sym_SEMI] = ACTIONS(6274), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6274), - [anon_sym_LBRACE] = ACTIONS(6274), - [anon_sym_RBRACE] = ACTIONS(6274), - [anon_sym_LBRACK] = ACTIONS(6274), - [anon_sym_RBRACK] = ACTIONS(6274), - [anon_sym_EQ] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6274), - [anon_sym_STAR_EQ] = ACTIONS(6274), - [anon_sym_SLASH_EQ] = ACTIONS(6274), - [anon_sym_PERCENT_EQ] = ACTIONS(6274), - [anon_sym_PLUS_EQ] = ACTIONS(6274), - [anon_sym_DASH_EQ] = ACTIONS(6274), - [anon_sym_LT_LT_EQ] = ACTIONS(6274), - [anon_sym_GT_GT_EQ] = ACTIONS(6274), - [anon_sym_AMP_EQ] = ACTIONS(6274), - [anon_sym_CARET_EQ] = ACTIONS(6274), - [anon_sym_PIPE_EQ] = ACTIONS(6274), - [anon_sym_and_eq] = ACTIONS(6272), - [anon_sym_or_eq] = ACTIONS(6272), - [anon_sym_xor_eq] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6274), - [anon_sym_or] = ACTIONS(6272), - [anon_sym_and] = ACTIONS(6272), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6272), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6274), - [anon_sym_PLUS_PLUS] = ACTIONS(6274), - [anon_sym_DOT] = ACTIONS(6272), - [anon_sym_DOT_STAR] = ACTIONS(6274), - [anon_sym_DASH_GT] = ACTIONS(6274), + [STATE(1626)] = { + [sym_expression] = STATE(6643), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2288)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(2296), - [sym__declarator] = STATE(6625), - [sym__abstract_declarator] = STATE(6863), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2869), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3096), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6011), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2869), - [aux_sym_pointer_declarator_repeat1] = STATE(2296), - [sym_identifier] = ACTIONS(5505), - [anon_sym_RPAREN] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(4324), + [STATE(1627)] = { + [sym_expression] = STATE(6332), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1628)] = { + [sym_expression] = STATE(7081), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1629)] = { + [sym_expression] = STATE(6382), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1630)] = { + [sym_expression] = STATE(6338), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1631)] = { + [sym_expression] = STATE(6321), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1632)] = { + [sym_expression] = STATE(6921), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1633)] = { + [sym_expression] = STATE(5763), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1634)] = { + [sym_expression] = STATE(4764), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1635)] = { + [sym_expression] = STATE(4831), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1636)] = { + [sym_expression] = STATE(3685), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1637)] = { + [sym_expression] = STATE(4716), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1638)] = { + [sym_expression] = STATE(4717), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1639)] = { + [sym_expression] = STATE(4718), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1640)] = { + [sym_expression] = STATE(4720), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1641)] = { + [sym_expression] = STATE(4724), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1642)] = { + [sym_expression] = STATE(4751), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1643)] = { + [sym_expression] = STATE(4752), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1644)] = { + [sym_expression] = STATE(4840), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1645)] = { + [sym_expression] = STATE(3689), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1646)] = { + [sym_expression] = STATE(3666), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1647)] = { + [sym_expression] = STATE(6859), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1648)] = { + [sym_expression] = STATE(6363), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1649)] = { + [sym_expression] = STATE(4319), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1650)] = { + [sym_expression] = STATE(4391), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1651)] = { + [sym_expression] = STATE(3685), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1652)] = { + [sym_expression] = STATE(4433), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1653)] = { + [sym_expression] = STATE(4434), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1654)] = { + [sym_expression] = STATE(4435), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1655)] = { + [sym_expression] = STATE(4436), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1656)] = { + [sym_expression] = STATE(4437), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1657)] = { + [sym_expression] = STATE(4438), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1658)] = { + [sym_expression] = STATE(4439), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1659)] = { + [sym_expression] = STATE(4392), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1660)] = { + [sym_expression] = STATE(5176), + [sym__string] = STATE(5510), + [sym_conditional_expression] = STATE(5777), + [sym_assignment_expression] = STATE(5777), + [sym_pointer_expression] = STATE(5633), + [sym_unary_expression] = STATE(5777), + [sym_binary_expression] = STATE(5777), + [sym_update_expression] = STATE(5777), + [sym_cast_expression] = STATE(5777), + [sym_sizeof_expression] = STATE(5777), + [sym_alignof_expression] = STATE(5777), + [sym_offsetof_expression] = STATE(5777), + [sym_generic_expression] = STATE(5777), + [sym_subscript_expression] = STATE(5633), + [sym_call_expression] = STATE(5633), + [sym_gnu_asm_expression] = STATE(5777), + [sym_extension_expression] = STATE(5777), + [sym_field_expression] = STATE(5633), + [sym_compound_literal_expression] = STATE(5777), + [sym_parenthesized_expression] = STATE(5633), + [sym_char_literal] = STATE(5510), + [sym_concatenated_string] = STATE(5510), + [sym_string_literal] = STATE(3802), + [sym_null] = STATE(5777), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10382), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5777), + [sym_raw_string_literal] = STATE(3802), + [sym_co_await_expression] = STATE(5777), + [sym_new_expression] = STATE(5777), + [sym_delete_expression] = STATE(5777), + [sym_requires_clause] = STATE(5777), + [sym_requires_expression] = STATE(5777), + [sym_lambda_expression] = STATE(5777), + [sym_lambda_capture_specifier] = STATE(7908), + [sym_fold_expression] = STATE(5777), + [sym_parameter_pack_expansion] = STATE(5777), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5633), + [sym_qualified_type_identifier] = STATE(10382), + [sym_reflect_expression] = STATE(5777), + [sym_splice_specifier] = STATE(5006), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9228), + [sym_splice_expression] = STATE(5476), + [sym_user_defined_literal] = STATE(5633), + [sym_identifier] = ACTIONS(2598), + [anon_sym_LPAREN2] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2610), + [anon_sym_not] = ACTIONS(2600), + [anon_sym_compl] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_sizeof] = ACTIONS(2612), + [anon_sym___alignof__] = ACTIONS(2614), + [anon_sym___alignof] = ACTIONS(2614), + [anon_sym__alignof] = ACTIONS(2614), + [anon_sym_alignof] = ACTIONS(2614), + [anon_sym__Alignof] = ACTIONS(2614), + [anon_sym_offsetof] = ACTIONS(2616), + [anon_sym__Generic] = ACTIONS(2618), + [anon_sym_typename] = ACTIONS(2620), + [anon_sym_asm] = ACTIONS(2622), + [anon_sym___asm__] = ACTIONS(2622), + [anon_sym___asm] = ACTIONS(2622), + [sym_number_literal] = ACTIONS(2624), + [anon_sym_L_SQUOTE] = ACTIONS(2626), + [anon_sym_u_SQUOTE] = ACTIONS(2626), + [anon_sym_U_SQUOTE] = ACTIONS(2626), + [anon_sym_u8_SQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_L_DQUOTE] = ACTIONS(2628), + [anon_sym_u_DQUOTE] = ACTIONS(2628), + [anon_sym_U_DQUOTE] = ACTIONS(2628), + [anon_sym_u8_DQUOTE] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [anon_sym_NULL] = ACTIONS(2632), + [anon_sym_nullptr] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_R_DQUOTE] = ACTIONS(2638), + [anon_sym_LR_DQUOTE] = ACTIONS(2638), + [anon_sym_uR_DQUOTE] = ACTIONS(2638), + [anon_sym_UR_DQUOTE] = ACTIONS(2638), + [anon_sym_u8R_DQUOTE] = ACTIONS(2638), + [anon_sym_co_await] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_requires] = ACTIONS(2644), + [anon_sym_CARET_CARET] = ACTIONS(2646), + [anon_sym_LBRACK_COLON] = ACTIONS(2648), + [sym_this] = ACTIONS(2630), + }, + [STATE(1661)] = { + [sym_expression] = STATE(6642), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4330), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(6003), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(6071), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2289)] = { - [sym_attribute_specifier] = STATE(2320), - [sym_identifier] = ACTIONS(6276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6278), - [anon_sym_COMMA] = ACTIONS(6278), - [anon_sym_RPAREN] = ACTIONS(6278), - [aux_sym_preproc_if_token2] = ACTIONS(6278), - [aux_sym_preproc_else_token1] = ACTIONS(6278), - [aux_sym_preproc_elif_token1] = ACTIONS(6276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6278), - [anon_sym_LPAREN2] = ACTIONS(6278), - [anon_sym_DASH] = ACTIONS(6276), - [anon_sym_PLUS] = ACTIONS(6276), - [anon_sym_STAR] = ACTIONS(6276), - [anon_sym_SLASH] = ACTIONS(6276), - [anon_sym_PERCENT] = ACTIONS(6276), - [anon_sym_PIPE_PIPE] = ACTIONS(6278), - [anon_sym_AMP_AMP] = ACTIONS(6278), - [anon_sym_PIPE] = ACTIONS(6276), - [anon_sym_CARET] = ACTIONS(6276), - [anon_sym_AMP] = ACTIONS(6276), - [anon_sym_EQ_EQ] = ACTIONS(6278), - [anon_sym_BANG_EQ] = ACTIONS(6278), - [anon_sym_GT] = ACTIONS(6276), - [anon_sym_GT_EQ] = ACTIONS(6278), - [anon_sym_LT_EQ] = ACTIONS(6276), - [anon_sym_LT] = ACTIONS(6276), - [anon_sym_LT_LT] = ACTIONS(6276), - [anon_sym_GT_GT] = ACTIONS(6276), - [anon_sym_SEMI] = ACTIONS(6278), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6278), - [anon_sym_LBRACE] = ACTIONS(6278), - [anon_sym_RBRACE] = ACTIONS(6278), - [anon_sym_LBRACK] = ACTIONS(6278), - [anon_sym_RBRACK] = ACTIONS(6278), - [anon_sym_EQ] = ACTIONS(6276), - [anon_sym_QMARK] = ACTIONS(6278), - [anon_sym_STAR_EQ] = ACTIONS(6278), - [anon_sym_SLASH_EQ] = ACTIONS(6278), - [anon_sym_PERCENT_EQ] = ACTIONS(6278), - [anon_sym_PLUS_EQ] = ACTIONS(6278), - [anon_sym_DASH_EQ] = ACTIONS(6278), - [anon_sym_LT_LT_EQ] = ACTIONS(6278), - [anon_sym_GT_GT_EQ] = ACTIONS(6278), - [anon_sym_AMP_EQ] = ACTIONS(6278), - [anon_sym_CARET_EQ] = ACTIONS(6278), - [anon_sym_PIPE_EQ] = ACTIONS(6278), - [anon_sym_and_eq] = ACTIONS(6276), - [anon_sym_or_eq] = ACTIONS(6276), - [anon_sym_xor_eq] = ACTIONS(6276), - [anon_sym_LT_EQ_GT] = ACTIONS(6278), - [anon_sym_or] = ACTIONS(6276), - [anon_sym_and] = ACTIONS(6276), - [anon_sym_bitor] = ACTIONS(6276), - [anon_sym_xor] = ACTIONS(6276), - [anon_sym_bitand] = ACTIONS(6276), - [anon_sym_not_eq] = ACTIONS(6276), - [anon_sym_DASH_DASH] = ACTIONS(6278), - [anon_sym_PLUS_PLUS] = ACTIONS(6278), - [anon_sym_DOT] = ACTIONS(6276), - [anon_sym_DOT_STAR] = ACTIONS(6278), - [anon_sym_DASH_GT] = ACTIONS(6278), - [sym_comment] = ACTIONS(3), + [STATE(1662)] = { + [sym_expression] = STATE(6796), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2290)] = { - [sym_new_declarator] = STATE(2380), - [sym_identifier] = ACTIONS(6280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6282), - [anon_sym_COMMA] = ACTIONS(6282), - [anon_sym_RPAREN] = ACTIONS(6282), - [aux_sym_preproc_if_token2] = ACTIONS(6282), - [aux_sym_preproc_else_token1] = ACTIONS(6282), - [aux_sym_preproc_elif_token1] = ACTIONS(6280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6282), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6282), - [anon_sym_LPAREN2] = ACTIONS(6282), - [anon_sym_DASH] = ACTIONS(6280), - [anon_sym_PLUS] = ACTIONS(6280), - [anon_sym_STAR] = ACTIONS(6280), - [anon_sym_SLASH] = ACTIONS(6280), - [anon_sym_PERCENT] = ACTIONS(6280), - [anon_sym_PIPE_PIPE] = ACTIONS(6282), - [anon_sym_AMP_AMP] = ACTIONS(6282), - [anon_sym_PIPE] = ACTIONS(6280), - [anon_sym_CARET] = ACTIONS(6280), - [anon_sym_AMP] = ACTIONS(6280), - [anon_sym_EQ_EQ] = ACTIONS(6282), - [anon_sym_BANG_EQ] = ACTIONS(6282), - [anon_sym_GT] = ACTIONS(6280), - [anon_sym_GT_EQ] = ACTIONS(6282), - [anon_sym_LT_EQ] = ACTIONS(6280), - [anon_sym_LT] = ACTIONS(6280), - [anon_sym_LT_LT] = ACTIONS(6280), - [anon_sym_GT_GT] = ACTIONS(6280), - [anon_sym_SEMI] = ACTIONS(6282), - [anon_sym___attribute__] = ACTIONS(6280), - [anon_sym___attribute] = ACTIONS(6280), - [anon_sym_COLON] = ACTIONS(6282), - [anon_sym_LBRACE] = ACTIONS(6282), - [anon_sym_RBRACE] = ACTIONS(6282), - [anon_sym_LBRACK] = ACTIONS(6084), - [anon_sym_RBRACK] = ACTIONS(6282), - [anon_sym_EQ] = ACTIONS(6280), - [anon_sym_QMARK] = ACTIONS(6282), - [anon_sym_STAR_EQ] = ACTIONS(6282), - [anon_sym_SLASH_EQ] = ACTIONS(6282), - [anon_sym_PERCENT_EQ] = ACTIONS(6282), - [anon_sym_PLUS_EQ] = ACTIONS(6282), - [anon_sym_DASH_EQ] = ACTIONS(6282), - [anon_sym_LT_LT_EQ] = ACTIONS(6282), - [anon_sym_GT_GT_EQ] = ACTIONS(6282), - [anon_sym_AMP_EQ] = ACTIONS(6282), - [anon_sym_CARET_EQ] = ACTIONS(6282), - [anon_sym_PIPE_EQ] = ACTIONS(6282), - [anon_sym_and_eq] = ACTIONS(6280), - [anon_sym_or_eq] = ACTIONS(6280), - [anon_sym_xor_eq] = ACTIONS(6280), - [anon_sym_LT_EQ_GT] = ACTIONS(6282), - [anon_sym_or] = ACTIONS(6280), - [anon_sym_and] = ACTIONS(6280), - [anon_sym_bitor] = ACTIONS(6280), - [anon_sym_xor] = ACTIONS(6280), - [anon_sym_bitand] = ACTIONS(6280), - [anon_sym_not_eq] = ACTIONS(6280), - [anon_sym_DASH_DASH] = ACTIONS(6282), - [anon_sym_PLUS_PLUS] = ACTIONS(6282), - [anon_sym_DOT] = ACTIONS(6280), - [anon_sym_DOT_STAR] = ACTIONS(6282), - [anon_sym_DASH_GT] = ACTIONS(6282), - [sym_comment] = ACTIONS(3), + [STATE(1663)] = { + [sym_expression] = STATE(5218), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2291)] = { - [sym_identifier] = ACTIONS(5478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5480), - [anon_sym_COMMA] = ACTIONS(5480), - [anon_sym_LPAREN2] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_SLASH] = ACTIONS(5478), - [anon_sym_PERCENT] = ACTIONS(5478), - [anon_sym_PIPE_PIPE] = ACTIONS(5480), - [anon_sym_AMP_AMP] = ACTIONS(5480), - [anon_sym_PIPE] = ACTIONS(5478), - [anon_sym_CARET] = ACTIONS(5478), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_EQ_EQ] = ACTIONS(5480), - [anon_sym_BANG_EQ] = ACTIONS(5480), - [anon_sym_GT] = ACTIONS(5478), - [anon_sym_GT_EQ] = ACTIONS(5480), - [anon_sym_LT_EQ] = ACTIONS(5478), - [anon_sym_LT] = ACTIONS(5478), - [anon_sym_LT_LT] = ACTIONS(5478), - [anon_sym_GT_GT] = ACTIONS(5478), - [anon_sym_SEMI] = ACTIONS(5480), - [anon_sym___attribute__] = ACTIONS(5478), - [anon_sym___attribute] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(5480), - [anon_sym_EQ] = ACTIONS(5478), - [anon_sym_QMARK] = ACTIONS(5480), - [anon_sym_STAR_EQ] = ACTIONS(5480), - [anon_sym_SLASH_EQ] = ACTIONS(5480), - [anon_sym_PERCENT_EQ] = ACTIONS(5480), - [anon_sym_PLUS_EQ] = ACTIONS(5480), - [anon_sym_DASH_EQ] = ACTIONS(5480), - [anon_sym_LT_LT_EQ] = ACTIONS(5480), - [anon_sym_GT_GT_EQ] = ACTIONS(5480), - [anon_sym_AMP_EQ] = ACTIONS(5480), - [anon_sym_CARET_EQ] = ACTIONS(5480), - [anon_sym_PIPE_EQ] = ACTIONS(5480), - [anon_sym_and_eq] = ACTIONS(5478), - [anon_sym_or_eq] = ACTIONS(5478), - [anon_sym_xor_eq] = ACTIONS(5478), - [anon_sym_LT_EQ_GT] = ACTIONS(5480), - [anon_sym_or] = ACTIONS(5478), - [anon_sym_and] = ACTIONS(5478), - [anon_sym_bitor] = ACTIONS(5478), - [anon_sym_xor] = ACTIONS(5478), - [anon_sym_bitand] = ACTIONS(5478), - [anon_sym_not_eq] = ACTIONS(5478), - [anon_sym_DASH_DASH] = ACTIONS(5480), - [anon_sym_PLUS_PLUS] = ACTIONS(5480), - [anon_sym_DOT] = ACTIONS(5478), - [anon_sym_DOT_STAR] = ACTIONS(5480), - [anon_sym_DASH_GT] = ACTIONS(5480), - [anon_sym_L_DQUOTE] = ACTIONS(5480), - [anon_sym_u_DQUOTE] = ACTIONS(5480), - [anon_sym_U_DQUOTE] = ACTIONS(5480), - [anon_sym_u8_DQUOTE] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(5480), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5480), - [anon_sym_LR_DQUOTE] = ACTIONS(5480), - [anon_sym_uR_DQUOTE] = ACTIONS(5480), - [anon_sym_UR_DQUOTE] = ACTIONS(5480), - [anon_sym_u8R_DQUOTE] = ACTIONS(5480), - [sym_literal_suffix] = ACTIONS(5478), + [STATE(1664)] = { + [sym_expression] = STATE(5425), + [sym__string] = STATE(5559), + [sym_conditional_expression] = STATE(5824), + [sym_assignment_expression] = STATE(5824), + [sym_pointer_expression] = STATE(5656), + [sym_unary_expression] = STATE(5824), + [sym_binary_expression] = STATE(5824), + [sym_update_expression] = STATE(5824), + [sym_cast_expression] = STATE(5824), + [sym_sizeof_expression] = STATE(5824), + [sym_alignof_expression] = STATE(5824), + [sym_offsetof_expression] = STATE(5824), + [sym_generic_expression] = STATE(5824), + [sym_subscript_expression] = STATE(5656), + [sym_call_expression] = STATE(5656), + [sym_gnu_asm_expression] = STATE(5824), + [sym_extension_expression] = STATE(5824), + [sym_field_expression] = STATE(5656), + [sym_compound_literal_expression] = STATE(5824), + [sym_parenthesized_expression] = STATE(5656), + [sym_char_literal] = STATE(5559), + [sym_concatenated_string] = STATE(5559), + [sym_string_literal] = STATE(3724), + [sym_null] = STATE(5824), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10357), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5824), + [sym_raw_string_literal] = STATE(3724), + [sym_co_await_expression] = STATE(5824), + [sym_new_expression] = STATE(5824), + [sym_delete_expression] = STATE(5824), + [sym_requires_clause] = STATE(5824), + [sym_requires_expression] = STATE(5824), + [sym_lambda_expression] = STATE(5824), + [sym_lambda_capture_specifier] = STATE(7914), + [sym_fold_expression] = STATE(5824), + [sym_parameter_pack_expansion] = STATE(5824), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5656), + [sym_qualified_type_identifier] = STATE(10357), + [sym_reflect_expression] = STATE(5824), + [sym_splice_specifier] = STATE(5026), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9187), + [sym_splice_expression] = STATE(5515), + [sym_user_defined_literal] = STATE(5656), + [sym_identifier] = ACTIONS(2682), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2694), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(2696), + [anon_sym___alignof__] = ACTIONS(2698), + [anon_sym___alignof] = ACTIONS(2698), + [anon_sym__alignof] = ACTIONS(2698), + [anon_sym_alignof] = ACTIONS(2698), + [anon_sym__Alignof] = ACTIONS(2698), + [anon_sym_offsetof] = ACTIONS(2700), + [anon_sym__Generic] = ACTIONS(2702), + [anon_sym_typename] = ACTIONS(2704), + [anon_sym_asm] = ACTIONS(2706), + [anon_sym___asm__] = ACTIONS(2706), + [anon_sym___asm] = ACTIONS(2706), + [sym_number_literal] = ACTIONS(2708), + [anon_sym_L_SQUOTE] = ACTIONS(2710), + [anon_sym_u_SQUOTE] = ACTIONS(2710), + [anon_sym_U_SQUOTE] = ACTIONS(2710), + [anon_sym_u8_SQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_L_DQUOTE] = ACTIONS(2712), + [anon_sym_u_DQUOTE] = ACTIONS(2712), + [anon_sym_U_DQUOTE] = ACTIONS(2712), + [anon_sym_u8_DQUOTE] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [anon_sym_NULL] = ACTIONS(2716), + [anon_sym_nullptr] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_R_DQUOTE] = ACTIONS(2722), + [anon_sym_LR_DQUOTE] = ACTIONS(2722), + [anon_sym_uR_DQUOTE] = ACTIONS(2722), + [anon_sym_UR_DQUOTE] = ACTIONS(2722), + [anon_sym_u8R_DQUOTE] = ACTIONS(2722), + [anon_sym_co_await] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_requires] = ACTIONS(2728), + [anon_sym_CARET_CARET] = ACTIONS(2730), + [anon_sym_LBRACK_COLON] = ACTIONS(2732), + [sym_this] = ACTIONS(2714), }, - [STATE(2292)] = { - [sym_attribute_specifier] = STATE(2319), - [sym_identifier] = ACTIONS(6284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6286), - [anon_sym_COMMA] = ACTIONS(6286), - [anon_sym_RPAREN] = ACTIONS(6286), - [aux_sym_preproc_if_token2] = ACTIONS(6286), - [aux_sym_preproc_else_token1] = ACTIONS(6286), - [aux_sym_preproc_elif_token1] = ACTIONS(6284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6286), - [anon_sym_LPAREN2] = ACTIONS(6286), - [anon_sym_DASH] = ACTIONS(6284), - [anon_sym_PLUS] = ACTIONS(6284), - [anon_sym_STAR] = ACTIONS(6284), - [anon_sym_SLASH] = ACTIONS(6284), - [anon_sym_PERCENT] = ACTIONS(6284), - [anon_sym_PIPE_PIPE] = ACTIONS(6286), - [anon_sym_AMP_AMP] = ACTIONS(6286), - [anon_sym_PIPE] = ACTIONS(6284), - [anon_sym_CARET] = ACTIONS(6284), - [anon_sym_AMP] = ACTIONS(6284), - [anon_sym_EQ_EQ] = ACTIONS(6286), - [anon_sym_BANG_EQ] = ACTIONS(6286), - [anon_sym_GT] = ACTIONS(6284), - [anon_sym_GT_EQ] = ACTIONS(6286), - [anon_sym_LT_EQ] = ACTIONS(6284), - [anon_sym_LT] = ACTIONS(6284), - [anon_sym_LT_LT] = ACTIONS(6284), - [anon_sym_GT_GT] = ACTIONS(6284), - [anon_sym_SEMI] = ACTIONS(6286), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6286), - [anon_sym_LBRACE] = ACTIONS(6286), - [anon_sym_RBRACE] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(6286), - [anon_sym_RBRACK] = ACTIONS(6286), - [anon_sym_EQ] = ACTIONS(6284), - [anon_sym_QMARK] = ACTIONS(6286), - [anon_sym_STAR_EQ] = ACTIONS(6286), - [anon_sym_SLASH_EQ] = ACTIONS(6286), - [anon_sym_PERCENT_EQ] = ACTIONS(6286), - [anon_sym_PLUS_EQ] = ACTIONS(6286), - [anon_sym_DASH_EQ] = ACTIONS(6286), - [anon_sym_LT_LT_EQ] = ACTIONS(6286), - [anon_sym_GT_GT_EQ] = ACTIONS(6286), - [anon_sym_AMP_EQ] = ACTIONS(6286), - [anon_sym_CARET_EQ] = ACTIONS(6286), - [anon_sym_PIPE_EQ] = ACTIONS(6286), - [anon_sym_and_eq] = ACTIONS(6284), - [anon_sym_or_eq] = ACTIONS(6284), - [anon_sym_xor_eq] = ACTIONS(6284), - [anon_sym_LT_EQ_GT] = ACTIONS(6286), - [anon_sym_or] = ACTIONS(6284), - [anon_sym_and] = ACTIONS(6284), - [anon_sym_bitor] = ACTIONS(6284), - [anon_sym_xor] = ACTIONS(6284), - [anon_sym_bitand] = ACTIONS(6284), - [anon_sym_not_eq] = ACTIONS(6284), - [anon_sym_DASH_DASH] = ACTIONS(6286), - [anon_sym_PLUS_PLUS] = ACTIONS(6286), - [anon_sym_DOT] = ACTIONS(6284), - [anon_sym_DOT_STAR] = ACTIONS(6286), - [anon_sym_DASH_GT] = ACTIONS(6286), - [sym_comment] = ACTIONS(3), + [STATE(1665)] = { + [sym_expression] = STATE(5679), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), }, - [STATE(2293)] = { - [sym_attribute_specifier] = STATE(2326), - [sym_identifier] = ACTIONS(6288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6290), - [anon_sym_COMMA] = ACTIONS(6290), - [anon_sym_RPAREN] = ACTIONS(6290), - [aux_sym_preproc_if_token2] = ACTIONS(6290), - [aux_sym_preproc_else_token1] = ACTIONS(6290), - [aux_sym_preproc_elif_token1] = ACTIONS(6288), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6290), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6290), - [anon_sym_LPAREN2] = ACTIONS(6290), - [anon_sym_DASH] = ACTIONS(6288), - [anon_sym_PLUS] = ACTIONS(6288), - [anon_sym_STAR] = ACTIONS(6288), - [anon_sym_SLASH] = ACTIONS(6288), - [anon_sym_PERCENT] = ACTIONS(6288), - [anon_sym_PIPE_PIPE] = ACTIONS(6290), - [anon_sym_AMP_AMP] = ACTIONS(6290), - [anon_sym_PIPE] = ACTIONS(6288), - [anon_sym_CARET] = ACTIONS(6288), - [anon_sym_AMP] = ACTIONS(6288), - [anon_sym_EQ_EQ] = ACTIONS(6290), - [anon_sym_BANG_EQ] = ACTIONS(6290), - [anon_sym_GT] = ACTIONS(6288), - [anon_sym_GT_EQ] = ACTIONS(6290), - [anon_sym_LT_EQ] = ACTIONS(6288), - [anon_sym_LT] = ACTIONS(6288), - [anon_sym_LT_LT] = ACTIONS(6288), - [anon_sym_GT_GT] = ACTIONS(6288), - [anon_sym_SEMI] = ACTIONS(6290), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6290), - [anon_sym_LBRACE] = ACTIONS(6290), - [anon_sym_RBRACE] = ACTIONS(6290), - [anon_sym_LBRACK] = ACTIONS(6290), - [anon_sym_RBRACK] = ACTIONS(6290), - [anon_sym_EQ] = ACTIONS(6288), - [anon_sym_QMARK] = ACTIONS(6290), - [anon_sym_STAR_EQ] = ACTIONS(6290), - [anon_sym_SLASH_EQ] = ACTIONS(6290), - [anon_sym_PERCENT_EQ] = ACTIONS(6290), - [anon_sym_PLUS_EQ] = ACTIONS(6290), - [anon_sym_DASH_EQ] = ACTIONS(6290), - [anon_sym_LT_LT_EQ] = ACTIONS(6290), - [anon_sym_GT_GT_EQ] = ACTIONS(6290), - [anon_sym_AMP_EQ] = ACTIONS(6290), - [anon_sym_CARET_EQ] = ACTIONS(6290), - [anon_sym_PIPE_EQ] = ACTIONS(6290), - [anon_sym_and_eq] = ACTIONS(6288), - [anon_sym_or_eq] = ACTIONS(6288), - [anon_sym_xor_eq] = ACTIONS(6288), - [anon_sym_LT_EQ_GT] = ACTIONS(6290), - [anon_sym_or] = ACTIONS(6288), - [anon_sym_and] = ACTIONS(6288), - [anon_sym_bitor] = ACTIONS(6288), - [anon_sym_xor] = ACTIONS(6288), - [anon_sym_bitand] = ACTIONS(6288), - [anon_sym_not_eq] = ACTIONS(6288), - [anon_sym_DASH_DASH] = ACTIONS(6290), - [anon_sym_PLUS_PLUS] = ACTIONS(6290), - [anon_sym_DOT] = ACTIONS(6288), - [anon_sym_DOT_STAR] = ACTIONS(6290), - [anon_sym_DASH_GT] = ACTIONS(6290), - [sym_comment] = ACTIONS(3), + [STATE(1666)] = { + [sym_expression] = STATE(6634), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(6073), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2294)] = { - [sym_identifier] = ACTIONS(5482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5484), - [anon_sym_COMMA] = ACTIONS(5484), - [anon_sym_LPAREN2] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_SLASH] = ACTIONS(5482), - [anon_sym_PERCENT] = ACTIONS(5482), - [anon_sym_PIPE_PIPE] = ACTIONS(5484), - [anon_sym_AMP_AMP] = ACTIONS(5484), - [anon_sym_PIPE] = ACTIONS(5482), - [anon_sym_CARET] = ACTIONS(5482), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_EQ_EQ] = ACTIONS(5484), - [anon_sym_BANG_EQ] = ACTIONS(5484), - [anon_sym_GT] = ACTIONS(5482), - [anon_sym_GT_EQ] = ACTIONS(5484), - [anon_sym_LT_EQ] = ACTIONS(5482), - [anon_sym_LT] = ACTIONS(5482), - [anon_sym_LT_LT] = ACTIONS(5482), - [anon_sym_GT_GT] = ACTIONS(5482), - [anon_sym_SEMI] = ACTIONS(5484), - [anon_sym___attribute__] = ACTIONS(5482), - [anon_sym___attribute] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5484), - [anon_sym_EQ] = ACTIONS(5482), - [anon_sym_QMARK] = ACTIONS(5484), - [anon_sym_STAR_EQ] = ACTIONS(5484), - [anon_sym_SLASH_EQ] = ACTIONS(5484), - [anon_sym_PERCENT_EQ] = ACTIONS(5484), - [anon_sym_PLUS_EQ] = ACTIONS(5484), - [anon_sym_DASH_EQ] = ACTIONS(5484), - [anon_sym_LT_LT_EQ] = ACTIONS(5484), - [anon_sym_GT_GT_EQ] = ACTIONS(5484), - [anon_sym_AMP_EQ] = ACTIONS(5484), - [anon_sym_CARET_EQ] = ACTIONS(5484), - [anon_sym_PIPE_EQ] = ACTIONS(5484), - [anon_sym_and_eq] = ACTIONS(5482), - [anon_sym_or_eq] = ACTIONS(5482), - [anon_sym_xor_eq] = ACTIONS(5482), - [anon_sym_LT_EQ_GT] = ACTIONS(5484), - [anon_sym_or] = ACTIONS(5482), - [anon_sym_and] = ACTIONS(5482), - [anon_sym_bitor] = ACTIONS(5482), - [anon_sym_xor] = ACTIONS(5482), - [anon_sym_bitand] = ACTIONS(5482), - [anon_sym_not_eq] = ACTIONS(5482), - [anon_sym_DASH_DASH] = ACTIONS(5484), - [anon_sym_PLUS_PLUS] = ACTIONS(5484), - [anon_sym_DOT] = ACTIONS(5482), - [anon_sym_DOT_STAR] = ACTIONS(5484), - [anon_sym_DASH_GT] = ACTIONS(5484), - [anon_sym_L_DQUOTE] = ACTIONS(5484), - [anon_sym_u_DQUOTE] = ACTIONS(5484), - [anon_sym_U_DQUOTE] = ACTIONS(5484), - [anon_sym_u8_DQUOTE] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5484), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5484), - [anon_sym_LR_DQUOTE] = ACTIONS(5484), - [anon_sym_uR_DQUOTE] = ACTIONS(5484), - [anon_sym_UR_DQUOTE] = ACTIONS(5484), - [anon_sym_u8R_DQUOTE] = ACTIONS(5484), - [sym_literal_suffix] = ACTIONS(5482), + [STATE(1667)] = { + [sym_expression] = STATE(6988), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2295)] = { - [sym_attribute_specifier] = STATE(2322), - [sym_identifier] = ACTIONS(6292), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6294), - [anon_sym_COMMA] = ACTIONS(6294), - [anon_sym_RPAREN] = ACTIONS(6294), - [aux_sym_preproc_if_token2] = ACTIONS(6294), - [aux_sym_preproc_else_token1] = ACTIONS(6294), - [aux_sym_preproc_elif_token1] = ACTIONS(6292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6294), - [anon_sym_LPAREN2] = ACTIONS(6294), - [anon_sym_DASH] = ACTIONS(6292), - [anon_sym_PLUS] = ACTIONS(6292), - [anon_sym_STAR] = ACTIONS(6292), - [anon_sym_SLASH] = ACTIONS(6292), - [anon_sym_PERCENT] = ACTIONS(6292), - [anon_sym_PIPE_PIPE] = ACTIONS(6294), - [anon_sym_AMP_AMP] = ACTIONS(6294), - [anon_sym_PIPE] = ACTIONS(6292), - [anon_sym_CARET] = ACTIONS(6292), - [anon_sym_AMP] = ACTIONS(6292), - [anon_sym_EQ_EQ] = ACTIONS(6294), - [anon_sym_BANG_EQ] = ACTIONS(6294), - [anon_sym_GT] = ACTIONS(6292), - [anon_sym_GT_EQ] = ACTIONS(6294), - [anon_sym_LT_EQ] = ACTIONS(6292), - [anon_sym_LT] = ACTIONS(6292), - [anon_sym_LT_LT] = ACTIONS(6292), - [anon_sym_GT_GT] = ACTIONS(6292), - [anon_sym_SEMI] = ACTIONS(6294), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6294), - [anon_sym_LBRACE] = ACTIONS(6294), - [anon_sym_RBRACE] = ACTIONS(6294), - [anon_sym_LBRACK] = ACTIONS(6294), - [anon_sym_RBRACK] = ACTIONS(6294), - [anon_sym_EQ] = ACTIONS(6292), - [anon_sym_QMARK] = ACTIONS(6294), - [anon_sym_STAR_EQ] = ACTIONS(6294), - [anon_sym_SLASH_EQ] = ACTIONS(6294), - [anon_sym_PERCENT_EQ] = ACTIONS(6294), - [anon_sym_PLUS_EQ] = ACTIONS(6294), - [anon_sym_DASH_EQ] = ACTIONS(6294), - [anon_sym_LT_LT_EQ] = ACTIONS(6294), - [anon_sym_GT_GT_EQ] = ACTIONS(6294), - [anon_sym_AMP_EQ] = ACTIONS(6294), - [anon_sym_CARET_EQ] = ACTIONS(6294), - [anon_sym_PIPE_EQ] = ACTIONS(6294), - [anon_sym_and_eq] = ACTIONS(6292), - [anon_sym_or_eq] = ACTIONS(6292), - [anon_sym_xor_eq] = ACTIONS(6292), - [anon_sym_LT_EQ_GT] = ACTIONS(6294), - [anon_sym_or] = ACTIONS(6292), - [anon_sym_and] = ACTIONS(6292), - [anon_sym_bitor] = ACTIONS(6292), - [anon_sym_xor] = ACTIONS(6292), - [anon_sym_bitand] = ACTIONS(6292), - [anon_sym_not_eq] = ACTIONS(6292), - [anon_sym_DASH_DASH] = ACTIONS(6294), - [anon_sym_PLUS_PLUS] = ACTIONS(6294), - [anon_sym_DOT] = ACTIONS(6292), - [anon_sym_DOT_STAR] = ACTIONS(6294), - [anon_sym_DASH_GT] = ACTIONS(6294), - [sym_comment] = ACTIONS(3), + [STATE(1668)] = { + [sym_expression] = STATE(5750), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2296)] = { - [sym_ms_based_modifier] = STATE(8771), - [sym_ms_unaligned_ptr_modifier] = STATE(4125), - [sym_ms_pointer_modifier] = STATE(3928), - [sym__declarator] = STATE(6673), - [sym__abstract_declarator] = STATE(6868), - [sym_parenthesized_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(6295), - [sym_attributed_declarator] = STATE(6229), - [sym_pointer_declarator] = STATE(6229), - [sym_abstract_pointer_declarator] = STATE(6295), - [sym_function_declarator] = STATE(6229), - [sym_abstract_function_declarator] = STATE(6295), - [sym_array_declarator] = STATE(6229), - [sym_abstract_array_declarator] = STATE(6295), - [sym_type_qualifier] = STATE(2873), - [sym_alignas_qualifier] = STATE(4342), - [sym_parameter_list] = STATE(3096), - [sym_decltype] = STATE(9058), - [sym_reference_declarator] = STATE(6229), - [sym_abstract_reference_declarator] = STATE(6295), - [sym_structured_binding_declarator] = STATE(6229), - [sym__function_declarator_seq] = STATE(6273), - [sym_template_type] = STATE(9058), - [sym_template_function] = STATE(6229), - [sym_destructor_name] = STATE(6229), - [sym_dependent_type_identifier] = STATE(9058), - [sym__scope_resolution] = STATE(6011), - [sym_qualified_identifier] = STATE(6229), - [sym_operator_name] = STATE(6229), - [aux_sym__type_definition_type_repeat1] = STATE(2873), - [aux_sym_pointer_declarator_repeat1] = STATE(3928), - [sym_identifier] = ACTIONS(5505), - [anon_sym_RPAREN] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(4324), + [STATE(1669)] = { + [sym_expression] = STATE(5699), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1670)] = { + [sym_expression] = STATE(5750), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1671)] = { + [sym_expression] = STATE(5699), + [sym__string] = STATE(6270), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(4577), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(4577), + [sym_call_expression] = STATE(4577), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(4577), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(4577), + [sym_char_literal] = STATE(6270), + [sym_concatenated_string] = STATE(6270), + [sym_string_literal] = STATE(4919), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4919), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(4577), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(4577), + [sym_identifier] = ACTIONS(5346), + [anon_sym_LPAREN2] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_compl] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_sizeof] = ACTIONS(3351), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3355), + [anon_sym_L_SQUOTE] = ACTIONS(3357), + [anon_sym_u_SQUOTE] = ACTIONS(3357), + [anon_sym_U_SQUOTE] = ACTIONS(3357), + [anon_sym_u8_SQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_co_await] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_requires] = ACTIONS(3375), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1672)] = { + [sym_expression] = STATE(5630), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1673)] = { + [sym_expression] = STATE(5631), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1674)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1675)] = { + [sym_expression] = STATE(5636), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1676)] = { + [sym_expression] = STATE(5637), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1677)] = { + [sym_expression] = STATE(5638), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1678)] = { + [sym_expression] = STATE(3689), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1679)] = { + [sym_expression] = STATE(5639), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1680)] = { + [sym_expression] = STATE(3666), + [sym__string] = STATE(5012), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(5012), + [sym_concatenated_string] = STATE(5012), + [sym_string_literal] = STATE(3609), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3609), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2501), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2517), + [anon_sym_u_DQUOTE] = ACTIONS(2517), + [anon_sym_U_DQUOTE] = ACTIONS(2517), + [anon_sym_u8_DQUOTE] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2525), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1681)] = { + [sym_expression] = STATE(5640), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1682)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1683)] = { + [sym_expression] = STATE(5643), + [sym__string] = STATE(5912), + [sym_conditional_expression] = STATE(6001), + [sym_assignment_expression] = STATE(6001), + [sym_pointer_expression] = STATE(5613), + [sym_unary_expression] = STATE(6001), + [sym_binary_expression] = STATE(6001), + [sym_update_expression] = STATE(6001), + [sym_cast_expression] = STATE(6001), + [sym_sizeof_expression] = STATE(6001), + [sym_alignof_expression] = STATE(6001), + [sym_offsetof_expression] = STATE(6001), + [sym_generic_expression] = STATE(6001), + [sym_subscript_expression] = STATE(5613), + [sym_call_expression] = STATE(5613), + [sym_gnu_asm_expression] = STATE(6001), + [sym_extension_expression] = STATE(6001), + [sym_field_expression] = STATE(5613), + [sym_compound_literal_expression] = STATE(6001), + [sym_parenthesized_expression] = STATE(5613), + [sym_char_literal] = STATE(5912), + [sym_concatenated_string] = STATE(5912), + [sym_string_literal] = STATE(4037), + [sym_null] = STATE(6001), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10294), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(6001), + [sym_raw_string_literal] = STATE(4037), + [sym_co_await_expression] = STATE(6001), + [sym_new_expression] = STATE(6001), + [sym_delete_expression] = STATE(6001), + [sym_requires_clause] = STATE(6001), + [sym_requires_expression] = STATE(6001), + [sym_lambda_expression] = STATE(6001), + [sym_lambda_capture_specifier] = STATE(7894), + [sym_fold_expression] = STATE(6001), + [sym_parameter_pack_expansion] = STATE(6001), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5613), + [sym_qualified_type_identifier] = STATE(10294), + [sym_reflect_expression] = STATE(6001), + [sym_splice_specifier] = STATE(5545), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9235), + [sym_splice_expression] = STATE(5915), + [sym_user_defined_literal] = STATE(5613), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2740), + [anon_sym_not] = ACTIONS(1974), + [anon_sym_compl] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym___alignof__] = ACTIONS(1988), + [anon_sym___alignof] = ACTIONS(1988), + [anon_sym__alignof] = ACTIONS(1988), + [anon_sym_alignof] = ACTIONS(1988), + [anon_sym__Alignof] = ACTIONS(1988), + [anon_sym_offsetof] = ACTIONS(1990), + [anon_sym__Generic] = ACTIONS(1992), + [anon_sym_typename] = ACTIONS(2742), + [anon_sym_asm] = ACTIONS(1996), + [anon_sym___asm__] = ACTIONS(1996), + [anon_sym___asm] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(2000), + [anon_sym_u_SQUOTE] = ACTIONS(2000), + [anon_sym_U_SQUOTE] = ACTIONS(2000), + [anon_sym_u8_SQUOTE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_NULL] = ACTIONS(2006), + [anon_sym_nullptr] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2010), + [anon_sym_R_DQUOTE] = ACTIONS(2012), + [anon_sym_LR_DQUOTE] = ACTIONS(2012), + [anon_sym_uR_DQUOTE] = ACTIONS(2012), + [anon_sym_UR_DQUOTE] = ACTIONS(2012), + [anon_sym_u8R_DQUOTE] = ACTIONS(2012), + [anon_sym_co_await] = ACTIONS(2014), + [anon_sym_new] = ACTIONS(2016), + [anon_sym_requires] = ACTIONS(2018), + [anon_sym_CARET_CARET] = ACTIONS(2020), + [anon_sym_LBRACK_COLON] = ACTIONS(2744), + [sym_this] = ACTIONS(2004), + }, + [STATE(1684)] = { + [sym_expression] = STATE(3689), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1685)] = { + [sym_expression] = STATE(6663), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4328), - [anon_sym_AMP] = ACTIONS(4330), - [anon_sym___extension__] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(6003), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3345), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3345), - [sym_ms_signed_ptr_modifier] = ACTIONS(3345), - [anon_sym__unaligned] = ACTIONS(3347), - [anon_sym___unaligned] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_constexpr] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_restrict] = ACTIONS(3349), - [anon_sym___restrict__] = ACTIONS(3349), - [anon_sym__Atomic] = ACTIONS(3349), - [anon_sym__Noreturn] = ACTIONS(3349), - [anon_sym_noreturn] = ACTIONS(3349), - [anon_sym__Nonnull] = ACTIONS(3349), - [anon_sym_mutable] = ACTIONS(3349), - [anon_sym_constinit] = ACTIONS(3349), - [anon_sym_consteval] = ACTIONS(3349), - [anon_sym_alignas] = ACTIONS(3351), - [anon_sym__Alignas] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1980), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), }, - [STATE(2297)] = { - [sym_template_argument_list] = STATE(2312), - [sym_identifier] = ACTIONS(6296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6298), - [anon_sym_COMMA] = ACTIONS(6298), - [anon_sym_RPAREN] = ACTIONS(6298), - [aux_sym_preproc_if_token2] = ACTIONS(6298), - [aux_sym_preproc_else_token1] = ACTIONS(6298), - [aux_sym_preproc_elif_token1] = ACTIONS(6296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6298), - [anon_sym_LPAREN2] = ACTIONS(6298), - [anon_sym_DASH] = ACTIONS(6296), - [anon_sym_PLUS] = ACTIONS(6296), - [anon_sym_STAR] = ACTIONS(6296), - [anon_sym_SLASH] = ACTIONS(6296), - [anon_sym_PERCENT] = ACTIONS(6296), - [anon_sym_PIPE_PIPE] = ACTIONS(6298), - [anon_sym_AMP_AMP] = ACTIONS(6298), - [anon_sym_PIPE] = ACTIONS(6296), - [anon_sym_CARET] = ACTIONS(6296), - [anon_sym_AMP] = ACTIONS(6296), - [anon_sym_EQ_EQ] = ACTIONS(6298), - [anon_sym_BANG_EQ] = ACTIONS(6298), - [anon_sym_GT] = ACTIONS(6296), - [anon_sym_GT_EQ] = ACTIONS(6298), - [anon_sym_LT_EQ] = ACTIONS(6296), - [anon_sym_LT] = ACTIONS(6300), - [anon_sym_LT_LT] = ACTIONS(6296), - [anon_sym_GT_GT] = ACTIONS(6296), - [anon_sym_SEMI] = ACTIONS(6298), - [anon_sym___attribute__] = ACTIONS(6296), - [anon_sym___attribute] = ACTIONS(6296), - [anon_sym_COLON] = ACTIONS(6296), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_RBRACE] = ACTIONS(6298), - [anon_sym_LBRACK] = ACTIONS(6298), - [anon_sym_RBRACK] = ACTIONS(6298), - [anon_sym_EQ] = ACTIONS(6296), - [anon_sym_QMARK] = ACTIONS(6298), - [anon_sym_STAR_EQ] = ACTIONS(6298), - [anon_sym_SLASH_EQ] = ACTIONS(6298), - [anon_sym_PERCENT_EQ] = ACTIONS(6298), - [anon_sym_PLUS_EQ] = ACTIONS(6298), - [anon_sym_DASH_EQ] = ACTIONS(6298), - [anon_sym_LT_LT_EQ] = ACTIONS(6298), - [anon_sym_GT_GT_EQ] = ACTIONS(6298), - [anon_sym_AMP_EQ] = ACTIONS(6298), - [anon_sym_CARET_EQ] = ACTIONS(6298), - [anon_sym_PIPE_EQ] = ACTIONS(6298), - [anon_sym_and_eq] = ACTIONS(6296), - [anon_sym_or_eq] = ACTIONS(6296), - [anon_sym_xor_eq] = ACTIONS(6296), - [anon_sym_LT_EQ_GT] = ACTIONS(6298), - [anon_sym_or] = ACTIONS(6296), - [anon_sym_and] = ACTIONS(6296), - [anon_sym_bitor] = ACTIONS(6296), - [anon_sym_xor] = ACTIONS(6296), - [anon_sym_bitand] = ACTIONS(6296), - [anon_sym_not_eq] = ACTIONS(6296), - [anon_sym_DASH_DASH] = ACTIONS(6298), - [anon_sym_PLUS_PLUS] = ACTIONS(6298), - [anon_sym_DOT] = ACTIONS(6296), - [anon_sym_DOT_STAR] = ACTIONS(6298), - [anon_sym_DASH_GT] = ACTIONS(6298), + [STATE(1686)] = { + [sym_expression] = STATE(3666), + [sym__string] = STATE(4469), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4469), + [sym_concatenated_string] = STATE(4469), + [sym_string_literal] = STATE(3166), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3166), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym___extension__] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2028), + [anon_sym_compl] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_sizeof] = ACTIONS(2040), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2066), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_co_await] = ACTIONS(2070), + [anon_sym_new] = ACTIONS(2072), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2076), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1687)] = { + [sym_expression] = STATE(6814), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2298)] = { - [sym_type_qualifier] = STATE(2304), - [sym_alignas_qualifier] = STATE(2397), - [aux_sym__type_definition_type_repeat1] = STATE(2304), - [aux_sym_sized_type_specifier_repeat1] = STATE(2584), - [sym_identifier] = ACTIONS(6303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5122), - [anon_sym_COMMA] = ACTIONS(5122), - [anon_sym_LPAREN2] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5124), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5122), - [anon_sym_PIPE_PIPE] = ACTIONS(5122), - [anon_sym_AMP_AMP] = ACTIONS(5122), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_CARET] = ACTIONS(5122), - [anon_sym_AMP] = ACTIONS(5124), - [anon_sym_EQ_EQ] = ACTIONS(5122), - [anon_sym_BANG_EQ] = ACTIONS(5122), - [anon_sym_GT] = ACTIONS(5124), - [anon_sym_GT_EQ] = ACTIONS(5124), - [anon_sym_LT_EQ] = ACTIONS(5124), - [anon_sym_LT] = ACTIONS(5124), - [anon_sym_LT_LT] = ACTIONS(5122), - [anon_sym_GT_GT] = ACTIONS(5124), - [anon_sym___extension__] = ACTIONS(6305), - [anon_sym___attribute__] = ACTIONS(5124), - [anon_sym___attribute] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5122), - [anon_sym_signed] = ACTIONS(6307), - [anon_sym_unsigned] = ACTIONS(6307), - [anon_sym_long] = ACTIONS(6307), - [anon_sym_short] = ACTIONS(6307), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_const] = ACTIONS(6305), - [anon_sym_constexpr] = ACTIONS(6305), - [anon_sym_volatile] = ACTIONS(6305), - [anon_sym_restrict] = ACTIONS(6305), - [anon_sym___restrict__] = ACTIONS(6305), - [anon_sym__Atomic] = ACTIONS(6305), - [anon_sym__Noreturn] = ACTIONS(6305), - [anon_sym_noreturn] = ACTIONS(6305), - [anon_sym__Nonnull] = ACTIONS(6305), - [anon_sym_mutable] = ACTIONS(6305), - [anon_sym_constinit] = ACTIONS(6305), - [anon_sym_consteval] = ACTIONS(6305), - [anon_sym_alignas] = ACTIONS(6309), - [anon_sym__Alignas] = ACTIONS(6309), - [sym_primitive_type] = ACTIONS(6311), - [anon_sym_QMARK] = ACTIONS(5122), - [anon_sym_LT_EQ_GT] = ACTIONS(5122), - [anon_sym_or] = ACTIONS(5124), - [anon_sym_and] = ACTIONS(5124), - [anon_sym_bitor] = ACTIONS(5124), - [anon_sym_xor] = ACTIONS(5124), - [anon_sym_bitand] = ACTIONS(5124), - [anon_sym_not_eq] = ACTIONS(5124), - [anon_sym_DASH_DASH] = ACTIONS(5122), - [anon_sym_PLUS_PLUS] = ACTIONS(5122), - [anon_sym_DOT] = ACTIONS(5124), - [anon_sym_DOT_STAR] = ACTIONS(5122), - [anon_sym_DASH_GT] = ACTIONS(5122), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5122), + [STATE(1688)] = { + [sym_expression] = STATE(6862), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2299)] = { - [sym_attribute_specifier] = STATE(2343), - [sym_identifier] = ACTIONS(6313), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [aux_sym_preproc_if_token2] = ACTIONS(6315), - [aux_sym_preproc_else_token1] = ACTIONS(6315), - [aux_sym_preproc_elif_token1] = ACTIONS(6313), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6315), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6315), - [anon_sym_LPAREN2] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6313), - [anon_sym_PLUS] = ACTIONS(6313), - [anon_sym_STAR] = ACTIONS(6313), - [anon_sym_SLASH] = ACTIONS(6313), - [anon_sym_PERCENT] = ACTIONS(6313), - [anon_sym_PIPE_PIPE] = ACTIONS(6315), - [anon_sym_AMP_AMP] = ACTIONS(6315), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_CARET] = ACTIONS(6313), - [anon_sym_AMP] = ACTIONS(6313), - [anon_sym_EQ_EQ] = ACTIONS(6315), - [anon_sym_BANG_EQ] = ACTIONS(6315), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_GT_EQ] = ACTIONS(6315), - [anon_sym_LT_EQ] = ACTIONS(6313), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_LT_LT] = ACTIONS(6313), - [anon_sym_GT_GT] = ACTIONS(6313), - [anon_sym_SEMI] = ACTIONS(6315), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [anon_sym_RBRACE] = ACTIONS(6315), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6313), - [anon_sym_QMARK] = ACTIONS(6315), - [anon_sym_STAR_EQ] = ACTIONS(6315), - [anon_sym_SLASH_EQ] = ACTIONS(6315), - [anon_sym_PERCENT_EQ] = ACTIONS(6315), - [anon_sym_PLUS_EQ] = ACTIONS(6315), - [anon_sym_DASH_EQ] = ACTIONS(6315), - [anon_sym_LT_LT_EQ] = ACTIONS(6315), - [anon_sym_GT_GT_EQ] = ACTIONS(6315), - [anon_sym_AMP_EQ] = ACTIONS(6315), - [anon_sym_CARET_EQ] = ACTIONS(6315), - [anon_sym_PIPE_EQ] = ACTIONS(6315), - [anon_sym_and_eq] = ACTIONS(6313), - [anon_sym_or_eq] = ACTIONS(6313), - [anon_sym_xor_eq] = ACTIONS(6313), - [anon_sym_LT_EQ_GT] = ACTIONS(6315), - [anon_sym_or] = ACTIONS(6313), - [anon_sym_and] = ACTIONS(6313), - [anon_sym_bitor] = ACTIONS(6313), - [anon_sym_xor] = ACTIONS(6313), - [anon_sym_bitand] = ACTIONS(6313), - [anon_sym_not_eq] = ACTIONS(6313), - [anon_sym_DASH_DASH] = ACTIONS(6315), - [anon_sym_PLUS_PLUS] = ACTIONS(6315), - [anon_sym_DOT] = ACTIONS(6313), - [anon_sym_DOT_STAR] = ACTIONS(6315), - [anon_sym_DASH_GT] = ACTIONS(6315), - [sym_comment] = ACTIONS(3), + [STATE(1689)] = { + [sym_expression] = STATE(5750), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2300)] = { - [sym_identifier] = ACTIONS(5486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5488), - [anon_sym_COMMA] = ACTIONS(5488), - [anon_sym_LPAREN2] = ACTIONS(5488), - [anon_sym_DASH] = ACTIONS(5486), - [anon_sym_PLUS] = ACTIONS(5486), - [anon_sym_STAR] = ACTIONS(5486), - [anon_sym_SLASH] = ACTIONS(5486), - [anon_sym_PERCENT] = ACTIONS(5486), - [anon_sym_PIPE_PIPE] = ACTIONS(5488), - [anon_sym_AMP_AMP] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5486), - [anon_sym_CARET] = ACTIONS(5486), - [anon_sym_AMP] = ACTIONS(5486), - [anon_sym_EQ_EQ] = ACTIONS(5488), - [anon_sym_BANG_EQ] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(5486), - [anon_sym_GT_EQ] = ACTIONS(5488), - [anon_sym_LT_EQ] = ACTIONS(5486), - [anon_sym_LT] = ACTIONS(5486), - [anon_sym_LT_LT] = ACTIONS(5486), - [anon_sym_GT_GT] = ACTIONS(5486), - [anon_sym_SEMI] = ACTIONS(5488), - [anon_sym___attribute__] = ACTIONS(5486), - [anon_sym___attribute] = ACTIONS(5486), - [anon_sym_LBRACK] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(5486), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_STAR_EQ] = ACTIONS(5488), - [anon_sym_SLASH_EQ] = ACTIONS(5488), - [anon_sym_PERCENT_EQ] = ACTIONS(5488), - [anon_sym_PLUS_EQ] = ACTIONS(5488), - [anon_sym_DASH_EQ] = ACTIONS(5488), - [anon_sym_LT_LT_EQ] = ACTIONS(5488), - [anon_sym_GT_GT_EQ] = ACTIONS(5488), - [anon_sym_AMP_EQ] = ACTIONS(5488), - [anon_sym_CARET_EQ] = ACTIONS(5488), - [anon_sym_PIPE_EQ] = ACTIONS(5488), - [anon_sym_and_eq] = ACTIONS(5486), - [anon_sym_or_eq] = ACTIONS(5486), - [anon_sym_xor_eq] = ACTIONS(5486), - [anon_sym_LT_EQ_GT] = ACTIONS(5488), - [anon_sym_or] = ACTIONS(5486), - [anon_sym_and] = ACTIONS(5486), - [anon_sym_bitor] = ACTIONS(5486), - [anon_sym_xor] = ACTIONS(5486), - [anon_sym_bitand] = ACTIONS(5486), - [anon_sym_not_eq] = ACTIONS(5486), - [anon_sym_DASH_DASH] = ACTIONS(5488), - [anon_sym_PLUS_PLUS] = ACTIONS(5488), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_DOT_STAR] = ACTIONS(5488), - [anon_sym_DASH_GT] = ACTIONS(5488), - [anon_sym_L_DQUOTE] = ACTIONS(5488), - [anon_sym_u_DQUOTE] = ACTIONS(5488), - [anon_sym_U_DQUOTE] = ACTIONS(5488), - [anon_sym_u8_DQUOTE] = ACTIONS(5488), - [anon_sym_DQUOTE] = ACTIONS(5488), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5488), - [anon_sym_LR_DQUOTE] = ACTIONS(5488), - [anon_sym_uR_DQUOTE] = ACTIONS(5488), - [anon_sym_UR_DQUOTE] = ACTIONS(5488), - [anon_sym_u8R_DQUOTE] = ACTIONS(5488), - [sym_literal_suffix] = ACTIONS(5486), + [STATE(1690)] = { + [sym_expression] = STATE(6985), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2301)] = { - [sym_identifier] = ACTIONS(5493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5495), - [anon_sym_COMMA] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5495), - [anon_sym_DASH] = ACTIONS(5493), - [anon_sym_PLUS] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_SLASH] = ACTIONS(5493), - [anon_sym_PERCENT] = ACTIONS(5493), - [anon_sym_PIPE_PIPE] = ACTIONS(5495), - [anon_sym_AMP_AMP] = ACTIONS(5495), - [anon_sym_PIPE] = ACTIONS(5493), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5493), - [anon_sym_EQ_EQ] = ACTIONS(5495), - [anon_sym_BANG_EQ] = ACTIONS(5495), - [anon_sym_GT] = ACTIONS(5493), - [anon_sym_GT_EQ] = ACTIONS(5495), - [anon_sym_LT_EQ] = ACTIONS(5493), - [anon_sym_LT] = ACTIONS(5493), - [anon_sym_LT_LT] = ACTIONS(5493), - [anon_sym_GT_GT] = ACTIONS(5493), - [anon_sym_SEMI] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5493), - [anon_sym___attribute] = ACTIONS(5493), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_EQ] = ACTIONS(5493), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_STAR_EQ] = ACTIONS(5495), - [anon_sym_SLASH_EQ] = ACTIONS(5495), - [anon_sym_PERCENT_EQ] = ACTIONS(5495), - [anon_sym_PLUS_EQ] = ACTIONS(5495), - [anon_sym_DASH_EQ] = ACTIONS(5495), - [anon_sym_LT_LT_EQ] = ACTIONS(5495), - [anon_sym_GT_GT_EQ] = ACTIONS(5495), - [anon_sym_AMP_EQ] = ACTIONS(5495), - [anon_sym_CARET_EQ] = ACTIONS(5495), - [anon_sym_PIPE_EQ] = ACTIONS(5495), - [anon_sym_and_eq] = ACTIONS(5493), - [anon_sym_or_eq] = ACTIONS(5493), - [anon_sym_xor_eq] = ACTIONS(5493), - [anon_sym_LT_EQ_GT] = ACTIONS(5495), - [anon_sym_or] = ACTIONS(5493), - [anon_sym_and] = ACTIONS(5493), - [anon_sym_bitor] = ACTIONS(5493), - [anon_sym_xor] = ACTIONS(5493), - [anon_sym_bitand] = ACTIONS(5493), - [anon_sym_not_eq] = ACTIONS(5493), - [anon_sym_DASH_DASH] = ACTIONS(5495), - [anon_sym_PLUS_PLUS] = ACTIONS(5495), - [anon_sym_DOT] = ACTIONS(5493), - [anon_sym_DOT_STAR] = ACTIONS(5495), - [anon_sym_DASH_GT] = ACTIONS(5495), - [anon_sym_L_DQUOTE] = ACTIONS(5495), - [anon_sym_u_DQUOTE] = ACTIONS(5495), - [anon_sym_U_DQUOTE] = ACTIONS(5495), - [anon_sym_u8_DQUOTE] = ACTIONS(5495), - [anon_sym_DQUOTE] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5495), - [anon_sym_LR_DQUOTE] = ACTIONS(5495), - [anon_sym_uR_DQUOTE] = ACTIONS(5495), - [anon_sym_UR_DQUOTE] = ACTIONS(5495), - [anon_sym_u8R_DQUOTE] = ACTIONS(5495), - [sym_literal_suffix] = ACTIONS(5493), + [STATE(1691)] = { + [sym_expression] = STATE(5699), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2302)] = { - [sym_attribute_specifier] = STATE(2406), - [sym_identifier] = ACTIONS(6317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [aux_sym_preproc_if_token2] = ACTIONS(6319), - [aux_sym_preproc_else_token1] = ACTIONS(6319), - [aux_sym_preproc_elif_token1] = ACTIONS(6317), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6319), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6319), - [anon_sym_LPAREN2] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6317), - [anon_sym_PLUS] = ACTIONS(6317), - [anon_sym_STAR] = ACTIONS(6317), - [anon_sym_SLASH] = ACTIONS(6317), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_PIPE_PIPE] = ACTIONS(6319), - [anon_sym_AMP_AMP] = ACTIONS(6319), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_CARET] = ACTIONS(6317), - [anon_sym_AMP] = ACTIONS(6317), - [anon_sym_EQ_EQ] = ACTIONS(6319), - [anon_sym_BANG_EQ] = ACTIONS(6319), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_GT_EQ] = ACTIONS(6319), - [anon_sym_LT_EQ] = ACTIONS(6317), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_LT_LT] = ACTIONS(6317), - [anon_sym_GT_GT] = ACTIONS(6317), - [anon_sym_SEMI] = ACTIONS(6319), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [anon_sym_RBRACE] = ACTIONS(6319), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6317), - [anon_sym_QMARK] = ACTIONS(6319), - [anon_sym_STAR_EQ] = ACTIONS(6319), - [anon_sym_SLASH_EQ] = ACTIONS(6319), - [anon_sym_PERCENT_EQ] = ACTIONS(6319), - [anon_sym_PLUS_EQ] = ACTIONS(6319), - [anon_sym_DASH_EQ] = ACTIONS(6319), - [anon_sym_LT_LT_EQ] = ACTIONS(6319), - [anon_sym_GT_GT_EQ] = ACTIONS(6319), - [anon_sym_AMP_EQ] = ACTIONS(6319), - [anon_sym_CARET_EQ] = ACTIONS(6319), - [anon_sym_PIPE_EQ] = ACTIONS(6319), - [anon_sym_and_eq] = ACTIONS(6317), - [anon_sym_or_eq] = ACTIONS(6317), - [anon_sym_xor_eq] = ACTIONS(6317), - [anon_sym_LT_EQ_GT] = ACTIONS(6319), - [anon_sym_or] = ACTIONS(6317), - [anon_sym_and] = ACTIONS(6317), - [anon_sym_bitor] = ACTIONS(6317), - [anon_sym_xor] = ACTIONS(6317), - [anon_sym_bitand] = ACTIONS(6317), - [anon_sym_not_eq] = ACTIONS(6317), - [anon_sym_DASH_DASH] = ACTIONS(6319), - [anon_sym_PLUS_PLUS] = ACTIONS(6319), - [anon_sym_DOT] = ACTIONS(6317), - [anon_sym_DOT_STAR] = ACTIONS(6319), - [anon_sym_DASH_GT] = ACTIONS(6319), - [sym_comment] = ACTIONS(3), + [STATE(1692)] = { + [sym_expression] = STATE(6730), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(6075), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2303)] = { - [sym_template_argument_list] = STATE(1626), - [aux_sym_sized_type_specifier_repeat1] = STATE(2448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6245), - [anon_sym_COMMA] = ACTIONS(6245), - [anon_sym_RPAREN] = ACTIONS(6245), - [anon_sym_LPAREN2] = ACTIONS(6245), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6243), - [anon_sym_PIPE_PIPE] = ACTIONS(6245), - [anon_sym_AMP_AMP] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_EQ_EQ] = ACTIONS(6245), - [anon_sym_BANG_EQ] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_GT_EQ] = ACTIONS(6245), - [anon_sym_LT_EQ] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6243), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym___attribute__] = ACTIONS(6245), - [anon_sym___attribute] = ACTIONS(6243), - [anon_sym_COLON] = ACTIONS(6243), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_signed] = ACTIONS(6009), - [anon_sym_unsigned] = ACTIONS(6009), - [anon_sym_long] = ACTIONS(6009), - [anon_sym_short] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_RBRACK] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_QMARK] = ACTIONS(6245), - [anon_sym_STAR_EQ] = ACTIONS(6245), - [anon_sym_SLASH_EQ] = ACTIONS(6245), - [anon_sym_PERCENT_EQ] = ACTIONS(6245), - [anon_sym_PLUS_EQ] = ACTIONS(6245), - [anon_sym_DASH_EQ] = ACTIONS(6245), - [anon_sym_LT_LT_EQ] = ACTIONS(6245), - [anon_sym_GT_GT_EQ] = ACTIONS(6245), - [anon_sym_AMP_EQ] = ACTIONS(6245), - [anon_sym_CARET_EQ] = ACTIONS(6245), - [anon_sym_PIPE_EQ] = ACTIONS(6245), - [anon_sym_and_eq] = ACTIONS(6245), - [anon_sym_or_eq] = ACTIONS(6245), - [anon_sym_xor_eq] = ACTIONS(6245), - [anon_sym_LT_EQ_GT] = ACTIONS(6245), - [anon_sym_or] = ACTIONS(6243), - [anon_sym_and] = ACTIONS(6243), - [anon_sym_bitor] = ACTIONS(6245), - [anon_sym_xor] = ACTIONS(6243), - [anon_sym_bitand] = ACTIONS(6245), - [anon_sym_not_eq] = ACTIONS(6245), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_DOT_STAR] = ACTIONS(6245), - [anon_sym_DASH_GT] = ACTIONS(6245), - [sym_comment] = ACTIONS(3), + [STATE(1693)] = { + [sym_expression] = STATE(7049), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2304)] = { - [sym_type_qualifier] = STATE(2232), - [sym_alignas_qualifier] = STATE(2397), - [aux_sym__type_definition_type_repeat1] = STATE(2232), - [aux_sym_sized_type_specifier_repeat1] = STATE(2511), - [sym_identifier] = ACTIONS(6321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_LPAREN2] = ACTIONS(5137), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5137), - [anon_sym_PIPE_PIPE] = ACTIONS(5137), - [anon_sym_AMP_AMP] = ACTIONS(5137), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_AMP] = ACTIONS(5139), - [anon_sym_EQ_EQ] = ACTIONS(5137), - [anon_sym_BANG_EQ] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_GT_EQ] = ACTIONS(5139), - [anon_sym_LT_EQ] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_LT_LT] = ACTIONS(5137), - [anon_sym_GT_GT] = ACTIONS(5139), - [anon_sym___extension__] = ACTIONS(6305), - [anon_sym___attribute__] = ACTIONS(5139), - [anon_sym___attribute] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_signed] = ACTIONS(6323), - [anon_sym_unsigned] = ACTIONS(6323), - [anon_sym_long] = ACTIONS(6323), - [anon_sym_short] = ACTIONS(6323), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_const] = ACTIONS(6305), - [anon_sym_constexpr] = ACTIONS(6305), - [anon_sym_volatile] = ACTIONS(6305), - [anon_sym_restrict] = ACTIONS(6305), - [anon_sym___restrict__] = ACTIONS(6305), - [anon_sym__Atomic] = ACTIONS(6305), - [anon_sym__Noreturn] = ACTIONS(6305), - [anon_sym_noreturn] = ACTIONS(6305), - [anon_sym__Nonnull] = ACTIONS(6305), - [anon_sym_mutable] = ACTIONS(6305), - [anon_sym_constinit] = ACTIONS(6305), - [anon_sym_consteval] = ACTIONS(6305), - [anon_sym_alignas] = ACTIONS(6309), - [anon_sym__Alignas] = ACTIONS(6309), - [sym_primitive_type] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(5137), - [anon_sym_LT_EQ_GT] = ACTIONS(5137), - [anon_sym_or] = ACTIONS(5139), - [anon_sym_and] = ACTIONS(5139), - [anon_sym_bitor] = ACTIONS(5139), - [anon_sym_xor] = ACTIONS(5139), - [anon_sym_bitand] = ACTIONS(5139), - [anon_sym_not_eq] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_PLUS_PLUS] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5139), - [anon_sym_DOT_STAR] = ACTIONS(5137), - [anon_sym_DASH_GT] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5137), + [STATE(1694)] = { + [sym_expression] = STATE(5763), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2305)] = { - [sym_template_argument_list] = STATE(2312), - [sym_identifier] = ACTIONS(6327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6329), - [anon_sym_COMMA] = ACTIONS(6329), - [anon_sym_RPAREN] = ACTIONS(6329), - [aux_sym_preproc_if_token2] = ACTIONS(6329), - [aux_sym_preproc_else_token1] = ACTIONS(6329), - [aux_sym_preproc_elif_token1] = ACTIONS(6327), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6329), - [anon_sym_LPAREN2] = ACTIONS(6329), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_PERCENT] = ACTIONS(6327), - [anon_sym_PIPE_PIPE] = ACTIONS(6329), - [anon_sym_AMP_AMP] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_AMP] = ACTIONS(6327), - [anon_sym_EQ_EQ] = ACTIONS(6329), - [anon_sym_BANG_EQ] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6327), - [anon_sym_GT_EQ] = ACTIONS(6329), - [anon_sym_LT_EQ] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6331), - [anon_sym_LT_LT] = ACTIONS(6327), - [anon_sym_GT_GT] = ACTIONS(6327), - [anon_sym_SEMI] = ACTIONS(6329), - [anon_sym___attribute__] = ACTIONS(6327), - [anon_sym___attribute] = ACTIONS(6327), - [anon_sym_COLON] = ACTIONS(6327), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_RBRACE] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6329), - [anon_sym_RBRACK] = ACTIONS(6329), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_QMARK] = ACTIONS(6329), - [anon_sym_STAR_EQ] = ACTIONS(6329), - [anon_sym_SLASH_EQ] = ACTIONS(6329), - [anon_sym_PERCENT_EQ] = ACTIONS(6329), - [anon_sym_PLUS_EQ] = ACTIONS(6329), - [anon_sym_DASH_EQ] = ACTIONS(6329), - [anon_sym_LT_LT_EQ] = ACTIONS(6329), - [anon_sym_GT_GT_EQ] = ACTIONS(6329), - [anon_sym_AMP_EQ] = ACTIONS(6329), - [anon_sym_CARET_EQ] = ACTIONS(6329), - [anon_sym_PIPE_EQ] = ACTIONS(6329), - [anon_sym_and_eq] = ACTIONS(6327), - [anon_sym_or_eq] = ACTIONS(6327), - [anon_sym_xor_eq] = ACTIONS(6327), - [anon_sym_LT_EQ_GT] = ACTIONS(6329), - [anon_sym_or] = ACTIONS(6327), - [anon_sym_and] = ACTIONS(6327), - [anon_sym_bitor] = ACTIONS(6327), - [anon_sym_xor] = ACTIONS(6327), - [anon_sym_bitand] = ACTIONS(6327), - [anon_sym_not_eq] = ACTIONS(6327), - [anon_sym_DASH_DASH] = ACTIONS(6329), - [anon_sym_PLUS_PLUS] = ACTIONS(6329), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_DOT_STAR] = ACTIONS(6329), - [anon_sym_DASH_GT] = ACTIONS(6329), - [sym_comment] = ACTIONS(3), + [STATE(1695)] = { + [sym_expression] = STATE(6936), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2306)] = { - [sym_attribute_specifier] = STATE(2318), - [sym_identifier] = ACTIONS(6334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6336), - [anon_sym_COMMA] = ACTIONS(6336), - [anon_sym_RPAREN] = ACTIONS(6336), - [aux_sym_preproc_if_token2] = ACTIONS(6336), - [aux_sym_preproc_else_token1] = ACTIONS(6336), - [aux_sym_preproc_elif_token1] = ACTIONS(6334), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6336), - [anon_sym_LPAREN2] = ACTIONS(6336), - [anon_sym_DASH] = ACTIONS(6334), - [anon_sym_PLUS] = ACTIONS(6334), - [anon_sym_STAR] = ACTIONS(6334), - [anon_sym_SLASH] = ACTIONS(6334), - [anon_sym_PERCENT] = ACTIONS(6334), - [anon_sym_PIPE_PIPE] = ACTIONS(6336), - [anon_sym_AMP_AMP] = ACTIONS(6336), - [anon_sym_PIPE] = ACTIONS(6334), - [anon_sym_CARET] = ACTIONS(6334), - [anon_sym_AMP] = ACTIONS(6334), - [anon_sym_EQ_EQ] = ACTIONS(6336), - [anon_sym_BANG_EQ] = ACTIONS(6336), - [anon_sym_GT] = ACTIONS(6334), - [anon_sym_GT_EQ] = ACTIONS(6336), - [anon_sym_LT_EQ] = ACTIONS(6334), - [anon_sym_LT] = ACTIONS(6334), - [anon_sym_LT_LT] = ACTIONS(6334), - [anon_sym_GT_GT] = ACTIONS(6334), - [anon_sym_SEMI] = ACTIONS(6336), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6336), - [anon_sym_LBRACE] = ACTIONS(6336), - [anon_sym_RBRACE] = ACTIONS(6336), - [anon_sym_LBRACK] = ACTIONS(6336), - [anon_sym_RBRACK] = ACTIONS(6336), - [anon_sym_EQ] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6336), - [anon_sym_STAR_EQ] = ACTIONS(6336), - [anon_sym_SLASH_EQ] = ACTIONS(6336), - [anon_sym_PERCENT_EQ] = ACTIONS(6336), - [anon_sym_PLUS_EQ] = ACTIONS(6336), - [anon_sym_DASH_EQ] = ACTIONS(6336), - [anon_sym_LT_LT_EQ] = ACTIONS(6336), - [anon_sym_GT_GT_EQ] = ACTIONS(6336), - [anon_sym_AMP_EQ] = ACTIONS(6336), - [anon_sym_CARET_EQ] = ACTIONS(6336), - [anon_sym_PIPE_EQ] = ACTIONS(6336), - [anon_sym_and_eq] = ACTIONS(6334), - [anon_sym_or_eq] = ACTIONS(6334), - [anon_sym_xor_eq] = ACTIONS(6334), - [anon_sym_LT_EQ_GT] = ACTIONS(6336), - [anon_sym_or] = ACTIONS(6334), - [anon_sym_and] = ACTIONS(6334), - [anon_sym_bitor] = ACTIONS(6334), - [anon_sym_xor] = ACTIONS(6334), - [anon_sym_bitand] = ACTIONS(6334), - [anon_sym_not_eq] = ACTIONS(6334), - [anon_sym_DASH_DASH] = ACTIONS(6336), - [anon_sym_PLUS_PLUS] = ACTIONS(6336), - [anon_sym_DOT] = ACTIONS(6334), - [anon_sym_DOT_STAR] = ACTIONS(6336), - [anon_sym_DASH_GT] = ACTIONS(6336), - [sym_comment] = ACTIONS(3), + [STATE(1696)] = { + [sym_expression] = STATE(3665), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), }, - [STATE(2307)] = { - [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___attribute] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5684), - [anon_sym_COLON_COLON] = ACTIONS(5686), - [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_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), + [STATE(1697)] = { + [sym_expression] = STATE(6728), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2308)] = { - [sym_attribute_specifier] = STATE(2370), - [sym_identifier] = ACTIONS(6338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6340), - [anon_sym_COMMA] = ACTIONS(6340), - [anon_sym_RPAREN] = ACTIONS(6340), - [aux_sym_preproc_if_token2] = ACTIONS(6340), - [aux_sym_preproc_else_token1] = ACTIONS(6340), - [aux_sym_preproc_elif_token1] = ACTIONS(6338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6340), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6340), - [anon_sym_LPAREN2] = ACTIONS(6340), - [anon_sym_DASH] = ACTIONS(6338), - [anon_sym_PLUS] = ACTIONS(6338), - [anon_sym_STAR] = ACTIONS(6338), - [anon_sym_SLASH] = ACTIONS(6338), - [anon_sym_PERCENT] = ACTIONS(6338), - [anon_sym_PIPE_PIPE] = ACTIONS(6340), - [anon_sym_AMP_AMP] = ACTIONS(6340), - [anon_sym_PIPE] = ACTIONS(6338), - [anon_sym_CARET] = ACTIONS(6338), - [anon_sym_AMP] = ACTIONS(6338), - [anon_sym_EQ_EQ] = ACTIONS(6340), - [anon_sym_BANG_EQ] = ACTIONS(6340), - [anon_sym_GT] = ACTIONS(6338), - [anon_sym_GT_EQ] = ACTIONS(6340), - [anon_sym_LT_EQ] = ACTIONS(6338), - [anon_sym_LT] = ACTIONS(6338), - [anon_sym_LT_LT] = ACTIONS(6338), - [anon_sym_GT_GT] = ACTIONS(6338), - [anon_sym_SEMI] = ACTIONS(6340), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(6340), - [anon_sym_RBRACE] = ACTIONS(6340), - [anon_sym_LBRACK] = ACTIONS(6340), - [anon_sym_RBRACK] = ACTIONS(6340), - [anon_sym_EQ] = ACTIONS(6338), - [anon_sym_QMARK] = ACTIONS(6340), - [anon_sym_STAR_EQ] = ACTIONS(6340), - [anon_sym_SLASH_EQ] = ACTIONS(6340), - [anon_sym_PERCENT_EQ] = ACTIONS(6340), - [anon_sym_PLUS_EQ] = ACTIONS(6340), - [anon_sym_DASH_EQ] = ACTIONS(6340), - [anon_sym_LT_LT_EQ] = ACTIONS(6340), - [anon_sym_GT_GT_EQ] = ACTIONS(6340), - [anon_sym_AMP_EQ] = ACTIONS(6340), - [anon_sym_CARET_EQ] = ACTIONS(6340), - [anon_sym_PIPE_EQ] = ACTIONS(6340), - [anon_sym_and_eq] = ACTIONS(6338), - [anon_sym_or_eq] = ACTIONS(6338), - [anon_sym_xor_eq] = ACTIONS(6338), - [anon_sym_LT_EQ_GT] = ACTIONS(6340), - [anon_sym_or] = ACTIONS(6338), - [anon_sym_and] = ACTIONS(6338), - [anon_sym_bitor] = ACTIONS(6338), - [anon_sym_xor] = ACTIONS(6338), - [anon_sym_bitand] = ACTIONS(6338), - [anon_sym_not_eq] = ACTIONS(6338), - [anon_sym_DASH_DASH] = ACTIONS(6340), - [anon_sym_PLUS_PLUS] = ACTIONS(6340), - [anon_sym_DOT] = ACTIONS(6338), - [anon_sym_DOT_STAR] = ACTIONS(6340), - [anon_sym_DASH_GT] = ACTIONS(6340), - [sym_comment] = ACTIONS(3), + [STATE(1698)] = { + [sym_expression] = STATE(6788), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(6077), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2309)] = { - [sym_string_literal] = STATE(2215), - [sym_raw_string_literal] = STATE(2215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), - [anon_sym_COMMA] = ACTIONS(5790), - [anon_sym_RPAREN] = ACTIONS(5790), - [anon_sym_LPAREN2] = ACTIONS(5790), - [anon_sym_DASH] = ACTIONS(5788), - [anon_sym_PLUS] = ACTIONS(5788), - [anon_sym_STAR] = ACTIONS(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_LBRACK] = ACTIONS(5790), - [anon_sym_EQ] = ACTIONS(5788), - [anon_sym_QMARK] = ACTIONS(5790), - [anon_sym_STAR_EQ] = ACTIONS(5790), - [anon_sym_SLASH_EQ] = ACTIONS(5790), - [anon_sym_PERCENT_EQ] = ACTIONS(5790), - [anon_sym_PLUS_EQ] = ACTIONS(5790), - [anon_sym_DASH_EQ] = ACTIONS(5790), - [anon_sym_LT_LT_EQ] = ACTIONS(5790), - [anon_sym_GT_GT_EQ] = ACTIONS(5790), - [anon_sym_AMP_EQ] = ACTIONS(5790), - [anon_sym_CARET_EQ] = ACTIONS(5790), - [anon_sym_PIPE_EQ] = ACTIONS(5790), - [anon_sym_and_eq] = ACTIONS(5788), - [anon_sym_or_eq] = ACTIONS(5788), - [anon_sym_xor_eq] = ACTIONS(5788), - [anon_sym_LT_EQ_GT] = ACTIONS(5790), - [anon_sym_or] = ACTIONS(5788), - [anon_sym_and] = ACTIONS(5788), - [anon_sym_bitor] = ACTIONS(5788), - [anon_sym_xor] = ACTIONS(5788), - [anon_sym_bitand] = ACTIONS(5788), - [anon_sym_not_eq] = ACTIONS(5788), - [anon_sym_DASH_DASH] = ACTIONS(5790), - [anon_sym_PLUS_PLUS] = ACTIONS(5790), - [anon_sym_DOT] = ACTIONS(5788), - [anon_sym_DOT_STAR] = ACTIONS(5790), - [anon_sym_DASH_GT] = ACTIONS(5788), - [anon_sym_L_DQUOTE] = ACTIONS(5068), - [anon_sym_u_DQUOTE] = ACTIONS(5068), - [anon_sym_U_DQUOTE] = ACTIONS(5068), - [anon_sym_u8_DQUOTE] = ACTIONS(5068), - [anon_sym_DQUOTE] = ACTIONS(5068), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5074), - [anon_sym_LR_DQUOTE] = ACTIONS(5074), - [anon_sym_uR_DQUOTE] = ACTIONS(5074), - [anon_sym_UR_DQUOTE] = ACTIONS(5074), - [anon_sym_u8R_DQUOTE] = ACTIONS(5074), - [anon_sym_DASH_GT_STAR] = ACTIONS(5790), - [sym_literal_suffix] = ACTIONS(5788), + [STATE(1699)] = { + [sym_expression] = STATE(6799), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2310)] = { - [sym_attribute_specifier] = STATE(2375), - [sym_identifier] = ACTIONS(6342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6344), - [anon_sym_COMMA] = ACTIONS(6344), - [anon_sym_RPAREN] = ACTIONS(6344), - [aux_sym_preproc_if_token2] = ACTIONS(6344), - [aux_sym_preproc_else_token1] = ACTIONS(6344), - [aux_sym_preproc_elif_token1] = ACTIONS(6342), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6344), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6344), - [anon_sym_LPAREN2] = ACTIONS(6344), - [anon_sym_DASH] = ACTIONS(6342), - [anon_sym_PLUS] = ACTIONS(6342), - [anon_sym_STAR] = ACTIONS(6342), - [anon_sym_SLASH] = ACTIONS(6342), - [anon_sym_PERCENT] = ACTIONS(6342), - [anon_sym_PIPE_PIPE] = ACTIONS(6344), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_PIPE] = ACTIONS(6342), - [anon_sym_CARET] = ACTIONS(6342), - [anon_sym_AMP] = ACTIONS(6342), - [anon_sym_EQ_EQ] = ACTIONS(6344), - [anon_sym_BANG_EQ] = ACTIONS(6344), - [anon_sym_GT] = ACTIONS(6342), - [anon_sym_GT_EQ] = ACTIONS(6344), - [anon_sym_LT_EQ] = ACTIONS(6342), - [anon_sym_LT] = ACTIONS(6342), - [anon_sym_LT_LT] = ACTIONS(6342), - [anon_sym_GT_GT] = ACTIONS(6342), - [anon_sym_SEMI] = ACTIONS(6344), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6344), - [anon_sym_LBRACE] = ACTIONS(6344), - [anon_sym_RBRACE] = ACTIONS(6344), - [anon_sym_LBRACK] = ACTIONS(6344), - [anon_sym_RBRACK] = ACTIONS(6344), - [anon_sym_EQ] = ACTIONS(6342), - [anon_sym_QMARK] = ACTIONS(6344), - [anon_sym_STAR_EQ] = ACTIONS(6344), - [anon_sym_SLASH_EQ] = ACTIONS(6344), - [anon_sym_PERCENT_EQ] = ACTIONS(6344), - [anon_sym_PLUS_EQ] = ACTIONS(6344), - [anon_sym_DASH_EQ] = ACTIONS(6344), - [anon_sym_LT_LT_EQ] = ACTIONS(6344), - [anon_sym_GT_GT_EQ] = ACTIONS(6344), - [anon_sym_AMP_EQ] = ACTIONS(6344), - [anon_sym_CARET_EQ] = ACTIONS(6344), - [anon_sym_PIPE_EQ] = ACTIONS(6344), - [anon_sym_and_eq] = ACTIONS(6342), - [anon_sym_or_eq] = ACTIONS(6342), - [anon_sym_xor_eq] = ACTIONS(6342), - [anon_sym_LT_EQ_GT] = ACTIONS(6344), - [anon_sym_or] = ACTIONS(6342), - [anon_sym_and] = ACTIONS(6342), - [anon_sym_bitor] = ACTIONS(6342), - [anon_sym_xor] = ACTIONS(6342), - [anon_sym_bitand] = ACTIONS(6342), - [anon_sym_not_eq] = ACTIONS(6342), - [anon_sym_DASH_DASH] = ACTIONS(6344), - [anon_sym_PLUS_PLUS] = ACTIONS(6344), - [anon_sym_DOT] = ACTIONS(6342), - [anon_sym_DOT_STAR] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(6344), - [sym_comment] = ACTIONS(3), + [STATE(1700)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2311)] = { - [sym_attribute_specifier] = STATE(2342), - [sym_identifier] = ACTIONS(6346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), - [anon_sym_COMMA] = ACTIONS(6348), - [anon_sym_RPAREN] = ACTIONS(6348), - [aux_sym_preproc_if_token2] = ACTIONS(6348), - [aux_sym_preproc_else_token1] = ACTIONS(6348), - [aux_sym_preproc_elif_token1] = ACTIONS(6346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6348), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6348), - [anon_sym_LPAREN2] = ACTIONS(6348), - [anon_sym_DASH] = ACTIONS(6346), - [anon_sym_PLUS] = ACTIONS(6346), - [anon_sym_STAR] = ACTIONS(6346), - [anon_sym_SLASH] = ACTIONS(6346), - [anon_sym_PERCENT] = ACTIONS(6346), - [anon_sym_PIPE_PIPE] = ACTIONS(6348), - [anon_sym_AMP_AMP] = ACTIONS(6348), - [anon_sym_PIPE] = ACTIONS(6346), - [anon_sym_CARET] = ACTIONS(6346), - [anon_sym_AMP] = ACTIONS(6346), - [anon_sym_EQ_EQ] = ACTIONS(6348), - [anon_sym_BANG_EQ] = ACTIONS(6348), - [anon_sym_GT] = ACTIONS(6346), - [anon_sym_GT_EQ] = ACTIONS(6348), - [anon_sym_LT_EQ] = ACTIONS(6346), - [anon_sym_LT] = ACTIONS(6346), - [anon_sym_LT_LT] = ACTIONS(6346), - [anon_sym_GT_GT] = ACTIONS(6346), - [anon_sym_SEMI] = ACTIONS(6348), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6348), - [anon_sym_LBRACE] = ACTIONS(6348), - [anon_sym_RBRACE] = ACTIONS(6348), - [anon_sym_LBRACK] = ACTIONS(6348), - [anon_sym_RBRACK] = ACTIONS(6348), - [anon_sym_EQ] = ACTIONS(6346), - [anon_sym_QMARK] = ACTIONS(6348), - [anon_sym_STAR_EQ] = ACTIONS(6348), - [anon_sym_SLASH_EQ] = ACTIONS(6348), - [anon_sym_PERCENT_EQ] = ACTIONS(6348), - [anon_sym_PLUS_EQ] = ACTIONS(6348), - [anon_sym_DASH_EQ] = ACTIONS(6348), - [anon_sym_LT_LT_EQ] = ACTIONS(6348), - [anon_sym_GT_GT_EQ] = ACTIONS(6348), - [anon_sym_AMP_EQ] = ACTIONS(6348), - [anon_sym_CARET_EQ] = ACTIONS(6348), - [anon_sym_PIPE_EQ] = ACTIONS(6348), - [anon_sym_and_eq] = ACTIONS(6346), - [anon_sym_or_eq] = ACTIONS(6346), - [anon_sym_xor_eq] = ACTIONS(6346), - [anon_sym_LT_EQ_GT] = ACTIONS(6348), - [anon_sym_or] = ACTIONS(6346), - [anon_sym_and] = ACTIONS(6346), - [anon_sym_bitor] = ACTIONS(6346), - [anon_sym_xor] = ACTIONS(6346), - [anon_sym_bitand] = ACTIONS(6346), - [anon_sym_not_eq] = ACTIONS(6346), - [anon_sym_DASH_DASH] = ACTIONS(6348), - [anon_sym_PLUS_PLUS] = ACTIONS(6348), - [anon_sym_DOT] = ACTIONS(6346), - [anon_sym_DOT_STAR] = ACTIONS(6348), - [anon_sym_DASH_GT] = ACTIONS(6348), - [sym_comment] = ACTIONS(3), + [STATE(1701)] = { + [sym_expression] = STATE(6801), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2312)] = { - [sym_identifier] = ACTIONS(6350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6352), - [anon_sym_COMMA] = ACTIONS(6352), - [anon_sym_RPAREN] = ACTIONS(6352), - [aux_sym_preproc_if_token2] = ACTIONS(6352), - [aux_sym_preproc_else_token1] = ACTIONS(6352), - [aux_sym_preproc_elif_token1] = ACTIONS(6350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6352), - [anon_sym_LPAREN2] = ACTIONS(6352), - [anon_sym_DASH] = ACTIONS(6350), - [anon_sym_PLUS] = ACTIONS(6350), - [anon_sym_STAR] = ACTIONS(6350), - [anon_sym_SLASH] = ACTIONS(6350), - [anon_sym_PERCENT] = ACTIONS(6350), - [anon_sym_PIPE_PIPE] = ACTIONS(6352), - [anon_sym_AMP_AMP] = ACTIONS(6352), - [anon_sym_PIPE] = ACTIONS(6350), - [anon_sym_CARET] = ACTIONS(6350), - [anon_sym_AMP] = ACTIONS(6350), - [anon_sym_EQ_EQ] = ACTIONS(6352), - [anon_sym_BANG_EQ] = ACTIONS(6352), - [anon_sym_GT] = ACTIONS(6350), - [anon_sym_GT_EQ] = ACTIONS(6352), - [anon_sym_LT_EQ] = ACTIONS(6350), - [anon_sym_LT] = ACTIONS(6350), - [anon_sym_LT_LT] = ACTIONS(6350), - [anon_sym_GT_GT] = ACTIONS(6350), - [anon_sym_SEMI] = ACTIONS(6352), - [anon_sym___attribute__] = ACTIONS(6350), - [anon_sym___attribute] = ACTIONS(6350), - [anon_sym_COLON] = ACTIONS(6350), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(6352), - [anon_sym_RBRACE] = ACTIONS(6352), - [anon_sym_LBRACK] = ACTIONS(6352), - [anon_sym_RBRACK] = ACTIONS(6352), - [anon_sym_EQ] = ACTIONS(6350), - [anon_sym_QMARK] = ACTIONS(6352), - [anon_sym_STAR_EQ] = ACTIONS(6352), - [anon_sym_SLASH_EQ] = ACTIONS(6352), - [anon_sym_PERCENT_EQ] = ACTIONS(6352), - [anon_sym_PLUS_EQ] = ACTIONS(6352), - [anon_sym_DASH_EQ] = ACTIONS(6352), - [anon_sym_LT_LT_EQ] = ACTIONS(6352), - [anon_sym_GT_GT_EQ] = ACTIONS(6352), - [anon_sym_AMP_EQ] = ACTIONS(6352), - [anon_sym_CARET_EQ] = ACTIONS(6352), - [anon_sym_PIPE_EQ] = ACTIONS(6352), - [anon_sym_and_eq] = ACTIONS(6350), - [anon_sym_or_eq] = ACTIONS(6350), - [anon_sym_xor_eq] = ACTIONS(6350), - [anon_sym_LT_EQ_GT] = ACTIONS(6352), - [anon_sym_or] = ACTIONS(6350), - [anon_sym_and] = ACTIONS(6350), - [anon_sym_bitor] = ACTIONS(6350), - [anon_sym_xor] = ACTIONS(6350), - [anon_sym_bitand] = ACTIONS(6350), - [anon_sym_not_eq] = ACTIONS(6350), - [anon_sym_DASH_DASH] = ACTIONS(6352), - [anon_sym_PLUS_PLUS] = ACTIONS(6352), - [anon_sym_DOT] = ACTIONS(6350), - [anon_sym_DOT_STAR] = ACTIONS(6352), - [anon_sym_DASH_GT] = ACTIONS(6352), + [STATE(1702)] = { + [sym_expression] = STATE(6802), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1703)] = { + [sym_expression] = STATE(6803), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1704)] = { + [sym_expression] = STATE(6807), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1705)] = { + [sym_expression] = STATE(6808), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1706)] = { + [sym_expression] = STATE(6810), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1707)] = { + [sym_expression] = STATE(6812), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1708)] = { + [sym_expression] = STATE(6813), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1709)] = { + [sym_expression] = STATE(6617), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1710)] = { + [sym_expression] = STATE(6923), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1711)] = { + [sym_expression] = STATE(7047), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1712)] = { + [sym_expression] = STATE(7055), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2313)] = { - [sym_attribute_specifier] = STATE(2323), - [sym_identifier] = ACTIONS(6354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6356), - [anon_sym_COMMA] = ACTIONS(6356), - [anon_sym_RPAREN] = ACTIONS(6356), - [aux_sym_preproc_if_token2] = ACTIONS(6356), - [aux_sym_preproc_else_token1] = ACTIONS(6356), - [aux_sym_preproc_elif_token1] = ACTIONS(6354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6356), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6356), - [anon_sym_LPAREN2] = ACTIONS(6356), - [anon_sym_DASH] = ACTIONS(6354), - [anon_sym_PLUS] = ACTIONS(6354), - [anon_sym_STAR] = ACTIONS(6354), - [anon_sym_SLASH] = ACTIONS(6354), - [anon_sym_PERCENT] = ACTIONS(6354), - [anon_sym_PIPE_PIPE] = ACTIONS(6356), - [anon_sym_AMP_AMP] = ACTIONS(6356), - [anon_sym_PIPE] = ACTIONS(6354), - [anon_sym_CARET] = ACTIONS(6354), - [anon_sym_AMP] = ACTIONS(6354), - [anon_sym_EQ_EQ] = ACTIONS(6356), - [anon_sym_BANG_EQ] = ACTIONS(6356), - [anon_sym_GT] = ACTIONS(6354), - [anon_sym_GT_EQ] = ACTIONS(6356), - [anon_sym_LT_EQ] = ACTIONS(6354), - [anon_sym_LT] = ACTIONS(6354), - [anon_sym_LT_LT] = ACTIONS(6354), - [anon_sym_GT_GT] = ACTIONS(6354), - [anon_sym_SEMI] = ACTIONS(6356), - [anon_sym___attribute__] = ACTIONS(5676), - [anon_sym___attribute] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(6356), - [anon_sym_LBRACE] = ACTIONS(6356), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_LBRACK] = ACTIONS(6356), - [anon_sym_RBRACK] = ACTIONS(6356), - [anon_sym_EQ] = ACTIONS(6354), - [anon_sym_QMARK] = ACTIONS(6356), - [anon_sym_STAR_EQ] = ACTIONS(6356), - [anon_sym_SLASH_EQ] = ACTIONS(6356), - [anon_sym_PERCENT_EQ] = ACTIONS(6356), - [anon_sym_PLUS_EQ] = ACTIONS(6356), - [anon_sym_DASH_EQ] = ACTIONS(6356), - [anon_sym_LT_LT_EQ] = ACTIONS(6356), - [anon_sym_GT_GT_EQ] = ACTIONS(6356), - [anon_sym_AMP_EQ] = ACTIONS(6356), - [anon_sym_CARET_EQ] = ACTIONS(6356), - [anon_sym_PIPE_EQ] = ACTIONS(6356), - [anon_sym_and_eq] = ACTIONS(6354), - [anon_sym_or_eq] = ACTIONS(6354), - [anon_sym_xor_eq] = ACTIONS(6354), - [anon_sym_LT_EQ_GT] = ACTIONS(6356), - [anon_sym_or] = ACTIONS(6354), - [anon_sym_and] = ACTIONS(6354), - [anon_sym_bitor] = ACTIONS(6354), - [anon_sym_xor] = ACTIONS(6354), - [anon_sym_bitand] = ACTIONS(6354), - [anon_sym_not_eq] = ACTIONS(6354), - [anon_sym_DASH_DASH] = ACTIONS(6356), - [anon_sym_PLUS_PLUS] = ACTIONS(6356), - [anon_sym_DOT] = ACTIONS(6354), - [anon_sym_DOT_STAR] = ACTIONS(6356), - [anon_sym_DASH_GT] = ACTIONS(6356), + [STATE(1713)] = { + [sym_expression] = STATE(6621), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1714)] = { + [sym_expression] = STATE(6851), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1715)] = { + [sym_expression] = STATE(6625), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5676), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5676), + [sym_call_expression] = STATE(5676), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5676), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5676), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10188), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(5676), + [sym_qualified_type_identifier] = STATE(10188), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9186), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5676), + [sym_identifier] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(4532), + [anon_sym_COLON_COLON] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4540), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1716)] = { + [sym_expression] = STATE(6463), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1717)] = { + [sym_expression] = STATE(5306), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1718)] = { + [sym_expression] = STATE(5311), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1719)] = { + [sym_expression] = STATE(3685), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1720)] = { + [sym_expression] = STATE(5312), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1721)] = { + [sym_expression] = STATE(5313), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1722)] = { + [sym_expression] = STATE(5314), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1723)] = { + [sym_expression] = STATE(5315), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1724)] = { + [sym_expression] = STATE(5316), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1725)] = { + [sym_expression] = STATE(5317), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1726)] = { + [sym_expression] = STATE(5318), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1727)] = { + [sym_expression] = STATE(5319), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1728)] = { + [sym_expression] = STATE(5307), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(6079), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1729)] = { + [sym_expression] = STATE(3695), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1730)] = { + [sym_expression] = STATE(5309), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(6081), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1731)] = { + [sym_expression] = STATE(5320), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1732)] = { + [sym_expression] = STATE(5323), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1733)] = { + [sym_expression] = STATE(5325), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7856), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(2654), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2650), + [anon_sym_compl] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(2658), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2660), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1734)] = { + [sym_expression] = STATE(6824), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1735)] = { + [sym_expression] = STATE(6835), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1736)] = { + [sym_expression] = STATE(6840), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1737)] = { + [sym_expression] = STATE(6901), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1738)] = { + [sym_expression] = STATE(6928), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1739)] = { + [sym_expression] = STATE(6930), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, - [STATE(2314)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2314), - [sym_identifier] = ACTIONS(5109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_EQ_EQ] = ACTIONS(5111), - [anon_sym_BANG_EQ] = ACTIONS(5111), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_GT_EQ] = ACTIONS(5109), - [anon_sym_LT_EQ] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_LT_LT] = ACTIONS(5111), - [anon_sym_GT_GT] = ACTIONS(5109), - [anon_sym___extension__] = ACTIONS(5109), - [anon_sym___attribute__] = ACTIONS(5109), - [anon_sym___attribute] = ACTIONS(5109), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_signed] = ACTIONS(6358), - [anon_sym_unsigned] = ACTIONS(6358), - [anon_sym_long] = ACTIONS(6358), - [anon_sym_short] = ACTIONS(6358), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_const] = ACTIONS(5109), - [anon_sym_constexpr] = ACTIONS(5109), - [anon_sym_volatile] = ACTIONS(5109), - [anon_sym_restrict] = ACTIONS(5109), - [anon_sym___restrict__] = ACTIONS(5109), - [anon_sym__Atomic] = ACTIONS(5109), - [anon_sym__Noreturn] = ACTIONS(5109), - [anon_sym_noreturn] = ACTIONS(5109), - [anon_sym__Nonnull] = ACTIONS(5109), - [anon_sym_mutable] = ACTIONS(5109), - [anon_sym_constinit] = ACTIONS(5109), - [anon_sym_consteval] = ACTIONS(5109), - [anon_sym_alignas] = ACTIONS(5109), - [anon_sym__Alignas] = ACTIONS(5109), - [sym_primitive_type] = ACTIONS(5109), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LT_EQ_GT] = ACTIONS(5111), - [anon_sym_or] = ACTIONS(5109), - [anon_sym_and] = ACTIONS(5109), - [anon_sym_bitor] = ACTIONS(5109), - [anon_sym_xor] = ACTIONS(5109), - [anon_sym_bitand] = ACTIONS(5109), - [anon_sym_not_eq] = ACTIONS(5109), - [anon_sym_DASH_DASH] = ACTIONS(5111), - [anon_sym_PLUS_PLUS] = ACTIONS(5111), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_DOT_STAR] = ACTIONS(5111), - [anon_sym_DASH_GT] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5109), - [anon_sym_override] = ACTIONS(5109), - [anon_sym_GT2] = ACTIONS(5111), - [anon_sym_requires] = ACTIONS(5109), + [STATE(1740)] = { + [sym_expression] = STATE(6937), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2315)] = { - [sym_decltype_auto] = STATE(1917), - [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(5663), - [anon_sym___attribute__] = ACTIONS(5663), - [anon_sym___attribute] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_const] = ACTIONS(5661), - [anon_sym_constexpr] = ACTIONS(5663), - [anon_sym_volatile] = ACTIONS(5663), - [anon_sym_restrict] = ACTIONS(5663), - [anon_sym___restrict__] = ACTIONS(5663), - [anon_sym__Atomic] = ACTIONS(5663), - [anon_sym__Noreturn] = ACTIONS(5663), - [anon_sym_noreturn] = ACTIONS(5663), - [anon_sym__Nonnull] = ACTIONS(5663), - [anon_sym_mutable] = ACTIONS(5663), - [anon_sym_constinit] = ACTIONS(5663), - [anon_sym_consteval] = ACTIONS(5663), - [anon_sym_alignas] = ACTIONS(5663), - [anon_sym__Alignas] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [anon_sym_or] = ACTIONS(5663), - [anon_sym_and] = ACTIONS(5663), - [anon_sym_bitor] = ACTIONS(5663), - [anon_sym_xor] = ACTIONS(5663), - [anon_sym_bitand] = ACTIONS(5663), - [anon_sym_not_eq] = ACTIONS(5663), - [anon_sym_DASH_DASH] = ACTIONS(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(6265), - [anon_sym_decltype] = ACTIONS(5072), - [anon_sym_final] = ACTIONS(5663), - [anon_sym_override] = ACTIONS(5663), - [anon_sym_requires] = ACTIONS(5663), + [STATE(1741)] = { + [sym_expression] = STATE(6398), + [sym__string] = STATE(6535), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5428), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5428), + [sym_call_expression] = STATE(5428), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5428), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5428), + [sym_char_literal] = STATE(6535), + [sym_concatenated_string] = STATE(6535), + [sym_string_literal] = STATE(5505), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(5505), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5428), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5428), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3285), + [anon_sym_compl] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_sizeof] = ACTIONS(3301), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3307), + [anon_sym_u_SQUOTE] = ACTIONS(3307), + [anon_sym_U_SQUOTE] = ACTIONS(3307), + [anon_sym_u8_SQUOTE] = ACTIONS(3307), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_R_DQUOTE] = ACTIONS(3313), + [anon_sym_LR_DQUOTE] = ACTIONS(3313), + [anon_sym_uR_DQUOTE] = ACTIONS(3313), + [anon_sym_UR_DQUOTE] = ACTIONS(3313), + [anon_sym_u8R_DQUOTE] = ACTIONS(3313), + [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), }, - [STATE(2316)] = { - [sym_identifier] = ACTIONS(5033), - [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(5033), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5026), - [anon_sym_LPAREN2] = ACTIONS(5026), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_PERCENT] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5026), - [anon_sym_AMP_AMP] = ACTIONS(5026), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_EQ_EQ] = ACTIONS(5026), - [anon_sym_BANG_EQ] = ACTIONS(5026), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5026), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_LT_LT] = ACTIONS(5033), - [anon_sym_GT_GT] = ACTIONS(5033), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym___attribute__] = ACTIONS(5033), - [anon_sym___attribute] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), - [anon_sym_RBRACK] = ACTIONS(5026), - [anon_sym_EQ] = ACTIONS(5033), - [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(5033), - [anon_sym_or_eq] = ACTIONS(5033), - [anon_sym_xor_eq] = ACTIONS(5033), - [anon_sym_LT_EQ_GT] = ACTIONS(5026), - [anon_sym_or] = ACTIONS(5033), - [anon_sym_and] = ACTIONS(5033), - [anon_sym_bitor] = ACTIONS(5033), - [anon_sym_xor] = ACTIONS(5033), - [anon_sym_bitand] = ACTIONS(5033), - [anon_sym_not_eq] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5026), - [anon_sym_PLUS_PLUS] = ACTIONS(5026), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_DOT_STAR] = ACTIONS(5026), - [anon_sym_DASH_GT] = ACTIONS(5026), + [STATE(1742)] = { + [sym_expression] = STATE(6584), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1743)] = { + [sym_expression] = STATE(6826), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1744)] = { + [sym_expression] = STATE(7064), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1745)] = { + [sym_expression] = STATE(7083), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1746)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1747)] = { + [sym_expression] = STATE(7023), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1748)] = { + [sym_expression] = STATE(7007), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1749)] = { + [sym_expression] = STATE(7014), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6361), 1, - sym_identifier, - ACTIONS(6372), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2672), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6369), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, + [STATE(1750)] = { + [sym_expression] = STATE(7022), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1751)] = { + [sym_expression] = STATE(6563), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1752)] = { + [sym_expression] = STATE(6823), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1753)] = { + [sym_expression] = STATE(6889), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1754)] = { + [sym_expression] = STATE(6907), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1755)] = { + [sym_expression] = STATE(6878), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1756)] = { + [sym_expression] = STATE(6954), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1757)] = { + [sym_expression] = STATE(6955), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1758)] = { + [sym_expression] = STATE(6961), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1759)] = { + [sym_expression] = STATE(6537), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1760)] = { + [sym_expression] = STATE(6861), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1761)] = { + [sym_expression] = STATE(6897), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1762)] = { + [sym_expression] = STATE(6932), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1763)] = { + [sym_expression] = STATE(6933), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1764)] = { + [sym_expression] = STATE(6972), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1765)] = { + [sym_expression] = STATE(6592), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1766)] = { + [sym_expression] = STATE(7013), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1767)] = { + [sym_expression] = STATE(6962), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1768)] = { + [sym_expression] = STATE(6864), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1769)] = { + [sym_expression] = STATE(6898), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1770)] = { + [sym_expression] = STATE(6918), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1771)] = { + [sym_expression] = STATE(6465), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1772)] = { + [sym_expression] = STATE(6827), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1773)] = { + [sym_expression] = STATE(6968), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1774)] = { + [sym_expression] = STATE(6480), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1775)] = { + [sym_expression] = STATE(7060), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1776)] = { + [sym_expression] = STATE(6679), + [sym__string] = STATE(6994), + [sym_conditional_expression] = STATE(7215), + [sym_assignment_expression] = STATE(7215), + [sym_pointer_expression] = STATE(5788), + [sym_unary_expression] = STATE(7215), + [sym_binary_expression] = STATE(7215), + [sym_update_expression] = STATE(7215), + [sym_cast_expression] = STATE(7215), + [sym_sizeof_expression] = STATE(7215), + [sym_alignof_expression] = STATE(7215), + [sym_offsetof_expression] = STATE(7215), + [sym_generic_expression] = STATE(7215), + [sym_subscript_expression] = STATE(5788), + [sym_call_expression] = STATE(5788), + [sym_gnu_asm_expression] = STATE(7215), + [sym_extension_expression] = STATE(7215), + [sym_field_expression] = STATE(5788), + [sym_compound_literal_expression] = STATE(7215), + [sym_parenthesized_expression] = STATE(5788), + [sym_char_literal] = STATE(6994), + [sym_concatenated_string] = STATE(6994), + [sym_string_literal] = STATE(5877), + [sym_null] = STATE(7215), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10478), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7215), + [sym_raw_string_literal] = STATE(5877), + [sym_co_await_expression] = STATE(7215), + [sym_new_expression] = STATE(7215), + [sym_delete_expression] = STATE(7215), + [sym_requires_clause] = STATE(7215), + [sym_requires_expression] = STATE(7215), + [sym_lambda_expression] = STATE(7215), + [sym_lambda_capture_specifier] = STATE(7886), + [sym_fold_expression] = STATE(7215), + [sym_parameter_pack_expansion] = STATE(7215), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7839), + [sym_qualified_identifier] = STATE(5788), + [sym_qualified_type_identifier] = STATE(10478), + [sym_reflect_expression] = STATE(7215), + [sym_splice_specifier] = STATE(6518), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9157), + [sym_splice_expression] = STATE(6996), + [sym_user_defined_literal] = STATE(5788), + [sym_identifier] = ACTIONS(4558), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym___extension__] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4564), + [anon_sym_not] = ACTIONS(2811), + [anon_sym_compl] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2833), + [anon_sym___alignof__] = ACTIONS(2835), + [anon_sym___alignof] = ACTIONS(2835), + [anon_sym__alignof] = ACTIONS(2835), + [anon_sym_alignof] = ACTIONS(2835), + [anon_sym__Alignof] = ACTIONS(2835), + [anon_sym_offsetof] = ACTIONS(2837), + [anon_sym__Generic] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(4566), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym___asm__] = ACTIONS(2843), + [anon_sym___asm] = ACTIONS(2843), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2849), + [anon_sym_u_DQUOTE] = ACTIONS(2849), + [anon_sym_U_DQUOTE] = ACTIONS(2849), + [anon_sym_u8_DQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2853), + [anon_sym_nullptr] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2859), + [anon_sym_delete] = 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(2867), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2871), + [anon_sym_CARET_CARET] = ACTIONS(2873), + [anon_sym_LBRACK_COLON] = ACTIONS(2875), + [sym_this] = ACTIONS(2851), + }, + [STATE(1777)] = { + [sym_expression] = STATE(6887), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1778)] = { + [sym_expression] = STATE(6925), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1779)] = { + [sym_expression] = STATE(6950), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1780)] = { + [sym_expression] = STATE(6963), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1781)] = { + [sym_expression] = STATE(6978), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1782)] = { + [sym_expression] = STATE(6991), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1783)] = { + [sym_expression] = STATE(5001), + [sym__string] = STATE(5234), + [sym_conditional_expression] = STATE(5492), + [sym_assignment_expression] = STATE(5492), + [sym_pointer_expression] = STATE(5566), + [sym_unary_expression] = STATE(5492), + [sym_binary_expression] = STATE(5492), + [sym_update_expression] = STATE(5492), + [sym_cast_expression] = STATE(5492), + [sym_sizeof_expression] = STATE(5492), + [sym_alignof_expression] = STATE(5492), + [sym_offsetof_expression] = STATE(5492), + [sym_generic_expression] = STATE(5492), + [sym_subscript_expression] = STATE(5566), + [sym_call_expression] = STATE(5566), + [sym_gnu_asm_expression] = STATE(5492), + [sym_extension_expression] = STATE(5492), + [sym_field_expression] = STATE(5566), + [sym_compound_literal_expression] = STATE(5492), + [sym_parenthesized_expression] = STATE(5566), + [sym_char_literal] = STATE(5234), + [sym_concatenated_string] = STATE(5234), + [sym_string_literal] = STATE(3660), + [sym_null] = STATE(5492), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10312), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5492), + [sym_raw_string_literal] = STATE(3660), + [sym_co_await_expression] = STATE(5492), + [sym_new_expression] = STATE(5492), + [sym_delete_expression] = STATE(5492), + [sym_requires_clause] = STATE(5492), + [sym_requires_expression] = STATE(5492), + [sym_lambda_expression] = STATE(5492), + [sym_lambda_capture_specifier] = STATE(7906), + [sym_fold_expression] = STATE(5492), + [sym_parameter_pack_expansion] = STATE(5492), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7867), + [sym_qualified_identifier] = STATE(5566), + [sym_qualified_type_identifier] = STATE(10312), + [sym_reflect_expression] = STATE(5492), + [sym_splice_specifier] = STATE(4921), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9240), + [sym_splice_expression] = STATE(5295), + [sym_user_defined_literal] = STATE(5566), + [sym_identifier] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2594), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1896), + [anon_sym___alignof__] = ACTIONS(1898), + [anon_sym___alignof] = ACTIONS(1898), + [anon_sym__alignof] = ACTIONS(1898), + [anon_sym_alignof] = ACTIONS(1898), + [anon_sym__Alignof] = ACTIONS(1898), + [anon_sym_offsetof] = ACTIONS(1900), + [anon_sym__Generic] = ACTIONS(1902), + [anon_sym_typename] = ACTIONS(2596), + [anon_sym_asm] = ACTIONS(1906), + [anon_sym___asm__] = ACTIONS(1906), + [anon_sym___asm] = ACTIONS(1906), + [sym_number_literal] = ACTIONS(1908), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1912), + [anon_sym_u_DQUOTE] = ACTIONS(1912), + [anon_sym_U_DQUOTE] = ACTIONS(1912), + [anon_sym_u8_DQUOTE] = ACTIONS(1912), + [anon_sym_DQUOTE] = ACTIONS(1912), + [sym_true] = ACTIONS(1914), + [sym_false] = ACTIONS(1914), + [anon_sym_NULL] = ACTIONS(1916), + [anon_sym_nullptr] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_delete] = ACTIONS(1926), + [anon_sym_R_DQUOTE] = ACTIONS(1928), + [anon_sym_LR_DQUOTE] = ACTIONS(1928), + [anon_sym_uR_DQUOTE] = ACTIONS(1928), + [anon_sym_UR_DQUOTE] = ACTIONS(1928), + [anon_sym_u8R_DQUOTE] = ACTIONS(1928), + [anon_sym_co_await] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1932), + [anon_sym_requires] = ACTIONS(1934), + [anon_sym_CARET_CARET] = ACTIONS(1936), + [anon_sym_LBRACK_COLON] = ACTIONS(1938), + [sym_this] = ACTIONS(1914), + }, + [STATE(1784)] = { + [sym_expression] = STATE(6797), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1785)] = { + [sym_expression] = STATE(5388), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1786)] = { + [sym_expression] = STATE(5390), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1787)] = { + [sym_expression] = STATE(6674), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1788)] = { + [sym_expression] = STATE(6688), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1789)] = { + [sym_expression] = STATE(6694), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1790)] = { + [sym_expression] = STATE(6704), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1791)] = { + [sym_expression] = STATE(6712), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1792)] = { + [sym_expression] = STATE(5420), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1793)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1794)] = { + [sym_expression] = STATE(6732), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(6083), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1795)] = { + [sym_expression] = STATE(6734), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1796)] = { + [sym_expression] = STATE(6735), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1797)] = { + [sym_expression] = STATE(6736), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1798)] = { + [sym_expression] = STATE(6737), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1799)] = { + [sym_expression] = STATE(6738), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1800)] = { + [sym_expression] = STATE(6739), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1801)] = { + [sym_expression] = STATE(6740), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1802)] = { + [sym_expression] = STATE(6741), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1803)] = { + [sym_expression] = STATE(6742), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1804)] = { + [sym_expression] = STATE(6743), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1805)] = { + [sym_expression] = STATE(6745), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1806)] = { + [sym_expression] = STATE(6749), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1807)] = { + [sym_expression] = STATE(6752), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1808)] = { + [sym_expression] = STATE(5389), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1809)] = { + [sym_expression] = STATE(5397), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1810)] = { + [sym_expression] = STATE(5398), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1811)] = { + [sym_expression] = STATE(5399), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1812)] = { + [sym_expression] = STATE(5161), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1813)] = { + [sym_expression] = STATE(5400), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1814)] = { + [sym_expression] = STATE(5401), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1815)] = { + [sym_expression] = STATE(5402), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1816)] = { + [sym_expression] = STATE(5403), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1817)] = { + [sym_expression] = STATE(5404), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1818)] = { + [sym_expression] = STATE(5405), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1819)] = { + [sym_expression] = STATE(5392), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(6085), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1820)] = { + [sym_expression] = STATE(5393), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1821)] = { + [sym_expression] = STATE(5395), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(6087), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1822)] = { + [sym_expression] = STATE(5406), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1823)] = { + [sym_expression] = STATE(5410), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1824)] = { + [sym_expression] = STATE(5412), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(2670), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2666), + [anon_sym_compl] = ACTIONS(2666), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_sizeof] = ACTIONS(2674), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2676), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2680), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1825)] = { + [sym_expression] = STATE(6631), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1826)] = { + [sym_expression] = STATE(3665), + [sym__string] = STATE(4474), + [sym_conditional_expression] = STATE(3745), + [sym_assignment_expression] = STATE(3745), + [sym_pointer_expression] = STATE(3777), + [sym_unary_expression] = STATE(3745), + [sym_binary_expression] = STATE(3745), + [sym_update_expression] = STATE(3745), + [sym_cast_expression] = STATE(3745), + [sym_sizeof_expression] = STATE(3745), + [sym_alignof_expression] = STATE(3745), + [sym_offsetof_expression] = STATE(3745), + [sym_generic_expression] = STATE(3745), + [sym_subscript_expression] = STATE(3777), + [sym_call_expression] = STATE(3777), + [sym_gnu_asm_expression] = STATE(3745), + [sym_extension_expression] = STATE(3745), + [sym_field_expression] = STATE(3777), + [sym_compound_literal_expression] = STATE(3745), + [sym_parenthesized_expression] = STATE(3777), + [sym_char_literal] = STATE(4474), + [sym_concatenated_string] = STATE(4474), + [sym_string_literal] = STATE(3204), + [sym_null] = STATE(3745), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10270), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(3745), + [sym_raw_string_literal] = STATE(3204), + [sym_co_await_expression] = STATE(3745), + [sym_new_expression] = STATE(3745), + [sym_delete_expression] = STATE(3745), + [sym_requires_clause] = STATE(3745), + [sym_requires_expression] = STATE(3745), + [sym_lambda_expression] = STATE(3745), + [sym_lambda_capture_specifier] = STATE(7936), + [sym_fold_expression] = STATE(3745), + [sym_parameter_pack_expansion] = STATE(3745), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(3777), + [sym_qualified_type_identifier] = STATE(10270), + [sym_reflect_expression] = STATE(3745), + [sym_splice_specifier] = STATE(3506), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9267), + [sym_splice_expression] = STATE(3706), + [sym_user_defined_literal] = STATE(3777), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_compl] = ACTIONS(2313), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_sizeof] = ACTIONS(2321), + [anon_sym___alignof__] = ACTIONS(2042), + [anon_sym___alignof] = ACTIONS(2042), + [anon_sym__alignof] = ACTIONS(2042), + [anon_sym_alignof] = ACTIONS(2042), + [anon_sym__Alignof] = ACTIONS(2042), + [anon_sym_offsetof] = ACTIONS(2044), + [anon_sym__Generic] = ACTIONS(2046), + [anon_sym_typename] = ACTIONS(2048), + [anon_sym_asm] = ACTIONS(2050), + [anon_sym___asm__] = ACTIONS(2050), + [anon_sym___asm] = ACTIONS(2050), + [sym_number_literal] = ACTIONS(2323), + [anon_sym_L_SQUOTE] = ACTIONS(2325), + [anon_sym_u_SQUOTE] = ACTIONS(2325), + [anon_sym_U_SQUOTE] = ACTIONS(2325), + [anon_sym_u8_SQUOTE] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2325), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_NULL] = ACTIONS(2060), + [anon_sym_nullptr] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2331), + [anon_sym_LR_DQUOTE] = ACTIONS(2331), + [anon_sym_uR_DQUOTE] = ACTIONS(2331), + [anon_sym_UR_DQUOTE] = ACTIONS(2331), + [anon_sym_u8R_DQUOTE] = ACTIONS(2331), + [anon_sym_co_await] = ACTIONS(2333), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_requires] = ACTIONS(2074), + [anon_sym_CARET_CARET] = ACTIONS(2337), + [anon_sym_LBRACK_COLON] = ACTIONS(2078), + [sym_this] = ACTIONS(2058), + }, + [STATE(1827)] = { + [sym_expression] = STATE(6725), + [sym__string] = STATE(6965), + [sym_conditional_expression] = STATE(7155), + [sym_assignment_expression] = STATE(7155), + [sym_pointer_expression] = STATE(5635), + [sym_unary_expression] = STATE(7155), + [sym_binary_expression] = STATE(7155), + [sym_update_expression] = STATE(7155), + [sym_cast_expression] = STATE(7155), + [sym_sizeof_expression] = STATE(7155), + [sym_alignof_expression] = STATE(7155), + [sym_offsetof_expression] = STATE(7155), + [sym_generic_expression] = STATE(7155), + [sym_subscript_expression] = STATE(5635), + [sym_call_expression] = STATE(5635), + [sym_gnu_asm_expression] = STATE(7155), + [sym_extension_expression] = STATE(7155), + [sym_field_expression] = STATE(5635), + [sym_compound_literal_expression] = STATE(7155), + [sym_parenthesized_expression] = STATE(5635), + [sym_char_literal] = STATE(6965), + [sym_concatenated_string] = STATE(6965), + [sym_string_literal] = STATE(5906), + [sym_null] = STATE(7155), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10093), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(7155), + [sym_raw_string_literal] = STATE(5906), + [sym_co_await_expression] = STATE(7155), + [sym_new_expression] = STATE(7155), + [sym_delete_expression] = STATE(7155), + [sym_requires_clause] = STATE(7155), + [sym_requires_expression] = STATE(7155), + [sym_lambda_expression] = STATE(7155), + [sym_lambda_capture_specifier] = STATE(7903), + [sym_fold_expression] = STATE(7155), + [sym_parameter_pack_expansion] = STATE(7155), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7864), + [sym_qualified_identifier] = STATE(5635), + [sym_qualified_type_identifier] = STATE(10093), + [sym_reflect_expression] = STATE(7155), + [sym_splice_specifier] = STATE(6602), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9197), + [sym_splice_expression] = STATE(6906), + [sym_user_defined_literal] = STATE(5635), + [sym_identifier] = ACTIONS(4542), + [anon_sym_LPAREN2] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(4544), + [anon_sym_COLON_COLON] = ACTIONS(4546), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(4548), + [anon_sym_not] = ACTIONS(3385), + [anon_sym_compl] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3407), + [anon_sym___alignof__] = ACTIONS(3409), + [anon_sym___alignof] = ACTIONS(3409), + [anon_sym__alignof] = ACTIONS(3409), + [anon_sym_alignof] = ACTIONS(3409), + [anon_sym__Alignof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3411), + [anon_sym__Generic] = ACTIONS(3413), + [anon_sym_typename] = ACTIONS(4550), + [anon_sym_asm] = ACTIONS(3417), + [anon_sym___asm__] = ACTIONS(3417), + [anon_sym___asm] = ACTIONS(3417), + [sym_number_literal] = ACTIONS(3419), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3423), + [anon_sym_u_DQUOTE] = ACTIONS(3423), + [anon_sym_U_DQUOTE] = ACTIONS(3423), + [anon_sym_u8_DQUOTE] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3427), + [anon_sym_nullptr] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_R_DQUOTE] = ACTIONS(3433), + [anon_sym_LR_DQUOTE] = ACTIONS(3433), + [anon_sym_uR_DQUOTE] = ACTIONS(3433), + [anon_sym_UR_DQUOTE] = ACTIONS(3433), + [anon_sym_u8R_DQUOTE] = ACTIONS(3433), + [anon_sym_co_await] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_requires] = ACTIONS(3439), + [anon_sym_CARET_CARET] = ACTIONS(3441), + [anon_sym_LBRACK_COLON] = ACTIONS(3443), + [sym_this] = ACTIONS(3425), + }, + [STATE(1828)] = { + [sym_expression] = STATE(6774), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1829)] = { + [sym_expression] = STATE(6776), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1830)] = { + [sym_expression] = STATE(6779), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(6089), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1831)] = { + [sym_expression] = STATE(6780), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5799), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5799), + [sym_call_expression] = STATE(5799), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5799), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5799), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5799), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5799), + [sym_identifier] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(4554), + [anon_sym_COLON_COLON] = ACTIONS(4556), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1832)] = { + [sym_expression] = STATE(6334), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1833)] = { + [sym_expression] = STATE(7074), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1834)] = { + [sym_expression] = STATE(7076), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1835)] = { + [sym_expression] = STATE(7077), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1836)] = { + [sym_expression] = STATE(7078), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1837)] = { + [sym_expression] = STATE(7079), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1838)] = { + [sym_expression] = STATE(6333), + [sym__string] = STATE(6317), + [sym_conditional_expression] = STATE(5900), + [sym_assignment_expression] = STATE(5900), + [sym_pointer_expression] = STATE(5064), + [sym_unary_expression] = STATE(5900), + [sym_binary_expression] = STATE(5900), + [sym_update_expression] = STATE(5900), + [sym_cast_expression] = STATE(5900), + [sym_sizeof_expression] = STATE(5900), + [sym_alignof_expression] = STATE(5900), + [sym_offsetof_expression] = STATE(5900), + [sym_generic_expression] = STATE(5900), + [sym_subscript_expression] = STATE(5064), + [sym_call_expression] = STATE(5064), + [sym_gnu_asm_expression] = STATE(5900), + [sym_extension_expression] = STATE(5900), + [sym_field_expression] = STATE(5064), + [sym_compound_literal_expression] = STATE(5900), + [sym_parenthesized_expression] = STATE(5064), + [sym_char_literal] = STATE(6317), + [sym_concatenated_string] = STATE(6317), + [sym_string_literal] = STATE(4783), + [sym_null] = STATE(5900), + [sym_decltype] = STATE(10976), + [sym__class_name] = STATE(10073), + [sym_template_type] = STATE(3712), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4783), + [sym_co_await_expression] = STATE(5900), + [sym_new_expression] = STATE(5900), + [sym_delete_expression] = STATE(5900), + [sym_requires_clause] = STATE(5900), + [sym_requires_expression] = STATE(5900), + [sym_lambda_expression] = STATE(5900), + [sym_lambda_capture_specifier] = STATE(7935), + [sym_fold_expression] = STATE(5900), + [sym_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7797), + [sym_qualified_identifier] = STATE(5064), + [sym_qualified_type_identifier] = STATE(10073), + [sym_reflect_expression] = STATE(5900), + [sym_splice_specifier] = STATE(5259), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(9205), + [sym_splice_expression] = STATE(5783), + [sym_user_defined_literal] = STATE(5064), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2240), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [sym_this] = ACTIONS(237), + }, + [STATE(1839)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8690), + [sym__abstract_declarator] = STATE(9262), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9742), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9742), + [sym_optional_parameter_declaration] = STATE(9742), + [sym_variadic_parameter_declaration] = STATE(9742), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1840)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8654), + [sym__abstract_declarator] = STATE(9180), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9630), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9630), + [sym_optional_parameter_declaration] = STATE(9630), + [sym_variadic_parameter_declaration] = STATE(9630), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6109), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1841)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2205), + [sym__function_attributes_start] = STATE(2176), + [sym__function_exception_specification] = STATE(2464), + [sym__function_attributes_end] = STATE(3804), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2864), + [sym_noexcept] = STATE(2464), + [sym_throw_specifier] = STATE(2464), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(6111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [aux_sym_preproc_if_token2] = ACTIONS(6113), + [aux_sym_preproc_else_token1] = ACTIONS(6113), + [aux_sym_preproc_elif_token1] = ACTIONS(6111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6121), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6121), + [anon_sym_volatile] = ACTIONS(6121), + [anon_sym_restrict] = ACTIONS(6121), + [anon_sym___restrict__] = ACTIONS(6121), + [anon_sym__Atomic] = ACTIONS(6121), + [anon_sym__Noreturn] = ACTIONS(6121), + [anon_sym_noreturn] = ACTIONS(6121), + [anon_sym__Nonnull] = ACTIONS(6121), + [anon_sym_mutable] = ACTIONS(6121), + [anon_sym_constinit] = ACTIONS(6121), + [anon_sym_consteval] = ACTIONS(6121), + [anon_sym_alignas] = ACTIONS(6127), + [anon_sym__Alignas] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6111), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6111), + [anon_sym_not_eq] = ACTIONS(6111), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6131), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(1842)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2208), + [sym__function_attributes_start] = STATE(2177), + [sym__function_exception_specification] = STATE(2472), + [sym__function_attributes_end] = STATE(3828), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2932), + [sym_noexcept] = STATE(2472), + [sym_throw_specifier] = STATE(2472), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(6111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [aux_sym_preproc_if_token2] = ACTIONS(6113), + [aux_sym_preproc_else_token1] = ACTIONS(6113), + [aux_sym_preproc_elif_token1] = ACTIONS(6111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6121), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6121), + [anon_sym_volatile] = ACTIONS(6121), + [anon_sym_restrict] = ACTIONS(6121), + [anon_sym___restrict__] = ACTIONS(6121), + [anon_sym__Atomic] = ACTIONS(6121), + [anon_sym__Noreturn] = ACTIONS(6121), + [anon_sym_noreturn] = ACTIONS(6121), + [anon_sym__Nonnull] = ACTIONS(6121), + [anon_sym_mutable] = ACTIONS(6121), + [anon_sym_constinit] = ACTIONS(6121), + [anon_sym_consteval] = ACTIONS(6121), + [anon_sym_alignas] = ACTIONS(6127), + [anon_sym__Alignas] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6111), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6111), + [anon_sym_not_eq] = ACTIONS(6111), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6131), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6142), + [anon_sym_override] = ACTIONS(6142), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(6145), + }, + [STATE(1843)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2217), + [sym__function_attributes_start] = STATE(2166), + [sym__function_exception_specification] = STATE(2489), + [sym__function_attributes_end] = STATE(3767), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2932), + [sym_noexcept] = STATE(2489), + [sym_throw_specifier] = STATE(2489), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6148), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), + [anon_sym_RBRACE] = ACTIONS(6113), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6148), + [anon_sym_volatile] = ACTIONS(6148), + [anon_sym_restrict] = ACTIONS(6148), + [anon_sym___restrict__] = ACTIONS(6148), + [anon_sym__Atomic] = ACTIONS(6148), + [anon_sym__Noreturn] = ACTIONS(6148), + [anon_sym_noreturn] = ACTIONS(6148), + [anon_sym__Nonnull] = ACTIONS(6148), + [anon_sym_mutable] = ACTIONS(6148), + [anon_sym_constinit] = ACTIONS(6148), + [anon_sym_consteval] = ACTIONS(6148), + [anon_sym_alignas] = ACTIONS(6152), + [anon_sym__Alignas] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6156), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6159), + [anon_sym_override] = ACTIONS(6159), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6166), + [anon_sym_COLON_RBRACK] = ACTIONS(6113), + }, + [STATE(1844)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8672), + [sym__abstract_declarator] = STATE(9210), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9763), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9763), + [sym_optional_parameter_declaration] = STATE(9763), + [sym_variadic_parameter_declaration] = STATE(9763), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6171), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1845)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8704), + [sym__abstract_declarator] = STATE(9199), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9910), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9910), + [sym_optional_parameter_declaration] = STATE(9910), + [sym_variadic_parameter_declaration] = STATE(9910), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1846)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8655), + [sym__abstract_declarator] = STATE(9182), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9719), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9719), + [sym_optional_parameter_declaration] = STATE(9719), + [sym_variadic_parameter_declaration] = STATE(9719), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6177), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1847)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2193), + [sym__function_attributes_start] = STATE(2183), + [sym__function_exception_specification] = STATE(2428), + [sym__function_attributes_end] = STATE(3738), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2864), + [sym_noexcept] = STATE(2428), + [sym_throw_specifier] = STATE(2428), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6148), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), + [anon_sym_RBRACE] = ACTIONS(6113), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6148), + [anon_sym_volatile] = ACTIONS(6148), + [anon_sym_restrict] = ACTIONS(6148), + [anon_sym___restrict__] = ACTIONS(6148), + [anon_sym__Atomic] = ACTIONS(6148), + [anon_sym__Noreturn] = ACTIONS(6148), + [anon_sym_noreturn] = ACTIONS(6148), + [anon_sym__Nonnull] = ACTIONS(6148), + [anon_sym_mutable] = ACTIONS(6148), + [anon_sym_constinit] = ACTIONS(6148), + [anon_sym_consteval] = ACTIONS(6148), + [anon_sym_alignas] = ACTIONS(6152), + [anon_sym__Alignas] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6156), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(6113), + }, + [STATE(1848)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8698), + [sym__abstract_declarator] = STATE(9247), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9860), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9860), + [sym_optional_parameter_declaration] = STATE(9860), + [sym_variadic_parameter_declaration] = STATE(9860), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6185), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1849)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8688), + [sym__abstract_declarator] = STATE(9271), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9742), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9742), + [sym_optional_parameter_declaration] = STATE(9742), + [sym_variadic_parameter_declaration] = STATE(9742), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1850)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8666), + [sym__abstract_declarator] = STATE(9264), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9957), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9957), + [sym_optional_parameter_declaration] = STATE(9957), + [sym_variadic_parameter_declaration] = STATE(9957), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6189), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1851)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8699), + [sym__abstract_declarator] = STATE(9151), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9983), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9983), + [sym_optional_parameter_declaration] = STATE(9983), + [sym_variadic_parameter_declaration] = STATE(9983), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6193), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1852)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_ms_call_modifier] = STATE(8674), + [sym__abstract_declarator] = STATE(9211), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_abstract_function_declarator] = STATE(8389), + [sym_abstract_array_declarator] = STATE(8389), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_list] = STATE(4601), + [sym_parameter_declaration] = STATE(9832), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9832), + [sym_optional_parameter_declaration] = STATE(9832), + [sym_variadic_parameter_declaration] = STATE(9832), + [sym_abstract_reference_declarator] = STATE(8389), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6197), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_STAR] = ACTIONS(6095), + [anon_sym_AMP_AMP] = ACTIONS(6097), + [anon_sym_AMP] = ACTIONS(6099), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6103), + [anon_sym___clrcall] = ACTIONS(6103), + [anon_sym___stdcall] = ACTIONS(6103), + [anon_sym___fastcall] = ACTIONS(6103), + [anon_sym___thiscall] = ACTIONS(6103), + [anon_sym___vectorcall] = ACTIONS(6103), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6105), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(1853)] = { + [sym_template_argument_list] = STATE(1855), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6203), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym_virtual] = ACTIONS(6201), + [anon_sym_extern] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), + [anon_sym___declspec] = ACTIONS(6201), + [anon_sym___based] = ACTIONS(6201), + [anon_sym___cdecl] = ACTIONS(6201), + [anon_sym___clrcall] = ACTIONS(6201), + [anon_sym___stdcall] = ACTIONS(6201), + [anon_sym___fastcall] = ACTIONS(6201), + [anon_sym___thiscall] = ACTIONS(6201), + [anon_sym___vectorcall] = ACTIONS(6201), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_register] = ACTIONS(6201), + [anon_sym_inline] = ACTIONS(6201), + [anon_sym___inline] = ACTIONS(6201), + [anon_sym___inline__] = ACTIONS(6201), + [anon_sym___forceinline] = ACTIONS(6201), + [anon_sym_thread_local] = ACTIONS(6201), + [anon_sym___thread] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_template] = ACTIONS(6201), + [anon_sym_operator] = ACTIONS(6201), + [anon_sym_LBRACK_COLON] = ACTIONS(6208), + }, + [STATE(1854)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7390), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8904), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_parameter_list] = STATE(993), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(6157), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(2500), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(6220), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6224), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1855)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6228), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym_SEMI] = ACTIONS(6228), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym___cdecl] = ACTIONS(6226), + [anon_sym___clrcall] = ACTIONS(6226), + [anon_sym___stdcall] = ACTIONS(6226), + [anon_sym___fastcall] = ACTIONS(6226), + [anon_sym___thiscall] = ACTIONS(6226), + [anon_sym___vectorcall] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(1856)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7403), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8953), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_parameter_list] = STATE(992), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(6157), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(2500), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(6220), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6240), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1857)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_TILDE] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym_virtual] = ACTIONS(6242), + [anon_sym_extern] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym___declspec] = ACTIONS(6242), + [anon_sym___based] = ACTIONS(6242), + [anon_sym___cdecl] = ACTIONS(6242), + [anon_sym___clrcall] = ACTIONS(6242), + [anon_sym___stdcall] = ACTIONS(6242), + [anon_sym___fastcall] = ACTIONS(6242), + [anon_sym___thiscall] = ACTIONS(6242), + [anon_sym___vectorcall] = ACTIONS(6242), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_static] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_register] = ACTIONS(6242), + [anon_sym_inline] = ACTIONS(6242), + [anon_sym___inline] = ACTIONS(6242), + [anon_sym___inline__] = ACTIONS(6242), + [anon_sym___forceinline] = ACTIONS(6242), + [anon_sym_thread_local] = ACTIONS(6242), + [anon_sym___thread] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6242), + [anon_sym_or_eq] = ACTIONS(6242), + [anon_sym_xor_eq] = ACTIONS(6242), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_template] = ACTIONS(6242), + [anon_sym_operator] = ACTIONS(6242), + [anon_sym_LBRACK_COLON] = ACTIONS(6244), + }, + [STATE(1858)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_TILDE] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym_virtual] = ACTIONS(6246), + [anon_sym_extern] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym___declspec] = ACTIONS(6246), + [anon_sym___based] = ACTIONS(6246), + [anon_sym___cdecl] = ACTIONS(6246), + [anon_sym___clrcall] = ACTIONS(6246), + [anon_sym___stdcall] = ACTIONS(6246), + [anon_sym___fastcall] = ACTIONS(6246), + [anon_sym___thiscall] = ACTIONS(6246), + [anon_sym___vectorcall] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_RBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_static] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_register] = ACTIONS(6246), + [anon_sym_inline] = ACTIONS(6246), + [anon_sym___inline] = ACTIONS(6246), + [anon_sym___inline__] = ACTIONS(6246), + [anon_sym___forceinline] = ACTIONS(6246), + [anon_sym_thread_local] = ACTIONS(6246), + [anon_sym___thread] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6246), + [anon_sym_or_eq] = ACTIONS(6246), + [anon_sym_xor_eq] = ACTIONS(6246), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_template] = ACTIONS(6246), + [anon_sym_operator] = ACTIONS(6246), + [anon_sym_LBRACK_COLON] = ACTIONS(6248), + }, + [STATE(1859)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_TILDE] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym_virtual] = ACTIONS(6250), + [anon_sym_extern] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym___declspec] = ACTIONS(6250), + [anon_sym___based] = ACTIONS(6250), + [anon_sym___cdecl] = ACTIONS(6250), + [anon_sym___clrcall] = ACTIONS(6250), + [anon_sym___stdcall] = ACTIONS(6250), + [anon_sym___fastcall] = ACTIONS(6250), + [anon_sym___thiscall] = ACTIONS(6250), + [anon_sym___vectorcall] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_static] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_register] = ACTIONS(6250), + [anon_sym_inline] = ACTIONS(6250), + [anon_sym___inline] = ACTIONS(6250), + [anon_sym___inline__] = ACTIONS(6250), + [anon_sym___forceinline] = ACTIONS(6250), + [anon_sym_thread_local] = ACTIONS(6250), + [anon_sym___thread] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6250), + [anon_sym_or_eq] = ACTIONS(6250), + [anon_sym_xor_eq] = ACTIONS(6250), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_template] = ACTIONS(6250), + [anon_sym_operator] = ACTIONS(6250), + [anon_sym_LBRACK_COLON] = ACTIONS(6252), + }, + [STATE(1860)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym_SEMI] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym_virtual] = ACTIONS(6254), + [anon_sym_extern] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym___declspec] = ACTIONS(6254), + [anon_sym___based] = ACTIONS(6254), + [anon_sym___cdecl] = ACTIONS(6254), + [anon_sym___clrcall] = ACTIONS(6254), + [anon_sym___stdcall] = ACTIONS(6254), + [anon_sym___fastcall] = ACTIONS(6254), + [anon_sym___thiscall] = ACTIONS(6254), + [anon_sym___vectorcall] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_static] = ACTIONS(6254), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_register] = ACTIONS(6254), + [anon_sym_inline] = ACTIONS(6254), + [anon_sym___inline] = ACTIONS(6254), + [anon_sym___inline__] = ACTIONS(6254), + [anon_sym___forceinline] = ACTIONS(6254), + [anon_sym_thread_local] = ACTIONS(6254), + [anon_sym___thread] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6254), + [anon_sym_or_eq] = ACTIONS(6254), + [anon_sym_xor_eq] = ACTIONS(6254), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_template] = ACTIONS(6254), + [anon_sym_operator] = ACTIONS(6254), + [anon_sym_LBRACK_COLON] = ACTIONS(6256), + }, + [STATE(1861)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_TILDE] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym_virtual] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym___declspec] = ACTIONS(6258), + [anon_sym___based] = ACTIONS(6258), + [anon_sym___cdecl] = ACTIONS(6258), + [anon_sym___clrcall] = ACTIONS(6258), + [anon_sym___stdcall] = ACTIONS(6258), + [anon_sym___fastcall] = ACTIONS(6258), + [anon_sym___thiscall] = ACTIONS(6258), + [anon_sym___vectorcall] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_RBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_inline] = ACTIONS(6258), + [anon_sym___inline] = ACTIONS(6258), + [anon_sym___inline__] = ACTIONS(6258), + [anon_sym___forceinline] = ACTIONS(6258), + [anon_sym_thread_local] = ACTIONS(6258), + [anon_sym___thread] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6258), + [anon_sym_or_eq] = ACTIONS(6258), + [anon_sym_xor_eq] = ACTIONS(6258), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_template] = ACTIONS(6258), + [anon_sym_operator] = ACTIONS(6258), + [anon_sym_LBRACK_COLON] = ACTIONS(6260), + }, + [STATE(1862)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_TILDE] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym_virtual] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym___declspec] = ACTIONS(6262), + [anon_sym___based] = ACTIONS(6262), + [anon_sym___cdecl] = ACTIONS(6262), + [anon_sym___clrcall] = ACTIONS(6262), + [anon_sym___stdcall] = ACTIONS(6262), + [anon_sym___fastcall] = ACTIONS(6262), + [anon_sym___thiscall] = ACTIONS(6262), + [anon_sym___vectorcall] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_static] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_inline] = ACTIONS(6262), + [anon_sym___inline] = ACTIONS(6262), + [anon_sym___inline__] = ACTIONS(6262), + [anon_sym___forceinline] = ACTIONS(6262), + [anon_sym_thread_local] = ACTIONS(6262), + [anon_sym___thread] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6262), + [anon_sym_or_eq] = ACTIONS(6262), + [anon_sym_xor_eq] = ACTIONS(6262), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_template] = ACTIONS(6262), + [anon_sym_operator] = ACTIONS(6262), + [anon_sym_LBRACK_COLON] = ACTIONS(6264), + }, + [STATE(1863)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7424), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8892), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_parameter_list] = STATE(994), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(6157), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(2500), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(6220), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6266), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1864)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7400), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8916), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_parameter_list] = STATE(996), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(6157), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(2500), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(6220), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6268), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1865)] = { + [sym_template_argument_list] = STATE(1868), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6205), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym_virtual] = ACTIONS(6201), + [anon_sym_extern] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6205), + [anon_sym___declspec] = ACTIONS(6201), + [anon_sym___based] = ACTIONS(6201), + [anon_sym___cdecl] = ACTIONS(6201), + [anon_sym___clrcall] = ACTIONS(6201), + [anon_sym___stdcall] = ACTIONS(6201), + [anon_sym___fastcall] = ACTIONS(6201), + [anon_sym___thiscall] = ACTIONS(6201), + [anon_sym___vectorcall] = ACTIONS(6201), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_register] = ACTIONS(6201), + [anon_sym_inline] = ACTIONS(6201), + [anon_sym___inline] = ACTIONS(6201), + [anon_sym___inline__] = ACTIONS(6201), + [anon_sym___forceinline] = ACTIONS(6201), + [anon_sym_thread_local] = ACTIONS(6201), + [anon_sym___thread] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_template] = ACTIONS(6201), + [anon_sym_operator] = ACTIONS(6201), + [anon_sym_LBRACK_COLON] = ACTIONS(6208), + }, + [STATE(1866)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym_virtual] = ACTIONS(6270), + [anon_sym_extern] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym___declspec] = ACTIONS(6270), + [anon_sym___based] = ACTIONS(6270), + [anon_sym___cdecl] = ACTIONS(6270), + [anon_sym___clrcall] = ACTIONS(6270), + [anon_sym___stdcall] = ACTIONS(6270), + [anon_sym___fastcall] = ACTIONS(6270), + [anon_sym___thiscall] = ACTIONS(6270), + [anon_sym___vectorcall] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_static] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_register] = ACTIONS(6270), + [anon_sym_inline] = ACTIONS(6270), + [anon_sym___inline] = ACTIONS(6270), + [anon_sym___inline__] = ACTIONS(6270), + [anon_sym___forceinline] = ACTIONS(6270), + [anon_sym_thread_local] = ACTIONS(6270), + [anon_sym___thread] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6270), + [anon_sym_or_eq] = ACTIONS(6270), + [anon_sym_xor_eq] = ACTIONS(6270), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_template] = ACTIONS(6270), + [anon_sym_operator] = ACTIONS(6270), + [anon_sym_LBRACK_COLON] = ACTIONS(6272), + }, + [STATE(1867)] = { + [sym_attribute_specifier] = STATE(2011), + [sym_attribute_declaration] = STATE(4328), + [sym_type_qualifier] = STATE(2206), + [sym_alignas_qualifier] = STATE(2300), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym_ref_qualifier] = STATE(2404), + [sym__function_attributes_start] = STATE(2322), + [sym__function_exception_specification] = STATE(2803), + [sym__function_attributes_end] = STATE(4212), + [sym__function_postfix] = STATE(4682), + [sym_trailing_return_type] = STATE(4222), + [sym_noexcept] = STATE(2803), + [sym_throw_specifier] = STATE(2803), + [sym_requires_clause] = STATE(4682), + [aux_sym_type_definition_repeat1] = STATE(2011), + [aux_sym__type_definition_type_repeat1] = STATE(2206), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6288), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_mutable] = ACTIONS(6280), + [anon_sym_constinit] = ACTIONS(6280), + [anon_sym_consteval] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6290), + [anon_sym__Alignas] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6292), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6295), + [anon_sym_override] = ACTIONS(6295), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(6302), + [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + }, + [STATE(1868)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6230), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym___cdecl] = ACTIONS(6226), + [anon_sym___clrcall] = ACTIONS(6226), + [anon_sym___stdcall] = ACTIONS(6226), + [anon_sym___fastcall] = ACTIONS(6226), + [anon_sym___thiscall] = ACTIONS(6226), + [anon_sym___vectorcall] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(1869)] = { + [sym_attribute_specifier] = STATE(2011), + [sym_attribute_declaration] = STATE(4328), + [sym_type_qualifier] = STATE(2206), + [sym_alignas_qualifier] = STATE(2300), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym_ref_qualifier] = STATE(2398), + [sym__function_attributes_start] = STATE(2317), + [sym__function_exception_specification] = STATE(2796), + [sym__function_attributes_end] = STATE(4187), + [sym__function_postfix] = STATE(4682), + [sym_trailing_return_type] = STATE(4220), + [sym_noexcept] = STATE(2796), + [sym_throw_specifier] = STATE(2796), + [sym_requires_clause] = STATE(4682), + [aux_sym_type_definition_repeat1] = STATE(2011), + [aux_sym__type_definition_type_repeat1] = STATE(2206), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6274), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6288), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_mutable] = ACTIONS(6280), + [anon_sym_constinit] = ACTIONS(6280), + [anon_sym_consteval] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6290), + [anon_sym__Alignas] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6292), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + }, + [STATE(1870)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2448), + [sym__function_attributes_start] = STATE(2394), + [sym__function_exception_specification] = STATE(2844), + [sym__function_attributes_end] = STATE(4138), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2932), + [sym_noexcept] = STATE(2844), + [sym_throw_specifier] = STATE(2844), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6148), + [anon_sym___attribute__] = ACTIONS(6309), + [anon_sym___attribute] = ACTIONS(6312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6148), + [anon_sym_volatile] = ACTIONS(6148), + [anon_sym_restrict] = ACTIONS(6148), + [anon_sym___restrict__] = ACTIONS(6148), + [anon_sym__Atomic] = ACTIONS(6148), + [anon_sym__Noreturn] = ACTIONS(6148), + [anon_sym_noreturn] = ACTIONS(6148), + [anon_sym__Nonnull] = ACTIONS(6148), + [anon_sym_mutable] = ACTIONS(6148), + [anon_sym_constinit] = ACTIONS(6148), + [anon_sym_consteval] = ACTIONS(6148), + [anon_sym_alignas] = ACTIONS(6152), + [anon_sym__Alignas] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6315), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6159), + [anon_sym_override] = ACTIONS(6159), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6166), + }, + [STATE(1871)] = { + [sym_attribute_specifier] = STATE(1879), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(1901), + [sym_alignas_qualifier] = STATE(1942), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2452), + [sym__function_attributes_start] = STATE(2364), + [sym__function_exception_specification] = STATE(2916), + [sym__function_attributes_end] = STATE(4133), + [sym__function_postfix] = STATE(3516), + [sym_trailing_return_type] = STATE(2864), + [sym_noexcept] = STATE(2916), + [sym_throw_specifier] = STATE(2916), + [sym_requires_clause] = STATE(3516), + [aux_sym_type_definition_repeat1] = STATE(1879), + [aux_sym__type_definition_type_repeat1] = STATE(1901), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6118), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6148), + [anon_sym___attribute__] = ACTIONS(6309), + [anon_sym___attribute] = ACTIONS(6312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6148), + [anon_sym_volatile] = ACTIONS(6148), + [anon_sym_restrict] = ACTIONS(6148), + [anon_sym___restrict__] = ACTIONS(6148), + [anon_sym__Atomic] = ACTIONS(6148), + [anon_sym__Noreturn] = ACTIONS(6148), + [anon_sym_noreturn] = ACTIONS(6148), + [anon_sym__Nonnull] = ACTIONS(6148), + [anon_sym_mutable] = ACTIONS(6148), + [anon_sym_constinit] = ACTIONS(6148), + [anon_sym_consteval] = ACTIONS(6148), + [anon_sym_alignas] = ACTIONS(6152), + [anon_sym__Alignas] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6315), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(1872)] = { + [sym_attribute_specifier] = STATE(2040), + [sym_attribute_declaration] = STATE(4488), + [sym_type_qualifier] = STATE(2251), + [sym_alignas_qualifier] = STATE(2403), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym_ref_qualifier] = STATE(2443), + [sym__function_attributes_start] = STATE(2386), + [sym__function_exception_specification] = STATE(2934), + [sym__function_attributes_end] = STATE(4226), + [sym__function_postfix] = STATE(5093), + [sym_trailing_return_type] = STATE(4303), + [sym_noexcept] = STATE(2934), + [sym_throw_specifier] = STATE(2934), + [sym_requires_clause] = STATE(5093), + [aux_sym_type_definition_repeat1] = STATE(2040), + [aux_sym__type_definition_type_repeat1] = STATE(2251), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6321), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6113), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6332), + [anon_sym_constexpr] = ACTIONS(6324), + [anon_sym_volatile] = ACTIONS(6324), + [anon_sym_restrict] = ACTIONS(6324), + [anon_sym___restrict__] = ACTIONS(6324), + [anon_sym__Atomic] = ACTIONS(6324), + [anon_sym__Noreturn] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym__Nonnull] = ACTIONS(6324), + [anon_sym_mutable] = ACTIONS(6324), + [anon_sym_constinit] = ACTIONS(6324), + [anon_sym_consteval] = ACTIONS(6324), + [anon_sym_alignas] = ACTIONS(6334), + [anon_sym__Alignas] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6339), + [anon_sym_override] = ACTIONS(6339), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(6346), + }, + [STATE(1873)] = { + [sym_attribute_specifier] = STATE(2040), + [sym_attribute_declaration] = STATE(4488), + [sym_type_qualifier] = STATE(2251), + [sym_alignas_qualifier] = STATE(2403), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym_ref_qualifier] = STATE(2451), + [sym__function_attributes_start] = STATE(2395), + [sym__function_exception_specification] = STATE(2977), + [sym__function_attributes_end] = STATE(4225), + [sym__function_postfix] = STATE(5093), + [sym_trailing_return_type] = STATE(4296), + [sym_noexcept] = STATE(2977), + [sym_throw_specifier] = STATE(2977), + [sym_requires_clause] = STATE(5093), + [aux_sym_type_definition_repeat1] = STATE(2040), + [aux_sym__type_definition_type_repeat1] = STATE(2251), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6318), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6321), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6113), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6332), + [anon_sym_constexpr] = ACTIONS(6324), + [anon_sym_volatile] = ACTIONS(6324), + [anon_sym_restrict] = ACTIONS(6324), + [anon_sym___restrict__] = ACTIONS(6324), + [anon_sym__Atomic] = ACTIONS(6324), + [anon_sym__Noreturn] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym__Nonnull] = ACTIONS(6324), + [anon_sym_mutable] = ACTIONS(6324), + [anon_sym_constinit] = ACTIONS(6324), + [anon_sym_consteval] = ACTIONS(6324), + [anon_sym_alignas] = ACTIONS(6334), + [anon_sym__Alignas] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(1874)] = { + [sym_attribute_specifier] = STATE(2032), + [sym_attribute_declaration] = STATE(4518), + [sym_type_qualifier] = STATE(2237), + [sym_alignas_qualifier] = STATE(2372), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym_ref_qualifier] = STATE(2427), + [sym__function_attributes_start] = STATE(2378), + [sym__function_exception_specification] = STATE(2921), + [sym__function_attributes_end] = STATE(4240), + [sym__function_postfix] = STATE(4980), + [sym_trailing_return_type] = STATE(4409), + [sym_noexcept] = STATE(2921), + [sym_throw_specifier] = STATE(2921), + [sym_requires_clause] = STATE(4980), + [aux_sym_type_definition_repeat1] = STATE(2032), + [aux_sym__type_definition_type_repeat1] = STATE(2237), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6353), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6356), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6367), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6369), + [anon_sym__Alignas] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6374), + [anon_sym_override] = ACTIONS(6374), + [anon_sym_GT2] = ACTIONS(6113), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(6381), + }, + [STATE(1875)] = { + [sym_attribute_specifier] = STATE(2032), + [sym_attribute_declaration] = STATE(4518), + [sym_type_qualifier] = STATE(2237), + [sym_alignas_qualifier] = STATE(2372), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym_ref_qualifier] = STATE(2437), + [sym__function_attributes_start] = STATE(2383), + [sym__function_exception_specification] = STATE(2888), + [sym__function_attributes_end] = STATE(4224), + [sym__function_postfix] = STATE(4980), + [sym_trailing_return_type] = STATE(4378), + [sym_noexcept] = STATE(2888), + [sym_throw_specifier] = STATE(2888), + [sym_requires_clause] = STATE(4980), + [aux_sym_type_definition_repeat1] = STATE(2032), + [aux_sym__type_definition_type_repeat1] = STATE(2237), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6353), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6356), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6367), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6369), + [anon_sym__Alignas] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(6113), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(1876)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7437), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8886), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1877)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7450), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8882), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1878)] = { + [sym_identifier] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3003), + [anon_sym_PLUS] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym___extension__] = ACTIONS(3003), + [anon_sym_virtual] = ACTIONS(3003), + [anon_sym_extern] = ACTIONS(3003), + [anon_sym___attribute__] = ACTIONS(3003), + [anon_sym___attribute] = ACTIONS(3003), + [anon_sym_COLON_COLON] = ACTIONS(3008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3008), + [anon_sym___declspec] = ACTIONS(3003), + [anon_sym_signed] = ACTIONS(3003), + [anon_sym_unsigned] = ACTIONS(3003), + [anon_sym_long] = ACTIONS(3003), + [anon_sym_short] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_static] = ACTIONS(3003), + [anon_sym_register] = ACTIONS(3003), + [anon_sym_inline] = ACTIONS(3003), + [anon_sym___inline] = ACTIONS(3003), + [anon_sym___inline__] = ACTIONS(3003), + [anon_sym___forceinline] = ACTIONS(3003), + [anon_sym_thread_local] = ACTIONS(3003), + [anon_sym___thread] = ACTIONS(3003), + [anon_sym_const] = ACTIONS(3003), + [anon_sym_constexpr] = ACTIONS(3003), + [anon_sym_volatile] = ACTIONS(3003), + [anon_sym_restrict] = ACTIONS(3003), + [anon_sym___restrict__] = ACTIONS(3003), + [anon_sym__Atomic] = ACTIONS(3003), + [anon_sym__Noreturn] = ACTIONS(3003), + [anon_sym_noreturn] = ACTIONS(3003), + [anon_sym__Nonnull] = ACTIONS(3003), + [anon_sym_mutable] = ACTIONS(3003), + [anon_sym_constinit] = ACTIONS(3003), + [anon_sym_consteval] = ACTIONS(3003), + [anon_sym_alignas] = ACTIONS(3003), + [anon_sym__Alignas] = ACTIONS(3003), + [sym_primitive_type] = ACTIONS(3003), + [anon_sym_enum] = ACTIONS(3003), + [anon_sym_class] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_union] = ACTIONS(3003), + [anon_sym_not] = ACTIONS(3003), + [anon_sym_compl] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym___alignof__] = ACTIONS(3003), + [anon_sym___alignof] = ACTIONS(3003), + [anon_sym__alignof] = ACTIONS(3003), + [anon_sym_alignof] = ACTIONS(3003), + [anon_sym__Alignof] = ACTIONS(3003), + [anon_sym_offsetof] = ACTIONS(3003), + [anon_sym__Generic] = ACTIONS(3003), + [anon_sym_typename] = ACTIONS(3003), + [anon_sym_asm] = ACTIONS(3003), + [anon_sym___asm__] = ACTIONS(3003), + [anon_sym___asm] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(3008), + [anon_sym_L_SQUOTE] = ACTIONS(3008), + [anon_sym_u_SQUOTE] = ACTIONS(3008), + [anon_sym_U_SQUOTE] = ACTIONS(3008), + [anon_sym_u8_SQUOTE] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_L_DQUOTE] = ACTIONS(3008), + [anon_sym_u_DQUOTE] = ACTIONS(3008), + [anon_sym_U_DQUOTE] = ACTIONS(3008), + [anon_sym_u8_DQUOTE] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [sym_true] = ACTIONS(3003), + [sym_false] = ACTIONS(3003), + [anon_sym_NULL] = ACTIONS(3003), + [anon_sym_nullptr] = ACTIONS(3003), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3003), + [anon_sym_decltype] = ACTIONS(3003), + [anon_sym_template] = ACTIONS(3003), + [anon_sym_delete] = ACTIONS(3003), + [anon_sym_R_DQUOTE] = ACTIONS(3008), + [anon_sym_LR_DQUOTE] = ACTIONS(3008), + [anon_sym_uR_DQUOTE] = ACTIONS(3008), + [anon_sym_UR_DQUOTE] = ACTIONS(3008), + [anon_sym_u8R_DQUOTE] = ACTIONS(3008), + [anon_sym_co_await] = ACTIONS(3003), + [anon_sym_new] = ACTIONS(3003), + [anon_sym_requires] = ACTIONS(3003), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(3003), + }, + [STATE(1879)] = { + [sym_attribute_specifier] = STATE(1918), + [sym_attribute_declaration] = STATE(3141), + [sym_type_qualifier] = STATE(1896), + [sym_alignas_qualifier] = STATE(1942), + [aux_sym_type_definition_repeat1] = STATE(1918), + [aux_sym__type_definition_type_repeat1] = STATE(1896), + [aux_sym_attributed_declarator_repeat1] = STATE(3141), + [sym_identifier] = ACTIONS(6388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [aux_sym_preproc_if_token2] = ACTIONS(6390), + [aux_sym_preproc_else_token1] = ACTIONS(6390), + [aux_sym_preproc_elif_token1] = ACTIONS(6388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(6121), + [anon_sym___attribute__] = ACTIONS(6388), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6121), + [anon_sym_volatile] = ACTIONS(6121), + [anon_sym_restrict] = ACTIONS(6121), + [anon_sym___restrict__] = ACTIONS(6121), + [anon_sym__Atomic] = ACTIONS(6121), + [anon_sym__Noreturn] = ACTIONS(6121), + [anon_sym_noreturn] = ACTIONS(6121), + [anon_sym__Nonnull] = ACTIONS(6121), + [anon_sym_mutable] = ACTIONS(6121), + [anon_sym_constinit] = ACTIONS(6121), + [anon_sym_consteval] = ACTIONS(6121), + [anon_sym_alignas] = ACTIONS(6127), + [anon_sym__Alignas] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6388), + [anon_sym_or_eq] = ACTIONS(6388), + [anon_sym_xor_eq] = ACTIONS(6388), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6388), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6388), + [anon_sym_not_eq] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6388), + [anon_sym___asm__] = ACTIONS(6388), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6388), + [anon_sym_override] = ACTIONS(6388), + [anon_sym_noexcept] = ACTIONS(6388), + [anon_sym_throw] = ACTIONS(6388), + [anon_sym_requires] = ACTIONS(6388), + [anon_sym_COLON_RBRACK] = ACTIONS(6390), + }, + [STATE(1880)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7405), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8950), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1881)] = { + [sym_identifier] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_not] = ACTIONS(4042), + [anon_sym_compl] = ACTIONS(4042), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [anon_sym_PLUS_PLUS] = ACTIONS(4044), + [anon_sym_sizeof] = ACTIONS(4042), + [anon_sym___alignof__] = ACTIONS(4042), + [anon_sym___alignof] = ACTIONS(4042), + [anon_sym__alignof] = ACTIONS(4042), + [anon_sym_alignof] = ACTIONS(4042), + [anon_sym__Alignof] = ACTIONS(4042), + [anon_sym_offsetof] = ACTIONS(4042), + [anon_sym__Generic] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym___asm__] = ACTIONS(4042), + [anon_sym___asm] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4044), + [anon_sym_L_SQUOTE] = ACTIONS(4044), + [anon_sym_u_SQUOTE] = ACTIONS(4044), + [anon_sym_U_SQUOTE] = ACTIONS(4044), + [anon_sym_u8_SQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4044), + [anon_sym_L_DQUOTE] = ACTIONS(4044), + [anon_sym_u_DQUOTE] = ACTIONS(4044), + [anon_sym_U_DQUOTE] = ACTIONS(4044), + [anon_sym_u8_DQUOTE] = ACTIONS(4044), + [anon_sym_DQUOTE] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [anon_sym_NULL] = ACTIONS(4042), + [anon_sym_nullptr] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_delete] = ACTIONS(4042), + [anon_sym_R_DQUOTE] = ACTIONS(4044), + [anon_sym_LR_DQUOTE] = ACTIONS(4044), + [anon_sym_uR_DQUOTE] = ACTIONS(4044), + [anon_sym_UR_DQUOTE] = ACTIONS(4044), + [anon_sym_u8R_DQUOTE] = ACTIONS(4044), + [anon_sym_co_await] = ACTIONS(4042), + [anon_sym_new] = ACTIONS(4042), + [anon_sym_requires] = ACTIONS(4042), + [anon_sym_CARET_CARET] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + [sym_this] = ACTIONS(4042), + }, + [STATE(1882)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7389), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8920), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8469), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(4520), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7831), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6218), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(1883)] = { + [sym_identifier] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4086), + [anon_sym_PLUS] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(4086), + [anon_sym_compl] = ACTIONS(4086), + [anon_sym_DASH_DASH] = ACTIONS(4088), + [anon_sym_PLUS_PLUS] = ACTIONS(4088), + [anon_sym_sizeof] = ACTIONS(4086), + [anon_sym___alignof__] = ACTIONS(4086), + [anon_sym___alignof] = ACTIONS(4086), + [anon_sym__alignof] = ACTIONS(4086), + [anon_sym_alignof] = ACTIONS(4086), + [anon_sym__Alignof] = ACTIONS(4086), + [anon_sym_offsetof] = ACTIONS(4086), + [anon_sym__Generic] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [anon_sym_asm] = ACTIONS(4086), + [anon_sym___asm__] = ACTIONS(4086), + [anon_sym___asm] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4088), + [anon_sym_L_SQUOTE] = ACTIONS(4088), + [anon_sym_u_SQUOTE] = ACTIONS(4088), + [anon_sym_U_SQUOTE] = ACTIONS(4088), + [anon_sym_u8_SQUOTE] = ACTIONS(4088), + [anon_sym_SQUOTE] = ACTIONS(4088), + [anon_sym_L_DQUOTE] = ACTIONS(4088), + [anon_sym_u_DQUOTE] = ACTIONS(4088), + [anon_sym_U_DQUOTE] = ACTIONS(4088), + [anon_sym_u8_DQUOTE] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(4088), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [anon_sym_NULL] = ACTIONS(4086), + [anon_sym_nullptr] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_delete] = ACTIONS(4086), + [anon_sym_R_DQUOTE] = ACTIONS(4088), + [anon_sym_LR_DQUOTE] = ACTIONS(4088), + [anon_sym_uR_DQUOTE] = ACTIONS(4088), + [anon_sym_UR_DQUOTE] = ACTIONS(4088), + [anon_sym_u8R_DQUOTE] = ACTIONS(4088), + [anon_sym_co_await] = ACTIONS(4086), + [anon_sym_new] = ACTIONS(4086), + [anon_sym_requires] = ACTIONS(4086), + [anon_sym_CARET_CARET] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [sym_this] = ACTIONS(4086), + }, + [STATE(1884)] = { + [sym_string_literal] = STATE(2486), + [sym_decltype_auto] = STATE(2086), + [sym_template_argument_list] = STATE(2081), + [sym_raw_string_literal] = STATE(2486), + [aux_sym_sized_type_specifier_repeat1] = STATE(2161), + [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(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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5255), + [anon_sym_signed] = ACTIONS(6396), + [anon_sym_unsigned] = ACTIONS(6396), + [anon_sym_long] = ACTIONS(6396), + [anon_sym_short] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(5255), + [anon_sym_or_eq] = ACTIONS(5255), + [anon_sym_xor_eq] = ACTIONS(5255), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6398), + [anon_sym_decltype] = ACTIONS(6400), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_COLON_RBRACK] = ACTIONS(5255), + }, + [STATE(1885)] = { + [sym_attribute_specifier] = STATE(2170), + [sym_attribute_declaration] = STATE(4729), + [sym_type_qualifier] = STATE(2319), + [sym_alignas_qualifier] = STATE(2498), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym_ref_qualifier] = STATE(2564), + [sym__function_attributes_start] = STATE(2532), + [sym__function_exception_specification] = STATE(3328), + [sym__function_attributes_end] = STATE(4492), + [sym__function_postfix] = STATE(5462), + [sym_trailing_return_type] = STATE(4596), + [sym_noexcept] = STATE(3328), + [sym_throw_specifier] = STATE(3328), + [sym_requires_clause] = STATE(5462), + [aux_sym_type_definition_repeat1] = STATE(2170), + [aux_sym__type_definition_type_repeat1] = STATE(2319), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6402), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6408), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6416), + [anon_sym_constexpr] = ACTIONS(6408), + [anon_sym_volatile] = ACTIONS(6408), + [anon_sym_restrict] = ACTIONS(6408), + [anon_sym___restrict__] = ACTIONS(6408), + [anon_sym__Atomic] = ACTIONS(6408), + [anon_sym__Noreturn] = ACTIONS(6408), + [anon_sym_noreturn] = ACTIONS(6408), + [anon_sym__Nonnull] = ACTIONS(6408), + [anon_sym_mutable] = ACTIONS(6408), + [anon_sym_constinit] = ACTIONS(6408), + [anon_sym_consteval] = ACTIONS(6408), + [anon_sym_alignas] = ACTIONS(6418), + [anon_sym__Alignas] = ACTIONS(6418), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6420), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6423), + [anon_sym_override] = ACTIONS(6423), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(6430), + [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + }, + [STATE(1886)] = { + [sym_string_literal] = STATE(2486), + [sym_decltype_auto] = STATE(2086), + [sym_template_argument_list] = STATE(2081), + [sym_raw_string_literal] = STATE(2486), + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [sym_identifier] = ACTIONS(5262), + [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(5262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6433), + [anon_sym_unsigned] = ACTIONS(6433), + [anon_sym_long] = ACTIONS(6433), + [anon_sym_short] = ACTIONS(6433), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [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(5262), + [anon_sym_or_eq] = ACTIONS(5262), + [anon_sym_xor_eq] = ACTIONS(5262), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [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(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6435), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + }, + [STATE(1887)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(3956), + [sym_template_argument_list] = STATE(3170), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(5262), + [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(5262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6439), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6443), + [anon_sym_unsigned] = ACTIONS(6443), + [anon_sym_long] = ACTIONS(6443), + [anon_sym_short] = ACTIONS(6443), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6445), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6447), + [anon_sym_SLASH_EQ] = ACTIONS(6447), + [anon_sym_PERCENT_EQ] = ACTIONS(6447), + [anon_sym_PLUS_EQ] = ACTIONS(6447), + [anon_sym_DASH_EQ] = ACTIONS(6447), + [anon_sym_LT_LT_EQ] = ACTIONS(6447), + [anon_sym_GT_GT_EQ] = ACTIONS(6447), + [anon_sym_AMP_EQ] = ACTIONS(6447), + [anon_sym_CARET_EQ] = ACTIONS(6447), + [anon_sym_PIPE_EQ] = ACTIONS(6447), + [anon_sym_and_eq] = ACTIONS(6445), + [anon_sym_or_eq] = ACTIONS(6445), + [anon_sym_xor_eq] = ACTIONS(6445), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [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(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6449), + [anon_sym_decltype] = ACTIONS(6451), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(1888)] = { + [sym_attribute_specifier] = STATE(2170), + [sym_attribute_declaration] = STATE(4729), + [sym_type_qualifier] = STATE(2319), + [sym_alignas_qualifier] = STATE(2498), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym_ref_qualifier] = STATE(2605), + [sym__function_attributes_start] = STATE(2512), + [sym__function_exception_specification] = STATE(3250), + [sym__function_attributes_end] = STATE(4498), + [sym__function_postfix] = STATE(5462), + [sym_trailing_return_type] = STATE(4572), + [sym_noexcept] = STATE(3250), + [sym_throw_specifier] = STATE(3250), + [sym_requires_clause] = STATE(5462), + [aux_sym_type_definition_repeat1] = STATE(2170), + [aux_sym__type_definition_type_repeat1] = STATE(2319), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6111), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6111), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6402), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6111), + [anon_sym_AMP] = ACTIONS(6405), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6111), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(6408), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_EQ] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6416), + [anon_sym_constexpr] = ACTIONS(6408), + [anon_sym_volatile] = ACTIONS(6408), + [anon_sym_restrict] = ACTIONS(6408), + [anon_sym___restrict__] = ACTIONS(6408), + [anon_sym__Atomic] = ACTIONS(6408), + [anon_sym__Noreturn] = ACTIONS(6408), + [anon_sym_noreturn] = ACTIONS(6408), + [anon_sym__Nonnull] = ACTIONS(6408), + [anon_sym_mutable] = ACTIONS(6408), + [anon_sym_constinit] = ACTIONS(6408), + [anon_sym_consteval] = ACTIONS(6408), + [anon_sym_alignas] = ACTIONS(6418), + [anon_sym__Alignas] = ACTIONS(6418), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_STAR_EQ] = ACTIONS(6113), + [anon_sym_SLASH_EQ] = ACTIONS(6113), + [anon_sym_PERCENT_EQ] = ACTIONS(6113), + [anon_sym_PLUS_EQ] = ACTIONS(6113), + [anon_sym_DASH_EQ] = ACTIONS(6113), + [anon_sym_LT_LT_EQ] = ACTIONS(6113), + [anon_sym_GT_GT_EQ] = ACTIONS(6113), + [anon_sym_AMP_EQ] = ACTIONS(6113), + [anon_sym_CARET_EQ] = ACTIONS(6113), + [anon_sym_PIPE_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6420), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + }, + [STATE(1889)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1891), + [sym__abstract_declarator] = STATE(4146), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2019), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2019), + [aux_sym_pointer_declarator_repeat1] = STATE(1891), + [sym_identifier] = ACTIONS(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [aux_sym_preproc_if_token2] = ACTIONS(6459), + [aux_sym_preproc_else_token1] = ACTIONS(6459), + [aux_sym_preproc_elif_token1] = ACTIONS(6457), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6469), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), + [sym_ms_signed_ptr_modifier] = ACTIONS(6471), + [anon_sym__unaligned] = ACTIONS(6473), + [anon_sym___unaligned] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6457), + [anon_sym_or_eq] = ACTIONS(6457), + [anon_sym_xor_eq] = ACTIONS(6457), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6457), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6457), + [anon_sym_not_eq] = ACTIONS(6457), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6457), + [anon_sym_override] = ACTIONS(6457), + [anon_sym_requires] = ACTIONS(6457), + }, + [STATE(1890)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1892), + [sym__abstract_declarator] = STATE(4087), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2005), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2005), + [aux_sym_pointer_declarator_repeat1] = STATE(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_RBRACE] = ACTIONS(6459), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + [anon_sym_COLON_RBRACK] = ACTIONS(6459), + }, + [STATE(1891)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4148), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2021), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2021), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6469), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), + [sym_ms_signed_ptr_modifier] = ACTIONS(6471), + [anon_sym__unaligned] = ACTIONS(6473), + [anon_sym___unaligned] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6495), + [anon_sym_or_eq] = ACTIONS(6495), + [anon_sym_xor_eq] = ACTIONS(6495), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6495), + [anon_sym_override] = ACTIONS(6495), + [anon_sym_requires] = ACTIONS(6495), + }, + [STATE(1892)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4090), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2007), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2007), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(1893)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(3170), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [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(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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6499), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5255), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_COLON_RBRACK] = ACTIONS(5255), + }, + [STATE(1894)] = { + [sym_template_argument_list] = STATE(1898), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6509), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym_virtual] = ACTIONS(6201), + [anon_sym_extern] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), + [anon_sym___declspec] = ACTIONS(6201), + [anon_sym___based] = ACTIONS(6201), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_register] = ACTIONS(6201), + [anon_sym_inline] = ACTIONS(6201), + [anon_sym___inline] = ACTIONS(6201), + [anon_sym___inline__] = ACTIONS(6201), + [anon_sym___forceinline] = ACTIONS(6201), + [anon_sym_thread_local] = ACTIONS(6201), + [anon_sym___thread] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_template] = ACTIONS(6201), + [anon_sym_operator] = ACTIONS(6201), + [anon_sym_DASH_GT_STAR] = ACTIONS(6203), + [anon_sym_LBRACK_COLON] = ACTIONS(6208), + }, + [STATE(1895)] = { + [sym_string_literal] = STATE(3557), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(2655), + [sym_raw_string_literal] = STATE(3557), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_LPAREN2] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6512), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5293), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(1896)] = { + [sym_type_qualifier] = STATE(1899), + [sym_alignas_qualifier] = STATE(1942), + [aux_sym__type_definition_type_repeat1] = STATE(1899), + [sym_identifier] = ACTIONS(6521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_RPAREN] = ACTIONS(6523), + [aux_sym_preproc_if_token2] = ACTIONS(6523), + [aux_sym_preproc_else_token1] = ACTIONS(6523), + [aux_sym_preproc_elif_token1] = ACTIONS(6521), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6523), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6521), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6521), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6521), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym_SEMI] = ACTIONS(6523), + [anon_sym___extension__] = ACTIONS(6121), + [anon_sym___attribute__] = ACTIONS(6521), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_COLON] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6523), + [anon_sym_RBRACE] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6121), + [anon_sym_volatile] = ACTIONS(6121), + [anon_sym_restrict] = ACTIONS(6121), + [anon_sym___restrict__] = ACTIONS(6121), + [anon_sym__Atomic] = ACTIONS(6121), + [anon_sym__Noreturn] = ACTIONS(6121), + [anon_sym_noreturn] = ACTIONS(6121), + [anon_sym__Nonnull] = ACTIONS(6121), + [anon_sym_mutable] = ACTIONS(6121), + [anon_sym_constinit] = ACTIONS(6121), + [anon_sym_consteval] = ACTIONS(6121), + [anon_sym_alignas] = ACTIONS(6127), + [anon_sym__Alignas] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_STAR_EQ] = ACTIONS(6523), + [anon_sym_SLASH_EQ] = ACTIONS(6523), + [anon_sym_PERCENT_EQ] = ACTIONS(6523), + [anon_sym_PLUS_EQ] = ACTIONS(6523), + [anon_sym_DASH_EQ] = ACTIONS(6523), + [anon_sym_LT_LT_EQ] = ACTIONS(6523), + [anon_sym_GT_GT_EQ] = ACTIONS(6523), + [anon_sym_AMP_EQ] = ACTIONS(6523), + [anon_sym_CARET_EQ] = ACTIONS(6523), + [anon_sym_PIPE_EQ] = ACTIONS(6523), + [anon_sym_and_eq] = ACTIONS(6521), + [anon_sym_or_eq] = ACTIONS(6521), + [anon_sym_xor_eq] = ACTIONS(6521), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6521), + [anon_sym_and] = ACTIONS(6521), + [anon_sym_bitor] = ACTIONS(6521), + [anon_sym_xor] = ACTIONS(6521), + [anon_sym_bitand] = ACTIONS(6521), + [anon_sym_not_eq] = ACTIONS(6521), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6521), + [anon_sym___asm__] = ACTIONS(6521), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6521), + [anon_sym_override] = ACTIONS(6521), + [anon_sym_noexcept] = ACTIONS(6521), + [anon_sym_throw] = ACTIONS(6521), + [anon_sym_requires] = ACTIONS(6521), + [anon_sym_COLON_RBRACK] = ACTIONS(6523), + }, + [STATE(1897)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_TILDE] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6248), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6248), + [anon_sym_GT_GT] = ACTIONS(6248), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym_virtual] = ACTIONS(6246), + [anon_sym_extern] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym___declspec] = ACTIONS(6246), + [anon_sym___based] = ACTIONS(6246), + [anon_sym___cdecl] = ACTIONS(6246), + [anon_sym___clrcall] = ACTIONS(6246), + [anon_sym___stdcall] = ACTIONS(6246), + [anon_sym___fastcall] = ACTIONS(6246), + [anon_sym___thiscall] = ACTIONS(6246), + [anon_sym___vectorcall] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_RBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_static] = ACTIONS(6246), + [anon_sym_RBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_register] = ACTIONS(6246), + [anon_sym_inline] = ACTIONS(6246), + [anon_sym___inline] = ACTIONS(6246), + [anon_sym___inline__] = ACTIONS(6246), + [anon_sym___forceinline] = ACTIONS(6246), + [anon_sym_thread_local] = ACTIONS(6246), + [anon_sym___thread] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_final] = ACTIONS(6246), + [anon_sym_override] = ACTIONS(6246), + [anon_sym_template] = ACTIONS(6246), + [anon_sym_operator] = ACTIONS(6246), + [anon_sym_noexcept] = ACTIONS(6246), + [anon_sym_throw] = ACTIONS(6246), + [anon_sym_LBRACK_COLON] = ACTIONS(6248), + }, + [STATE(1898)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(1899)] = { + [sym_type_qualifier] = STATE(1899), + [sym_alignas_qualifier] = STATE(1942), + [aux_sym__type_definition_type_repeat1] = STATE(1899), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_else_token1] = ACTIONS(6527), + [aux_sym_preproc_elif_token1] = ACTIONS(6525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym_SEMI] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(6529), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_COLON] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), + [anon_sym_RBRACE] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(6529), + [anon_sym_constexpr] = ACTIONS(6529), + [anon_sym_volatile] = ACTIONS(6529), + [anon_sym_restrict] = ACTIONS(6529), + [anon_sym___restrict__] = ACTIONS(6529), + [anon_sym__Atomic] = ACTIONS(6529), + [anon_sym__Noreturn] = ACTIONS(6529), + [anon_sym_noreturn] = ACTIONS(6529), + [anon_sym__Nonnull] = ACTIONS(6529), + [anon_sym_mutable] = ACTIONS(6529), + [anon_sym_constinit] = ACTIONS(6529), + [anon_sym_consteval] = ACTIONS(6529), + [anon_sym_alignas] = ACTIONS(6532), + [anon_sym__Alignas] = ACTIONS(6532), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6525), + [anon_sym___asm__] = ACTIONS(6525), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_noexcept] = ACTIONS(6525), + [anon_sym_throw] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_COLON_RBRACK] = ACTIONS(6527), + }, + [STATE(1900)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_TILDE] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6252), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6252), + [anon_sym_GT_GT] = ACTIONS(6252), + [anon_sym_SEMI] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym_virtual] = ACTIONS(6250), + [anon_sym_extern] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym___declspec] = ACTIONS(6250), + [anon_sym___based] = ACTIONS(6250), + [anon_sym___cdecl] = ACTIONS(6250), + [anon_sym___clrcall] = ACTIONS(6250), + [anon_sym___stdcall] = ACTIONS(6250), + [anon_sym___fastcall] = ACTIONS(6250), + [anon_sym___thiscall] = ACTIONS(6250), + [anon_sym___vectorcall] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_static] = ACTIONS(6250), + [anon_sym_RBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_register] = ACTIONS(6250), + [anon_sym_inline] = ACTIONS(6250), + [anon_sym___inline] = ACTIONS(6250), + [anon_sym___inline__] = ACTIONS(6250), + [anon_sym___forceinline] = ACTIONS(6250), + [anon_sym_thread_local] = ACTIONS(6250), + [anon_sym___thread] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_final] = ACTIONS(6250), + [anon_sym_override] = ACTIONS(6250), + [anon_sym_template] = ACTIONS(6250), + [anon_sym_operator] = ACTIONS(6250), + [anon_sym_noexcept] = ACTIONS(6250), + [anon_sym_throw] = ACTIONS(6250), + [anon_sym_LBRACK_COLON] = ACTIONS(6252), + }, + [STATE(1901)] = { + [sym_type_qualifier] = STATE(1899), + [sym_alignas_qualifier] = STATE(1942), + [aux_sym__type_definition_type_repeat1] = STATE(1899), + [sym_identifier] = ACTIONS(6388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [aux_sym_preproc_if_token2] = ACTIONS(6390), + [aux_sym_preproc_else_token1] = ACTIONS(6390), + [aux_sym_preproc_elif_token1] = ACTIONS(6388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(6121), + [anon_sym___attribute__] = ACTIONS(6388), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6121), + [anon_sym_constexpr] = ACTIONS(6121), + [anon_sym_volatile] = ACTIONS(6121), + [anon_sym_restrict] = ACTIONS(6121), + [anon_sym___restrict__] = ACTIONS(6121), + [anon_sym__Atomic] = ACTIONS(6121), + [anon_sym__Noreturn] = ACTIONS(6121), + [anon_sym_noreturn] = ACTIONS(6121), + [anon_sym__Nonnull] = ACTIONS(6121), + [anon_sym_mutable] = ACTIONS(6121), + [anon_sym_constinit] = ACTIONS(6121), + [anon_sym_consteval] = ACTIONS(6121), + [anon_sym_alignas] = ACTIONS(6127), + [anon_sym__Alignas] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6388), + [anon_sym_or_eq] = ACTIONS(6388), + [anon_sym_xor_eq] = ACTIONS(6388), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6388), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6388), + [anon_sym_not_eq] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6388), + [anon_sym___asm__] = ACTIONS(6388), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6388), + [anon_sym_override] = ACTIONS(6388), + [anon_sym_noexcept] = ACTIONS(6388), + [anon_sym_throw] = ACTIONS(6388), + [anon_sym_requires] = ACTIONS(6388), + [anon_sym_COLON_RBRACK] = ACTIONS(6390), + }, + [STATE(1902)] = { + [sym_template_argument_list] = STATE(1924), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(6215), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym_virtual] = ACTIONS(6201), + [anon_sym_extern] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), + [anon_sym___declspec] = ACTIONS(6201), + [anon_sym___based] = ACTIONS(6201), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6201), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_register] = ACTIONS(6201), + [anon_sym_inline] = ACTIONS(6201), + [anon_sym___inline] = ACTIONS(6201), + [anon_sym___inline__] = ACTIONS(6201), + [anon_sym___forceinline] = ACTIONS(6201), + [anon_sym_thread_local] = ACTIONS(6201), + [anon_sym___thread] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_template] = ACTIONS(6201), + [anon_sym_operator] = ACTIONS(6201), + [anon_sym_LBRACK_COLON] = ACTIONS(6208), + }, + [STATE(1903)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym_virtual] = ACTIONS(6270), + [anon_sym_extern] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym___declspec] = ACTIONS(6270), + [anon_sym___based] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_static] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_register] = ACTIONS(6270), + [anon_sym_inline] = ACTIONS(6270), + [anon_sym___inline] = ACTIONS(6270), + [anon_sym___inline__] = ACTIONS(6270), + [anon_sym___forceinline] = ACTIONS(6270), + [anon_sym_thread_local] = ACTIONS(6270), + [anon_sym___thread] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6270), + [anon_sym_or_eq] = ACTIONS(6270), + [anon_sym_xor_eq] = ACTIONS(6270), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_template] = ACTIONS(6270), + [anon_sym_operator] = ACTIONS(6270), + [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + [anon_sym_LBRACK_COLON] = ACTIONS(6272), + }, + [STATE(1904)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_TILDE] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym_virtual] = ACTIONS(6242), + [anon_sym_extern] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym___declspec] = ACTIONS(6242), + [anon_sym___based] = ACTIONS(6242), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_static] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_register] = ACTIONS(6242), + [anon_sym_inline] = ACTIONS(6242), + [anon_sym___inline] = ACTIONS(6242), + [anon_sym___inline__] = ACTIONS(6242), + [anon_sym___forceinline] = ACTIONS(6242), + [anon_sym_thread_local] = ACTIONS(6242), + [anon_sym___thread] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6242), + [anon_sym_or_eq] = ACTIONS(6242), + [anon_sym_xor_eq] = ACTIONS(6242), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_template] = ACTIONS(6242), + [anon_sym_operator] = ACTIONS(6242), + [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + [anon_sym_LBRACK_COLON] = ACTIONS(6244), + }, + [STATE(1905)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6272), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6272), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym_virtual] = ACTIONS(6270), + [anon_sym_extern] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym___declspec] = ACTIONS(6270), + [anon_sym___based] = ACTIONS(6270), + [anon_sym___cdecl] = ACTIONS(6270), + [anon_sym___clrcall] = ACTIONS(6270), + [anon_sym___stdcall] = ACTIONS(6270), + [anon_sym___fastcall] = ACTIONS(6270), + [anon_sym___thiscall] = ACTIONS(6270), + [anon_sym___vectorcall] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_static] = ACTIONS(6270), + [anon_sym_RBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_register] = ACTIONS(6270), + [anon_sym_inline] = ACTIONS(6270), + [anon_sym___inline] = ACTIONS(6270), + [anon_sym___inline__] = ACTIONS(6270), + [anon_sym___forceinline] = ACTIONS(6270), + [anon_sym_thread_local] = ACTIONS(6270), + [anon_sym___thread] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_final] = ACTIONS(6270), + [anon_sym_override] = ACTIONS(6270), + [anon_sym_template] = ACTIONS(6270), + [anon_sym_operator] = ACTIONS(6270), + [anon_sym_noexcept] = ACTIONS(6270), + [anon_sym_throw] = ACTIONS(6270), + [anon_sym_LBRACK_COLON] = ACTIONS(6272), + }, + [STATE(1906)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6256), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_SEMI] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym_virtual] = ACTIONS(6254), + [anon_sym_extern] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym___declspec] = ACTIONS(6254), + [anon_sym___based] = ACTIONS(6254), + [anon_sym___cdecl] = ACTIONS(6254), + [anon_sym___clrcall] = ACTIONS(6254), + [anon_sym___stdcall] = ACTIONS(6254), + [anon_sym___fastcall] = ACTIONS(6254), + [anon_sym___thiscall] = ACTIONS(6254), + [anon_sym___vectorcall] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_static] = ACTIONS(6254), + [anon_sym_RBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_register] = ACTIONS(6254), + [anon_sym_inline] = ACTIONS(6254), + [anon_sym___inline] = ACTIONS(6254), + [anon_sym___inline__] = ACTIONS(6254), + [anon_sym___forceinline] = ACTIONS(6254), + [anon_sym_thread_local] = ACTIONS(6254), + [anon_sym___thread] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_final] = ACTIONS(6254), + [anon_sym_override] = ACTIONS(6254), + [anon_sym_template] = ACTIONS(6254), + [anon_sym_operator] = ACTIONS(6254), + [anon_sym_noexcept] = ACTIONS(6254), + [anon_sym_throw] = ACTIONS(6254), + [anon_sym_LBRACK_COLON] = ACTIONS(6256), + }, + [STATE(1907)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_TILDE] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6260), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6260), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6260), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6260), + [anon_sym_GT_GT] = ACTIONS(6260), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym_virtual] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym___declspec] = ACTIONS(6258), + [anon_sym___based] = ACTIONS(6258), + [anon_sym___cdecl] = ACTIONS(6258), + [anon_sym___clrcall] = ACTIONS(6258), + [anon_sym___stdcall] = ACTIONS(6258), + [anon_sym___fastcall] = ACTIONS(6258), + [anon_sym___thiscall] = ACTIONS(6258), + [anon_sym___vectorcall] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_RBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_RBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_inline] = ACTIONS(6258), + [anon_sym___inline] = ACTIONS(6258), + [anon_sym___inline__] = ACTIONS(6258), + [anon_sym___forceinline] = ACTIONS(6258), + [anon_sym_thread_local] = ACTIONS(6258), + [anon_sym___thread] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_final] = ACTIONS(6258), + [anon_sym_override] = ACTIONS(6258), + [anon_sym_template] = ACTIONS(6258), + [anon_sym_operator] = ACTIONS(6258), + [anon_sym_noexcept] = ACTIONS(6258), + [anon_sym_throw] = ACTIONS(6258), + [anon_sym_LBRACK_COLON] = ACTIONS(6260), + }, + [STATE(1908)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_TILDE] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6264), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6264), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6264), + [anon_sym_GT_GT] = ACTIONS(6264), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym_virtual] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym___declspec] = ACTIONS(6262), + [anon_sym___based] = ACTIONS(6262), + [anon_sym___cdecl] = ACTIONS(6262), + [anon_sym___clrcall] = ACTIONS(6262), + [anon_sym___stdcall] = ACTIONS(6262), + [anon_sym___fastcall] = ACTIONS(6262), + [anon_sym___thiscall] = ACTIONS(6262), + [anon_sym___vectorcall] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_static] = ACTIONS(6262), + [anon_sym_RBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_inline] = ACTIONS(6262), + [anon_sym___inline] = ACTIONS(6262), + [anon_sym___inline__] = ACTIONS(6262), + [anon_sym___forceinline] = ACTIONS(6262), + [anon_sym_thread_local] = ACTIONS(6262), + [anon_sym___thread] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_final] = ACTIONS(6262), + [anon_sym_override] = ACTIONS(6262), + [anon_sym_template] = ACTIONS(6262), + [anon_sym_operator] = ACTIONS(6262), + [anon_sym_noexcept] = ACTIONS(6262), + [anon_sym_throw] = ACTIONS(6262), + [anon_sym_LBRACK_COLON] = ACTIONS(6264), + }, + [STATE(1909)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_TILDE] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym_virtual] = ACTIONS(6242), + [anon_sym_extern] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym___declspec] = ACTIONS(6242), + [anon_sym___based] = ACTIONS(6242), + [anon_sym___cdecl] = ACTIONS(6242), + [anon_sym___clrcall] = ACTIONS(6242), + [anon_sym___stdcall] = ACTIONS(6242), + [anon_sym___fastcall] = ACTIONS(6242), + [anon_sym___thiscall] = ACTIONS(6242), + [anon_sym___vectorcall] = ACTIONS(6242), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_static] = ACTIONS(6242), + [anon_sym_RBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_register] = ACTIONS(6242), + [anon_sym_inline] = ACTIONS(6242), + [anon_sym___inline] = ACTIONS(6242), + [anon_sym___inline__] = ACTIONS(6242), + [anon_sym___forceinline] = ACTIONS(6242), + [anon_sym_thread_local] = ACTIONS(6242), + [anon_sym___thread] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_final] = ACTIONS(6242), + [anon_sym_override] = ACTIONS(6242), + [anon_sym_template] = ACTIONS(6242), + [anon_sym_operator] = ACTIONS(6242), + [anon_sym_noexcept] = ACTIONS(6242), + [anon_sym_throw] = ACTIONS(6242), + [anon_sym_LBRACK_COLON] = ACTIONS(6244), + }, + [STATE(1910)] = { + [sym_string_literal] = STATE(5056), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(3170), + [sym_raw_string_literal] = STATE(5056), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6499), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym___attribute__] = ACTIONS(5255), + [anon_sym___attribute] = ACTIONS(5262), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6535), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6537), + [anon_sym_SLASH_EQ] = ACTIONS(6537), + [anon_sym_PERCENT_EQ] = ACTIONS(6537), + [anon_sym_PLUS_EQ] = ACTIONS(6537), + [anon_sym_DASH_EQ] = ACTIONS(6537), + [anon_sym_LT_LT_EQ] = ACTIONS(6537), + [anon_sym_GT_GT_EQ] = ACTIONS(6537), + [anon_sym_AMP_EQ] = ACTIONS(6537), + [anon_sym_CARET_EQ] = ACTIONS(6537), + [anon_sym_PIPE_EQ] = ACTIONS(6537), + [anon_sym_and_eq] = ACTIONS(6537), + [anon_sym_or_eq] = ACTIONS(6537), + [anon_sym_xor_eq] = ACTIONS(6537), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6539), + [anon_sym_u_DQUOTE] = ACTIONS(6539), + [anon_sym_U_DQUOTE] = ACTIONS(6539), + [anon_sym_u8_DQUOTE] = ACTIONS(6539), + [anon_sym_DQUOTE] = ACTIONS(6539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(6541), + [anon_sym_LR_DQUOTE] = ACTIONS(6541), + [anon_sym_uR_DQUOTE] = ACTIONS(6541), + [anon_sym_UR_DQUOTE] = ACTIONS(6541), + [anon_sym_u8R_DQUOTE] = ACTIONS(6541), + }, + [STATE(1911)] = { + [sym_string_literal] = STATE(3379), + [sym_decltype_auto] = STATE(2086), + [sym_template_argument_list] = STATE(2081), + [sym_raw_string_literal] = STATE(3379), + [aux_sym_sized_type_specifier_repeat1] = STATE(2161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6392), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5255), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym___attribute__] = ACTIONS(5255), + [anon_sym___attribute] = ACTIONS(5262), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6396), + [anon_sym_unsigned] = ACTIONS(6396), + [anon_sym_long] = ACTIONS(6396), + [anon_sym_short] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(5255), + [anon_sym_or_eq] = ACTIONS(5255), + [anon_sym_xor_eq] = ACTIONS(5255), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6398), + [anon_sym_decltype] = ACTIONS(6400), + [anon_sym_R_DQUOTE] = ACTIONS(6545), + [anon_sym_LR_DQUOTE] = ACTIONS(6545), + [anon_sym_uR_DQUOTE] = ACTIONS(6545), + [anon_sym_UR_DQUOTE] = ACTIONS(6545), + [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + }, + [STATE(1912)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_TILDE] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym_virtual] = ACTIONS(6246), + [anon_sym_extern] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym___declspec] = ACTIONS(6246), + [anon_sym___based] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_static] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_register] = ACTIONS(6246), + [anon_sym_inline] = ACTIONS(6246), + [anon_sym___inline] = ACTIONS(6246), + [anon_sym___inline__] = ACTIONS(6246), + [anon_sym___forceinline] = ACTIONS(6246), + [anon_sym_thread_local] = ACTIONS(6246), + [anon_sym___thread] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6246), + [anon_sym_or_eq] = ACTIONS(6246), + [anon_sym_xor_eq] = ACTIONS(6246), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_template] = ACTIONS(6246), + [anon_sym_operator] = ACTIONS(6246), + [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + [anon_sym_LBRACK_COLON] = ACTIONS(6248), + }, + [STATE(1913)] = { + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_else_token1] = ACTIONS(6527), + [aux_sym_preproc_elif_token1] = ACTIONS(6525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym_SEMI] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(6547), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_COLON] = ACTIONS(6525), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_RBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(6547), + [anon_sym_constexpr] = ACTIONS(6547), + [anon_sym_volatile] = ACTIONS(6547), + [anon_sym_restrict] = ACTIONS(6547), + [anon_sym___restrict__] = ACTIONS(6547), + [anon_sym__Atomic] = ACTIONS(6547), + [anon_sym__Noreturn] = ACTIONS(6547), + [anon_sym_noreturn] = ACTIONS(6547), + [anon_sym__Nonnull] = ACTIONS(6547), + [anon_sym_mutable] = ACTIONS(6547), + [anon_sym_constinit] = ACTIONS(6547), + [anon_sym_consteval] = ACTIONS(6547), + [anon_sym_alignas] = ACTIONS(6550), + [anon_sym__Alignas] = ACTIONS(6550), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_COLON_RBRACK] = ACTIONS(6527), + }, + [STATE(1914)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_TILDE] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym_virtual] = ACTIONS(6250), + [anon_sym_extern] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym___declspec] = ACTIONS(6250), + [anon_sym___based] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_static] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_register] = ACTIONS(6250), + [anon_sym_inline] = ACTIONS(6250), + [anon_sym___inline] = ACTIONS(6250), + [anon_sym___inline__] = ACTIONS(6250), + [anon_sym___forceinline] = ACTIONS(6250), + [anon_sym_thread_local] = ACTIONS(6250), + [anon_sym___thread] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6250), + [anon_sym_or_eq] = ACTIONS(6250), + [anon_sym_xor_eq] = ACTIONS(6250), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_template] = ACTIONS(6250), + [anon_sym_operator] = ACTIONS(6250), + [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + [anon_sym_LBRACK_COLON] = ACTIONS(6252), + }, + [STATE(1915)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym_virtual] = ACTIONS(6254), + [anon_sym_extern] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym___declspec] = ACTIONS(6254), + [anon_sym___based] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_static] = ACTIONS(6254), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_register] = ACTIONS(6254), + [anon_sym_inline] = ACTIONS(6254), + [anon_sym___inline] = ACTIONS(6254), + [anon_sym___inline__] = ACTIONS(6254), + [anon_sym___forceinline] = ACTIONS(6254), + [anon_sym_thread_local] = ACTIONS(6254), + [anon_sym___thread] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6254), + [anon_sym_or_eq] = ACTIONS(6254), + [anon_sym_xor_eq] = ACTIONS(6254), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_template] = ACTIONS(6254), + [anon_sym_operator] = ACTIONS(6254), + [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + [anon_sym_LBRACK_COLON] = ACTIONS(6256), + }, + [STATE(1916)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_TILDE] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym_virtual] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym___declspec] = ACTIONS(6258), + [anon_sym___based] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_inline] = ACTIONS(6258), + [anon_sym___inline] = ACTIONS(6258), + [anon_sym___inline__] = ACTIONS(6258), + [anon_sym___forceinline] = ACTIONS(6258), + [anon_sym_thread_local] = ACTIONS(6258), + [anon_sym___thread] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6258), + [anon_sym_or_eq] = ACTIONS(6258), + [anon_sym_xor_eq] = ACTIONS(6258), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_template] = ACTIONS(6258), + [anon_sym_operator] = ACTIONS(6258), + [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + [anon_sym_LBRACK_COLON] = ACTIONS(6260), + }, + [STATE(1917)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_TILDE] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym_virtual] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym___declspec] = ACTIONS(6262), + [anon_sym___based] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_static] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_inline] = ACTIONS(6262), + [anon_sym___inline] = ACTIONS(6262), + [anon_sym___inline__] = ACTIONS(6262), + [anon_sym___forceinline] = ACTIONS(6262), + [anon_sym_thread_local] = ACTIONS(6262), + [anon_sym___thread] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6262), + [anon_sym_or_eq] = ACTIONS(6262), + [anon_sym_xor_eq] = ACTIONS(6262), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_template] = ACTIONS(6262), + [anon_sym_operator] = ACTIONS(6262), + [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + [anon_sym_LBRACK_COLON] = ACTIONS(6264), + }, + [STATE(1918)] = { + [sym_attribute_specifier] = STATE(1918), + [aux_sym_type_definition_repeat1] = STATE(1918), + [sym_identifier] = ACTIONS(6553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_RPAREN] = ACTIONS(6555), + [aux_sym_preproc_if_token2] = ACTIONS(6555), + [aux_sym_preproc_else_token1] = ACTIONS(6555), + [aux_sym_preproc_elif_token1] = ACTIONS(6553), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6555), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6553), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6553), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym_SEMI] = ACTIONS(6555), + [anon_sym___extension__] = ACTIONS(6553), + [anon_sym___attribute__] = ACTIONS(6557), + [anon_sym___attribute] = ACTIONS(6557), + [anon_sym_COLON] = ACTIONS(6553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6555), + [anon_sym_RBRACE] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6553), + [anon_sym_volatile] = ACTIONS(6553), + [anon_sym_restrict] = ACTIONS(6553), + [anon_sym___restrict__] = ACTIONS(6553), + [anon_sym__Atomic] = ACTIONS(6553), + [anon_sym__Noreturn] = ACTIONS(6553), + [anon_sym_noreturn] = ACTIONS(6553), + [anon_sym__Nonnull] = ACTIONS(6553), + [anon_sym_mutable] = ACTIONS(6553), + [anon_sym_constinit] = ACTIONS(6553), + [anon_sym_consteval] = ACTIONS(6553), + [anon_sym_alignas] = ACTIONS(6553), + [anon_sym__Alignas] = ACTIONS(6553), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_STAR_EQ] = ACTIONS(6555), + [anon_sym_SLASH_EQ] = ACTIONS(6555), + [anon_sym_PERCENT_EQ] = ACTIONS(6555), + [anon_sym_PLUS_EQ] = ACTIONS(6555), + [anon_sym_DASH_EQ] = ACTIONS(6555), + [anon_sym_LT_LT_EQ] = ACTIONS(6555), + [anon_sym_GT_GT_EQ] = ACTIONS(6555), + [anon_sym_AMP_EQ] = ACTIONS(6555), + [anon_sym_CARET_EQ] = ACTIONS(6555), + [anon_sym_PIPE_EQ] = ACTIONS(6555), + [anon_sym_and_eq] = ACTIONS(6553), + [anon_sym_or_eq] = ACTIONS(6553), + [anon_sym_xor_eq] = ACTIONS(6553), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6553), + [anon_sym_and] = ACTIONS(6553), + [anon_sym_bitor] = ACTIONS(6553), + [anon_sym_xor] = ACTIONS(6553), + [anon_sym_bitand] = ACTIONS(6553), + [anon_sym_not_eq] = ACTIONS(6553), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6553), + [anon_sym___asm__] = ACTIONS(6553), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6553), + [anon_sym_override] = ACTIONS(6553), + [anon_sym_noexcept] = ACTIONS(6553), + [anon_sym_throw] = ACTIONS(6553), + [anon_sym_requires] = ACTIONS(6553), + [anon_sym_COLON_RBRACK] = ACTIONS(6555), + }, + [STATE(1919)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4427), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2167), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2167), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(1920)] = { + [sym_string_literal] = STATE(3557), + [sym_decltype_auto] = STATE(2957), + [sym_template_argument_list] = STATE(2933), + [sym_raw_string_literal] = STATE(3557), + [aux_sym_sized_type_specifier_repeat1] = STATE(2305), + [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(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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6566), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6570), + [anon_sym_unsigned] = ACTIONS(6570), + [anon_sym_long] = ACTIONS(6570), + [anon_sym_short] = ACTIONS(6570), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(5255), + [anon_sym_or_eq] = ACTIONS(5255), + [anon_sym_xor_eq] = ACTIONS(5255), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5262), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5255), + }, + [STATE(1921)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1922), + [sym__abstract_declarator] = STATE(4338), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2149), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2149), + [aux_sym_pointer_declarator_repeat1] = STATE(1922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6459), + [anon_sym___attribute] = ACTIONS(6457), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(1922)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4340), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2151), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2151), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(1923)] = { + [sym_string_literal] = STATE(3798), + [sym_decltype_auto] = STATE(3388), + [sym_template_argument_list] = STATE(3479), + [sym_raw_string_literal] = STATE(3798), + [aux_sym_sized_type_specifier_repeat1] = STATE(2505), + [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(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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6582), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6586), + [anon_sym_unsigned] = ACTIONS(6586), + [anon_sym_long] = ACTIONS(6586), + [anon_sym_short] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5262), + [anon_sym_L_DQUOTE] = ACTIONS(5601), + [anon_sym_u_DQUOTE] = ACTIONS(5601), + [anon_sym_U_DQUOTE] = ACTIONS(5601), + [anon_sym_u8_DQUOTE] = ACTIONS(5601), + [anon_sym_DQUOTE] = ACTIONS(5601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [anon_sym_DASH_GT_STAR] = ACTIONS(5255), + }, + [STATE(1924)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(1925)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1926), + [sym__abstract_declarator] = STATE(4420), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2141), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2141), + [aux_sym_pointer_declarator_repeat1] = STATE(1926), + [sym_identifier] = ACTIONS(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [aux_sym_preproc_if_token2] = ACTIONS(6459), + [aux_sym_preproc_else_token1] = ACTIONS(6459), + [aux_sym_preproc_elif_token1] = ACTIONS(6457), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6469), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), + [sym_ms_signed_ptr_modifier] = ACTIONS(6471), + [anon_sym__unaligned] = ACTIONS(6473), + [anon_sym___unaligned] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6457), + [anon_sym_or_eq] = ACTIONS(6457), + [anon_sym_xor_eq] = ACTIONS(6457), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6457), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6457), + [anon_sym_not_eq] = ACTIONS(6457), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(1926)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4422), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2143), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2143), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6469), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), + [sym_ms_signed_ptr_modifier] = ACTIONS(6471), + [anon_sym__unaligned] = ACTIONS(6473), + [anon_sym___unaligned] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6495), + [anon_sym_or_eq] = ACTIONS(6495), + [anon_sym_xor_eq] = ACTIONS(6495), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(1927)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1919), + [sym__abstract_declarator] = STATE(4380), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2182), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2182), + [aux_sym_pointer_declarator_repeat1] = STATE(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_RBRACE] = ACTIONS(6459), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6459), + }, + [STATE(1928)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [sym_identifier] = ACTIONS(6600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_RPAREN] = ACTIONS(6602), + [aux_sym_preproc_if_token2] = ACTIONS(6602), + [aux_sym_preproc_else_token1] = ACTIONS(6602), + [aux_sym_preproc_elif_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6600), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6600), + [anon_sym___attribute__] = ACTIONS(6600), + [anon_sym___attribute] = ACTIONS(6600), + [anon_sym_COLON] = ACTIONS(6600), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(6604), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6604), + [sym_ms_signed_ptr_modifier] = ACTIONS(6604), + [anon_sym__unaligned] = ACTIONS(6607), + [anon_sym___unaligned] = ACTIONS(6607), + [anon_sym_RBRACE] = ACTIONS(6602), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6600), + [anon_sym_volatile] = ACTIONS(6600), + [anon_sym_restrict] = ACTIONS(6600), + [anon_sym___restrict__] = ACTIONS(6600), + [anon_sym__Atomic] = ACTIONS(6600), + [anon_sym__Noreturn] = ACTIONS(6600), + [anon_sym_noreturn] = ACTIONS(6600), + [anon_sym__Nonnull] = ACTIONS(6600), + [anon_sym_mutable] = ACTIONS(6600), + [anon_sym_constinit] = ACTIONS(6600), + [anon_sym_consteval] = ACTIONS(6600), + [anon_sym_alignas] = ACTIONS(6600), + [anon_sym__Alignas] = ACTIONS(6600), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_STAR_EQ] = ACTIONS(6602), + [anon_sym_SLASH_EQ] = ACTIONS(6602), + [anon_sym_PERCENT_EQ] = ACTIONS(6602), + [anon_sym_PLUS_EQ] = ACTIONS(6602), + [anon_sym_DASH_EQ] = ACTIONS(6602), + [anon_sym_LT_LT_EQ] = ACTIONS(6602), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6602), + [anon_sym_CARET_EQ] = ACTIONS(6602), + [anon_sym_PIPE_EQ] = ACTIONS(6602), + [anon_sym_and_eq] = ACTIONS(6600), + [anon_sym_or_eq] = ACTIONS(6600), + [anon_sym_xor_eq] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6600), + [anon_sym_and] = ACTIONS(6600), + [anon_sym_bitor] = ACTIONS(6600), + [anon_sym_xor] = ACTIONS(6600), + [anon_sym_bitand] = ACTIONS(6600), + [anon_sym_not_eq] = ACTIONS(6600), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6600), + [anon_sym_override] = ACTIONS(6600), + [anon_sym_requires] = ACTIONS(6600), + [anon_sym_COLON_RBRACK] = ACTIONS(6602), + }, + [STATE(1929)] = { + [sym_string_literal] = STATE(3557), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(2859), + [sym_raw_string_literal] = STATE(3557), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(1930)] = { + [sym_string_literal] = STATE(5466), + [sym_decltype_auto] = STATE(3956), + [sym_template_argument_list] = STATE(4643), + [sym_raw_string_literal] = STATE(5466), + [aux_sym_sized_type_specifier_repeat1] = STATE(3152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6439), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6615), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6617), + [anon_sym_SLASH_EQ] = ACTIONS(6617), + [anon_sym_PERCENT_EQ] = ACTIONS(6617), + [anon_sym_PLUS_EQ] = ACTIONS(6617), + [anon_sym_DASH_EQ] = ACTIONS(6617), + [anon_sym_LT_LT_EQ] = ACTIONS(6617), + [anon_sym_GT_GT_EQ] = ACTIONS(6617), + [anon_sym_AMP_EQ] = ACTIONS(6617), + [anon_sym_CARET_EQ] = ACTIONS(6617), + [anon_sym_PIPE_EQ] = ACTIONS(6617), + [anon_sym_and_eq] = ACTIONS(6617), + [anon_sym_or_eq] = ACTIONS(6617), + [anon_sym_xor_eq] = ACTIONS(6617), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6619), + [anon_sym_u_DQUOTE] = ACTIONS(6619), + [anon_sym_U_DQUOTE] = ACTIONS(6619), + [anon_sym_u8_DQUOTE] = ACTIONS(6619), + [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6621), + [anon_sym_decltype] = ACTIONS(6623), + [anon_sym_R_DQUOTE] = ACTIONS(6625), + [anon_sym_LR_DQUOTE] = ACTIONS(6625), + [anon_sym_uR_DQUOTE] = ACTIONS(6625), + [anon_sym_UR_DQUOTE] = ACTIONS(6625), + [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + }, + [STATE(1931)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [aux_sym_preproc_if_token2] = ACTIONS(6629), + [aux_sym_preproc_else_token1] = ACTIONS(6629), + [aux_sym_preproc_elif_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym_SEMI] = ACTIONS(6629), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6629), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_RBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6629), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_and_eq] = ACTIONS(6627), + [anon_sym_or_eq] = ACTIONS(6627), + [anon_sym_xor_eq] = ACTIONS(6627), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + [anon_sym_COLON_RBRACK] = ACTIONS(6629), + }, + [STATE(1932)] = { + [sym_string_literal] = STATE(3652), + [sym_decltype_auto] = STATE(3055), + [sym_template_argument_list] = STATE(3016), + [sym_raw_string_literal] = STATE(3652), + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6634), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6638), + [anon_sym_unsigned] = ACTIONS(6638), + [anon_sym_long] = ACTIONS(6638), + [anon_sym_short] = ACTIONS(6638), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(5262), + [anon_sym_AMP_EQ] = ACTIONS(5255), + [anon_sym_CARET_EQ] = ACTIONS(5255), + [anon_sym_PIPE_EQ] = ACTIONS(5255), + [anon_sym_and_eq] = ACTIONS(5255), + [anon_sym_or_eq] = ACTIONS(5255), + [anon_sym_xor_eq] = ACTIONS(5255), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6640), + [anon_sym_u_DQUOTE] = ACTIONS(6640), + [anon_sym_U_DQUOTE] = ACTIONS(6640), + [anon_sym_u8_DQUOTE] = ACTIONS(6640), + [anon_sym_DQUOTE] = ACTIONS(6640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6642), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_GT2] = ACTIONS(5255), + [anon_sym_R_DQUOTE] = ACTIONS(6646), + [anon_sym_LR_DQUOTE] = ACTIONS(6646), + [anon_sym_uR_DQUOTE] = ACTIONS(6646), + [anon_sym_UR_DQUOTE] = ACTIONS(6646), + [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + }, + [STATE(1933)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2544), + [sym_ms_pointer_modifier] = STATE(2315), + [sym__abstract_declarator] = STATE(4471), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_pointer_declarator_repeat1] = STATE(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6656), + [sym_ms_restrict_modifier] = ACTIONS(6658), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), + [sym_ms_signed_ptr_modifier] = ACTIONS(6660), + [anon_sym__unaligned] = ACTIONS(6662), + [anon_sym___unaligned] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(1934)] = { + [sym_string_literal] = STATE(3603), + [sym_decltype_auto] = STATE(3006), + [sym_template_argument_list] = STATE(3042), + [sym_raw_string_literal] = STATE(3603), + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6670), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6674), + [anon_sym_unsigned] = ACTIONS(6674), + [anon_sym_long] = ACTIONS(6674), + [anon_sym_short] = ACTIONS(6674), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [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(5255), + [anon_sym_or_eq] = ACTIONS(5255), + [anon_sym_xor_eq] = ACTIONS(5255), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6676), + [anon_sym_u_DQUOTE] = ACTIONS(6676), + [anon_sym_U_DQUOTE] = ACTIONS(6676), + [anon_sym_u8_DQUOTE] = ACTIONS(6676), + [anon_sym_DQUOTE] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6678), + [anon_sym_decltype] = ACTIONS(6680), + [anon_sym_R_DQUOTE] = ACTIONS(6682), + [anon_sym_LR_DQUOTE] = ACTIONS(6682), + [anon_sym_uR_DQUOTE] = ACTIONS(6682), + [anon_sym_UR_DQUOTE] = ACTIONS(6682), + [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + }, + [STATE(1935)] = { + [sym_string_literal] = STATE(5440), + [sym_decltype_auto] = STATE(4306), + [sym_template_argument_list] = STATE(4628), + [sym_raw_string_literal] = STATE(5440), + [aux_sym_sized_type_specifier_repeat1] = STATE(3914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6684), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6688), + [anon_sym_unsigned] = ACTIONS(6688), + [anon_sym_long] = ACTIONS(6688), + [anon_sym_short] = ACTIONS(6688), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6690), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6692), + [anon_sym_SLASH_EQ] = ACTIONS(6692), + [anon_sym_PERCENT_EQ] = ACTIONS(6692), + [anon_sym_PLUS_EQ] = ACTIONS(6692), + [anon_sym_DASH_EQ] = ACTIONS(6692), + [anon_sym_LT_LT_EQ] = ACTIONS(6692), + [anon_sym_GT_GT_EQ] = ACTIONS(6690), + [anon_sym_AMP_EQ] = ACTIONS(6692), + [anon_sym_CARET_EQ] = ACTIONS(6692), + [anon_sym_PIPE_EQ] = ACTIONS(6692), + [anon_sym_and_eq] = ACTIONS(6692), + [anon_sym_or_eq] = ACTIONS(6692), + [anon_sym_xor_eq] = ACTIONS(6692), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(6694), + [anon_sym_u_DQUOTE] = ACTIONS(6694), + [anon_sym_U_DQUOTE] = ACTIONS(6694), + [anon_sym_u8_DQUOTE] = ACTIONS(6694), + [anon_sym_DQUOTE] = ACTIONS(6694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6696), + [anon_sym_decltype] = ACTIONS(6698), + [anon_sym_GT2] = ACTIONS(5255), + [anon_sym_R_DQUOTE] = ACTIONS(6700), + [anon_sym_LR_DQUOTE] = ACTIONS(6700), + [anon_sym_uR_DQUOTE] = ACTIONS(6700), + [anon_sym_UR_DQUOTE] = ACTIONS(6700), + [anon_sym_u8R_DQUOTE] = ACTIONS(6700), + }, + [STATE(1936)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2544), + [sym_ms_pointer_modifier] = STATE(1933), + [sym__abstract_declarator] = STATE(4458), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2192), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2192), + [aux_sym_pointer_declarator_repeat1] = STATE(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6656), + [sym_ms_restrict_modifier] = ACTIONS(6658), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), + [sym_ms_signed_ptr_modifier] = ACTIONS(6660), + [anon_sym__unaligned] = ACTIONS(6662), + [anon_sym___unaligned] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + }, + [STATE(1937)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(3170), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6499), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6704), + [anon_sym_SLASH_EQ] = ACTIONS(6704), + [anon_sym_PERCENT_EQ] = ACTIONS(6704), + [anon_sym_PLUS_EQ] = ACTIONS(6704), + [anon_sym_DASH_EQ] = ACTIONS(6704), + [anon_sym_LT_LT_EQ] = ACTIONS(6704), + [anon_sym_GT_GT_EQ] = ACTIONS(6704), + [anon_sym_AMP_EQ] = ACTIONS(6704), + [anon_sym_CARET_EQ] = ACTIONS(6704), + [anon_sym_PIPE_EQ] = ACTIONS(6704), + [anon_sym_and_eq] = ACTIONS(6704), + [anon_sym_or_eq] = ACTIONS(6704), + [anon_sym_xor_eq] = ACTIONS(6704), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(1938)] = { + [sym_string_literal] = STATE(5440), + [sym_decltype_auto] = STATE(4306), + [sym_template_argument_list] = STATE(4587), + [sym_raw_string_literal] = STATE(5440), + [aux_sym_sized_type_specifier_repeat1] = STATE(3914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6706), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6688), + [anon_sym_unsigned] = ACTIONS(6688), + [anon_sym_long] = ACTIONS(6688), + [anon_sym_short] = ACTIONS(6688), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6690), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6692), + [anon_sym_SLASH_EQ] = ACTIONS(6692), + [anon_sym_PERCENT_EQ] = ACTIONS(6692), + [anon_sym_PLUS_EQ] = ACTIONS(6692), + [anon_sym_DASH_EQ] = ACTIONS(6692), + [anon_sym_LT_LT_EQ] = ACTIONS(6692), + [anon_sym_GT_GT_EQ] = ACTIONS(6690), + [anon_sym_AMP_EQ] = ACTIONS(6692), + [anon_sym_CARET_EQ] = ACTIONS(6692), + [anon_sym_PIPE_EQ] = ACTIONS(6692), + [anon_sym_and_eq] = ACTIONS(6692), + [anon_sym_or_eq] = ACTIONS(6692), + [anon_sym_xor_eq] = ACTIONS(6692), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6694), + [anon_sym_u_DQUOTE] = ACTIONS(6694), + [anon_sym_U_DQUOTE] = ACTIONS(6694), + [anon_sym_u8_DQUOTE] = ACTIONS(6694), + [anon_sym_DQUOTE] = ACTIONS(6694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6696), + [anon_sym_decltype] = ACTIONS(6698), + [anon_sym_GT2] = ACTIONS(5255), + [anon_sym_R_DQUOTE] = ACTIONS(6700), + [anon_sym_LR_DQUOTE] = ACTIONS(6700), + [anon_sym_uR_DQUOTE] = ACTIONS(6700), + [anon_sym_UR_DQUOTE] = ACTIONS(6700), + [anon_sym_u8R_DQUOTE] = ACTIONS(6700), + }, + [STATE(1939)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(3170), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [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(5255), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5255), + [anon_sym_BANG_EQ] = ACTIONS(5255), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5255), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(6499), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(6709), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5255), + [anon_sym_STAR_EQ] = ACTIONS(6711), + [anon_sym_SLASH_EQ] = ACTIONS(6711), + [anon_sym_PERCENT_EQ] = ACTIONS(6711), + [anon_sym_PLUS_EQ] = ACTIONS(6711), + [anon_sym_DASH_EQ] = ACTIONS(6711), + [anon_sym_LT_LT_EQ] = ACTIONS(6711), + [anon_sym_GT_GT_EQ] = ACTIONS(6711), + [anon_sym_AMP_EQ] = ACTIONS(6711), + [anon_sym_CARET_EQ] = ACTIONS(6711), + [anon_sym_PIPE_EQ] = ACTIONS(6711), + [anon_sym_and_eq] = ACTIONS(6711), + [anon_sym_or_eq] = ACTIONS(6711), + [anon_sym_xor_eq] = ACTIONS(6711), + [anon_sym_LT_EQ_GT] = ACTIONS(5255), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5255), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5255), + [anon_sym_not_eq] = ACTIONS(5255), + [anon_sym_DASH_DASH] = ACTIONS(5255), + [anon_sym_PLUS_PLUS] = ACTIONS(5255), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5255), + [anon_sym_DASH_GT] = ACTIONS(5255), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(1940)] = { + [sym_string_literal] = STATE(4004), + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(4876), + [sym_raw_string_literal] = STATE(4004), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LPAREN2] = ACTIONS(5255), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5255), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(1941)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym_SEMI] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_COLON_RBRACK] = ACTIONS(6718), + }, + [STATE(1942)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_noexcept] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_COLON_RBRACK] = ACTIONS(2758), + }, + [STATE(1943)] = { + [sym_identifier] = ACTIONS(6720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_RPAREN] = ACTIONS(6722), + [aux_sym_preproc_if_token2] = ACTIONS(6722), + [aux_sym_preproc_else_token1] = ACTIONS(6722), + [aux_sym_preproc_elif_token1] = ACTIONS(6720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym_SEMI] = ACTIONS(6722), + [anon_sym___extension__] = ACTIONS(6720), + [anon_sym___attribute__] = ACTIONS(6720), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6722), + [anon_sym_RBRACE] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_EQ] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6720), + [anon_sym_volatile] = ACTIONS(6720), + [anon_sym_restrict] = ACTIONS(6720), + [anon_sym___restrict__] = ACTIONS(6720), + [anon_sym__Atomic] = ACTIONS(6720), + [anon_sym__Noreturn] = ACTIONS(6720), + [anon_sym_noreturn] = ACTIONS(6720), + [anon_sym__Nonnull] = ACTIONS(6720), + [anon_sym_mutable] = ACTIONS(6720), + [anon_sym_constinit] = ACTIONS(6720), + [anon_sym_consteval] = ACTIONS(6720), + [anon_sym_alignas] = ACTIONS(6720), + [anon_sym__Alignas] = ACTIONS(6720), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_STAR_EQ] = ACTIONS(6722), + [anon_sym_SLASH_EQ] = ACTIONS(6722), + [anon_sym_PERCENT_EQ] = ACTIONS(6722), + [anon_sym_PLUS_EQ] = ACTIONS(6722), + [anon_sym_DASH_EQ] = ACTIONS(6722), + [anon_sym_LT_LT_EQ] = ACTIONS(6722), + [anon_sym_GT_GT_EQ] = ACTIONS(6722), + [anon_sym_AMP_EQ] = ACTIONS(6722), + [anon_sym_CARET_EQ] = ACTIONS(6722), + [anon_sym_PIPE_EQ] = ACTIONS(6722), + [anon_sym_and_eq] = ACTIONS(6720), + [anon_sym_or_eq] = ACTIONS(6720), + [anon_sym_xor_eq] = ACTIONS(6720), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6720), + [anon_sym_and] = ACTIONS(6720), + [anon_sym_bitor] = ACTIONS(6720), + [anon_sym_xor] = ACTIONS(6720), + [anon_sym_bitand] = ACTIONS(6720), + [anon_sym_not_eq] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6720), + [anon_sym___asm__] = ACTIONS(6720), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6722), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6720), + [anon_sym_override] = ACTIONS(6720), + [anon_sym_noexcept] = ACTIONS(6720), + [anon_sym_throw] = ACTIONS(6720), + [anon_sym_requires] = ACTIONS(6720), + [anon_sym_COLON_RBRACK] = ACTIONS(6722), + }, + [STATE(1944)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym_virtual] = ACTIONS(6270), + [anon_sym_extern] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym___declspec] = ACTIONS(6270), + [anon_sym___based] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_static] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_register] = ACTIONS(6270), + [anon_sym_inline] = ACTIONS(6270), + [anon_sym___inline] = ACTIONS(6270), + [anon_sym___inline__] = ACTIONS(6270), + [anon_sym___forceinline] = ACTIONS(6270), + [anon_sym_thread_local] = ACTIONS(6270), + [anon_sym___thread] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_template] = ACTIONS(6270), + [anon_sym_operator] = ACTIONS(6270), + [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + [anon_sym_LBRACK_COLON] = ACTIONS(6272), + }, + [STATE(1945)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym_SEMI] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6716), + [anon_sym___asm__] = ACTIONS(6716), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_noexcept] = ACTIONS(6716), + [anon_sym_throw] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_COLON_RBRACK] = ACTIONS(6718), + }, + [STATE(1946)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_TILDE] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym_virtual] = ACTIONS(6242), + [anon_sym_extern] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym___declspec] = ACTIONS(6242), + [anon_sym___based] = ACTIONS(6242), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_static] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_register] = ACTIONS(6242), + [anon_sym_inline] = ACTIONS(6242), + [anon_sym___inline] = ACTIONS(6242), + [anon_sym___inline__] = ACTIONS(6242), + [anon_sym___forceinline] = ACTIONS(6242), + [anon_sym_thread_local] = ACTIONS(6242), + [anon_sym___thread] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_template] = ACTIONS(6242), + [anon_sym_operator] = ACTIONS(6242), + [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + [anon_sym_LBRACK_COLON] = ACTIONS(6244), + }, + [STATE(1947)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_TILDE] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym_virtual] = ACTIONS(6246), + [anon_sym_extern] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym___declspec] = ACTIONS(6246), + [anon_sym___based] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_static] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_register] = ACTIONS(6246), + [anon_sym_inline] = ACTIONS(6246), + [anon_sym___inline] = ACTIONS(6246), + [anon_sym___inline__] = ACTIONS(6246), + [anon_sym___forceinline] = ACTIONS(6246), + [anon_sym_thread_local] = ACTIONS(6246), + [anon_sym___thread] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_template] = ACTIONS(6246), + [anon_sym_operator] = ACTIONS(6246), + [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + [anon_sym_LBRACK_COLON] = ACTIONS(6248), + }, + [STATE(1948)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_TILDE] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym_virtual] = ACTIONS(6250), + [anon_sym_extern] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym___declspec] = ACTIONS(6250), + [anon_sym___based] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_static] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_register] = ACTIONS(6250), + [anon_sym_inline] = ACTIONS(6250), + [anon_sym___inline] = ACTIONS(6250), + [anon_sym___inline__] = ACTIONS(6250), + [anon_sym___forceinline] = ACTIONS(6250), + [anon_sym_thread_local] = ACTIONS(6250), + [anon_sym___thread] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_template] = ACTIONS(6250), + [anon_sym_operator] = ACTIONS(6250), + [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + [anon_sym_LBRACK_COLON] = ACTIONS(6252), + }, + [STATE(1949)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym_virtual] = ACTIONS(6254), + [anon_sym_extern] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym___declspec] = ACTIONS(6254), + [anon_sym___based] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_static] = ACTIONS(6254), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_register] = ACTIONS(6254), + [anon_sym_inline] = ACTIONS(6254), + [anon_sym___inline] = ACTIONS(6254), + [anon_sym___inline__] = ACTIONS(6254), + [anon_sym___forceinline] = ACTIONS(6254), + [anon_sym_thread_local] = ACTIONS(6254), + [anon_sym___thread] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_template] = ACTIONS(6254), + [anon_sym_operator] = ACTIONS(6254), + [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + [anon_sym_LBRACK_COLON] = ACTIONS(6256), + }, + [STATE(1950)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_TILDE] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym_virtual] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym___declspec] = ACTIONS(6258), + [anon_sym___based] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_inline] = ACTIONS(6258), + [anon_sym___inline] = ACTIONS(6258), + [anon_sym___inline__] = ACTIONS(6258), + [anon_sym___forceinline] = ACTIONS(6258), + [anon_sym_thread_local] = ACTIONS(6258), + [anon_sym___thread] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_template] = ACTIONS(6258), + [anon_sym_operator] = ACTIONS(6258), + [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + [anon_sym_LBRACK_COLON] = ACTIONS(6260), + }, + [STATE(1951)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_TILDE] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym_virtual] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym___declspec] = ACTIONS(6262), + [anon_sym___based] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_static] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_inline] = ACTIONS(6262), + [anon_sym___inline] = ACTIONS(6262), + [anon_sym___inline__] = ACTIONS(6262), + [anon_sym___forceinline] = ACTIONS(6262), + [anon_sym_thread_local] = ACTIONS(6262), + [anon_sym___thread] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_template] = ACTIONS(6262), + [anon_sym_operator] = ACTIONS(6262), + [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + [anon_sym_LBRACK_COLON] = ACTIONS(6264), + }, + [STATE(1952)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2589), + [sym_ms_pointer_modifier] = STATE(2393), + [sym__abstract_declarator] = STATE(4539), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2229), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2229), + [aux_sym_pointer_declarator_repeat1] = STATE(2393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6732), + [sym_ms_restrict_modifier] = ACTIONS(6734), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), + [sym_ms_signed_ptr_modifier] = ACTIONS(6736), + [anon_sym__unaligned] = ACTIONS(6738), + [anon_sym___unaligned] = ACTIONS(6738), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6495), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(1953)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_COLON_RBRACK] = ACTIONS(2758), + }, + [STATE(1954)] = { + [sym_template_argument_list] = STATE(5490), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6753), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6753), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(6753), + [anon_sym_GT_GT] = ACTIONS(6753), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6755), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_STAR_EQ] = ACTIONS(6758), + [anon_sym_SLASH_EQ] = ACTIONS(6758), + [anon_sym_PERCENT_EQ] = ACTIONS(6758), + [anon_sym_PLUS_EQ] = ACTIONS(6758), + [anon_sym_DASH_EQ] = ACTIONS(6758), + [anon_sym_LT_LT_EQ] = ACTIONS(6758), + [anon_sym_GT_GT_EQ] = ACTIONS(6758), + [anon_sym_AMP_EQ] = ACTIONS(6758), + [anon_sym_CARET_EQ] = ACTIONS(6758), + [anon_sym_PIPE_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6753), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_DASH_GT_STAR] = ACTIONS(6758), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(1955)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(1956)] = { + [sym_identifier] = ACTIONS(6762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_TILDE] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6764), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6764), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6764), + [anon_sym_GT_GT] = ACTIONS(6764), + [anon_sym_SEMI] = ACTIONS(6764), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym_virtual] = ACTIONS(6762), + [anon_sym_extern] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6764), + [anon_sym___declspec] = ACTIONS(6762), + [anon_sym___based] = ACTIONS(6762), + [anon_sym___cdecl] = ACTIONS(6762), + [anon_sym___clrcall] = ACTIONS(6762), + [anon_sym___stdcall] = ACTIONS(6762), + [anon_sym___fastcall] = ACTIONS(6762), + [anon_sym___thiscall] = ACTIONS(6762), + [anon_sym___vectorcall] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_RBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6762), + [anon_sym_static] = ACTIONS(6762), + [anon_sym_register] = ACTIONS(6762), + [anon_sym_inline] = ACTIONS(6762), + [anon_sym___inline] = ACTIONS(6762), + [anon_sym___inline__] = ACTIONS(6762), + [anon_sym___forceinline] = ACTIONS(6762), + [anon_sym_thread_local] = ACTIONS(6762), + [anon_sym___thread] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6762), + [anon_sym__Alignas] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6762), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6762), + [anon_sym_not_eq] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6762), + [anon_sym_final] = ACTIONS(6762), + [anon_sym_override] = ACTIONS(6762), + [anon_sym_template] = ACTIONS(6762), + [anon_sym_operator] = ACTIONS(6762), + [anon_sym_noexcept] = ACTIONS(6762), + [anon_sym_throw] = ACTIONS(6762), + [anon_sym_LBRACK_COLON] = ACTIONS(6764), + }, + [STATE(1957)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2578), + [sym_ms_pointer_modifier] = STATE(1960), + [sym__abstract_declarator] = STATE(4547), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2233), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2233), + [aux_sym_pointer_declarator_repeat1] = STATE(1960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6774), + [sym_ms_restrict_modifier] = ACTIONS(6776), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), + [sym_ms_signed_ptr_modifier] = ACTIONS(6778), + [anon_sym__unaligned] = ACTIONS(6780), + [anon_sym___unaligned] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6459), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(1958)] = { + [sym_identifier] = ACTIONS(6786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [aux_sym_preproc_if_token2] = ACTIONS(6788), + [aux_sym_preproc_else_token1] = ACTIONS(6788), + [aux_sym_preproc_elif_token1] = ACTIONS(6786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6786), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6786), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6786), + [anon_sym_GT_GT] = ACTIONS(6786), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6786), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_COLON] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6788), + [anon_sym_RBRACE] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_STAR_EQ] = ACTIONS(6788), + [anon_sym_SLASH_EQ] = ACTIONS(6788), + [anon_sym_PERCENT_EQ] = ACTIONS(6788), + [anon_sym_PLUS_EQ] = ACTIONS(6788), + [anon_sym_DASH_EQ] = ACTIONS(6788), + [anon_sym_LT_LT_EQ] = ACTIONS(6788), + [anon_sym_GT_GT_EQ] = ACTIONS(6788), + [anon_sym_AMP_EQ] = ACTIONS(6788), + [anon_sym_CARET_EQ] = ACTIONS(6788), + [anon_sym_PIPE_EQ] = ACTIONS(6788), + [anon_sym_and_eq] = ACTIONS(6786), + [anon_sym_or_eq] = ACTIONS(6786), + [anon_sym_xor_eq] = ACTIONS(6786), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6786), + [anon_sym_and] = ACTIONS(6786), + [anon_sym_bitor] = ACTIONS(6786), + [anon_sym_xor] = ACTIONS(6786), + [anon_sym_bitand] = ACTIONS(6786), + [anon_sym_not_eq] = ACTIONS(6786), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6786), + [anon_sym___asm__] = ACTIONS(6786), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6788), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6786), + [anon_sym_override] = ACTIONS(6786), + [anon_sym_noexcept] = ACTIONS(6786), + [anon_sym_throw] = ACTIONS(6786), + [anon_sym_requires] = ACTIONS(6786), + [anon_sym_COLON_RBRACK] = ACTIONS(6788), + }, + [STATE(1959)] = { + [sym_identifier] = ACTIONS(6790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [aux_sym_preproc_if_token2] = ACTIONS(6792), + [aux_sym_preproc_else_token1] = ACTIONS(6792), + [aux_sym_preproc_elif_token1] = ACTIONS(6790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(6790), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_COLON] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_mutable] = ACTIONS(6790), + [anon_sym_constinit] = ACTIONS(6790), + [anon_sym_consteval] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6790), + [anon_sym_or_eq] = ACTIONS(6790), + [anon_sym_xor_eq] = ACTIONS(6790), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6790), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6790), + [anon_sym_not_eq] = ACTIONS(6790), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6790), + [anon_sym___asm__] = ACTIONS(6790), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6790), + [anon_sym_override] = ACTIONS(6790), + [anon_sym_noexcept] = ACTIONS(6790), + [anon_sym_throw] = ACTIONS(6790), + [anon_sym_requires] = ACTIONS(6790), + [anon_sym_COLON_RBRACK] = ACTIONS(6792), + }, + [STATE(1960)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2578), + [sym_ms_pointer_modifier] = STATE(2341), + [sym__abstract_declarator] = STATE(4549), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2235), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2235), + [aux_sym_pointer_declarator_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6774), + [sym_ms_restrict_modifier] = ACTIONS(6776), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), + [sym_ms_signed_ptr_modifier] = ACTIONS(6778), + [anon_sym__unaligned] = ACTIONS(6780), + [anon_sym___unaligned] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(1961)] = { + [sym_identifier] = ACTIONS(6794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_RPAREN] = ACTIONS(6796), + [aux_sym_preproc_if_token2] = ACTIONS(6796), + [aux_sym_preproc_else_token1] = ACTIONS(6796), + [aux_sym_preproc_elif_token1] = ACTIONS(6794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym_SEMI] = ACTIONS(6796), + [anon_sym___extension__] = ACTIONS(6794), + [anon_sym___attribute__] = ACTIONS(6794), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6796), + [anon_sym_RBRACE] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6794), + [anon_sym_volatile] = ACTIONS(6794), + [anon_sym_restrict] = ACTIONS(6794), + [anon_sym___restrict__] = ACTIONS(6794), + [anon_sym__Atomic] = ACTIONS(6794), + [anon_sym__Noreturn] = ACTIONS(6794), + [anon_sym_noreturn] = ACTIONS(6794), + [anon_sym__Nonnull] = ACTIONS(6794), + [anon_sym_mutable] = ACTIONS(6794), + [anon_sym_constinit] = ACTIONS(6794), + [anon_sym_consteval] = ACTIONS(6794), + [anon_sym_alignas] = ACTIONS(6794), + [anon_sym__Alignas] = ACTIONS(6794), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6796), + [anon_sym_PERCENT_EQ] = ACTIONS(6796), + [anon_sym_PLUS_EQ] = ACTIONS(6796), + [anon_sym_DASH_EQ] = ACTIONS(6796), + [anon_sym_LT_LT_EQ] = ACTIONS(6796), + [anon_sym_GT_GT_EQ] = ACTIONS(6796), + [anon_sym_AMP_EQ] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6796), + [anon_sym_and_eq] = ACTIONS(6794), + [anon_sym_or_eq] = ACTIONS(6794), + [anon_sym_xor_eq] = ACTIONS(6794), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6794), + [anon_sym_and] = ACTIONS(6794), + [anon_sym_bitor] = ACTIONS(6794), + [anon_sym_xor] = ACTIONS(6794), + [anon_sym_bitand] = ACTIONS(6794), + [anon_sym_not_eq] = ACTIONS(6794), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6794), + [anon_sym___asm__] = ACTIONS(6794), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_noexcept] = ACTIONS(6794), + [anon_sym_throw] = ACTIONS(6794), + [anon_sym_requires] = ACTIONS(6794), + [anon_sym_COLON_RBRACK] = ACTIONS(6796), + }, + [STATE(1962)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2589), + [sym_ms_pointer_modifier] = STATE(1952), + [sym__abstract_declarator] = STATE(4535), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2227), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2227), + [aux_sym_pointer_declarator_repeat1] = STATE(1952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6457), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6732), + [sym_ms_restrict_modifier] = ACTIONS(6734), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), + [sym_ms_signed_ptr_modifier] = ACTIONS(6736), + [anon_sym__unaligned] = ACTIONS(6738), + [anon_sym___unaligned] = ACTIONS(6738), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6457), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_GT2] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(1963)] = { + [sym_decltype_auto] = STATE(2101), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6804), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(1964)] = { + [sym_identifier] = ACTIONS(6806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_RPAREN] = ACTIONS(6808), + [aux_sym_preproc_if_token2] = ACTIONS(6808), + [aux_sym_preproc_else_token1] = ACTIONS(6808), + [aux_sym_preproc_elif_token1] = ACTIONS(6806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6806), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6806), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6806), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6806), + [anon_sym_GT_GT] = ACTIONS(6806), + [anon_sym_SEMI] = ACTIONS(6808), + [anon_sym___extension__] = ACTIONS(6806), + [anon_sym___attribute__] = ACTIONS(6806), + [anon_sym___attribute] = ACTIONS(6806), + [anon_sym_COLON] = ACTIONS(6806), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6806), + [sym_ms_signed_ptr_modifier] = ACTIONS(6806), + [anon_sym__unaligned] = ACTIONS(6806), + [anon_sym___unaligned] = ACTIONS(6806), + [anon_sym_RBRACE] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(6806), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6806), + [anon_sym_volatile] = ACTIONS(6806), + [anon_sym_restrict] = ACTIONS(6806), + [anon_sym___restrict__] = ACTIONS(6806), + [anon_sym__Atomic] = ACTIONS(6806), + [anon_sym__Noreturn] = ACTIONS(6806), + [anon_sym_noreturn] = ACTIONS(6806), + [anon_sym__Nonnull] = ACTIONS(6806), + [anon_sym_mutable] = ACTIONS(6806), + [anon_sym_constinit] = ACTIONS(6806), + [anon_sym_consteval] = ACTIONS(6806), + [anon_sym_alignas] = ACTIONS(6806), + [anon_sym__Alignas] = ACTIONS(6806), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_STAR_EQ] = ACTIONS(6808), + [anon_sym_SLASH_EQ] = ACTIONS(6808), + [anon_sym_PERCENT_EQ] = ACTIONS(6808), + [anon_sym_PLUS_EQ] = ACTIONS(6808), + [anon_sym_DASH_EQ] = ACTIONS(6808), + [anon_sym_LT_LT_EQ] = ACTIONS(6808), + [anon_sym_GT_GT_EQ] = ACTIONS(6808), + [anon_sym_AMP_EQ] = ACTIONS(6808), + [anon_sym_CARET_EQ] = ACTIONS(6808), + [anon_sym_PIPE_EQ] = ACTIONS(6808), + [anon_sym_and_eq] = ACTIONS(6806), + [anon_sym_or_eq] = ACTIONS(6806), + [anon_sym_xor_eq] = ACTIONS(6806), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6806), + [anon_sym_and] = ACTIONS(6806), + [anon_sym_bitor] = ACTIONS(6806), + [anon_sym_xor] = ACTIONS(6806), + [anon_sym_bitand] = ACTIONS(6806), + [anon_sym_not_eq] = ACTIONS(6806), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6808), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6806), + [anon_sym_override] = ACTIONS(6806), + [anon_sym_requires] = ACTIONS(6806), + [anon_sym_COLON_RBRACK] = ACTIONS(6808), + }, + [STATE(1965)] = { + [sym_type_qualifier] = STATE(1972), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1972), + [aux_sym_sized_type_specifier_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(6810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(6816), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(6819), + [anon_sym_unsigned] = ACTIONS(6819), + [anon_sym_long] = ACTIONS(6819), + [anon_sym_short] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6816), + [anon_sym_constexpr] = ACTIONS(6816), + [anon_sym_volatile] = ACTIONS(6816), + [anon_sym_restrict] = ACTIONS(6816), + [anon_sym___restrict__] = ACTIONS(6816), + [anon_sym__Atomic] = ACTIONS(6816), + [anon_sym__Noreturn] = ACTIONS(6816), + [anon_sym_noreturn] = ACTIONS(6816), + [anon_sym__Nonnull] = ACTIONS(6816), + [anon_sym_mutable] = ACTIONS(6816), + [anon_sym_constinit] = ACTIONS(6816), + [anon_sym_consteval] = ACTIONS(6816), + [anon_sym_alignas] = ACTIONS(6821), + [anon_sym__Alignas] = ACTIONS(6821), + [sym_primitive_type] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + [anon_sym_COLON_RBRACK] = ACTIONS(6812), + }, + [STATE(1966)] = { + [sym_attribute_specifier] = STATE(2080), + [sym_field_declaration_list] = STATE(2035), + [sym_virtual_specifier] = STATE(9353), + [sym_base_class_clause] = STATE(10352), + [sym_identifier] = ACTIONS(6826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_RPAREN] = ACTIONS(6828), + [aux_sym_preproc_if_token2] = ACTIONS(6828), + [aux_sym_preproc_else_token1] = ACTIONS(6828), + [aux_sym_preproc_elif_token1] = ACTIONS(6826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym_SEMI] = ACTIONS(6828), + [anon_sym___extension__] = ACTIONS(6826), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(6832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6828), + [anon_sym_LBRACE] = ACTIONS(6834), + [anon_sym_RBRACE] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6826), + [anon_sym_volatile] = ACTIONS(6826), + [anon_sym_restrict] = ACTIONS(6826), + [anon_sym___restrict__] = ACTIONS(6826), + [anon_sym__Atomic] = ACTIONS(6826), + [anon_sym__Noreturn] = ACTIONS(6826), + [anon_sym_noreturn] = ACTIONS(6826), + [anon_sym__Nonnull] = ACTIONS(6826), + [anon_sym_mutable] = ACTIONS(6826), + [anon_sym_constinit] = ACTIONS(6826), + [anon_sym_consteval] = ACTIONS(6826), + [anon_sym_alignas] = ACTIONS(6826), + [anon_sym__Alignas] = ACTIONS(6826), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_STAR_EQ] = ACTIONS(6828), + [anon_sym_SLASH_EQ] = ACTIONS(6828), + [anon_sym_PERCENT_EQ] = ACTIONS(6828), + [anon_sym_PLUS_EQ] = ACTIONS(6828), + [anon_sym_DASH_EQ] = ACTIONS(6828), + [anon_sym_LT_LT_EQ] = ACTIONS(6828), + [anon_sym_GT_GT_EQ] = ACTIONS(6828), + [anon_sym_AMP_EQ] = ACTIONS(6828), + [anon_sym_CARET_EQ] = ACTIONS(6828), + [anon_sym_PIPE_EQ] = ACTIONS(6828), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6828), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6836), + [anon_sym_override] = ACTIONS(6836), + [anon_sym_requires] = ACTIONS(6826), + [anon_sym_COLON_RBRACK] = ACTIONS(6828), + }, + [STATE(1967)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1928), + [sym__abstract_declarator] = STATE(4694), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [aux_sym_pointer_declarator_repeat1] = STATE(1928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(1968)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_TILDE] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym_virtual] = ACTIONS(6844), + [anon_sym_extern] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), + [anon_sym___declspec] = ACTIONS(6844), + [anon_sym___based] = ACTIONS(6844), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_static] = ACTIONS(6844), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_register] = ACTIONS(6844), + [anon_sym_inline] = ACTIONS(6844), + [anon_sym___inline] = ACTIONS(6844), + [anon_sym___inline__] = ACTIONS(6844), + [anon_sym___forceinline] = ACTIONS(6844), + [anon_sym_thread_local] = ACTIONS(6844), + [anon_sym___thread] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6844), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6844), + [anon_sym_not_eq] = ACTIONS(6844), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6844), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6844), + [anon_sym_template] = ACTIONS(6844), + [anon_sym_operator] = ACTIONS(6844), + [anon_sym_DASH_GT_STAR] = ACTIONS(6846), + [anon_sym_LBRACK_COLON] = ACTIONS(6846), + }, + [STATE(1969)] = { + [sym_template_argument_list] = STATE(1995), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [aux_sym_preproc_if_token2] = ACTIONS(6208), + [aux_sym_preproc_else_token1] = ACTIONS(6208), + [aux_sym_preproc_elif_token1] = ACTIONS(6201), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6201), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(6848), + [anon_sym_LT_LT] = ACTIONS(6201), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6208), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6208), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_and_eq] = ACTIONS(6201), + [anon_sym_or_eq] = ACTIONS(6201), + [anon_sym_xor_eq] = ACTIONS(6201), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_bitor] = ACTIONS(6201), + [anon_sym_xor] = ACTIONS(6201), + [anon_sym_bitand] = ACTIONS(6201), + [anon_sym_not_eq] = ACTIONS(6201), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_final] = ACTIONS(6201), + [anon_sym_override] = ACTIONS(6201), + [anon_sym_requires] = ACTIONS(6201), + [anon_sym_COLON_RBRACK] = ACTIONS(6208), + }, + [STATE(1970)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3517), + [sym__function_attributes_start] = STATE(3427), + [sym__function_exception_specification] = STATE(4016), + [sym__function_attributes_end] = STATE(5848), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(6018), + [sym_noexcept] = STATE(4016), + [sym_throw_specifier] = STATE(4016), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(6111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [aux_sym_preproc_if_token2] = ACTIONS(6113), + [aux_sym_preproc_else_token1] = ACTIONS(6113), + [aux_sym_preproc_elif_token1] = ACTIONS(6111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_mutable] = ACTIONS(6857), + [anon_sym_constinit] = ACTIONS(6857), + [anon_sym_consteval] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6863), + [anon_sym__Alignas] = ACTIONS(6863), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6111), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6111), + [anon_sym_not_eq] = ACTIONS(6111), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6865), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6868), + [anon_sym_override] = ACTIONS(6868), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6874), + }, + [STATE(1971)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3519), + [sym__function_attributes_start] = STATE(3434), + [sym__function_exception_specification] = STATE(3985), + [sym__function_attributes_end] = STATE(5907), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(6003), + [sym_noexcept] = STATE(3985), + [sym_throw_specifier] = STATE(3985), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(6111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [aux_sym_preproc_if_token2] = ACTIONS(6113), + [aux_sym_preproc_else_token1] = ACTIONS(6113), + [aux_sym_preproc_elif_token1] = ACTIONS(6111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_mutable] = ACTIONS(6857), + [anon_sym_constinit] = ACTIONS(6857), + [anon_sym_consteval] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6863), + [anon_sym__Alignas] = ACTIONS(6863), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6111), + [anon_sym_and] = ACTIONS(6111), + [anon_sym_bitor] = ACTIONS(6111), + [anon_sym_xor] = ACTIONS(6111), + [anon_sym_bitand] = ACTIONS(6111), + [anon_sym_not_eq] = ACTIONS(6111), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6865), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6876), + [anon_sym_override] = ACTIONS(6876), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6879), + }, + [STATE(1972)] = { + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(6882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym_SEMI] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(6888), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_COLON] = ACTIONS(6886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_RBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6891), + [anon_sym_unsigned] = ACTIONS(6891), + [anon_sym_long] = ACTIONS(6891), + [anon_sym_short] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6888), + [anon_sym_constexpr] = ACTIONS(6888), + [anon_sym_volatile] = ACTIONS(6888), + [anon_sym_restrict] = ACTIONS(6888), + [anon_sym___restrict__] = ACTIONS(6888), + [anon_sym__Atomic] = ACTIONS(6888), + [anon_sym__Noreturn] = ACTIONS(6888), + [anon_sym_noreturn] = ACTIONS(6888), + [anon_sym__Nonnull] = ACTIONS(6888), + [anon_sym_mutable] = ACTIONS(6888), + [anon_sym_constinit] = ACTIONS(6888), + [anon_sym_consteval] = ACTIONS(6888), + [anon_sym_alignas] = ACTIONS(6893), + [anon_sym__Alignas] = ACTIONS(6893), + [sym_primitive_type] = ACTIONS(6896), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + [anon_sym_COLON_RBRACK] = ACTIONS(6884), + }, + [STATE(1973)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(1975), + [sym_ms_pointer_modifier] = STATE(1967), + [sym__abstract_declarator] = STATE(4692), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2266), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2266), + [aux_sym_pointer_declarator_repeat1] = STATE(1967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6459), + [anon_sym___attribute] = ACTIONS(6457), + [sym_ms_restrict_modifier] = ACTIONS(6471), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), + [sym_ms_signed_ptr_modifier] = ACTIONS(6487), + [anon_sym__unaligned] = ACTIONS(6489), + [anon_sym___unaligned] = ACTIONS(6489), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(1974)] = { + [sym_decltype_auto] = STATE(2086), + [sym_template_argument_list] = STATE(1995), + [aux_sym_sized_type_specifier_repeat1] = STATE(2161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym___attribute__] = ACTIONS(5258), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6396), + [anon_sym_unsigned] = ACTIONS(6396), + [anon_sym_long] = ACTIONS(6396), + [anon_sym_short] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_and_eq] = ACTIONS(5258), + [anon_sym_or_eq] = ACTIONS(5258), + [anon_sym_xor_eq] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6398), + [anon_sym_decltype] = ACTIONS(6400), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + [anon_sym_COLON_RBRACK] = ACTIONS(5258), + }, + [STATE(1975)] = { + [sym_identifier] = ACTIONS(6900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_RPAREN] = ACTIONS(6902), + [aux_sym_preproc_if_token2] = ACTIONS(6902), + [aux_sym_preproc_else_token1] = ACTIONS(6902), + [aux_sym_preproc_elif_token1] = ACTIONS(6900), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6902), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6900), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6900), + [anon_sym_GT_GT] = ACTIONS(6900), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym___extension__] = ACTIONS(6900), + [anon_sym___attribute__] = ACTIONS(6900), + [anon_sym___attribute] = ACTIONS(6900), + [anon_sym_COLON] = ACTIONS(6900), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6900), + [sym_ms_signed_ptr_modifier] = ACTIONS(6900), + [anon_sym__unaligned] = ACTIONS(6900), + [anon_sym___unaligned] = ACTIONS(6900), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6900), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6900), + [anon_sym_volatile] = ACTIONS(6900), + [anon_sym_restrict] = ACTIONS(6900), + [anon_sym___restrict__] = ACTIONS(6900), + [anon_sym__Atomic] = ACTIONS(6900), + [anon_sym__Noreturn] = ACTIONS(6900), + [anon_sym_noreturn] = ACTIONS(6900), + [anon_sym__Nonnull] = ACTIONS(6900), + [anon_sym_mutable] = ACTIONS(6900), + [anon_sym_constinit] = ACTIONS(6900), + [anon_sym_consteval] = ACTIONS(6900), + [anon_sym_alignas] = ACTIONS(6900), + [anon_sym__Alignas] = ACTIONS(6900), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_STAR_EQ] = ACTIONS(6902), + [anon_sym_SLASH_EQ] = ACTIONS(6902), + [anon_sym_PERCENT_EQ] = ACTIONS(6902), + [anon_sym_PLUS_EQ] = ACTIONS(6902), + [anon_sym_DASH_EQ] = ACTIONS(6902), + [anon_sym_LT_LT_EQ] = ACTIONS(6902), + [anon_sym_GT_GT_EQ] = ACTIONS(6902), + [anon_sym_AMP_EQ] = ACTIONS(6902), + [anon_sym_CARET_EQ] = ACTIONS(6902), + [anon_sym_PIPE_EQ] = ACTIONS(6902), + [anon_sym_and_eq] = ACTIONS(6900), + [anon_sym_or_eq] = ACTIONS(6900), + [anon_sym_xor_eq] = ACTIONS(6900), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6900), + [anon_sym_and] = ACTIONS(6900), + [anon_sym_bitor] = ACTIONS(6900), + [anon_sym_xor] = ACTIONS(6900), + [anon_sym_bitand] = ACTIONS(6900), + [anon_sym_not_eq] = ACTIONS(6900), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6900), + [anon_sym_override] = ACTIONS(6900), + [anon_sym_requires] = ACTIONS(6900), + [anon_sym_COLON_RBRACK] = ACTIONS(6902), + }, + [STATE(1976)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3551), + [sym__function_attributes_start] = STATE(3457), + [sym__function_exception_specification] = STATE(3972), + [sym__function_attributes_end] = STATE(5905), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(5726), + [sym_noexcept] = STATE(3972), + [sym_throw_specifier] = STATE(3972), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6904), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), + [anon_sym_RBRACE] = ACTIONS(6113), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym___restrict__] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym__Noreturn] = ACTIONS(6904), + [anon_sym_noreturn] = ACTIONS(6904), + [anon_sym__Nonnull] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_constinit] = ACTIONS(6904), + [anon_sym_consteval] = ACTIONS(6904), + [anon_sym_alignas] = ACTIONS(6908), + [anon_sym__Alignas] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6910), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6913), + [anon_sym_override] = ACTIONS(6913), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_COLON_RBRACK] = ACTIONS(6113), + }, + [STATE(1977)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3569), + [sym__function_attributes_start] = STATE(3385), + [sym__function_exception_specification] = STATE(4039), + [sym__function_attributes_end] = STATE(5835), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(5706), + [sym_noexcept] = STATE(4039), + [sym_throw_specifier] = STATE(4039), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_RPAREN] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6904), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), + [anon_sym_RBRACE] = ACTIONS(6113), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym___restrict__] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym__Noreturn] = ACTIONS(6904), + [anon_sym_noreturn] = ACTIONS(6904), + [anon_sym__Nonnull] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_constinit] = ACTIONS(6904), + [anon_sym_consteval] = ACTIONS(6904), + [anon_sym_alignas] = ACTIONS(6908), + [anon_sym__Alignas] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(6910), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6921), + [anon_sym_override] = ACTIONS(6921), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6924), + [anon_sym_COLON_RBRACK] = ACTIONS(6113), + }, + [STATE(1978)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2835), + [sym_ms_pointer_modifier] = STATE(1991), + [sym__abstract_declarator] = STATE(4968), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2298), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2298), + [aux_sym_pointer_declarator_repeat1] = STATE(1991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6935), + [sym_ms_restrict_modifier] = ACTIONS(6937), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), + [sym_ms_signed_ptr_modifier] = ACTIONS(6939), + [anon_sym__unaligned] = ACTIONS(6941), + [anon_sym___unaligned] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + }, + [STATE(1979)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [aux_sym_preproc_if_token2] = ACTIONS(6272), + [aux_sym_preproc_else_token1] = ACTIONS(6272), + [aux_sym_preproc_elif_token1] = ACTIONS(6270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6270), + [anon_sym_or_eq] = ACTIONS(6270), + [anon_sym_xor_eq] = ACTIONS(6270), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_final] = ACTIONS(6270), + [anon_sym_override] = ACTIONS(6270), + [anon_sym_requires] = ACTIONS(6270), + [anon_sym_COLON_RBRACK] = ACTIONS(6272), + }, + [STATE(1980)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [aux_sym_preproc_if_token2] = ACTIONS(6244), + [aux_sym_preproc_else_token1] = ACTIONS(6244), + [aux_sym_preproc_elif_token1] = ACTIONS(6242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6242), + [anon_sym_or_eq] = ACTIONS(6242), + [anon_sym_xor_eq] = ACTIONS(6242), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_final] = ACTIONS(6242), + [anon_sym_override] = ACTIONS(6242), + [anon_sym_requires] = ACTIONS(6242), + [anon_sym_COLON_RBRACK] = ACTIONS(6244), + }, + [STATE(1981)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [aux_sym_preproc_if_token2] = ACTIONS(6248), + [aux_sym_preproc_else_token1] = ACTIONS(6248), + [aux_sym_preproc_elif_token1] = ACTIONS(6246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_RBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6246), + [anon_sym_or_eq] = ACTIONS(6246), + [anon_sym_xor_eq] = ACTIONS(6246), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_final] = ACTIONS(6246), + [anon_sym_override] = ACTIONS(6246), + [anon_sym_requires] = ACTIONS(6246), + [anon_sym_COLON_RBRACK] = ACTIONS(6248), + }, + [STATE(1982)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [aux_sym_preproc_if_token2] = ACTIONS(6252), + [aux_sym_preproc_else_token1] = ACTIONS(6252), + [aux_sym_preproc_elif_token1] = ACTIONS(6250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6252), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6250), + [anon_sym_or_eq] = ACTIONS(6250), + [anon_sym_xor_eq] = ACTIONS(6250), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_final] = ACTIONS(6250), + [anon_sym_override] = ACTIONS(6250), + [anon_sym_requires] = ACTIONS(6250), + [anon_sym_COLON_RBRACK] = ACTIONS(6252), + }, + [STATE(1983)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [aux_sym_preproc_if_token2] = ACTIONS(6256), + [aux_sym_preproc_else_token1] = ACTIONS(6256), + [aux_sym_preproc_elif_token1] = ACTIONS(6254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym_SEMI] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6254), + [anon_sym_or_eq] = ACTIONS(6254), + [anon_sym_xor_eq] = ACTIONS(6254), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_final] = ACTIONS(6254), + [anon_sym_override] = ACTIONS(6254), + [anon_sym_requires] = ACTIONS(6254), + [anon_sym_COLON_RBRACK] = ACTIONS(6256), + }, + [STATE(1984)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [aux_sym_preproc_if_token2] = ACTIONS(6260), + [aux_sym_preproc_else_token1] = ACTIONS(6260), + [aux_sym_preproc_elif_token1] = ACTIONS(6258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6260), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_RBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6258), + [anon_sym_or_eq] = ACTIONS(6258), + [anon_sym_xor_eq] = ACTIONS(6258), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_final] = ACTIONS(6258), + [anon_sym_override] = ACTIONS(6258), + [anon_sym_requires] = ACTIONS(6258), + [anon_sym_COLON_RBRACK] = ACTIONS(6260), + }, + [STATE(1985)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [aux_sym_preproc_if_token2] = ACTIONS(6264), + [aux_sym_preproc_else_token1] = ACTIONS(6264), + [aux_sym_preproc_elif_token1] = ACTIONS(6262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6262), + [anon_sym_or_eq] = ACTIONS(6262), + [anon_sym_xor_eq] = ACTIONS(6262), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_final] = ACTIONS(6262), + [anon_sym_override] = ACTIONS(6262), + [anon_sym_requires] = ACTIONS(6262), + [anon_sym_COLON_RBRACK] = ACTIONS(6264), + }, + [STATE(1986)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6949), + [anon_sym_or_eq] = ACTIONS(6949), + [anon_sym_xor_eq] = ACTIONS(6949), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(1987)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6949), + [anon_sym_or_eq] = ACTIONS(6949), + [anon_sym_xor_eq] = ACTIONS(6949), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(1988)] = { + [sym_type_qualifier] = STATE(1989), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1989), + [aux_sym_sized_type_specifier_repeat1] = STATE(2116), + [sym_identifier] = ACTIONS(6953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [aux_sym_preproc_if_token2] = ACTIONS(6812), + [aux_sym_preproc_else_token1] = ACTIONS(6812), + [aux_sym_preproc_elif_token1] = ACTIONS(6814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(6816), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6816), + [anon_sym_constexpr] = ACTIONS(6816), + [anon_sym_volatile] = ACTIONS(6816), + [anon_sym_restrict] = ACTIONS(6816), + [anon_sym___restrict__] = ACTIONS(6816), + [anon_sym__Atomic] = ACTIONS(6816), + [anon_sym__Noreturn] = ACTIONS(6816), + [anon_sym_noreturn] = ACTIONS(6816), + [anon_sym__Nonnull] = ACTIONS(6816), + [anon_sym_mutable] = ACTIONS(6816), + [anon_sym_constinit] = ACTIONS(6816), + [anon_sym_consteval] = ACTIONS(6816), + [anon_sym_alignas] = ACTIONS(6821), + [anon_sym__Alignas] = ACTIONS(6821), + [sym_primitive_type] = ACTIONS(6958), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(1989)] = { + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [aux_sym_sized_type_specifier_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(6960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [aux_sym_preproc_if_token2] = ACTIONS(6884), + [aux_sym_preproc_else_token1] = ACTIONS(6884), + [aux_sym_preproc_elif_token1] = ACTIONS(6886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(6888), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6963), + [anon_sym_unsigned] = ACTIONS(6963), + [anon_sym_long] = ACTIONS(6963), + [anon_sym_short] = ACTIONS(6963), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6888), + [anon_sym_constexpr] = ACTIONS(6888), + [anon_sym_volatile] = ACTIONS(6888), + [anon_sym_restrict] = ACTIONS(6888), + [anon_sym___restrict__] = ACTIONS(6888), + [anon_sym__Atomic] = ACTIONS(6888), + [anon_sym__Noreturn] = ACTIONS(6888), + [anon_sym_noreturn] = ACTIONS(6888), + [anon_sym__Nonnull] = ACTIONS(6888), + [anon_sym_mutable] = ACTIONS(6888), + [anon_sym_constinit] = ACTIONS(6888), + [anon_sym_consteval] = ACTIONS(6888), + [anon_sym_alignas] = ACTIONS(6893), + [anon_sym__Alignas] = ACTIONS(6893), + [sym_primitive_type] = ACTIONS(6965), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(1990)] = { + [sym_identifier] = ACTIONS(6967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [aux_sym_preproc_if_token2] = ACTIONS(6969), + [aux_sym_preproc_else_token1] = ACTIONS(6969), + [aux_sym_preproc_elif_token1] = ACTIONS(6967), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6969), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6967), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6967), + [anon_sym_GT_GT] = ACTIONS(6967), + [anon_sym_SEMI] = ACTIONS(6969), + [anon_sym___extension__] = ACTIONS(6967), + [anon_sym___attribute__] = ACTIONS(6967), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_RBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_EQ] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6967), + [anon_sym_volatile] = ACTIONS(6967), + [anon_sym_restrict] = ACTIONS(6967), + [anon_sym___restrict__] = ACTIONS(6967), + [anon_sym__Atomic] = ACTIONS(6967), + [anon_sym__Noreturn] = ACTIONS(6967), + [anon_sym_noreturn] = ACTIONS(6967), + [anon_sym__Nonnull] = ACTIONS(6967), + [anon_sym_mutable] = ACTIONS(6967), + [anon_sym_constinit] = ACTIONS(6967), + [anon_sym_consteval] = ACTIONS(6967), + [anon_sym_alignas] = ACTIONS(6967), + [anon_sym__Alignas] = ACTIONS(6967), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_STAR_EQ] = ACTIONS(6969), + [anon_sym_SLASH_EQ] = ACTIONS(6969), + [anon_sym_PERCENT_EQ] = ACTIONS(6969), + [anon_sym_PLUS_EQ] = ACTIONS(6969), + [anon_sym_DASH_EQ] = ACTIONS(6969), + [anon_sym_LT_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_GT_EQ] = ACTIONS(6969), + [anon_sym_AMP_EQ] = ACTIONS(6969), + [anon_sym_CARET_EQ] = ACTIONS(6969), + [anon_sym_PIPE_EQ] = ACTIONS(6969), + [anon_sym_and_eq] = ACTIONS(6967), + [anon_sym_or_eq] = ACTIONS(6967), + [anon_sym_xor_eq] = ACTIONS(6967), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6967), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6967), + [anon_sym_not_eq] = ACTIONS(6967), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6967), + [anon_sym_decltype] = ACTIONS(6967), + [anon_sym_final] = ACTIONS(6967), + [anon_sym_override] = ACTIONS(6967), + [anon_sym_requires] = ACTIONS(6967), + [anon_sym_COLON_RBRACK] = ACTIONS(6969), + }, + [STATE(1991)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2835), + [sym_ms_pointer_modifier] = STATE(2536), + [sym__abstract_declarator] = STATE(5015), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2302), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2302), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6935), + [sym_ms_restrict_modifier] = ACTIONS(6937), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), + [sym_ms_signed_ptr_modifier] = ACTIONS(6939), + [anon_sym__unaligned] = ACTIONS(6941), + [anon_sym___unaligned] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(1992)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2544), + [sym_ms_pointer_modifier] = STATE(2315), + [sym__abstract_declarator] = STATE(4958), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2297), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2297), + [aux_sym_pointer_declarator_repeat1] = STATE(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6656), + [sym_ms_restrict_modifier] = ACTIONS(6658), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), + [sym_ms_signed_ptr_modifier] = ACTIONS(6660), + [anon_sym__unaligned] = ACTIONS(6662), + [anon_sym___unaligned] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(1993)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2544), + [sym_ms_pointer_modifier] = STATE(1992), + [sym__abstract_declarator] = STATE(4962), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2306), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2306), + [aux_sym_pointer_declarator_repeat1] = STATE(1992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6656), + [sym_ms_restrict_modifier] = ACTIONS(6658), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), + [sym_ms_signed_ptr_modifier] = ACTIONS(6660), + [anon_sym__unaligned] = ACTIONS(6662), + [anon_sym___unaligned] = ACTIONS(6662), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6457), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + }, + [STATE(1994)] = { + [sym_decltype_auto] = STATE(2101), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6804), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(1995)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [aux_sym_preproc_if_token2] = ACTIONS(6233), + [aux_sym_preproc_else_token1] = ACTIONS(6233), + [aux_sym_preproc_elif_token1] = ACTIONS(6226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6226), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6226), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_STAR_EQ] = ACTIONS(6233), + [anon_sym_SLASH_EQ] = ACTIONS(6233), + [anon_sym_PERCENT_EQ] = ACTIONS(6233), + [anon_sym_PLUS_EQ] = ACTIONS(6233), + [anon_sym_DASH_EQ] = ACTIONS(6233), + [anon_sym_LT_LT_EQ] = ACTIONS(6233), + [anon_sym_GT_GT_EQ] = ACTIONS(6233), + [anon_sym_AMP_EQ] = ACTIONS(6233), + [anon_sym_CARET_EQ] = ACTIONS(6233), + [anon_sym_PIPE_EQ] = ACTIONS(6233), + [anon_sym_and_eq] = ACTIONS(6226), + [anon_sym_or_eq] = ACTIONS(6226), + [anon_sym_xor_eq] = ACTIONS(6226), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_bitor] = ACTIONS(6226), + [anon_sym_xor] = ACTIONS(6226), + [anon_sym_bitand] = ACTIONS(6226), + [anon_sym_not_eq] = ACTIONS(6226), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_final] = ACTIONS(6226), + [anon_sym_override] = ACTIONS(6226), + [anon_sym_requires] = ACTIONS(6226), + [anon_sym_COLON_RBRACK] = ACTIONS(6233), + }, + [STATE(1996)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2578), + [sym_ms_pointer_modifier] = STATE(2341), + [sym__abstract_declarator] = STATE(5385), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2379), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2379), + [aux_sym_pointer_declarator_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6774), + [sym_ms_restrict_modifier] = ACTIONS(6776), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), + [sym_ms_signed_ptr_modifier] = ACTIONS(6778), + [anon_sym__unaligned] = ACTIONS(6780), + [anon_sym___unaligned] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(1997)] = { + [sym_template_argument_list] = STATE(2030), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [aux_sym_preproc_if_token2] = ACTIONS(6751), + [aux_sym_preproc_else_token1] = ACTIONS(6751), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6746), + [anon_sym_or_eq] = ACTIONS(6746), + [anon_sym_xor_eq] = ACTIONS(6746), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6751), + }, + [STATE(1998)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6949), + [anon_sym_or_eq] = ACTIONS(6949), + [anon_sym_xor_eq] = ACTIONS(6949), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(1999)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2578), + [sym_ms_pointer_modifier] = STATE(1996), + [sym__abstract_declarator] = STATE(5337), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2349), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2349), + [aux_sym_pointer_declarator_repeat1] = STATE(1996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6774), + [sym_ms_restrict_modifier] = ACTIONS(6776), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), + [sym_ms_signed_ptr_modifier] = ACTIONS(6778), + [anon_sym__unaligned] = ACTIONS(6780), + [anon_sym___unaligned] = ACTIONS(6780), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6459), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(2000)] = { + [sym_function_definition] = STATE(909), + [sym_declaration] = STATE(909), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6309), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2615), + [sym_declaration_list] = STATE(909), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(6983), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2001)] = { + [sym_attribute_specifier] = STATE(2095), + [sym_enumerator_list] = STATE(2046), + [sym_identifier] = ACTIONS(6985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_RPAREN] = ACTIONS(6987), + [aux_sym_preproc_if_token2] = ACTIONS(6987), + [aux_sym_preproc_else_token1] = ACTIONS(6987), + [aux_sym_preproc_elif_token1] = ACTIONS(6985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6987), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6985), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6985), + [anon_sym_GT_GT] = ACTIONS(6985), + [anon_sym_SEMI] = ACTIONS(6987), + [anon_sym___extension__] = ACTIONS(6985), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(6985), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6987), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_RBRACE] = ACTIONS(6987), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_EQ] = ACTIONS(6985), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6985), + [anon_sym_volatile] = ACTIONS(6985), + [anon_sym_restrict] = ACTIONS(6985), + [anon_sym___restrict__] = ACTIONS(6985), + [anon_sym__Atomic] = ACTIONS(6985), + [anon_sym__Noreturn] = ACTIONS(6985), + [anon_sym_noreturn] = ACTIONS(6985), + [anon_sym__Nonnull] = ACTIONS(6985), + [anon_sym_mutable] = ACTIONS(6985), + [anon_sym_constinit] = ACTIONS(6985), + [anon_sym_consteval] = ACTIONS(6985), + [anon_sym_alignas] = ACTIONS(6985), + [anon_sym__Alignas] = ACTIONS(6985), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_STAR_EQ] = ACTIONS(6987), + [anon_sym_SLASH_EQ] = ACTIONS(6987), + [anon_sym_PERCENT_EQ] = ACTIONS(6987), + [anon_sym_PLUS_EQ] = ACTIONS(6987), + [anon_sym_DASH_EQ] = ACTIONS(6987), + [anon_sym_LT_LT_EQ] = ACTIONS(6987), + [anon_sym_GT_GT_EQ] = ACTIONS(6987), + [anon_sym_AMP_EQ] = ACTIONS(6987), + [anon_sym_CARET_EQ] = ACTIONS(6987), + [anon_sym_PIPE_EQ] = ACTIONS(6987), + [anon_sym_and_eq] = ACTIONS(6985), + [anon_sym_or_eq] = ACTIONS(6985), + [anon_sym_xor_eq] = ACTIONS(6985), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6985), + [anon_sym_and] = ACTIONS(6985), + [anon_sym_bitor] = ACTIONS(6985), + [anon_sym_xor] = ACTIONS(6985), + [anon_sym_bitand] = ACTIONS(6985), + [anon_sym_not_eq] = ACTIONS(6985), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6985), + [anon_sym_override] = ACTIONS(6985), + [anon_sym_requires] = ACTIONS(6985), + [anon_sym_COLON_RBRACK] = ACTIONS(6987), + }, + [STATE(2002)] = { + [sym__abstract_declarator] = STATE(4083), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2003), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), + [anon_sym_RBRACE] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + [anon_sym_COLON_RBRACK] = ACTIONS(6991), + }, + [STATE(2003)] = { + [sym__abstract_declarator] = STATE(4084), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), + [anon_sym_RBRACE] = ACTIONS(6995), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + [anon_sym_COLON_RBRACK] = ACTIONS(6995), + }, + [STATE(2004)] = { + [sym__abstract_declarator] = STATE(4085), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), + [anon_sym_RBRACE] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_COLON_RBRACK] = ACTIONS(6999), + }, + [STATE(2005)] = { + [sym__abstract_declarator] = STATE(4090), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(2006)] = { + [sym__abstract_declarator] = STATE(4086), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7005), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), + [anon_sym_RBRACE] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + [anon_sym_COLON_RBRACK] = ACTIONS(7003), + }, + [STATE(2007)] = { + [sym__abstract_declarator] = STATE(4092), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), + [anon_sym_RBRACE] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + [anon_sym_COLON_RBRACK] = ACTIONS(7007), + }, + [STATE(2008)] = { + [sym_decltype_auto] = STATE(2086), + [sym_template_argument_list] = STATE(1995), + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [aux_sym_preproc_if_token2] = ACTIONS(5258), + [aux_sym_preproc_else_token1] = ACTIONS(5258), + [aux_sym_preproc_elif_token1] = ACTIONS(5251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6433), + [anon_sym_unsigned] = ACTIONS(6433), + [anon_sym_long] = ACTIONS(6433), + [anon_sym_short] = ACTIONS(6433), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_and_eq] = ACTIONS(5251), + [anon_sym_or_eq] = ACTIONS(5251), + [anon_sym_xor_eq] = ACTIONS(5251), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5251), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5251), + [anon_sym_not_eq] = ACTIONS(5251), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6435), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_final] = ACTIONS(5251), + [anon_sym_override] = ACTIONS(5251), + [anon_sym_requires] = ACTIONS(5251), + }, + [STATE(2009)] = { + [sym_attribute_specifier] = STATE(2111), + [sym_enumerator_list] = STATE(2053), + [sym_identifier] = ACTIONS(7011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_RPAREN] = ACTIONS(7013), + [aux_sym_preproc_if_token2] = ACTIONS(7013), + [aux_sym_preproc_else_token1] = ACTIONS(7013), + [aux_sym_preproc_elif_token1] = ACTIONS(7011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7011), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7011), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7011), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7011), + [anon_sym_GT_GT] = ACTIONS(7011), + [anon_sym_SEMI] = ACTIONS(7013), + [anon_sym___extension__] = ACTIONS(7011), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7011), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7013), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_RBRACE] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_EQ] = ACTIONS(7011), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7011), + [anon_sym_volatile] = ACTIONS(7011), + [anon_sym_restrict] = ACTIONS(7011), + [anon_sym___restrict__] = ACTIONS(7011), + [anon_sym__Atomic] = ACTIONS(7011), + [anon_sym__Noreturn] = ACTIONS(7011), + [anon_sym_noreturn] = ACTIONS(7011), + [anon_sym__Nonnull] = ACTIONS(7011), + [anon_sym_mutable] = ACTIONS(7011), + [anon_sym_constinit] = ACTIONS(7011), + [anon_sym_consteval] = ACTIONS(7011), + [anon_sym_alignas] = ACTIONS(7011), + [anon_sym__Alignas] = ACTIONS(7011), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_STAR_EQ] = ACTIONS(7013), + [anon_sym_SLASH_EQ] = ACTIONS(7013), + [anon_sym_PERCENT_EQ] = ACTIONS(7013), + [anon_sym_PLUS_EQ] = ACTIONS(7013), + [anon_sym_DASH_EQ] = ACTIONS(7013), + [anon_sym_LT_LT_EQ] = ACTIONS(7013), + [anon_sym_GT_GT_EQ] = ACTIONS(7013), + [anon_sym_AMP_EQ] = ACTIONS(7013), + [anon_sym_CARET_EQ] = ACTIONS(7013), + [anon_sym_PIPE_EQ] = ACTIONS(7013), + [anon_sym_and_eq] = ACTIONS(7011), + [anon_sym_or_eq] = ACTIONS(7011), + [anon_sym_xor_eq] = ACTIONS(7011), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7011), + [anon_sym_and] = ACTIONS(7011), + [anon_sym_bitor] = ACTIONS(7011), + [anon_sym_xor] = ACTIONS(7011), + [anon_sym_bitand] = ACTIONS(7011), + [anon_sym_not_eq] = ACTIONS(7011), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7011), + [anon_sym_override] = ACTIONS(7011), + [anon_sym_requires] = ACTIONS(7011), + [anon_sym_COLON_RBRACK] = ACTIONS(7013), + }, + [STATE(2010)] = { + [sym_function_definition] = STATE(527), + [sym_declaration] = STATE(527), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6273), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2618), + [sym_declaration_list] = STATE(527), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7015), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2011)] = { + [sym_attribute_specifier] = STATE(2243), + [sym_attribute_declaration] = STATE(4363), + [sym_type_qualifier] = STATE(2216), + [sym_alignas_qualifier] = STATE(2300), + [aux_sym_type_definition_repeat1] = STATE(2243), + [aux_sym__type_definition_type_repeat1] = STATE(2216), + [aux_sym_attributed_declarator_repeat1] = STATE(4363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6288), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_mutable] = ACTIONS(6280), + [anon_sym_constinit] = ACTIONS(6280), + [anon_sym_consteval] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6290), + [anon_sym__Alignas] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6388), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + }, + [STATE(2012)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [sym_identifier] = ACTIONS(7017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [aux_sym_preproc_if_token2] = ACTIONS(7019), + [aux_sym_preproc_else_token1] = ACTIONS(7019), + [aux_sym_preproc_elif_token1] = ACTIONS(7017), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7019), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7017), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7017), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(7017), + [anon_sym___attribute__] = ACTIONS(7017), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6433), + [anon_sym_unsigned] = ACTIONS(6433), + [anon_sym_long] = ACTIONS(6433), + [anon_sym_short] = ACTIONS(6433), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_RBRACK] = ACTIONS(7019), + [anon_sym_EQ] = ACTIONS(7017), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7017), + [anon_sym_volatile] = ACTIONS(7017), + [anon_sym_restrict] = ACTIONS(7017), + [anon_sym___restrict__] = ACTIONS(7017), + [anon_sym__Atomic] = ACTIONS(7017), + [anon_sym__Noreturn] = ACTIONS(7017), + [anon_sym_noreturn] = ACTIONS(7017), + [anon_sym__Nonnull] = ACTIONS(7017), + [anon_sym_mutable] = ACTIONS(7017), + [anon_sym_constinit] = ACTIONS(7017), + [anon_sym_consteval] = ACTIONS(7017), + [anon_sym_alignas] = ACTIONS(7017), + [anon_sym__Alignas] = ACTIONS(7017), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_STAR_EQ] = ACTIONS(7019), + [anon_sym_SLASH_EQ] = ACTIONS(7019), + [anon_sym_PERCENT_EQ] = ACTIONS(7019), + [anon_sym_PLUS_EQ] = ACTIONS(7019), + [anon_sym_DASH_EQ] = ACTIONS(7019), + [anon_sym_LT_LT_EQ] = ACTIONS(7019), + [anon_sym_GT_GT_EQ] = ACTIONS(7019), + [anon_sym_AMP_EQ] = ACTIONS(7019), + [anon_sym_CARET_EQ] = ACTIONS(7019), + [anon_sym_PIPE_EQ] = ACTIONS(7019), + [anon_sym_and_eq] = ACTIONS(7017), + [anon_sym_or_eq] = ACTIONS(7017), + [anon_sym_xor_eq] = ACTIONS(7017), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7017), + [anon_sym_and] = ACTIONS(7017), + [anon_sym_bitor] = ACTIONS(7017), + [anon_sym_xor] = ACTIONS(7017), + [anon_sym_bitand] = ACTIONS(7017), + [anon_sym_not_eq] = ACTIONS(7017), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7017), + [anon_sym_override] = ACTIONS(7017), + [anon_sym_requires] = ACTIONS(7017), + }, + [STATE(2013)] = { + [sym_function_definition] = STATE(814), + [sym_declaration] = STATE(814), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6279), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2620), + [sym_declaration_list] = STATE(814), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7021), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2014)] = { + [sym_function_definition] = STATE(630), + [sym_declaration] = STATE(630), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6284), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2569), + [sym_declaration_list] = STATE(630), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2015)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2589), + [sym_ms_pointer_modifier] = STATE(2393), + [sym__abstract_declarator] = STATE(5289), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2333), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2333), + [aux_sym_pointer_declarator_repeat1] = STATE(2393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6732), + [sym_ms_restrict_modifier] = ACTIONS(6734), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), + [sym_ms_signed_ptr_modifier] = ACTIONS(6736), + [anon_sym__unaligned] = ACTIONS(6738), + [anon_sym___unaligned] = ACTIONS(6738), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6495), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6497), + }, + [STATE(2016)] = { + [sym__abstract_declarator] = STATE(4142), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2017), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(6993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_preproc_if_token2] = ACTIONS(6991), + [aux_sym_preproc_else_token1] = ACTIONS(6991), + [aux_sym_preproc_elif_token1] = ACTIONS(6993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6993), + [anon_sym_or_eq] = ACTIONS(6993), + [anon_sym_xor_eq] = ACTIONS(6993), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6993), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6993), + [anon_sym_not_eq] = ACTIONS(6993), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6993), + [anon_sym_override] = ACTIONS(6993), + [anon_sym_requires] = ACTIONS(6993), + }, + [STATE(2017)] = { + [sym__abstract_declarator] = STATE(4143), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [aux_sym_preproc_if_token2] = ACTIONS(6995), + [aux_sym_preproc_else_token1] = ACTIONS(6995), + [aux_sym_preproc_elif_token1] = ACTIONS(6997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6997), + [anon_sym_or_eq] = ACTIONS(6997), + [anon_sym_xor_eq] = ACTIONS(6997), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6997), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6997), + [anon_sym_not_eq] = ACTIONS(6997), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6997), + [anon_sym_override] = ACTIONS(6997), + [anon_sym_requires] = ACTIONS(6997), + }, + [STATE(2018)] = { + [sym__abstract_declarator] = STATE(4144), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2020), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2020), + [sym_identifier] = ACTIONS(7001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [aux_sym_preproc_if_token2] = ACTIONS(6999), + [aux_sym_preproc_else_token1] = ACTIONS(6999), + [aux_sym_preproc_elif_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(7001), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(7001), + [anon_sym_not_eq] = ACTIONS(7001), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7001), + [anon_sym_override] = ACTIONS(7001), + [anon_sym_requires] = ACTIONS(7001), + }, + [STATE(2019)] = { + [sym__abstract_declarator] = STATE(4148), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6495), + [anon_sym_or_eq] = ACTIONS(6495), + [anon_sym_xor_eq] = ACTIONS(6495), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6495), + [anon_sym_override] = ACTIONS(6495), + [anon_sym_requires] = ACTIONS(6495), + }, + [STATE(2020)] = { + [sym__abstract_declarator] = STATE(4145), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(7005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [aux_sym_preproc_if_token2] = ACTIONS(7003), + [aux_sym_preproc_else_token1] = ACTIONS(7003), + [aux_sym_preproc_elif_token1] = ACTIONS(7005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7005), + [anon_sym_or_eq] = ACTIONS(7005), + [anon_sym_xor_eq] = ACTIONS(7005), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7005), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7005), + [anon_sym_not_eq] = ACTIONS(7005), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7005), + [anon_sym_override] = ACTIONS(7005), + [anon_sym_requires] = ACTIONS(7005), + }, + [STATE(2021)] = { + [sym__abstract_declarator] = STATE(4149), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(7009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [aux_sym_preproc_if_token2] = ACTIONS(7007), + [aux_sym_preproc_else_token1] = ACTIONS(7007), + [aux_sym_preproc_elif_token1] = ACTIONS(7009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7009), + [anon_sym_or_eq] = ACTIONS(7009), + [anon_sym_xor_eq] = ACTIONS(7009), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7009), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7009), + [anon_sym_not_eq] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7009), + [anon_sym_override] = ACTIONS(7009), + [anon_sym_requires] = ACTIONS(7009), + }, + [STATE(2022)] = { + [sym_template_argument_list] = STATE(1995), + [sym_identifier] = ACTIONS(7031), + [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(7031), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(7031), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7031), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(7031), + [anon_sym___attribute__] = ACTIONS(7031), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(7031), + [anon_sym_volatile] = ACTIONS(7031), + [anon_sym_restrict] = ACTIONS(7031), + [anon_sym___restrict__] = ACTIONS(7031), + [anon_sym__Atomic] = ACTIONS(7031), + [anon_sym__Noreturn] = ACTIONS(7031), + [anon_sym_noreturn] = ACTIONS(7031), + [anon_sym__Nonnull] = ACTIONS(7031), + [anon_sym_mutable] = ACTIONS(7031), + [anon_sym_constinit] = ACTIONS(7031), + [anon_sym_consteval] = ACTIONS(7031), + [anon_sym_alignas] = ACTIONS(7031), + [anon_sym__Alignas] = ACTIONS(7031), + [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(7031), + [anon_sym_or_eq] = ACTIONS(7031), + [anon_sym_xor_eq] = ACTIONS(7031), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_bitor] = ACTIONS(7031), + [anon_sym_xor] = ACTIONS(7031), + [anon_sym_bitand] = ACTIONS(7031), + [anon_sym_not_eq] = ACTIONS(7031), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7031), + [anon_sym_override] = ACTIONS(7031), + [anon_sym_requires] = ACTIONS(7031), + [anon_sym_COLON_RBRACK] = ACTIONS(5272), + }, + [STATE(2023)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2589), + [sym_ms_pointer_modifier] = STATE(2015), + [sym__abstract_declarator] = STATE(5360), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2422), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2422), + [aux_sym_pointer_declarator_repeat1] = STATE(2015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6457), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6732), + [sym_ms_restrict_modifier] = ACTIONS(6734), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), + [sym_ms_signed_ptr_modifier] = ACTIONS(6736), + [anon_sym__unaligned] = ACTIONS(6738), + [anon_sym___unaligned] = ACTIONS(6738), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6457), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_and_eq] = ACTIONS(6459), + [anon_sym_or_eq] = ACTIONS(6459), + [anon_sym_xor_eq] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6459), + }, + [STATE(2024)] = { + [sym_type_qualifier] = STATE(2027), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(2027), + [aux_sym_sized_type_specifier_repeat1] = STATE(2201), + [sym_identifier] = ACTIONS(6810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(6491), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7033), + [anon_sym_unsigned] = ACTIONS(7033), + [anon_sym_long] = ACTIONS(7033), + [anon_sym_short] = ACTIONS(7033), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6491), + [anon_sym_volatile] = ACTIONS(6491), + [anon_sym_restrict] = ACTIONS(6491), + [anon_sym___restrict__] = ACTIONS(6491), + [anon_sym__Atomic] = ACTIONS(6491), + [anon_sym__Noreturn] = ACTIONS(6491), + [anon_sym_noreturn] = ACTIONS(6491), + [anon_sym__Nonnull] = ACTIONS(6491), + [anon_sym_mutable] = ACTIONS(6491), + [anon_sym_constinit] = ACTIONS(6491), + [anon_sym_consteval] = ACTIONS(6491), + [anon_sym_alignas] = ACTIONS(7035), + [anon_sym__Alignas] = ACTIONS(7035), + [sym_primitive_type] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6812), + }, + [STATE(2025)] = { + [sym_template_argument_list] = STATE(1956), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6758), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(7037), + [anon_sym_LT_LT] = ACTIONS(6758), + [anon_sym_GT_GT] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym___cdecl] = ACTIONS(6746), + [anon_sym___clrcall] = ACTIONS(6746), + [anon_sym___stdcall] = ACTIONS(6746), + [anon_sym___fastcall] = ACTIONS(6746), + [anon_sym___thiscall] = ACTIONS(6746), + [anon_sym___vectorcall] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(6755), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6758), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(2026)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [aux_sym_preproc_if_token2] = ACTIONS(6751), + [aux_sym_preproc_else_token1] = ACTIONS(6751), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6746), + [anon_sym_or_eq] = ACTIONS(6746), + [anon_sym_xor_eq] = ACTIONS(6746), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6751), + }, + [STATE(2027)] = { + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(6882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym_SEMI] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(6491), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_COLON] = ACTIONS(6886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_RBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6891), + [anon_sym_unsigned] = ACTIONS(6891), + [anon_sym_long] = ACTIONS(6891), + [anon_sym_short] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6491), + [anon_sym_volatile] = ACTIONS(6491), + [anon_sym_restrict] = ACTIONS(6491), + [anon_sym___restrict__] = ACTIONS(6491), + [anon_sym__Atomic] = ACTIONS(6491), + [anon_sym__Noreturn] = ACTIONS(6491), + [anon_sym_noreturn] = ACTIONS(6491), + [anon_sym__Nonnull] = ACTIONS(6491), + [anon_sym_mutable] = ACTIONS(6491), + [anon_sym_constinit] = ACTIONS(6491), + [anon_sym_consteval] = ACTIONS(6491), + [anon_sym_alignas] = ACTIONS(7035), + [anon_sym__Alignas] = ACTIONS(7035), + [sym_primitive_type] = ACTIONS(6896), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6884), + }, + [STATE(2028)] = { + [sym_function_definition] = STATE(3187), + [sym_declaration] = STATE(3187), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6283), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2621), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11334), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7041), + [anon_sym_struct] = ACTIONS(7043), + [anon_sym_union] = ACTIONS(7045), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2029)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6228), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6230), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6228), + [anon_sym_GT_GT] = ACTIONS(6228), + [anon_sym_SEMI] = ACTIONS(6228), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym___cdecl] = ACTIONS(6226), + [anon_sym___clrcall] = ACTIONS(6226), + [anon_sym___stdcall] = ACTIONS(6226), + [anon_sym___fastcall] = ACTIONS(6226), + [anon_sym___thiscall] = ACTIONS(6226), + [anon_sym___vectorcall] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(2030)] = { + [sym_identifier] = ACTIONS(6762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(6764), + [aux_sym_preproc_if_token2] = ACTIONS(6764), + [aux_sym_preproc_else_token1] = ACTIONS(6764), + [aux_sym_preproc_elif_token1] = ACTIONS(6762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym_SEMI] = ACTIONS(6764), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_RBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6762), + [anon_sym__Alignas] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6764), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_and_eq] = ACTIONS(6762), + [anon_sym_or_eq] = ACTIONS(6762), + [anon_sym_xor_eq] = ACTIONS(6762), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6762), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6762), + [anon_sym_not_eq] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6762), + [anon_sym_override] = ACTIONS(6762), + [anon_sym_requires] = ACTIONS(6762), + [anon_sym_COLON_RBRACK] = ACTIONS(6764), + }, + [STATE(2031)] = { + [sym_function_definition] = STATE(3276), + [sym_declaration] = STATE(3276), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6283), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2621), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10724), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7047), + [anon_sym_struct] = ACTIONS(7049), + [anon_sym_union] = ACTIONS(7051), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2032)] = { + [sym_attribute_specifier] = STATE(2281), + [sym_attribute_declaration] = STATE(4480), + [sym_type_qualifier] = STATE(2223), + [sym_alignas_qualifier] = STATE(2372), + [aux_sym_type_definition_repeat1] = STATE(2281), + [aux_sym__type_definition_type_repeat1] = STATE(2223), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6388), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6367), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6369), + [anon_sym__Alignas] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6388), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_GT2] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(2033)] = { + [sym_attribute_specifier] = STATE(2091), + [sym_identifier] = ACTIONS(7053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), + [anon_sym_COMMA] = ACTIONS(7055), + [anon_sym_RPAREN] = ACTIONS(7055), + [aux_sym_preproc_if_token2] = ACTIONS(7055), + [aux_sym_preproc_else_token1] = ACTIONS(7055), + [aux_sym_preproc_elif_token1] = ACTIONS(7053), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7055), + [anon_sym_LPAREN2] = ACTIONS(7055), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_STAR] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_PIPE_PIPE] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7055), + [anon_sym_PIPE] = ACTIONS(7053), + [anon_sym_CARET] = ACTIONS(7053), + [anon_sym_AMP] = ACTIONS(7053), + [anon_sym_EQ_EQ] = ACTIONS(7055), + [anon_sym_BANG_EQ] = ACTIONS(7055), + [anon_sym_GT] = ACTIONS(7053), + [anon_sym_GT_EQ] = ACTIONS(7055), + [anon_sym_LT_EQ] = ACTIONS(7053), + [anon_sym_LT] = ACTIONS(7053), + [anon_sym_LT_LT] = ACTIONS(7053), + [anon_sym_GT_GT] = ACTIONS(7053), + [anon_sym_SEMI] = ACTIONS(7055), + [anon_sym___extension__] = ACTIONS(7053), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7053), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7055), + [anon_sym_LBRACE] = ACTIONS(7055), + [anon_sym_RBRACE] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7055), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_const] = ACTIONS(7053), + [anon_sym_constexpr] = ACTIONS(7053), + [anon_sym_volatile] = ACTIONS(7053), + [anon_sym_restrict] = ACTIONS(7053), + [anon_sym___restrict__] = ACTIONS(7053), + [anon_sym__Atomic] = ACTIONS(7053), + [anon_sym__Noreturn] = ACTIONS(7053), + [anon_sym_noreturn] = ACTIONS(7053), + [anon_sym__Nonnull] = ACTIONS(7053), + [anon_sym_mutable] = ACTIONS(7053), + [anon_sym_constinit] = ACTIONS(7053), + [anon_sym_consteval] = ACTIONS(7053), + [anon_sym_alignas] = ACTIONS(7053), + [anon_sym__Alignas] = ACTIONS(7053), + [anon_sym_QMARK] = ACTIONS(7055), + [anon_sym_STAR_EQ] = ACTIONS(7055), + [anon_sym_SLASH_EQ] = ACTIONS(7055), + [anon_sym_PERCENT_EQ] = ACTIONS(7055), + [anon_sym_PLUS_EQ] = ACTIONS(7055), + [anon_sym_DASH_EQ] = ACTIONS(7055), + [anon_sym_LT_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_GT_EQ] = ACTIONS(7055), + [anon_sym_AMP_EQ] = ACTIONS(7055), + [anon_sym_CARET_EQ] = ACTIONS(7055), + [anon_sym_PIPE_EQ] = ACTIONS(7055), + [anon_sym_and_eq] = ACTIONS(7053), + [anon_sym_or_eq] = ACTIONS(7053), + [anon_sym_xor_eq] = ACTIONS(7053), + [anon_sym_LT_EQ_GT] = ACTIONS(7055), + [anon_sym_or] = ACTIONS(7053), + [anon_sym_and] = ACTIONS(7053), + [anon_sym_bitor] = ACTIONS(7053), + [anon_sym_xor] = ACTIONS(7053), + [anon_sym_bitand] = ACTIONS(7053), + [anon_sym_not_eq] = ACTIONS(7053), + [anon_sym_DASH_DASH] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7055), + [anon_sym_DOT] = ACTIONS(7053), + [anon_sym_DOT_STAR] = ACTIONS(7055), + [anon_sym_DASH_GT] = ACTIONS(7055), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7053), + [anon_sym_override] = ACTIONS(7053), + [anon_sym_requires] = ACTIONS(7053), + [anon_sym_COLON_RBRACK] = ACTIONS(7055), + }, + [STATE(2034)] = { + [sym_attribute_specifier] = STATE(2094), + [sym_identifier] = ACTIONS(7057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [aux_sym_preproc_if_token2] = ACTIONS(7059), + [aux_sym_preproc_else_token1] = ACTIONS(7059), + [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym_SEMI] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(7057), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7059), + [anon_sym_RBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7057), + [anon_sym_constexpr] = ACTIONS(7057), + [anon_sym_volatile] = ACTIONS(7057), + [anon_sym_restrict] = ACTIONS(7057), + [anon_sym___restrict__] = ACTIONS(7057), + [anon_sym__Atomic] = ACTIONS(7057), + [anon_sym__Noreturn] = ACTIONS(7057), + [anon_sym_noreturn] = ACTIONS(7057), + [anon_sym__Nonnull] = ACTIONS(7057), + [anon_sym_mutable] = ACTIONS(7057), + [anon_sym_constinit] = ACTIONS(7057), + [anon_sym_consteval] = ACTIONS(7057), + [anon_sym_alignas] = ACTIONS(7057), + [anon_sym__Alignas] = ACTIONS(7057), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7057), + [anon_sym_or_eq] = ACTIONS(7057), + [anon_sym_xor_eq] = ACTIONS(7057), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7057), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7057), + [anon_sym_not_eq] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7057), + [anon_sym_override] = ACTIONS(7057), + [anon_sym_requires] = ACTIONS(7057), + [anon_sym_COLON_RBRACK] = ACTIONS(7059), + }, + [STATE(2035)] = { + [sym_attribute_specifier] = STATE(2100), + [sym_identifier] = ACTIONS(7061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), + [anon_sym_COMMA] = ACTIONS(7063), + [anon_sym_RPAREN] = ACTIONS(7063), + [aux_sym_preproc_if_token2] = ACTIONS(7063), + [aux_sym_preproc_else_token1] = ACTIONS(7063), + [aux_sym_preproc_elif_token1] = ACTIONS(7061), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7063), + [anon_sym_LPAREN2] = ACTIONS(7063), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7063), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_AMP] = ACTIONS(7061), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_GT] = ACTIONS(7061), + [anon_sym_GT_EQ] = ACTIONS(7063), + [anon_sym_LT_EQ] = ACTIONS(7061), + [anon_sym_LT] = ACTIONS(7061), + [anon_sym_LT_LT] = ACTIONS(7061), + [anon_sym_GT_GT] = ACTIONS(7061), + [anon_sym_SEMI] = ACTIONS(7063), + [anon_sym___extension__] = ACTIONS(7061), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7061), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7063), + [anon_sym_LBRACE] = ACTIONS(7063), + [anon_sym_RBRACE] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(7061), + [anon_sym_constexpr] = ACTIONS(7061), + [anon_sym_volatile] = ACTIONS(7061), + [anon_sym_restrict] = ACTIONS(7061), + [anon_sym___restrict__] = ACTIONS(7061), + [anon_sym__Atomic] = ACTIONS(7061), + [anon_sym__Noreturn] = ACTIONS(7061), + [anon_sym_noreturn] = ACTIONS(7061), + [anon_sym__Nonnull] = ACTIONS(7061), + [anon_sym_mutable] = ACTIONS(7061), + [anon_sym_constinit] = ACTIONS(7061), + [anon_sym_consteval] = ACTIONS(7061), + [anon_sym_alignas] = ACTIONS(7061), + [anon_sym__Alignas] = ACTIONS(7061), + [anon_sym_QMARK] = ACTIONS(7063), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7061), + [anon_sym_or_eq] = ACTIONS(7061), + [anon_sym_xor_eq] = ACTIONS(7061), + [anon_sym_LT_EQ_GT] = ACTIONS(7063), + [anon_sym_or] = ACTIONS(7061), + [anon_sym_and] = ACTIONS(7061), + [anon_sym_bitor] = ACTIONS(7061), + [anon_sym_xor] = ACTIONS(7061), + [anon_sym_bitand] = ACTIONS(7061), + [anon_sym_not_eq] = ACTIONS(7061), + [anon_sym_DASH_DASH] = ACTIONS(7063), + [anon_sym_PLUS_PLUS] = ACTIONS(7063), + [anon_sym_DOT] = ACTIONS(7061), + [anon_sym_DOT_STAR] = ACTIONS(7063), + [anon_sym_DASH_GT] = ACTIONS(7063), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7061), + [anon_sym_override] = ACTIONS(7061), + [anon_sym_requires] = ACTIONS(7061), + [anon_sym_COLON_RBRACK] = ACTIONS(7063), + }, + [STATE(2036)] = { + [sym_attribute_specifier] = STATE(2102), + [sym_identifier] = ACTIONS(7065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), + [anon_sym_COMMA] = ACTIONS(7067), + [anon_sym_RPAREN] = ACTIONS(7067), + [aux_sym_preproc_if_token2] = ACTIONS(7067), + [aux_sym_preproc_else_token1] = ACTIONS(7067), + [aux_sym_preproc_elif_token1] = ACTIONS(7065), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7067), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7067), + [anon_sym_LPAREN2] = ACTIONS(7067), + [anon_sym_DASH] = ACTIONS(7065), + [anon_sym_PLUS] = ACTIONS(7065), + [anon_sym_STAR] = ACTIONS(7065), + [anon_sym_SLASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_PIPE_PIPE] = ACTIONS(7067), + [anon_sym_AMP_AMP] = ACTIONS(7067), + [anon_sym_PIPE] = ACTIONS(7065), + [anon_sym_CARET] = ACTIONS(7065), + [anon_sym_AMP] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7067), + [anon_sym_GT] = ACTIONS(7065), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_LT_EQ] = ACTIONS(7065), + [anon_sym_LT] = ACTIONS(7065), + [anon_sym_LT_LT] = ACTIONS(7065), + [anon_sym_GT_GT] = ACTIONS(7065), + [anon_sym_SEMI] = ACTIONS(7067), + [anon_sym___extension__] = ACTIONS(7065), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7065), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7067), + [anon_sym_LBRACE] = ACTIONS(7067), + [anon_sym_RBRACE] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7067), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_const] = ACTIONS(7065), + [anon_sym_constexpr] = ACTIONS(7065), + [anon_sym_volatile] = ACTIONS(7065), + [anon_sym_restrict] = ACTIONS(7065), + [anon_sym___restrict__] = ACTIONS(7065), + [anon_sym__Atomic] = ACTIONS(7065), + [anon_sym__Noreturn] = ACTIONS(7065), + [anon_sym_noreturn] = ACTIONS(7065), + [anon_sym__Nonnull] = ACTIONS(7065), + [anon_sym_mutable] = ACTIONS(7065), + [anon_sym_constinit] = ACTIONS(7065), + [anon_sym_consteval] = ACTIONS(7065), + [anon_sym_alignas] = ACTIONS(7065), + [anon_sym__Alignas] = ACTIONS(7065), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7067), + [anon_sym_SLASH_EQ] = ACTIONS(7067), + [anon_sym_PERCENT_EQ] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(7067), + [anon_sym_DASH_EQ] = ACTIONS(7067), + [anon_sym_LT_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_GT_EQ] = ACTIONS(7067), + [anon_sym_AMP_EQ] = ACTIONS(7067), + [anon_sym_CARET_EQ] = ACTIONS(7067), + [anon_sym_PIPE_EQ] = ACTIONS(7067), + [anon_sym_and_eq] = ACTIONS(7065), + [anon_sym_or_eq] = ACTIONS(7065), + [anon_sym_xor_eq] = ACTIONS(7065), + [anon_sym_LT_EQ_GT] = ACTIONS(7067), + [anon_sym_or] = ACTIONS(7065), + [anon_sym_and] = ACTIONS(7065), + [anon_sym_bitor] = ACTIONS(7065), + [anon_sym_xor] = ACTIONS(7065), + [anon_sym_bitand] = ACTIONS(7065), + [anon_sym_not_eq] = ACTIONS(7065), + [anon_sym_DASH_DASH] = ACTIONS(7067), + [anon_sym_PLUS_PLUS] = ACTIONS(7067), + [anon_sym_DOT] = ACTIONS(7065), + [anon_sym_DOT_STAR] = ACTIONS(7067), + [anon_sym_DASH_GT] = ACTIONS(7067), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7065), + [anon_sym_override] = ACTIONS(7065), + [anon_sym_requires] = ACTIONS(7065), + [anon_sym_COLON_RBRACK] = ACTIONS(7067), + }, + [STATE(2037)] = { + [sym_function_definition] = STATE(695), + [sym_declaration] = STATE(695), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6284), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2569), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11403), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7069), + [anon_sym_struct] = ACTIONS(7071), + [anon_sym_union] = ACTIONS(7073), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2038)] = { + [sym_function_definition] = STATE(719), + [sym_declaration] = STATE(719), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6284), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2569), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10635), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7075), + [anon_sym_struct] = ACTIONS(7077), + [anon_sym_union] = ACTIONS(7079), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2039)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym_SEMI] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_COLON] = ACTIONS(7084), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_RBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + [anon_sym_COLON_RBRACK] = ACTIONS(7081), + }, + [STATE(2040)] = { + [sym_attribute_specifier] = STATE(2260), + [sym_attribute_declaration] = STATE(4504), + [sym_type_qualifier] = STATE(2221), + [sym_alignas_qualifier] = STATE(2403), + [aux_sym_type_definition_repeat1] = STATE(2260), + [aux_sym__type_definition_type_repeat1] = STATE(2221), + [aux_sym_attributed_declarator_repeat1] = STATE(4504), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_RBRACK] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6332), + [anon_sym_constexpr] = ACTIONS(6324), + [anon_sym_volatile] = ACTIONS(6324), + [anon_sym_restrict] = ACTIONS(6324), + [anon_sym___restrict__] = ACTIONS(6324), + [anon_sym__Atomic] = ACTIONS(6324), + [anon_sym__Noreturn] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym__Nonnull] = ACTIONS(6324), + [anon_sym_mutable] = ACTIONS(6324), + [anon_sym_constinit] = ACTIONS(6324), + [anon_sym_consteval] = ACTIONS(6324), + [anon_sym_alignas] = ACTIONS(6334), + [anon_sym__Alignas] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(2041)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(2161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_RPAREN] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7017), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7017), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym_SEMI] = ACTIONS(7019), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7019), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_RBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6396), + [anon_sym_unsigned] = ACTIONS(6396), + [anon_sym_long] = ACTIONS(6396), + [anon_sym_short] = ACTIONS(6396), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_EQ] = ACTIONS(7017), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_STAR_EQ] = ACTIONS(7019), + [anon_sym_SLASH_EQ] = ACTIONS(7019), + [anon_sym_PERCENT_EQ] = ACTIONS(7019), + [anon_sym_PLUS_EQ] = ACTIONS(7019), + [anon_sym_DASH_EQ] = ACTIONS(7019), + [anon_sym_LT_LT_EQ] = ACTIONS(7019), + [anon_sym_GT_GT_EQ] = ACTIONS(7019), + [anon_sym_AMP_EQ] = ACTIONS(7019), + [anon_sym_CARET_EQ] = ACTIONS(7019), + [anon_sym_PIPE_EQ] = ACTIONS(7019), + [anon_sym_and_eq] = ACTIONS(7019), + [anon_sym_or_eq] = ACTIONS(7019), + [anon_sym_xor_eq] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7017), + [anon_sym_and] = ACTIONS(7017), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7017), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + [anon_sym_COLON_RBRACK] = ACTIONS(7019), + }, + [STATE(2042)] = { + [sym_attribute_specifier] = STATE(2073), + [sym_identifier] = ACTIONS(7087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_RPAREN] = ACTIONS(7089), + [aux_sym_preproc_if_token2] = ACTIONS(7089), + [aux_sym_preproc_else_token1] = ACTIONS(7089), + [aux_sym_preproc_elif_token1] = ACTIONS(7087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7089), + [anon_sym_LPAREN2] = ACTIONS(7089), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7087), + [anon_sym_PERCENT] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7089), + [anon_sym_AMP_AMP] = ACTIONS(7089), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7089), + [anon_sym_BANG_EQ] = ACTIONS(7089), + [anon_sym_GT] = ACTIONS(7087), + [anon_sym_GT_EQ] = ACTIONS(7089), + [anon_sym_LT_EQ] = ACTIONS(7087), + [anon_sym_LT] = ACTIONS(7087), + [anon_sym_LT_LT] = ACTIONS(7087), + [anon_sym_GT_GT] = ACTIONS(7087), + [anon_sym_SEMI] = ACTIONS(7089), + [anon_sym___extension__] = ACTIONS(7087), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7089), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_RBRACE] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7087), + [anon_sym_const] = ACTIONS(7087), + [anon_sym_constexpr] = ACTIONS(7087), + [anon_sym_volatile] = ACTIONS(7087), + [anon_sym_restrict] = ACTIONS(7087), + [anon_sym___restrict__] = ACTIONS(7087), + [anon_sym__Atomic] = ACTIONS(7087), + [anon_sym__Noreturn] = ACTIONS(7087), + [anon_sym_noreturn] = ACTIONS(7087), + [anon_sym__Nonnull] = ACTIONS(7087), + [anon_sym_mutable] = ACTIONS(7087), + [anon_sym_constinit] = ACTIONS(7087), + [anon_sym_consteval] = ACTIONS(7087), + [anon_sym_alignas] = ACTIONS(7087), + [anon_sym__Alignas] = ACTIONS(7087), + [anon_sym_QMARK] = ACTIONS(7089), + [anon_sym_STAR_EQ] = ACTIONS(7089), + [anon_sym_SLASH_EQ] = ACTIONS(7089), + [anon_sym_PERCENT_EQ] = ACTIONS(7089), + [anon_sym_PLUS_EQ] = ACTIONS(7089), + [anon_sym_DASH_EQ] = ACTIONS(7089), + [anon_sym_LT_LT_EQ] = ACTIONS(7089), + [anon_sym_GT_GT_EQ] = ACTIONS(7089), + [anon_sym_AMP_EQ] = ACTIONS(7089), + [anon_sym_CARET_EQ] = ACTIONS(7089), + [anon_sym_PIPE_EQ] = ACTIONS(7089), + [anon_sym_and_eq] = ACTIONS(7087), + [anon_sym_or_eq] = ACTIONS(7087), + [anon_sym_xor_eq] = ACTIONS(7087), + [anon_sym_LT_EQ_GT] = ACTIONS(7089), + [anon_sym_or] = ACTIONS(7087), + [anon_sym_and] = ACTIONS(7087), + [anon_sym_bitor] = ACTIONS(7087), + [anon_sym_xor] = ACTIONS(7087), + [anon_sym_bitand] = ACTIONS(7087), + [anon_sym_not_eq] = ACTIONS(7087), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7087), + [anon_sym_DOT_STAR] = ACTIONS(7089), + [anon_sym_DASH_GT] = ACTIONS(7089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7087), + [anon_sym_override] = ACTIONS(7087), + [anon_sym_requires] = ACTIONS(7087), + [anon_sym_COLON_RBRACK] = ACTIONS(7089), + }, + [STATE(2043)] = { + [sym_attribute_specifier] = STATE(2110), + [sym_identifier] = ACTIONS(7091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_RPAREN] = ACTIONS(7093), + [aux_sym_preproc_if_token2] = ACTIONS(7093), + [aux_sym_preproc_else_token1] = ACTIONS(7093), + [aux_sym_preproc_elif_token1] = ACTIONS(7091), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7093), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7093), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7091), + [anon_sym_SLASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_PIPE_PIPE] = ACTIONS(7093), + [anon_sym_AMP_AMP] = ACTIONS(7093), + [anon_sym_PIPE] = ACTIONS(7091), + [anon_sym_CARET] = ACTIONS(7091), + [anon_sym_AMP] = ACTIONS(7091), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_GT] = ACTIONS(7091), + [anon_sym_GT_EQ] = ACTIONS(7093), + [anon_sym_LT_EQ] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(7091), + [anon_sym_LT_LT] = ACTIONS(7091), + [anon_sym_GT_GT] = ACTIONS(7091), + [anon_sym_SEMI] = ACTIONS(7093), + [anon_sym___extension__] = ACTIONS(7091), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7091), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7093), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_RBRACE] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_const] = ACTIONS(7091), + [anon_sym_constexpr] = ACTIONS(7091), + [anon_sym_volatile] = ACTIONS(7091), + [anon_sym_restrict] = ACTIONS(7091), + [anon_sym___restrict__] = ACTIONS(7091), + [anon_sym__Atomic] = ACTIONS(7091), + [anon_sym__Noreturn] = ACTIONS(7091), + [anon_sym_noreturn] = ACTIONS(7091), + [anon_sym__Nonnull] = ACTIONS(7091), + [anon_sym_mutable] = ACTIONS(7091), + [anon_sym_constinit] = ACTIONS(7091), + [anon_sym_consteval] = ACTIONS(7091), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7093), + [anon_sym_STAR_EQ] = ACTIONS(7093), + [anon_sym_SLASH_EQ] = ACTIONS(7093), + [anon_sym_PERCENT_EQ] = ACTIONS(7093), + [anon_sym_PLUS_EQ] = ACTIONS(7093), + [anon_sym_DASH_EQ] = ACTIONS(7093), + [anon_sym_LT_LT_EQ] = ACTIONS(7093), + [anon_sym_GT_GT_EQ] = ACTIONS(7093), + [anon_sym_AMP_EQ] = ACTIONS(7093), + [anon_sym_CARET_EQ] = ACTIONS(7093), + [anon_sym_PIPE_EQ] = ACTIONS(7093), + [anon_sym_and_eq] = ACTIONS(7091), + [anon_sym_or_eq] = ACTIONS(7091), + [anon_sym_xor_eq] = ACTIONS(7091), + [anon_sym_LT_EQ_GT] = ACTIONS(7093), + [anon_sym_or] = ACTIONS(7091), + [anon_sym_and] = ACTIONS(7091), + [anon_sym_bitor] = ACTIONS(7091), + [anon_sym_xor] = ACTIONS(7091), + [anon_sym_bitand] = ACTIONS(7091), + [anon_sym_not_eq] = ACTIONS(7091), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DOT] = ACTIONS(7091), + [anon_sym_DOT_STAR] = ACTIONS(7093), + [anon_sym_DASH_GT] = ACTIONS(7093), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7091), + [anon_sym_override] = ACTIONS(7091), + [anon_sym_requires] = ACTIONS(7091), + [anon_sym_COLON_RBRACK] = ACTIONS(7093), + }, + [STATE(2044)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [aux_sym_preproc_if_token2] = ACTIONS(6846), + [aux_sym_preproc_else_token1] = ACTIONS(6846), + [aux_sym_preproc_elif_token1] = ACTIONS(6844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6846), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_and_eq] = ACTIONS(6844), + [anon_sym_or_eq] = ACTIONS(6844), + [anon_sym_xor_eq] = ACTIONS(6844), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6844), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6844), + [anon_sym_not_eq] = ACTIONS(6844), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6844), + [anon_sym_override] = ACTIONS(6844), + [anon_sym_requires] = ACTIONS(6844), + [anon_sym_COLON_RBRACK] = ACTIONS(6846), + }, + [STATE(2045)] = { + [sym_template_argument_list] = STATE(1956), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6758), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(7037), + [anon_sym_LT_LT] = ACTIONS(6758), + [anon_sym_GT_GT] = ACTIONS(6758), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym___cdecl] = ACTIONS(6746), + [anon_sym___clrcall] = ACTIONS(6746), + [anon_sym___stdcall] = ACTIONS(6746), + [anon_sym___fastcall] = ACTIONS(6746), + [anon_sym___thiscall] = ACTIONS(6746), + [anon_sym___vectorcall] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(6755), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6758), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(2046)] = { + [sym_attribute_specifier] = STATE(2112), + [sym_identifier] = ACTIONS(7095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [aux_sym_preproc_if_token2] = ACTIONS(7097), + [aux_sym_preproc_else_token1] = ACTIONS(7097), + [aux_sym_preproc_elif_token1] = ACTIONS(7095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(7095), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7095), + [anon_sym_PERCENT] = ACTIONS(7095), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7095), + [anon_sym_CARET] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7095), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7095), + [anon_sym_LT] = ACTIONS(7095), + [anon_sym_LT_LT] = ACTIONS(7095), + [anon_sym_GT_GT] = ACTIONS(7095), + [anon_sym_SEMI] = ACTIONS(7097), + [anon_sym___extension__] = ACTIONS(7095), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7095), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), + [anon_sym_LBRACE] = ACTIONS(7097), + [anon_sym_RBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7095), + [anon_sym_const] = ACTIONS(7095), + [anon_sym_constexpr] = ACTIONS(7095), + [anon_sym_volatile] = ACTIONS(7095), + [anon_sym_restrict] = ACTIONS(7095), + [anon_sym___restrict__] = ACTIONS(7095), + [anon_sym__Atomic] = ACTIONS(7095), + [anon_sym__Noreturn] = ACTIONS(7095), + [anon_sym_noreturn] = ACTIONS(7095), + [anon_sym__Nonnull] = ACTIONS(7095), + [anon_sym_mutable] = ACTIONS(7095), + [anon_sym_constinit] = ACTIONS(7095), + [anon_sym_consteval] = ACTIONS(7095), + [anon_sym_alignas] = ACTIONS(7095), + [anon_sym__Alignas] = ACTIONS(7095), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7095), + [anon_sym_or_eq] = ACTIONS(7095), + [anon_sym_xor_eq] = ACTIONS(7095), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7095), + [anon_sym_and] = ACTIONS(7095), + [anon_sym_bitor] = ACTIONS(7095), + [anon_sym_xor] = ACTIONS(7095), + [anon_sym_bitand] = ACTIONS(7095), + [anon_sym_not_eq] = ACTIONS(7095), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7095), + [anon_sym_override] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7095), + [anon_sym_COLON_RBRACK] = ACTIONS(7097), + }, + [STATE(2047)] = { + [sym_attribute_specifier] = STATE(2114), + [sym_identifier] = ACTIONS(7099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_RPAREN] = ACTIONS(7101), + [aux_sym_preproc_if_token2] = ACTIONS(7101), + [aux_sym_preproc_else_token1] = ACTIONS(7101), + [aux_sym_preproc_elif_token1] = ACTIONS(7099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7101), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7101), + [anon_sym_LPAREN2] = ACTIONS(7101), + [anon_sym_DASH] = ACTIONS(7099), + [anon_sym_PLUS] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_SLASH] = ACTIONS(7099), + [anon_sym_PERCENT] = ACTIONS(7099), + [anon_sym_PIPE_PIPE] = ACTIONS(7101), + [anon_sym_AMP_AMP] = ACTIONS(7101), + [anon_sym_PIPE] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7101), + [anon_sym_BANG_EQ] = ACTIONS(7101), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7101), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7099), + [anon_sym_GT_GT] = ACTIONS(7099), + [anon_sym_SEMI] = ACTIONS(7101), + [anon_sym___extension__] = ACTIONS(7099), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7099), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7101), + [anon_sym_LBRACE] = ACTIONS(7101), + [anon_sym_RBRACE] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7101), + [anon_sym_EQ] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7099), + [anon_sym_constexpr] = ACTIONS(7099), + [anon_sym_volatile] = ACTIONS(7099), + [anon_sym_restrict] = ACTIONS(7099), + [anon_sym___restrict__] = ACTIONS(7099), + [anon_sym__Atomic] = ACTIONS(7099), + [anon_sym__Noreturn] = ACTIONS(7099), + [anon_sym_noreturn] = ACTIONS(7099), + [anon_sym__Nonnull] = ACTIONS(7099), + [anon_sym_mutable] = ACTIONS(7099), + [anon_sym_constinit] = ACTIONS(7099), + [anon_sym_consteval] = ACTIONS(7099), + [anon_sym_alignas] = ACTIONS(7099), + [anon_sym__Alignas] = ACTIONS(7099), + [anon_sym_QMARK] = ACTIONS(7101), + [anon_sym_STAR_EQ] = ACTIONS(7101), + [anon_sym_SLASH_EQ] = ACTIONS(7101), + [anon_sym_PERCENT_EQ] = ACTIONS(7101), + [anon_sym_PLUS_EQ] = ACTIONS(7101), + [anon_sym_DASH_EQ] = ACTIONS(7101), + [anon_sym_LT_LT_EQ] = ACTIONS(7101), + [anon_sym_GT_GT_EQ] = ACTIONS(7101), + [anon_sym_AMP_EQ] = ACTIONS(7101), + [anon_sym_CARET_EQ] = ACTIONS(7101), + [anon_sym_PIPE_EQ] = ACTIONS(7101), + [anon_sym_and_eq] = ACTIONS(7099), + [anon_sym_or_eq] = ACTIONS(7099), + [anon_sym_xor_eq] = ACTIONS(7099), + [anon_sym_LT_EQ_GT] = ACTIONS(7101), + [anon_sym_or] = ACTIONS(7099), + [anon_sym_and] = ACTIONS(7099), + [anon_sym_bitor] = ACTIONS(7099), + [anon_sym_xor] = ACTIONS(7099), + [anon_sym_bitand] = ACTIONS(7099), + [anon_sym_not_eq] = ACTIONS(7099), + [anon_sym_DASH_DASH] = ACTIONS(7101), + [anon_sym_PLUS_PLUS] = ACTIONS(7101), + [anon_sym_DOT] = ACTIONS(7099), + [anon_sym_DOT_STAR] = ACTIONS(7101), + [anon_sym_DASH_GT] = ACTIONS(7101), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7099), + [anon_sym_override] = ACTIONS(7099), + [anon_sym_requires] = ACTIONS(7099), + [anon_sym_COLON_RBRACK] = ACTIONS(7101), + }, + [STATE(2048)] = { + [sym_attribute_specifier] = STATE(2117), + [sym_identifier] = ACTIONS(7103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), + [anon_sym_COMMA] = ACTIONS(7105), + [anon_sym_RPAREN] = ACTIONS(7105), + [aux_sym_preproc_if_token2] = ACTIONS(7105), + [aux_sym_preproc_else_token1] = ACTIONS(7105), + [aux_sym_preproc_elif_token1] = ACTIONS(7103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7105), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7105), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7103), + [anon_sym_SLASH] = ACTIONS(7103), + [anon_sym_PERCENT] = ACTIONS(7103), + [anon_sym_PIPE_PIPE] = ACTIONS(7105), + [anon_sym_AMP_AMP] = ACTIONS(7105), + [anon_sym_PIPE] = ACTIONS(7103), + [anon_sym_CARET] = ACTIONS(7103), + [anon_sym_AMP] = ACTIONS(7103), + [anon_sym_EQ_EQ] = ACTIONS(7105), + [anon_sym_BANG_EQ] = ACTIONS(7105), + [anon_sym_GT] = ACTIONS(7103), + [anon_sym_GT_EQ] = ACTIONS(7105), + [anon_sym_LT_EQ] = ACTIONS(7103), + [anon_sym_LT] = ACTIONS(7103), + [anon_sym_LT_LT] = ACTIONS(7103), + [anon_sym_GT_GT] = ACTIONS(7103), + [anon_sym_SEMI] = ACTIONS(7105), + [anon_sym___extension__] = ACTIONS(7103), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7103), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7105), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_RBRACE] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_EQ] = ACTIONS(7103), + [anon_sym_const] = ACTIONS(7103), + [anon_sym_constexpr] = ACTIONS(7103), + [anon_sym_volatile] = ACTIONS(7103), + [anon_sym_restrict] = ACTIONS(7103), + [anon_sym___restrict__] = ACTIONS(7103), + [anon_sym__Atomic] = ACTIONS(7103), + [anon_sym__Noreturn] = ACTIONS(7103), + [anon_sym_noreturn] = ACTIONS(7103), + [anon_sym__Nonnull] = ACTIONS(7103), + [anon_sym_mutable] = ACTIONS(7103), + [anon_sym_constinit] = ACTIONS(7103), + [anon_sym_consteval] = ACTIONS(7103), + [anon_sym_alignas] = ACTIONS(7103), + [anon_sym__Alignas] = ACTIONS(7103), + [anon_sym_QMARK] = ACTIONS(7105), + [anon_sym_STAR_EQ] = ACTIONS(7105), + [anon_sym_SLASH_EQ] = ACTIONS(7105), + [anon_sym_PERCENT_EQ] = ACTIONS(7105), + [anon_sym_PLUS_EQ] = ACTIONS(7105), + [anon_sym_DASH_EQ] = ACTIONS(7105), + [anon_sym_LT_LT_EQ] = ACTIONS(7105), + [anon_sym_GT_GT_EQ] = ACTIONS(7105), + [anon_sym_AMP_EQ] = ACTIONS(7105), + [anon_sym_CARET_EQ] = ACTIONS(7105), + [anon_sym_PIPE_EQ] = ACTIONS(7105), + [anon_sym_and_eq] = ACTIONS(7103), + [anon_sym_or_eq] = ACTIONS(7103), + [anon_sym_xor_eq] = ACTIONS(7103), + [anon_sym_LT_EQ_GT] = ACTIONS(7105), + [anon_sym_or] = ACTIONS(7103), + [anon_sym_and] = ACTIONS(7103), + [anon_sym_bitor] = ACTIONS(7103), + [anon_sym_xor] = ACTIONS(7103), + [anon_sym_bitand] = ACTIONS(7103), + [anon_sym_not_eq] = ACTIONS(7103), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DOT] = ACTIONS(7103), + [anon_sym_DOT_STAR] = ACTIONS(7105), + [anon_sym_DASH_GT] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7103), + [anon_sym_override] = ACTIONS(7103), + [anon_sym_requires] = ACTIONS(7103), + [anon_sym_COLON_RBRACK] = ACTIONS(7105), + }, + [STATE(2049)] = { + [sym_identifier] = ACTIONS(7107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_RPAREN] = ACTIONS(7109), + [aux_sym_preproc_if_token2] = ACTIONS(7109), + [aux_sym_preproc_else_token1] = ACTIONS(7109), + [aux_sym_preproc_elif_token1] = ACTIONS(7107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7107), + [anon_sym_GT_GT] = ACTIONS(7107), + [anon_sym_SEMI] = ACTIONS(7109), + [anon_sym___extension__] = ACTIONS(7107), + [anon_sym___attribute__] = ACTIONS(7107), + [anon_sym___attribute] = ACTIONS(7107), + [anon_sym_COLON] = ACTIONS(7107), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_RBRACE] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_EQ] = ACTIONS(7107), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7107), + [anon_sym_volatile] = ACTIONS(7107), + [anon_sym_restrict] = ACTIONS(7107), + [anon_sym___restrict__] = ACTIONS(7107), + [anon_sym__Atomic] = ACTIONS(7107), + [anon_sym__Noreturn] = ACTIONS(7107), + [anon_sym_noreturn] = ACTIONS(7107), + [anon_sym__Nonnull] = ACTIONS(7107), + [anon_sym_mutable] = ACTIONS(7107), + [anon_sym_constinit] = ACTIONS(7107), + [anon_sym_consteval] = ACTIONS(7107), + [anon_sym_alignas] = ACTIONS(7107), + [anon_sym__Alignas] = ACTIONS(7107), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_STAR_EQ] = ACTIONS(7109), + [anon_sym_SLASH_EQ] = ACTIONS(7109), + [anon_sym_PERCENT_EQ] = ACTIONS(7109), + [anon_sym_PLUS_EQ] = ACTIONS(7109), + [anon_sym_DASH_EQ] = ACTIONS(7109), + [anon_sym_LT_LT_EQ] = ACTIONS(7109), + [anon_sym_GT_GT_EQ] = ACTIONS(7109), + [anon_sym_AMP_EQ] = ACTIONS(7109), + [anon_sym_CARET_EQ] = ACTIONS(7109), + [anon_sym_PIPE_EQ] = ACTIONS(7109), + [anon_sym_and_eq] = ACTIONS(7107), + [anon_sym_or_eq] = ACTIONS(7107), + [anon_sym_xor_eq] = ACTIONS(7107), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7107), + [anon_sym_and] = ACTIONS(7107), + [anon_sym_bitor] = ACTIONS(7107), + [anon_sym_xor] = ACTIONS(7107), + [anon_sym_bitand] = ACTIONS(7107), + [anon_sym_not_eq] = ACTIONS(7107), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7109), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7107), + [anon_sym_override] = ACTIONS(7107), + [anon_sym_requires] = ACTIONS(7107), + [anon_sym_COLON_RBRACK] = ACTIONS(7109), + }, + [STATE(2050)] = { + [sym_function_definition] = STATE(860), + [sym_declaration] = STATE(860), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6309), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2615), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10967), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7111), + [anon_sym_struct] = ACTIONS(7113), + [anon_sym_union] = ACTIONS(7115), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2051)] = { + [sym_function_definition] = STATE(858), + [sym_declaration] = STATE(858), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6309), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2615), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11066), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7117), + [anon_sym_struct] = ACTIONS(7119), + [anon_sym_union] = ACTIONS(7121), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2052)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_TILDE] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6846), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6846), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6846), + [anon_sym_GT_GT] = ACTIONS(6846), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym_virtual] = ACTIONS(6844), + [anon_sym_extern] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), + [anon_sym___declspec] = ACTIONS(6844), + [anon_sym___based] = ACTIONS(6844), + [anon_sym___cdecl] = ACTIONS(6844), + [anon_sym___clrcall] = ACTIONS(6844), + [anon_sym___stdcall] = ACTIONS(6844), + [anon_sym___fastcall] = ACTIONS(6844), + [anon_sym___thiscall] = ACTIONS(6844), + [anon_sym___vectorcall] = ACTIONS(6844), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_static] = ACTIONS(6844), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_register] = ACTIONS(6844), + [anon_sym_inline] = ACTIONS(6844), + [anon_sym___inline] = ACTIONS(6844), + [anon_sym___inline__] = ACTIONS(6844), + [anon_sym___forceinline] = ACTIONS(6844), + [anon_sym_thread_local] = ACTIONS(6844), + [anon_sym___thread] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6844), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6844), + [anon_sym_not_eq] = ACTIONS(6844), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6844), + [anon_sym_template] = ACTIONS(6844), + [anon_sym_operator] = ACTIONS(6844), + [anon_sym_LBRACK_COLON] = ACTIONS(6846), + }, + [STATE(2053)] = { + [sym_attribute_specifier] = STATE(2120), + [sym_identifier] = ACTIONS(7123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7125), + [anon_sym_RPAREN] = ACTIONS(7125), + [aux_sym_preproc_if_token2] = ACTIONS(7125), + [aux_sym_preproc_else_token1] = ACTIONS(7125), + [aux_sym_preproc_elif_token1] = ACTIONS(7123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7125), + [anon_sym_LPAREN2] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7123), + [anon_sym_PLUS] = ACTIONS(7123), + [anon_sym_STAR] = ACTIONS(7123), + [anon_sym_SLASH] = ACTIONS(7123), + [anon_sym_PERCENT] = ACTIONS(7123), + [anon_sym_PIPE_PIPE] = ACTIONS(7125), + [anon_sym_AMP_AMP] = ACTIONS(7125), + [anon_sym_PIPE] = ACTIONS(7123), + [anon_sym_CARET] = ACTIONS(7123), + [anon_sym_AMP] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_GT] = ACTIONS(7123), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_LT_EQ] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(7123), + [anon_sym_LT_LT] = ACTIONS(7123), + [anon_sym_GT_GT] = ACTIONS(7123), + [anon_sym_SEMI] = ACTIONS(7125), + [anon_sym___extension__] = ACTIONS(7123), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7123), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7125), + [anon_sym_LBRACE] = ACTIONS(7125), + [anon_sym_RBRACE] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7125), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_const] = ACTIONS(7123), + [anon_sym_constexpr] = ACTIONS(7123), + [anon_sym_volatile] = ACTIONS(7123), + [anon_sym_restrict] = ACTIONS(7123), + [anon_sym___restrict__] = ACTIONS(7123), + [anon_sym__Atomic] = ACTIONS(7123), + [anon_sym__Noreturn] = ACTIONS(7123), + [anon_sym_noreturn] = ACTIONS(7123), + [anon_sym__Nonnull] = ACTIONS(7123), + [anon_sym_mutable] = ACTIONS(7123), + [anon_sym_constinit] = ACTIONS(7123), + [anon_sym_consteval] = ACTIONS(7123), + [anon_sym_alignas] = ACTIONS(7123), + [anon_sym__Alignas] = ACTIONS(7123), + [anon_sym_QMARK] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_and_eq] = ACTIONS(7123), + [anon_sym_or_eq] = ACTIONS(7123), + [anon_sym_xor_eq] = ACTIONS(7123), + [anon_sym_LT_EQ_GT] = ACTIONS(7125), + [anon_sym_or] = ACTIONS(7123), + [anon_sym_and] = ACTIONS(7123), + [anon_sym_bitor] = ACTIONS(7123), + [anon_sym_xor] = ACTIONS(7123), + [anon_sym_bitand] = ACTIONS(7123), + [anon_sym_not_eq] = ACTIONS(7123), + [anon_sym_DASH_DASH] = ACTIONS(7125), + [anon_sym_PLUS_PLUS] = ACTIONS(7125), + [anon_sym_DOT] = ACTIONS(7123), + [anon_sym_DOT_STAR] = ACTIONS(7125), + [anon_sym_DASH_GT] = ACTIONS(7125), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7123), + [anon_sym_override] = ACTIONS(7123), + [anon_sym_requires] = ACTIONS(7123), + [anon_sym_COLON_RBRACK] = ACTIONS(7125), + }, + [STATE(2054)] = { + [sym_function_definition] = STATE(469), + [sym_declaration] = STATE(469), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6273), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2618), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10579), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7127), + [anon_sym_struct] = ACTIONS(7129), + [anon_sym_union] = ACTIONS(7131), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2055)] = { + [sym_attribute_specifier] = STATE(2121), + [sym_identifier] = ACTIONS(7133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [aux_sym_preproc_if_token2] = ACTIONS(7135), + [aux_sym_preproc_else_token1] = ACTIONS(7135), + [aux_sym_preproc_elif_token1] = ACTIONS(7133), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7135), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7133), + [anon_sym_or_eq] = ACTIONS(7133), + [anon_sym_xor_eq] = ACTIONS(7133), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7133), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7133), + [anon_sym_not_eq] = ACTIONS(7133), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_requires] = ACTIONS(7133), + [anon_sym_COLON_RBRACK] = ACTIONS(7135), + }, + [STATE(2056)] = { + [sym_function_definition] = STATE(472), + [sym_declaration] = STATE(472), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6273), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2618), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10502), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7137), + [anon_sym_struct] = ACTIONS(7139), + [anon_sym_union] = ACTIONS(7141), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2057)] = { + [sym_function_definition] = STATE(2636), + [sym_declaration] = STATE(2636), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6285), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2622), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10769), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7143), + [anon_sym_struct] = ACTIONS(7145), + [anon_sym_union] = ACTIONS(7147), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2058)] = { + [sym_function_definition] = STATE(2665), + [sym_declaration] = STATE(2665), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6285), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2622), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11053), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7149), + [anon_sym_struct] = ACTIONS(7151), + [anon_sym_union] = ACTIONS(7153), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2059)] = { + [sym_function_definition] = STATE(840), + [sym_declaration] = STATE(840), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6279), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2620), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(10932), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7155), + [anon_sym_struct] = ACTIONS(7157), + [anon_sym_union] = ACTIONS(7159), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2060)] = { + [sym_function_definition] = STATE(853), + [sym_declaration] = STATE(853), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6279), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2620), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11173), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7161), + [anon_sym_struct] = ACTIONS(7163), + [anon_sym_union] = ACTIONS(7165), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2061)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6230), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6228), + [anon_sym_GT_GT] = ACTIONS(6228), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6230), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym___cdecl] = ACTIONS(6226), + [anon_sym___clrcall] = ACTIONS(6226), + [anon_sym___stdcall] = ACTIONS(6226), + [anon_sym___fastcall] = ACTIONS(6226), + [anon_sym___thiscall] = ACTIONS(6226), + [anon_sym___vectorcall] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_RBRACK] = ACTIONS(6228), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(2062)] = { + [sym_template_argument_list] = STATE(2081), + [sym_identifier] = ACTIONS(6212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [aux_sym_preproc_if_token2] = ACTIONS(6205), + [aux_sym_preproc_else_token1] = ACTIONS(6205), + [aux_sym_preproc_elif_token1] = ACTIONS(6212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(7167), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(6205), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6212), + [anon_sym___attribute] = ACTIONS(6212), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6205), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6205), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6205), + [anon_sym_SLASH_EQ] = ACTIONS(6205), + [anon_sym_PERCENT_EQ] = ACTIONS(6205), + [anon_sym_PLUS_EQ] = ACTIONS(6205), + [anon_sym_DASH_EQ] = ACTIONS(6205), + [anon_sym_LT_LT_EQ] = ACTIONS(6205), + [anon_sym_GT_GT_EQ] = ACTIONS(6205), + [anon_sym_AMP_EQ] = ACTIONS(6205), + [anon_sym_CARET_EQ] = ACTIONS(6205), + [anon_sym_PIPE_EQ] = ACTIONS(6205), + [anon_sym_and_eq] = ACTIONS(6212), + [anon_sym_or_eq] = ACTIONS(6212), + [anon_sym_xor_eq] = ACTIONS(6212), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6212), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6212), + [anon_sym_not_eq] = ACTIONS(6212), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_COLON_RBRACK] = ACTIONS(6205), + }, + [STATE(2063)] = { + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2064)] = { + [sym_function_definition] = STATE(3243), + [sym_declaration] = STATE(3243), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6294), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2623), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11026), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7171), + [anon_sym_struct] = ACTIONS(7173), + [anon_sym_union] = ACTIONS(7175), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2065)] = { + [sym_function_definition] = STATE(3245), + [sym_declaration] = STATE(3245), + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6294), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_ms_call_modifier] = STATE(2623), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym__class_name] = STATE(11152), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(5610), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(5611), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(5898), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(7039), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7177), + [anon_sym_struct] = ACTIONS(7179), + [anon_sym_union] = ACTIONS(7181), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2066)] = { + [sym_decltype_auto] = STATE(2101), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6804), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2067)] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7183), + [aux_sym_preproc_if_token2] = ACTIONS(7183), + [aux_sym_preproc_else_token1] = ACTIONS(7183), + [aux_sym_preproc_elif_token1] = ACTIONS(7185), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7185), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7185), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7185), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7185), + [anon_sym_GT_GT] = ACTIONS(7185), + [anon_sym_SEMI] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_RBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_mutable] = ACTIONS(7185), + [anon_sym_constinit] = ACTIONS(7185), + [anon_sym_consteval] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_STAR_EQ] = ACTIONS(7183), + [anon_sym_SLASH_EQ] = ACTIONS(7183), + [anon_sym_PERCENT_EQ] = ACTIONS(7183), + [anon_sym_PLUS_EQ] = ACTIONS(7183), + [anon_sym_DASH_EQ] = ACTIONS(7183), + [anon_sym_LT_LT_EQ] = ACTIONS(7183), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7183), + [anon_sym_CARET_EQ] = ACTIONS(7183), + [anon_sym_PIPE_EQ] = ACTIONS(7183), + [anon_sym_and_eq] = ACTIONS(7185), + [anon_sym_or_eq] = ACTIONS(7185), + [anon_sym_xor_eq] = ACTIONS(7185), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7185), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7185), + [anon_sym_not_eq] = ACTIONS(7185), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7185), + [anon_sym_override] = ACTIONS(7185), + [anon_sym_requires] = ACTIONS(7185), + [anon_sym_COLON_RBRACK] = ACTIONS(7183), + }, + [STATE(2068)] = { + [sym_template_argument_list] = STATE(2096), + [sym_identifier] = ACTIONS(6212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [aux_sym_preproc_if_token2] = ACTIONS(6205), + [aux_sym_preproc_else_token1] = ACTIONS(6205), + [aux_sym_preproc_elif_token1] = ACTIONS(6212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(7167), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(6205), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6212), + [anon_sym___attribute] = ACTIONS(6212), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6205), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6205), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6212), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6212), + [anon_sym_not_eq] = ACTIONS(6212), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_COLON_RBRACK] = ACTIONS(6205), + }, + [STATE(2069)] = { + [sym_attribute_specifier] = STATE(2079), + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [aux_sym_preproc_if_token2] = ACTIONS(7189), + [aux_sym_preproc_else_token1] = ACTIONS(7189), + [aux_sym_preproc_elif_token1] = ACTIONS(7187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym_SEMI] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_RBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7187), + [anon_sym_or_eq] = ACTIONS(7187), + [anon_sym_xor_eq] = ACTIONS(7187), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7187), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7187), + [anon_sym_not_eq] = ACTIONS(7187), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_requires] = ACTIONS(7187), + [anon_sym_COLON_RBRACK] = ACTIONS(7189), + }, + [STATE(2070)] = { + [sym_identifier] = ACTIONS(7191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [aux_sym_preproc_if_token2] = ACTIONS(7193), + [aux_sym_preproc_else_token1] = ACTIONS(7193), + [aux_sym_preproc_elif_token1] = ACTIONS(7191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7191), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7191), + [anon_sym_GT_GT] = ACTIONS(7191), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(7191), + [anon_sym___attribute__] = ACTIONS(7191), + [anon_sym___attribute] = ACTIONS(7191), + [anon_sym_COLON] = ACTIONS(7191), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7191), + [anon_sym_volatile] = ACTIONS(7191), + [anon_sym_restrict] = ACTIONS(7191), + [anon_sym___restrict__] = ACTIONS(7191), + [anon_sym__Atomic] = ACTIONS(7191), + [anon_sym__Noreturn] = ACTIONS(7191), + [anon_sym_noreturn] = ACTIONS(7191), + [anon_sym__Nonnull] = ACTIONS(7191), + [anon_sym_mutable] = ACTIONS(7191), + [anon_sym_constinit] = ACTIONS(7191), + [anon_sym_consteval] = ACTIONS(7191), + [anon_sym_alignas] = ACTIONS(7191), + [anon_sym__Alignas] = ACTIONS(7191), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7191), + [anon_sym_or_eq] = ACTIONS(7191), + [anon_sym_xor_eq] = ACTIONS(7191), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7191), + [anon_sym_and] = ACTIONS(7191), + [anon_sym_bitor] = ACTIONS(7191), + [anon_sym_xor] = ACTIONS(7191), + [anon_sym_bitand] = ACTIONS(7191), + [anon_sym_not_eq] = ACTIONS(7191), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7191), + [anon_sym_override] = ACTIONS(7191), + [anon_sym_requires] = ACTIONS(7191), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), + }, + [STATE(2071)] = { + [sym_identifier] = ACTIONS(7195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_RPAREN] = ACTIONS(7197), + [aux_sym_preproc_if_token2] = ACTIONS(7197), + [aux_sym_preproc_else_token1] = ACTIONS(7197), + [aux_sym_preproc_elif_token1] = ACTIONS(7195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7197), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym_SEMI] = ACTIONS(7197), + [anon_sym___extension__] = ACTIONS(7195), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7197), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_RBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7195), + [anon_sym_volatile] = ACTIONS(7195), + [anon_sym_restrict] = ACTIONS(7195), + [anon_sym___restrict__] = ACTIONS(7195), + [anon_sym__Atomic] = ACTIONS(7195), + [anon_sym__Noreturn] = ACTIONS(7195), + [anon_sym_noreturn] = ACTIONS(7195), + [anon_sym__Nonnull] = ACTIONS(7195), + [anon_sym_mutable] = ACTIONS(7195), + [anon_sym_constinit] = ACTIONS(7195), + [anon_sym_consteval] = ACTIONS(7195), + [anon_sym_alignas] = ACTIONS(7195), + [anon_sym__Alignas] = ACTIONS(7195), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_STAR_EQ] = ACTIONS(7197), + [anon_sym_SLASH_EQ] = ACTIONS(7197), + [anon_sym_PERCENT_EQ] = ACTIONS(7197), + [anon_sym_PLUS_EQ] = ACTIONS(7197), + [anon_sym_DASH_EQ] = ACTIONS(7197), + [anon_sym_LT_LT_EQ] = ACTIONS(7197), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7197), + [anon_sym_CARET_EQ] = ACTIONS(7197), + [anon_sym_PIPE_EQ] = ACTIONS(7197), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7197), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_COLON_RBRACK] = ACTIONS(7197), + }, + [STATE(2072)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [aux_sym_preproc_if_token2] = ACTIONS(7201), + [aux_sym_preproc_else_token1] = ACTIONS(7201), + [aux_sym_preproc_elif_token1] = ACTIONS(7199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7199), + [anon_sym___attribute__] = ACTIONS(7199), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_RBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7199), + [anon_sym_volatile] = ACTIONS(7199), + [anon_sym_restrict] = ACTIONS(7199), + [anon_sym___restrict__] = ACTIONS(7199), + [anon_sym__Atomic] = ACTIONS(7199), + [anon_sym__Noreturn] = ACTIONS(7199), + [anon_sym_noreturn] = ACTIONS(7199), + [anon_sym__Nonnull] = ACTIONS(7199), + [anon_sym_mutable] = ACTIONS(7199), + [anon_sym_constinit] = ACTIONS(7199), + [anon_sym_consteval] = ACTIONS(7199), + [anon_sym_alignas] = ACTIONS(7199), + [anon_sym__Alignas] = ACTIONS(7199), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7199), + [anon_sym_or_eq] = ACTIONS(7199), + [anon_sym_xor_eq] = ACTIONS(7199), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7199), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7199), + [anon_sym_not_eq] = ACTIONS(7199), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7199), + [anon_sym_override] = ACTIONS(7199), + [anon_sym_requires] = ACTIONS(7199), + }, + [STATE(2073)] = { + [sym_identifier] = ACTIONS(7205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_RPAREN] = ACTIONS(7207), + [aux_sym_preproc_if_token2] = ACTIONS(7207), + [aux_sym_preproc_else_token1] = ACTIONS(7207), + [aux_sym_preproc_elif_token1] = ACTIONS(7205), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym_SEMI] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7205), + [anon_sym___attribute__] = ACTIONS(7205), + [anon_sym___attribute] = ACTIONS(7205), + [anon_sym_COLON] = ACTIONS(7205), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_RBRACE] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7205), + [anon_sym_volatile] = ACTIONS(7205), + [anon_sym_restrict] = ACTIONS(7205), + [anon_sym___restrict__] = ACTIONS(7205), + [anon_sym__Atomic] = ACTIONS(7205), + [anon_sym__Noreturn] = ACTIONS(7205), + [anon_sym_noreturn] = ACTIONS(7205), + [anon_sym__Nonnull] = ACTIONS(7205), + [anon_sym_mutable] = ACTIONS(7205), + [anon_sym_constinit] = ACTIONS(7205), + [anon_sym_consteval] = ACTIONS(7205), + [anon_sym_alignas] = ACTIONS(7205), + [anon_sym__Alignas] = ACTIONS(7205), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_STAR_EQ] = ACTIONS(7207), + [anon_sym_SLASH_EQ] = ACTIONS(7207), + [anon_sym_PERCENT_EQ] = ACTIONS(7207), + [anon_sym_PLUS_EQ] = ACTIONS(7207), + [anon_sym_DASH_EQ] = ACTIONS(7207), + [anon_sym_LT_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7207), + [anon_sym_CARET_EQ] = ACTIONS(7207), + [anon_sym_PIPE_EQ] = ACTIONS(7207), + [anon_sym_and_eq] = ACTIONS(7205), + [anon_sym_or_eq] = ACTIONS(7205), + [anon_sym_xor_eq] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7205), + [anon_sym_and] = ACTIONS(7205), + [anon_sym_bitor] = ACTIONS(7205), + [anon_sym_xor] = ACTIONS(7205), + [anon_sym_bitand] = ACTIONS(7205), + [anon_sym_not_eq] = ACTIONS(7205), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7205), + [anon_sym_override] = ACTIONS(7205), + [anon_sym_requires] = ACTIONS(7205), + [anon_sym_COLON_RBRACK] = ACTIONS(7207), + }, + [STATE(2074)] = { + [sym_identifier] = ACTIONS(7209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_RPAREN] = ACTIONS(7211), + [aux_sym_preproc_if_token2] = ACTIONS(7211), + [aux_sym_preproc_else_token1] = ACTIONS(7211), + [aux_sym_preproc_elif_token1] = ACTIONS(7209), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7211), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym_SEMI] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7209), + [anon_sym___attribute__] = ACTIONS(7209), + [anon_sym___attribute] = ACTIONS(7209), + [anon_sym_COLON] = ACTIONS(7209), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_RBRACE] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7209), + [anon_sym_volatile] = ACTIONS(7209), + [anon_sym_restrict] = ACTIONS(7209), + [anon_sym___restrict__] = ACTIONS(7209), + [anon_sym__Atomic] = ACTIONS(7209), + [anon_sym__Noreturn] = ACTIONS(7209), + [anon_sym_noreturn] = ACTIONS(7209), + [anon_sym__Nonnull] = ACTIONS(7209), + [anon_sym_mutable] = ACTIONS(7209), + [anon_sym_constinit] = ACTIONS(7209), + [anon_sym_consteval] = ACTIONS(7209), + [anon_sym_alignas] = ACTIONS(7209), + [anon_sym__Alignas] = ACTIONS(7209), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7209), + [anon_sym_or_eq] = ACTIONS(7209), + [anon_sym_xor_eq] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7209), + [anon_sym_and] = ACTIONS(7209), + [anon_sym_bitor] = ACTIONS(7209), + [anon_sym_xor] = ACTIONS(7209), + [anon_sym_bitand] = ACTIONS(7209), + [anon_sym_not_eq] = ACTIONS(7209), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7209), + [anon_sym_override] = ACTIONS(7209), + [anon_sym_requires] = ACTIONS(7209), + [anon_sym_COLON_RBRACK] = ACTIONS(7211), + }, + [STATE(2075)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(7213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [aux_sym_preproc_if_token2] = ACTIONS(7215), + [aux_sym_preproc_else_token1] = ACTIONS(7215), + [aux_sym_preproc_elif_token1] = ACTIONS(7213), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7213), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7213), + [anon_sym_GT_GT] = ACTIONS(7213), + [anon_sym___extension__] = ACTIONS(7213), + [anon_sym___attribute__] = ACTIONS(7213), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(7217), + [anon_sym_unsigned] = ACTIONS(7217), + [anon_sym_long] = ACTIONS(7217), + [anon_sym_short] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_RBRACK] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(7213), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7213), + [anon_sym_volatile] = ACTIONS(7213), + [anon_sym_restrict] = ACTIONS(7213), + [anon_sym___restrict__] = ACTIONS(7213), + [anon_sym__Atomic] = ACTIONS(7213), + [anon_sym__Noreturn] = ACTIONS(7213), + [anon_sym_noreturn] = ACTIONS(7213), + [anon_sym__Nonnull] = ACTIONS(7213), + [anon_sym_mutable] = ACTIONS(7213), + [anon_sym_constinit] = ACTIONS(7213), + [anon_sym_consteval] = ACTIONS(7213), + [anon_sym_alignas] = ACTIONS(7213), + [anon_sym__Alignas] = ACTIONS(7213), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_STAR_EQ] = ACTIONS(7215), + [anon_sym_SLASH_EQ] = ACTIONS(7215), + [anon_sym_PERCENT_EQ] = ACTIONS(7215), + [anon_sym_PLUS_EQ] = ACTIONS(7215), + [anon_sym_DASH_EQ] = ACTIONS(7215), + [anon_sym_LT_LT_EQ] = ACTIONS(7215), + [anon_sym_GT_GT_EQ] = ACTIONS(7215), + [anon_sym_AMP_EQ] = ACTIONS(7215), + [anon_sym_CARET_EQ] = ACTIONS(7215), + [anon_sym_PIPE_EQ] = ACTIONS(7215), + [anon_sym_and_eq] = ACTIONS(7213), + [anon_sym_or_eq] = ACTIONS(7213), + [anon_sym_xor_eq] = ACTIONS(7213), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7213), + [anon_sym_and] = ACTIONS(7213), + [anon_sym_bitor] = ACTIONS(7213), + [anon_sym_xor] = ACTIONS(7213), + [anon_sym_bitand] = ACTIONS(7213), + [anon_sym_not_eq] = ACTIONS(7213), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7215), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7213), + [anon_sym_override] = ACTIONS(7213), + [anon_sym_requires] = ACTIONS(7213), + }, + [STATE(2076)] = { + [sym_identifier] = ACTIONS(6790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [aux_sym_preproc_if_token2] = ACTIONS(6792), + [aux_sym_preproc_else_token1] = ACTIONS(6792), + [aux_sym_preproc_elif_token1] = ACTIONS(6790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(6790), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_COLON] = ACTIONS(6790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_mutable] = ACTIONS(6790), + [anon_sym_constinit] = ACTIONS(6790), + [anon_sym_consteval] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6790), + [anon_sym_or_eq] = ACTIONS(6790), + [anon_sym_xor_eq] = ACTIONS(6790), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6790), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6790), + [anon_sym_not_eq] = ACTIONS(6790), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6790), + [anon_sym_override] = ACTIONS(6790), + [anon_sym_requires] = ACTIONS(6790), + [anon_sym_COLON_RBRACK] = ACTIONS(6792), + }, + [STATE(2077)] = { + [sym_identifier] = ACTIONS(7219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_RPAREN] = ACTIONS(7221), + [aux_sym_preproc_if_token2] = ACTIONS(7221), + [aux_sym_preproc_else_token1] = ACTIONS(7221), + [aux_sym_preproc_elif_token1] = ACTIONS(7219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7221), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7219), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7219), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7219), + [anon_sym_GT_GT] = ACTIONS(7219), + [anon_sym_SEMI] = ACTIONS(7221), + [anon_sym___extension__] = ACTIONS(7219), + [anon_sym___attribute__] = ACTIONS(7219), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_COLON] = ACTIONS(7219), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7221), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_RBRACE] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7219), + [anon_sym_volatile] = ACTIONS(7219), + [anon_sym_restrict] = ACTIONS(7219), + [anon_sym___restrict__] = ACTIONS(7219), + [anon_sym__Atomic] = ACTIONS(7219), + [anon_sym__Noreturn] = ACTIONS(7219), + [anon_sym_noreturn] = ACTIONS(7219), + [anon_sym__Nonnull] = ACTIONS(7219), + [anon_sym_mutable] = ACTIONS(7219), + [anon_sym_constinit] = ACTIONS(7219), + [anon_sym_consteval] = ACTIONS(7219), + [anon_sym_alignas] = ACTIONS(7219), + [anon_sym__Alignas] = ACTIONS(7219), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7219), + [anon_sym_or_eq] = ACTIONS(7219), + [anon_sym_xor_eq] = ACTIONS(7219), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7219), + [anon_sym_and] = ACTIONS(7219), + [anon_sym_bitor] = ACTIONS(7219), + [anon_sym_xor] = ACTIONS(7219), + [anon_sym_bitand] = ACTIONS(7219), + [anon_sym_not_eq] = ACTIONS(7219), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_requires] = ACTIONS(7219), + [anon_sym_COLON_RBRACK] = ACTIONS(7221), + }, + [STATE(2078)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(2079)] = { + [sym_identifier] = ACTIONS(7227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_RPAREN] = ACTIONS(7229), + [aux_sym_preproc_if_token2] = ACTIONS(7229), + [aux_sym_preproc_else_token1] = ACTIONS(7229), + [aux_sym_preproc_elif_token1] = ACTIONS(7227), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7229), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7227), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7227), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7227), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7227), + [anon_sym_GT_GT] = ACTIONS(7227), + [anon_sym_SEMI] = ACTIONS(7229), + [anon_sym___extension__] = ACTIONS(7227), + [anon_sym___attribute__] = ACTIONS(7227), + [anon_sym___attribute] = ACTIONS(7227), + [anon_sym_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7229), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_RBRACE] = ACTIONS(7229), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_EQ] = ACTIONS(7227), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7227), + [anon_sym_volatile] = ACTIONS(7227), + [anon_sym_restrict] = ACTIONS(7227), + [anon_sym___restrict__] = ACTIONS(7227), + [anon_sym__Atomic] = ACTIONS(7227), + [anon_sym__Noreturn] = ACTIONS(7227), + [anon_sym_noreturn] = ACTIONS(7227), + [anon_sym__Nonnull] = ACTIONS(7227), + [anon_sym_mutable] = ACTIONS(7227), + [anon_sym_constinit] = ACTIONS(7227), + [anon_sym_consteval] = ACTIONS(7227), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_STAR_EQ] = ACTIONS(7229), + [anon_sym_SLASH_EQ] = ACTIONS(7229), + [anon_sym_PERCENT_EQ] = ACTIONS(7229), + [anon_sym_PLUS_EQ] = ACTIONS(7229), + [anon_sym_DASH_EQ] = ACTIONS(7229), + [anon_sym_LT_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_GT_EQ] = ACTIONS(7229), + [anon_sym_AMP_EQ] = ACTIONS(7229), + [anon_sym_CARET_EQ] = ACTIONS(7229), + [anon_sym_PIPE_EQ] = ACTIONS(7229), + [anon_sym_and_eq] = ACTIONS(7227), + [anon_sym_or_eq] = ACTIONS(7227), + [anon_sym_xor_eq] = ACTIONS(7227), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7227), + [anon_sym_and] = ACTIONS(7227), + [anon_sym_bitor] = ACTIONS(7227), + [anon_sym_xor] = ACTIONS(7227), + [anon_sym_bitand] = ACTIONS(7227), + [anon_sym_not_eq] = ACTIONS(7227), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7227), + [anon_sym_override] = ACTIONS(7227), + [anon_sym_requires] = ACTIONS(7227), + [anon_sym_COLON_RBRACK] = ACTIONS(7229), + }, + [STATE(2080)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [aux_sym_preproc_if_token2] = ACTIONS(7233), + [aux_sym_preproc_else_token1] = ACTIONS(7233), + [aux_sym_preproc_elif_token1] = ACTIONS(7231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7231), + [anon_sym_or_eq] = ACTIONS(7231), + [anon_sym_xor_eq] = ACTIONS(7231), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7231), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7231), + [anon_sym_not_eq] = ACTIONS(7231), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7231), + [anon_sym_override] = ACTIONS(7231), + [anon_sym_requires] = ACTIONS(7231), + [anon_sym_COLON_RBRACK] = ACTIONS(7233), + }, + [STATE(2081)] = { + [sym_identifier] = ACTIONS(6237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [aux_sym_preproc_if_token2] = ACTIONS(6230), + [aux_sym_preproc_else_token1] = ACTIONS(6230), + [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6237), + [anon_sym___attribute] = ACTIONS(6237), + [anon_sym_COLON] = ACTIONS(6237), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6237), + [anon_sym_or_eq] = ACTIONS(6237), + [anon_sym_xor_eq] = ACTIONS(6237), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6237), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6237), + [anon_sym_not_eq] = ACTIONS(6237), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_COLON_RBRACK] = ACTIONS(6230), + }, + [STATE(2082)] = { + [sym_identifier] = ACTIONS(7235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [aux_sym_preproc_if_token2] = ACTIONS(7237), + [aux_sym_preproc_else_token1] = ACTIONS(7237), + [aux_sym_preproc_elif_token1] = ACTIONS(7235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7237), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym_SEMI] = ACTIONS(7237), + [anon_sym___extension__] = ACTIONS(7235), + [anon_sym___attribute__] = ACTIONS(7235), + [anon_sym___attribute] = ACTIONS(7235), + [anon_sym_COLON] = ACTIONS(7235), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_RBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7235), + [anon_sym_volatile] = ACTIONS(7235), + [anon_sym_restrict] = ACTIONS(7235), + [anon_sym___restrict__] = ACTIONS(7235), + [anon_sym__Atomic] = ACTIONS(7235), + [anon_sym__Noreturn] = ACTIONS(7235), + [anon_sym_noreturn] = ACTIONS(7235), + [anon_sym__Nonnull] = ACTIONS(7235), + [anon_sym_mutable] = ACTIONS(7235), + [anon_sym_constinit] = ACTIONS(7235), + [anon_sym_consteval] = ACTIONS(7235), + [anon_sym_alignas] = ACTIONS(7235), + [anon_sym__Alignas] = ACTIONS(7235), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7235), + [anon_sym_or_eq] = ACTIONS(7235), + [anon_sym_xor_eq] = ACTIONS(7235), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7235), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7235), + [anon_sym_not_eq] = ACTIONS(7235), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7235), + [anon_sym_override] = ACTIONS(7235), + [anon_sym_requires] = ACTIONS(7235), + [anon_sym_COLON_RBRACK] = ACTIONS(7237), + }, + [STATE(2083)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2125), + [sym_identifier] = ACTIONS(7239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [aux_sym_preproc_if_token2] = ACTIONS(7241), + [aux_sym_preproc_else_token1] = ACTIONS(7241), + [aux_sym_preproc_elif_token1] = ACTIONS(7239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7239), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7239), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7239), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7239), + [anon_sym_GT_GT] = ACTIONS(7239), + [anon_sym___extension__] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(7243), + [anon_sym_unsigned] = ACTIONS(7243), + [anon_sym_long] = ACTIONS(7243), + [anon_sym_short] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_RBRACK] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(7239), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7239), + [anon_sym_volatile] = ACTIONS(7239), + [anon_sym_restrict] = ACTIONS(7239), + [anon_sym___restrict__] = ACTIONS(7239), + [anon_sym__Atomic] = ACTIONS(7239), + [anon_sym__Noreturn] = ACTIONS(7239), + [anon_sym_noreturn] = ACTIONS(7239), + [anon_sym__Nonnull] = ACTIONS(7239), + [anon_sym_mutable] = ACTIONS(7239), + [anon_sym_constinit] = ACTIONS(7239), + [anon_sym_consteval] = ACTIONS(7239), + [anon_sym_alignas] = ACTIONS(7239), + [anon_sym__Alignas] = ACTIONS(7239), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_STAR_EQ] = ACTIONS(7241), + [anon_sym_SLASH_EQ] = ACTIONS(7241), + [anon_sym_PERCENT_EQ] = ACTIONS(7241), + [anon_sym_PLUS_EQ] = ACTIONS(7241), + [anon_sym_DASH_EQ] = ACTIONS(7241), + [anon_sym_LT_LT_EQ] = ACTIONS(7241), + [anon_sym_GT_GT_EQ] = ACTIONS(7241), + [anon_sym_AMP_EQ] = ACTIONS(7241), + [anon_sym_CARET_EQ] = ACTIONS(7241), + [anon_sym_PIPE_EQ] = ACTIONS(7241), + [anon_sym_and_eq] = ACTIONS(7239), + [anon_sym_or_eq] = ACTIONS(7239), + [anon_sym_xor_eq] = ACTIONS(7239), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7239), + [anon_sym_and] = ACTIONS(7239), + [anon_sym_bitor] = ACTIONS(7239), + [anon_sym_xor] = ACTIONS(7239), + [anon_sym_bitand] = ACTIONS(7239), + [anon_sym_not_eq] = ACTIONS(7239), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7239), + [anon_sym_override] = ACTIONS(7239), + [anon_sym_requires] = ACTIONS(7239), + }, + [STATE(2084)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(2085)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(2086)] = { + [sym_identifier] = ACTIONS(7245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(7247), + [aux_sym_preproc_if_token2] = ACTIONS(7247), + [aux_sym_preproc_else_token1] = ACTIONS(7247), + [aux_sym_preproc_elif_token1] = ACTIONS(7245), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7247), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7245), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7245), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7245), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7245), + [anon_sym_GT_GT] = ACTIONS(7245), + [anon_sym_SEMI] = ACTIONS(7247), + [anon_sym___extension__] = ACTIONS(7245), + [anon_sym___attribute__] = ACTIONS(7245), + [anon_sym___attribute] = ACTIONS(7245), + [anon_sym_COLON] = ACTIONS(7245), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_RBRACE] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_EQ] = ACTIONS(7245), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7245), + [anon_sym_volatile] = ACTIONS(7245), + [anon_sym_restrict] = ACTIONS(7245), + [anon_sym___restrict__] = ACTIONS(7245), + [anon_sym__Atomic] = ACTIONS(7245), + [anon_sym__Noreturn] = ACTIONS(7245), + [anon_sym_noreturn] = ACTIONS(7245), + [anon_sym__Nonnull] = ACTIONS(7245), + [anon_sym_mutable] = ACTIONS(7245), + [anon_sym_constinit] = ACTIONS(7245), + [anon_sym_consteval] = ACTIONS(7245), + [anon_sym_alignas] = ACTIONS(7245), + [anon_sym__Alignas] = ACTIONS(7245), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7247), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_and_eq] = ACTIONS(7245), + [anon_sym_or_eq] = ACTIONS(7245), + [anon_sym_xor_eq] = ACTIONS(7245), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7245), + [anon_sym_and] = ACTIONS(7245), + [anon_sym_bitor] = ACTIONS(7245), + [anon_sym_xor] = ACTIONS(7245), + [anon_sym_bitand] = ACTIONS(7245), + [anon_sym_not_eq] = ACTIONS(7245), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7245), + [anon_sym_override] = ACTIONS(7245), + [anon_sym_requires] = ACTIONS(7245), + [anon_sym_COLON_RBRACK] = ACTIONS(7247), + }, + [STATE(2087)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [aux_sym_preproc_if_token2] = ACTIONS(7251), + [aux_sym_preproc_else_token1] = ACTIONS(7251), + [aux_sym_preproc_elif_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(7249), + [anon_sym___attribute__] = ACTIONS(7249), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_RBRACK] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7249), + [anon_sym_volatile] = ACTIONS(7249), + [anon_sym_restrict] = ACTIONS(7249), + [anon_sym___restrict__] = ACTIONS(7249), + [anon_sym__Atomic] = ACTIONS(7249), + [anon_sym__Noreturn] = ACTIONS(7249), + [anon_sym_noreturn] = ACTIONS(7249), + [anon_sym__Nonnull] = ACTIONS(7249), + [anon_sym_mutable] = ACTIONS(7249), + [anon_sym_constinit] = ACTIONS(7249), + [anon_sym_consteval] = ACTIONS(7249), + [anon_sym_alignas] = ACTIONS(7249), + [anon_sym__Alignas] = ACTIONS(7249), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_STAR_EQ] = ACTIONS(7251), + [anon_sym_SLASH_EQ] = ACTIONS(7251), + [anon_sym_PERCENT_EQ] = ACTIONS(7251), + [anon_sym_PLUS_EQ] = ACTIONS(7251), + [anon_sym_DASH_EQ] = ACTIONS(7251), + [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym_GT_GT_EQ] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7251), + [anon_sym_CARET_EQ] = ACTIONS(7251), + [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym_and_eq] = ACTIONS(7249), + [anon_sym_or_eq] = ACTIONS(7249), + [anon_sym_xor_eq] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7249), + [anon_sym_and] = ACTIONS(7249), + [anon_sym_bitor] = ACTIONS(7249), + [anon_sym_xor] = ACTIONS(7249), + [anon_sym_bitand] = ACTIONS(7249), + [anon_sym_not_eq] = ACTIONS(7249), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7249), + [anon_sym_override] = ACTIONS(7249), + [anon_sym_requires] = ACTIONS(7249), + }, + [STATE(2088)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [aux_sym_preproc_if_token2] = ACTIONS(7255), + [aux_sym_preproc_else_token1] = ACTIONS(7255), + [aux_sym_preproc_elif_token1] = ACTIONS(7253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_RBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7253), + [anon_sym_volatile] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7253), + [anon_sym___restrict__] = ACTIONS(7253), + [anon_sym__Atomic] = ACTIONS(7253), + [anon_sym__Noreturn] = ACTIONS(7253), + [anon_sym_noreturn] = ACTIONS(7253), + [anon_sym__Nonnull] = ACTIONS(7253), + [anon_sym_mutable] = ACTIONS(7253), + [anon_sym_constinit] = ACTIONS(7253), + [anon_sym_consteval] = ACTIONS(7253), + [anon_sym_alignas] = ACTIONS(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + }, + [STATE(2089)] = { + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2090)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), + }, + [STATE(2091)] = { + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [aux_sym_preproc_if_token2] = ACTIONS(7265), + [aux_sym_preproc_else_token1] = ACTIONS(7265), + [aux_sym_preproc_elif_token1] = ACTIONS(7263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym_SEMI] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_RBRACE] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7263), + [anon_sym_or_eq] = ACTIONS(7263), + [anon_sym_xor_eq] = ACTIONS(7263), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_COLON_RBRACK] = ACTIONS(7265), + }, + [STATE(2092)] = { + [sym_identifier] = ACTIONS(7267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_RPAREN] = ACTIONS(7269), + [aux_sym_preproc_if_token2] = ACTIONS(7269), + [aux_sym_preproc_else_token1] = ACTIONS(7269), + [aux_sym_preproc_elif_token1] = ACTIONS(7267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7269), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7267), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7267), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7267), + [anon_sym_GT_GT] = ACTIONS(7267), + [anon_sym_SEMI] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7267), + [anon_sym___attribute__] = ACTIONS(7267), + [anon_sym___attribute] = ACTIONS(7267), + [anon_sym_COLON] = ACTIONS(7267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_RBRACE] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7267), + [anon_sym_volatile] = ACTIONS(7267), + [anon_sym_restrict] = ACTIONS(7267), + [anon_sym___restrict__] = ACTIONS(7267), + [anon_sym__Atomic] = ACTIONS(7267), + [anon_sym__Noreturn] = ACTIONS(7267), + [anon_sym_noreturn] = ACTIONS(7267), + [anon_sym__Nonnull] = ACTIONS(7267), + [anon_sym_mutable] = ACTIONS(7267), + [anon_sym_constinit] = ACTIONS(7267), + [anon_sym_consteval] = ACTIONS(7267), + [anon_sym_alignas] = ACTIONS(7267), + [anon_sym__Alignas] = ACTIONS(7267), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_STAR_EQ] = ACTIONS(7269), + [anon_sym_SLASH_EQ] = ACTIONS(7269), + [anon_sym_PERCENT_EQ] = ACTIONS(7269), + [anon_sym_PLUS_EQ] = ACTIONS(7269), + [anon_sym_DASH_EQ] = ACTIONS(7269), + [anon_sym_LT_LT_EQ] = ACTIONS(7269), + [anon_sym_GT_GT_EQ] = ACTIONS(7269), + [anon_sym_AMP_EQ] = ACTIONS(7269), + [anon_sym_CARET_EQ] = ACTIONS(7269), + [anon_sym_PIPE_EQ] = ACTIONS(7269), + [anon_sym_and_eq] = ACTIONS(7267), + [anon_sym_or_eq] = ACTIONS(7267), + [anon_sym_xor_eq] = ACTIONS(7267), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7267), + [anon_sym_and] = ACTIONS(7267), + [anon_sym_bitor] = ACTIONS(7267), + [anon_sym_xor] = ACTIONS(7267), + [anon_sym_bitand] = ACTIONS(7267), + [anon_sym_not_eq] = ACTIONS(7267), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7267), + [anon_sym_override] = ACTIONS(7267), + [anon_sym_requires] = ACTIONS(7267), + [anon_sym_COLON_RBRACK] = ACTIONS(7269), + }, + [STATE(2093)] = { + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [aux_sym_preproc_if_token2] = ACTIONS(7255), + [aux_sym_preproc_else_token1] = ACTIONS(7255), + [aux_sym_preproc_elif_token1] = ACTIONS(7253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7253), + [anon_sym_volatile] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7253), + [anon_sym___restrict__] = ACTIONS(7253), + [anon_sym__Atomic] = ACTIONS(7253), + [anon_sym__Noreturn] = ACTIONS(7253), + [anon_sym_noreturn] = ACTIONS(7253), + [anon_sym__Nonnull] = ACTIONS(7253), + [anon_sym_mutable] = ACTIONS(7253), + [anon_sym_constinit] = ACTIONS(7253), + [anon_sym_consteval] = ACTIONS(7253), + [anon_sym_alignas] = ACTIONS(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), + }, + [STATE(2094)] = { + [sym_identifier] = ACTIONS(7271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_RPAREN] = ACTIONS(7273), + [aux_sym_preproc_if_token2] = ACTIONS(7273), + [aux_sym_preproc_else_token1] = ACTIONS(7273), + [aux_sym_preproc_elif_token1] = ACTIONS(7271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym_SEMI] = ACTIONS(7273), + [anon_sym___extension__] = ACTIONS(7271), + [anon_sym___attribute__] = ACTIONS(7271), + [anon_sym___attribute] = ACTIONS(7271), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_RBRACE] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7271), + [anon_sym_volatile] = ACTIONS(7271), + [anon_sym_restrict] = ACTIONS(7271), + [anon_sym___restrict__] = ACTIONS(7271), + [anon_sym__Atomic] = ACTIONS(7271), + [anon_sym__Noreturn] = ACTIONS(7271), + [anon_sym_noreturn] = ACTIONS(7271), + [anon_sym__Nonnull] = ACTIONS(7271), + [anon_sym_mutable] = ACTIONS(7271), + [anon_sym_constinit] = ACTIONS(7271), + [anon_sym_consteval] = ACTIONS(7271), + [anon_sym_alignas] = ACTIONS(7271), + [anon_sym__Alignas] = ACTIONS(7271), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_STAR_EQ] = ACTIONS(7273), + [anon_sym_SLASH_EQ] = ACTIONS(7273), + [anon_sym_PERCENT_EQ] = ACTIONS(7273), + [anon_sym_PLUS_EQ] = ACTIONS(7273), + [anon_sym_DASH_EQ] = ACTIONS(7273), + [anon_sym_LT_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_GT_EQ] = ACTIONS(7273), + [anon_sym_AMP_EQ] = ACTIONS(7273), + [anon_sym_CARET_EQ] = ACTIONS(7273), + [anon_sym_PIPE_EQ] = ACTIONS(7273), + [anon_sym_and_eq] = ACTIONS(7271), + [anon_sym_or_eq] = ACTIONS(7271), + [anon_sym_xor_eq] = ACTIONS(7271), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7271), + [anon_sym_and] = ACTIONS(7271), + [anon_sym_bitor] = ACTIONS(7271), + [anon_sym_xor] = ACTIONS(7271), + [anon_sym_bitand] = ACTIONS(7271), + [anon_sym_not_eq] = ACTIONS(7271), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7273), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7271), + [anon_sym_override] = ACTIONS(7271), + [anon_sym_requires] = ACTIONS(7271), + [anon_sym_COLON_RBRACK] = ACTIONS(7273), + }, + [STATE(2095)] = { + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [aux_sym_preproc_if_token2] = ACTIONS(7277), + [aux_sym_preproc_else_token1] = ACTIONS(7277), + [aux_sym_preproc_elif_token1] = ACTIONS(7275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym_SEMI] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_RBRACE] = ACTIONS(7277), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7275), + [anon_sym_or_eq] = ACTIONS(7275), + [anon_sym_xor_eq] = ACTIONS(7275), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_COLON_RBRACK] = ACTIONS(7277), + }, + [STATE(2096)] = { + [sym_identifier] = ACTIONS(6237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [aux_sym_preproc_if_token2] = ACTIONS(6230), + [aux_sym_preproc_else_token1] = ACTIONS(6230), + [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6237), + [anon_sym___attribute] = ACTIONS(6237), + [anon_sym_COLON] = ACTIONS(6237), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6237), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6237), + [anon_sym_not_eq] = ACTIONS(6237), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_COLON_RBRACK] = ACTIONS(6230), + }, + [STATE(2097)] = { + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [aux_sym_preproc_if_token2] = ACTIONS(7281), + [aux_sym_preproc_else_token1] = ACTIONS(7281), + [aux_sym_preproc_elif_token1] = ACTIONS(7279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_RBRACE] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7279), + [anon_sym_or_eq] = ACTIONS(7279), + [anon_sym_xor_eq] = ACTIONS(7279), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_COLON_RBRACK] = ACTIONS(7281), + }, + [STATE(2098)] = { + [sym_identifier] = ACTIONS(7283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_RPAREN] = ACTIONS(7285), + [aux_sym_preproc_if_token2] = ACTIONS(7285), + [aux_sym_preproc_else_token1] = ACTIONS(7285), + [aux_sym_preproc_elif_token1] = ACTIONS(7283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7283), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7283), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7283), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7283), + [anon_sym_GT_GT] = ACTIONS(7283), + [anon_sym_SEMI] = ACTIONS(7285), + [anon_sym___extension__] = ACTIONS(7283), + [anon_sym___attribute__] = ACTIONS(7283), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7285), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_RBRACE] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7283), + [anon_sym_volatile] = ACTIONS(7283), + [anon_sym_restrict] = ACTIONS(7283), + [anon_sym___restrict__] = ACTIONS(7283), + [anon_sym__Atomic] = ACTIONS(7283), + [anon_sym__Noreturn] = ACTIONS(7283), + [anon_sym_noreturn] = ACTIONS(7283), + [anon_sym__Nonnull] = ACTIONS(7283), + [anon_sym_mutable] = ACTIONS(7283), + [anon_sym_constinit] = ACTIONS(7283), + [anon_sym_consteval] = ACTIONS(7283), + [anon_sym_alignas] = ACTIONS(7283), + [anon_sym__Alignas] = ACTIONS(7283), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7283), + [anon_sym_or_eq] = ACTIONS(7283), + [anon_sym_xor_eq] = ACTIONS(7283), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7283), + [anon_sym_and] = ACTIONS(7283), + [anon_sym_bitor] = ACTIONS(7283), + [anon_sym_xor] = ACTIONS(7283), + [anon_sym_bitand] = ACTIONS(7283), + [anon_sym_not_eq] = ACTIONS(7283), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7285), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7283), + [anon_sym_override] = ACTIONS(7283), + [anon_sym_requires] = ACTIONS(7283), + [anon_sym_COLON_RBRACK] = ACTIONS(7285), + }, + [STATE(2099)] = { + [sym_identifier] = ACTIONS(7287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [aux_sym_preproc_if_token2] = ACTIONS(7289), + [aux_sym_preproc_else_token1] = ACTIONS(7289), + [aux_sym_preproc_elif_token1] = ACTIONS(7287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym_SEMI] = ACTIONS(7289), + [anon_sym___extension__] = ACTIONS(7287), + [anon_sym___attribute__] = ACTIONS(7287), + [anon_sym___attribute] = ACTIONS(7287), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7287), + [anon_sym_volatile] = ACTIONS(7287), + [anon_sym_restrict] = ACTIONS(7287), + [anon_sym___restrict__] = ACTIONS(7287), + [anon_sym__Atomic] = ACTIONS(7287), + [anon_sym__Noreturn] = ACTIONS(7287), + [anon_sym_noreturn] = ACTIONS(7287), + [anon_sym__Nonnull] = ACTIONS(7287), + [anon_sym_mutable] = ACTIONS(7287), + [anon_sym_constinit] = ACTIONS(7287), + [anon_sym_consteval] = ACTIONS(7287), + [anon_sym_alignas] = ACTIONS(7287), + [anon_sym__Alignas] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7287), + [anon_sym_or_eq] = ACTIONS(7287), + [anon_sym_xor_eq] = ACTIONS(7287), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7287), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7287), + [anon_sym_not_eq] = ACTIONS(7287), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7287), + [anon_sym_override] = ACTIONS(7287), + [anon_sym_requires] = ACTIONS(7287), + [anon_sym_COLON_RBRACK] = ACTIONS(7289), + }, + [STATE(2100)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7291), + [anon_sym_or_eq] = ACTIONS(7291), + [anon_sym_xor_eq] = ACTIONS(7291), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), + }, + [STATE(2101)] = { + [sym_identifier] = ACTIONS(7295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_RPAREN] = ACTIONS(7297), + [aux_sym_preproc_if_token2] = ACTIONS(7297), + [aux_sym_preproc_else_token1] = ACTIONS(7297), + [aux_sym_preproc_elif_token1] = ACTIONS(7295), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7295), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym_SEMI] = ACTIONS(7297), + [anon_sym___extension__] = ACTIONS(7295), + [anon_sym___attribute__] = ACTIONS(7295), + [anon_sym___attribute] = ACTIONS(7295), + [anon_sym_COLON] = ACTIONS(7295), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_RBRACE] = ACTIONS(7297), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_EQ] = ACTIONS(7295), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7295), + [anon_sym_volatile] = ACTIONS(7295), + [anon_sym_restrict] = ACTIONS(7295), + [anon_sym___restrict__] = ACTIONS(7295), + [anon_sym__Atomic] = ACTIONS(7295), + [anon_sym__Noreturn] = ACTIONS(7295), + [anon_sym_noreturn] = ACTIONS(7295), + [anon_sym__Nonnull] = ACTIONS(7295), + [anon_sym_mutable] = ACTIONS(7295), + [anon_sym_constinit] = ACTIONS(7295), + [anon_sym_consteval] = ACTIONS(7295), + [anon_sym_alignas] = ACTIONS(7295), + [anon_sym__Alignas] = ACTIONS(7295), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_STAR_EQ] = ACTIONS(7297), + [anon_sym_SLASH_EQ] = ACTIONS(7297), + [anon_sym_PERCENT_EQ] = ACTIONS(7297), + [anon_sym_PLUS_EQ] = ACTIONS(7297), + [anon_sym_DASH_EQ] = ACTIONS(7297), + [anon_sym_LT_LT_EQ] = ACTIONS(7297), + [anon_sym_GT_GT_EQ] = ACTIONS(7297), + [anon_sym_AMP_EQ] = ACTIONS(7297), + [anon_sym_CARET_EQ] = ACTIONS(7297), + [anon_sym_PIPE_EQ] = ACTIONS(7297), + [anon_sym_and_eq] = ACTIONS(7295), + [anon_sym_or_eq] = ACTIONS(7295), + [anon_sym_xor_eq] = ACTIONS(7295), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7295), + [anon_sym_and] = ACTIONS(7295), + [anon_sym_bitor] = ACTIONS(7295), + [anon_sym_xor] = ACTIONS(7295), + [anon_sym_bitand] = ACTIONS(7295), + [anon_sym_not_eq] = ACTIONS(7295), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7297), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7295), + [anon_sym_override] = ACTIONS(7295), + [anon_sym_requires] = ACTIONS(7295), + [anon_sym_COLON_RBRACK] = ACTIONS(7297), + }, + [STATE(2102)] = { + [sym_identifier] = ACTIONS(7299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_RPAREN] = ACTIONS(7301), + [aux_sym_preproc_if_token2] = ACTIONS(7301), + [aux_sym_preproc_else_token1] = ACTIONS(7301), + [aux_sym_preproc_elif_token1] = ACTIONS(7299), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7301), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7299), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7299), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7299), + [anon_sym_GT_GT] = ACTIONS(7299), + [anon_sym_SEMI] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym___attribute__] = ACTIONS(7299), + [anon_sym___attribute] = ACTIONS(7299), + [anon_sym_COLON] = ACTIONS(7299), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_RBRACE] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7299), + [anon_sym__Alignas] = ACTIONS(7299), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_STAR_EQ] = ACTIONS(7301), + [anon_sym_SLASH_EQ] = ACTIONS(7301), + [anon_sym_PERCENT_EQ] = ACTIONS(7301), + [anon_sym_PLUS_EQ] = ACTIONS(7301), + [anon_sym_DASH_EQ] = ACTIONS(7301), + [anon_sym_LT_LT_EQ] = ACTIONS(7301), + [anon_sym_GT_GT_EQ] = ACTIONS(7301), + [anon_sym_AMP_EQ] = ACTIONS(7301), + [anon_sym_CARET_EQ] = ACTIONS(7301), + [anon_sym_PIPE_EQ] = ACTIONS(7301), + [anon_sym_and_eq] = ACTIONS(7299), + [anon_sym_or_eq] = ACTIONS(7299), + [anon_sym_xor_eq] = ACTIONS(7299), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7299), + [anon_sym_and] = ACTIONS(7299), + [anon_sym_bitor] = ACTIONS(7299), + [anon_sym_xor] = ACTIONS(7299), + [anon_sym_bitand] = ACTIONS(7299), + [anon_sym_not_eq] = ACTIONS(7299), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7299), + [anon_sym_override] = ACTIONS(7299), + [anon_sym_requires] = ACTIONS(7299), + [anon_sym_COLON_RBRACK] = ACTIONS(7301), + }, + [STATE(2103)] = { + [sym_identifier] = ACTIONS(7287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [aux_sym_preproc_if_token2] = ACTIONS(7289), + [aux_sym_preproc_else_token1] = ACTIONS(7289), + [aux_sym_preproc_elif_token1] = ACTIONS(7287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym_SEMI] = ACTIONS(7289), + [anon_sym___extension__] = ACTIONS(7287), + [anon_sym___attribute__] = ACTIONS(7287), + [anon_sym___attribute] = ACTIONS(7287), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7287), + [anon_sym_volatile] = ACTIONS(7287), + [anon_sym_restrict] = ACTIONS(7287), + [anon_sym___restrict__] = ACTIONS(7287), + [anon_sym__Atomic] = ACTIONS(7287), + [anon_sym__Noreturn] = ACTIONS(7287), + [anon_sym_noreturn] = ACTIONS(7287), + [anon_sym__Nonnull] = ACTIONS(7287), + [anon_sym_mutable] = ACTIONS(7287), + [anon_sym_constinit] = ACTIONS(7287), + [anon_sym_consteval] = ACTIONS(7287), + [anon_sym_alignas] = ACTIONS(7287), + [anon_sym__Alignas] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7287), + [anon_sym_or_eq] = ACTIONS(7287), + [anon_sym_xor_eq] = ACTIONS(7287), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7287), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7287), + [anon_sym_not_eq] = ACTIONS(7287), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7287), + [anon_sym_override] = ACTIONS(7287), + [anon_sym_requires] = ACTIONS(7287), + [anon_sym_COLON_RBRACK] = ACTIONS(7289), + }, + [STATE(2104)] = { + [sym_identifier] = ACTIONS(7303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_RPAREN] = ACTIONS(7305), + [aux_sym_preproc_if_token2] = ACTIONS(7305), + [aux_sym_preproc_else_token1] = ACTIONS(7305), + [aux_sym_preproc_elif_token1] = ACTIONS(7303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7305), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym_SEMI] = ACTIONS(7305), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7303), + [anon_sym_COLON] = ACTIONS(7303), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_RBRACE] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_STAR_EQ] = ACTIONS(7305), + [anon_sym_SLASH_EQ] = ACTIONS(7305), + [anon_sym_PERCENT_EQ] = ACTIONS(7305), + [anon_sym_PLUS_EQ] = ACTIONS(7305), + [anon_sym_DASH_EQ] = ACTIONS(7305), + [anon_sym_LT_LT_EQ] = ACTIONS(7305), + [anon_sym_GT_GT_EQ] = ACTIONS(7305), + [anon_sym_AMP_EQ] = ACTIONS(7305), + [anon_sym_CARET_EQ] = ACTIONS(7305), + [anon_sym_PIPE_EQ] = ACTIONS(7305), + [anon_sym_and_eq] = ACTIONS(7303), + [anon_sym_or_eq] = ACTIONS(7303), + [anon_sym_xor_eq] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7305), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), + [anon_sym_COLON_RBRACK] = ACTIONS(7305), + }, + [STATE(2105)] = { + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [aux_sym_sized_type_specifier_repeat1] = STATE(2326), + [sym_identifier] = ACTIONS(7307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(7309), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7309), + [anon_sym_volatile] = ACTIONS(7309), + [anon_sym_restrict] = ACTIONS(7309), + [anon_sym___restrict__] = ACTIONS(7309), + [anon_sym__Atomic] = ACTIONS(7309), + [anon_sym__Noreturn] = ACTIONS(7309), + [anon_sym_noreturn] = ACTIONS(7309), + [anon_sym__Nonnull] = ACTIONS(7309), + [anon_sym_mutable] = ACTIONS(7309), + [anon_sym_constinit] = ACTIONS(7309), + [anon_sym_consteval] = ACTIONS(7309), + [anon_sym_alignas] = ACTIONS(7314), + [anon_sym__Alignas] = ACTIONS(7314), + [sym_primitive_type] = ACTIONS(7317), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6886), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + }, + [STATE(2106)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2835), + [sym_ms_pointer_modifier] = STATE(2536), + [sym__abstract_declarator] = STATE(5767), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2542), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2542), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6935), + [sym_ms_restrict_modifier] = ACTIONS(6937), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), + [sym_ms_signed_ptr_modifier] = ACTIONS(6939), + [anon_sym__unaligned] = ACTIONS(6941), + [anon_sym___unaligned] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(2107)] = { + [sym_identifier] = ACTIONS(7325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_RPAREN] = ACTIONS(7327), + [aux_sym_preproc_if_token2] = ACTIONS(7327), + [aux_sym_preproc_else_token1] = ACTIONS(7327), + [aux_sym_preproc_elif_token1] = ACTIONS(7325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7325), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7325), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7325), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym_SEMI] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7325), + [anon_sym___attribute__] = ACTIONS(7325), + [anon_sym___attribute] = ACTIONS(7325), + [anon_sym_COLON] = ACTIONS(7325), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_RBRACE] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7325), + [anon_sym_volatile] = ACTIONS(7325), + [anon_sym_restrict] = ACTIONS(7325), + [anon_sym___restrict__] = ACTIONS(7325), + [anon_sym__Atomic] = ACTIONS(7325), + [anon_sym__Noreturn] = ACTIONS(7325), + [anon_sym_noreturn] = ACTIONS(7325), + [anon_sym__Nonnull] = ACTIONS(7325), + [anon_sym_mutable] = ACTIONS(7325), + [anon_sym_constinit] = ACTIONS(7325), + [anon_sym_consteval] = ACTIONS(7325), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_STAR_EQ] = ACTIONS(7327), + [anon_sym_SLASH_EQ] = ACTIONS(7327), + [anon_sym_PERCENT_EQ] = ACTIONS(7327), + [anon_sym_PLUS_EQ] = ACTIONS(7327), + [anon_sym_DASH_EQ] = ACTIONS(7327), + [anon_sym_LT_LT_EQ] = ACTIONS(7327), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7327), + [anon_sym_CARET_EQ] = ACTIONS(7327), + [anon_sym_PIPE_EQ] = ACTIONS(7327), + [anon_sym_and_eq] = ACTIONS(7325), + [anon_sym_or_eq] = ACTIONS(7325), + [anon_sym_xor_eq] = ACTIONS(7325), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7325), + [anon_sym_and] = ACTIONS(7325), + [anon_sym_bitor] = ACTIONS(7325), + [anon_sym_xor] = ACTIONS(7325), + [anon_sym_bitand] = ACTIONS(7325), + [anon_sym_not_eq] = ACTIONS(7325), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7325), + [anon_sym_override] = ACTIONS(7325), + [anon_sym_requires] = ACTIONS(7325), + [anon_sym_COLON_RBRACK] = ACTIONS(7327), + }, + [STATE(2108)] = { + [sym_identifier] = ACTIONS(7329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_RPAREN] = ACTIONS(7331), + [aux_sym_preproc_if_token2] = ACTIONS(7331), + [aux_sym_preproc_else_token1] = ACTIONS(7331), + [aux_sym_preproc_elif_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym_SEMI] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7329), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_RBRACE] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_STAR_EQ] = ACTIONS(7331), + [anon_sym_SLASH_EQ] = ACTIONS(7331), + [anon_sym_PERCENT_EQ] = ACTIONS(7331), + [anon_sym_PLUS_EQ] = ACTIONS(7331), + [anon_sym_DASH_EQ] = ACTIONS(7331), + [anon_sym_LT_LT_EQ] = ACTIONS(7331), + [anon_sym_GT_GT_EQ] = ACTIONS(7331), + [anon_sym_AMP_EQ] = ACTIONS(7331), + [anon_sym_CARET_EQ] = ACTIONS(7331), + [anon_sym_PIPE_EQ] = ACTIONS(7331), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_COLON_RBRACK] = ACTIONS(7331), + }, + [STATE(2109)] = { + [sym_identifier] = ACTIONS(7333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_RPAREN] = ACTIONS(7335), + [aux_sym_preproc_if_token2] = ACTIONS(7335), + [aux_sym_preproc_else_token1] = ACTIONS(7335), + [aux_sym_preproc_elif_token1] = ACTIONS(7333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym_SEMI] = ACTIONS(7335), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_COLON] = ACTIONS(7333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7335), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_RBRACE] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_STAR_EQ] = ACTIONS(7335), + [anon_sym_SLASH_EQ] = ACTIONS(7335), + [anon_sym_PERCENT_EQ] = ACTIONS(7335), + [anon_sym_PLUS_EQ] = ACTIONS(7335), + [anon_sym_DASH_EQ] = ACTIONS(7335), + [anon_sym_LT_LT_EQ] = ACTIONS(7335), + [anon_sym_GT_GT_EQ] = ACTIONS(7335), + [anon_sym_AMP_EQ] = ACTIONS(7335), + [anon_sym_CARET_EQ] = ACTIONS(7335), + [anon_sym_PIPE_EQ] = ACTIONS(7335), + [anon_sym_and_eq] = ACTIONS(7333), + [anon_sym_or_eq] = ACTIONS(7333), + [anon_sym_xor_eq] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7335), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), + [anon_sym_COLON_RBRACK] = ACTIONS(7335), + }, + [STATE(2110)] = { + [sym_identifier] = ACTIONS(7337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_RPAREN] = ACTIONS(7339), + [aux_sym_preproc_if_token2] = ACTIONS(7339), + [aux_sym_preproc_else_token1] = ACTIONS(7339), + [aux_sym_preproc_elif_token1] = ACTIONS(7337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7337), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7337), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7337), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7337), + [anon_sym_GT_GT] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(7339), + [anon_sym___extension__] = ACTIONS(7337), + [anon_sym___attribute__] = ACTIONS(7337), + [anon_sym___attribute] = ACTIONS(7337), + [anon_sym_COLON] = ACTIONS(7337), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7339), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_RBRACE] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_EQ] = ACTIONS(7337), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7337), + [anon_sym_volatile] = ACTIONS(7337), + [anon_sym_restrict] = ACTIONS(7337), + [anon_sym___restrict__] = ACTIONS(7337), + [anon_sym__Atomic] = ACTIONS(7337), + [anon_sym__Noreturn] = ACTIONS(7337), + [anon_sym_noreturn] = ACTIONS(7337), + [anon_sym__Nonnull] = ACTIONS(7337), + [anon_sym_mutable] = ACTIONS(7337), + [anon_sym_constinit] = ACTIONS(7337), + [anon_sym_consteval] = ACTIONS(7337), + [anon_sym_alignas] = ACTIONS(7337), + [anon_sym__Alignas] = ACTIONS(7337), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_STAR_EQ] = ACTIONS(7339), + [anon_sym_SLASH_EQ] = ACTIONS(7339), + [anon_sym_PERCENT_EQ] = ACTIONS(7339), + [anon_sym_PLUS_EQ] = ACTIONS(7339), + [anon_sym_DASH_EQ] = ACTIONS(7339), + [anon_sym_LT_LT_EQ] = ACTIONS(7339), + [anon_sym_GT_GT_EQ] = ACTIONS(7339), + [anon_sym_AMP_EQ] = ACTIONS(7339), + [anon_sym_CARET_EQ] = ACTIONS(7339), + [anon_sym_PIPE_EQ] = ACTIONS(7339), + [anon_sym_and_eq] = ACTIONS(7337), + [anon_sym_or_eq] = ACTIONS(7337), + [anon_sym_xor_eq] = ACTIONS(7337), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7337), + [anon_sym_and] = ACTIONS(7337), + [anon_sym_bitor] = ACTIONS(7337), + [anon_sym_xor] = ACTIONS(7337), + [anon_sym_bitand] = ACTIONS(7337), + [anon_sym_not_eq] = ACTIONS(7337), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7339), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7337), + [anon_sym_override] = ACTIONS(7337), + [anon_sym_requires] = ACTIONS(7337), + [anon_sym_COLON_RBRACK] = ACTIONS(7339), + }, + [STATE(2111)] = { + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [aux_sym_preproc_if_token2] = ACTIONS(7343), + [aux_sym_preproc_else_token1] = ACTIONS(7343), + [aux_sym_preproc_elif_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7341), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7341), + [anon_sym_volatile] = ACTIONS(7341), + [anon_sym_restrict] = ACTIONS(7341), + [anon_sym___restrict__] = ACTIONS(7341), + [anon_sym__Atomic] = ACTIONS(7341), + [anon_sym__Noreturn] = ACTIONS(7341), + [anon_sym_noreturn] = ACTIONS(7341), + [anon_sym__Nonnull] = ACTIONS(7341), + [anon_sym_mutable] = ACTIONS(7341), + [anon_sym_constinit] = ACTIONS(7341), + [anon_sym_consteval] = ACTIONS(7341), + [anon_sym_alignas] = ACTIONS(7341), + [anon_sym__Alignas] = ACTIONS(7341), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), + }, + [STATE(2112)] = { + [sym_identifier] = ACTIONS(7345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_RPAREN] = ACTIONS(7347), + [aux_sym_preproc_if_token2] = ACTIONS(7347), + [aux_sym_preproc_else_token1] = ACTIONS(7347), + [aux_sym_preproc_elif_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7345), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7345), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7345), + [anon_sym_COLON] = ACTIONS(7345), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7347), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_RBRACE] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7345), + [anon_sym_volatile] = ACTIONS(7345), + [anon_sym_restrict] = ACTIONS(7345), + [anon_sym___restrict__] = ACTIONS(7345), + [anon_sym__Atomic] = ACTIONS(7345), + [anon_sym__Noreturn] = ACTIONS(7345), + [anon_sym_noreturn] = ACTIONS(7345), + [anon_sym__Nonnull] = ACTIONS(7345), + [anon_sym_mutable] = ACTIONS(7345), + [anon_sym_constinit] = ACTIONS(7345), + [anon_sym_consteval] = ACTIONS(7345), + [anon_sym_alignas] = ACTIONS(7345), + [anon_sym__Alignas] = ACTIONS(7345), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_STAR_EQ] = ACTIONS(7347), + [anon_sym_SLASH_EQ] = ACTIONS(7347), + [anon_sym_PERCENT_EQ] = ACTIONS(7347), + [anon_sym_PLUS_EQ] = ACTIONS(7347), + [anon_sym_DASH_EQ] = ACTIONS(7347), + [anon_sym_LT_LT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7347), + [anon_sym_CARET_EQ] = ACTIONS(7347), + [anon_sym_PIPE_EQ] = ACTIONS(7347), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + [anon_sym_COLON_RBRACK] = ACTIONS(7347), + }, + [STATE(2113)] = { + [sym_type_qualifier] = STATE(2115), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(2115), + [aux_sym_sized_type_specifier_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(6953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [aux_sym_preproc_if_token2] = ACTIONS(6812), + [aux_sym_preproc_else_token1] = ACTIONS(6812), + [aux_sym_preproc_elif_token1] = ACTIONS(6814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(6491), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7349), + [anon_sym_unsigned] = ACTIONS(7349), + [anon_sym_long] = ACTIONS(7349), + [anon_sym_short] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6491), + [anon_sym_volatile] = ACTIONS(6491), + [anon_sym_restrict] = ACTIONS(6491), + [anon_sym___restrict__] = ACTIONS(6491), + [anon_sym__Atomic] = ACTIONS(6491), + [anon_sym__Noreturn] = ACTIONS(6491), + [anon_sym_noreturn] = ACTIONS(6491), + [anon_sym__Nonnull] = ACTIONS(6491), + [anon_sym_mutable] = ACTIONS(6491), + [anon_sym_constinit] = ACTIONS(6491), + [anon_sym_consteval] = ACTIONS(6491), + [anon_sym_alignas] = ACTIONS(7035), + [anon_sym__Alignas] = ACTIONS(7035), + [sym_primitive_type] = ACTIONS(6958), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + }, + [STATE(2114)] = { + [sym_identifier] = ACTIONS(7351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(7353), + [aux_sym_preproc_if_token2] = ACTIONS(7353), + [aux_sym_preproc_else_token1] = ACTIONS(7353), + [aux_sym_preproc_elif_token1] = ACTIONS(7351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7353), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7351), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym_SEMI] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7351), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7351), + [anon_sym_COLON] = ACTIONS(7351), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7353), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_RBRACE] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_EQ] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7351), + [anon_sym_volatile] = ACTIONS(7351), + [anon_sym_restrict] = ACTIONS(7351), + [anon_sym___restrict__] = ACTIONS(7351), + [anon_sym__Atomic] = ACTIONS(7351), + [anon_sym__Noreturn] = ACTIONS(7351), + [anon_sym_noreturn] = ACTIONS(7351), + [anon_sym__Nonnull] = ACTIONS(7351), + [anon_sym_mutable] = ACTIONS(7351), + [anon_sym_constinit] = ACTIONS(7351), + [anon_sym_consteval] = ACTIONS(7351), + [anon_sym_alignas] = ACTIONS(7351), + [anon_sym__Alignas] = ACTIONS(7351), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_STAR_EQ] = ACTIONS(7353), + [anon_sym_SLASH_EQ] = ACTIONS(7353), + [anon_sym_PERCENT_EQ] = ACTIONS(7353), + [anon_sym_PLUS_EQ] = ACTIONS(7353), + [anon_sym_DASH_EQ] = ACTIONS(7353), + [anon_sym_LT_LT_EQ] = ACTIONS(7353), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7353), + [anon_sym_CARET_EQ] = ACTIONS(7353), + [anon_sym_PIPE_EQ] = ACTIONS(7353), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_COLON_RBRACK] = ACTIONS(7353), + }, + [STATE(2115)] = { + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [aux_sym_sized_type_specifier_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(6960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [aux_sym_preproc_if_token2] = ACTIONS(6884), + [aux_sym_preproc_else_token1] = ACTIONS(6884), + [aux_sym_preproc_elif_token1] = ACTIONS(6886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(6491), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6963), + [anon_sym_unsigned] = ACTIONS(6963), + [anon_sym_long] = ACTIONS(6963), + [anon_sym_short] = ACTIONS(6963), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6491), + [anon_sym_volatile] = ACTIONS(6491), + [anon_sym_restrict] = ACTIONS(6491), + [anon_sym___restrict__] = ACTIONS(6491), + [anon_sym__Atomic] = ACTIONS(6491), + [anon_sym__Noreturn] = ACTIONS(6491), + [anon_sym_noreturn] = ACTIONS(6491), + [anon_sym__Nonnull] = ACTIONS(6491), + [anon_sym_mutable] = ACTIONS(6491), + [anon_sym_constinit] = ACTIONS(6491), + [anon_sym_consteval] = ACTIONS(6491), + [anon_sym_alignas] = ACTIONS(7035), + [anon_sym__Alignas] = ACTIONS(7035), + [sym_primitive_type] = ACTIONS(6965), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + }, + [STATE(2116)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(7084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [aux_sym_preproc_if_token2] = ACTIONS(7081), + [aux_sym_preproc_else_token1] = ACTIONS(7081), + [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(2117)] = { + [sym_identifier] = ACTIONS(7355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_RPAREN] = ACTIONS(7357), + [aux_sym_preproc_if_token2] = ACTIONS(7357), + [aux_sym_preproc_else_token1] = ACTIONS(7357), + [aux_sym_preproc_elif_token1] = ACTIONS(7355), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7357), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7355), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym_SEMI] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7355), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7355), + [anon_sym_COLON] = ACTIONS(7355), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7357), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_RBRACE] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7355), + [anon_sym_volatile] = ACTIONS(7355), + [anon_sym_restrict] = ACTIONS(7355), + [anon_sym___restrict__] = ACTIONS(7355), + [anon_sym__Atomic] = ACTIONS(7355), + [anon_sym__Noreturn] = ACTIONS(7355), + [anon_sym_noreturn] = ACTIONS(7355), + [anon_sym__Nonnull] = ACTIONS(7355), + [anon_sym_mutable] = ACTIONS(7355), + [anon_sym_constinit] = ACTIONS(7355), + [anon_sym_consteval] = ACTIONS(7355), + [anon_sym_alignas] = ACTIONS(7355), + [anon_sym__Alignas] = ACTIONS(7355), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_STAR_EQ] = ACTIONS(7357), + [anon_sym_SLASH_EQ] = ACTIONS(7357), + [anon_sym_PERCENT_EQ] = ACTIONS(7357), + [anon_sym_PLUS_EQ] = ACTIONS(7357), + [anon_sym_DASH_EQ] = ACTIONS(7357), + [anon_sym_LT_LT_EQ] = ACTIONS(7357), + [anon_sym_GT_GT_EQ] = ACTIONS(7357), + [anon_sym_AMP_EQ] = ACTIONS(7357), + [anon_sym_CARET_EQ] = ACTIONS(7357), + [anon_sym_PIPE_EQ] = ACTIONS(7357), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + [anon_sym_COLON_RBRACK] = ACTIONS(7357), + }, + [STATE(2118)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2119)] = { + [sym_type_qualifier] = STATE(2105), + [sym_alignas_qualifier] = STATE(2278), + [aux_sym__type_definition_type_repeat1] = STATE(2105), + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(7363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(7365), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7368), + [anon_sym_unsigned] = ACTIONS(7368), + [anon_sym_long] = ACTIONS(7368), + [anon_sym_short] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(7365), + [anon_sym_constexpr] = ACTIONS(7365), + [anon_sym_volatile] = ACTIONS(7365), + [anon_sym_restrict] = ACTIONS(7365), + [anon_sym___restrict__] = ACTIONS(7365), + [anon_sym__Atomic] = ACTIONS(7365), + [anon_sym__Noreturn] = ACTIONS(7365), + [anon_sym_noreturn] = ACTIONS(7365), + [anon_sym__Nonnull] = ACTIONS(7365), + [anon_sym_mutable] = ACTIONS(7365), + [anon_sym_constinit] = ACTIONS(7365), + [anon_sym_consteval] = ACTIONS(7365), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [sym_primitive_type] = ACTIONS(7373), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6814), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + }, + [STATE(2120)] = { + [sym_identifier] = ACTIONS(7375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_RPAREN] = ACTIONS(7377), + [aux_sym_preproc_if_token2] = ACTIONS(7377), + [aux_sym_preproc_else_token1] = ACTIONS(7377), + [aux_sym_preproc_elif_token1] = ACTIONS(7375), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym_SEMI] = ACTIONS(7377), + [anon_sym___extension__] = ACTIONS(7375), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7375), + [anon_sym_COLON] = ACTIONS(7375), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7377), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_RBRACE] = ACTIONS(7377), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7375), + [anon_sym_volatile] = ACTIONS(7375), + [anon_sym_restrict] = ACTIONS(7375), + [anon_sym___restrict__] = ACTIONS(7375), + [anon_sym__Atomic] = ACTIONS(7375), + [anon_sym__Noreturn] = ACTIONS(7375), + [anon_sym_noreturn] = ACTIONS(7375), + [anon_sym__Nonnull] = ACTIONS(7375), + [anon_sym_mutable] = ACTIONS(7375), + [anon_sym_constinit] = ACTIONS(7375), + [anon_sym_consteval] = ACTIONS(7375), + [anon_sym_alignas] = ACTIONS(7375), + [anon_sym__Alignas] = ACTIONS(7375), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_STAR_EQ] = ACTIONS(7377), + [anon_sym_SLASH_EQ] = ACTIONS(7377), + [anon_sym_PERCENT_EQ] = ACTIONS(7377), + [anon_sym_PLUS_EQ] = ACTIONS(7377), + [anon_sym_DASH_EQ] = ACTIONS(7377), + [anon_sym_LT_LT_EQ] = ACTIONS(7377), + [anon_sym_GT_GT_EQ] = ACTIONS(7377), + [anon_sym_AMP_EQ] = ACTIONS(7377), + [anon_sym_CARET_EQ] = ACTIONS(7377), + [anon_sym_PIPE_EQ] = ACTIONS(7377), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7377), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_COLON_RBRACK] = ACTIONS(7377), + }, + [STATE(2121)] = { + [sym_identifier] = ACTIONS(7379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_RPAREN] = ACTIONS(7381), + [aux_sym_preproc_if_token2] = ACTIONS(7381), + [aux_sym_preproc_else_token1] = ACTIONS(7381), + [aux_sym_preproc_elif_token1] = ACTIONS(7379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym_SEMI] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7379), + [anon_sym___attribute__] = ACTIONS(7379), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7381), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_RBRACE] = ACTIONS(7381), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7379), + [anon_sym_volatile] = ACTIONS(7379), + [anon_sym_restrict] = ACTIONS(7379), + [anon_sym___restrict__] = ACTIONS(7379), + [anon_sym__Atomic] = ACTIONS(7379), + [anon_sym__Noreturn] = ACTIONS(7379), + [anon_sym_noreturn] = ACTIONS(7379), + [anon_sym__Nonnull] = ACTIONS(7379), + [anon_sym_mutable] = ACTIONS(7379), + [anon_sym_constinit] = ACTIONS(7379), + [anon_sym_consteval] = ACTIONS(7379), + [anon_sym_alignas] = ACTIONS(7379), + [anon_sym__Alignas] = ACTIONS(7379), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_STAR_EQ] = ACTIONS(7381), + [anon_sym_SLASH_EQ] = ACTIONS(7381), + [anon_sym_PERCENT_EQ] = ACTIONS(7381), + [anon_sym_PLUS_EQ] = ACTIONS(7381), + [anon_sym_DASH_EQ] = ACTIONS(7381), + [anon_sym_LT_LT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7381), + [anon_sym_CARET_EQ] = ACTIONS(7381), + [anon_sym_PIPE_EQ] = ACTIONS(7381), + [anon_sym_and_eq] = ACTIONS(7379), + [anon_sym_or_eq] = ACTIONS(7379), + [anon_sym_xor_eq] = ACTIONS(7379), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7379), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7379), + [anon_sym_not_eq] = ACTIONS(7379), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7381), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7379), + [anon_sym_override] = ACTIONS(7379), + [anon_sym_requires] = ACTIONS(7379), + [anon_sym_COLON_RBRACK] = ACTIONS(7381), + }, + [STATE(2122)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [aux_sym_preproc_if_token2] = ACTIONS(7385), + [aux_sym_preproc_else_token1] = ACTIONS(7385), + [aux_sym_preproc_elif_token1] = ACTIONS(7383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7385), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(7383), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_RBRACK] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_STAR_EQ] = ACTIONS(7385), + [anon_sym_SLASH_EQ] = ACTIONS(7385), + [anon_sym_PERCENT_EQ] = ACTIONS(7385), + [anon_sym_PLUS_EQ] = ACTIONS(7385), + [anon_sym_DASH_EQ] = ACTIONS(7385), + [anon_sym_LT_LT_EQ] = ACTIONS(7385), + [anon_sym_GT_GT_EQ] = ACTIONS(7385), + [anon_sym_AMP_EQ] = ACTIONS(7385), + [anon_sym_CARET_EQ] = ACTIONS(7385), + [anon_sym_PIPE_EQ] = ACTIONS(7385), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7385), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + }, + [STATE(2123)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [aux_sym_preproc_if_token2] = ACTIONS(7389), + [aux_sym_preproc_else_token1] = ACTIONS(7389), + [aux_sym_preproc_elif_token1] = ACTIONS(7387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7387), + [anon_sym___attribute__] = ACTIONS(7387), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_RBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7387), + [anon_sym_volatile] = ACTIONS(7387), + [anon_sym_restrict] = ACTIONS(7387), + [anon_sym___restrict__] = ACTIONS(7387), + [anon_sym__Atomic] = ACTIONS(7387), + [anon_sym__Noreturn] = ACTIONS(7387), + [anon_sym_noreturn] = ACTIONS(7387), + [anon_sym__Nonnull] = ACTIONS(7387), + [anon_sym_mutable] = ACTIONS(7387), + [anon_sym_constinit] = ACTIONS(7387), + [anon_sym_consteval] = ACTIONS(7387), + [anon_sym_alignas] = ACTIONS(7387), + [anon_sym__Alignas] = ACTIONS(7387), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7387), + [anon_sym_or_eq] = ACTIONS(7387), + [anon_sym_xor_eq] = ACTIONS(7387), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7387), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7387), + [anon_sym_not_eq] = ACTIONS(7387), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7387), + [anon_sym_override] = ACTIONS(7387), + [anon_sym_requires] = ACTIONS(7387), + }, + [STATE(2124)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [aux_sym_preproc_if_token2] = ACTIONS(7393), + [aux_sym_preproc_else_token1] = ACTIONS(7393), + [aux_sym_preproc_elif_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7391), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(7391), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_RBRACK] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7391), + [anon_sym_volatile] = ACTIONS(7391), + [anon_sym_restrict] = ACTIONS(7391), + [anon_sym___restrict__] = ACTIONS(7391), + [anon_sym__Atomic] = ACTIONS(7391), + [anon_sym__Noreturn] = ACTIONS(7391), + [anon_sym_noreturn] = ACTIONS(7391), + [anon_sym__Nonnull] = ACTIONS(7391), + [anon_sym_mutable] = ACTIONS(7391), + [anon_sym_constinit] = ACTIONS(7391), + [anon_sym_consteval] = ACTIONS(7391), + [anon_sym_alignas] = ACTIONS(7391), + [anon_sym__Alignas] = ACTIONS(7391), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_STAR_EQ] = ACTIONS(7393), + [anon_sym_SLASH_EQ] = ACTIONS(7393), + [anon_sym_PERCENT_EQ] = ACTIONS(7393), + [anon_sym_PLUS_EQ] = ACTIONS(7393), + [anon_sym_DASH_EQ] = ACTIONS(7393), + [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7393), + [anon_sym_CARET_EQ] = ACTIONS(7393), + [anon_sym_PIPE_EQ] = ACTIONS(7393), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(2125)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [aux_sym_preproc_if_token2] = ACTIONS(7397), + [aux_sym_preproc_else_token1] = ACTIONS(7397), + [aux_sym_preproc_elif_token1] = ACTIONS(7395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7397), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7395), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7395), + [anon_sym_GT_GT] = ACTIONS(7395), + [anon_sym___extension__] = ACTIONS(7395), + [anon_sym___attribute__] = ACTIONS(7395), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_RBRACK] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7395), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7395), + [anon_sym_volatile] = ACTIONS(7395), + [anon_sym_restrict] = ACTIONS(7395), + [anon_sym___restrict__] = ACTIONS(7395), + [anon_sym__Atomic] = ACTIONS(7395), + [anon_sym__Noreturn] = ACTIONS(7395), + [anon_sym_noreturn] = ACTIONS(7395), + [anon_sym__Nonnull] = ACTIONS(7395), + [anon_sym_mutable] = ACTIONS(7395), + [anon_sym_constinit] = ACTIONS(7395), + [anon_sym_consteval] = ACTIONS(7395), + [anon_sym_alignas] = ACTIONS(7395), + [anon_sym__Alignas] = ACTIONS(7395), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_STAR_EQ] = ACTIONS(7397), + [anon_sym_SLASH_EQ] = ACTIONS(7397), + [anon_sym_PERCENT_EQ] = ACTIONS(7397), + [anon_sym_PLUS_EQ] = ACTIONS(7397), + [anon_sym_DASH_EQ] = ACTIONS(7397), + [anon_sym_LT_LT_EQ] = ACTIONS(7397), + [anon_sym_GT_GT_EQ] = ACTIONS(7397), + [anon_sym_AMP_EQ] = ACTIONS(7397), + [anon_sym_CARET_EQ] = ACTIONS(7397), + [anon_sym_PIPE_EQ] = ACTIONS(7397), + [anon_sym_and_eq] = ACTIONS(7395), + [anon_sym_or_eq] = ACTIONS(7395), + [anon_sym_xor_eq] = ACTIONS(7395), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7395), + [anon_sym_and] = ACTIONS(7395), + [anon_sym_bitor] = ACTIONS(7395), + [anon_sym_xor] = ACTIONS(7395), + [anon_sym_bitand] = ACTIONS(7395), + [anon_sym_not_eq] = ACTIONS(7395), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7395), + [anon_sym_override] = ACTIONS(7395), + [anon_sym_requires] = ACTIONS(7395), + }, + [STATE(2126)] = { + [sym_decltype_auto] = STATE(2101), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6804), + [anon_sym_decltype] = ACTIONS(6437), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2127)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(3811), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2128)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [aux_sym_preproc_if_token2] = ACTIONS(7404), + [aux_sym_preproc_else_token1] = ACTIONS(7404), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7406), + [anon_sym_unsigned] = ACTIONS(7406), + [anon_sym_long] = ACTIONS(7406), + [anon_sym_short] = ACTIONS(7406), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_RBRACK] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_STAR_EQ] = ACTIONS(7404), + [anon_sym_SLASH_EQ] = ACTIONS(7404), + [anon_sym_PERCENT_EQ] = ACTIONS(7404), + [anon_sym_PLUS_EQ] = ACTIONS(7404), + [anon_sym_DASH_EQ] = ACTIONS(7404), + [anon_sym_LT_LT_EQ] = ACTIONS(7404), + [anon_sym_GT_GT_EQ] = ACTIONS(7404), + [anon_sym_AMP_EQ] = ACTIONS(7404), + [anon_sym_CARET_EQ] = ACTIONS(7404), + [anon_sym_PIPE_EQ] = ACTIONS(7404), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + }, + [STATE(2129)] = { + [sym_argument_list] = STATE(3723), + [sym_initializer_list] = STATE(3825), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2130)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2072), + [sym_identifier] = ACTIONS(7408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [aux_sym_preproc_if_token2] = ACTIONS(7410), + [aux_sym_preproc_else_token1] = ACTIONS(7410), + [aux_sym_preproc_elif_token1] = ACTIONS(7408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7408), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7408), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7408), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7408), + [anon_sym_GT_GT] = ACTIONS(7408), + [anon_sym___extension__] = ACTIONS(7408), + [anon_sym___attribute__] = ACTIONS(7408), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(7412), + [anon_sym_unsigned] = ACTIONS(7412), + [anon_sym_long] = ACTIONS(7412), + [anon_sym_short] = ACTIONS(7412), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_RBRACK] = ACTIONS(7410), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7408), + [anon_sym_volatile] = ACTIONS(7408), + [anon_sym_restrict] = ACTIONS(7408), + [anon_sym___restrict__] = ACTIONS(7408), + [anon_sym__Atomic] = ACTIONS(7408), + [anon_sym__Noreturn] = ACTIONS(7408), + [anon_sym_noreturn] = ACTIONS(7408), + [anon_sym__Nonnull] = ACTIONS(7408), + [anon_sym_mutable] = ACTIONS(7408), + [anon_sym_constinit] = ACTIONS(7408), + [anon_sym_consteval] = ACTIONS(7408), + [anon_sym_alignas] = ACTIONS(7408), + [anon_sym__Alignas] = ACTIONS(7408), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_STAR_EQ] = ACTIONS(7410), + [anon_sym_SLASH_EQ] = ACTIONS(7410), + [anon_sym_PERCENT_EQ] = ACTIONS(7410), + [anon_sym_PLUS_EQ] = ACTIONS(7410), + [anon_sym_DASH_EQ] = ACTIONS(7410), + [anon_sym_LT_LT_EQ] = ACTIONS(7410), + [anon_sym_GT_GT_EQ] = ACTIONS(7410), + [anon_sym_AMP_EQ] = ACTIONS(7410), + [anon_sym_CARET_EQ] = ACTIONS(7410), + [anon_sym_PIPE_EQ] = ACTIONS(7410), + [anon_sym_and_eq] = ACTIONS(7408), + [anon_sym_or_eq] = ACTIONS(7408), + [anon_sym_xor_eq] = ACTIONS(7408), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7408), + [anon_sym_and] = ACTIONS(7408), + [anon_sym_bitor] = ACTIONS(7408), + [anon_sym_xor] = ACTIONS(7408), + [anon_sym_bitand] = ACTIONS(7408), + [anon_sym_not_eq] = ACTIONS(7408), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7408), + [anon_sym_override] = ACTIONS(7408), + [anon_sym_requires] = ACTIONS(7408), + }, + [STATE(2131)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2835), + [sym_ms_pointer_modifier] = STATE(2106), + [sym__abstract_declarator] = STATE(5727), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2539), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2539), + [aux_sym_pointer_declarator_repeat1] = STATE(2106), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6457), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6457), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6457), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(6935), + [sym_ms_restrict_modifier] = ACTIONS(6937), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), + [sym_ms_signed_ptr_modifier] = ACTIONS(6939), + [anon_sym__unaligned] = ACTIONS(6941), + [anon_sym___unaligned] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6457), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_STAR_EQ] = ACTIONS(6459), + [anon_sym_SLASH_EQ] = ACTIONS(6459), + [anon_sym_PERCENT_EQ] = ACTIONS(6459), + [anon_sym_PLUS_EQ] = ACTIONS(6459), + [anon_sym_DASH_EQ] = ACTIONS(6459), + [anon_sym_LT_LT_EQ] = ACTIONS(6459), + [anon_sym_GT_GT_EQ] = ACTIONS(6459), + [anon_sym_AMP_EQ] = ACTIONS(6459), + [anon_sym_CARET_EQ] = ACTIONS(6459), + [anon_sym_PIPE_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6457), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + }, + [STATE(2132)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(7414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [aux_sym_preproc_if_token2] = ACTIONS(7416), + [aux_sym_preproc_else_token1] = ACTIONS(7416), + [aux_sym_preproc_elif_token1] = ACTIONS(7414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7414), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7414), + [anon_sym_GT_GT] = ACTIONS(7414), + [anon_sym___extension__] = ACTIONS(7414), + [anon_sym___attribute__] = ACTIONS(7414), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7203), + [anon_sym_unsigned] = ACTIONS(7203), + [anon_sym_long] = ACTIONS(7203), + [anon_sym_short] = ACTIONS(7203), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_RBRACK] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7414), + [anon_sym_volatile] = ACTIONS(7414), + [anon_sym_restrict] = ACTIONS(7414), + [anon_sym___restrict__] = ACTIONS(7414), + [anon_sym__Atomic] = ACTIONS(7414), + [anon_sym__Noreturn] = ACTIONS(7414), + [anon_sym_noreturn] = ACTIONS(7414), + [anon_sym__Nonnull] = ACTIONS(7414), + [anon_sym_mutable] = ACTIONS(7414), + [anon_sym_constinit] = ACTIONS(7414), + [anon_sym_consteval] = ACTIONS(7414), + [anon_sym_alignas] = ACTIONS(7414), + [anon_sym__Alignas] = ACTIONS(7414), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_STAR_EQ] = ACTIONS(7416), + [anon_sym_SLASH_EQ] = ACTIONS(7416), + [anon_sym_PERCENT_EQ] = ACTIONS(7416), + [anon_sym_PLUS_EQ] = ACTIONS(7416), + [anon_sym_DASH_EQ] = ACTIONS(7416), + [anon_sym_LT_LT_EQ] = ACTIONS(7416), + [anon_sym_GT_GT_EQ] = ACTIONS(7416), + [anon_sym_AMP_EQ] = ACTIONS(7416), + [anon_sym_CARET_EQ] = ACTIONS(7416), + [anon_sym_PIPE_EQ] = ACTIONS(7416), + [anon_sym_and_eq] = ACTIONS(7414), + [anon_sym_or_eq] = ACTIONS(7414), + [anon_sym_xor_eq] = ACTIONS(7414), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7414), + [anon_sym_and] = ACTIONS(7414), + [anon_sym_bitor] = ACTIONS(7414), + [anon_sym_xor] = ACTIONS(7414), + [anon_sym_bitand] = ACTIONS(7414), + [anon_sym_not_eq] = ACTIONS(7414), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7414), + [anon_sym_override] = ACTIONS(7414), + [anon_sym_requires] = ACTIONS(7414), + }, + [STATE(2133)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [aux_sym_preproc_if_token2] = ACTIONS(6629), + [aux_sym_preproc_else_token1] = ACTIONS(6629), + [aux_sym_preproc_elif_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(7418), + [anon_sym_unsigned] = ACTIONS(7418), + [anon_sym_long] = ACTIONS(7418), + [anon_sym_short] = ACTIONS(7418), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_RBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6629), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_and_eq] = ACTIONS(6627), + [anon_sym_or_eq] = ACTIONS(6627), + [anon_sym_xor_eq] = ACTIONS(6627), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(2134)] = { + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [aux_sym_preproc_if_token2] = ACTIONS(7423), + [aux_sym_preproc_else_token1] = ACTIONS(7423), + [aux_sym_preproc_elif_token1] = ACTIONS(7421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7423), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(7421), + [anon_sym___attribute] = ACTIONS(7421), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_RBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_COLON_RBRACK] = ACTIONS(7423), + }, + [STATE(2135)] = { + [sym__abstract_declarator] = STATE(4362), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2137), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), + [anon_sym_RBRACE] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6999), + }, + [STATE(2136)] = { + [sym_type_qualifier] = STATE(2199), + [sym_alignas_qualifier] = STATE(2312), + [aux_sym__type_definition_type_repeat1] = STATE(2199), + [aux_sym_sized_type_specifier_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(7425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(7427), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6963), + [anon_sym_unsigned] = ACTIONS(6963), + [anon_sym_long] = ACTIONS(6963), + [anon_sym_short] = ACTIONS(6963), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_RBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7427), + [anon_sym_volatile] = ACTIONS(7427), + [anon_sym_restrict] = ACTIONS(7427), + [anon_sym___restrict__] = ACTIONS(7427), + [anon_sym__Atomic] = ACTIONS(7427), + [anon_sym__Noreturn] = ACTIONS(7427), + [anon_sym_noreturn] = ACTIONS(7427), + [anon_sym__Nonnull] = ACTIONS(7427), + [anon_sym_mutable] = ACTIONS(7427), + [anon_sym_constinit] = ACTIONS(7427), + [anon_sym_consteval] = ACTIONS(7427), + [anon_sym_alignas] = ACTIONS(7430), + [anon_sym__Alignas] = ACTIONS(7430), + [sym_primitive_type] = ACTIONS(6965), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(2137)] = { + [sym__abstract_declarator] = STATE(4397), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7005), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), + [anon_sym_RBRACE] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7003), + }, + [STATE(2138)] = { + [sym__abstract_declarator] = STATE(4416), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2139), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2139), + [sym_identifier] = ACTIONS(6993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_preproc_if_token2] = ACTIONS(6991), + [aux_sym_preproc_else_token1] = ACTIONS(6991), + [aux_sym_preproc_elif_token1] = ACTIONS(6993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6993), + [anon_sym_or_eq] = ACTIONS(6993), + [anon_sym_xor_eq] = ACTIONS(6993), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6993), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6993), + [anon_sym_not_eq] = ACTIONS(6993), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + }, + [STATE(2139)] = { + [sym__abstract_declarator] = STATE(4417), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [aux_sym_preproc_if_token2] = ACTIONS(6995), + [aux_sym_preproc_else_token1] = ACTIONS(6995), + [aux_sym_preproc_elif_token1] = ACTIONS(6997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6997), + [anon_sym_or_eq] = ACTIONS(6997), + [anon_sym_xor_eq] = ACTIONS(6997), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6997), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6997), + [anon_sym_not_eq] = ACTIONS(6997), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + }, + [STATE(2140)] = { + [sym__abstract_declarator] = STATE(4418), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2142), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2142), + [sym_identifier] = ACTIONS(7001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [aux_sym_preproc_if_token2] = ACTIONS(6999), + [aux_sym_preproc_else_token1] = ACTIONS(6999), + [aux_sym_preproc_elif_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(7001), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(7001), + [anon_sym_not_eq] = ACTIONS(7001), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + }, + [STATE(2141)] = { + [sym__abstract_declarator] = STATE(4422), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6495), + [anon_sym_or_eq] = ACTIONS(6495), + [anon_sym_xor_eq] = ACTIONS(6495), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2142)] = { + [sym__abstract_declarator] = STATE(4293), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(7005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [aux_sym_preproc_if_token2] = ACTIONS(7003), + [aux_sym_preproc_else_token1] = ACTIONS(7003), + [aux_sym_preproc_elif_token1] = ACTIONS(7005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7005), + [anon_sym_or_eq] = ACTIONS(7005), + [anon_sym_xor_eq] = ACTIONS(7005), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7005), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7005), + [anon_sym_not_eq] = ACTIONS(7005), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + }, + [STATE(2143)] = { + [sym__abstract_declarator] = STATE(4423), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1841), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(7009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [aux_sym_preproc_if_token2] = ACTIONS(7007), + [aux_sym_preproc_else_token1] = ACTIONS(7007), + [aux_sym_preproc_elif_token1] = ACTIONS(7009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6598), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6469), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6469), + [anon_sym_volatile] = ACTIONS(6469), + [anon_sym_restrict] = ACTIONS(6469), + [anon_sym___restrict__] = ACTIONS(6469), + [anon_sym__Atomic] = ACTIONS(6469), + [anon_sym__Noreturn] = ACTIONS(6469), + [anon_sym_noreturn] = ACTIONS(6469), + [anon_sym__Nonnull] = ACTIONS(6469), + [anon_sym_mutable] = ACTIONS(6469), + [anon_sym_constinit] = ACTIONS(6469), + [anon_sym_consteval] = ACTIONS(6469), + [anon_sym_alignas] = ACTIONS(6477), + [anon_sym__Alignas] = ACTIONS(6477), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7009), + [anon_sym_or_eq] = ACTIONS(7009), + [anon_sym_xor_eq] = ACTIONS(7009), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7009), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7009), + [anon_sym_not_eq] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + }, + [STATE(2144)] = { + [sym_attribute_specifier] = STATE(3106), + [sym_attribute_declaration] = STATE(6276), + [sym_type_qualifier] = STATE(3653), + [sym_alignas_qualifier] = STATE(3874), + [sym_gnu_asm_expression] = STATE(8995), + [sym_virtual_specifier] = STATE(6331), + [sym_ref_qualifier] = STATE(3994), + [sym__function_attributes_start] = STATE(3863), + [sym__function_exception_specification] = STATE(4463), + [sym__function_attributes_end] = STATE(6171), + [sym__function_postfix] = STATE(6492), + [sym_trailing_return_type] = STATE(6228), + [sym_noexcept] = STATE(4463), + [sym_throw_specifier] = STATE(4463), + [sym_requires_clause] = STATE(6492), + [aux_sym_type_definition_repeat1] = STATE(3106), + [aux_sym__type_definition_type_repeat1] = STATE(3653), + [aux_sym_attributed_declarator_repeat1] = STATE(6276), + [aux_sym__function_postfix_repeat1] = STATE(6331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(7436), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(7439), + [anon_sym___attribute__] = ACTIONS(7441), + [anon_sym___attribute] = ACTIONS(7443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(7447), + [anon_sym_constexpr] = ACTIONS(7439), + [anon_sym_volatile] = ACTIONS(7439), + [anon_sym_restrict] = ACTIONS(7439), + [anon_sym___restrict__] = ACTIONS(7439), + [anon_sym__Atomic] = ACTIONS(7439), + [anon_sym__Noreturn] = ACTIONS(7439), + [anon_sym_noreturn] = ACTIONS(7439), + [anon_sym__Nonnull] = ACTIONS(7439), + [anon_sym_mutable] = ACTIONS(7439), + [anon_sym_constinit] = ACTIONS(7439), + [anon_sym_consteval] = ACTIONS(7439), + [anon_sym_alignas] = ACTIONS(7449), + [anon_sym__Alignas] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7451), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7454), + [anon_sym_override] = ACTIONS(7454), + [anon_sym_GT2] = ACTIONS(6113), + [anon_sym_noexcept] = ACTIONS(7456), + [anon_sym_throw] = ACTIONS(7458), + [anon_sym_requires] = ACTIONS(7460), + }, + [STATE(2145)] = { + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2348), + [sym_identifier] = ACTIONS(7462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6886), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7467), + [anon_sym_unsigned] = ACTIONS(7467), + [anon_sym_long] = ACTIONS(7467), + [anon_sym_short] = ACTIONS(7467), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(7464), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_mutable] = ACTIONS(7464), + [anon_sym_constinit] = ACTIONS(7464), + [anon_sym_consteval] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7469), + [anon_sym__Alignas] = ACTIONS(7469), + [sym_primitive_type] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6886), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_GT2] = ACTIONS(6884), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(2146)] = { + [sym__abstract_declarator] = STATE(4333), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2147), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6991), + [anon_sym___attribute] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(2147)] = { + [sym__abstract_declarator] = STATE(4335), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6995), + [anon_sym___attribute] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(2148)] = { + [sym__abstract_declarator] = STATE(4336), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2150), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(2149)] = { + [sym__abstract_declarator] = STATE(4340), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2150)] = { + [sym__abstract_declarator] = STATE(4337), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(7003), + [anon_sym___attribute] = ACTIONS(7005), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(2151)] = { + [sym__abstract_declarator] = STATE(4341), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1870), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6578), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6580), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(7007), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(2152)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3955), + [sym__function_attributes_start] = STATE(3886), + [sym__function_exception_specification] = STATE(4483), + [sym__function_attributes_end] = STATE(6078), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(5726), + [sym_noexcept] = STATE(4483), + [sym_throw_specifier] = STATE(4483), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6904), + [anon_sym___attribute__] = ACTIONS(7474), + [anon_sym___attribute] = ACTIONS(7477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym___restrict__] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym__Noreturn] = ACTIONS(6904), + [anon_sym_noreturn] = ACTIONS(6904), + [anon_sym__Nonnull] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_constinit] = ACTIONS(6904), + [anon_sym_consteval] = ACTIONS(6904), + [anon_sym_alignas] = ACTIONS(6908), + [anon_sym__Alignas] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7480), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6913), + [anon_sym_override] = ACTIONS(6913), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6919), + }, + [STATE(2153)] = { + [sym_attribute_specifier] = STATE(3106), + [sym_attribute_declaration] = STATE(6276), + [sym_type_qualifier] = STATE(3653), + [sym_alignas_qualifier] = STATE(3874), + [sym_gnu_asm_expression] = STATE(8995), + [sym_virtual_specifier] = STATE(6331), + [sym_ref_qualifier] = STATE(3959), + [sym__function_attributes_start] = STATE(3888), + [sym__function_exception_specification] = STATE(4493), + [sym__function_attributes_end] = STATE(6176), + [sym__function_postfix] = STATE(6492), + [sym_trailing_return_type] = STATE(6212), + [sym_noexcept] = STATE(4493), + [sym_throw_specifier] = STATE(4493), + [sym_requires_clause] = STATE(6492), + [aux_sym_type_definition_repeat1] = STATE(3106), + [aux_sym__type_definition_type_repeat1] = STATE(3653), + [aux_sym_attributed_declarator_repeat1] = STATE(6276), + [aux_sym__function_postfix_repeat1] = STATE(6331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(7436), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6111), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(7439), + [anon_sym___attribute__] = ACTIONS(7441), + [anon_sym___attribute] = ACTIONS(7443), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(7447), + [anon_sym_constexpr] = ACTIONS(7439), + [anon_sym_volatile] = ACTIONS(7439), + [anon_sym_restrict] = ACTIONS(7439), + [anon_sym___restrict__] = ACTIONS(7439), + [anon_sym__Atomic] = ACTIONS(7439), + [anon_sym__Noreturn] = ACTIONS(7439), + [anon_sym_noreturn] = ACTIONS(7439), + [anon_sym__Nonnull] = ACTIONS(7439), + [anon_sym_mutable] = ACTIONS(7439), + [anon_sym_constinit] = ACTIONS(7439), + [anon_sym_consteval] = ACTIONS(7439), + [anon_sym_alignas] = ACTIONS(7449), + [anon_sym__Alignas] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7451), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7483), + [anon_sym_override] = ACTIONS(7483), + [anon_sym_GT2] = ACTIONS(6113), + [anon_sym_noexcept] = ACTIONS(7456), + [anon_sym_throw] = ACTIONS(7458), + [anon_sym_requires] = ACTIONS(7486), + }, + [STATE(2154)] = { + [sym_attribute_specifier] = STATE(3075), + [sym_attribute_declaration] = STATE(6313), + [sym_type_qualifier] = STATE(3620), + [sym_alignas_qualifier] = STATE(3884), + [sym_gnu_asm_expression] = STATE(8976), + [sym_virtual_specifier] = STATE(6389), + [sym_ref_qualifier] = STATE(3962), + [sym__function_attributes_start] = STATE(3889), + [sym__function_exception_specification] = STATE(4515), + [sym__function_attributes_end] = STATE(6160), + [sym__function_postfix] = STATE(6555), + [sym_trailing_return_type] = STATE(6233), + [sym_noexcept] = STATE(4515), + [sym_throw_specifier] = STATE(4515), + [sym_requires_clause] = STATE(6555), + [aux_sym_type_definition_repeat1] = STATE(3075), + [aux_sym__type_definition_type_repeat1] = STATE(3620), + [aux_sym_attributed_declarator_repeat1] = STATE(6313), + [aux_sym__function_postfix_repeat1] = STATE(6389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(7489), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(7492), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7497), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7501), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6113), + [anon_sym_const] = ACTIONS(7503), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7507), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7510), + [anon_sym_override] = ACTIONS(7510), + [anon_sym_noexcept] = ACTIONS(7513), + [anon_sym_throw] = ACTIONS(7515), + [anon_sym_requires] = ACTIONS(7517), + }, + [STATE(2155)] = { + [sym_template_argument_list] = STATE(2030), + [sym_identifier] = ACTIONS(6755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [aux_sym_preproc_if_token2] = ACTIONS(6748), + [aux_sym_preproc_else_token1] = ACTIONS(6748), + [aux_sym_preproc_elif_token1] = ACTIONS(6755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6755), + [anon_sym_CARET] = ACTIONS(6755), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6755), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6755), + [anon_sym_LT] = ACTIONS(6898), + [anon_sym_LT_LT] = ACTIONS(6755), + [anon_sym_GT_GT] = ACTIONS(6755), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6755), + [anon_sym___attribute] = ACTIONS(6755), + [anon_sym_COLON] = ACTIONS(6755), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6755), + [anon_sym_or_eq] = ACTIONS(6755), + [anon_sym_xor_eq] = ACTIONS(6755), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6755), + [anon_sym_and] = ACTIONS(6755), + [anon_sym_bitor] = ACTIONS(6755), + [anon_sym_xor] = ACTIONS(6755), + [anon_sym_bitand] = ACTIONS(6755), + [anon_sym_not_eq] = ACTIONS(6755), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_DOT] = ACTIONS(6755), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6748), + }, + [STATE(2156)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(7520), + [anon_sym_unsigned] = ACTIONS(7520), + [anon_sym_long] = ACTIONS(7520), + [anon_sym_short] = ACTIONS(7520), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2157)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_attribute_declaration] = STATE(4622), + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2559), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3969), + [sym__function_attributes_start] = STATE(3894), + [sym__function_exception_specification] = STATE(4496), + [sym__function_attributes_end] = STATE(6040), + [sym__function_postfix] = STATE(5202), + [sym_trailing_return_type] = STATE(5706), + [sym_noexcept] = STATE(4496), + [sym_throw_specifier] = STATE(4496), + [sym_requires_clause] = STATE(5202), + [aux_sym_type_definition_repeat1] = STATE(2215), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(6851), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6854), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(6904), + [anon_sym___attribute__] = ACTIONS(7474), + [anon_sym___attribute] = ACTIONS(7477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym___restrict__] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym__Noreturn] = ACTIONS(6904), + [anon_sym_noreturn] = ACTIONS(6904), + [anon_sym__Nonnull] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_constinit] = ACTIONS(6904), + [anon_sym_consteval] = ACTIONS(6904), + [anon_sym_alignas] = ACTIONS(6908), + [anon_sym__Alignas] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7480), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6921), + [anon_sym_override] = ACTIONS(6921), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6924), + }, + [STATE(2158)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym_SEMI] = ACTIONS(7389), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(7389), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_COLON] = ACTIONS(7387), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_RBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_COLON_RBRACK] = ACTIONS(7389), + }, + [STATE(2159)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [anon_sym_RPAREN] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7395), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7395), + [anon_sym_GT_GT] = ACTIONS(7395), + [anon_sym_SEMI] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7397), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_COLON] = ACTIONS(7395), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7397), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_RBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7395), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_STAR_EQ] = ACTIONS(7397), + [anon_sym_SLASH_EQ] = ACTIONS(7397), + [anon_sym_PERCENT_EQ] = ACTIONS(7397), + [anon_sym_PLUS_EQ] = ACTIONS(7397), + [anon_sym_DASH_EQ] = ACTIONS(7397), + [anon_sym_LT_LT_EQ] = ACTIONS(7397), + [anon_sym_GT_GT_EQ] = ACTIONS(7397), + [anon_sym_AMP_EQ] = ACTIONS(7397), + [anon_sym_CARET_EQ] = ACTIONS(7397), + [anon_sym_PIPE_EQ] = ACTIONS(7397), + [anon_sym_and_eq] = ACTIONS(7397), + [anon_sym_or_eq] = ACTIONS(7397), + [anon_sym_xor_eq] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7395), + [anon_sym_and] = ACTIONS(7395), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7395), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + [anon_sym_COLON_RBRACK] = ACTIONS(7397), + }, + [STATE(2160)] = { + [sym__abstract_declarator] = STATE(4403), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2168), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), + [anon_sym_RBRACE] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6991), + }, + [STATE(2161)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [anon_sym_RPAREN] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7391), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym_SEMI] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7393), + [anon_sym___attribute__] = ACTIONS(7393), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_COLON] = ACTIONS(7391), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7393), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_RBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7393), + [anon_sym_volatile] = ACTIONS(7393), + [anon_sym_restrict] = ACTIONS(7393), + [anon_sym___restrict__] = ACTIONS(7393), + [anon_sym__Atomic] = ACTIONS(7393), + [anon_sym__Noreturn] = ACTIONS(7393), + [anon_sym_noreturn] = ACTIONS(7393), + [anon_sym__Nonnull] = ACTIONS(7393), + [anon_sym_mutable] = ACTIONS(7393), + [anon_sym_constinit] = ACTIONS(7393), + [anon_sym_consteval] = ACTIONS(7393), + [anon_sym_alignas] = ACTIONS(7393), + [anon_sym__Alignas] = ACTIONS(7393), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_STAR_EQ] = ACTIONS(7393), + [anon_sym_SLASH_EQ] = ACTIONS(7393), + [anon_sym_PERCENT_EQ] = ACTIONS(7393), + [anon_sym_PLUS_EQ] = ACTIONS(7393), + [anon_sym_DASH_EQ] = ACTIONS(7393), + [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7393), + [anon_sym_CARET_EQ] = ACTIONS(7393), + [anon_sym_PIPE_EQ] = ACTIONS(7393), + [anon_sym_and_eq] = ACTIONS(7393), + [anon_sym_or_eq] = ACTIONS(7393), + [anon_sym_xor_eq] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + [anon_sym_COLON_RBRACK] = ACTIONS(7393), + }, + [STATE(2162)] = { + [sym_type_qualifier] = STATE(2136), + [sym_alignas_qualifier] = STATE(2312), + [aux_sym__type_definition_type_repeat1] = STATE(2136), + [aux_sym_sized_type_specifier_repeat1] = STATE(2274), + [sym_identifier] = ACTIONS(7524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(7526), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7529), + [anon_sym_unsigned] = ACTIONS(7529), + [anon_sym_long] = ACTIONS(7529), + [anon_sym_short] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_RBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(7526), + [anon_sym_constexpr] = ACTIONS(7526), + [anon_sym_volatile] = ACTIONS(7526), + [anon_sym_restrict] = ACTIONS(7526), + [anon_sym___restrict__] = ACTIONS(7526), + [anon_sym__Atomic] = ACTIONS(7526), + [anon_sym__Noreturn] = ACTIONS(7526), + [anon_sym_noreturn] = ACTIONS(7526), + [anon_sym__Nonnull] = ACTIONS(7526), + [anon_sym_mutable] = ACTIONS(7526), + [anon_sym_constinit] = ACTIONS(7526), + [anon_sym_consteval] = ACTIONS(7526), + [anon_sym_alignas] = ACTIONS(7531), + [anon_sym__Alignas] = ACTIONS(7531), + [sym_primitive_type] = ACTIONS(6958), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(2163)] = { + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7534), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7534), + [anon_sym_constexpr] = ACTIONS(7534), + [anon_sym_volatile] = ACTIONS(7534), + [anon_sym_restrict] = ACTIONS(7534), + [anon_sym___restrict__] = ACTIONS(7534), + [anon_sym__Atomic] = ACTIONS(7534), + [anon_sym__Noreturn] = ACTIONS(7534), + [anon_sym_noreturn] = ACTIONS(7534), + [anon_sym__Nonnull] = ACTIONS(7534), + [anon_sym_mutable] = ACTIONS(7534), + [anon_sym_constinit] = ACTIONS(7534), + [anon_sym_consteval] = ACTIONS(7534), + [anon_sym_alignas] = ACTIONS(7537), + [anon_sym__Alignas] = ACTIONS(7537), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + }, + [STATE(2164)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [anon_sym_RPAREN] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym_SEMI] = ACTIONS(7404), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7404), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7540), + [anon_sym_unsigned] = ACTIONS(7540), + [anon_sym_long] = ACTIONS(7540), + [anon_sym_short] = ACTIONS(7540), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_mutable] = ACTIONS(7404), + [anon_sym_constinit] = ACTIONS(7404), + [anon_sym_consteval] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_STAR_EQ] = ACTIONS(7404), + [anon_sym_SLASH_EQ] = ACTIONS(7404), + [anon_sym_PERCENT_EQ] = ACTIONS(7404), + [anon_sym_PLUS_EQ] = ACTIONS(7404), + [anon_sym_DASH_EQ] = ACTIONS(7404), + [anon_sym_LT_LT_EQ] = ACTIONS(7404), + [anon_sym_GT_GT_EQ] = ACTIONS(7404), + [anon_sym_AMP_EQ] = ACTIONS(7404), + [anon_sym_CARET_EQ] = ACTIONS(7404), + [anon_sym_PIPE_EQ] = ACTIONS(7404), + [anon_sym_and_eq] = ACTIONS(7404), + [anon_sym_or_eq] = ACTIONS(7404), + [anon_sym_xor_eq] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7404), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7404), + [anon_sym_not_eq] = ACTIONS(7404), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7404), + [anon_sym_override] = ACTIONS(7404), + [anon_sym_requires] = ACTIONS(7404), + [anon_sym_COLON_RBRACK] = ACTIONS(7404), + }, + [STATE(2165)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7408), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7408), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7408), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7408), + [anon_sym_GT_GT] = ACTIONS(7408), + [anon_sym_SEMI] = ACTIONS(7410), + [anon_sym___extension__] = ACTIONS(7410), + [anon_sym___attribute__] = ACTIONS(7410), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7410), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_RBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(7542), + [anon_sym_unsigned] = ACTIONS(7542), + [anon_sym_long] = ACTIONS(7542), + [anon_sym_short] = ACTIONS(7542), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7410), + [anon_sym_volatile] = ACTIONS(7410), + [anon_sym_restrict] = ACTIONS(7410), + [anon_sym___restrict__] = ACTIONS(7410), + [anon_sym__Atomic] = ACTIONS(7410), + [anon_sym__Noreturn] = ACTIONS(7410), + [anon_sym_noreturn] = ACTIONS(7410), + [anon_sym__Nonnull] = ACTIONS(7410), + [anon_sym_mutable] = ACTIONS(7410), + [anon_sym_constinit] = ACTIONS(7410), + [anon_sym_consteval] = ACTIONS(7410), + [anon_sym_alignas] = ACTIONS(7410), + [anon_sym__Alignas] = ACTIONS(7410), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_STAR_EQ] = ACTIONS(7410), + [anon_sym_SLASH_EQ] = ACTIONS(7410), + [anon_sym_PERCENT_EQ] = ACTIONS(7410), + [anon_sym_PLUS_EQ] = ACTIONS(7410), + [anon_sym_DASH_EQ] = ACTIONS(7410), + [anon_sym_LT_LT_EQ] = ACTIONS(7410), + [anon_sym_GT_GT_EQ] = ACTIONS(7410), + [anon_sym_AMP_EQ] = ACTIONS(7410), + [anon_sym_CARET_EQ] = ACTIONS(7410), + [anon_sym_PIPE_EQ] = ACTIONS(7410), + [anon_sym_and_eq] = ACTIONS(7410), + [anon_sym_or_eq] = ACTIONS(7410), + [anon_sym_xor_eq] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7408), + [anon_sym_and] = ACTIONS(7408), + [anon_sym_bitor] = ACTIONS(7410), + [anon_sym_xor] = ACTIONS(7408), + [anon_sym_bitand] = ACTIONS(7410), + [anon_sym_not_eq] = ACTIONS(7410), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7410), + [anon_sym_override] = ACTIONS(7410), + [anon_sym_requires] = ACTIONS(7410), + [anon_sym_COLON_RBRACK] = ACTIONS(7410), + }, + [STATE(2166)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2200), + [sym__function_exception_specification] = STATE(2490), + [sym__function_attributes_end] = STATE(3845), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2490), + [sym_throw_specifier] = STATE(2490), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7560), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2167)] = { + [sym__abstract_declarator] = STATE(4307), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), + [anon_sym_RBRACE] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7007), + }, + [STATE(2168)] = { + [sym__abstract_declarator] = STATE(4361), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), + [anon_sym_RBRACE] = ACTIONS(6995), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6995), + }, + [STATE(2169)] = { + [sym_type_qualifier] = STATE(2145), + [sym_alignas_qualifier] = STATE(2295), + [aux_sym__type_definition_type_repeat1] = STATE(2145), + [aux_sym_sized_type_specifier_repeat1] = STATE(2271), + [sym_identifier] = ACTIONS(7563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6814), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(7565), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7568), + [anon_sym_unsigned] = ACTIONS(7568), + [anon_sym_long] = ACTIONS(7568), + [anon_sym_short] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7565), + [anon_sym_volatile] = ACTIONS(7565), + [anon_sym_restrict] = ACTIONS(7565), + [anon_sym___restrict__] = ACTIONS(7565), + [anon_sym__Atomic] = ACTIONS(7565), + [anon_sym__Noreturn] = ACTIONS(7565), + [anon_sym_noreturn] = ACTIONS(7565), + [anon_sym__Nonnull] = ACTIONS(7565), + [anon_sym_mutable] = ACTIONS(7565), + [anon_sym_constinit] = ACTIONS(7565), + [anon_sym_consteval] = ACTIONS(7565), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [sym_primitive_type] = ACTIONS(7573), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6814), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_GT2] = ACTIONS(6812), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(2170)] = { + [sym_attribute_specifier] = STATE(2419), + [sym_attribute_declaration] = STATE(4745), + [sym_type_qualifier] = STATE(2327), + [sym_alignas_qualifier] = STATE(2498), + [aux_sym_type_definition_repeat1] = STATE(2419), + [aux_sym__type_definition_type_repeat1] = STATE(2327), + [aux_sym_attributed_declarator_repeat1] = STATE(4745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6408), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6416), + [anon_sym_constexpr] = ACTIONS(6408), + [anon_sym_volatile] = ACTIONS(6408), + [anon_sym_restrict] = ACTIONS(6408), + [anon_sym___restrict__] = ACTIONS(6408), + [anon_sym__Atomic] = ACTIONS(6408), + [anon_sym__Noreturn] = ACTIONS(6408), + [anon_sym_noreturn] = ACTIONS(6408), + [anon_sym__Nonnull] = ACTIONS(6408), + [anon_sym_mutable] = ACTIONS(6408), + [anon_sym_constinit] = ACTIONS(6408), + [anon_sym_consteval] = ACTIONS(6408), + [anon_sym_alignas] = ACTIONS(6418), + [anon_sym__Alignas] = ACTIONS(6418), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6388), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + }, + [STATE(2171)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7414), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7414), + [anon_sym_GT_GT] = ACTIONS(7414), + [anon_sym_SEMI] = ACTIONS(7416), + [anon_sym___extension__] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7416), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_RBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym___restrict__] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym__Noreturn] = ACTIONS(7416), + [anon_sym_noreturn] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym_mutable] = ACTIONS(7416), + [anon_sym_constinit] = ACTIONS(7416), + [anon_sym_consteval] = ACTIONS(7416), + [anon_sym_alignas] = ACTIONS(7416), + [anon_sym__Alignas] = ACTIONS(7416), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_STAR_EQ] = ACTIONS(7416), + [anon_sym_SLASH_EQ] = ACTIONS(7416), + [anon_sym_PERCENT_EQ] = ACTIONS(7416), + [anon_sym_PLUS_EQ] = ACTIONS(7416), + [anon_sym_DASH_EQ] = ACTIONS(7416), + [anon_sym_LT_LT_EQ] = ACTIONS(7416), + [anon_sym_GT_GT_EQ] = ACTIONS(7416), + [anon_sym_AMP_EQ] = ACTIONS(7416), + [anon_sym_CARET_EQ] = ACTIONS(7416), + [anon_sym_PIPE_EQ] = ACTIONS(7416), + [anon_sym_and_eq] = ACTIONS(7416), + [anon_sym_or_eq] = ACTIONS(7416), + [anon_sym_xor_eq] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7414), + [anon_sym_and] = ACTIONS(7414), + [anon_sym_bitor] = ACTIONS(7416), + [anon_sym_xor] = ACTIONS(7414), + [anon_sym_bitand] = ACTIONS(7416), + [anon_sym_not_eq] = ACTIONS(7416), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7416), + [anon_sym_override] = ACTIONS(7416), + [anon_sym_requires] = ACTIONS(7416), + [anon_sym_COLON_RBRACK] = ACTIONS(7416), + }, + [STATE(2172)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym_SEMI] = ACTIONS(7201), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_COLON_RBRACK] = ACTIONS(7201), + }, + [STATE(2173)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [anon_sym_RPAREN] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7213), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7213), + [anon_sym_GT_GT] = ACTIONS(7213), + [anon_sym_SEMI] = ACTIONS(7215), + [anon_sym___extension__] = ACTIONS(7215), + [anon_sym___attribute__] = ACTIONS(7215), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_COLON] = ACTIONS(7213), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7215), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_RBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(7575), + [anon_sym_unsigned] = ACTIONS(7575), + [anon_sym_long] = ACTIONS(7575), + [anon_sym_short] = ACTIONS(7575), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(7213), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7215), + [anon_sym_volatile] = ACTIONS(7215), + [anon_sym_restrict] = ACTIONS(7215), + [anon_sym___restrict__] = ACTIONS(7215), + [anon_sym__Atomic] = ACTIONS(7215), + [anon_sym__Noreturn] = ACTIONS(7215), + [anon_sym_noreturn] = ACTIONS(7215), + [anon_sym__Nonnull] = ACTIONS(7215), + [anon_sym_mutable] = ACTIONS(7215), + [anon_sym_constinit] = ACTIONS(7215), + [anon_sym_consteval] = ACTIONS(7215), + [anon_sym_alignas] = ACTIONS(7215), + [anon_sym__Alignas] = ACTIONS(7215), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_STAR_EQ] = ACTIONS(7215), + [anon_sym_SLASH_EQ] = ACTIONS(7215), + [anon_sym_PERCENT_EQ] = ACTIONS(7215), + [anon_sym_PLUS_EQ] = ACTIONS(7215), + [anon_sym_DASH_EQ] = ACTIONS(7215), + [anon_sym_LT_LT_EQ] = ACTIONS(7215), + [anon_sym_GT_GT_EQ] = ACTIONS(7215), + [anon_sym_AMP_EQ] = ACTIONS(7215), + [anon_sym_CARET_EQ] = ACTIONS(7215), + [anon_sym_PIPE_EQ] = ACTIONS(7215), + [anon_sym_and_eq] = ACTIONS(7215), + [anon_sym_or_eq] = ACTIONS(7215), + [anon_sym_xor_eq] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7213), + [anon_sym_and] = ACTIONS(7213), + [anon_sym_bitor] = ACTIONS(7215), + [anon_sym_xor] = ACTIONS(7213), + [anon_sym_bitand] = ACTIONS(7215), + [anon_sym_not_eq] = ACTIONS(7215), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7215), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7215), + [anon_sym_override] = ACTIONS(7215), + [anon_sym_requires] = ACTIONS(7215), + [anon_sym_COLON_RBRACK] = ACTIONS(7215), + }, + [STATE(2174)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [anon_sym_RPAREN] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7239), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7239), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7239), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7239), + [anon_sym_GT_GT] = ACTIONS(7239), + [anon_sym_SEMI] = ACTIONS(7241), + [anon_sym___extension__] = ACTIONS(7241), + [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7239), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7241), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_RBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(7577), + [anon_sym_unsigned] = ACTIONS(7577), + [anon_sym_long] = ACTIONS(7577), + [anon_sym_short] = ACTIONS(7577), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(7239), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7241), + [anon_sym_volatile] = ACTIONS(7241), + [anon_sym_restrict] = ACTIONS(7241), + [anon_sym___restrict__] = ACTIONS(7241), + [anon_sym__Atomic] = ACTIONS(7241), + [anon_sym__Noreturn] = ACTIONS(7241), + [anon_sym_noreturn] = ACTIONS(7241), + [anon_sym__Nonnull] = ACTIONS(7241), + [anon_sym_mutable] = ACTIONS(7241), + [anon_sym_constinit] = ACTIONS(7241), + [anon_sym_consteval] = ACTIONS(7241), + [anon_sym_alignas] = ACTIONS(7241), + [anon_sym__Alignas] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_STAR_EQ] = ACTIONS(7241), + [anon_sym_SLASH_EQ] = ACTIONS(7241), + [anon_sym_PERCENT_EQ] = ACTIONS(7241), + [anon_sym_PLUS_EQ] = ACTIONS(7241), + [anon_sym_DASH_EQ] = ACTIONS(7241), + [anon_sym_LT_LT_EQ] = ACTIONS(7241), + [anon_sym_GT_GT_EQ] = ACTIONS(7241), + [anon_sym_AMP_EQ] = ACTIONS(7241), + [anon_sym_CARET_EQ] = ACTIONS(7241), + [anon_sym_PIPE_EQ] = ACTIONS(7241), + [anon_sym_and_eq] = ACTIONS(7241), + [anon_sym_or_eq] = ACTIONS(7241), + [anon_sym_xor_eq] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7239), + [anon_sym_and] = ACTIONS(7239), + [anon_sym_bitor] = ACTIONS(7241), + [anon_sym_xor] = ACTIONS(7239), + [anon_sym_bitand] = ACTIONS(7241), + [anon_sym_not_eq] = ACTIONS(7241), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7241), + [anon_sym_override] = ACTIONS(7241), + [anon_sym_requires] = ACTIONS(7241), + [anon_sym_COLON_RBRACK] = ACTIONS(7241), + }, + [STATE(2175)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [anon_sym_RPAREN] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym_SEMI] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_COLON] = ACTIONS(7249), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_RBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7251), + [anon_sym_volatile] = ACTIONS(7251), + [anon_sym_restrict] = ACTIONS(7251), + [anon_sym___restrict__] = ACTIONS(7251), + [anon_sym__Atomic] = ACTIONS(7251), + [anon_sym__Noreturn] = ACTIONS(7251), + [anon_sym_noreturn] = ACTIONS(7251), + [anon_sym__Nonnull] = ACTIONS(7251), + [anon_sym_mutable] = ACTIONS(7251), + [anon_sym_constinit] = ACTIONS(7251), + [anon_sym_consteval] = ACTIONS(7251), + [anon_sym_alignas] = ACTIONS(7251), + [anon_sym__Alignas] = ACTIONS(7251), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_STAR_EQ] = ACTIONS(7251), + [anon_sym_SLASH_EQ] = ACTIONS(7251), + [anon_sym_PERCENT_EQ] = ACTIONS(7251), + [anon_sym_PLUS_EQ] = ACTIONS(7251), + [anon_sym_DASH_EQ] = ACTIONS(7251), + [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym_GT_GT_EQ] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7251), + [anon_sym_CARET_EQ] = ACTIONS(7251), + [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7249), + [anon_sym_and] = ACTIONS(7249), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7249), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_COLON_RBRACK] = ACTIONS(7251), + }, + [STATE(2176)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2207), + [sym__function_exception_specification] = STATE(2465), + [sym__function_attributes_end] = STATE(3812), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2465), + [sym_throw_specifier] = STATE(2465), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2177)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2210), + [sym__function_exception_specification] = STATE(2473), + [sym__function_attributes_end] = STATE(3831), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2473), + [sym_throw_specifier] = STATE(2473), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7582), + [anon_sym_override] = ACTIONS(7582), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(7585), + }, + [STATE(2178)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7520), + [anon_sym_unsigned] = ACTIONS(7520), + [anon_sym_long] = ACTIONS(7520), + [anon_sym_short] = ACTIONS(7520), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), + }, + [STATE(2179)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5212), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9658), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_type_parameter_declaration] = STATE(9658), + [sym_variadic_type_parameter_declaration] = STATE(9658), + [sym_optional_type_parameter_declaration] = STATE(9658), + [sym_template_template_parameter_declaration] = STATE(9658), + [sym_optional_parameter_declaration] = STATE(9658), + [sym_variadic_parameter_declaration] = STATE(9658), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(7588), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(7590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(7592), + [anon_sym_GT2] = ACTIONS(7594), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2180)] = { + [sym_attribute_specifier] = STATE(3075), + [sym_attribute_declaration] = STATE(6313), + [sym_type_qualifier] = STATE(3620), + [sym_alignas_qualifier] = STATE(3884), + [sym_gnu_asm_expression] = STATE(8976), + [sym_virtual_specifier] = STATE(6389), + [sym_ref_qualifier] = STATE(4009), + [sym__function_attributes_start] = STATE(3865), + [sym__function_exception_specification] = STATE(4481), + [sym__function_attributes_end] = STATE(6175), + [sym__function_postfix] = STATE(6555), + [sym_trailing_return_type] = STATE(6241), + [sym_noexcept] = STATE(4481), + [sym_throw_specifier] = STATE(4481), + [sym_requires_clause] = STATE(6555), + [aux_sym_type_definition_repeat1] = STATE(3075), + [aux_sym__type_definition_type_repeat1] = STATE(3620), + [aux_sym_attributed_declarator_repeat1] = STATE(6313), + [aux_sym__function_postfix_repeat1] = STATE(6389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_COMMA] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(6113), + [anon_sym_DASH] = ACTIONS(6111), + [anon_sym_PLUS] = ACTIONS(6111), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6111), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [anon_sym_AMP_AMP] = ACTIONS(7489), + [anon_sym_PIPE] = ACTIONS(6111), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(7492), + [anon_sym_EQ_EQ] = ACTIONS(6113), + [anon_sym_BANG_EQ] = ACTIONS(6113), + [anon_sym_GT] = ACTIONS(6111), + [anon_sym_GT_EQ] = ACTIONS(6113), + [anon_sym_LT_EQ] = ACTIONS(6111), + [anon_sym_LT] = ACTIONS(6111), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7497), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7501), + [anon_sym_LBRACK] = ACTIONS(6111), + [anon_sym_RBRACK] = ACTIONS(6113), + [anon_sym_const] = ACTIONS(7503), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6113), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6113), + [anon_sym_PLUS_PLUS] = ACTIONS(6113), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6111), + [anon_sym_DOT_STAR] = ACTIONS(6113), + [anon_sym_DASH_GT] = ACTIONS(7507), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7596), + [anon_sym_override] = ACTIONS(7596), + [anon_sym_noexcept] = ACTIONS(7513), + [anon_sym_throw] = ACTIONS(7515), + [anon_sym_requires] = ACTIONS(7598), + }, + [STATE(2181)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [anon_sym_RPAREN] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym_SEMI] = ACTIONS(7385), + [anon_sym___extension__] = ACTIONS(7385), + [anon_sym___attribute__] = ACTIONS(7385), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_COLON] = ACTIONS(7383), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7385), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(7522), + [anon_sym_unsigned] = ACTIONS(7522), + [anon_sym_long] = ACTIONS(7522), + [anon_sym_short] = ACTIONS(7522), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7385), + [anon_sym_volatile] = ACTIONS(7385), + [anon_sym_restrict] = ACTIONS(7385), + [anon_sym___restrict__] = ACTIONS(7385), + [anon_sym__Atomic] = ACTIONS(7385), + [anon_sym__Noreturn] = ACTIONS(7385), + [anon_sym_noreturn] = ACTIONS(7385), + [anon_sym__Nonnull] = ACTIONS(7385), + [anon_sym_mutable] = ACTIONS(7385), + [anon_sym_constinit] = ACTIONS(7385), + [anon_sym_consteval] = ACTIONS(7385), + [anon_sym_alignas] = ACTIONS(7385), + [anon_sym__Alignas] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_STAR_EQ] = ACTIONS(7385), + [anon_sym_SLASH_EQ] = ACTIONS(7385), + [anon_sym_PERCENT_EQ] = ACTIONS(7385), + [anon_sym_PLUS_EQ] = ACTIONS(7385), + [anon_sym_DASH_EQ] = ACTIONS(7385), + [anon_sym_LT_LT_EQ] = ACTIONS(7385), + [anon_sym_GT_GT_EQ] = ACTIONS(7385), + [anon_sym_AMP_EQ] = ACTIONS(7385), + [anon_sym_CARET_EQ] = ACTIONS(7385), + [anon_sym_PIPE_EQ] = ACTIONS(7385), + [anon_sym_and_eq] = ACTIONS(7385), + [anon_sym_or_eq] = ACTIONS(7385), + [anon_sym_xor_eq] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7385), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7385), + [anon_sym_not_eq] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7385), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7385), + [anon_sym_override] = ACTIONS(7385), + [anon_sym_requires] = ACTIONS(7385), + [anon_sym_COLON_RBRACK] = ACTIONS(7385), + }, + [STATE(2182)] = { + [sym__abstract_declarator] = STATE(4427), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1847), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6560), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6562), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6564), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(2183)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2204), + [sym__function_exception_specification] = STATE(2482), + [sym__function_attributes_end] = STATE(3790), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2482), + [sym_throw_specifier] = STATE(2482), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2184)] = { + [sym_attribute_specifier] = STATE(2074), + [sym_enumerator_list] = STATE(2034), + [sym__enum_base_clause] = STATE(2001), + [sym_identifier] = ACTIONS(7600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [aux_sym_preproc_if_token2] = ACTIONS(7602), + [aux_sym_preproc_else_token1] = ACTIONS(7602), + [aux_sym_preproc_elif_token1] = ACTIONS(7600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7602), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_and_eq] = ACTIONS(7600), + [anon_sym_or_eq] = ACTIONS(7600), + [anon_sym_xor_eq] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + }, + [STATE(2185)] = { + [sym__abstract_declarator] = STATE(4451), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2219), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_DASH_GT_STAR] = ACTIONS(6999), + }, + [STATE(2186)] = { + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7606), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7606), + [anon_sym_volatile] = ACTIONS(7606), + [anon_sym_restrict] = ACTIONS(7606), + [anon_sym___restrict__] = ACTIONS(7606), + [anon_sym__Atomic] = ACTIONS(7606), + [anon_sym__Noreturn] = ACTIONS(7606), + [anon_sym_noreturn] = ACTIONS(7606), + [anon_sym__Nonnull] = ACTIONS(7606), + [anon_sym_mutable] = ACTIONS(7606), + [anon_sym_constinit] = ACTIONS(7606), + [anon_sym_consteval] = ACTIONS(7606), + [anon_sym_alignas] = ACTIONS(7609), + [anon_sym__Alignas] = ACTIONS(7609), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6525), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_GT2] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6525), + }, + [STATE(2187)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9983), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9983), + [sym_optional_parameter_declaration] = STATE(9983), + [sym_variadic_parameter_declaration] = STATE(9983), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6193), + [anon_sym_RPAREN] = ACTIONS(6195), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2188)] = { + [sym__abstract_declarator] = STATE(4476), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + }, + [STATE(2189)] = { + [sym__abstract_declarator] = STATE(4447), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2209), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6993), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + }, + [STATE(2190)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9860), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9860), + [sym_optional_parameter_declaration] = STATE(9860), + [sym_variadic_parameter_declaration] = STATE(9860), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6185), + [anon_sym_RPAREN] = ACTIONS(6187), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2191)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9832), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9832), + [sym_optional_parameter_declaration] = STATE(9832), + [sym_variadic_parameter_declaration] = STATE(9832), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6197), + [anon_sym_RPAREN] = ACTIONS(6199), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2192)] = { + [sym__abstract_declarator] = STATE(4471), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(2193)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2482), + [sym__function_attributes_end] = STATE(3790), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2482), + [sym_throw_specifier] = STATE(2482), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2194)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5212), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(10321), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_type_parameter_declaration] = STATE(10321), + [sym_variadic_type_parameter_declaration] = STATE(10321), + [sym_optional_type_parameter_declaration] = STATE(10321), + [sym_template_template_parameter_declaration] = STATE(10321), + [sym_optional_parameter_declaration] = STATE(10321), + [sym_variadic_parameter_declaration] = STATE(10321), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(7588), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(7590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(7592), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2195)] = { + [sym_type_qualifier] = STATE(2195), + [sym_alignas_qualifier] = STATE(2300), + [aux_sym__type_definition_type_repeat1] = STATE(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7612), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7615), + [anon_sym_constexpr] = ACTIONS(7612), + [anon_sym_volatile] = ACTIONS(7612), + [anon_sym_restrict] = ACTIONS(7612), + [anon_sym___restrict__] = ACTIONS(7612), + [anon_sym__Atomic] = ACTIONS(7612), + [anon_sym__Noreturn] = ACTIONS(7612), + [anon_sym_noreturn] = ACTIONS(7612), + [anon_sym__Nonnull] = ACTIONS(7612), + [anon_sym_mutable] = ACTIONS(7612), + [anon_sym_constinit] = ACTIONS(7612), + [anon_sym_consteval] = ACTIONS(7612), + [anon_sym_alignas] = ACTIONS(7618), + [anon_sym__Alignas] = ACTIONS(7618), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6527), + [anon_sym_or_eq] = ACTIONS(6527), + [anon_sym_xor_eq] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + }, + [STATE(2196)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9957), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9957), + [sym_optional_parameter_declaration] = STATE(9957), + [sym_variadic_parameter_declaration] = STATE(9957), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6189), + [anon_sym_RPAREN] = ACTIONS(6191), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2197)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9910), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9910), + [sym_optional_parameter_declaration] = STATE(9910), + [sym_variadic_parameter_declaration] = STATE(9910), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6173), + [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2198)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + }, + [STATE(2199)] = { + [sym_type_qualifier] = STATE(2199), + [sym_alignas_qualifier] = STATE(2312), + [aux_sym__type_definition_type_repeat1] = STATE(2199), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_RBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7621), + [anon_sym_constexpr] = ACTIONS(7621), + [anon_sym_volatile] = ACTIONS(7621), + [anon_sym_restrict] = ACTIONS(7621), + [anon_sym___restrict__] = ACTIONS(7621), + [anon_sym__Atomic] = ACTIONS(7621), + [anon_sym__Noreturn] = ACTIONS(7621), + [anon_sym_noreturn] = ACTIONS(7621), + [anon_sym__Nonnull] = ACTIONS(7621), + [anon_sym_mutable] = ACTIONS(7621), + [anon_sym_constinit] = ACTIONS(7621), + [anon_sym_consteval] = ACTIONS(7621), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + }, + [STATE(2200)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2492), + [sym__function_attributes_end] = STATE(3744), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_noexcept] = STATE(2492), + [sym_throw_specifier] = STATE(2492), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7637), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2201)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym_SEMI] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_COLON] = ACTIONS(7084), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_RBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7081), + }, + [STATE(2202)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9630), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9630), + [sym_optional_parameter_declaration] = STATE(9630), + [sym_variadic_parameter_declaration] = STATE(9630), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6107), + [anon_sym_RPAREN] = ACTIONS(6109), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2203)] = { + [sym_decltype_auto] = STATE(2957), + [sym_template_argument_list] = STATE(2405), + [aux_sym_sized_type_specifier_repeat1] = STATE(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6570), + [anon_sym_unsigned] = ACTIONS(6570), + [anon_sym_long] = ACTIONS(6570), + [anon_sym_short] = ACTIONS(6570), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_and_eq] = ACTIONS(5258), + [anon_sym_or_eq] = ACTIONS(5258), + [anon_sym_xor_eq] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5251), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + [anon_sym_DASH_GT_STAR] = ACTIONS(5258), + }, + [STATE(2204)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2477), + [sym__function_attributes_end] = STATE(3799), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_noexcept] = STATE(2477), + [sym_throw_specifier] = STATE(2477), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2205)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2465), + [sym__function_attributes_end] = STATE(3812), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2465), + [sym_throw_specifier] = STATE(2465), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2206)] = { + [sym_type_qualifier] = STATE(2195), + [sym_alignas_qualifier] = STATE(2300), + [aux_sym__type_definition_type_repeat1] = STATE(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6288), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_mutable] = ACTIONS(6280), + [anon_sym_constinit] = ACTIONS(6280), + [anon_sym_consteval] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6290), + [anon_sym__Alignas] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6388), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + }, + [STATE(2207)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2466), + [sym__function_attributes_end] = STATE(3813), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_noexcept] = STATE(2466), + [sym_throw_specifier] = STATE(2466), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2208)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2473), + [sym__function_attributes_end] = STATE(3831), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2473), + [sym_throw_specifier] = STATE(2473), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7582), + [anon_sym_override] = ACTIONS(7582), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(7585), + }, + [STATE(2209)] = { + [sym__abstract_declarator] = STATE(4450), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6997), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + }, + [STATE(2210)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2474), + [sym__function_attributes_end] = STATE(3838), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_noexcept] = STATE(2474), + [sym_throw_specifier] = STATE(2474), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_noexcept] = ACTIONS(6136), + [anon_sym_throw] = ACTIONS(6138), + [anon_sym_requires] = ACTIONS(7648), + }, + [STATE(2211)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9719), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9719), + [sym_optional_parameter_declaration] = STATE(9719), + [sym_variadic_parameter_declaration] = STATE(9719), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6177), + [anon_sym_RPAREN] = ACTIONS(6179), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2212)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9763), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9763), + [sym_optional_parameter_declaration] = STATE(9763), + [sym_variadic_parameter_declaration] = STATE(9763), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6169), + [anon_sym_RPAREN] = ACTIONS(6171), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2213)] = { + [sym_attribute_specifier] = STATE(2092), + [sym_enumerator_list] = STATE(2043), + [sym__enum_base_clause] = STATE(2009), + [sym_identifier] = ACTIONS(7651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [aux_sym_preproc_if_token2] = ACTIONS(7653), + [aux_sym_preproc_else_token1] = ACTIONS(7653), + [aux_sym_preproc_elif_token1] = ACTIONS(7651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(6830), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7651), + [anon_sym_volatile] = ACTIONS(7651), + [anon_sym_restrict] = ACTIONS(7651), + [anon_sym___restrict__] = ACTIONS(7651), + [anon_sym__Atomic] = ACTIONS(7651), + [anon_sym__Noreturn] = ACTIONS(7651), + [anon_sym_noreturn] = ACTIONS(7651), + [anon_sym__Nonnull] = ACTIONS(7651), + [anon_sym_mutable] = ACTIONS(7651), + [anon_sym_constinit] = ACTIONS(7651), + [anon_sym_consteval] = ACTIONS(7651), + [anon_sym_alignas] = ACTIONS(7651), + [anon_sym__Alignas] = ACTIONS(7651), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7651), + [anon_sym_or_eq] = ACTIONS(7651), + [anon_sym_xor_eq] = ACTIONS(7651), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7651), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7651), + [anon_sym_not_eq] = ACTIONS(7651), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7651), + [anon_sym_requires] = ACTIONS(7651), + }, + [STATE(2214)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(3811), + [aux_sym_sized_type_specifier_repeat1] = STATE(2158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(7520), + [anon_sym_unsigned] = ACTIONS(7520), + [anon_sym_long] = ACTIONS(7520), + [anon_sym_short] = ACTIONS(7520), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2215)] = { + [sym_attribute_specifier] = STATE(2436), + [sym_attribute_declaration] = STATE(4623), + [sym_type_qualifier] = STATE(2356), + [sym_alignas_qualifier] = STATE(2559), + [aux_sym_type_definition_repeat1] = STATE(2436), + [aux_sym__type_definition_type_repeat1] = STATE(2356), + [aux_sym_attributed_declarator_repeat1] = STATE(4623), + [sym_identifier] = ACTIONS(6388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [aux_sym_preproc_if_token2] = ACTIONS(6390), + [aux_sym_preproc_else_token1] = ACTIONS(6390), + [aux_sym_preproc_elif_token1] = ACTIONS(6388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6390), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6388), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_mutable] = ACTIONS(6857), + [anon_sym_constinit] = ACTIONS(6857), + [anon_sym_consteval] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6863), + [anon_sym__Alignas] = ACTIONS(6863), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6388), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6388), + [anon_sym_not_eq] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6388), + [anon_sym___asm__] = ACTIONS(6388), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6388), + [anon_sym_override] = ACTIONS(6388), + [anon_sym_noexcept] = ACTIONS(6388), + [anon_sym_throw] = ACTIONS(6388), + [anon_sym_requires] = ACTIONS(6388), + [anon_sym_COLON_RBRACK] = ACTIONS(6390), + }, + [STATE(2216)] = { + [sym_type_qualifier] = STATE(2195), + [sym_alignas_qualifier] = STATE(2300), + [aux_sym__type_definition_type_repeat1] = STATE(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_RPAREN] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6521), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6521), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6521), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym___extension__] = ACTIONS(6280), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6288), + [anon_sym_constexpr] = ACTIONS(6280), + [anon_sym_volatile] = ACTIONS(6280), + [anon_sym_restrict] = ACTIONS(6280), + [anon_sym___restrict__] = ACTIONS(6280), + [anon_sym__Atomic] = ACTIONS(6280), + [anon_sym__Noreturn] = ACTIONS(6280), + [anon_sym_noreturn] = ACTIONS(6280), + [anon_sym__Nonnull] = ACTIONS(6280), + [anon_sym_mutable] = ACTIONS(6280), + [anon_sym_constinit] = ACTIONS(6280), + [anon_sym_consteval] = ACTIONS(6280), + [anon_sym_alignas] = ACTIONS(6290), + [anon_sym__Alignas] = ACTIONS(6290), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_STAR_EQ] = ACTIONS(6523), + [anon_sym_SLASH_EQ] = ACTIONS(6523), + [anon_sym_PERCENT_EQ] = ACTIONS(6523), + [anon_sym_PLUS_EQ] = ACTIONS(6523), + [anon_sym_DASH_EQ] = ACTIONS(6523), + [anon_sym_LT_LT_EQ] = ACTIONS(6523), + [anon_sym_GT_GT_EQ] = ACTIONS(6523), + [anon_sym_AMP_EQ] = ACTIONS(6523), + [anon_sym_CARET_EQ] = ACTIONS(6523), + [anon_sym_PIPE_EQ] = ACTIONS(6523), + [anon_sym_and_eq] = ACTIONS(6523), + [anon_sym_or_eq] = ACTIONS(6523), + [anon_sym_xor_eq] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6521), + [anon_sym_and] = ACTIONS(6521), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6521), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + [anon_sym_DASH_GT_STAR] = ACTIONS(6523), + }, + [STATE(2217)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2490), + [sym__function_attributes_end] = STATE(3845), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2490), + [sym_throw_specifier] = STATE(2490), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7560), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2218)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9742), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(9742), + [sym_optional_parameter_declaration] = STATE(9742), + [sym_variadic_parameter_declaration] = STATE(9742), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2219)] = { + [sym__abstract_declarator] = STATE(4452), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1867), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6652), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6654), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7005), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + [anon_sym_DASH_GT_STAR] = ACTIONS(7003), + }, + [STATE(2220)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7655), + [anon_sym_unsigned] = ACTIONS(7655), + [anon_sym_long] = ACTIONS(7655), + [anon_sym_short] = ACTIONS(7655), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7084), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + }, + [STATE(2221)] = { + [sym_type_qualifier] = STATE(2252), + [sym_alignas_qualifier] = STATE(2403), + [aux_sym__type_definition_type_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6521), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6521), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6521), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym___extension__] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_RBRACK] = ACTIONS(6523), + [anon_sym_EQ] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6332), + [anon_sym_constexpr] = ACTIONS(6324), + [anon_sym_volatile] = ACTIONS(6324), + [anon_sym_restrict] = ACTIONS(6324), + [anon_sym___restrict__] = ACTIONS(6324), + [anon_sym__Atomic] = ACTIONS(6324), + [anon_sym__Noreturn] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym__Nonnull] = ACTIONS(6324), + [anon_sym_mutable] = ACTIONS(6324), + [anon_sym_constinit] = ACTIONS(6324), + [anon_sym_consteval] = ACTIONS(6324), + [anon_sym_alignas] = ACTIONS(6334), + [anon_sym__Alignas] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_STAR_EQ] = ACTIONS(6523), + [anon_sym_SLASH_EQ] = ACTIONS(6523), + [anon_sym_PERCENT_EQ] = ACTIONS(6523), + [anon_sym_PLUS_EQ] = ACTIONS(6523), + [anon_sym_DASH_EQ] = ACTIONS(6523), + [anon_sym_LT_LT_EQ] = ACTIONS(6523), + [anon_sym_GT_GT_EQ] = ACTIONS(6523), + [anon_sym_AMP_EQ] = ACTIONS(6523), + [anon_sym_CARET_EQ] = ACTIONS(6523), + [anon_sym_PIPE_EQ] = ACTIONS(6523), + [anon_sym_and_eq] = ACTIONS(6523), + [anon_sym_or_eq] = ACTIONS(6523), + [anon_sym_xor_eq] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6521), + [anon_sym_and] = ACTIONS(6521), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6521), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + }, + [STATE(2222)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(7655), + [anon_sym_unsigned] = ACTIONS(7655), + [anon_sym_long] = ACTIONS(7655), + [anon_sym_short] = ACTIONS(7655), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6629), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_and_eq] = ACTIONS(6627), + [anon_sym_or_eq] = ACTIONS(6627), + [anon_sym_xor_eq] = ACTIONS(6627), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + [anon_sym_DASH_GT_STAR] = ACTIONS(6629), + }, + [STATE(2223)] = { + [sym_type_qualifier] = STATE(2239), + [sym_alignas_qualifier] = STATE(2372), + [aux_sym__type_definition_type_repeat1] = STATE(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6521), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6521), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6521), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6521), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6367), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6369), + [anon_sym__Alignas] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_STAR_EQ] = ACTIONS(6523), + [anon_sym_SLASH_EQ] = ACTIONS(6523), + [anon_sym_PERCENT_EQ] = ACTIONS(6523), + [anon_sym_PLUS_EQ] = ACTIONS(6523), + [anon_sym_DASH_EQ] = ACTIONS(6523), + [anon_sym_LT_LT_EQ] = ACTIONS(6523), + [anon_sym_GT_GT_EQ] = ACTIONS(6521), + [anon_sym_AMP_EQ] = ACTIONS(6523), + [anon_sym_CARET_EQ] = ACTIONS(6523), + [anon_sym_PIPE_EQ] = ACTIONS(6523), + [anon_sym_and_eq] = ACTIONS(6523), + [anon_sym_or_eq] = ACTIONS(6523), + [anon_sym_xor_eq] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6521), + [anon_sym_and] = ACTIONS(6521), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6521), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_GT2] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + }, + [STATE(2224)] = { + [sym__abstract_declarator] = STATE(4542), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2225), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6993), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6993), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_GT2] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(2225)] = { + [sym__abstract_declarator] = STATE(4543), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6997), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_GT2] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(2226)] = { + [sym__abstract_declarator] = STATE(4544), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2228), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_GT2] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(2227)] = { + [sym__abstract_declarator] = STATE(4539), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6495), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2228)] = { + [sym__abstract_declarator] = STATE(4545), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7005), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7005), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_GT2] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(2229)] = { + [sym__abstract_declarator] = STATE(4541), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1874), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6726), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6728), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6730), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7009), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7009), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_GT2] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(2230)] = { + [sym__abstract_declarator] = STATE(4534), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2231), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(2231)] = { + [sym__abstract_declarator] = STATE(4537), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6995), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(2232)] = { + [sym__abstract_declarator] = STATE(4538), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2234), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6999), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(2233)] = { + [sym__abstract_declarator] = STATE(4549), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2234)] = { + [sym__abstract_declarator] = STATE(4540), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(7003), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(2235)] = { + [sym__abstract_declarator] = STATE(4550), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1872), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6768), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6770), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6772), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(7007), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(2236)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1931), + [sym_identifier] = ACTIONS(7084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [aux_sym_preproc_if_token2] = ACTIONS(7081), + [aux_sym_preproc_else_token1] = ACTIONS(7081), + [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(6631), + [anon_sym_unsigned] = ACTIONS(6631), + [anon_sym_long] = ACTIONS(6631), + [anon_sym_short] = ACTIONS(6631), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + }, + [STATE(2237)] = { + [sym_type_qualifier] = STATE(2239), + [sym_alignas_qualifier] = STATE(2372), + [aux_sym__type_definition_type_repeat1] = STATE(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6388), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6367), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6369), + [anon_sym__Alignas] = ACTIONS(6369), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6388), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_GT2] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(2238)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6244), + [anon_sym_volatile] = ACTIONS(6244), + [anon_sym_restrict] = ACTIONS(6244), + [anon_sym___restrict__] = ACTIONS(6244), + [anon_sym__Atomic] = ACTIONS(6244), + [anon_sym__Noreturn] = ACTIONS(6244), + [anon_sym_noreturn] = ACTIONS(6244), + [anon_sym__Nonnull] = ACTIONS(6244), + [anon_sym_mutable] = ACTIONS(6244), + [anon_sym_constinit] = ACTIONS(6244), + [anon_sym_consteval] = ACTIONS(6244), + [anon_sym_alignas] = ACTIONS(6244), + [anon_sym__Alignas] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_asm] = ACTIONS(6244), + [anon_sym___asm__] = ACTIONS(6244), + [anon_sym___asm] = ACTIONS(6242), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + [anon_sym_try] = ACTIONS(6244), + [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + }, + [STATE(2239)] = { + [sym_type_qualifier] = STATE(2239), + [sym_alignas_qualifier] = STATE(2372), + [aux_sym__type_definition_type_repeat1] = STATE(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7658), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7661), + [anon_sym_constexpr] = ACTIONS(7658), + [anon_sym_volatile] = ACTIONS(7658), + [anon_sym_restrict] = ACTIONS(7658), + [anon_sym___restrict__] = ACTIONS(7658), + [anon_sym__Atomic] = ACTIONS(7658), + [anon_sym__Noreturn] = ACTIONS(7658), + [anon_sym_noreturn] = ACTIONS(7658), + [anon_sym__Nonnull] = ACTIONS(7658), + [anon_sym_mutable] = ACTIONS(7658), + [anon_sym_constinit] = ACTIONS(7658), + [anon_sym_consteval] = ACTIONS(7658), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6525), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6527), + [anon_sym_or_eq] = ACTIONS(6527), + [anon_sym_xor_eq] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_GT2] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + }, + [STATE(2240)] = { + [sym_type_qualifier] = STATE(2245), + [sym_alignas_qualifier] = STATE(2432), + [aux_sym__type_definition_type_repeat1] = STATE(2245), + [aux_sym_sized_type_specifier_repeat1] = STATE(2365), + [sym_identifier] = ACTIONS(7667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(7669), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7672), + [anon_sym_unsigned] = ACTIONS(7672), + [anon_sym_long] = ACTIONS(7672), + [anon_sym_short] = ACTIONS(7672), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(7669), + [anon_sym_constexpr] = ACTIONS(7669), + [anon_sym_volatile] = ACTIONS(7669), + [anon_sym_restrict] = ACTIONS(7669), + [anon_sym___restrict__] = ACTIONS(7669), + [anon_sym__Atomic] = ACTIONS(7669), + [anon_sym__Noreturn] = ACTIONS(7669), + [anon_sym_noreturn] = ACTIONS(7669), + [anon_sym__Nonnull] = ACTIONS(7669), + [anon_sym_mutable] = ACTIONS(7669), + [anon_sym_constinit] = ACTIONS(7669), + [anon_sym_consteval] = ACTIONS(7669), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [sym_primitive_type] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6814), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + }, + [STATE(2241)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(10445), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_explicit_object_parameter_declaration] = STATE(10445), + [sym_optional_parameter_declaration] = STATE(10445), + [sym_variadic_parameter_declaration] = STATE(10445), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7679), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_this] = ACTIONS(5315), + }, + [STATE(2242)] = { + [sym_decltype_auto] = STATE(3006), + [sym_template_argument_list] = STATE(2491), + [aux_sym_sized_type_specifier_repeat1] = STATE(2124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6674), + [anon_sym_unsigned] = ACTIONS(6674), + [anon_sym_long] = ACTIONS(6674), + [anon_sym_short] = ACTIONS(6674), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_and_eq] = ACTIONS(5258), + [anon_sym_or_eq] = ACTIONS(5258), + [anon_sym_xor_eq] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6678), + [anon_sym_decltype] = ACTIONS(6680), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + }, + [STATE(2243)] = { + [sym_attribute_specifier] = STATE(2243), + [aux_sym_type_definition_repeat1] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_RPAREN] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6553), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6553), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_STAR_EQ] = ACTIONS(6555), + [anon_sym_SLASH_EQ] = ACTIONS(6555), + [anon_sym_PERCENT_EQ] = ACTIONS(6555), + [anon_sym_PLUS_EQ] = ACTIONS(6555), + [anon_sym_DASH_EQ] = ACTIONS(6555), + [anon_sym_LT_LT_EQ] = ACTIONS(6555), + [anon_sym_GT_GT_EQ] = ACTIONS(6555), + [anon_sym_AMP_EQ] = ACTIONS(6555), + [anon_sym_CARET_EQ] = ACTIONS(6555), + [anon_sym_PIPE_EQ] = ACTIONS(6555), + [anon_sym_and_eq] = ACTIONS(6555), + [anon_sym_or_eq] = ACTIONS(6555), + [anon_sym_xor_eq] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6553), + [anon_sym_and] = ACTIONS(6553), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6553), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + [anon_sym_DASH_GT_STAR] = ACTIONS(6555), + }, + [STATE(2244)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6248), + [anon_sym_or_eq] = ACTIONS(6248), + [anon_sym_xor_eq] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_asm] = ACTIONS(6248), + [anon_sym___asm__] = ACTIONS(6248), + [anon_sym___asm] = ACTIONS(6246), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_try] = ACTIONS(6248), + [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + }, + [STATE(2245)] = { + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [aux_sym_sized_type_specifier_repeat1] = STATE(2496), + [sym_identifier] = ACTIONS(7689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(7691), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(7691), + [anon_sym_constexpr] = ACTIONS(7691), + [anon_sym_volatile] = ACTIONS(7691), + [anon_sym_restrict] = ACTIONS(7691), + [anon_sym___restrict__] = ACTIONS(7691), + [anon_sym__Atomic] = ACTIONS(7691), + [anon_sym__Noreturn] = ACTIONS(7691), + [anon_sym_noreturn] = ACTIONS(7691), + [anon_sym__Nonnull] = ACTIONS(7691), + [anon_sym_mutable] = ACTIONS(7691), + [anon_sym_constinit] = ACTIONS(7691), + [anon_sym_consteval] = ACTIONS(7691), + [anon_sym_alignas] = ACTIONS(7696), + [anon_sym__Alignas] = ACTIONS(7696), + [sym_primitive_type] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6886), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + }, + [STATE(2246)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym_SEMI] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6256), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6256), + [anon_sym_volatile] = ACTIONS(6256), + [anon_sym_restrict] = ACTIONS(6256), + [anon_sym___restrict__] = ACTIONS(6256), + [anon_sym__Atomic] = ACTIONS(6256), + [anon_sym__Noreturn] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym__Nonnull] = ACTIONS(6256), + [anon_sym_mutable] = ACTIONS(6256), + [anon_sym_constinit] = ACTIONS(6256), + [anon_sym_consteval] = ACTIONS(6256), + [anon_sym_alignas] = ACTIONS(6256), + [anon_sym__Alignas] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6256), + [anon_sym_or_eq] = ACTIONS(6256), + [anon_sym_xor_eq] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_asm] = ACTIONS(6256), + [anon_sym___asm__] = ACTIONS(6256), + [anon_sym___asm] = ACTIONS(6254), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + [anon_sym_try] = ACTIONS(6256), + [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + }, + [STATE(2247)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6260), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6260), + [anon_sym_volatile] = ACTIONS(6260), + [anon_sym_restrict] = ACTIONS(6260), + [anon_sym___restrict__] = ACTIONS(6260), + [anon_sym__Atomic] = ACTIONS(6260), + [anon_sym__Noreturn] = ACTIONS(6260), + [anon_sym_noreturn] = ACTIONS(6260), + [anon_sym__Nonnull] = ACTIONS(6260), + [anon_sym_mutable] = ACTIONS(6260), + [anon_sym_constinit] = ACTIONS(6260), + [anon_sym_consteval] = ACTIONS(6260), + [anon_sym_alignas] = ACTIONS(6260), + [anon_sym__Alignas] = ACTIONS(6260), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6260), + [anon_sym_or_eq] = ACTIONS(6260), + [anon_sym_xor_eq] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_asm] = ACTIONS(6260), + [anon_sym___asm__] = ACTIONS(6260), + [anon_sym___asm] = ACTIONS(6258), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + [anon_sym_try] = ACTIONS(6260), + [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + }, + [STATE(2248)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6264), + [anon_sym_volatile] = ACTIONS(6264), + [anon_sym_restrict] = ACTIONS(6264), + [anon_sym___restrict__] = ACTIONS(6264), + [anon_sym__Atomic] = ACTIONS(6264), + [anon_sym__Noreturn] = ACTIONS(6264), + [anon_sym_noreturn] = ACTIONS(6264), + [anon_sym__Nonnull] = ACTIONS(6264), + [anon_sym_mutable] = ACTIONS(6264), + [anon_sym_constinit] = ACTIONS(6264), + [anon_sym_consteval] = ACTIONS(6264), + [anon_sym_alignas] = ACTIONS(6264), + [anon_sym__Alignas] = ACTIONS(6264), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6264), + [anon_sym_or_eq] = ACTIONS(6264), + [anon_sym_xor_eq] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_asm] = ACTIONS(6264), + [anon_sym___asm__] = ACTIONS(6264), + [anon_sym___asm] = ACTIONS(6262), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6264), + [anon_sym_decltype] = ACTIONS(6264), + [anon_sym_try] = ACTIONS(6264), + [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + }, + [STATE(2249)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym_SEMI] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6252), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6252), + [anon_sym_volatile] = ACTIONS(6252), + [anon_sym_restrict] = ACTIONS(6252), + [anon_sym___restrict__] = ACTIONS(6252), + [anon_sym__Atomic] = ACTIONS(6252), + [anon_sym__Noreturn] = ACTIONS(6252), + [anon_sym_noreturn] = ACTIONS(6252), + [anon_sym__Nonnull] = ACTIONS(6252), + [anon_sym_mutable] = ACTIONS(6252), + [anon_sym_constinit] = ACTIONS(6252), + [anon_sym_consteval] = ACTIONS(6252), + [anon_sym_alignas] = ACTIONS(6252), + [anon_sym__Alignas] = ACTIONS(6252), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6252), + [anon_sym_or_eq] = ACTIONS(6252), + [anon_sym_xor_eq] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_asm] = ACTIONS(6252), + [anon_sym___asm__] = ACTIONS(6252), + [anon_sym___asm] = ACTIONS(6250), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + [anon_sym_try] = ACTIONS(6252), + [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + }, + [STATE(2250)] = { + [sym_type_qualifier] = STATE(2253), + [sym_alignas_qualifier] = STATE(2278), + [aux_sym__type_definition_type_repeat1] = STATE(2253), + [aux_sym_sized_type_specifier_repeat1] = STATE(2389), + [sym_identifier] = ACTIONS(7363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7701), + [anon_sym_unsigned] = ACTIONS(7701), + [anon_sym_long] = ACTIONS(7701), + [anon_sym_short] = ACTIONS(7701), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [sym_primitive_type] = ACTIONS(7373), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6814), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + }, + [STATE(2251)] = { + [sym_type_qualifier] = STATE(2252), + [sym_alignas_qualifier] = STATE(2403), + [aux_sym__type_definition_type_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6324), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_RBRACK] = ACTIONS(6390), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6332), + [anon_sym_constexpr] = ACTIONS(6324), + [anon_sym_volatile] = ACTIONS(6324), + [anon_sym_restrict] = ACTIONS(6324), + [anon_sym___restrict__] = ACTIONS(6324), + [anon_sym__Atomic] = ACTIONS(6324), + [anon_sym__Noreturn] = ACTIONS(6324), + [anon_sym_noreturn] = ACTIONS(6324), + [anon_sym__Nonnull] = ACTIONS(6324), + [anon_sym_mutable] = ACTIONS(6324), + [anon_sym_constinit] = ACTIONS(6324), + [anon_sym_consteval] = ACTIONS(6324), + [anon_sym_alignas] = ACTIONS(6334), + [anon_sym__Alignas] = ACTIONS(6334), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_and_eq] = ACTIONS(6390), + [anon_sym_or_eq] = ACTIONS(6390), + [anon_sym_xor_eq] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(2252)] = { + [sym_type_qualifier] = STATE(2252), + [sym_alignas_qualifier] = STATE(2403), + [aux_sym__type_definition_type_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7705), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_RBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7708), + [anon_sym_constexpr] = ACTIONS(7705), + [anon_sym_volatile] = ACTIONS(7705), + [anon_sym_restrict] = ACTIONS(7705), + [anon_sym___restrict__] = ACTIONS(7705), + [anon_sym__Atomic] = ACTIONS(7705), + [anon_sym__Noreturn] = ACTIONS(7705), + [anon_sym_noreturn] = ACTIONS(7705), + [anon_sym__Nonnull] = ACTIONS(7705), + [anon_sym_mutable] = ACTIONS(7705), + [anon_sym_constinit] = ACTIONS(7705), + [anon_sym_consteval] = ACTIONS(7705), + [anon_sym_alignas] = ACTIONS(7711), + [anon_sym__Alignas] = ACTIONS(7711), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6527), + [anon_sym_or_eq] = ACTIONS(6527), + [anon_sym_xor_eq] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + }, + [STATE(2253)] = { + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [aux_sym_sized_type_specifier_repeat1] = STATE(2326), + [sym_identifier] = ACTIONS(7307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7312), + [anon_sym_unsigned] = ACTIONS(7312), + [anon_sym_long] = ACTIONS(7312), + [anon_sym_short] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [sym_primitive_type] = ACTIONS(7317), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6886), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + }, + [STATE(2254)] = { + [sym_attribute_specifier] = STATE(2074), + [sym_enumerator_list] = STATE(2034), + [sym__enum_base_clause] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_RPAREN] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym_SEMI] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7602), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_RBRACE] = ACTIONS(7602), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_and_eq] = ACTIONS(7602), + [anon_sym_or_eq] = ACTIONS(7602), + [anon_sym_xor_eq] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_COLON_RBRACK] = ACTIONS(7602), + }, + [STATE(2255)] = { + [sym_attribute_specifier] = STATE(2092), + [sym_enumerator_list] = STATE(2043), + [sym__enum_base_clause] = STATE(2009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(6830), + [anon_sym_COLON] = ACTIONS(7716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_RBRACE] = ACTIONS(7653), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_COLON_RBRACK] = ACTIONS(7653), + }, + [STATE(2256)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6272), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6272), + [anon_sym_volatile] = ACTIONS(6272), + [anon_sym_restrict] = ACTIONS(6272), + [anon_sym___restrict__] = ACTIONS(6272), + [anon_sym__Atomic] = ACTIONS(6272), + [anon_sym__Noreturn] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym__Nonnull] = ACTIONS(6272), + [anon_sym_mutable] = ACTIONS(6272), + [anon_sym_constinit] = ACTIONS(6272), + [anon_sym_consteval] = ACTIONS(6272), + [anon_sym_alignas] = ACTIONS(6272), + [anon_sym__Alignas] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6272), + [anon_sym_or_eq] = ACTIONS(6272), + [anon_sym_xor_eq] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_asm] = ACTIONS(6272), + [anon_sym___asm__] = ACTIONS(6272), + [anon_sym___asm] = ACTIONS(6270), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + [anon_sym_try] = ACTIONS(6272), + [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + }, + [STATE(2257)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_RPAREN] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7017), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7017), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6570), + [anon_sym_unsigned] = ACTIONS(6570), + [anon_sym_long] = ACTIONS(6570), + [anon_sym_short] = ACTIONS(6570), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_EQ] = ACTIONS(7017), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_STAR_EQ] = ACTIONS(7019), + [anon_sym_SLASH_EQ] = ACTIONS(7019), + [anon_sym_PERCENT_EQ] = ACTIONS(7019), + [anon_sym_PLUS_EQ] = ACTIONS(7019), + [anon_sym_DASH_EQ] = ACTIONS(7019), + [anon_sym_LT_LT_EQ] = ACTIONS(7019), + [anon_sym_GT_GT_EQ] = ACTIONS(7019), + [anon_sym_AMP_EQ] = ACTIONS(7019), + [anon_sym_CARET_EQ] = ACTIONS(7019), + [anon_sym_PIPE_EQ] = ACTIONS(7019), + [anon_sym_and_eq] = ACTIONS(7019), + [anon_sym_or_eq] = ACTIONS(7019), + [anon_sym_xor_eq] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7017), + [anon_sym_and] = ACTIONS(7017), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7017), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + [anon_sym_DASH_GT_STAR] = ACTIONS(7019), + }, + [STATE(2258)] = { + [sym_decltype_auto] = STATE(3055), + [sym_template_argument_list] = STATE(2487), + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5251), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6638), + [anon_sym_unsigned] = ACTIONS(6638), + [anon_sym_long] = ACTIONS(6638), + [anon_sym_short] = ACTIONS(6638), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5251), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_and_eq] = ACTIONS(5258), + [anon_sym_or_eq] = ACTIONS(5258), + [anon_sym_xor_eq] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6642), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_GT2] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + }, + [STATE(2259)] = { + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [aux_sym_sized_type_specifier_repeat1] = STATE(2348), + [sym_identifier] = ACTIONS(7462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6886), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(6742), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7467), + [anon_sym_unsigned] = ACTIONS(7467), + [anon_sym_long] = ACTIONS(7467), + [anon_sym_short] = ACTIONS(7467), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6742), + [anon_sym_volatile] = ACTIONS(6742), + [anon_sym_restrict] = ACTIONS(6742), + [anon_sym___restrict__] = ACTIONS(6742), + [anon_sym__Atomic] = ACTIONS(6742), + [anon_sym__Noreturn] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6742), + [anon_sym__Nonnull] = ACTIONS(6742), + [anon_sym_mutable] = ACTIONS(6742), + [anon_sym_constinit] = ACTIONS(6742), + [anon_sym_consteval] = ACTIONS(6742), + [anon_sym_alignas] = ACTIONS(7720), + [anon_sym__Alignas] = ACTIONS(7720), + [sym_primitive_type] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6886), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6884), + }, + [STATE(2260)] = { + [sym_attribute_specifier] = STATE(2260), + [aux_sym_type_definition_repeat1] = STATE(2260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6553), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6553), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(7722), + [anon_sym___attribute] = ACTIONS(7725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_RBRACK] = ACTIONS(6555), + [anon_sym_EQ] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_STAR_EQ] = ACTIONS(6555), + [anon_sym_SLASH_EQ] = ACTIONS(6555), + [anon_sym_PERCENT_EQ] = ACTIONS(6555), + [anon_sym_PLUS_EQ] = ACTIONS(6555), + [anon_sym_DASH_EQ] = ACTIONS(6555), + [anon_sym_LT_LT_EQ] = ACTIONS(6555), + [anon_sym_GT_GT_EQ] = ACTIONS(6555), + [anon_sym_AMP_EQ] = ACTIONS(6555), + [anon_sym_CARET_EQ] = ACTIONS(6555), + [anon_sym_PIPE_EQ] = ACTIONS(6555), + [anon_sym_and_eq] = ACTIONS(6555), + [anon_sym_or_eq] = ACTIONS(6555), + [anon_sym_xor_eq] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6553), + [anon_sym_and] = ACTIONS(6553), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6553), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + }, + [STATE(2261)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(3811), + [aux_sym_sized_type_specifier_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6798), + [anon_sym_or_eq] = ACTIONS(6798), + [anon_sym_xor_eq] = ACTIONS(6798), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + }, + [STATE(2262)] = { + [sym__abstract_declarator] = STATE(4686), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2264), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6991), + [anon_sym___attribute] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + }, + [STATE(2263)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_RBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6629), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_and_eq] = ACTIONS(6627), + [anon_sym_or_eq] = ACTIONS(6627), + [anon_sym_xor_eq] = ACTIONS(6627), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(2264)] = { + [sym__abstract_declarator] = STATE(4687), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6995), + [anon_sym___attribute] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + }, + [STATE(2265)] = { + [sym__abstract_declarator] = STATE(4688), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(2267), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(2267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + }, + [STATE(2266)] = { + [sym__abstract_declarator] = STATE(4694), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2267)] = { + [sym__abstract_declarator] = STATE(4690), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(7003), + [anon_sym___attribute] = ACTIONS(7005), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + }, + [STATE(2268)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6058), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2909), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2909), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7739), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), + [sym_ms_signed_ptr_modifier] = ACTIONS(7741), + [anon_sym__unaligned] = ACTIONS(7743), + [anon_sym___unaligned] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6495), + [anon_sym_override] = ACTIONS(6495), + [anon_sym_requires] = ACTIONS(6495), + }, + [STATE(2269)] = { + [sym_type_qualifier] = STATE(2259), + [sym_alignas_qualifier] = STATE(2295), + [aux_sym__type_definition_type_repeat1] = STATE(2259), + [aux_sym_sized_type_specifier_repeat1] = STATE(2430), + [sym_identifier] = ACTIONS(7563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6814), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(6742), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7749), + [anon_sym_unsigned] = ACTIONS(7749), + [anon_sym_long] = ACTIONS(7749), + [anon_sym_short] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6742), + [anon_sym_volatile] = ACTIONS(6742), + [anon_sym_restrict] = ACTIONS(6742), + [anon_sym___restrict__] = ACTIONS(6742), + [anon_sym__Atomic] = ACTIONS(6742), + [anon_sym__Noreturn] = ACTIONS(6742), + [anon_sym_noreturn] = ACTIONS(6742), + [anon_sym__Nonnull] = ACTIONS(6742), + [anon_sym_mutable] = ACTIONS(6742), + [anon_sym_constinit] = ACTIONS(6742), + [anon_sym_consteval] = ACTIONS(6742), + [anon_sym_alignas] = ACTIONS(7720), + [anon_sym__Alignas] = ACTIONS(7720), + [sym_primitive_type] = ACTIONS(7573), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6814), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6812), + }, + [STATE(2270)] = { + [sym__abstract_declarator] = STATE(4695), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_type_qualifier] = STATE(1913), + [sym_alignas_qualifier] = STATE(1953), + [sym_parameter_list] = STATE(1871), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [aux_sym__type_definition_type_repeat1] = STATE(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6840), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6842), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(6485), + [anon_sym___attribute__] = ACTIONS(7007), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6491), + [anon_sym_constexpr] = ACTIONS(6485), + [anon_sym_volatile] = ACTIONS(6485), + [anon_sym_restrict] = ACTIONS(6485), + [anon_sym___restrict__] = ACTIONS(6485), + [anon_sym__Atomic] = ACTIONS(6485), + [anon_sym__Noreturn] = ACTIONS(6485), + [anon_sym_noreturn] = ACTIONS(6485), + [anon_sym__Nonnull] = ACTIONS(6485), + [anon_sym_mutable] = ACTIONS(6485), + [anon_sym_constinit] = ACTIONS(6485), + [anon_sym_consteval] = ACTIONS(6485), + [anon_sym_alignas] = ACTIONS(6493), + [anon_sym__Alignas] = ACTIONS(6493), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + }, + [STATE(2271)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7084), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_GT2] = ACTIONS(7081), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(2272)] = { + [sym_type_qualifier] = STATE(2273), + [sym_alignas_qualifier] = STATE(2312), + [aux_sym__type_definition_type_repeat1] = STATE(2273), + [aux_sym_sized_type_specifier_repeat1] = STATE(2440), + [sym_identifier] = ACTIONS(7524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(7754), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7756), + [anon_sym_unsigned] = ACTIONS(7756), + [anon_sym_long] = ACTIONS(7756), + [anon_sym_short] = ACTIONS(7756), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_RBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(7754), + [anon_sym_constexpr] = ACTIONS(7754), + [anon_sym_volatile] = ACTIONS(7754), + [anon_sym_restrict] = ACTIONS(7754), + [anon_sym___restrict__] = ACTIONS(7754), + [anon_sym__Atomic] = ACTIONS(7754), + [anon_sym__Noreturn] = ACTIONS(7754), + [anon_sym_noreturn] = ACTIONS(7754), + [anon_sym__Nonnull] = ACTIONS(7754), + [anon_sym_mutable] = ACTIONS(7754), + [anon_sym_constinit] = ACTIONS(7754), + [anon_sym_consteval] = ACTIONS(7754), + [anon_sym_alignas] = ACTIONS(7758), + [anon_sym__Alignas] = ACTIONS(7758), + [sym_primitive_type] = ACTIONS(6958), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_and_eq] = ACTIONS(6814), + [anon_sym_or_eq] = ACTIONS(6814), + [anon_sym_xor_eq] = ACTIONS(6814), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + }, + [STATE(2273)] = { + [sym_type_qualifier] = STATE(2199), + [sym_alignas_qualifier] = STATE(2312), + [aux_sym__type_definition_type_repeat1] = STATE(2199), + [aux_sym_sized_type_specifier_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(7425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(7754), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(6963), + [anon_sym_unsigned] = ACTIONS(6963), + [anon_sym_long] = ACTIONS(6963), + [anon_sym_short] = ACTIONS(6963), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_RBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(7754), + [anon_sym_constexpr] = ACTIONS(7754), + [anon_sym_volatile] = ACTIONS(7754), + [anon_sym_restrict] = ACTIONS(7754), + [anon_sym___restrict__] = ACTIONS(7754), + [anon_sym__Atomic] = ACTIONS(7754), + [anon_sym__Noreturn] = ACTIONS(7754), + [anon_sym_noreturn] = ACTIONS(7754), + [anon_sym__Nonnull] = ACTIONS(7754), + [anon_sym_mutable] = ACTIONS(7754), + [anon_sym_constinit] = ACTIONS(7754), + [anon_sym_consteval] = ACTIONS(7754), + [anon_sym_alignas] = ACTIONS(7758), + [anon_sym__Alignas] = ACTIONS(7758), + [sym_primitive_type] = ACTIONS(6965), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_and_eq] = ACTIONS(6886), + [anon_sym_or_eq] = ACTIONS(6886), + [anon_sym_xor_eq] = ACTIONS(6886), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + }, + [STATE(2274)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_RBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(2275)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + }, + [STATE(2276)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7017), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7017), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7017), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6638), + [anon_sym_unsigned] = ACTIONS(6638), + [anon_sym_long] = ACTIONS(6638), + [anon_sym_short] = ACTIONS(6638), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_EQ] = ACTIONS(7017), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_STAR_EQ] = ACTIONS(7019), + [anon_sym_SLASH_EQ] = ACTIONS(7019), + [anon_sym_PERCENT_EQ] = ACTIONS(7019), + [anon_sym_PLUS_EQ] = ACTIONS(7019), + [anon_sym_DASH_EQ] = ACTIONS(7019), + [anon_sym_LT_LT_EQ] = ACTIONS(7019), + [anon_sym_GT_GT_EQ] = ACTIONS(7017), + [anon_sym_AMP_EQ] = ACTIONS(7019), + [anon_sym_CARET_EQ] = ACTIONS(7019), + [anon_sym_PIPE_EQ] = ACTIONS(7019), + [anon_sym_and_eq] = ACTIONS(7019), + [anon_sym_or_eq] = ACTIONS(7019), + [anon_sym_xor_eq] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7017), + [anon_sym_and] = ACTIONS(7017), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7017), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_GT2] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + }, + [STATE(2277)] = { + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7760), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7760), + [anon_sym_constexpr] = ACTIONS(7760), + [anon_sym_volatile] = ACTIONS(7760), + [anon_sym_restrict] = ACTIONS(7760), + [anon_sym___restrict__] = ACTIONS(7760), + [anon_sym__Atomic] = ACTIONS(7760), + [anon_sym__Noreturn] = ACTIONS(7760), + [anon_sym_noreturn] = ACTIONS(7760), + [anon_sym__Nonnull] = ACTIONS(7760), + [anon_sym_mutable] = ACTIONS(7760), + [anon_sym_constinit] = ACTIONS(7760), + [anon_sym_consteval] = ACTIONS(7760), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + }, + [STATE(2278)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + }, + [STATE(2279)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2268), + [sym__abstract_declarator] = STATE(6068), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2906), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2906), + [aux_sym_pointer_declarator_repeat1] = STATE(2268), + [sym_identifier] = ACTIONS(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [aux_sym_preproc_if_token2] = ACTIONS(6459), + [aux_sym_preproc_else_token1] = ACTIONS(6459), + [aux_sym_preproc_elif_token1] = ACTIONS(6457), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7739), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), + [sym_ms_signed_ptr_modifier] = ACTIONS(7741), + [anon_sym__unaligned] = ACTIONS(7743), + [anon_sym___unaligned] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6457), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6457), + [anon_sym_not_eq] = ACTIONS(6457), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6457), + [anon_sym_override] = ACTIONS(6457), + [anon_sym_requires] = ACTIONS(6457), + }, + [STATE(2280)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6627), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6627), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_and_eq] = ACTIONS(6627), + [anon_sym_or_eq] = ACTIONS(6627), + [anon_sym_xor_eq] = ACTIONS(6627), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_GT2] = ACTIONS(6629), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(2281)] = { + [sym_attribute_specifier] = STATE(2281), + [aux_sym_type_definition_repeat1] = STATE(2281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6553), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6553), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_STAR_EQ] = ACTIONS(6555), + [anon_sym_SLASH_EQ] = ACTIONS(6555), + [anon_sym_PERCENT_EQ] = ACTIONS(6555), + [anon_sym_PLUS_EQ] = ACTIONS(6555), + [anon_sym_DASH_EQ] = ACTIONS(6555), + [anon_sym_LT_LT_EQ] = ACTIONS(6555), + [anon_sym_GT_GT_EQ] = ACTIONS(6553), + [anon_sym_AMP_EQ] = ACTIONS(6555), + [anon_sym_CARET_EQ] = ACTIONS(6555), + [anon_sym_PIPE_EQ] = ACTIONS(6555), + [anon_sym_and_eq] = ACTIONS(6555), + [anon_sym_or_eq] = ACTIONS(6555), + [anon_sym_xor_eq] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6553), + [anon_sym_and] = ACTIONS(6553), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6553), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_GT2] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + }, + [STATE(2282)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2283), + [sym__abstract_declarator] = STATE(6052), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2940), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2940), + [aux_sym_pointer_declarator_repeat1] = STATE(2283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_RBRACE] = ACTIONS(6459), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + [anon_sym_COLON_RBRACK] = ACTIONS(6459), + }, + [STATE(2283)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6062), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2944), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2944), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(2284)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_RBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + }, + [STATE(2285)] = { + [sym__abstract_declarator] = STATE(5156), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6997), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + }, + [STATE(2286)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(7389), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7387), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + }, + [STATE(2287)] = { + [sym__abstract_declarator] = STATE(5024), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2290), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6993), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + }, + [STATE(2288)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_RPAREN] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym___extension__] = ACTIONS(6796), + [anon_sym___attribute__] = ACTIONS(6796), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym___restrict__] = ACTIONS(6796), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym__Noreturn] = ACTIONS(6796), + [anon_sym_noreturn] = ACTIONS(6796), + [anon_sym__Nonnull] = ACTIONS(6796), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_constinit] = ACTIONS(6796), + [anon_sym_consteval] = ACTIONS(6796), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6796), + [anon_sym_PERCENT_EQ] = ACTIONS(6796), + [anon_sym_PLUS_EQ] = ACTIONS(6796), + [anon_sym_DASH_EQ] = ACTIONS(6796), + [anon_sym_LT_LT_EQ] = ACTIONS(6796), + [anon_sym_GT_GT_EQ] = ACTIONS(6796), + [anon_sym_AMP_EQ] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6796), + [anon_sym_and_eq] = ACTIONS(6796), + [anon_sym_or_eq] = ACTIONS(6796), + [anon_sym_xor_eq] = ACTIONS(6796), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6794), + [anon_sym_and] = ACTIONS(6794), + [anon_sym_bitor] = ACTIONS(6796), + [anon_sym_xor] = ACTIONS(6794), + [anon_sym_bitand] = ACTIONS(6796), + [anon_sym_not_eq] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6796), + [anon_sym___asm__] = ACTIONS(6796), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6794), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_noexcept] = ACTIONS(6796), + [anon_sym_throw] = ACTIONS(6796), + [anon_sym_requires] = ACTIONS(6796), + [anon_sym_DASH_GT_STAR] = ACTIONS(6796), + }, + [STATE(2289)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [anon_sym_RPAREN] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7790), + [anon_sym_unsigned] = ACTIONS(7790), + [anon_sym_long] = ACTIONS(7790), + [anon_sym_short] = ACTIONS(7790), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_mutable] = ACTIONS(7404), + [anon_sym_constinit] = ACTIONS(7404), + [anon_sym_consteval] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_STAR_EQ] = ACTIONS(7404), + [anon_sym_SLASH_EQ] = ACTIONS(7404), + [anon_sym_PERCENT_EQ] = ACTIONS(7404), + [anon_sym_PLUS_EQ] = ACTIONS(7404), + [anon_sym_DASH_EQ] = ACTIONS(7404), + [anon_sym_LT_LT_EQ] = ACTIONS(7404), + [anon_sym_GT_GT_EQ] = ACTIONS(7404), + [anon_sym_AMP_EQ] = ACTIONS(7404), + [anon_sym_CARET_EQ] = ACTIONS(7404), + [anon_sym_PIPE_EQ] = ACTIONS(7404), + [anon_sym_and_eq] = ACTIONS(7404), + [anon_sym_or_eq] = ACTIONS(7404), + [anon_sym_xor_eq] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7404), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7404), + [anon_sym_not_eq] = ACTIONS(7404), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7404), + [anon_sym_override] = ACTIONS(7404), + [anon_sym_requires] = ACTIONS(7404), + [anon_sym_DASH_GT_STAR] = ACTIONS(7404), + }, + [STATE(2290)] = { + [sym__abstract_declarator] = STATE(5035), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6997), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + }, + [STATE(2291)] = { + [sym_type_qualifier] = STATE(2291), + [sym_alignas_qualifier] = STATE(2498), + [aux_sym__type_definition_type_repeat1] = STATE(2291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7792), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7795), + [anon_sym_constexpr] = ACTIONS(7792), + [anon_sym_volatile] = ACTIONS(7792), + [anon_sym_restrict] = ACTIONS(7792), + [anon_sym___restrict__] = ACTIONS(7792), + [anon_sym__Atomic] = ACTIONS(7792), + [anon_sym__Noreturn] = ACTIONS(7792), + [anon_sym_noreturn] = ACTIONS(7792), + [anon_sym__Nonnull] = ACTIONS(7792), + [anon_sym_mutable] = ACTIONS(7792), + [anon_sym_constinit] = ACTIONS(7792), + [anon_sym_consteval] = ACTIONS(7792), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6527), + [anon_sym_and] = ACTIONS(6527), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6527), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + }, + [STATE(2292)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7801), + [anon_sym_unsigned] = ACTIONS(7801), + [anon_sym_long] = ACTIONS(7801), + [anon_sym_short] = ACTIONS(7801), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + }, + [STATE(2293)] = { + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_else_token1] = ACTIONS(6527), + [aux_sym_preproc_elif_token1] = ACTIONS(6525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6525), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6525), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6525), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6525), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_RBRACK] = ACTIONS(6527), + [anon_sym_EQ] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7803), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_STAR_EQ] = ACTIONS(6527), + [anon_sym_SLASH_EQ] = ACTIONS(6527), + [anon_sym_PERCENT_EQ] = ACTIONS(6527), + [anon_sym_PLUS_EQ] = ACTIONS(6527), + [anon_sym_DASH_EQ] = ACTIONS(6527), + [anon_sym_LT_LT_EQ] = ACTIONS(6527), + [anon_sym_GT_GT_EQ] = ACTIONS(6527), + [anon_sym_AMP_EQ] = ACTIONS(6527), + [anon_sym_CARET_EQ] = ACTIONS(6527), + [anon_sym_PIPE_EQ] = ACTIONS(6527), + [anon_sym_and_eq] = ACTIONS(6525), + [anon_sym_or_eq] = ACTIONS(6525), + [anon_sym_xor_eq] = ACTIONS(6525), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + }, + [STATE(2294)] = { + [sym__abstract_declarator] = STATE(5037), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2301), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_DASH_GT_STAR] = ACTIONS(6999), + }, + [STATE(2295)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2768), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2768), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2768), + }, + [STATE(2296)] = { + [sym__abstract_declarator] = STATE(5137), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2285), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6993), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + }, + [STATE(2297)] = { + [sym__abstract_declarator] = STATE(5051), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7009), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + }, + [STATE(2298)] = { + [sym__abstract_declarator] = STATE(5015), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(2299)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6786), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6786), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6786), + [anon_sym_GT_GT] = ACTIONS(6786), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_mutable] = ACTIONS(6788), + [anon_sym_constinit] = ACTIONS(6788), + [anon_sym_consteval] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_STAR_EQ] = ACTIONS(6788), + [anon_sym_SLASH_EQ] = ACTIONS(6788), + [anon_sym_PERCENT_EQ] = ACTIONS(6788), + [anon_sym_PLUS_EQ] = ACTIONS(6788), + [anon_sym_DASH_EQ] = ACTIONS(6788), + [anon_sym_LT_LT_EQ] = ACTIONS(6788), + [anon_sym_GT_GT_EQ] = ACTIONS(6788), + [anon_sym_AMP_EQ] = ACTIONS(6788), + [anon_sym_CARET_EQ] = ACTIONS(6788), + [anon_sym_PIPE_EQ] = ACTIONS(6788), + [anon_sym_and_eq] = ACTIONS(6788), + [anon_sym_or_eq] = ACTIONS(6788), + [anon_sym_xor_eq] = ACTIONS(6788), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6786), + [anon_sym_and] = ACTIONS(6786), + [anon_sym_bitor] = ACTIONS(6788), + [anon_sym_xor] = ACTIONS(6786), + [anon_sym_bitand] = ACTIONS(6788), + [anon_sym_not_eq] = ACTIONS(6788), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6788), + [anon_sym_override] = ACTIONS(6788), + [anon_sym_noexcept] = ACTIONS(6788), + [anon_sym_throw] = ACTIONS(6788), + [anon_sym_requires] = ACTIONS(6788), + [anon_sym_DASH_GT_STAR] = ACTIONS(6788), + }, + [STATE(2300)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym___restrict__] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym__Noreturn] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym__Nonnull] = ACTIONS(2758), + [anon_sym_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym__Alignas] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2758), + [anon_sym_or_eq] = ACTIONS(2758), + [anon_sym_xor_eq] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2758), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2758), + [anon_sym_not_eq] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2758), + [anon_sym_override] = ACTIONS(2758), + [anon_sym_noexcept] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + }, + [STATE(2301)] = { + [sym__abstract_declarator] = STATE(5049), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7005), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + [anon_sym_DASH_GT_STAR] = ACTIONS(7003), + }, + [STATE(2302)] = { + [sym__abstract_declarator] = STATE(5029), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1885), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + }, + [STATE(2303)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_RPAREN] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym___extension__] = ACTIONS(6722), + [anon_sym___attribute__] = ACTIONS(6722), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_EQ] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6722), + [anon_sym_volatile] = ACTIONS(6722), + [anon_sym_restrict] = ACTIONS(6722), + [anon_sym___restrict__] = ACTIONS(6722), + [anon_sym__Atomic] = ACTIONS(6722), + [anon_sym__Noreturn] = ACTIONS(6722), + [anon_sym_noreturn] = ACTIONS(6722), + [anon_sym__Nonnull] = ACTIONS(6722), + [anon_sym_mutable] = ACTIONS(6722), + [anon_sym_constinit] = ACTIONS(6722), + [anon_sym_consteval] = ACTIONS(6722), + [anon_sym_alignas] = ACTIONS(6722), + [anon_sym__Alignas] = ACTIONS(6722), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_STAR_EQ] = ACTIONS(6722), + [anon_sym_SLASH_EQ] = ACTIONS(6722), + [anon_sym_PERCENT_EQ] = ACTIONS(6722), + [anon_sym_PLUS_EQ] = ACTIONS(6722), + [anon_sym_DASH_EQ] = ACTIONS(6722), + [anon_sym_LT_LT_EQ] = ACTIONS(6722), + [anon_sym_GT_GT_EQ] = ACTIONS(6722), + [anon_sym_AMP_EQ] = ACTIONS(6722), + [anon_sym_CARET_EQ] = ACTIONS(6722), + [anon_sym_PIPE_EQ] = ACTIONS(6722), + [anon_sym_and_eq] = ACTIONS(6722), + [anon_sym_or_eq] = ACTIONS(6722), + [anon_sym_xor_eq] = ACTIONS(6722), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6720), + [anon_sym_and] = ACTIONS(6720), + [anon_sym_bitor] = ACTIONS(6722), + [anon_sym_xor] = ACTIONS(6720), + [anon_sym_bitand] = ACTIONS(6722), + [anon_sym_not_eq] = ACTIONS(6722), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6722), + [anon_sym___asm__] = ACTIONS(6722), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6720), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6722), + [anon_sym_override] = ACTIONS(6722), + [anon_sym_noexcept] = ACTIONS(6722), + [anon_sym_throw] = ACTIONS(6722), + [anon_sym_requires] = ACTIONS(6722), + [anon_sym_DASH_GT_STAR] = ACTIONS(6722), + }, + [STATE(2304)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_mutable] = ACTIONS(6718), + [anon_sym_constinit] = ACTIONS(6718), + [anon_sym_consteval] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6718), + [anon_sym_or_eq] = ACTIONS(6718), + [anon_sym_xor_eq] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6718), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6718), + [anon_sym_not_eq] = ACTIONS(6718), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6718), + [anon_sym___asm__] = ACTIONS(6718), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6718), + [anon_sym_override] = ACTIONS(6718), + [anon_sym_noexcept] = ACTIONS(6718), + [anon_sym_throw] = ACTIONS(6718), + [anon_sym_requires] = ACTIONS(6718), + [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + }, + [STATE(2305)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [anon_sym_RPAREN] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7391), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(7393), + [anon_sym___attribute__] = ACTIONS(7393), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7393), + [anon_sym_volatile] = ACTIONS(7393), + [anon_sym_restrict] = ACTIONS(7393), + [anon_sym___restrict__] = ACTIONS(7393), + [anon_sym__Atomic] = ACTIONS(7393), + [anon_sym__Noreturn] = ACTIONS(7393), + [anon_sym_noreturn] = ACTIONS(7393), + [anon_sym__Nonnull] = ACTIONS(7393), + [anon_sym_mutable] = ACTIONS(7393), + [anon_sym_constinit] = ACTIONS(7393), + [anon_sym_consteval] = ACTIONS(7393), + [anon_sym_alignas] = ACTIONS(7393), + [anon_sym__Alignas] = ACTIONS(7393), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_STAR_EQ] = ACTIONS(7393), + [anon_sym_SLASH_EQ] = ACTIONS(7393), + [anon_sym_PERCENT_EQ] = ACTIONS(7393), + [anon_sym_PLUS_EQ] = ACTIONS(7393), + [anon_sym_DASH_EQ] = ACTIONS(7393), + [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7393), + [anon_sym_CARET_EQ] = ACTIONS(7393), + [anon_sym_PIPE_EQ] = ACTIONS(7393), + [anon_sym_and_eq] = ACTIONS(7393), + [anon_sym_or_eq] = ACTIONS(7393), + [anon_sym_xor_eq] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + [anon_sym_DASH_GT_STAR] = ACTIONS(7393), + }, + [STATE(2306)] = { + [sym__abstract_declarator] = STATE(4958), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(2307)] = { + [sym__abstract_declarator] = STATE(5105), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2163), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7005), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7003), + }, + [STATE(2308)] = { + [sym__abstract_declarator] = STATE(5052), + [sym_abstract_parenthesized_declarator] = STATE(4672), + [sym_abstract_pointer_declarator] = STATE(4672), + [sym_abstract_function_declarator] = STATE(4672), + [sym_abstract_array_declarator] = STATE(4672), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2278), + [sym_parameter_list] = STATE(1869), + [sym_abstract_reference_declarator] = STATE(4672), + [sym__function_declarator_seq] = STATE(4681), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6648), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6971), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6973), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6975), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6664), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6668), + [anon_sym__Alignas] = ACTIONS(6668), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6999), + }, + [STATE(2309)] = { + [sym_identifier] = ACTIONS(7809), + [anon_sym_LPAREN2] = ACTIONS(7811), + [anon_sym_BANG] = ACTIONS(7811), + [anon_sym_TILDE] = ACTIONS(7811), + [anon_sym_DASH] = ACTIONS(7809), + [anon_sym_PLUS] = ACTIONS(7809), + [anon_sym_STAR] = ACTIONS(7811), + [anon_sym_AMP] = ACTIONS(7811), + [anon_sym_SEMI] = ACTIONS(7811), + [anon_sym___extension__] = ACTIONS(7809), + [anon_sym_COLON_COLON] = ACTIONS(7811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7811), + [anon_sym_LBRACE] = ACTIONS(7811), + [anon_sym_LBRACK] = ACTIONS(7809), + [sym_primitive_type] = ACTIONS(7809), + [anon_sym_if] = ACTIONS(7809), + [anon_sym_switch] = ACTIONS(7809), + [anon_sym_case] = ACTIONS(7809), + [anon_sym_default] = ACTIONS(7809), + [anon_sym_while] = ACTIONS(7809), + [anon_sym_do] = ACTIONS(7809), + [anon_sym_for] = ACTIONS(7809), + [anon_sym_return] = ACTIONS(7809), + [anon_sym_break] = ACTIONS(7809), + [anon_sym_continue] = ACTIONS(7809), + [anon_sym_goto] = ACTIONS(7809), + [anon_sym___try] = ACTIONS(7809), + [anon_sym___leave] = ACTIONS(7809), + [anon_sym_not] = ACTIONS(7809), + [anon_sym_compl] = ACTIONS(7809), + [anon_sym_DASH_DASH] = ACTIONS(7811), + [anon_sym_PLUS_PLUS] = ACTIONS(7811), + [anon_sym_sizeof] = ACTIONS(7809), + [anon_sym___alignof__] = ACTIONS(7809), + [anon_sym___alignof] = ACTIONS(7809), + [anon_sym__alignof] = ACTIONS(7809), + [anon_sym_alignof] = ACTIONS(7809), + [anon_sym__Alignof] = ACTIONS(7809), + [anon_sym_offsetof] = ACTIONS(7809), + [anon_sym__Generic] = ACTIONS(7809), + [anon_sym_typename] = ACTIONS(7809), + [anon_sym_asm] = ACTIONS(7809), + [anon_sym___asm__] = ACTIONS(7809), + [anon_sym___asm] = ACTIONS(7809), + [sym_number_literal] = ACTIONS(7811), + [anon_sym_L_SQUOTE] = ACTIONS(7811), + [anon_sym_u_SQUOTE] = ACTIONS(7811), + [anon_sym_U_SQUOTE] = ACTIONS(7811), + [anon_sym_u8_SQUOTE] = ACTIONS(7811), + [anon_sym_SQUOTE] = ACTIONS(7811), + [anon_sym_L_DQUOTE] = ACTIONS(7811), + [anon_sym_u_DQUOTE] = ACTIONS(7811), + [anon_sym_U_DQUOTE] = ACTIONS(7811), + [anon_sym_u8_DQUOTE] = ACTIONS(7811), + [anon_sym_DQUOTE] = ACTIONS(7811), + [sym_true] = ACTIONS(7809), + [sym_false] = ACTIONS(7809), + [anon_sym_NULL] = ACTIONS(7809), + [anon_sym_nullptr] = ACTIONS(7809), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7809), + [anon_sym_template] = ACTIONS(7809), + [anon_sym_try] = ACTIONS(7809), + [anon_sym_delete] = ACTIONS(7809), + [anon_sym_throw] = ACTIONS(7809), + [anon_sym_co_return] = ACTIONS(7809), + [anon_sym_co_yield] = ACTIONS(7809), + [anon_sym_R_DQUOTE] = ACTIONS(7811), + [anon_sym_LR_DQUOTE] = ACTIONS(7811), + [anon_sym_uR_DQUOTE] = ACTIONS(7811), + [anon_sym_UR_DQUOTE] = ACTIONS(7811), + [anon_sym_u8R_DQUOTE] = ACTIONS(7811), + [anon_sym_co_await] = ACTIONS(7809), + [anon_sym_new] = ACTIONS(7809), + [anon_sym_requires] = ACTIONS(7809), + [anon_sym_CARET_CARET] = ACTIONS(7811), + [anon_sym_LBRACK_COLON] = ACTIONS(7811), + [sym_this] = ACTIONS(7809), + }, + [STATE(2310)] = { + [sym_attribute_specifier] = STATE(2862), + [sym_field_declaration_list] = STATE(2602), + [sym_virtual_specifier] = STATE(9399), + [sym_base_class_clause] = STATE(10246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_RPAREN] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6828), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_COLON] = ACTIONS(7817), + [anon_sym_LBRACE] = ACTIONS(7819), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6828), + [anon_sym_volatile] = ACTIONS(6828), + [anon_sym_restrict] = ACTIONS(6828), + [anon_sym___restrict__] = ACTIONS(6828), + [anon_sym__Atomic] = ACTIONS(6828), + [anon_sym__Noreturn] = ACTIONS(6828), + [anon_sym_noreturn] = ACTIONS(6828), + [anon_sym__Nonnull] = ACTIONS(6828), + [anon_sym_mutable] = ACTIONS(6828), + [anon_sym_constinit] = ACTIONS(6828), + [anon_sym_consteval] = ACTIONS(6828), + [anon_sym_alignas] = ACTIONS(6828), + [anon_sym__Alignas] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_STAR_EQ] = ACTIONS(6828), + [anon_sym_SLASH_EQ] = ACTIONS(6828), + [anon_sym_PERCENT_EQ] = ACTIONS(6828), + [anon_sym_PLUS_EQ] = ACTIONS(6828), + [anon_sym_DASH_EQ] = ACTIONS(6828), + [anon_sym_LT_LT_EQ] = ACTIONS(6828), + [anon_sym_GT_GT_EQ] = ACTIONS(6828), + [anon_sym_AMP_EQ] = ACTIONS(6828), + [anon_sym_CARET_EQ] = ACTIONS(6828), + [anon_sym_PIPE_EQ] = ACTIONS(6828), + [anon_sym_and_eq] = ACTIONS(6828), + [anon_sym_or_eq] = ACTIONS(6828), + [anon_sym_xor_eq] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6828), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6828), + [anon_sym_not_eq] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6826), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7821), + [anon_sym_override] = ACTIONS(7821), + [anon_sym_requires] = ACTIONS(6828), + [anon_sym_DASH_GT_STAR] = ACTIONS(6828), + }, + [STATE(2311)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7414), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7414), + [anon_sym_GT_GT] = ACTIONS(7414), + [anon_sym___extension__] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym___restrict__] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym__Noreturn] = ACTIONS(7416), + [anon_sym_noreturn] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym_mutable] = ACTIONS(7416), + [anon_sym_constinit] = ACTIONS(7416), + [anon_sym_consteval] = ACTIONS(7416), + [anon_sym_alignas] = ACTIONS(7416), + [anon_sym__Alignas] = ACTIONS(7416), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_STAR_EQ] = ACTIONS(7416), + [anon_sym_SLASH_EQ] = ACTIONS(7416), + [anon_sym_PERCENT_EQ] = ACTIONS(7416), + [anon_sym_PLUS_EQ] = ACTIONS(7416), + [anon_sym_DASH_EQ] = ACTIONS(7416), + [anon_sym_LT_LT_EQ] = ACTIONS(7416), + [anon_sym_GT_GT_EQ] = ACTIONS(7416), + [anon_sym_AMP_EQ] = ACTIONS(7416), + [anon_sym_CARET_EQ] = ACTIONS(7416), + [anon_sym_PIPE_EQ] = ACTIONS(7416), + [anon_sym_and_eq] = ACTIONS(7416), + [anon_sym_or_eq] = ACTIONS(7416), + [anon_sym_xor_eq] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7414), + [anon_sym_and] = ACTIONS(7414), + [anon_sym_bitor] = ACTIONS(7416), + [anon_sym_xor] = ACTIONS(7414), + [anon_sym_bitand] = ACTIONS(7416), + [anon_sym_not_eq] = ACTIONS(7416), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7414), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7416), + [anon_sym_override] = ACTIONS(7416), + [anon_sym_requires] = ACTIONS(7416), + [anon_sym_DASH_GT_STAR] = ACTIONS(7416), + }, + [STATE(2312)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + }, + [STATE(2313)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7199), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_DASH_GT_STAR] = ACTIONS(7201), + }, + [STATE(2314)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [anon_sym_RPAREN] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7385), + [anon_sym___attribute__] = ACTIONS(7385), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7385), + [anon_sym_volatile] = ACTIONS(7385), + [anon_sym_restrict] = ACTIONS(7385), + [anon_sym___restrict__] = ACTIONS(7385), + [anon_sym__Atomic] = ACTIONS(7385), + [anon_sym__Noreturn] = ACTIONS(7385), + [anon_sym_noreturn] = ACTIONS(7385), + [anon_sym__Nonnull] = ACTIONS(7385), + [anon_sym_mutable] = ACTIONS(7385), + [anon_sym_constinit] = ACTIONS(7385), + [anon_sym_consteval] = ACTIONS(7385), + [anon_sym_alignas] = ACTIONS(7385), + [anon_sym__Alignas] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_STAR_EQ] = ACTIONS(7385), + [anon_sym_SLASH_EQ] = ACTIONS(7385), + [anon_sym_PERCENT_EQ] = ACTIONS(7385), + [anon_sym_PLUS_EQ] = ACTIONS(7385), + [anon_sym_DASH_EQ] = ACTIONS(7385), + [anon_sym_LT_LT_EQ] = ACTIONS(7385), + [anon_sym_GT_GT_EQ] = ACTIONS(7385), + [anon_sym_AMP_EQ] = ACTIONS(7385), + [anon_sym_CARET_EQ] = ACTIONS(7385), + [anon_sym_PIPE_EQ] = ACTIONS(7385), + [anon_sym_and_eq] = ACTIONS(7385), + [anon_sym_or_eq] = ACTIONS(7385), + [anon_sym_xor_eq] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7385), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7385), + [anon_sym_not_eq] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7385), + [anon_sym_override] = ACTIONS(7385), + [anon_sym_requires] = ACTIONS(7385), + [anon_sym_DASH_GT_STAR] = ACTIONS(7385), + }, + [STATE(2315)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2544), + [sym_ms_pointer_modifier] = STATE(2315), + [aux_sym_pointer_declarator_repeat1] = STATE(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_RPAREN] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6600), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(7823), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7826), + [sym_ms_signed_ptr_modifier] = ACTIONS(7826), + [anon_sym__unaligned] = ACTIONS(7829), + [anon_sym___unaligned] = ACTIONS(7829), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_STAR_EQ] = ACTIONS(6602), + [anon_sym_SLASH_EQ] = ACTIONS(6602), + [anon_sym_PERCENT_EQ] = ACTIONS(6602), + [anon_sym_PLUS_EQ] = ACTIONS(6602), + [anon_sym_DASH_EQ] = ACTIONS(6602), + [anon_sym_LT_LT_EQ] = ACTIONS(6602), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6602), + [anon_sym_CARET_EQ] = ACTIONS(6602), + [anon_sym_PIPE_EQ] = ACTIONS(6602), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6600), + [anon_sym_and] = ACTIONS(6600), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6600), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6602), + }, + [STATE(2316)] = { + [sym_template_argument_list] = STATE(2405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6201), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(7832), + [anon_sym_LT_LT] = ACTIONS(6201), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6208), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6208), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_and_eq] = ACTIONS(6208), + [anon_sym_or_eq] = ACTIONS(6208), + [anon_sym_xor_eq] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6201), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6208), + }, + [STATE(2317)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym_ref_qualifier] = STATE(2418), + [sym__function_exception_specification] = STATE(2817), + [sym__function_attributes_end] = STATE(4198), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4241), + [sym_noexcept] = STATE(2817), + [sym_throw_specifier] = STATE(2817), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7835), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2318)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [anon_sym_RPAREN] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7213), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7213), + [anon_sym_GT_GT] = ACTIONS(7213), + [anon_sym___extension__] = ACTIONS(7215), + [anon_sym___attribute__] = ACTIONS(7215), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(7844), + [anon_sym_unsigned] = ACTIONS(7844), + [anon_sym_long] = ACTIONS(7844), + [anon_sym_short] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(7213), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7215), + [anon_sym_volatile] = ACTIONS(7215), + [anon_sym_restrict] = ACTIONS(7215), + [anon_sym___restrict__] = ACTIONS(7215), + [anon_sym__Atomic] = ACTIONS(7215), + [anon_sym__Noreturn] = ACTIONS(7215), + [anon_sym_noreturn] = ACTIONS(7215), + [anon_sym__Nonnull] = ACTIONS(7215), + [anon_sym_mutable] = ACTIONS(7215), + [anon_sym_constinit] = ACTIONS(7215), + [anon_sym_consteval] = ACTIONS(7215), + [anon_sym_alignas] = ACTIONS(7215), + [anon_sym__Alignas] = ACTIONS(7215), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_STAR_EQ] = ACTIONS(7215), + [anon_sym_SLASH_EQ] = ACTIONS(7215), + [anon_sym_PERCENT_EQ] = ACTIONS(7215), + [anon_sym_PLUS_EQ] = ACTIONS(7215), + [anon_sym_DASH_EQ] = ACTIONS(7215), + [anon_sym_LT_LT_EQ] = ACTIONS(7215), + [anon_sym_GT_GT_EQ] = ACTIONS(7215), + [anon_sym_AMP_EQ] = ACTIONS(7215), + [anon_sym_CARET_EQ] = ACTIONS(7215), + [anon_sym_PIPE_EQ] = ACTIONS(7215), + [anon_sym_and_eq] = ACTIONS(7215), + [anon_sym_or_eq] = ACTIONS(7215), + [anon_sym_xor_eq] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7213), + [anon_sym_and] = ACTIONS(7213), + [anon_sym_bitor] = ACTIONS(7215), + [anon_sym_xor] = ACTIONS(7213), + [anon_sym_bitand] = ACTIONS(7215), + [anon_sym_not_eq] = ACTIONS(7215), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7213), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7215), + [anon_sym_override] = ACTIONS(7215), + [anon_sym_requires] = ACTIONS(7215), + [anon_sym_DASH_GT_STAR] = ACTIONS(7215), + }, + [STATE(2319)] = { + [sym_type_qualifier] = STATE(2291), + [sym_alignas_qualifier] = STATE(2498), + [aux_sym__type_definition_type_repeat1] = STATE(2291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6388), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6388), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6388), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(6408), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6416), + [anon_sym_constexpr] = ACTIONS(6408), + [anon_sym_volatile] = ACTIONS(6408), + [anon_sym_restrict] = ACTIONS(6408), + [anon_sym___restrict__] = ACTIONS(6408), + [anon_sym__Atomic] = ACTIONS(6408), + [anon_sym__Noreturn] = ACTIONS(6408), + [anon_sym_noreturn] = ACTIONS(6408), + [anon_sym__Nonnull] = ACTIONS(6408), + [anon_sym_mutable] = ACTIONS(6408), + [anon_sym_constinit] = ACTIONS(6408), + [anon_sym_consteval] = ACTIONS(6408), + [anon_sym_alignas] = ACTIONS(6418), + [anon_sym__Alignas] = ACTIONS(6418), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_STAR_EQ] = ACTIONS(6390), + [anon_sym_SLASH_EQ] = ACTIONS(6390), + [anon_sym_PERCENT_EQ] = ACTIONS(6390), + [anon_sym_PLUS_EQ] = ACTIONS(6390), + [anon_sym_DASH_EQ] = ACTIONS(6390), + [anon_sym_LT_LT_EQ] = ACTIONS(6390), + [anon_sym_GT_GT_EQ] = ACTIONS(6390), + [anon_sym_AMP_EQ] = ACTIONS(6390), + [anon_sym_CARET_EQ] = ACTIONS(6390), + [anon_sym_PIPE_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6388), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + }, + [STATE(2320)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [anon_sym_RPAREN] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7239), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7239), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7239), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7239), + [anon_sym_GT_GT] = ACTIONS(7239), + [anon_sym___extension__] = ACTIONS(7241), + [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(7846), + [anon_sym_unsigned] = ACTIONS(7846), + [anon_sym_long] = ACTIONS(7846), + [anon_sym_short] = ACTIONS(7846), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(7239), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7241), + [anon_sym_volatile] = ACTIONS(7241), + [anon_sym_restrict] = ACTIONS(7241), + [anon_sym___restrict__] = ACTIONS(7241), + [anon_sym__Atomic] = ACTIONS(7241), + [anon_sym__Noreturn] = ACTIONS(7241), + [anon_sym_noreturn] = ACTIONS(7241), + [anon_sym__Nonnull] = ACTIONS(7241), + [anon_sym_mutable] = ACTIONS(7241), + [anon_sym_constinit] = ACTIONS(7241), + [anon_sym_consteval] = ACTIONS(7241), + [anon_sym_alignas] = ACTIONS(7241), + [anon_sym__Alignas] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_STAR_EQ] = ACTIONS(7241), + [anon_sym_SLASH_EQ] = ACTIONS(7241), + [anon_sym_PERCENT_EQ] = ACTIONS(7241), + [anon_sym_PLUS_EQ] = ACTIONS(7241), + [anon_sym_DASH_EQ] = ACTIONS(7241), + [anon_sym_LT_LT_EQ] = ACTIONS(7241), + [anon_sym_GT_GT_EQ] = ACTIONS(7241), + [anon_sym_AMP_EQ] = ACTIONS(7241), + [anon_sym_CARET_EQ] = ACTIONS(7241), + [anon_sym_PIPE_EQ] = ACTIONS(7241), + [anon_sym_and_eq] = ACTIONS(7241), + [anon_sym_or_eq] = ACTIONS(7241), + [anon_sym_xor_eq] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7239), + [anon_sym_and] = ACTIONS(7239), + [anon_sym_bitor] = ACTIONS(7241), + [anon_sym_xor] = ACTIONS(7239), + [anon_sym_bitand] = ACTIONS(7241), + [anon_sym_not_eq] = ACTIONS(7241), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7239), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7241), + [anon_sym_override] = ACTIONS(7241), + [anon_sym_requires] = ACTIONS(7241), + [anon_sym_DASH_GT_STAR] = ACTIONS(7241), + }, + [STATE(2321)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [anon_sym_RPAREN] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7395), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7395), + [anon_sym_GT_GT] = ACTIONS(7395), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7397), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7395), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_STAR_EQ] = ACTIONS(7397), + [anon_sym_SLASH_EQ] = ACTIONS(7397), + [anon_sym_PERCENT_EQ] = ACTIONS(7397), + [anon_sym_PLUS_EQ] = ACTIONS(7397), + [anon_sym_DASH_EQ] = ACTIONS(7397), + [anon_sym_LT_LT_EQ] = ACTIONS(7397), + [anon_sym_GT_GT_EQ] = ACTIONS(7397), + [anon_sym_AMP_EQ] = ACTIONS(7397), + [anon_sym_CARET_EQ] = ACTIONS(7397), + [anon_sym_PIPE_EQ] = ACTIONS(7397), + [anon_sym_and_eq] = ACTIONS(7397), + [anon_sym_or_eq] = ACTIONS(7397), + [anon_sym_xor_eq] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7395), + [anon_sym_and] = ACTIONS(7395), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7395), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7395), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + [anon_sym_DASH_GT_STAR] = ACTIONS(7397), + }, + [STATE(2322)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym_ref_qualifier] = STATE(2407), + [sym__function_exception_specification] = STATE(2816), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4273), + [sym_noexcept] = STATE(2816), + [sym_throw_specifier] = STATE(2816), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7835), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7848), + [anon_sym_override] = ACTIONS(7848), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(7851), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2323)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(9706), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(9706), + [sym_variadic_parameter_declaration] = STATE(9706), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2324)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(6792), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_noexcept] = ACTIONS(6792), + [anon_sym_throw] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + }, + [STATE(2325)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6716), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6716), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_GT2] = ACTIONS(6718), + [anon_sym_requires] = ACTIONS(6716), + }, + [STATE(2326)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [anon_sym_RPAREN] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(7788), + [anon_sym_unsigned] = ACTIONS(7788), + [anon_sym_long] = ACTIONS(7788), + [anon_sym_short] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7251), + [anon_sym_volatile] = ACTIONS(7251), + [anon_sym_restrict] = ACTIONS(7251), + [anon_sym___restrict__] = ACTIONS(7251), + [anon_sym__Atomic] = ACTIONS(7251), + [anon_sym__Noreturn] = ACTIONS(7251), + [anon_sym_noreturn] = ACTIONS(7251), + [anon_sym__Nonnull] = ACTIONS(7251), + [anon_sym_mutable] = ACTIONS(7251), + [anon_sym_constinit] = ACTIONS(7251), + [anon_sym_consteval] = ACTIONS(7251), + [anon_sym_alignas] = ACTIONS(7251), + [anon_sym__Alignas] = ACTIONS(7251), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_STAR_EQ] = ACTIONS(7251), + [anon_sym_SLASH_EQ] = ACTIONS(7251), + [anon_sym_PERCENT_EQ] = ACTIONS(7251), + [anon_sym_PLUS_EQ] = ACTIONS(7251), + [anon_sym_DASH_EQ] = ACTIONS(7251), + [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym_GT_GT_EQ] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7251), + [anon_sym_CARET_EQ] = ACTIONS(7251), + [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7249), + [anon_sym_and] = ACTIONS(7249), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7249), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DASH_GT_STAR] = ACTIONS(7251), + }, + [STATE(2327)] = { + [sym_type_qualifier] = STATE(2291), + [sym_alignas_qualifier] = STATE(2498), + [aux_sym__type_definition_type_repeat1] = STATE(2291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_RPAREN] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6521), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6521), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6521), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6521), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym___extension__] = ACTIONS(6408), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6416), + [anon_sym_constexpr] = ACTIONS(6408), + [anon_sym_volatile] = ACTIONS(6408), + [anon_sym_restrict] = ACTIONS(6408), + [anon_sym___restrict__] = ACTIONS(6408), + [anon_sym__Atomic] = ACTIONS(6408), + [anon_sym__Noreturn] = ACTIONS(6408), + [anon_sym_noreturn] = ACTIONS(6408), + [anon_sym__Nonnull] = ACTIONS(6408), + [anon_sym_mutable] = ACTIONS(6408), + [anon_sym_constinit] = ACTIONS(6408), + [anon_sym_consteval] = ACTIONS(6408), + [anon_sym_alignas] = ACTIONS(6418), + [anon_sym__Alignas] = ACTIONS(6418), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_STAR_EQ] = ACTIONS(6523), + [anon_sym_SLASH_EQ] = ACTIONS(6523), + [anon_sym_PERCENT_EQ] = ACTIONS(6523), + [anon_sym_PLUS_EQ] = ACTIONS(6523), + [anon_sym_DASH_EQ] = ACTIONS(6523), + [anon_sym_LT_LT_EQ] = ACTIONS(6523), + [anon_sym_GT_GT_EQ] = ACTIONS(6523), + [anon_sym_AMP_EQ] = ACTIONS(6523), + [anon_sym_CARET_EQ] = ACTIONS(6523), + [anon_sym_PIPE_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6523), + [anon_sym_and] = ACTIONS(6523), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6523), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + [anon_sym_DASH_GT_STAR] = ACTIONS(6523), + }, + [STATE(2328)] = { + [sym_decltype_auto] = STATE(3388), + [sym_template_argument_list] = STATE(2525), + [aux_sym_sized_type_specifier_repeat1] = STATE(2505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5251), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5251), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5251), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(5251), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6586), + [anon_sym_unsigned] = ACTIONS(6586), + [anon_sym_long] = ACTIONS(6586), + [anon_sym_short] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_STAR_EQ] = ACTIONS(5258), + [anon_sym_SLASH_EQ] = ACTIONS(5258), + [anon_sym_PERCENT_EQ] = ACTIONS(5258), + [anon_sym_PLUS_EQ] = ACTIONS(5258), + [anon_sym_DASH_EQ] = ACTIONS(5258), + [anon_sym_LT_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_GT_EQ] = ACTIONS(5258), + [anon_sym_AMP_EQ] = ACTIONS(5258), + [anon_sym_CARET_EQ] = ACTIONS(5258), + [anon_sym_PIPE_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5258), + [anon_sym_and] = ACTIONS(5258), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5258), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5251), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + [anon_sym_DASH_GT_STAR] = ACTIONS(5258), + }, + [STATE(2329)] = { + [sym_identifier] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7858), + [anon_sym_BANG] = ACTIONS(7858), + [anon_sym_TILDE] = ACTIONS(7858), + [anon_sym_DASH] = ACTIONS(7856), + [anon_sym_PLUS] = ACTIONS(7856), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_SEMI] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(7856), + [anon_sym_COLON_COLON] = ACTIONS(7858), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7858), + [anon_sym_LBRACE] = ACTIONS(7858), + [anon_sym_LBRACK] = ACTIONS(7856), + [sym_primitive_type] = ACTIONS(7856), + [anon_sym_if] = ACTIONS(7856), + [anon_sym_switch] = ACTIONS(7856), + [anon_sym_case] = ACTIONS(7856), + [anon_sym_default] = ACTIONS(7856), + [anon_sym_while] = ACTIONS(7856), + [anon_sym_do] = ACTIONS(7856), + [anon_sym_for] = ACTIONS(7856), + [anon_sym_return] = ACTIONS(7856), + [anon_sym_break] = ACTIONS(7856), + [anon_sym_continue] = ACTIONS(7856), + [anon_sym_goto] = ACTIONS(7856), + [anon_sym___try] = ACTIONS(7856), + [anon_sym___leave] = ACTIONS(7856), + [anon_sym_not] = ACTIONS(7856), + [anon_sym_compl] = ACTIONS(7856), + [anon_sym_DASH_DASH] = ACTIONS(7858), + [anon_sym_PLUS_PLUS] = ACTIONS(7858), + [anon_sym_sizeof] = ACTIONS(7856), + [anon_sym___alignof__] = ACTIONS(7856), + [anon_sym___alignof] = ACTIONS(7856), + [anon_sym__alignof] = ACTIONS(7856), + [anon_sym_alignof] = ACTIONS(7856), + [anon_sym__Alignof] = ACTIONS(7856), + [anon_sym_offsetof] = ACTIONS(7856), + [anon_sym__Generic] = ACTIONS(7856), + [anon_sym_typename] = ACTIONS(7856), + [anon_sym_asm] = ACTIONS(7856), + [anon_sym___asm__] = ACTIONS(7856), + [anon_sym___asm] = ACTIONS(7856), + [sym_number_literal] = ACTIONS(7858), + [anon_sym_L_SQUOTE] = ACTIONS(7858), + [anon_sym_u_SQUOTE] = ACTIONS(7858), + [anon_sym_U_SQUOTE] = ACTIONS(7858), + [anon_sym_u8_SQUOTE] = ACTIONS(7858), + [anon_sym_SQUOTE] = ACTIONS(7858), + [anon_sym_L_DQUOTE] = ACTIONS(7858), + [anon_sym_u_DQUOTE] = ACTIONS(7858), + [anon_sym_U_DQUOTE] = ACTIONS(7858), + [anon_sym_u8_DQUOTE] = ACTIONS(7858), + [anon_sym_DQUOTE] = ACTIONS(7858), + [sym_true] = ACTIONS(7856), + [sym_false] = ACTIONS(7856), + [anon_sym_NULL] = ACTIONS(7856), + [anon_sym_nullptr] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7856), + [anon_sym_template] = ACTIONS(7856), + [anon_sym_try] = ACTIONS(7856), + [anon_sym_delete] = ACTIONS(7856), + [anon_sym_throw] = ACTIONS(7856), + [anon_sym_co_return] = ACTIONS(7856), + [anon_sym_co_yield] = ACTIONS(7856), + [anon_sym_R_DQUOTE] = ACTIONS(7858), + [anon_sym_LR_DQUOTE] = ACTIONS(7858), + [anon_sym_uR_DQUOTE] = ACTIONS(7858), + [anon_sym_UR_DQUOTE] = ACTIONS(7858), + [anon_sym_u8R_DQUOTE] = ACTIONS(7858), + [anon_sym_co_await] = ACTIONS(7856), + [anon_sym_new] = ACTIONS(7856), + [anon_sym_requires] = ACTIONS(7856), + [anon_sym_CARET_CARET] = ACTIONS(7858), + [anon_sym_LBRACK_COLON] = ACTIONS(7858), + [sym_this] = ACTIONS(7856), + }, + [STATE(2330)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7408), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7408), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7408), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7408), + [anon_sym_GT_GT] = ACTIONS(7408), + [anon_sym___extension__] = ACTIONS(7410), + [anon_sym___attribute__] = ACTIONS(7410), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(7860), + [anon_sym_unsigned] = ACTIONS(7860), + [anon_sym_long] = ACTIONS(7860), + [anon_sym_short] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7410), + [anon_sym_volatile] = ACTIONS(7410), + [anon_sym_restrict] = ACTIONS(7410), + [anon_sym___restrict__] = ACTIONS(7410), + [anon_sym__Atomic] = ACTIONS(7410), + [anon_sym__Noreturn] = ACTIONS(7410), + [anon_sym_noreturn] = ACTIONS(7410), + [anon_sym__Nonnull] = ACTIONS(7410), + [anon_sym_mutable] = ACTIONS(7410), + [anon_sym_constinit] = ACTIONS(7410), + [anon_sym_consteval] = ACTIONS(7410), + [anon_sym_alignas] = ACTIONS(7410), + [anon_sym__Alignas] = ACTIONS(7410), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_STAR_EQ] = ACTIONS(7410), + [anon_sym_SLASH_EQ] = ACTIONS(7410), + [anon_sym_PERCENT_EQ] = ACTIONS(7410), + [anon_sym_PLUS_EQ] = ACTIONS(7410), + [anon_sym_DASH_EQ] = ACTIONS(7410), + [anon_sym_LT_LT_EQ] = ACTIONS(7410), + [anon_sym_GT_GT_EQ] = ACTIONS(7410), + [anon_sym_AMP_EQ] = ACTIONS(7410), + [anon_sym_CARET_EQ] = ACTIONS(7410), + [anon_sym_PIPE_EQ] = ACTIONS(7410), + [anon_sym_and_eq] = ACTIONS(7410), + [anon_sym_or_eq] = ACTIONS(7410), + [anon_sym_xor_eq] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7408), + [anon_sym_and] = ACTIONS(7408), + [anon_sym_bitor] = ACTIONS(7410), + [anon_sym_xor] = ACTIONS(7408), + [anon_sym_bitand] = ACTIONS(7410), + [anon_sym_not_eq] = ACTIONS(7410), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7408), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7410), + [anon_sym_override] = ACTIONS(7410), + [anon_sym_requires] = ACTIONS(7410), + [anon_sym_DASH_GT_STAR] = ACTIONS(7410), + }, + [STATE(2331)] = { + [sym_attribute_specifier] = STATE(2990), + [sym_field_declaration_list] = STATE(2680), + [sym_virtual_specifier] = STATE(9335), + [sym_base_class_clause] = STATE(10303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6826), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6828), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_COLON] = ACTIONS(7817), + [anon_sym_LBRACE] = ACTIONS(7866), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6828), + [anon_sym_volatile] = ACTIONS(6828), + [anon_sym_restrict] = ACTIONS(6828), + [anon_sym___restrict__] = ACTIONS(6828), + [anon_sym__Atomic] = ACTIONS(6828), + [anon_sym__Noreturn] = ACTIONS(6828), + [anon_sym_noreturn] = ACTIONS(6828), + [anon_sym__Nonnull] = ACTIONS(6828), + [anon_sym_mutable] = ACTIONS(6828), + [anon_sym_constinit] = ACTIONS(6828), + [anon_sym_consteval] = ACTIONS(6828), + [anon_sym_alignas] = ACTIONS(6828), + [anon_sym__Alignas] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_STAR_EQ] = ACTIONS(6828), + [anon_sym_SLASH_EQ] = ACTIONS(6828), + [anon_sym_PERCENT_EQ] = ACTIONS(6828), + [anon_sym_PLUS_EQ] = ACTIONS(6828), + [anon_sym_DASH_EQ] = ACTIONS(6828), + [anon_sym_LT_LT_EQ] = ACTIONS(6828), + [anon_sym_GT_GT_EQ] = ACTIONS(6826), + [anon_sym_AMP_EQ] = ACTIONS(6828), + [anon_sym_CARET_EQ] = ACTIONS(6828), + [anon_sym_PIPE_EQ] = ACTIONS(6828), + [anon_sym_and_eq] = ACTIONS(6828), + [anon_sym_or_eq] = ACTIONS(6828), + [anon_sym_xor_eq] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6828), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6828), + [anon_sym_not_eq] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6828), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7821), + [anon_sym_override] = ACTIONS(7821), + [anon_sym_GT2] = ACTIONS(6828), + [anon_sym_requires] = ACTIONS(6828), + }, + [STATE(2332)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8610), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9048), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9048), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2333)] = { + [sym__abstract_declarator] = STATE(5423), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7009), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7009), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7007), + }, + [STATE(2334)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7402), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7886), + [anon_sym_unsigned] = ACTIONS(7886), + [anon_sym_long] = ACTIONS(7886), + [anon_sym_short] = ACTIONS(7886), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_mutable] = ACTIONS(7404), + [anon_sym_constinit] = ACTIONS(7404), + [anon_sym_consteval] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_STAR_EQ] = ACTIONS(7404), + [anon_sym_SLASH_EQ] = ACTIONS(7404), + [anon_sym_PERCENT_EQ] = ACTIONS(7404), + [anon_sym_PLUS_EQ] = ACTIONS(7404), + [anon_sym_DASH_EQ] = ACTIONS(7404), + [anon_sym_LT_LT_EQ] = ACTIONS(7404), + [anon_sym_GT_GT_EQ] = ACTIONS(7402), + [anon_sym_AMP_EQ] = ACTIONS(7404), + [anon_sym_CARET_EQ] = ACTIONS(7404), + [anon_sym_PIPE_EQ] = ACTIONS(7404), + [anon_sym_and_eq] = ACTIONS(7404), + [anon_sym_or_eq] = ACTIONS(7404), + [anon_sym_xor_eq] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7404), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7404), + [anon_sym_not_eq] = ACTIONS(7404), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7404), + [anon_sym_override] = ACTIONS(7404), + [anon_sym_GT2] = ACTIONS(7404), + [anon_sym_requires] = ACTIONS(7404), + }, + [STATE(2335)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7408), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7408), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7408), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7408), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7408), + [anon_sym_GT_GT] = ACTIONS(7408), + [anon_sym___extension__] = ACTIONS(7410), + [anon_sym___attribute__] = ACTIONS(7410), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(7888), + [anon_sym_unsigned] = ACTIONS(7888), + [anon_sym_long] = ACTIONS(7888), + [anon_sym_short] = ACTIONS(7888), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7410), + [anon_sym_volatile] = ACTIONS(7410), + [anon_sym_restrict] = ACTIONS(7410), + [anon_sym___restrict__] = ACTIONS(7410), + [anon_sym__Atomic] = ACTIONS(7410), + [anon_sym__Noreturn] = ACTIONS(7410), + [anon_sym_noreturn] = ACTIONS(7410), + [anon_sym__Nonnull] = ACTIONS(7410), + [anon_sym_mutable] = ACTIONS(7410), + [anon_sym_constinit] = ACTIONS(7410), + [anon_sym_consteval] = ACTIONS(7410), + [anon_sym_alignas] = ACTIONS(7410), + [anon_sym__Alignas] = ACTIONS(7410), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_STAR_EQ] = ACTIONS(7410), + [anon_sym_SLASH_EQ] = ACTIONS(7410), + [anon_sym_PERCENT_EQ] = ACTIONS(7410), + [anon_sym_PLUS_EQ] = ACTIONS(7410), + [anon_sym_DASH_EQ] = ACTIONS(7410), + [anon_sym_LT_LT_EQ] = ACTIONS(7410), + [anon_sym_GT_GT_EQ] = ACTIONS(7408), + [anon_sym_AMP_EQ] = ACTIONS(7410), + [anon_sym_CARET_EQ] = ACTIONS(7410), + [anon_sym_PIPE_EQ] = ACTIONS(7410), + [anon_sym_and_eq] = ACTIONS(7410), + [anon_sym_or_eq] = ACTIONS(7410), + [anon_sym_xor_eq] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7408), + [anon_sym_and] = ACTIONS(7408), + [anon_sym_bitor] = ACTIONS(7410), + [anon_sym_xor] = ACTIONS(7408), + [anon_sym_bitand] = ACTIONS(7410), + [anon_sym_not_eq] = ACTIONS(7410), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7410), + [anon_sym_override] = ACTIONS(7410), + [anon_sym_GT2] = ACTIONS(7410), + [anon_sym_requires] = ACTIONS(7410), + }, + [STATE(2336)] = { + [sym_type_qualifier] = STATE(2340), + [sym_alignas_qualifier] = STATE(2432), + [aux_sym__type_definition_type_repeat1] = STATE(2340), + [aux_sym_sized_type_specifier_repeat1] = STATE(2604), + [sym_identifier] = ACTIONS(7667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6814), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(6945), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(7890), + [anon_sym_unsigned] = ACTIONS(7890), + [anon_sym_long] = ACTIONS(7890), + [anon_sym_short] = ACTIONS(7890), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6945), + [anon_sym_volatile] = ACTIONS(6945), + [anon_sym_restrict] = ACTIONS(6945), + [anon_sym___restrict__] = ACTIONS(6945), + [anon_sym__Atomic] = ACTIONS(6945), + [anon_sym__Noreturn] = ACTIONS(6945), + [anon_sym_noreturn] = ACTIONS(6945), + [anon_sym__Nonnull] = ACTIONS(6945), + [anon_sym_mutable] = ACTIONS(6945), + [anon_sym_constinit] = ACTIONS(6945), + [anon_sym_consteval] = ACTIONS(6945), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [sym_primitive_type] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_STAR_EQ] = ACTIONS(6812), + [anon_sym_SLASH_EQ] = ACTIONS(6812), + [anon_sym_PERCENT_EQ] = ACTIONS(6812), + [anon_sym_PLUS_EQ] = ACTIONS(6812), + [anon_sym_DASH_EQ] = ACTIONS(6812), + [anon_sym_LT_LT_EQ] = ACTIONS(6812), + [anon_sym_GT_GT_EQ] = ACTIONS(6812), + [anon_sym_AMP_EQ] = ACTIONS(6812), + [anon_sym_CARET_EQ] = ACTIONS(6812), + [anon_sym_PIPE_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6814), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + }, + [STATE(2337)] = { + [sym__abstract_declarator] = STATE(5368), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6995), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + }, + [STATE(2338)] = { + [sym__abstract_declarator] = STATE(5377), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2352), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6999), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + }, + [STATE(2339)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6627), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6627), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6627), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6627), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(7894), + [anon_sym_unsigned] = ACTIONS(7894), + [anon_sym_long] = ACTIONS(7894), + [anon_sym_short] = ACTIONS(7894), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_EQ] = ACTIONS(6627), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_STAR_EQ] = ACTIONS(6629), + [anon_sym_SLASH_EQ] = ACTIONS(6629), + [anon_sym_PERCENT_EQ] = ACTIONS(6629), + [anon_sym_PLUS_EQ] = ACTIONS(6629), + [anon_sym_DASH_EQ] = ACTIONS(6629), + [anon_sym_LT_LT_EQ] = ACTIONS(6629), + [anon_sym_GT_GT_EQ] = ACTIONS(6629), + [anon_sym_AMP_EQ] = ACTIONS(6629), + [anon_sym_CARET_EQ] = ACTIONS(6629), + [anon_sym_PIPE_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + [anon_sym_DASH_GT_STAR] = ACTIONS(6629), + }, + [STATE(2340)] = { + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [aux_sym_sized_type_specifier_repeat1] = STATE(2496), + [sym_identifier] = ACTIONS(7689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6886), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6886), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6886), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6886), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(6945), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_EQ] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6945), + [anon_sym_volatile] = ACTIONS(6945), + [anon_sym_restrict] = ACTIONS(6945), + [anon_sym___restrict__] = ACTIONS(6945), + [anon_sym__Atomic] = ACTIONS(6945), + [anon_sym__Noreturn] = ACTIONS(6945), + [anon_sym_noreturn] = ACTIONS(6945), + [anon_sym__Nonnull] = ACTIONS(6945), + [anon_sym_mutable] = ACTIONS(6945), + [anon_sym_constinit] = ACTIONS(6945), + [anon_sym_consteval] = ACTIONS(6945), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [sym_primitive_type] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_STAR_EQ] = ACTIONS(6884), + [anon_sym_SLASH_EQ] = ACTIONS(6884), + [anon_sym_PERCENT_EQ] = ACTIONS(6884), + [anon_sym_PLUS_EQ] = ACTIONS(6884), + [anon_sym_DASH_EQ] = ACTIONS(6884), + [anon_sym_LT_LT_EQ] = ACTIONS(6884), + [anon_sym_GT_GT_EQ] = ACTIONS(6884), + [anon_sym_AMP_EQ] = ACTIONS(6884), + [anon_sym_CARET_EQ] = ACTIONS(6884), + [anon_sym_PIPE_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6886), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + }, + [STATE(2341)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2578), + [sym_ms_pointer_modifier] = STATE(2341), + [aux_sym_pointer_declarator_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6600), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(7897), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7900), + [sym_ms_signed_ptr_modifier] = ACTIONS(7900), + [anon_sym__unaligned] = ACTIONS(7903), + [anon_sym___unaligned] = ACTIONS(7903), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_RBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_STAR_EQ] = ACTIONS(6602), + [anon_sym_SLASH_EQ] = ACTIONS(6602), + [anon_sym_PERCENT_EQ] = ACTIONS(6602), + [anon_sym_PLUS_EQ] = ACTIONS(6602), + [anon_sym_DASH_EQ] = ACTIONS(6602), + [anon_sym_LT_LT_EQ] = ACTIONS(6602), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6602), + [anon_sym_CARET_EQ] = ACTIONS(6602), + [anon_sym_PIPE_EQ] = ACTIONS(6602), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6600), + [anon_sym_and] = ACTIONS(6600), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6600), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + }, + [STATE(2342)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6256), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6256), + [anon_sym_volatile] = ACTIONS(6256), + [anon_sym_restrict] = ACTIONS(6256), + [anon_sym___restrict__] = ACTIONS(6256), + [anon_sym__Atomic] = ACTIONS(6256), + [anon_sym__Noreturn] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym__Nonnull] = ACTIONS(6256), + [anon_sym_mutable] = ACTIONS(6256), + [anon_sym_constinit] = ACTIONS(6256), + [anon_sym_consteval] = ACTIONS(6256), + [anon_sym_alignas] = ACTIONS(6256), + [anon_sym__Alignas] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6256), + [anon_sym_or_eq] = ACTIONS(6256), + [anon_sym_xor_eq] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + [anon_sym_final] = ACTIONS(6256), + [anon_sym_override] = ACTIONS(6256), + [anon_sym_requires] = ACTIONS(6256), + [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + }, + [STATE(2343)] = { + [sym__declaration_modifiers] = STATE(2722), + [sym__declaration_specifiers] = STATE(5283), + [sym_attribute_specifier] = STATE(2722), + [sym_attribute_declaration] = STATE(2722), + [sym_ms_declspec_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2722), + [sym_type_qualifier] = STATE(2722), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(10378), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_optional_parameter_declaration] = STATE(10378), + [sym_variadic_parameter_declaration] = STATE(10378), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2344)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7414), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7414), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7414), + [anon_sym_GT_GT] = ACTIONS(7414), + [anon_sym___extension__] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym___restrict__] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym__Noreturn] = ACTIONS(7416), + [anon_sym_noreturn] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym_mutable] = ACTIONS(7416), + [anon_sym_constinit] = ACTIONS(7416), + [anon_sym_consteval] = ACTIONS(7416), + [anon_sym_alignas] = ACTIONS(7416), + [anon_sym__Alignas] = ACTIONS(7416), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_STAR_EQ] = ACTIONS(7416), + [anon_sym_SLASH_EQ] = ACTIONS(7416), + [anon_sym_PERCENT_EQ] = ACTIONS(7416), + [anon_sym_PLUS_EQ] = ACTIONS(7416), + [anon_sym_DASH_EQ] = ACTIONS(7416), + [anon_sym_LT_LT_EQ] = ACTIONS(7416), + [anon_sym_GT_GT_EQ] = ACTIONS(7414), + [anon_sym_AMP_EQ] = ACTIONS(7416), + [anon_sym_CARET_EQ] = ACTIONS(7416), + [anon_sym_PIPE_EQ] = ACTIONS(7416), + [anon_sym_and_eq] = ACTIONS(7416), + [anon_sym_or_eq] = ACTIONS(7416), + [anon_sym_xor_eq] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7414), + [anon_sym_and] = ACTIONS(7414), + [anon_sym_bitor] = ACTIONS(7416), + [anon_sym_xor] = ACTIONS(7414), + [anon_sym_bitand] = ACTIONS(7416), + [anon_sym_not_eq] = ACTIONS(7416), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7416), + [anon_sym_override] = ACTIONS(7416), + [anon_sym_GT2] = ACTIONS(7416), + [anon_sym_requires] = ACTIONS(7416), + }, + [STATE(2345)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7199), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7199), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_GT2] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + }, + [STATE(2346)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7213), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7213), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7213), + [anon_sym_GT_GT] = ACTIONS(7213), + [anon_sym___extension__] = ACTIONS(7215), + [anon_sym___attribute__] = ACTIONS(7215), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(7908), + [anon_sym_unsigned] = ACTIONS(7908), + [anon_sym_long] = ACTIONS(7908), + [anon_sym_short] = ACTIONS(7908), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(7213), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7215), + [anon_sym_volatile] = ACTIONS(7215), + [anon_sym_restrict] = ACTIONS(7215), + [anon_sym___restrict__] = ACTIONS(7215), + [anon_sym__Atomic] = ACTIONS(7215), + [anon_sym__Noreturn] = ACTIONS(7215), + [anon_sym_noreturn] = ACTIONS(7215), + [anon_sym__Nonnull] = ACTIONS(7215), + [anon_sym_mutable] = ACTIONS(7215), + [anon_sym_constinit] = ACTIONS(7215), + [anon_sym_consteval] = ACTIONS(7215), + [anon_sym_alignas] = ACTIONS(7215), + [anon_sym__Alignas] = ACTIONS(7215), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_STAR_EQ] = ACTIONS(7215), + [anon_sym_SLASH_EQ] = ACTIONS(7215), + [anon_sym_PERCENT_EQ] = ACTIONS(7215), + [anon_sym_PLUS_EQ] = ACTIONS(7215), + [anon_sym_DASH_EQ] = ACTIONS(7215), + [anon_sym_LT_LT_EQ] = ACTIONS(7215), + [anon_sym_GT_GT_EQ] = ACTIONS(7213), + [anon_sym_AMP_EQ] = ACTIONS(7215), + [anon_sym_CARET_EQ] = ACTIONS(7215), + [anon_sym_PIPE_EQ] = ACTIONS(7215), + [anon_sym_and_eq] = ACTIONS(7215), + [anon_sym_or_eq] = ACTIONS(7215), + [anon_sym_xor_eq] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7213), + [anon_sym_and] = ACTIONS(7213), + [anon_sym_bitor] = ACTIONS(7215), + [anon_sym_xor] = ACTIONS(7213), + [anon_sym_bitand] = ACTIONS(7215), + [anon_sym_not_eq] = ACTIONS(7215), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7215), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7215), + [anon_sym_override] = ACTIONS(7215), + [anon_sym_GT2] = ACTIONS(7215), + [anon_sym_requires] = ACTIONS(7215), + }, + [STATE(2347)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7239), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7239), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7239), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7239), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7239), + [anon_sym_GT_GT] = ACTIONS(7239), + [anon_sym___extension__] = ACTIONS(7241), + [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(7910), + [anon_sym_unsigned] = ACTIONS(7910), + [anon_sym_long] = ACTIONS(7910), + [anon_sym_short] = ACTIONS(7910), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(7239), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7241), + [anon_sym_volatile] = ACTIONS(7241), + [anon_sym_restrict] = ACTIONS(7241), + [anon_sym___restrict__] = ACTIONS(7241), + [anon_sym__Atomic] = ACTIONS(7241), + [anon_sym__Noreturn] = ACTIONS(7241), + [anon_sym_noreturn] = ACTIONS(7241), + [anon_sym__Nonnull] = ACTIONS(7241), + [anon_sym_mutable] = ACTIONS(7241), + [anon_sym_constinit] = ACTIONS(7241), + [anon_sym_consteval] = ACTIONS(7241), + [anon_sym_alignas] = ACTIONS(7241), + [anon_sym__Alignas] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_STAR_EQ] = ACTIONS(7241), + [anon_sym_SLASH_EQ] = ACTIONS(7241), + [anon_sym_PERCENT_EQ] = ACTIONS(7241), + [anon_sym_PLUS_EQ] = ACTIONS(7241), + [anon_sym_DASH_EQ] = ACTIONS(7241), + [anon_sym_LT_LT_EQ] = ACTIONS(7241), + [anon_sym_GT_GT_EQ] = ACTIONS(7239), + [anon_sym_AMP_EQ] = ACTIONS(7241), + [anon_sym_CARET_EQ] = ACTIONS(7241), + [anon_sym_PIPE_EQ] = ACTIONS(7241), + [anon_sym_and_eq] = ACTIONS(7241), + [anon_sym_or_eq] = ACTIONS(7241), + [anon_sym_xor_eq] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7239), + [anon_sym_and] = ACTIONS(7239), + [anon_sym_bitor] = ACTIONS(7241), + [anon_sym_xor] = ACTIONS(7239), + [anon_sym_bitand] = ACTIONS(7241), + [anon_sym_not_eq] = ACTIONS(7241), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7241), + [anon_sym_override] = ACTIONS(7241), + [anon_sym_GT2] = ACTIONS(7241), + [anon_sym_requires] = ACTIONS(7241), + }, + [STATE(2348)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7251), + [anon_sym_volatile] = ACTIONS(7251), + [anon_sym_restrict] = ACTIONS(7251), + [anon_sym___restrict__] = ACTIONS(7251), + [anon_sym__Atomic] = ACTIONS(7251), + [anon_sym__Noreturn] = ACTIONS(7251), + [anon_sym_noreturn] = ACTIONS(7251), + [anon_sym__Nonnull] = ACTIONS(7251), + [anon_sym_mutable] = ACTIONS(7251), + [anon_sym_constinit] = ACTIONS(7251), + [anon_sym_consteval] = ACTIONS(7251), + [anon_sym_alignas] = ACTIONS(7251), + [anon_sym__Alignas] = ACTIONS(7251), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_STAR_EQ] = ACTIONS(7251), + [anon_sym_SLASH_EQ] = ACTIONS(7251), + [anon_sym_PERCENT_EQ] = ACTIONS(7251), + [anon_sym_PLUS_EQ] = ACTIONS(7251), + [anon_sym_DASH_EQ] = ACTIONS(7251), + [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7251), + [anon_sym_CARET_EQ] = ACTIONS(7251), + [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7249), + [anon_sym_and] = ACTIONS(7249), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7249), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_GT2] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + }, + [STATE(2349)] = { + [sym__abstract_declarator] = STATE(5385), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2350)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8625), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9046), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9046), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2351)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6260), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6260), + [anon_sym_volatile] = ACTIONS(6260), + [anon_sym_restrict] = ACTIONS(6260), + [anon_sym___restrict__] = ACTIONS(6260), + [anon_sym__Atomic] = ACTIONS(6260), + [anon_sym__Noreturn] = ACTIONS(6260), + [anon_sym_noreturn] = ACTIONS(6260), + [anon_sym__Nonnull] = ACTIONS(6260), + [anon_sym_mutable] = ACTIONS(6260), + [anon_sym_constinit] = ACTIONS(6260), + [anon_sym_consteval] = ACTIONS(6260), + [anon_sym_alignas] = ACTIONS(6260), + [anon_sym__Alignas] = ACTIONS(6260), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6260), + [anon_sym_or_eq] = ACTIONS(6260), + [anon_sym_xor_eq] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + [anon_sym_final] = ACTIONS(6260), + [anon_sym_override] = ACTIONS(6260), + [anon_sym_requires] = ACTIONS(6260), + [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + }, + [STATE(2352)] = { + [sym__abstract_declarator] = STATE(5303), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(7003), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + }, + [STATE(2353)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6786), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6786), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6786), + [anon_sym_GT_GT] = ACTIONS(6786), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_RBRACK] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_mutable] = ACTIONS(6788), + [anon_sym_constinit] = ACTIONS(6788), + [anon_sym_consteval] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_STAR_EQ] = ACTIONS(6788), + [anon_sym_SLASH_EQ] = ACTIONS(6788), + [anon_sym_PERCENT_EQ] = ACTIONS(6788), + [anon_sym_PLUS_EQ] = ACTIONS(6788), + [anon_sym_DASH_EQ] = ACTIONS(6788), + [anon_sym_LT_LT_EQ] = ACTIONS(6788), + [anon_sym_GT_GT_EQ] = ACTIONS(6788), + [anon_sym_AMP_EQ] = ACTIONS(6788), + [anon_sym_CARET_EQ] = ACTIONS(6788), + [anon_sym_PIPE_EQ] = ACTIONS(6788), + [anon_sym_and_eq] = ACTIONS(6788), + [anon_sym_or_eq] = ACTIONS(6788), + [anon_sym_xor_eq] = ACTIONS(6788), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6786), + [anon_sym_and] = ACTIONS(6786), + [anon_sym_bitor] = ACTIONS(6788), + [anon_sym_xor] = ACTIONS(6786), + [anon_sym_bitand] = ACTIONS(6788), + [anon_sym_not_eq] = ACTIONS(6788), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6788), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6788), + [anon_sym_override] = ACTIONS(6788), + [anon_sym_noexcept] = ACTIONS(6788), + [anon_sym_throw] = ACTIONS(6788), + [anon_sym_requires] = ACTIONS(6788), + }, + [STATE(2354)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8660), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9046), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9046), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2355)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6790), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(6792), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6790), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_GT2] = ACTIONS(6792), + [anon_sym_noexcept] = ACTIONS(6792), + [anon_sym_throw] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + }, + [STATE(2356)] = { + [sym_type_qualifier] = STATE(2375), + [sym_alignas_qualifier] = STATE(2559), + [aux_sym__type_definition_type_repeat1] = STATE(2375), + [sym_identifier] = ACTIONS(6521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_RPAREN] = ACTIONS(6523), + [aux_sym_preproc_if_token2] = ACTIONS(6523), + [aux_sym_preproc_else_token1] = ACTIONS(6523), + [aux_sym_preproc_elif_token1] = ACTIONS(6521), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6523), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6523), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6523), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6523), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6523), + [anon_sym_GT_GT] = ACTIONS(6523), + [anon_sym_SEMI] = ACTIONS(6523), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6521), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_COLON] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6523), + [anon_sym_RBRACE] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_mutable] = ACTIONS(6857), + [anon_sym_constinit] = ACTIONS(6857), + [anon_sym_consteval] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6863), + [anon_sym__Alignas] = ACTIONS(6863), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6521), + [anon_sym_and] = ACTIONS(6521), + [anon_sym_bitor] = ACTIONS(6521), + [anon_sym_xor] = ACTIONS(6521), + [anon_sym_bitand] = ACTIONS(6521), + [anon_sym_not_eq] = ACTIONS(6521), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6521), + [anon_sym___asm__] = ACTIONS(6521), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6521), + [anon_sym_override] = ACTIONS(6521), + [anon_sym_noexcept] = ACTIONS(6521), + [anon_sym_throw] = ACTIONS(6521), + [anon_sym_requires] = ACTIONS(6521), + [anon_sym_COLON_RBRACK] = ACTIONS(6523), + }, + [STATE(2357)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6272), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6272), + [anon_sym_volatile] = ACTIONS(6272), + [anon_sym_restrict] = ACTIONS(6272), + [anon_sym___restrict__] = ACTIONS(6272), + [anon_sym__Atomic] = ACTIONS(6272), + [anon_sym__Noreturn] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym__Nonnull] = ACTIONS(6272), + [anon_sym_mutable] = ACTIONS(6272), + [anon_sym_constinit] = ACTIONS(6272), + [anon_sym_consteval] = ACTIONS(6272), + [anon_sym_alignas] = ACTIONS(6272), + [anon_sym__Alignas] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6272), + [anon_sym_or_eq] = ACTIONS(6272), + [anon_sym_xor_eq] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + [anon_sym_final] = ACTIONS(6272), + [anon_sym_override] = ACTIONS(6272), + [anon_sym_requires] = ACTIONS(6272), + [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + }, + [STATE(2358)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6244), + [anon_sym_volatile] = ACTIONS(6244), + [anon_sym_restrict] = ACTIONS(6244), + [anon_sym___restrict__] = ACTIONS(6244), + [anon_sym__Atomic] = ACTIONS(6244), + [anon_sym__Noreturn] = ACTIONS(6244), + [anon_sym_noreturn] = ACTIONS(6244), + [anon_sym__Nonnull] = ACTIONS(6244), + [anon_sym_mutable] = ACTIONS(6244), + [anon_sym_constinit] = ACTIONS(6244), + [anon_sym_consteval] = ACTIONS(6244), + [anon_sym_alignas] = ACTIONS(6244), + [anon_sym__Alignas] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + [anon_sym_final] = ACTIONS(6244), + [anon_sym_override] = ACTIONS(6244), + [anon_sym_requires] = ACTIONS(6244), + [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + }, + [STATE(2359)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7253), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7912), + [anon_sym_unsigned] = ACTIONS(7912), + [anon_sym_long] = ACTIONS(7912), + [anon_sym_short] = ACTIONS(7912), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7253), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_GT2] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + }, + [STATE(2360)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym___extension__] = ACTIONS(6796), + [anon_sym___attribute__] = ACTIONS(6796), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_RBRACK] = ACTIONS(6796), + [anon_sym_EQ] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym___restrict__] = ACTIONS(6796), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym__Noreturn] = ACTIONS(6796), + [anon_sym_noreturn] = ACTIONS(6796), + [anon_sym__Nonnull] = ACTIONS(6796), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_constinit] = ACTIONS(6796), + [anon_sym_consteval] = ACTIONS(6796), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6796), + [anon_sym_PERCENT_EQ] = ACTIONS(6796), + [anon_sym_PLUS_EQ] = ACTIONS(6796), + [anon_sym_DASH_EQ] = ACTIONS(6796), + [anon_sym_LT_LT_EQ] = ACTIONS(6796), + [anon_sym_GT_GT_EQ] = ACTIONS(6796), + [anon_sym_AMP_EQ] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6796), + [anon_sym_and_eq] = ACTIONS(6796), + [anon_sym_or_eq] = ACTIONS(6796), + [anon_sym_xor_eq] = ACTIONS(6796), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6794), + [anon_sym_and] = ACTIONS(6794), + [anon_sym_bitor] = ACTIONS(6796), + [anon_sym_xor] = ACTIONS(6794), + [anon_sym_bitand] = ACTIONS(6796), + [anon_sym_not_eq] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6796), + [anon_sym___asm__] = ACTIONS(6796), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_noexcept] = ACTIONS(6796), + [anon_sym_throw] = ACTIONS(6796), + [anon_sym_requires] = ACTIONS(6796), + }, + [STATE(2361)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6230), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6228), + [anon_sym_GT_GT] = ACTIONS(6228), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(2362)] = { + [sym__abstract_declarator] = STATE(5171), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2337), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + }, + [STATE(2363)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2587), + [aux_sym_array_declarator_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(7914), + [anon_sym_LPAREN2] = ACTIONS(7916), + [anon_sym_BANG] = ACTIONS(7916), + [anon_sym_TILDE] = ACTIONS(7916), + [anon_sym_DASH] = ACTIONS(7914), + [anon_sym_PLUS] = ACTIONS(7914), + [anon_sym_STAR] = ACTIONS(7916), + [anon_sym_AMP] = ACTIONS(7916), + [anon_sym___extension__] = ACTIONS(7918), + [anon_sym_COLON_COLON] = ACTIONS(7916), + [anon_sym_LBRACK] = ACTIONS(7914), + [anon_sym_static] = ACTIONS(7921), + [anon_sym_RBRACK] = ACTIONS(7916), + [anon_sym_const] = ACTIONS(7918), + [anon_sym_constexpr] = ACTIONS(7918), + [anon_sym_volatile] = ACTIONS(7918), + [anon_sym_restrict] = ACTIONS(7918), + [anon_sym___restrict__] = ACTIONS(7918), + [anon_sym__Atomic] = ACTIONS(7918), + [anon_sym__Noreturn] = ACTIONS(7918), + [anon_sym_noreturn] = ACTIONS(7918), + [anon_sym__Nonnull] = ACTIONS(7918), + [anon_sym_mutable] = ACTIONS(7918), + [anon_sym_constinit] = ACTIONS(7918), + [anon_sym_consteval] = ACTIONS(7918), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [sym_primitive_type] = ACTIONS(7914), + [anon_sym_not] = ACTIONS(7914), + [anon_sym_compl] = ACTIONS(7914), + [anon_sym_DASH_DASH] = ACTIONS(7916), + [anon_sym_PLUS_PLUS] = ACTIONS(7916), + [anon_sym_sizeof] = ACTIONS(7914), + [anon_sym___alignof__] = ACTIONS(7914), + [anon_sym___alignof] = ACTIONS(7914), + [anon_sym__alignof] = ACTIONS(7914), + [anon_sym_alignof] = ACTIONS(7914), + [anon_sym__Alignof] = ACTIONS(7914), + [anon_sym_offsetof] = ACTIONS(7914), + [anon_sym__Generic] = ACTIONS(7914), + [anon_sym_typename] = ACTIONS(7914), + [anon_sym_asm] = ACTIONS(7914), + [anon_sym___asm__] = ACTIONS(7914), + [anon_sym___asm] = ACTIONS(7914), + [sym_number_literal] = ACTIONS(7916), + [anon_sym_L_SQUOTE] = ACTIONS(7916), + [anon_sym_u_SQUOTE] = ACTIONS(7916), + [anon_sym_U_SQUOTE] = ACTIONS(7916), + [anon_sym_u8_SQUOTE] = ACTIONS(7916), + [anon_sym_SQUOTE] = ACTIONS(7916), + [anon_sym_L_DQUOTE] = ACTIONS(7916), + [anon_sym_u_DQUOTE] = ACTIONS(7916), + [anon_sym_U_DQUOTE] = ACTIONS(7916), + [anon_sym_u8_DQUOTE] = ACTIONS(7916), + [anon_sym_DQUOTE] = ACTIONS(7916), + [sym_true] = ACTIONS(7914), + [sym_false] = ACTIONS(7914), + [anon_sym_NULL] = ACTIONS(7914), + [anon_sym_nullptr] = ACTIONS(7914), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7914), + [anon_sym_template] = ACTIONS(7914), + [anon_sym_delete] = ACTIONS(7914), + [anon_sym_R_DQUOTE] = ACTIONS(7916), + [anon_sym_LR_DQUOTE] = ACTIONS(7916), + [anon_sym_uR_DQUOTE] = ACTIONS(7916), + [anon_sym_UR_DQUOTE] = ACTIONS(7916), + [anon_sym_u8R_DQUOTE] = ACTIONS(7916), + [anon_sym_co_await] = ACTIONS(7914), + [anon_sym_new] = ACTIONS(7914), + [anon_sym_requires] = ACTIONS(7914), + [anon_sym_CARET_CARET] = ACTIONS(7916), + [anon_sym_LBRACK_COLON] = ACTIONS(7916), + [sym_this] = ACTIONS(7914), + }, + [STATE(2364)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2460), + [sym__function_exception_specification] = STATE(2919), + [sym__function_attributes_end] = STATE(4134), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2919), + [sym_throw_specifier] = STATE(2919), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2365)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7894), + [anon_sym_unsigned] = ACTIONS(7894), + [anon_sym_long] = ACTIONS(7894), + [anon_sym_short] = ACTIONS(7894), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7084), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + }, + [STATE(2366)] = { + [sym_template_argument_list] = STATE(5490), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6758), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(6758), + [anon_sym_GT_GT] = ACTIONS(6758), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6755), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6758), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(2367)] = { + [sym_template_argument_list] = STATE(2491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6201), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(7936), + [anon_sym_LT_LT] = ACTIONS(6201), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6208), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_RBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6208), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_and_eq] = ACTIONS(6208), + [anon_sym_or_eq] = ACTIONS(6208), + [anon_sym_xor_eq] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6201), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + }, + [STATE(2368)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(2505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_RPAREN] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7017), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7017), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7017), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7017), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6586), + [anon_sym_unsigned] = ACTIONS(6586), + [anon_sym_long] = ACTIONS(6586), + [anon_sym_short] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_EQ] = ACTIONS(7017), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_STAR_EQ] = ACTIONS(7019), + [anon_sym_SLASH_EQ] = ACTIONS(7019), + [anon_sym_PERCENT_EQ] = ACTIONS(7019), + [anon_sym_PLUS_EQ] = ACTIONS(7019), + [anon_sym_DASH_EQ] = ACTIONS(7019), + [anon_sym_LT_LT_EQ] = ACTIONS(7019), + [anon_sym_GT_GT_EQ] = ACTIONS(7019), + [anon_sym_AMP_EQ] = ACTIONS(7019), + [anon_sym_CARET_EQ] = ACTIONS(7019), + [anon_sym_PIPE_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7019), + [anon_sym_and] = ACTIONS(7019), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7019), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + [anon_sym_DASH_GT_STAR] = ACTIONS(7019), + }, + [STATE(2369)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6264), + [anon_sym_volatile] = ACTIONS(6264), + [anon_sym_restrict] = ACTIONS(6264), + [anon_sym___restrict__] = ACTIONS(6264), + [anon_sym__Atomic] = ACTIONS(6264), + [anon_sym__Noreturn] = ACTIONS(6264), + [anon_sym_noreturn] = ACTIONS(6264), + [anon_sym__Nonnull] = ACTIONS(6264), + [anon_sym_mutable] = ACTIONS(6264), + [anon_sym_constinit] = ACTIONS(6264), + [anon_sym_consteval] = ACTIONS(6264), + [anon_sym_alignas] = ACTIONS(6264), + [anon_sym__Alignas] = ACTIONS(6264), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6264), + [anon_sym_or_eq] = ACTIONS(6264), + [anon_sym_xor_eq] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6264), + [anon_sym_decltype] = ACTIONS(6264), + [anon_sym_final] = ACTIONS(6264), + [anon_sym_override] = ACTIONS(6264), + [anon_sym_requires] = ACTIONS(6264), + [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + }, + [STATE(2370)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6786), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6786), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6786), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6786), + [anon_sym_GT_GT] = ACTIONS(6786), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_mutable] = ACTIONS(6788), + [anon_sym_constinit] = ACTIONS(6788), + [anon_sym_consteval] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_STAR_EQ] = ACTIONS(6788), + [anon_sym_SLASH_EQ] = ACTIONS(6788), + [anon_sym_PERCENT_EQ] = ACTIONS(6788), + [anon_sym_PLUS_EQ] = ACTIONS(6788), + [anon_sym_DASH_EQ] = ACTIONS(6788), + [anon_sym_LT_LT_EQ] = ACTIONS(6788), + [anon_sym_GT_GT_EQ] = ACTIONS(6786), + [anon_sym_AMP_EQ] = ACTIONS(6788), + [anon_sym_CARET_EQ] = ACTIONS(6788), + [anon_sym_PIPE_EQ] = ACTIONS(6788), + [anon_sym_and_eq] = ACTIONS(6788), + [anon_sym_or_eq] = ACTIONS(6788), + [anon_sym_xor_eq] = ACTIONS(6788), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6786), + [anon_sym_and] = ACTIONS(6786), + [anon_sym_bitor] = ACTIONS(6788), + [anon_sym_xor] = ACTIONS(6786), + [anon_sym_bitand] = ACTIONS(6788), + [anon_sym_not_eq] = ACTIONS(6788), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6788), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6788), + [anon_sym_override] = ACTIONS(6788), + [anon_sym_GT2] = ACTIONS(6788), + [anon_sym_noexcept] = ACTIONS(6788), + [anon_sym_throw] = ACTIONS(6788), + [anon_sym_requires] = ACTIONS(6788), + }, + [STATE(2371)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7385), + [anon_sym___attribute__] = ACTIONS(7385), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7385), + [anon_sym_volatile] = ACTIONS(7385), + [anon_sym_restrict] = ACTIONS(7385), + [anon_sym___restrict__] = ACTIONS(7385), + [anon_sym__Atomic] = ACTIONS(7385), + [anon_sym__Noreturn] = ACTIONS(7385), + [anon_sym_noreturn] = ACTIONS(7385), + [anon_sym__Nonnull] = ACTIONS(7385), + [anon_sym_mutable] = ACTIONS(7385), + [anon_sym_constinit] = ACTIONS(7385), + [anon_sym_consteval] = ACTIONS(7385), + [anon_sym_alignas] = ACTIONS(7385), + [anon_sym__Alignas] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_STAR_EQ] = ACTIONS(7385), + [anon_sym_SLASH_EQ] = ACTIONS(7385), + [anon_sym_PERCENT_EQ] = ACTIONS(7385), + [anon_sym_PLUS_EQ] = ACTIONS(7385), + [anon_sym_DASH_EQ] = ACTIONS(7385), + [anon_sym_LT_LT_EQ] = ACTIONS(7385), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7385), + [anon_sym_CARET_EQ] = ACTIONS(7385), + [anon_sym_PIPE_EQ] = ACTIONS(7385), + [anon_sym_and_eq] = ACTIONS(7385), + [anon_sym_or_eq] = ACTIONS(7385), + [anon_sym_xor_eq] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7385), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7385), + [anon_sym_not_eq] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7385), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7385), + [anon_sym_override] = ACTIONS(7385), + [anon_sym_GT2] = ACTIONS(7385), + [anon_sym_requires] = ACTIONS(7385), + }, + [STATE(2372)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2768), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym___restrict__] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym__Noreturn] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym__Nonnull] = ACTIONS(2758), + [anon_sym_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym__Alignas] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2768), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2758), + [anon_sym_or_eq] = ACTIONS(2758), + [anon_sym_xor_eq] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2758), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2758), + [anon_sym_not_eq] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2758), + [anon_sym_override] = ACTIONS(2758), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_noexcept] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + }, + [STATE(2373)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6248), + [anon_sym_or_eq] = ACTIONS(6248), + [anon_sym_xor_eq] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_final] = ACTIONS(6248), + [anon_sym_override] = ACTIONS(6248), + [anon_sym_requires] = ACTIONS(6248), + [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + }, + [STATE(2374)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6252), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6252), + [anon_sym_volatile] = ACTIONS(6252), + [anon_sym_restrict] = ACTIONS(6252), + [anon_sym___restrict__] = ACTIONS(6252), + [anon_sym__Atomic] = ACTIONS(6252), + [anon_sym__Noreturn] = ACTIONS(6252), + [anon_sym_noreturn] = ACTIONS(6252), + [anon_sym__Nonnull] = ACTIONS(6252), + [anon_sym_mutable] = ACTIONS(6252), + [anon_sym_constinit] = ACTIONS(6252), + [anon_sym_consteval] = ACTIONS(6252), + [anon_sym_alignas] = ACTIONS(6252), + [anon_sym__Alignas] = ACTIONS(6252), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6252), + [anon_sym_or_eq] = ACTIONS(6252), + [anon_sym_xor_eq] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + [anon_sym_final] = ACTIONS(6252), + [anon_sym_override] = ACTIONS(6252), + [anon_sym_requires] = ACTIONS(6252), + [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + }, + [STATE(2375)] = { + [sym_type_qualifier] = STATE(2375), + [sym_alignas_qualifier] = STATE(2559), + [aux_sym__type_definition_type_repeat1] = STATE(2375), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_else_token1] = ACTIONS(6527), + [aux_sym_preproc_elif_token1] = ACTIONS(6525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6527), + [anon_sym_SEMI] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(7939), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_COLON] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), + [anon_sym_RBRACE] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(7939), + [anon_sym_constexpr] = ACTIONS(7939), + [anon_sym_volatile] = ACTIONS(7939), + [anon_sym_restrict] = ACTIONS(7939), + [anon_sym___restrict__] = ACTIONS(7939), + [anon_sym__Atomic] = ACTIONS(7939), + [anon_sym__Noreturn] = ACTIONS(7939), + [anon_sym_noreturn] = ACTIONS(7939), + [anon_sym__Nonnull] = ACTIONS(7939), + [anon_sym_mutable] = ACTIONS(7939), + [anon_sym_constinit] = ACTIONS(7939), + [anon_sym_consteval] = ACTIONS(7939), + [anon_sym_alignas] = ACTIONS(7942), + [anon_sym__Alignas] = ACTIONS(7942), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6525), + [anon_sym___asm__] = ACTIONS(6525), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_noexcept] = ACTIONS(6525), + [anon_sym_throw] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_COLON_RBRACK] = ACTIONS(6527), + }, + [STATE(2376)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6716), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_mutable] = ACTIONS(6718), + [anon_sym_constinit] = ACTIONS(6718), + [anon_sym_consteval] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6716), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6718), + [anon_sym_or_eq] = ACTIONS(6718), + [anon_sym_xor_eq] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6718), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6718), + [anon_sym_not_eq] = ACTIONS(6718), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6718), + [anon_sym___asm__] = ACTIONS(6718), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6718), + [anon_sym_override] = ACTIONS(6718), + [anon_sym_GT2] = ACTIONS(6718), + [anon_sym_noexcept] = ACTIONS(6718), + [anon_sym_throw] = ACTIONS(6718), + [anon_sym_requires] = ACTIONS(6718), + }, + [STATE(2377)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7395), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7395), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7395), + [anon_sym_GT_GT] = ACTIONS(7395), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7397), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7395), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_STAR_EQ] = ACTIONS(7397), + [anon_sym_SLASH_EQ] = ACTIONS(7397), + [anon_sym_PERCENT_EQ] = ACTIONS(7397), + [anon_sym_PLUS_EQ] = ACTIONS(7397), + [anon_sym_DASH_EQ] = ACTIONS(7397), + [anon_sym_LT_LT_EQ] = ACTIONS(7397), + [anon_sym_GT_GT_EQ] = ACTIONS(7395), + [anon_sym_AMP_EQ] = ACTIONS(7397), + [anon_sym_CARET_EQ] = ACTIONS(7397), + [anon_sym_PIPE_EQ] = ACTIONS(7397), + [anon_sym_and_eq] = ACTIONS(7397), + [anon_sym_or_eq] = ACTIONS(7397), + [anon_sym_xor_eq] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7395), + [anon_sym_and] = ACTIONS(7395), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7395), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_GT2] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + }, + [STATE(2378)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym_ref_qualifier] = STATE(2442), + [sym__function_exception_specification] = STATE(2927), + [sym__function_attributes_end] = STATE(4253), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4410), + [sym_noexcept] = STATE(2927), + [sym_throw_specifier] = STATE(2927), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7945), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7948), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7954), + [anon_sym_override] = ACTIONS(7954), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(7957), + }, + [STATE(2379)] = { + [sym__abstract_declarator] = STATE(5415), + [sym_abstract_parenthesized_declarator] = STATE(4966), + [sym_abstract_pointer_declarator] = STATE(4966), + [sym_abstract_function_declarator] = STATE(4966), + [sym_abstract_array_declarator] = STATE(4966), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2533), + [sym_parameter_list] = STATE(1873), + [sym_abstract_reference_declarator] = STATE(4966), + [sym__function_declarator_seq] = STATE(4975), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6782), + [anon_sym_RBRACK] = ACTIONS(7007), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6469), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6784), + [anon_sym__Alignas] = ACTIONS(6784), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_and_eq] = ACTIONS(7007), + [anon_sym_or_eq] = ACTIONS(7007), + [anon_sym_xor_eq] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + }, + [STATE(2380)] = { + [sym__abstract_declarator] = STATE(5302), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2387), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6993), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6993), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_and_eq] = ACTIONS(6991), + [anon_sym_or_eq] = ACTIONS(6991), + [anon_sym_xor_eq] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6991), + }, + [STATE(2381)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6720), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym___extension__] = ACTIONS(6722), + [anon_sym___attribute__] = ACTIONS(6722), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_EQ] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6722), + [anon_sym_volatile] = ACTIONS(6722), + [anon_sym_restrict] = ACTIONS(6722), + [anon_sym___restrict__] = ACTIONS(6722), + [anon_sym__Atomic] = ACTIONS(6722), + [anon_sym__Noreturn] = ACTIONS(6722), + [anon_sym_noreturn] = ACTIONS(6722), + [anon_sym__Nonnull] = ACTIONS(6722), + [anon_sym_mutable] = ACTIONS(6722), + [anon_sym_constinit] = ACTIONS(6722), + [anon_sym_consteval] = ACTIONS(6722), + [anon_sym_alignas] = ACTIONS(6722), + [anon_sym__Alignas] = ACTIONS(6722), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_STAR_EQ] = ACTIONS(6722), + [anon_sym_SLASH_EQ] = ACTIONS(6722), + [anon_sym_PERCENT_EQ] = ACTIONS(6722), + [anon_sym_PLUS_EQ] = ACTIONS(6722), + [anon_sym_DASH_EQ] = ACTIONS(6722), + [anon_sym_LT_LT_EQ] = ACTIONS(6722), + [anon_sym_GT_GT_EQ] = ACTIONS(6720), + [anon_sym_AMP_EQ] = ACTIONS(6722), + [anon_sym_CARET_EQ] = ACTIONS(6722), + [anon_sym_PIPE_EQ] = ACTIONS(6722), + [anon_sym_and_eq] = ACTIONS(6722), + [anon_sym_or_eq] = ACTIONS(6722), + [anon_sym_xor_eq] = ACTIONS(6722), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6720), + [anon_sym_and] = ACTIONS(6720), + [anon_sym_bitor] = ACTIONS(6722), + [anon_sym_xor] = ACTIONS(6720), + [anon_sym_bitand] = ACTIONS(6722), + [anon_sym_not_eq] = ACTIONS(6722), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6722), + [anon_sym___asm__] = ACTIONS(6722), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6722), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6722), + [anon_sym_override] = ACTIONS(6722), + [anon_sym_GT2] = ACTIONS(6722), + [anon_sym_noexcept] = ACTIONS(6722), + [anon_sym_throw] = ACTIONS(6722), + [anon_sym_requires] = ACTIONS(6722), + }, + [STATE(2382)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6794), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym___extension__] = ACTIONS(6796), + [anon_sym___attribute__] = ACTIONS(6796), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym___restrict__] = ACTIONS(6796), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym__Noreturn] = ACTIONS(6796), + [anon_sym_noreturn] = ACTIONS(6796), + [anon_sym__Nonnull] = ACTIONS(6796), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_constinit] = ACTIONS(6796), + [anon_sym_consteval] = ACTIONS(6796), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6796), + [anon_sym_PERCENT_EQ] = ACTIONS(6796), + [anon_sym_PLUS_EQ] = ACTIONS(6796), + [anon_sym_DASH_EQ] = ACTIONS(6796), + [anon_sym_LT_LT_EQ] = ACTIONS(6796), + [anon_sym_GT_GT_EQ] = ACTIONS(6794), + [anon_sym_AMP_EQ] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6796), + [anon_sym_and_eq] = ACTIONS(6796), + [anon_sym_or_eq] = ACTIONS(6796), + [anon_sym_xor_eq] = ACTIONS(6796), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6794), + [anon_sym_and] = ACTIONS(6794), + [anon_sym_bitor] = ACTIONS(6796), + [anon_sym_xor] = ACTIONS(6794), + [anon_sym_bitand] = ACTIONS(6796), + [anon_sym_not_eq] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6796), + [anon_sym___asm__] = ACTIONS(6796), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_GT2] = ACTIONS(6796), + [anon_sym_noexcept] = ACTIONS(6796), + [anon_sym_throw] = ACTIONS(6796), + [anon_sym_requires] = ACTIONS(6796), + }, + [STATE(2383)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym_ref_qualifier] = STATE(2438), + [sym__function_exception_specification] = STATE(2907), + [sym__function_attributes_end] = STATE(4242), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4424), + [sym_noexcept] = STATE(2907), + [sym_throw_specifier] = STATE(2907), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7945), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7948), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2384)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(6792), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_RBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_noexcept] = ACTIONS(6792), + [anon_sym_throw] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + }, + [STATE(2385)] = { + [sym__abstract_declarator] = STATE(5189), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7005), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7005), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_and_eq] = ACTIONS(7003), + [anon_sym_or_eq] = ACTIONS(7003), + [anon_sym_xor_eq] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7003), + }, + [STATE(2386)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym_ref_qualifier] = STATE(2446), + [sym__function_exception_specification] = STATE(2943), + [sym__function_attributes_end] = STATE(4227), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4305), + [sym_noexcept] = STATE(2943), + [sym_throw_specifier] = STATE(2943), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7963), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7969), + [anon_sym_override] = ACTIONS(7969), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(7972), + }, + [STATE(2387)] = { + [sym__abstract_declarator] = STATE(5416), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6997), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_and_eq] = ACTIONS(6995), + [anon_sym_or_eq] = ACTIONS(6995), + [anon_sym_xor_eq] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6995), + }, + [STATE(2388)] = { + [sym__abstract_declarator] = STATE(5417), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2385), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6999), + }, + [STATE(2389)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7655), + [anon_sym_unsigned] = ACTIONS(7655), + [anon_sym_long] = ACTIONS(7655), + [anon_sym_short] = ACTIONS(7655), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7084), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + }, + [STATE(2390)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2391)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2392)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6967), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6967), + [anon_sym_GT_GT] = ACTIONS(6967), + [anon_sym___extension__] = ACTIONS(6969), + [anon_sym___attribute__] = ACTIONS(6969), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_EQ] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6969), + [anon_sym_volatile] = ACTIONS(6969), + [anon_sym_restrict] = ACTIONS(6969), + [anon_sym___restrict__] = ACTIONS(6969), + [anon_sym__Atomic] = ACTIONS(6969), + [anon_sym__Noreturn] = ACTIONS(6969), + [anon_sym_noreturn] = ACTIONS(6969), + [anon_sym__Nonnull] = ACTIONS(6969), + [anon_sym_mutable] = ACTIONS(6969), + [anon_sym_constinit] = ACTIONS(6969), + [anon_sym_consteval] = ACTIONS(6969), + [anon_sym_alignas] = ACTIONS(6969), + [anon_sym__Alignas] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_STAR_EQ] = ACTIONS(6969), + [anon_sym_SLASH_EQ] = ACTIONS(6969), + [anon_sym_PERCENT_EQ] = ACTIONS(6969), + [anon_sym_PLUS_EQ] = ACTIONS(6969), + [anon_sym_DASH_EQ] = ACTIONS(6969), + [anon_sym_LT_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_GT_EQ] = ACTIONS(6969), + [anon_sym_AMP_EQ] = ACTIONS(6969), + [anon_sym_CARET_EQ] = ACTIONS(6969), + [anon_sym_PIPE_EQ] = ACTIONS(6969), + [anon_sym_and_eq] = ACTIONS(6969), + [anon_sym_or_eq] = ACTIONS(6969), + [anon_sym_xor_eq] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6969), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6969), + [anon_sym_not_eq] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6969), + [anon_sym_decltype] = ACTIONS(6969), + [anon_sym_final] = ACTIONS(6969), + [anon_sym_override] = ACTIONS(6969), + [anon_sym_requires] = ACTIONS(6969), + [anon_sym_DASH_GT_STAR] = ACTIONS(6969), + }, + [STATE(2393)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2589), + [sym_ms_pointer_modifier] = STATE(2393), + [aux_sym_pointer_declarator_repeat1] = STATE(2393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6600), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(7975), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7978), + [sym_ms_signed_ptr_modifier] = ACTIONS(7978), + [anon_sym__unaligned] = ACTIONS(7981), + [anon_sym___unaligned] = ACTIONS(7981), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_STAR_EQ] = ACTIONS(6602), + [anon_sym_SLASH_EQ] = ACTIONS(6602), + [anon_sym_PERCENT_EQ] = ACTIONS(6602), + [anon_sym_PLUS_EQ] = ACTIONS(6602), + [anon_sym_DASH_EQ] = ACTIONS(6602), + [anon_sym_LT_LT_EQ] = ACTIONS(6602), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6602), + [anon_sym_CARET_EQ] = ACTIONS(6602), + [anon_sym_PIPE_EQ] = ACTIONS(6602), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6600), + [anon_sym_and] = ACTIONS(6600), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6600), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_GT2] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + }, + [STATE(2394)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym_ref_qualifier] = STATE(2453), + [sym__function_exception_specification] = STATE(2849), + [sym__function_attributes_end] = STATE(4044), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2849), + [sym_throw_specifier] = STATE(2849), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7548), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7560), + }, + [STATE(2395)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym_ref_qualifier] = STATE(2458), + [sym__function_exception_specification] = STATE(2857), + [sym__function_attributes_end] = STATE(4245), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4310), + [sym_noexcept] = STATE(2857), + [sym_throw_specifier] = STATE(2857), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7960), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7963), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2396)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8645), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9118), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9118), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2397)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8587), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9118), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9118), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2398)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_exception_specification] = STATE(2817), + [sym__function_attributes_end] = STATE(4198), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4241), + [sym_noexcept] = STATE(2817), + [sym_throw_specifier] = STATE(2817), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2399)] = { + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_else_token1] = ACTIONS(6527), + [aux_sym_preproc_elif_token1] = ACTIONS(6525), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6527), + [anon_sym_SEMI] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(7984), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_COLON] = ACTIONS(6525), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_RBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_const] = ACTIONS(7984), + [anon_sym_constexpr] = ACTIONS(7984), + [anon_sym_volatile] = ACTIONS(7984), + [anon_sym_restrict] = ACTIONS(7984), + [anon_sym___restrict__] = ACTIONS(7984), + [anon_sym__Atomic] = ACTIONS(7984), + [anon_sym__Noreturn] = ACTIONS(7984), + [anon_sym_noreturn] = ACTIONS(7984), + [anon_sym__Nonnull] = ACTIONS(7984), + [anon_sym_mutable] = ACTIONS(7984), + [anon_sym_constinit] = ACTIONS(7984), + [anon_sym_consteval] = ACTIONS(7984), + [anon_sym_alignas] = ACTIONS(7987), + [anon_sym__Alignas] = ACTIONS(7987), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + [anon_sym_COLON_RBRACK] = ACTIONS(6527), + }, + [STATE(2400)] = { + [sym_attribute_specifier] = STATE(2851), + [sym_enumerator_list] = STATE(2601), + [sym__enum_base_clause] = STATE(2522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_RPAREN] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_COLON] = ACTIONS(7990), + [anon_sym_LBRACE] = ACTIONS(7992), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_and_eq] = ACTIONS(7602), + [anon_sym_or_eq] = ACTIONS(7602), + [anon_sym_xor_eq] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_DASH_GT_STAR] = ACTIONS(7602), + }, + [STATE(2401)] = { + [sym_attribute_specifier] = STATE(2931), + [sym_enumerator_list] = STATE(2617), + [sym__enum_base_clause] = STATE(2543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_COLON] = ACTIONS(7990), + [anon_sym_LBRACE] = ACTIONS(7992), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7651), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + }, + [STATE(2402)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7387), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(7389), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7387), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_GT2] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + }, + [STATE(2403)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym___restrict__] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym__Noreturn] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym__Nonnull] = ACTIONS(2758), + [anon_sym_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym__Alignas] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2758), + [anon_sym_or_eq] = ACTIONS(2758), + [anon_sym_xor_eq] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2758), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2758), + [anon_sym_not_eq] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2758), + [anon_sym_override] = ACTIONS(2758), + [anon_sym_noexcept] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + }, + [STATE(2404)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_exception_specification] = STATE(2816), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4273), + [sym_noexcept] = STATE(2816), + [sym_throw_specifier] = STATE(2816), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7848), + [anon_sym_override] = ACTIONS(7848), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(7851), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2405)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6226), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6226), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym___attribute__] = ACTIONS(6233), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_STAR_EQ] = ACTIONS(6233), + [anon_sym_SLASH_EQ] = ACTIONS(6233), + [anon_sym_PERCENT_EQ] = ACTIONS(6233), + [anon_sym_PLUS_EQ] = ACTIONS(6233), + [anon_sym_DASH_EQ] = ACTIONS(6233), + [anon_sym_LT_LT_EQ] = ACTIONS(6233), + [anon_sym_GT_GT_EQ] = ACTIONS(6233), + [anon_sym_AMP_EQ] = ACTIONS(6233), + [anon_sym_CARET_EQ] = ACTIONS(6233), + [anon_sym_PIPE_EQ] = ACTIONS(6233), + [anon_sym_and_eq] = ACTIONS(6233), + [anon_sym_or_eq] = ACTIONS(6233), + [anon_sym_xor_eq] = ACTIONS(6233), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_bitor] = ACTIONS(6233), + [anon_sym_xor] = ACTIONS(6226), + [anon_sym_bitand] = ACTIONS(6233), + [anon_sym_not_eq] = ACTIONS(6233), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_final] = ACTIONS(6233), + [anon_sym_override] = ACTIONS(6233), + [anon_sym_requires] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6233), + }, + [STATE(2406)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_mutable] = ACTIONS(6718), + [anon_sym_constinit] = ACTIONS(6718), + [anon_sym_consteval] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6718), + [anon_sym_or_eq] = ACTIONS(6718), + [anon_sym_xor_eq] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6718), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6718), + [anon_sym_not_eq] = ACTIONS(6718), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6718), + [anon_sym___asm__] = ACTIONS(6718), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6718), + [anon_sym_override] = ACTIONS(6718), + [anon_sym_noexcept] = ACTIONS(6718), + [anon_sym_throw] = ACTIONS(6718), + [anon_sym_requires] = ACTIONS(6718), + }, + [STATE(2407)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_exception_specification] = STATE(2798), + [sym__function_attributes_end] = STATE(4190), + [sym__function_postfix] = STATE(4846), + [sym_trailing_return_type] = STATE(4230), + [sym_noexcept] = STATE(2798), + [sym_throw_specifier] = STATE(2798), + [sym_requires_clause] = STATE(4846), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7997), + [anon_sym_override] = ACTIONS(7997), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(8000), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2408)] = { + [sym_attribute_specifier] = STATE(3029), + [sym_field_declaration_list] = STATE(2667), + [sym_virtual_specifier] = STATE(9470), + [sym_base_class_clause] = STATE(10309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6828), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_COLON] = ACTIONS(7817), + [anon_sym_LBRACE] = ACTIONS(8007), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_RBRACK] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6828), + [anon_sym_volatile] = ACTIONS(6828), + [anon_sym_restrict] = ACTIONS(6828), + [anon_sym___restrict__] = ACTIONS(6828), + [anon_sym__Atomic] = ACTIONS(6828), + [anon_sym__Noreturn] = ACTIONS(6828), + [anon_sym_noreturn] = ACTIONS(6828), + [anon_sym__Nonnull] = ACTIONS(6828), + [anon_sym_mutable] = ACTIONS(6828), + [anon_sym_constinit] = ACTIONS(6828), + [anon_sym_consteval] = ACTIONS(6828), + [anon_sym_alignas] = ACTIONS(6828), + [anon_sym__Alignas] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_STAR_EQ] = ACTIONS(6828), + [anon_sym_SLASH_EQ] = ACTIONS(6828), + [anon_sym_PERCENT_EQ] = ACTIONS(6828), + [anon_sym_PLUS_EQ] = ACTIONS(6828), + [anon_sym_DASH_EQ] = ACTIONS(6828), + [anon_sym_LT_LT_EQ] = ACTIONS(6828), + [anon_sym_GT_GT_EQ] = ACTIONS(6828), + [anon_sym_AMP_EQ] = ACTIONS(6828), + [anon_sym_CARET_EQ] = ACTIONS(6828), + [anon_sym_PIPE_EQ] = ACTIONS(6828), + [anon_sym_and_eq] = ACTIONS(6828), + [anon_sym_or_eq] = ACTIONS(6828), + [anon_sym_xor_eq] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6828), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6828), + [anon_sym_not_eq] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6828), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7821), + [anon_sym_override] = ACTIONS(7821), + [anon_sym_requires] = ACTIONS(6828), + }, + [STATE(2409)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8707), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9042), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9042), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2410)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8627), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9042), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9042), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2411)] = { + [sym_template_argument_list] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6201), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6201), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(8009), + [anon_sym_LT_LT] = ACTIONS(6201), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6208), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6201), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_and_eq] = ACTIONS(6208), + [anon_sym_or_eq] = ACTIONS(6208), + [anon_sym_xor_eq] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6201), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_GT2] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + }, + [STATE(2412)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7391), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(7393), + [anon_sym___attribute__] = ACTIONS(7393), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(7906), + [anon_sym_unsigned] = ACTIONS(7906), + [anon_sym_long] = ACTIONS(7906), + [anon_sym_short] = ACTIONS(7906), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7393), + [anon_sym_volatile] = ACTIONS(7393), + [anon_sym_restrict] = ACTIONS(7393), + [anon_sym___restrict__] = ACTIONS(7393), + [anon_sym__Atomic] = ACTIONS(7393), + [anon_sym__Noreturn] = ACTIONS(7393), + [anon_sym_noreturn] = ACTIONS(7393), + [anon_sym__Nonnull] = ACTIONS(7393), + [anon_sym_mutable] = ACTIONS(7393), + [anon_sym_constinit] = ACTIONS(7393), + [anon_sym_consteval] = ACTIONS(7393), + [anon_sym_alignas] = ACTIONS(7393), + [anon_sym__Alignas] = ACTIONS(7393), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_STAR_EQ] = ACTIONS(7393), + [anon_sym_SLASH_EQ] = ACTIONS(7393), + [anon_sym_PERCENT_EQ] = ACTIONS(7393), + [anon_sym_PLUS_EQ] = ACTIONS(7393), + [anon_sym_DASH_EQ] = ACTIONS(7393), + [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7393), + [anon_sym_CARET_EQ] = ACTIONS(7393), + [anon_sym_PIPE_EQ] = ACTIONS(7393), + [anon_sym_and_eq] = ACTIONS(7393), + [anon_sym_or_eq] = ACTIONS(7393), + [anon_sym_xor_eq] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_GT2] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + }, + [STATE(2413)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8650), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9094), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9094), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2414)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8629), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9105), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9105), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2415)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym___extension__] = ACTIONS(6722), + [anon_sym___attribute__] = ACTIONS(6722), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_RBRACK] = ACTIONS(6722), + [anon_sym_EQ] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6722), + [anon_sym_volatile] = ACTIONS(6722), + [anon_sym_restrict] = ACTIONS(6722), + [anon_sym___restrict__] = ACTIONS(6722), + [anon_sym__Atomic] = ACTIONS(6722), + [anon_sym__Noreturn] = ACTIONS(6722), + [anon_sym_noreturn] = ACTIONS(6722), + [anon_sym__Nonnull] = ACTIONS(6722), + [anon_sym_mutable] = ACTIONS(6722), + [anon_sym_constinit] = ACTIONS(6722), + [anon_sym_consteval] = ACTIONS(6722), + [anon_sym_alignas] = ACTIONS(6722), + [anon_sym__Alignas] = ACTIONS(6722), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_STAR_EQ] = ACTIONS(6722), + [anon_sym_SLASH_EQ] = ACTIONS(6722), + [anon_sym_PERCENT_EQ] = ACTIONS(6722), + [anon_sym_PLUS_EQ] = ACTIONS(6722), + [anon_sym_DASH_EQ] = ACTIONS(6722), + [anon_sym_LT_LT_EQ] = ACTIONS(6722), + [anon_sym_GT_GT_EQ] = ACTIONS(6722), + [anon_sym_AMP_EQ] = ACTIONS(6722), + [anon_sym_CARET_EQ] = ACTIONS(6722), + [anon_sym_PIPE_EQ] = ACTIONS(6722), + [anon_sym_and_eq] = ACTIONS(6722), + [anon_sym_or_eq] = ACTIONS(6722), + [anon_sym_xor_eq] = ACTIONS(6722), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6720), + [anon_sym_and] = ACTIONS(6720), + [anon_sym_bitor] = ACTIONS(6722), + [anon_sym_xor] = ACTIONS(6720), + [anon_sym_bitand] = ACTIONS(6722), + [anon_sym_not_eq] = ACTIONS(6722), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6722), + [anon_sym___asm__] = ACTIONS(6722), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6722), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6722), + [anon_sym_override] = ACTIONS(6722), + [anon_sym_noexcept] = ACTIONS(6722), + [anon_sym_throw] = ACTIONS(6722), + [anon_sym_requires] = ACTIONS(6722), + }, + [STATE(2416)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8598), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9094), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9094), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2417)] = { + [sym__declaration_modifiers] = STATE(5030), + [sym_attribute_specifier] = STATE(5030), + [sym_attribute_declaration] = STATE(5030), + [sym_ms_declspec_modifier] = STATE(5030), + [sym_ms_based_modifier] = STATE(11063), + [sym__declarator] = STATE(8957), + [sym_parenthesized_declarator] = STATE(8469), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_function_declarator] = STATE(8607), + [sym_array_declarator] = STATE(8469), + [sym_storage_class_specifier] = STATE(5030), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4644), + [sym_decltype] = STATE(10976), + [sym_explicit_function_specifier] = STATE(5030), + [sym_operator_cast] = STATE(9115), + [sym__constructor_specifiers] = STATE(5030), + [sym_reference_declarator] = STATE(8469), + [sym_structured_binding_declarator] = STATE(8469), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7746), + [sym_qualified_identifier] = STATE(8469), + [sym_qualified_operator_cast_identifier] = STATE(9115), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym_operator_cast_definition_repeat1] = STATE(5030), + [sym_identifier] = ACTIONS(7868), + [anon_sym_LPAREN2] = ACTIONS(3047), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym___extension__] = ACTIONS(7870), + [anon_sym_virtual] = ACTIONS(7872), + [anon_sym_extern] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON_COLON] = ACTIONS(7878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), + [anon_sym___declspec] = ACTIONS(7882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(7874), + [anon_sym_register] = ACTIONS(7874), + [anon_sym_inline] = ACTIONS(7874), + [anon_sym___inline] = ACTIONS(7874), + [anon_sym___inline__] = ACTIONS(7874), + [anon_sym___forceinline] = ACTIONS(7874), + [anon_sym_thread_local] = ACTIONS(7874), + [anon_sym___thread] = ACTIONS(7874), + [anon_sym_const] = ACTIONS(7870), + [anon_sym_constexpr] = ACTIONS(7870), + [anon_sym_volatile] = ACTIONS(7870), + [anon_sym_restrict] = ACTIONS(7870), + [anon_sym___restrict__] = ACTIONS(7870), + [anon_sym__Atomic] = ACTIONS(7870), + [anon_sym__Noreturn] = ACTIONS(7870), + [anon_sym_noreturn] = ACTIONS(7870), + [anon_sym__Nonnull] = ACTIONS(7870), + [anon_sym_mutable] = ACTIONS(7870), + [anon_sym_constinit] = ACTIONS(7870), + [anon_sym_consteval] = ACTIONS(7870), + [anon_sym_alignas] = ACTIONS(7884), + [anon_sym__Alignas] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2418)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_exception_specification] = STATE(2828), + [sym__function_attributes_end] = STATE(4207), + [sym__function_postfix] = STATE(4846), + [sym_trailing_return_type] = STATE(4274), + [sym_noexcept] = STATE(2828), + [sym_throw_specifier] = STATE(2828), + [sym_requires_clause] = STATE(4846), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_noexcept] = ACTIONS(6298), + [anon_sym_throw] = ACTIONS(6300), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2419)] = { + [sym_attribute_specifier] = STATE(2419), + [aux_sym_type_definition_repeat1] = STATE(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_RPAREN] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6553), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6553), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(8012), + [anon_sym___attribute] = ACTIONS(8015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_STAR_EQ] = ACTIONS(6555), + [anon_sym_SLASH_EQ] = ACTIONS(6555), + [anon_sym_PERCENT_EQ] = ACTIONS(6555), + [anon_sym_PLUS_EQ] = ACTIONS(6555), + [anon_sym_DASH_EQ] = ACTIONS(6555), + [anon_sym_LT_LT_EQ] = ACTIONS(6555), + [anon_sym_GT_GT_EQ] = ACTIONS(6555), + [anon_sym_AMP_EQ] = ACTIONS(6555), + [anon_sym_CARET_EQ] = ACTIONS(6555), + [anon_sym_PIPE_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6555), + [anon_sym_and] = ACTIONS(6555), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6555), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + [anon_sym_DASH_GT_STAR] = ACTIONS(6555), + }, + [STATE(2420)] = { + [sym_string_literal] = STATE(2486), + [sym_template_argument_list] = STATE(3611), + [sym_raw_string_literal] = STATE(2486), + [sym_identifier] = ACTIONS(5260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [aux_sym_preproc_if_token2] = ACTIONS(5253), + [aux_sym_preproc_else_token1] = ACTIONS(5253), + [aux_sym_preproc_elif_token1] = ACTIONS(5260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8018), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5260), + [anon_sym_or_eq] = ACTIONS(5260), + [anon_sym_xor_eq] = ACTIONS(5260), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_COLON_RBRACK] = ACTIONS(5253), + }, + [STATE(2421)] = { + [sym_type_qualifier] = STATE(2375), + [sym_alignas_qualifier] = STATE(2559), + [aux_sym__type_definition_type_repeat1] = STATE(2375), + [sym_identifier] = ACTIONS(6388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_RPAREN] = ACTIONS(6390), + [aux_sym_preproc_if_token2] = ACTIONS(6390), + [aux_sym_preproc_else_token1] = ACTIONS(6390), + [aux_sym_preproc_elif_token1] = ACTIONS(6388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6390), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(6857), + [anon_sym___attribute__] = ACTIONS(6388), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_COLON] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), + [anon_sym_RBRACE] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(6857), + [anon_sym_constexpr] = ACTIONS(6857), + [anon_sym_volatile] = ACTIONS(6857), + [anon_sym_restrict] = ACTIONS(6857), + [anon_sym___restrict__] = ACTIONS(6857), + [anon_sym__Atomic] = ACTIONS(6857), + [anon_sym__Noreturn] = ACTIONS(6857), + [anon_sym_noreturn] = ACTIONS(6857), + [anon_sym__Nonnull] = ACTIONS(6857), + [anon_sym_mutable] = ACTIONS(6857), + [anon_sym_constinit] = ACTIONS(6857), + [anon_sym_consteval] = ACTIONS(6857), + [anon_sym_alignas] = ACTIONS(6863), + [anon_sym__Alignas] = ACTIONS(6863), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6388), + [anon_sym_and] = ACTIONS(6388), + [anon_sym_bitor] = ACTIONS(6388), + [anon_sym_xor] = ACTIONS(6388), + [anon_sym_bitand] = ACTIONS(6388), + [anon_sym_not_eq] = ACTIONS(6388), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6388), + [anon_sym___asm__] = ACTIONS(6388), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6388), + [anon_sym_override] = ACTIONS(6388), + [anon_sym_noexcept] = ACTIONS(6388), + [anon_sym_throw] = ACTIONS(6388), + [anon_sym_requires] = ACTIONS(6388), + [anon_sym_COLON_RBRACK] = ACTIONS(6390), + }, + [STATE(2422)] = { + [sym__abstract_declarator] = STATE(5289), + [sym_abstract_parenthesized_declarator] = STATE(4956), + [sym_abstract_pointer_declarator] = STATE(4956), + [sym_abstract_function_declarator] = STATE(4956), + [sym_abstract_array_declarator] = STATE(4956), + [sym_type_qualifier] = STATE(2186), + [sym_alignas_qualifier] = STATE(2295), + [sym_parameter_list] = STATE(1875), + [sym_abstract_reference_declarator] = STATE(4956), + [sym__function_declarator_seq] = STATE(4970), + [aux_sym__type_definition_type_repeat1] = STATE(2186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7027), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(7029), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6732), + [anon_sym_LBRACK] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6742), + [anon_sym_constexpr] = ACTIONS(6732), + [anon_sym_volatile] = ACTIONS(6732), + [anon_sym_restrict] = ACTIONS(6732), + [anon_sym___restrict__] = ACTIONS(6732), + [anon_sym__Atomic] = ACTIONS(6732), + [anon_sym__Noreturn] = ACTIONS(6732), + [anon_sym_noreturn] = ACTIONS(6732), + [anon_sym__Nonnull] = ACTIONS(6732), + [anon_sym_mutable] = ACTIONS(6732), + [anon_sym_constinit] = ACTIONS(6732), + [anon_sym_consteval] = ACTIONS(6732), + [anon_sym_alignas] = ACTIONS(6744), + [anon_sym__Alignas] = ACTIONS(6744), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6495), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_and_eq] = ACTIONS(6497), + [anon_sym_or_eq] = ACTIONS(6497), + [anon_sym_xor_eq] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6497), + }, + [STATE(2423)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [sym_identifier] = ACTIONS(6600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_RPAREN] = ACTIONS(6602), + [aux_sym_preproc_if_token2] = ACTIONS(6602), + [aux_sym_preproc_else_token1] = ACTIONS(6602), + [aux_sym_preproc_elif_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym_SEMI] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6600), + [anon_sym___attribute__] = ACTIONS(6600), + [anon_sym___attribute] = ACTIONS(6600), + [anon_sym_COLON] = ACTIONS(6600), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(8021), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8021), + [sym_ms_signed_ptr_modifier] = ACTIONS(8021), + [anon_sym__unaligned] = ACTIONS(8024), + [anon_sym___unaligned] = ACTIONS(8024), + [anon_sym_RBRACE] = ACTIONS(6602), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6600), + [anon_sym_volatile] = ACTIONS(6600), + [anon_sym_restrict] = ACTIONS(6600), + [anon_sym___restrict__] = ACTIONS(6600), + [anon_sym__Atomic] = ACTIONS(6600), + [anon_sym__Noreturn] = ACTIONS(6600), + [anon_sym_noreturn] = ACTIONS(6600), + [anon_sym__Nonnull] = ACTIONS(6600), + [anon_sym_mutable] = ACTIONS(6600), + [anon_sym_constinit] = ACTIONS(6600), + [anon_sym_consteval] = ACTIONS(6600), + [anon_sym_alignas] = ACTIONS(6600), + [anon_sym__Alignas] = ACTIONS(6600), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6600), + [anon_sym_and] = ACTIONS(6600), + [anon_sym_bitor] = ACTIONS(6600), + [anon_sym_xor] = ACTIONS(6600), + [anon_sym_bitand] = ACTIONS(6600), + [anon_sym_not_eq] = ACTIONS(6600), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6600), + [anon_sym_override] = ACTIONS(6600), + [anon_sym_requires] = ACTIONS(6600), + [anon_sym_COLON_RBRACK] = ACTIONS(6602), + }, + [STATE(2424)] = { + [sym_catch_clause] = STATE(2424), + [aux_sym_constructor_try_statement_repeat1] = STATE(2424), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token2] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [aux_sym_preproc_else_token1] = ACTIONS(3137), + [aux_sym_preproc_elif_token1] = ACTIONS(3137), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_friend] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(8027), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + }, + [STATE(2425)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2426)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2427)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_exception_specification] = STATE(2927), + [sym__function_attributes_end] = STATE(4253), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4410), + [sym_noexcept] = STATE(2927), + [sym_throw_specifier] = STATE(2927), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7954), + [anon_sym_override] = ACTIONS(7954), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(7957), + }, + [STATE(2428)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3790), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2429)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2494), + [sym__abstract_declarator] = STATE(6190), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3484), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3484), + [aux_sym_pointer_declarator_repeat1] = STATE(2494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6457), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_RBRACE] = ACTIONS(6459), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6459), + }, + [STATE(2430)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2280), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7084), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7081), + }, + [STATE(2431)] = { + [sym_template_argument_list] = STATE(2510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + }, + [STATE(2432)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + }, + [STATE(2433)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(7801), + [anon_sym_unsigned] = ACTIONS(7801), + [anon_sym_long] = ACTIONS(7801), + [anon_sym_short] = ACTIONS(7801), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2434)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6949), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6949), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2435)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6949), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6949), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2436)] = { + [sym_attribute_specifier] = STATE(2436), + [aux_sym_type_definition_repeat1] = STATE(2436), + [sym_identifier] = ACTIONS(6553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_RPAREN] = ACTIONS(6555), + [aux_sym_preproc_if_token2] = ACTIONS(6555), + [aux_sym_preproc_else_token1] = ACTIONS(6555), + [aux_sym_preproc_elif_token1] = ACTIONS(6553), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6555), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6555), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6555), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6555), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6555), + [anon_sym_GT_GT] = ACTIONS(6555), + [anon_sym_SEMI] = ACTIONS(6555), + [anon_sym___extension__] = ACTIONS(6553), + [anon_sym___attribute__] = ACTIONS(8036), + [anon_sym___attribute] = ACTIONS(8036), + [anon_sym_COLON] = ACTIONS(6553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6555), + [anon_sym_RBRACE] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6553), + [anon_sym_volatile] = ACTIONS(6553), + [anon_sym_restrict] = ACTIONS(6553), + [anon_sym___restrict__] = ACTIONS(6553), + [anon_sym__Atomic] = ACTIONS(6553), + [anon_sym__Noreturn] = ACTIONS(6553), + [anon_sym_noreturn] = ACTIONS(6553), + [anon_sym__Nonnull] = ACTIONS(6553), + [anon_sym_mutable] = ACTIONS(6553), + [anon_sym_constinit] = ACTIONS(6553), + [anon_sym_consteval] = ACTIONS(6553), + [anon_sym_alignas] = ACTIONS(6553), + [anon_sym__Alignas] = ACTIONS(6553), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6553), + [anon_sym_and] = ACTIONS(6553), + [anon_sym_bitor] = ACTIONS(6553), + [anon_sym_xor] = ACTIONS(6553), + [anon_sym_bitand] = ACTIONS(6553), + [anon_sym_not_eq] = ACTIONS(6553), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6553), + [anon_sym___asm__] = ACTIONS(6553), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6553), + [anon_sym_override] = ACTIONS(6553), + [anon_sym_noexcept] = ACTIONS(6553), + [anon_sym_throw] = ACTIONS(6553), + [anon_sym_requires] = ACTIONS(6553), + [anon_sym_COLON_RBRACK] = ACTIONS(6555), + }, + [STATE(2437)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_exception_specification] = STATE(2907), + [sym__function_attributes_end] = STATE(4242), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4424), + [sym_noexcept] = STATE(2907), + [sym_throw_specifier] = STATE(2907), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2438)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_exception_specification] = STATE(2912), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4325), + [sym_noexcept] = STATE(2912), + [sym_throw_specifier] = STATE(2912), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(7627), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2439)] = { + [sym_string_literal] = STATE(2439), + [sym_raw_string_literal] = STATE(2439), + [aux_sym_concatenated_string_repeat1] = STATE(2439), + [sym_identifier] = ACTIONS(8042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), + [anon_sym_COMMA] = ACTIONS(8045), + [anon_sym_RPAREN] = ACTIONS(8045), + [aux_sym_preproc_if_token2] = ACTIONS(8045), + [aux_sym_preproc_else_token1] = ACTIONS(8045), + [aux_sym_preproc_elif_token1] = ACTIONS(8047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8045), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8045), + [anon_sym_LPAREN2] = ACTIONS(8045), + [anon_sym_DASH] = ACTIONS(8047), + [anon_sym_PLUS] = ACTIONS(8047), + [anon_sym_STAR] = ACTIONS(8047), + [anon_sym_SLASH] = ACTIONS(8047), + [anon_sym_PERCENT] = ACTIONS(8047), + [anon_sym_PIPE_PIPE] = ACTIONS(8045), + [anon_sym_AMP_AMP] = ACTIONS(8045), + [anon_sym_PIPE] = ACTIONS(8047), + [anon_sym_CARET] = ACTIONS(8047), + [anon_sym_AMP] = ACTIONS(8047), + [anon_sym_EQ_EQ] = ACTIONS(8045), + [anon_sym_BANG_EQ] = ACTIONS(8045), + [anon_sym_GT] = ACTIONS(8047), + [anon_sym_GT_EQ] = ACTIONS(8045), + [anon_sym_LT_EQ] = ACTIONS(8047), + [anon_sym_LT] = ACTIONS(8047), + [anon_sym_LT_LT] = ACTIONS(8047), + [anon_sym_GT_GT] = ACTIONS(8047), + [anon_sym_SEMI] = ACTIONS(8045), + [anon_sym_COLON] = ACTIONS(8047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8045), + [anon_sym_RBRACE] = ACTIONS(8045), + [anon_sym_LBRACK] = ACTIONS(8045), + [anon_sym_EQ] = ACTIONS(8047), + [anon_sym_QMARK] = ACTIONS(8045), + [anon_sym_STAR_EQ] = ACTIONS(8045), + [anon_sym_SLASH_EQ] = ACTIONS(8045), + [anon_sym_PERCENT_EQ] = ACTIONS(8045), + [anon_sym_PLUS_EQ] = ACTIONS(8045), + [anon_sym_DASH_EQ] = ACTIONS(8045), + [anon_sym_LT_LT_EQ] = ACTIONS(8045), + [anon_sym_GT_GT_EQ] = ACTIONS(8045), + [anon_sym_AMP_EQ] = ACTIONS(8045), + [anon_sym_CARET_EQ] = ACTIONS(8045), + [anon_sym_PIPE_EQ] = ACTIONS(8045), + [anon_sym_and_eq] = ACTIONS(8047), + [anon_sym_or_eq] = ACTIONS(8047), + [anon_sym_xor_eq] = ACTIONS(8047), + [anon_sym_LT_EQ_GT] = ACTIONS(8045), + [anon_sym_or] = ACTIONS(8047), + [anon_sym_and] = ACTIONS(8047), + [anon_sym_bitor] = ACTIONS(8047), + [anon_sym_xor] = ACTIONS(8047), + [anon_sym_bitand] = ACTIONS(8047), + [anon_sym_not_eq] = ACTIONS(8047), + [anon_sym_DASH_DASH] = ACTIONS(8045), + [anon_sym_PLUS_PLUS] = ACTIONS(8045), + [anon_sym_DOT] = ACTIONS(8047), + [anon_sym_DOT_STAR] = ACTIONS(8045), + [anon_sym_DASH_GT] = ACTIONS(8045), + [anon_sym_L_DQUOTE] = ACTIONS(8049), + [anon_sym_u_DQUOTE] = ACTIONS(8049), + [anon_sym_U_DQUOTE] = ACTIONS(8049), + [anon_sym_u8_DQUOTE] = ACTIONS(8049), + [anon_sym_DQUOTE] = ACTIONS(8049), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8052), + [anon_sym_LR_DQUOTE] = ACTIONS(8052), + [anon_sym_uR_DQUOTE] = ACTIONS(8052), + [anon_sym_UR_DQUOTE] = ACTIONS(8052), + [anon_sym_u8R_DQUOTE] = ACTIONS(8052), + [anon_sym_COLON_RBRACK] = ACTIONS(8045), + [sym_literal_suffix] = ACTIONS(8047), + }, + [STATE(2440)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_RBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_and_eq] = ACTIONS(7084), + [anon_sym_or_eq] = ACTIONS(7084), + [anon_sym_xor_eq] = ACTIONS(7084), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + }, + [STATE(2441)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6967), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6967), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6967), + [anon_sym_GT_GT] = ACTIONS(6967), + [anon_sym___extension__] = ACTIONS(6969), + [anon_sym___attribute__] = ACTIONS(6969), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_EQ] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6969), + [anon_sym_volatile] = ACTIONS(6969), + [anon_sym_restrict] = ACTIONS(6969), + [anon_sym___restrict__] = ACTIONS(6969), + [anon_sym__Atomic] = ACTIONS(6969), + [anon_sym__Noreturn] = ACTIONS(6969), + [anon_sym_noreturn] = ACTIONS(6969), + [anon_sym__Nonnull] = ACTIONS(6969), + [anon_sym_mutable] = ACTIONS(6969), + [anon_sym_constinit] = ACTIONS(6969), + [anon_sym_consteval] = ACTIONS(6969), + [anon_sym_alignas] = ACTIONS(6969), + [anon_sym__Alignas] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_STAR_EQ] = ACTIONS(6969), + [anon_sym_SLASH_EQ] = ACTIONS(6969), + [anon_sym_PERCENT_EQ] = ACTIONS(6969), + [anon_sym_PLUS_EQ] = ACTIONS(6969), + [anon_sym_DASH_EQ] = ACTIONS(6969), + [anon_sym_LT_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_GT_EQ] = ACTIONS(6967), + [anon_sym_AMP_EQ] = ACTIONS(6969), + [anon_sym_CARET_EQ] = ACTIONS(6969), + [anon_sym_PIPE_EQ] = ACTIONS(6969), + [anon_sym_and_eq] = ACTIONS(6969), + [anon_sym_or_eq] = ACTIONS(6969), + [anon_sym_xor_eq] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6969), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6969), + [anon_sym_not_eq] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6969), + [anon_sym_decltype] = ACTIONS(6969), + [anon_sym_final] = ACTIONS(6969), + [anon_sym_override] = ACTIONS(6969), + [anon_sym_GT2] = ACTIONS(6969), + [anon_sym_requires] = ACTIONS(6969), + }, + [STATE(2442)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_exception_specification] = STATE(2928), + [sym__function_attributes_end] = STATE(4265), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4412), + [sym_noexcept] = STATE(2928), + [sym_throw_specifier] = STATE(2928), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8055), + [anon_sym_override] = ACTIONS(8055), + [anon_sym_GT2] = ACTIONS(7627), + [anon_sym_noexcept] = ACTIONS(6377), + [anon_sym_throw] = ACTIONS(6379), + [anon_sym_requires] = ACTIONS(8058), + }, + [STATE(2443)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_exception_specification] = STATE(2943), + [sym__function_attributes_end] = STATE(4227), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4305), + [sym_noexcept] = STATE(2943), + [sym_throw_specifier] = STATE(2943), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7969), + [anon_sym_override] = ACTIONS(7969), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(7972), + }, + [STATE(2444)] = { + [sym_template_argument_list] = STATE(2405), + [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(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(7031), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7031), + [anon_sym___extension__] = ACTIONS(5272), + [anon_sym___attribute__] = ACTIONS(5272), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(5272), + [anon_sym_volatile] = ACTIONS(5272), + [anon_sym_restrict] = ACTIONS(5272), + [anon_sym___restrict__] = ACTIONS(5272), + [anon_sym__Atomic] = ACTIONS(5272), + [anon_sym__Noreturn] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym__Nonnull] = ACTIONS(5272), + [anon_sym_mutable] = ACTIONS(5272), + [anon_sym_constinit] = ACTIONS(5272), + [anon_sym_consteval] = ACTIONS(5272), + [anon_sym_alignas] = ACTIONS(5272), + [anon_sym__Alignas] = 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(5272), + [anon_sym_or_eq] = ACTIONS(5272), + [anon_sym_xor_eq] = ACTIONS(5272), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_bitor] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(7031), + [anon_sym_bitand] = ACTIONS(5272), + [anon_sym_not_eq] = ACTIONS(5272), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(7031), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_requires] = ACTIONS(5272), + [anon_sym_DASH_GT_STAR] = ACTIONS(5272), + }, + [STATE(2445)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + }, + [STATE(2446)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_exception_specification] = STATE(2965), + [sym__function_attributes_end] = STATE(4233), + [sym__function_postfix] = STATE(4995), + [sym_trailing_return_type] = STATE(4308), + [sym_noexcept] = STATE(2965), + [sym_throw_specifier] = STATE(2965), + [sym_requires_clause] = STATE(4995), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_RBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8064), + [anon_sym_override] = ACTIONS(8064), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(8067), + }, + [STATE(2447)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6967), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6967), + [anon_sym_GT_GT] = ACTIONS(6967), + [anon_sym___extension__] = ACTIONS(6969), + [anon_sym___attribute__] = ACTIONS(6969), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_RBRACK] = ACTIONS(6969), + [anon_sym_EQ] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6969), + [anon_sym_volatile] = ACTIONS(6969), + [anon_sym_restrict] = ACTIONS(6969), + [anon_sym___restrict__] = ACTIONS(6969), + [anon_sym__Atomic] = ACTIONS(6969), + [anon_sym__Noreturn] = ACTIONS(6969), + [anon_sym_noreturn] = ACTIONS(6969), + [anon_sym__Nonnull] = ACTIONS(6969), + [anon_sym_mutable] = ACTIONS(6969), + [anon_sym_constinit] = ACTIONS(6969), + [anon_sym_consteval] = ACTIONS(6969), + [anon_sym_alignas] = ACTIONS(6969), + [anon_sym__Alignas] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_STAR_EQ] = ACTIONS(6969), + [anon_sym_SLASH_EQ] = ACTIONS(6969), + [anon_sym_PERCENT_EQ] = ACTIONS(6969), + [anon_sym_PLUS_EQ] = ACTIONS(6969), + [anon_sym_DASH_EQ] = ACTIONS(6969), + [anon_sym_LT_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_GT_EQ] = ACTIONS(6969), + [anon_sym_AMP_EQ] = ACTIONS(6969), + [anon_sym_CARET_EQ] = ACTIONS(6969), + [anon_sym_PIPE_EQ] = ACTIONS(6969), + [anon_sym_and_eq] = ACTIONS(6969), + [anon_sym_or_eq] = ACTIONS(6969), + [anon_sym_xor_eq] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6969), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6969), + [anon_sym_not_eq] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6969), + [anon_sym_decltype] = ACTIONS(6969), + [anon_sym_final] = ACTIONS(6969), + [anon_sym_override] = ACTIONS(6969), + [anon_sym_requires] = ACTIONS(6969), + }, + [STATE(2448)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2849), + [sym__function_attributes_end] = STATE(4044), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_noexcept] = STATE(2849), + [sym_throw_specifier] = STATE(2849), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7560), + }, + [STATE(2449)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2450)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6272), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_RBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6272), + [anon_sym_volatile] = ACTIONS(6272), + [anon_sym_restrict] = ACTIONS(6272), + [anon_sym___restrict__] = ACTIONS(6272), + [anon_sym__Atomic] = ACTIONS(6272), + [anon_sym__Noreturn] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym__Nonnull] = ACTIONS(6272), + [anon_sym_mutable] = ACTIONS(6272), + [anon_sym_constinit] = ACTIONS(6272), + [anon_sym_consteval] = ACTIONS(6272), + [anon_sym_alignas] = ACTIONS(6272), + [anon_sym__Alignas] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6272), + [anon_sym_or_eq] = ACTIONS(6272), + [anon_sym_xor_eq] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + [anon_sym_final] = ACTIONS(6272), + [anon_sym_override] = ACTIONS(6272), + [anon_sym_requires] = ACTIONS(6272), + }, + [STATE(2451)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_exception_specification] = STATE(2857), + [sym__function_attributes_end] = STATE(4245), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4310), + [sym_noexcept] = STATE(2857), + [sym_throw_specifier] = STATE(2857), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2452)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2919), + [sym__function_attributes_end] = STATE(4134), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_noexcept] = STATE(2919), + [sym_throw_specifier] = STATE(2919), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2453)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2858), + [sym__function_attributes_end] = STATE(4140), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_noexcept] = STATE(2858), + [sym_throw_specifier] = STATE(2858), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(8070), + [anon_sym___attribute] = ACTIONS(8073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8076), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(7637), + }, + [STATE(2454)] = { + [sym_catch_clause] = STATE(2424), + [aux_sym_constructor_try_statement_repeat1] = STATE(2424), + [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_SEMI] = ACTIONS(3150), + [anon_sym___extension__] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_typename] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3148), + [anon_sym_decltype] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_friend] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_static_assert] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(8079), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + }, + [STATE(2455)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6261), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3402), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3402), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7739), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), + [sym_ms_signed_ptr_modifier] = ACTIONS(7741), + [anon_sym__unaligned] = ACTIONS(7743), + [anon_sym___unaligned] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2456)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_RBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6248), + [anon_sym_or_eq] = ACTIONS(6248), + [anon_sym_xor_eq] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_final] = ACTIONS(6248), + [anon_sym_override] = ACTIONS(6248), + [anon_sym_requires] = ACTIONS(6248), + }, + [STATE(2457)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6252), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_RBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6252), + [anon_sym_volatile] = ACTIONS(6252), + [anon_sym_restrict] = ACTIONS(6252), + [anon_sym___restrict__] = ACTIONS(6252), + [anon_sym__Atomic] = ACTIONS(6252), + [anon_sym__Noreturn] = ACTIONS(6252), + [anon_sym_noreturn] = ACTIONS(6252), + [anon_sym__Nonnull] = ACTIONS(6252), + [anon_sym_mutable] = ACTIONS(6252), + [anon_sym_constinit] = ACTIONS(6252), + [anon_sym_consteval] = ACTIONS(6252), + [anon_sym_alignas] = ACTIONS(6252), + [anon_sym__Alignas] = ACTIONS(6252), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6252), + [anon_sym_or_eq] = ACTIONS(6252), + [anon_sym_xor_eq] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + [anon_sym_final] = ACTIONS(6252), + [anon_sym_override] = ACTIONS(6252), + [anon_sym_requires] = ACTIONS(6252), + }, + [STATE(2458)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_exception_specification] = STATE(2881), + [sym__function_attributes_end] = STATE(4246), + [sym__function_postfix] = STATE(4995), + [sym_trailing_return_type] = STATE(4326), + [sym_noexcept] = STATE(2881), + [sym_throw_specifier] = STATE(2881), + [sym_requires_clause] = STATE(4995), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_RBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_noexcept] = ACTIONS(6342), + [anon_sym_throw] = ACTIONS(6344), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2459)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6256), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_RBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6256), + [anon_sym_volatile] = ACTIONS(6256), + [anon_sym_restrict] = ACTIONS(6256), + [anon_sym___restrict__] = ACTIONS(6256), + [anon_sym__Atomic] = ACTIONS(6256), + [anon_sym__Noreturn] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym__Nonnull] = ACTIONS(6256), + [anon_sym_mutable] = ACTIONS(6256), + [anon_sym_constinit] = ACTIONS(6256), + [anon_sym_consteval] = ACTIONS(6256), + [anon_sym_alignas] = ACTIONS(6256), + [anon_sym__Alignas] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6256), + [anon_sym_or_eq] = ACTIONS(6256), + [anon_sym_xor_eq] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + [anon_sym_final] = ACTIONS(6256), + [anon_sym_override] = ACTIONS(6256), + [anon_sym_requires] = ACTIONS(6256), + }, + [STATE(2460)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_exception_specification] = STATE(2920), + [sym__function_attributes_end] = STATE(4135), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_noexcept] = STATE(2920), + [sym_throw_specifier] = STATE(2920), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(8070), + [anon_sym___attribute] = ACTIONS(8073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8076), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_noexcept] = ACTIONS(6162), + [anon_sym_throw] = ACTIONS(6164), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2461)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6260), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_RBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6260), + [anon_sym_volatile] = ACTIONS(6260), + [anon_sym_restrict] = ACTIONS(6260), + [anon_sym___restrict__] = ACTIONS(6260), + [anon_sym__Atomic] = ACTIONS(6260), + [anon_sym__Noreturn] = ACTIONS(6260), + [anon_sym_noreturn] = ACTIONS(6260), + [anon_sym__Nonnull] = ACTIONS(6260), + [anon_sym_mutable] = ACTIONS(6260), + [anon_sym_constinit] = ACTIONS(6260), + [anon_sym_consteval] = ACTIONS(6260), + [anon_sym_alignas] = ACTIONS(6260), + [anon_sym__Alignas] = ACTIONS(6260), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6260), + [anon_sym_or_eq] = ACTIONS(6260), + [anon_sym_xor_eq] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + [anon_sym_final] = ACTIONS(6260), + [anon_sym_override] = ACTIONS(6260), + [anon_sym_requires] = ACTIONS(6260), + }, + [STATE(2462)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_RBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6264), + [anon_sym_volatile] = ACTIONS(6264), + [anon_sym_restrict] = ACTIONS(6264), + [anon_sym___restrict__] = ACTIONS(6264), + [anon_sym__Atomic] = ACTIONS(6264), + [anon_sym__Noreturn] = ACTIONS(6264), + [anon_sym_noreturn] = ACTIONS(6264), + [anon_sym__Nonnull] = ACTIONS(6264), + [anon_sym_mutable] = ACTIONS(6264), + [anon_sym_constinit] = ACTIONS(6264), + [anon_sym_consteval] = ACTIONS(6264), + [anon_sym_alignas] = ACTIONS(6264), + [anon_sym__Alignas] = ACTIONS(6264), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6264), + [anon_sym_or_eq] = ACTIONS(6264), + [anon_sym_xor_eq] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6264), + [anon_sym_decltype] = ACTIONS(6264), + [anon_sym_final] = ACTIONS(6264), + [anon_sym_override] = ACTIONS(6264), + [anon_sym_requires] = ACTIONS(6264), + }, + [STATE(2463)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2455), + [sym__abstract_declarator] = STATE(6259), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3399), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3399), + [aux_sym_pointer_declarator_repeat1] = STATE(2455), + [sym_identifier] = ACTIONS(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [aux_sym_preproc_if_token2] = ACTIONS(6459), + [aux_sym_preproc_else_token1] = ACTIONS(6459), + [aux_sym_preproc_elif_token1] = ACTIONS(6457), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7739), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), + [sym_ms_signed_ptr_modifier] = ACTIONS(7741), + [anon_sym__unaligned] = ACTIONS(7743), + [anon_sym___unaligned] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6457), + [anon_sym_and] = ACTIONS(6457), + [anon_sym_bitor] = ACTIONS(6457), + [anon_sym_xor] = ACTIONS(6457), + [anon_sym_bitand] = ACTIONS(6457), + [anon_sym_not_eq] = ACTIONS(6457), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(2464)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3812), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2465)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3813), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2466)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3820), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2964), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_preproc_if_token2] = ACTIONS(8089), + [aux_sym_preproc_else_token1] = ACTIONS(8089), + [aux_sym_preproc_elif_token1] = ACTIONS(8087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8087), + [anon_sym_or_eq] = ACTIONS(8087), + [anon_sym_xor_eq] = ACTIONS(8087), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8087), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8087), + [anon_sym_not_eq] = ACTIONS(8087), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8091), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + }, + [STATE(2467)] = { + [sym_attribute_specifier] = STATE(3091), + [sym_enumerator_list] = STATE(2717), + [sym__enum_base_clause] = STATE(2562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_COLON] = ACTIONS(8094), + [anon_sym_LBRACE] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7600), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_and_eq] = ACTIONS(7602), + [anon_sym_or_eq] = ACTIONS(7602), + [anon_sym_xor_eq] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_GT2] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + }, + [STATE(2468)] = { + [sym_attribute_specifier] = STATE(3010), + [sym_enumerator_list] = STATE(2653), + [sym__enum_base_clause] = STATE(2582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7651), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_COLON] = ACTIONS(8094), + [anon_sym_LBRACE] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7651), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_GT2] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + }, + [STATE(2469)] = { + [sym_attribute_specifier] = STATE(3026), + [sym_enumerator_list] = STATE(2663), + [sym__enum_base_clause] = STATE(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_COLON] = ACTIONS(8098), + [anon_sym_LBRACE] = ACTIONS(8100), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_RBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_and_eq] = ACTIONS(7602), + [anon_sym_or_eq] = ACTIONS(7602), + [anon_sym_xor_eq] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + }, + [STATE(2470)] = { + [sym_attribute_specifier] = STATE(3045), + [sym_enumerator_list] = STATE(2679), + [sym__enum_base_clause] = STATE(2585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_COLON] = ACTIONS(8098), + [anon_sym_LBRACE] = ACTIONS(8100), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_RBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + }, + [STATE(2471)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6270), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6272), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6272), + [anon_sym_volatile] = ACTIONS(6272), + [anon_sym_restrict] = ACTIONS(6272), + [anon_sym___restrict__] = ACTIONS(6272), + [anon_sym__Atomic] = ACTIONS(6272), + [anon_sym__Noreturn] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym__Nonnull] = ACTIONS(6272), + [anon_sym_mutable] = ACTIONS(6272), + [anon_sym_constinit] = ACTIONS(6272), + [anon_sym_consteval] = ACTIONS(6272), + [anon_sym_alignas] = ACTIONS(6272), + [anon_sym__Alignas] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6270), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_and_eq] = ACTIONS(6272), + [anon_sym_or_eq] = ACTIONS(6272), + [anon_sym_xor_eq] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + [anon_sym_final] = ACTIONS(6272), + [anon_sym_override] = ACTIONS(6272), + [anon_sym_GT2] = ACTIONS(6272), + [anon_sym_requires] = ACTIONS(6272), + }, + [STATE(2472)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3831), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7579), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7582), + [anon_sym_override] = ACTIONS(7582), + [anon_sym_requires] = ACTIONS(7585), + }, + [STATE(2473)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3838), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7648), + }, + [STATE(2474)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3842), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2867), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_preproc_if_token2] = ACTIONS(8089), + [aux_sym_preproc_else_token1] = ACTIONS(8089), + [aux_sym_preproc_elif_token1] = ACTIONS(8087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8087), + [anon_sym_or_eq] = ACTIONS(8087), + [anon_sym_xor_eq] = ACTIONS(8087), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8087), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8087), + [anon_sym_not_eq] = ACTIONS(8087), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8091), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8102), + [anon_sym_override] = ACTIONS(8102), + [anon_sym_requires] = ACTIONS(8105), + }, + [STATE(2475)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2485), + [sym__abstract_declarator] = STATE(6186), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3488), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3488), + [aux_sym_pointer_declarator_repeat1] = STATE(2485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6459), + [anon_sym___attribute] = ACTIONS(6457), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(2476)] = { + [sym_string_literal] = STATE(2439), + [sym_raw_string_literal] = STATE(2439), + [aux_sym_concatenated_string_repeat1] = STATE(2439), + [sym_identifier] = ACTIONS(8114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), + [anon_sym_COMMA] = ACTIONS(8116), + [anon_sym_RPAREN] = ACTIONS(8116), + [aux_sym_preproc_if_token2] = ACTIONS(8116), + [aux_sym_preproc_else_token1] = ACTIONS(8116), + [aux_sym_preproc_elif_token1] = ACTIONS(8118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8116), + [anon_sym_LPAREN2] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8118), + [anon_sym_STAR] = ACTIONS(8118), + [anon_sym_SLASH] = ACTIONS(8118), + [anon_sym_PERCENT] = ACTIONS(8118), + [anon_sym_PIPE_PIPE] = ACTIONS(8116), + [anon_sym_AMP_AMP] = ACTIONS(8116), + [anon_sym_PIPE] = ACTIONS(8118), + [anon_sym_CARET] = ACTIONS(8118), + [anon_sym_AMP] = ACTIONS(8118), + [anon_sym_EQ_EQ] = ACTIONS(8116), + [anon_sym_BANG_EQ] = ACTIONS(8116), + [anon_sym_GT] = ACTIONS(8118), + [anon_sym_GT_EQ] = ACTIONS(8116), + [anon_sym_LT_EQ] = ACTIONS(8118), + [anon_sym_LT] = ACTIONS(8118), + [anon_sym_LT_LT] = ACTIONS(8118), + [anon_sym_GT_GT] = ACTIONS(8118), + [anon_sym_SEMI] = ACTIONS(8116), + [anon_sym_COLON] = ACTIONS(8118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8116), + [anon_sym_RBRACE] = ACTIONS(8116), + [anon_sym_LBRACK] = ACTIONS(8116), + [anon_sym_EQ] = ACTIONS(8118), + [anon_sym_QMARK] = ACTIONS(8116), + [anon_sym_STAR_EQ] = ACTIONS(8116), + [anon_sym_SLASH_EQ] = ACTIONS(8116), + [anon_sym_PERCENT_EQ] = ACTIONS(8116), + [anon_sym_PLUS_EQ] = ACTIONS(8116), + [anon_sym_DASH_EQ] = ACTIONS(8116), + [anon_sym_LT_LT_EQ] = ACTIONS(8116), + [anon_sym_GT_GT_EQ] = ACTIONS(8116), + [anon_sym_AMP_EQ] = ACTIONS(8116), + [anon_sym_CARET_EQ] = ACTIONS(8116), + [anon_sym_PIPE_EQ] = ACTIONS(8116), + [anon_sym_and_eq] = ACTIONS(8118), + [anon_sym_or_eq] = ACTIONS(8118), + [anon_sym_xor_eq] = ACTIONS(8118), + [anon_sym_LT_EQ_GT] = ACTIONS(8116), + [anon_sym_or] = ACTIONS(8118), + [anon_sym_and] = ACTIONS(8118), + [anon_sym_bitor] = ACTIONS(8118), + [anon_sym_xor] = ACTIONS(8118), + [anon_sym_bitand] = ACTIONS(8118), + [anon_sym_not_eq] = ACTIONS(8118), + [anon_sym_DASH_DASH] = ACTIONS(8116), + [anon_sym_PLUS_PLUS] = ACTIONS(8116), + [anon_sym_DOT] = ACTIONS(8118), + [anon_sym_DOT_STAR] = ACTIONS(8116), + [anon_sym_DASH_GT] = ACTIONS(8116), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_COLON_RBRACK] = ACTIONS(8116), + [sym_literal_suffix] = ACTIONS(8118), + }, + [STATE(2477)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3810), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2964), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(8087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8120), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(8089), + }, + [STATE(2478)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6242), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6244), + [anon_sym_volatile] = ACTIONS(6244), + [anon_sym_restrict] = ACTIONS(6244), + [anon_sym___restrict__] = ACTIONS(6244), + [anon_sym__Atomic] = ACTIONS(6244), + [anon_sym__Noreturn] = ACTIONS(6244), + [anon_sym_noreturn] = ACTIONS(6244), + [anon_sym__Nonnull] = ACTIONS(6244), + [anon_sym_mutable] = ACTIONS(6244), + [anon_sym_constinit] = ACTIONS(6244), + [anon_sym_consteval] = ACTIONS(6244), + [anon_sym_alignas] = ACTIONS(6244), + [anon_sym__Alignas] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6242), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + [anon_sym_final] = ACTIONS(6244), + [anon_sym_override] = ACTIONS(6244), + [anon_sym_GT2] = ACTIONS(6244), + [anon_sym_requires] = ACTIONS(6244), + }, + [STATE(2479)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6246), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6246), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_and_eq] = ACTIONS(6248), + [anon_sym_or_eq] = ACTIONS(6248), + [anon_sym_xor_eq] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_final] = ACTIONS(6248), + [anon_sym_override] = ACTIONS(6248), + [anon_sym_GT2] = ACTIONS(6248), + [anon_sym_requires] = ACTIONS(6248), + }, + [STATE(2480)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6250), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6252), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6252), + [anon_sym_volatile] = ACTIONS(6252), + [anon_sym_restrict] = ACTIONS(6252), + [anon_sym___restrict__] = ACTIONS(6252), + [anon_sym__Atomic] = ACTIONS(6252), + [anon_sym__Noreturn] = ACTIONS(6252), + [anon_sym_noreturn] = ACTIONS(6252), + [anon_sym__Nonnull] = ACTIONS(6252), + [anon_sym_mutable] = ACTIONS(6252), + [anon_sym_constinit] = ACTIONS(6252), + [anon_sym_consteval] = ACTIONS(6252), + [anon_sym_alignas] = ACTIONS(6252), + [anon_sym__Alignas] = ACTIONS(6252), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6250), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_and_eq] = ACTIONS(6252), + [anon_sym_or_eq] = ACTIONS(6252), + [anon_sym_xor_eq] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + [anon_sym_final] = ACTIONS(6252), + [anon_sym_override] = ACTIONS(6252), + [anon_sym_GT2] = ACTIONS(6252), + [anon_sym_requires] = ACTIONS(6252), + }, + [STATE(2481)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6254), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6256), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6256), + [anon_sym_volatile] = ACTIONS(6256), + [anon_sym_restrict] = ACTIONS(6256), + [anon_sym___restrict__] = ACTIONS(6256), + [anon_sym__Atomic] = ACTIONS(6256), + [anon_sym__Noreturn] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym__Nonnull] = ACTIONS(6256), + [anon_sym_mutable] = ACTIONS(6256), + [anon_sym_constinit] = ACTIONS(6256), + [anon_sym_consteval] = ACTIONS(6256), + [anon_sym_alignas] = ACTIONS(6256), + [anon_sym__Alignas] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6254), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_and_eq] = ACTIONS(6256), + [anon_sym_or_eq] = ACTIONS(6256), + [anon_sym_xor_eq] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + [anon_sym_final] = ACTIONS(6256), + [anon_sym_override] = ACTIONS(6256), + [anon_sym_GT2] = ACTIONS(6256), + [anon_sym_requires] = ACTIONS(6256), + }, + [STATE(2482)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3799), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2483)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6258), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6260), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6260), + [anon_sym_volatile] = ACTIONS(6260), + [anon_sym_restrict] = ACTIONS(6260), + [anon_sym___restrict__] = ACTIONS(6260), + [anon_sym__Atomic] = ACTIONS(6260), + [anon_sym__Noreturn] = ACTIONS(6260), + [anon_sym_noreturn] = ACTIONS(6260), + [anon_sym__Nonnull] = ACTIONS(6260), + [anon_sym_mutable] = ACTIONS(6260), + [anon_sym_constinit] = ACTIONS(6260), + [anon_sym_consteval] = ACTIONS(6260), + [anon_sym_alignas] = ACTIONS(6260), + [anon_sym__Alignas] = ACTIONS(6260), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6258), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_and_eq] = ACTIONS(6260), + [anon_sym_or_eq] = ACTIONS(6260), + [anon_sym_xor_eq] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + [anon_sym_final] = ACTIONS(6260), + [anon_sym_override] = ACTIONS(6260), + [anon_sym_GT2] = ACTIONS(6260), + [anon_sym_requires] = ACTIONS(6260), + }, + [STATE(2484)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6262), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6264), + [anon_sym_volatile] = ACTIONS(6264), + [anon_sym_restrict] = ACTIONS(6264), + [anon_sym___restrict__] = ACTIONS(6264), + [anon_sym__Atomic] = ACTIONS(6264), + [anon_sym__Noreturn] = ACTIONS(6264), + [anon_sym_noreturn] = ACTIONS(6264), + [anon_sym__Nonnull] = ACTIONS(6264), + [anon_sym_mutable] = ACTIONS(6264), + [anon_sym_constinit] = ACTIONS(6264), + [anon_sym_consteval] = ACTIONS(6264), + [anon_sym_alignas] = ACTIONS(6264), + [anon_sym__Alignas] = ACTIONS(6264), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6262), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_and_eq] = ACTIONS(6264), + [anon_sym_or_eq] = ACTIONS(6264), + [anon_sym_xor_eq] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6264), + [anon_sym_decltype] = ACTIONS(6264), + [anon_sym_final] = ACTIONS(6264), + [anon_sym_override] = ACTIONS(6264), + [anon_sym_GT2] = ACTIONS(6264), + [anon_sym_requires] = ACTIONS(6264), + }, + [STATE(2485)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6183), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3437), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3437), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2486)] = { + [sym_string_literal] = STATE(2476), + [sym_raw_string_literal] = STATE(2476), + [aux_sym_concatenated_string_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(8123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_RPAREN] = ACTIONS(8125), + [aux_sym_preproc_if_token2] = ACTIONS(8125), + [aux_sym_preproc_else_token1] = ACTIONS(8125), + [aux_sym_preproc_elif_token1] = ACTIONS(8127), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8125), + [anon_sym_LPAREN2] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(8127), + [anon_sym_STAR] = ACTIONS(8127), + [anon_sym_SLASH] = ACTIONS(8127), + [anon_sym_PERCENT] = ACTIONS(8127), + [anon_sym_PIPE_PIPE] = ACTIONS(8125), + [anon_sym_AMP_AMP] = ACTIONS(8125), + [anon_sym_PIPE] = ACTIONS(8127), + [anon_sym_CARET] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(8127), + [anon_sym_EQ_EQ] = ACTIONS(8125), + [anon_sym_BANG_EQ] = ACTIONS(8125), + [anon_sym_GT] = ACTIONS(8127), + [anon_sym_GT_EQ] = ACTIONS(8125), + [anon_sym_LT_EQ] = ACTIONS(8127), + [anon_sym_LT] = ACTIONS(8127), + [anon_sym_LT_LT] = ACTIONS(8127), + [anon_sym_GT_GT] = ACTIONS(8127), + [anon_sym_SEMI] = ACTIONS(8125), + [anon_sym_COLON] = ACTIONS(8127), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8125), + [anon_sym_RBRACE] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym_EQ] = ACTIONS(8127), + [anon_sym_QMARK] = ACTIONS(8125), + [anon_sym_STAR_EQ] = ACTIONS(8125), + [anon_sym_SLASH_EQ] = ACTIONS(8125), + [anon_sym_PERCENT_EQ] = ACTIONS(8125), + [anon_sym_PLUS_EQ] = ACTIONS(8125), + [anon_sym_DASH_EQ] = ACTIONS(8125), + [anon_sym_LT_LT_EQ] = ACTIONS(8125), + [anon_sym_GT_GT_EQ] = ACTIONS(8125), + [anon_sym_AMP_EQ] = ACTIONS(8125), + [anon_sym_CARET_EQ] = ACTIONS(8125), + [anon_sym_PIPE_EQ] = ACTIONS(8125), + [anon_sym_and_eq] = ACTIONS(8127), + [anon_sym_or_eq] = ACTIONS(8127), + [anon_sym_xor_eq] = ACTIONS(8127), + [anon_sym_LT_EQ_GT] = ACTIONS(8125), + [anon_sym_or] = ACTIONS(8127), + [anon_sym_and] = ACTIONS(8127), + [anon_sym_bitor] = ACTIONS(8127), + [anon_sym_xor] = ACTIONS(8127), + [anon_sym_bitand] = ACTIONS(8127), + [anon_sym_not_eq] = ACTIONS(8127), + [anon_sym_DASH_DASH] = ACTIONS(8125), + [anon_sym_PLUS_PLUS] = ACTIONS(8125), + [anon_sym_DOT] = ACTIONS(8127), + [anon_sym_DOT_STAR] = ACTIONS(8125), + [anon_sym_DASH_GT] = ACTIONS(8125), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_COLON_RBRACK] = ACTIONS(8125), + [sym_literal_suffix] = ACTIONS(8127), + }, + [STATE(2487)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6226), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6226), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6226), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym___attribute__] = ACTIONS(6233), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_STAR_EQ] = ACTIONS(6233), + [anon_sym_SLASH_EQ] = ACTIONS(6233), + [anon_sym_PERCENT_EQ] = ACTIONS(6233), + [anon_sym_PLUS_EQ] = ACTIONS(6233), + [anon_sym_DASH_EQ] = ACTIONS(6233), + [anon_sym_LT_LT_EQ] = ACTIONS(6233), + [anon_sym_GT_GT_EQ] = ACTIONS(6226), + [anon_sym_AMP_EQ] = ACTIONS(6233), + [anon_sym_CARET_EQ] = ACTIONS(6233), + [anon_sym_PIPE_EQ] = ACTIONS(6233), + [anon_sym_and_eq] = ACTIONS(6233), + [anon_sym_or_eq] = ACTIONS(6233), + [anon_sym_xor_eq] = ACTIONS(6233), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_bitor] = ACTIONS(6233), + [anon_sym_xor] = ACTIONS(6226), + [anon_sym_bitand] = ACTIONS(6233), + [anon_sym_not_eq] = ACTIONS(6233), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_final] = ACTIONS(6233), + [anon_sym_override] = ACTIONS(6233), + [anon_sym_GT2] = ACTIONS(6233), + [anon_sym_requires] = ACTIONS(6233), + }, + [STATE(2488)] = { + [sym_catch_clause] = STATE(2424), + [aux_sym_constructor_try_statement_repeat1] = STATE(2424), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token2] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [aux_sym_preproc_else_token1] = ACTIONS(3554), + [aux_sym_preproc_elif_token1] = ACTIONS(3554), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_friend] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(8079), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2489)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3845), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7554), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7560), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2490)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3744), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7637), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2491)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6226), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6226), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym___attribute__] = ACTIONS(6233), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_RBRACK] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_STAR_EQ] = ACTIONS(6233), + [anon_sym_SLASH_EQ] = ACTIONS(6233), + [anon_sym_PERCENT_EQ] = ACTIONS(6233), + [anon_sym_PLUS_EQ] = ACTIONS(6233), + [anon_sym_DASH_EQ] = ACTIONS(6233), + [anon_sym_LT_LT_EQ] = ACTIONS(6233), + [anon_sym_GT_GT_EQ] = ACTIONS(6233), + [anon_sym_AMP_EQ] = ACTIONS(6233), + [anon_sym_CARET_EQ] = ACTIONS(6233), + [anon_sym_PIPE_EQ] = ACTIONS(6233), + [anon_sym_and_eq] = ACTIONS(6233), + [anon_sym_or_eq] = ACTIONS(6233), + [anon_sym_xor_eq] = ACTIONS(6233), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_bitor] = ACTIONS(6233), + [anon_sym_xor] = ACTIONS(6226), + [anon_sym_bitand] = ACTIONS(6233), + [anon_sym_not_eq] = ACTIONS(6233), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_final] = ACTIONS(6233), + [anon_sym_override] = ACTIONS(6233), + [anon_sym_requires] = ACTIONS(6233), + }, + [STATE(2492)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(3740), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2867), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(6150), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(8087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8120), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8129), + [anon_sym_override] = ACTIONS(8129), + [anon_sym_requires] = ACTIONS(8132), + [anon_sym_COLON_RBRACK] = ACTIONS(8089), + }, + [STATE(2493)] = { + [sym_catch_clause] = STATE(2424), + [aux_sym_constructor_try_statement_repeat1] = STATE(2424), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [aux_sym_preproc_else_token1] = ACTIONS(3534), + [aux_sym_preproc_elif_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(8079), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + }, + [STATE(2494)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6206), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3459), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3459), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(2495)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_RBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6244), + [anon_sym_volatile] = ACTIONS(6244), + [anon_sym_restrict] = ACTIONS(6244), + [anon_sym___restrict__] = ACTIONS(6244), + [anon_sym__Atomic] = ACTIONS(6244), + [anon_sym__Noreturn] = ACTIONS(6244), + [anon_sym_noreturn] = ACTIONS(6244), + [anon_sym__Nonnull] = ACTIONS(6244), + [anon_sym_mutable] = ACTIONS(6244), + [anon_sym_constinit] = ACTIONS(6244), + [anon_sym_consteval] = ACTIONS(6244), + [anon_sym_alignas] = ACTIONS(6244), + [anon_sym__Alignas] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6244), + [anon_sym_or_eq] = ACTIONS(6244), + [anon_sym_xor_eq] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + [anon_sym_final] = ACTIONS(6244), + [anon_sym_override] = ACTIONS(6244), + [anon_sym_requires] = ACTIONS(6244), + }, + [STATE(2496)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [anon_sym_RPAREN] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7251), + [anon_sym_volatile] = ACTIONS(7251), + [anon_sym_restrict] = ACTIONS(7251), + [anon_sym___restrict__] = ACTIONS(7251), + [anon_sym__Atomic] = ACTIONS(7251), + [anon_sym__Noreturn] = ACTIONS(7251), + [anon_sym_noreturn] = ACTIONS(7251), + [anon_sym__Nonnull] = ACTIONS(7251), + [anon_sym_mutable] = ACTIONS(7251), + [anon_sym_constinit] = ACTIONS(7251), + [anon_sym_consteval] = ACTIONS(7251), + [anon_sym_alignas] = ACTIONS(7251), + [anon_sym__Alignas] = ACTIONS(7251), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_STAR_EQ] = ACTIONS(7251), + [anon_sym_SLASH_EQ] = ACTIONS(7251), + [anon_sym_PERCENT_EQ] = ACTIONS(7251), + [anon_sym_PLUS_EQ] = ACTIONS(7251), + [anon_sym_DASH_EQ] = ACTIONS(7251), + [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym_GT_GT_EQ] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7251), + [anon_sym_CARET_EQ] = ACTIONS(7251), + [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DASH_GT_STAR] = ACTIONS(7251), + }, + [STATE(2497)] = { + [sym_template_argument_list] = STATE(2525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6201), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6201), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6201), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(8137), + [anon_sym_LT_LT] = ACTIONS(6201), + [anon_sym_GT_GT] = ACTIONS(6201), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6208), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_STAR_EQ] = ACTIONS(6208), + [anon_sym_SLASH_EQ] = ACTIONS(6208), + [anon_sym_PERCENT_EQ] = ACTIONS(6208), + [anon_sym_PLUS_EQ] = ACTIONS(6208), + [anon_sym_DASH_EQ] = ACTIONS(6208), + [anon_sym_LT_LT_EQ] = ACTIONS(6208), + [anon_sym_GT_GT_EQ] = ACTIONS(6208), + [anon_sym_AMP_EQ] = ACTIONS(6208), + [anon_sym_CARET_EQ] = ACTIONS(6208), + [anon_sym_PIPE_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6208), + [anon_sym_and] = ACTIONS(6208), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6208), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6208), + }, + [STATE(2498)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2758), + [anon_sym___attribute__] = ACTIONS(2758), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2758), + [anon_sym_volatile] = ACTIONS(2758), + [anon_sym_restrict] = ACTIONS(2758), + [anon_sym___restrict__] = ACTIONS(2758), + [anon_sym__Atomic] = ACTIONS(2758), + [anon_sym__Noreturn] = ACTIONS(2758), + [anon_sym_noreturn] = ACTIONS(2758), + [anon_sym__Nonnull] = ACTIONS(2758), + [anon_sym_mutable] = ACTIONS(2758), + [anon_sym_constinit] = ACTIONS(2758), + [anon_sym_consteval] = ACTIONS(2758), + [anon_sym_alignas] = ACTIONS(2758), + [anon_sym__Alignas] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2758), + [anon_sym_and] = ACTIONS(2758), + [anon_sym_bitor] = ACTIONS(2758), + [anon_sym_xor] = ACTIONS(2758), + [anon_sym_bitand] = ACTIONS(2758), + [anon_sym_not_eq] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym___asm__] = ACTIONS(2758), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2758), + [anon_sym_override] = ACTIONS(2758), + [anon_sym_noexcept] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_requires] = ACTIONS(2758), + [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + }, + [STATE(2499)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(7912), + [anon_sym_unsigned] = ACTIONS(7912), + [anon_sym_long] = ACTIONS(7912), + [anon_sym_short] = ACTIONS(7912), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_GT2] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2500)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8140), + [anon_sym_COMMA] = ACTIONS(8140), + [anon_sym_LPAREN2] = ACTIONS(8142), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(8145), + [anon_sym_PLUS] = ACTIONS(8145), + [anon_sym_STAR] = ACTIONS(8142), + [anon_sym_SLASH] = ACTIONS(8145), + [anon_sym_PERCENT] = ACTIONS(8140), + [anon_sym_PIPE_PIPE] = ACTIONS(8140), + [anon_sym_AMP_AMP] = ACTIONS(8142), + [anon_sym_PIPE] = ACTIONS(8145), + [anon_sym_CARET] = ACTIONS(8140), + [anon_sym_AMP] = ACTIONS(8147), + [anon_sym_EQ_EQ] = ACTIONS(8140), + [anon_sym_BANG_EQ] = ACTIONS(8140), + [anon_sym_GT] = ACTIONS(8145), + [anon_sym_GT_EQ] = ACTIONS(8140), + [anon_sym_LT_EQ] = ACTIONS(8145), + [anon_sym_LT] = ACTIONS(8145), + [anon_sym_LT_LT] = ACTIONS(8140), + [anon_sym_GT_GT] = ACTIONS(8140), + [anon_sym_SEMI] = ACTIONS(8140), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(8142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym_RBRACE] = ACTIONS(8140), + [anon_sym_LBRACK] = ACTIONS(8147), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(8140), + [anon_sym_LT_EQ_GT] = ACTIONS(8140), + [anon_sym_or] = ACTIONS(8145), + [anon_sym_and] = ACTIONS(8145), + [anon_sym_bitor] = ACTIONS(8145), + [anon_sym_xor] = ACTIONS(8145), + [anon_sym_bitand] = ACTIONS(8145), + [anon_sym_not_eq] = ACTIONS(8145), + [anon_sym_DASH_DASH] = ACTIONS(8140), + [anon_sym_PLUS_PLUS] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8145), + [anon_sym_DOT_STAR] = ACTIONS(8140), + [anon_sym_DASH_GT] = ACTIONS(8140), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(2501)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_RBRACK] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_and_eq] = ACTIONS(6716), + [anon_sym_or_eq] = ACTIONS(6716), + [anon_sym_xor_eq] = ACTIONS(6716), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + }, + [STATE(2502)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7408), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7408), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7408), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7408), + [anon_sym_GT_GT] = ACTIONS(7408), + [anon_sym___extension__] = ACTIONS(7410), + [anon_sym___attribute__] = ACTIONS(7410), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_EQ] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7410), + [anon_sym_volatile] = ACTIONS(7410), + [anon_sym_restrict] = ACTIONS(7410), + [anon_sym___restrict__] = ACTIONS(7410), + [anon_sym__Atomic] = ACTIONS(7410), + [anon_sym__Noreturn] = ACTIONS(7410), + [anon_sym_noreturn] = ACTIONS(7410), + [anon_sym__Nonnull] = ACTIONS(7410), + [anon_sym_mutable] = ACTIONS(7410), + [anon_sym_constinit] = ACTIONS(7410), + [anon_sym_consteval] = ACTIONS(7410), + [anon_sym_alignas] = ACTIONS(7410), + [anon_sym__Alignas] = ACTIONS(7410), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_STAR_EQ] = ACTIONS(7410), + [anon_sym_SLASH_EQ] = ACTIONS(7410), + [anon_sym_PERCENT_EQ] = ACTIONS(7410), + [anon_sym_PLUS_EQ] = ACTIONS(7410), + [anon_sym_DASH_EQ] = ACTIONS(7410), + [anon_sym_LT_LT_EQ] = ACTIONS(7410), + [anon_sym_GT_GT_EQ] = ACTIONS(7410), + [anon_sym_AMP_EQ] = ACTIONS(7410), + [anon_sym_CARET_EQ] = ACTIONS(7410), + [anon_sym_PIPE_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7410), + [anon_sym_and] = ACTIONS(7410), + [anon_sym_bitor] = ACTIONS(7410), + [anon_sym_xor] = ACTIONS(7410), + [anon_sym_bitand] = ACTIONS(7410), + [anon_sym_not_eq] = ACTIONS(7410), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7408), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7410), + [anon_sym_override] = ACTIONS(7410), + [anon_sym_requires] = ACTIONS(7410), + [anon_sym_DASH_GT_STAR] = ACTIONS(7410), + }, + [STATE(2503)] = { + [sym__abstract_declarator] = STATE(5703), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6997), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6997), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6997), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6997), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_STAR_EQ] = ACTIONS(6995), + [anon_sym_SLASH_EQ] = ACTIONS(6995), + [anon_sym_PERCENT_EQ] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(6995), + [anon_sym_DASH_EQ] = ACTIONS(6995), + [anon_sym_LT_LT_EQ] = ACTIONS(6995), + [anon_sym_GT_GT_EQ] = ACTIONS(6995), + [anon_sym_AMP_EQ] = ACTIONS(6995), + [anon_sym_CARET_EQ] = ACTIONS(6995), + [anon_sym_PIPE_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6997), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + }, + [STATE(2504)] = { + [sym__abstract_declarator] = STATE(5705), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2508), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_STAR_EQ] = ACTIONS(6999), + [anon_sym_SLASH_EQ] = ACTIONS(6999), + [anon_sym_PERCENT_EQ] = ACTIONS(6999), + [anon_sym_PLUS_EQ] = ACTIONS(6999), + [anon_sym_DASH_EQ] = ACTIONS(6999), + [anon_sym_LT_LT_EQ] = ACTIONS(6999), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(6999), + [anon_sym_CARET_EQ] = ACTIONS(6999), + [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6999), + }, + [STATE(2505)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [anon_sym_RPAREN] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7391), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(7393), + [anon_sym___attribute__] = ACTIONS(7393), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7393), + [anon_sym_volatile] = ACTIONS(7393), + [anon_sym_restrict] = ACTIONS(7393), + [anon_sym___restrict__] = ACTIONS(7393), + [anon_sym__Atomic] = ACTIONS(7393), + [anon_sym__Noreturn] = ACTIONS(7393), + [anon_sym_noreturn] = ACTIONS(7393), + [anon_sym__Nonnull] = ACTIONS(7393), + [anon_sym_mutable] = ACTIONS(7393), + [anon_sym_constinit] = ACTIONS(7393), + [anon_sym_consteval] = ACTIONS(7393), + [anon_sym_alignas] = ACTIONS(7393), + [anon_sym__Alignas] = ACTIONS(7393), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_STAR_EQ] = ACTIONS(7393), + [anon_sym_SLASH_EQ] = ACTIONS(7393), + [anon_sym_PERCENT_EQ] = ACTIONS(7393), + [anon_sym_PLUS_EQ] = ACTIONS(7393), + [anon_sym_DASH_EQ] = ACTIONS(7393), + [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7393), + [anon_sym_CARET_EQ] = ACTIONS(7393), + [anon_sym_PIPE_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + [anon_sym_DASH_GT_STAR] = ACTIONS(7393), + }, + [STATE(2506)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [anon_sym_RPAREN] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(8152), + [anon_sym_unsigned] = ACTIONS(8152), + [anon_sym_long] = ACTIONS(8152), + [anon_sym_short] = ACTIONS(8152), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_mutable] = ACTIONS(7404), + [anon_sym_constinit] = ACTIONS(7404), + [anon_sym_consteval] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_STAR_EQ] = ACTIONS(7404), + [anon_sym_SLASH_EQ] = ACTIONS(7404), + [anon_sym_PERCENT_EQ] = ACTIONS(7404), + [anon_sym_PLUS_EQ] = ACTIONS(7404), + [anon_sym_DASH_EQ] = ACTIONS(7404), + [anon_sym_LT_LT_EQ] = ACTIONS(7404), + [anon_sym_GT_GT_EQ] = ACTIONS(7404), + [anon_sym_AMP_EQ] = ACTIONS(7404), + [anon_sym_CARET_EQ] = ACTIONS(7404), + [anon_sym_PIPE_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7404), + [anon_sym_and] = ACTIONS(7404), + [anon_sym_bitor] = ACTIONS(7404), + [anon_sym_xor] = ACTIONS(7404), + [anon_sym_bitand] = ACTIONS(7404), + [anon_sym_not_eq] = ACTIONS(7404), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7404), + [anon_sym_override] = ACTIONS(7404), + [anon_sym_requires] = ACTIONS(7404), + [anon_sym_DASH_GT_STAR] = ACTIONS(7404), + }, + [STATE(2507)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8154), + [anon_sym_unsigned] = ACTIONS(8154), + [anon_sym_long] = ACTIONS(8154), + [anon_sym_short] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7255), + [anon_sym_and] = ACTIONS(7255), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7255), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + }, + [STATE(2508)] = { + [sym__abstract_declarator] = STATE(5776), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7005), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7005), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7005), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7005), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_STAR_EQ] = ACTIONS(7003), + [anon_sym_SLASH_EQ] = ACTIONS(7003), + [anon_sym_PERCENT_EQ] = ACTIONS(7003), + [anon_sym_PLUS_EQ] = ACTIONS(7003), + [anon_sym_DASH_EQ] = ACTIONS(7003), + [anon_sym_LT_LT_EQ] = ACTIONS(7003), + [anon_sym_GT_GT_EQ] = ACTIONS(7003), + [anon_sym_AMP_EQ] = ACTIONS(7003), + [anon_sym_CARET_EQ] = ACTIONS(7003), + [anon_sym_PIPE_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7005), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7003), + }, + [STATE(2509)] = { + [sym_decltype_auto] = STATE(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8156), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2510)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym___extension__] = ACTIONS(6764), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6764), + [anon_sym_volatile] = ACTIONS(6764), + [anon_sym_restrict] = ACTIONS(6764), + [anon_sym___restrict__] = ACTIONS(6764), + [anon_sym__Atomic] = ACTIONS(6764), + [anon_sym__Noreturn] = ACTIONS(6764), + [anon_sym_noreturn] = ACTIONS(6764), + [anon_sym__Nonnull] = ACTIONS(6764), + [anon_sym_mutable] = ACTIONS(6764), + [anon_sym_constinit] = ACTIONS(6764), + [anon_sym_consteval] = ACTIONS(6764), + [anon_sym_alignas] = ACTIONS(6764), + [anon_sym__Alignas] = ACTIONS(6764), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6764), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_and_eq] = ACTIONS(6764), + [anon_sym_or_eq] = ACTIONS(6764), + [anon_sym_xor_eq] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6764), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6764), + [anon_sym_not_eq] = ACTIONS(6764), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6762), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6764), + [anon_sym_override] = ACTIONS(6764), + [anon_sym_requires] = ACTIONS(6764), + [anon_sym_DASH_GT_STAR] = ACTIONS(6764), + }, + [STATE(2511)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7414), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7414), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7414), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7414), + [anon_sym_GT_GT] = ACTIONS(7414), + [anon_sym___extension__] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(7414), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym___restrict__] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym__Noreturn] = ACTIONS(7416), + [anon_sym_noreturn] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym_mutable] = ACTIONS(7416), + [anon_sym_constinit] = ACTIONS(7416), + [anon_sym_consteval] = ACTIONS(7416), + [anon_sym_alignas] = ACTIONS(7416), + [anon_sym__Alignas] = ACTIONS(7416), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_STAR_EQ] = ACTIONS(7416), + [anon_sym_SLASH_EQ] = ACTIONS(7416), + [anon_sym_PERCENT_EQ] = ACTIONS(7416), + [anon_sym_PLUS_EQ] = ACTIONS(7416), + [anon_sym_DASH_EQ] = ACTIONS(7416), + [anon_sym_LT_LT_EQ] = ACTIONS(7416), + [anon_sym_GT_GT_EQ] = ACTIONS(7416), + [anon_sym_AMP_EQ] = ACTIONS(7416), + [anon_sym_CARET_EQ] = ACTIONS(7416), + [anon_sym_PIPE_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7416), + [anon_sym_and] = ACTIONS(7416), + [anon_sym_bitor] = ACTIONS(7416), + [anon_sym_xor] = ACTIONS(7416), + [anon_sym_bitand] = ACTIONS(7416), + [anon_sym_not_eq] = ACTIONS(7416), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7414), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7416), + [anon_sym_override] = ACTIONS(7416), + [anon_sym_requires] = ACTIONS(7416), + [anon_sym_DASH_GT_STAR] = ACTIONS(7416), + }, + [STATE(2512)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym_ref_qualifier] = STATE(2610), + [sym__function_exception_specification] = STATE(3259), + [sym__function_attributes_end] = STATE(4448), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4529), + [sym_noexcept] = STATE(3259), + [sym_throw_specifier] = STATE(3259), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8158), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(8161), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2513)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6716), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6716), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(6716), + [anon_sym___extension__] = ACTIONS(6718), + [anon_sym___attribute__] = ACTIONS(6718), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_EQ] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6718), + [anon_sym_volatile] = ACTIONS(6718), + [anon_sym_restrict] = ACTIONS(6718), + [anon_sym___restrict__] = ACTIONS(6718), + [anon_sym__Atomic] = ACTIONS(6718), + [anon_sym__Noreturn] = ACTIONS(6718), + [anon_sym_noreturn] = ACTIONS(6718), + [anon_sym__Nonnull] = ACTIONS(6718), + [anon_sym_mutable] = ACTIONS(6718), + [anon_sym_constinit] = ACTIONS(6718), + [anon_sym_consteval] = ACTIONS(6718), + [anon_sym_alignas] = ACTIONS(6718), + [anon_sym__Alignas] = ACTIONS(6718), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_STAR_EQ] = ACTIONS(6718), + [anon_sym_SLASH_EQ] = ACTIONS(6718), + [anon_sym_PERCENT_EQ] = ACTIONS(6718), + [anon_sym_PLUS_EQ] = ACTIONS(6718), + [anon_sym_DASH_EQ] = ACTIONS(6718), + [anon_sym_LT_LT_EQ] = ACTIONS(6718), + [anon_sym_GT_GT_EQ] = ACTIONS(6718), + [anon_sym_AMP_EQ] = ACTIONS(6718), + [anon_sym_CARET_EQ] = ACTIONS(6718), + [anon_sym_PIPE_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6718), + [anon_sym_and] = ACTIONS(6718), + [anon_sym_bitor] = ACTIONS(6718), + [anon_sym_xor] = ACTIONS(6718), + [anon_sym_bitand] = ACTIONS(6718), + [anon_sym_not_eq] = ACTIONS(6718), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6718), + [anon_sym___asm__] = ACTIONS(6718), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6718), + [anon_sym_override] = ACTIONS(6718), + [anon_sym_noexcept] = ACTIONS(6718), + [anon_sym_throw] = ACTIONS(6718), + [anon_sym_requires] = ACTIONS(6718), + [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + }, + [STATE(2514)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + }, + [STATE(2515)] = { + [sym_argument_list] = STATE(5523), + [sym_initializer_list] = STATE(5524), + [aux_sym_sized_type_specifier_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_signed] = ACTIONS(7801), + [anon_sym_unsigned] = ACTIONS(7801), + [anon_sym_long] = ACTIONS(7801), + [anon_sym_short] = ACTIONS(7801), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2516)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [anon_sym_RPAREN] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7239), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7239), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7239), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7239), + [anon_sym_GT_GT] = ACTIONS(7239), + [anon_sym___extension__] = ACTIONS(7241), + [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(8170), + [anon_sym_unsigned] = ACTIONS(8170), + [anon_sym_long] = ACTIONS(8170), + [anon_sym_short] = ACTIONS(8170), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(7239), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7241), + [anon_sym_volatile] = ACTIONS(7241), + [anon_sym_restrict] = ACTIONS(7241), + [anon_sym___restrict__] = ACTIONS(7241), + [anon_sym__Atomic] = ACTIONS(7241), + [anon_sym__Noreturn] = ACTIONS(7241), + [anon_sym_noreturn] = ACTIONS(7241), + [anon_sym__Nonnull] = ACTIONS(7241), + [anon_sym_mutable] = ACTIONS(7241), + [anon_sym_constinit] = ACTIONS(7241), + [anon_sym_consteval] = ACTIONS(7241), + [anon_sym_alignas] = ACTIONS(7241), + [anon_sym__Alignas] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_STAR_EQ] = ACTIONS(7241), + [anon_sym_SLASH_EQ] = ACTIONS(7241), + [anon_sym_PERCENT_EQ] = ACTIONS(7241), + [anon_sym_PLUS_EQ] = ACTIONS(7241), + [anon_sym_DASH_EQ] = ACTIONS(7241), + [anon_sym_LT_LT_EQ] = ACTIONS(7241), + [anon_sym_GT_GT_EQ] = ACTIONS(7241), + [anon_sym_AMP_EQ] = ACTIONS(7241), + [anon_sym_CARET_EQ] = ACTIONS(7241), + [anon_sym_PIPE_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7241), + [anon_sym_and] = ACTIONS(7241), + [anon_sym_bitor] = ACTIONS(7241), + [anon_sym_xor] = ACTIONS(7241), + [anon_sym_bitand] = ACTIONS(7241), + [anon_sym_not_eq] = ACTIONS(7241), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7239), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7241), + [anon_sym_override] = ACTIONS(7241), + [anon_sym_requires] = ACTIONS(7241), + [anon_sym_DASH_GT_STAR] = ACTIONS(7241), + }, + [STATE(2517)] = { + [sym_template_argument_list] = STATE(2491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(7031), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7031), + [anon_sym___extension__] = ACTIONS(5272), + [anon_sym___attribute__] = ACTIONS(5272), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(5272), + [anon_sym_volatile] = ACTIONS(5272), + [anon_sym_restrict] = ACTIONS(5272), + [anon_sym___restrict__] = ACTIONS(5272), + [anon_sym__Atomic] = ACTIONS(5272), + [anon_sym__Noreturn] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym__Nonnull] = ACTIONS(5272), + [anon_sym_mutable] = ACTIONS(5272), + [anon_sym_constinit] = ACTIONS(5272), + [anon_sym_consteval] = ACTIONS(5272), + [anon_sym_alignas] = ACTIONS(5272), + [anon_sym__Alignas] = 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(5272), + [anon_sym_or_eq] = ACTIONS(5272), + [anon_sym_xor_eq] = ACTIONS(5272), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_bitor] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(7031), + [anon_sym_bitand] = ACTIONS(5272), + [anon_sym_not_eq] = ACTIONS(5272), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_requires] = ACTIONS(5272), + }, + [STATE(2518)] = { + [sym__abstract_declarator] = STATE(5806), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2503), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6993), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6993), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6993), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_STAR_EQ] = ACTIONS(6991), + [anon_sym_SLASH_EQ] = ACTIONS(6991), + [anon_sym_PERCENT_EQ] = ACTIONS(6991), + [anon_sym_PLUS_EQ] = ACTIONS(6991), + [anon_sym_DASH_EQ] = ACTIONS(6991), + [anon_sym_LT_LT_EQ] = ACTIONS(6991), + [anon_sym_GT_GT_EQ] = ACTIONS(6991), + [anon_sym_AMP_EQ] = ACTIONS(6991), + [anon_sym_CARET_EQ] = ACTIONS(6991), + [anon_sym_PIPE_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6993), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + }, + [STATE(2519)] = { + [sym_template_argument_list] = STATE(2570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6746), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_GT2] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + }, + [STATE(2520)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [anon_sym_RPAREN] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7213), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7213), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7213), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7213), + [anon_sym_GT_GT] = ACTIONS(7213), + [anon_sym___extension__] = ACTIONS(7215), + [anon_sym___attribute__] = ACTIONS(7215), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(8172), + [anon_sym_unsigned] = ACTIONS(8172), + [anon_sym_long] = ACTIONS(8172), + [anon_sym_short] = ACTIONS(8172), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_EQ] = ACTIONS(7213), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7215), + [anon_sym_volatile] = ACTIONS(7215), + [anon_sym_restrict] = ACTIONS(7215), + [anon_sym___restrict__] = ACTIONS(7215), + [anon_sym__Atomic] = ACTIONS(7215), + [anon_sym__Noreturn] = ACTIONS(7215), + [anon_sym_noreturn] = ACTIONS(7215), + [anon_sym__Nonnull] = ACTIONS(7215), + [anon_sym_mutable] = ACTIONS(7215), + [anon_sym_constinit] = ACTIONS(7215), + [anon_sym_consteval] = ACTIONS(7215), + [anon_sym_alignas] = ACTIONS(7215), + [anon_sym__Alignas] = ACTIONS(7215), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_STAR_EQ] = ACTIONS(7215), + [anon_sym_SLASH_EQ] = ACTIONS(7215), + [anon_sym_PERCENT_EQ] = ACTIONS(7215), + [anon_sym_PLUS_EQ] = ACTIONS(7215), + [anon_sym_DASH_EQ] = ACTIONS(7215), + [anon_sym_LT_LT_EQ] = ACTIONS(7215), + [anon_sym_GT_GT_EQ] = ACTIONS(7215), + [anon_sym_AMP_EQ] = ACTIONS(7215), + [anon_sym_CARET_EQ] = ACTIONS(7215), + [anon_sym_PIPE_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7215), + [anon_sym_and] = ACTIONS(7215), + [anon_sym_bitor] = ACTIONS(7215), + [anon_sym_xor] = ACTIONS(7215), + [anon_sym_bitand] = ACTIONS(7215), + [anon_sym_not_eq] = ACTIONS(7215), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7213), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7215), + [anon_sym_override] = ACTIONS(7215), + [anon_sym_requires] = ACTIONS(7215), + [anon_sym_DASH_GT_STAR] = ACTIONS(7215), + }, + [STATE(2521)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [anon_sym_RPAREN] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7385), + [anon_sym___attribute__] = ACTIONS(7385), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7385), + [anon_sym_volatile] = ACTIONS(7385), + [anon_sym_restrict] = ACTIONS(7385), + [anon_sym___restrict__] = ACTIONS(7385), + [anon_sym__Atomic] = ACTIONS(7385), + [anon_sym__Noreturn] = ACTIONS(7385), + [anon_sym_noreturn] = ACTIONS(7385), + [anon_sym__Nonnull] = ACTIONS(7385), + [anon_sym_mutable] = ACTIONS(7385), + [anon_sym_constinit] = ACTIONS(7385), + [anon_sym_consteval] = ACTIONS(7385), + [anon_sym_alignas] = ACTIONS(7385), + [anon_sym__Alignas] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_STAR_EQ] = ACTIONS(7385), + [anon_sym_SLASH_EQ] = ACTIONS(7385), + [anon_sym_PERCENT_EQ] = ACTIONS(7385), + [anon_sym_PLUS_EQ] = ACTIONS(7385), + [anon_sym_DASH_EQ] = ACTIONS(7385), + [anon_sym_LT_LT_EQ] = ACTIONS(7385), + [anon_sym_GT_GT_EQ] = ACTIONS(7385), + [anon_sym_AMP_EQ] = ACTIONS(7385), + [anon_sym_CARET_EQ] = ACTIONS(7385), + [anon_sym_PIPE_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7385), + [anon_sym_and] = ACTIONS(7385), + [anon_sym_bitor] = ACTIONS(7385), + [anon_sym_xor] = ACTIONS(7385), + [anon_sym_bitand] = ACTIONS(7385), + [anon_sym_not_eq] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7385), + [anon_sym_override] = ACTIONS(7385), + [anon_sym_requires] = ACTIONS(7385), + [anon_sym_DASH_GT_STAR] = ACTIONS(7385), + }, + [STATE(2522)] = { + [sym_attribute_specifier] = STATE(2936), + [sym_enumerator_list] = STATE(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_RPAREN] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6985), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6985), + [anon_sym_GT_GT] = ACTIONS(6985), + [anon_sym___extension__] = ACTIONS(6987), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7992), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_EQ] = ACTIONS(6985), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6987), + [anon_sym_volatile] = ACTIONS(6987), + [anon_sym_restrict] = ACTIONS(6987), + [anon_sym___restrict__] = ACTIONS(6987), + [anon_sym__Atomic] = ACTIONS(6987), + [anon_sym__Noreturn] = ACTIONS(6987), + [anon_sym_noreturn] = ACTIONS(6987), + [anon_sym__Nonnull] = ACTIONS(6987), + [anon_sym_mutable] = ACTIONS(6987), + [anon_sym_constinit] = ACTIONS(6987), + [anon_sym_consteval] = ACTIONS(6987), + [anon_sym_alignas] = ACTIONS(6987), + [anon_sym__Alignas] = ACTIONS(6987), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_STAR_EQ] = ACTIONS(6987), + [anon_sym_SLASH_EQ] = ACTIONS(6987), + [anon_sym_PERCENT_EQ] = ACTIONS(6987), + [anon_sym_PLUS_EQ] = ACTIONS(6987), + [anon_sym_DASH_EQ] = ACTIONS(6987), + [anon_sym_LT_LT_EQ] = ACTIONS(6987), + [anon_sym_GT_GT_EQ] = ACTIONS(6987), + [anon_sym_AMP_EQ] = ACTIONS(6987), + [anon_sym_CARET_EQ] = ACTIONS(6987), + [anon_sym_PIPE_EQ] = ACTIONS(6987), + [anon_sym_and_eq] = ACTIONS(6987), + [anon_sym_or_eq] = ACTIONS(6987), + [anon_sym_xor_eq] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6985), + [anon_sym_and] = ACTIONS(6985), + [anon_sym_bitor] = ACTIONS(6987), + [anon_sym_xor] = ACTIONS(6985), + [anon_sym_bitand] = ACTIONS(6987), + [anon_sym_not_eq] = ACTIONS(6987), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6985), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6987), + [anon_sym_override] = ACTIONS(6987), + [anon_sym_requires] = ACTIONS(6987), + [anon_sym_DASH_GT_STAR] = ACTIONS(6987), + }, + [STATE(2523)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym___extension__] = ACTIONS(6846), + [anon_sym___attribute__] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6846), + [anon_sym_volatile] = ACTIONS(6846), + [anon_sym_restrict] = ACTIONS(6846), + [anon_sym___restrict__] = ACTIONS(6846), + [anon_sym__Atomic] = ACTIONS(6846), + [anon_sym__Noreturn] = ACTIONS(6846), + [anon_sym_noreturn] = ACTIONS(6846), + [anon_sym__Nonnull] = ACTIONS(6846), + [anon_sym_mutable] = ACTIONS(6846), + [anon_sym_constinit] = ACTIONS(6846), + [anon_sym_consteval] = ACTIONS(6846), + [anon_sym_alignas] = ACTIONS(6846), + [anon_sym__Alignas] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_and_eq] = ACTIONS(6846), + [anon_sym_or_eq] = ACTIONS(6846), + [anon_sym_xor_eq] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6846), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6846), + [anon_sym_not_eq] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6844), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6846), + [anon_sym_override] = ACTIONS(6846), + [anon_sym_requires] = ACTIONS(6846), + [anon_sym_DASH_GT_STAR] = ACTIONS(6846), + }, + [STATE(2524)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(5999), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_parameter_declaration] = STATE(10257), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2525)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6226), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6226), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6226), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6226), + [anon_sym_GT_GT] = ACTIONS(6226), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym___attribute__] = ACTIONS(6233), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_STAR_EQ] = ACTIONS(6233), + [anon_sym_SLASH_EQ] = ACTIONS(6233), + [anon_sym_PERCENT_EQ] = ACTIONS(6233), + [anon_sym_PLUS_EQ] = ACTIONS(6233), + [anon_sym_DASH_EQ] = ACTIONS(6233), + [anon_sym_LT_LT_EQ] = ACTIONS(6233), + [anon_sym_GT_GT_EQ] = ACTIONS(6233), + [anon_sym_AMP_EQ] = ACTIONS(6233), + [anon_sym_CARET_EQ] = ACTIONS(6233), + [anon_sym_PIPE_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6233), + [anon_sym_and] = ACTIONS(6233), + [anon_sym_bitor] = ACTIONS(6233), + [anon_sym_xor] = ACTIONS(6233), + [anon_sym_bitand] = ACTIONS(6233), + [anon_sym_not_eq] = ACTIONS(6233), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_final] = ACTIONS(6233), + [anon_sym_override] = ACTIONS(6233), + [anon_sym_requires] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6233), + }, + [STATE(2526)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_RPAREN] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6720), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6720), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(6720), + [anon_sym___extension__] = ACTIONS(6722), + [anon_sym___attribute__] = ACTIONS(6722), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_EQ] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6722), + [anon_sym_volatile] = ACTIONS(6722), + [anon_sym_restrict] = ACTIONS(6722), + [anon_sym___restrict__] = ACTIONS(6722), + [anon_sym__Atomic] = ACTIONS(6722), + [anon_sym__Noreturn] = ACTIONS(6722), + [anon_sym_noreturn] = ACTIONS(6722), + [anon_sym__Nonnull] = ACTIONS(6722), + [anon_sym_mutable] = ACTIONS(6722), + [anon_sym_constinit] = ACTIONS(6722), + [anon_sym_consteval] = ACTIONS(6722), + [anon_sym_alignas] = ACTIONS(6722), + [anon_sym__Alignas] = ACTIONS(6722), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_STAR_EQ] = ACTIONS(6722), + [anon_sym_SLASH_EQ] = ACTIONS(6722), + [anon_sym_PERCENT_EQ] = ACTIONS(6722), + [anon_sym_PLUS_EQ] = ACTIONS(6722), + [anon_sym_DASH_EQ] = ACTIONS(6722), + [anon_sym_LT_LT_EQ] = ACTIONS(6722), + [anon_sym_GT_GT_EQ] = ACTIONS(6722), + [anon_sym_AMP_EQ] = ACTIONS(6722), + [anon_sym_CARET_EQ] = ACTIONS(6722), + [anon_sym_PIPE_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6722), + [anon_sym_and] = ACTIONS(6722), + [anon_sym_bitor] = ACTIONS(6722), + [anon_sym_xor] = ACTIONS(6722), + [anon_sym_bitand] = ACTIONS(6722), + [anon_sym_not_eq] = ACTIONS(6722), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6722), + [anon_sym___asm__] = ACTIONS(6722), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6720), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6722), + [anon_sym_override] = ACTIONS(6722), + [anon_sym_noexcept] = ACTIONS(6722), + [anon_sym_throw] = ACTIONS(6722), + [anon_sym_requires] = ACTIONS(6722), + [anon_sym_DASH_GT_STAR] = ACTIONS(6722), + }, + [STATE(2527)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7201), + [anon_sym_and] = ACTIONS(7201), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7201), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7199), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_DASH_GT_STAR] = ACTIONS(7201), + }, + [STATE(2528)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym___attribute__] = ACTIONS(6792), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6792), + [anon_sym_and] = ACTIONS(6792), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6792), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6792), + [anon_sym___asm__] = ACTIONS(6792), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_noexcept] = ACTIONS(6792), + [anon_sym_throw] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + }, + [STATE(2529)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_RPAREN] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6794), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6794), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6794), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6794), + [anon_sym_GT_GT] = ACTIONS(6794), + [anon_sym___extension__] = ACTIONS(6796), + [anon_sym___attribute__] = ACTIONS(6796), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6796), + [anon_sym_volatile] = ACTIONS(6796), + [anon_sym_restrict] = ACTIONS(6796), + [anon_sym___restrict__] = ACTIONS(6796), + [anon_sym__Atomic] = ACTIONS(6796), + [anon_sym__Noreturn] = ACTIONS(6796), + [anon_sym_noreturn] = ACTIONS(6796), + [anon_sym__Nonnull] = ACTIONS(6796), + [anon_sym_mutable] = ACTIONS(6796), + [anon_sym_constinit] = ACTIONS(6796), + [anon_sym_consteval] = ACTIONS(6796), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_STAR_EQ] = ACTIONS(6796), + [anon_sym_SLASH_EQ] = ACTIONS(6796), + [anon_sym_PERCENT_EQ] = ACTIONS(6796), + [anon_sym_PLUS_EQ] = ACTIONS(6796), + [anon_sym_DASH_EQ] = ACTIONS(6796), + [anon_sym_LT_LT_EQ] = ACTIONS(6796), + [anon_sym_GT_GT_EQ] = ACTIONS(6796), + [anon_sym_AMP_EQ] = ACTIONS(6796), + [anon_sym_CARET_EQ] = ACTIONS(6796), + [anon_sym_PIPE_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6796), + [anon_sym_and] = ACTIONS(6796), + [anon_sym_bitor] = ACTIONS(6796), + [anon_sym_xor] = ACTIONS(6796), + [anon_sym_bitand] = ACTIONS(6796), + [anon_sym_not_eq] = ACTIONS(6796), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6796), + [anon_sym___asm__] = ACTIONS(6796), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6794), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6796), + [anon_sym_override] = ACTIONS(6796), + [anon_sym_noexcept] = ACTIONS(6796), + [anon_sym_throw] = ACTIONS(6796), + [anon_sym_requires] = ACTIONS(6796), + [anon_sym_DASH_GT_STAR] = ACTIONS(6796), + }, + [STATE(2530)] = { + [sym_template_argument_list] = STATE(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_RBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + }, + [STATE(2531)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_RPAREN] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6806), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6806), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6806), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6806), + [anon_sym_GT_GT] = ACTIONS(6806), + [anon_sym___extension__] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), + [sym_ms_signed_ptr_modifier] = ACTIONS(6808), + [anon_sym__unaligned] = ACTIONS(6808), + [anon_sym___unaligned] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(6806), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6808), + [anon_sym_volatile] = ACTIONS(6808), + [anon_sym_restrict] = ACTIONS(6808), + [anon_sym___restrict__] = ACTIONS(6808), + [anon_sym__Atomic] = ACTIONS(6808), + [anon_sym__Noreturn] = ACTIONS(6808), + [anon_sym_noreturn] = ACTIONS(6808), + [anon_sym__Nonnull] = ACTIONS(6808), + [anon_sym_mutable] = ACTIONS(6808), + [anon_sym_constinit] = ACTIONS(6808), + [anon_sym_consteval] = ACTIONS(6808), + [anon_sym_alignas] = ACTIONS(6808), + [anon_sym__Alignas] = ACTIONS(6808), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_STAR_EQ] = ACTIONS(6808), + [anon_sym_SLASH_EQ] = ACTIONS(6808), + [anon_sym_PERCENT_EQ] = ACTIONS(6808), + [anon_sym_PLUS_EQ] = ACTIONS(6808), + [anon_sym_DASH_EQ] = ACTIONS(6808), + [anon_sym_LT_LT_EQ] = ACTIONS(6808), + [anon_sym_GT_GT_EQ] = ACTIONS(6808), + [anon_sym_AMP_EQ] = ACTIONS(6808), + [anon_sym_CARET_EQ] = ACTIONS(6808), + [anon_sym_PIPE_EQ] = ACTIONS(6808), + [anon_sym_and_eq] = ACTIONS(6808), + [anon_sym_or_eq] = ACTIONS(6808), + [anon_sym_xor_eq] = ACTIONS(6808), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6806), + [anon_sym_and] = ACTIONS(6806), + [anon_sym_bitor] = ACTIONS(6808), + [anon_sym_xor] = ACTIONS(6806), + [anon_sym_bitand] = ACTIONS(6808), + [anon_sym_not_eq] = ACTIONS(6808), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6806), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6808), + [anon_sym_override] = ACTIONS(6808), + [anon_sym_requires] = ACTIONS(6808), + [anon_sym_DASH_GT_STAR] = ACTIONS(6808), + }, + [STATE(2532)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym_ref_qualifier] = STATE(2565), + [sym__function_exception_specification] = STATE(3171), + [sym__function_attributes_end] = STATE(4507), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4602), + [sym_noexcept] = STATE(3171), + [sym_throw_specifier] = STATE(3171), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8158), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(8161), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2533)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_and_eq] = ACTIONS(2768), + [anon_sym_or_eq] = ACTIONS(2768), + [anon_sym_xor_eq] = ACTIONS(2768), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + }, + [STATE(2534)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7185), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7185), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7185), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7185), + [anon_sym_GT_GT] = ACTIONS(7185), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_STAR_EQ] = ACTIONS(7183), + [anon_sym_SLASH_EQ] = ACTIONS(7183), + [anon_sym_PERCENT_EQ] = ACTIONS(7183), + [anon_sym_PLUS_EQ] = ACTIONS(7183), + [anon_sym_DASH_EQ] = ACTIONS(7183), + [anon_sym_LT_LT_EQ] = ACTIONS(7183), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7183), + [anon_sym_CARET_EQ] = ACTIONS(7183), + [anon_sym_PIPE_EQ] = ACTIONS(7183), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7185), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_DASH_GT_STAR] = ACTIONS(7183), + }, + [STATE(2535)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [anon_sym_RPAREN] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7395), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7395), + [anon_sym_GT_GT] = ACTIONS(7395), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7397), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7395), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_STAR_EQ] = ACTIONS(7397), + [anon_sym_SLASH_EQ] = ACTIONS(7397), + [anon_sym_PERCENT_EQ] = ACTIONS(7397), + [anon_sym_PLUS_EQ] = ACTIONS(7397), + [anon_sym_DASH_EQ] = ACTIONS(7397), + [anon_sym_LT_LT_EQ] = ACTIONS(7397), + [anon_sym_GT_GT_EQ] = ACTIONS(7397), + [anon_sym_AMP_EQ] = ACTIONS(7397), + [anon_sym_CARET_EQ] = ACTIONS(7397), + [anon_sym_PIPE_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7395), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + [anon_sym_DASH_GT_STAR] = ACTIONS(7397), + }, + [STATE(2536)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2835), + [sym_ms_pointer_modifier] = STATE(2536), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), + [anon_sym_COMMA] = ACTIONS(6602), + [anon_sym_RPAREN] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6600), + [anon_sym_STAR] = ACTIONS(6600), + [anon_sym_SLASH] = ACTIONS(6600), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6602), + [anon_sym_AMP_AMP] = ACTIONS(6602), + [anon_sym_PIPE] = ACTIONS(6600), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(6600), + [anon_sym_EQ_EQ] = ACTIONS(6602), + [anon_sym_BANG_EQ] = ACTIONS(6602), + [anon_sym_GT] = ACTIONS(6600), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6600), + [anon_sym_LT] = ACTIONS(6600), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(6602), + [sym_ms_restrict_modifier] = ACTIONS(8180), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8183), + [sym_ms_signed_ptr_modifier] = ACTIONS(8183), + [anon_sym__unaligned] = ACTIONS(8186), + [anon_sym___unaligned] = ACTIONS(8186), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(6600), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6602), + [anon_sym_STAR_EQ] = ACTIONS(6602), + [anon_sym_SLASH_EQ] = ACTIONS(6602), + [anon_sym_PERCENT_EQ] = ACTIONS(6602), + [anon_sym_PLUS_EQ] = ACTIONS(6602), + [anon_sym_DASH_EQ] = ACTIONS(6602), + [anon_sym_LT_LT_EQ] = ACTIONS(6602), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6602), + [anon_sym_CARET_EQ] = ACTIONS(6602), + [anon_sym_PIPE_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6600), + [anon_sym_DOT_STAR] = ACTIONS(6602), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6602), + }, + [STATE(2537)] = { + [sym_attribute_specifier] = STATE(3416), + [sym_field_declaration_list] = STATE(2852), + [sym_virtual_specifier] = STATE(9450), + [sym_base_class_clause] = STATE(10173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_RPAREN] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6828), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_COLON] = ACTIONS(7817), + [anon_sym_LBRACE] = ACTIONS(8193), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6828), + [anon_sym_volatile] = ACTIONS(6828), + [anon_sym_restrict] = ACTIONS(6828), + [anon_sym___restrict__] = ACTIONS(6828), + [anon_sym__Atomic] = ACTIONS(6828), + [anon_sym__Noreturn] = ACTIONS(6828), + [anon_sym_noreturn] = ACTIONS(6828), + [anon_sym__Nonnull] = ACTIONS(6828), + [anon_sym_mutable] = ACTIONS(6828), + [anon_sym_constinit] = ACTIONS(6828), + [anon_sym_consteval] = ACTIONS(6828), + [anon_sym_alignas] = ACTIONS(6828), + [anon_sym__Alignas] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_STAR_EQ] = ACTIONS(6828), + [anon_sym_SLASH_EQ] = ACTIONS(6828), + [anon_sym_PERCENT_EQ] = ACTIONS(6828), + [anon_sym_PLUS_EQ] = ACTIONS(6828), + [anon_sym_DASH_EQ] = ACTIONS(6828), + [anon_sym_LT_LT_EQ] = ACTIONS(6828), + [anon_sym_GT_GT_EQ] = ACTIONS(6828), + [anon_sym_AMP_EQ] = ACTIONS(6828), + [anon_sym_CARET_EQ] = ACTIONS(6828), + [anon_sym_PIPE_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6828), + [anon_sym_and] = ACTIONS(6828), + [anon_sym_bitor] = ACTIONS(6828), + [anon_sym_xor] = ACTIONS(6828), + [anon_sym_bitand] = ACTIONS(6828), + [anon_sym_not_eq] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6826), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7821), + [anon_sym_override] = ACTIONS(7821), + [anon_sym_requires] = ACTIONS(6828), + [anon_sym_DASH_GT_STAR] = ACTIONS(6828), + }, + [STATE(2538)] = { + [sym_template_argument_list] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(7031), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(7031), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7031), + [anon_sym___extension__] = ACTIONS(5272), + [anon_sym___attribute__] = ACTIONS(5272), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(5272), + [anon_sym_volatile] = ACTIONS(5272), + [anon_sym_restrict] = ACTIONS(5272), + [anon_sym___restrict__] = ACTIONS(5272), + [anon_sym__Atomic] = ACTIONS(5272), + [anon_sym__Noreturn] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym__Nonnull] = ACTIONS(5272), + [anon_sym_mutable] = ACTIONS(5272), + [anon_sym_constinit] = ACTIONS(5272), + [anon_sym_consteval] = ACTIONS(5272), + [anon_sym_alignas] = ACTIONS(5272), + [anon_sym__Alignas] = 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(7031), + [anon_sym_AMP_EQ] = ACTIONS(5272), + [anon_sym_CARET_EQ] = ACTIONS(5272), + [anon_sym_PIPE_EQ] = ACTIONS(5272), + [anon_sym_and_eq] = ACTIONS(5272), + [anon_sym_or_eq] = ACTIONS(5272), + [anon_sym_xor_eq] = ACTIONS(5272), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_bitor] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(7031), + [anon_sym_bitand] = ACTIONS(5272), + [anon_sym_not_eq] = ACTIONS(5272), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_GT2] = ACTIONS(5272), + [anon_sym_requires] = ACTIONS(5272), + }, + [STATE(2539)] = { + [sym__abstract_declarator] = STATE(5767), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6495), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6495), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6495), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(6495), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_STAR_EQ] = ACTIONS(6497), + [anon_sym_SLASH_EQ] = ACTIONS(6497), + [anon_sym_PERCENT_EQ] = ACTIONS(6497), + [anon_sym_PLUS_EQ] = ACTIONS(6497), + [anon_sym_DASH_EQ] = ACTIONS(6497), + [anon_sym_LT_LT_EQ] = ACTIONS(6497), + [anon_sym_GT_GT_EQ] = ACTIONS(6497), + [anon_sym_AMP_EQ] = ACTIONS(6497), + [anon_sym_CARET_EQ] = ACTIONS(6497), + [anon_sym_PIPE_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6495), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + }, + [STATE(2540)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(2541), + [sym__declarator] = STATE(8686), + [sym__abstract_declarator] = STATE(8831), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3570), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4820), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3570), + [aux_sym_pointer_declarator_repeat1] = STATE(2541), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_AMP_AMP] = ACTIONS(8199), + [anon_sym_AMP] = ACTIONS(8201), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6457), + [anon_sym___attribute] = ACTIONS(6457), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(6459), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6459), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2541)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(6287), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8832), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3571), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4820), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3571), + [aux_sym_pointer_declarator_repeat1] = STATE(6287), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_AMP_AMP] = ACTIONS(8199), + [anon_sym_AMP] = ACTIONS(8201), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(6497), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2542)] = { + [sym__abstract_declarator] = STATE(5800), + [sym_abstract_parenthesized_declarator] = STATE(5581), + [sym_abstract_pointer_declarator] = STATE(5581), + [sym_abstract_function_declarator] = STATE(5581), + [sym_abstract_array_declarator] = STATE(5581), + [sym_type_qualifier] = STATE(2277), + [sym_alignas_qualifier] = STATE(2432), + [sym_parameter_list] = STATE(1888), + [sym_abstract_reference_declarator] = STATE(5581), + [sym__function_declarator_seq] = STATE(5582), + [aux_sym__type_definition_type_repeat1] = STATE(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(7319), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7009), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(7321), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7009), + [anon_sym_AMP] = ACTIONS(7323), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7009), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_EQ] = ACTIONS(7009), + [anon_sym_const] = ACTIONS(6945), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6947), + [anon_sym__Alignas] = ACTIONS(6947), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_STAR_EQ] = ACTIONS(7007), + [anon_sym_SLASH_EQ] = ACTIONS(7007), + [anon_sym_PERCENT_EQ] = ACTIONS(7007), + [anon_sym_PLUS_EQ] = ACTIONS(7007), + [anon_sym_DASH_EQ] = ACTIONS(7007), + [anon_sym_LT_LT_EQ] = ACTIONS(7007), + [anon_sym_GT_GT_EQ] = ACTIONS(7007), + [anon_sym_AMP_EQ] = ACTIONS(7007), + [anon_sym_CARET_EQ] = ACTIONS(7007), + [anon_sym_PIPE_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7009), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + }, + [STATE(2543)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_enumerator_list] = STATE(2581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_RPAREN] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7011), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7011), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7011), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7011), + [anon_sym_GT_GT] = ACTIONS(7011), + [anon_sym___extension__] = ACTIONS(7013), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7992), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_EQ] = ACTIONS(7011), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7013), + [anon_sym_volatile] = ACTIONS(7013), + [anon_sym_restrict] = ACTIONS(7013), + [anon_sym___restrict__] = ACTIONS(7013), + [anon_sym__Atomic] = ACTIONS(7013), + [anon_sym__Noreturn] = ACTIONS(7013), + [anon_sym_noreturn] = ACTIONS(7013), + [anon_sym__Nonnull] = ACTIONS(7013), + [anon_sym_mutable] = ACTIONS(7013), + [anon_sym_constinit] = ACTIONS(7013), + [anon_sym_consteval] = ACTIONS(7013), + [anon_sym_alignas] = ACTIONS(7013), + [anon_sym__Alignas] = ACTIONS(7013), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_STAR_EQ] = ACTIONS(7013), + [anon_sym_SLASH_EQ] = ACTIONS(7013), + [anon_sym_PERCENT_EQ] = ACTIONS(7013), + [anon_sym_PLUS_EQ] = ACTIONS(7013), + [anon_sym_DASH_EQ] = ACTIONS(7013), + [anon_sym_LT_LT_EQ] = ACTIONS(7013), + [anon_sym_GT_GT_EQ] = ACTIONS(7013), + [anon_sym_AMP_EQ] = ACTIONS(7013), + [anon_sym_CARET_EQ] = ACTIONS(7013), + [anon_sym_PIPE_EQ] = ACTIONS(7013), + [anon_sym_and_eq] = ACTIONS(7013), + [anon_sym_or_eq] = ACTIONS(7013), + [anon_sym_xor_eq] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7011), + [anon_sym_and] = ACTIONS(7011), + [anon_sym_bitor] = ACTIONS(7013), + [anon_sym_xor] = ACTIONS(7011), + [anon_sym_bitand] = ACTIONS(7013), + [anon_sym_not_eq] = ACTIONS(7013), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7011), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7013), + [anon_sym_override] = ACTIONS(7013), + [anon_sym_requires] = ACTIONS(7013), + [anon_sym_DASH_GT_STAR] = ACTIONS(7013), + }, + [STATE(2544)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_RPAREN] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6900), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6900), + [anon_sym_GT_GT] = ACTIONS(6900), + [anon_sym___extension__] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), + [sym_ms_signed_ptr_modifier] = ACTIONS(6902), + [anon_sym__unaligned] = ACTIONS(6902), + [anon_sym___unaligned] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6900), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6902), + [anon_sym_volatile] = ACTIONS(6902), + [anon_sym_restrict] = ACTIONS(6902), + [anon_sym___restrict__] = ACTIONS(6902), + [anon_sym__Atomic] = ACTIONS(6902), + [anon_sym__Noreturn] = ACTIONS(6902), + [anon_sym_noreturn] = ACTIONS(6902), + [anon_sym__Nonnull] = ACTIONS(6902), + [anon_sym_mutable] = ACTIONS(6902), + [anon_sym_constinit] = ACTIONS(6902), + [anon_sym_consteval] = ACTIONS(6902), + [anon_sym_alignas] = ACTIONS(6902), + [anon_sym__Alignas] = ACTIONS(6902), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_STAR_EQ] = ACTIONS(6902), + [anon_sym_SLASH_EQ] = ACTIONS(6902), + [anon_sym_PERCENT_EQ] = ACTIONS(6902), + [anon_sym_PLUS_EQ] = ACTIONS(6902), + [anon_sym_DASH_EQ] = ACTIONS(6902), + [anon_sym_LT_LT_EQ] = ACTIONS(6902), + [anon_sym_GT_GT_EQ] = ACTIONS(6902), + [anon_sym_AMP_EQ] = ACTIONS(6902), + [anon_sym_CARET_EQ] = ACTIONS(6902), + [anon_sym_PIPE_EQ] = ACTIONS(6902), + [anon_sym_and_eq] = ACTIONS(6902), + [anon_sym_or_eq] = ACTIONS(6902), + [anon_sym_xor_eq] = ACTIONS(6902), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6900), + [anon_sym_and] = ACTIONS(6900), + [anon_sym_bitor] = ACTIONS(6902), + [anon_sym_xor] = ACTIONS(6900), + [anon_sym_bitand] = ACTIONS(6902), + [anon_sym_not_eq] = ACTIONS(6902), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6900), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6902), + [anon_sym_override] = ACTIONS(6902), + [anon_sym_requires] = ACTIONS(6902), + [anon_sym_DASH_GT_STAR] = ACTIONS(6902), + }, + [STATE(2545)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6786), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6786), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6786), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6786), + [anon_sym_GT_GT] = ACTIONS(6786), + [anon_sym___extension__] = ACTIONS(6788), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_EQ] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6788), + [anon_sym_volatile] = ACTIONS(6788), + [anon_sym_restrict] = ACTIONS(6788), + [anon_sym___restrict__] = ACTIONS(6788), + [anon_sym__Atomic] = ACTIONS(6788), + [anon_sym__Noreturn] = ACTIONS(6788), + [anon_sym_noreturn] = ACTIONS(6788), + [anon_sym__Nonnull] = ACTIONS(6788), + [anon_sym_mutable] = ACTIONS(6788), + [anon_sym_constinit] = ACTIONS(6788), + [anon_sym_consteval] = ACTIONS(6788), + [anon_sym_alignas] = ACTIONS(6788), + [anon_sym__Alignas] = ACTIONS(6788), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_STAR_EQ] = ACTIONS(6788), + [anon_sym_SLASH_EQ] = ACTIONS(6788), + [anon_sym_PERCENT_EQ] = ACTIONS(6788), + [anon_sym_PLUS_EQ] = ACTIONS(6788), + [anon_sym_DASH_EQ] = ACTIONS(6788), + [anon_sym_LT_LT_EQ] = ACTIONS(6788), + [anon_sym_GT_GT_EQ] = ACTIONS(6788), + [anon_sym_AMP_EQ] = ACTIONS(6788), + [anon_sym_CARET_EQ] = ACTIONS(6788), + [anon_sym_PIPE_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6788), + [anon_sym_and] = ACTIONS(6788), + [anon_sym_bitor] = ACTIONS(6788), + [anon_sym_xor] = ACTIONS(6788), + [anon_sym_bitand] = ACTIONS(6788), + [anon_sym_not_eq] = ACTIONS(6788), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6788), + [anon_sym___asm__] = ACTIONS(6788), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6786), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6788), + [anon_sym_override] = ACTIONS(6788), + [anon_sym_noexcept] = ACTIONS(6788), + [anon_sym_throw] = ACTIONS(6788), + [anon_sym_requires] = ACTIONS(6788), + [anon_sym_DASH_GT_STAR] = ACTIONS(6788), + }, + [STATE(2546)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_RPAREN] = ACTIONS(6629), + [aux_sym_preproc_if_token2] = ACTIONS(6629), + [aux_sym_preproc_else_token1] = ACTIONS(6629), + [aux_sym_preproc_elif_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6629), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6629), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6629), + [anon_sym_GT_GT] = ACTIONS(6629), + [anon_sym_SEMI] = ACTIONS(6629), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6629), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_RBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(8205), + [anon_sym_unsigned] = ACTIONS(8205), + [anon_sym_long] = ACTIONS(8205), + [anon_sym_short] = ACTIONS(8205), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + [anon_sym_COLON_RBRACK] = ACTIONS(6629), + }, + [STATE(2547)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(7389), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(8135), + [anon_sym_unsigned] = ACTIONS(8135), + [anon_sym_long] = ACTIONS(8135), + [anon_sym_short] = ACTIONS(8135), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7389), + [anon_sym_and] = ACTIONS(7389), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7389), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7387), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + }, + [STATE(2548)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2549)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6949), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6949), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_and_eq] = ACTIONS(6951), + [anon_sym_or_eq] = ACTIONS(6951), + [anon_sym_xor_eq] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + }, + [STATE(2550)] = { + [sym_identifier] = ACTIONS(6720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), + [anon_sym_COMMA] = ACTIONS(6722), + [anon_sym_RPAREN] = ACTIONS(6722), + [aux_sym_preproc_if_token2] = ACTIONS(6722), + [aux_sym_preproc_else_token1] = ACTIONS(6722), + [aux_sym_preproc_elif_token1] = ACTIONS(6720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6722), + [anon_sym_LPAREN2] = ACTIONS(6722), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_PLUS] = ACTIONS(6720), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6722), + [anon_sym_PIPE_PIPE] = ACTIONS(6722), + [anon_sym_AMP_AMP] = ACTIONS(6722), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_CARET] = ACTIONS(6722), + [anon_sym_AMP] = ACTIONS(6720), + [anon_sym_EQ_EQ] = ACTIONS(6722), + [anon_sym_BANG_EQ] = ACTIONS(6722), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_EQ] = ACTIONS(6722), + [anon_sym_LT_EQ] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_LT_LT] = ACTIONS(6722), + [anon_sym_GT_GT] = ACTIONS(6722), + [anon_sym_SEMI] = ACTIONS(6722), + [anon_sym___extension__] = ACTIONS(6720), + [anon_sym___attribute__] = ACTIONS(6720), + [anon_sym___attribute] = ACTIONS(6720), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6722), + [anon_sym_RBRACE] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(6720), + [anon_sym_const] = ACTIONS(6720), + [anon_sym_constexpr] = ACTIONS(6720), + [anon_sym_volatile] = ACTIONS(6720), + [anon_sym_restrict] = ACTIONS(6720), + [anon_sym___restrict__] = ACTIONS(6720), + [anon_sym__Atomic] = ACTIONS(6720), + [anon_sym__Noreturn] = ACTIONS(6720), + [anon_sym_noreturn] = ACTIONS(6720), + [anon_sym__Nonnull] = ACTIONS(6720), + [anon_sym_mutable] = ACTIONS(6720), + [anon_sym_constinit] = ACTIONS(6720), + [anon_sym_consteval] = ACTIONS(6720), + [anon_sym_alignas] = ACTIONS(6720), + [anon_sym__Alignas] = ACTIONS(6720), + [anon_sym_QMARK] = ACTIONS(6722), + [anon_sym_LT_EQ_GT] = ACTIONS(6722), + [anon_sym_or] = ACTIONS(6720), + [anon_sym_and] = ACTIONS(6720), + [anon_sym_bitor] = ACTIONS(6720), + [anon_sym_xor] = ACTIONS(6720), + [anon_sym_bitand] = ACTIONS(6720), + [anon_sym_not_eq] = ACTIONS(6720), + [anon_sym_DASH_DASH] = ACTIONS(6722), + [anon_sym_PLUS_PLUS] = ACTIONS(6722), + [anon_sym_asm] = ACTIONS(6720), + [anon_sym___asm__] = ACTIONS(6720), + [anon_sym___asm] = ACTIONS(6720), + [anon_sym_DOT] = ACTIONS(6720), + [anon_sym_DOT_STAR] = ACTIONS(6722), + [anon_sym_DASH_GT] = ACTIONS(6722), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6720), + [anon_sym_override] = ACTIONS(6720), + [anon_sym_noexcept] = ACTIONS(6720), + [anon_sym_throw] = ACTIONS(6720), + [anon_sym_requires] = ACTIONS(6720), + [anon_sym_COLON_RBRACK] = ACTIONS(6722), + }, + [STATE(2551)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [aux_sym_preproc_else_token1] = ACTIONS(2795), + [aux_sym_preproc_elif_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + }, + [STATE(2552)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6270), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6270), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6270), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6270), + [anon_sym_GT_GT] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6272), + [anon_sym___attribute__] = ACTIONS(6272), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6272), + [anon_sym_volatile] = ACTIONS(6272), + [anon_sym_restrict] = ACTIONS(6272), + [anon_sym___restrict__] = ACTIONS(6272), + [anon_sym__Atomic] = ACTIONS(6272), + [anon_sym__Noreturn] = ACTIONS(6272), + [anon_sym_noreturn] = ACTIONS(6272), + [anon_sym__Nonnull] = ACTIONS(6272), + [anon_sym_mutable] = ACTIONS(6272), + [anon_sym_constinit] = ACTIONS(6272), + [anon_sym_consteval] = ACTIONS(6272), + [anon_sym_alignas] = ACTIONS(6272), + [anon_sym__Alignas] = ACTIONS(6272), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_STAR_EQ] = ACTIONS(6272), + [anon_sym_SLASH_EQ] = ACTIONS(6272), + [anon_sym_PERCENT_EQ] = ACTIONS(6272), + [anon_sym_PLUS_EQ] = ACTIONS(6272), + [anon_sym_DASH_EQ] = ACTIONS(6272), + [anon_sym_LT_LT_EQ] = ACTIONS(6272), + [anon_sym_GT_GT_EQ] = ACTIONS(6272), + [anon_sym_AMP_EQ] = ACTIONS(6272), + [anon_sym_CARET_EQ] = ACTIONS(6272), + [anon_sym_PIPE_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6272), + [anon_sym_and] = ACTIONS(6272), + [anon_sym_bitor] = ACTIONS(6272), + [anon_sym_xor] = ACTIONS(6272), + [anon_sym_bitand] = ACTIONS(6272), + [anon_sym_not_eq] = ACTIONS(6272), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6272), + [anon_sym_decltype] = ACTIONS(6272), + [anon_sym_final] = ACTIONS(6272), + [anon_sym_override] = ACTIONS(6272), + [anon_sym_requires] = ACTIONS(6272), + [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + }, + [STATE(2553)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6244), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6244), + [anon_sym_volatile] = ACTIONS(6244), + [anon_sym_restrict] = ACTIONS(6244), + [anon_sym___restrict__] = ACTIONS(6244), + [anon_sym__Atomic] = ACTIONS(6244), + [anon_sym__Noreturn] = ACTIONS(6244), + [anon_sym_noreturn] = ACTIONS(6244), + [anon_sym__Nonnull] = ACTIONS(6244), + [anon_sym_mutable] = ACTIONS(6244), + [anon_sym_constinit] = ACTIONS(6244), + [anon_sym_consteval] = ACTIONS(6244), + [anon_sym_alignas] = ACTIONS(6244), + [anon_sym__Alignas] = ACTIONS(6244), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6244), + [anon_sym_and] = ACTIONS(6244), + [anon_sym_bitor] = ACTIONS(6244), + [anon_sym_xor] = ACTIONS(6244), + [anon_sym_bitand] = ACTIONS(6244), + [anon_sym_not_eq] = ACTIONS(6244), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6244), + [anon_sym_decltype] = ACTIONS(6244), + [anon_sym_final] = ACTIONS(6244), + [anon_sym_override] = ACTIONS(6244), + [anon_sym_requires] = ACTIONS(6244), + [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + }, + [STATE(2554)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6246), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6246), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6246), + [anon_sym_GT_GT] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6248), + [anon_sym___attribute__] = ACTIONS(6248), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6248), + [anon_sym_volatile] = ACTIONS(6248), + [anon_sym_restrict] = ACTIONS(6248), + [anon_sym___restrict__] = ACTIONS(6248), + [anon_sym__Atomic] = ACTIONS(6248), + [anon_sym__Noreturn] = ACTIONS(6248), + [anon_sym_noreturn] = ACTIONS(6248), + [anon_sym__Nonnull] = ACTIONS(6248), + [anon_sym_mutable] = ACTIONS(6248), + [anon_sym_constinit] = ACTIONS(6248), + [anon_sym_consteval] = ACTIONS(6248), + [anon_sym_alignas] = ACTIONS(6248), + [anon_sym__Alignas] = ACTIONS(6248), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_STAR_EQ] = ACTIONS(6248), + [anon_sym_SLASH_EQ] = ACTIONS(6248), + [anon_sym_PERCENT_EQ] = ACTIONS(6248), + [anon_sym_PLUS_EQ] = ACTIONS(6248), + [anon_sym_DASH_EQ] = ACTIONS(6248), + [anon_sym_LT_LT_EQ] = ACTIONS(6248), + [anon_sym_GT_GT_EQ] = ACTIONS(6248), + [anon_sym_AMP_EQ] = ACTIONS(6248), + [anon_sym_CARET_EQ] = ACTIONS(6248), + [anon_sym_PIPE_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6248), + [anon_sym_and] = ACTIONS(6248), + [anon_sym_bitor] = ACTIONS(6248), + [anon_sym_xor] = ACTIONS(6248), + [anon_sym_bitand] = ACTIONS(6248), + [anon_sym_not_eq] = ACTIONS(6248), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6248), + [anon_sym_decltype] = ACTIONS(6248), + [anon_sym_final] = ACTIONS(6248), + [anon_sym_override] = ACTIONS(6248), + [anon_sym_requires] = ACTIONS(6248), + [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + }, + [STATE(2555)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6250), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6250), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6250), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6250), + [anon_sym_GT_GT] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6252), + [anon_sym___attribute__] = ACTIONS(6252), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6252), + [anon_sym_volatile] = ACTIONS(6252), + [anon_sym_restrict] = ACTIONS(6252), + [anon_sym___restrict__] = ACTIONS(6252), + [anon_sym__Atomic] = ACTIONS(6252), + [anon_sym__Noreturn] = ACTIONS(6252), + [anon_sym_noreturn] = ACTIONS(6252), + [anon_sym__Nonnull] = ACTIONS(6252), + [anon_sym_mutable] = ACTIONS(6252), + [anon_sym_constinit] = ACTIONS(6252), + [anon_sym_consteval] = ACTIONS(6252), + [anon_sym_alignas] = ACTIONS(6252), + [anon_sym__Alignas] = ACTIONS(6252), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_STAR_EQ] = ACTIONS(6252), + [anon_sym_SLASH_EQ] = ACTIONS(6252), + [anon_sym_PERCENT_EQ] = ACTIONS(6252), + [anon_sym_PLUS_EQ] = ACTIONS(6252), + [anon_sym_DASH_EQ] = ACTIONS(6252), + [anon_sym_LT_LT_EQ] = ACTIONS(6252), + [anon_sym_GT_GT_EQ] = ACTIONS(6252), + [anon_sym_AMP_EQ] = ACTIONS(6252), + [anon_sym_CARET_EQ] = ACTIONS(6252), + [anon_sym_PIPE_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6252), + [anon_sym_and] = ACTIONS(6252), + [anon_sym_bitor] = ACTIONS(6252), + [anon_sym_xor] = ACTIONS(6252), + [anon_sym_bitand] = ACTIONS(6252), + [anon_sym_not_eq] = ACTIONS(6252), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6252), + [anon_sym_decltype] = ACTIONS(6252), + [anon_sym_final] = ACTIONS(6252), + [anon_sym_override] = ACTIONS(6252), + [anon_sym_requires] = ACTIONS(6252), + [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + }, + [STATE(2556)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6254), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6254), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6254), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6254), + [anon_sym_GT_GT] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6256), + [anon_sym___attribute__] = ACTIONS(6256), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6256), + [anon_sym_volatile] = ACTIONS(6256), + [anon_sym_restrict] = ACTIONS(6256), + [anon_sym___restrict__] = ACTIONS(6256), + [anon_sym__Atomic] = ACTIONS(6256), + [anon_sym__Noreturn] = ACTIONS(6256), + [anon_sym_noreturn] = ACTIONS(6256), + [anon_sym__Nonnull] = ACTIONS(6256), + [anon_sym_mutable] = ACTIONS(6256), + [anon_sym_constinit] = ACTIONS(6256), + [anon_sym_consteval] = ACTIONS(6256), + [anon_sym_alignas] = ACTIONS(6256), + [anon_sym__Alignas] = ACTIONS(6256), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_STAR_EQ] = ACTIONS(6256), + [anon_sym_SLASH_EQ] = ACTIONS(6256), + [anon_sym_PERCENT_EQ] = ACTIONS(6256), + [anon_sym_PLUS_EQ] = ACTIONS(6256), + [anon_sym_DASH_EQ] = ACTIONS(6256), + [anon_sym_LT_LT_EQ] = ACTIONS(6256), + [anon_sym_GT_GT_EQ] = ACTIONS(6256), + [anon_sym_AMP_EQ] = ACTIONS(6256), + [anon_sym_CARET_EQ] = ACTIONS(6256), + [anon_sym_PIPE_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6256), + [anon_sym_and] = ACTIONS(6256), + [anon_sym_bitor] = ACTIONS(6256), + [anon_sym_xor] = ACTIONS(6256), + [anon_sym_bitand] = ACTIONS(6256), + [anon_sym_not_eq] = ACTIONS(6256), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(6256), + [anon_sym_final] = ACTIONS(6256), + [anon_sym_override] = ACTIONS(6256), + [anon_sym_requires] = ACTIONS(6256), + [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + }, + [STATE(2557)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6258), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6258), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6258), + [anon_sym_GT_GT] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6260), + [anon_sym___attribute__] = ACTIONS(6260), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6260), + [anon_sym_volatile] = ACTIONS(6260), + [anon_sym_restrict] = ACTIONS(6260), + [anon_sym___restrict__] = ACTIONS(6260), + [anon_sym__Atomic] = ACTIONS(6260), + [anon_sym__Noreturn] = ACTIONS(6260), + [anon_sym_noreturn] = ACTIONS(6260), + [anon_sym__Nonnull] = ACTIONS(6260), + [anon_sym_mutable] = ACTIONS(6260), + [anon_sym_constinit] = ACTIONS(6260), + [anon_sym_consteval] = ACTIONS(6260), + [anon_sym_alignas] = ACTIONS(6260), + [anon_sym__Alignas] = ACTIONS(6260), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_STAR_EQ] = ACTIONS(6260), + [anon_sym_SLASH_EQ] = ACTIONS(6260), + [anon_sym_PERCENT_EQ] = ACTIONS(6260), + [anon_sym_PLUS_EQ] = ACTIONS(6260), + [anon_sym_DASH_EQ] = ACTIONS(6260), + [anon_sym_LT_LT_EQ] = ACTIONS(6260), + [anon_sym_GT_GT_EQ] = ACTIONS(6260), + [anon_sym_AMP_EQ] = ACTIONS(6260), + [anon_sym_CARET_EQ] = ACTIONS(6260), + [anon_sym_PIPE_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6260), + [anon_sym_and] = ACTIONS(6260), + [anon_sym_bitor] = ACTIONS(6260), + [anon_sym_xor] = ACTIONS(6260), + [anon_sym_bitand] = ACTIONS(6260), + [anon_sym_not_eq] = ACTIONS(6260), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6260), + [anon_sym_decltype] = ACTIONS(6260), + [anon_sym_final] = ACTIONS(6260), + [anon_sym_override] = ACTIONS(6260), + [anon_sym_requires] = ACTIONS(6260), + [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + }, + [STATE(2558)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6262), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6262), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6262), + [anon_sym_GT_GT] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6264), + [anon_sym___attribute__] = ACTIONS(6264), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_EQ] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6264), + [anon_sym_volatile] = ACTIONS(6264), + [anon_sym_restrict] = ACTIONS(6264), + [anon_sym___restrict__] = ACTIONS(6264), + [anon_sym__Atomic] = ACTIONS(6264), + [anon_sym__Noreturn] = ACTIONS(6264), + [anon_sym_noreturn] = ACTIONS(6264), + [anon_sym__Nonnull] = ACTIONS(6264), + [anon_sym_mutable] = ACTIONS(6264), + [anon_sym_constinit] = ACTIONS(6264), + [anon_sym_consteval] = ACTIONS(6264), + [anon_sym_alignas] = ACTIONS(6264), + [anon_sym__Alignas] = ACTIONS(6264), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_STAR_EQ] = ACTIONS(6264), + [anon_sym_SLASH_EQ] = ACTIONS(6264), + [anon_sym_PERCENT_EQ] = ACTIONS(6264), + [anon_sym_PLUS_EQ] = ACTIONS(6264), + [anon_sym_DASH_EQ] = ACTIONS(6264), + [anon_sym_LT_LT_EQ] = ACTIONS(6264), + [anon_sym_GT_GT_EQ] = ACTIONS(6264), + [anon_sym_AMP_EQ] = ACTIONS(6264), + [anon_sym_CARET_EQ] = ACTIONS(6264), + [anon_sym_PIPE_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6264), + [anon_sym_and] = ACTIONS(6264), + [anon_sym_bitor] = ACTIONS(6264), + [anon_sym_xor] = ACTIONS(6264), + [anon_sym_bitand] = ACTIONS(6264), + [anon_sym_not_eq] = ACTIONS(6264), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6264), + [anon_sym_decltype] = ACTIONS(6264), + [anon_sym_final] = ACTIONS(6264), + [anon_sym_override] = ACTIONS(6264), + [anon_sym_requires] = ACTIONS(6264), + [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + }, + [STATE(2559)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_noexcept] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_COLON_RBRACK] = ACTIONS(2758), + }, + [STATE(2560)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6718), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6718), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6718), + [anon_sym_GT_GT] = ACTIONS(6718), + [anon_sym_SEMI] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_asm] = ACTIONS(6716), + [anon_sym___asm__] = ACTIONS(6716), + [anon_sym___asm] = ACTIONS(6716), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_noexcept] = ACTIONS(6716), + [anon_sym_throw] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_COLON_RBRACK] = ACTIONS(6718), + }, + [STATE(2561)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6844), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym___extension__] = ACTIONS(6846), + [anon_sym___attribute__] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6846), + [anon_sym_volatile] = ACTIONS(6846), + [anon_sym_restrict] = ACTIONS(6846), + [anon_sym___restrict__] = ACTIONS(6846), + [anon_sym__Atomic] = ACTIONS(6846), + [anon_sym__Noreturn] = ACTIONS(6846), + [anon_sym_noreturn] = ACTIONS(6846), + [anon_sym__Nonnull] = ACTIONS(6846), + [anon_sym_mutable] = ACTIONS(6846), + [anon_sym_constinit] = ACTIONS(6846), + [anon_sym_consteval] = ACTIONS(6846), + [anon_sym_alignas] = ACTIONS(6846), + [anon_sym__Alignas] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6844), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_and_eq] = ACTIONS(6846), + [anon_sym_or_eq] = ACTIONS(6846), + [anon_sym_xor_eq] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6846), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6846), + [anon_sym_not_eq] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6846), + [anon_sym_override] = ACTIONS(6846), + [anon_sym_GT2] = ACTIONS(6846), + [anon_sym_requires] = ACTIONS(6846), + }, + [STATE(2562)] = { + [sym_attribute_specifier] = STATE(3019), + [sym_enumerator_list] = STATE(2658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6985), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6985), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6985), + [anon_sym_GT_GT] = ACTIONS(6985), + [anon_sym___extension__] = ACTIONS(6987), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_EQ] = ACTIONS(6985), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6987), + [anon_sym_volatile] = ACTIONS(6987), + [anon_sym_restrict] = ACTIONS(6987), + [anon_sym___restrict__] = ACTIONS(6987), + [anon_sym__Atomic] = ACTIONS(6987), + [anon_sym__Noreturn] = ACTIONS(6987), + [anon_sym_noreturn] = ACTIONS(6987), + [anon_sym__Nonnull] = ACTIONS(6987), + [anon_sym_mutable] = ACTIONS(6987), + [anon_sym_constinit] = ACTIONS(6987), + [anon_sym_consteval] = ACTIONS(6987), + [anon_sym_alignas] = ACTIONS(6987), + [anon_sym__Alignas] = ACTIONS(6987), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_STAR_EQ] = ACTIONS(6987), + [anon_sym_SLASH_EQ] = ACTIONS(6987), + [anon_sym_PERCENT_EQ] = ACTIONS(6987), + [anon_sym_PLUS_EQ] = ACTIONS(6987), + [anon_sym_DASH_EQ] = ACTIONS(6987), + [anon_sym_LT_LT_EQ] = ACTIONS(6987), + [anon_sym_GT_GT_EQ] = ACTIONS(6985), + [anon_sym_AMP_EQ] = ACTIONS(6987), + [anon_sym_CARET_EQ] = ACTIONS(6987), + [anon_sym_PIPE_EQ] = ACTIONS(6987), + [anon_sym_and_eq] = ACTIONS(6987), + [anon_sym_or_eq] = ACTIONS(6987), + [anon_sym_xor_eq] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6985), + [anon_sym_and] = ACTIONS(6985), + [anon_sym_bitor] = ACTIONS(6987), + [anon_sym_xor] = ACTIONS(6985), + [anon_sym_bitand] = ACTIONS(6987), + [anon_sym_not_eq] = ACTIONS(6987), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6987), + [anon_sym_override] = ACTIONS(6987), + [anon_sym_GT2] = ACTIONS(6987), + [anon_sym_requires] = ACTIONS(6987), + }, + [STATE(2563)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(8208), + [anon_sym___attribute] = ACTIONS(8208), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(2564)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_exception_specification] = STATE(3171), + [sym__function_attributes_end] = STATE(4507), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4602), + [sym_noexcept] = STATE(3171), + [sym_throw_specifier] = STATE(3171), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2565)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_exception_specification] = STATE(3233), + [sym__function_attributes_end] = STATE(4510), + [sym__function_postfix] = STATE(5590), + [sym_trailing_return_type] = STATE(4603), + [sym_noexcept] = STATE(3233), + [sym_throw_specifier] = STATE(3233), + [sym_requires_clause] = STATE(5590), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8210), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8213), + [anon_sym_override] = ACTIONS(8213), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(8216), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2566)] = { + [sym_argument_list] = STATE(5801), + [sym_initializer_list] = STATE(5650), + [aux_sym_sized_type_specifier_repeat1] = STATE(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_signed] = ACTIONS(8222), + [anon_sym_unsigned] = ACTIONS(8222), + [anon_sym_long] = ACTIONS(8222), + [anon_sym_short] = ACTIONS(8222), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + }, + [STATE(2567)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6746), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_GT2] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + }, + [STATE(2568)] = { + [sym_decltype_auto] = STATE(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8156), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2569)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6340), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2570)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6762), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym___extension__] = ACTIONS(6764), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6764), + [anon_sym_volatile] = ACTIONS(6764), + [anon_sym_restrict] = ACTIONS(6764), + [anon_sym___restrict__] = ACTIONS(6764), + [anon_sym__Atomic] = ACTIONS(6764), + [anon_sym__Noreturn] = ACTIONS(6764), + [anon_sym_noreturn] = ACTIONS(6764), + [anon_sym__Nonnull] = ACTIONS(6764), + [anon_sym_mutable] = ACTIONS(6764), + [anon_sym_constinit] = ACTIONS(6764), + [anon_sym_consteval] = ACTIONS(6764), + [anon_sym_alignas] = ACTIONS(6764), + [anon_sym__Alignas] = ACTIONS(6764), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6762), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_and_eq] = ACTIONS(6764), + [anon_sym_or_eq] = ACTIONS(6764), + [anon_sym_xor_eq] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6764), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6764), + [anon_sym_not_eq] = ACTIONS(6764), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6764), + [anon_sym_override] = ACTIONS(6764), + [anon_sym_GT2] = ACTIONS(6764), + [anon_sym_requires] = ACTIONS(6764), + }, + [STATE(2571)] = { + [sym_identifier] = ACTIONS(6794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), + [anon_sym_COMMA] = ACTIONS(6796), + [anon_sym_RPAREN] = ACTIONS(6796), + [aux_sym_preproc_if_token2] = ACTIONS(6796), + [aux_sym_preproc_else_token1] = ACTIONS(6796), + [aux_sym_preproc_elif_token1] = ACTIONS(6794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6796), + [anon_sym_LPAREN2] = ACTIONS(6796), + [anon_sym_DASH] = ACTIONS(6794), + [anon_sym_PLUS] = ACTIONS(6794), + [anon_sym_STAR] = ACTIONS(6796), + [anon_sym_SLASH] = ACTIONS(6794), + [anon_sym_PERCENT] = ACTIONS(6796), + [anon_sym_PIPE_PIPE] = ACTIONS(6796), + [anon_sym_AMP_AMP] = ACTIONS(6796), + [anon_sym_PIPE] = ACTIONS(6794), + [anon_sym_CARET] = ACTIONS(6796), + [anon_sym_AMP] = ACTIONS(6794), + [anon_sym_EQ_EQ] = ACTIONS(6796), + [anon_sym_BANG_EQ] = ACTIONS(6796), + [anon_sym_GT] = ACTIONS(6794), + [anon_sym_GT_EQ] = ACTIONS(6796), + [anon_sym_LT_EQ] = ACTIONS(6794), + [anon_sym_LT] = ACTIONS(6794), + [anon_sym_LT_LT] = ACTIONS(6796), + [anon_sym_GT_GT] = ACTIONS(6796), + [anon_sym_SEMI] = ACTIONS(6796), + [anon_sym___extension__] = ACTIONS(6794), + [anon_sym___attribute__] = ACTIONS(6794), + [anon_sym___attribute] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(6794), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6796), + [anon_sym_RBRACE] = ACTIONS(6796), + [anon_sym_LBRACK] = ACTIONS(6794), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6794), + [anon_sym_volatile] = ACTIONS(6794), + [anon_sym_restrict] = ACTIONS(6794), + [anon_sym___restrict__] = ACTIONS(6794), + [anon_sym__Atomic] = ACTIONS(6794), + [anon_sym__Noreturn] = ACTIONS(6794), + [anon_sym_noreturn] = ACTIONS(6794), + [anon_sym__Nonnull] = ACTIONS(6794), + [anon_sym_mutable] = ACTIONS(6794), + [anon_sym_constinit] = ACTIONS(6794), + [anon_sym_consteval] = ACTIONS(6794), + [anon_sym_alignas] = ACTIONS(6794), + [anon_sym__Alignas] = ACTIONS(6794), + [anon_sym_QMARK] = ACTIONS(6796), + [anon_sym_LT_EQ_GT] = ACTIONS(6796), + [anon_sym_or] = ACTIONS(6794), + [anon_sym_and] = ACTIONS(6794), + [anon_sym_bitor] = ACTIONS(6794), + [anon_sym_xor] = ACTIONS(6794), + [anon_sym_bitand] = ACTIONS(6794), + [anon_sym_not_eq] = ACTIONS(6794), + [anon_sym_DASH_DASH] = ACTIONS(6796), + [anon_sym_PLUS_PLUS] = ACTIONS(6796), + [anon_sym_asm] = ACTIONS(6794), + [anon_sym___asm__] = ACTIONS(6794), + [anon_sym___asm] = ACTIONS(6794), + [anon_sym_DOT] = ACTIONS(6794), + [anon_sym_DOT_STAR] = ACTIONS(6796), + [anon_sym_DASH_GT] = ACTIONS(6796), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6794), + [anon_sym_override] = ACTIONS(6794), + [anon_sym_noexcept] = ACTIONS(6794), + [anon_sym_throw] = ACTIONS(6794), + [anon_sym_requires] = ACTIONS(6794), + [anon_sym_COLON_RBRACK] = ACTIONS(6796), + }, + [STATE(2572)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(7426), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2573)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4192), + [sym_ms_pointer_modifier] = STATE(3909), + [sym__abstract_declarator] = STATE(6378), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3632), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3632), + [aux_sym_pointer_declarator_repeat1] = STATE(3909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(8232), + [sym_ms_restrict_modifier] = ACTIONS(8234), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), + [sym_ms_signed_ptr_modifier] = ACTIONS(8236), + [anon_sym__unaligned] = ACTIONS(8238), + [anon_sym___unaligned] = ACTIONS(8238), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2574)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4191), + [sym_ms_pointer_modifier] = STATE(3862), + [sym__abstract_declarator] = STATE(6327), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3643), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3643), + [aux_sym_pointer_declarator_repeat1] = STATE(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(8254), + [sym_ms_restrict_modifier] = ACTIONS(8256), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), + [sym_ms_signed_ptr_modifier] = ACTIONS(8258), + [anon_sym__unaligned] = ACTIONS(8260), + [anon_sym___unaligned] = ACTIONS(8260), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(2575)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4192), + [sym_ms_pointer_modifier] = STATE(2573), + [sym__abstract_declarator] = STATE(6376), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3630), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3630), + [aux_sym_pointer_declarator_repeat1] = STATE(2573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6457), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(8232), + [sym_ms_restrict_modifier] = ACTIONS(8234), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), + [sym_ms_signed_ptr_modifier] = ACTIONS(8236), + [anon_sym__unaligned] = ACTIONS(8238), + [anon_sym___unaligned] = ACTIONS(8238), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_GT2] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(2576)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4191), + [sym_ms_pointer_modifier] = STATE(2574), + [sym__abstract_declarator] = STATE(6325), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3641), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3641), + [aux_sym_pointer_declarator_repeat1] = STATE(2574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(8254), + [sym_ms_restrict_modifier] = ACTIONS(8256), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), + [sym_ms_signed_ptr_modifier] = ACTIONS(8258), + [anon_sym__unaligned] = ACTIONS(8260), + [anon_sym___unaligned] = ACTIONS(8260), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6459), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6459), + [anon_sym_override] = ACTIONS(6459), + [anon_sym_requires] = ACTIONS(6459), + }, + [STATE(2577)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7185), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7185), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7185), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7185), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7185), + [anon_sym_GT_GT] = ACTIONS(7185), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_STAR_EQ] = ACTIONS(7183), + [anon_sym_SLASH_EQ] = ACTIONS(7183), + [anon_sym_PERCENT_EQ] = ACTIONS(7183), + [anon_sym_PLUS_EQ] = ACTIONS(7183), + [anon_sym_DASH_EQ] = ACTIONS(7183), + [anon_sym_LT_LT_EQ] = ACTIONS(7183), + [anon_sym_GT_GT_EQ] = ACTIONS(7185), + [anon_sym_AMP_EQ] = ACTIONS(7183), + [anon_sym_CARET_EQ] = ACTIONS(7183), + [anon_sym_PIPE_EQ] = ACTIONS(7183), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_GT2] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + }, + [STATE(2578)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6900), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6900), + [anon_sym_GT_GT] = ACTIONS(6900), + [anon_sym___extension__] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), + [sym_ms_signed_ptr_modifier] = ACTIONS(6902), + [anon_sym__unaligned] = ACTIONS(6902), + [anon_sym___unaligned] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_RBRACK] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6900), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6902), + [anon_sym_volatile] = ACTIONS(6902), + [anon_sym_restrict] = ACTIONS(6902), + [anon_sym___restrict__] = ACTIONS(6902), + [anon_sym__Atomic] = ACTIONS(6902), + [anon_sym__Noreturn] = ACTIONS(6902), + [anon_sym_noreturn] = ACTIONS(6902), + [anon_sym__Nonnull] = ACTIONS(6902), + [anon_sym_mutable] = ACTIONS(6902), + [anon_sym_constinit] = ACTIONS(6902), + [anon_sym_consteval] = ACTIONS(6902), + [anon_sym_alignas] = ACTIONS(6902), + [anon_sym__Alignas] = ACTIONS(6902), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_STAR_EQ] = ACTIONS(6902), + [anon_sym_SLASH_EQ] = ACTIONS(6902), + [anon_sym_PERCENT_EQ] = ACTIONS(6902), + [anon_sym_PLUS_EQ] = ACTIONS(6902), + [anon_sym_DASH_EQ] = ACTIONS(6902), + [anon_sym_LT_LT_EQ] = ACTIONS(6902), + [anon_sym_GT_GT_EQ] = ACTIONS(6902), + [anon_sym_AMP_EQ] = ACTIONS(6902), + [anon_sym_CARET_EQ] = ACTIONS(6902), + [anon_sym_PIPE_EQ] = ACTIONS(6902), + [anon_sym_and_eq] = ACTIONS(6902), + [anon_sym_or_eq] = ACTIONS(6902), + [anon_sym_xor_eq] = ACTIONS(6902), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6900), + [anon_sym_and] = ACTIONS(6900), + [anon_sym_bitor] = ACTIONS(6902), + [anon_sym_xor] = ACTIONS(6900), + [anon_sym_bitand] = ACTIONS(6902), + [anon_sym_not_eq] = ACTIONS(6902), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6902), + [anon_sym_override] = ACTIONS(6902), + [anon_sym_requires] = ACTIONS(6902), + }, + [STATE(2579)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6806), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6806), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6806), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6806), + [anon_sym_GT_GT] = ACTIONS(6806), + [anon_sym___extension__] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), + [sym_ms_signed_ptr_modifier] = ACTIONS(6808), + [anon_sym__unaligned] = ACTIONS(6808), + [anon_sym___unaligned] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_RBRACK] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(6806), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6808), + [anon_sym_volatile] = ACTIONS(6808), + [anon_sym_restrict] = ACTIONS(6808), + [anon_sym___restrict__] = ACTIONS(6808), + [anon_sym__Atomic] = ACTIONS(6808), + [anon_sym__Noreturn] = ACTIONS(6808), + [anon_sym_noreturn] = ACTIONS(6808), + [anon_sym__Nonnull] = ACTIONS(6808), + [anon_sym_mutable] = ACTIONS(6808), + [anon_sym_constinit] = ACTIONS(6808), + [anon_sym_consteval] = ACTIONS(6808), + [anon_sym_alignas] = ACTIONS(6808), + [anon_sym__Alignas] = ACTIONS(6808), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_STAR_EQ] = ACTIONS(6808), + [anon_sym_SLASH_EQ] = ACTIONS(6808), + [anon_sym_PERCENT_EQ] = ACTIONS(6808), + [anon_sym_PLUS_EQ] = ACTIONS(6808), + [anon_sym_DASH_EQ] = ACTIONS(6808), + [anon_sym_LT_LT_EQ] = ACTIONS(6808), + [anon_sym_GT_GT_EQ] = ACTIONS(6808), + [anon_sym_AMP_EQ] = ACTIONS(6808), + [anon_sym_CARET_EQ] = ACTIONS(6808), + [anon_sym_PIPE_EQ] = ACTIONS(6808), + [anon_sym_and_eq] = ACTIONS(6808), + [anon_sym_or_eq] = ACTIONS(6808), + [anon_sym_xor_eq] = ACTIONS(6808), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6806), + [anon_sym_and] = ACTIONS(6806), + [anon_sym_bitor] = ACTIONS(6808), + [anon_sym_xor] = ACTIONS(6806), + [anon_sym_bitand] = ACTIONS(6808), + [anon_sym_not_eq] = ACTIONS(6808), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6808), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6808), + [anon_sym_override] = ACTIONS(6808), + [anon_sym_requires] = ACTIONS(6808), + }, + [STATE(2580)] = { + [sym_decltype_auto] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8266), + [anon_sym_decltype] = ACTIONS(6680), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2581)] = { + [sym_attribute_specifier] = STATE(2963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7125), + [anon_sym_RPAREN] = ACTIONS(7125), + [anon_sym_LPAREN2] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7123), + [anon_sym_PLUS] = ACTIONS(7123), + [anon_sym_STAR] = ACTIONS(7123), + [anon_sym_SLASH] = ACTIONS(7123), + [anon_sym_PERCENT] = ACTIONS(7123), + [anon_sym_PIPE_PIPE] = ACTIONS(7125), + [anon_sym_AMP_AMP] = ACTIONS(7125), + [anon_sym_PIPE] = ACTIONS(7123), + [anon_sym_CARET] = ACTIONS(7123), + [anon_sym_AMP] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_GT] = ACTIONS(7123), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_LT_EQ] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(7123), + [anon_sym_LT_LT] = ACTIONS(7123), + [anon_sym_GT_GT] = ACTIONS(7123), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7125), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_const] = ACTIONS(7123), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_mutable] = ACTIONS(7125), + [anon_sym_constinit] = ACTIONS(7125), + [anon_sym_consteval] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [anon_sym_QMARK] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_and_eq] = ACTIONS(7125), + [anon_sym_or_eq] = ACTIONS(7125), + [anon_sym_xor_eq] = ACTIONS(7125), + [anon_sym_LT_EQ_GT] = ACTIONS(7125), + [anon_sym_or] = ACTIONS(7123), + [anon_sym_and] = ACTIONS(7123), + [anon_sym_bitor] = ACTIONS(7125), + [anon_sym_xor] = ACTIONS(7123), + [anon_sym_bitand] = ACTIONS(7125), + [anon_sym_not_eq] = ACTIONS(7125), + [anon_sym_DASH_DASH] = ACTIONS(7125), + [anon_sym_PLUS_PLUS] = ACTIONS(7125), + [anon_sym_DOT] = ACTIONS(7123), + [anon_sym_DOT_STAR] = ACTIONS(7125), + [anon_sym_DASH_GT] = ACTIONS(7123), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7125), + [anon_sym_override] = ACTIONS(7125), + [anon_sym_requires] = ACTIONS(7125), + [anon_sym_DASH_GT_STAR] = ACTIONS(7125), + }, + [STATE(2582)] = { + [sym_attribute_specifier] = STATE(3104), + [sym_enumerator_list] = STATE(2733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7011), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7011), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7011), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7011), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7011), + [anon_sym_GT_GT] = ACTIONS(7011), + [anon_sym___extension__] = ACTIONS(7013), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_EQ] = ACTIONS(7011), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7013), + [anon_sym_volatile] = ACTIONS(7013), + [anon_sym_restrict] = ACTIONS(7013), + [anon_sym___restrict__] = ACTIONS(7013), + [anon_sym__Atomic] = ACTIONS(7013), + [anon_sym__Noreturn] = ACTIONS(7013), + [anon_sym_noreturn] = ACTIONS(7013), + [anon_sym__Nonnull] = ACTIONS(7013), + [anon_sym_mutable] = ACTIONS(7013), + [anon_sym_constinit] = ACTIONS(7013), + [anon_sym_consteval] = ACTIONS(7013), + [anon_sym_alignas] = ACTIONS(7013), + [anon_sym__Alignas] = ACTIONS(7013), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_STAR_EQ] = ACTIONS(7013), + [anon_sym_SLASH_EQ] = ACTIONS(7013), + [anon_sym_PERCENT_EQ] = ACTIONS(7013), + [anon_sym_PLUS_EQ] = ACTIONS(7013), + [anon_sym_DASH_EQ] = ACTIONS(7013), + [anon_sym_LT_LT_EQ] = ACTIONS(7013), + [anon_sym_GT_GT_EQ] = ACTIONS(7011), + [anon_sym_AMP_EQ] = ACTIONS(7013), + [anon_sym_CARET_EQ] = ACTIONS(7013), + [anon_sym_PIPE_EQ] = ACTIONS(7013), + [anon_sym_and_eq] = ACTIONS(7013), + [anon_sym_or_eq] = ACTIONS(7013), + [anon_sym_xor_eq] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7011), + [anon_sym_and] = ACTIONS(7011), + [anon_sym_bitor] = ACTIONS(7013), + [anon_sym_xor] = ACTIONS(7011), + [anon_sym_bitand] = ACTIONS(7013), + [anon_sym_not_eq] = ACTIONS(7013), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7013), + [anon_sym_override] = ACTIONS(7013), + [anon_sym_GT2] = ACTIONS(7013), + [anon_sym_requires] = ACTIONS(7013), + }, + [STATE(2583)] = { + [sym_attribute_specifier] = STATE(3049), + [sym_enumerator_list] = STATE(2682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6985), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6985), + [anon_sym_GT_GT] = ACTIONS(6985), + [anon_sym___extension__] = ACTIONS(6987), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(8100), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_RBRACK] = ACTIONS(6987), + [anon_sym_EQ] = ACTIONS(6985), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6987), + [anon_sym_volatile] = ACTIONS(6987), + [anon_sym_restrict] = ACTIONS(6987), + [anon_sym___restrict__] = ACTIONS(6987), + [anon_sym__Atomic] = ACTIONS(6987), + [anon_sym__Noreturn] = ACTIONS(6987), + [anon_sym_noreturn] = ACTIONS(6987), + [anon_sym__Nonnull] = ACTIONS(6987), + [anon_sym_mutable] = ACTIONS(6987), + [anon_sym_constinit] = ACTIONS(6987), + [anon_sym_consteval] = ACTIONS(6987), + [anon_sym_alignas] = ACTIONS(6987), + [anon_sym__Alignas] = ACTIONS(6987), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_STAR_EQ] = ACTIONS(6987), + [anon_sym_SLASH_EQ] = ACTIONS(6987), + [anon_sym_PERCENT_EQ] = ACTIONS(6987), + [anon_sym_PLUS_EQ] = ACTIONS(6987), + [anon_sym_DASH_EQ] = ACTIONS(6987), + [anon_sym_LT_LT_EQ] = ACTIONS(6987), + [anon_sym_GT_GT_EQ] = ACTIONS(6987), + [anon_sym_AMP_EQ] = ACTIONS(6987), + [anon_sym_CARET_EQ] = ACTIONS(6987), + [anon_sym_PIPE_EQ] = ACTIONS(6987), + [anon_sym_and_eq] = ACTIONS(6987), + [anon_sym_or_eq] = ACTIONS(6987), + [anon_sym_xor_eq] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6985), + [anon_sym_and] = ACTIONS(6985), + [anon_sym_bitor] = ACTIONS(6987), + [anon_sym_xor] = ACTIONS(6985), + [anon_sym_bitand] = ACTIONS(6987), + [anon_sym_not_eq] = ACTIONS(6987), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6987), + [anon_sym_override] = ACTIONS(6987), + [anon_sym_requires] = ACTIONS(6987), + }, + [STATE(2584)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(2585)] = { + [sym_attribute_specifier] = STATE(3064), + [sym_enumerator_list] = STATE(2694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7011), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7011), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7011), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7011), + [anon_sym_GT_GT] = ACTIONS(7011), + [anon_sym___extension__] = ACTIONS(7013), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(8100), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_RBRACK] = ACTIONS(7013), + [anon_sym_EQ] = ACTIONS(7011), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7013), + [anon_sym_volatile] = ACTIONS(7013), + [anon_sym_restrict] = ACTIONS(7013), + [anon_sym___restrict__] = ACTIONS(7013), + [anon_sym__Atomic] = ACTIONS(7013), + [anon_sym__Noreturn] = ACTIONS(7013), + [anon_sym_noreturn] = ACTIONS(7013), + [anon_sym__Nonnull] = ACTIONS(7013), + [anon_sym_mutable] = ACTIONS(7013), + [anon_sym_constinit] = ACTIONS(7013), + [anon_sym_consteval] = ACTIONS(7013), + [anon_sym_alignas] = ACTIONS(7013), + [anon_sym__Alignas] = ACTIONS(7013), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_STAR_EQ] = ACTIONS(7013), + [anon_sym_SLASH_EQ] = ACTIONS(7013), + [anon_sym_PERCENT_EQ] = ACTIONS(7013), + [anon_sym_PLUS_EQ] = ACTIONS(7013), + [anon_sym_DASH_EQ] = ACTIONS(7013), + [anon_sym_LT_LT_EQ] = ACTIONS(7013), + [anon_sym_GT_GT_EQ] = ACTIONS(7013), + [anon_sym_AMP_EQ] = ACTIONS(7013), + [anon_sym_CARET_EQ] = ACTIONS(7013), + [anon_sym_PIPE_EQ] = ACTIONS(7013), + [anon_sym_and_eq] = ACTIONS(7013), + [anon_sym_or_eq] = ACTIONS(7013), + [anon_sym_xor_eq] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7011), + [anon_sym_and] = ACTIONS(7011), + [anon_sym_bitor] = ACTIONS(7013), + [anon_sym_xor] = ACTIONS(7011), + [anon_sym_bitand] = ACTIONS(7013), + [anon_sym_not_eq] = ACTIONS(7013), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7013), + [anon_sym_override] = ACTIONS(7013), + [anon_sym_requires] = ACTIONS(7013), + }, + [STATE(2586)] = { + [sym_attribute_specifier] = STATE(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + [anon_sym_DASH_GT_STAR] = ACTIONS(7135), + }, + [STATE(2587)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_not] = ACTIONS(2768), + [anon_sym_compl] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2768), + [anon_sym___alignof__] = ACTIONS(2768), + [anon_sym___alignof] = ACTIONS(2768), + [anon_sym__alignof] = ACTIONS(2768), + [anon_sym_alignof] = ACTIONS(2768), + [anon_sym__Alignof] = ACTIONS(2768), + [anon_sym_offsetof] = ACTIONS(2768), + [anon_sym__Generic] = ACTIONS(2768), + [anon_sym_typename] = ACTIONS(2768), + [anon_sym_asm] = ACTIONS(2768), + [anon_sym___asm__] = ACTIONS(2768), + [anon_sym___asm] = ACTIONS(2768), + [sym_number_literal] = ACTIONS(2758), + [anon_sym_L_SQUOTE] = ACTIONS(2758), + [anon_sym_u_SQUOTE] = ACTIONS(2758), + [anon_sym_U_SQUOTE] = ACTIONS(2758), + [anon_sym_u8_SQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_L_DQUOTE] = ACTIONS(2758), + [anon_sym_u_DQUOTE] = ACTIONS(2758), + [anon_sym_U_DQUOTE] = ACTIONS(2758), + [anon_sym_u8_DQUOTE] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [anon_sym_NULL] = ACTIONS(2768), + [anon_sym_nullptr] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2768), + [anon_sym_R_DQUOTE] = ACTIONS(2758), + [anon_sym_LR_DQUOTE] = ACTIONS(2758), + [anon_sym_uR_DQUOTE] = ACTIONS(2758), + [anon_sym_UR_DQUOTE] = ACTIONS(2758), + [anon_sym_u8R_DQUOTE] = ACTIONS(2758), + [anon_sym_co_await] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2758), + [sym_this] = ACTIONS(2768), + }, + [STATE(2588)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6951), + [anon_sym_and] = ACTIONS(6951), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6951), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2589)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6900), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6900), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6900), + [anon_sym_GT_GT] = ACTIONS(6900), + [anon_sym___extension__] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), + [sym_ms_signed_ptr_modifier] = ACTIONS(6902), + [anon_sym__unaligned] = ACTIONS(6902), + [anon_sym___unaligned] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6900), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6902), + [anon_sym_volatile] = ACTIONS(6902), + [anon_sym_restrict] = ACTIONS(6902), + [anon_sym___restrict__] = ACTIONS(6902), + [anon_sym__Atomic] = ACTIONS(6902), + [anon_sym__Noreturn] = ACTIONS(6902), + [anon_sym_noreturn] = ACTIONS(6902), + [anon_sym__Nonnull] = ACTIONS(6902), + [anon_sym_mutable] = ACTIONS(6902), + [anon_sym_constinit] = ACTIONS(6902), + [anon_sym_consteval] = ACTIONS(6902), + [anon_sym_alignas] = ACTIONS(6902), + [anon_sym__Alignas] = ACTIONS(6902), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_STAR_EQ] = ACTIONS(6902), + [anon_sym_SLASH_EQ] = ACTIONS(6902), + [anon_sym_PERCENT_EQ] = ACTIONS(6902), + [anon_sym_PLUS_EQ] = ACTIONS(6902), + [anon_sym_DASH_EQ] = ACTIONS(6902), + [anon_sym_LT_LT_EQ] = ACTIONS(6902), + [anon_sym_GT_GT_EQ] = ACTIONS(6900), + [anon_sym_AMP_EQ] = ACTIONS(6902), + [anon_sym_CARET_EQ] = ACTIONS(6902), + [anon_sym_PIPE_EQ] = ACTIONS(6902), + [anon_sym_and_eq] = ACTIONS(6902), + [anon_sym_or_eq] = ACTIONS(6902), + [anon_sym_xor_eq] = ACTIONS(6902), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6900), + [anon_sym_and] = ACTIONS(6900), + [anon_sym_bitor] = ACTIONS(6902), + [anon_sym_xor] = ACTIONS(6900), + [anon_sym_bitand] = ACTIONS(6902), + [anon_sym_not_eq] = ACTIONS(6902), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6902), + [anon_sym_override] = ACTIONS(6902), + [anon_sym_GT2] = ACTIONS(6902), + [anon_sym_requires] = ACTIONS(6902), + }, + [STATE(2590)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [aux_sym_preproc_else_token1] = ACTIONS(2803), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(2591)] = { + [sym_decltype_auto] = STATE(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8268), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_GT2] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2592)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [aux_sym_preproc_if_token2] = ACTIONS(2758), + [aux_sym_preproc_else_token1] = ACTIONS(2758), + [aux_sym_preproc_elif_token1] = ACTIONS(2768), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_LT_EQ_GT] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2768), + [anon_sym_and] = ACTIONS(2768), + [anon_sym_bitor] = ACTIONS(2768), + [anon_sym_xor] = ACTIONS(2768), + [anon_sym_bitand] = ACTIONS(2768), + [anon_sym_not_eq] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_DOT_STAR] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(2758), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_requires] = ACTIONS(2768), + [anon_sym_COLON_RBRACK] = ACTIONS(2758), + }, + [STATE(2593)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6951), + [anon_sym_and] = ACTIONS(6951), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6951), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2594)] = { + [sym_attribute_specifier] = STATE(2850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_RPAREN] = ACTIONS(7089), + [anon_sym_LPAREN2] = ACTIONS(7089), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7087), + [anon_sym_PERCENT] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7089), + [anon_sym_AMP_AMP] = ACTIONS(7089), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7089), + [anon_sym_BANG_EQ] = ACTIONS(7089), + [anon_sym_GT] = ACTIONS(7087), + [anon_sym_GT_EQ] = ACTIONS(7089), + [anon_sym_LT_EQ] = ACTIONS(7087), + [anon_sym_LT] = ACTIONS(7087), + [anon_sym_LT_LT] = ACTIONS(7087), + [anon_sym_GT_GT] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7087), + [anon_sym_const] = ACTIONS(7087), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(7089), + [anon_sym__Alignas] = ACTIONS(7089), + [anon_sym_QMARK] = ACTIONS(7089), + [anon_sym_STAR_EQ] = ACTIONS(7089), + [anon_sym_SLASH_EQ] = ACTIONS(7089), + [anon_sym_PERCENT_EQ] = ACTIONS(7089), + [anon_sym_PLUS_EQ] = ACTIONS(7089), + [anon_sym_DASH_EQ] = ACTIONS(7089), + [anon_sym_LT_LT_EQ] = ACTIONS(7089), + [anon_sym_GT_GT_EQ] = ACTIONS(7089), + [anon_sym_AMP_EQ] = ACTIONS(7089), + [anon_sym_CARET_EQ] = ACTIONS(7089), + [anon_sym_PIPE_EQ] = ACTIONS(7089), + [anon_sym_and_eq] = ACTIONS(7089), + [anon_sym_or_eq] = ACTIONS(7089), + [anon_sym_xor_eq] = ACTIONS(7089), + [anon_sym_LT_EQ_GT] = ACTIONS(7089), + [anon_sym_or] = ACTIONS(7087), + [anon_sym_and] = ACTIONS(7087), + [anon_sym_bitor] = ACTIONS(7089), + [anon_sym_xor] = ACTIONS(7087), + [anon_sym_bitand] = ACTIONS(7089), + [anon_sym_not_eq] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7087), + [anon_sym_DOT_STAR] = ACTIONS(7089), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7089), + [anon_sym_override] = ACTIONS(7089), + [anon_sym_requires] = ACTIONS(7089), + [anon_sym_DASH_GT_STAR] = ACTIONS(7089), + }, + [STATE(2595)] = { + [sym_attribute_specifier] = STATE(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + [anon_sym_DASH_GT_STAR] = ACTIONS(7189), + }, + [STATE(2596)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym___extension__] = ACTIONS(6846), + [anon_sym___attribute__] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_RBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6846), + [anon_sym_volatile] = ACTIONS(6846), + [anon_sym_restrict] = ACTIONS(6846), + [anon_sym___restrict__] = ACTIONS(6846), + [anon_sym__Atomic] = ACTIONS(6846), + [anon_sym__Noreturn] = ACTIONS(6846), + [anon_sym_noreturn] = ACTIONS(6846), + [anon_sym__Nonnull] = ACTIONS(6846), + [anon_sym_mutable] = ACTIONS(6846), + [anon_sym_constinit] = ACTIONS(6846), + [anon_sym_consteval] = ACTIONS(6846), + [anon_sym_alignas] = ACTIONS(6846), + [anon_sym__Alignas] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_and_eq] = ACTIONS(6846), + [anon_sym_or_eq] = ACTIONS(6846), + [anon_sym_xor_eq] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6846), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6846), + [anon_sym_not_eq] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6846), + [anon_sym_override] = ACTIONS(6846), + [anon_sym_requires] = ACTIONS(6846), + }, + [STATE(2597)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_RBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_and_eq] = ACTIONS(6751), + [anon_sym_or_eq] = ACTIONS(6751), + [anon_sym_xor_eq] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + }, + [STATE(2598)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7185), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7185), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7185), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7185), + [anon_sym_GT_GT] = ACTIONS(7185), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_RBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_STAR_EQ] = ACTIONS(7183), + [anon_sym_SLASH_EQ] = ACTIONS(7183), + [anon_sym_PERCENT_EQ] = ACTIONS(7183), + [anon_sym_PLUS_EQ] = ACTIONS(7183), + [anon_sym_DASH_EQ] = ACTIONS(7183), + [anon_sym_LT_LT_EQ] = ACTIONS(7183), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7183), + [anon_sym_CARET_EQ] = ACTIONS(7183), + [anon_sym_PIPE_EQ] = ACTIONS(7183), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + }, + [STATE(2599)] = { + [sym_identifier] = ACTIONS(6786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), + [anon_sym_COMMA] = ACTIONS(6788), + [anon_sym_RPAREN] = ACTIONS(6788), + [aux_sym_preproc_if_token2] = ACTIONS(6788), + [aux_sym_preproc_else_token1] = ACTIONS(6788), + [aux_sym_preproc_elif_token1] = ACTIONS(6786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6788), + [anon_sym_LPAREN2] = ACTIONS(6788), + [anon_sym_DASH] = ACTIONS(6786), + [anon_sym_PLUS] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(6788), + [anon_sym_SLASH] = ACTIONS(6786), + [anon_sym_PERCENT] = ACTIONS(6788), + [anon_sym_PIPE_PIPE] = ACTIONS(6788), + [anon_sym_AMP_AMP] = ACTIONS(6788), + [anon_sym_PIPE] = ACTIONS(6786), + [anon_sym_CARET] = ACTIONS(6788), + [anon_sym_AMP] = ACTIONS(6786), + [anon_sym_EQ_EQ] = ACTIONS(6788), + [anon_sym_BANG_EQ] = ACTIONS(6788), + [anon_sym_GT] = ACTIONS(6786), + [anon_sym_GT_EQ] = ACTIONS(6788), + [anon_sym_LT_EQ] = ACTIONS(6786), + [anon_sym_LT] = ACTIONS(6786), + [anon_sym_LT_LT] = ACTIONS(6788), + [anon_sym_GT_GT] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6786), + [anon_sym___attribute] = ACTIONS(6786), + [anon_sym_COLON] = ACTIONS(6786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6788), + [anon_sym_RBRACE] = ACTIONS(6788), + [anon_sym_LBRACK] = ACTIONS(6786), + [anon_sym_const] = ACTIONS(6786), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6786), + [anon_sym__Alignas] = ACTIONS(6786), + [anon_sym_QMARK] = ACTIONS(6788), + [anon_sym_LT_EQ_GT] = ACTIONS(6788), + [anon_sym_or] = ACTIONS(6786), + [anon_sym_and] = ACTIONS(6786), + [anon_sym_bitor] = ACTIONS(6786), + [anon_sym_xor] = ACTIONS(6786), + [anon_sym_bitand] = ACTIONS(6786), + [anon_sym_not_eq] = ACTIONS(6786), + [anon_sym_DASH_DASH] = ACTIONS(6788), + [anon_sym_PLUS_PLUS] = ACTIONS(6788), + [anon_sym_asm] = ACTIONS(6786), + [anon_sym___asm__] = ACTIONS(6786), + [anon_sym___asm] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6786), + [anon_sym_DOT_STAR] = ACTIONS(6788), + [anon_sym_DASH_GT] = ACTIONS(6788), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6786), + [anon_sym_override] = ACTIONS(6786), + [anon_sym_noexcept] = ACTIONS(6786), + [anon_sym_throw] = ACTIONS(6786), + [anon_sym_requires] = ACTIONS(6786), + [anon_sym_COLON_RBRACK] = ACTIONS(6788), + }, + [STATE(2600)] = { + [sym_attribute_specifier] = STATE(2930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), + [anon_sym_COMMA] = ACTIONS(7055), + [anon_sym_RPAREN] = ACTIONS(7055), + [anon_sym_LPAREN2] = ACTIONS(7055), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_STAR] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_PIPE_PIPE] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7055), + [anon_sym_PIPE] = ACTIONS(7053), + [anon_sym_CARET] = ACTIONS(7053), + [anon_sym_AMP] = ACTIONS(7053), + [anon_sym_EQ_EQ] = ACTIONS(7055), + [anon_sym_BANG_EQ] = ACTIONS(7055), + [anon_sym_GT] = ACTIONS(7053), + [anon_sym_GT_EQ] = ACTIONS(7055), + [anon_sym_LT_EQ] = ACTIONS(7053), + [anon_sym_LT] = ACTIONS(7053), + [anon_sym_LT_LT] = ACTIONS(7053), + [anon_sym_GT_GT] = ACTIONS(7053), + [anon_sym___extension__] = ACTIONS(7055), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7055), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_const] = ACTIONS(7053), + [anon_sym_constexpr] = ACTIONS(7055), + [anon_sym_volatile] = ACTIONS(7055), + [anon_sym_restrict] = ACTIONS(7055), + [anon_sym___restrict__] = ACTIONS(7055), + [anon_sym__Atomic] = ACTIONS(7055), + [anon_sym__Noreturn] = ACTIONS(7055), + [anon_sym_noreturn] = ACTIONS(7055), + [anon_sym__Nonnull] = ACTIONS(7055), + [anon_sym_mutable] = ACTIONS(7055), + [anon_sym_constinit] = ACTIONS(7055), + [anon_sym_consteval] = ACTIONS(7055), + [anon_sym_alignas] = ACTIONS(7055), + [anon_sym__Alignas] = ACTIONS(7055), + [anon_sym_QMARK] = ACTIONS(7055), + [anon_sym_STAR_EQ] = ACTIONS(7055), + [anon_sym_SLASH_EQ] = ACTIONS(7055), + [anon_sym_PERCENT_EQ] = ACTIONS(7055), + [anon_sym_PLUS_EQ] = ACTIONS(7055), + [anon_sym_DASH_EQ] = ACTIONS(7055), + [anon_sym_LT_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_GT_EQ] = ACTIONS(7055), + [anon_sym_AMP_EQ] = ACTIONS(7055), + [anon_sym_CARET_EQ] = ACTIONS(7055), + [anon_sym_PIPE_EQ] = ACTIONS(7055), + [anon_sym_and_eq] = ACTIONS(7055), + [anon_sym_or_eq] = ACTIONS(7055), + [anon_sym_xor_eq] = ACTIONS(7055), + [anon_sym_LT_EQ_GT] = ACTIONS(7055), + [anon_sym_or] = ACTIONS(7053), + [anon_sym_and] = ACTIONS(7053), + [anon_sym_bitor] = ACTIONS(7055), + [anon_sym_xor] = ACTIONS(7053), + [anon_sym_bitand] = ACTIONS(7055), + [anon_sym_not_eq] = ACTIONS(7055), + [anon_sym_DASH_DASH] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7055), + [anon_sym_DOT] = ACTIONS(7053), + [anon_sym_DOT_STAR] = ACTIONS(7055), + [anon_sym_DASH_GT] = ACTIONS(7053), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7055), + [anon_sym_override] = ACTIONS(7055), + [anon_sym_requires] = ACTIONS(7055), + [anon_sym_DASH_GT_STAR] = ACTIONS(7055), + }, + [STATE(2601)] = { + [sym_attribute_specifier] = STATE(2935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7059), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7057), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym___restrict__] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym__Noreturn] = ACTIONS(7059), + [anon_sym_noreturn] = ACTIONS(7059), + [anon_sym__Nonnull] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_constinit] = ACTIONS(7059), + [anon_sym_consteval] = ACTIONS(7059), + [anon_sym_alignas] = ACTIONS(7059), + [anon_sym__Alignas] = ACTIONS(7059), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + }, + [STATE(2602)] = { + [sym_attribute_specifier] = STATE(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), + [anon_sym_COMMA] = ACTIONS(7063), + [anon_sym_RPAREN] = ACTIONS(7063), + [anon_sym_LPAREN2] = ACTIONS(7063), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7063), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_AMP] = ACTIONS(7061), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_GT] = ACTIONS(7061), + [anon_sym_GT_EQ] = ACTIONS(7063), + [anon_sym_LT_EQ] = ACTIONS(7061), + [anon_sym_LT] = ACTIONS(7061), + [anon_sym_LT_LT] = ACTIONS(7061), + [anon_sym_GT_GT] = ACTIONS(7061), + [anon_sym___extension__] = ACTIONS(7063), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(7061), + [anon_sym_constexpr] = ACTIONS(7063), + [anon_sym_volatile] = ACTIONS(7063), + [anon_sym_restrict] = ACTIONS(7063), + [anon_sym___restrict__] = ACTIONS(7063), + [anon_sym__Atomic] = ACTIONS(7063), + [anon_sym__Noreturn] = ACTIONS(7063), + [anon_sym_noreturn] = ACTIONS(7063), + [anon_sym__Nonnull] = ACTIONS(7063), + [anon_sym_mutable] = ACTIONS(7063), + [anon_sym_constinit] = ACTIONS(7063), + [anon_sym_consteval] = ACTIONS(7063), + [anon_sym_alignas] = ACTIONS(7063), + [anon_sym__Alignas] = ACTIONS(7063), + [anon_sym_QMARK] = ACTIONS(7063), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7063), + [anon_sym_or_eq] = ACTIONS(7063), + [anon_sym_xor_eq] = ACTIONS(7063), + [anon_sym_LT_EQ_GT] = ACTIONS(7063), + [anon_sym_or] = ACTIONS(7061), + [anon_sym_and] = ACTIONS(7061), + [anon_sym_bitor] = ACTIONS(7063), + [anon_sym_xor] = ACTIONS(7061), + [anon_sym_bitand] = ACTIONS(7063), + [anon_sym_not_eq] = ACTIONS(7063), + [anon_sym_DASH_DASH] = ACTIONS(7063), + [anon_sym_PLUS_PLUS] = ACTIONS(7063), + [anon_sym_DOT] = ACTIONS(7061), + [anon_sym_DOT_STAR] = ACTIONS(7063), + [anon_sym_DASH_GT] = ACTIONS(7061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7063), + [anon_sym_override] = ACTIONS(7063), + [anon_sym_requires] = ACTIONS(7063), + [anon_sym_DASH_GT_STAR] = ACTIONS(7063), + }, + [STATE(2603)] = { + [sym_attribute_specifier] = STATE(2955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), + [anon_sym_COMMA] = ACTIONS(7067), + [anon_sym_RPAREN] = ACTIONS(7067), + [anon_sym_LPAREN2] = ACTIONS(7067), + [anon_sym_DASH] = ACTIONS(7065), + [anon_sym_PLUS] = ACTIONS(7065), + [anon_sym_STAR] = ACTIONS(7065), + [anon_sym_SLASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_PIPE_PIPE] = ACTIONS(7067), + [anon_sym_AMP_AMP] = ACTIONS(7067), + [anon_sym_PIPE] = ACTIONS(7065), + [anon_sym_CARET] = ACTIONS(7065), + [anon_sym_AMP] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7067), + [anon_sym_GT] = ACTIONS(7065), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_LT_EQ] = ACTIONS(7065), + [anon_sym_LT] = ACTIONS(7065), + [anon_sym_LT_LT] = ACTIONS(7065), + [anon_sym_GT_GT] = ACTIONS(7065), + [anon_sym___extension__] = ACTIONS(7067), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7067), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_const] = ACTIONS(7065), + [anon_sym_constexpr] = ACTIONS(7067), + [anon_sym_volatile] = ACTIONS(7067), + [anon_sym_restrict] = ACTIONS(7067), + [anon_sym___restrict__] = ACTIONS(7067), + [anon_sym__Atomic] = ACTIONS(7067), + [anon_sym__Noreturn] = ACTIONS(7067), + [anon_sym_noreturn] = ACTIONS(7067), + [anon_sym__Nonnull] = ACTIONS(7067), + [anon_sym_mutable] = ACTIONS(7067), + [anon_sym_constinit] = ACTIONS(7067), + [anon_sym_consteval] = ACTIONS(7067), + [anon_sym_alignas] = ACTIONS(7067), + [anon_sym__Alignas] = ACTIONS(7067), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7067), + [anon_sym_SLASH_EQ] = ACTIONS(7067), + [anon_sym_PERCENT_EQ] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(7067), + [anon_sym_DASH_EQ] = ACTIONS(7067), + [anon_sym_LT_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_GT_EQ] = ACTIONS(7067), + [anon_sym_AMP_EQ] = ACTIONS(7067), + [anon_sym_CARET_EQ] = ACTIONS(7067), + [anon_sym_PIPE_EQ] = ACTIONS(7067), + [anon_sym_and_eq] = ACTIONS(7067), + [anon_sym_or_eq] = ACTIONS(7067), + [anon_sym_xor_eq] = ACTIONS(7067), + [anon_sym_LT_EQ_GT] = ACTIONS(7067), + [anon_sym_or] = ACTIONS(7065), + [anon_sym_and] = ACTIONS(7065), + [anon_sym_bitor] = ACTIONS(7067), + [anon_sym_xor] = ACTIONS(7065), + [anon_sym_bitand] = ACTIONS(7067), + [anon_sym_not_eq] = ACTIONS(7067), + [anon_sym_DASH_DASH] = ACTIONS(7067), + [anon_sym_PLUS_PLUS] = ACTIONS(7067), + [anon_sym_DOT] = ACTIONS(7065), + [anon_sym_DOT_STAR] = ACTIONS(7067), + [anon_sym_DASH_GT] = ACTIONS(7065), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7067), + [anon_sym_override] = ACTIONS(7067), + [anon_sym_requires] = ACTIONS(7067), + [anon_sym_DASH_GT_STAR] = ACTIONS(7067), + }, + [STATE(2604)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2339), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(7894), + [anon_sym_unsigned] = ACTIONS(7894), + [anon_sym_long] = ACTIONS(7894), + [anon_sym_short] = ACTIONS(7894), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_STAR_EQ] = ACTIONS(7081), + [anon_sym_SLASH_EQ] = ACTIONS(7081), + [anon_sym_PERCENT_EQ] = ACTIONS(7081), + [anon_sym_PLUS_EQ] = ACTIONS(7081), + [anon_sym_DASH_EQ] = ACTIONS(7081), + [anon_sym_LT_LT_EQ] = ACTIONS(7081), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7081), + [anon_sym_CARET_EQ] = ACTIONS(7081), + [anon_sym_PIPE_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7084), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + }, + [STATE(2605)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_exception_specification] = STATE(3259), + [sym__function_attributes_end] = STATE(4448), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4529), + [sym_noexcept] = STATE(3259), + [sym_throw_specifier] = STATE(3259), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2606)] = { + [sym_attribute_specifier] = STATE(3410), + [sym_enumerator_list] = STATE(2846), + [sym__enum_base_clause] = STATE(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_RPAREN] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_COLON] = ACTIONS(8270), + [anon_sym_LBRACE] = ACTIONS(8272), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_STAR_EQ] = ACTIONS(7602), + [anon_sym_SLASH_EQ] = ACTIONS(7602), + [anon_sym_PERCENT_EQ] = ACTIONS(7602), + [anon_sym_PLUS_EQ] = ACTIONS(7602), + [anon_sym_DASH_EQ] = ACTIONS(7602), + [anon_sym_LT_LT_EQ] = ACTIONS(7602), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7602), + [anon_sym_CARET_EQ] = ACTIONS(7602), + [anon_sym_PIPE_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_DASH_GT_STAR] = ACTIONS(7602), + }, + [STATE(2607)] = { + [sym_attribute_specifier] = STATE(3442), + [sym_enumerator_list] = STATE(2894), + [sym__enum_base_clause] = STATE(2826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_COLON] = ACTIONS(8270), + [anon_sym_LBRACE] = ACTIONS(8272), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7653), + [anon_sym_and] = ACTIONS(7653), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7653), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7651), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + }, + [STATE(2608)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6967), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6967), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6967), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6967), + [anon_sym_GT_GT] = ACTIONS(6967), + [anon_sym___extension__] = ACTIONS(6969), + [anon_sym___attribute__] = ACTIONS(6969), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_EQ] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6969), + [anon_sym_volatile] = ACTIONS(6969), + [anon_sym_restrict] = ACTIONS(6969), + [anon_sym___restrict__] = ACTIONS(6969), + [anon_sym__Atomic] = ACTIONS(6969), + [anon_sym__Noreturn] = ACTIONS(6969), + [anon_sym_noreturn] = ACTIONS(6969), + [anon_sym__Nonnull] = ACTIONS(6969), + [anon_sym_mutable] = ACTIONS(6969), + [anon_sym_constinit] = ACTIONS(6969), + [anon_sym_consteval] = ACTIONS(6969), + [anon_sym_alignas] = ACTIONS(6969), + [anon_sym__Alignas] = ACTIONS(6969), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_STAR_EQ] = ACTIONS(6969), + [anon_sym_SLASH_EQ] = ACTIONS(6969), + [anon_sym_PERCENT_EQ] = ACTIONS(6969), + [anon_sym_PLUS_EQ] = ACTIONS(6969), + [anon_sym_DASH_EQ] = ACTIONS(6969), + [anon_sym_LT_LT_EQ] = ACTIONS(6969), + [anon_sym_GT_GT_EQ] = ACTIONS(6969), + [anon_sym_AMP_EQ] = ACTIONS(6969), + [anon_sym_CARET_EQ] = ACTIONS(6969), + [anon_sym_PIPE_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6969), + [anon_sym_and] = ACTIONS(6969), + [anon_sym_bitor] = ACTIONS(6969), + [anon_sym_xor] = ACTIONS(6969), + [anon_sym_bitand] = ACTIONS(6969), + [anon_sym_not_eq] = ACTIONS(6969), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6969), + [anon_sym_decltype] = ACTIONS(6969), + [anon_sym_final] = ACTIONS(6969), + [anon_sym_override] = ACTIONS(6969), + [anon_sym_requires] = ACTIONS(6969), + [anon_sym_DASH_GT_STAR] = ACTIONS(6969), + }, + [STATE(2609)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [aux_sym_preproc_else_token1] = ACTIONS(3608), + [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_friend] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + }, + [STATE(2610)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_exception_specification] = STATE(3263), + [sym__function_attributes_end] = STATE(4511), + [sym__function_postfix] = STATE(5590), + [sym_trailing_return_type] = STATE(4551), + [sym_noexcept] = STATE(3263), + [sym_throw_specifier] = STATE(3263), + [sym_requires_clause] = STATE(5590), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8210), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_noexcept] = ACTIONS(6426), + [anon_sym_throw] = ACTIONS(6428), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2611)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_BANG] = ACTIONS(6718), + [anon_sym_TILDE] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6718), + [anon_sym_AMP] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym_COLON_COLON] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_static] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(6718), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_not] = ACTIONS(6716), + [anon_sym_compl] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_sizeof] = ACTIONS(6716), + [anon_sym___alignof__] = ACTIONS(6716), + [anon_sym___alignof] = ACTIONS(6716), + [anon_sym__alignof] = ACTIONS(6716), + [anon_sym_alignof] = ACTIONS(6716), + [anon_sym__Alignof] = ACTIONS(6716), + [anon_sym_offsetof] = ACTIONS(6716), + [anon_sym__Generic] = ACTIONS(6716), + [anon_sym_typename] = ACTIONS(6716), + [anon_sym_asm] = ACTIONS(6716), + [anon_sym___asm__] = ACTIONS(6716), + [anon_sym___asm] = ACTIONS(6716), + [sym_number_literal] = ACTIONS(6718), + [anon_sym_L_SQUOTE] = ACTIONS(6718), + [anon_sym_u_SQUOTE] = ACTIONS(6718), + [anon_sym_U_SQUOTE] = ACTIONS(6718), + [anon_sym_u8_SQUOTE] = ACTIONS(6718), + [anon_sym_SQUOTE] = ACTIONS(6718), + [anon_sym_L_DQUOTE] = ACTIONS(6718), + [anon_sym_u_DQUOTE] = ACTIONS(6718), + [anon_sym_U_DQUOTE] = ACTIONS(6718), + [anon_sym_u8_DQUOTE] = ACTIONS(6718), + [anon_sym_DQUOTE] = ACTIONS(6718), + [sym_true] = ACTIONS(6716), + [sym_false] = ACTIONS(6716), + [anon_sym_NULL] = ACTIONS(6716), + [anon_sym_nullptr] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6716), + [anon_sym_template] = ACTIONS(6716), + [anon_sym_delete] = ACTIONS(6716), + [anon_sym_R_DQUOTE] = ACTIONS(6718), + [anon_sym_LR_DQUOTE] = ACTIONS(6718), + [anon_sym_uR_DQUOTE] = ACTIONS(6718), + [anon_sym_UR_DQUOTE] = ACTIONS(6718), + [anon_sym_u8R_DQUOTE] = ACTIONS(6718), + [anon_sym_co_await] = ACTIONS(6716), + [anon_sym_new] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_CARET_CARET] = ACTIONS(6718), + [anon_sym_LBRACK_COLON] = ACTIONS(6718), + [sym_this] = ACTIONS(6716), + }, + [STATE(2612)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym___extension__] = ACTIONS(6764), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_RBRACK] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6764), + [anon_sym_volatile] = ACTIONS(6764), + [anon_sym_restrict] = ACTIONS(6764), + [anon_sym___restrict__] = ACTIONS(6764), + [anon_sym__Atomic] = ACTIONS(6764), + [anon_sym__Noreturn] = ACTIONS(6764), + [anon_sym_noreturn] = ACTIONS(6764), + [anon_sym__Nonnull] = ACTIONS(6764), + [anon_sym_mutable] = ACTIONS(6764), + [anon_sym_constinit] = ACTIONS(6764), + [anon_sym_consteval] = ACTIONS(6764), + [anon_sym_alignas] = ACTIONS(6764), + [anon_sym__Alignas] = ACTIONS(6764), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6764), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_and_eq] = ACTIONS(6764), + [anon_sym_or_eq] = ACTIONS(6764), + [anon_sym_xor_eq] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6764), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6764), + [anon_sym_not_eq] = ACTIONS(6764), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6764), + [anon_sym_override] = ACTIONS(6764), + [anon_sym_requires] = ACTIONS(6764), + }, + [STATE(2613)] = { + [sym_identifier] = ACTIONS(6790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [aux_sym_preproc_if_token2] = ACTIONS(6792), + [aux_sym_preproc_else_token1] = ACTIONS(6792), + [aux_sym_preproc_elif_token1] = ACTIONS(6790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6792), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6792), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6792), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6792), + [anon_sym_GT_GT] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(6790), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_COLON] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_mutable] = ACTIONS(6790), + [anon_sym_constinit] = ACTIONS(6790), + [anon_sym_consteval] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6790), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6790), + [anon_sym_not_eq] = ACTIONS(6790), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_asm] = ACTIONS(6790), + [anon_sym___asm__] = ACTIONS(6790), + [anon_sym___asm] = ACTIONS(6790), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6790), + [anon_sym_override] = ACTIONS(6790), + [anon_sym_noexcept] = ACTIONS(6790), + [anon_sym_throw] = ACTIONS(6790), + [anon_sym_requires] = ACTIONS(6790), + [anon_sym_COLON_RBRACK] = ACTIONS(6792), + }, + [STATE(2614)] = { + [sym_argument_list] = STATE(5660), + [sym_initializer_list] = STATE(5664), + [aux_sym_sized_type_specifier_repeat1] = STATE(2402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8274), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_signed] = ACTIONS(7912), + [anon_sym_unsigned] = ACTIONS(7912), + [anon_sym_long] = ACTIONS(7912), + [anon_sym_short] = ACTIONS(7912), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6800), + }, + [STATE(2615)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2616)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [aux_sym_preproc_if_token2] = ACTIONS(6718), + [aux_sym_preproc_else_token1] = ACTIONS(6718), + [aux_sym_preproc_elif_token1] = ACTIONS(6716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_PLUS] = ACTIONS(6716), + [anon_sym_STAR] = ACTIONS(6718), + [anon_sym_SLASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6718), + [anon_sym_PIPE_PIPE] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_CARET] = ACTIONS(6718), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_EQ_EQ] = ACTIONS(6718), + [anon_sym_BANG_EQ] = ACTIONS(6718), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_EQ] = ACTIONS(6718), + [anon_sym_LT_EQ] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_LT_LT] = ACTIONS(6718), + [anon_sym_GT_GT] = ACTIONS(6718), + [anon_sym_SEMI] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_RBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6718), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6718), + [anon_sym_LT_EQ_GT] = ACTIONS(6718), + [anon_sym_or] = ACTIONS(6716), + [anon_sym_and] = ACTIONS(6716), + [anon_sym_bitor] = ACTIONS(6716), + [anon_sym_xor] = ACTIONS(6716), + [anon_sym_bitand] = ACTIONS(6716), + [anon_sym_not_eq] = ACTIONS(6716), + [anon_sym_DASH_DASH] = ACTIONS(6718), + [anon_sym_PLUS_PLUS] = ACTIONS(6718), + [anon_sym_DOT] = ACTIONS(6716), + [anon_sym_DOT_STAR] = ACTIONS(6718), + [anon_sym_DASH_GT] = ACTIONS(6718), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6716), + [anon_sym_override] = ACTIONS(6716), + [anon_sym_requires] = ACTIONS(6716), + [anon_sym_COLON_RBRACK] = ACTIONS(6718), + }, + [STATE(2617)] = { + [sym_attribute_specifier] = STATE(2979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_RPAREN] = ACTIONS(7093), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7091), + [anon_sym_SLASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_PIPE_PIPE] = ACTIONS(7093), + [anon_sym_AMP_AMP] = ACTIONS(7093), + [anon_sym_PIPE] = ACTIONS(7091), + [anon_sym_CARET] = ACTIONS(7091), + [anon_sym_AMP] = ACTIONS(7091), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_GT] = ACTIONS(7091), + [anon_sym_GT_EQ] = ACTIONS(7093), + [anon_sym_LT_EQ] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(7091), + [anon_sym_LT_LT] = ACTIONS(7091), + [anon_sym_GT_GT] = ACTIONS(7091), + [anon_sym___extension__] = ACTIONS(7093), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_const] = ACTIONS(7091), + [anon_sym_constexpr] = ACTIONS(7093), + [anon_sym_volatile] = ACTIONS(7093), + [anon_sym_restrict] = ACTIONS(7093), + [anon_sym___restrict__] = ACTIONS(7093), + [anon_sym__Atomic] = ACTIONS(7093), + [anon_sym__Noreturn] = ACTIONS(7093), + [anon_sym_noreturn] = ACTIONS(7093), + [anon_sym__Nonnull] = ACTIONS(7093), + [anon_sym_mutable] = ACTIONS(7093), + [anon_sym_constinit] = ACTIONS(7093), + [anon_sym_consteval] = ACTIONS(7093), + [anon_sym_alignas] = ACTIONS(7093), + [anon_sym__Alignas] = ACTIONS(7093), + [anon_sym_QMARK] = ACTIONS(7093), + [anon_sym_STAR_EQ] = ACTIONS(7093), + [anon_sym_SLASH_EQ] = ACTIONS(7093), + [anon_sym_PERCENT_EQ] = ACTIONS(7093), + [anon_sym_PLUS_EQ] = ACTIONS(7093), + [anon_sym_DASH_EQ] = ACTIONS(7093), + [anon_sym_LT_LT_EQ] = ACTIONS(7093), + [anon_sym_GT_GT_EQ] = ACTIONS(7093), + [anon_sym_AMP_EQ] = ACTIONS(7093), + [anon_sym_CARET_EQ] = ACTIONS(7093), + [anon_sym_PIPE_EQ] = ACTIONS(7093), + [anon_sym_and_eq] = ACTIONS(7093), + [anon_sym_or_eq] = ACTIONS(7093), + [anon_sym_xor_eq] = ACTIONS(7093), + [anon_sym_LT_EQ_GT] = ACTIONS(7093), + [anon_sym_or] = ACTIONS(7091), + [anon_sym_and] = ACTIONS(7091), + [anon_sym_bitor] = ACTIONS(7093), + [anon_sym_xor] = ACTIONS(7091), + [anon_sym_bitand] = ACTIONS(7093), + [anon_sym_not_eq] = ACTIONS(7093), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DOT] = ACTIONS(7091), + [anon_sym_DOT_STAR] = ACTIONS(7093), + [anon_sym_DASH_GT] = ACTIONS(7091), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7093), + [anon_sym_override] = ACTIONS(7093), + [anon_sym_requires] = ACTIONS(7093), + [anon_sym_DASH_GT_STAR] = ACTIONS(7093), + }, + [STATE(2618)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6344), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2619)] = { + [sym_attribute_specifier] = STATE(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(7095), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7095), + [anon_sym_PERCENT] = ACTIONS(7095), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7095), + [anon_sym_CARET] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7095), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7095), + [anon_sym_LT] = ACTIONS(7095), + [anon_sym_LT_LT] = ACTIONS(7095), + [anon_sym_GT_GT] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7095), + [anon_sym_const] = ACTIONS(7095), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_mutable] = ACTIONS(7097), + [anon_sym_constinit] = ACTIONS(7097), + [anon_sym_consteval] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7097), + [anon_sym_or_eq] = ACTIONS(7097), + [anon_sym_xor_eq] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7095), + [anon_sym_and] = ACTIONS(7095), + [anon_sym_bitor] = ACTIONS(7097), + [anon_sym_xor] = ACTIONS(7095), + [anon_sym_bitand] = ACTIONS(7097), + [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7095), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7097), + [anon_sym_override] = ACTIONS(7097), + [anon_sym_requires] = ACTIONS(7097), + [anon_sym_DASH_GT_STAR] = ACTIONS(7097), + }, + [STATE(2620)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6354), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2621)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6356), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2622)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6361), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2623)] = { + [sym__declaration_modifiers] = STATE(2645), + [sym__declaration_specifiers] = STATE(6369), + [sym_attribute_specifier] = STATE(2645), + [sym_attribute_declaration] = STATE(2645), + [sym_ms_declspec_modifier] = STATE(2645), + [sym_storage_class_specifier] = STATE(2645), + [sym_type_qualifier] = STATE(2645), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3920), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2645), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2624)] = { + [sym_attribute_specifier] = STATE(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_RPAREN] = ACTIONS(7101), + [anon_sym_LPAREN2] = ACTIONS(7101), + [anon_sym_DASH] = ACTIONS(7099), + [anon_sym_PLUS] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_SLASH] = ACTIONS(7099), + [anon_sym_PERCENT] = ACTIONS(7099), + [anon_sym_PIPE_PIPE] = ACTIONS(7101), + [anon_sym_AMP_AMP] = ACTIONS(7101), + [anon_sym_PIPE] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7101), + [anon_sym_BANG_EQ] = ACTIONS(7101), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7101), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7099), + [anon_sym_GT_GT] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7101), + [anon_sym_EQ] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7099), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7101), + [anon_sym__Alignas] = ACTIONS(7101), + [anon_sym_QMARK] = ACTIONS(7101), + [anon_sym_STAR_EQ] = ACTIONS(7101), + [anon_sym_SLASH_EQ] = ACTIONS(7101), + [anon_sym_PERCENT_EQ] = ACTIONS(7101), + [anon_sym_PLUS_EQ] = ACTIONS(7101), + [anon_sym_DASH_EQ] = ACTIONS(7101), + [anon_sym_LT_LT_EQ] = ACTIONS(7101), + [anon_sym_GT_GT_EQ] = ACTIONS(7101), + [anon_sym_AMP_EQ] = ACTIONS(7101), + [anon_sym_CARET_EQ] = ACTIONS(7101), + [anon_sym_PIPE_EQ] = ACTIONS(7101), + [anon_sym_and_eq] = ACTIONS(7101), + [anon_sym_or_eq] = ACTIONS(7101), + [anon_sym_xor_eq] = ACTIONS(7101), + [anon_sym_LT_EQ_GT] = ACTIONS(7101), + [anon_sym_or] = ACTIONS(7099), + [anon_sym_and] = ACTIONS(7099), + [anon_sym_bitor] = ACTIONS(7101), + [anon_sym_xor] = ACTIONS(7099), + [anon_sym_bitand] = ACTIONS(7101), + [anon_sym_not_eq] = ACTIONS(7101), + [anon_sym_DASH_DASH] = ACTIONS(7101), + [anon_sym_PLUS_PLUS] = ACTIONS(7101), + [anon_sym_DOT] = ACTIONS(7099), + [anon_sym_DOT_STAR] = ACTIONS(7101), + [anon_sym_DASH_GT] = ACTIONS(7099), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7101), + [anon_sym_override] = ACTIONS(7101), + [anon_sym_requires] = ACTIONS(7101), + [anon_sym_DASH_GT_STAR] = ACTIONS(7101), + }, + [STATE(2625)] = { + [sym_attribute_specifier] = STATE(2875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), + [anon_sym_COMMA] = ACTIONS(7105), + [anon_sym_RPAREN] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7105), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7103), + [anon_sym_SLASH] = ACTIONS(7103), + [anon_sym_PERCENT] = ACTIONS(7103), + [anon_sym_PIPE_PIPE] = ACTIONS(7105), + [anon_sym_AMP_AMP] = ACTIONS(7105), + [anon_sym_PIPE] = ACTIONS(7103), + [anon_sym_CARET] = ACTIONS(7103), + [anon_sym_AMP] = ACTIONS(7103), + [anon_sym_EQ_EQ] = ACTIONS(7105), + [anon_sym_BANG_EQ] = ACTIONS(7105), + [anon_sym_GT] = ACTIONS(7103), + [anon_sym_GT_EQ] = ACTIONS(7105), + [anon_sym_LT_EQ] = ACTIONS(7103), + [anon_sym_LT] = ACTIONS(7103), + [anon_sym_LT_LT] = ACTIONS(7103), + [anon_sym_GT_GT] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(7105), + [anon_sym___attribute__] = ACTIONS(7813), + [anon_sym___attribute] = ACTIONS(7815), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_EQ] = ACTIONS(7103), + [anon_sym_const] = ACTIONS(7103), + [anon_sym_constexpr] = ACTIONS(7105), + [anon_sym_volatile] = ACTIONS(7105), + [anon_sym_restrict] = ACTIONS(7105), + [anon_sym___restrict__] = ACTIONS(7105), + [anon_sym__Atomic] = ACTIONS(7105), + [anon_sym__Noreturn] = ACTIONS(7105), + [anon_sym_noreturn] = ACTIONS(7105), + [anon_sym__Nonnull] = ACTIONS(7105), + [anon_sym_mutable] = ACTIONS(7105), + [anon_sym_constinit] = ACTIONS(7105), + [anon_sym_consteval] = ACTIONS(7105), + [anon_sym_alignas] = ACTIONS(7105), + [anon_sym__Alignas] = ACTIONS(7105), + [anon_sym_QMARK] = ACTIONS(7105), + [anon_sym_STAR_EQ] = ACTIONS(7105), + [anon_sym_SLASH_EQ] = ACTIONS(7105), + [anon_sym_PERCENT_EQ] = ACTIONS(7105), + [anon_sym_PLUS_EQ] = ACTIONS(7105), + [anon_sym_DASH_EQ] = ACTIONS(7105), + [anon_sym_LT_LT_EQ] = ACTIONS(7105), + [anon_sym_GT_GT_EQ] = ACTIONS(7105), + [anon_sym_AMP_EQ] = ACTIONS(7105), + [anon_sym_CARET_EQ] = ACTIONS(7105), + [anon_sym_PIPE_EQ] = ACTIONS(7105), + [anon_sym_and_eq] = ACTIONS(7105), + [anon_sym_or_eq] = ACTIONS(7105), + [anon_sym_xor_eq] = ACTIONS(7105), + [anon_sym_LT_EQ_GT] = ACTIONS(7105), + [anon_sym_or] = ACTIONS(7103), + [anon_sym_and] = ACTIONS(7103), + [anon_sym_bitor] = ACTIONS(7105), + [anon_sym_xor] = ACTIONS(7103), + [anon_sym_bitand] = ACTIONS(7105), + [anon_sym_not_eq] = ACTIONS(7105), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DOT] = ACTIONS(7103), + [anon_sym_DOT_STAR] = ACTIONS(7105), + [anon_sym_DASH_GT] = ACTIONS(7103), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7105), + [anon_sym_override] = ACTIONS(7105), + [anon_sym_requires] = ACTIONS(7105), + [anon_sym_DASH_GT_STAR] = ACTIONS(7105), + }, + [STATE(2626)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6806), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6806), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6806), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6806), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6806), + [anon_sym_GT_GT] = ACTIONS(6806), + [anon_sym___extension__] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), + [sym_ms_signed_ptr_modifier] = ACTIONS(6808), + [anon_sym__unaligned] = ACTIONS(6808), + [anon_sym___unaligned] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(6806), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6808), + [anon_sym_volatile] = ACTIONS(6808), + [anon_sym_restrict] = ACTIONS(6808), + [anon_sym___restrict__] = ACTIONS(6808), + [anon_sym__Atomic] = ACTIONS(6808), + [anon_sym__Noreturn] = ACTIONS(6808), + [anon_sym_noreturn] = ACTIONS(6808), + [anon_sym__Nonnull] = ACTIONS(6808), + [anon_sym_mutable] = ACTIONS(6808), + [anon_sym_constinit] = ACTIONS(6808), + [anon_sym_consteval] = ACTIONS(6808), + [anon_sym_alignas] = ACTIONS(6808), + [anon_sym__Alignas] = ACTIONS(6808), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_STAR_EQ] = ACTIONS(6808), + [anon_sym_SLASH_EQ] = ACTIONS(6808), + [anon_sym_PERCENT_EQ] = ACTIONS(6808), + [anon_sym_PLUS_EQ] = ACTIONS(6808), + [anon_sym_DASH_EQ] = ACTIONS(6808), + [anon_sym_LT_LT_EQ] = ACTIONS(6808), + [anon_sym_GT_GT_EQ] = ACTIONS(6806), + [anon_sym_AMP_EQ] = ACTIONS(6808), + [anon_sym_CARET_EQ] = ACTIONS(6808), + [anon_sym_PIPE_EQ] = ACTIONS(6808), + [anon_sym_and_eq] = ACTIONS(6808), + [anon_sym_or_eq] = ACTIONS(6808), + [anon_sym_xor_eq] = ACTIONS(6808), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6806), + [anon_sym_and] = ACTIONS(6806), + [anon_sym_bitor] = ACTIONS(6808), + [anon_sym_xor] = ACTIONS(6806), + [anon_sym_bitand] = ACTIONS(6808), + [anon_sym_not_eq] = ACTIONS(6808), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6808), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6808), + [anon_sym_override] = ACTIONS(6808), + [anon_sym_GT2] = ACTIONS(6808), + [anon_sym_requires] = ACTIONS(6808), + }, + [STATE(2627)] = { + [sym_identifier] = ACTIONS(6806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_RPAREN] = ACTIONS(6808), + [aux_sym_preproc_if_token2] = ACTIONS(6808), + [aux_sym_preproc_else_token1] = ACTIONS(6808), + [aux_sym_preproc_elif_token1] = ACTIONS(6806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6808), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6808), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6808), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6808), + [anon_sym_GT_GT] = ACTIONS(6808), + [anon_sym_SEMI] = ACTIONS(6808), + [anon_sym___extension__] = ACTIONS(6806), + [anon_sym___attribute__] = ACTIONS(6806), + [anon_sym___attribute] = ACTIONS(6806), + [anon_sym_COLON] = ACTIONS(6806), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6806), + [sym_ms_signed_ptr_modifier] = ACTIONS(6806), + [anon_sym__unaligned] = ACTIONS(6806), + [anon_sym___unaligned] = ACTIONS(6806), + [anon_sym_RBRACE] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6806), + [anon_sym_volatile] = ACTIONS(6806), + [anon_sym_restrict] = ACTIONS(6806), + [anon_sym___restrict__] = ACTIONS(6806), + [anon_sym__Atomic] = ACTIONS(6806), + [anon_sym__Noreturn] = ACTIONS(6806), + [anon_sym_noreturn] = ACTIONS(6806), + [anon_sym__Nonnull] = ACTIONS(6806), + [anon_sym_mutable] = ACTIONS(6806), + [anon_sym_constinit] = ACTIONS(6806), + [anon_sym_consteval] = ACTIONS(6806), + [anon_sym_alignas] = ACTIONS(6806), + [anon_sym__Alignas] = ACTIONS(6806), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6806), + [anon_sym_and] = ACTIONS(6806), + [anon_sym_bitor] = ACTIONS(6806), + [anon_sym_xor] = ACTIONS(6806), + [anon_sym_bitand] = ACTIONS(6806), + [anon_sym_not_eq] = ACTIONS(6806), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6808), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6806), + [anon_sym_override] = ACTIONS(6806), + [anon_sym_requires] = ACTIONS(6806), + [anon_sym_COLON_RBRACK] = ACTIONS(6808), + }, + [STATE(2628)] = { + [sym_identifier] = ACTIONS(8277), + [aux_sym_preproc_def_token1] = ACTIONS(8277), + [aux_sym_preproc_if_token1] = ACTIONS(8277), + [aux_sym_preproc_if_token2] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), + [aux_sym_preproc_else_token1] = ACTIONS(8277), + [aux_sym_preproc_elif_token1] = ACTIONS(8277), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8277), + [sym_preproc_directive] = ACTIONS(8277), + [anon_sym_LPAREN2] = ACTIONS(8279), + [anon_sym_TILDE] = ACTIONS(8279), + [anon_sym_STAR] = ACTIONS(8279), + [anon_sym_AMP_AMP] = ACTIONS(8279), + [anon_sym_AMP] = ACTIONS(8277), + [anon_sym_SEMI] = ACTIONS(8279), + [anon_sym___extension__] = ACTIONS(8277), + [anon_sym_typedef] = ACTIONS(8277), + [anon_sym_virtual] = ACTIONS(8277), + [anon_sym_extern] = ACTIONS(8277), + [anon_sym___attribute__] = ACTIONS(8277), + [anon_sym___attribute] = ACTIONS(8277), + [anon_sym_using] = ACTIONS(8277), + [anon_sym_COLON_COLON] = ACTIONS(8279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), + [anon_sym___declspec] = ACTIONS(8277), + [anon_sym___based] = ACTIONS(8277), + [anon_sym_signed] = ACTIONS(8277), + [anon_sym_unsigned] = ACTIONS(8277), + [anon_sym_long] = ACTIONS(8277), + [anon_sym_short] = ACTIONS(8277), + [anon_sym_LBRACK] = ACTIONS(8277), + [anon_sym_static] = ACTIONS(8277), + [anon_sym_register] = ACTIONS(8277), + [anon_sym_inline] = ACTIONS(8277), + [anon_sym___inline] = ACTIONS(8277), + [anon_sym___inline__] = ACTIONS(8277), + [anon_sym___forceinline] = ACTIONS(8277), + [anon_sym_thread_local] = ACTIONS(8277), + [anon_sym___thread] = ACTIONS(8277), + [anon_sym_const] = ACTIONS(8277), + [anon_sym_constexpr] = ACTIONS(8277), + [anon_sym_volatile] = ACTIONS(8277), + [anon_sym_restrict] = ACTIONS(8277), + [anon_sym___restrict__] = ACTIONS(8277), + [anon_sym__Atomic] = ACTIONS(8277), + [anon_sym__Noreturn] = ACTIONS(8277), + [anon_sym_noreturn] = ACTIONS(8277), + [anon_sym__Nonnull] = ACTIONS(8277), + [anon_sym_mutable] = ACTIONS(8277), + [anon_sym_constinit] = ACTIONS(8277), + [anon_sym_consteval] = ACTIONS(8277), + [anon_sym_alignas] = ACTIONS(8277), + [anon_sym__Alignas] = ACTIONS(8277), + [sym_primitive_type] = ACTIONS(8277), + [anon_sym_enum] = ACTIONS(8277), + [anon_sym_class] = ACTIONS(8277), + [anon_sym_struct] = ACTIONS(8277), + [anon_sym_union] = ACTIONS(8277), + [anon_sym_typename] = ACTIONS(8277), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8277), + [anon_sym_decltype] = ACTIONS(8277), + [anon_sym_explicit] = ACTIONS(8277), + [anon_sym_private] = ACTIONS(8277), + [anon_sym_template] = ACTIONS(8277), + [anon_sym_operator] = ACTIONS(8277), + [anon_sym_friend] = ACTIONS(8277), + [anon_sym_public] = ACTIONS(8277), + [anon_sym_protected] = ACTIONS(8277), + [anon_sym_static_assert] = ACTIONS(8277), + [anon_sym_LBRACK_COLON] = ACTIONS(8279), + }, + [STATE(2629)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token2] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [aux_sym_preproc_else_token1] = ACTIONS(8281), + [aux_sym_preproc_elif_token1] = ACTIONS(8281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(2630)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token2] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [aux_sym_preproc_else_token1] = ACTIONS(3884), + [aux_sym_preproc_elif_token1] = ACTIONS(3884), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_private] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(3884), + [anon_sym_public] = ACTIONS(3884), + [anon_sym_protected] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + }, + [STATE(2631)] = { + [sym_identifier] = ACTIONS(8285), + [aux_sym_preproc_def_token1] = ACTIONS(8285), + [aux_sym_preproc_if_token1] = ACTIONS(8285), + [aux_sym_preproc_if_token2] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), + [aux_sym_preproc_else_token1] = ACTIONS(8285), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8285), + [sym_preproc_directive] = ACTIONS(8285), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_TILDE] = ACTIONS(8287), + [anon_sym_STAR] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___extension__] = ACTIONS(8285), + [anon_sym_typedef] = ACTIONS(8285), + [anon_sym_virtual] = ACTIONS(8285), + [anon_sym_extern] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_using] = ACTIONS(8285), + [anon_sym_COLON_COLON] = ACTIONS(8287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), + [anon_sym___declspec] = ACTIONS(8285), + [anon_sym___based] = ACTIONS(8285), + [anon_sym_signed] = ACTIONS(8285), + [anon_sym_unsigned] = ACTIONS(8285), + [anon_sym_long] = ACTIONS(8285), + [anon_sym_short] = ACTIONS(8285), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_static] = ACTIONS(8285), + [anon_sym_register] = ACTIONS(8285), + [anon_sym_inline] = ACTIONS(8285), + [anon_sym___inline] = ACTIONS(8285), + [anon_sym___inline__] = ACTIONS(8285), + [anon_sym___forceinline] = ACTIONS(8285), + [anon_sym_thread_local] = ACTIONS(8285), + [anon_sym___thread] = ACTIONS(8285), + [anon_sym_const] = ACTIONS(8285), + [anon_sym_constexpr] = ACTIONS(8285), + [anon_sym_volatile] = ACTIONS(8285), + [anon_sym_restrict] = ACTIONS(8285), + [anon_sym___restrict__] = ACTIONS(8285), + [anon_sym__Atomic] = ACTIONS(8285), + [anon_sym__Noreturn] = ACTIONS(8285), + [anon_sym_noreturn] = ACTIONS(8285), + [anon_sym__Nonnull] = ACTIONS(8285), + [anon_sym_mutable] = ACTIONS(8285), + [anon_sym_constinit] = ACTIONS(8285), + [anon_sym_consteval] = ACTIONS(8285), + [anon_sym_alignas] = ACTIONS(8285), + [anon_sym__Alignas] = ACTIONS(8285), + [sym_primitive_type] = ACTIONS(8285), + [anon_sym_enum] = ACTIONS(8285), + [anon_sym_class] = ACTIONS(8285), + [anon_sym_struct] = ACTIONS(8285), + [anon_sym_union] = ACTIONS(8285), + [anon_sym_typename] = ACTIONS(8285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8285), + [anon_sym_decltype] = ACTIONS(8285), + [anon_sym_explicit] = ACTIONS(8285), + [anon_sym_private] = ACTIONS(8285), + [anon_sym_template] = ACTIONS(8285), + [anon_sym_operator] = ACTIONS(8285), + [anon_sym_friend] = ACTIONS(8285), + [anon_sym_public] = ACTIONS(8285), + [anon_sym_protected] = ACTIONS(8285), + [anon_sym_static_assert] = ACTIONS(8285), + [anon_sym_LBRACK_COLON] = ACTIONS(8287), + }, + [STATE(2632)] = { + [sym_identifier] = ACTIONS(8289), + [aux_sym_preproc_def_token1] = ACTIONS(8289), + [aux_sym_preproc_if_token1] = ACTIONS(8289), + [aux_sym_preproc_if_token2] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), + [aux_sym_preproc_else_token1] = ACTIONS(8289), + [aux_sym_preproc_elif_token1] = ACTIONS(8289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8289), + [sym_preproc_directive] = ACTIONS(8289), + [anon_sym_LPAREN2] = ACTIONS(8291), + [anon_sym_TILDE] = ACTIONS(8291), + [anon_sym_STAR] = ACTIONS(8291), + [anon_sym_AMP_AMP] = ACTIONS(8291), + [anon_sym_AMP] = ACTIONS(8289), + [anon_sym_SEMI] = ACTIONS(8291), + [anon_sym___extension__] = ACTIONS(8289), + [anon_sym_typedef] = ACTIONS(8289), + [anon_sym_virtual] = ACTIONS(8289), + [anon_sym_extern] = ACTIONS(8289), + [anon_sym___attribute__] = ACTIONS(8289), + [anon_sym___attribute] = ACTIONS(8289), + [anon_sym_using] = ACTIONS(8289), + [anon_sym_COLON_COLON] = ACTIONS(8291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), + [anon_sym___declspec] = ACTIONS(8289), + [anon_sym___based] = ACTIONS(8289), + [anon_sym_signed] = ACTIONS(8289), + [anon_sym_unsigned] = ACTIONS(8289), + [anon_sym_long] = ACTIONS(8289), + [anon_sym_short] = ACTIONS(8289), + [anon_sym_LBRACK] = ACTIONS(8289), + [anon_sym_static] = ACTIONS(8289), + [anon_sym_register] = ACTIONS(8289), + [anon_sym_inline] = ACTIONS(8289), + [anon_sym___inline] = ACTIONS(8289), + [anon_sym___inline__] = ACTIONS(8289), + [anon_sym___forceinline] = ACTIONS(8289), + [anon_sym_thread_local] = ACTIONS(8289), + [anon_sym___thread] = ACTIONS(8289), + [anon_sym_const] = ACTIONS(8289), + [anon_sym_constexpr] = ACTIONS(8289), + [anon_sym_volatile] = ACTIONS(8289), + [anon_sym_restrict] = ACTIONS(8289), + [anon_sym___restrict__] = ACTIONS(8289), + [anon_sym__Atomic] = ACTIONS(8289), + [anon_sym__Noreturn] = ACTIONS(8289), + [anon_sym_noreturn] = ACTIONS(8289), + [anon_sym__Nonnull] = ACTIONS(8289), + [anon_sym_mutable] = ACTIONS(8289), + [anon_sym_constinit] = ACTIONS(8289), + [anon_sym_consteval] = ACTIONS(8289), + [anon_sym_alignas] = ACTIONS(8289), + [anon_sym__Alignas] = ACTIONS(8289), + [sym_primitive_type] = ACTIONS(8289), + [anon_sym_enum] = ACTIONS(8289), + [anon_sym_class] = ACTIONS(8289), + [anon_sym_struct] = ACTIONS(8289), + [anon_sym_union] = ACTIONS(8289), + [anon_sym_typename] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8289), + [anon_sym_decltype] = ACTIONS(8289), + [anon_sym_explicit] = ACTIONS(8289), + [anon_sym_private] = ACTIONS(8289), + [anon_sym_template] = ACTIONS(8289), + [anon_sym_operator] = ACTIONS(8289), + [anon_sym_friend] = ACTIONS(8289), + [anon_sym_public] = ACTIONS(8289), + [anon_sym_protected] = ACTIONS(8289), + [anon_sym_static_assert] = ACTIONS(8289), + [anon_sym_LBRACK_COLON] = ACTIONS(8291), + }, + [STATE(2633)] = { + [sym__declaration_modifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(5027), + [sym_attribute_declaration] = STATE(5027), + [sym_ms_declspec_modifier] = STATE(5027), + [sym_storage_class_specifier] = STATE(5027), + [sym_type_qualifier] = STATE(5027), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(6305), + [sym_sized_type_specifier] = STATE(5975), + [sym_enum_specifier] = STATE(5975), + [sym_struct_specifier] = STATE(5975), + [sym_union_specifier] = STATE(5975), + [sym_placeholder_type_specifier] = STATE(5975), + [sym_decltype_auto] = STATE(6020), + [sym_decltype] = STATE(5891), + [sym_class_specifier] = STATE(5975), + [sym_dependent_type] = STATE(5975), + [sym_template_type] = STATE(5264), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8584), + [sym_qualified_type_identifier] = STATE(5495), + [sym_splice_specifier] = STATE(4691), + [sym__splice_specialization_specifier] = STATE(5263), + [sym_splice_type_specifier] = STATE(5891), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(5027), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(4772), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8293), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(4780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(4782), + [anon_sym_unsigned] = ACTIONS(4782), + [anon_sym_long] = ACTIONS(4782), + [anon_sym_short] = ACTIONS(4782), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4784), + [anon_sym_enum] = ACTIONS(4786), + [anon_sym_class] = ACTIONS(4788), + [anon_sym_struct] = ACTIONS(4790), + [anon_sym_union] = ACTIONS(4792), + [anon_sym_typename] = ACTIONS(4794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4796), + [anon_sym_decltype] = ACTIONS(4798), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2634)] = { + [sym_type_qualifier] = STATE(2678), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2678), + [aux_sym_sized_type_specifier_repeat1] = STATE(3046), + [sym_identifier] = ACTIONS(8295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(8297), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8300), + [anon_sym_unsigned] = ACTIONS(8300), + [anon_sym_long] = ACTIONS(8300), + [anon_sym_short] = ACTIONS(8300), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(8297), + [anon_sym_constexpr] = ACTIONS(8297), + [anon_sym_volatile] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8297), + [anon_sym___restrict__] = ACTIONS(8297), + [anon_sym__Atomic] = ACTIONS(8297), + [anon_sym__Noreturn] = ACTIONS(8297), + [anon_sym_noreturn] = ACTIONS(8297), + [anon_sym__Nonnull] = ACTIONS(8297), + [anon_sym_mutable] = ACTIONS(8297), + [anon_sym_constinit] = ACTIONS(8297), + [anon_sym_consteval] = ACTIONS(8297), + [anon_sym_alignas] = ACTIONS(8302), + [anon_sym__Alignas] = ACTIONS(8302), + [sym_primitive_type] = ACTIONS(8305), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + [anon_sym_COLON_RBRACK] = ACTIONS(6812), + }, + [STATE(2635)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(2721), + [sym__declarator] = STATE(8686), + [sym__abstract_declarator] = STATE(8911), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3699), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5185), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3699), + [aux_sym_pointer_declarator_repeat1] = STATE(2721), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8307), + [anon_sym_AMP_AMP] = ACTIONS(8309), + [anon_sym_AMP] = ACTIONS(8311), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6457), + [anon_sym___attribute] = ACTIONS(6457), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6459), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2636)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [aux_sym_preproc_else_token1] = ACTIONS(4096), + [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_private] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_friend] = ACTIONS(4096), + [anon_sym_public] = ACTIONS(4096), + [anon_sym_protected] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + }, + [STATE(2637)] = { + [sym_identifier] = ACTIONS(8313), + [aux_sym_preproc_def_token1] = ACTIONS(8313), + [aux_sym_preproc_if_token1] = ACTIONS(8313), + [aux_sym_preproc_if_token2] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), + [aux_sym_preproc_else_token1] = ACTIONS(8313), + [aux_sym_preproc_elif_token1] = ACTIONS(8313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8313), + [sym_preproc_directive] = ACTIONS(8313), + [anon_sym_LPAREN2] = ACTIONS(8315), + [anon_sym_TILDE] = ACTIONS(8315), + [anon_sym_STAR] = ACTIONS(8315), + [anon_sym_AMP_AMP] = ACTIONS(8315), + [anon_sym_AMP] = ACTIONS(8313), + [anon_sym_SEMI] = ACTIONS(8315), + [anon_sym___extension__] = ACTIONS(8313), + [anon_sym_typedef] = ACTIONS(8313), + [anon_sym_virtual] = ACTIONS(8313), + [anon_sym_extern] = ACTIONS(8313), + [anon_sym___attribute__] = ACTIONS(8313), + [anon_sym___attribute] = ACTIONS(8313), + [anon_sym_using] = ACTIONS(8313), + [anon_sym_COLON_COLON] = ACTIONS(8315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), + [anon_sym___declspec] = ACTIONS(8313), + [anon_sym___based] = ACTIONS(8313), + [anon_sym_signed] = ACTIONS(8313), + [anon_sym_unsigned] = ACTIONS(8313), + [anon_sym_long] = ACTIONS(8313), + [anon_sym_short] = ACTIONS(8313), + [anon_sym_LBRACK] = ACTIONS(8313), + [anon_sym_static] = ACTIONS(8313), + [anon_sym_register] = ACTIONS(8313), + [anon_sym_inline] = ACTIONS(8313), + [anon_sym___inline] = ACTIONS(8313), + [anon_sym___inline__] = ACTIONS(8313), + [anon_sym___forceinline] = ACTIONS(8313), + [anon_sym_thread_local] = ACTIONS(8313), + [anon_sym___thread] = ACTIONS(8313), + [anon_sym_const] = ACTIONS(8313), + [anon_sym_constexpr] = ACTIONS(8313), + [anon_sym_volatile] = ACTIONS(8313), + [anon_sym_restrict] = ACTIONS(8313), + [anon_sym___restrict__] = ACTIONS(8313), + [anon_sym__Atomic] = ACTIONS(8313), + [anon_sym__Noreturn] = ACTIONS(8313), + [anon_sym_noreturn] = ACTIONS(8313), + [anon_sym__Nonnull] = ACTIONS(8313), + [anon_sym_mutable] = ACTIONS(8313), + [anon_sym_constinit] = ACTIONS(8313), + [anon_sym_consteval] = ACTIONS(8313), + [anon_sym_alignas] = ACTIONS(8313), + [anon_sym__Alignas] = ACTIONS(8313), + [sym_primitive_type] = ACTIONS(8313), + [anon_sym_enum] = ACTIONS(8313), + [anon_sym_class] = ACTIONS(8313), + [anon_sym_struct] = ACTIONS(8313), + [anon_sym_union] = ACTIONS(8313), + [anon_sym_typename] = ACTIONS(8313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8313), + [anon_sym_decltype] = ACTIONS(8313), + [anon_sym_explicit] = ACTIONS(8313), + [anon_sym_private] = ACTIONS(8313), + [anon_sym_template] = ACTIONS(8313), + [anon_sym_operator] = ACTIONS(8313), + [anon_sym_friend] = ACTIONS(8313), + [anon_sym_public] = ACTIONS(8313), + [anon_sym_protected] = ACTIONS(8313), + [anon_sym_static_assert] = ACTIONS(8313), + [anon_sym_LBRACK_COLON] = ACTIONS(8315), + }, + [STATE(2638)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token2] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [aux_sym_preproc_else_token1] = ACTIONS(4100), + [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_private] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_friend] = ACTIONS(4100), + [anon_sym_public] = ACTIONS(4100), + [anon_sym_protected] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + }, + [STATE(2639)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [anon_sym_RPAREN] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6272), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6272), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6272), + [anon_sym___based] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_signed] = ACTIONS(6270), + [anon_sym_unsigned] = ACTIONS(6270), + [anon_sym_long] = ACTIONS(6270), + [anon_sym_short] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [sym_primitive_type] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_final] = ACTIONS(6270), + [anon_sym_override] = ACTIONS(6270), + [anon_sym_requires] = ACTIONS(6270), + [anon_sym_COLON_RBRACK] = ACTIONS(6272), + }, + [STATE(2640)] = { + [sym_identifier] = ACTIONS(8317), + [aux_sym_preproc_def_token1] = ACTIONS(8317), + [aux_sym_preproc_if_token1] = ACTIONS(8317), + [aux_sym_preproc_if_token2] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), + [aux_sym_preproc_else_token1] = ACTIONS(8317), + [aux_sym_preproc_elif_token1] = ACTIONS(8317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8317), + [sym_preproc_directive] = ACTIONS(8317), + [anon_sym_LPAREN2] = ACTIONS(8319), + [anon_sym_TILDE] = ACTIONS(8319), + [anon_sym_STAR] = ACTIONS(8319), + [anon_sym_AMP_AMP] = ACTIONS(8319), + [anon_sym_AMP] = ACTIONS(8317), + [anon_sym_SEMI] = ACTIONS(8319), + [anon_sym___extension__] = ACTIONS(8317), + [anon_sym_typedef] = ACTIONS(8317), + [anon_sym_virtual] = ACTIONS(8317), + [anon_sym_extern] = ACTIONS(8317), + [anon_sym___attribute__] = ACTIONS(8317), + [anon_sym___attribute] = ACTIONS(8317), + [anon_sym_using] = ACTIONS(8317), + [anon_sym_COLON_COLON] = ACTIONS(8319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), + [anon_sym___declspec] = ACTIONS(8317), + [anon_sym___based] = ACTIONS(8317), + [anon_sym_signed] = ACTIONS(8317), + [anon_sym_unsigned] = ACTIONS(8317), + [anon_sym_long] = ACTIONS(8317), + [anon_sym_short] = ACTIONS(8317), + [anon_sym_LBRACK] = ACTIONS(8317), + [anon_sym_static] = ACTIONS(8317), + [anon_sym_register] = ACTIONS(8317), + [anon_sym_inline] = ACTIONS(8317), + [anon_sym___inline] = ACTIONS(8317), + [anon_sym___inline__] = ACTIONS(8317), + [anon_sym___forceinline] = ACTIONS(8317), + [anon_sym_thread_local] = ACTIONS(8317), + [anon_sym___thread] = ACTIONS(8317), + [anon_sym_const] = ACTIONS(8317), + [anon_sym_constexpr] = ACTIONS(8317), + [anon_sym_volatile] = ACTIONS(8317), + [anon_sym_restrict] = ACTIONS(8317), + [anon_sym___restrict__] = ACTIONS(8317), + [anon_sym__Atomic] = ACTIONS(8317), + [anon_sym__Noreturn] = ACTIONS(8317), + [anon_sym_noreturn] = ACTIONS(8317), + [anon_sym__Nonnull] = ACTIONS(8317), + [anon_sym_mutable] = ACTIONS(8317), + [anon_sym_constinit] = ACTIONS(8317), + [anon_sym_consteval] = ACTIONS(8317), + [anon_sym_alignas] = ACTIONS(8317), + [anon_sym__Alignas] = ACTIONS(8317), + [sym_primitive_type] = ACTIONS(8317), + [anon_sym_enum] = ACTIONS(8317), + [anon_sym_class] = ACTIONS(8317), + [anon_sym_struct] = ACTIONS(8317), + [anon_sym_union] = ACTIONS(8317), + [anon_sym_typename] = ACTIONS(8317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8317), + [anon_sym_decltype] = ACTIONS(8317), + [anon_sym_explicit] = ACTIONS(8317), + [anon_sym_private] = ACTIONS(8317), + [anon_sym_template] = ACTIONS(8317), + [anon_sym_operator] = ACTIONS(8317), + [anon_sym_friend] = ACTIONS(8317), + [anon_sym_public] = ACTIONS(8317), + [anon_sym_protected] = ACTIONS(8317), + [anon_sym_static_assert] = ACTIONS(8317), + [anon_sym_LBRACK_COLON] = ACTIONS(8319), + }, + [STATE(2641)] = { + [sym_decltype_auto] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8266), + [anon_sym_decltype] = ACTIONS(6680), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2642)] = { + [sym_attribute_specifier] = STATE(3089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_LPAREN2] = ACTIONS(7089), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7087), + [anon_sym_PERCENT] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7089), + [anon_sym_AMP_AMP] = ACTIONS(7089), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7089), + [anon_sym_BANG_EQ] = ACTIONS(7089), + [anon_sym_GT] = ACTIONS(7087), + [anon_sym_GT_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ] = ACTIONS(7087), + [anon_sym_LT] = ACTIONS(7087), + [anon_sym_LT_LT] = ACTIONS(7087), + [anon_sym_GT_GT] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7087), + [anon_sym_const] = ACTIONS(7087), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(7089), + [anon_sym__Alignas] = ACTIONS(7089), + [anon_sym_QMARK] = ACTIONS(7089), + [anon_sym_STAR_EQ] = ACTIONS(7089), + [anon_sym_SLASH_EQ] = ACTIONS(7089), + [anon_sym_PERCENT_EQ] = ACTIONS(7089), + [anon_sym_PLUS_EQ] = ACTIONS(7089), + [anon_sym_DASH_EQ] = ACTIONS(7089), + [anon_sym_LT_LT_EQ] = ACTIONS(7089), + [anon_sym_GT_GT_EQ] = ACTIONS(7087), + [anon_sym_AMP_EQ] = ACTIONS(7089), + [anon_sym_CARET_EQ] = ACTIONS(7089), + [anon_sym_PIPE_EQ] = ACTIONS(7089), + [anon_sym_and_eq] = ACTIONS(7089), + [anon_sym_or_eq] = ACTIONS(7089), + [anon_sym_xor_eq] = ACTIONS(7089), + [anon_sym_LT_EQ_GT] = ACTIONS(7089), + [anon_sym_or] = ACTIONS(7087), + [anon_sym_and] = ACTIONS(7087), + [anon_sym_bitor] = ACTIONS(7089), + [anon_sym_xor] = ACTIONS(7087), + [anon_sym_bitand] = ACTIONS(7089), + [anon_sym_not_eq] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7087), + [anon_sym_DOT_STAR] = ACTIONS(7089), + [anon_sym_DASH_GT] = ACTIONS(7089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7089), + [anon_sym_override] = ACTIONS(7089), + [anon_sym_GT2] = ACTIONS(7089), + [anon_sym_requires] = ACTIONS(7089), + }, + [STATE(2643)] = { + [sym_attribute_specifier] = STATE(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_LPAREN2] = ACTIONS(7089), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7087), + [anon_sym_PERCENT] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7089), + [anon_sym_AMP_AMP] = ACTIONS(7089), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7089), + [anon_sym_BANG_EQ] = ACTIONS(7089), + [anon_sym_GT] = ACTIONS(7087), + [anon_sym_GT_EQ] = ACTIONS(7089), + [anon_sym_LT_EQ] = ACTIONS(7087), + [anon_sym_LT] = ACTIONS(7087), + [anon_sym_LT_LT] = ACTIONS(7087), + [anon_sym_GT_GT] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_RBRACK] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7087), + [anon_sym_const] = ACTIONS(7087), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(7089), + [anon_sym__Alignas] = ACTIONS(7089), + [anon_sym_QMARK] = ACTIONS(7089), + [anon_sym_STAR_EQ] = ACTIONS(7089), + [anon_sym_SLASH_EQ] = ACTIONS(7089), + [anon_sym_PERCENT_EQ] = ACTIONS(7089), + [anon_sym_PLUS_EQ] = ACTIONS(7089), + [anon_sym_DASH_EQ] = ACTIONS(7089), + [anon_sym_LT_LT_EQ] = ACTIONS(7089), + [anon_sym_GT_GT_EQ] = ACTIONS(7089), + [anon_sym_AMP_EQ] = ACTIONS(7089), + [anon_sym_CARET_EQ] = ACTIONS(7089), + [anon_sym_PIPE_EQ] = ACTIONS(7089), + [anon_sym_and_eq] = ACTIONS(7089), + [anon_sym_or_eq] = ACTIONS(7089), + [anon_sym_xor_eq] = ACTIONS(7089), + [anon_sym_LT_EQ_GT] = ACTIONS(7089), + [anon_sym_or] = ACTIONS(7087), + [anon_sym_and] = ACTIONS(7087), + [anon_sym_bitor] = ACTIONS(7089), + [anon_sym_xor] = ACTIONS(7087), + [anon_sym_bitand] = ACTIONS(7089), + [anon_sym_not_eq] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7087), + [anon_sym_DOT_STAR] = ACTIONS(7089), + [anon_sym_DASH_GT] = ACTIONS(7089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7089), + [anon_sym_override] = ACTIONS(7089), + [anon_sym_requires] = ACTIONS(7089), + }, + [STATE(2644)] = { + [sym_attribute_specifier] = STATE(3028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_RBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + }, + [STATE(2645)] = { + [sym__declaration_modifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(5027), + [sym_attribute_declaration] = STATE(5027), + [sym_ms_declspec_modifier] = STATE(5027), + [sym_storage_class_specifier] = STATE(5027), + [sym_type_qualifier] = STATE(5027), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3936), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(5027), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8293), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2646)] = { + [sym_identifier] = ACTIONS(8321), + [aux_sym_preproc_def_token1] = ACTIONS(8321), + [aux_sym_preproc_if_token1] = ACTIONS(8321), + [aux_sym_preproc_if_token2] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), + [aux_sym_preproc_else_token1] = ACTIONS(8321), + [aux_sym_preproc_elif_token1] = ACTIONS(8321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8321), + [sym_preproc_directive] = ACTIONS(8321), + [anon_sym_LPAREN2] = ACTIONS(8323), + [anon_sym_TILDE] = ACTIONS(8323), + [anon_sym_STAR] = ACTIONS(8323), + [anon_sym_AMP_AMP] = ACTIONS(8323), + [anon_sym_AMP] = ACTIONS(8321), + [anon_sym_SEMI] = ACTIONS(8323), + [anon_sym___extension__] = ACTIONS(8321), + [anon_sym_typedef] = ACTIONS(8321), + [anon_sym_virtual] = ACTIONS(8321), + [anon_sym_extern] = ACTIONS(8321), + [anon_sym___attribute__] = ACTIONS(8321), + [anon_sym___attribute] = ACTIONS(8321), + [anon_sym_using] = ACTIONS(8321), + [anon_sym_COLON_COLON] = ACTIONS(8323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), + [anon_sym___declspec] = ACTIONS(8321), + [anon_sym___based] = ACTIONS(8321), + [anon_sym_signed] = ACTIONS(8321), + [anon_sym_unsigned] = ACTIONS(8321), + [anon_sym_long] = ACTIONS(8321), + [anon_sym_short] = ACTIONS(8321), + [anon_sym_LBRACK] = ACTIONS(8321), + [anon_sym_static] = ACTIONS(8321), + [anon_sym_register] = ACTIONS(8321), + [anon_sym_inline] = ACTIONS(8321), + [anon_sym___inline] = ACTIONS(8321), + [anon_sym___inline__] = ACTIONS(8321), + [anon_sym___forceinline] = ACTIONS(8321), + [anon_sym_thread_local] = ACTIONS(8321), + [anon_sym___thread] = ACTIONS(8321), + [anon_sym_const] = ACTIONS(8321), + [anon_sym_constexpr] = ACTIONS(8321), + [anon_sym_volatile] = ACTIONS(8321), + [anon_sym_restrict] = ACTIONS(8321), + [anon_sym___restrict__] = ACTIONS(8321), + [anon_sym__Atomic] = ACTIONS(8321), + [anon_sym__Noreturn] = ACTIONS(8321), + [anon_sym_noreturn] = ACTIONS(8321), + [anon_sym__Nonnull] = ACTIONS(8321), + [anon_sym_mutable] = ACTIONS(8321), + [anon_sym_constinit] = ACTIONS(8321), + [anon_sym_consteval] = ACTIONS(8321), + [anon_sym_alignas] = ACTIONS(8321), + [anon_sym__Alignas] = ACTIONS(8321), + [sym_primitive_type] = ACTIONS(8321), + [anon_sym_enum] = ACTIONS(8321), + [anon_sym_class] = ACTIONS(8321), + [anon_sym_struct] = ACTIONS(8321), + [anon_sym_union] = ACTIONS(8321), + [anon_sym_typename] = ACTIONS(8321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8321), + [anon_sym_decltype] = ACTIONS(8321), + [anon_sym_explicit] = ACTIONS(8321), + [anon_sym_private] = ACTIONS(8321), + [anon_sym_template] = ACTIONS(8321), + [anon_sym_operator] = ACTIONS(8321), + [anon_sym_friend] = ACTIONS(8321), + [anon_sym_public] = ACTIONS(8321), + [anon_sym_protected] = ACTIONS(8321), + [anon_sym_static_assert] = ACTIONS(8321), + [anon_sym_LBRACK_COLON] = ACTIONS(8323), + }, + [STATE(2647)] = { + [sym_identifier] = ACTIONS(8325), + [aux_sym_preproc_def_token1] = ACTIONS(8325), + [aux_sym_preproc_if_token1] = ACTIONS(8325), + [aux_sym_preproc_if_token2] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), + [aux_sym_preproc_else_token1] = ACTIONS(8325), + [aux_sym_preproc_elif_token1] = ACTIONS(8325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8325), + [sym_preproc_directive] = ACTIONS(8325), + [anon_sym_LPAREN2] = ACTIONS(8327), + [anon_sym_TILDE] = ACTIONS(8327), + [anon_sym_STAR] = ACTIONS(8327), + [anon_sym_AMP_AMP] = ACTIONS(8327), + [anon_sym_AMP] = ACTIONS(8325), + [anon_sym_SEMI] = ACTIONS(8327), + [anon_sym___extension__] = ACTIONS(8325), + [anon_sym_typedef] = ACTIONS(8325), + [anon_sym_virtual] = ACTIONS(8325), + [anon_sym_extern] = ACTIONS(8325), + [anon_sym___attribute__] = ACTIONS(8325), + [anon_sym___attribute] = ACTIONS(8325), + [anon_sym_using] = ACTIONS(8325), + [anon_sym_COLON_COLON] = ACTIONS(8327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), + [anon_sym___declspec] = ACTIONS(8325), + [anon_sym___based] = ACTIONS(8325), + [anon_sym_signed] = ACTIONS(8325), + [anon_sym_unsigned] = ACTIONS(8325), + [anon_sym_long] = ACTIONS(8325), + [anon_sym_short] = ACTIONS(8325), + [anon_sym_LBRACK] = ACTIONS(8325), + [anon_sym_static] = ACTIONS(8325), + [anon_sym_register] = ACTIONS(8325), + [anon_sym_inline] = ACTIONS(8325), + [anon_sym___inline] = ACTIONS(8325), + [anon_sym___inline__] = ACTIONS(8325), + [anon_sym___forceinline] = ACTIONS(8325), + [anon_sym_thread_local] = ACTIONS(8325), + [anon_sym___thread] = ACTIONS(8325), + [anon_sym_const] = ACTIONS(8325), + [anon_sym_constexpr] = ACTIONS(8325), + [anon_sym_volatile] = ACTIONS(8325), + [anon_sym_restrict] = ACTIONS(8325), + [anon_sym___restrict__] = ACTIONS(8325), + [anon_sym__Atomic] = ACTIONS(8325), + [anon_sym__Noreturn] = ACTIONS(8325), + [anon_sym_noreturn] = ACTIONS(8325), + [anon_sym__Nonnull] = ACTIONS(8325), + [anon_sym_mutable] = ACTIONS(8325), + [anon_sym_constinit] = ACTIONS(8325), + [anon_sym_consteval] = ACTIONS(8325), + [anon_sym_alignas] = ACTIONS(8325), + [anon_sym__Alignas] = ACTIONS(8325), + [sym_primitive_type] = ACTIONS(8325), + [anon_sym_enum] = ACTIONS(8325), + [anon_sym_class] = ACTIONS(8325), + [anon_sym_struct] = ACTIONS(8325), + [anon_sym_union] = ACTIONS(8325), + [anon_sym_typename] = ACTIONS(8325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8325), + [anon_sym_decltype] = ACTIONS(8325), + [anon_sym_explicit] = ACTIONS(8325), + [anon_sym_private] = ACTIONS(8325), + [anon_sym_template] = ACTIONS(8325), + [anon_sym_operator] = ACTIONS(8325), + [anon_sym_friend] = ACTIONS(8325), + [anon_sym_public] = ACTIONS(8325), + [anon_sym_protected] = ACTIONS(8325), + [anon_sym_static_assert] = ACTIONS(8325), + [anon_sym_LBRACK_COLON] = ACTIONS(8327), + }, + [STATE(2648)] = { + [sym_identifier] = ACTIONS(8329), + [aux_sym_preproc_def_token1] = ACTIONS(8329), + [aux_sym_preproc_if_token1] = ACTIONS(8329), + [aux_sym_preproc_if_token2] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), + [aux_sym_preproc_else_token1] = ACTIONS(8329), + [aux_sym_preproc_elif_token1] = ACTIONS(8329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8329), + [sym_preproc_directive] = ACTIONS(8329), + [anon_sym_LPAREN2] = ACTIONS(8331), + [anon_sym_TILDE] = ACTIONS(8331), + [anon_sym_STAR] = ACTIONS(8331), + [anon_sym_AMP_AMP] = ACTIONS(8331), + [anon_sym_AMP] = ACTIONS(8329), + [anon_sym_SEMI] = ACTIONS(8331), + [anon_sym___extension__] = ACTIONS(8329), + [anon_sym_typedef] = ACTIONS(8329), + [anon_sym_virtual] = ACTIONS(8329), + [anon_sym_extern] = ACTIONS(8329), + [anon_sym___attribute__] = ACTIONS(8329), + [anon_sym___attribute] = ACTIONS(8329), + [anon_sym_using] = ACTIONS(8329), + [anon_sym_COLON_COLON] = ACTIONS(8331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), + [anon_sym___declspec] = ACTIONS(8329), + [anon_sym___based] = ACTIONS(8329), + [anon_sym_signed] = ACTIONS(8329), + [anon_sym_unsigned] = ACTIONS(8329), + [anon_sym_long] = ACTIONS(8329), + [anon_sym_short] = ACTIONS(8329), + [anon_sym_LBRACK] = ACTIONS(8329), + [anon_sym_static] = ACTIONS(8329), + [anon_sym_register] = ACTIONS(8329), + [anon_sym_inline] = ACTIONS(8329), + [anon_sym___inline] = ACTIONS(8329), + [anon_sym___inline__] = ACTIONS(8329), + [anon_sym___forceinline] = ACTIONS(8329), + [anon_sym_thread_local] = ACTIONS(8329), + [anon_sym___thread] = ACTIONS(8329), + [anon_sym_const] = ACTIONS(8329), + [anon_sym_constexpr] = ACTIONS(8329), + [anon_sym_volatile] = ACTIONS(8329), + [anon_sym_restrict] = ACTIONS(8329), + [anon_sym___restrict__] = ACTIONS(8329), + [anon_sym__Atomic] = ACTIONS(8329), + [anon_sym__Noreturn] = ACTIONS(8329), + [anon_sym_noreturn] = ACTIONS(8329), + [anon_sym__Nonnull] = ACTIONS(8329), + [anon_sym_mutable] = ACTIONS(8329), + [anon_sym_constinit] = ACTIONS(8329), + [anon_sym_consteval] = ACTIONS(8329), + [anon_sym_alignas] = ACTIONS(8329), + [anon_sym__Alignas] = ACTIONS(8329), + [sym_primitive_type] = ACTIONS(8329), + [anon_sym_enum] = ACTIONS(8329), + [anon_sym_class] = ACTIONS(8329), + [anon_sym_struct] = ACTIONS(8329), + [anon_sym_union] = ACTIONS(8329), + [anon_sym_typename] = ACTIONS(8329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8329), + [anon_sym_decltype] = ACTIONS(8329), + [anon_sym_explicit] = ACTIONS(8329), + [anon_sym_private] = ACTIONS(8329), + [anon_sym_template] = ACTIONS(8329), + [anon_sym_operator] = ACTIONS(8329), + [anon_sym_friend] = ACTIONS(8329), + [anon_sym_public] = ACTIONS(8329), + [anon_sym_protected] = ACTIONS(8329), + [anon_sym_static_assert] = ACTIONS(8329), + [anon_sym_LBRACK_COLON] = ACTIONS(8331), + }, + [STATE(2649)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token2] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [aux_sym_preproc_else_token1] = ACTIONS(8333), + [aux_sym_preproc_elif_token1] = ACTIONS(8333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(2650)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [aux_sym_preproc_else_token1] = ACTIONS(8337), + [aux_sym_preproc_elif_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(2651)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2423), + [sym__abstract_declarator] = STATE(6430), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [aux_sym_pointer_declarator_repeat1] = STATE(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2652)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [aux_sym_preproc_else_token1] = ACTIONS(8337), + [aux_sym_preproc_elif_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(2653)] = { + [sym_attribute_specifier] = STATE(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7091), + [anon_sym_SLASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_PIPE_PIPE] = ACTIONS(7093), + [anon_sym_AMP_AMP] = ACTIONS(7093), + [anon_sym_PIPE] = ACTIONS(7091), + [anon_sym_CARET] = ACTIONS(7091), + [anon_sym_AMP] = ACTIONS(7091), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_GT] = ACTIONS(7091), + [anon_sym_GT_EQ] = ACTIONS(7091), + [anon_sym_LT_EQ] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(7091), + [anon_sym_LT_LT] = ACTIONS(7091), + [anon_sym_GT_GT] = ACTIONS(7091), + [anon_sym___extension__] = ACTIONS(7093), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_const] = ACTIONS(7091), + [anon_sym_constexpr] = ACTIONS(7093), + [anon_sym_volatile] = ACTIONS(7093), + [anon_sym_restrict] = ACTIONS(7093), + [anon_sym___restrict__] = ACTIONS(7093), + [anon_sym__Atomic] = ACTIONS(7093), + [anon_sym__Noreturn] = ACTIONS(7093), + [anon_sym_noreturn] = ACTIONS(7093), + [anon_sym__Nonnull] = ACTIONS(7093), + [anon_sym_mutable] = ACTIONS(7093), + [anon_sym_constinit] = ACTIONS(7093), + [anon_sym_consteval] = ACTIONS(7093), + [anon_sym_alignas] = ACTIONS(7093), + [anon_sym__Alignas] = ACTIONS(7093), + [anon_sym_QMARK] = ACTIONS(7093), + [anon_sym_STAR_EQ] = ACTIONS(7093), + [anon_sym_SLASH_EQ] = ACTIONS(7093), + [anon_sym_PERCENT_EQ] = ACTIONS(7093), + [anon_sym_PLUS_EQ] = ACTIONS(7093), + [anon_sym_DASH_EQ] = ACTIONS(7093), + [anon_sym_LT_LT_EQ] = ACTIONS(7093), + [anon_sym_GT_GT_EQ] = ACTIONS(7091), + [anon_sym_AMP_EQ] = ACTIONS(7093), + [anon_sym_CARET_EQ] = ACTIONS(7093), + [anon_sym_PIPE_EQ] = ACTIONS(7093), + [anon_sym_and_eq] = ACTIONS(7093), + [anon_sym_or_eq] = ACTIONS(7093), + [anon_sym_xor_eq] = ACTIONS(7093), + [anon_sym_LT_EQ_GT] = ACTIONS(7093), + [anon_sym_or] = ACTIONS(7091), + [anon_sym_and] = ACTIONS(7091), + [anon_sym_bitor] = ACTIONS(7093), + [anon_sym_xor] = ACTIONS(7091), + [anon_sym_bitand] = ACTIONS(7093), + [anon_sym_not_eq] = ACTIONS(7093), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DOT] = ACTIONS(7091), + [anon_sym_DOT_STAR] = ACTIONS(7093), + [anon_sym_DASH_GT] = ACTIONS(7093), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7093), + [anon_sym_override] = ACTIONS(7093), + [anon_sym_GT2] = ACTIONS(7093), + [anon_sym_requires] = ACTIONS(7093), + }, + [STATE(2654)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2792), + [sym_ms_pointer_modifier] = STATE(2651), + [sym__abstract_declarator] = STATE(6428), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3657), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3657), + [aux_sym_pointer_declarator_repeat1] = STATE(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6459), + [anon_sym___attribute] = ACTIONS(6457), + [sym_ms_restrict_modifier] = ACTIONS(7741), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), + [sym_ms_signed_ptr_modifier] = ACTIONS(7780), + [anon_sym__unaligned] = ACTIONS(7782), + [anon_sym___unaligned] = ACTIONS(7782), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(2655)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym_SEMI] = ACTIONS(6228), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6228), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6237), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + }, + [STATE(2656)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [aux_sym_preproc_else_token1] = ACTIONS(8337), + [aux_sym_preproc_elif_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(2657)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token2] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [aux_sym_preproc_else_token1] = ACTIONS(8333), + [aux_sym_preproc_elif_token1] = ACTIONS(8333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(2658)] = { + [sym_attribute_specifier] = STATE(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(7095), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7095), + [anon_sym_PERCENT] = ACTIONS(7095), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7095), + [anon_sym_CARET] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7095), + [anon_sym_GT_EQ] = ACTIONS(7095), + [anon_sym_LT_EQ] = ACTIONS(7095), + [anon_sym_LT] = ACTIONS(7095), + [anon_sym_LT_LT] = ACTIONS(7095), + [anon_sym_GT_GT] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7095), + [anon_sym_const] = ACTIONS(7095), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_mutable] = ACTIONS(7097), + [anon_sym_constinit] = ACTIONS(7097), + [anon_sym_consteval] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7095), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7097), + [anon_sym_or_eq] = ACTIONS(7097), + [anon_sym_xor_eq] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7095), + [anon_sym_and] = ACTIONS(7095), + [anon_sym_bitor] = ACTIONS(7097), + [anon_sym_xor] = ACTIONS(7095), + [anon_sym_bitand] = ACTIONS(7097), + [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7097), + [anon_sym_override] = ACTIONS(7097), + [anon_sym_GT2] = ACTIONS(7097), + [anon_sym_requires] = ACTIONS(7097), + }, + [STATE(2659)] = { + [sym_attribute_specifier] = STATE(3044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), + [anon_sym_COMMA] = ACTIONS(7055), + [anon_sym_LPAREN2] = ACTIONS(7055), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_STAR] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_PIPE_PIPE] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7055), + [anon_sym_PIPE] = ACTIONS(7053), + [anon_sym_CARET] = ACTIONS(7053), + [anon_sym_AMP] = ACTIONS(7053), + [anon_sym_EQ_EQ] = ACTIONS(7055), + [anon_sym_BANG_EQ] = ACTIONS(7055), + [anon_sym_GT] = ACTIONS(7053), + [anon_sym_GT_EQ] = ACTIONS(7055), + [anon_sym_LT_EQ] = ACTIONS(7053), + [anon_sym_LT] = ACTIONS(7053), + [anon_sym_LT_LT] = ACTIONS(7053), + [anon_sym_GT_GT] = ACTIONS(7053), + [anon_sym___extension__] = ACTIONS(7055), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7055), + [anon_sym_RBRACK] = ACTIONS(7055), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_const] = ACTIONS(7053), + [anon_sym_constexpr] = ACTIONS(7055), + [anon_sym_volatile] = ACTIONS(7055), + [anon_sym_restrict] = ACTIONS(7055), + [anon_sym___restrict__] = ACTIONS(7055), + [anon_sym__Atomic] = ACTIONS(7055), + [anon_sym__Noreturn] = ACTIONS(7055), + [anon_sym_noreturn] = ACTIONS(7055), + [anon_sym__Nonnull] = ACTIONS(7055), + [anon_sym_mutable] = ACTIONS(7055), + [anon_sym_constinit] = ACTIONS(7055), + [anon_sym_consteval] = ACTIONS(7055), + [anon_sym_alignas] = ACTIONS(7055), + [anon_sym__Alignas] = ACTIONS(7055), + [anon_sym_QMARK] = ACTIONS(7055), + [anon_sym_STAR_EQ] = ACTIONS(7055), + [anon_sym_SLASH_EQ] = ACTIONS(7055), + [anon_sym_PERCENT_EQ] = ACTIONS(7055), + [anon_sym_PLUS_EQ] = ACTIONS(7055), + [anon_sym_DASH_EQ] = ACTIONS(7055), + [anon_sym_LT_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_GT_EQ] = ACTIONS(7055), + [anon_sym_AMP_EQ] = ACTIONS(7055), + [anon_sym_CARET_EQ] = ACTIONS(7055), + [anon_sym_PIPE_EQ] = ACTIONS(7055), + [anon_sym_and_eq] = ACTIONS(7055), + [anon_sym_or_eq] = ACTIONS(7055), + [anon_sym_xor_eq] = ACTIONS(7055), + [anon_sym_LT_EQ_GT] = ACTIONS(7055), + [anon_sym_or] = ACTIONS(7053), + [anon_sym_and] = ACTIONS(7053), + [anon_sym_bitor] = ACTIONS(7055), + [anon_sym_xor] = ACTIONS(7053), + [anon_sym_bitand] = ACTIONS(7055), + [anon_sym_not_eq] = ACTIONS(7055), + [anon_sym_DASH_DASH] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7055), + [anon_sym_DOT] = ACTIONS(7053), + [anon_sym_DOT_STAR] = ACTIONS(7055), + [anon_sym_DASH_GT] = ACTIONS(7055), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7055), + [anon_sym_override] = ACTIONS(7055), + [anon_sym_requires] = ACTIONS(7055), + }, + [STATE(2660)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6244), + [anon_sym___based] = ACTIONS(6242), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_signed] = ACTIONS(6242), + [anon_sym_unsigned] = ACTIONS(6242), + [anon_sym_long] = ACTIONS(6242), + [anon_sym_short] = ACTIONS(6242), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [sym_primitive_type] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_final] = ACTIONS(6242), + [anon_sym_override] = ACTIONS(6242), + [anon_sym_requires] = ACTIONS(6242), + [anon_sym_COLON_RBRACK] = ACTIONS(6244), + }, + [STATE(2661)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [anon_sym_RPAREN] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6248), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6248), + [anon_sym_GT_GT] = ACTIONS(6248), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6248), + [anon_sym___based] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_RBRACE] = ACTIONS(6248), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [sym_primitive_type] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_final] = ACTIONS(6246), + [anon_sym_override] = ACTIONS(6246), + [anon_sym_requires] = ACTIONS(6246), + [anon_sym_COLON_RBRACK] = ACTIONS(6248), + }, + [STATE(2662)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [anon_sym_RPAREN] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6252), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6252), + [anon_sym_GT_GT] = ACTIONS(6252), + [anon_sym_SEMI] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6252), + [anon_sym___based] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_signed] = ACTIONS(6250), + [anon_sym_unsigned] = ACTIONS(6250), + [anon_sym_long] = ACTIONS(6250), + [anon_sym_short] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [sym_primitive_type] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_final] = ACTIONS(6250), + [anon_sym_override] = ACTIONS(6250), + [anon_sym_requires] = ACTIONS(6250), + [anon_sym_COLON_RBRACK] = ACTIONS(6252), + }, + [STATE(2663)] = { + [sym_attribute_specifier] = STATE(3048), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7059), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7059), + [anon_sym_RBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7057), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym___restrict__] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym__Noreturn] = ACTIONS(7059), + [anon_sym_noreturn] = ACTIONS(7059), + [anon_sym__Nonnull] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_constinit] = ACTIONS(7059), + [anon_sym_consteval] = ACTIONS(7059), + [anon_sym_alignas] = ACTIONS(7059), + [anon_sym__Alignas] = ACTIONS(7059), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + }, + [STATE(2664)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token2] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [aux_sym_preproc_else_token1] = ACTIONS(8347), + [aux_sym_preproc_elif_token1] = ACTIONS(8347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(2665)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token2] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [aux_sym_preproc_else_token1] = ACTIONS(4107), + [aux_sym_preproc_elif_token1] = ACTIONS(4107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_private] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_friend] = ACTIONS(4107), + [anon_sym_public] = ACTIONS(4107), + [anon_sym_protected] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + }, + [STATE(2666)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [aux_sym_preproc_else_token1] = ACTIONS(4111), + [aux_sym_preproc_elif_token1] = ACTIONS(4111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + }, + [STATE(2667)] = { + [sym_attribute_specifier] = STATE(3051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), + [anon_sym_COMMA] = ACTIONS(7063), + [anon_sym_LPAREN2] = ACTIONS(7063), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7063), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_AMP] = ACTIONS(7061), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_GT] = ACTIONS(7061), + [anon_sym_GT_EQ] = ACTIONS(7063), + [anon_sym_LT_EQ] = ACTIONS(7061), + [anon_sym_LT] = ACTIONS(7061), + [anon_sym_LT_LT] = ACTIONS(7061), + [anon_sym_GT_GT] = ACTIONS(7061), + [anon_sym___extension__] = ACTIONS(7063), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(7063), + [anon_sym_RBRACK] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(7061), + [anon_sym_constexpr] = ACTIONS(7063), + [anon_sym_volatile] = ACTIONS(7063), + [anon_sym_restrict] = ACTIONS(7063), + [anon_sym___restrict__] = ACTIONS(7063), + [anon_sym__Atomic] = ACTIONS(7063), + [anon_sym__Noreturn] = ACTIONS(7063), + [anon_sym_noreturn] = ACTIONS(7063), + [anon_sym__Nonnull] = ACTIONS(7063), + [anon_sym_mutable] = ACTIONS(7063), + [anon_sym_constinit] = ACTIONS(7063), + [anon_sym_consteval] = ACTIONS(7063), + [anon_sym_alignas] = ACTIONS(7063), + [anon_sym__Alignas] = ACTIONS(7063), + [anon_sym_QMARK] = ACTIONS(7063), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7063), + [anon_sym_or_eq] = ACTIONS(7063), + [anon_sym_xor_eq] = ACTIONS(7063), + [anon_sym_LT_EQ_GT] = ACTIONS(7063), + [anon_sym_or] = ACTIONS(7061), + [anon_sym_and] = ACTIONS(7061), + [anon_sym_bitor] = ACTIONS(7063), + [anon_sym_xor] = ACTIONS(7061), + [anon_sym_bitand] = ACTIONS(7063), + [anon_sym_not_eq] = ACTIONS(7063), + [anon_sym_DASH_DASH] = ACTIONS(7063), + [anon_sym_PLUS_PLUS] = ACTIONS(7063), + [anon_sym_DOT] = ACTIONS(7061), + [anon_sym_DOT_STAR] = ACTIONS(7063), + [anon_sym_DASH_GT] = ACTIONS(7063), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7063), + [anon_sym_override] = ACTIONS(7063), + [anon_sym_requires] = ACTIONS(7063), + }, + [STATE(2668)] = { + [sym_attribute_specifier] = STATE(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), + [anon_sym_COMMA] = ACTIONS(7067), + [anon_sym_LPAREN2] = ACTIONS(7067), + [anon_sym_DASH] = ACTIONS(7065), + [anon_sym_PLUS] = ACTIONS(7065), + [anon_sym_STAR] = ACTIONS(7065), + [anon_sym_SLASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_PIPE_PIPE] = ACTIONS(7067), + [anon_sym_AMP_AMP] = ACTIONS(7067), + [anon_sym_PIPE] = ACTIONS(7065), + [anon_sym_CARET] = ACTIONS(7065), + [anon_sym_AMP] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7067), + [anon_sym_GT] = ACTIONS(7065), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_LT_EQ] = ACTIONS(7065), + [anon_sym_LT] = ACTIONS(7065), + [anon_sym_LT_LT] = ACTIONS(7065), + [anon_sym_GT_GT] = ACTIONS(7065), + [anon_sym___extension__] = ACTIONS(7067), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7067), + [anon_sym_RBRACK] = ACTIONS(7067), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_const] = ACTIONS(7065), + [anon_sym_constexpr] = ACTIONS(7067), + [anon_sym_volatile] = ACTIONS(7067), + [anon_sym_restrict] = ACTIONS(7067), + [anon_sym___restrict__] = ACTIONS(7067), + [anon_sym__Atomic] = ACTIONS(7067), + [anon_sym__Noreturn] = ACTIONS(7067), + [anon_sym_noreturn] = ACTIONS(7067), + [anon_sym__Nonnull] = ACTIONS(7067), + [anon_sym_mutable] = ACTIONS(7067), + [anon_sym_constinit] = ACTIONS(7067), + [anon_sym_consteval] = ACTIONS(7067), + [anon_sym_alignas] = ACTIONS(7067), + [anon_sym__Alignas] = ACTIONS(7067), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7067), + [anon_sym_SLASH_EQ] = ACTIONS(7067), + [anon_sym_PERCENT_EQ] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(7067), + [anon_sym_DASH_EQ] = ACTIONS(7067), + [anon_sym_LT_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_GT_EQ] = ACTIONS(7067), + [anon_sym_AMP_EQ] = ACTIONS(7067), + [anon_sym_CARET_EQ] = ACTIONS(7067), + [anon_sym_PIPE_EQ] = ACTIONS(7067), + [anon_sym_and_eq] = ACTIONS(7067), + [anon_sym_or_eq] = ACTIONS(7067), + [anon_sym_xor_eq] = ACTIONS(7067), + [anon_sym_LT_EQ_GT] = ACTIONS(7067), + [anon_sym_or] = ACTIONS(7065), + [anon_sym_and] = ACTIONS(7065), + [anon_sym_bitor] = ACTIONS(7067), + [anon_sym_xor] = ACTIONS(7065), + [anon_sym_bitand] = ACTIONS(7067), + [anon_sym_not_eq] = ACTIONS(7067), + [anon_sym_DASH_DASH] = ACTIONS(7067), + [anon_sym_PLUS_PLUS] = ACTIONS(7067), + [anon_sym_DOT] = ACTIONS(7065), + [anon_sym_DOT_STAR] = ACTIONS(7067), + [anon_sym_DASH_GT] = ACTIONS(7067), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7067), + [anon_sym_override] = ACTIONS(7067), + [anon_sym_requires] = ACTIONS(7067), + }, + [STATE(2669)] = { + [sym_template_argument_list] = STATE(2655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(8351), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6203), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6203), + [anon_sym_not_eq] = ACTIONS(6203), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6203), + }, + [STATE(2670)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym___based] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(2671)] = { + [sym_ms_based_modifier] = STATE(10827), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(2673), + [sym__declarator] = STATE(8686), + [sym__abstract_declarator] = STATE(8897), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3663), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3663), + [aux_sym_pointer_declarator_repeat1] = STATE(2673), + [sym_identifier] = ACTIONS(7868), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_AMP_AMP] = ACTIONS(8356), + [anon_sym_AMP] = ACTIONS(8358), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6457), + [anon_sym___attribute] = ACTIONS(6457), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2672)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym___based] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(2673)] = { + [sym_ms_based_modifier] = STATE(10827), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(6287), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8942), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3676), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3676), + [aux_sym_pointer_declarator_repeat1] = STATE(6287), + [sym_identifier] = ACTIONS(7868), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_AMP_AMP] = ACTIONS(8356), + [anon_sym_AMP] = ACTIONS(8358), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2674)] = { + [sym_attribute_specifier] = STATE(3108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_LPAREN2] = ACTIONS(7101), + [anon_sym_DASH] = ACTIONS(7099), + [anon_sym_PLUS] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_SLASH] = ACTIONS(7099), + [anon_sym_PERCENT] = ACTIONS(7099), + [anon_sym_PIPE_PIPE] = ACTIONS(7101), + [anon_sym_AMP_AMP] = ACTIONS(7101), + [anon_sym_PIPE] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7101), + [anon_sym_BANG_EQ] = ACTIONS(7101), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7099), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7099), + [anon_sym_GT_GT] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7101), + [anon_sym_EQ] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7099), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7101), + [anon_sym__Alignas] = ACTIONS(7101), + [anon_sym_QMARK] = ACTIONS(7101), + [anon_sym_STAR_EQ] = ACTIONS(7101), + [anon_sym_SLASH_EQ] = ACTIONS(7101), + [anon_sym_PERCENT_EQ] = ACTIONS(7101), + [anon_sym_PLUS_EQ] = ACTIONS(7101), + [anon_sym_DASH_EQ] = ACTIONS(7101), + [anon_sym_LT_LT_EQ] = ACTIONS(7101), + [anon_sym_GT_GT_EQ] = ACTIONS(7099), + [anon_sym_AMP_EQ] = ACTIONS(7101), + [anon_sym_CARET_EQ] = ACTIONS(7101), + [anon_sym_PIPE_EQ] = ACTIONS(7101), + [anon_sym_and_eq] = ACTIONS(7101), + [anon_sym_or_eq] = ACTIONS(7101), + [anon_sym_xor_eq] = ACTIONS(7101), + [anon_sym_LT_EQ_GT] = ACTIONS(7101), + [anon_sym_or] = ACTIONS(7099), + [anon_sym_and] = ACTIONS(7099), + [anon_sym_bitor] = ACTIONS(7101), + [anon_sym_xor] = ACTIONS(7099), + [anon_sym_bitand] = ACTIONS(7101), + [anon_sym_not_eq] = ACTIONS(7101), + [anon_sym_DASH_DASH] = ACTIONS(7101), + [anon_sym_PLUS_PLUS] = ACTIONS(7101), + [anon_sym_DOT] = ACTIONS(7099), + [anon_sym_DOT_STAR] = ACTIONS(7101), + [anon_sym_DASH_GT] = ACTIONS(7101), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7101), + [anon_sym_override] = ACTIONS(7101), + [anon_sym_GT2] = ACTIONS(7101), + [anon_sym_requires] = ACTIONS(7101), + }, + [STATE(2675)] = { + [sym_attribute_specifier] = STATE(3110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), + [anon_sym_COMMA] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7105), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7103), + [anon_sym_SLASH] = ACTIONS(7103), + [anon_sym_PERCENT] = ACTIONS(7103), + [anon_sym_PIPE_PIPE] = ACTIONS(7105), + [anon_sym_AMP_AMP] = ACTIONS(7105), + [anon_sym_PIPE] = ACTIONS(7103), + [anon_sym_CARET] = ACTIONS(7103), + [anon_sym_AMP] = ACTIONS(7103), + [anon_sym_EQ_EQ] = ACTIONS(7105), + [anon_sym_BANG_EQ] = ACTIONS(7105), + [anon_sym_GT] = ACTIONS(7103), + [anon_sym_GT_EQ] = ACTIONS(7103), + [anon_sym_LT_EQ] = ACTIONS(7103), + [anon_sym_LT] = ACTIONS(7103), + [anon_sym_LT_LT] = ACTIONS(7103), + [anon_sym_GT_GT] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(7105), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_EQ] = ACTIONS(7103), + [anon_sym_const] = ACTIONS(7103), + [anon_sym_constexpr] = ACTIONS(7105), + [anon_sym_volatile] = ACTIONS(7105), + [anon_sym_restrict] = ACTIONS(7105), + [anon_sym___restrict__] = ACTIONS(7105), + [anon_sym__Atomic] = ACTIONS(7105), + [anon_sym__Noreturn] = ACTIONS(7105), + [anon_sym_noreturn] = ACTIONS(7105), + [anon_sym__Nonnull] = ACTIONS(7105), + [anon_sym_mutable] = ACTIONS(7105), + [anon_sym_constinit] = ACTIONS(7105), + [anon_sym_consteval] = ACTIONS(7105), + [anon_sym_alignas] = ACTIONS(7105), + [anon_sym__Alignas] = ACTIONS(7105), + [anon_sym_QMARK] = ACTIONS(7105), + [anon_sym_STAR_EQ] = ACTIONS(7105), + [anon_sym_SLASH_EQ] = ACTIONS(7105), + [anon_sym_PERCENT_EQ] = ACTIONS(7105), + [anon_sym_PLUS_EQ] = ACTIONS(7105), + [anon_sym_DASH_EQ] = ACTIONS(7105), + [anon_sym_LT_LT_EQ] = ACTIONS(7105), + [anon_sym_GT_GT_EQ] = ACTIONS(7103), + [anon_sym_AMP_EQ] = ACTIONS(7105), + [anon_sym_CARET_EQ] = ACTIONS(7105), + [anon_sym_PIPE_EQ] = ACTIONS(7105), + [anon_sym_and_eq] = ACTIONS(7105), + [anon_sym_or_eq] = ACTIONS(7105), + [anon_sym_xor_eq] = ACTIONS(7105), + [anon_sym_LT_EQ_GT] = ACTIONS(7105), + [anon_sym_or] = ACTIONS(7103), + [anon_sym_and] = ACTIONS(7103), + [anon_sym_bitor] = ACTIONS(7105), + [anon_sym_xor] = ACTIONS(7103), + [anon_sym_bitand] = ACTIONS(7105), + [anon_sym_not_eq] = ACTIONS(7105), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DOT] = ACTIONS(7103), + [anon_sym_DOT_STAR] = ACTIONS(7105), + [anon_sym_DASH_GT] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7105), + [anon_sym_override] = ACTIONS(7105), + [anon_sym_GT2] = ACTIONS(7105), + [anon_sym_requires] = ACTIONS(7105), + }, + [STATE(2676)] = { + [sym_identifier] = ACTIONS(8362), + [aux_sym_preproc_def_token1] = ACTIONS(8362), + [aux_sym_preproc_if_token1] = ACTIONS(8362), + [aux_sym_preproc_if_token2] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), + [aux_sym_preproc_else_token1] = ACTIONS(8362), + [aux_sym_preproc_elif_token1] = ACTIONS(8362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8362), + [sym_preproc_directive] = ACTIONS(8362), + [anon_sym_LPAREN2] = ACTIONS(8364), + [anon_sym_TILDE] = ACTIONS(8364), + [anon_sym_STAR] = ACTIONS(8364), + [anon_sym_AMP_AMP] = ACTIONS(8364), + [anon_sym_AMP] = ACTIONS(8362), + [anon_sym_SEMI] = ACTIONS(8364), + [anon_sym___extension__] = ACTIONS(8362), + [anon_sym_typedef] = ACTIONS(8362), + [anon_sym_virtual] = ACTIONS(8362), + [anon_sym_extern] = ACTIONS(8362), + [anon_sym___attribute__] = ACTIONS(8362), + [anon_sym___attribute] = ACTIONS(8362), + [anon_sym_using] = ACTIONS(8362), + [anon_sym_COLON_COLON] = ACTIONS(8364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), + [anon_sym___declspec] = ACTIONS(8362), + [anon_sym___based] = ACTIONS(8362), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(8362), + [anon_sym_static] = ACTIONS(8362), + [anon_sym_register] = ACTIONS(8362), + [anon_sym_inline] = ACTIONS(8362), + [anon_sym___inline] = ACTIONS(8362), + [anon_sym___inline__] = ACTIONS(8362), + [anon_sym___forceinline] = ACTIONS(8362), + [anon_sym_thread_local] = ACTIONS(8362), + [anon_sym___thread] = ACTIONS(8362), + [anon_sym_const] = ACTIONS(8362), + [anon_sym_constexpr] = ACTIONS(8362), + [anon_sym_volatile] = ACTIONS(8362), + [anon_sym_restrict] = ACTIONS(8362), + [anon_sym___restrict__] = ACTIONS(8362), + [anon_sym__Atomic] = ACTIONS(8362), + [anon_sym__Noreturn] = ACTIONS(8362), + [anon_sym_noreturn] = ACTIONS(8362), + [anon_sym__Nonnull] = ACTIONS(8362), + [anon_sym_mutable] = ACTIONS(8362), + [anon_sym_constinit] = ACTIONS(8362), + [anon_sym_consteval] = ACTIONS(8362), + [anon_sym_alignas] = ACTIONS(8362), + [anon_sym__Alignas] = ACTIONS(8362), + [sym_primitive_type] = ACTIONS(8362), + [anon_sym_enum] = ACTIONS(8362), + [anon_sym_class] = ACTIONS(8362), + [anon_sym_struct] = ACTIONS(8362), + [anon_sym_union] = ACTIONS(8362), + [anon_sym_typename] = ACTIONS(8362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8362), + [anon_sym_decltype] = ACTIONS(8362), + [anon_sym_explicit] = ACTIONS(8362), + [anon_sym_private] = ACTIONS(8362), + [anon_sym_template] = ACTIONS(8362), + [anon_sym_operator] = ACTIONS(8362), + [anon_sym_friend] = ACTIONS(8362), + [anon_sym_public] = ACTIONS(8362), + [anon_sym_protected] = ACTIONS(8362), + [anon_sym_static_assert] = ACTIONS(8362), + [anon_sym_LBRACK_COLON] = ACTIONS(8364), + }, + [STATE(2677)] = { + [sym_template_argument_list] = STATE(2840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6751), + [anon_sym_and] = ACTIONS(6751), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6751), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + }, + [STATE(2678)] = { + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [aux_sym_sized_type_specifier_repeat1] = STATE(3470), + [sym_identifier] = ACTIONS(8366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym_SEMI] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(8368), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_COLON] = ACTIONS(6886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_RBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8371), + [anon_sym_unsigned] = ACTIONS(8371), + [anon_sym_long] = ACTIONS(8371), + [anon_sym_short] = ACTIONS(8371), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(8368), + [anon_sym_constexpr] = ACTIONS(8368), + [anon_sym_volatile] = ACTIONS(8368), + [anon_sym_restrict] = ACTIONS(8368), + [anon_sym___restrict__] = ACTIONS(8368), + [anon_sym__Atomic] = ACTIONS(8368), + [anon_sym__Noreturn] = ACTIONS(8368), + [anon_sym_noreturn] = ACTIONS(8368), + [anon_sym__Nonnull] = ACTIONS(8368), + [anon_sym_mutable] = ACTIONS(8368), + [anon_sym_constinit] = ACTIONS(8368), + [anon_sym_consteval] = ACTIONS(8368), + [anon_sym_alignas] = ACTIONS(8373), + [anon_sym__Alignas] = ACTIONS(8373), + [sym_primitive_type] = ACTIONS(8376), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + [anon_sym_COLON_RBRACK] = ACTIONS(6884), + }, + [STATE(2679)] = { + [sym_attribute_specifier] = STATE(3063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7091), + [anon_sym_SLASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_PIPE_PIPE] = ACTIONS(7093), + [anon_sym_AMP_AMP] = ACTIONS(7093), + [anon_sym_PIPE] = ACTIONS(7091), + [anon_sym_CARET] = ACTIONS(7091), + [anon_sym_AMP] = ACTIONS(7091), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_GT] = ACTIONS(7091), + [anon_sym_GT_EQ] = ACTIONS(7093), + [anon_sym_LT_EQ] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(7091), + [anon_sym_LT_LT] = ACTIONS(7091), + [anon_sym_GT_GT] = ACTIONS(7091), + [anon_sym___extension__] = ACTIONS(7093), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_RBRACK] = ACTIONS(7093), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_const] = ACTIONS(7091), + [anon_sym_constexpr] = ACTIONS(7093), + [anon_sym_volatile] = ACTIONS(7093), + [anon_sym_restrict] = ACTIONS(7093), + [anon_sym___restrict__] = ACTIONS(7093), + [anon_sym__Atomic] = ACTIONS(7093), + [anon_sym__Noreturn] = ACTIONS(7093), + [anon_sym_noreturn] = ACTIONS(7093), + [anon_sym__Nonnull] = ACTIONS(7093), + [anon_sym_mutable] = ACTIONS(7093), + [anon_sym_constinit] = ACTIONS(7093), + [anon_sym_consteval] = ACTIONS(7093), + [anon_sym_alignas] = ACTIONS(7093), + [anon_sym__Alignas] = ACTIONS(7093), + [anon_sym_QMARK] = ACTIONS(7093), + [anon_sym_STAR_EQ] = ACTIONS(7093), + [anon_sym_SLASH_EQ] = ACTIONS(7093), + [anon_sym_PERCENT_EQ] = ACTIONS(7093), + [anon_sym_PLUS_EQ] = ACTIONS(7093), + [anon_sym_DASH_EQ] = ACTIONS(7093), + [anon_sym_LT_LT_EQ] = ACTIONS(7093), + [anon_sym_GT_GT_EQ] = ACTIONS(7093), + [anon_sym_AMP_EQ] = ACTIONS(7093), + [anon_sym_CARET_EQ] = ACTIONS(7093), + [anon_sym_PIPE_EQ] = ACTIONS(7093), + [anon_sym_and_eq] = ACTIONS(7093), + [anon_sym_or_eq] = ACTIONS(7093), + [anon_sym_xor_eq] = ACTIONS(7093), + [anon_sym_LT_EQ_GT] = ACTIONS(7093), + [anon_sym_or] = ACTIONS(7091), + [anon_sym_and] = ACTIONS(7091), + [anon_sym_bitor] = ACTIONS(7093), + [anon_sym_xor] = ACTIONS(7091), + [anon_sym_bitand] = ACTIONS(7093), + [anon_sym_not_eq] = ACTIONS(7093), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DOT] = ACTIONS(7091), + [anon_sym_DOT_STAR] = ACTIONS(7093), + [anon_sym_DASH_GT] = ACTIONS(7093), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7093), + [anon_sym_override] = ACTIONS(7093), + [anon_sym_requires] = ACTIONS(7093), + }, + [STATE(2680)] = { + [sym_attribute_specifier] = STATE(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), + [anon_sym_COMMA] = ACTIONS(7063), + [anon_sym_LPAREN2] = ACTIONS(7063), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7063), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_AMP] = ACTIONS(7061), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_GT] = ACTIONS(7061), + [anon_sym_GT_EQ] = ACTIONS(7061), + [anon_sym_LT_EQ] = ACTIONS(7061), + [anon_sym_LT] = ACTIONS(7061), + [anon_sym_LT_LT] = ACTIONS(7061), + [anon_sym_GT_GT] = ACTIONS(7061), + [anon_sym___extension__] = ACTIONS(7063), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(7061), + [anon_sym_constexpr] = ACTIONS(7063), + [anon_sym_volatile] = ACTIONS(7063), + [anon_sym_restrict] = ACTIONS(7063), + [anon_sym___restrict__] = ACTIONS(7063), + [anon_sym__Atomic] = ACTIONS(7063), + [anon_sym__Noreturn] = ACTIONS(7063), + [anon_sym_noreturn] = ACTIONS(7063), + [anon_sym__Nonnull] = ACTIONS(7063), + [anon_sym_mutable] = ACTIONS(7063), + [anon_sym_constinit] = ACTIONS(7063), + [anon_sym_consteval] = ACTIONS(7063), + [anon_sym_alignas] = ACTIONS(7063), + [anon_sym__Alignas] = ACTIONS(7063), + [anon_sym_QMARK] = ACTIONS(7063), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7061), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7063), + [anon_sym_or_eq] = ACTIONS(7063), + [anon_sym_xor_eq] = ACTIONS(7063), + [anon_sym_LT_EQ_GT] = ACTIONS(7063), + [anon_sym_or] = ACTIONS(7061), + [anon_sym_and] = ACTIONS(7061), + [anon_sym_bitor] = ACTIONS(7063), + [anon_sym_xor] = ACTIONS(7061), + [anon_sym_bitand] = ACTIONS(7063), + [anon_sym_not_eq] = ACTIONS(7063), + [anon_sym_DASH_DASH] = ACTIONS(7063), + [anon_sym_PLUS_PLUS] = ACTIONS(7063), + [anon_sym_DOT] = ACTIONS(7061), + [anon_sym_DOT_STAR] = ACTIONS(7063), + [anon_sym_DASH_GT] = ACTIONS(7063), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7063), + [anon_sym_override] = ACTIONS(7063), + [anon_sym_GT2] = ACTIONS(7063), + [anon_sym_requires] = ACTIONS(7063), + }, + [STATE(2681)] = { + [sym_identifier] = ACTIONS(6967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6969), + [anon_sym_GT_GT] = ACTIONS(6969), + [anon_sym_SEMI] = ACTIONS(6969), + [anon_sym___extension__] = ACTIONS(6967), + [anon_sym___attribute__] = ACTIONS(6967), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6969), + [anon_sym___based] = ACTIONS(6967), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_RBRACE] = ACTIONS(6969), + [anon_sym_signed] = ACTIONS(6967), + [anon_sym_unsigned] = ACTIONS(6967), + [anon_sym_long] = ACTIONS(6967), + [anon_sym_short] = ACTIONS(6967), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6967), + [anon_sym_volatile] = ACTIONS(6967), + [anon_sym_restrict] = ACTIONS(6967), + [anon_sym___restrict__] = ACTIONS(6967), + [anon_sym__Atomic] = ACTIONS(6967), + [anon_sym__Noreturn] = ACTIONS(6967), + [anon_sym_noreturn] = ACTIONS(6967), + [anon_sym__Nonnull] = ACTIONS(6967), + [anon_sym_mutable] = ACTIONS(6967), + [anon_sym_constinit] = ACTIONS(6967), + [anon_sym_consteval] = ACTIONS(6967), + [anon_sym_alignas] = ACTIONS(6967), + [anon_sym__Alignas] = ACTIONS(6967), + [sym_primitive_type] = ACTIONS(6967), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6967), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6967), + [anon_sym_not_eq] = ACTIONS(6967), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6967), + [anon_sym_decltype] = ACTIONS(6967), + [anon_sym_final] = ACTIONS(6967), + [anon_sym_override] = ACTIONS(6967), + [anon_sym_requires] = ACTIONS(6967), + [anon_sym_COLON_RBRACK] = ACTIONS(6969), + }, + [STATE(2682)] = { + [sym_attribute_specifier] = STATE(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(7095), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7095), + [anon_sym_PERCENT] = ACTIONS(7095), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7095), + [anon_sym_CARET] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7095), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7095), + [anon_sym_LT] = ACTIONS(7095), + [anon_sym_LT_LT] = ACTIONS(7095), + [anon_sym_GT_GT] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_RBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7095), + [anon_sym_const] = ACTIONS(7095), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_mutable] = ACTIONS(7097), + [anon_sym_constinit] = ACTIONS(7097), + [anon_sym_consteval] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7097), + [anon_sym_or_eq] = ACTIONS(7097), + [anon_sym_xor_eq] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7095), + [anon_sym_and] = ACTIONS(7095), + [anon_sym_bitor] = ACTIONS(7097), + [anon_sym_xor] = ACTIONS(7095), + [anon_sym_bitand] = ACTIONS(7097), + [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7097), + [anon_sym_override] = ACTIONS(7097), + [anon_sym_requires] = ACTIONS(7097), + }, + [STATE(2683)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [aux_sym_preproc_else_token1] = ACTIONS(4115), + [aux_sym_preproc_elif_token1] = ACTIONS(4115), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + }, + [STATE(2684)] = { + [sym_attribute_specifier] = STATE(3066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_LPAREN2] = ACTIONS(7101), + [anon_sym_DASH] = ACTIONS(7099), + [anon_sym_PLUS] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_SLASH] = ACTIONS(7099), + [anon_sym_PERCENT] = ACTIONS(7099), + [anon_sym_PIPE_PIPE] = ACTIONS(7101), + [anon_sym_AMP_AMP] = ACTIONS(7101), + [anon_sym_PIPE] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7101), + [anon_sym_BANG_EQ] = ACTIONS(7101), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7101), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7099), + [anon_sym_GT_GT] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7101), + [anon_sym_RBRACK] = ACTIONS(7101), + [anon_sym_EQ] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7099), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7101), + [anon_sym__Alignas] = ACTIONS(7101), + [anon_sym_QMARK] = ACTIONS(7101), + [anon_sym_STAR_EQ] = ACTIONS(7101), + [anon_sym_SLASH_EQ] = ACTIONS(7101), + [anon_sym_PERCENT_EQ] = ACTIONS(7101), + [anon_sym_PLUS_EQ] = ACTIONS(7101), + [anon_sym_DASH_EQ] = ACTIONS(7101), + [anon_sym_LT_LT_EQ] = ACTIONS(7101), + [anon_sym_GT_GT_EQ] = ACTIONS(7101), + [anon_sym_AMP_EQ] = ACTIONS(7101), + [anon_sym_CARET_EQ] = ACTIONS(7101), + [anon_sym_PIPE_EQ] = ACTIONS(7101), + [anon_sym_and_eq] = ACTIONS(7101), + [anon_sym_or_eq] = ACTIONS(7101), + [anon_sym_xor_eq] = ACTIONS(7101), + [anon_sym_LT_EQ_GT] = ACTIONS(7101), + [anon_sym_or] = ACTIONS(7099), + [anon_sym_and] = ACTIONS(7099), + [anon_sym_bitor] = ACTIONS(7101), + [anon_sym_xor] = ACTIONS(7099), + [anon_sym_bitand] = ACTIONS(7101), + [anon_sym_not_eq] = ACTIONS(7101), + [anon_sym_DASH_DASH] = ACTIONS(7101), + [anon_sym_PLUS_PLUS] = ACTIONS(7101), + [anon_sym_DOT] = ACTIONS(7099), + [anon_sym_DOT_STAR] = ACTIONS(7101), + [anon_sym_DASH_GT] = ACTIONS(7101), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7101), + [anon_sym_override] = ACTIONS(7101), + [anon_sym_requires] = ACTIONS(7101), + }, + [STATE(2685)] = { + [sym_attribute_specifier] = STATE(3142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), + [anon_sym_COMMA] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7105), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7103), + [anon_sym_SLASH] = ACTIONS(7103), + [anon_sym_PERCENT] = ACTIONS(7103), + [anon_sym_PIPE_PIPE] = ACTIONS(7105), + [anon_sym_AMP_AMP] = ACTIONS(7105), + [anon_sym_PIPE] = ACTIONS(7103), + [anon_sym_CARET] = ACTIONS(7103), + [anon_sym_AMP] = ACTIONS(7103), + [anon_sym_EQ_EQ] = ACTIONS(7105), + [anon_sym_BANG_EQ] = ACTIONS(7105), + [anon_sym_GT] = ACTIONS(7103), + [anon_sym_GT_EQ] = ACTIONS(7105), + [anon_sym_LT_EQ] = ACTIONS(7103), + [anon_sym_LT] = ACTIONS(7103), + [anon_sym_LT_LT] = ACTIONS(7103), + [anon_sym_GT_GT] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(7105), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_RBRACK] = ACTIONS(7105), + [anon_sym_EQ] = ACTIONS(7103), + [anon_sym_const] = ACTIONS(7103), + [anon_sym_constexpr] = ACTIONS(7105), + [anon_sym_volatile] = ACTIONS(7105), + [anon_sym_restrict] = ACTIONS(7105), + [anon_sym___restrict__] = ACTIONS(7105), + [anon_sym__Atomic] = ACTIONS(7105), + [anon_sym__Noreturn] = ACTIONS(7105), + [anon_sym_noreturn] = ACTIONS(7105), + [anon_sym__Nonnull] = ACTIONS(7105), + [anon_sym_mutable] = ACTIONS(7105), + [anon_sym_constinit] = ACTIONS(7105), + [anon_sym_consteval] = ACTIONS(7105), + [anon_sym_alignas] = ACTIONS(7105), + [anon_sym__Alignas] = ACTIONS(7105), + [anon_sym_QMARK] = ACTIONS(7105), + [anon_sym_STAR_EQ] = ACTIONS(7105), + [anon_sym_SLASH_EQ] = ACTIONS(7105), + [anon_sym_PERCENT_EQ] = ACTIONS(7105), + [anon_sym_PLUS_EQ] = ACTIONS(7105), + [anon_sym_DASH_EQ] = ACTIONS(7105), + [anon_sym_LT_LT_EQ] = ACTIONS(7105), + [anon_sym_GT_GT_EQ] = ACTIONS(7105), + [anon_sym_AMP_EQ] = ACTIONS(7105), + [anon_sym_CARET_EQ] = ACTIONS(7105), + [anon_sym_PIPE_EQ] = ACTIONS(7105), + [anon_sym_and_eq] = ACTIONS(7105), + [anon_sym_or_eq] = ACTIONS(7105), + [anon_sym_xor_eq] = ACTIONS(7105), + [anon_sym_LT_EQ_GT] = ACTIONS(7105), + [anon_sym_or] = ACTIONS(7103), + [anon_sym_and] = ACTIONS(7103), + [anon_sym_bitor] = ACTIONS(7105), + [anon_sym_xor] = ACTIONS(7103), + [anon_sym_bitand] = ACTIONS(7105), + [anon_sym_not_eq] = ACTIONS(7105), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DOT] = ACTIONS(7103), + [anon_sym_DOT_STAR] = ACTIONS(7105), + [anon_sym_DASH_GT] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7105), + [anon_sym_override] = ACTIONS(7105), + [anon_sym_requires] = ACTIONS(7105), + }, + [STATE(2686)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token2] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [aux_sym_preproc_else_token1] = ACTIONS(4196), + [aux_sym_preproc_elif_token1] = ACTIONS(4196), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_friend] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + }, + [STATE(2687)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token2] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [aux_sym_preproc_else_token1] = ACTIONS(8281), + [aux_sym_preproc_elif_token1] = ACTIONS(8281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(2688)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [anon_sym_RPAREN] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6256), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym_SEMI] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6256), + [anon_sym___based] = ACTIONS(6254), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_signed] = ACTIONS(6254), + [anon_sym_unsigned] = ACTIONS(6254), + [anon_sym_long] = ACTIONS(6254), + [anon_sym_short] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [sym_primitive_type] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_final] = ACTIONS(6254), + [anon_sym_override] = ACTIONS(6254), + [anon_sym_requires] = ACTIONS(6254), + [anon_sym_COLON_RBRACK] = ACTIONS(6256), + }, + [STATE(2689)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6260), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6260), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6260), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6260), + [anon_sym_GT_GT] = ACTIONS(6260), + [anon_sym_SEMI] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6260), + [anon_sym___based] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_RBRACE] = ACTIONS(6260), + [anon_sym_signed] = ACTIONS(6258), + [anon_sym_unsigned] = ACTIONS(6258), + [anon_sym_long] = ACTIONS(6258), + [anon_sym_short] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [sym_primitive_type] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_final] = ACTIONS(6258), + [anon_sym_override] = ACTIONS(6258), + [anon_sym_requires] = ACTIONS(6258), + [anon_sym_COLON_RBRACK] = ACTIONS(6260), + }, + [STATE(2690)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [anon_sym_RPAREN] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6264), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6264), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6264), + [anon_sym_GT_GT] = ACTIONS(6264), + [anon_sym_SEMI] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6264), + [anon_sym___based] = ACTIONS(6262), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_RBRACE] = ACTIONS(6264), + [anon_sym_signed] = ACTIONS(6262), + [anon_sym_unsigned] = ACTIONS(6262), + [anon_sym_long] = ACTIONS(6262), + [anon_sym_short] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [sym_primitive_type] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_final] = ACTIONS(6262), + [anon_sym_override] = ACTIONS(6262), + [anon_sym_requires] = ACTIONS(6262), + [anon_sym_COLON_RBRACK] = ACTIONS(6264), + }, + [STATE(2691)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [aux_sym_preproc_else_token1] = ACTIONS(3728), + [aux_sym_preproc_elif_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(2692)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [aux_sym_preproc_else_token1] = ACTIONS(4134), + [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + }, + [STATE(2693)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [aux_sym_preproc_else_token1] = ACTIONS(3728), + [aux_sym_preproc_elif_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(2694)] = { + [sym_attribute_specifier] = STATE(3072), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7125), + [anon_sym_LPAREN2] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7123), + [anon_sym_PLUS] = ACTIONS(7123), + [anon_sym_STAR] = ACTIONS(7123), + [anon_sym_SLASH] = ACTIONS(7123), + [anon_sym_PERCENT] = ACTIONS(7123), + [anon_sym_PIPE_PIPE] = ACTIONS(7125), + [anon_sym_AMP_AMP] = ACTIONS(7125), + [anon_sym_PIPE] = ACTIONS(7123), + [anon_sym_CARET] = ACTIONS(7123), + [anon_sym_AMP] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_GT] = ACTIONS(7123), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_LT_EQ] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(7123), + [anon_sym_LT_LT] = ACTIONS(7123), + [anon_sym_GT_GT] = ACTIONS(7123), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7125), + [anon_sym_RBRACK] = ACTIONS(7125), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_const] = ACTIONS(7123), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_mutable] = ACTIONS(7125), + [anon_sym_constinit] = ACTIONS(7125), + [anon_sym_consteval] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [anon_sym_QMARK] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_and_eq] = ACTIONS(7125), + [anon_sym_or_eq] = ACTIONS(7125), + [anon_sym_xor_eq] = ACTIONS(7125), + [anon_sym_LT_EQ_GT] = ACTIONS(7125), + [anon_sym_or] = ACTIONS(7123), + [anon_sym_and] = ACTIONS(7123), + [anon_sym_bitor] = ACTIONS(7125), + [anon_sym_xor] = ACTIONS(7123), + [anon_sym_bitand] = ACTIONS(7125), + [anon_sym_not_eq] = ACTIONS(7125), + [anon_sym_DASH_DASH] = ACTIONS(7125), + [anon_sym_PLUS_PLUS] = ACTIONS(7125), + [anon_sym_DOT] = ACTIONS(7123), + [anon_sym_DOT_STAR] = ACTIONS(7125), + [anon_sym_DASH_GT] = ACTIONS(7125), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7125), + [anon_sym_override] = ACTIONS(7125), + [anon_sym_requires] = ACTIONS(7125), + }, + [STATE(2695)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [aux_sym_preproc_else_token1] = ACTIONS(3704), + [aux_sym_preproc_elif_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(2696)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [aux_sym_preproc_else_token1] = ACTIONS(3704), + [aux_sym_preproc_elif_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(2697)] = { + [sym_attribute_specifier] = STATE(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(8003), + [anon_sym___attribute] = ACTIONS(8005), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_RBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + }, + [STATE(2698)] = { + [sym_identifier] = ACTIONS(8378), + [aux_sym_preproc_def_token1] = ACTIONS(8378), + [aux_sym_preproc_if_token1] = ACTIONS(8378), + [aux_sym_preproc_if_token2] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), + [aux_sym_preproc_else_token1] = ACTIONS(8378), + [aux_sym_preproc_elif_token1] = ACTIONS(8378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8378), + [sym_preproc_directive] = ACTIONS(8378), + [anon_sym_LPAREN2] = ACTIONS(8380), + [anon_sym_TILDE] = ACTIONS(8380), + [anon_sym_STAR] = ACTIONS(8380), + [anon_sym_AMP_AMP] = ACTIONS(8380), + [anon_sym_AMP] = ACTIONS(8378), + [anon_sym_SEMI] = ACTIONS(8380), + [anon_sym___extension__] = ACTIONS(8378), + [anon_sym_typedef] = ACTIONS(8378), + [anon_sym_virtual] = ACTIONS(8378), + [anon_sym_extern] = ACTIONS(8378), + [anon_sym___attribute__] = ACTIONS(8378), + [anon_sym___attribute] = ACTIONS(8378), + [anon_sym_using] = ACTIONS(8378), + [anon_sym_COLON_COLON] = ACTIONS(8380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), + [anon_sym___declspec] = ACTIONS(8378), + [anon_sym___based] = ACTIONS(8378), + [anon_sym_signed] = ACTIONS(8378), + [anon_sym_unsigned] = ACTIONS(8378), + [anon_sym_long] = ACTIONS(8378), + [anon_sym_short] = ACTIONS(8378), + [anon_sym_LBRACK] = ACTIONS(8378), + [anon_sym_static] = ACTIONS(8378), + [anon_sym_register] = ACTIONS(8378), + [anon_sym_inline] = ACTIONS(8378), + [anon_sym___inline] = ACTIONS(8378), + [anon_sym___inline__] = ACTIONS(8378), + [anon_sym___forceinline] = ACTIONS(8378), + [anon_sym_thread_local] = ACTIONS(8378), + [anon_sym___thread] = ACTIONS(8378), + [anon_sym_const] = ACTIONS(8378), + [anon_sym_constexpr] = ACTIONS(8378), + [anon_sym_volatile] = ACTIONS(8378), + [anon_sym_restrict] = ACTIONS(8378), + [anon_sym___restrict__] = ACTIONS(8378), + [anon_sym__Atomic] = ACTIONS(8378), + [anon_sym__Noreturn] = ACTIONS(8378), + [anon_sym_noreturn] = ACTIONS(8378), + [anon_sym__Nonnull] = ACTIONS(8378), + [anon_sym_mutable] = ACTIONS(8378), + [anon_sym_constinit] = ACTIONS(8378), + [anon_sym_consteval] = ACTIONS(8378), + [anon_sym_alignas] = ACTIONS(8378), + [anon_sym__Alignas] = ACTIONS(8378), + [sym_primitive_type] = ACTIONS(8378), + [anon_sym_enum] = ACTIONS(8378), + [anon_sym_class] = ACTIONS(8378), + [anon_sym_struct] = ACTIONS(8378), + [anon_sym_union] = ACTIONS(8378), + [anon_sym_typename] = ACTIONS(8378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8378), + [anon_sym_decltype] = ACTIONS(8378), + [anon_sym_explicit] = ACTIONS(8378), + [anon_sym_private] = ACTIONS(8378), + [anon_sym_template] = ACTIONS(8378), + [anon_sym_operator] = ACTIONS(8378), + [anon_sym_friend] = ACTIONS(8378), + [anon_sym_public] = ACTIONS(8378), + [anon_sym_protected] = ACTIONS(8378), + [anon_sym_static_assert] = ACTIONS(8378), + [anon_sym_LBRACK_COLON] = ACTIONS(8380), + }, + [STATE(2699)] = { + [sym_decltype_auto] = STATE(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8268), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_GT2] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2700)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_private] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_friend] = ACTIONS(4144), + [anon_sym_public] = ACTIONS(4144), + [anon_sym_protected] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + }, + [STATE(2701)] = { + [sym_identifier] = ACTIONS(8382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), + [anon_sym_COMMA] = ACTIONS(8384), + [anon_sym_RPAREN] = ACTIONS(8384), + [aux_sym_preproc_if_token2] = ACTIONS(8384), + [aux_sym_preproc_else_token1] = ACTIONS(8384), + [aux_sym_preproc_elif_token1] = ACTIONS(8382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8384), + [anon_sym_LPAREN2] = ACTIONS(8384), + [anon_sym_DASH] = ACTIONS(8382), + [anon_sym_PLUS] = ACTIONS(8382), + [anon_sym_STAR] = ACTIONS(8382), + [anon_sym_SLASH] = ACTIONS(8382), + [anon_sym_PERCENT] = ACTIONS(8382), + [anon_sym_PIPE_PIPE] = ACTIONS(8384), + [anon_sym_AMP_AMP] = ACTIONS(8384), + [anon_sym_PIPE] = ACTIONS(8382), + [anon_sym_CARET] = ACTIONS(8382), + [anon_sym_AMP] = ACTIONS(8382), + [anon_sym_EQ_EQ] = ACTIONS(8384), + [anon_sym_BANG_EQ] = ACTIONS(8384), + [anon_sym_GT] = ACTIONS(8382), + [anon_sym_GT_EQ] = ACTIONS(8384), + [anon_sym_LT_EQ] = ACTIONS(8382), + [anon_sym_LT] = ACTIONS(8382), + [anon_sym_LT_LT] = ACTIONS(8382), + [anon_sym_GT_GT] = ACTIONS(8382), + [anon_sym_SEMI] = ACTIONS(8384), + [anon_sym_COLON] = ACTIONS(8382), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8384), + [anon_sym_RBRACE] = ACTIONS(8384), + [anon_sym_LBRACK] = ACTIONS(8384), + [anon_sym_EQ] = ACTIONS(8382), + [anon_sym_QMARK] = ACTIONS(8384), + [anon_sym_STAR_EQ] = ACTIONS(8384), + [anon_sym_SLASH_EQ] = ACTIONS(8384), + [anon_sym_PERCENT_EQ] = ACTIONS(8384), + [anon_sym_PLUS_EQ] = ACTIONS(8384), + [anon_sym_DASH_EQ] = ACTIONS(8384), + [anon_sym_LT_LT_EQ] = ACTIONS(8384), + [anon_sym_GT_GT_EQ] = ACTIONS(8384), + [anon_sym_AMP_EQ] = ACTIONS(8384), + [anon_sym_CARET_EQ] = ACTIONS(8384), + [anon_sym_PIPE_EQ] = ACTIONS(8384), + [anon_sym_and_eq] = ACTIONS(8382), + [anon_sym_or_eq] = ACTIONS(8382), + [anon_sym_xor_eq] = ACTIONS(8382), + [anon_sym_LT_EQ_GT] = ACTIONS(8384), + [anon_sym_or] = ACTIONS(8382), + [anon_sym_and] = ACTIONS(8382), + [anon_sym_bitor] = ACTIONS(8382), + [anon_sym_xor] = ACTIONS(8382), + [anon_sym_bitand] = ACTIONS(8382), + [anon_sym_not_eq] = ACTIONS(8382), + [anon_sym_DASH_DASH] = ACTIONS(8384), + [anon_sym_PLUS_PLUS] = ACTIONS(8384), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_DOT_STAR] = ACTIONS(8384), + [anon_sym_DASH_GT] = ACTIONS(8384), + [anon_sym_L_DQUOTE] = ACTIONS(8384), + [anon_sym_u_DQUOTE] = ACTIONS(8384), + [anon_sym_U_DQUOTE] = ACTIONS(8384), + [anon_sym_u8_DQUOTE] = ACTIONS(8384), + [anon_sym_DQUOTE] = ACTIONS(8384), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8384), + [anon_sym_LR_DQUOTE] = ACTIONS(8384), + [anon_sym_uR_DQUOTE] = ACTIONS(8384), + [anon_sym_UR_DQUOTE] = ACTIONS(8384), + [anon_sym_u8R_DQUOTE] = ACTIONS(8384), + [anon_sym_COLON_RBRACK] = ACTIONS(8384), + [sym_literal_suffix] = ACTIONS(8382), + }, + [STATE(2702)] = { + [sym_identifier] = ACTIONS(8386), + [aux_sym_preproc_def_token1] = ACTIONS(8386), + [aux_sym_preproc_if_token1] = ACTIONS(8386), + [aux_sym_preproc_if_token2] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), + [aux_sym_preproc_else_token1] = ACTIONS(8386), + [aux_sym_preproc_elif_token1] = ACTIONS(8386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8386), + [sym_preproc_directive] = ACTIONS(8386), + [anon_sym_LPAREN2] = ACTIONS(8388), + [anon_sym_TILDE] = ACTIONS(8388), + [anon_sym_STAR] = ACTIONS(8388), + [anon_sym_AMP_AMP] = ACTIONS(8388), + [anon_sym_AMP] = ACTIONS(8386), + [anon_sym_SEMI] = ACTIONS(8388), + [anon_sym___extension__] = ACTIONS(8386), + [anon_sym_typedef] = ACTIONS(8386), + [anon_sym_virtual] = ACTIONS(8386), + [anon_sym_extern] = ACTIONS(8386), + [anon_sym___attribute__] = ACTIONS(8386), + [anon_sym___attribute] = ACTIONS(8386), + [anon_sym_using] = ACTIONS(8386), + [anon_sym_COLON_COLON] = ACTIONS(8388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), + [anon_sym___declspec] = ACTIONS(8386), + [anon_sym___based] = ACTIONS(8386), + [anon_sym_signed] = ACTIONS(8386), + [anon_sym_unsigned] = ACTIONS(8386), + [anon_sym_long] = ACTIONS(8386), + [anon_sym_short] = ACTIONS(8386), + [anon_sym_LBRACK] = ACTIONS(8386), + [anon_sym_static] = ACTIONS(8386), + [anon_sym_register] = ACTIONS(8386), + [anon_sym_inline] = ACTIONS(8386), + [anon_sym___inline] = ACTIONS(8386), + [anon_sym___inline__] = ACTIONS(8386), + [anon_sym___forceinline] = ACTIONS(8386), + [anon_sym_thread_local] = ACTIONS(8386), + [anon_sym___thread] = ACTIONS(8386), + [anon_sym_const] = ACTIONS(8386), + [anon_sym_constexpr] = ACTIONS(8386), + [anon_sym_volatile] = ACTIONS(8386), + [anon_sym_restrict] = ACTIONS(8386), + [anon_sym___restrict__] = ACTIONS(8386), + [anon_sym__Atomic] = ACTIONS(8386), + [anon_sym__Noreturn] = ACTIONS(8386), + [anon_sym_noreturn] = ACTIONS(8386), + [anon_sym__Nonnull] = ACTIONS(8386), + [anon_sym_mutable] = ACTIONS(8386), + [anon_sym_constinit] = ACTIONS(8386), + [anon_sym_consteval] = ACTIONS(8386), + [anon_sym_alignas] = ACTIONS(8386), + [anon_sym__Alignas] = ACTIONS(8386), + [sym_primitive_type] = ACTIONS(8386), + [anon_sym_enum] = ACTIONS(8386), + [anon_sym_class] = ACTIONS(8386), + [anon_sym_struct] = ACTIONS(8386), + [anon_sym_union] = ACTIONS(8386), + [anon_sym_typename] = ACTIONS(8386), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8386), + [anon_sym_decltype] = ACTIONS(8386), + [anon_sym_explicit] = ACTIONS(8386), + [anon_sym_private] = ACTIONS(8386), + [anon_sym_template] = ACTIONS(8386), + [anon_sym_operator] = ACTIONS(8386), + [anon_sym_friend] = ACTIONS(8386), + [anon_sym_public] = ACTIONS(8386), + [anon_sym_protected] = ACTIONS(8386), + [anon_sym_static_assert] = ACTIONS(8386), + [anon_sym_LBRACK_COLON] = ACTIONS(8388), + }, + [STATE(2703)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6949), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6949), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6949), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6949), + [anon_sym_GT_GT] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6951), + [anon_sym___attribute__] = ACTIONS(6951), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_EQ] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6951), + [anon_sym_volatile] = ACTIONS(6951), + [anon_sym_restrict] = ACTIONS(6951), + [anon_sym___restrict__] = ACTIONS(6951), + [anon_sym__Atomic] = ACTIONS(6951), + [anon_sym__Noreturn] = ACTIONS(6951), + [anon_sym_noreturn] = ACTIONS(6951), + [anon_sym__Nonnull] = ACTIONS(6951), + [anon_sym_mutable] = ACTIONS(6951), + [anon_sym_constinit] = ACTIONS(6951), + [anon_sym_consteval] = ACTIONS(6951), + [anon_sym_alignas] = ACTIONS(6951), + [anon_sym__Alignas] = ACTIONS(6951), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_STAR_EQ] = ACTIONS(6951), + [anon_sym_SLASH_EQ] = ACTIONS(6951), + [anon_sym_PERCENT_EQ] = ACTIONS(6951), + [anon_sym_PLUS_EQ] = ACTIONS(6951), + [anon_sym_DASH_EQ] = ACTIONS(6951), + [anon_sym_LT_LT_EQ] = ACTIONS(6951), + [anon_sym_GT_GT_EQ] = ACTIONS(6951), + [anon_sym_AMP_EQ] = ACTIONS(6951), + [anon_sym_CARET_EQ] = ACTIONS(6951), + [anon_sym_PIPE_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6951), + [anon_sym_and] = ACTIONS(6951), + [anon_sym_bitor] = ACTIONS(6951), + [anon_sym_xor] = ACTIONS(6951), + [anon_sym_bitand] = ACTIONS(6951), + [anon_sym_not_eq] = ACTIONS(6951), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6951), + [anon_sym_decltype] = ACTIONS(6951), + [anon_sym_final] = ACTIONS(6951), + [anon_sym_override] = ACTIONS(6951), + [anon_sym_requires] = ACTIONS(6951), + [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + }, + [STATE(2704)] = { + [sym_decltype_auto] = STATE(3014), + [sym_template_argument_list] = STATE(2824), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_RPAREN] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(8390), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym_SEMI] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym___attribute__] = ACTIONS(5258), + [anon_sym___attribute] = ACTIONS(5251), + [anon_sym_COLON] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5258), + [anon_sym_and] = ACTIONS(5258), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5258), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6505), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + [anon_sym_COLON_RBRACK] = ACTIONS(5258), + }, + [STATE(2705)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_friend] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + }, + [STATE(2706)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(2707)] = { + [sym_attribute_specifier] = STATE(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7187), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7187), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_GT2] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + }, + [STATE(2708)] = { + [sym_attribute_specifier] = STATE(3040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), + [anon_sym_COMMA] = ACTIONS(7067), + [anon_sym_LPAREN2] = ACTIONS(7067), + [anon_sym_DASH] = ACTIONS(7065), + [anon_sym_PLUS] = ACTIONS(7065), + [anon_sym_STAR] = ACTIONS(7065), + [anon_sym_SLASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_PIPE_PIPE] = ACTIONS(7067), + [anon_sym_AMP_AMP] = ACTIONS(7067), + [anon_sym_PIPE] = ACTIONS(7065), + [anon_sym_CARET] = ACTIONS(7065), + [anon_sym_AMP] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7067), + [anon_sym_GT] = ACTIONS(7065), + [anon_sym_GT_EQ] = ACTIONS(7065), + [anon_sym_LT_EQ] = ACTIONS(7065), + [anon_sym_LT] = ACTIONS(7065), + [anon_sym_LT_LT] = ACTIONS(7065), + [anon_sym_GT_GT] = ACTIONS(7065), + [anon_sym___extension__] = ACTIONS(7067), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7067), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_const] = ACTIONS(7065), + [anon_sym_constexpr] = ACTIONS(7067), + [anon_sym_volatile] = ACTIONS(7067), + [anon_sym_restrict] = ACTIONS(7067), + [anon_sym___restrict__] = ACTIONS(7067), + [anon_sym__Atomic] = ACTIONS(7067), + [anon_sym__Noreturn] = ACTIONS(7067), + [anon_sym_noreturn] = ACTIONS(7067), + [anon_sym__Nonnull] = ACTIONS(7067), + [anon_sym_mutable] = ACTIONS(7067), + [anon_sym_constinit] = ACTIONS(7067), + [anon_sym_consteval] = ACTIONS(7067), + [anon_sym_alignas] = ACTIONS(7067), + [anon_sym__Alignas] = ACTIONS(7067), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7067), + [anon_sym_SLASH_EQ] = ACTIONS(7067), + [anon_sym_PERCENT_EQ] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(7067), + [anon_sym_DASH_EQ] = ACTIONS(7067), + [anon_sym_LT_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_GT_EQ] = ACTIONS(7065), + [anon_sym_AMP_EQ] = ACTIONS(7067), + [anon_sym_CARET_EQ] = ACTIONS(7067), + [anon_sym_PIPE_EQ] = ACTIONS(7067), + [anon_sym_and_eq] = ACTIONS(7067), + [anon_sym_or_eq] = ACTIONS(7067), + [anon_sym_xor_eq] = ACTIONS(7067), + [anon_sym_LT_EQ_GT] = ACTIONS(7067), + [anon_sym_or] = ACTIONS(7065), + [anon_sym_and] = ACTIONS(7065), + [anon_sym_bitor] = ACTIONS(7067), + [anon_sym_xor] = ACTIONS(7065), + [anon_sym_bitand] = ACTIONS(7067), + [anon_sym_not_eq] = ACTIONS(7067), + [anon_sym_DASH_DASH] = ACTIONS(7067), + [anon_sym_PLUS_PLUS] = ACTIONS(7067), + [anon_sym_DOT] = ACTIONS(7065), + [anon_sym_DOT_STAR] = ACTIONS(7067), + [anon_sym_DASH_GT] = ACTIONS(7067), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7067), + [anon_sym_override] = ACTIONS(7067), + [anon_sym_GT2] = ACTIONS(7067), + [anon_sym_requires] = ACTIONS(7067), + }, + [STATE(2709)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_friend] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + }, + [STATE(2710)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [aux_sym_preproc_else_token1] = ACTIONS(4160), + [aux_sym_preproc_elif_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(2711)] = { + [sym_identifier] = ACTIONS(8392), + [aux_sym_preproc_def_token1] = ACTIONS(8392), + [aux_sym_preproc_if_token1] = ACTIONS(8392), + [aux_sym_preproc_if_token2] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), + [aux_sym_preproc_else_token1] = ACTIONS(8392), + [aux_sym_preproc_elif_token1] = ACTIONS(8392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8392), + [sym_preproc_directive] = ACTIONS(8392), + [anon_sym_LPAREN2] = ACTIONS(8394), + [anon_sym_TILDE] = ACTIONS(8394), + [anon_sym_STAR] = ACTIONS(8394), + [anon_sym_AMP_AMP] = ACTIONS(8394), + [anon_sym_AMP] = ACTIONS(8392), + [anon_sym_SEMI] = ACTIONS(8394), + [anon_sym___extension__] = ACTIONS(8392), + [anon_sym_typedef] = ACTIONS(8392), + [anon_sym_virtual] = ACTIONS(8392), + [anon_sym_extern] = ACTIONS(8392), + [anon_sym___attribute__] = ACTIONS(8392), + [anon_sym___attribute] = ACTIONS(8392), + [anon_sym_using] = ACTIONS(8392), + [anon_sym_COLON_COLON] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), + [anon_sym___declspec] = ACTIONS(8392), + [anon_sym___based] = ACTIONS(8392), + [anon_sym_signed] = ACTIONS(8392), + [anon_sym_unsigned] = ACTIONS(8392), + [anon_sym_long] = ACTIONS(8392), + [anon_sym_short] = ACTIONS(8392), + [anon_sym_LBRACK] = ACTIONS(8392), + [anon_sym_static] = ACTIONS(8392), + [anon_sym_register] = ACTIONS(8392), + [anon_sym_inline] = ACTIONS(8392), + [anon_sym___inline] = ACTIONS(8392), + [anon_sym___inline__] = ACTIONS(8392), + [anon_sym___forceinline] = ACTIONS(8392), + [anon_sym_thread_local] = ACTIONS(8392), + [anon_sym___thread] = ACTIONS(8392), + [anon_sym_const] = ACTIONS(8392), + [anon_sym_constexpr] = ACTIONS(8392), + [anon_sym_volatile] = ACTIONS(8392), + [anon_sym_restrict] = ACTIONS(8392), + [anon_sym___restrict__] = ACTIONS(8392), + [anon_sym__Atomic] = ACTIONS(8392), + [anon_sym__Noreturn] = ACTIONS(8392), + [anon_sym_noreturn] = ACTIONS(8392), + [anon_sym__Nonnull] = ACTIONS(8392), + [anon_sym_mutable] = ACTIONS(8392), + [anon_sym_constinit] = ACTIONS(8392), + [anon_sym_consteval] = ACTIONS(8392), + [anon_sym_alignas] = ACTIONS(8392), + [anon_sym__Alignas] = ACTIONS(8392), + [sym_primitive_type] = ACTIONS(8392), + [anon_sym_enum] = ACTIONS(8392), + [anon_sym_class] = ACTIONS(8392), + [anon_sym_struct] = ACTIONS(8392), + [anon_sym_union] = ACTIONS(8392), + [anon_sym_typename] = ACTIONS(8392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8392), + [anon_sym_decltype] = ACTIONS(8392), + [anon_sym_explicit] = ACTIONS(8392), + [anon_sym_private] = ACTIONS(8392), + [anon_sym_template] = ACTIONS(8392), + [anon_sym_operator] = ACTIONS(8392), + [anon_sym_friend] = ACTIONS(8392), + [anon_sym_public] = ACTIONS(8392), + [anon_sym_protected] = ACTIONS(8392), + [anon_sym_static_assert] = ACTIONS(8392), + [anon_sym_LBRACK_COLON] = ACTIONS(8394), + }, + [STATE(2712)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + }, + [STATE(2713)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + }, + [STATE(2714)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [aux_sym_preproc_else_token1] = ACTIONS(4176), + [aux_sym_preproc_elif_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + }, + [STATE(2715)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [aux_sym_preproc_else_token1] = ACTIONS(4184), + [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_friend] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + }, + [STATE(2716)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [aux_sym_preproc_else_token1] = ACTIONS(3680), + [aux_sym_preproc_elif_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + }, + [STATE(2717)] = { + [sym_attribute_specifier] = STATE(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7057), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7059), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7057), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym___restrict__] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym__Noreturn] = ACTIONS(7059), + [anon_sym_noreturn] = ACTIONS(7059), + [anon_sym__Nonnull] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_constinit] = ACTIONS(7059), + [anon_sym_consteval] = ACTIONS(7059), + [anon_sym_alignas] = ACTIONS(7059), + [anon_sym__Alignas] = ACTIONS(7059), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7057), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_GT2] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + }, + [STATE(2718)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token2] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [aux_sym_preproc_else_token1] = ACTIONS(3890), + [aux_sym_preproc_elif_token1] = ACTIONS(3890), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_private] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_friend] = ACTIONS(3890), + [anon_sym_public] = ACTIONS(3890), + [anon_sym_protected] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + }, + [STATE(2719)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [aux_sym_preproc_else_token1] = ACTIONS(4192), + [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + }, + [STATE(2720)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(2721)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(6287), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8923), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3659), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5185), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3659), + [aux_sym_pointer_declarator_repeat1] = STATE(6287), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8307), + [anon_sym_AMP_AMP] = ACTIONS(8309), + [anon_sym_AMP] = ACTIONS(8311), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2722)] = { + [sym__declaration_modifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(5027), + [sym_attribute_declaration] = STATE(5027), + [sym_ms_declspec_modifier] = STATE(5027), + [sym_storage_class_specifier] = STATE(5027), + [sym_type_qualifier] = STATE(5027), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3936), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8579), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(5044), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(5027), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(6091), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8293), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_typename] = ACTIONS(5313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2723)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_RPAREN] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_STAR_EQ] = ACTIONS(7197), + [anon_sym_SLASH_EQ] = ACTIONS(7197), + [anon_sym_PERCENT_EQ] = ACTIONS(7197), + [anon_sym_PLUS_EQ] = ACTIONS(7197), + [anon_sym_DASH_EQ] = ACTIONS(7197), + [anon_sym_LT_LT_EQ] = ACTIONS(7197), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7197), + [anon_sym_CARET_EQ] = ACTIONS(7197), + [anon_sym_PIPE_EQ] = ACTIONS(7197), + [anon_sym_and_eq] = ACTIONS(7197), + [anon_sym_or_eq] = ACTIONS(7197), + [anon_sym_xor_eq] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7197), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7197), + [anon_sym_not_eq] = ACTIONS(7197), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7197), + [anon_sym_override] = ACTIONS(7197), + [anon_sym_requires] = ACTIONS(7197), + [anon_sym_DASH_GT_STAR] = ACTIONS(7197), + }, + [STATE(2724)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(2725)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token2] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [aux_sym_preproc_else_token1] = ACTIONS(3906), + [aux_sym_preproc_elif_token1] = ACTIONS(3906), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_friend] = ACTIONS(3906), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + }, + [STATE(2726)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [aux_sym_preproc_else_token1] = ACTIONS(3648), + [aux_sym_preproc_elif_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_friend] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + }, + [STATE(2727)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [aux_sym_preproc_else_token1] = ACTIONS(3922), + [aux_sym_preproc_elif_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(2728)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_RPAREN] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7219), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7219), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7219), + [anon_sym_GT_GT] = ACTIONS(7219), + [anon_sym___extension__] = ACTIONS(7221), + [anon_sym___attribute__] = ACTIONS(7221), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7221), + [anon_sym_volatile] = ACTIONS(7221), + [anon_sym_restrict] = ACTIONS(7221), + [anon_sym___restrict__] = ACTIONS(7221), + [anon_sym__Atomic] = ACTIONS(7221), + [anon_sym__Noreturn] = ACTIONS(7221), + [anon_sym_noreturn] = ACTIONS(7221), + [anon_sym__Nonnull] = ACTIONS(7221), + [anon_sym_mutable] = ACTIONS(7221), + [anon_sym_constinit] = ACTIONS(7221), + [anon_sym_consteval] = ACTIONS(7221), + [anon_sym_alignas] = ACTIONS(7221), + [anon_sym__Alignas] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7219), + [anon_sym_and] = ACTIONS(7219), + [anon_sym_bitor] = ACTIONS(7221), + [anon_sym_xor] = ACTIONS(7219), + [anon_sym_bitand] = ACTIONS(7221), + [anon_sym_not_eq] = ACTIONS(7221), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7219), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7221), + [anon_sym_override] = ACTIONS(7221), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_DASH_GT_STAR] = ACTIONS(7221), + }, + [STATE(2729)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [aux_sym_preproc_else_token1] = ACTIONS(3922), + [aux_sym_preproc_elif_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(2730)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token2] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [aux_sym_preproc_else_token1] = ACTIONS(8396), + [aux_sym_preproc_elif_token1] = ACTIONS(8396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(2731)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token2] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [aux_sym_preproc_else_token1] = ACTIONS(3926), + [aux_sym_preproc_elif_token1] = ACTIONS(3926), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_private] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_friend] = ACTIONS(3926), + [anon_sym_public] = ACTIONS(3926), + [anon_sym_protected] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + }, + [STATE(2732)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token2] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [aux_sym_preproc_else_token1] = ACTIONS(8396), + [aux_sym_preproc_elif_token1] = ACTIONS(8396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(2733)] = { + [sym_attribute_specifier] = STATE(3125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7125), + [anon_sym_LPAREN2] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7123), + [anon_sym_PLUS] = ACTIONS(7123), + [anon_sym_STAR] = ACTIONS(7123), + [anon_sym_SLASH] = ACTIONS(7123), + [anon_sym_PERCENT] = ACTIONS(7123), + [anon_sym_PIPE_PIPE] = ACTIONS(7125), + [anon_sym_AMP_AMP] = ACTIONS(7125), + [anon_sym_PIPE] = ACTIONS(7123), + [anon_sym_CARET] = ACTIONS(7123), + [anon_sym_AMP] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_GT] = ACTIONS(7123), + [anon_sym_GT_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(7123), + [anon_sym_LT_LT] = ACTIONS(7123), + [anon_sym_GT_GT] = ACTIONS(7123), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7125), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_const] = ACTIONS(7123), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_mutable] = ACTIONS(7125), + [anon_sym_constinit] = ACTIONS(7125), + [anon_sym_consteval] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [anon_sym_QMARK] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7123), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_and_eq] = ACTIONS(7125), + [anon_sym_or_eq] = ACTIONS(7125), + [anon_sym_xor_eq] = ACTIONS(7125), + [anon_sym_LT_EQ_GT] = ACTIONS(7125), + [anon_sym_or] = ACTIONS(7123), + [anon_sym_and] = ACTIONS(7123), + [anon_sym_bitor] = ACTIONS(7125), + [anon_sym_xor] = ACTIONS(7123), + [anon_sym_bitand] = ACTIONS(7125), + [anon_sym_not_eq] = ACTIONS(7125), + [anon_sym_DASH_DASH] = ACTIONS(7125), + [anon_sym_PLUS_PLUS] = ACTIONS(7125), + [anon_sym_DOT] = ACTIONS(7123), + [anon_sym_DOT_STAR] = ACTIONS(7125), + [anon_sym_DASH_GT] = ACTIONS(7125), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7125), + [anon_sym_override] = ACTIONS(7125), + [anon_sym_GT2] = ACTIONS(7125), + [anon_sym_requires] = ACTIONS(7125), + }, + [STATE(2734)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token2] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [aux_sym_preproc_else_token1] = ACTIONS(3930), + [aux_sym_preproc_elif_token1] = ACTIONS(3930), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_friend] = ACTIONS(3930), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + }, + [STATE(2735)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token2] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [aux_sym_preproc_else_token1] = ACTIONS(3934), + [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_private] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_friend] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3934), + [anon_sym_protected] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + }, + [STATE(2736)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token2] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [aux_sym_preproc_else_token1] = ACTIONS(4086), + [aux_sym_preproc_elif_token1] = ACTIONS(4086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_private] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_friend] = ACTIONS(4086), + [anon_sym_public] = ACTIONS(4086), + [anon_sym_protected] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + }, + [STATE(2737)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token2] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [aux_sym_preproc_else_token1] = ACTIONS(3938), + [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_friend] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + }, + [STATE(2738)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token2] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [aux_sym_preproc_else_token1] = ACTIONS(3942), + [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_friend] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + }, + [STATE(2739)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token2] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [aux_sym_preproc_else_token1] = ACTIONS(3676), + [aux_sym_preproc_elif_token1] = ACTIONS(3676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_friend] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + }, + [STATE(2740)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token2] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [aux_sym_preproc_else_token1] = ACTIONS(3946), + [aux_sym_preproc_elif_token1] = ACTIONS(3946), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_private] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_friend] = ACTIONS(3946), + [anon_sym_public] = ACTIONS(3946), + [anon_sym_protected] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + }, + [STATE(2741)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [aux_sym_preproc_else_token1] = ACTIONS(3950), + [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_friend] = ACTIONS(3950), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + }, + [STATE(2742)] = { + [sym_identifier] = ACTIONS(8400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8400), + [anon_sym_PLUS] = ACTIONS(8400), + [anon_sym_STAR] = ACTIONS(8400), + [anon_sym_SLASH] = ACTIONS(8400), + [anon_sym_PERCENT] = ACTIONS(8400), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8400), + [anon_sym_CARET] = ACTIONS(8400), + [anon_sym_AMP] = ACTIONS(8400), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8400), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8400), + [anon_sym_LT] = ACTIONS(8400), + [anon_sym_LT_LT] = ACTIONS(8400), + [anon_sym_GT_GT] = ACTIONS(8400), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym_COLON] = ACTIONS(8400), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8400), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8400), + [anon_sym_or_eq] = ACTIONS(8400), + [anon_sym_xor_eq] = ACTIONS(8400), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8400), + [anon_sym_and] = ACTIONS(8400), + [anon_sym_bitor] = ACTIONS(8400), + [anon_sym_xor] = ACTIONS(8400), + [anon_sym_bitand] = ACTIONS(8400), + [anon_sym_not_eq] = ACTIONS(8400), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8400), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [anon_sym_L_DQUOTE] = ACTIONS(8402), + [anon_sym_u_DQUOTE] = ACTIONS(8402), + [anon_sym_U_DQUOTE] = ACTIONS(8402), + [anon_sym_u8_DQUOTE] = ACTIONS(8402), + [anon_sym_DQUOTE] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8402), + [anon_sym_LR_DQUOTE] = ACTIONS(8402), + [anon_sym_uR_DQUOTE] = ACTIONS(8402), + [anon_sym_UR_DQUOTE] = ACTIONS(8402), + [anon_sym_u8R_DQUOTE] = ACTIONS(8402), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), + [sym_literal_suffix] = ACTIONS(8400), + }, + [STATE(2743)] = { + [sym_attribute_specifier] = STATE(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7133), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7133), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_GT2] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + }, + [STATE(2744)] = { + [sym__declaration_modifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(5027), + [sym_attribute_declaration] = STATE(5027), + [sym_ms_declspec_modifier] = STATE(5027), + [sym_storage_class_specifier] = STATE(5027), + [sym_type_qualifier] = STATE(5027), + [sym_alignas_qualifier] = STATE(3482), + [sym_type_specifier] = STATE(3936), + [sym_sized_type_specifier] = STATE(4714), + [sym_enum_specifier] = STATE(4714), + [sym_struct_specifier] = STATE(4714), + [sym_union_specifier] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4714), + [sym_decltype_auto] = STATE(4706), + [sym_decltype] = STATE(4790), + [sym_class_specifier] = STATE(4714), + [sym_dependent_type] = STATE(4714), + [sym_template_type] = STATE(4520), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(8638), + [sym_qualified_type_identifier] = STATE(4521), + [sym_splice_specifier] = STATE(4350), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(4790), + [sym_splice_expression] = STATE(10976), + [aux_sym__declaration_specifiers_repeat1] = STATE(5027), + [aux_sym_sized_type_specifier_repeat1] = STATE(3709), + [sym_identifier] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8293), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3077), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_LBRACK_COLON] = ACTIONS(3091), + }, + [STATE(2745)] = { + [sym_attribute_specifier] = STATE(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), + [anon_sym_COMMA] = ACTIONS(7055), + [anon_sym_LPAREN2] = ACTIONS(7055), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_STAR] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_PIPE_PIPE] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7055), + [anon_sym_PIPE] = ACTIONS(7053), + [anon_sym_CARET] = ACTIONS(7053), + [anon_sym_AMP] = ACTIONS(7053), + [anon_sym_EQ_EQ] = ACTIONS(7055), + [anon_sym_BANG_EQ] = ACTIONS(7055), + [anon_sym_GT] = ACTIONS(7053), + [anon_sym_GT_EQ] = ACTIONS(7053), + [anon_sym_LT_EQ] = ACTIONS(7053), + [anon_sym_LT] = ACTIONS(7053), + [anon_sym_LT_LT] = ACTIONS(7053), + [anon_sym_GT_GT] = ACTIONS(7053), + [anon_sym___extension__] = ACTIONS(7055), + [anon_sym___attribute__] = ACTIONS(7862), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_LBRACE] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7055), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_const] = ACTIONS(7053), + [anon_sym_constexpr] = ACTIONS(7055), + [anon_sym_volatile] = ACTIONS(7055), + [anon_sym_restrict] = ACTIONS(7055), + [anon_sym___restrict__] = ACTIONS(7055), + [anon_sym__Atomic] = ACTIONS(7055), + [anon_sym__Noreturn] = ACTIONS(7055), + [anon_sym_noreturn] = ACTIONS(7055), + [anon_sym__Nonnull] = ACTIONS(7055), + [anon_sym_mutable] = ACTIONS(7055), + [anon_sym_constinit] = ACTIONS(7055), + [anon_sym_consteval] = ACTIONS(7055), + [anon_sym_alignas] = ACTIONS(7055), + [anon_sym__Alignas] = ACTIONS(7055), + [anon_sym_QMARK] = ACTIONS(7055), + [anon_sym_STAR_EQ] = ACTIONS(7055), + [anon_sym_SLASH_EQ] = ACTIONS(7055), + [anon_sym_PERCENT_EQ] = ACTIONS(7055), + [anon_sym_PLUS_EQ] = ACTIONS(7055), + [anon_sym_DASH_EQ] = ACTIONS(7055), + [anon_sym_LT_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_GT_EQ] = ACTIONS(7053), + [anon_sym_AMP_EQ] = ACTIONS(7055), + [anon_sym_CARET_EQ] = ACTIONS(7055), + [anon_sym_PIPE_EQ] = ACTIONS(7055), + [anon_sym_and_eq] = ACTIONS(7055), + [anon_sym_or_eq] = ACTIONS(7055), + [anon_sym_xor_eq] = ACTIONS(7055), + [anon_sym_LT_EQ_GT] = ACTIONS(7055), + [anon_sym_or] = ACTIONS(7053), + [anon_sym_and] = ACTIONS(7053), + [anon_sym_bitor] = ACTIONS(7055), + [anon_sym_xor] = ACTIONS(7053), + [anon_sym_bitand] = ACTIONS(7055), + [anon_sym_not_eq] = ACTIONS(7055), + [anon_sym_DASH_DASH] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7055), + [anon_sym_DOT] = ACTIONS(7053), + [anon_sym_DOT_STAR] = ACTIONS(7055), + [anon_sym_DASH_GT] = ACTIONS(7055), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7055), + [anon_sym_override] = ACTIONS(7055), + [anon_sym_GT2] = ACTIONS(7055), + [anon_sym_requires] = ACTIONS(7055), + }, + [STATE(2746)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token2] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [aux_sym_preproc_else_token1] = ACTIONS(8404), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(2747)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token2] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [aux_sym_preproc_else_token1] = ACTIONS(3970), + [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_friend] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + }, + [STATE(2748)] = { + [sym_identifier] = ACTIONS(8408), + [aux_sym_preproc_def_token1] = ACTIONS(8408), + [aux_sym_preproc_if_token1] = ACTIONS(8408), + [aux_sym_preproc_if_token2] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), + [aux_sym_preproc_else_token1] = ACTIONS(8408), + [aux_sym_preproc_elif_token1] = ACTIONS(8408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8408), + [sym_preproc_directive] = ACTIONS(8408), + [anon_sym_LPAREN2] = ACTIONS(8410), + [anon_sym_TILDE] = ACTIONS(8410), + [anon_sym_STAR] = ACTIONS(8410), + [anon_sym_AMP_AMP] = ACTIONS(8410), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_SEMI] = ACTIONS(8410), + [anon_sym___extension__] = ACTIONS(8408), + [anon_sym_typedef] = ACTIONS(8408), + [anon_sym_virtual] = ACTIONS(8408), + [anon_sym_extern] = ACTIONS(8408), + [anon_sym___attribute__] = ACTIONS(8408), + [anon_sym___attribute] = ACTIONS(8408), + [anon_sym_using] = ACTIONS(8408), + [anon_sym_COLON_COLON] = ACTIONS(8410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), + [anon_sym___declspec] = ACTIONS(8408), + [anon_sym___based] = ACTIONS(8408), + [anon_sym_signed] = ACTIONS(8408), + [anon_sym_unsigned] = ACTIONS(8408), + [anon_sym_long] = ACTIONS(8408), + [anon_sym_short] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8408), + [anon_sym_static] = ACTIONS(8408), + [anon_sym_register] = ACTIONS(8408), + [anon_sym_inline] = ACTIONS(8408), + [anon_sym___inline] = ACTIONS(8408), + [anon_sym___inline__] = ACTIONS(8408), + [anon_sym___forceinline] = ACTIONS(8408), + [anon_sym_thread_local] = ACTIONS(8408), + [anon_sym___thread] = ACTIONS(8408), + [anon_sym_const] = ACTIONS(8408), + [anon_sym_constexpr] = ACTIONS(8408), + [anon_sym_volatile] = ACTIONS(8408), + [anon_sym_restrict] = ACTIONS(8408), + [anon_sym___restrict__] = ACTIONS(8408), + [anon_sym__Atomic] = ACTIONS(8408), + [anon_sym__Noreturn] = ACTIONS(8408), + [anon_sym_noreturn] = ACTIONS(8408), + [anon_sym__Nonnull] = ACTIONS(8408), + [anon_sym_mutable] = ACTIONS(8408), + [anon_sym_constinit] = ACTIONS(8408), + [anon_sym_consteval] = ACTIONS(8408), + [anon_sym_alignas] = ACTIONS(8408), + [anon_sym__Alignas] = ACTIONS(8408), + [sym_primitive_type] = ACTIONS(8408), + [anon_sym_enum] = ACTIONS(8408), + [anon_sym_class] = ACTIONS(8408), + [anon_sym_struct] = ACTIONS(8408), + [anon_sym_union] = ACTIONS(8408), + [anon_sym_typename] = ACTIONS(8408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8408), + [anon_sym_decltype] = ACTIONS(8408), + [anon_sym_explicit] = ACTIONS(8408), + [anon_sym_private] = ACTIONS(8408), + [anon_sym_template] = ACTIONS(8408), + [anon_sym_operator] = ACTIONS(8408), + [anon_sym_friend] = ACTIONS(8408), + [anon_sym_public] = ACTIONS(8408), + [anon_sym_protected] = ACTIONS(8408), + [anon_sym_static_assert] = ACTIONS(8408), + [anon_sym_LBRACK_COLON] = ACTIONS(8410), + }, + [STATE(2749)] = { + [sym_template_argument_list] = STATE(2525), + [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(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(7031), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(7031), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(7031), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7031), + [anon_sym_GT_GT] = ACTIONS(7031), + [anon_sym___extension__] = ACTIONS(5272), + [anon_sym___attribute__] = ACTIONS(5272), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(5272), + [anon_sym_volatile] = ACTIONS(5272), + [anon_sym_restrict] = ACTIONS(5272), + [anon_sym___restrict__] = ACTIONS(5272), + [anon_sym__Atomic] = ACTIONS(5272), + [anon_sym__Noreturn] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym__Nonnull] = ACTIONS(5272), + [anon_sym_mutable] = ACTIONS(5272), + [anon_sym_constinit] = ACTIONS(5272), + [anon_sym_consteval] = ACTIONS(5272), + [anon_sym_alignas] = ACTIONS(5272), + [anon_sym__Alignas] = 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_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_bitor] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_bitand] = ACTIONS(5272), + [anon_sym_not_eq] = ACTIONS(5272), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(7031), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_requires] = ACTIONS(5272), + [anon_sym_DASH_GT_STAR] = ACTIONS(5272), + }, + [STATE(2750)] = { + [sym_identifier] = ACTIONS(8412), + [aux_sym_preproc_def_token1] = ACTIONS(8412), + [aux_sym_preproc_if_token1] = ACTIONS(8412), + [aux_sym_preproc_if_token2] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), + [aux_sym_preproc_else_token1] = ACTIONS(8412), + [aux_sym_preproc_elif_token1] = ACTIONS(8412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8412), + [sym_preproc_directive] = ACTIONS(8412), + [anon_sym_LPAREN2] = ACTIONS(8414), + [anon_sym_TILDE] = ACTIONS(8414), + [anon_sym_STAR] = ACTIONS(8414), + [anon_sym_AMP_AMP] = ACTIONS(8414), + [anon_sym_AMP] = ACTIONS(8412), + [anon_sym_SEMI] = ACTIONS(8414), + [anon_sym___extension__] = ACTIONS(8412), + [anon_sym_typedef] = ACTIONS(8412), + [anon_sym_virtual] = ACTIONS(8412), + [anon_sym_extern] = ACTIONS(8412), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_using] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(8414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), + [anon_sym___declspec] = ACTIONS(8412), + [anon_sym___based] = ACTIONS(8412), + [anon_sym_signed] = ACTIONS(8412), + [anon_sym_unsigned] = ACTIONS(8412), + [anon_sym_long] = ACTIONS(8412), + [anon_sym_short] = ACTIONS(8412), + [anon_sym_LBRACK] = ACTIONS(8412), + [anon_sym_static] = ACTIONS(8412), + [anon_sym_register] = ACTIONS(8412), + [anon_sym_inline] = ACTIONS(8412), + [anon_sym___inline] = ACTIONS(8412), + [anon_sym___inline__] = ACTIONS(8412), + [anon_sym___forceinline] = ACTIONS(8412), + [anon_sym_thread_local] = ACTIONS(8412), + [anon_sym___thread] = ACTIONS(8412), + [anon_sym_const] = ACTIONS(8412), + [anon_sym_constexpr] = ACTIONS(8412), + [anon_sym_volatile] = ACTIONS(8412), + [anon_sym_restrict] = ACTIONS(8412), + [anon_sym___restrict__] = ACTIONS(8412), + [anon_sym__Atomic] = ACTIONS(8412), + [anon_sym__Noreturn] = ACTIONS(8412), + [anon_sym_noreturn] = ACTIONS(8412), + [anon_sym__Nonnull] = ACTIONS(8412), + [anon_sym_mutable] = ACTIONS(8412), + [anon_sym_constinit] = ACTIONS(8412), + [anon_sym_consteval] = ACTIONS(8412), + [anon_sym_alignas] = ACTIONS(8412), + [anon_sym__Alignas] = ACTIONS(8412), + [sym_primitive_type] = ACTIONS(8412), + [anon_sym_enum] = ACTIONS(8412), + [anon_sym_class] = ACTIONS(8412), + [anon_sym_struct] = ACTIONS(8412), + [anon_sym_union] = ACTIONS(8412), + [anon_sym_typename] = ACTIONS(8412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8412), + [anon_sym_decltype] = ACTIONS(8412), + [anon_sym_explicit] = ACTIONS(8412), + [anon_sym_private] = ACTIONS(8412), + [anon_sym_template] = ACTIONS(8412), + [anon_sym_operator] = ACTIONS(8412), + [anon_sym_friend] = ACTIONS(8412), + [anon_sym_public] = ACTIONS(8412), + [anon_sym_protected] = ACTIONS(8412), + [anon_sym_static_assert] = ACTIONS(8412), + [anon_sym_LBRACK_COLON] = ACTIONS(8414), + }, + [STATE(2751)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token2] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [aux_sym_preproc_else_token1] = ACTIONS(3990), + [aux_sym_preproc_elif_token1] = ACTIONS(3990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_private] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_friend] = ACTIONS(3990), + [anon_sym_public] = ACTIONS(3990), + [anon_sym_protected] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + }, + [STATE(2752)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(2753)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [aux_sym_preproc_else_token1] = ACTIONS(3998), + [aux_sym_preproc_elif_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(2754)] = { + [sym_identifier] = ACTIONS(8416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8418), + [anon_sym_COMMA] = ACTIONS(8418), + [anon_sym_RPAREN] = ACTIONS(8418), + [aux_sym_preproc_if_token2] = ACTIONS(8418), + [aux_sym_preproc_else_token1] = ACTIONS(8418), + [aux_sym_preproc_elif_token1] = ACTIONS(8416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8418), + [anon_sym_LPAREN2] = ACTIONS(8418), + [anon_sym_DASH] = ACTIONS(8416), + [anon_sym_PLUS] = ACTIONS(8416), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(8416), + [anon_sym_PERCENT] = ACTIONS(8416), + [anon_sym_PIPE_PIPE] = ACTIONS(8418), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(8416), + [anon_sym_CARET] = ACTIONS(8416), + [anon_sym_AMP] = ACTIONS(8416), + [anon_sym_EQ_EQ] = ACTIONS(8418), + [anon_sym_BANG_EQ] = ACTIONS(8418), + [anon_sym_GT] = ACTIONS(8416), + [anon_sym_GT_EQ] = ACTIONS(8418), + [anon_sym_LT_EQ] = ACTIONS(8416), + [anon_sym_LT] = ACTIONS(8416), + [anon_sym_LT_LT] = ACTIONS(8416), + [anon_sym_GT_GT] = ACTIONS(8416), + [anon_sym_SEMI] = ACTIONS(8418), + [anon_sym___attribute__] = ACTIONS(8416), + [anon_sym___attribute] = ACTIONS(8416), + [anon_sym_COLON] = ACTIONS(8416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8418), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8418), + [anon_sym_RBRACE] = ACTIONS(8418), + [anon_sym_LBRACK] = ACTIONS(8416), + [anon_sym_EQ] = ACTIONS(8416), + [anon_sym_QMARK] = ACTIONS(8418), + [anon_sym_STAR_EQ] = ACTIONS(8418), + [anon_sym_SLASH_EQ] = ACTIONS(8418), + [anon_sym_PERCENT_EQ] = ACTIONS(8418), + [anon_sym_PLUS_EQ] = ACTIONS(8418), + [anon_sym_DASH_EQ] = ACTIONS(8418), + [anon_sym_LT_LT_EQ] = ACTIONS(8418), + [anon_sym_GT_GT_EQ] = ACTIONS(8418), + [anon_sym_AMP_EQ] = ACTIONS(8418), + [anon_sym_CARET_EQ] = ACTIONS(8418), + [anon_sym_PIPE_EQ] = ACTIONS(8418), + [anon_sym_and_eq] = ACTIONS(8416), + [anon_sym_or_eq] = ACTIONS(8416), + [anon_sym_xor_eq] = ACTIONS(8416), + [anon_sym_LT_EQ_GT] = ACTIONS(8418), + [anon_sym_or] = ACTIONS(8416), + [anon_sym_and] = ACTIONS(8416), + [anon_sym_bitor] = ACTIONS(8416), + [anon_sym_xor] = ACTIONS(8416), + [anon_sym_bitand] = ACTIONS(8416), + [anon_sym_not_eq] = ACTIONS(8416), + [anon_sym_DASH_DASH] = ACTIONS(8418), + [anon_sym_PLUS_PLUS] = ACTIONS(8418), + [anon_sym_asm] = ACTIONS(8416), + [anon_sym___asm__] = ACTIONS(8416), + [anon_sym___asm] = ACTIONS(8416), + [anon_sym_DOT] = ACTIONS(8416), + [anon_sym_DOT_STAR] = ACTIONS(8418), + [anon_sym_DASH_GT] = ACTIONS(8418), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8416), + [anon_sym_override] = ACTIONS(8416), + [anon_sym_noexcept] = ACTIONS(8416), + [anon_sym_throw] = ACTIONS(8416), + [anon_sym_requires] = ACTIONS(8416), + [anon_sym_COLON_RBRACK] = ACTIONS(8418), + }, + [STATE(2755)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(2756)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [aux_sym_preproc_else_token1] = ACTIONS(4002), + [aux_sym_preproc_elif_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(2757)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token2] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [aux_sym_preproc_else_token1] = ACTIONS(4006), + [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_private] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_friend] = ACTIONS(4006), + [anon_sym_public] = ACTIONS(4006), + [anon_sym_protected] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + }, + [STATE(2758)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token2] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [aux_sym_preproc_else_token1] = ACTIONS(4010), + [aux_sym_preproc_elif_token1] = ACTIONS(4010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_friend] = ACTIONS(4010), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + }, + [STATE(2759)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token2] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [aux_sym_preproc_else_token1] = ACTIONS(4014), + [aux_sym_preproc_elif_token1] = ACTIONS(4014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = ACTIONS(4014), + [anon_sym_LPAREN2] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [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_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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_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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4014), + [anon_sym_decltype] = ACTIONS(4014), + [anon_sym_explicit] = ACTIONS(4014), + [anon_sym_private] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_friend] = ACTIONS(4014), + [anon_sym_public] = ACTIONS(4014), + [anon_sym_protected] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + }, + [STATE(2760)] = { + [sym_identifier] = ACTIONS(8420), + [aux_sym_preproc_def_token1] = ACTIONS(8420), + [aux_sym_preproc_if_token1] = ACTIONS(8420), + [aux_sym_preproc_if_token2] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), + [aux_sym_preproc_else_token1] = ACTIONS(8420), + [aux_sym_preproc_elif_token1] = ACTIONS(8420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8420), + [sym_preproc_directive] = ACTIONS(8420), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_TILDE] = ACTIONS(8422), + [anon_sym_STAR] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___extension__] = ACTIONS(8420), + [anon_sym_typedef] = ACTIONS(8420), + [anon_sym_virtual] = ACTIONS(8420), + [anon_sym_extern] = ACTIONS(8420), + [anon_sym___attribute__] = ACTIONS(8420), + [anon_sym___attribute] = ACTIONS(8420), + [anon_sym_using] = ACTIONS(8420), + [anon_sym_COLON_COLON] = ACTIONS(8422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), + [anon_sym___declspec] = ACTIONS(8420), + [anon_sym___based] = ACTIONS(8420), + [anon_sym_signed] = ACTIONS(8420), + [anon_sym_unsigned] = ACTIONS(8420), + [anon_sym_long] = ACTIONS(8420), + [anon_sym_short] = ACTIONS(8420), + [anon_sym_LBRACK] = ACTIONS(8420), + [anon_sym_static] = ACTIONS(8420), + [anon_sym_register] = ACTIONS(8420), + [anon_sym_inline] = ACTIONS(8420), + [anon_sym___inline] = ACTIONS(8420), + [anon_sym___inline__] = ACTIONS(8420), + [anon_sym___forceinline] = ACTIONS(8420), + [anon_sym_thread_local] = ACTIONS(8420), + [anon_sym___thread] = ACTIONS(8420), + [anon_sym_const] = ACTIONS(8420), + [anon_sym_constexpr] = ACTIONS(8420), + [anon_sym_volatile] = ACTIONS(8420), + [anon_sym_restrict] = ACTIONS(8420), + [anon_sym___restrict__] = ACTIONS(8420), + [anon_sym__Atomic] = ACTIONS(8420), + [anon_sym__Noreturn] = ACTIONS(8420), + [anon_sym_noreturn] = ACTIONS(8420), + [anon_sym__Nonnull] = ACTIONS(8420), + [anon_sym_mutable] = ACTIONS(8420), + [anon_sym_constinit] = ACTIONS(8420), + [anon_sym_consteval] = ACTIONS(8420), + [anon_sym_alignas] = ACTIONS(8420), + [anon_sym__Alignas] = ACTIONS(8420), + [sym_primitive_type] = ACTIONS(8420), + [anon_sym_enum] = ACTIONS(8420), + [anon_sym_class] = ACTIONS(8420), + [anon_sym_struct] = ACTIONS(8420), + [anon_sym_union] = ACTIONS(8420), + [anon_sym_typename] = ACTIONS(8420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8420), + [anon_sym_decltype] = ACTIONS(8420), + [anon_sym_explicit] = ACTIONS(8420), + [anon_sym_private] = ACTIONS(8420), + [anon_sym_template] = ACTIONS(8420), + [anon_sym_operator] = ACTIONS(8420), + [anon_sym_friend] = ACTIONS(8420), + [anon_sym_public] = ACTIONS(8420), + [anon_sym_protected] = ACTIONS(8420), + [anon_sym_static_assert] = ACTIONS(8420), + [anon_sym_LBRACK_COLON] = ACTIONS(8422), + }, + [STATE(2761)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token2] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [aux_sym_preproc_else_token1] = ACTIONS(4018), + [aux_sym_preproc_elif_token1] = ACTIONS(4018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = ACTIONS(4018), + [anon_sym_LPAREN2] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [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_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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_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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4018), + [anon_sym_decltype] = ACTIONS(4018), + [anon_sym_explicit] = ACTIONS(4018), + [anon_sym_private] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_friend] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4018), + [anon_sym_protected] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + }, + [STATE(2762)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(8154), + [anon_sym_unsigned] = ACTIONS(8154), + [anon_sym_long] = ACTIONS(8154), + [anon_sym_short] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2763)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token2] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [aux_sym_preproc_else_token1] = ACTIONS(4022), + [aux_sym_preproc_elif_token1] = ACTIONS(4022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_private] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_friend] = ACTIONS(4022), + [anon_sym_public] = ACTIONS(4022), + [anon_sym_protected] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + }, + [STATE(2764)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token2] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [aux_sym_preproc_else_token1] = ACTIONS(4026), + [aux_sym_preproc_elif_token1] = ACTIONS(4026), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_private] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_friend] = ACTIONS(4026), + [anon_sym_public] = ACTIONS(4026), + [anon_sym_protected] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + }, + [STATE(2765)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [aux_sym_preproc_else_token1] = ACTIONS(3876), + [aux_sym_preproc_elif_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(2766)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + }, + [STATE(2767)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token2] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [aux_sym_preproc_else_token1] = ACTIONS(8347), + [aux_sym_preproc_elif_token1] = ACTIONS(8347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(2768)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + }, + [STATE(2769)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [aux_sym_preproc_else_token1] = ACTIONS(3876), + [aux_sym_preproc_elif_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(2770)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(2772), + [sym__declarator] = STATE(8686), + [sym__abstract_declarator] = STATE(8897), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3692), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3692), + [aux_sym_pointer_declarator_repeat1] = STATE(2772), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6457), + [anon_sym___attribute] = ACTIONS(6457), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2771)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token2] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [aux_sym_preproc_else_token1] = ACTIONS(8404), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(2772)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(6287), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8942), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3700), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3700), + [aux_sym_pointer_declarator_repeat1] = STATE(6287), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(2773)] = { + [sym_identifier] = ACTIONS(8430), + [aux_sym_preproc_def_token1] = ACTIONS(8430), + [aux_sym_preproc_if_token1] = ACTIONS(8430), + [aux_sym_preproc_if_token2] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), + [aux_sym_preproc_else_token1] = ACTIONS(8430), + [aux_sym_preproc_elif_token1] = ACTIONS(8430), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8430), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8430), + [sym_preproc_directive] = ACTIONS(8430), + [anon_sym_LPAREN2] = ACTIONS(8432), + [anon_sym_TILDE] = ACTIONS(8432), + [anon_sym_STAR] = ACTIONS(8432), + [anon_sym_AMP_AMP] = ACTIONS(8432), + [anon_sym_AMP] = ACTIONS(8430), + [anon_sym_SEMI] = ACTIONS(8432), + [anon_sym___extension__] = ACTIONS(8430), + [anon_sym_typedef] = ACTIONS(8430), + [anon_sym_virtual] = ACTIONS(8430), + [anon_sym_extern] = ACTIONS(8430), + [anon_sym___attribute__] = ACTIONS(8430), + [anon_sym___attribute] = ACTIONS(8430), + [anon_sym_using] = ACTIONS(8430), + [anon_sym_COLON_COLON] = ACTIONS(8432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), + [anon_sym___declspec] = ACTIONS(8430), + [anon_sym___based] = ACTIONS(8430), + [anon_sym_signed] = ACTIONS(8430), + [anon_sym_unsigned] = ACTIONS(8430), + [anon_sym_long] = ACTIONS(8430), + [anon_sym_short] = ACTIONS(8430), + [anon_sym_LBRACK] = ACTIONS(8430), + [anon_sym_static] = ACTIONS(8430), + [anon_sym_register] = ACTIONS(8430), + [anon_sym_inline] = ACTIONS(8430), + [anon_sym___inline] = ACTIONS(8430), + [anon_sym___inline__] = ACTIONS(8430), + [anon_sym___forceinline] = ACTIONS(8430), + [anon_sym_thread_local] = ACTIONS(8430), + [anon_sym___thread] = ACTIONS(8430), + [anon_sym_const] = ACTIONS(8430), + [anon_sym_constexpr] = ACTIONS(8430), + [anon_sym_volatile] = ACTIONS(8430), + [anon_sym_restrict] = ACTIONS(8430), + [anon_sym___restrict__] = ACTIONS(8430), + [anon_sym__Atomic] = ACTIONS(8430), + [anon_sym__Noreturn] = ACTIONS(8430), + [anon_sym_noreturn] = ACTIONS(8430), + [anon_sym__Nonnull] = ACTIONS(8430), + [anon_sym_mutable] = ACTIONS(8430), + [anon_sym_constinit] = ACTIONS(8430), + [anon_sym_consteval] = ACTIONS(8430), + [anon_sym_alignas] = ACTIONS(8430), + [anon_sym__Alignas] = ACTIONS(8430), + [sym_primitive_type] = ACTIONS(8430), + [anon_sym_enum] = ACTIONS(8430), + [anon_sym_class] = ACTIONS(8430), + [anon_sym_struct] = ACTIONS(8430), + [anon_sym_union] = ACTIONS(8430), + [anon_sym_typename] = ACTIONS(8430), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8430), + [anon_sym_decltype] = ACTIONS(8430), + [anon_sym_explicit] = ACTIONS(8430), + [anon_sym_private] = ACTIONS(8430), + [anon_sym_template] = ACTIONS(8430), + [anon_sym_operator] = ACTIONS(8430), + [anon_sym_friend] = ACTIONS(8430), + [anon_sym_public] = ACTIONS(8430), + [anon_sym_protected] = ACTIONS(8430), + [anon_sym_static_assert] = ACTIONS(8430), + [anon_sym_LBRACK_COLON] = ACTIONS(8432), + }, + [STATE(2774)] = { + [sym_identifier] = ACTIONS(8434), + [aux_sym_preproc_def_token1] = ACTIONS(8434), + [aux_sym_preproc_if_token1] = ACTIONS(8434), + [aux_sym_preproc_if_token2] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), + [aux_sym_preproc_else_token1] = ACTIONS(8434), + [aux_sym_preproc_elif_token1] = ACTIONS(8434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8434), + [sym_preproc_directive] = ACTIONS(8434), + [anon_sym_LPAREN2] = ACTIONS(8436), + [anon_sym_TILDE] = ACTIONS(8436), + [anon_sym_STAR] = ACTIONS(8436), + [anon_sym_AMP_AMP] = ACTIONS(8436), + [anon_sym_AMP] = ACTIONS(8434), + [anon_sym_SEMI] = ACTIONS(8436), + [anon_sym___extension__] = ACTIONS(8434), + [anon_sym_typedef] = ACTIONS(8434), + [anon_sym_virtual] = ACTIONS(8434), + [anon_sym_extern] = ACTIONS(8434), + [anon_sym___attribute__] = ACTIONS(8434), + [anon_sym___attribute] = ACTIONS(8434), + [anon_sym_using] = ACTIONS(8434), + [anon_sym_COLON_COLON] = ACTIONS(8436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), + [anon_sym___declspec] = ACTIONS(8434), + [anon_sym___based] = ACTIONS(8434), + [anon_sym_signed] = ACTIONS(8434), + [anon_sym_unsigned] = ACTIONS(8434), + [anon_sym_long] = ACTIONS(8434), + [anon_sym_short] = ACTIONS(8434), + [anon_sym_LBRACK] = ACTIONS(8434), + [anon_sym_static] = ACTIONS(8434), + [anon_sym_register] = ACTIONS(8434), + [anon_sym_inline] = ACTIONS(8434), + [anon_sym___inline] = ACTIONS(8434), + [anon_sym___inline__] = ACTIONS(8434), + [anon_sym___forceinline] = ACTIONS(8434), + [anon_sym_thread_local] = ACTIONS(8434), + [anon_sym___thread] = ACTIONS(8434), + [anon_sym_const] = ACTIONS(8434), + [anon_sym_constexpr] = ACTIONS(8434), + [anon_sym_volatile] = ACTIONS(8434), + [anon_sym_restrict] = ACTIONS(8434), + [anon_sym___restrict__] = ACTIONS(8434), + [anon_sym__Atomic] = ACTIONS(8434), + [anon_sym__Noreturn] = ACTIONS(8434), + [anon_sym_noreturn] = ACTIONS(8434), + [anon_sym__Nonnull] = ACTIONS(8434), + [anon_sym_mutable] = ACTIONS(8434), + [anon_sym_constinit] = ACTIONS(8434), + [anon_sym_consteval] = ACTIONS(8434), + [anon_sym_alignas] = ACTIONS(8434), + [anon_sym__Alignas] = ACTIONS(8434), + [sym_primitive_type] = ACTIONS(8434), + [anon_sym_enum] = ACTIONS(8434), + [anon_sym_class] = ACTIONS(8434), + [anon_sym_struct] = ACTIONS(8434), + [anon_sym_union] = ACTIONS(8434), + [anon_sym_typename] = ACTIONS(8434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8434), + [anon_sym_decltype] = ACTIONS(8434), + [anon_sym_explicit] = ACTIONS(8434), + [anon_sym_private] = ACTIONS(8434), + [anon_sym_template] = ACTIONS(8434), + [anon_sym_operator] = ACTIONS(8434), + [anon_sym_friend] = ACTIONS(8434), + [anon_sym_public] = ACTIONS(8434), + [anon_sym_protected] = ACTIONS(8434), + [anon_sym_static_assert] = ACTIONS(8434), + [anon_sym_LBRACK_COLON] = ACTIONS(8436), + }, + [STATE(2775)] = { + [sym_identifier] = ACTIONS(8438), + [aux_sym_preproc_def_token1] = ACTIONS(8438), + [aux_sym_preproc_if_token1] = ACTIONS(8438), + [aux_sym_preproc_if_token2] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), + [aux_sym_preproc_else_token1] = ACTIONS(8438), + [aux_sym_preproc_elif_token1] = ACTIONS(8438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8438), + [sym_preproc_directive] = ACTIONS(8438), + [anon_sym_LPAREN2] = ACTIONS(8440), + [anon_sym_TILDE] = ACTIONS(8440), + [anon_sym_STAR] = ACTIONS(8440), + [anon_sym_AMP_AMP] = ACTIONS(8440), + [anon_sym_AMP] = ACTIONS(8438), + [anon_sym_SEMI] = ACTIONS(8440), + [anon_sym___extension__] = ACTIONS(8438), + [anon_sym_typedef] = ACTIONS(8438), + [anon_sym_virtual] = ACTIONS(8438), + [anon_sym_extern] = ACTIONS(8438), + [anon_sym___attribute__] = ACTIONS(8438), + [anon_sym___attribute] = ACTIONS(8438), + [anon_sym_using] = ACTIONS(8438), + [anon_sym_COLON_COLON] = ACTIONS(8440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), + [anon_sym___declspec] = ACTIONS(8438), + [anon_sym___based] = ACTIONS(8438), + [anon_sym_signed] = ACTIONS(8438), + [anon_sym_unsigned] = ACTIONS(8438), + [anon_sym_long] = ACTIONS(8438), + [anon_sym_short] = ACTIONS(8438), + [anon_sym_LBRACK] = ACTIONS(8438), + [anon_sym_static] = ACTIONS(8438), + [anon_sym_register] = ACTIONS(8438), + [anon_sym_inline] = ACTIONS(8438), + [anon_sym___inline] = ACTIONS(8438), + [anon_sym___inline__] = ACTIONS(8438), + [anon_sym___forceinline] = ACTIONS(8438), + [anon_sym_thread_local] = ACTIONS(8438), + [anon_sym___thread] = ACTIONS(8438), + [anon_sym_const] = ACTIONS(8438), + [anon_sym_constexpr] = ACTIONS(8438), + [anon_sym_volatile] = ACTIONS(8438), + [anon_sym_restrict] = ACTIONS(8438), + [anon_sym___restrict__] = ACTIONS(8438), + [anon_sym__Atomic] = ACTIONS(8438), + [anon_sym__Noreturn] = ACTIONS(8438), + [anon_sym_noreturn] = ACTIONS(8438), + [anon_sym__Nonnull] = ACTIONS(8438), + [anon_sym_mutable] = ACTIONS(8438), + [anon_sym_constinit] = ACTIONS(8438), + [anon_sym_consteval] = ACTIONS(8438), + [anon_sym_alignas] = ACTIONS(8438), + [anon_sym__Alignas] = ACTIONS(8438), + [sym_primitive_type] = ACTIONS(8438), + [anon_sym_enum] = ACTIONS(8438), + [anon_sym_class] = ACTIONS(8438), + [anon_sym_struct] = ACTIONS(8438), + [anon_sym_union] = ACTIONS(8438), + [anon_sym_typename] = ACTIONS(8438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8438), + [anon_sym_decltype] = ACTIONS(8438), + [anon_sym_explicit] = ACTIONS(8438), + [anon_sym_private] = ACTIONS(8438), + [anon_sym_template] = ACTIONS(8438), + [anon_sym_operator] = ACTIONS(8438), + [anon_sym_friend] = ACTIONS(8438), + [anon_sym_public] = ACTIONS(8438), + [anon_sym_protected] = ACTIONS(8438), + [anon_sym_static_assert] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(8440), + }, + [STATE(2776)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_RPAREN] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7283), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7283), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7283), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7283), + [anon_sym_GT_GT] = ACTIONS(7283), + [anon_sym___extension__] = ACTIONS(7285), + [anon_sym___attribute__] = ACTIONS(7285), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7285), + [anon_sym_volatile] = ACTIONS(7285), + [anon_sym_restrict] = ACTIONS(7285), + [anon_sym___restrict__] = ACTIONS(7285), + [anon_sym__Atomic] = ACTIONS(7285), + [anon_sym__Noreturn] = ACTIONS(7285), + [anon_sym_noreturn] = ACTIONS(7285), + [anon_sym__Nonnull] = ACTIONS(7285), + [anon_sym_mutable] = ACTIONS(7285), + [anon_sym_constinit] = ACTIONS(7285), + [anon_sym_consteval] = ACTIONS(7285), + [anon_sym_alignas] = ACTIONS(7285), + [anon_sym__Alignas] = ACTIONS(7285), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7285), + [anon_sym_or_eq] = ACTIONS(7285), + [anon_sym_xor_eq] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7283), + [anon_sym_and] = ACTIONS(7283), + [anon_sym_bitor] = ACTIONS(7285), + [anon_sym_xor] = ACTIONS(7283), + [anon_sym_bitand] = ACTIONS(7285), + [anon_sym_not_eq] = ACTIONS(7285), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7283), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7285), + [anon_sym_override] = ACTIONS(7285), + [anon_sym_requires] = ACTIONS(7285), + [anon_sym_DASH_GT_STAR] = ACTIONS(7285), + }, + [STATE(2777)] = { + [sym_identifier] = ACTIONS(8442), + [aux_sym_preproc_def_token1] = ACTIONS(8442), + [aux_sym_preproc_if_token1] = ACTIONS(8442), + [aux_sym_preproc_if_token2] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), + [aux_sym_preproc_else_token1] = ACTIONS(8442), + [aux_sym_preproc_elif_token1] = ACTIONS(8442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8442), + [sym_preproc_directive] = ACTIONS(8442), + [anon_sym_LPAREN2] = ACTIONS(8444), + [anon_sym_TILDE] = ACTIONS(8444), + [anon_sym_STAR] = ACTIONS(8444), + [anon_sym_AMP_AMP] = ACTIONS(8444), + [anon_sym_AMP] = ACTIONS(8442), + [anon_sym_SEMI] = ACTIONS(8444), + [anon_sym___extension__] = ACTIONS(8442), + [anon_sym_typedef] = ACTIONS(8442), + [anon_sym_virtual] = ACTIONS(8442), + [anon_sym_extern] = ACTIONS(8442), + [anon_sym___attribute__] = ACTIONS(8442), + [anon_sym___attribute] = ACTIONS(8442), + [anon_sym_using] = ACTIONS(8442), + [anon_sym_COLON_COLON] = ACTIONS(8444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), + [anon_sym___declspec] = ACTIONS(8442), + [anon_sym___based] = ACTIONS(8442), + [anon_sym_signed] = ACTIONS(8442), + [anon_sym_unsigned] = ACTIONS(8442), + [anon_sym_long] = ACTIONS(8442), + [anon_sym_short] = ACTIONS(8442), + [anon_sym_LBRACK] = ACTIONS(8442), + [anon_sym_static] = ACTIONS(8442), + [anon_sym_register] = ACTIONS(8442), + [anon_sym_inline] = ACTIONS(8442), + [anon_sym___inline] = ACTIONS(8442), + [anon_sym___inline__] = ACTIONS(8442), + [anon_sym___forceinline] = ACTIONS(8442), + [anon_sym_thread_local] = ACTIONS(8442), + [anon_sym___thread] = ACTIONS(8442), + [anon_sym_const] = ACTIONS(8442), + [anon_sym_constexpr] = ACTIONS(8442), + [anon_sym_volatile] = ACTIONS(8442), + [anon_sym_restrict] = ACTIONS(8442), + [anon_sym___restrict__] = ACTIONS(8442), + [anon_sym__Atomic] = ACTIONS(8442), + [anon_sym__Noreturn] = ACTIONS(8442), + [anon_sym_noreturn] = ACTIONS(8442), + [anon_sym__Nonnull] = ACTIONS(8442), + [anon_sym_mutable] = ACTIONS(8442), + [anon_sym_constinit] = ACTIONS(8442), + [anon_sym_consteval] = ACTIONS(8442), + [anon_sym_alignas] = ACTIONS(8442), + [anon_sym__Alignas] = ACTIONS(8442), + [sym_primitive_type] = ACTIONS(8442), + [anon_sym_enum] = ACTIONS(8442), + [anon_sym_class] = ACTIONS(8442), + [anon_sym_struct] = ACTIONS(8442), + [anon_sym_union] = ACTIONS(8442), + [anon_sym_typename] = ACTIONS(8442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8442), + [anon_sym_decltype] = ACTIONS(8442), + [anon_sym_explicit] = ACTIONS(8442), + [anon_sym_private] = ACTIONS(8442), + [anon_sym_template] = ACTIONS(8442), + [anon_sym_operator] = ACTIONS(8442), + [anon_sym_friend] = ACTIONS(8442), + [anon_sym_public] = ACTIONS(8442), + [anon_sym_protected] = ACTIONS(8442), + [anon_sym_static_assert] = ACTIONS(8442), + [anon_sym_LBRACK_COLON] = ACTIONS(8444), + }, + [STATE(2778)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token2] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [aux_sym_preproc_else_token1] = ACTIONS(4062), + [aux_sym_preproc_elif_token1] = ACTIONS(4062), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_private] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_friend] = ACTIONS(4062), + [anon_sym_public] = ACTIONS(4062), + [anon_sym_protected] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + }, + [STATE(2779)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token2] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [aux_sym_preproc_else_token1] = ACTIONS(4066), + [aux_sym_preproc_elif_token1] = ACTIONS(4066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_private] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_friend] = ACTIONS(4066), + [anon_sym_public] = ACTIONS(4066), + [anon_sym_protected] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + }, + [STATE(2780)] = { + [sym_identifier] = ACTIONS(8446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), + [anon_sym_COMMA] = ACTIONS(8448), + [anon_sym_RPAREN] = ACTIONS(8448), + [aux_sym_preproc_if_token2] = ACTIONS(8448), + [aux_sym_preproc_else_token1] = ACTIONS(8448), + [aux_sym_preproc_elif_token1] = ACTIONS(8446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8448), + [anon_sym_LPAREN2] = ACTIONS(8448), + [anon_sym_DASH] = ACTIONS(8446), + [anon_sym_PLUS] = ACTIONS(8446), + [anon_sym_STAR] = ACTIONS(8446), + [anon_sym_SLASH] = ACTIONS(8446), + [anon_sym_PERCENT] = ACTIONS(8446), + [anon_sym_PIPE_PIPE] = ACTIONS(8448), + [anon_sym_AMP_AMP] = ACTIONS(8448), + [anon_sym_PIPE] = ACTIONS(8446), + [anon_sym_CARET] = ACTIONS(8446), + [anon_sym_AMP] = ACTIONS(8446), + [anon_sym_EQ_EQ] = ACTIONS(8448), + [anon_sym_BANG_EQ] = ACTIONS(8448), + [anon_sym_GT] = ACTIONS(8446), + [anon_sym_GT_EQ] = ACTIONS(8448), + [anon_sym_LT_EQ] = ACTIONS(8446), + [anon_sym_LT] = ACTIONS(8446), + [anon_sym_LT_LT] = ACTIONS(8446), + [anon_sym_GT_GT] = ACTIONS(8446), + [anon_sym_SEMI] = ACTIONS(8448), + [anon_sym_COLON] = ACTIONS(8446), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8448), + [anon_sym_RBRACE] = ACTIONS(8448), + [anon_sym_LBRACK] = ACTIONS(8448), + [anon_sym_EQ] = ACTIONS(8446), + [anon_sym_QMARK] = ACTIONS(8448), + [anon_sym_STAR_EQ] = ACTIONS(8448), + [anon_sym_SLASH_EQ] = ACTIONS(8448), + [anon_sym_PERCENT_EQ] = ACTIONS(8448), + [anon_sym_PLUS_EQ] = ACTIONS(8448), + [anon_sym_DASH_EQ] = ACTIONS(8448), + [anon_sym_LT_LT_EQ] = ACTIONS(8448), + [anon_sym_GT_GT_EQ] = ACTIONS(8448), + [anon_sym_AMP_EQ] = ACTIONS(8448), + [anon_sym_CARET_EQ] = ACTIONS(8448), + [anon_sym_PIPE_EQ] = ACTIONS(8448), + [anon_sym_and_eq] = ACTIONS(8446), + [anon_sym_or_eq] = ACTIONS(8446), + [anon_sym_xor_eq] = ACTIONS(8446), + [anon_sym_LT_EQ_GT] = ACTIONS(8448), + [anon_sym_or] = ACTIONS(8446), + [anon_sym_and] = ACTIONS(8446), + [anon_sym_bitor] = ACTIONS(8446), + [anon_sym_xor] = ACTIONS(8446), + [anon_sym_bitand] = ACTIONS(8446), + [anon_sym_not_eq] = ACTIONS(8446), + [anon_sym_DASH_DASH] = ACTIONS(8448), + [anon_sym_PLUS_PLUS] = ACTIONS(8448), + [anon_sym_DOT] = ACTIONS(8446), + [anon_sym_DOT_STAR] = ACTIONS(8448), + [anon_sym_DASH_GT] = ACTIONS(8448), + [anon_sym_L_DQUOTE] = ACTIONS(8448), + [anon_sym_u_DQUOTE] = ACTIONS(8448), + [anon_sym_U_DQUOTE] = ACTIONS(8448), + [anon_sym_u8_DQUOTE] = ACTIONS(8448), + [anon_sym_DQUOTE] = ACTIONS(8448), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8448), + [anon_sym_LR_DQUOTE] = ACTIONS(8448), + [anon_sym_uR_DQUOTE] = ACTIONS(8448), + [anon_sym_UR_DQUOTE] = ACTIONS(8448), + [anon_sym_u8R_DQUOTE] = ACTIONS(8448), + [anon_sym_COLON_RBRACK] = ACTIONS(8448), + [sym_literal_suffix] = ACTIONS(8446), + }, + [STATE(2781)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [aux_sym_preproc_else_token1] = ACTIONS(4070), + [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(2782)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_RPAREN] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7335), + [anon_sym___attribute__] = ACTIONS(7335), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7335), + [anon_sym_volatile] = ACTIONS(7335), + [anon_sym_restrict] = ACTIONS(7335), + [anon_sym___restrict__] = ACTIONS(7335), + [anon_sym__Atomic] = ACTIONS(7335), + [anon_sym__Noreturn] = ACTIONS(7335), + [anon_sym_noreturn] = ACTIONS(7335), + [anon_sym__Nonnull] = ACTIONS(7335), + [anon_sym_mutable] = ACTIONS(7335), + [anon_sym_constinit] = ACTIONS(7335), + [anon_sym_consteval] = ACTIONS(7335), + [anon_sym_alignas] = ACTIONS(7335), + [anon_sym__Alignas] = ACTIONS(7335), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_STAR_EQ] = ACTIONS(7335), + [anon_sym_SLASH_EQ] = ACTIONS(7335), + [anon_sym_PERCENT_EQ] = ACTIONS(7335), + [anon_sym_PLUS_EQ] = ACTIONS(7335), + [anon_sym_DASH_EQ] = ACTIONS(7335), + [anon_sym_LT_LT_EQ] = ACTIONS(7335), + [anon_sym_GT_GT_EQ] = ACTIONS(7335), + [anon_sym_AMP_EQ] = ACTIONS(7335), + [anon_sym_CARET_EQ] = ACTIONS(7335), + [anon_sym_PIPE_EQ] = ACTIONS(7335), + [anon_sym_and_eq] = ACTIONS(7335), + [anon_sym_or_eq] = ACTIONS(7335), + [anon_sym_xor_eq] = ACTIONS(7335), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7335), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7335), + [anon_sym_not_eq] = ACTIONS(7335), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7335), + [anon_sym_override] = ACTIONS(7335), + [anon_sym_requires] = ACTIONS(7335), + [anon_sym_DASH_GT_STAR] = ACTIONS(7335), + }, + [STATE(2783)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [aux_sym_preproc_else_token1] = ACTIONS(4070), + [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(2784)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token2] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [aux_sym_preproc_else_token1] = ACTIONS(4074), + [aux_sym_preproc_elif_token1] = ACTIONS(4074), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_private] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_friend] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(4074), + [anon_sym_protected] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + }, + [STATE(2785)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token2] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [aux_sym_preproc_else_token1] = ACTIONS(4078), + [aux_sym_preproc_elif_token1] = ACTIONS(4078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_private] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_friend] = ACTIONS(4078), + [anon_sym_public] = ACTIONS(4078), + [anon_sym_protected] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + }, + [STATE(2786)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token2] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [aux_sym_preproc_else_token1] = ACTIONS(8450), + [aux_sym_preproc_elif_token1] = ACTIONS(8450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(2787)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token2] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [aux_sym_preproc_else_token1] = ACTIONS(4090), + [aux_sym_preproc_elif_token1] = ACTIONS(4090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_private] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_friend] = ACTIONS(4090), + [anon_sym_public] = ACTIONS(4090), + [anon_sym_protected] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + }, + [STATE(2788)] = { + [sym_identifier] = ACTIONS(8454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8456), + [anon_sym_RPAREN] = ACTIONS(8456), + [aux_sym_preproc_if_token2] = ACTIONS(8456), + [aux_sym_preproc_else_token1] = ACTIONS(8456), + [aux_sym_preproc_elif_token1] = ACTIONS(8454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8456), + [anon_sym_LPAREN2] = ACTIONS(8456), + [anon_sym_DASH] = ACTIONS(8454), + [anon_sym_PLUS] = ACTIONS(8454), + [anon_sym_STAR] = ACTIONS(8454), + [anon_sym_SLASH] = ACTIONS(8454), + [anon_sym_PERCENT] = ACTIONS(8454), + [anon_sym_PIPE_PIPE] = ACTIONS(8456), + [anon_sym_AMP_AMP] = ACTIONS(8456), + [anon_sym_PIPE] = ACTIONS(8454), + [anon_sym_CARET] = ACTIONS(8454), + [anon_sym_AMP] = ACTIONS(8454), + [anon_sym_EQ_EQ] = ACTIONS(8456), + [anon_sym_BANG_EQ] = ACTIONS(8456), + [anon_sym_GT] = ACTIONS(8454), + [anon_sym_GT_EQ] = ACTIONS(8456), + [anon_sym_LT_EQ] = ACTIONS(8454), + [anon_sym_LT] = ACTIONS(8454), + [anon_sym_LT_LT] = ACTIONS(8454), + [anon_sym_GT_GT] = ACTIONS(8454), + [anon_sym_SEMI] = ACTIONS(8456), + [anon_sym_COLON] = ACTIONS(8454), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8456), + [anon_sym_RBRACE] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8456), + [anon_sym_EQ] = ACTIONS(8454), + [anon_sym_QMARK] = ACTIONS(8456), + [anon_sym_STAR_EQ] = ACTIONS(8456), + [anon_sym_SLASH_EQ] = ACTIONS(8456), + [anon_sym_PERCENT_EQ] = ACTIONS(8456), + [anon_sym_PLUS_EQ] = ACTIONS(8456), + [anon_sym_DASH_EQ] = ACTIONS(8456), + [anon_sym_LT_LT_EQ] = ACTIONS(8456), + [anon_sym_GT_GT_EQ] = ACTIONS(8456), + [anon_sym_AMP_EQ] = ACTIONS(8456), + [anon_sym_CARET_EQ] = ACTIONS(8456), + [anon_sym_PIPE_EQ] = ACTIONS(8456), + [anon_sym_and_eq] = ACTIONS(8454), + [anon_sym_or_eq] = ACTIONS(8454), + [anon_sym_xor_eq] = ACTIONS(8454), + [anon_sym_LT_EQ_GT] = ACTIONS(8456), + [anon_sym_or] = ACTIONS(8454), + [anon_sym_and] = ACTIONS(8454), + [anon_sym_bitor] = ACTIONS(8454), + [anon_sym_xor] = ACTIONS(8454), + [anon_sym_bitand] = ACTIONS(8454), + [anon_sym_not_eq] = ACTIONS(8454), + [anon_sym_DASH_DASH] = ACTIONS(8456), + [anon_sym_PLUS_PLUS] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8454), + [anon_sym_DOT_STAR] = ACTIONS(8456), + [anon_sym_DASH_GT] = ACTIONS(8456), + [anon_sym_L_DQUOTE] = ACTIONS(8456), + [anon_sym_u_DQUOTE] = ACTIONS(8456), + [anon_sym_U_DQUOTE] = ACTIONS(8456), + [anon_sym_u8_DQUOTE] = ACTIONS(8456), + [anon_sym_DQUOTE] = ACTIONS(8456), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8456), + [anon_sym_LR_DQUOTE] = ACTIONS(8456), + [anon_sym_uR_DQUOTE] = ACTIONS(8456), + [anon_sym_UR_DQUOTE] = ACTIONS(8456), + [anon_sym_u8R_DQUOTE] = ACTIONS(8456), + [anon_sym_COLON_RBRACK] = ACTIONS(8456), + [sym_literal_suffix] = ACTIONS(8454), + }, + [STATE(2789)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token2] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [aux_sym_preproc_else_token1] = ACTIONS(8450), + [aux_sym_preproc_elif_token1] = ACTIONS(8450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(2790)] = { + [sym_identifier] = ACTIONS(8458), + [aux_sym_preproc_def_token1] = ACTIONS(8458), + [aux_sym_preproc_if_token1] = ACTIONS(8458), + [aux_sym_preproc_if_token2] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), + [aux_sym_preproc_else_token1] = ACTIONS(8458), + [aux_sym_preproc_elif_token1] = ACTIONS(8458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8458), + [sym_preproc_directive] = ACTIONS(8458), + [anon_sym_LPAREN2] = ACTIONS(8460), + [anon_sym_TILDE] = ACTIONS(8460), + [anon_sym_STAR] = ACTIONS(8460), + [anon_sym_AMP_AMP] = ACTIONS(8460), + [anon_sym_AMP] = ACTIONS(8458), + [anon_sym_SEMI] = ACTIONS(8460), + [anon_sym___extension__] = ACTIONS(8458), + [anon_sym_typedef] = ACTIONS(8458), + [anon_sym_virtual] = ACTIONS(8458), + [anon_sym_extern] = ACTIONS(8458), + [anon_sym___attribute__] = ACTIONS(8458), + [anon_sym___attribute] = ACTIONS(8458), + [anon_sym_using] = ACTIONS(8458), + [anon_sym_COLON_COLON] = ACTIONS(8460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), + [anon_sym___declspec] = ACTIONS(8458), + [anon_sym___based] = ACTIONS(8458), + [anon_sym_signed] = ACTIONS(8458), + [anon_sym_unsigned] = ACTIONS(8458), + [anon_sym_long] = ACTIONS(8458), + [anon_sym_short] = ACTIONS(8458), + [anon_sym_LBRACK] = ACTIONS(8458), + [anon_sym_static] = ACTIONS(8458), + [anon_sym_register] = ACTIONS(8458), + [anon_sym_inline] = ACTIONS(8458), + [anon_sym___inline] = ACTIONS(8458), + [anon_sym___inline__] = ACTIONS(8458), + [anon_sym___forceinline] = ACTIONS(8458), + [anon_sym_thread_local] = ACTIONS(8458), + [anon_sym___thread] = ACTIONS(8458), + [anon_sym_const] = ACTIONS(8458), + [anon_sym_constexpr] = ACTIONS(8458), + [anon_sym_volatile] = ACTIONS(8458), + [anon_sym_restrict] = ACTIONS(8458), + [anon_sym___restrict__] = ACTIONS(8458), + [anon_sym__Atomic] = ACTIONS(8458), + [anon_sym__Noreturn] = ACTIONS(8458), + [anon_sym_noreturn] = ACTIONS(8458), + [anon_sym__Nonnull] = ACTIONS(8458), + [anon_sym_mutable] = ACTIONS(8458), + [anon_sym_constinit] = ACTIONS(8458), + [anon_sym_consteval] = ACTIONS(8458), + [anon_sym_alignas] = ACTIONS(8458), + [anon_sym__Alignas] = ACTIONS(8458), + [sym_primitive_type] = ACTIONS(8458), + [anon_sym_enum] = ACTIONS(8458), + [anon_sym_class] = ACTIONS(8458), + [anon_sym_struct] = ACTIONS(8458), + [anon_sym_union] = ACTIONS(8458), + [anon_sym_typename] = ACTIONS(8458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8458), + [anon_sym_decltype] = ACTIONS(8458), + [anon_sym_explicit] = ACTIONS(8458), + [anon_sym_private] = ACTIONS(8458), + [anon_sym_template] = ACTIONS(8458), + [anon_sym_operator] = ACTIONS(8458), + [anon_sym_friend] = ACTIONS(8458), + [anon_sym_public] = ACTIONS(8458), + [anon_sym_protected] = ACTIONS(8458), + [anon_sym_static_assert] = ACTIONS(8458), + [anon_sym_LBRACK_COLON] = ACTIONS(8460), + }, + [STATE(2791)] = { + [sym_identifier] = ACTIONS(8462), + [aux_sym_preproc_def_token1] = ACTIONS(8462), + [aux_sym_preproc_if_token1] = ACTIONS(8462), + [aux_sym_preproc_if_token2] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), + [aux_sym_preproc_else_token1] = ACTIONS(8462), + [aux_sym_preproc_elif_token1] = ACTIONS(8462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8462), + [sym_preproc_directive] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_TILDE] = ACTIONS(8464), + [anon_sym_STAR] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_AMP] = ACTIONS(8462), + [anon_sym_SEMI] = ACTIONS(8464), + [anon_sym___extension__] = ACTIONS(8462), + [anon_sym_typedef] = ACTIONS(8462), + [anon_sym_virtual] = ACTIONS(8462), + [anon_sym_extern] = ACTIONS(8462), + [anon_sym___attribute__] = ACTIONS(8462), + [anon_sym___attribute] = ACTIONS(8462), + [anon_sym_using] = ACTIONS(8462), + [anon_sym_COLON_COLON] = ACTIONS(8464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), + [anon_sym___declspec] = ACTIONS(8462), + [anon_sym___based] = ACTIONS(8462), + [anon_sym_signed] = ACTIONS(8462), + [anon_sym_unsigned] = ACTIONS(8462), + [anon_sym_long] = ACTIONS(8462), + [anon_sym_short] = ACTIONS(8462), + [anon_sym_LBRACK] = ACTIONS(8462), + [anon_sym_static] = ACTIONS(8462), + [anon_sym_register] = ACTIONS(8462), + [anon_sym_inline] = ACTIONS(8462), + [anon_sym___inline] = ACTIONS(8462), + [anon_sym___inline__] = ACTIONS(8462), + [anon_sym___forceinline] = ACTIONS(8462), + [anon_sym_thread_local] = ACTIONS(8462), + [anon_sym___thread] = ACTIONS(8462), + [anon_sym_const] = ACTIONS(8462), + [anon_sym_constexpr] = ACTIONS(8462), + [anon_sym_volatile] = ACTIONS(8462), + [anon_sym_restrict] = ACTIONS(8462), + [anon_sym___restrict__] = ACTIONS(8462), + [anon_sym__Atomic] = ACTIONS(8462), + [anon_sym__Noreturn] = ACTIONS(8462), + [anon_sym_noreturn] = ACTIONS(8462), + [anon_sym__Nonnull] = ACTIONS(8462), + [anon_sym_mutable] = ACTIONS(8462), + [anon_sym_constinit] = ACTIONS(8462), + [anon_sym_consteval] = ACTIONS(8462), + [anon_sym_alignas] = ACTIONS(8462), + [anon_sym__Alignas] = ACTIONS(8462), + [sym_primitive_type] = ACTIONS(8462), + [anon_sym_enum] = ACTIONS(8462), + [anon_sym_class] = ACTIONS(8462), + [anon_sym_struct] = ACTIONS(8462), + [anon_sym_union] = ACTIONS(8462), + [anon_sym_typename] = ACTIONS(8462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8462), + [anon_sym_decltype] = ACTIONS(8462), + [anon_sym_explicit] = ACTIONS(8462), + [anon_sym_private] = ACTIONS(8462), + [anon_sym_template] = ACTIONS(8462), + [anon_sym_operator] = ACTIONS(8462), + [anon_sym_friend] = ACTIONS(8462), + [anon_sym_public] = ACTIONS(8462), + [anon_sym_protected] = ACTIONS(8462), + [anon_sym_static_assert] = ACTIONS(8462), + [anon_sym_LBRACK_COLON] = ACTIONS(8464), + }, + [STATE(2792)] = { + [sym_identifier] = ACTIONS(6900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_RPAREN] = ACTIONS(6902), + [aux_sym_preproc_if_token2] = ACTIONS(6902), + [aux_sym_preproc_else_token1] = ACTIONS(6902), + [aux_sym_preproc_elif_token1] = ACTIONS(6900), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6902), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6902), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6902), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6902), + [anon_sym_GT_GT] = ACTIONS(6902), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym___extension__] = ACTIONS(6900), + [anon_sym___attribute__] = ACTIONS(6900), + [anon_sym___attribute] = ACTIONS(6900), + [anon_sym_COLON] = ACTIONS(6900), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6900), + [sym_ms_signed_ptr_modifier] = ACTIONS(6900), + [anon_sym__unaligned] = ACTIONS(6900), + [anon_sym___unaligned] = ACTIONS(6900), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6900), + [anon_sym_volatile] = ACTIONS(6900), + [anon_sym_restrict] = ACTIONS(6900), + [anon_sym___restrict__] = ACTIONS(6900), + [anon_sym__Atomic] = ACTIONS(6900), + [anon_sym__Noreturn] = ACTIONS(6900), + [anon_sym_noreturn] = ACTIONS(6900), + [anon_sym__Nonnull] = ACTIONS(6900), + [anon_sym_mutable] = ACTIONS(6900), + [anon_sym_constinit] = ACTIONS(6900), + [anon_sym_consteval] = ACTIONS(6900), + [anon_sym_alignas] = ACTIONS(6900), + [anon_sym__Alignas] = ACTIONS(6900), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6900), + [anon_sym_and] = ACTIONS(6900), + [anon_sym_bitor] = ACTIONS(6900), + [anon_sym_xor] = ACTIONS(6900), + [anon_sym_bitand] = ACTIONS(6900), + [anon_sym_not_eq] = ACTIONS(6900), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6900), + [anon_sym_override] = ACTIONS(6900), + [anon_sym_requires] = ACTIONS(6900), + [anon_sym_COLON_RBRACK] = ACTIONS(6902), + }, + [STATE(2793)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token2] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [aux_sym_preproc_else_token1] = ACTIONS(4042), + [aux_sym_preproc_elif_token1] = ACTIONS(4042), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_private] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_friend] = ACTIONS(4042), + [anon_sym_public] = ACTIONS(4042), + [anon_sym_protected] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + }, + [STATE(2794)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7195), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_STAR_EQ] = ACTIONS(7197), + [anon_sym_SLASH_EQ] = ACTIONS(7197), + [anon_sym_PERCENT_EQ] = ACTIONS(7197), + [anon_sym_PLUS_EQ] = ACTIONS(7197), + [anon_sym_DASH_EQ] = ACTIONS(7197), + [anon_sym_LT_LT_EQ] = ACTIONS(7197), + [anon_sym_GT_GT_EQ] = ACTIONS(7195), + [anon_sym_AMP_EQ] = ACTIONS(7197), + [anon_sym_CARET_EQ] = ACTIONS(7197), + [anon_sym_PIPE_EQ] = ACTIONS(7197), + [anon_sym_and_eq] = ACTIONS(7197), + [anon_sym_or_eq] = ACTIONS(7197), + [anon_sym_xor_eq] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7197), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7197), + [anon_sym_not_eq] = ACTIONS(7197), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7197), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7197), + [anon_sym_override] = ACTIONS(7197), + [anon_sym_GT2] = ACTIONS(7197), + [anon_sym_requires] = ACTIONS(7197), + }, + [STATE(2795)] = { + [sym_template_argument_list] = STATE(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6205), + [anon_sym_SLASH_EQ] = ACTIONS(6205), + [anon_sym_PERCENT_EQ] = ACTIONS(6205), + [anon_sym_PLUS_EQ] = ACTIONS(6205), + [anon_sym_DASH_EQ] = ACTIONS(6205), + [anon_sym_LT_LT_EQ] = ACTIONS(6205), + [anon_sym_GT_GT_EQ] = ACTIONS(6205), + [anon_sym_AMP_EQ] = ACTIONS(6205), + [anon_sym_CARET_EQ] = ACTIONS(6205), + [anon_sym_PIPE_EQ] = ACTIONS(6205), + [anon_sym_and_eq] = ACTIONS(6205), + [anon_sym_or_eq] = ACTIONS(6205), + [anon_sym_xor_eq] = ACTIONS(6205), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6205), + }, + [STATE(2796)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4198), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4241), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2797)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), + [anon_sym___based] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_RBRACE] = ACTIONS(6951), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + [anon_sym_COLON_RBRACK] = ACTIONS(6951), + }, + [STATE(2798)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4194), + [sym__function_postfix] = STATE(4685), + [sym_trailing_return_type] = STATE(4232), + [sym_requires_clause] = STATE(4685), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8470), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8473), + [anon_sym_override] = ACTIONS(8473), + [anon_sym_requires] = ACTIONS(8476), + [anon_sym_DASH_GT_STAR] = ACTIONS(8089), + }, + [STATE(2799)] = { + [sym_attribute_specifier] = STATE(1918), + [sym_attribute_declaration] = STATE(3141), + [aux_sym_type_definition_repeat1] = STATE(1918), + [aux_sym_attributed_declarator_repeat1] = STATE(3141), + [sym_identifier] = ACTIONS(8479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8481), + [anon_sym_COMMA] = ACTIONS(8481), + [anon_sym_RPAREN] = ACTIONS(8481), + [aux_sym_preproc_if_token2] = ACTIONS(8481), + [aux_sym_preproc_else_token1] = ACTIONS(8481), + [aux_sym_preproc_elif_token1] = ACTIONS(8479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8481), + [anon_sym_LPAREN2] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8479), + [anon_sym_STAR] = ACTIONS(8479), + [anon_sym_SLASH] = ACTIONS(8479), + [anon_sym_PERCENT] = ACTIONS(8479), + [anon_sym_PIPE_PIPE] = ACTIONS(8481), + [anon_sym_AMP_AMP] = ACTIONS(8481), + [anon_sym_PIPE] = ACTIONS(8479), + [anon_sym_CARET] = ACTIONS(8479), + [anon_sym_AMP] = ACTIONS(8479), + [anon_sym_EQ_EQ] = ACTIONS(8481), + [anon_sym_BANG_EQ] = ACTIONS(8481), + [anon_sym_GT] = ACTIONS(8479), + [anon_sym_GT_EQ] = ACTIONS(8481), + [anon_sym_LT_EQ] = ACTIONS(8479), + [anon_sym_LT] = ACTIONS(8479), + [anon_sym_LT_LT] = ACTIONS(8479), + [anon_sym_GT_GT] = ACTIONS(8479), + [anon_sym_SEMI] = ACTIONS(8481), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(8479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8481), + [anon_sym_RBRACE] = ACTIONS(8481), + [anon_sym_LBRACK] = ACTIONS(8479), + [anon_sym_EQ] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [anon_sym_STAR_EQ] = ACTIONS(8481), + [anon_sym_SLASH_EQ] = ACTIONS(8481), + [anon_sym_PERCENT_EQ] = ACTIONS(8481), + [anon_sym_PLUS_EQ] = ACTIONS(8481), + [anon_sym_DASH_EQ] = ACTIONS(8481), + [anon_sym_LT_LT_EQ] = ACTIONS(8481), + [anon_sym_GT_GT_EQ] = ACTIONS(8481), + [anon_sym_AMP_EQ] = ACTIONS(8481), + [anon_sym_CARET_EQ] = ACTIONS(8481), + [anon_sym_PIPE_EQ] = ACTIONS(8481), + [anon_sym_and_eq] = ACTIONS(8479), + [anon_sym_or_eq] = ACTIONS(8479), + [anon_sym_xor_eq] = ACTIONS(8479), + [anon_sym_LT_EQ_GT] = ACTIONS(8481), + [anon_sym_or] = ACTIONS(8479), + [anon_sym_and] = ACTIONS(8479), + [anon_sym_bitor] = ACTIONS(8479), + [anon_sym_xor] = ACTIONS(8479), + [anon_sym_bitand] = ACTIONS(8479), + [anon_sym_not_eq] = ACTIONS(8479), + [anon_sym_DASH_DASH] = ACTIONS(8481), + [anon_sym_PLUS_PLUS] = ACTIONS(8481), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_DOT_STAR] = ACTIONS(8481), + [anon_sym_DASH_GT] = ACTIONS(8481), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8479), + [anon_sym_override] = ACTIONS(8479), + [anon_sym_requires] = ACTIONS(8479), + [anon_sym_COLON_RBRACK] = ACTIONS(8481), + }, + [STATE(2800)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7283), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7283), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7283), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7283), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7283), + [anon_sym_GT_GT] = ACTIONS(7283), + [anon_sym___extension__] = ACTIONS(7285), + [anon_sym___attribute__] = ACTIONS(7285), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7285), + [anon_sym_volatile] = ACTIONS(7285), + [anon_sym_restrict] = ACTIONS(7285), + [anon_sym___restrict__] = ACTIONS(7285), + [anon_sym__Atomic] = ACTIONS(7285), + [anon_sym__Noreturn] = ACTIONS(7285), + [anon_sym_noreturn] = ACTIONS(7285), + [anon_sym__Nonnull] = ACTIONS(7285), + [anon_sym_mutable] = ACTIONS(7285), + [anon_sym_constinit] = ACTIONS(7285), + [anon_sym_consteval] = ACTIONS(7285), + [anon_sym_alignas] = ACTIONS(7285), + [anon_sym__Alignas] = ACTIONS(7285), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7283), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7285), + [anon_sym_or_eq] = ACTIONS(7285), + [anon_sym_xor_eq] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7283), + [anon_sym_and] = ACTIONS(7283), + [anon_sym_bitor] = ACTIONS(7285), + [anon_sym_xor] = ACTIONS(7283), + [anon_sym_bitand] = ACTIONS(7285), + [anon_sym_not_eq] = ACTIONS(7285), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7285), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7285), + [anon_sym_override] = ACTIONS(7285), + [anon_sym_GT2] = ACTIONS(7285), + [anon_sym_requires] = ACTIONS(7285), + }, + [STATE(2801)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7335), + [anon_sym___attribute__] = ACTIONS(7335), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7335), + [anon_sym_volatile] = ACTIONS(7335), + [anon_sym_restrict] = ACTIONS(7335), + [anon_sym___restrict__] = ACTIONS(7335), + [anon_sym__Atomic] = ACTIONS(7335), + [anon_sym__Noreturn] = ACTIONS(7335), + [anon_sym_noreturn] = ACTIONS(7335), + [anon_sym__Nonnull] = ACTIONS(7335), + [anon_sym_mutable] = ACTIONS(7335), + [anon_sym_constinit] = ACTIONS(7335), + [anon_sym_consteval] = ACTIONS(7335), + [anon_sym_alignas] = ACTIONS(7335), + [anon_sym__Alignas] = ACTIONS(7335), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_STAR_EQ] = ACTIONS(7335), + [anon_sym_SLASH_EQ] = ACTIONS(7335), + [anon_sym_PERCENT_EQ] = ACTIONS(7335), + [anon_sym_PLUS_EQ] = ACTIONS(7335), + [anon_sym_DASH_EQ] = ACTIONS(7335), + [anon_sym_LT_LT_EQ] = ACTIONS(7335), + [anon_sym_GT_GT_EQ] = ACTIONS(7333), + [anon_sym_AMP_EQ] = ACTIONS(7335), + [anon_sym_CARET_EQ] = ACTIONS(7335), + [anon_sym_PIPE_EQ] = ACTIONS(7335), + [anon_sym_and_eq] = ACTIONS(7335), + [anon_sym_or_eq] = ACTIONS(7335), + [anon_sym_xor_eq] = ACTIONS(7335), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7335), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7335), + [anon_sym_not_eq] = ACTIONS(7335), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7335), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7335), + [anon_sym_override] = ACTIONS(7335), + [anon_sym_GT2] = ACTIONS(7335), + [anon_sym_requires] = ACTIONS(7335), + }, + [STATE(2802)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7185), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7185), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7185), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7185), + [anon_sym_GT_GT] = ACTIONS(7185), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_STAR_EQ] = ACTIONS(7183), + [anon_sym_SLASH_EQ] = ACTIONS(7183), + [anon_sym_PERCENT_EQ] = ACTIONS(7183), + [anon_sym_PLUS_EQ] = ACTIONS(7183), + [anon_sym_DASH_EQ] = ACTIONS(7183), + [anon_sym_LT_LT_EQ] = ACTIONS(7183), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7183), + [anon_sym_CARET_EQ] = ACTIONS(7183), + [anon_sym_PIPE_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7185), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_DASH_GT_STAR] = ACTIONS(7183), + }, + [STATE(2803)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(4844), + [sym_trailing_return_type] = STATE(4273), + [sym_requires_clause] = STATE(4844), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7848), + [anon_sym_override] = ACTIONS(7848), + [anon_sym_requires] = ACTIONS(7851), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(2804)] = { + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [aux_sym_sized_type_specifier_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(8483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [aux_sym_preproc_if_token2] = ACTIONS(6884), + [aux_sym_preproc_else_token1] = ACTIONS(6884), + [aux_sym_preproc_elif_token1] = ACTIONS(6886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(8368), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8486), + [anon_sym_unsigned] = ACTIONS(8486), + [anon_sym_long] = ACTIONS(8486), + [anon_sym_short] = ACTIONS(8486), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(8368), + [anon_sym_constexpr] = ACTIONS(8368), + [anon_sym_volatile] = ACTIONS(8368), + [anon_sym_restrict] = ACTIONS(8368), + [anon_sym___restrict__] = ACTIONS(8368), + [anon_sym__Atomic] = ACTIONS(8368), + [anon_sym__Noreturn] = ACTIONS(8368), + [anon_sym_noreturn] = ACTIONS(8368), + [anon_sym__Nonnull] = ACTIONS(8368), + [anon_sym_mutable] = ACTIONS(8368), + [anon_sym_constinit] = ACTIONS(8368), + [anon_sym_consteval] = ACTIONS(8368), + [anon_sym_alignas] = ACTIONS(8373), + [anon_sym__Alignas] = ACTIONS(8373), + [sym_primitive_type] = ACTIONS(8488), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(2805)] = { + [sym_catch_clause] = STATE(2836), + [aux_sym_constructor_try_statement_repeat1] = STATE(2836), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_friend] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(8490), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2806)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7253), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7253), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_GT2] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + }, + [STATE(2807)] = { + [sym_argument_list] = STATE(5523), + [sym_initializer_list] = STATE(5932), + [aux_sym_sized_type_specifier_repeat1] = STATE(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_signed] = ACTIONS(8154), + [anon_sym_unsigned] = ACTIONS(8154), + [anon_sym_long] = ACTIONS(8154), + [anon_sym_short] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2808)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7219), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7219), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7219), + [anon_sym_GT_GT] = ACTIONS(7219), + [anon_sym___extension__] = ACTIONS(7221), + [anon_sym___attribute__] = ACTIONS(7221), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_RBRACK] = ACTIONS(7221), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7221), + [anon_sym_volatile] = ACTIONS(7221), + [anon_sym_restrict] = ACTIONS(7221), + [anon_sym___restrict__] = ACTIONS(7221), + [anon_sym__Atomic] = ACTIONS(7221), + [anon_sym__Noreturn] = ACTIONS(7221), + [anon_sym_noreturn] = ACTIONS(7221), + [anon_sym__Nonnull] = ACTIONS(7221), + [anon_sym_mutable] = ACTIONS(7221), + [anon_sym_constinit] = ACTIONS(7221), + [anon_sym_consteval] = ACTIONS(7221), + [anon_sym_alignas] = ACTIONS(7221), + [anon_sym__Alignas] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7219), + [anon_sym_and] = ACTIONS(7219), + [anon_sym_bitor] = ACTIONS(7221), + [anon_sym_xor] = ACTIONS(7219), + [anon_sym_bitand] = ACTIONS(7221), + [anon_sym_not_eq] = ACTIONS(7221), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7221), + [anon_sym_override] = ACTIONS(7221), + [anon_sym_requires] = ACTIONS(7221), + }, + [STATE(2809)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + }, + [STATE(2810)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7335), + [anon_sym___attribute__] = ACTIONS(7335), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_RBRACK] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7335), + [anon_sym_volatile] = ACTIONS(7335), + [anon_sym_restrict] = ACTIONS(7335), + [anon_sym___restrict__] = ACTIONS(7335), + [anon_sym__Atomic] = ACTIONS(7335), + [anon_sym__Noreturn] = ACTIONS(7335), + [anon_sym_noreturn] = ACTIONS(7335), + [anon_sym__Nonnull] = ACTIONS(7335), + [anon_sym_mutable] = ACTIONS(7335), + [anon_sym_constinit] = ACTIONS(7335), + [anon_sym_consteval] = ACTIONS(7335), + [anon_sym_alignas] = ACTIONS(7335), + [anon_sym__Alignas] = ACTIONS(7335), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_STAR_EQ] = ACTIONS(7335), + [anon_sym_SLASH_EQ] = ACTIONS(7335), + [anon_sym_PERCENT_EQ] = ACTIONS(7335), + [anon_sym_PLUS_EQ] = ACTIONS(7335), + [anon_sym_DASH_EQ] = ACTIONS(7335), + [anon_sym_LT_LT_EQ] = ACTIONS(7335), + [anon_sym_GT_GT_EQ] = ACTIONS(7335), + [anon_sym_AMP_EQ] = ACTIONS(7335), + [anon_sym_CARET_EQ] = ACTIONS(7335), + [anon_sym_PIPE_EQ] = ACTIONS(7335), + [anon_sym_and_eq] = ACTIONS(7335), + [anon_sym_or_eq] = ACTIONS(7335), + [anon_sym_xor_eq] = ACTIONS(7335), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7335), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7335), + [anon_sym_not_eq] = ACTIONS(7335), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7335), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7335), + [anon_sym_override] = ACTIONS(7335), + [anon_sym_requires] = ACTIONS(7335), + }, + [STATE(2811)] = { + [sym_template_argument_list] = STATE(2859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(8492), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6203), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6203), + [anon_sym_not_eq] = ACTIONS(6203), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6203), + }, + [STATE(2812)] = { + [sym_catch_clause] = STATE(2836), + [aux_sym_constructor_try_statement_repeat1] = STATE(2836), + [sym_identifier] = 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_TILDE] = ACTIONS(3150), + [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_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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_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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_typename] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3148), + [anon_sym_decltype] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_friend] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_static_assert] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(8490), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + }, + [STATE(2813)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7219), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7219), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7219), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7219), + [anon_sym_GT_GT] = ACTIONS(7219), + [anon_sym___extension__] = ACTIONS(7221), + [anon_sym___attribute__] = ACTIONS(7221), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7221), + [anon_sym_volatile] = ACTIONS(7221), + [anon_sym_restrict] = ACTIONS(7221), + [anon_sym___restrict__] = ACTIONS(7221), + [anon_sym__Atomic] = ACTIONS(7221), + [anon_sym__Noreturn] = ACTIONS(7221), + [anon_sym_noreturn] = ACTIONS(7221), + [anon_sym__Nonnull] = ACTIONS(7221), + [anon_sym_mutable] = ACTIONS(7221), + [anon_sym_constinit] = ACTIONS(7221), + [anon_sym_consteval] = ACTIONS(7221), + [anon_sym_alignas] = ACTIONS(7221), + [anon_sym__Alignas] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7219), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7219), + [anon_sym_and] = ACTIONS(7219), + [anon_sym_bitor] = ACTIONS(7221), + [anon_sym_xor] = ACTIONS(7219), + [anon_sym_bitand] = ACTIONS(7221), + [anon_sym_not_eq] = ACTIONS(7221), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7221), + [anon_sym_override] = ACTIONS(7221), + [anon_sym_GT2] = ACTIONS(7221), + [anon_sym_requires] = ACTIONS(7221), + }, + [STATE(2814)] = { + [sym_decltype_auto] = STATE(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8495), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2815)] = { + [sym_decltype_auto] = STATE(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8156), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2816)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4190), + [sym__function_postfix] = STATE(4846), + [sym_trailing_return_type] = STATE(4230), + [sym_requires_clause] = STATE(4846), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7997), + [anon_sym_override] = ACTIONS(7997), + [anon_sym_requires] = ACTIONS(8000), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2817)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4207), + [sym__function_postfix] = STATE(4846), + [sym_trailing_return_type] = STATE(4274), + [sym_requires_clause] = STATE(4846), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(2818)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_RBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7255), + [anon_sym_or_eq] = ACTIONS(7255), + [anon_sym_xor_eq] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + }, + [STATE(2819)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), + [anon_sym_COMMA] = ACTIONS(6808), + [anon_sym_RPAREN] = ACTIONS(6808), + [anon_sym_LPAREN2] = ACTIONS(6808), + [anon_sym_DASH] = ACTIONS(6806), + [anon_sym_PLUS] = ACTIONS(6806), + [anon_sym_STAR] = ACTIONS(6806), + [anon_sym_SLASH] = ACTIONS(6806), + [anon_sym_PERCENT] = ACTIONS(6806), + [anon_sym_PIPE_PIPE] = ACTIONS(6808), + [anon_sym_AMP_AMP] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(6806), + [anon_sym_CARET] = ACTIONS(6806), + [anon_sym_AMP] = ACTIONS(6806), + [anon_sym_EQ_EQ] = ACTIONS(6808), + [anon_sym_BANG_EQ] = ACTIONS(6808), + [anon_sym_GT] = ACTIONS(6806), + [anon_sym_GT_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ] = ACTIONS(6806), + [anon_sym_LT] = ACTIONS(6806), + [anon_sym_LT_LT] = ACTIONS(6806), + [anon_sym_GT_GT] = ACTIONS(6806), + [anon_sym___extension__] = ACTIONS(6808), + [sym_ms_restrict_modifier] = ACTIONS(6806), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), + [sym_ms_signed_ptr_modifier] = ACTIONS(6808), + [anon_sym__unaligned] = ACTIONS(6808), + [anon_sym___unaligned] = ACTIONS(6808), + [anon_sym_LBRACK] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(6806), + [anon_sym_const] = ACTIONS(6806), + [anon_sym_constexpr] = ACTIONS(6808), + [anon_sym_volatile] = ACTIONS(6808), + [anon_sym_restrict] = ACTIONS(6808), + [anon_sym___restrict__] = ACTIONS(6808), + [anon_sym__Atomic] = ACTIONS(6808), + [anon_sym__Noreturn] = ACTIONS(6808), + [anon_sym_noreturn] = ACTIONS(6808), + [anon_sym__Nonnull] = ACTIONS(6808), + [anon_sym_mutable] = ACTIONS(6808), + [anon_sym_constinit] = ACTIONS(6808), + [anon_sym_consteval] = ACTIONS(6808), + [anon_sym_alignas] = ACTIONS(6808), + [anon_sym__Alignas] = ACTIONS(6808), + [anon_sym_QMARK] = ACTIONS(6808), + [anon_sym_STAR_EQ] = ACTIONS(6808), + [anon_sym_SLASH_EQ] = ACTIONS(6808), + [anon_sym_PERCENT_EQ] = ACTIONS(6808), + [anon_sym_PLUS_EQ] = ACTIONS(6808), + [anon_sym_DASH_EQ] = ACTIONS(6808), + [anon_sym_LT_LT_EQ] = ACTIONS(6808), + [anon_sym_GT_GT_EQ] = ACTIONS(6808), + [anon_sym_AMP_EQ] = ACTIONS(6808), + [anon_sym_CARET_EQ] = ACTIONS(6808), + [anon_sym_PIPE_EQ] = ACTIONS(6808), + [anon_sym_LT_EQ_GT] = ACTIONS(6808), + [anon_sym_or] = ACTIONS(6808), + [anon_sym_and] = ACTIONS(6808), + [anon_sym_bitor] = ACTIONS(6808), + [anon_sym_xor] = ACTIONS(6808), + [anon_sym_bitand] = ACTIONS(6808), + [anon_sym_not_eq] = ACTIONS(6808), + [anon_sym_DASH_DASH] = ACTIONS(6808), + [anon_sym_PLUS_PLUS] = ACTIONS(6808), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_DOT_STAR] = ACTIONS(6808), + [anon_sym_DASH_GT] = ACTIONS(6806), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6808), + [anon_sym_override] = ACTIONS(6808), + [anon_sym_requires] = ACTIONS(6808), + [anon_sym_DASH_GT_STAR] = ACTIONS(6808), + }, + [STATE(2820)] = { + [sym_catch_clause] = STATE(2820), + [aux_sym_constructor_try_statement_repeat1] = STATE(2820), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token2] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_friend] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(8497), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + }, + [STATE(2821)] = { + [sym_catch_clause] = STATE(2820), + [aux_sym_constructor_try_statement_repeat1] = STATE(2820), + [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), + [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_SEMI] = ACTIONS(3150), + [anon_sym___extension__] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3148), + [anon_sym_virtual] = ACTIONS(3148), + [anon_sym_extern] = ACTIONS(3148), + [anon_sym___attribute__] = ACTIONS(3148), + [anon_sym___attribute] = ACTIONS(3148), + [anon_sym_using] = 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__Nonnull] = ACTIONS(3148), + [anon_sym_mutable] = ACTIONS(3148), + [anon_sym_constinit] = ACTIONS(3148), + [anon_sym_consteval] = ACTIONS(3148), + [anon_sym_alignas] = ACTIONS(3148), + [anon_sym__Alignas] = 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_typename] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3148), + [anon_sym_decltype] = ACTIONS(3148), + [anon_sym_explicit] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_template] = ACTIONS(3148), + [anon_sym_operator] = ACTIONS(3148), + [anon_sym_friend] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_static_assert] = ACTIONS(3148), + [anon_sym_catch] = ACTIONS(8500), + [anon_sym_LBRACK_COLON] = ACTIONS(3150), + }, + [STATE(2822)] = { + [sym_catch_clause] = STATE(2820), + [aux_sym_constructor_try_statement_repeat1] = STATE(2820), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(8500), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + }, + [STATE(2823)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7259), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + }, + [STATE(2824)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [aux_sym_preproc_if_token2] = ACTIONS(6233), + [aux_sym_preproc_else_token1] = ACTIONS(6233), + [aux_sym_preproc_elif_token1] = ACTIONS(6226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_DASH] = ACTIONS(6226), + [anon_sym_PLUS] = ACTIONS(6226), + [anon_sym_STAR] = ACTIONS(6233), + [anon_sym_SLASH] = ACTIONS(6226), + [anon_sym_PERCENT] = ACTIONS(6233), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_PIPE] = ACTIONS(6226), + [anon_sym_CARET] = ACTIONS(6233), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_EQ_EQ] = ACTIONS(6233), + [anon_sym_BANG_EQ] = ACTIONS(6233), + [anon_sym_GT] = ACTIONS(6226), + [anon_sym_GT_EQ] = ACTIONS(6233), + [anon_sym_LT_EQ] = ACTIONS(6226), + [anon_sym_LT] = ACTIONS(6226), + [anon_sym_LT_LT] = ACTIONS(6233), + [anon_sym_GT_GT] = ACTIONS(6233), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6233), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6233), + [anon_sym_LT_EQ_GT] = ACTIONS(6233), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_bitor] = ACTIONS(6226), + [anon_sym_xor] = ACTIONS(6226), + [anon_sym_bitand] = ACTIONS(6226), + [anon_sym_not_eq] = ACTIONS(6226), + [anon_sym_DASH_DASH] = ACTIONS(6233), + [anon_sym_PLUS_PLUS] = ACTIONS(6233), + [anon_sym_DOT] = ACTIONS(6226), + [anon_sym_DOT_STAR] = ACTIONS(6233), + [anon_sym_DASH_GT] = ACTIONS(6233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_final] = ACTIONS(6226), + [anon_sym_override] = ACTIONS(6226), + [anon_sym_requires] = ACTIONS(6226), + [anon_sym_COLON_RBRACK] = ACTIONS(6233), + }, + [STATE(2825)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym___extension__] = ACTIONS(6846), + [anon_sym___attribute__] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6846), + [anon_sym_volatile] = ACTIONS(6846), + [anon_sym_restrict] = ACTIONS(6846), + [anon_sym___restrict__] = ACTIONS(6846), + [anon_sym__Atomic] = ACTIONS(6846), + [anon_sym__Noreturn] = ACTIONS(6846), + [anon_sym_noreturn] = ACTIONS(6846), + [anon_sym__Nonnull] = ACTIONS(6846), + [anon_sym_mutable] = ACTIONS(6846), + [anon_sym_constinit] = ACTIONS(6846), + [anon_sym_consteval] = ACTIONS(6846), + [anon_sym_alignas] = ACTIONS(6846), + [anon_sym__Alignas] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6846), + [anon_sym_and] = ACTIONS(6846), + [anon_sym_bitor] = ACTIONS(6846), + [anon_sym_xor] = ACTIONS(6846), + [anon_sym_bitand] = ACTIONS(6846), + [anon_sym_not_eq] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6844), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6846), + [anon_sym_override] = ACTIONS(6846), + [anon_sym_requires] = ACTIONS(6846), + [anon_sym_DASH_GT_STAR] = ACTIONS(6846), + }, + [STATE(2826)] = { + [sym_attribute_specifier] = STATE(3473), + [sym_enumerator_list] = STATE(2939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_RPAREN] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7011), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7011), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7011), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7011), + [anon_sym_GT_GT] = ACTIONS(7011), + [anon_sym___extension__] = ACTIONS(7013), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(8272), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_EQ] = ACTIONS(7011), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7013), + [anon_sym_volatile] = ACTIONS(7013), + [anon_sym_restrict] = ACTIONS(7013), + [anon_sym___restrict__] = ACTIONS(7013), + [anon_sym__Atomic] = ACTIONS(7013), + [anon_sym__Noreturn] = ACTIONS(7013), + [anon_sym_noreturn] = ACTIONS(7013), + [anon_sym__Nonnull] = ACTIONS(7013), + [anon_sym_mutable] = ACTIONS(7013), + [anon_sym_constinit] = ACTIONS(7013), + [anon_sym_consteval] = ACTIONS(7013), + [anon_sym_alignas] = ACTIONS(7013), + [anon_sym__Alignas] = ACTIONS(7013), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_STAR_EQ] = ACTIONS(7013), + [anon_sym_SLASH_EQ] = ACTIONS(7013), + [anon_sym_PERCENT_EQ] = ACTIONS(7013), + [anon_sym_PLUS_EQ] = ACTIONS(7013), + [anon_sym_DASH_EQ] = ACTIONS(7013), + [anon_sym_LT_LT_EQ] = ACTIONS(7013), + [anon_sym_GT_GT_EQ] = ACTIONS(7013), + [anon_sym_AMP_EQ] = ACTIONS(7013), + [anon_sym_CARET_EQ] = ACTIONS(7013), + [anon_sym_PIPE_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7013), + [anon_sym_and] = ACTIONS(7013), + [anon_sym_bitor] = ACTIONS(7013), + [anon_sym_xor] = ACTIONS(7013), + [anon_sym_bitand] = ACTIONS(7013), + [anon_sym_not_eq] = ACTIONS(7013), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7011), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7013), + [anon_sym_override] = ACTIONS(7013), + [anon_sym_requires] = ACTIONS(7013), + [anon_sym_DASH_GT_STAR] = ACTIONS(7013), + }, + [STATE(2827)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_RBRACK] = ACTIONS(7197), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_STAR_EQ] = ACTIONS(7197), + [anon_sym_SLASH_EQ] = ACTIONS(7197), + [anon_sym_PERCENT_EQ] = ACTIONS(7197), + [anon_sym_PLUS_EQ] = ACTIONS(7197), + [anon_sym_DASH_EQ] = ACTIONS(7197), + [anon_sym_LT_LT_EQ] = ACTIONS(7197), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7197), + [anon_sym_CARET_EQ] = ACTIONS(7197), + [anon_sym_PIPE_EQ] = ACTIONS(7197), + [anon_sym_and_eq] = ACTIONS(7197), + [anon_sym_or_eq] = ACTIONS(7197), + [anon_sym_xor_eq] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7197), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7197), + [anon_sym_not_eq] = ACTIONS(7197), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7197), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7197), + [anon_sym_override] = ACTIONS(7197), + [anon_sym_requires] = ACTIONS(7197), + }, + [STATE(2828)] = { + [sym_attribute_specifier] = STATE(4003), + [sym_attribute_declaration] = STATE(4328), + [sym_gnu_asm_expression] = STATE(8980), + [sym_virtual_specifier] = STATE(4455), + [sym__function_attributes_end] = STATE(4169), + [sym__function_postfix] = STATE(4685), + [sym_trailing_return_type] = STATE(4259), + [sym_requires_clause] = STATE(4685), + [aux_sym_type_definition_repeat1] = STATE(4003), + [aux_sym_attributed_declarator_repeat1] = STATE(4328), + [aux_sym__function_postfix_repeat1] = STATE(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6282), + [anon_sym___attribute] = ACTIONS(6284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8470), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6305), + [anon_sym_override] = ACTIONS(6305), + [anon_sym_requires] = ACTIONS(6307), + [anon_sym_DASH_GT_STAR] = ACTIONS(8089), + }, + [STATE(2829)] = { + [sym_attribute_specifier] = STATE(3444), + [sym_enumerator_list] = STATE(2896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_RPAREN] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6985), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6985), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6985), + [anon_sym_GT_GT] = ACTIONS(6985), + [anon_sym___extension__] = ACTIONS(6987), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(8272), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_EQ] = ACTIONS(6985), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6987), + [anon_sym_volatile] = ACTIONS(6987), + [anon_sym_restrict] = ACTIONS(6987), + [anon_sym___restrict__] = ACTIONS(6987), + [anon_sym__Atomic] = ACTIONS(6987), + [anon_sym__Noreturn] = ACTIONS(6987), + [anon_sym_noreturn] = ACTIONS(6987), + [anon_sym__Nonnull] = ACTIONS(6987), + [anon_sym_mutable] = ACTIONS(6987), + [anon_sym_constinit] = ACTIONS(6987), + [anon_sym_consteval] = ACTIONS(6987), + [anon_sym_alignas] = ACTIONS(6987), + [anon_sym__Alignas] = ACTIONS(6987), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_STAR_EQ] = ACTIONS(6987), + [anon_sym_SLASH_EQ] = ACTIONS(6987), + [anon_sym_PERCENT_EQ] = ACTIONS(6987), + [anon_sym_PLUS_EQ] = ACTIONS(6987), + [anon_sym_DASH_EQ] = ACTIONS(6987), + [anon_sym_LT_LT_EQ] = ACTIONS(6987), + [anon_sym_GT_GT_EQ] = ACTIONS(6987), + [anon_sym_AMP_EQ] = ACTIONS(6987), + [anon_sym_CARET_EQ] = ACTIONS(6987), + [anon_sym_PIPE_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6987), + [anon_sym_and] = ACTIONS(6987), + [anon_sym_bitor] = ACTIONS(6987), + [anon_sym_xor] = ACTIONS(6987), + [anon_sym_bitand] = ACTIONS(6987), + [anon_sym_not_eq] = ACTIONS(6987), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6985), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6987), + [anon_sym_override] = ACTIONS(6987), + [anon_sym_requires] = ACTIONS(6987), + [anon_sym_DASH_GT_STAR] = ACTIONS(6987), + }, + [STATE(2830)] = { + [sym_template_argument_list] = STATE(2966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6205), + [anon_sym_SLASH_EQ] = ACTIONS(6205), + [anon_sym_PERCENT_EQ] = ACTIONS(6205), + [anon_sym_PLUS_EQ] = ACTIONS(6205), + [anon_sym_DASH_EQ] = ACTIONS(6205), + [anon_sym_LT_LT_EQ] = ACTIONS(6205), + [anon_sym_GT_GT_EQ] = ACTIONS(6205), + [anon_sym_AMP_EQ] = ACTIONS(6205), + [anon_sym_CARET_EQ] = ACTIONS(6205), + [anon_sym_PIPE_EQ] = ACTIONS(6205), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_DASH_GT_STAR] = ACTIONS(6205), + }, + [STATE(2831)] = { + [sym_catch_clause] = STATE(2836), + [aux_sym_constructor_try_statement_repeat1] = STATE(2836), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_catch] = ACTIONS(8490), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + }, + [STATE(2832)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2833)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7283), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7283), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7283), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7283), + [anon_sym_GT_GT] = ACTIONS(7283), + [anon_sym___extension__] = ACTIONS(7285), + [anon_sym___attribute__] = ACTIONS(7285), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_RBRACK] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7285), + [anon_sym_volatile] = ACTIONS(7285), + [anon_sym_restrict] = ACTIONS(7285), + [anon_sym___restrict__] = ACTIONS(7285), + [anon_sym__Atomic] = ACTIONS(7285), + [anon_sym__Noreturn] = ACTIONS(7285), + [anon_sym_noreturn] = ACTIONS(7285), + [anon_sym__Nonnull] = ACTIONS(7285), + [anon_sym_mutable] = ACTIONS(7285), + [anon_sym_constinit] = ACTIONS(7285), + [anon_sym_consteval] = ACTIONS(7285), + [anon_sym_alignas] = ACTIONS(7285), + [anon_sym__Alignas] = ACTIONS(7285), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7285), + [anon_sym_or_eq] = ACTIONS(7285), + [anon_sym_xor_eq] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7283), + [anon_sym_and] = ACTIONS(7283), + [anon_sym_bitor] = ACTIONS(7285), + [anon_sym_xor] = ACTIONS(7283), + [anon_sym_bitand] = ACTIONS(7285), + [anon_sym_not_eq] = ACTIONS(7285), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7285), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7285), + [anon_sym_override] = ACTIONS(7285), + [anon_sym_requires] = ACTIONS(7285), + }, + [STATE(2834)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_RPAREN] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7107), + [anon_sym_GT_GT] = ACTIONS(7107), + [anon_sym___extension__] = ACTIONS(7109), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_EQ] = ACTIONS(7107), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7109), + [anon_sym_volatile] = ACTIONS(7109), + [anon_sym_restrict] = ACTIONS(7109), + [anon_sym___restrict__] = ACTIONS(7109), + [anon_sym__Atomic] = ACTIONS(7109), + [anon_sym__Noreturn] = ACTIONS(7109), + [anon_sym_noreturn] = ACTIONS(7109), + [anon_sym__Nonnull] = ACTIONS(7109), + [anon_sym_mutable] = ACTIONS(7109), + [anon_sym_constinit] = ACTIONS(7109), + [anon_sym_consteval] = ACTIONS(7109), + [anon_sym_alignas] = ACTIONS(7109), + [anon_sym__Alignas] = ACTIONS(7109), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_STAR_EQ] = ACTIONS(7109), + [anon_sym_SLASH_EQ] = ACTIONS(7109), + [anon_sym_PERCENT_EQ] = ACTIONS(7109), + [anon_sym_PLUS_EQ] = ACTIONS(7109), + [anon_sym_DASH_EQ] = ACTIONS(7109), + [anon_sym_LT_LT_EQ] = ACTIONS(7109), + [anon_sym_GT_GT_EQ] = ACTIONS(7109), + [anon_sym_AMP_EQ] = ACTIONS(7109), + [anon_sym_CARET_EQ] = ACTIONS(7109), + [anon_sym_PIPE_EQ] = ACTIONS(7109), + [anon_sym_and_eq] = ACTIONS(7109), + [anon_sym_or_eq] = ACTIONS(7109), + [anon_sym_xor_eq] = ACTIONS(7109), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7107), + [anon_sym_and] = ACTIONS(7107), + [anon_sym_bitor] = ACTIONS(7109), + [anon_sym_xor] = ACTIONS(7107), + [anon_sym_bitand] = ACTIONS(7109), + [anon_sym_not_eq] = ACTIONS(7109), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7107), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7109), + [anon_sym_override] = ACTIONS(7109), + [anon_sym_requires] = ACTIONS(7109), + [anon_sym_DASH_GT_STAR] = ACTIONS(7109), + }, + [STATE(2835)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), + [anon_sym_COMMA] = ACTIONS(6902), + [anon_sym_RPAREN] = ACTIONS(6902), + [anon_sym_LPAREN2] = ACTIONS(6902), + [anon_sym_DASH] = ACTIONS(6900), + [anon_sym_PLUS] = ACTIONS(6900), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_SLASH] = ACTIONS(6900), + [anon_sym_PERCENT] = ACTIONS(6900), + [anon_sym_PIPE_PIPE] = ACTIONS(6902), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(6900), + [anon_sym_AMP] = ACTIONS(6900), + [anon_sym_EQ_EQ] = ACTIONS(6902), + [anon_sym_BANG_EQ] = ACTIONS(6902), + [anon_sym_GT] = ACTIONS(6900), + [anon_sym_GT_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ] = ACTIONS(6900), + [anon_sym_LT] = ACTIONS(6900), + [anon_sym_LT_LT] = ACTIONS(6900), + [anon_sym_GT_GT] = ACTIONS(6900), + [anon_sym___extension__] = ACTIONS(6902), + [sym_ms_restrict_modifier] = ACTIONS(6900), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), + [sym_ms_signed_ptr_modifier] = ACTIONS(6902), + [anon_sym__unaligned] = ACTIONS(6902), + [anon_sym___unaligned] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(6900), + [anon_sym_const] = ACTIONS(6900), + [anon_sym_constexpr] = ACTIONS(6902), + [anon_sym_volatile] = ACTIONS(6902), + [anon_sym_restrict] = ACTIONS(6902), + [anon_sym___restrict__] = ACTIONS(6902), + [anon_sym__Atomic] = ACTIONS(6902), + [anon_sym__Noreturn] = ACTIONS(6902), + [anon_sym_noreturn] = ACTIONS(6902), + [anon_sym__Nonnull] = ACTIONS(6902), + [anon_sym_mutable] = ACTIONS(6902), + [anon_sym_constinit] = ACTIONS(6902), + [anon_sym_consteval] = ACTIONS(6902), + [anon_sym_alignas] = ACTIONS(6902), + [anon_sym__Alignas] = ACTIONS(6902), + [anon_sym_QMARK] = ACTIONS(6902), + [anon_sym_STAR_EQ] = ACTIONS(6902), + [anon_sym_SLASH_EQ] = ACTIONS(6902), + [anon_sym_PERCENT_EQ] = ACTIONS(6902), + [anon_sym_PLUS_EQ] = ACTIONS(6902), + [anon_sym_DASH_EQ] = ACTIONS(6902), + [anon_sym_LT_LT_EQ] = ACTIONS(6902), + [anon_sym_GT_GT_EQ] = ACTIONS(6902), + [anon_sym_AMP_EQ] = ACTIONS(6902), + [anon_sym_CARET_EQ] = ACTIONS(6902), + [anon_sym_PIPE_EQ] = ACTIONS(6902), + [anon_sym_LT_EQ_GT] = ACTIONS(6902), + [anon_sym_or] = ACTIONS(6902), + [anon_sym_and] = ACTIONS(6902), + [anon_sym_bitor] = ACTIONS(6902), + [anon_sym_xor] = ACTIONS(6902), + [anon_sym_bitand] = ACTIONS(6902), + [anon_sym_not_eq] = ACTIONS(6902), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_DOT] = ACTIONS(6900), + [anon_sym_DOT_STAR] = ACTIONS(6902), + [anon_sym_DASH_GT] = ACTIONS(6900), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6902), + [anon_sym_override] = ACTIONS(6902), + [anon_sym_requires] = ACTIONS(6902), + [anon_sym_DASH_GT_STAR] = ACTIONS(6902), + }, + [STATE(2836)] = { + [sym_catch_clause] = STATE(2836), + [aux_sym_constructor_try_statement_repeat1] = STATE(2836), + [sym_identifier] = ACTIONS(3137), + [aux_sym_preproc_def_token1] = ACTIONS(3137), + [aux_sym_preproc_if_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), + [sym_preproc_directive] = ACTIONS(3137), + [anon_sym_LPAREN2] = ACTIONS(3139), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym___extension__] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_virtual] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym___attribute__] = ACTIONS(3137), + [anon_sym___attribute] = ACTIONS(3137), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), + [anon_sym___declspec] = ACTIONS(3137), + [anon_sym___based] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_signed] = ACTIONS(3137), + [anon_sym_unsigned] = ACTIONS(3137), + [anon_sym_long] = ACTIONS(3137), + [anon_sym_short] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_register] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym___inline] = ACTIONS(3137), + [anon_sym___inline__] = ACTIONS(3137), + [anon_sym___forceinline] = ACTIONS(3137), + [anon_sym_thread_local] = ACTIONS(3137), + [anon_sym___thread] = ACTIONS(3137), + [anon_sym_const] = ACTIONS(3137), + [anon_sym_constexpr] = ACTIONS(3137), + [anon_sym_volatile] = ACTIONS(3137), + [anon_sym_restrict] = ACTIONS(3137), + [anon_sym___restrict__] = ACTIONS(3137), + [anon_sym__Atomic] = ACTIONS(3137), + [anon_sym__Noreturn] = ACTIONS(3137), + [anon_sym_noreturn] = ACTIONS(3137), + [anon_sym__Nonnull] = ACTIONS(3137), + [anon_sym_mutable] = ACTIONS(3137), + [anon_sym_constinit] = ACTIONS(3137), + [anon_sym_consteval] = ACTIONS(3137), + [anon_sym_alignas] = ACTIONS(3137), + [anon_sym__Alignas] = ACTIONS(3137), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_union] = ACTIONS(3137), + [anon_sym_typename] = ACTIONS(3137), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3137), + [anon_sym_decltype] = ACTIONS(3137), + [anon_sym_explicit] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_template] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_friend] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_static_assert] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(8502), + [anon_sym_LBRACK_COLON] = ACTIONS(3139), + }, + [STATE(2837)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_STAR_EQ] = ACTIONS(6751), + [anon_sym_SLASH_EQ] = ACTIONS(6751), + [anon_sym_PERCENT_EQ] = ACTIONS(6751), + [anon_sym_PLUS_EQ] = ACTIONS(6751), + [anon_sym_DASH_EQ] = ACTIONS(6751), + [anon_sym_LT_LT_EQ] = ACTIONS(6751), + [anon_sym_GT_GT_EQ] = ACTIONS(6751), + [anon_sym_AMP_EQ] = ACTIONS(6751), + [anon_sym_CARET_EQ] = ACTIONS(6751), + [anon_sym_PIPE_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6751), + [anon_sym_and] = ACTIONS(6751), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6751), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + }, + [STATE(2838)] = { + [sym_type_qualifier] = STATE(2804), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2804), + [aux_sym_sized_type_specifier_repeat1] = STATE(3301), + [sym_identifier] = ACTIONS(8505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [aux_sym_preproc_if_token2] = ACTIONS(6812), + [aux_sym_preproc_else_token1] = ACTIONS(6812), + [aux_sym_preproc_elif_token1] = ACTIONS(6814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(8297), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8508), + [anon_sym_unsigned] = ACTIONS(8508), + [anon_sym_long] = ACTIONS(8508), + [anon_sym_short] = ACTIONS(8508), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(8297), + [anon_sym_constexpr] = ACTIONS(8297), + [anon_sym_volatile] = ACTIONS(8297), + [anon_sym_restrict] = ACTIONS(8297), + [anon_sym___restrict__] = ACTIONS(8297), + [anon_sym__Atomic] = ACTIONS(8297), + [anon_sym__Noreturn] = ACTIONS(8297), + [anon_sym_noreturn] = ACTIONS(8297), + [anon_sym__Nonnull] = ACTIONS(8297), + [anon_sym_mutable] = ACTIONS(8297), + [anon_sym_constinit] = ACTIONS(8297), + [anon_sym_consteval] = ACTIONS(8297), + [anon_sym_alignas] = ACTIONS(8302), + [anon_sym__Alignas] = ACTIONS(8302), + [sym_primitive_type] = ACTIONS(8510), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(2839)] = { + [sym_attribute_specifier] = STATE(1918), + [sym_attribute_declaration] = STATE(3122), + [aux_sym_type_definition_repeat1] = STATE(1918), + [aux_sym_attributed_declarator_repeat1] = STATE(3122), + [sym_identifier] = ACTIONS(8512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8514), + [anon_sym_COMMA] = ACTIONS(8514), + [anon_sym_RPAREN] = ACTIONS(8514), + [aux_sym_preproc_if_token2] = ACTIONS(8514), + [aux_sym_preproc_else_token1] = ACTIONS(8514), + [aux_sym_preproc_elif_token1] = ACTIONS(8512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8514), + [anon_sym_LPAREN2] = ACTIONS(8514), + [anon_sym_DASH] = ACTIONS(8512), + [anon_sym_PLUS] = ACTIONS(8512), + [anon_sym_STAR] = ACTIONS(8512), + [anon_sym_SLASH] = ACTIONS(8512), + [anon_sym_PERCENT] = ACTIONS(8512), + [anon_sym_PIPE_PIPE] = ACTIONS(8514), + [anon_sym_AMP_AMP] = ACTIONS(8514), + [anon_sym_PIPE] = ACTIONS(8512), + [anon_sym_CARET] = ACTIONS(8512), + [anon_sym_AMP] = ACTIONS(8512), + [anon_sym_EQ_EQ] = ACTIONS(8514), + [anon_sym_BANG_EQ] = ACTIONS(8514), + [anon_sym_GT] = ACTIONS(8512), + [anon_sym_GT_EQ] = ACTIONS(8514), + [anon_sym_LT_EQ] = ACTIONS(8512), + [anon_sym_LT] = ACTIONS(8512), + [anon_sym_LT_LT] = ACTIONS(8512), + [anon_sym_GT_GT] = ACTIONS(8512), + [anon_sym_SEMI] = ACTIONS(8514), + [anon_sym___attribute__] = ACTIONS(6123), + [anon_sym___attribute] = ACTIONS(6123), + [anon_sym_COLON] = ACTIONS(8512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8514), + [anon_sym_RBRACE] = ACTIONS(8514), + [anon_sym_LBRACK] = ACTIONS(8512), + [anon_sym_EQ] = ACTIONS(8512), + [anon_sym_QMARK] = ACTIONS(8514), + [anon_sym_STAR_EQ] = ACTIONS(8514), + [anon_sym_SLASH_EQ] = ACTIONS(8514), + [anon_sym_PERCENT_EQ] = ACTIONS(8514), + [anon_sym_PLUS_EQ] = ACTIONS(8514), + [anon_sym_DASH_EQ] = ACTIONS(8514), + [anon_sym_LT_LT_EQ] = ACTIONS(8514), + [anon_sym_GT_GT_EQ] = ACTIONS(8514), + [anon_sym_AMP_EQ] = ACTIONS(8514), + [anon_sym_CARET_EQ] = ACTIONS(8514), + [anon_sym_PIPE_EQ] = ACTIONS(8514), + [anon_sym_and_eq] = ACTIONS(8512), + [anon_sym_or_eq] = ACTIONS(8512), + [anon_sym_xor_eq] = ACTIONS(8512), + [anon_sym_LT_EQ_GT] = ACTIONS(8514), + [anon_sym_or] = ACTIONS(8512), + [anon_sym_and] = ACTIONS(8512), + [anon_sym_bitor] = ACTIONS(8512), + [anon_sym_xor] = ACTIONS(8512), + [anon_sym_bitand] = ACTIONS(8512), + [anon_sym_not_eq] = ACTIONS(8512), + [anon_sym_DASH_DASH] = ACTIONS(8514), + [anon_sym_PLUS_PLUS] = ACTIONS(8514), + [anon_sym_DOT] = ACTIONS(8512), + [anon_sym_DOT_STAR] = ACTIONS(8514), + [anon_sym_DASH_GT] = ACTIONS(8514), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8512), + [anon_sym_override] = ACTIONS(8512), + [anon_sym_requires] = ACTIONS(8512), + [anon_sym_COLON_RBRACK] = ACTIONS(8514), + }, + [STATE(2840)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym___extension__] = ACTIONS(6764), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_EQ] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6764), + [anon_sym_volatile] = ACTIONS(6764), + [anon_sym_restrict] = ACTIONS(6764), + [anon_sym___restrict__] = ACTIONS(6764), + [anon_sym__Atomic] = ACTIONS(6764), + [anon_sym__Noreturn] = ACTIONS(6764), + [anon_sym_noreturn] = ACTIONS(6764), + [anon_sym__Nonnull] = ACTIONS(6764), + [anon_sym_mutable] = ACTIONS(6764), + [anon_sym_constinit] = ACTIONS(6764), + [anon_sym_consteval] = ACTIONS(6764), + [anon_sym_alignas] = ACTIONS(6764), + [anon_sym__Alignas] = ACTIONS(6764), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_STAR_EQ] = ACTIONS(6764), + [anon_sym_SLASH_EQ] = ACTIONS(6764), + [anon_sym_PERCENT_EQ] = ACTIONS(6764), + [anon_sym_PLUS_EQ] = ACTIONS(6764), + [anon_sym_DASH_EQ] = ACTIONS(6764), + [anon_sym_LT_LT_EQ] = ACTIONS(6764), + [anon_sym_GT_GT_EQ] = ACTIONS(6764), + [anon_sym_AMP_EQ] = ACTIONS(6764), + [anon_sym_CARET_EQ] = ACTIONS(6764), + [anon_sym_PIPE_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6764), + [anon_sym_and] = ACTIONS(6764), + [anon_sym_bitor] = ACTIONS(6764), + [anon_sym_xor] = ACTIONS(6764), + [anon_sym_bitand] = ACTIONS(6764), + [anon_sym_not_eq] = ACTIONS(6764), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6762), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6764), + [anon_sym_override] = ACTIONS(6764), + [anon_sym_requires] = ACTIONS(6764), + [anon_sym_DASH_GT_STAR] = ACTIONS(6764), + }, + [STATE(2841)] = { + [sym_catch_clause] = STATE(2820), + [aux_sym_constructor_try_statement_repeat1] = STATE(2820), + [sym_identifier] = ACTIONS(3554), + [aux_sym_preproc_def_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token1] = ACTIONS(3554), + [aux_sym_preproc_if_token2] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), + [sym_preproc_directive] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_AMP_AMP] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym___extension__] = ACTIONS(3554), + [anon_sym_typedef] = ACTIONS(3554), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_extern] = ACTIONS(3554), + [anon_sym___attribute__] = ACTIONS(3554), + [anon_sym___attribute] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), + [anon_sym___declspec] = ACTIONS(3554), + [anon_sym___based] = ACTIONS(3554), + [anon_sym_signed] = ACTIONS(3554), + [anon_sym_unsigned] = ACTIONS(3554), + [anon_sym_long] = ACTIONS(3554), + [anon_sym_short] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_register] = ACTIONS(3554), + [anon_sym_inline] = ACTIONS(3554), + [anon_sym___inline] = ACTIONS(3554), + [anon_sym___inline__] = ACTIONS(3554), + [anon_sym___forceinline] = ACTIONS(3554), + [anon_sym_thread_local] = ACTIONS(3554), + [anon_sym___thread] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_constexpr] = ACTIONS(3554), + [anon_sym_volatile] = ACTIONS(3554), + [anon_sym_restrict] = ACTIONS(3554), + [anon_sym___restrict__] = ACTIONS(3554), + [anon_sym__Atomic] = ACTIONS(3554), + [anon_sym__Noreturn] = ACTIONS(3554), + [anon_sym_noreturn] = ACTIONS(3554), + [anon_sym__Nonnull] = ACTIONS(3554), + [anon_sym_mutable] = ACTIONS(3554), + [anon_sym_constinit] = ACTIONS(3554), + [anon_sym_consteval] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3554), + [anon_sym__Alignas] = ACTIONS(3554), + [sym_primitive_type] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_struct] = ACTIONS(3554), + [anon_sym_union] = ACTIONS(3554), + [anon_sym_typename] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3554), + [anon_sym_decltype] = ACTIONS(3554), + [anon_sym_explicit] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_template] = ACTIONS(3554), + [anon_sym_operator] = ACTIONS(3554), + [anon_sym_friend] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_catch] = ACTIONS(8500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2842)] = { + [sym_attribute_specifier] = STATE(3415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7189), + [anon_sym_and] = ACTIONS(7189), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7189), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + [anon_sym_DASH_GT_STAR] = ACTIONS(7189), + }, + [STATE(2843)] = { + [sym_attribute_specifier] = STATE(3441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), + [anon_sym_COMMA] = ACTIONS(7055), + [anon_sym_RPAREN] = ACTIONS(7055), + [anon_sym_LPAREN2] = ACTIONS(7055), + [anon_sym_DASH] = ACTIONS(7053), + [anon_sym_PLUS] = ACTIONS(7053), + [anon_sym_STAR] = ACTIONS(7053), + [anon_sym_SLASH] = ACTIONS(7053), + [anon_sym_PERCENT] = ACTIONS(7053), + [anon_sym_PIPE_PIPE] = ACTIONS(7055), + [anon_sym_AMP_AMP] = ACTIONS(7055), + [anon_sym_PIPE] = ACTIONS(7053), + [anon_sym_CARET] = ACTIONS(7053), + [anon_sym_AMP] = ACTIONS(7053), + [anon_sym_EQ_EQ] = ACTIONS(7055), + [anon_sym_BANG_EQ] = ACTIONS(7055), + [anon_sym_GT] = ACTIONS(7053), + [anon_sym_GT_EQ] = ACTIONS(7055), + [anon_sym_LT_EQ] = ACTIONS(7053), + [anon_sym_LT] = ACTIONS(7053), + [anon_sym_LT_LT] = ACTIONS(7053), + [anon_sym_GT_GT] = ACTIONS(7053), + [anon_sym___extension__] = ACTIONS(7055), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(7055), + [anon_sym_EQ] = ACTIONS(7053), + [anon_sym_const] = ACTIONS(7053), + [anon_sym_constexpr] = ACTIONS(7055), + [anon_sym_volatile] = ACTIONS(7055), + [anon_sym_restrict] = ACTIONS(7055), + [anon_sym___restrict__] = ACTIONS(7055), + [anon_sym__Atomic] = ACTIONS(7055), + [anon_sym__Noreturn] = ACTIONS(7055), + [anon_sym_noreturn] = ACTIONS(7055), + [anon_sym__Nonnull] = ACTIONS(7055), + [anon_sym_mutable] = ACTIONS(7055), + [anon_sym_constinit] = ACTIONS(7055), + [anon_sym_consteval] = ACTIONS(7055), + [anon_sym_alignas] = ACTIONS(7055), + [anon_sym__Alignas] = ACTIONS(7055), + [anon_sym_QMARK] = ACTIONS(7055), + [anon_sym_STAR_EQ] = ACTIONS(7055), + [anon_sym_SLASH_EQ] = ACTIONS(7055), + [anon_sym_PERCENT_EQ] = ACTIONS(7055), + [anon_sym_PLUS_EQ] = ACTIONS(7055), + [anon_sym_DASH_EQ] = ACTIONS(7055), + [anon_sym_LT_LT_EQ] = ACTIONS(7055), + [anon_sym_GT_GT_EQ] = ACTIONS(7055), + [anon_sym_AMP_EQ] = ACTIONS(7055), + [anon_sym_CARET_EQ] = ACTIONS(7055), + [anon_sym_PIPE_EQ] = ACTIONS(7055), + [anon_sym_LT_EQ_GT] = ACTIONS(7055), + [anon_sym_or] = ACTIONS(7055), + [anon_sym_and] = ACTIONS(7055), + [anon_sym_bitor] = ACTIONS(7055), + [anon_sym_xor] = ACTIONS(7055), + [anon_sym_bitand] = ACTIONS(7055), + [anon_sym_not_eq] = ACTIONS(7055), + [anon_sym_DASH_DASH] = ACTIONS(7055), + [anon_sym_PLUS_PLUS] = ACTIONS(7055), + [anon_sym_DOT] = ACTIONS(7053), + [anon_sym_DOT_STAR] = ACTIONS(7055), + [anon_sym_DASH_GT] = ACTIONS(7053), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7055), + [anon_sym_override] = ACTIONS(7055), + [anon_sym_requires] = ACTIONS(7055), + [anon_sym_DASH_GT_STAR] = ACTIONS(7055), + }, + [STATE(2844)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4044), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2961), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7560), + }, + [STATE(2845)] = { + [sym_identifier] = ACTIONS(8516), + [anon_sym_LPAREN2] = ACTIONS(8518), + [anon_sym_TILDE] = ACTIONS(8518), + [anon_sym_STAR] = ACTIONS(8518), + [anon_sym_PIPE_PIPE] = ACTIONS(8518), + [anon_sym_AMP_AMP] = ACTIONS(8518), + [anon_sym_AMP] = ACTIONS(8516), + [anon_sym___extension__] = ACTIONS(8516), + [anon_sym_virtual] = ACTIONS(8516), + [anon_sym_extern] = ACTIONS(8516), + [anon_sym___attribute__] = ACTIONS(8516), + [anon_sym___attribute] = ACTIONS(8516), + [anon_sym_using] = ACTIONS(8516), + [anon_sym_COLON_COLON] = ACTIONS(8518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8518), + [anon_sym___declspec] = ACTIONS(8516), + [anon_sym___based] = ACTIONS(8516), + [anon_sym___cdecl] = ACTIONS(8516), + [anon_sym___clrcall] = ACTIONS(8516), + [anon_sym___stdcall] = ACTIONS(8516), + [anon_sym___fastcall] = ACTIONS(8516), + [anon_sym___thiscall] = ACTIONS(8516), + [anon_sym___vectorcall] = ACTIONS(8516), + [anon_sym_LBRACE] = ACTIONS(8518), + [anon_sym_signed] = ACTIONS(8516), + [anon_sym_unsigned] = ACTIONS(8516), + [anon_sym_long] = ACTIONS(8516), + [anon_sym_short] = ACTIONS(8516), + [anon_sym_LBRACK] = ACTIONS(8516), + [anon_sym_static] = ACTIONS(8516), + [anon_sym_register] = ACTIONS(8516), + [anon_sym_inline] = ACTIONS(8516), + [anon_sym___inline] = ACTIONS(8516), + [anon_sym___inline__] = ACTIONS(8516), + [anon_sym___forceinline] = ACTIONS(8516), + [anon_sym_thread_local] = ACTIONS(8516), + [anon_sym___thread] = ACTIONS(8516), + [anon_sym_const] = ACTIONS(8516), + [anon_sym_constexpr] = ACTIONS(8516), + [anon_sym_volatile] = ACTIONS(8516), + [anon_sym_restrict] = ACTIONS(8516), + [anon_sym___restrict__] = ACTIONS(8516), + [anon_sym__Atomic] = ACTIONS(8516), + [anon_sym__Noreturn] = ACTIONS(8516), + [anon_sym_noreturn] = ACTIONS(8516), + [anon_sym__Nonnull] = ACTIONS(8516), + [anon_sym_mutable] = ACTIONS(8516), + [anon_sym_constinit] = ACTIONS(8516), + [anon_sym_consteval] = ACTIONS(8516), + [anon_sym_alignas] = ACTIONS(8516), + [anon_sym__Alignas] = ACTIONS(8516), + [sym_primitive_type] = ACTIONS(8516), + [anon_sym_enum] = ACTIONS(8516), + [anon_sym_class] = ACTIONS(8516), + [anon_sym_struct] = ACTIONS(8516), + [anon_sym_union] = ACTIONS(8516), + [anon_sym_or] = ACTIONS(8516), + [anon_sym_and] = ACTIONS(8516), + [anon_sym_typename] = ACTIONS(8516), + [anon_sym_DASH_GT] = ACTIONS(8518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8516), + [anon_sym_decltype] = ACTIONS(8516), + [anon_sym_explicit] = ACTIONS(8516), + [anon_sym_template] = ACTIONS(8516), + [anon_sym_operator] = ACTIONS(8516), + [anon_sym_friend] = ACTIONS(8516), + [anon_sym_noexcept] = ACTIONS(8516), + [anon_sym_throw] = ACTIONS(8516), + [anon_sym_concept] = ACTIONS(8516), + [anon_sym_LBRACK_COLON] = ACTIONS(8518), + }, + [STATE(2846)] = { + [sym_attribute_specifier] = STATE(3443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7059), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7057), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym___restrict__] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym__Noreturn] = ACTIONS(7059), + [anon_sym_noreturn] = ACTIONS(7059), + [anon_sym__Nonnull] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_constinit] = ACTIONS(7059), + [anon_sym_consteval] = ACTIONS(7059), + [anon_sym_alignas] = ACTIONS(7059), + [anon_sym__Alignas] = ACTIONS(7059), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + }, + [STATE(2847)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4191), + [sym_ms_pointer_modifier] = STATE(3862), + [sym__abstract_declarator] = STATE(6706), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3935), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2180), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3935), + [aux_sym_pointer_declarator_repeat1] = STATE(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8520), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8522), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8524), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(8254), + [sym_ms_restrict_modifier] = ACTIONS(8256), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), + [sym_ms_signed_ptr_modifier] = ACTIONS(8258), + [anon_sym__unaligned] = ACTIONS(8260), + [anon_sym___unaligned] = ACTIONS(8260), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(2848)] = { + [sym_identifier] = ACTIONS(6762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6764), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6764), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6764), + [anon_sym_GT_GT] = ACTIONS(6764), + [anon_sym_SEMI] = ACTIONS(6764), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6764), + [anon_sym___based] = ACTIONS(6762), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_RBRACE] = ACTIONS(6764), + [anon_sym_signed] = ACTIONS(6762), + [anon_sym_unsigned] = ACTIONS(6762), + [anon_sym_long] = ACTIONS(6762), + [anon_sym_short] = ACTIONS(6762), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6762), + [anon_sym__Alignas] = ACTIONS(6762), + [sym_primitive_type] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6762), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6762), + [anon_sym_not_eq] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6762), + [anon_sym_override] = ACTIONS(6762), + [anon_sym_requires] = ACTIONS(6762), + [anon_sym_COLON_RBRACK] = ACTIONS(6764), + }, + [STATE(2849)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4140), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2975), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(8070), + [anon_sym___attribute] = ACTIONS(8073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8076), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7637), + }, + [STATE(2850)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_RPAREN] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7207), + [anon_sym_volatile] = ACTIONS(7207), + [anon_sym_restrict] = ACTIONS(7207), + [anon_sym___restrict__] = ACTIONS(7207), + [anon_sym__Atomic] = ACTIONS(7207), + [anon_sym__Noreturn] = ACTIONS(7207), + [anon_sym_noreturn] = ACTIONS(7207), + [anon_sym__Nonnull] = ACTIONS(7207), + [anon_sym_mutable] = ACTIONS(7207), + [anon_sym_constinit] = ACTIONS(7207), + [anon_sym_consteval] = ACTIONS(7207), + [anon_sym_alignas] = ACTIONS(7207), + [anon_sym__Alignas] = ACTIONS(7207), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_STAR_EQ] = ACTIONS(7207), + [anon_sym_SLASH_EQ] = ACTIONS(7207), + [anon_sym_PERCENT_EQ] = ACTIONS(7207), + [anon_sym_PLUS_EQ] = ACTIONS(7207), + [anon_sym_DASH_EQ] = ACTIONS(7207), + [anon_sym_LT_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7207), + [anon_sym_CARET_EQ] = ACTIONS(7207), + [anon_sym_PIPE_EQ] = ACTIONS(7207), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7205), + [anon_sym_and] = ACTIONS(7205), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7205), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_DASH_GT_STAR] = ACTIONS(7207), + }, + [STATE(2851)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_RPAREN] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7211), + [anon_sym_volatile] = ACTIONS(7211), + [anon_sym_restrict] = ACTIONS(7211), + [anon_sym___restrict__] = ACTIONS(7211), + [anon_sym__Atomic] = ACTIONS(7211), + [anon_sym__Noreturn] = ACTIONS(7211), + [anon_sym_noreturn] = ACTIONS(7211), + [anon_sym__Nonnull] = ACTIONS(7211), + [anon_sym_mutable] = ACTIONS(7211), + [anon_sym_constinit] = ACTIONS(7211), + [anon_sym_consteval] = ACTIONS(7211), + [anon_sym_alignas] = ACTIONS(7211), + [anon_sym__Alignas] = ACTIONS(7211), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7209), + [anon_sym_and] = ACTIONS(7209), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7209), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_DASH_GT_STAR] = ACTIONS(7211), + }, + [STATE(2852)] = { + [sym_attribute_specifier] = STATE(3448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), + [anon_sym_COMMA] = ACTIONS(7063), + [anon_sym_RPAREN] = ACTIONS(7063), + [anon_sym_LPAREN2] = ACTIONS(7063), + [anon_sym_DASH] = ACTIONS(7061), + [anon_sym_PLUS] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(7061), + [anon_sym_SLASH] = ACTIONS(7061), + [anon_sym_PERCENT] = ACTIONS(7061), + [anon_sym_PIPE_PIPE] = ACTIONS(7063), + [anon_sym_AMP_AMP] = ACTIONS(7063), + [anon_sym_PIPE] = ACTIONS(7061), + [anon_sym_CARET] = ACTIONS(7061), + [anon_sym_AMP] = ACTIONS(7061), + [anon_sym_EQ_EQ] = ACTIONS(7063), + [anon_sym_BANG_EQ] = ACTIONS(7063), + [anon_sym_GT] = ACTIONS(7061), + [anon_sym_GT_EQ] = ACTIONS(7063), + [anon_sym_LT_EQ] = ACTIONS(7061), + [anon_sym_LT] = ACTIONS(7061), + [anon_sym_LT_LT] = ACTIONS(7061), + [anon_sym_GT_GT] = ACTIONS(7061), + [anon_sym___extension__] = ACTIONS(7063), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(7063), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(7061), + [anon_sym_constexpr] = ACTIONS(7063), + [anon_sym_volatile] = ACTIONS(7063), + [anon_sym_restrict] = ACTIONS(7063), + [anon_sym___restrict__] = ACTIONS(7063), + [anon_sym__Atomic] = ACTIONS(7063), + [anon_sym__Noreturn] = ACTIONS(7063), + [anon_sym_noreturn] = ACTIONS(7063), + [anon_sym__Nonnull] = ACTIONS(7063), + [anon_sym_mutable] = ACTIONS(7063), + [anon_sym_constinit] = ACTIONS(7063), + [anon_sym_consteval] = ACTIONS(7063), + [anon_sym_alignas] = ACTIONS(7063), + [anon_sym__Alignas] = ACTIONS(7063), + [anon_sym_QMARK] = ACTIONS(7063), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_LT_EQ_GT] = ACTIONS(7063), + [anon_sym_or] = ACTIONS(7063), + [anon_sym_and] = ACTIONS(7063), + [anon_sym_bitor] = ACTIONS(7063), + [anon_sym_xor] = ACTIONS(7063), + [anon_sym_bitand] = ACTIONS(7063), + [anon_sym_not_eq] = ACTIONS(7063), + [anon_sym_DASH_DASH] = ACTIONS(7063), + [anon_sym_PLUS_PLUS] = ACTIONS(7063), + [anon_sym_DOT] = ACTIONS(7061), + [anon_sym_DOT_STAR] = ACTIONS(7063), + [anon_sym_DASH_GT] = ACTIONS(7061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7063), + [anon_sym_override] = ACTIONS(7063), + [anon_sym_requires] = ACTIONS(7063), + [anon_sym_DASH_GT_STAR] = ACTIONS(7063), + }, + [STATE(2853)] = { + [sym_attribute_specifier] = STATE(3450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), + [anon_sym_COMMA] = ACTIONS(7067), + [anon_sym_RPAREN] = ACTIONS(7067), + [anon_sym_LPAREN2] = ACTIONS(7067), + [anon_sym_DASH] = ACTIONS(7065), + [anon_sym_PLUS] = ACTIONS(7065), + [anon_sym_STAR] = ACTIONS(7065), + [anon_sym_SLASH] = ACTIONS(7065), + [anon_sym_PERCENT] = ACTIONS(7065), + [anon_sym_PIPE_PIPE] = ACTIONS(7067), + [anon_sym_AMP_AMP] = ACTIONS(7067), + [anon_sym_PIPE] = ACTIONS(7065), + [anon_sym_CARET] = ACTIONS(7065), + [anon_sym_AMP] = ACTIONS(7065), + [anon_sym_EQ_EQ] = ACTIONS(7067), + [anon_sym_BANG_EQ] = ACTIONS(7067), + [anon_sym_GT] = ACTIONS(7065), + [anon_sym_GT_EQ] = ACTIONS(7067), + [anon_sym_LT_EQ] = ACTIONS(7065), + [anon_sym_LT] = ACTIONS(7065), + [anon_sym_LT_LT] = ACTIONS(7065), + [anon_sym_GT_GT] = ACTIONS(7065), + [anon_sym___extension__] = ACTIONS(7067), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(7067), + [anon_sym_EQ] = ACTIONS(7065), + [anon_sym_const] = ACTIONS(7065), + [anon_sym_constexpr] = ACTIONS(7067), + [anon_sym_volatile] = ACTIONS(7067), + [anon_sym_restrict] = ACTIONS(7067), + [anon_sym___restrict__] = ACTIONS(7067), + [anon_sym__Atomic] = ACTIONS(7067), + [anon_sym__Noreturn] = ACTIONS(7067), + [anon_sym_noreturn] = ACTIONS(7067), + [anon_sym__Nonnull] = ACTIONS(7067), + [anon_sym_mutable] = ACTIONS(7067), + [anon_sym_constinit] = ACTIONS(7067), + [anon_sym_consteval] = ACTIONS(7067), + [anon_sym_alignas] = ACTIONS(7067), + [anon_sym__Alignas] = ACTIONS(7067), + [anon_sym_QMARK] = ACTIONS(7067), + [anon_sym_STAR_EQ] = ACTIONS(7067), + [anon_sym_SLASH_EQ] = ACTIONS(7067), + [anon_sym_PERCENT_EQ] = ACTIONS(7067), + [anon_sym_PLUS_EQ] = ACTIONS(7067), + [anon_sym_DASH_EQ] = ACTIONS(7067), + [anon_sym_LT_LT_EQ] = ACTIONS(7067), + [anon_sym_GT_GT_EQ] = ACTIONS(7067), + [anon_sym_AMP_EQ] = ACTIONS(7067), + [anon_sym_CARET_EQ] = ACTIONS(7067), + [anon_sym_PIPE_EQ] = ACTIONS(7067), + [anon_sym_LT_EQ_GT] = ACTIONS(7067), + [anon_sym_or] = ACTIONS(7067), + [anon_sym_and] = ACTIONS(7067), + [anon_sym_bitor] = ACTIONS(7067), + [anon_sym_xor] = ACTIONS(7067), + [anon_sym_bitand] = ACTIONS(7067), + [anon_sym_not_eq] = ACTIONS(7067), + [anon_sym_DASH_DASH] = ACTIONS(7067), + [anon_sym_PLUS_PLUS] = ACTIONS(7067), + [anon_sym_DOT] = ACTIONS(7065), + [anon_sym_DOT_STAR] = ACTIONS(7067), + [anon_sym_DASH_GT] = ACTIONS(7065), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7067), + [anon_sym_override] = ACTIONS(7067), + [anon_sym_requires] = ACTIONS(7067), + [anon_sym_DASH_GT_STAR] = ACTIONS(7067), + }, + [STATE(2854)] = { + [sym_decltype_auto] = STATE(3956), + [sym_template_argument_list] = STATE(2824), + [aux_sym_sized_type_specifier_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(5251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [aux_sym_preproc_if_token2] = ACTIONS(5258), + [aux_sym_preproc_else_token1] = ACTIONS(5258), + [aux_sym_preproc_elif_token1] = ACTIONS(5251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(8526), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5251), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6443), + [anon_sym_unsigned] = ACTIONS(6443), + [anon_sym_long] = ACTIONS(6443), + [anon_sym_short] = ACTIONS(6443), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5251), + [anon_sym_volatile] = ACTIONS(5251), + [anon_sym_restrict] = ACTIONS(5251), + [anon_sym___restrict__] = ACTIONS(5251), + [anon_sym__Atomic] = ACTIONS(5251), + [anon_sym__Noreturn] = ACTIONS(5251), + [anon_sym_noreturn] = ACTIONS(5251), + [anon_sym__Nonnull] = ACTIONS(5251), + [anon_sym_mutable] = ACTIONS(5251), + [anon_sym_constinit] = ACTIONS(5251), + [anon_sym_consteval] = ACTIONS(5251), + [anon_sym_alignas] = ACTIONS(5251), + [anon_sym__Alignas] = ACTIONS(5251), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5251), + [anon_sym_and] = ACTIONS(5251), + [anon_sym_bitor] = ACTIONS(5251), + [anon_sym_xor] = ACTIONS(5251), + [anon_sym_bitand] = ACTIONS(5251), + [anon_sym_not_eq] = ACTIONS(5251), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6449), + [anon_sym_decltype] = ACTIONS(6451), + [anon_sym_final] = ACTIONS(5251), + [anon_sym_override] = ACTIONS(5251), + [anon_sym_requires] = ACTIONS(5251), + }, + [STATE(2855)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6751), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), + [anon_sym___based] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6751), + [anon_sym_signed] = ACTIONS(6746), + [anon_sym_unsigned] = ACTIONS(6746), + [anon_sym_long] = ACTIONS(6746), + [anon_sym_short] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [sym_primitive_type] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6751), + }, + [STATE(2856)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2857)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4246), + [sym__function_postfix] = STATE(4995), + [sym_trailing_return_type] = STATE(4326), + [sym_requires_clause] = STATE(4995), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_RBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2858)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4141), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2867), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(8528), + [anon_sym___attribute] = ACTIONS(8531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8534), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8129), + [anon_sym_override] = ACTIONS(8129), + [anon_sym_requires] = ACTIONS(8132), + }, + [STATE(2859)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + }, + [STATE(2860)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(2861)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_RPAREN] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7227), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7227), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7227), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7227), + [anon_sym_GT_GT] = ACTIONS(7227), + [anon_sym___extension__] = ACTIONS(7229), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_EQ] = ACTIONS(7227), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7229), + [anon_sym_volatile] = ACTIONS(7229), + [anon_sym_restrict] = ACTIONS(7229), + [anon_sym___restrict__] = ACTIONS(7229), + [anon_sym__Atomic] = ACTIONS(7229), + [anon_sym__Noreturn] = ACTIONS(7229), + [anon_sym_noreturn] = ACTIONS(7229), + [anon_sym__Nonnull] = ACTIONS(7229), + [anon_sym_mutable] = ACTIONS(7229), + [anon_sym_constinit] = ACTIONS(7229), + [anon_sym_consteval] = ACTIONS(7229), + [anon_sym_alignas] = ACTIONS(7229), + [anon_sym__Alignas] = ACTIONS(7229), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_STAR_EQ] = ACTIONS(7229), + [anon_sym_SLASH_EQ] = ACTIONS(7229), + [anon_sym_PERCENT_EQ] = ACTIONS(7229), + [anon_sym_PLUS_EQ] = ACTIONS(7229), + [anon_sym_DASH_EQ] = ACTIONS(7229), + [anon_sym_LT_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_GT_EQ] = ACTIONS(7229), + [anon_sym_AMP_EQ] = ACTIONS(7229), + [anon_sym_CARET_EQ] = ACTIONS(7229), + [anon_sym_PIPE_EQ] = ACTIONS(7229), + [anon_sym_and_eq] = ACTIONS(7229), + [anon_sym_or_eq] = ACTIONS(7229), + [anon_sym_xor_eq] = ACTIONS(7229), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7227), + [anon_sym_and] = ACTIONS(7227), + [anon_sym_bitor] = ACTIONS(7229), + [anon_sym_xor] = ACTIONS(7227), + [anon_sym_bitand] = ACTIONS(7229), + [anon_sym_not_eq] = ACTIONS(7229), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7227), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7229), + [anon_sym_override] = ACTIONS(7229), + [anon_sym_requires] = ACTIONS(7229), + [anon_sym_DASH_GT_STAR] = ACTIONS(7229), + }, + [STATE(2862)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7233), + [anon_sym_or_eq] = ACTIONS(7233), + [anon_sym_xor_eq] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7231), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), + [anon_sym_DASH_GT_STAR] = ACTIONS(7233), + }, + [STATE(2863)] = { + [sym_decltype_auto] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8266), + [anon_sym_decltype] = ACTIONS(6680), + }, + [STATE(2864)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7546), + [anon_sym___attribute] = ACTIONS(7546), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7544), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2865)] = { + [sym_template_argument_list] = STATE(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8537), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_RBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6205), + [anon_sym_SLASH_EQ] = ACTIONS(6205), + [anon_sym_PERCENT_EQ] = ACTIONS(6205), + [anon_sym_PLUS_EQ] = ACTIONS(6205), + [anon_sym_DASH_EQ] = ACTIONS(6205), + [anon_sym_LT_LT_EQ] = ACTIONS(6205), + [anon_sym_GT_GT_EQ] = ACTIONS(6205), + [anon_sym_AMP_EQ] = ACTIONS(6205), + [anon_sym_CARET_EQ] = ACTIONS(6205), + [anon_sym_PIPE_EQ] = ACTIONS(6205), + [anon_sym_and_eq] = ACTIONS(6205), + [anon_sym_or_eq] = ACTIONS(6205), + [anon_sym_xor_eq] = ACTIONS(6205), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + }, + [STATE(2866)] = { + [sym__abstract_declarator] = STATE(6056), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2937), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), + [anon_sym_RBRACE] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + [anon_sym_COLON_RBRACK] = ACTIONS(6991), + }, + [STATE(2867)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3541), + [sym_requires_clause] = STATE(3541), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), + [anon_sym_COMMA] = ACTIONS(8543), + [anon_sym_RPAREN] = ACTIONS(8543), + [aux_sym_preproc_if_token2] = ACTIONS(8543), + [aux_sym_preproc_else_token1] = ACTIONS(8543), + [aux_sym_preproc_elif_token1] = ACTIONS(8541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), + [anon_sym_LPAREN2] = ACTIONS(8543), + [anon_sym_DASH] = ACTIONS(8541), + [anon_sym_PLUS] = ACTIONS(8541), + [anon_sym_STAR] = ACTIONS(8541), + [anon_sym_SLASH] = ACTIONS(8541), + [anon_sym_PERCENT] = ACTIONS(8541), + [anon_sym_PIPE_PIPE] = ACTIONS(8543), + [anon_sym_AMP_AMP] = ACTIONS(8543), + [anon_sym_PIPE] = ACTIONS(8541), + [anon_sym_CARET] = ACTIONS(8541), + [anon_sym_AMP] = ACTIONS(8541), + [anon_sym_EQ_EQ] = ACTIONS(8543), + [anon_sym_BANG_EQ] = ACTIONS(8543), + [anon_sym_GT] = ACTIONS(8541), + [anon_sym_GT_EQ] = ACTIONS(8543), + [anon_sym_LT_EQ] = ACTIONS(8541), + [anon_sym_LT] = ACTIONS(8541), + [anon_sym_LT_LT] = ACTIONS(8541), + [anon_sym_GT_GT] = ACTIONS(8541), + [anon_sym_SEMI] = ACTIONS(8543), + [anon_sym___attribute__] = ACTIONS(8541), + [anon_sym___attribute] = ACTIONS(8541), + [anon_sym_COLON] = ACTIONS(8541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), + [anon_sym_RBRACE] = ACTIONS(8543), + [anon_sym_LBRACK] = ACTIONS(8543), + [anon_sym_EQ] = ACTIONS(8541), + [anon_sym_QMARK] = ACTIONS(8543), + [anon_sym_STAR_EQ] = ACTIONS(8543), + [anon_sym_SLASH_EQ] = ACTIONS(8543), + [anon_sym_PERCENT_EQ] = ACTIONS(8543), + [anon_sym_PLUS_EQ] = ACTIONS(8543), + [anon_sym_DASH_EQ] = ACTIONS(8543), + [anon_sym_LT_LT_EQ] = ACTIONS(8543), + [anon_sym_GT_GT_EQ] = ACTIONS(8543), + [anon_sym_AMP_EQ] = ACTIONS(8543), + [anon_sym_CARET_EQ] = ACTIONS(8543), + [anon_sym_PIPE_EQ] = ACTIONS(8543), + [anon_sym_and_eq] = ACTIONS(8541), + [anon_sym_or_eq] = ACTIONS(8541), + [anon_sym_xor_eq] = ACTIONS(8541), + [anon_sym_LT_EQ_GT] = ACTIONS(8543), + [anon_sym_or] = ACTIONS(8541), + [anon_sym_and] = ACTIONS(8541), + [anon_sym_bitor] = ACTIONS(8541), + [anon_sym_xor] = ACTIONS(8541), + [anon_sym_bitand] = ACTIONS(8541), + [anon_sym_not_eq] = ACTIONS(8541), + [anon_sym_DASH_DASH] = ACTIONS(8543), + [anon_sym_PLUS_PLUS] = ACTIONS(8543), + [anon_sym_DOT] = ACTIONS(8541), + [anon_sym_DOT_STAR] = ACTIONS(8543), + [anon_sym_DASH_GT] = ACTIONS(8543), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8545), + [anon_sym_override] = ACTIONS(8545), + [anon_sym_requires] = ACTIONS(8548), + [anon_sym_COLON_RBRACK] = ACTIONS(8543), + }, + [STATE(2868)] = { + [sym_decltype_auto] = STATE(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8156), + [anon_sym_decltype] = ACTIONS(6574), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2869)] = { + [sym_argument_list] = STATE(5523), + [sym_initializer_list] = STATE(5524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2870)] = { + [sym_identifier] = ACTIONS(8551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(8553), + [anon_sym_RPAREN] = ACTIONS(8553), + [aux_sym_preproc_if_token2] = ACTIONS(8553), + [aux_sym_preproc_else_token1] = ACTIONS(8553), + [aux_sym_preproc_elif_token1] = ACTIONS(8551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8553), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8553), + [anon_sym_LPAREN2] = ACTIONS(8553), + [anon_sym_DASH] = ACTIONS(8551), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_STAR] = ACTIONS(8551), + [anon_sym_SLASH] = ACTIONS(8551), + [anon_sym_PERCENT] = ACTIONS(8551), + [anon_sym_PIPE_PIPE] = ACTIONS(8553), + [anon_sym_AMP_AMP] = ACTIONS(8553), + [anon_sym_PIPE] = ACTIONS(8551), + [anon_sym_CARET] = ACTIONS(8551), + [anon_sym_AMP] = ACTIONS(8551), + [anon_sym_EQ_EQ] = ACTIONS(8553), + [anon_sym_BANG_EQ] = ACTIONS(8553), + [anon_sym_GT] = ACTIONS(8551), + [anon_sym_GT_EQ] = ACTIONS(8553), + [anon_sym_LT_EQ] = ACTIONS(8551), + [anon_sym_LT] = ACTIONS(8551), + [anon_sym_LT_LT] = ACTIONS(8551), + [anon_sym_GT_GT] = ACTIONS(8551), + [anon_sym_SEMI] = ACTIONS(8553), + [anon_sym___attribute__] = ACTIONS(8551), + [anon_sym___attribute] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8553), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8553), + [anon_sym_RBRACE] = ACTIONS(8553), + [anon_sym_LBRACK] = ACTIONS(8551), + [anon_sym_EQ] = ACTIONS(8551), + [anon_sym_QMARK] = ACTIONS(8553), + [anon_sym_STAR_EQ] = ACTIONS(8553), + [anon_sym_SLASH_EQ] = ACTIONS(8553), + [anon_sym_PERCENT_EQ] = ACTIONS(8553), + [anon_sym_PLUS_EQ] = ACTIONS(8553), + [anon_sym_DASH_EQ] = ACTIONS(8553), + [anon_sym_LT_LT_EQ] = ACTIONS(8553), + [anon_sym_GT_GT_EQ] = ACTIONS(8553), + [anon_sym_AMP_EQ] = ACTIONS(8553), + [anon_sym_CARET_EQ] = ACTIONS(8553), + [anon_sym_PIPE_EQ] = ACTIONS(8553), + [anon_sym_and_eq] = ACTIONS(8551), + [anon_sym_or_eq] = ACTIONS(8551), + [anon_sym_xor_eq] = ACTIONS(8551), + [anon_sym_LT_EQ_GT] = ACTIONS(8553), + [anon_sym_or] = ACTIONS(8551), + [anon_sym_and] = ACTIONS(8551), + [anon_sym_bitor] = ACTIONS(8551), + [anon_sym_xor] = ACTIONS(8551), + [anon_sym_bitand] = ACTIONS(8551), + [anon_sym_not_eq] = ACTIONS(8551), + [anon_sym_DASH_DASH] = ACTIONS(8553), + [anon_sym_PLUS_PLUS] = ACTIONS(8553), + [anon_sym_asm] = ACTIONS(8551), + [anon_sym___asm__] = ACTIONS(8551), + [anon_sym___asm] = ACTIONS(8551), + [anon_sym_DOT] = ACTIONS(8551), + [anon_sym_DOT_STAR] = ACTIONS(8553), + [anon_sym_DASH_GT] = ACTIONS(8553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8551), + [anon_sym_override] = ACTIONS(8551), + [anon_sym_requires] = ACTIONS(8551), + [anon_sym_COLON_RBRACK] = ACTIONS(8553), + }, + [STATE(2871)] = { + [sym_identifier] = ACTIONS(8555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8557), + [anon_sym_COMMA] = ACTIONS(8557), + [anon_sym_RPAREN] = ACTIONS(8557), + [aux_sym_preproc_if_token2] = ACTIONS(8557), + [aux_sym_preproc_else_token1] = ACTIONS(8557), + [aux_sym_preproc_elif_token1] = ACTIONS(8555), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8557), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8557), + [anon_sym_LPAREN2] = ACTIONS(8557), + [anon_sym_DASH] = ACTIONS(8555), + [anon_sym_PLUS] = ACTIONS(8555), + [anon_sym_STAR] = ACTIONS(8555), + [anon_sym_SLASH] = ACTIONS(8555), + [anon_sym_PERCENT] = ACTIONS(8555), + [anon_sym_PIPE_PIPE] = ACTIONS(8557), + [anon_sym_AMP_AMP] = ACTIONS(8557), + [anon_sym_PIPE] = ACTIONS(8555), + [anon_sym_CARET] = ACTIONS(8555), + [anon_sym_AMP] = ACTIONS(8555), + [anon_sym_EQ_EQ] = ACTIONS(8557), + [anon_sym_BANG_EQ] = ACTIONS(8557), + [anon_sym_GT] = ACTIONS(8555), + [anon_sym_GT_EQ] = ACTIONS(8557), + [anon_sym_LT_EQ] = ACTIONS(8555), + [anon_sym_LT] = ACTIONS(8555), + [anon_sym_LT_LT] = ACTIONS(8555), + [anon_sym_GT_GT] = ACTIONS(8555), + [anon_sym_SEMI] = ACTIONS(8557), + [anon_sym___attribute__] = ACTIONS(8555), + [anon_sym___attribute] = ACTIONS(8555), + [anon_sym_COLON] = ACTIONS(8555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8557), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8557), + [anon_sym_RBRACE] = ACTIONS(8557), + [anon_sym_LBRACK] = ACTIONS(8555), + [anon_sym_EQ] = ACTIONS(8555), + [anon_sym_QMARK] = ACTIONS(8557), + [anon_sym_STAR_EQ] = ACTIONS(8557), + [anon_sym_SLASH_EQ] = ACTIONS(8557), + [anon_sym_PERCENT_EQ] = ACTIONS(8557), + [anon_sym_PLUS_EQ] = ACTIONS(8557), + [anon_sym_DASH_EQ] = ACTIONS(8557), + [anon_sym_LT_LT_EQ] = ACTIONS(8557), + [anon_sym_GT_GT_EQ] = ACTIONS(8557), + [anon_sym_AMP_EQ] = ACTIONS(8557), + [anon_sym_CARET_EQ] = ACTIONS(8557), + [anon_sym_PIPE_EQ] = ACTIONS(8557), + [anon_sym_and_eq] = ACTIONS(8555), + [anon_sym_or_eq] = ACTIONS(8555), + [anon_sym_xor_eq] = ACTIONS(8555), + [anon_sym_LT_EQ_GT] = ACTIONS(8557), + [anon_sym_or] = ACTIONS(8555), + [anon_sym_and] = ACTIONS(8555), + [anon_sym_bitor] = ACTIONS(8555), + [anon_sym_xor] = ACTIONS(8555), + [anon_sym_bitand] = ACTIONS(8555), + [anon_sym_not_eq] = ACTIONS(8555), + [anon_sym_DASH_DASH] = ACTIONS(8557), + [anon_sym_PLUS_PLUS] = ACTIONS(8557), + [anon_sym_asm] = ACTIONS(8555), + [anon_sym___asm__] = ACTIONS(8555), + [anon_sym___asm] = ACTIONS(8555), + [anon_sym_DOT] = ACTIONS(8555), + [anon_sym_DOT_STAR] = ACTIONS(8557), + [anon_sym_DASH_GT] = ACTIONS(8557), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8555), + [anon_sym_override] = ACTIONS(8555), + [anon_sym_requires] = ACTIONS(8555), + [anon_sym_COLON_RBRACK] = ACTIONS(8557), + }, + [STATE(2872)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3543), + [sym_requires_clause] = STATE(3543), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(8561), + [anon_sym_RPAREN] = ACTIONS(8561), + [aux_sym_preproc_if_token2] = ACTIONS(8561), + [aux_sym_preproc_else_token1] = ACTIONS(8561), + [aux_sym_preproc_elif_token1] = ACTIONS(8559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), + [anon_sym_LPAREN2] = ACTIONS(8561), + [anon_sym_DASH] = ACTIONS(8559), + [anon_sym_PLUS] = ACTIONS(8559), + [anon_sym_STAR] = ACTIONS(8559), + [anon_sym_SLASH] = ACTIONS(8559), + [anon_sym_PERCENT] = ACTIONS(8559), + [anon_sym_PIPE_PIPE] = ACTIONS(8561), + [anon_sym_AMP_AMP] = ACTIONS(8561), + [anon_sym_PIPE] = ACTIONS(8559), + [anon_sym_CARET] = ACTIONS(8559), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym_EQ_EQ] = ACTIONS(8561), + [anon_sym_BANG_EQ] = ACTIONS(8561), + [anon_sym_GT] = ACTIONS(8559), + [anon_sym_GT_EQ] = ACTIONS(8561), + [anon_sym_LT_EQ] = ACTIONS(8559), + [anon_sym_LT] = ACTIONS(8559), + [anon_sym_LT_LT] = ACTIONS(8559), + [anon_sym_GT_GT] = ACTIONS(8559), + [anon_sym_SEMI] = ACTIONS(8561), + [anon_sym___attribute__] = ACTIONS(8559), + [anon_sym___attribute] = ACTIONS(8559), + [anon_sym_COLON] = ACTIONS(8559), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), + [anon_sym_RBRACE] = ACTIONS(8561), + [anon_sym_LBRACK] = ACTIONS(8561), + [anon_sym_EQ] = ACTIONS(8559), + [anon_sym_QMARK] = ACTIONS(8561), + [anon_sym_STAR_EQ] = ACTIONS(8561), + [anon_sym_SLASH_EQ] = ACTIONS(8561), + [anon_sym_PERCENT_EQ] = ACTIONS(8561), + [anon_sym_PLUS_EQ] = ACTIONS(8561), + [anon_sym_DASH_EQ] = ACTIONS(8561), + [anon_sym_LT_LT_EQ] = ACTIONS(8561), + [anon_sym_GT_GT_EQ] = ACTIONS(8561), + [anon_sym_AMP_EQ] = ACTIONS(8561), + [anon_sym_CARET_EQ] = ACTIONS(8561), + [anon_sym_PIPE_EQ] = ACTIONS(8561), + [anon_sym_and_eq] = ACTIONS(8559), + [anon_sym_or_eq] = ACTIONS(8559), + [anon_sym_xor_eq] = ACTIONS(8559), + [anon_sym_LT_EQ_GT] = ACTIONS(8561), + [anon_sym_or] = ACTIONS(8559), + [anon_sym_and] = ACTIONS(8559), + [anon_sym_bitor] = ACTIONS(8559), + [anon_sym_xor] = ACTIONS(8559), + [anon_sym_bitand] = ACTIONS(8559), + [anon_sym_not_eq] = ACTIONS(8559), + [anon_sym_DASH_DASH] = ACTIONS(8561), + [anon_sym_PLUS_PLUS] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8559), + [anon_sym_DOT_STAR] = ACTIONS(8561), + [anon_sym_DASH_GT] = ACTIONS(8561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8563), + [anon_sym_override] = ACTIONS(8563), + [anon_sym_requires] = ACTIONS(8566), + [anon_sym_COLON_RBRACK] = ACTIONS(8561), + }, + [STATE(2873)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7351), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(7353), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_EQ] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7353), + [anon_sym_volatile] = ACTIONS(7353), + [anon_sym_restrict] = ACTIONS(7353), + [anon_sym___restrict__] = ACTIONS(7353), + [anon_sym__Atomic] = ACTIONS(7353), + [anon_sym__Noreturn] = ACTIONS(7353), + [anon_sym_noreturn] = ACTIONS(7353), + [anon_sym__Nonnull] = ACTIONS(7353), + [anon_sym_mutable] = ACTIONS(7353), + [anon_sym_constinit] = ACTIONS(7353), + [anon_sym_consteval] = ACTIONS(7353), + [anon_sym_alignas] = ACTIONS(7353), + [anon_sym__Alignas] = ACTIONS(7353), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_STAR_EQ] = ACTIONS(7353), + [anon_sym_SLASH_EQ] = ACTIONS(7353), + [anon_sym_PERCENT_EQ] = ACTIONS(7353), + [anon_sym_PLUS_EQ] = ACTIONS(7353), + [anon_sym_DASH_EQ] = ACTIONS(7353), + [anon_sym_LT_LT_EQ] = ACTIONS(7353), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7353), + [anon_sym_CARET_EQ] = ACTIONS(7353), + [anon_sym_PIPE_EQ] = ACTIONS(7353), + [anon_sym_and_eq] = ACTIONS(7353), + [anon_sym_or_eq] = ACTIONS(7353), + [anon_sym_xor_eq] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), + [anon_sym_DASH_GT_STAR] = ACTIONS(7353), + }, + [STATE(2874)] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym_SEMI] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7183), + [anon_sym___based] = ACTIONS(7185), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_RBRACE] = ACTIONS(7183), + [anon_sym_signed] = ACTIONS(7185), + [anon_sym_unsigned] = ACTIONS(7185), + [anon_sym_long] = ACTIONS(7185), + [anon_sym_short] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_mutable] = ACTIONS(7185), + [anon_sym_constinit] = ACTIONS(7185), + [anon_sym_consteval] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [sym_primitive_type] = ACTIONS(7185), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7185), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7185), + [anon_sym_not_eq] = ACTIONS(7185), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7185), + [anon_sym_override] = ACTIONS(7185), + [anon_sym_requires] = ACTIONS(7185), + [anon_sym_COLON_RBRACK] = ACTIONS(7183), + }, + [STATE(2875)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_RPAREN] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7355), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_STAR_EQ] = ACTIONS(7357), + [anon_sym_SLASH_EQ] = ACTIONS(7357), + [anon_sym_PERCENT_EQ] = ACTIONS(7357), + [anon_sym_PLUS_EQ] = ACTIONS(7357), + [anon_sym_DASH_EQ] = ACTIONS(7357), + [anon_sym_LT_LT_EQ] = ACTIONS(7357), + [anon_sym_GT_GT_EQ] = ACTIONS(7357), + [anon_sym_AMP_EQ] = ACTIONS(7357), + [anon_sym_CARET_EQ] = ACTIONS(7357), + [anon_sym_PIPE_EQ] = ACTIONS(7357), + [anon_sym_and_eq] = ACTIONS(7357), + [anon_sym_or_eq] = ACTIONS(7357), + [anon_sym_xor_eq] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), + [anon_sym_DASH_GT_STAR] = ACTIONS(7357), + }, + [STATE(2876)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(2877)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7361), + [anon_sym_volatile] = ACTIONS(7361), + [anon_sym_restrict] = ACTIONS(7361), + [anon_sym___restrict__] = ACTIONS(7361), + [anon_sym__Atomic] = ACTIONS(7361), + [anon_sym__Noreturn] = ACTIONS(7361), + [anon_sym_noreturn] = ACTIONS(7361), + [anon_sym__Nonnull] = ACTIONS(7361), + [anon_sym_mutable] = ACTIONS(7361), + [anon_sym_constinit] = ACTIONS(7361), + [anon_sym_consteval] = ACTIONS(7361), + [anon_sym_alignas] = ACTIONS(7361), + [anon_sym__Alignas] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7361), + [anon_sym_or_eq] = ACTIONS(7361), + [anon_sym_xor_eq] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7361), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7361), + [anon_sym_not_eq] = ACTIONS(7361), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7361), + [anon_sym_override] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7361), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + }, + [STATE(2878)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(2879)] = { + [sym_template_argument_list] = STATE(2992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6210), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(8569), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6210), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6203), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6203), + [anon_sym_not_eq] = ACTIONS(6203), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_GT2] = ACTIONS(6205), + }, + [STATE(2880)] = { + [sym_template_argument_list] = STATE(3024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6212), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8572), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6210), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_GT2] = ACTIONS(6205), + }, + [STATE(2881)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4249), + [sym__function_postfix] = STATE(5002), + [sym_trailing_return_type] = STATE(4327), + [sym_requires_clause] = STATE(5002), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_RBRACK] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8576), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2882)] = { + [sym_identifier] = ACTIONS(8579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8581), + [anon_sym_COMMA] = ACTIONS(8581), + [anon_sym_RPAREN] = ACTIONS(8581), + [aux_sym_preproc_if_token2] = ACTIONS(8581), + [aux_sym_preproc_else_token1] = ACTIONS(8581), + [aux_sym_preproc_elif_token1] = ACTIONS(8579), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8581), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8581), + [anon_sym_LPAREN2] = ACTIONS(8581), + [anon_sym_DASH] = ACTIONS(8579), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_STAR] = ACTIONS(8579), + [anon_sym_SLASH] = ACTIONS(8579), + [anon_sym_PERCENT] = ACTIONS(8579), + [anon_sym_PIPE_PIPE] = ACTIONS(8581), + [anon_sym_AMP_AMP] = ACTIONS(8581), + [anon_sym_PIPE] = ACTIONS(8579), + [anon_sym_CARET] = ACTIONS(8579), + [anon_sym_AMP] = ACTIONS(8579), + [anon_sym_EQ_EQ] = ACTIONS(8581), + [anon_sym_BANG_EQ] = ACTIONS(8581), + [anon_sym_GT] = ACTIONS(8579), + [anon_sym_GT_EQ] = ACTIONS(8581), + [anon_sym_LT_EQ] = ACTIONS(8579), + [anon_sym_LT] = ACTIONS(8579), + [anon_sym_LT_LT] = ACTIONS(8579), + [anon_sym_GT_GT] = ACTIONS(8579), + [anon_sym_SEMI] = ACTIONS(8581), + [anon_sym___attribute__] = ACTIONS(8579), + [anon_sym___attribute] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8581), + [anon_sym_RBRACE] = ACTIONS(8581), + [anon_sym_LBRACK] = ACTIONS(8579), + [anon_sym_EQ] = ACTIONS(8579), + [anon_sym_QMARK] = ACTIONS(8581), + [anon_sym_STAR_EQ] = ACTIONS(8581), + [anon_sym_SLASH_EQ] = ACTIONS(8581), + [anon_sym_PERCENT_EQ] = ACTIONS(8581), + [anon_sym_PLUS_EQ] = ACTIONS(8581), + [anon_sym_DASH_EQ] = ACTIONS(8581), + [anon_sym_LT_LT_EQ] = ACTIONS(8581), + [anon_sym_GT_GT_EQ] = ACTIONS(8581), + [anon_sym_AMP_EQ] = ACTIONS(8581), + [anon_sym_CARET_EQ] = ACTIONS(8581), + [anon_sym_PIPE_EQ] = ACTIONS(8581), + [anon_sym_and_eq] = ACTIONS(8579), + [anon_sym_or_eq] = ACTIONS(8579), + [anon_sym_xor_eq] = ACTIONS(8579), + [anon_sym_LT_EQ_GT] = ACTIONS(8581), + [anon_sym_or] = ACTIONS(8579), + [anon_sym_and] = ACTIONS(8579), + [anon_sym_bitor] = ACTIONS(8579), + [anon_sym_xor] = ACTIONS(8579), + [anon_sym_bitand] = ACTIONS(8579), + [anon_sym_not_eq] = ACTIONS(8579), + [anon_sym_DASH_DASH] = ACTIONS(8581), + [anon_sym_PLUS_PLUS] = ACTIONS(8581), + [anon_sym_asm] = ACTIONS(8579), + [anon_sym___asm__] = ACTIONS(8579), + [anon_sym___asm] = ACTIONS(8579), + [anon_sym_DOT] = ACTIONS(8579), + [anon_sym_DOT_STAR] = ACTIONS(8581), + [anon_sym_DASH_GT] = ACTIONS(8581), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8579), + [anon_sym_override] = ACTIONS(8579), + [anon_sym_requires] = ACTIONS(8579), + [anon_sym_COLON_RBRACK] = ACTIONS(8581), + }, + [STATE(2883)] = { + [sym_identifier] = ACTIONS(8583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8585), + [anon_sym_COMMA] = ACTIONS(8585), + [anon_sym_RPAREN] = ACTIONS(8585), + [aux_sym_preproc_if_token2] = ACTIONS(8585), + [aux_sym_preproc_else_token1] = ACTIONS(8585), + [aux_sym_preproc_elif_token1] = ACTIONS(8583), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8585), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(8587), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8583), + [anon_sym_STAR] = ACTIONS(8583), + [anon_sym_SLASH] = ACTIONS(8583), + [anon_sym_PERCENT] = ACTIONS(8583), + [anon_sym_PIPE_PIPE] = ACTIONS(8585), + [anon_sym_AMP_AMP] = ACTIONS(8585), + [anon_sym_PIPE] = ACTIONS(8583), + [anon_sym_CARET] = ACTIONS(8583), + [anon_sym_AMP] = ACTIONS(8583), + [anon_sym_EQ_EQ] = ACTIONS(8585), + [anon_sym_BANG_EQ] = ACTIONS(8585), + [anon_sym_GT] = ACTIONS(8583), + [anon_sym_GT_EQ] = ACTIONS(8585), + [anon_sym_LT_EQ] = ACTIONS(8583), + [anon_sym_LT] = ACTIONS(8583), + [anon_sym_LT_LT] = ACTIONS(8583), + [anon_sym_GT_GT] = ACTIONS(8583), + [anon_sym_SEMI] = ACTIONS(8585), + [anon_sym___attribute__] = ACTIONS(8583), + [anon_sym___attribute] = ACTIONS(8583), + [anon_sym_COLON] = ACTIONS(8583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8585), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8585), + [anon_sym_RBRACE] = ACTIONS(8585), + [anon_sym_LBRACK] = ACTIONS(8583), + [anon_sym_EQ] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [anon_sym_STAR_EQ] = ACTIONS(8585), + [anon_sym_SLASH_EQ] = ACTIONS(8585), + [anon_sym_PERCENT_EQ] = ACTIONS(8585), + [anon_sym_PLUS_EQ] = ACTIONS(8585), + [anon_sym_DASH_EQ] = ACTIONS(8585), + [anon_sym_LT_LT_EQ] = ACTIONS(8585), + [anon_sym_GT_GT_EQ] = ACTIONS(8585), + [anon_sym_AMP_EQ] = ACTIONS(8585), + [anon_sym_CARET_EQ] = ACTIONS(8585), + [anon_sym_PIPE_EQ] = ACTIONS(8585), + [anon_sym_and_eq] = ACTIONS(8583), + [anon_sym_or_eq] = ACTIONS(8583), + [anon_sym_xor_eq] = ACTIONS(8583), + [anon_sym_LT_EQ_GT] = ACTIONS(8585), + [anon_sym_or] = ACTIONS(8583), + [anon_sym_and] = ACTIONS(8583), + [anon_sym_bitor] = ACTIONS(8583), + [anon_sym_xor] = ACTIONS(8583), + [anon_sym_bitand] = ACTIONS(8583), + [anon_sym_not_eq] = ACTIONS(8583), + [anon_sym_DASH_DASH] = ACTIONS(8585), + [anon_sym_PLUS_PLUS] = ACTIONS(8585), + [anon_sym_asm] = ACTIONS(8583), + [anon_sym___asm__] = ACTIONS(8583), + [anon_sym___asm] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_DOT_STAR] = ACTIONS(8585), + [anon_sym_DASH_GT] = ACTIONS(8585), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8583), + [anon_sym_override] = ACTIONS(8583), + [anon_sym_requires] = ACTIONS(8583), + [anon_sym_COLON_RBRACK] = ACTIONS(8585), + }, + [STATE(2884)] = { + [sym_template_argument_list] = STATE(3016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6212), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8572), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6205), + [anon_sym_SLASH_EQ] = ACTIONS(6205), + [anon_sym_PERCENT_EQ] = ACTIONS(6205), + [anon_sym_PLUS_EQ] = ACTIONS(6205), + [anon_sym_DASH_EQ] = ACTIONS(6205), + [anon_sym_LT_LT_EQ] = ACTIONS(6205), + [anon_sym_GT_GT_EQ] = ACTIONS(6212), + [anon_sym_AMP_EQ] = ACTIONS(6205), + [anon_sym_CARET_EQ] = ACTIONS(6205), + [anon_sym_PIPE_EQ] = ACTIONS(6205), + [anon_sym_and_eq] = ACTIONS(6205), + [anon_sym_or_eq] = ACTIONS(6205), + [anon_sym_xor_eq] = ACTIONS(6205), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_GT2] = ACTIONS(6205), + }, + [STATE(2885)] = { + [sym_identifier] = ACTIONS(7107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_RPAREN] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7109), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7109), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7109), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7109), + [anon_sym_GT_GT] = ACTIONS(7109), + [anon_sym_SEMI] = ACTIONS(7109), + [anon_sym___extension__] = ACTIONS(7107), + [anon_sym___attribute__] = ACTIONS(7107), + [anon_sym___attribute] = ACTIONS(7107), + [anon_sym_COLON] = ACTIONS(7107), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7109), + [anon_sym___based] = ACTIONS(7107), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_RBRACE] = ACTIONS(7109), + [anon_sym_signed] = ACTIONS(7107), + [anon_sym_unsigned] = ACTIONS(7107), + [anon_sym_long] = ACTIONS(7107), + [anon_sym_short] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7107), + [anon_sym_volatile] = ACTIONS(7107), + [anon_sym_restrict] = ACTIONS(7107), + [anon_sym___restrict__] = ACTIONS(7107), + [anon_sym__Atomic] = ACTIONS(7107), + [anon_sym__Noreturn] = ACTIONS(7107), + [anon_sym_noreturn] = ACTIONS(7107), + [anon_sym__Nonnull] = ACTIONS(7107), + [anon_sym_mutable] = ACTIONS(7107), + [anon_sym_constinit] = ACTIONS(7107), + [anon_sym_consteval] = ACTIONS(7107), + [anon_sym_alignas] = ACTIONS(7107), + [anon_sym__Alignas] = ACTIONS(7107), + [sym_primitive_type] = ACTIONS(7107), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7107), + [anon_sym_and] = ACTIONS(7107), + [anon_sym_bitor] = ACTIONS(7107), + [anon_sym_xor] = ACTIONS(7107), + [anon_sym_bitand] = ACTIONS(7107), + [anon_sym_not_eq] = ACTIONS(7107), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7109), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7107), + [anon_sym_override] = ACTIONS(7107), + [anon_sym_requires] = ACTIONS(7107), + [anon_sym_COLON_RBRACK] = ACTIONS(7109), + }, + [STATE(2886)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4192), + [sym_ms_pointer_modifier] = STATE(2962), + [sym__abstract_declarator] = STATE(6651), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3896), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2144), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3896), + [aux_sym_pointer_declarator_repeat1] = STATE(2962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8589), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8591), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8593), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6457), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6457), + [anon_sym___extension__] = ACTIONS(8232), + [sym_ms_restrict_modifier] = ACTIONS(8234), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), + [sym_ms_signed_ptr_modifier] = ACTIONS(8236), + [anon_sym__unaligned] = ACTIONS(8238), + [anon_sym___unaligned] = ACTIONS(8238), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6459), + }, + [STATE(2887)] = { + [sym_decltype_auto] = STATE(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8495), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2888)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4242), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4424), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2889)] = { + [sym_identifier] = ACTIONS(8595), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_TILDE] = ACTIONS(8597), + [anon_sym_STAR] = ACTIONS(8597), + [anon_sym_PIPE_PIPE] = ACTIONS(8597), + [anon_sym_AMP_AMP] = ACTIONS(8597), + [anon_sym_AMP] = ACTIONS(8595), + [anon_sym___extension__] = ACTIONS(8595), + [anon_sym_virtual] = ACTIONS(8595), + [anon_sym_extern] = ACTIONS(8595), + [anon_sym___attribute__] = ACTIONS(8595), + [anon_sym___attribute] = ACTIONS(8595), + [anon_sym_using] = ACTIONS(8595), + [anon_sym_COLON_COLON] = ACTIONS(8597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8595), + [anon_sym___based] = ACTIONS(8595), + [anon_sym___cdecl] = ACTIONS(8595), + [anon_sym___clrcall] = ACTIONS(8595), + [anon_sym___stdcall] = ACTIONS(8595), + [anon_sym___fastcall] = ACTIONS(8595), + [anon_sym___thiscall] = ACTIONS(8595), + [anon_sym___vectorcall] = ACTIONS(8595), + [anon_sym_LBRACE] = ACTIONS(8597), + [anon_sym_signed] = ACTIONS(8595), + [anon_sym_unsigned] = ACTIONS(8595), + [anon_sym_long] = ACTIONS(8595), + [anon_sym_short] = ACTIONS(8595), + [anon_sym_LBRACK] = ACTIONS(8595), + [anon_sym_static] = ACTIONS(8595), + [anon_sym_register] = ACTIONS(8595), + [anon_sym_inline] = ACTIONS(8595), + [anon_sym___inline] = ACTIONS(8595), + [anon_sym___inline__] = ACTIONS(8595), + [anon_sym___forceinline] = ACTIONS(8595), + [anon_sym_thread_local] = ACTIONS(8595), + [anon_sym___thread] = ACTIONS(8595), + [anon_sym_const] = ACTIONS(8595), + [anon_sym_constexpr] = ACTIONS(8595), + [anon_sym_volatile] = ACTIONS(8595), + [anon_sym_restrict] = ACTIONS(8595), + [anon_sym___restrict__] = ACTIONS(8595), + [anon_sym__Atomic] = ACTIONS(8595), + [anon_sym__Noreturn] = ACTIONS(8595), + [anon_sym_noreturn] = ACTIONS(8595), + [anon_sym__Nonnull] = ACTIONS(8595), + [anon_sym_mutable] = ACTIONS(8595), + [anon_sym_constinit] = ACTIONS(8595), + [anon_sym_consteval] = ACTIONS(8595), + [anon_sym_alignas] = ACTIONS(8595), + [anon_sym__Alignas] = ACTIONS(8595), + [sym_primitive_type] = ACTIONS(8595), + [anon_sym_enum] = ACTIONS(8595), + [anon_sym_class] = ACTIONS(8595), + [anon_sym_struct] = ACTIONS(8595), + [anon_sym_union] = ACTIONS(8595), + [anon_sym_or] = ACTIONS(8595), + [anon_sym_and] = ACTIONS(8595), + [anon_sym_typename] = ACTIONS(8595), + [anon_sym_DASH_GT] = ACTIONS(8597), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8595), + [anon_sym_decltype] = ACTIONS(8595), + [anon_sym_explicit] = ACTIONS(8595), + [anon_sym_template] = ACTIONS(8595), + [anon_sym_operator] = ACTIONS(8595), + [anon_sym_friend] = ACTIONS(8595), + [anon_sym_noexcept] = ACTIONS(8595), + [anon_sym_throw] = ACTIONS(8595), + [anon_sym_concept] = ACTIONS(8595), + [anon_sym_LBRACK_COLON] = ACTIONS(8597), + }, + [STATE(2890)] = { + [sym_identifier] = ACTIONS(8599), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_TILDE] = ACTIONS(8601), + [anon_sym_STAR] = ACTIONS(8601), + [anon_sym_PIPE_PIPE] = ACTIONS(8601), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_AMP] = ACTIONS(8599), + [anon_sym___extension__] = ACTIONS(8599), + [anon_sym_virtual] = ACTIONS(8599), + [anon_sym_extern] = ACTIONS(8599), + [anon_sym___attribute__] = ACTIONS(8599), + [anon_sym___attribute] = ACTIONS(8599), + [anon_sym_using] = ACTIONS(8599), + [anon_sym_COLON_COLON] = ACTIONS(8601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8601), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(8599), + [anon_sym___cdecl] = ACTIONS(8599), + [anon_sym___clrcall] = ACTIONS(8599), + [anon_sym___stdcall] = ACTIONS(8599), + [anon_sym___fastcall] = ACTIONS(8599), + [anon_sym___thiscall] = ACTIONS(8599), + [anon_sym___vectorcall] = ACTIONS(8599), + [anon_sym_LBRACE] = ACTIONS(8601), + [anon_sym_signed] = ACTIONS(8599), + [anon_sym_unsigned] = ACTIONS(8599), + [anon_sym_long] = ACTIONS(8599), + [anon_sym_short] = ACTIONS(8599), + [anon_sym_LBRACK] = ACTIONS(8599), + [anon_sym_static] = ACTIONS(8599), + [anon_sym_register] = ACTIONS(8599), + [anon_sym_inline] = ACTIONS(8599), + [anon_sym___inline] = ACTIONS(8599), + [anon_sym___inline__] = ACTIONS(8599), + [anon_sym___forceinline] = ACTIONS(8599), + [anon_sym_thread_local] = ACTIONS(8599), + [anon_sym___thread] = ACTIONS(8599), + [anon_sym_const] = ACTIONS(8599), + [anon_sym_constexpr] = ACTIONS(8599), + [anon_sym_volatile] = ACTIONS(8599), + [anon_sym_restrict] = ACTIONS(8599), + [anon_sym___restrict__] = ACTIONS(8599), + [anon_sym__Atomic] = ACTIONS(8599), + [anon_sym__Noreturn] = ACTIONS(8599), + [anon_sym_noreturn] = ACTIONS(8599), + [anon_sym__Nonnull] = ACTIONS(8599), + [anon_sym_mutable] = ACTIONS(8599), + [anon_sym_constinit] = ACTIONS(8599), + [anon_sym_consteval] = ACTIONS(8599), + [anon_sym_alignas] = ACTIONS(8599), + [anon_sym__Alignas] = ACTIONS(8599), + [sym_primitive_type] = ACTIONS(8599), + [anon_sym_enum] = ACTIONS(8599), + [anon_sym_class] = ACTIONS(8599), + [anon_sym_struct] = ACTIONS(8599), + [anon_sym_union] = ACTIONS(8599), + [anon_sym_or] = ACTIONS(8599), + [anon_sym_and] = ACTIONS(8599), + [anon_sym_typename] = ACTIONS(8599), + [anon_sym_DASH_GT] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8599), + [anon_sym_decltype] = ACTIONS(8599), + [anon_sym_explicit] = ACTIONS(8599), + [anon_sym_template] = ACTIONS(8599), + [anon_sym_operator] = ACTIONS(8599), + [anon_sym_friend] = ACTIONS(8599), + [anon_sym_noexcept] = ACTIONS(8599), + [anon_sym_throw] = ACTIONS(8599), + [anon_sym_concept] = ACTIONS(8599), + [anon_sym_LBRACK_COLON] = ACTIONS(8601), + }, + [STATE(2891)] = { + [sym_identifier] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym___cdecl] = ACTIONS(2803), + [anon_sym___clrcall] = ACTIONS(2803), + [anon_sym___stdcall] = ACTIONS(2803), + [anon_sym___fastcall] = ACTIONS(2803), + [anon_sym___thiscall] = ACTIONS(2803), + [anon_sym___vectorcall] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2803), + [anon_sym_and] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [anon_sym_DASH_GT] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_noexcept] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_concept] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(2892)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [sym_identifier] = ACTIONS(5260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [aux_sym_preproc_if_token2] = ACTIONS(5253), + [aux_sym_preproc_else_token1] = ACTIONS(5253), + [aux_sym_preproc_elif_token1] = ACTIONS(5260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8603), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6445), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6447), + [anon_sym_SLASH_EQ] = ACTIONS(6447), + [anon_sym_PERCENT_EQ] = ACTIONS(6447), + [anon_sym_PLUS_EQ] = ACTIONS(6447), + [anon_sym_DASH_EQ] = ACTIONS(6447), + [anon_sym_LT_LT_EQ] = ACTIONS(6447), + [anon_sym_GT_GT_EQ] = ACTIONS(6447), + [anon_sym_AMP_EQ] = ACTIONS(6447), + [anon_sym_CARET_EQ] = ACTIONS(6447), + [anon_sym_PIPE_EQ] = ACTIONS(6447), + [anon_sym_and_eq] = ACTIONS(6445), + [anon_sym_or_eq] = ACTIONS(6445), + [anon_sym_xor_eq] = ACTIONS(6445), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(2893)] = { + [sym_identifier] = ACTIONS(8606), + [anon_sym_LPAREN2] = ACTIONS(8608), + [anon_sym_TILDE] = ACTIONS(8608), + [anon_sym_STAR] = ACTIONS(8608), + [anon_sym_PIPE_PIPE] = ACTIONS(8608), + [anon_sym_AMP_AMP] = ACTIONS(8608), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym___extension__] = ACTIONS(8606), + [anon_sym_virtual] = ACTIONS(8606), + [anon_sym_extern] = ACTIONS(8606), + [anon_sym___attribute__] = ACTIONS(8606), + [anon_sym___attribute] = ACTIONS(8606), + [anon_sym_using] = ACTIONS(8606), + [anon_sym_COLON_COLON] = ACTIONS(8608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8608), + [anon_sym___declspec] = ACTIONS(8606), + [anon_sym___based] = ACTIONS(8606), + [anon_sym___cdecl] = ACTIONS(8606), + [anon_sym___clrcall] = ACTIONS(8606), + [anon_sym___stdcall] = ACTIONS(8606), + [anon_sym___fastcall] = ACTIONS(8606), + [anon_sym___thiscall] = ACTIONS(8606), + [anon_sym___vectorcall] = ACTIONS(8606), + [anon_sym_LBRACE] = ACTIONS(8608), + [anon_sym_signed] = ACTIONS(8606), + [anon_sym_unsigned] = ACTIONS(8606), + [anon_sym_long] = ACTIONS(8606), + [anon_sym_short] = ACTIONS(8606), + [anon_sym_LBRACK] = ACTIONS(8606), + [anon_sym_static] = ACTIONS(8606), + [anon_sym_register] = ACTIONS(8606), + [anon_sym_inline] = ACTIONS(8606), + [anon_sym___inline] = ACTIONS(8606), + [anon_sym___inline__] = ACTIONS(8606), + [anon_sym___forceinline] = ACTIONS(8606), + [anon_sym_thread_local] = ACTIONS(8606), + [anon_sym___thread] = ACTIONS(8606), + [anon_sym_const] = ACTIONS(8606), + [anon_sym_constexpr] = ACTIONS(8606), + [anon_sym_volatile] = ACTIONS(8606), + [anon_sym_restrict] = ACTIONS(8606), + [anon_sym___restrict__] = ACTIONS(8606), + [anon_sym__Atomic] = ACTIONS(8606), + [anon_sym__Noreturn] = ACTIONS(8606), + [anon_sym_noreturn] = ACTIONS(8606), + [anon_sym__Nonnull] = ACTIONS(8606), + [anon_sym_mutable] = ACTIONS(8606), + [anon_sym_constinit] = ACTIONS(8606), + [anon_sym_consteval] = ACTIONS(8606), + [anon_sym_alignas] = ACTIONS(8606), + [anon_sym__Alignas] = ACTIONS(8606), + [sym_primitive_type] = ACTIONS(8606), + [anon_sym_enum] = ACTIONS(8606), + [anon_sym_class] = ACTIONS(8606), + [anon_sym_struct] = ACTIONS(8606), + [anon_sym_union] = ACTIONS(8606), + [anon_sym_or] = ACTIONS(8606), + [anon_sym_and] = ACTIONS(8606), + [anon_sym_typename] = ACTIONS(8606), + [anon_sym_DASH_GT] = ACTIONS(8608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8606), + [anon_sym_decltype] = ACTIONS(8606), + [anon_sym_explicit] = ACTIONS(8606), + [anon_sym_template] = ACTIONS(8606), + [anon_sym_operator] = ACTIONS(8606), + [anon_sym_friend] = ACTIONS(8606), + [anon_sym_noexcept] = ACTIONS(8606), + [anon_sym_throw] = ACTIONS(8606), + [anon_sym_concept] = ACTIONS(8606), + [anon_sym_LBRACK_COLON] = ACTIONS(8608), + }, + [STATE(2894)] = { + [sym_attribute_specifier] = STATE(3471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), + [anon_sym_COMMA] = ACTIONS(7093), + [anon_sym_RPAREN] = ACTIONS(7093), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7091), + [anon_sym_SLASH] = ACTIONS(7091), + [anon_sym_PERCENT] = ACTIONS(7091), + [anon_sym_PIPE_PIPE] = ACTIONS(7093), + [anon_sym_AMP_AMP] = ACTIONS(7093), + [anon_sym_PIPE] = ACTIONS(7091), + [anon_sym_CARET] = ACTIONS(7091), + [anon_sym_AMP] = ACTIONS(7091), + [anon_sym_EQ_EQ] = ACTIONS(7093), + [anon_sym_BANG_EQ] = ACTIONS(7093), + [anon_sym_GT] = ACTIONS(7091), + [anon_sym_GT_EQ] = ACTIONS(7093), + [anon_sym_LT_EQ] = ACTIONS(7091), + [anon_sym_LT] = ACTIONS(7091), + [anon_sym_LT_LT] = ACTIONS(7091), + [anon_sym_GT_GT] = ACTIONS(7091), + [anon_sym___extension__] = ACTIONS(7093), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_EQ] = ACTIONS(7091), + [anon_sym_const] = ACTIONS(7091), + [anon_sym_constexpr] = ACTIONS(7093), + [anon_sym_volatile] = ACTIONS(7093), + [anon_sym_restrict] = ACTIONS(7093), + [anon_sym___restrict__] = ACTIONS(7093), + [anon_sym__Atomic] = ACTIONS(7093), + [anon_sym__Noreturn] = ACTIONS(7093), + [anon_sym_noreturn] = ACTIONS(7093), + [anon_sym__Nonnull] = ACTIONS(7093), + [anon_sym_mutable] = ACTIONS(7093), + [anon_sym_constinit] = ACTIONS(7093), + [anon_sym_consteval] = ACTIONS(7093), + [anon_sym_alignas] = ACTIONS(7093), + [anon_sym__Alignas] = ACTIONS(7093), + [anon_sym_QMARK] = ACTIONS(7093), + [anon_sym_STAR_EQ] = ACTIONS(7093), + [anon_sym_SLASH_EQ] = ACTIONS(7093), + [anon_sym_PERCENT_EQ] = ACTIONS(7093), + [anon_sym_PLUS_EQ] = ACTIONS(7093), + [anon_sym_DASH_EQ] = ACTIONS(7093), + [anon_sym_LT_LT_EQ] = ACTIONS(7093), + [anon_sym_GT_GT_EQ] = ACTIONS(7093), + [anon_sym_AMP_EQ] = ACTIONS(7093), + [anon_sym_CARET_EQ] = ACTIONS(7093), + [anon_sym_PIPE_EQ] = ACTIONS(7093), + [anon_sym_LT_EQ_GT] = ACTIONS(7093), + [anon_sym_or] = ACTIONS(7093), + [anon_sym_and] = ACTIONS(7093), + [anon_sym_bitor] = ACTIONS(7093), + [anon_sym_xor] = ACTIONS(7093), + [anon_sym_bitand] = ACTIONS(7093), + [anon_sym_not_eq] = ACTIONS(7093), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DOT] = ACTIONS(7091), + [anon_sym_DOT_STAR] = ACTIONS(7093), + [anon_sym_DASH_GT] = ACTIONS(7091), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7093), + [anon_sym_override] = ACTIONS(7093), + [anon_sym_requires] = ACTIONS(7093), + [anon_sym_DASH_GT_STAR] = ACTIONS(7093), + }, + [STATE(2895)] = { + [sym_identifier] = ACTIONS(8610), + [anon_sym_LPAREN2] = ACTIONS(8612), + [anon_sym_TILDE] = ACTIONS(8612), + [anon_sym_STAR] = ACTIONS(8612), + [anon_sym_PIPE_PIPE] = ACTIONS(8612), + [anon_sym_AMP_AMP] = ACTIONS(8612), + [anon_sym_AMP] = ACTIONS(8610), + [anon_sym___extension__] = ACTIONS(8610), + [anon_sym_virtual] = ACTIONS(8610), + [anon_sym_extern] = ACTIONS(8610), + [anon_sym___attribute__] = ACTIONS(8610), + [anon_sym___attribute] = ACTIONS(8610), + [anon_sym_using] = ACTIONS(8610), + [anon_sym_COLON_COLON] = ACTIONS(8612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8612), + [anon_sym___declspec] = ACTIONS(8610), + [anon_sym___based] = ACTIONS(8610), + [anon_sym___cdecl] = ACTIONS(8610), + [anon_sym___clrcall] = ACTIONS(8610), + [anon_sym___stdcall] = ACTIONS(8610), + [anon_sym___fastcall] = ACTIONS(8610), + [anon_sym___thiscall] = ACTIONS(8610), + [anon_sym___vectorcall] = ACTIONS(8610), + [anon_sym_LBRACE] = ACTIONS(8612), + [anon_sym_signed] = ACTIONS(8610), + [anon_sym_unsigned] = ACTIONS(8610), + [anon_sym_long] = ACTIONS(8610), + [anon_sym_short] = ACTIONS(8610), + [anon_sym_LBRACK] = ACTIONS(8610), + [anon_sym_static] = ACTIONS(8610), + [anon_sym_register] = ACTIONS(8610), + [anon_sym_inline] = ACTIONS(8610), + [anon_sym___inline] = ACTIONS(8610), + [anon_sym___inline__] = ACTIONS(8610), + [anon_sym___forceinline] = ACTIONS(8610), + [anon_sym_thread_local] = ACTIONS(8610), + [anon_sym___thread] = ACTIONS(8610), + [anon_sym_const] = ACTIONS(8610), + [anon_sym_constexpr] = ACTIONS(8610), + [anon_sym_volatile] = ACTIONS(8610), + [anon_sym_restrict] = ACTIONS(8610), + [anon_sym___restrict__] = ACTIONS(8610), + [anon_sym__Atomic] = ACTIONS(8610), + [anon_sym__Noreturn] = ACTIONS(8610), + [anon_sym_noreturn] = ACTIONS(8610), + [anon_sym__Nonnull] = ACTIONS(8610), + [anon_sym_mutable] = ACTIONS(8610), + [anon_sym_constinit] = ACTIONS(8610), + [anon_sym_consteval] = ACTIONS(8610), + [anon_sym_alignas] = ACTIONS(8610), + [anon_sym__Alignas] = ACTIONS(8610), + [sym_primitive_type] = ACTIONS(8610), + [anon_sym_enum] = ACTIONS(8610), + [anon_sym_class] = ACTIONS(8610), + [anon_sym_struct] = ACTIONS(8610), + [anon_sym_union] = ACTIONS(8610), + [anon_sym_or] = ACTIONS(8610), + [anon_sym_and] = ACTIONS(8610), + [anon_sym_typename] = ACTIONS(8610), + [anon_sym_DASH_GT] = ACTIONS(8612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8610), + [anon_sym_decltype] = ACTIONS(8610), + [anon_sym_explicit] = ACTIONS(8610), + [anon_sym_template] = ACTIONS(8610), + [anon_sym_operator] = ACTIONS(8610), + [anon_sym_friend] = ACTIONS(8610), + [anon_sym_noexcept] = ACTIONS(8610), + [anon_sym_throw] = ACTIONS(8610), + [anon_sym_concept] = ACTIONS(8610), + [anon_sym_LBRACK_COLON] = ACTIONS(8612), + }, + [STATE(2896)] = { + [sym_attribute_specifier] = STATE(3474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7095), + [anon_sym_PLUS] = ACTIONS(7095), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7095), + [anon_sym_PERCENT] = ACTIONS(7095), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7095), + [anon_sym_CARET] = ACTIONS(7095), + [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7095), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7095), + [anon_sym_LT] = ACTIONS(7095), + [anon_sym_LT_LT] = ACTIONS(7095), + [anon_sym_GT_GT] = ACTIONS(7095), + [anon_sym___extension__] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7095), + [anon_sym_const] = ACTIONS(7095), + [anon_sym_constexpr] = ACTIONS(7097), + [anon_sym_volatile] = ACTIONS(7097), + [anon_sym_restrict] = ACTIONS(7097), + [anon_sym___restrict__] = ACTIONS(7097), + [anon_sym__Atomic] = ACTIONS(7097), + [anon_sym__Noreturn] = ACTIONS(7097), + [anon_sym_noreturn] = ACTIONS(7097), + [anon_sym__Nonnull] = ACTIONS(7097), + [anon_sym_mutable] = ACTIONS(7097), + [anon_sym_constinit] = ACTIONS(7097), + [anon_sym_consteval] = ACTIONS(7097), + [anon_sym_alignas] = ACTIONS(7097), + [anon_sym__Alignas] = ACTIONS(7097), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7097), + [anon_sym_and] = ACTIONS(7097), + [anon_sym_bitor] = ACTIONS(7097), + [anon_sym_xor] = ACTIONS(7097), + [anon_sym_bitand] = ACTIONS(7097), + [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7095), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7097), + [anon_sym_override] = ACTIONS(7097), + [anon_sym_requires] = ACTIONS(7097), + [anon_sym_DASH_GT_STAR] = ACTIONS(7097), + }, + [STATE(2897)] = { + [sym_identifier] = ACTIONS(8614), + [anon_sym_LPAREN2] = ACTIONS(8616), + [anon_sym_TILDE] = ACTIONS(8616), + [anon_sym_STAR] = ACTIONS(8616), + [anon_sym_PIPE_PIPE] = ACTIONS(8616), + [anon_sym_AMP_AMP] = ACTIONS(8616), + [anon_sym_AMP] = ACTIONS(8614), + [anon_sym___extension__] = ACTIONS(8614), + [anon_sym_virtual] = ACTIONS(8614), + [anon_sym_extern] = ACTIONS(8614), + [anon_sym___attribute__] = ACTIONS(8614), + [anon_sym___attribute] = ACTIONS(8614), + [anon_sym_using] = ACTIONS(8614), + [anon_sym_COLON_COLON] = ACTIONS(8616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8616), + [anon_sym___declspec] = ACTIONS(8614), + [anon_sym___based] = ACTIONS(8614), + [anon_sym___cdecl] = ACTIONS(8614), + [anon_sym___clrcall] = ACTIONS(8614), + [anon_sym___stdcall] = ACTIONS(8614), + [anon_sym___fastcall] = ACTIONS(8614), + [anon_sym___thiscall] = ACTIONS(8614), + [anon_sym___vectorcall] = ACTIONS(8614), + [anon_sym_LBRACE] = ACTIONS(8616), + [anon_sym_signed] = ACTIONS(8614), + [anon_sym_unsigned] = ACTIONS(8614), + [anon_sym_long] = ACTIONS(8614), + [anon_sym_short] = ACTIONS(8614), + [anon_sym_LBRACK] = ACTIONS(8614), + [anon_sym_static] = ACTIONS(8614), + [anon_sym_register] = ACTIONS(8614), + [anon_sym_inline] = ACTIONS(8614), + [anon_sym___inline] = ACTIONS(8614), + [anon_sym___inline__] = ACTIONS(8614), + [anon_sym___forceinline] = ACTIONS(8614), + [anon_sym_thread_local] = ACTIONS(8614), + [anon_sym___thread] = ACTIONS(8614), + [anon_sym_const] = ACTIONS(8614), + [anon_sym_constexpr] = ACTIONS(8614), + [anon_sym_volatile] = ACTIONS(8614), + [anon_sym_restrict] = ACTIONS(8614), + [anon_sym___restrict__] = ACTIONS(8614), + [anon_sym__Atomic] = ACTIONS(8614), + [anon_sym__Noreturn] = ACTIONS(8614), + [anon_sym_noreturn] = ACTIONS(8614), + [anon_sym__Nonnull] = ACTIONS(8614), + [anon_sym_mutable] = ACTIONS(8614), + [anon_sym_constinit] = ACTIONS(8614), + [anon_sym_consteval] = ACTIONS(8614), + [anon_sym_alignas] = ACTIONS(8614), + [anon_sym__Alignas] = ACTIONS(8614), + [sym_primitive_type] = ACTIONS(8614), + [anon_sym_enum] = ACTIONS(8614), + [anon_sym_class] = ACTIONS(8614), + [anon_sym_struct] = ACTIONS(8614), + [anon_sym_union] = ACTIONS(8614), + [anon_sym_or] = ACTIONS(8614), + [anon_sym_and] = ACTIONS(8614), + [anon_sym_typename] = ACTIONS(8614), + [anon_sym_DASH_GT] = ACTIONS(8616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8614), + [anon_sym_decltype] = ACTIONS(8614), + [anon_sym_explicit] = ACTIONS(8614), + [anon_sym_template] = ACTIONS(8614), + [anon_sym_operator] = ACTIONS(8614), + [anon_sym_friend] = ACTIONS(8614), + [anon_sym_noexcept] = ACTIONS(8614), + [anon_sym_throw] = ACTIONS(8614), + [anon_sym_concept] = ACTIONS(8614), + [anon_sym_LBRACK_COLON] = ACTIONS(8616), + }, + [STATE(2898)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7107), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7107), + [anon_sym_GT_GT] = ACTIONS(7107), + [anon_sym___extension__] = ACTIONS(7109), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_EQ] = ACTIONS(7107), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7109), + [anon_sym_volatile] = ACTIONS(7109), + [anon_sym_restrict] = ACTIONS(7109), + [anon_sym___restrict__] = ACTIONS(7109), + [anon_sym__Atomic] = ACTIONS(7109), + [anon_sym__Noreturn] = ACTIONS(7109), + [anon_sym_noreturn] = ACTIONS(7109), + [anon_sym__Nonnull] = ACTIONS(7109), + [anon_sym_mutable] = ACTIONS(7109), + [anon_sym_constinit] = ACTIONS(7109), + [anon_sym_consteval] = ACTIONS(7109), + [anon_sym_alignas] = ACTIONS(7109), + [anon_sym__Alignas] = ACTIONS(7109), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_STAR_EQ] = ACTIONS(7109), + [anon_sym_SLASH_EQ] = ACTIONS(7109), + [anon_sym_PERCENT_EQ] = ACTIONS(7109), + [anon_sym_PLUS_EQ] = ACTIONS(7109), + [anon_sym_DASH_EQ] = ACTIONS(7109), + [anon_sym_LT_LT_EQ] = ACTIONS(7109), + [anon_sym_GT_GT_EQ] = ACTIONS(7107), + [anon_sym_AMP_EQ] = ACTIONS(7109), + [anon_sym_CARET_EQ] = ACTIONS(7109), + [anon_sym_PIPE_EQ] = ACTIONS(7109), + [anon_sym_and_eq] = ACTIONS(7109), + [anon_sym_or_eq] = ACTIONS(7109), + [anon_sym_xor_eq] = ACTIONS(7109), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7107), + [anon_sym_and] = ACTIONS(7107), + [anon_sym_bitor] = ACTIONS(7109), + [anon_sym_xor] = ACTIONS(7107), + [anon_sym_bitand] = ACTIONS(7109), + [anon_sym_not_eq] = ACTIONS(7109), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7109), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7109), + [anon_sym_override] = ACTIONS(7109), + [anon_sym_GT2] = ACTIONS(7109), + [anon_sym_requires] = ACTIONS(7109), + }, + [STATE(2899)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7107), + [anon_sym_GT_GT] = ACTIONS(7107), + [anon_sym___extension__] = ACTIONS(7109), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7109), + [anon_sym_EQ] = ACTIONS(7107), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7109), + [anon_sym_volatile] = ACTIONS(7109), + [anon_sym_restrict] = ACTIONS(7109), + [anon_sym___restrict__] = ACTIONS(7109), + [anon_sym__Atomic] = ACTIONS(7109), + [anon_sym__Noreturn] = ACTIONS(7109), + [anon_sym_noreturn] = ACTIONS(7109), + [anon_sym__Nonnull] = ACTIONS(7109), + [anon_sym_mutable] = ACTIONS(7109), + [anon_sym_constinit] = ACTIONS(7109), + [anon_sym_consteval] = ACTIONS(7109), + [anon_sym_alignas] = ACTIONS(7109), + [anon_sym__Alignas] = ACTIONS(7109), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_STAR_EQ] = ACTIONS(7109), + [anon_sym_SLASH_EQ] = ACTIONS(7109), + [anon_sym_PERCENT_EQ] = ACTIONS(7109), + [anon_sym_PLUS_EQ] = ACTIONS(7109), + [anon_sym_DASH_EQ] = ACTIONS(7109), + [anon_sym_LT_LT_EQ] = ACTIONS(7109), + [anon_sym_GT_GT_EQ] = ACTIONS(7109), + [anon_sym_AMP_EQ] = ACTIONS(7109), + [anon_sym_CARET_EQ] = ACTIONS(7109), + [anon_sym_PIPE_EQ] = ACTIONS(7109), + [anon_sym_and_eq] = ACTIONS(7109), + [anon_sym_or_eq] = ACTIONS(7109), + [anon_sym_xor_eq] = ACTIONS(7109), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7107), + [anon_sym_and] = ACTIONS(7107), + [anon_sym_bitor] = ACTIONS(7109), + [anon_sym_xor] = ACTIONS(7107), + [anon_sym_bitand] = ACTIONS(7109), + [anon_sym_not_eq] = ACTIONS(7109), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7109), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7109), + [anon_sym_override] = ACTIONS(7109), + [anon_sym_requires] = ACTIONS(7109), + }, + [STATE(2900)] = { + [sym_attribute_specifier] = STATE(3475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), + [anon_sym_COMMA] = ACTIONS(7101), + [anon_sym_RPAREN] = ACTIONS(7101), + [anon_sym_LPAREN2] = ACTIONS(7101), + [anon_sym_DASH] = ACTIONS(7099), + [anon_sym_PLUS] = ACTIONS(7099), + [anon_sym_STAR] = ACTIONS(7099), + [anon_sym_SLASH] = ACTIONS(7099), + [anon_sym_PERCENT] = ACTIONS(7099), + [anon_sym_PIPE_PIPE] = ACTIONS(7101), + [anon_sym_AMP_AMP] = ACTIONS(7101), + [anon_sym_PIPE] = ACTIONS(7099), + [anon_sym_CARET] = ACTIONS(7099), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7101), + [anon_sym_BANG_EQ] = ACTIONS(7101), + [anon_sym_GT] = ACTIONS(7099), + [anon_sym_GT_EQ] = ACTIONS(7101), + [anon_sym_LT_EQ] = ACTIONS(7099), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7099), + [anon_sym_GT_GT] = ACTIONS(7099), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7101), + [anon_sym_EQ] = ACTIONS(7099), + [anon_sym_const] = ACTIONS(7099), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7101), + [anon_sym__Alignas] = ACTIONS(7101), + [anon_sym_QMARK] = ACTIONS(7101), + [anon_sym_STAR_EQ] = ACTIONS(7101), + [anon_sym_SLASH_EQ] = ACTIONS(7101), + [anon_sym_PERCENT_EQ] = ACTIONS(7101), + [anon_sym_PLUS_EQ] = ACTIONS(7101), + [anon_sym_DASH_EQ] = ACTIONS(7101), + [anon_sym_LT_LT_EQ] = ACTIONS(7101), + [anon_sym_GT_GT_EQ] = ACTIONS(7101), + [anon_sym_AMP_EQ] = ACTIONS(7101), + [anon_sym_CARET_EQ] = ACTIONS(7101), + [anon_sym_PIPE_EQ] = ACTIONS(7101), + [anon_sym_LT_EQ_GT] = ACTIONS(7101), + [anon_sym_or] = ACTIONS(7101), + [anon_sym_and] = ACTIONS(7101), + [anon_sym_bitor] = ACTIONS(7101), + [anon_sym_xor] = ACTIONS(7101), + [anon_sym_bitand] = ACTIONS(7101), + [anon_sym_not_eq] = ACTIONS(7101), + [anon_sym_DASH_DASH] = ACTIONS(7101), + [anon_sym_PLUS_PLUS] = ACTIONS(7101), + [anon_sym_DOT] = ACTIONS(7099), + [anon_sym_DOT_STAR] = ACTIONS(7101), + [anon_sym_DASH_GT] = ACTIONS(7099), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7101), + [anon_sym_override] = ACTIONS(7101), + [anon_sym_requires] = ACTIONS(7101), + [anon_sym_DASH_GT_STAR] = ACTIONS(7101), + }, + [STATE(2901)] = { + [sym_attribute_specifier] = STATE(3476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), + [anon_sym_COMMA] = ACTIONS(7105), + [anon_sym_RPAREN] = ACTIONS(7105), + [anon_sym_LPAREN2] = ACTIONS(7105), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7103), + [anon_sym_SLASH] = ACTIONS(7103), + [anon_sym_PERCENT] = ACTIONS(7103), + [anon_sym_PIPE_PIPE] = ACTIONS(7105), + [anon_sym_AMP_AMP] = ACTIONS(7105), + [anon_sym_PIPE] = ACTIONS(7103), + [anon_sym_CARET] = ACTIONS(7103), + [anon_sym_AMP] = ACTIONS(7103), + [anon_sym_EQ_EQ] = ACTIONS(7105), + [anon_sym_BANG_EQ] = ACTIONS(7105), + [anon_sym_GT] = ACTIONS(7103), + [anon_sym_GT_EQ] = ACTIONS(7105), + [anon_sym_LT_EQ] = ACTIONS(7103), + [anon_sym_LT] = ACTIONS(7103), + [anon_sym_LT_LT] = ACTIONS(7103), + [anon_sym_GT_GT] = ACTIONS(7103), + [anon_sym___extension__] = ACTIONS(7105), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_EQ] = ACTIONS(7103), + [anon_sym_const] = ACTIONS(7103), + [anon_sym_constexpr] = ACTIONS(7105), + [anon_sym_volatile] = ACTIONS(7105), + [anon_sym_restrict] = ACTIONS(7105), + [anon_sym___restrict__] = ACTIONS(7105), + [anon_sym__Atomic] = ACTIONS(7105), + [anon_sym__Noreturn] = ACTIONS(7105), + [anon_sym_noreturn] = ACTIONS(7105), + [anon_sym__Nonnull] = ACTIONS(7105), + [anon_sym_mutable] = ACTIONS(7105), + [anon_sym_constinit] = ACTIONS(7105), + [anon_sym_consteval] = ACTIONS(7105), + [anon_sym_alignas] = ACTIONS(7105), + [anon_sym__Alignas] = ACTIONS(7105), + [anon_sym_QMARK] = ACTIONS(7105), + [anon_sym_STAR_EQ] = ACTIONS(7105), + [anon_sym_SLASH_EQ] = ACTIONS(7105), + [anon_sym_PERCENT_EQ] = ACTIONS(7105), + [anon_sym_PLUS_EQ] = ACTIONS(7105), + [anon_sym_DASH_EQ] = ACTIONS(7105), + [anon_sym_LT_LT_EQ] = ACTIONS(7105), + [anon_sym_GT_GT_EQ] = ACTIONS(7105), + [anon_sym_AMP_EQ] = ACTIONS(7105), + [anon_sym_CARET_EQ] = ACTIONS(7105), + [anon_sym_PIPE_EQ] = ACTIONS(7105), + [anon_sym_LT_EQ_GT] = ACTIONS(7105), + [anon_sym_or] = ACTIONS(7105), + [anon_sym_and] = ACTIONS(7105), + [anon_sym_bitor] = ACTIONS(7105), + [anon_sym_xor] = ACTIONS(7105), + [anon_sym_bitand] = ACTIONS(7105), + [anon_sym_not_eq] = ACTIONS(7105), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DOT] = ACTIONS(7103), + [anon_sym_DOT_STAR] = ACTIONS(7105), + [anon_sym_DASH_GT] = ACTIONS(7103), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7105), + [anon_sym_override] = ACTIONS(7105), + [anon_sym_requires] = ACTIONS(7105), + [anon_sym_DASH_GT_STAR] = ACTIONS(7105), + }, + [STATE(2902)] = { + [sym_identifier] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym___cdecl] = ACTIONS(2795), + [anon_sym___clrcall] = ACTIONS(2795), + [anon_sym___stdcall] = ACTIONS(2795), + [anon_sym___fastcall] = ACTIONS(2795), + [anon_sym___thiscall] = ACTIONS(2795), + [anon_sym___vectorcall] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_noexcept] = ACTIONS(2795), + [anon_sym_throw] = ACTIONS(2795), + [anon_sym_concept] = ACTIONS(2795), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + }, + [STATE(2903)] = { + [sym_identifier] = ACTIONS(8618), + [anon_sym_LPAREN2] = ACTIONS(8620), + [anon_sym_TILDE] = ACTIONS(8620), + [anon_sym_STAR] = ACTIONS(8620), + [anon_sym_PIPE_PIPE] = ACTIONS(8620), + [anon_sym_AMP_AMP] = ACTIONS(8620), + [anon_sym_AMP] = ACTIONS(8618), + [anon_sym___extension__] = ACTIONS(8618), + [anon_sym_virtual] = ACTIONS(8618), + [anon_sym_extern] = ACTIONS(8618), + [anon_sym___attribute__] = ACTIONS(8618), + [anon_sym___attribute] = ACTIONS(8618), + [anon_sym_using] = ACTIONS(8618), + [anon_sym_COLON_COLON] = ACTIONS(8620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8620), + [anon_sym___declspec] = ACTIONS(8618), + [anon_sym___based] = ACTIONS(8618), + [anon_sym___cdecl] = ACTIONS(8618), + [anon_sym___clrcall] = ACTIONS(8618), + [anon_sym___stdcall] = ACTIONS(8618), + [anon_sym___fastcall] = ACTIONS(8618), + [anon_sym___thiscall] = ACTIONS(8618), + [anon_sym___vectorcall] = ACTIONS(8618), + [anon_sym_LBRACE] = ACTIONS(8620), + [anon_sym_signed] = ACTIONS(8618), + [anon_sym_unsigned] = ACTIONS(8618), + [anon_sym_long] = ACTIONS(8618), + [anon_sym_short] = ACTIONS(8618), + [anon_sym_LBRACK] = ACTIONS(8618), + [anon_sym_static] = ACTIONS(8618), + [anon_sym_register] = ACTIONS(8618), + [anon_sym_inline] = ACTIONS(8618), + [anon_sym___inline] = ACTIONS(8618), + [anon_sym___inline__] = ACTIONS(8618), + [anon_sym___forceinline] = ACTIONS(8618), + [anon_sym_thread_local] = ACTIONS(8618), + [anon_sym___thread] = ACTIONS(8618), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8618), + [anon_sym_volatile] = ACTIONS(8618), + [anon_sym_restrict] = ACTIONS(8618), + [anon_sym___restrict__] = ACTIONS(8618), + [anon_sym__Atomic] = ACTIONS(8618), + [anon_sym__Noreturn] = ACTIONS(8618), + [anon_sym_noreturn] = ACTIONS(8618), + [anon_sym__Nonnull] = ACTIONS(8618), + [anon_sym_mutable] = ACTIONS(8618), + [anon_sym_constinit] = ACTIONS(8618), + [anon_sym_consteval] = ACTIONS(8618), + [anon_sym_alignas] = ACTIONS(8618), + [anon_sym__Alignas] = ACTIONS(8618), + [sym_primitive_type] = ACTIONS(8618), + [anon_sym_enum] = ACTIONS(8618), + [anon_sym_class] = ACTIONS(8618), + [anon_sym_struct] = ACTIONS(8618), + [anon_sym_union] = ACTIONS(8618), + [anon_sym_or] = ACTIONS(8618), + [anon_sym_and] = ACTIONS(8618), + [anon_sym_typename] = ACTIONS(8618), + [anon_sym_DASH_GT] = ACTIONS(8620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8618), + [anon_sym_decltype] = ACTIONS(8618), + [anon_sym_explicit] = ACTIONS(8618), + [anon_sym_template] = ACTIONS(8618), + [anon_sym_operator] = ACTIONS(8618), + [anon_sym_friend] = ACTIONS(8618), + [anon_sym_noexcept] = ACTIONS(8618), + [anon_sym_throw] = ACTIONS(8618), + [anon_sym_concept] = ACTIONS(8618), + [anon_sym_LBRACK_COLON] = ACTIONS(8620), + }, + [STATE(2904)] = { + [sym__abstract_declarator] = STATE(6063), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(6997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [aux_sym_preproc_if_token2] = ACTIONS(6995), + [aux_sym_preproc_else_token1] = ACTIONS(6995), + [aux_sym_preproc_elif_token1] = ACTIONS(6997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6997), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6997), + [anon_sym_not_eq] = ACTIONS(6997), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6997), + [anon_sym_override] = ACTIONS(6997), + [anon_sym_requires] = ACTIONS(6997), + }, + [STATE(2905)] = { + [sym__abstract_declarator] = STATE(6059), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2908), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2908), + [sym_identifier] = ACTIONS(7001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [aux_sym_preproc_if_token2] = ACTIONS(6999), + [aux_sym_preproc_else_token1] = ACTIONS(6999), + [aux_sym_preproc_elif_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(7001), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(7001), + [anon_sym_not_eq] = ACTIONS(7001), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7001), + [anon_sym_override] = ACTIONS(7001), + [anon_sym_requires] = ACTIONS(7001), + }, + [STATE(2906)] = { + [sym__abstract_declarator] = STATE(6058), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6495), + [anon_sym_override] = ACTIONS(6495), + [anon_sym_requires] = ACTIONS(6495), + }, + [STATE(2907)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4325), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(7627), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2908)] = { + [sym__abstract_declarator] = STATE(6044), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(7005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [aux_sym_preproc_if_token2] = ACTIONS(7003), + [aux_sym_preproc_else_token1] = ACTIONS(7003), + [aux_sym_preproc_elif_token1] = ACTIONS(7005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7005), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7005), + [anon_sym_not_eq] = ACTIONS(7005), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7005), + [anon_sym_override] = ACTIONS(7005), + [anon_sym_requires] = ACTIONS(7005), + }, + [STATE(2909)] = { + [sym__abstract_declarator] = STATE(6043), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(7009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [aux_sym_preproc_if_token2] = ACTIONS(7007), + [aux_sym_preproc_else_token1] = ACTIONS(7007), + [aux_sym_preproc_elif_token1] = ACTIONS(7009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7009), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7009), + [anon_sym_not_eq] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7009), + [anon_sym_override] = ACTIONS(7009), + [anon_sym_requires] = ACTIONS(7009), + }, + [STATE(2910)] = { + [sym_identifier] = ACTIONS(8622), + [anon_sym_LPAREN2] = ACTIONS(8624), + [anon_sym_TILDE] = ACTIONS(8624), + [anon_sym_STAR] = ACTIONS(8624), + [anon_sym_PIPE_PIPE] = ACTIONS(8624), + [anon_sym_AMP_AMP] = ACTIONS(8624), + [anon_sym_AMP] = ACTIONS(8622), + [anon_sym___extension__] = ACTIONS(8622), + [anon_sym_virtual] = ACTIONS(8622), + [anon_sym_extern] = ACTIONS(8622), + [anon_sym___attribute__] = ACTIONS(8622), + [anon_sym___attribute] = ACTIONS(8622), + [anon_sym_using] = ACTIONS(8622), + [anon_sym_COLON_COLON] = ACTIONS(8624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8624), + [anon_sym___declspec] = ACTIONS(8622), + [anon_sym___based] = ACTIONS(8622), + [anon_sym___cdecl] = ACTIONS(8622), + [anon_sym___clrcall] = ACTIONS(8622), + [anon_sym___stdcall] = ACTIONS(8622), + [anon_sym___fastcall] = ACTIONS(8622), + [anon_sym___thiscall] = ACTIONS(8622), + [anon_sym___vectorcall] = ACTIONS(8622), + [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym_signed] = ACTIONS(8622), + [anon_sym_unsigned] = ACTIONS(8622), + [anon_sym_long] = ACTIONS(8622), + [anon_sym_short] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(8622), + [anon_sym_static] = ACTIONS(8622), + [anon_sym_register] = ACTIONS(8622), + [anon_sym_inline] = ACTIONS(8622), + [anon_sym___inline] = ACTIONS(8622), + [anon_sym___inline__] = ACTIONS(8622), + [anon_sym___forceinline] = ACTIONS(8622), + [anon_sym_thread_local] = ACTIONS(8622), + [anon_sym___thread] = ACTIONS(8622), + [anon_sym_const] = ACTIONS(8622), + [anon_sym_constexpr] = ACTIONS(8622), + [anon_sym_volatile] = ACTIONS(8622), + [anon_sym_restrict] = ACTIONS(8622), + [anon_sym___restrict__] = ACTIONS(8622), + [anon_sym__Atomic] = ACTIONS(8622), + [anon_sym__Noreturn] = ACTIONS(8622), + [anon_sym_noreturn] = ACTIONS(8622), + [anon_sym__Nonnull] = ACTIONS(8622), + [anon_sym_mutable] = ACTIONS(8622), + [anon_sym_constinit] = ACTIONS(8622), + [anon_sym_consteval] = ACTIONS(8622), + [anon_sym_alignas] = ACTIONS(8622), + [anon_sym__Alignas] = ACTIONS(8622), + [sym_primitive_type] = ACTIONS(8622), + [anon_sym_enum] = ACTIONS(8622), + [anon_sym_class] = ACTIONS(8622), + [anon_sym_struct] = ACTIONS(8622), + [anon_sym_union] = ACTIONS(8622), + [anon_sym_or] = ACTIONS(8622), + [anon_sym_and] = ACTIONS(8622), + [anon_sym_typename] = ACTIONS(8622), + [anon_sym_DASH_GT] = ACTIONS(8624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8622), + [anon_sym_decltype] = ACTIONS(8622), + [anon_sym_explicit] = ACTIONS(8622), + [anon_sym_template] = ACTIONS(8622), + [anon_sym_operator] = ACTIONS(8622), + [anon_sym_friend] = ACTIONS(8622), + [anon_sym_noexcept] = ACTIONS(8622), + [anon_sym_throw] = ACTIONS(8622), + [anon_sym_concept] = ACTIONS(8622), + [anon_sym_LBRACK_COLON] = ACTIONS(8624), + }, + [STATE(2911)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3497), + [sym_requires_clause] = STATE(3497), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(7629), + [anon_sym___attribute] = ACTIONS(7629), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2912)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4229), + [sym__function_postfix] = STATE(5023), + [sym_trailing_return_type] = STATE(4354), + [sym_requires_clause] = STATE(5023), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8087), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8087), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8626), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6384), + [anon_sym_override] = ACTIONS(6384), + [anon_sym_GT2] = ACTIONS(8089), + [anon_sym_requires] = ACTIONS(6386), + }, + [STATE(2913)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_TILDE] = ACTIONS(8631), + [anon_sym_STAR] = ACTIONS(8631), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym___extension__] = ACTIONS(8629), + [anon_sym_virtual] = ACTIONS(8629), + [anon_sym_extern] = ACTIONS(8629), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_using] = ACTIONS(8629), + [anon_sym_COLON_COLON] = ACTIONS(8631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), + [anon_sym___declspec] = ACTIONS(8629), + [anon_sym___based] = ACTIONS(8629), + [anon_sym___cdecl] = ACTIONS(8629), + [anon_sym___clrcall] = ACTIONS(8629), + [anon_sym___stdcall] = ACTIONS(8629), + [anon_sym___fastcall] = ACTIONS(8629), + [anon_sym___thiscall] = ACTIONS(8629), + [anon_sym___vectorcall] = ACTIONS(8629), + [anon_sym_LBRACE] = ACTIONS(8631), + [anon_sym_signed] = ACTIONS(8629), + [anon_sym_unsigned] = ACTIONS(8629), + [anon_sym_long] = ACTIONS(8629), + [anon_sym_short] = ACTIONS(8629), + [anon_sym_LBRACK] = ACTIONS(8629), + [anon_sym_static] = ACTIONS(8629), + [anon_sym_register] = ACTIONS(8629), + [anon_sym_inline] = ACTIONS(8629), + [anon_sym___inline] = ACTIONS(8629), + [anon_sym___inline__] = ACTIONS(8629), + [anon_sym___forceinline] = ACTIONS(8629), + [anon_sym_thread_local] = ACTIONS(8629), + [anon_sym___thread] = ACTIONS(8629), + [anon_sym_const] = ACTIONS(8629), + [anon_sym_constexpr] = ACTIONS(8629), + [anon_sym_volatile] = ACTIONS(8629), + [anon_sym_restrict] = ACTIONS(8629), + [anon_sym___restrict__] = ACTIONS(8629), + [anon_sym__Atomic] = ACTIONS(8629), + [anon_sym__Noreturn] = ACTIONS(8629), + [anon_sym_noreturn] = ACTIONS(8629), + [anon_sym__Nonnull] = ACTIONS(8629), + [anon_sym_mutable] = ACTIONS(8629), + [anon_sym_constinit] = ACTIONS(8629), + [anon_sym_consteval] = ACTIONS(8629), + [anon_sym_alignas] = ACTIONS(8629), + [anon_sym__Alignas] = ACTIONS(8629), + [sym_primitive_type] = ACTIONS(8629), + [anon_sym_enum] = ACTIONS(8629), + [anon_sym_class] = ACTIONS(8629), + [anon_sym_struct] = ACTIONS(8629), + [anon_sym_union] = ACTIONS(8629), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_typename] = ACTIONS(8629), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8629), + [anon_sym_decltype] = ACTIONS(8629), + [anon_sym_explicit] = ACTIONS(8629), + [anon_sym_template] = ACTIONS(8629), + [anon_sym_operator] = ACTIONS(8629), + [anon_sym_friend] = ACTIONS(8629), + [anon_sym_noexcept] = ACTIONS(8629), + [anon_sym_throw] = ACTIONS(8629), + [anon_sym_concept] = ACTIONS(8629), + [anon_sym_LBRACK_COLON] = ACTIONS(8631), + }, + [STATE(2914)] = { + [sym_argument_list] = STATE(5546), + [sym_initializer_list] = STATE(5578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2915)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4191), + [sym_ms_pointer_modifier] = STATE(2847), + [sym__abstract_declarator] = STATE(6754), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3929), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2180), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3929), + [aux_sym_pointer_declarator_repeat1] = STATE(2847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), + [anon_sym_COMMA] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6457), + [anon_sym_PLUS] = ACTIONS(6457), + [anon_sym_STAR] = ACTIONS(8520), + [anon_sym_SLASH] = ACTIONS(6457), + [anon_sym_PERCENT] = ACTIONS(6459), + [anon_sym_PIPE_PIPE] = ACTIONS(6459), + [anon_sym_AMP_AMP] = ACTIONS(8522), + [anon_sym_PIPE] = ACTIONS(6457), + [anon_sym_CARET] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(8524), + [anon_sym_EQ_EQ] = ACTIONS(6459), + [anon_sym_BANG_EQ] = ACTIONS(6459), + [anon_sym_GT] = ACTIONS(6457), + [anon_sym_GT_EQ] = ACTIONS(6459), + [anon_sym_LT_EQ] = ACTIONS(6457), + [anon_sym_LT] = ACTIONS(6457), + [anon_sym_LT_LT] = ACTIONS(6459), + [anon_sym_GT_GT] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(8254), + [sym_ms_restrict_modifier] = ACTIONS(8256), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), + [sym_ms_signed_ptr_modifier] = ACTIONS(8258), + [anon_sym__unaligned] = ACTIONS(8260), + [anon_sym___unaligned] = ACTIONS(8260), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6459), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6459), + [anon_sym_LT_EQ_GT] = ACTIONS(6459), + [anon_sym_or] = ACTIONS(6459), + [anon_sym_and] = ACTIONS(6459), + [anon_sym_bitor] = ACTIONS(6459), + [anon_sym_xor] = ACTIONS(6459), + [anon_sym_bitand] = ACTIONS(6459), + [anon_sym_not_eq] = ACTIONS(6459), + [anon_sym_DASH_DASH] = ACTIONS(6459), + [anon_sym_PLUS_PLUS] = ACTIONS(6459), + [anon_sym_DOT] = ACTIONS(6457), + [anon_sym_DOT_STAR] = ACTIONS(6459), + [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_comment] = ACTIONS(3), + }, + [STATE(2916)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4134), + [sym__function_postfix] = STATE(3513), + [sym_trailing_return_type] = STATE(2911), + [sym_requires_clause] = STATE(3513), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7927), + [anon_sym___attribute] = ACTIONS(7930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7933), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2917)] = { + [sym_identifier] = ACTIONS(8633), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_TILDE] = ACTIONS(8635), + [anon_sym_STAR] = ACTIONS(8635), + [anon_sym_PIPE_PIPE] = ACTIONS(8635), + [anon_sym_AMP_AMP] = ACTIONS(8635), + [anon_sym_AMP] = ACTIONS(8633), + [anon_sym___extension__] = ACTIONS(8633), + [anon_sym_virtual] = ACTIONS(8633), + [anon_sym_extern] = ACTIONS(8633), + [anon_sym___attribute__] = ACTIONS(8633), + [anon_sym___attribute] = ACTIONS(8633), + [anon_sym_using] = ACTIONS(8633), + [anon_sym_COLON_COLON] = ACTIONS(8635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8635), + [anon_sym___declspec] = ACTIONS(8633), + [anon_sym___based] = ACTIONS(8633), + [anon_sym___cdecl] = ACTIONS(8633), + [anon_sym___clrcall] = ACTIONS(8633), + [anon_sym___stdcall] = ACTIONS(8633), + [anon_sym___fastcall] = ACTIONS(8633), + [anon_sym___thiscall] = ACTIONS(8633), + [anon_sym___vectorcall] = ACTIONS(8633), + [anon_sym_LBRACE] = ACTIONS(8635), + [anon_sym_signed] = ACTIONS(8633), + [anon_sym_unsigned] = ACTIONS(8633), + [anon_sym_long] = ACTIONS(8633), + [anon_sym_short] = ACTIONS(8633), + [anon_sym_LBRACK] = ACTIONS(8633), + [anon_sym_static] = ACTIONS(8633), + [anon_sym_register] = ACTIONS(8633), + [anon_sym_inline] = ACTIONS(8633), + [anon_sym___inline] = ACTIONS(8633), + [anon_sym___inline__] = ACTIONS(8633), + [anon_sym___forceinline] = ACTIONS(8633), + [anon_sym_thread_local] = ACTIONS(8633), + [anon_sym___thread] = ACTIONS(8633), + [anon_sym_const] = ACTIONS(8633), + [anon_sym_constexpr] = ACTIONS(8633), + [anon_sym_volatile] = ACTIONS(8633), + [anon_sym_restrict] = ACTIONS(8633), + [anon_sym___restrict__] = ACTIONS(8633), + [anon_sym__Atomic] = ACTIONS(8633), + [anon_sym__Noreturn] = ACTIONS(8633), + [anon_sym_noreturn] = ACTIONS(8633), + [anon_sym__Nonnull] = ACTIONS(8633), + [anon_sym_mutable] = ACTIONS(8633), + [anon_sym_constinit] = ACTIONS(8633), + [anon_sym_consteval] = ACTIONS(8633), + [anon_sym_alignas] = ACTIONS(8633), + [anon_sym__Alignas] = ACTIONS(8633), + [sym_primitive_type] = ACTIONS(8633), + [anon_sym_enum] = ACTIONS(8633), + [anon_sym_class] = ACTIONS(8633), + [anon_sym_struct] = ACTIONS(8633), + [anon_sym_union] = ACTIONS(8633), + [anon_sym_or] = ACTIONS(8633), + [anon_sym_and] = ACTIONS(8633), + [anon_sym_typename] = ACTIONS(8633), + [anon_sym_DASH_GT] = ACTIONS(8635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8633), + [anon_sym_decltype] = ACTIONS(8633), + [anon_sym_explicit] = ACTIONS(8633), + [anon_sym_template] = ACTIONS(8633), + [anon_sym_operator] = ACTIONS(8633), + [anon_sym_friend] = ACTIONS(8633), + [anon_sym_noexcept] = ACTIONS(8633), + [anon_sym_throw] = ACTIONS(8633), + [anon_sym_concept] = ACTIONS(8633), + [anon_sym_LBRACK_COLON] = ACTIONS(8635), + }, + [STATE(2918)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7343), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7343), + [anon_sym_volatile] = ACTIONS(7343), + [anon_sym_restrict] = ACTIONS(7343), + [anon_sym___restrict__] = ACTIONS(7343), + [anon_sym__Atomic] = ACTIONS(7343), + [anon_sym__Noreturn] = ACTIONS(7343), + [anon_sym_noreturn] = ACTIONS(7343), + [anon_sym__Nonnull] = ACTIONS(7343), + [anon_sym_mutable] = ACTIONS(7343), + [anon_sym_constinit] = ACTIONS(7343), + [anon_sym_consteval] = ACTIONS(7343), + [anon_sym_alignas] = ACTIONS(7343), + [anon_sym__Alignas] = ACTIONS(7343), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + }, + [STATE(2919)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4135), + [sym__function_postfix] = STATE(3497), + [sym_trailing_return_type] = STATE(2959), + [sym_requires_clause] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(8070), + [anon_sym___attribute] = ACTIONS(8073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8076), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2920)] = { + [sym_attribute_specifier] = STATE(2799), + [sym_attribute_declaration] = STATE(3129), + [sym_gnu_asm_expression] = STATE(8963), + [sym_virtual_specifier] = STATE(3248), + [sym__function_attributes_end] = STATE(4136), + [sym__function_postfix] = STATE(3528), + [sym_trailing_return_type] = STATE(2964), + [sym_requires_clause] = STATE(3528), + [aux_sym_type_definition_repeat1] = STATE(2799), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(8528), + [anon_sym___attribute] = ACTIONS(8531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8534), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6181), + [anon_sym_override] = ACTIONS(6181), + [anon_sym_requires] = ACTIONS(6183), + }, + [STATE(2921)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4253), + [sym__function_postfix] = STATE(4984), + [sym_trailing_return_type] = STATE(4410), + [sym_requires_clause] = STATE(4984), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7546), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7546), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7954), + [anon_sym_override] = ACTIONS(7954), + [anon_sym_GT2] = ACTIONS(7544), + [anon_sym_requires] = ACTIONS(7957), + }, + [STATE(2922)] = { + [sym_attribute_specifier] = STATE(3409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_RPAREN] = ACTIONS(7089), + [anon_sym_LPAREN2] = ACTIONS(7089), + [anon_sym_DASH] = ACTIONS(7087), + [anon_sym_PLUS] = ACTIONS(7087), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7087), + [anon_sym_PERCENT] = ACTIONS(7087), + [anon_sym_PIPE_PIPE] = ACTIONS(7089), + [anon_sym_AMP_AMP] = ACTIONS(7089), + [anon_sym_PIPE] = ACTIONS(7087), + [anon_sym_CARET] = ACTIONS(7087), + [anon_sym_AMP] = ACTIONS(7087), + [anon_sym_EQ_EQ] = ACTIONS(7089), + [anon_sym_BANG_EQ] = ACTIONS(7089), + [anon_sym_GT] = ACTIONS(7087), + [anon_sym_GT_EQ] = ACTIONS(7089), + [anon_sym_LT_EQ] = ACTIONS(7087), + [anon_sym_LT] = ACTIONS(7087), + [anon_sym_LT_LT] = ACTIONS(7087), + [anon_sym_GT_GT] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7089), + [anon_sym_LBRACK] = ACTIONS(7089), + [anon_sym_EQ] = ACTIONS(7087), + [anon_sym_const] = ACTIONS(7087), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(7089), + [anon_sym__Alignas] = ACTIONS(7089), + [anon_sym_QMARK] = ACTIONS(7089), + [anon_sym_STAR_EQ] = ACTIONS(7089), + [anon_sym_SLASH_EQ] = ACTIONS(7089), + [anon_sym_PERCENT_EQ] = ACTIONS(7089), + [anon_sym_PLUS_EQ] = ACTIONS(7089), + [anon_sym_DASH_EQ] = ACTIONS(7089), + [anon_sym_LT_LT_EQ] = ACTIONS(7089), + [anon_sym_GT_GT_EQ] = ACTIONS(7089), + [anon_sym_AMP_EQ] = ACTIONS(7089), + [anon_sym_CARET_EQ] = ACTIONS(7089), + [anon_sym_PIPE_EQ] = ACTIONS(7089), + [anon_sym_LT_EQ_GT] = ACTIONS(7089), + [anon_sym_or] = ACTIONS(7089), + [anon_sym_and] = ACTIONS(7089), + [anon_sym_bitor] = ACTIONS(7089), + [anon_sym_xor] = ACTIONS(7089), + [anon_sym_bitand] = ACTIONS(7089), + [anon_sym_not_eq] = ACTIONS(7089), + [anon_sym_DASH_DASH] = ACTIONS(7089), + [anon_sym_PLUS_PLUS] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7087), + [anon_sym_DOT_STAR] = ACTIONS(7089), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7089), + [anon_sym_override] = ACTIONS(7089), + [anon_sym_requires] = ACTIONS(7089), + [anon_sym_DASH_GT_STAR] = ACTIONS(7089), + }, + [STATE(2923)] = { + [sym_identifier] = ACTIONS(8637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8639), + [anon_sym_COMMA] = ACTIONS(8639), + [anon_sym_RPAREN] = ACTIONS(8639), + [aux_sym_preproc_if_token2] = ACTIONS(8639), + [aux_sym_preproc_else_token1] = ACTIONS(8639), + [aux_sym_preproc_elif_token1] = ACTIONS(8637), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8639), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8639), + [anon_sym_LPAREN2] = ACTIONS(8639), + [anon_sym_DASH] = ACTIONS(8637), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_STAR] = ACTIONS(8637), + [anon_sym_SLASH] = ACTIONS(8637), + [anon_sym_PERCENT] = ACTIONS(8637), + [anon_sym_PIPE_PIPE] = ACTIONS(8639), + [anon_sym_AMP_AMP] = ACTIONS(8639), + [anon_sym_PIPE] = ACTIONS(8637), + [anon_sym_CARET] = ACTIONS(8637), + [anon_sym_AMP] = ACTIONS(8637), + [anon_sym_EQ_EQ] = ACTIONS(8639), + [anon_sym_BANG_EQ] = ACTIONS(8639), + [anon_sym_GT] = ACTIONS(8637), + [anon_sym_GT_EQ] = ACTIONS(8639), + [anon_sym_LT_EQ] = ACTIONS(8637), + [anon_sym_LT] = ACTIONS(8637), + [anon_sym_LT_LT] = ACTIONS(8637), + [anon_sym_GT_GT] = ACTIONS(8637), + [anon_sym_SEMI] = ACTIONS(8639), + [anon_sym___attribute__] = ACTIONS(8637), + [anon_sym___attribute] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8639), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8639), + [anon_sym_RBRACE] = ACTIONS(8639), + [anon_sym_LBRACK] = ACTIONS(8637), + [anon_sym_EQ] = ACTIONS(8637), + [anon_sym_QMARK] = ACTIONS(8639), + [anon_sym_STAR_EQ] = ACTIONS(8639), + [anon_sym_SLASH_EQ] = ACTIONS(8639), + [anon_sym_PERCENT_EQ] = ACTIONS(8639), + [anon_sym_PLUS_EQ] = ACTIONS(8639), + [anon_sym_DASH_EQ] = ACTIONS(8639), + [anon_sym_LT_LT_EQ] = ACTIONS(8639), + [anon_sym_GT_GT_EQ] = ACTIONS(8639), + [anon_sym_AMP_EQ] = ACTIONS(8639), + [anon_sym_CARET_EQ] = ACTIONS(8639), + [anon_sym_PIPE_EQ] = ACTIONS(8639), + [anon_sym_and_eq] = ACTIONS(8637), + [anon_sym_or_eq] = ACTIONS(8637), + [anon_sym_xor_eq] = ACTIONS(8637), + [anon_sym_LT_EQ_GT] = ACTIONS(8639), + [anon_sym_or] = ACTIONS(8637), + [anon_sym_and] = ACTIONS(8637), + [anon_sym_bitor] = ACTIONS(8637), + [anon_sym_xor] = ACTIONS(8637), + [anon_sym_bitand] = ACTIONS(8637), + [anon_sym_not_eq] = ACTIONS(8637), + [anon_sym_DASH_DASH] = ACTIONS(8639), + [anon_sym_PLUS_PLUS] = ACTIONS(8639), + [anon_sym_asm] = ACTIONS(8637), + [anon_sym___asm__] = ACTIONS(8637), + [anon_sym___asm] = ACTIONS(8637), + [anon_sym_DOT] = ACTIONS(8637), + [anon_sym_DOT_STAR] = ACTIONS(8639), + [anon_sym_DASH_GT] = ACTIONS(8639), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8637), + [anon_sym_override] = ACTIONS(8637), + [anon_sym_requires] = ACTIONS(8637), + [anon_sym_COLON_RBRACK] = ACTIONS(8639), + }, + [STATE(2924)] = { + [sym_identifier] = ACTIONS(8641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8643), + [anon_sym_COMMA] = ACTIONS(8643), + [anon_sym_RPAREN] = ACTIONS(8643), + [aux_sym_preproc_if_token2] = ACTIONS(8643), + [aux_sym_preproc_else_token1] = ACTIONS(8643), + [aux_sym_preproc_elif_token1] = ACTIONS(8641), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8643), + [anon_sym_DASH] = ACTIONS(8641), + [anon_sym_PLUS] = ACTIONS(8641), + [anon_sym_STAR] = ACTIONS(8641), + [anon_sym_SLASH] = ACTIONS(8641), + [anon_sym_PERCENT] = ACTIONS(8641), + [anon_sym_PIPE_PIPE] = ACTIONS(8643), + [anon_sym_AMP_AMP] = ACTIONS(8643), + [anon_sym_PIPE] = ACTIONS(8641), + [anon_sym_CARET] = ACTIONS(8641), + [anon_sym_AMP] = ACTIONS(8641), + [anon_sym_EQ_EQ] = ACTIONS(8643), + [anon_sym_BANG_EQ] = ACTIONS(8643), + [anon_sym_GT] = ACTIONS(8641), + [anon_sym_GT_EQ] = ACTIONS(8643), + [anon_sym_LT_EQ] = ACTIONS(8641), + [anon_sym_LT] = ACTIONS(8641), + [anon_sym_LT_LT] = ACTIONS(8641), + [anon_sym_GT_GT] = ACTIONS(8641), + [anon_sym_SEMI] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8641), + [anon_sym___attribute] = ACTIONS(8641), + [anon_sym_COLON] = ACTIONS(8641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8643), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8643), + [anon_sym_RBRACE] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8641), + [anon_sym_EQ] = ACTIONS(8641), + [anon_sym_QMARK] = ACTIONS(8643), + [anon_sym_STAR_EQ] = ACTIONS(8643), + [anon_sym_SLASH_EQ] = ACTIONS(8643), + [anon_sym_PERCENT_EQ] = ACTIONS(8643), + [anon_sym_PLUS_EQ] = ACTIONS(8643), + [anon_sym_DASH_EQ] = ACTIONS(8643), + [anon_sym_LT_LT_EQ] = ACTIONS(8643), + [anon_sym_GT_GT_EQ] = ACTIONS(8643), + [anon_sym_AMP_EQ] = ACTIONS(8643), + [anon_sym_CARET_EQ] = ACTIONS(8643), + [anon_sym_PIPE_EQ] = ACTIONS(8643), + [anon_sym_and_eq] = ACTIONS(8641), + [anon_sym_or_eq] = ACTIONS(8641), + [anon_sym_xor_eq] = ACTIONS(8641), + [anon_sym_LT_EQ_GT] = ACTIONS(8643), + [anon_sym_or] = ACTIONS(8641), + [anon_sym_and] = ACTIONS(8641), + [anon_sym_bitor] = ACTIONS(8641), + [anon_sym_xor] = ACTIONS(8641), + [anon_sym_bitand] = ACTIONS(8641), + [anon_sym_not_eq] = ACTIONS(8641), + [anon_sym_DASH_DASH] = ACTIONS(8643), + [anon_sym_PLUS_PLUS] = ACTIONS(8643), + [anon_sym_asm] = ACTIONS(8641), + [anon_sym___asm__] = ACTIONS(8641), + [anon_sym___asm] = ACTIONS(8641), + [anon_sym_DOT] = ACTIONS(8641), + [anon_sym_DOT_STAR] = ACTIONS(8643), + [anon_sym_DASH_GT] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8641), + [anon_sym_override] = ACTIONS(8641), + [anon_sym_requires] = ACTIONS(8641), + [anon_sym_COLON_RBRACK] = ACTIONS(8643), + }, + [STATE(2925)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7191), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7191), + [anon_sym_GT_GT] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_mutable] = ACTIONS(7193), + [anon_sym_constinit] = ACTIONS(7193), + [anon_sym_consteval] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7193), + [anon_sym_or_eq] = ACTIONS(7193), + [anon_sym_xor_eq] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7191), + [anon_sym_and] = ACTIONS(7191), + [anon_sym_bitor] = ACTIONS(7193), + [anon_sym_xor] = ACTIONS(7191), + [anon_sym_bitand] = ACTIONS(7193), + [anon_sym_not_eq] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7191), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7193), + [anon_sym_override] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7193), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + }, + [STATE(2926)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(2927)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4265), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4412), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8055), + [anon_sym_override] = ACTIONS(8055), + [anon_sym_GT2] = ACTIONS(7627), + [anon_sym_requires] = ACTIONS(8058), + }, + [STATE(2928)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4518), + [sym_gnu_asm_expression] = STATE(8999), + [sym_virtual_specifier] = STATE(4532), + [sym__function_attributes_end] = STATE(4267), + [sym__function_postfix] = STATE(5023), + [sym_trailing_return_type] = STATE(4414), + [sym_requires_clause] = STATE(5023), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4518), + [aux_sym__function_postfix_repeat1] = STATE(4532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8087), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6361), + [anon_sym___attribute] = ACTIONS(6363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8087), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8626), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8645), + [anon_sym_override] = ACTIONS(8645), + [anon_sym_GT2] = ACTIONS(8089), + [anon_sym_requires] = ACTIONS(8648), + }, + [STATE(2929)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_TILDE] = ACTIONS(8631), + [anon_sym_STAR] = ACTIONS(8631), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym___extension__] = ACTIONS(8629), + [anon_sym_virtual] = ACTIONS(8629), + [anon_sym_extern] = ACTIONS(8629), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_using] = ACTIONS(8629), + [anon_sym_COLON_COLON] = ACTIONS(8631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), + [anon_sym___declspec] = ACTIONS(8629), + [anon_sym___based] = ACTIONS(8629), + [anon_sym___cdecl] = ACTIONS(8629), + [anon_sym___clrcall] = ACTIONS(8629), + [anon_sym___stdcall] = ACTIONS(8629), + [anon_sym___fastcall] = ACTIONS(8629), + [anon_sym___thiscall] = ACTIONS(8629), + [anon_sym___vectorcall] = ACTIONS(8629), + [anon_sym_LBRACE] = ACTIONS(8631), + [anon_sym_signed] = ACTIONS(8629), + [anon_sym_unsigned] = ACTIONS(8629), + [anon_sym_long] = ACTIONS(8629), + [anon_sym_short] = ACTIONS(8629), + [anon_sym_LBRACK] = ACTIONS(8629), + [anon_sym_static] = ACTIONS(8629), + [anon_sym_register] = ACTIONS(8629), + [anon_sym_inline] = ACTIONS(8629), + [anon_sym___inline] = ACTIONS(8629), + [anon_sym___inline__] = ACTIONS(8629), + [anon_sym___forceinline] = ACTIONS(8629), + [anon_sym_thread_local] = ACTIONS(8629), + [anon_sym___thread] = ACTIONS(8629), + [anon_sym_const] = ACTIONS(8629), + [anon_sym_constexpr] = ACTIONS(8629), + [anon_sym_volatile] = ACTIONS(8629), + [anon_sym_restrict] = ACTIONS(8629), + [anon_sym___restrict__] = ACTIONS(8629), + [anon_sym__Atomic] = ACTIONS(8629), + [anon_sym__Noreturn] = ACTIONS(8629), + [anon_sym_noreturn] = ACTIONS(8629), + [anon_sym__Nonnull] = ACTIONS(8629), + [anon_sym_mutable] = ACTIONS(8629), + [anon_sym_constinit] = ACTIONS(8629), + [anon_sym_consteval] = ACTIONS(8629), + [anon_sym_alignas] = ACTIONS(8629), + [anon_sym__Alignas] = ACTIONS(8629), + [sym_primitive_type] = ACTIONS(8629), + [anon_sym_enum] = ACTIONS(8629), + [anon_sym_class] = ACTIONS(8629), + [anon_sym_struct] = ACTIONS(8629), + [anon_sym_union] = ACTIONS(8629), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_typename] = ACTIONS(8629), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8629), + [anon_sym_decltype] = ACTIONS(8629), + [anon_sym_explicit] = ACTIONS(8629), + [anon_sym_template] = ACTIONS(8629), + [anon_sym_operator] = ACTIONS(8629), + [anon_sym_friend] = ACTIONS(8629), + [anon_sym_noexcept] = ACTIONS(8629), + [anon_sym_throw] = ACTIONS(8629), + [anon_sym_concept] = ACTIONS(8629), + [anon_sym_LBRACK_COLON] = ACTIONS(8631), + }, + [STATE(2930)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7265), + [anon_sym_volatile] = ACTIONS(7265), + [anon_sym_restrict] = ACTIONS(7265), + [anon_sym___restrict__] = ACTIONS(7265), + [anon_sym__Atomic] = ACTIONS(7265), + [anon_sym__Noreturn] = ACTIONS(7265), + [anon_sym_noreturn] = ACTIONS(7265), + [anon_sym__Nonnull] = ACTIONS(7265), + [anon_sym_mutable] = ACTIONS(7265), + [anon_sym_constinit] = ACTIONS(7265), + [anon_sym_consteval] = ACTIONS(7265), + [anon_sym_alignas] = ACTIONS(7265), + [anon_sym__Alignas] = ACTIONS(7265), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7265), + [anon_sym_or_eq] = ACTIONS(7265), + [anon_sym_xor_eq] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7265), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7265), + [anon_sym_not_eq] = ACTIONS(7265), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7265), + [anon_sym_override] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7265), + [anon_sym_DASH_GT_STAR] = ACTIONS(7265), + }, + [STATE(2931)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_RPAREN] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7267), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7267), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7267), + [anon_sym_GT_GT] = ACTIONS(7267), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_STAR_EQ] = ACTIONS(7269), + [anon_sym_SLASH_EQ] = ACTIONS(7269), + [anon_sym_PERCENT_EQ] = ACTIONS(7269), + [anon_sym_PLUS_EQ] = ACTIONS(7269), + [anon_sym_DASH_EQ] = ACTIONS(7269), + [anon_sym_LT_LT_EQ] = ACTIONS(7269), + [anon_sym_GT_GT_EQ] = ACTIONS(7269), + [anon_sym_AMP_EQ] = ACTIONS(7269), + [anon_sym_CARET_EQ] = ACTIONS(7269), + [anon_sym_PIPE_EQ] = ACTIONS(7269), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7267), + [anon_sym_and] = ACTIONS(7267), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7267), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7267), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_DASH_GT_STAR] = ACTIONS(7269), + }, + [STATE(2932)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7546), + [anon_sym___attribute] = ACTIONS(7546), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7544), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7582), + [anon_sym_override] = ACTIONS(7582), + [anon_sym_requires] = ACTIONS(7585), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(2933)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6230), + [anon_sym_or_eq] = ACTIONS(6230), + [anon_sym_xor_eq] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6237), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6230), + }, + [STATE(2934)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4227), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4305), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7969), + [anon_sym_override] = ACTIONS(7969), + [anon_sym_requires] = ACTIONS(7972), + }, + [STATE(2935)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_RPAREN] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7273), + [anon_sym_volatile] = ACTIONS(7273), + [anon_sym_restrict] = ACTIONS(7273), + [anon_sym___restrict__] = ACTIONS(7273), + [anon_sym__Atomic] = ACTIONS(7273), + [anon_sym__Noreturn] = ACTIONS(7273), + [anon_sym_noreturn] = ACTIONS(7273), + [anon_sym__Nonnull] = ACTIONS(7273), + [anon_sym_mutable] = ACTIONS(7273), + [anon_sym_constinit] = ACTIONS(7273), + [anon_sym_consteval] = ACTIONS(7273), + [anon_sym_alignas] = ACTIONS(7273), + [anon_sym__Alignas] = ACTIONS(7273), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_STAR_EQ] = ACTIONS(7273), + [anon_sym_SLASH_EQ] = ACTIONS(7273), + [anon_sym_PERCENT_EQ] = ACTIONS(7273), + [anon_sym_PLUS_EQ] = ACTIONS(7273), + [anon_sym_DASH_EQ] = ACTIONS(7273), + [anon_sym_LT_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_GT_EQ] = ACTIONS(7273), + [anon_sym_AMP_EQ] = ACTIONS(7273), + [anon_sym_CARET_EQ] = ACTIONS(7273), + [anon_sym_PIPE_EQ] = ACTIONS(7273), + [anon_sym_and_eq] = ACTIONS(7273), + [anon_sym_or_eq] = ACTIONS(7273), + [anon_sym_xor_eq] = ACTIONS(7273), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7271), + [anon_sym_and] = ACTIONS(7271), + [anon_sym_bitor] = ACTIONS(7273), + [anon_sym_xor] = ACTIONS(7271), + [anon_sym_bitand] = ACTIONS(7273), + [anon_sym_not_eq] = ACTIONS(7273), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7273), + [anon_sym_override] = ACTIONS(7273), + [anon_sym_requires] = ACTIONS(7273), + [anon_sym_DASH_GT_STAR] = ACTIONS(7273), + }, + [STATE(2936)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7277), + [anon_sym_volatile] = ACTIONS(7277), + [anon_sym_restrict] = ACTIONS(7277), + [anon_sym___restrict__] = ACTIONS(7277), + [anon_sym__Atomic] = ACTIONS(7277), + [anon_sym__Noreturn] = ACTIONS(7277), + [anon_sym_noreturn] = ACTIONS(7277), + [anon_sym__Nonnull] = ACTIONS(7277), + [anon_sym_mutable] = ACTIONS(7277), + [anon_sym_constinit] = ACTIONS(7277), + [anon_sym_consteval] = ACTIONS(7277), + [anon_sym_alignas] = ACTIONS(7277), + [anon_sym__Alignas] = ACTIONS(7277), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7277), + [anon_sym_or_eq] = ACTIONS(7277), + [anon_sym_xor_eq] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7277), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7277), + [anon_sym_not_eq] = ACTIONS(7277), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7277), + [anon_sym_override] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7277), + [anon_sym_DASH_GT_STAR] = ACTIONS(7277), + }, + [STATE(2937)] = { + [sym__abstract_declarator] = STATE(6069), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), + [anon_sym_RBRACE] = ACTIONS(6995), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + [anon_sym_COLON_RBRACK] = ACTIONS(6995), + }, + [STATE(2938)] = { + [sym__abstract_declarator] = STATE(6070), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2941), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), + [anon_sym_RBRACE] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_COLON_RBRACK] = ACTIONS(6999), + }, + [STATE(2939)] = { + [sym_attribute_specifier] = STATE(3480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), + [anon_sym_COMMA] = ACTIONS(7125), + [anon_sym_RPAREN] = ACTIONS(7125), + [anon_sym_LPAREN2] = ACTIONS(7125), + [anon_sym_DASH] = ACTIONS(7123), + [anon_sym_PLUS] = ACTIONS(7123), + [anon_sym_STAR] = ACTIONS(7123), + [anon_sym_SLASH] = ACTIONS(7123), + [anon_sym_PERCENT] = ACTIONS(7123), + [anon_sym_PIPE_PIPE] = ACTIONS(7125), + [anon_sym_AMP_AMP] = ACTIONS(7125), + [anon_sym_PIPE] = ACTIONS(7123), + [anon_sym_CARET] = ACTIONS(7123), + [anon_sym_AMP] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7125), + [anon_sym_BANG_EQ] = ACTIONS(7125), + [anon_sym_GT] = ACTIONS(7123), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_LT_EQ] = ACTIONS(7123), + [anon_sym_LT] = ACTIONS(7123), + [anon_sym_LT_LT] = ACTIONS(7123), + [anon_sym_GT_GT] = ACTIONS(7123), + [anon_sym___extension__] = ACTIONS(7125), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7125), + [anon_sym_LBRACK] = ACTIONS(7125), + [anon_sym_EQ] = ACTIONS(7123), + [anon_sym_const] = ACTIONS(7123), + [anon_sym_constexpr] = ACTIONS(7125), + [anon_sym_volatile] = ACTIONS(7125), + [anon_sym_restrict] = ACTIONS(7125), + [anon_sym___restrict__] = ACTIONS(7125), + [anon_sym__Atomic] = ACTIONS(7125), + [anon_sym__Noreturn] = ACTIONS(7125), + [anon_sym_noreturn] = ACTIONS(7125), + [anon_sym__Nonnull] = ACTIONS(7125), + [anon_sym_mutable] = ACTIONS(7125), + [anon_sym_constinit] = ACTIONS(7125), + [anon_sym_consteval] = ACTIONS(7125), + [anon_sym_alignas] = ACTIONS(7125), + [anon_sym__Alignas] = ACTIONS(7125), + [anon_sym_QMARK] = ACTIONS(7125), + [anon_sym_STAR_EQ] = ACTIONS(7125), + [anon_sym_SLASH_EQ] = ACTIONS(7125), + [anon_sym_PERCENT_EQ] = ACTIONS(7125), + [anon_sym_PLUS_EQ] = ACTIONS(7125), + [anon_sym_DASH_EQ] = ACTIONS(7125), + [anon_sym_LT_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_GT_EQ] = ACTIONS(7125), + [anon_sym_AMP_EQ] = ACTIONS(7125), + [anon_sym_CARET_EQ] = ACTIONS(7125), + [anon_sym_PIPE_EQ] = ACTIONS(7125), + [anon_sym_LT_EQ_GT] = ACTIONS(7125), + [anon_sym_or] = ACTIONS(7125), + [anon_sym_and] = ACTIONS(7125), + [anon_sym_bitor] = ACTIONS(7125), + [anon_sym_xor] = ACTIONS(7125), + [anon_sym_bitand] = ACTIONS(7125), + [anon_sym_not_eq] = ACTIONS(7125), + [anon_sym_DASH_DASH] = ACTIONS(7125), + [anon_sym_PLUS_PLUS] = ACTIONS(7125), + [anon_sym_DOT] = ACTIONS(7123), + [anon_sym_DOT_STAR] = ACTIONS(7125), + [anon_sym_DASH_GT] = ACTIONS(7123), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7125), + [anon_sym_override] = ACTIONS(7125), + [anon_sym_requires] = ACTIONS(7125), + [anon_sym_DASH_GT_STAR] = ACTIONS(7125), + }, + [STATE(2940)] = { + [sym__abstract_declarator] = STATE(6062), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(2941)] = { + [sym__abstract_declarator] = STATE(6075), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7005), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), + [anon_sym_RBRACE] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + [anon_sym_COLON_RBRACK] = ACTIONS(7003), + }, + [STATE(2942)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_RPAREN] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7345), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(7347), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7347), + [anon_sym_volatile] = ACTIONS(7347), + [anon_sym_restrict] = ACTIONS(7347), + [anon_sym___restrict__] = ACTIONS(7347), + [anon_sym__Atomic] = ACTIONS(7347), + [anon_sym__Noreturn] = ACTIONS(7347), + [anon_sym_noreturn] = ACTIONS(7347), + [anon_sym__Nonnull] = ACTIONS(7347), + [anon_sym_mutable] = ACTIONS(7347), + [anon_sym_constinit] = ACTIONS(7347), + [anon_sym_consteval] = ACTIONS(7347), + [anon_sym_alignas] = ACTIONS(7347), + [anon_sym__Alignas] = ACTIONS(7347), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_STAR_EQ] = ACTIONS(7347), + [anon_sym_SLASH_EQ] = ACTIONS(7347), + [anon_sym_PERCENT_EQ] = ACTIONS(7347), + [anon_sym_PLUS_EQ] = ACTIONS(7347), + [anon_sym_DASH_EQ] = ACTIONS(7347), + [anon_sym_LT_LT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7347), + [anon_sym_CARET_EQ] = ACTIONS(7347), + [anon_sym_PIPE_EQ] = ACTIONS(7347), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), + [anon_sym_DASH_GT_STAR] = ACTIONS(7347), + }, + [STATE(2943)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4233), + [sym__function_postfix] = STATE(4995), + [sym_trailing_return_type] = STATE(4308), + [sym_requires_clause] = STATE(4995), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_RBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8061), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8064), + [anon_sym_override] = ACTIONS(8064), + [anon_sym_requires] = ACTIONS(8067), + }, + [STATE(2944)] = { + [sym__abstract_declarator] = STATE(6045), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(7772), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(7774), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(7776), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), + [anon_sym_RBRACE] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + [anon_sym_COLON_RBRACK] = ACTIONS(7007), + }, + [STATE(2945)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7281), + [anon_sym_volatile] = ACTIONS(7281), + [anon_sym_restrict] = ACTIONS(7281), + [anon_sym___restrict__] = ACTIONS(7281), + [anon_sym__Atomic] = ACTIONS(7281), + [anon_sym__Noreturn] = ACTIONS(7281), + [anon_sym_noreturn] = ACTIONS(7281), + [anon_sym__Nonnull] = ACTIONS(7281), + [anon_sym_mutable] = ACTIONS(7281), + [anon_sym_constinit] = ACTIONS(7281), + [anon_sym_consteval] = ACTIONS(7281), + [anon_sym_alignas] = ACTIONS(7281), + [anon_sym__Alignas] = ACTIONS(7281), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7281), + [anon_sym_or_eq] = ACTIONS(7281), + [anon_sym_xor_eq] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7281), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7281), + [anon_sym_not_eq] = ACTIONS(7281), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7279), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7281), + [anon_sym_override] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7281), + [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + }, + [STATE(2946)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + }, + [STATE(2947)] = { + [sym_attribute_specifier] = STATE(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(8189), + [anon_sym___attribute] = ACTIONS(8191), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7135), + [anon_sym_and] = ACTIONS(7135), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7135), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + [anon_sym_DASH_GT_STAR] = ACTIONS(7135), + }, + [STATE(2948)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + }, + [STATE(2949)] = { + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym___based] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(6798), + [anon_sym_unsigned] = ACTIONS(6798), + [anon_sym_long] = ACTIONS(6798), + [anon_sym_short] = ACTIONS(6798), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [sym_primitive_type] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(2950)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7423), + [anon_sym_volatile] = ACTIONS(7423), + [anon_sym_restrict] = ACTIONS(7423), + [anon_sym___restrict__] = ACTIONS(7423), + [anon_sym__Atomic] = ACTIONS(7423), + [anon_sym__Noreturn] = ACTIONS(7423), + [anon_sym_noreturn] = ACTIONS(7423), + [anon_sym__Nonnull] = ACTIONS(7423), + [anon_sym_mutable] = ACTIONS(7423), + [anon_sym_constinit] = ACTIONS(7423), + [anon_sym_consteval] = ACTIONS(7423), + [anon_sym_alignas] = ACTIONS(7423), + [anon_sym__Alignas] = ACTIONS(7423), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7423), + [anon_sym_or_eq] = ACTIONS(7423), + [anon_sym_xor_eq] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7423), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7423), + [anon_sym_not_eq] = ACTIONS(7423), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7423), + [anon_sym_override] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7423), + [anon_sym_DASH_GT_STAR] = ACTIONS(7423), + }, + [STATE(2951)] = { + [sym_identifier] = ACTIONS(8651), + [anon_sym_LPAREN2] = ACTIONS(8653), + [anon_sym_TILDE] = ACTIONS(8653), + [anon_sym_STAR] = ACTIONS(8653), + [anon_sym_PIPE_PIPE] = ACTIONS(8653), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8651), + [anon_sym___extension__] = ACTIONS(8651), + [anon_sym_virtual] = ACTIONS(8651), + [anon_sym_extern] = ACTIONS(8651), + [anon_sym___attribute__] = ACTIONS(8651), + [anon_sym___attribute] = ACTIONS(8651), + [anon_sym_using] = ACTIONS(8651), + [anon_sym_COLON_COLON] = ACTIONS(8653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8653), + [anon_sym___declspec] = ACTIONS(8651), + [anon_sym___based] = ACTIONS(8651), + [anon_sym___cdecl] = ACTIONS(8651), + [anon_sym___clrcall] = ACTIONS(8651), + [anon_sym___stdcall] = ACTIONS(8651), + [anon_sym___fastcall] = ACTIONS(8651), + [anon_sym___thiscall] = ACTIONS(8651), + [anon_sym___vectorcall] = ACTIONS(8651), + [anon_sym_LBRACE] = ACTIONS(8653), + [anon_sym_signed] = ACTIONS(8651), + [anon_sym_unsigned] = ACTIONS(8651), + [anon_sym_long] = ACTIONS(8651), + [anon_sym_short] = ACTIONS(8651), + [anon_sym_LBRACK] = ACTIONS(8651), + [anon_sym_static] = ACTIONS(8651), + [anon_sym_register] = ACTIONS(8651), + [anon_sym_inline] = ACTIONS(8651), + [anon_sym___inline] = ACTIONS(8651), + [anon_sym___inline__] = ACTIONS(8651), + [anon_sym___forceinline] = ACTIONS(8651), + [anon_sym_thread_local] = ACTIONS(8651), + [anon_sym___thread] = ACTIONS(8651), + [anon_sym_const] = ACTIONS(8651), + [anon_sym_constexpr] = ACTIONS(8651), + [anon_sym_volatile] = ACTIONS(8651), + [anon_sym_restrict] = ACTIONS(8651), + [anon_sym___restrict__] = ACTIONS(8651), + [anon_sym__Atomic] = ACTIONS(8651), + [anon_sym__Noreturn] = ACTIONS(8651), + [anon_sym_noreturn] = ACTIONS(8651), + [anon_sym__Nonnull] = ACTIONS(8651), + [anon_sym_mutable] = ACTIONS(8651), + [anon_sym_constinit] = ACTIONS(8651), + [anon_sym_consteval] = ACTIONS(8651), + [anon_sym_alignas] = ACTIONS(8651), + [anon_sym__Alignas] = ACTIONS(8651), + [sym_primitive_type] = ACTIONS(8651), + [anon_sym_enum] = ACTIONS(8651), + [anon_sym_class] = ACTIONS(8651), + [anon_sym_struct] = ACTIONS(8651), + [anon_sym_union] = ACTIONS(8651), + [anon_sym_or] = ACTIONS(8651), + [anon_sym_and] = ACTIONS(8651), + [anon_sym_typename] = ACTIONS(8651), + [anon_sym_DASH_GT] = ACTIONS(8653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8651), + [anon_sym_decltype] = ACTIONS(8651), + [anon_sym_explicit] = ACTIONS(8651), + [anon_sym_template] = ACTIONS(8651), + [anon_sym_operator] = ACTIONS(8651), + [anon_sym_friend] = ACTIONS(8651), + [anon_sym_noexcept] = ACTIONS(8651), + [anon_sym_throw] = ACTIONS(8651), + [anon_sym_concept] = ACTIONS(8651), + [anon_sym_LBRACK_COLON] = ACTIONS(8653), + }, + [STATE(2952)] = { + [sym__abstract_declarator] = STATE(6042), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2904), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1971), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2904), + [sym_identifier] = ACTIONS(6993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_preproc_if_token2] = ACTIONS(6991), + [aux_sym_preproc_else_token1] = ACTIONS(6991), + [aux_sym_preproc_elif_token1] = ACTIONS(6993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(7735), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(7737), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6993), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6993), + [anon_sym_not_eq] = ACTIONS(6993), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6993), + [anon_sym_override] = ACTIONS(6993), + [anon_sym_requires] = ACTIONS(6993), + }, + [STATE(2953)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_RPAREN] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7325), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7325), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7325), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_STAR_EQ] = ACTIONS(7327), + [anon_sym_SLASH_EQ] = ACTIONS(7327), + [anon_sym_PERCENT_EQ] = ACTIONS(7327), + [anon_sym_PLUS_EQ] = ACTIONS(7327), + [anon_sym_DASH_EQ] = ACTIONS(7327), + [anon_sym_LT_LT_EQ] = ACTIONS(7327), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7327), + [anon_sym_CARET_EQ] = ACTIONS(7327), + [anon_sym_PIPE_EQ] = ACTIONS(7327), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7325), + [anon_sym_and] = ACTIONS(7325), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7325), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7325), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_DASH_GT_STAR] = ACTIONS(7327), + }, + [STATE(2954)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_RPAREN] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_STAR_EQ] = ACTIONS(7331), + [anon_sym_SLASH_EQ] = ACTIONS(7331), + [anon_sym_PERCENT_EQ] = ACTIONS(7331), + [anon_sym_PLUS_EQ] = ACTIONS(7331), + [anon_sym_DASH_EQ] = ACTIONS(7331), + [anon_sym_LT_LT_EQ] = ACTIONS(7331), + [anon_sym_GT_GT_EQ] = ACTIONS(7331), + [anon_sym_AMP_EQ] = ACTIONS(7331), + [anon_sym_CARET_EQ] = ACTIONS(7331), + [anon_sym_PIPE_EQ] = ACTIONS(7331), + [anon_sym_and_eq] = ACTIONS(7331), + [anon_sym_or_eq] = ACTIONS(7331), + [anon_sym_xor_eq] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + [anon_sym_DASH_GT_STAR] = ACTIONS(7331), + }, + [STATE(2955)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_RPAREN] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7299), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7299), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7299), + [anon_sym_GT_GT] = ACTIONS(7299), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_STAR_EQ] = ACTIONS(7301), + [anon_sym_SLASH_EQ] = ACTIONS(7301), + [anon_sym_PERCENT_EQ] = ACTIONS(7301), + [anon_sym_PLUS_EQ] = ACTIONS(7301), + [anon_sym_DASH_EQ] = ACTIONS(7301), + [anon_sym_LT_LT_EQ] = ACTIONS(7301), + [anon_sym_GT_GT_EQ] = ACTIONS(7301), + [anon_sym_AMP_EQ] = ACTIONS(7301), + [anon_sym_CARET_EQ] = ACTIONS(7301), + [anon_sym_PIPE_EQ] = ACTIONS(7301), + [anon_sym_and_eq] = ACTIONS(7301), + [anon_sym_or_eq] = ACTIONS(7301), + [anon_sym_xor_eq] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7299), + [anon_sym_and] = ACTIONS(7299), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7299), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7299), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + [anon_sym_DASH_GT_STAR] = ACTIONS(7301), + }, + [STATE(2956)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7235), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7237), + [anon_sym_override] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7237), + [anon_sym_DASH_GT_STAR] = ACTIONS(7237), + }, + [STATE(2957)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7245), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7245), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7245), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7245), + [anon_sym_GT_GT] = ACTIONS(7245), + [anon_sym___extension__] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_EQ] = ACTIONS(7245), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7247), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym___restrict__] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym__Noreturn] = ACTIONS(7247), + [anon_sym_noreturn] = ACTIONS(7247), + [anon_sym__Nonnull] = ACTIONS(7247), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_constinit] = ACTIONS(7247), + [anon_sym_consteval] = ACTIONS(7247), + [anon_sym_alignas] = ACTIONS(7247), + [anon_sym__Alignas] = ACTIONS(7247), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7247), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_and_eq] = ACTIONS(7247), + [anon_sym_or_eq] = ACTIONS(7247), + [anon_sym_xor_eq] = ACTIONS(7247), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7245), + [anon_sym_and] = ACTIONS(7245), + [anon_sym_bitor] = ACTIONS(7247), + [anon_sym_xor] = ACTIONS(7245), + [anon_sym_bitand] = ACTIONS(7247), + [anon_sym_not_eq] = ACTIONS(7247), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(7247), + [anon_sym_requires] = ACTIONS(7247), + [anon_sym_DASH_GT_STAR] = ACTIONS(7247), + }, + [STATE(2958)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + }, + [STATE(2959)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3528), + [sym_requires_clause] = STATE(3528), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [aux_sym_preproc_if_token2] = ACTIONS(8089), + [aux_sym_preproc_else_token1] = ACTIONS(8089), + [aux_sym_preproc_elif_token1] = ACTIONS(8087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(8087), + [anon_sym___attribute] = ACTIONS(8087), + [anon_sym_COLON] = ACTIONS(8087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_LBRACK] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8087), + [anon_sym_or_eq] = ACTIONS(8087), + [anon_sym_xor_eq] = ACTIONS(8087), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8087), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8087), + [anon_sym_not_eq] = ACTIONS(8087), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + [anon_sym_COLON_RBRACK] = ACTIONS(8089), + }, + [STATE(2960)] = { + [sym_identifier] = ACTIONS(8655), + [anon_sym_LPAREN2] = ACTIONS(8657), + [anon_sym_TILDE] = ACTIONS(8657), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_PIPE_PIPE] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8657), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym___extension__] = ACTIONS(8655), + [anon_sym_virtual] = ACTIONS(8655), + [anon_sym_extern] = ACTIONS(8655), + [anon_sym___attribute__] = ACTIONS(8655), + [anon_sym___attribute] = ACTIONS(8655), + [anon_sym_using] = ACTIONS(8655), + [anon_sym_COLON_COLON] = ACTIONS(8657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8657), + [anon_sym___declspec] = ACTIONS(8655), + [anon_sym___based] = ACTIONS(8655), + [anon_sym___cdecl] = ACTIONS(8655), + [anon_sym___clrcall] = ACTIONS(8655), + [anon_sym___stdcall] = ACTIONS(8655), + [anon_sym___fastcall] = ACTIONS(8655), + [anon_sym___thiscall] = ACTIONS(8655), + [anon_sym___vectorcall] = ACTIONS(8655), + [anon_sym_LBRACE] = ACTIONS(8657), + [anon_sym_signed] = ACTIONS(8655), + [anon_sym_unsigned] = ACTIONS(8655), + [anon_sym_long] = ACTIONS(8655), + [anon_sym_short] = ACTIONS(8655), + [anon_sym_LBRACK] = ACTIONS(8655), + [anon_sym_static] = ACTIONS(8655), + [anon_sym_register] = ACTIONS(8655), + [anon_sym_inline] = ACTIONS(8655), + [anon_sym___inline] = ACTIONS(8655), + [anon_sym___inline__] = ACTIONS(8655), + [anon_sym___forceinline] = ACTIONS(8655), + [anon_sym_thread_local] = ACTIONS(8655), + [anon_sym___thread] = ACTIONS(8655), + [anon_sym_const] = ACTIONS(8655), + [anon_sym_constexpr] = ACTIONS(8655), + [anon_sym_volatile] = ACTIONS(8655), + [anon_sym_restrict] = ACTIONS(8655), + [anon_sym___restrict__] = ACTIONS(8655), + [anon_sym__Atomic] = ACTIONS(8655), + [anon_sym__Noreturn] = ACTIONS(8655), + [anon_sym_noreturn] = ACTIONS(8655), + [anon_sym__Nonnull] = ACTIONS(8655), + [anon_sym_mutable] = ACTIONS(8655), + [anon_sym_constinit] = ACTIONS(8655), + [anon_sym_consteval] = ACTIONS(8655), + [anon_sym_alignas] = ACTIONS(8655), + [anon_sym__Alignas] = ACTIONS(8655), + [sym_primitive_type] = ACTIONS(8655), + [anon_sym_enum] = ACTIONS(8655), + [anon_sym_class] = ACTIONS(8655), + [anon_sym_struct] = ACTIONS(8655), + [anon_sym_union] = ACTIONS(8655), + [anon_sym_or] = ACTIONS(8655), + [anon_sym_and] = ACTIONS(8655), + [anon_sym_typename] = ACTIONS(8655), + [anon_sym_DASH_GT] = ACTIONS(8657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8655), + [anon_sym_decltype] = ACTIONS(8655), + [anon_sym_explicit] = ACTIONS(8655), + [anon_sym_template] = ACTIONS(8655), + [anon_sym_operator] = ACTIONS(8655), + [anon_sym_friend] = ACTIONS(8655), + [anon_sym_noexcept] = ACTIONS(8655), + [anon_sym_throw] = ACTIONS(8655), + [anon_sym_concept] = ACTIONS(8655), + [anon_sym_LBRACK_COLON] = ACTIONS(8657), + }, + [STATE(2961)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3497), + [sym_requires_clause] = STATE(3497), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(7629), + [anon_sym___attribute] = ACTIONS(7629), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7648), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(2962)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4192), + [sym_ms_pointer_modifier] = STATE(3909), + [sym__abstract_declarator] = STATE(6697), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3903), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2144), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3903), + [aux_sym_pointer_declarator_repeat1] = STATE(3909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8589), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8591), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8593), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(8232), + [sym_ms_restrict_modifier] = ACTIONS(8234), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), + [sym_ms_signed_ptr_modifier] = ACTIONS(8236), + [anon_sym__unaligned] = ACTIONS(8238), + [anon_sym___unaligned] = ACTIONS(8238), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6497), + }, + [STATE(2963)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_RPAREN] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(7377), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7377), + [anon_sym_volatile] = ACTIONS(7377), + [anon_sym_restrict] = ACTIONS(7377), + [anon_sym___restrict__] = ACTIONS(7377), + [anon_sym__Atomic] = ACTIONS(7377), + [anon_sym__Noreturn] = ACTIONS(7377), + [anon_sym_noreturn] = ACTIONS(7377), + [anon_sym__Nonnull] = ACTIONS(7377), + [anon_sym_mutable] = ACTIONS(7377), + [anon_sym_constinit] = ACTIONS(7377), + [anon_sym_consteval] = ACTIONS(7377), + [anon_sym_alignas] = ACTIONS(7377), + [anon_sym__Alignas] = ACTIONS(7377), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_STAR_EQ] = ACTIONS(7377), + [anon_sym_SLASH_EQ] = ACTIONS(7377), + [anon_sym_PERCENT_EQ] = ACTIONS(7377), + [anon_sym_PLUS_EQ] = ACTIONS(7377), + [anon_sym_DASH_EQ] = ACTIONS(7377), + [anon_sym_LT_LT_EQ] = ACTIONS(7377), + [anon_sym_GT_GT_EQ] = ACTIONS(7377), + [anon_sym_AMP_EQ] = ACTIONS(7377), + [anon_sym_CARET_EQ] = ACTIONS(7377), + [anon_sym_PIPE_EQ] = ACTIONS(7377), + [anon_sym_and_eq] = ACTIONS(7377), + [anon_sym_or_eq] = ACTIONS(7377), + [anon_sym_xor_eq] = ACTIONS(7377), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7377), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7377), + [anon_sym_not_eq] = ACTIONS(7377), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7377), + [anon_sym_override] = ACTIONS(7377), + [anon_sym_requires] = ACTIONS(7377), + [anon_sym_DASH_GT_STAR] = ACTIONS(7377), + }, + [STATE(2964)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3541), + [sym_requires_clause] = STATE(3541), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), + [anon_sym_COMMA] = ACTIONS(8543), + [anon_sym_RPAREN] = ACTIONS(8543), + [aux_sym_preproc_if_token2] = ACTIONS(8543), + [aux_sym_preproc_else_token1] = ACTIONS(8543), + [aux_sym_preproc_elif_token1] = ACTIONS(8541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), + [anon_sym_LPAREN2] = ACTIONS(8543), + [anon_sym_DASH] = ACTIONS(8541), + [anon_sym_PLUS] = ACTIONS(8541), + [anon_sym_STAR] = ACTIONS(8541), + [anon_sym_SLASH] = ACTIONS(8541), + [anon_sym_PERCENT] = ACTIONS(8541), + [anon_sym_PIPE_PIPE] = ACTIONS(8543), + [anon_sym_AMP_AMP] = ACTIONS(8543), + [anon_sym_PIPE] = ACTIONS(8541), + [anon_sym_CARET] = ACTIONS(8541), + [anon_sym_AMP] = ACTIONS(8541), + [anon_sym_EQ_EQ] = ACTIONS(8543), + [anon_sym_BANG_EQ] = ACTIONS(8543), + [anon_sym_GT] = ACTIONS(8541), + [anon_sym_GT_EQ] = ACTIONS(8543), + [anon_sym_LT_EQ] = ACTIONS(8541), + [anon_sym_LT] = ACTIONS(8541), + [anon_sym_LT_LT] = ACTIONS(8541), + [anon_sym_GT_GT] = ACTIONS(8541), + [anon_sym_SEMI] = ACTIONS(8543), + [anon_sym___attribute__] = ACTIONS(8541), + [anon_sym___attribute] = ACTIONS(8541), + [anon_sym_COLON] = ACTIONS(8541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), + [anon_sym_RBRACE] = ACTIONS(8543), + [anon_sym_LBRACK] = ACTIONS(8543), + [anon_sym_EQ] = ACTIONS(8541), + [anon_sym_QMARK] = ACTIONS(8543), + [anon_sym_STAR_EQ] = ACTIONS(8543), + [anon_sym_SLASH_EQ] = ACTIONS(8543), + [anon_sym_PERCENT_EQ] = ACTIONS(8543), + [anon_sym_PLUS_EQ] = ACTIONS(8543), + [anon_sym_DASH_EQ] = ACTIONS(8543), + [anon_sym_LT_LT_EQ] = ACTIONS(8543), + [anon_sym_GT_GT_EQ] = ACTIONS(8543), + [anon_sym_AMP_EQ] = ACTIONS(8543), + [anon_sym_CARET_EQ] = ACTIONS(8543), + [anon_sym_PIPE_EQ] = ACTIONS(8543), + [anon_sym_and_eq] = ACTIONS(8541), + [anon_sym_or_eq] = ACTIONS(8541), + [anon_sym_xor_eq] = ACTIONS(8541), + [anon_sym_LT_EQ_GT] = ACTIONS(8543), + [anon_sym_or] = ACTIONS(8541), + [anon_sym_and] = ACTIONS(8541), + [anon_sym_bitor] = ACTIONS(8541), + [anon_sym_xor] = ACTIONS(8541), + [anon_sym_bitand] = ACTIONS(8541), + [anon_sym_not_eq] = ACTIONS(8541), + [anon_sym_DASH_DASH] = ACTIONS(8543), + [anon_sym_PLUS_PLUS] = ACTIONS(8543), + [anon_sym_DOT] = ACTIONS(8541), + [anon_sym_DOT_STAR] = ACTIONS(8543), + [anon_sym_DASH_GT] = ACTIONS(8543), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + [anon_sym_COLON_RBRACK] = ACTIONS(8543), + }, + [STATE(2965)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4236), + [sym__function_postfix] = STATE(5002), + [sym_trailing_return_type] = STATE(4309), + [sym_requires_clause] = STATE(5002), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_RBRACK] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8089), + [anon_sym_or_eq] = ACTIONS(8089), + [anon_sym_xor_eq] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8576), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8659), + [anon_sym_override] = ACTIONS(8659), + [anon_sym_requires] = ACTIONS(8662), + }, + [STATE(2966)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6237), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6230), + }, + [STATE(2967)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_RPAREN] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7295), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym___extension__] = ACTIONS(7297), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_EQ] = ACTIONS(7295), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7297), + [anon_sym_volatile] = ACTIONS(7297), + [anon_sym_restrict] = ACTIONS(7297), + [anon_sym___restrict__] = ACTIONS(7297), + [anon_sym__Atomic] = ACTIONS(7297), + [anon_sym__Noreturn] = ACTIONS(7297), + [anon_sym_noreturn] = ACTIONS(7297), + [anon_sym__Nonnull] = ACTIONS(7297), + [anon_sym_mutable] = ACTIONS(7297), + [anon_sym_constinit] = ACTIONS(7297), + [anon_sym_consteval] = ACTIONS(7297), + [anon_sym_alignas] = ACTIONS(7297), + [anon_sym__Alignas] = ACTIONS(7297), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_STAR_EQ] = ACTIONS(7297), + [anon_sym_SLASH_EQ] = ACTIONS(7297), + [anon_sym_PERCENT_EQ] = ACTIONS(7297), + [anon_sym_PLUS_EQ] = ACTIONS(7297), + [anon_sym_DASH_EQ] = ACTIONS(7297), + [anon_sym_LT_LT_EQ] = ACTIONS(7297), + [anon_sym_GT_GT_EQ] = ACTIONS(7297), + [anon_sym_AMP_EQ] = ACTIONS(7297), + [anon_sym_CARET_EQ] = ACTIONS(7297), + [anon_sym_PIPE_EQ] = ACTIONS(7297), + [anon_sym_and_eq] = ACTIONS(7297), + [anon_sym_or_eq] = ACTIONS(7297), + [anon_sym_xor_eq] = ACTIONS(7297), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7295), + [anon_sym_and] = ACTIONS(7295), + [anon_sym_bitor] = ACTIONS(7297), + [anon_sym_xor] = ACTIONS(7295), + [anon_sym_bitand] = ACTIONS(7297), + [anon_sym_not_eq] = ACTIONS(7297), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7295), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7297), + [anon_sym_override] = ACTIONS(7297), + [anon_sym_requires] = ACTIONS(7297), + [anon_sym_DASH_GT_STAR] = ACTIONS(7297), + }, + [STATE(2968)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3543), + [sym_requires_clause] = STATE(3543), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(8561), + [anon_sym_RPAREN] = ACTIONS(8561), + [aux_sym_preproc_if_token2] = ACTIONS(8561), + [aux_sym_preproc_else_token1] = ACTIONS(8561), + [aux_sym_preproc_elif_token1] = ACTIONS(8559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), + [anon_sym_LPAREN2] = ACTIONS(8561), + [anon_sym_DASH] = ACTIONS(8559), + [anon_sym_PLUS] = ACTIONS(8559), + [anon_sym_STAR] = ACTIONS(8559), + [anon_sym_SLASH] = ACTIONS(8559), + [anon_sym_PERCENT] = ACTIONS(8559), + [anon_sym_PIPE_PIPE] = ACTIONS(8561), + [anon_sym_AMP_AMP] = ACTIONS(8561), + [anon_sym_PIPE] = ACTIONS(8559), + [anon_sym_CARET] = ACTIONS(8559), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym_EQ_EQ] = ACTIONS(8561), + [anon_sym_BANG_EQ] = ACTIONS(8561), + [anon_sym_GT] = ACTIONS(8559), + [anon_sym_GT_EQ] = ACTIONS(8561), + [anon_sym_LT_EQ] = ACTIONS(8559), + [anon_sym_LT] = ACTIONS(8559), + [anon_sym_LT_LT] = ACTIONS(8559), + [anon_sym_GT_GT] = ACTIONS(8559), + [anon_sym_SEMI] = ACTIONS(8561), + [anon_sym___attribute__] = ACTIONS(8559), + [anon_sym___attribute] = ACTIONS(8559), + [anon_sym_COLON] = ACTIONS(8559), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), + [anon_sym_RBRACE] = ACTIONS(8561), + [anon_sym_LBRACK] = ACTIONS(8561), + [anon_sym_EQ] = ACTIONS(8559), + [anon_sym_QMARK] = ACTIONS(8561), + [anon_sym_STAR_EQ] = ACTIONS(8561), + [anon_sym_SLASH_EQ] = ACTIONS(8561), + [anon_sym_PERCENT_EQ] = ACTIONS(8561), + [anon_sym_PLUS_EQ] = ACTIONS(8561), + [anon_sym_DASH_EQ] = ACTIONS(8561), + [anon_sym_LT_LT_EQ] = ACTIONS(8561), + [anon_sym_GT_GT_EQ] = ACTIONS(8561), + [anon_sym_AMP_EQ] = ACTIONS(8561), + [anon_sym_CARET_EQ] = ACTIONS(8561), + [anon_sym_PIPE_EQ] = ACTIONS(8561), + [anon_sym_and_eq] = ACTIONS(8559), + [anon_sym_or_eq] = ACTIONS(8559), + [anon_sym_xor_eq] = ACTIONS(8559), + [anon_sym_LT_EQ_GT] = ACTIONS(8561), + [anon_sym_or] = ACTIONS(8559), + [anon_sym_and] = ACTIONS(8559), + [anon_sym_bitor] = ACTIONS(8559), + [anon_sym_xor] = ACTIONS(8559), + [anon_sym_bitand] = ACTIONS(8559), + [anon_sym_not_eq] = ACTIONS(8559), + [anon_sym_DASH_DASH] = ACTIONS(8561), + [anon_sym_PLUS_PLUS] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8559), + [anon_sym_DOT_STAR] = ACTIONS(8561), + [anon_sym_DASH_GT] = ACTIONS(8561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(6140), + [anon_sym_COLON_RBRACK] = ACTIONS(8561), + }, + [STATE(2969)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_RPAREN] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7305), + [anon_sym_volatile] = ACTIONS(7305), + [anon_sym_restrict] = ACTIONS(7305), + [anon_sym___restrict__] = ACTIONS(7305), + [anon_sym__Atomic] = ACTIONS(7305), + [anon_sym__Noreturn] = ACTIONS(7305), + [anon_sym_noreturn] = ACTIONS(7305), + [anon_sym__Nonnull] = ACTIONS(7305), + [anon_sym_mutable] = ACTIONS(7305), + [anon_sym_constinit] = ACTIONS(7305), + [anon_sym_consteval] = ACTIONS(7305), + [anon_sym_alignas] = ACTIONS(7305), + [anon_sym__Alignas] = ACTIONS(7305), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_STAR_EQ] = ACTIONS(7305), + [anon_sym_SLASH_EQ] = ACTIONS(7305), + [anon_sym_PERCENT_EQ] = ACTIONS(7305), + [anon_sym_PLUS_EQ] = ACTIONS(7305), + [anon_sym_DASH_EQ] = ACTIONS(7305), + [anon_sym_LT_LT_EQ] = ACTIONS(7305), + [anon_sym_GT_GT_EQ] = ACTIONS(7305), + [anon_sym_AMP_EQ] = ACTIONS(7305), + [anon_sym_CARET_EQ] = ACTIONS(7305), + [anon_sym_PIPE_EQ] = ACTIONS(7305), + [anon_sym_and_eq] = ACTIONS(7305), + [anon_sym_or_eq] = ACTIONS(7305), + [anon_sym_xor_eq] = ACTIONS(7305), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7305), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7305), + [anon_sym_not_eq] = ACTIONS(7305), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7303), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7305), + [anon_sym_override] = ACTIONS(7305), + [anon_sym_requires] = ACTIONS(7305), + [anon_sym_DASH_GT_STAR] = ACTIONS(7305), + }, + [STATE(2970)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + }, + [STATE(2971)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_RPAREN] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_STAR_EQ] = ACTIONS(7381), + [anon_sym_SLASH_EQ] = ACTIONS(7381), + [anon_sym_PERCENT_EQ] = ACTIONS(7381), + [anon_sym_PLUS_EQ] = ACTIONS(7381), + [anon_sym_DASH_EQ] = ACTIONS(7381), + [anon_sym_LT_LT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7381), + [anon_sym_CARET_EQ] = ACTIONS(7381), + [anon_sym_PIPE_EQ] = ACTIONS(7381), + [anon_sym_and_eq] = ACTIONS(7381), + [anon_sym_or_eq] = ACTIONS(7381), + [anon_sym_xor_eq] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + [anon_sym_DASH_GT_STAR] = ACTIONS(7381), + }, + [STATE(2972)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(7017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [aux_sym_preproc_if_token2] = ACTIONS(7019), + [aux_sym_preproc_else_token1] = ACTIONS(7019), + [aux_sym_preproc_elif_token1] = ACTIONS(7017), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7019), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7019), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7019), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7019), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7019), + [anon_sym_GT_GT] = ACTIONS(7019), + [anon_sym___extension__] = ACTIONS(7017), + [anon_sym___attribute__] = ACTIONS(7017), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6443), + [anon_sym_unsigned] = ACTIONS(6443), + [anon_sym_long] = ACTIONS(6443), + [anon_sym_short] = ACTIONS(6443), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_RBRACK] = ACTIONS(7019), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7017), + [anon_sym_volatile] = ACTIONS(7017), + [anon_sym_restrict] = ACTIONS(7017), + [anon_sym___restrict__] = ACTIONS(7017), + [anon_sym__Atomic] = ACTIONS(7017), + [anon_sym__Noreturn] = ACTIONS(7017), + [anon_sym_noreturn] = ACTIONS(7017), + [anon_sym__Nonnull] = ACTIONS(7017), + [anon_sym_mutable] = ACTIONS(7017), + [anon_sym_constinit] = ACTIONS(7017), + [anon_sym_consteval] = ACTIONS(7017), + [anon_sym_alignas] = ACTIONS(7017), + [anon_sym__Alignas] = ACTIONS(7017), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7017), + [anon_sym_and] = ACTIONS(7017), + [anon_sym_bitor] = ACTIONS(7017), + [anon_sym_xor] = ACTIONS(7017), + [anon_sym_bitand] = ACTIONS(7017), + [anon_sym_not_eq] = ACTIONS(7017), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7017), + [anon_sym_override] = ACTIONS(7017), + [anon_sym_requires] = ACTIONS(7017), + }, + [STATE(2973)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_GT2] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2974)] = { + [sym_decltype_auto] = STATE(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8268), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_GT2] = ACTIONS(6800), + }, + [STATE(2975)] = { + [sym_virtual_specifier] = STATE(3248), + [sym__function_postfix] = STATE(3528), + [sym_requires_clause] = STATE(3528), + [aux_sym__function_postfix_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(8087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [aux_sym_preproc_if_token2] = ACTIONS(8089), + [aux_sym_preproc_else_token1] = ACTIONS(8089), + [aux_sym_preproc_elif_token1] = ACTIONS(8087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(8087), + [anon_sym___attribute] = ACTIONS(8087), + [anon_sym_COLON] = ACTIONS(8087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_LBRACK] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8087), + [anon_sym_or_eq] = ACTIONS(8087), + [anon_sym_xor_eq] = ACTIONS(8087), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8087), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8087), + [anon_sym_not_eq] = ACTIONS(8087), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8102), + [anon_sym_override] = ACTIONS(8102), + [anon_sym_requires] = ACTIONS(8105), + [anon_sym_COLON_RBRACK] = ACTIONS(8089), + }, + [STATE(2976)] = { + [sym_identifier] = ACTIONS(8665), + [anon_sym_LPAREN2] = ACTIONS(8667), + [anon_sym_TILDE] = ACTIONS(8667), + [anon_sym_STAR] = ACTIONS(8667), + [anon_sym_PIPE_PIPE] = ACTIONS(8667), + [anon_sym_AMP_AMP] = ACTIONS(8667), + [anon_sym_AMP] = ACTIONS(8665), + [anon_sym___extension__] = ACTIONS(8665), + [anon_sym_virtual] = ACTIONS(8665), + [anon_sym_extern] = ACTIONS(8665), + [anon_sym___attribute__] = ACTIONS(8665), + [anon_sym___attribute] = ACTIONS(8665), + [anon_sym_using] = ACTIONS(8665), + [anon_sym_COLON_COLON] = ACTIONS(8667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8667), + [anon_sym___declspec] = ACTIONS(8665), + [anon_sym___based] = ACTIONS(8665), + [anon_sym___cdecl] = ACTIONS(8665), + [anon_sym___clrcall] = ACTIONS(8665), + [anon_sym___stdcall] = ACTIONS(8665), + [anon_sym___fastcall] = ACTIONS(8665), + [anon_sym___thiscall] = ACTIONS(8665), + [anon_sym___vectorcall] = ACTIONS(8665), + [anon_sym_LBRACE] = ACTIONS(8667), + [anon_sym_signed] = ACTIONS(8665), + [anon_sym_unsigned] = ACTIONS(8665), + [anon_sym_long] = ACTIONS(8665), + [anon_sym_short] = ACTIONS(8665), + [anon_sym_LBRACK] = ACTIONS(8665), + [anon_sym_static] = ACTIONS(8665), + [anon_sym_register] = ACTIONS(8665), + [anon_sym_inline] = ACTIONS(8665), + [anon_sym___inline] = ACTIONS(8665), + [anon_sym___inline__] = ACTIONS(8665), + [anon_sym___forceinline] = ACTIONS(8665), + [anon_sym_thread_local] = ACTIONS(8665), + [anon_sym___thread] = ACTIONS(8665), + [anon_sym_const] = ACTIONS(8665), + [anon_sym_constexpr] = ACTIONS(8665), + [anon_sym_volatile] = ACTIONS(8665), + [anon_sym_restrict] = ACTIONS(8665), + [anon_sym___restrict__] = ACTIONS(8665), + [anon_sym__Atomic] = ACTIONS(8665), + [anon_sym__Noreturn] = ACTIONS(8665), + [anon_sym_noreturn] = ACTIONS(8665), + [anon_sym__Nonnull] = ACTIONS(8665), + [anon_sym_mutable] = ACTIONS(8665), + [anon_sym_constinit] = ACTIONS(8665), + [anon_sym_consteval] = ACTIONS(8665), + [anon_sym_alignas] = ACTIONS(8665), + [anon_sym__Alignas] = ACTIONS(8665), + [sym_primitive_type] = ACTIONS(8665), + [anon_sym_enum] = ACTIONS(8665), + [anon_sym_class] = ACTIONS(8665), + [anon_sym_struct] = ACTIONS(8665), + [anon_sym_union] = ACTIONS(8665), + [anon_sym_or] = ACTIONS(8665), + [anon_sym_and] = ACTIONS(8665), + [anon_sym_typename] = ACTIONS(8665), + [anon_sym_DASH_GT] = ACTIONS(8667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8665), + [anon_sym_decltype] = ACTIONS(8665), + [anon_sym_explicit] = ACTIONS(8665), + [anon_sym_template] = ACTIONS(8665), + [anon_sym_operator] = ACTIONS(8665), + [anon_sym_friend] = ACTIONS(8665), + [anon_sym_noexcept] = ACTIONS(8665), + [anon_sym_throw] = ACTIONS(8665), + [anon_sym_concept] = ACTIONS(8665), + [anon_sym_LBRACK_COLON] = ACTIONS(8667), + }, + [STATE(2977)] = { + [sym_attribute_specifier] = STATE(4079), + [sym_attribute_declaration] = STATE(4488), + [sym_gnu_asm_expression] = STATE(8997), + [sym_virtual_specifier] = STATE(4611), + [sym__function_attributes_end] = STATE(4245), + [sym__function_postfix] = STATE(4983), + [sym_trailing_return_type] = STATE(4310), + [sym_requires_clause] = STATE(4983), + [aux_sym_type_definition_repeat1] = STATE(4079), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [aux_sym__function_postfix_repeat1] = STATE(4611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6326), + [anon_sym___attribute] = ACTIONS(6328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_RBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7544), + [anon_sym_or_eq] = ACTIONS(7544), + [anon_sym_xor_eq] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6349), + [anon_sym_override] = ACTIONS(6349), + [anon_sym_requires] = ACTIONS(6351), + }, + [STATE(2978)] = { + [sym_template_argument_list] = STATE(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), + [anon_sym_COMMA] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6205), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6205), + [anon_sym_BANG_EQ] = ACTIONS(6205), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6205), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(8537), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_RBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6205), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6205), + [anon_sym_or] = ACTIONS(6212), + [anon_sym_and] = ACTIONS(6212), + [anon_sym_bitor] = ACTIONS(6205), + [anon_sym_xor] = ACTIONS(6212), + [anon_sym_bitand] = ACTIONS(6205), + [anon_sym_not_eq] = ACTIONS(6205), + [anon_sym_DASH_DASH] = ACTIONS(6205), + [anon_sym_PLUS_PLUS] = ACTIONS(6205), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + }, + [STATE(2979)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_RPAREN] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7337), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7337), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7337), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7337), + [anon_sym_GT_GT] = ACTIONS(7337), + [anon_sym___extension__] = ACTIONS(7339), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_EQ] = ACTIONS(7337), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7339), + [anon_sym_volatile] = ACTIONS(7339), + [anon_sym_restrict] = ACTIONS(7339), + [anon_sym___restrict__] = ACTIONS(7339), + [anon_sym__Atomic] = ACTIONS(7339), + [anon_sym__Noreturn] = ACTIONS(7339), + [anon_sym_noreturn] = ACTIONS(7339), + [anon_sym__Nonnull] = ACTIONS(7339), + [anon_sym_mutable] = ACTIONS(7339), + [anon_sym_constinit] = ACTIONS(7339), + [anon_sym_consteval] = ACTIONS(7339), + [anon_sym_alignas] = ACTIONS(7339), + [anon_sym__Alignas] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_STAR_EQ] = ACTIONS(7339), + [anon_sym_SLASH_EQ] = ACTIONS(7339), + [anon_sym_PERCENT_EQ] = ACTIONS(7339), + [anon_sym_PLUS_EQ] = ACTIONS(7339), + [anon_sym_DASH_EQ] = ACTIONS(7339), + [anon_sym_LT_LT_EQ] = ACTIONS(7339), + [anon_sym_GT_GT_EQ] = ACTIONS(7339), + [anon_sym_AMP_EQ] = ACTIONS(7339), + [anon_sym_CARET_EQ] = ACTIONS(7339), + [anon_sym_PIPE_EQ] = ACTIONS(7339), + [anon_sym_and_eq] = ACTIONS(7339), + [anon_sym_or_eq] = ACTIONS(7339), + [anon_sym_xor_eq] = ACTIONS(7339), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7337), + [anon_sym_and] = ACTIONS(7337), + [anon_sym_bitor] = ACTIONS(7339), + [anon_sym_xor] = ACTIONS(7337), + [anon_sym_bitand] = ACTIONS(7339), + [anon_sym_not_eq] = ACTIONS(7339), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7337), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7339), + [anon_sym_override] = ACTIONS(7339), + [anon_sym_requires] = ACTIONS(7339), + [anon_sym_DASH_GT_STAR] = ACTIONS(7339), + }, + [STATE(2980)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_TILDE] = ACTIONS(8631), + [anon_sym_STAR] = ACTIONS(8631), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym___extension__] = ACTIONS(8629), + [anon_sym_virtual] = ACTIONS(8629), + [anon_sym_extern] = ACTIONS(8629), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_using] = ACTIONS(8629), + [anon_sym_COLON_COLON] = ACTIONS(8631), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), + [anon_sym___declspec] = ACTIONS(8629), + [anon_sym___based] = ACTIONS(8629), + [anon_sym___cdecl] = ACTIONS(8629), + [anon_sym___clrcall] = ACTIONS(8629), + [anon_sym___stdcall] = ACTIONS(8629), + [anon_sym___fastcall] = ACTIONS(8629), + [anon_sym___thiscall] = ACTIONS(8629), + [anon_sym___vectorcall] = ACTIONS(8629), + [anon_sym_LBRACE] = ACTIONS(8631), + [anon_sym_signed] = ACTIONS(8629), + [anon_sym_unsigned] = ACTIONS(8629), + [anon_sym_long] = ACTIONS(8629), + [anon_sym_short] = ACTIONS(8629), + [anon_sym_LBRACK] = ACTIONS(8629), + [anon_sym_static] = ACTIONS(8629), + [anon_sym_register] = ACTIONS(8629), + [anon_sym_inline] = ACTIONS(8629), + [anon_sym___inline] = ACTIONS(8629), + [anon_sym___inline__] = ACTIONS(8629), + [anon_sym___forceinline] = ACTIONS(8629), + [anon_sym_thread_local] = ACTIONS(8629), + [anon_sym___thread] = ACTIONS(8629), + [anon_sym_const] = ACTIONS(8629), + [anon_sym_constexpr] = ACTIONS(8629), + [anon_sym_volatile] = ACTIONS(8629), + [anon_sym_restrict] = ACTIONS(8629), + [anon_sym___restrict__] = ACTIONS(8629), + [anon_sym__Atomic] = ACTIONS(8629), + [anon_sym__Noreturn] = ACTIONS(8629), + [anon_sym_noreturn] = ACTIONS(8629), + [anon_sym__Nonnull] = ACTIONS(8629), + [anon_sym_mutable] = ACTIONS(8629), + [anon_sym_constinit] = ACTIONS(8629), + [anon_sym_consteval] = ACTIONS(8629), + [anon_sym_alignas] = ACTIONS(8629), + [anon_sym__Alignas] = ACTIONS(8629), + [sym_primitive_type] = ACTIONS(8629), + [anon_sym_enum] = ACTIONS(8629), + [anon_sym_class] = ACTIONS(8629), + [anon_sym_struct] = ACTIONS(8629), + [anon_sym_union] = ACTIONS(8629), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_typename] = ACTIONS(8629), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8629), + [anon_sym_decltype] = ACTIONS(8629), + [anon_sym_explicit] = ACTIONS(8629), + [anon_sym_template] = ACTIONS(8629), + [anon_sym_operator] = ACTIONS(8629), + [anon_sym_friend] = ACTIONS(8629), + [anon_sym_noexcept] = ACTIONS(8629), + [anon_sym_throw] = ACTIONS(8629), + [anon_sym_concept] = ACTIONS(8629), + [anon_sym_LBRACK_COLON] = ACTIONS(8631), + }, + [STATE(2981)] = { + [sym_decltype_auto] = STATE(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8268), + [anon_sym_decltype] = ACTIONS(6644), + [anon_sym_GT2] = ACTIONS(6800), + }, + [STATE(2982)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7191), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7191), + [anon_sym_GT_GT] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_RBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_mutable] = ACTIONS(7193), + [anon_sym_constinit] = ACTIONS(7193), + [anon_sym_consteval] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7193), + [anon_sym_or_eq] = ACTIONS(7193), + [anon_sym_xor_eq] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7191), + [anon_sym_and] = ACTIONS(7191), + [anon_sym_bitor] = ACTIONS(7193), + [anon_sym_xor] = ACTIONS(7191), + [anon_sym_bitand] = ACTIONS(7193), + [anon_sym_not_eq] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7193), + [anon_sym_override] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7193), + }, + [STATE(2983)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(2984)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(3464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_RPAREN] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7019), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7019), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7019), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7019), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7019), + [anon_sym_GT_GT] = ACTIONS(7019), + [anon_sym_SEMI] = ACTIONS(7019), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7019), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_RBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6503), + [anon_sym_unsigned] = ACTIONS(6503), + [anon_sym_long] = ACTIONS(6503), + [anon_sym_short] = ACTIONS(6503), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7019), + [anon_sym_and] = ACTIONS(7019), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7019), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + [anon_sym_COLON_RBRACK] = ACTIONS(7019), + }, + [STATE(2985)] = { + [sym_template_argument_list] = STATE(2848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6753), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6753), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(8390), + [anon_sym_LT_LT] = ACTIONS(6753), + [anon_sym_GT_GT] = ACTIONS(6753), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6753), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_STAR_EQ] = ACTIONS(6758), + [anon_sym_SLASH_EQ] = ACTIONS(6758), + [anon_sym_PERCENT_EQ] = ACTIONS(6758), + [anon_sym_PLUS_EQ] = ACTIONS(6758), + [anon_sym_DASH_EQ] = ACTIONS(6758), + [anon_sym_LT_LT_EQ] = ACTIONS(6758), + [anon_sym_GT_GT_EQ] = ACTIONS(6758), + [anon_sym_AMP_EQ] = ACTIONS(6758), + [anon_sym_CARET_EQ] = ACTIONS(6758), + [anon_sym_PIPE_EQ] = ACTIONS(6758), + [anon_sym_and_eq] = ACTIONS(6758), + [anon_sym_or_eq] = ACTIONS(6758), + [anon_sym_xor_eq] = ACTIONS(6758), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6758), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6758), + [anon_sym_not_eq] = ACTIONS(6758), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6753), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6758), + }, + [STATE(2986)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_RBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + }, + [STATE(2987)] = { + [sym_decltype_auto] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8266), + [anon_sym_decltype] = ACTIONS(6680), + }, + [STATE(2988)] = { + [sym_template_argument_list] = STATE(2510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6755), + [anon_sym_CARET] = ACTIONS(6755), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6755), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6755), + [anon_sym_LT] = ACTIONS(7640), + [anon_sym_LT_LT] = ACTIONS(6755), + [anon_sym_GT_GT] = ACTIONS(6755), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6755), + [anon_sym_and] = ACTIONS(6755), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6755), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_DOT] = ACTIONS(6755), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6755), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), + }, + [STATE(2989)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7227), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7227), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7227), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7227), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7227), + [anon_sym_GT_GT] = ACTIONS(7227), + [anon_sym___extension__] = ACTIONS(7229), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_EQ] = ACTIONS(7227), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7229), + [anon_sym_volatile] = ACTIONS(7229), + [anon_sym_restrict] = ACTIONS(7229), + [anon_sym___restrict__] = ACTIONS(7229), + [anon_sym__Atomic] = ACTIONS(7229), + [anon_sym__Noreturn] = ACTIONS(7229), + [anon_sym_noreturn] = ACTIONS(7229), + [anon_sym__Nonnull] = ACTIONS(7229), + [anon_sym_mutable] = ACTIONS(7229), + [anon_sym_constinit] = ACTIONS(7229), + [anon_sym_consteval] = ACTIONS(7229), + [anon_sym_alignas] = ACTIONS(7229), + [anon_sym__Alignas] = ACTIONS(7229), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_STAR_EQ] = ACTIONS(7229), + [anon_sym_SLASH_EQ] = ACTIONS(7229), + [anon_sym_PERCENT_EQ] = ACTIONS(7229), + [anon_sym_PLUS_EQ] = ACTIONS(7229), + [anon_sym_DASH_EQ] = ACTIONS(7229), + [anon_sym_LT_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_GT_EQ] = ACTIONS(7227), + [anon_sym_AMP_EQ] = ACTIONS(7229), + [anon_sym_CARET_EQ] = ACTIONS(7229), + [anon_sym_PIPE_EQ] = ACTIONS(7229), + [anon_sym_and_eq] = ACTIONS(7229), + [anon_sym_or_eq] = ACTIONS(7229), + [anon_sym_xor_eq] = ACTIONS(7229), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7227), + [anon_sym_and] = ACTIONS(7227), + [anon_sym_bitor] = ACTIONS(7229), + [anon_sym_xor] = ACTIONS(7227), + [anon_sym_bitand] = ACTIONS(7229), + [anon_sym_not_eq] = ACTIONS(7229), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7229), + [anon_sym_override] = ACTIONS(7229), + [anon_sym_GT2] = ACTIONS(7229), + [anon_sym_requires] = ACTIONS(7229), + }, + [STATE(2990)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7231), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7231), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7233), + [anon_sym_or_eq] = ACTIONS(7233), + [anon_sym_xor_eq] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_GT2] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), + }, + [STATE(2991)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(2992)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6235), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6235), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_GT2] = ACTIONS(6230), + }, + [STATE(2993)] = { + [sym_identifier] = ACTIONS(7333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_RPAREN] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7335), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7335), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7335), + [anon_sym_GT_GT] = ACTIONS(7335), + [anon_sym_SEMI] = ACTIONS(7335), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_COLON] = ACTIONS(7333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7335), + [anon_sym___based] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_RBRACE] = ACTIONS(7335), + [anon_sym_signed] = ACTIONS(7333), + [anon_sym_unsigned] = ACTIONS(7333), + [anon_sym_long] = ACTIONS(7333), + [anon_sym_short] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [sym_primitive_type] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7335), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), + [anon_sym_COLON_RBRACK] = ACTIONS(7335), + }, + [STATE(2994)] = { + [sym_identifier] = ACTIONS(7337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_RPAREN] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7339), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7339), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7339), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7339), + [anon_sym_GT_GT] = ACTIONS(7339), + [anon_sym_SEMI] = ACTIONS(7339), + [anon_sym___extension__] = ACTIONS(7337), + [anon_sym___attribute__] = ACTIONS(7337), + [anon_sym___attribute] = ACTIONS(7337), + [anon_sym_COLON] = ACTIONS(7337), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7339), + [anon_sym___based] = ACTIONS(7337), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_RBRACE] = ACTIONS(7339), + [anon_sym_signed] = ACTIONS(7337), + [anon_sym_unsigned] = ACTIONS(7337), + [anon_sym_long] = ACTIONS(7337), + [anon_sym_short] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7337), + [anon_sym_volatile] = ACTIONS(7337), + [anon_sym_restrict] = ACTIONS(7337), + [anon_sym___restrict__] = ACTIONS(7337), + [anon_sym__Atomic] = ACTIONS(7337), + [anon_sym__Noreturn] = ACTIONS(7337), + [anon_sym_noreturn] = ACTIONS(7337), + [anon_sym__Nonnull] = ACTIONS(7337), + [anon_sym_mutable] = ACTIONS(7337), + [anon_sym_constinit] = ACTIONS(7337), + [anon_sym_consteval] = ACTIONS(7337), + [anon_sym_alignas] = ACTIONS(7337), + [anon_sym__Alignas] = ACTIONS(7337), + [sym_primitive_type] = ACTIONS(7337), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7337), + [anon_sym_and] = ACTIONS(7337), + [anon_sym_bitor] = ACTIONS(7337), + [anon_sym_xor] = ACTIONS(7337), + [anon_sym_bitand] = ACTIONS(7337), + [anon_sym_not_eq] = ACTIONS(7337), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7339), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7337), + [anon_sym_override] = ACTIONS(7337), + [anon_sym_requires] = ACTIONS(7337), + [anon_sym_COLON_RBRACK] = ACTIONS(7339), + }, + [STATE(2995)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_RBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7281), + [anon_sym_volatile] = ACTIONS(7281), + [anon_sym_restrict] = ACTIONS(7281), + [anon_sym___restrict__] = ACTIONS(7281), + [anon_sym__Atomic] = ACTIONS(7281), + [anon_sym__Noreturn] = ACTIONS(7281), + [anon_sym_noreturn] = ACTIONS(7281), + [anon_sym__Nonnull] = ACTIONS(7281), + [anon_sym_mutable] = ACTIONS(7281), + [anon_sym_constinit] = ACTIONS(7281), + [anon_sym_consteval] = ACTIONS(7281), + [anon_sym_alignas] = ACTIONS(7281), + [anon_sym__Alignas] = ACTIONS(7281), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7281), + [anon_sym_or_eq] = ACTIONS(7281), + [anon_sym_xor_eq] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7281), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7281), + [anon_sym_not_eq] = ACTIONS(7281), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7281), + [anon_sym_override] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7281), + }, + [STATE(2996)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_RBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7423), + [anon_sym_volatile] = ACTIONS(7423), + [anon_sym_restrict] = ACTIONS(7423), + [anon_sym___restrict__] = ACTIONS(7423), + [anon_sym__Atomic] = ACTIONS(7423), + [anon_sym__Noreturn] = ACTIONS(7423), + [anon_sym_noreturn] = ACTIONS(7423), + [anon_sym__Nonnull] = ACTIONS(7423), + [anon_sym_mutable] = ACTIONS(7423), + [anon_sym_constinit] = ACTIONS(7423), + [anon_sym_consteval] = ACTIONS(7423), + [anon_sym_alignas] = ACTIONS(7423), + [anon_sym__Alignas] = ACTIONS(7423), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7423), + [anon_sym_or_eq] = ACTIONS(7423), + [anon_sym_xor_eq] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7423), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7423), + [anon_sym_not_eq] = ACTIONS(7423), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7423), + [anon_sym_override] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7423), + }, + [STATE(2997)] = { + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7343), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7341), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym___based] = ACTIONS(7341), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_signed] = ACTIONS(7341), + [anon_sym_unsigned] = ACTIONS(7341), + [anon_sym_long] = ACTIONS(7341), + [anon_sym_short] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7341), + [anon_sym_volatile] = ACTIONS(7341), + [anon_sym_restrict] = ACTIONS(7341), + [anon_sym___restrict__] = ACTIONS(7341), + [anon_sym__Atomic] = ACTIONS(7341), + [anon_sym__Noreturn] = ACTIONS(7341), + [anon_sym_noreturn] = ACTIONS(7341), + [anon_sym__Nonnull] = ACTIONS(7341), + [anon_sym_mutable] = ACTIONS(7341), + [anon_sym_constinit] = ACTIONS(7341), + [anon_sym_consteval] = ACTIONS(7341), + [anon_sym_alignas] = ACTIONS(7341), + [anon_sym__Alignas] = ACTIONS(7341), + [sym_primitive_type] = ACTIONS(7341), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), + }, + [STATE(2998)] = { + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7281), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7281), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7281), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7281), + [anon_sym_GT_GT] = ACTIONS(7281), + [anon_sym_SEMI] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), + [anon_sym___based] = ACTIONS(7279), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_RBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(7279), + [anon_sym_unsigned] = ACTIONS(7279), + [anon_sym_long] = ACTIONS(7279), + [anon_sym_short] = ACTIONS(7279), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [sym_primitive_type] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_COLON_RBRACK] = ACTIONS(7281), + }, + [STATE(2999)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7325), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7325), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7325), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_RBRACK] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_STAR_EQ] = ACTIONS(7327), + [anon_sym_SLASH_EQ] = ACTIONS(7327), + [anon_sym_PERCENT_EQ] = ACTIONS(7327), + [anon_sym_PLUS_EQ] = ACTIONS(7327), + [anon_sym_DASH_EQ] = ACTIONS(7327), + [anon_sym_LT_LT_EQ] = ACTIONS(7327), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7327), + [anon_sym_CARET_EQ] = ACTIONS(7327), + [anon_sym_PIPE_EQ] = ACTIONS(7327), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7325), + [anon_sym_and] = ACTIONS(7325), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7325), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + }, + [STATE(3000)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [aux_sym_preproc_if_token2] = ACTIONS(6846), + [aux_sym_preproc_else_token1] = ACTIONS(6846), + [aux_sym_preproc_elif_token1] = ACTIONS(6844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6846), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6846), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6846), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6846), + [anon_sym_GT_GT] = ACTIONS(6846), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6846), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_LT_EQ_GT] = ACTIONS(6846), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_bitor] = ACTIONS(6844), + [anon_sym_xor] = ACTIONS(6844), + [anon_sym_bitand] = ACTIONS(6844), + [anon_sym_not_eq] = ACTIONS(6844), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_DOT_STAR] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6844), + [anon_sym_override] = ACTIONS(6844), + [anon_sym_requires] = ACTIONS(6844), + [anon_sym_COLON_RBRACK] = ACTIONS(6846), + }, + [STATE(3001)] = { + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(7421), + [anon_sym___attribute] = ACTIONS(7421), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), + [anon_sym___based] = ACTIONS(7421), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_RBRACE] = ACTIONS(7423), + [anon_sym_signed] = ACTIONS(7421), + [anon_sym_unsigned] = ACTIONS(7421), + [anon_sym_long] = ACTIONS(7421), + [anon_sym_short] = ACTIONS(7421), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [sym_primitive_type] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_COLON_RBRACK] = ACTIONS(7423), + }, + [STATE(3002)] = { + [sym_identifier] = ACTIONS(7325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_RPAREN] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7325), + [anon_sym___attribute__] = ACTIONS(7325), + [anon_sym___attribute] = ACTIONS(7325), + [anon_sym_COLON] = ACTIONS(7325), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7325), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_RBRACE] = ACTIONS(7327), + [anon_sym_signed] = ACTIONS(7325), + [anon_sym_unsigned] = ACTIONS(7325), + [anon_sym_long] = ACTIONS(7325), + [anon_sym_short] = ACTIONS(7325), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7325), + [anon_sym_volatile] = ACTIONS(7325), + [anon_sym_restrict] = ACTIONS(7325), + [anon_sym___restrict__] = ACTIONS(7325), + [anon_sym__Atomic] = ACTIONS(7325), + [anon_sym__Noreturn] = ACTIONS(7325), + [anon_sym_noreturn] = ACTIONS(7325), + [anon_sym__Nonnull] = ACTIONS(7325), + [anon_sym_mutable] = ACTIONS(7325), + [anon_sym_constinit] = ACTIONS(7325), + [anon_sym_consteval] = ACTIONS(7325), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [sym_primitive_type] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7325), + [anon_sym_and] = ACTIONS(7325), + [anon_sym_bitor] = ACTIONS(7325), + [anon_sym_xor] = ACTIONS(7325), + [anon_sym_bitand] = ACTIONS(7325), + [anon_sym_not_eq] = ACTIONS(7325), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7325), + [anon_sym_override] = ACTIONS(7325), + [anon_sym_requires] = ACTIONS(7325), + [anon_sym_COLON_RBRACK] = ACTIONS(7327), + }, + [STATE(3003)] = { + [sym_identifier] = ACTIONS(7329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_RPAREN] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym_SEMI] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7329), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7331), + [anon_sym___based] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_RBRACE] = ACTIONS(7331), + [anon_sym_signed] = ACTIONS(7329), + [anon_sym_unsigned] = ACTIONS(7329), + [anon_sym_long] = ACTIONS(7329), + [anon_sym_short] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [sym_primitive_type] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_COLON_RBRACK] = ACTIONS(7331), + }, + [STATE(3004)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_RBRACK] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_STAR_EQ] = ACTIONS(7331), + [anon_sym_SLASH_EQ] = ACTIONS(7331), + [anon_sym_PERCENT_EQ] = ACTIONS(7331), + [anon_sym_PLUS_EQ] = ACTIONS(7331), + [anon_sym_DASH_EQ] = ACTIONS(7331), + [anon_sym_LT_LT_EQ] = ACTIONS(7331), + [anon_sym_GT_GT_EQ] = ACTIONS(7331), + [anon_sym_AMP_EQ] = ACTIONS(7331), + [anon_sym_CARET_EQ] = ACTIONS(7331), + [anon_sym_PIPE_EQ] = ACTIONS(7331), + [anon_sym_and_eq] = ACTIONS(7331), + [anon_sym_or_eq] = ACTIONS(7331), + [anon_sym_xor_eq] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + }, + [STATE(3005)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_RBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7237), + [anon_sym_override] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7237), + }, + [STATE(3006)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7245), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7245), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7245), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7245), + [anon_sym_GT_GT] = ACTIONS(7245), + [anon_sym___extension__] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_RBRACK] = ACTIONS(7247), + [anon_sym_EQ] = ACTIONS(7245), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7247), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym___restrict__] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym__Noreturn] = ACTIONS(7247), + [anon_sym_noreturn] = ACTIONS(7247), + [anon_sym__Nonnull] = ACTIONS(7247), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_constinit] = ACTIONS(7247), + [anon_sym_consteval] = ACTIONS(7247), + [anon_sym_alignas] = ACTIONS(7247), + [anon_sym__Alignas] = ACTIONS(7247), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7247), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_and_eq] = ACTIONS(7247), + [anon_sym_or_eq] = ACTIONS(7247), + [anon_sym_xor_eq] = ACTIONS(7247), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7245), + [anon_sym_and] = ACTIONS(7245), + [anon_sym_bitor] = ACTIONS(7247), + [anon_sym_xor] = ACTIONS(7245), + [anon_sym_bitand] = ACTIONS(7247), + [anon_sym_not_eq] = ACTIONS(7247), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(7247), + [anon_sym_requires] = ACTIONS(7247), + }, + [STATE(3007)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7263), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7265), + [anon_sym_volatile] = ACTIONS(7265), + [anon_sym_restrict] = ACTIONS(7265), + [anon_sym___restrict__] = ACTIONS(7265), + [anon_sym__Atomic] = ACTIONS(7265), + [anon_sym__Noreturn] = ACTIONS(7265), + [anon_sym_noreturn] = ACTIONS(7265), + [anon_sym__Nonnull] = ACTIONS(7265), + [anon_sym_mutable] = ACTIONS(7265), + [anon_sym_constinit] = ACTIONS(7265), + [anon_sym_consteval] = ACTIONS(7265), + [anon_sym_alignas] = ACTIONS(7265), + [anon_sym__Alignas] = ACTIONS(7265), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7263), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7265), + [anon_sym_or_eq] = ACTIONS(7265), + [anon_sym_xor_eq] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7265), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7265), + [anon_sym_not_eq] = ACTIONS(7265), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7265), + [anon_sym_override] = ACTIONS(7265), + [anon_sym_GT2] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7265), + }, + [STATE(3008)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(3013), + [sym__declarator] = STATE(8702), + [sym__abstract_declarator] = STATE(8875), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3990), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4601), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3990), + [aux_sym_pointer_declarator_repeat1] = STATE(3013), + [sym_identifier] = ACTIONS(7868), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_AMP_AMP] = ACTIONS(5305), + [anon_sym_AMP] = ACTIONS(5307), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3009)] = { + [sym_identifier] = ACTIONS(7345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_RPAREN] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7347), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym_SEMI] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7345), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7345), + [anon_sym_COLON] = ACTIONS(7345), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7347), + [anon_sym___based] = ACTIONS(7345), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_RBRACE] = ACTIONS(7347), + [anon_sym_signed] = ACTIONS(7345), + [anon_sym_unsigned] = ACTIONS(7345), + [anon_sym_long] = ACTIONS(7345), + [anon_sym_short] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7345), + [anon_sym_volatile] = ACTIONS(7345), + [anon_sym_restrict] = ACTIONS(7345), + [anon_sym___restrict__] = ACTIONS(7345), + [anon_sym__Atomic] = ACTIONS(7345), + [anon_sym__Noreturn] = ACTIONS(7345), + [anon_sym_noreturn] = ACTIONS(7345), + [anon_sym__Nonnull] = ACTIONS(7345), + [anon_sym_mutable] = ACTIONS(7345), + [anon_sym_constinit] = ACTIONS(7345), + [anon_sym_consteval] = ACTIONS(7345), + [anon_sym_alignas] = ACTIONS(7345), + [anon_sym__Alignas] = ACTIONS(7345), + [sym_primitive_type] = ACTIONS(7345), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + [anon_sym_COLON_RBRACK] = ACTIONS(7347), + }, + [STATE(3010)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7267), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7267), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7267), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7267), + [anon_sym_GT_GT] = ACTIONS(7267), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_STAR_EQ] = ACTIONS(7269), + [anon_sym_SLASH_EQ] = ACTIONS(7269), + [anon_sym_PERCENT_EQ] = ACTIONS(7269), + [anon_sym_PLUS_EQ] = ACTIONS(7269), + [anon_sym_DASH_EQ] = ACTIONS(7269), + [anon_sym_LT_LT_EQ] = ACTIONS(7269), + [anon_sym_GT_GT_EQ] = ACTIONS(7267), + [anon_sym_AMP_EQ] = ACTIONS(7269), + [anon_sym_CARET_EQ] = ACTIONS(7269), + [anon_sym_PIPE_EQ] = ACTIONS(7269), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7267), + [anon_sym_and] = ACTIONS(7267), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7267), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_GT2] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + }, + [STATE(3011)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7295), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym___extension__] = ACTIONS(7297), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_RBRACK] = ACTIONS(7297), + [anon_sym_EQ] = ACTIONS(7295), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7297), + [anon_sym_volatile] = ACTIONS(7297), + [anon_sym_restrict] = ACTIONS(7297), + [anon_sym___restrict__] = ACTIONS(7297), + [anon_sym__Atomic] = ACTIONS(7297), + [anon_sym__Noreturn] = ACTIONS(7297), + [anon_sym_noreturn] = ACTIONS(7297), + [anon_sym__Nonnull] = ACTIONS(7297), + [anon_sym_mutable] = ACTIONS(7297), + [anon_sym_constinit] = ACTIONS(7297), + [anon_sym_consteval] = ACTIONS(7297), + [anon_sym_alignas] = ACTIONS(7297), + [anon_sym__Alignas] = ACTIONS(7297), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_STAR_EQ] = ACTIONS(7297), + [anon_sym_SLASH_EQ] = ACTIONS(7297), + [anon_sym_PERCENT_EQ] = ACTIONS(7297), + [anon_sym_PLUS_EQ] = ACTIONS(7297), + [anon_sym_DASH_EQ] = ACTIONS(7297), + [anon_sym_LT_LT_EQ] = ACTIONS(7297), + [anon_sym_GT_GT_EQ] = ACTIONS(7297), + [anon_sym_AMP_EQ] = ACTIONS(7297), + [anon_sym_CARET_EQ] = ACTIONS(7297), + [anon_sym_PIPE_EQ] = ACTIONS(7297), + [anon_sym_and_eq] = ACTIONS(7297), + [anon_sym_or_eq] = ACTIONS(7297), + [anon_sym_xor_eq] = ACTIONS(7297), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7295), + [anon_sym_and] = ACTIONS(7295), + [anon_sym_bitor] = ACTIONS(7297), + [anon_sym_xor] = ACTIONS(7295), + [anon_sym_bitand] = ACTIONS(7297), + [anon_sym_not_eq] = ACTIONS(7297), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7297), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7297), + [anon_sym_override] = ACTIONS(7297), + [anon_sym_requires] = ACTIONS(7297), + }, + [STATE(3012)] = { + [sym_identifier] = ACTIONS(7235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7237), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7237), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7237), + [anon_sym_GT_GT] = ACTIONS(7237), + [anon_sym_SEMI] = ACTIONS(7237), + [anon_sym___extension__] = ACTIONS(7235), + [anon_sym___attribute__] = ACTIONS(7235), + [anon_sym___attribute] = ACTIONS(7235), + [anon_sym_COLON] = ACTIONS(7235), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), + [anon_sym___based] = ACTIONS(7235), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_RBRACE] = ACTIONS(7237), + [anon_sym_signed] = ACTIONS(7235), + [anon_sym_unsigned] = ACTIONS(7235), + [anon_sym_long] = ACTIONS(7235), + [anon_sym_short] = ACTIONS(7235), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7235), + [anon_sym_volatile] = ACTIONS(7235), + [anon_sym_restrict] = ACTIONS(7235), + [anon_sym___restrict__] = ACTIONS(7235), + [anon_sym__Atomic] = ACTIONS(7235), + [anon_sym__Noreturn] = ACTIONS(7235), + [anon_sym_noreturn] = ACTIONS(7235), + [anon_sym__Nonnull] = ACTIONS(7235), + [anon_sym_mutable] = ACTIONS(7235), + [anon_sym_constinit] = ACTIONS(7235), + [anon_sym_consteval] = ACTIONS(7235), + [anon_sym_alignas] = ACTIONS(7235), + [anon_sym__Alignas] = ACTIONS(7235), + [sym_primitive_type] = ACTIONS(7235), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7235), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7235), + [anon_sym_not_eq] = ACTIONS(7235), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7235), + [anon_sym_override] = ACTIONS(7235), + [anon_sym_requires] = ACTIONS(7235), + [anon_sym_COLON_RBRACK] = ACTIONS(7237), + }, + [STATE(3013)] = { + [sym_ms_based_modifier] = STATE(11063), + [sym_ms_unaligned_ptr_modifier] = STATE(6570), + [sym_ms_pointer_modifier] = STATE(6287), + [sym__declarator] = STATE(8694), + [sym__abstract_declarator] = STATE(8877), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(3991), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4601), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(3991), + [aux_sym_pointer_declarator_repeat1] = STATE(6287), + [sym_identifier] = ACTIONS(7868), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(5303), + [anon_sym_AMP_AMP] = ACTIONS(5305), + [anon_sym_AMP] = ACTIONS(5307), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(2933), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), + [sym_ms_signed_ptr_modifier] = ACTIONS(2933), + [anon_sym__unaligned] = ACTIONS(2935), + [anon_sym___unaligned] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3014)] = { + [sym_identifier] = ACTIONS(7245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7247), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7247), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7247), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7247), + [anon_sym_GT_GT] = ACTIONS(7247), + [anon_sym_SEMI] = ACTIONS(7247), + [anon_sym___extension__] = ACTIONS(7245), + [anon_sym___attribute__] = ACTIONS(7245), + [anon_sym___attribute] = ACTIONS(7245), + [anon_sym_COLON] = ACTIONS(7245), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7247), + [anon_sym___based] = ACTIONS(7245), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_RBRACE] = ACTIONS(7247), + [anon_sym_signed] = ACTIONS(7245), + [anon_sym_unsigned] = ACTIONS(7245), + [anon_sym_long] = ACTIONS(7245), + [anon_sym_short] = ACTIONS(7245), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7245), + [anon_sym_volatile] = ACTIONS(7245), + [anon_sym_restrict] = ACTIONS(7245), + [anon_sym___restrict__] = ACTIONS(7245), + [anon_sym__Atomic] = ACTIONS(7245), + [anon_sym__Noreturn] = ACTIONS(7245), + [anon_sym_noreturn] = ACTIONS(7245), + [anon_sym__Nonnull] = ACTIONS(7245), + [anon_sym_mutable] = ACTIONS(7245), + [anon_sym_constinit] = ACTIONS(7245), + [anon_sym_consteval] = ACTIONS(7245), + [anon_sym_alignas] = ACTIONS(7245), + [anon_sym__Alignas] = ACTIONS(7245), + [sym_primitive_type] = ACTIONS(7245), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7245), + [anon_sym_and] = ACTIONS(7245), + [anon_sym_bitor] = ACTIONS(7245), + [anon_sym_xor] = ACTIONS(7245), + [anon_sym_bitand] = ACTIONS(7245), + [anon_sym_not_eq] = ACTIONS(7245), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7245), + [anon_sym_override] = ACTIONS(7245), + [anon_sym_requires] = ACTIONS(7245), + [anon_sym_COLON_RBRACK] = ACTIONS(7247), + }, + [STATE(3015)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3016)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6237), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6237), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6230), + [anon_sym_or_eq] = ACTIONS(6230), + [anon_sym_xor_eq] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_GT2] = ACTIONS(6230), + }, + [STATE(3017)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7273), + [anon_sym_volatile] = ACTIONS(7273), + [anon_sym_restrict] = ACTIONS(7273), + [anon_sym___restrict__] = ACTIONS(7273), + [anon_sym__Atomic] = ACTIONS(7273), + [anon_sym__Noreturn] = ACTIONS(7273), + [anon_sym_noreturn] = ACTIONS(7273), + [anon_sym__Nonnull] = ACTIONS(7273), + [anon_sym_mutable] = ACTIONS(7273), + [anon_sym_constinit] = ACTIONS(7273), + [anon_sym_consteval] = ACTIONS(7273), + [anon_sym_alignas] = ACTIONS(7273), + [anon_sym__Alignas] = ACTIONS(7273), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_STAR_EQ] = ACTIONS(7273), + [anon_sym_SLASH_EQ] = ACTIONS(7273), + [anon_sym_PERCENT_EQ] = ACTIONS(7273), + [anon_sym_PLUS_EQ] = ACTIONS(7273), + [anon_sym_DASH_EQ] = ACTIONS(7273), + [anon_sym_LT_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_GT_EQ] = ACTIONS(7271), + [anon_sym_AMP_EQ] = ACTIONS(7273), + [anon_sym_CARET_EQ] = ACTIONS(7273), + [anon_sym_PIPE_EQ] = ACTIONS(7273), + [anon_sym_and_eq] = ACTIONS(7273), + [anon_sym_or_eq] = ACTIONS(7273), + [anon_sym_xor_eq] = ACTIONS(7273), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7271), + [anon_sym_and] = ACTIONS(7271), + [anon_sym_bitor] = ACTIONS(7273), + [anon_sym_xor] = ACTIONS(7271), + [anon_sym_bitand] = ACTIONS(7273), + [anon_sym_not_eq] = ACTIONS(7273), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7273), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7273), + [anon_sym_override] = ACTIONS(7273), + [anon_sym_GT2] = ACTIONS(7273), + [anon_sym_requires] = ACTIONS(7273), + }, + [STATE(3018)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3019)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7275), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7277), + [anon_sym_volatile] = ACTIONS(7277), + [anon_sym_restrict] = ACTIONS(7277), + [anon_sym___restrict__] = ACTIONS(7277), + [anon_sym__Atomic] = ACTIONS(7277), + [anon_sym__Noreturn] = ACTIONS(7277), + [anon_sym_noreturn] = ACTIONS(7277), + [anon_sym__Nonnull] = ACTIONS(7277), + [anon_sym_mutable] = ACTIONS(7277), + [anon_sym_constinit] = ACTIONS(7277), + [anon_sym_consteval] = ACTIONS(7277), + [anon_sym_alignas] = ACTIONS(7277), + [anon_sym__Alignas] = ACTIONS(7277), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7275), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7277), + [anon_sym_or_eq] = ACTIONS(7277), + [anon_sym_xor_eq] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7277), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7277), + [anon_sym_not_eq] = ACTIONS(7277), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7277), + [anon_sym_override] = ACTIONS(7277), + [anon_sym_GT2] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7277), + }, + [STATE(3020)] = { + [sym_identifier] = ACTIONS(7351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7353), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym_SEMI] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7351), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7351), + [anon_sym_COLON] = ACTIONS(7351), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7353), + [anon_sym___based] = ACTIONS(7351), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_RBRACE] = ACTIONS(7353), + [anon_sym_signed] = ACTIONS(7351), + [anon_sym_unsigned] = ACTIONS(7351), + [anon_sym_long] = ACTIONS(7351), + [anon_sym_short] = ACTIONS(7351), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7351), + [anon_sym_volatile] = ACTIONS(7351), + [anon_sym_restrict] = ACTIONS(7351), + [anon_sym___restrict__] = ACTIONS(7351), + [anon_sym__Atomic] = ACTIONS(7351), + [anon_sym__Noreturn] = ACTIONS(7351), + [anon_sym_noreturn] = ACTIONS(7351), + [anon_sym__Nonnull] = ACTIONS(7351), + [anon_sym_mutable] = ACTIONS(7351), + [anon_sym_constinit] = ACTIONS(7351), + [anon_sym_consteval] = ACTIONS(7351), + [anon_sym_alignas] = ACTIONS(7351), + [anon_sym__Alignas] = ACTIONS(7351), + [sym_primitive_type] = ACTIONS(7351), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_COLON_RBRACK] = ACTIONS(7353), + }, + [STATE(3021)] = { + [sym_identifier] = ACTIONS(7267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_RPAREN] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym_SEMI] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7267), + [anon_sym___attribute__] = ACTIONS(7267), + [anon_sym___attribute] = ACTIONS(7267), + [anon_sym_COLON] = ACTIONS(7267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7269), + [anon_sym___based] = ACTIONS(7267), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_RBRACE] = ACTIONS(7269), + [anon_sym_signed] = ACTIONS(7267), + [anon_sym_unsigned] = ACTIONS(7267), + [anon_sym_long] = ACTIONS(7267), + [anon_sym_short] = ACTIONS(7267), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7267), + [anon_sym_volatile] = ACTIONS(7267), + [anon_sym_restrict] = ACTIONS(7267), + [anon_sym___restrict__] = ACTIONS(7267), + [anon_sym__Atomic] = ACTIONS(7267), + [anon_sym__Noreturn] = ACTIONS(7267), + [anon_sym_noreturn] = ACTIONS(7267), + [anon_sym__Nonnull] = ACTIONS(7267), + [anon_sym_mutable] = ACTIONS(7267), + [anon_sym_constinit] = ACTIONS(7267), + [anon_sym_consteval] = ACTIONS(7267), + [anon_sym_alignas] = ACTIONS(7267), + [anon_sym__Alignas] = ACTIONS(7267), + [sym_primitive_type] = ACTIONS(7267), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7267), + [anon_sym_and] = ACTIONS(7267), + [anon_sym_bitor] = ACTIONS(7267), + [anon_sym_xor] = ACTIONS(7267), + [anon_sym_bitand] = ACTIONS(7267), + [anon_sym_not_eq] = ACTIONS(7267), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7267), + [anon_sym_override] = ACTIONS(7267), + [anon_sym_requires] = ACTIONS(7267), + [anon_sym_COLON_RBRACK] = ACTIONS(7269), + }, + [STATE(3022)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_STAR_EQ] = ACTIONS(7331), + [anon_sym_SLASH_EQ] = ACTIONS(7331), + [anon_sym_PERCENT_EQ] = ACTIONS(7331), + [anon_sym_PLUS_EQ] = ACTIONS(7331), + [anon_sym_DASH_EQ] = ACTIONS(7331), + [anon_sym_LT_LT_EQ] = ACTIONS(7331), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7331), + [anon_sym_CARET_EQ] = ACTIONS(7331), + [anon_sym_PIPE_EQ] = ACTIONS(7331), + [anon_sym_and_eq] = ACTIONS(7331), + [anon_sym_or_eq] = ACTIONS(7331), + [anon_sym_xor_eq] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_GT2] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + }, + [STATE(3023)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_RBRACK] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7207), + [anon_sym_volatile] = ACTIONS(7207), + [anon_sym_restrict] = ACTIONS(7207), + [anon_sym___restrict__] = ACTIONS(7207), + [anon_sym__Atomic] = ACTIONS(7207), + [anon_sym__Noreturn] = ACTIONS(7207), + [anon_sym_noreturn] = ACTIONS(7207), + [anon_sym__Nonnull] = ACTIONS(7207), + [anon_sym_mutable] = ACTIONS(7207), + [anon_sym_constinit] = ACTIONS(7207), + [anon_sym_consteval] = ACTIONS(7207), + [anon_sym_alignas] = ACTIONS(7207), + [anon_sym__Alignas] = ACTIONS(7207), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_STAR_EQ] = ACTIONS(7207), + [anon_sym_SLASH_EQ] = ACTIONS(7207), + [anon_sym_PERCENT_EQ] = ACTIONS(7207), + [anon_sym_PLUS_EQ] = ACTIONS(7207), + [anon_sym_DASH_EQ] = ACTIONS(7207), + [anon_sym_LT_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7207), + [anon_sym_CARET_EQ] = ACTIONS(7207), + [anon_sym_PIPE_EQ] = ACTIONS(7207), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7205), + [anon_sym_and] = ACTIONS(7205), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7205), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(3024)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6237), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6235), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_GT2] = ACTIONS(6230), + }, + [STATE(3025)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_friend] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + }, + [STATE(3026)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_RBRACK] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7211), + [anon_sym_volatile] = ACTIONS(7211), + [anon_sym_restrict] = ACTIONS(7211), + [anon_sym___restrict__] = ACTIONS(7211), + [anon_sym__Atomic] = ACTIONS(7211), + [anon_sym__Noreturn] = ACTIONS(7211), + [anon_sym_noreturn] = ACTIONS(7211), + [anon_sym__Nonnull] = ACTIONS(7211), + [anon_sym_mutable] = ACTIONS(7211), + [anon_sym_constinit] = ACTIONS(7211), + [anon_sym_consteval] = ACTIONS(7211), + [anon_sym_alignas] = ACTIONS(7211), + [anon_sym__Alignas] = ACTIONS(7211), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7209), + [anon_sym_and] = ACTIONS(7209), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7209), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + }, + [STATE(3027)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3028)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7227), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7227), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7227), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7227), + [anon_sym_GT_GT] = ACTIONS(7227), + [anon_sym___extension__] = ACTIONS(7229), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_RBRACK] = ACTIONS(7229), + [anon_sym_EQ] = ACTIONS(7227), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7229), + [anon_sym_volatile] = ACTIONS(7229), + [anon_sym_restrict] = ACTIONS(7229), + [anon_sym___restrict__] = ACTIONS(7229), + [anon_sym__Atomic] = ACTIONS(7229), + [anon_sym__Noreturn] = ACTIONS(7229), + [anon_sym_noreturn] = ACTIONS(7229), + [anon_sym__Nonnull] = ACTIONS(7229), + [anon_sym_mutable] = ACTIONS(7229), + [anon_sym_constinit] = ACTIONS(7229), + [anon_sym_consteval] = ACTIONS(7229), + [anon_sym_alignas] = ACTIONS(7229), + [anon_sym__Alignas] = ACTIONS(7229), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_STAR_EQ] = ACTIONS(7229), + [anon_sym_SLASH_EQ] = ACTIONS(7229), + [anon_sym_PERCENT_EQ] = ACTIONS(7229), + [anon_sym_PLUS_EQ] = ACTIONS(7229), + [anon_sym_DASH_EQ] = ACTIONS(7229), + [anon_sym_LT_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_GT_EQ] = ACTIONS(7229), + [anon_sym_AMP_EQ] = ACTIONS(7229), + [anon_sym_CARET_EQ] = ACTIONS(7229), + [anon_sym_PIPE_EQ] = ACTIONS(7229), + [anon_sym_and_eq] = ACTIONS(7229), + [anon_sym_or_eq] = ACTIONS(7229), + [anon_sym_xor_eq] = ACTIONS(7229), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7227), + [anon_sym_and] = ACTIONS(7227), + [anon_sym_bitor] = ACTIONS(7229), + [anon_sym_xor] = ACTIONS(7227), + [anon_sym_bitand] = ACTIONS(7229), + [anon_sym_not_eq] = ACTIONS(7229), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7229), + [anon_sym_override] = ACTIONS(7229), + [anon_sym_requires] = ACTIONS(7229), + }, + [STATE(3029)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_RBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7233), + [anon_sym_or_eq] = ACTIONS(7233), + [anon_sym_xor_eq] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), + }, + [STATE(3030)] = { + [sym_identifier] = ACTIONS(7295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_RPAREN] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7297), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7297), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7297), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7297), + [anon_sym_GT_GT] = ACTIONS(7297), + [anon_sym_SEMI] = ACTIONS(7297), + [anon_sym___extension__] = ACTIONS(7295), + [anon_sym___attribute__] = ACTIONS(7295), + [anon_sym___attribute] = ACTIONS(7295), + [anon_sym_COLON] = ACTIONS(7295), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), + [anon_sym___based] = ACTIONS(7295), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_RBRACE] = ACTIONS(7297), + [anon_sym_signed] = ACTIONS(7295), + [anon_sym_unsigned] = ACTIONS(7295), + [anon_sym_long] = ACTIONS(7295), + [anon_sym_short] = ACTIONS(7295), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7295), + [anon_sym_volatile] = ACTIONS(7295), + [anon_sym_restrict] = ACTIONS(7295), + [anon_sym___restrict__] = ACTIONS(7295), + [anon_sym__Atomic] = ACTIONS(7295), + [anon_sym__Noreturn] = ACTIONS(7295), + [anon_sym_noreturn] = ACTIONS(7295), + [anon_sym__Nonnull] = ACTIONS(7295), + [anon_sym_mutable] = ACTIONS(7295), + [anon_sym_constinit] = ACTIONS(7295), + [anon_sym_consteval] = ACTIONS(7295), + [anon_sym_alignas] = ACTIONS(7295), + [anon_sym__Alignas] = ACTIONS(7295), + [sym_primitive_type] = ACTIONS(7295), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7295), + [anon_sym_and] = ACTIONS(7295), + [anon_sym_bitor] = ACTIONS(7295), + [anon_sym_xor] = ACTIONS(7295), + [anon_sym_bitand] = ACTIONS(7295), + [anon_sym_not_eq] = ACTIONS(7295), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7297), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7295), + [anon_sym_override] = ACTIONS(7295), + [anon_sym_requires] = ACTIONS(7295), + [anon_sym_COLON_RBRACK] = ACTIONS(7297), + }, + [STATE(3031)] = { + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [aux_sym_sized_type_specifier_repeat1] = STATE(3470), + [sym_identifier] = ACTIONS(8366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym_SEMI] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(7784), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_COLON] = ACTIONS(6886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_RBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8371), + [anon_sym_unsigned] = ACTIONS(8371), + [anon_sym_long] = ACTIONS(8371), + [anon_sym_short] = ACTIONS(8371), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7784), + [anon_sym_volatile] = ACTIONS(7784), + [anon_sym_restrict] = ACTIONS(7784), + [anon_sym___restrict__] = ACTIONS(7784), + [anon_sym__Atomic] = ACTIONS(7784), + [anon_sym__Noreturn] = ACTIONS(7784), + [anon_sym_noreturn] = ACTIONS(7784), + [anon_sym__Nonnull] = ACTIONS(7784), + [anon_sym_mutable] = ACTIONS(7784), + [anon_sym_constinit] = ACTIONS(7784), + [anon_sym_consteval] = ACTIONS(7784), + [anon_sym_alignas] = ACTIONS(8669), + [anon_sym__Alignas] = ACTIONS(8669), + [sym_primitive_type] = ACTIONS(8376), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6884), + }, + [STATE(3032)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3033)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3034)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7287), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7287), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_GT2] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + }, + [STATE(3035)] = { + [sym_identifier] = ACTIONS(7355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_RPAREN] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym_SEMI] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7355), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7355), + [anon_sym_COLON] = ACTIONS(7355), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7357), + [anon_sym___based] = ACTIONS(7355), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_RBRACE] = ACTIONS(7357), + [anon_sym_signed] = ACTIONS(7355), + [anon_sym_unsigned] = ACTIONS(7355), + [anon_sym_long] = ACTIONS(7355), + [anon_sym_short] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7355), + [anon_sym_volatile] = ACTIONS(7355), + [anon_sym_restrict] = ACTIONS(7355), + [anon_sym___restrict__] = ACTIONS(7355), + [anon_sym__Atomic] = ACTIONS(7355), + [anon_sym__Noreturn] = ACTIONS(7355), + [anon_sym_noreturn] = ACTIONS(7355), + [anon_sym__Nonnull] = ACTIONS(7355), + [anon_sym_mutable] = ACTIONS(7355), + [anon_sym_constinit] = ACTIONS(7355), + [anon_sym_consteval] = ACTIONS(7355), + [anon_sym_alignas] = ACTIONS(7355), + [anon_sym__Alignas] = ACTIONS(7355), + [sym_primitive_type] = ACTIONS(7355), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + [anon_sym_COLON_RBRACK] = ACTIONS(7357), + }, + [STATE(3036)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym___based] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7359), + [anon_sym_unsigned] = ACTIONS(7359), + [anon_sym_long] = ACTIONS(7359), + [anon_sym_short] = ACTIONS(7359), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [sym_primitive_type] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(3037)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7291), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7291), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + }, + [STATE(3038)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_friend] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_catch] = ACTIONS(3608), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + }, + [STATE(3039)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7235), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7235), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7237), + [anon_sym_override] = ACTIONS(7237), + [anon_sym_GT2] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7237), + }, + [STATE(3040)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7299), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7299), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7299), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7299), + [anon_sym_GT_GT] = ACTIONS(7299), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_STAR_EQ] = ACTIONS(7301), + [anon_sym_SLASH_EQ] = ACTIONS(7301), + [anon_sym_PERCENT_EQ] = ACTIONS(7301), + [anon_sym_PLUS_EQ] = ACTIONS(7301), + [anon_sym_DASH_EQ] = ACTIONS(7301), + [anon_sym_LT_LT_EQ] = ACTIONS(7301), + [anon_sym_GT_GT_EQ] = ACTIONS(7299), + [anon_sym_AMP_EQ] = ACTIONS(7301), + [anon_sym_CARET_EQ] = ACTIONS(7301), + [anon_sym_PIPE_EQ] = ACTIONS(7301), + [anon_sym_and_eq] = ACTIONS(7301), + [anon_sym_or_eq] = ACTIONS(7301), + [anon_sym_xor_eq] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7299), + [anon_sym_and] = ACTIONS(7299), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7299), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_GT2] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + }, + [STATE(3041)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7287), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7287), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_GT2] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + }, + [STATE(3042)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_RBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6230), + [anon_sym_or_eq] = ACTIONS(6230), + [anon_sym_xor_eq] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + }, + [STATE(3043)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_RBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + }, + [STATE(3044)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_RBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7265), + [anon_sym_volatile] = ACTIONS(7265), + [anon_sym_restrict] = ACTIONS(7265), + [anon_sym___restrict__] = ACTIONS(7265), + [anon_sym__Atomic] = ACTIONS(7265), + [anon_sym__Noreturn] = ACTIONS(7265), + [anon_sym_noreturn] = ACTIONS(7265), + [anon_sym__Nonnull] = ACTIONS(7265), + [anon_sym_mutable] = ACTIONS(7265), + [anon_sym_constinit] = ACTIONS(7265), + [anon_sym_consteval] = ACTIONS(7265), + [anon_sym_alignas] = ACTIONS(7265), + [anon_sym__Alignas] = ACTIONS(7265), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7265), + [anon_sym_or_eq] = ACTIONS(7265), + [anon_sym_xor_eq] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7265), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7265), + [anon_sym_not_eq] = ACTIONS(7265), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7265), + [anon_sym_override] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7265), + }, + [STATE(3045)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7267), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7267), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7267), + [anon_sym_GT_GT] = ACTIONS(7267), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_RBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_STAR_EQ] = ACTIONS(7269), + [anon_sym_SLASH_EQ] = ACTIONS(7269), + [anon_sym_PERCENT_EQ] = ACTIONS(7269), + [anon_sym_PLUS_EQ] = ACTIONS(7269), + [anon_sym_DASH_EQ] = ACTIONS(7269), + [anon_sym_LT_LT_EQ] = ACTIONS(7269), + [anon_sym_GT_GT_EQ] = ACTIONS(7269), + [anon_sym_AMP_EQ] = ACTIONS(7269), + [anon_sym_CARET_EQ] = ACTIONS(7269), + [anon_sym_PIPE_EQ] = ACTIONS(7269), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7267), + [anon_sym_and] = ACTIONS(7267), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7267), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + }, + [STATE(3046)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym_SEMI] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_COLON] = ACTIONS(7084), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_RBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(8205), + [anon_sym_unsigned] = ACTIONS(8205), + [anon_sym_long] = ACTIONS(8205), + [anon_sym_short] = ACTIONS(8205), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + [anon_sym_COLON_RBRACK] = ACTIONS(7081), + }, + [STATE(3047)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7295), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7295), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym___extension__] = ACTIONS(7297), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_EQ] = ACTIONS(7295), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7297), + [anon_sym_volatile] = ACTIONS(7297), + [anon_sym_restrict] = ACTIONS(7297), + [anon_sym___restrict__] = ACTIONS(7297), + [anon_sym__Atomic] = ACTIONS(7297), + [anon_sym__Noreturn] = ACTIONS(7297), + [anon_sym_noreturn] = ACTIONS(7297), + [anon_sym__Nonnull] = ACTIONS(7297), + [anon_sym_mutable] = ACTIONS(7297), + [anon_sym_constinit] = ACTIONS(7297), + [anon_sym_consteval] = ACTIONS(7297), + [anon_sym_alignas] = ACTIONS(7297), + [anon_sym__Alignas] = ACTIONS(7297), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_STAR_EQ] = ACTIONS(7297), + [anon_sym_SLASH_EQ] = ACTIONS(7297), + [anon_sym_PERCENT_EQ] = ACTIONS(7297), + [anon_sym_PLUS_EQ] = ACTIONS(7297), + [anon_sym_DASH_EQ] = ACTIONS(7297), + [anon_sym_LT_LT_EQ] = ACTIONS(7297), + [anon_sym_GT_GT_EQ] = ACTIONS(7295), + [anon_sym_AMP_EQ] = ACTIONS(7297), + [anon_sym_CARET_EQ] = ACTIONS(7297), + [anon_sym_PIPE_EQ] = ACTIONS(7297), + [anon_sym_and_eq] = ACTIONS(7297), + [anon_sym_or_eq] = ACTIONS(7297), + [anon_sym_xor_eq] = ACTIONS(7297), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7295), + [anon_sym_and] = ACTIONS(7295), + [anon_sym_bitor] = ACTIONS(7297), + [anon_sym_xor] = ACTIONS(7295), + [anon_sym_bitand] = ACTIONS(7297), + [anon_sym_not_eq] = ACTIONS(7297), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7297), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7297), + [anon_sym_override] = ACTIONS(7297), + [anon_sym_GT2] = ACTIONS(7297), + [anon_sym_requires] = ACTIONS(7297), + }, + [STATE(3048)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_RBRACK] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7273), + [anon_sym_volatile] = ACTIONS(7273), + [anon_sym_restrict] = ACTIONS(7273), + [anon_sym___restrict__] = ACTIONS(7273), + [anon_sym__Atomic] = ACTIONS(7273), + [anon_sym__Noreturn] = ACTIONS(7273), + [anon_sym_noreturn] = ACTIONS(7273), + [anon_sym__Nonnull] = ACTIONS(7273), + [anon_sym_mutable] = ACTIONS(7273), + [anon_sym_constinit] = ACTIONS(7273), + [anon_sym_consteval] = ACTIONS(7273), + [anon_sym_alignas] = ACTIONS(7273), + [anon_sym__Alignas] = ACTIONS(7273), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_STAR_EQ] = ACTIONS(7273), + [anon_sym_SLASH_EQ] = ACTIONS(7273), + [anon_sym_PERCENT_EQ] = ACTIONS(7273), + [anon_sym_PLUS_EQ] = ACTIONS(7273), + [anon_sym_DASH_EQ] = ACTIONS(7273), + [anon_sym_LT_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_GT_EQ] = ACTIONS(7273), + [anon_sym_AMP_EQ] = ACTIONS(7273), + [anon_sym_CARET_EQ] = ACTIONS(7273), + [anon_sym_PIPE_EQ] = ACTIONS(7273), + [anon_sym_and_eq] = ACTIONS(7273), + [anon_sym_or_eq] = ACTIONS(7273), + [anon_sym_xor_eq] = ACTIONS(7273), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7271), + [anon_sym_and] = ACTIONS(7271), + [anon_sym_bitor] = ACTIONS(7273), + [anon_sym_xor] = ACTIONS(7271), + [anon_sym_bitand] = ACTIONS(7273), + [anon_sym_not_eq] = ACTIONS(7273), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7273), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7273), + [anon_sym_override] = ACTIONS(7273), + [anon_sym_requires] = ACTIONS(7273), + }, + [STATE(3049)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_RBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7277), + [anon_sym_volatile] = ACTIONS(7277), + [anon_sym_restrict] = ACTIONS(7277), + [anon_sym___restrict__] = ACTIONS(7277), + [anon_sym__Atomic] = ACTIONS(7277), + [anon_sym__Noreturn] = ACTIONS(7277), + [anon_sym_noreturn] = ACTIONS(7277), + [anon_sym__Nonnull] = ACTIONS(7277), + [anon_sym_mutable] = ACTIONS(7277), + [anon_sym_constinit] = ACTIONS(7277), + [anon_sym_consteval] = ACTIONS(7277), + [anon_sym_alignas] = ACTIONS(7277), + [anon_sym__Alignas] = ACTIONS(7277), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7277), + [anon_sym_or_eq] = ACTIONS(7277), + [anon_sym_xor_eq] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7277), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7277), + [anon_sym_not_eq] = ACTIONS(7277), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7277), + [anon_sym_override] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7277), + }, + [STATE(3050)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_RBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + }, + [STATE(3051)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + }, + [STATE(3052)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7299), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7299), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7299), + [anon_sym_GT_GT] = ACTIONS(7299), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_RBRACK] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_STAR_EQ] = ACTIONS(7301), + [anon_sym_SLASH_EQ] = ACTIONS(7301), + [anon_sym_PERCENT_EQ] = ACTIONS(7301), + [anon_sym_PLUS_EQ] = ACTIONS(7301), + [anon_sym_DASH_EQ] = ACTIONS(7301), + [anon_sym_LT_LT_EQ] = ACTIONS(7301), + [anon_sym_GT_GT_EQ] = ACTIONS(7301), + [anon_sym_AMP_EQ] = ACTIONS(7301), + [anon_sym_CARET_EQ] = ACTIONS(7301), + [anon_sym_PIPE_EQ] = ACTIONS(7301), + [anon_sym_and_eq] = ACTIONS(7301), + [anon_sym_or_eq] = ACTIONS(7301), + [anon_sym_xor_eq] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7299), + [anon_sym_and] = ACTIONS(7299), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7299), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + }, + [STATE(3053)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_RBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + }, + [STATE(3054)] = { + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7255), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym___based] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7253), + [anon_sym_unsigned] = ACTIONS(7253), + [anon_sym_long] = ACTIONS(7253), + [anon_sym_short] = ACTIONS(7253), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7253), + [anon_sym_volatile] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7253), + [anon_sym___restrict__] = ACTIONS(7253), + [anon_sym__Atomic] = ACTIONS(7253), + [anon_sym__Noreturn] = ACTIONS(7253), + [anon_sym_noreturn] = ACTIONS(7253), + [anon_sym__Nonnull] = ACTIONS(7253), + [anon_sym_mutable] = ACTIONS(7253), + [anon_sym_constinit] = ACTIONS(7253), + [anon_sym_consteval] = ACTIONS(7253), + [anon_sym_alignas] = ACTIONS(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [sym_primitive_type] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), + }, + [STATE(3055)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7245), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7245), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7245), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7245), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7245), + [anon_sym_GT_GT] = ACTIONS(7245), + [anon_sym___extension__] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_EQ] = ACTIONS(7245), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7247), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym___restrict__] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym__Noreturn] = ACTIONS(7247), + [anon_sym_noreturn] = ACTIONS(7247), + [anon_sym__Nonnull] = ACTIONS(7247), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_constinit] = ACTIONS(7247), + [anon_sym_consteval] = ACTIONS(7247), + [anon_sym_alignas] = ACTIONS(7247), + [anon_sym__Alignas] = ACTIONS(7247), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7245), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_and_eq] = ACTIONS(7247), + [anon_sym_or_eq] = ACTIONS(7247), + [anon_sym_xor_eq] = ACTIONS(7247), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7245), + [anon_sym_and] = ACTIONS(7245), + [anon_sym_bitor] = ACTIONS(7247), + [anon_sym_xor] = ACTIONS(7245), + [anon_sym_bitand] = ACTIONS(7247), + [anon_sym_not_eq] = ACTIONS(7247), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7247), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(7247), + [anon_sym_GT2] = ACTIONS(7247), + [anon_sym_requires] = ACTIONS(7247), + }, + [STATE(3056)] = { + [sym_argument_list] = STATE(5801), + [sym_initializer_list] = STATE(5650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + }, + [STATE(3057)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7305), + [anon_sym_volatile] = ACTIONS(7305), + [anon_sym_restrict] = ACTIONS(7305), + [anon_sym___restrict__] = ACTIONS(7305), + [anon_sym__Atomic] = ACTIONS(7305), + [anon_sym__Noreturn] = ACTIONS(7305), + [anon_sym_noreturn] = ACTIONS(7305), + [anon_sym__Nonnull] = ACTIONS(7305), + [anon_sym_mutable] = ACTIONS(7305), + [anon_sym_constinit] = ACTIONS(7305), + [anon_sym_consteval] = ACTIONS(7305), + [anon_sym_alignas] = ACTIONS(7305), + [anon_sym__Alignas] = ACTIONS(7305), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_STAR_EQ] = ACTIONS(7305), + [anon_sym_SLASH_EQ] = ACTIONS(7305), + [anon_sym_PERCENT_EQ] = ACTIONS(7305), + [anon_sym_PLUS_EQ] = ACTIONS(7305), + [anon_sym_DASH_EQ] = ACTIONS(7305), + [anon_sym_LT_LT_EQ] = ACTIONS(7305), + [anon_sym_GT_GT_EQ] = ACTIONS(7303), + [anon_sym_AMP_EQ] = ACTIONS(7305), + [anon_sym_CARET_EQ] = ACTIONS(7305), + [anon_sym_PIPE_EQ] = ACTIONS(7305), + [anon_sym_and_eq] = ACTIONS(7305), + [anon_sym_or_eq] = ACTIONS(7305), + [anon_sym_xor_eq] = ACTIONS(7305), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7305), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7305), + [anon_sym_not_eq] = ACTIONS(7305), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7305), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7305), + [anon_sym_override] = ACTIONS(7305), + [anon_sym_GT2] = ACTIONS(7305), + [anon_sym_requires] = ACTIONS(7305), + }, + [STATE(3058)] = { + [sym_identifier] = ACTIONS(7271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_RPAREN] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7273), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7273), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7273), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7273), + [anon_sym_GT_GT] = ACTIONS(7273), + [anon_sym_SEMI] = ACTIONS(7273), + [anon_sym___extension__] = ACTIONS(7271), + [anon_sym___attribute__] = ACTIONS(7271), + [anon_sym___attribute] = ACTIONS(7271), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7273), + [anon_sym___based] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_RBRACE] = ACTIONS(7273), + [anon_sym_signed] = ACTIONS(7271), + [anon_sym_unsigned] = ACTIONS(7271), + [anon_sym_long] = ACTIONS(7271), + [anon_sym_short] = ACTIONS(7271), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7271), + [anon_sym_volatile] = ACTIONS(7271), + [anon_sym_restrict] = ACTIONS(7271), + [anon_sym___restrict__] = ACTIONS(7271), + [anon_sym__Atomic] = ACTIONS(7271), + [anon_sym__Noreturn] = ACTIONS(7271), + [anon_sym_noreturn] = ACTIONS(7271), + [anon_sym__Nonnull] = ACTIONS(7271), + [anon_sym_mutable] = ACTIONS(7271), + [anon_sym_constinit] = ACTIONS(7271), + [anon_sym_consteval] = ACTIONS(7271), + [anon_sym_alignas] = ACTIONS(7271), + [anon_sym__Alignas] = ACTIONS(7271), + [sym_primitive_type] = ACTIONS(7271), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7271), + [anon_sym_and] = ACTIONS(7271), + [anon_sym_bitor] = ACTIONS(7271), + [anon_sym_xor] = ACTIONS(7271), + [anon_sym_bitand] = ACTIONS(7271), + [anon_sym_not_eq] = ACTIONS(7271), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7273), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7271), + [anon_sym_override] = ACTIONS(7271), + [anon_sym_requires] = ACTIONS(7271), + [anon_sym_COLON_RBRACK] = ACTIONS(7273), + }, + [STATE(3059)] = { + [sym_identifier] = ACTIONS(8671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8673), + [anon_sym_COMMA] = ACTIONS(8673), + [anon_sym_RPAREN] = ACTIONS(8673), + [aux_sym_preproc_if_token2] = ACTIONS(8673), + [aux_sym_preproc_else_token1] = ACTIONS(8673), + [aux_sym_preproc_elif_token1] = ACTIONS(8671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8673), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8673), + [anon_sym_LPAREN2] = ACTIONS(8673), + [anon_sym_DASH] = ACTIONS(8671), + [anon_sym_PLUS] = ACTIONS(8671), + [anon_sym_STAR] = ACTIONS(8671), + [anon_sym_SLASH] = ACTIONS(8671), + [anon_sym_PERCENT] = ACTIONS(8671), + [anon_sym_PIPE_PIPE] = ACTIONS(8673), + [anon_sym_AMP_AMP] = ACTIONS(8673), + [anon_sym_PIPE] = ACTIONS(8671), + [anon_sym_CARET] = ACTIONS(8671), + [anon_sym_AMP] = ACTIONS(8671), + [anon_sym_EQ_EQ] = ACTIONS(8673), + [anon_sym_BANG_EQ] = ACTIONS(8673), + [anon_sym_GT] = ACTIONS(8671), + [anon_sym_GT_EQ] = ACTIONS(8673), + [anon_sym_LT_EQ] = ACTIONS(8671), + [anon_sym_LT] = ACTIONS(8671), + [anon_sym_LT_LT] = ACTIONS(8671), + [anon_sym_GT_GT] = ACTIONS(8671), + [anon_sym_SEMI] = ACTIONS(8673), + [anon_sym___attribute__] = ACTIONS(8671), + [anon_sym___attribute] = ACTIONS(8671), + [anon_sym_COLON] = ACTIONS(8671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8673), + [anon_sym_LBRACE] = ACTIONS(8673), + [anon_sym_RBRACE] = ACTIONS(8673), + [anon_sym_LBRACK] = ACTIONS(8671), + [anon_sym_RBRACK] = ACTIONS(8673), + [anon_sym_EQ] = ACTIONS(8671), + [anon_sym_QMARK] = ACTIONS(8673), + [anon_sym_STAR_EQ] = ACTIONS(8673), + [anon_sym_SLASH_EQ] = ACTIONS(8673), + [anon_sym_PERCENT_EQ] = ACTIONS(8673), + [anon_sym_PLUS_EQ] = ACTIONS(8673), + [anon_sym_DASH_EQ] = ACTIONS(8673), + [anon_sym_LT_LT_EQ] = ACTIONS(8673), + [anon_sym_GT_GT_EQ] = ACTIONS(8673), + [anon_sym_AMP_EQ] = ACTIONS(8673), + [anon_sym_CARET_EQ] = ACTIONS(8673), + [anon_sym_PIPE_EQ] = ACTIONS(8673), + [anon_sym_and_eq] = ACTIONS(8671), + [anon_sym_or_eq] = ACTIONS(8671), + [anon_sym_xor_eq] = ACTIONS(8671), + [anon_sym_LT_EQ_GT] = ACTIONS(8673), + [anon_sym_or] = ACTIONS(8671), + [anon_sym_and] = ACTIONS(8671), + [anon_sym_bitor] = ACTIONS(8671), + [anon_sym_xor] = ACTIONS(8671), + [anon_sym_bitand] = ACTIONS(8671), + [anon_sym_not_eq] = ACTIONS(8671), + [anon_sym_DASH_DASH] = ACTIONS(8673), + [anon_sym_PLUS_PLUS] = ACTIONS(8673), + [anon_sym_asm] = ACTIONS(8671), + [anon_sym___asm__] = ACTIONS(8671), + [anon_sym___asm] = ACTIONS(8671), + [anon_sym_DOT] = ACTIONS(8671), + [anon_sym_DOT_STAR] = ACTIONS(8673), + [anon_sym_DASH_GT] = ACTIONS(8673), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8671), + [anon_sym_COLON_RBRACK] = ACTIONS(8673), + }, + [STATE(3060)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_RBRACK] = ACTIONS(7305), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7305), + [anon_sym_volatile] = ACTIONS(7305), + [anon_sym_restrict] = ACTIONS(7305), + [anon_sym___restrict__] = ACTIONS(7305), + [anon_sym__Atomic] = ACTIONS(7305), + [anon_sym__Noreturn] = ACTIONS(7305), + [anon_sym_noreturn] = ACTIONS(7305), + [anon_sym__Nonnull] = ACTIONS(7305), + [anon_sym_mutable] = ACTIONS(7305), + [anon_sym_constinit] = ACTIONS(7305), + [anon_sym_consteval] = ACTIONS(7305), + [anon_sym_alignas] = ACTIONS(7305), + [anon_sym__Alignas] = ACTIONS(7305), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_STAR_EQ] = ACTIONS(7305), + [anon_sym_SLASH_EQ] = ACTIONS(7305), + [anon_sym_PERCENT_EQ] = ACTIONS(7305), + [anon_sym_PLUS_EQ] = ACTIONS(7305), + [anon_sym_DASH_EQ] = ACTIONS(7305), + [anon_sym_LT_LT_EQ] = ACTIONS(7305), + [anon_sym_GT_GT_EQ] = ACTIONS(7305), + [anon_sym_AMP_EQ] = ACTIONS(7305), + [anon_sym_CARET_EQ] = ACTIONS(7305), + [anon_sym_PIPE_EQ] = ACTIONS(7305), + [anon_sym_and_eq] = ACTIONS(7305), + [anon_sym_or_eq] = ACTIONS(7305), + [anon_sym_xor_eq] = ACTIONS(7305), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7305), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7305), + [anon_sym_not_eq] = ACTIONS(7305), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7305), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7305), + [anon_sym_override] = ACTIONS(7305), + [anon_sym_requires] = ACTIONS(7305), + }, + [STATE(3061)] = { + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7277), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7277), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7277), + [anon_sym_GT_GT] = ACTIONS(7277), + [anon_sym_SEMI] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), + [anon_sym___based] = ACTIONS(7275), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_RBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(7275), + [anon_sym_unsigned] = ACTIONS(7275), + [anon_sym_long] = ACTIONS(7275), + [anon_sym_short] = ACTIONS(7275), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [sym_primitive_type] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_COLON_RBRACK] = ACTIONS(7277), + }, + [STATE(3062)] = { + [sym_argument_list] = STATE(5660), + [sym_initializer_list] = STATE(5664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8274), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6800), + }, + [STATE(3063)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7337), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7337), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7337), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7337), + [anon_sym_GT_GT] = ACTIONS(7337), + [anon_sym___extension__] = ACTIONS(7339), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_RBRACK] = ACTIONS(7339), + [anon_sym_EQ] = ACTIONS(7337), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7339), + [anon_sym_volatile] = ACTIONS(7339), + [anon_sym_restrict] = ACTIONS(7339), + [anon_sym___restrict__] = ACTIONS(7339), + [anon_sym__Atomic] = ACTIONS(7339), + [anon_sym__Noreturn] = ACTIONS(7339), + [anon_sym_noreturn] = ACTIONS(7339), + [anon_sym__Nonnull] = ACTIONS(7339), + [anon_sym_mutable] = ACTIONS(7339), + [anon_sym_constinit] = ACTIONS(7339), + [anon_sym_consteval] = ACTIONS(7339), + [anon_sym_alignas] = ACTIONS(7339), + [anon_sym__Alignas] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_STAR_EQ] = ACTIONS(7339), + [anon_sym_SLASH_EQ] = ACTIONS(7339), + [anon_sym_PERCENT_EQ] = ACTIONS(7339), + [anon_sym_PLUS_EQ] = ACTIONS(7339), + [anon_sym_DASH_EQ] = ACTIONS(7339), + [anon_sym_LT_LT_EQ] = ACTIONS(7339), + [anon_sym_GT_GT_EQ] = ACTIONS(7339), + [anon_sym_AMP_EQ] = ACTIONS(7339), + [anon_sym_CARET_EQ] = ACTIONS(7339), + [anon_sym_PIPE_EQ] = ACTIONS(7339), + [anon_sym_and_eq] = ACTIONS(7339), + [anon_sym_or_eq] = ACTIONS(7339), + [anon_sym_xor_eq] = ACTIONS(7339), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7337), + [anon_sym_and] = ACTIONS(7337), + [anon_sym_bitor] = ACTIONS(7339), + [anon_sym_xor] = ACTIONS(7337), + [anon_sym_bitand] = ACTIONS(7339), + [anon_sym_not_eq] = ACTIONS(7339), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7339), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7339), + [anon_sym_override] = ACTIONS(7339), + [anon_sym_requires] = ACTIONS(7339), + }, + [STATE(3064)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7343), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_RBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7343), + [anon_sym_volatile] = ACTIONS(7343), + [anon_sym_restrict] = ACTIONS(7343), + [anon_sym___restrict__] = ACTIONS(7343), + [anon_sym__Atomic] = ACTIONS(7343), + [anon_sym__Noreturn] = ACTIONS(7343), + [anon_sym_noreturn] = ACTIONS(7343), + [anon_sym__Nonnull] = ACTIONS(7343), + [anon_sym_mutable] = ACTIONS(7343), + [anon_sym_constinit] = ACTIONS(7343), + [anon_sym_consteval] = ACTIONS(7343), + [anon_sym_alignas] = ACTIONS(7343), + [anon_sym__Alignas] = ACTIONS(7343), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3065)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7345), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(7347), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_RBRACK] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7347), + [anon_sym_volatile] = ACTIONS(7347), + [anon_sym_restrict] = ACTIONS(7347), + [anon_sym___restrict__] = ACTIONS(7347), + [anon_sym__Atomic] = ACTIONS(7347), + [anon_sym__Noreturn] = ACTIONS(7347), + [anon_sym_noreturn] = ACTIONS(7347), + [anon_sym__Nonnull] = ACTIONS(7347), + [anon_sym_mutable] = ACTIONS(7347), + [anon_sym_constinit] = ACTIONS(7347), + [anon_sym_consteval] = ACTIONS(7347), + [anon_sym_alignas] = ACTIONS(7347), + [anon_sym__Alignas] = ACTIONS(7347), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_STAR_EQ] = ACTIONS(7347), + [anon_sym_SLASH_EQ] = ACTIONS(7347), + [anon_sym_PERCENT_EQ] = ACTIONS(7347), + [anon_sym_PLUS_EQ] = ACTIONS(7347), + [anon_sym_DASH_EQ] = ACTIONS(7347), + [anon_sym_LT_LT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7347), + [anon_sym_CARET_EQ] = ACTIONS(7347), + [anon_sym_PIPE_EQ] = ACTIONS(7347), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), + }, + [STATE(3066)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7351), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(7353), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_RBRACK] = ACTIONS(7353), + [anon_sym_EQ] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7353), + [anon_sym_volatile] = ACTIONS(7353), + [anon_sym_restrict] = ACTIONS(7353), + [anon_sym___restrict__] = ACTIONS(7353), + [anon_sym__Atomic] = ACTIONS(7353), + [anon_sym__Noreturn] = ACTIONS(7353), + [anon_sym_noreturn] = ACTIONS(7353), + [anon_sym__Nonnull] = ACTIONS(7353), + [anon_sym_mutable] = ACTIONS(7353), + [anon_sym_constinit] = ACTIONS(7353), + [anon_sym_consteval] = ACTIONS(7353), + [anon_sym_alignas] = ACTIONS(7353), + [anon_sym__Alignas] = ACTIONS(7353), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_STAR_EQ] = ACTIONS(7353), + [anon_sym_SLASH_EQ] = ACTIONS(7353), + [anon_sym_PERCENT_EQ] = ACTIONS(7353), + [anon_sym_PLUS_EQ] = ACTIONS(7353), + [anon_sym_DASH_EQ] = ACTIONS(7353), + [anon_sym_LT_LT_EQ] = ACTIONS(7353), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7353), + [anon_sym_CARET_EQ] = ACTIONS(7353), + [anon_sym_PIPE_EQ] = ACTIONS(7353), + [anon_sym_and_eq] = ACTIONS(7353), + [anon_sym_or_eq] = ACTIONS(7353), + [anon_sym_xor_eq] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), + }, + [STATE(3067)] = { + [sym_identifier] = ACTIONS(7303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_RPAREN] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7305), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7305), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7305), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7305), + [anon_sym_GT_GT] = ACTIONS(7305), + [anon_sym_SEMI] = ACTIONS(7305), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7303), + [anon_sym_COLON] = ACTIONS(7303), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7305), + [anon_sym___based] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_RBRACE] = ACTIONS(7305), + [anon_sym_signed] = ACTIONS(7303), + [anon_sym_unsigned] = ACTIONS(7303), + [anon_sym_long] = ACTIONS(7303), + [anon_sym_short] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [sym_primitive_type] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7305), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), + [anon_sym_COLON_RBRACK] = ACTIONS(7305), + }, + [STATE(3068)] = { + [sym_identifier] = ACTIONS(8675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8677), + [anon_sym_COMMA] = ACTIONS(8677), + [anon_sym_RPAREN] = ACTIONS(8677), + [aux_sym_preproc_if_token2] = ACTIONS(8677), + [aux_sym_preproc_else_token1] = ACTIONS(8677), + [aux_sym_preproc_elif_token1] = ACTIONS(8675), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8677), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8677), + [anon_sym_LPAREN2] = ACTIONS(8677), + [anon_sym_DASH] = ACTIONS(8675), + [anon_sym_PLUS] = ACTIONS(8675), + [anon_sym_STAR] = ACTIONS(8675), + [anon_sym_SLASH] = ACTIONS(8675), + [anon_sym_PERCENT] = ACTIONS(8675), + [anon_sym_PIPE_PIPE] = ACTIONS(8677), + [anon_sym_AMP_AMP] = ACTIONS(8677), + [anon_sym_PIPE] = ACTIONS(8675), + [anon_sym_CARET] = ACTIONS(8675), + [anon_sym_AMP] = ACTIONS(8675), + [anon_sym_EQ_EQ] = ACTIONS(8677), + [anon_sym_BANG_EQ] = ACTIONS(8677), + [anon_sym_GT] = ACTIONS(8675), + [anon_sym_GT_EQ] = ACTIONS(8677), + [anon_sym_LT_EQ] = ACTIONS(8675), + [anon_sym_LT] = ACTIONS(8675), + [anon_sym_LT_LT] = ACTIONS(8675), + [anon_sym_GT_GT] = ACTIONS(8675), + [anon_sym_SEMI] = ACTIONS(8677), + [anon_sym___attribute__] = ACTIONS(8675), + [anon_sym___attribute] = ACTIONS(8675), + [anon_sym_COLON] = ACTIONS(8675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8677), + [anon_sym_LBRACE] = ACTIONS(8677), + [anon_sym_RBRACE] = ACTIONS(8677), + [anon_sym_LBRACK] = ACTIONS(8675), + [anon_sym_RBRACK] = ACTIONS(8677), + [anon_sym_EQ] = ACTIONS(8675), + [anon_sym_QMARK] = ACTIONS(8677), + [anon_sym_STAR_EQ] = ACTIONS(8677), + [anon_sym_SLASH_EQ] = ACTIONS(8677), + [anon_sym_PERCENT_EQ] = ACTIONS(8677), + [anon_sym_PLUS_EQ] = ACTIONS(8677), + [anon_sym_DASH_EQ] = ACTIONS(8677), + [anon_sym_LT_LT_EQ] = ACTIONS(8677), + [anon_sym_GT_GT_EQ] = ACTIONS(8677), + [anon_sym_AMP_EQ] = ACTIONS(8677), + [anon_sym_CARET_EQ] = ACTIONS(8677), + [anon_sym_PIPE_EQ] = ACTIONS(8677), + [anon_sym_and_eq] = ACTIONS(8675), + [anon_sym_or_eq] = ACTIONS(8675), + [anon_sym_xor_eq] = ACTIONS(8675), + [anon_sym_LT_EQ_GT] = ACTIONS(8677), + [anon_sym_or] = ACTIONS(8675), + [anon_sym_and] = ACTIONS(8675), + [anon_sym_bitor] = ACTIONS(8675), + [anon_sym_xor] = ACTIONS(8675), + [anon_sym_bitand] = ACTIONS(8675), + [anon_sym_not_eq] = ACTIONS(8675), + [anon_sym_DASH_DASH] = ACTIONS(8677), + [anon_sym_PLUS_PLUS] = ACTIONS(8677), + [anon_sym_asm] = ACTIONS(8675), + [anon_sym___asm__] = ACTIONS(8675), + [anon_sym___asm] = ACTIONS(8675), + [anon_sym_DOT] = ACTIONS(8675), + [anon_sym_DOT_STAR] = ACTIONS(8677), + [anon_sym_DASH_GT] = ACTIONS(8677), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8675), + [anon_sym_COLON_RBRACK] = ACTIONS(8677), + }, + [STATE(3069)] = { + [sym_identifier] = ACTIONS(7287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7289), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7289), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7289), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7289), + [anon_sym_GT_GT] = ACTIONS(7289), + [anon_sym_SEMI] = ACTIONS(7289), + [anon_sym___extension__] = ACTIONS(7287), + [anon_sym___attribute__] = ACTIONS(7287), + [anon_sym___attribute] = ACTIONS(7287), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), + [anon_sym___based] = ACTIONS(7287), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_signed] = ACTIONS(7287), + [anon_sym_unsigned] = ACTIONS(7287), + [anon_sym_long] = ACTIONS(7287), + [anon_sym_short] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7287), + [anon_sym_volatile] = ACTIONS(7287), + [anon_sym_restrict] = ACTIONS(7287), + [anon_sym___restrict__] = ACTIONS(7287), + [anon_sym__Atomic] = ACTIONS(7287), + [anon_sym__Noreturn] = ACTIONS(7287), + [anon_sym_noreturn] = ACTIONS(7287), + [anon_sym__Nonnull] = ACTIONS(7287), + [anon_sym_mutable] = ACTIONS(7287), + [anon_sym_constinit] = ACTIONS(7287), + [anon_sym_consteval] = ACTIONS(7287), + [anon_sym_alignas] = ACTIONS(7287), + [anon_sym__Alignas] = ACTIONS(7287), + [sym_primitive_type] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7287), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7287), + [anon_sym_not_eq] = ACTIONS(7287), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7287), + [anon_sym_override] = ACTIONS(7287), + [anon_sym_requires] = ACTIONS(7287), + [anon_sym_COLON_RBRACK] = ACTIONS(7289), + }, + [STATE(3070)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7361), + [anon_sym_volatile] = ACTIONS(7361), + [anon_sym_restrict] = ACTIONS(7361), + [anon_sym___restrict__] = ACTIONS(7361), + [anon_sym__Atomic] = ACTIONS(7361), + [anon_sym__Noreturn] = ACTIONS(7361), + [anon_sym_noreturn] = ACTIONS(7361), + [anon_sym__Nonnull] = ACTIONS(7361), + [anon_sym_mutable] = ACTIONS(7361), + [anon_sym_constinit] = ACTIONS(7361), + [anon_sym_consteval] = ACTIONS(7361), + [anon_sym_alignas] = ACTIONS(7361), + [anon_sym__Alignas] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7361), + [anon_sym_or_eq] = ACTIONS(7361), + [anon_sym_xor_eq] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7361), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7361), + [anon_sym_not_eq] = ACTIONS(7361), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7361), + [anon_sym_override] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7361), + }, + [STATE(3071)] = { + [sym_argument_list] = STATE(5707), + [sym_initializer_list] = STATE(5684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + }, + [STATE(3072)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(7377), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_RBRACK] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7377), + [anon_sym_volatile] = ACTIONS(7377), + [anon_sym_restrict] = ACTIONS(7377), + [anon_sym___restrict__] = ACTIONS(7377), + [anon_sym__Atomic] = ACTIONS(7377), + [anon_sym__Noreturn] = ACTIONS(7377), + [anon_sym_noreturn] = ACTIONS(7377), + [anon_sym__Nonnull] = ACTIONS(7377), + [anon_sym_mutable] = ACTIONS(7377), + [anon_sym_constinit] = ACTIONS(7377), + [anon_sym_consteval] = ACTIONS(7377), + [anon_sym_alignas] = ACTIONS(7377), + [anon_sym__Alignas] = ACTIONS(7377), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_STAR_EQ] = ACTIONS(7377), + [anon_sym_SLASH_EQ] = ACTIONS(7377), + [anon_sym_PERCENT_EQ] = ACTIONS(7377), + [anon_sym_PLUS_EQ] = ACTIONS(7377), + [anon_sym_DASH_EQ] = ACTIONS(7377), + [anon_sym_LT_LT_EQ] = ACTIONS(7377), + [anon_sym_GT_GT_EQ] = ACTIONS(7377), + [anon_sym_AMP_EQ] = ACTIONS(7377), + [anon_sym_CARET_EQ] = ACTIONS(7377), + [anon_sym_PIPE_EQ] = ACTIONS(7377), + [anon_sym_and_eq] = ACTIONS(7377), + [anon_sym_or_eq] = ACTIONS(7377), + [anon_sym_xor_eq] = ACTIONS(7377), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7377), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7377), + [anon_sym_not_eq] = ACTIONS(7377), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7377), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7377), + [anon_sym_override] = ACTIONS(7377), + [anon_sym_requires] = ACTIONS(7377), + }, + [STATE(3073)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_RBRACK] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_STAR_EQ] = ACTIONS(7381), + [anon_sym_SLASH_EQ] = ACTIONS(7381), + [anon_sym_PERCENT_EQ] = ACTIONS(7381), + [anon_sym_PLUS_EQ] = ACTIONS(7381), + [anon_sym_DASH_EQ] = ACTIONS(7381), + [anon_sym_LT_LT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7381), + [anon_sym_CARET_EQ] = ACTIONS(7381), + [anon_sym_PIPE_EQ] = ACTIONS(7381), + [anon_sym_and_eq] = ACTIONS(7381), + [anon_sym_or_eq] = ACTIONS(7381), + [anon_sym_xor_eq] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7381), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + }, + [STATE(3074)] = { + [sym_argument_list] = STATE(5662), + [sym_initializer_list] = STATE(5649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8274), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6800), + }, + [STATE(3075)] = { + [sym_attribute_specifier] = STATE(3719), + [sym_attribute_declaration] = STATE(6297), + [sym_type_qualifier] = STATE(3633), + [sym_alignas_qualifier] = STATE(3884), + [aux_sym_type_definition_repeat1] = STATE(3719), + [aux_sym__type_definition_type_repeat1] = STATE(3633), + [aux_sym_attributed_declarator_repeat1] = STATE(6297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_RBRACK] = ACTIONS(6390), + [anon_sym_const] = ACTIONS(7503), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(3076)] = { + [sym_identifier] = ACTIONS(7195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_RPAREN] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7197), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7197), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7197), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7197), + [anon_sym_GT_GT] = ACTIONS(7197), + [anon_sym_SEMI] = ACTIONS(7197), + [anon_sym___extension__] = ACTIONS(7195), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7197), + [anon_sym___based] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_RBRACE] = ACTIONS(7197), + [anon_sym_signed] = ACTIONS(7195), + [anon_sym_unsigned] = ACTIONS(7195), + [anon_sym_long] = ACTIONS(7195), + [anon_sym_short] = ACTIONS(7195), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7195), + [anon_sym_volatile] = ACTIONS(7195), + [anon_sym_restrict] = ACTIONS(7195), + [anon_sym___restrict__] = ACTIONS(7195), + [anon_sym__Atomic] = ACTIONS(7195), + [anon_sym__Noreturn] = ACTIONS(7195), + [anon_sym_noreturn] = ACTIONS(7195), + [anon_sym__Nonnull] = ACTIONS(7195), + [anon_sym_mutable] = ACTIONS(7195), + [anon_sym_constinit] = ACTIONS(7195), + [anon_sym_consteval] = ACTIONS(7195), + [anon_sym_alignas] = ACTIONS(7195), + [anon_sym__Alignas] = ACTIONS(7195), + [sym_primitive_type] = ACTIONS(7195), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7197), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_COLON_RBRACK] = ACTIONS(7197), + }, + [STATE(3077)] = { + [sym_identifier] = ACTIONS(7205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_RPAREN] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym_SEMI] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7205), + [anon_sym___attribute__] = ACTIONS(7205), + [anon_sym___attribute] = ACTIONS(7205), + [anon_sym_COLON] = ACTIONS(7205), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7207), + [anon_sym___based] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_RBRACE] = ACTIONS(7207), + [anon_sym_signed] = ACTIONS(7205), + [anon_sym_unsigned] = ACTIONS(7205), + [anon_sym_long] = ACTIONS(7205), + [anon_sym_short] = ACTIONS(7205), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7205), + [anon_sym_volatile] = ACTIONS(7205), + [anon_sym_restrict] = ACTIONS(7205), + [anon_sym___restrict__] = ACTIONS(7205), + [anon_sym__Atomic] = ACTIONS(7205), + [anon_sym__Noreturn] = ACTIONS(7205), + [anon_sym_noreturn] = ACTIONS(7205), + [anon_sym__Nonnull] = ACTIONS(7205), + [anon_sym_mutable] = ACTIONS(7205), + [anon_sym_constinit] = ACTIONS(7205), + [anon_sym_consteval] = ACTIONS(7205), + [anon_sym_alignas] = ACTIONS(7205), + [anon_sym__Alignas] = ACTIONS(7205), + [sym_primitive_type] = ACTIONS(7205), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7205), + [anon_sym_and] = ACTIONS(7205), + [anon_sym_bitor] = ACTIONS(7205), + [anon_sym_xor] = ACTIONS(7205), + [anon_sym_bitand] = ACTIONS(7205), + [anon_sym_not_eq] = ACTIONS(7205), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7205), + [anon_sym_override] = ACTIONS(7205), + [anon_sym_requires] = ACTIONS(7205), + [anon_sym_COLON_RBRACK] = ACTIONS(7207), + }, + [STATE(3078)] = { + [sym_identifier] = ACTIONS(7209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_RPAREN] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym_SEMI] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7209), + [anon_sym___attribute__] = ACTIONS(7209), + [anon_sym___attribute] = ACTIONS(7209), + [anon_sym_COLON] = ACTIONS(7209), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7211), + [anon_sym___based] = ACTIONS(7209), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_RBRACE] = ACTIONS(7211), + [anon_sym_signed] = ACTIONS(7209), + [anon_sym_unsigned] = ACTIONS(7209), + [anon_sym_long] = ACTIONS(7209), + [anon_sym_short] = ACTIONS(7209), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7209), + [anon_sym_volatile] = ACTIONS(7209), + [anon_sym_restrict] = ACTIONS(7209), + [anon_sym___restrict__] = ACTIONS(7209), + [anon_sym__Atomic] = ACTIONS(7209), + [anon_sym__Noreturn] = ACTIONS(7209), + [anon_sym_noreturn] = ACTIONS(7209), + [anon_sym__Nonnull] = ACTIONS(7209), + [anon_sym_mutable] = ACTIONS(7209), + [anon_sym_constinit] = ACTIONS(7209), + [anon_sym_consteval] = ACTIONS(7209), + [anon_sym_alignas] = ACTIONS(7209), + [anon_sym__Alignas] = ACTIONS(7209), + [sym_primitive_type] = ACTIONS(7209), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7209), + [anon_sym_and] = ACTIONS(7209), + [anon_sym_bitor] = ACTIONS(7209), + [anon_sym_xor] = ACTIONS(7209), + [anon_sym_bitand] = ACTIONS(7209), + [anon_sym_not_eq] = ACTIONS(7209), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7209), + [anon_sym_override] = ACTIONS(7209), + [anon_sym_requires] = ACTIONS(7209), + [anon_sym_COLON_RBRACK] = ACTIONS(7211), + }, + [STATE(3079)] = { + [sym_identifier] = ACTIONS(7219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_RPAREN] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7221), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7221), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7221), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7221), + [anon_sym_GT_GT] = ACTIONS(7221), + [anon_sym_SEMI] = ACTIONS(7221), + [anon_sym___extension__] = ACTIONS(7219), + [anon_sym___attribute__] = ACTIONS(7219), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_COLON] = ACTIONS(7219), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7221), + [anon_sym___based] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_RBRACE] = ACTIONS(7221), + [anon_sym_signed] = ACTIONS(7219), + [anon_sym_unsigned] = ACTIONS(7219), + [anon_sym_long] = ACTIONS(7219), + [anon_sym_short] = ACTIONS(7219), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7219), + [anon_sym_volatile] = ACTIONS(7219), + [anon_sym_restrict] = ACTIONS(7219), + [anon_sym___restrict__] = ACTIONS(7219), + [anon_sym__Atomic] = ACTIONS(7219), + [anon_sym__Noreturn] = ACTIONS(7219), + [anon_sym_noreturn] = ACTIONS(7219), + [anon_sym__Nonnull] = ACTIONS(7219), + [anon_sym_mutable] = ACTIONS(7219), + [anon_sym_constinit] = ACTIONS(7219), + [anon_sym_consteval] = ACTIONS(7219), + [anon_sym_alignas] = ACTIONS(7219), + [anon_sym__Alignas] = ACTIONS(7219), + [sym_primitive_type] = ACTIONS(7219), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7219), + [anon_sym_and] = ACTIONS(7219), + [anon_sym_bitor] = ACTIONS(7219), + [anon_sym_xor] = ACTIONS(7219), + [anon_sym_bitand] = ACTIONS(7219), + [anon_sym_not_eq] = ACTIONS(7219), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_requires] = ACTIONS(7219), + [anon_sym_COLON_RBRACK] = ACTIONS(7221), + }, + [STATE(3080)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym___based] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7223), + [anon_sym_unsigned] = ACTIONS(7223), + [anon_sym_long] = ACTIONS(7223), + [anon_sym_short] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [sym_primitive_type] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3081)] = { + [sym_identifier] = ACTIONS(7227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_RPAREN] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7229), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7229), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7229), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7229), + [anon_sym_GT_GT] = ACTIONS(7229), + [anon_sym_SEMI] = ACTIONS(7229), + [anon_sym___extension__] = ACTIONS(7227), + [anon_sym___attribute__] = ACTIONS(7227), + [anon_sym___attribute] = ACTIONS(7227), + [anon_sym_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7229), + [anon_sym___based] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_RBRACE] = ACTIONS(7229), + [anon_sym_signed] = ACTIONS(7227), + [anon_sym_unsigned] = ACTIONS(7227), + [anon_sym_long] = ACTIONS(7227), + [anon_sym_short] = ACTIONS(7227), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7227), + [anon_sym_volatile] = ACTIONS(7227), + [anon_sym_restrict] = ACTIONS(7227), + [anon_sym___restrict__] = ACTIONS(7227), + [anon_sym__Atomic] = ACTIONS(7227), + [anon_sym__Noreturn] = ACTIONS(7227), + [anon_sym_noreturn] = ACTIONS(7227), + [anon_sym__Nonnull] = ACTIONS(7227), + [anon_sym_mutable] = ACTIONS(7227), + [anon_sym_constinit] = ACTIONS(7227), + [anon_sym_consteval] = ACTIONS(7227), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [sym_primitive_type] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7227), + [anon_sym_and] = ACTIONS(7227), + [anon_sym_bitor] = ACTIONS(7227), + [anon_sym_xor] = ACTIONS(7227), + [anon_sym_bitand] = ACTIONS(7227), + [anon_sym_not_eq] = ACTIONS(7227), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7227), + [anon_sym_override] = ACTIONS(7227), + [anon_sym_requires] = ACTIONS(7227), + [anon_sym_COLON_RBRACK] = ACTIONS(7229), + }, + [STATE(3082)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7233), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7233), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7233), + [anon_sym_GT_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), + [anon_sym___based] = ACTIONS(7231), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7233), + [anon_sym_signed] = ACTIONS(7231), + [anon_sym_unsigned] = ACTIONS(7231), + [anon_sym_long] = ACTIONS(7231), + [anon_sym_short] = ACTIONS(7231), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [sym_primitive_type] = ACTIONS(7231), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7231), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7231), + [anon_sym_not_eq] = ACTIONS(7231), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7231), + [anon_sym_override] = ACTIONS(7231), + [anon_sym_requires] = ACTIONS(7231), + [anon_sym_COLON_RBRACK] = ACTIONS(7233), + }, + [STATE(3083)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7279), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7281), + [anon_sym_volatile] = ACTIONS(7281), + [anon_sym_restrict] = ACTIONS(7281), + [anon_sym___restrict__] = ACTIONS(7281), + [anon_sym__Atomic] = ACTIONS(7281), + [anon_sym__Noreturn] = ACTIONS(7281), + [anon_sym_noreturn] = ACTIONS(7281), + [anon_sym__Nonnull] = ACTIONS(7281), + [anon_sym_mutable] = ACTIONS(7281), + [anon_sym_constinit] = ACTIONS(7281), + [anon_sym_consteval] = ACTIONS(7281), + [anon_sym_alignas] = ACTIONS(7281), + [anon_sym__Alignas] = ACTIONS(7281), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7279), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7281), + [anon_sym_or_eq] = ACTIONS(7281), + [anon_sym_xor_eq] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7281), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7281), + [anon_sym_not_eq] = ACTIONS(7281), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7281), + [anon_sym_override] = ACTIONS(7281), + [anon_sym_GT2] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7281), + }, + [STATE(3084)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6790), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6790), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_and_eq] = ACTIONS(6792), + [anon_sym_or_eq] = ACTIONS(6792), + [anon_sym_xor_eq] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_GT2] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + }, + [STATE(3085)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(3086)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym___based] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7223), + [anon_sym_unsigned] = ACTIONS(7223), + [anon_sym_long] = ACTIONS(7223), + [anon_sym_short] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [sym_primitive_type] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3087)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym___based] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7223), + [anon_sym_unsigned] = ACTIONS(7223), + [anon_sym_long] = ACTIONS(7223), + [anon_sym_short] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [sym_primitive_type] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3088)] = { + [sym_identifier] = ACTIONS(7283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_RPAREN] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7285), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7285), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7285), + [anon_sym_GT_GT] = ACTIONS(7285), + [anon_sym_SEMI] = ACTIONS(7285), + [anon_sym___extension__] = ACTIONS(7283), + [anon_sym___attribute__] = ACTIONS(7283), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7285), + [anon_sym___based] = ACTIONS(7283), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_RBRACE] = ACTIONS(7285), + [anon_sym_signed] = ACTIONS(7283), + [anon_sym_unsigned] = ACTIONS(7283), + [anon_sym_long] = ACTIONS(7283), + [anon_sym_short] = ACTIONS(7283), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7283), + [anon_sym_volatile] = ACTIONS(7283), + [anon_sym_restrict] = ACTIONS(7283), + [anon_sym___restrict__] = ACTIONS(7283), + [anon_sym__Atomic] = ACTIONS(7283), + [anon_sym__Noreturn] = ACTIONS(7283), + [anon_sym_noreturn] = ACTIONS(7283), + [anon_sym__Nonnull] = ACTIONS(7283), + [anon_sym_mutable] = ACTIONS(7283), + [anon_sym_constinit] = ACTIONS(7283), + [anon_sym_consteval] = ACTIONS(7283), + [anon_sym_alignas] = ACTIONS(7283), + [anon_sym__Alignas] = ACTIONS(7283), + [sym_primitive_type] = ACTIONS(7283), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7283), + [anon_sym_and] = ACTIONS(7283), + [anon_sym_bitor] = ACTIONS(7283), + [anon_sym_xor] = ACTIONS(7283), + [anon_sym_bitand] = ACTIONS(7283), + [anon_sym_not_eq] = ACTIONS(7283), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7285), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7283), + [anon_sym_override] = ACTIONS(7283), + [anon_sym_requires] = ACTIONS(7283), + [anon_sym_COLON_RBRACK] = ACTIONS(7285), + }, + [STATE(3089)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7207), + [anon_sym_volatile] = ACTIONS(7207), + [anon_sym_restrict] = ACTIONS(7207), + [anon_sym___restrict__] = ACTIONS(7207), + [anon_sym__Atomic] = ACTIONS(7207), + [anon_sym__Noreturn] = ACTIONS(7207), + [anon_sym_noreturn] = ACTIONS(7207), + [anon_sym__Nonnull] = ACTIONS(7207), + [anon_sym_mutable] = ACTIONS(7207), + [anon_sym_constinit] = ACTIONS(7207), + [anon_sym_consteval] = ACTIONS(7207), + [anon_sym_alignas] = ACTIONS(7207), + [anon_sym__Alignas] = ACTIONS(7207), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_STAR_EQ] = ACTIONS(7207), + [anon_sym_SLASH_EQ] = ACTIONS(7207), + [anon_sym_PERCENT_EQ] = ACTIONS(7207), + [anon_sym_PLUS_EQ] = ACTIONS(7207), + [anon_sym_DASH_EQ] = ACTIONS(7207), + [anon_sym_LT_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7207), + [anon_sym_CARET_EQ] = ACTIONS(7207), + [anon_sym_PIPE_EQ] = ACTIONS(7207), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7205), + [anon_sym_and] = ACTIONS(7205), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7205), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_GT2] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(3090)] = { + [sym_type_qualifier] = STATE(3090), + [sym_alignas_qualifier] = STATE(3482), + [aux_sym__type_definition_type_repeat1] = STATE(3090), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_RPAREN] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_TILDE] = ACTIONS(6527), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_SEMI] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(8679), + [anon_sym_virtual] = ACTIONS(6525), + [anon_sym_extern] = ACTIONS(6525), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_COLON_COLON] = ACTIONS(6527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym___declspec] = ACTIONS(6525), + [anon_sym___based] = ACTIONS(6525), + [anon_sym___cdecl] = ACTIONS(6525), + [anon_sym___clrcall] = ACTIONS(6525), + [anon_sym___stdcall] = ACTIONS(6525), + [anon_sym___fastcall] = ACTIONS(6525), + [anon_sym___thiscall] = ACTIONS(6525), + [anon_sym___vectorcall] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_static] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(6527), + [anon_sym_register] = ACTIONS(6525), + [anon_sym_inline] = ACTIONS(6525), + [anon_sym___inline] = ACTIONS(6525), + [anon_sym___inline__] = ACTIONS(6525), + [anon_sym___forceinline] = ACTIONS(6525), + [anon_sym_thread_local] = ACTIONS(6525), + [anon_sym___thread] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(8679), + [anon_sym_constexpr] = ACTIONS(8679), + [anon_sym_volatile] = ACTIONS(8679), + [anon_sym_restrict] = ACTIONS(8679), + [anon_sym___restrict__] = ACTIONS(8679), + [anon_sym__Atomic] = ACTIONS(8679), + [anon_sym__Noreturn] = ACTIONS(8679), + [anon_sym_noreturn] = ACTIONS(8679), + [anon_sym__Nonnull] = ACTIONS(8679), + [anon_sym_mutable] = ACTIONS(8679), + [anon_sym_constinit] = ACTIONS(8679), + [anon_sym_consteval] = ACTIONS(8679), + [anon_sym_alignas] = ACTIONS(8682), + [anon_sym__Alignas] = ACTIONS(8682), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_enum] = ACTIONS(6525), + [anon_sym_class] = ACTIONS(6525), + [anon_sym_struct] = ACTIONS(6525), + [anon_sym_union] = ACTIONS(6525), + [anon_sym_typename] = ACTIONS(6525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6525), + [anon_sym_decltype] = ACTIONS(6525), + [anon_sym_template] = ACTIONS(6525), + [anon_sym_GT2] = ACTIONS(6527), + [anon_sym_operator] = ACTIONS(6525), + [anon_sym_LBRACK_COLON] = ACTIONS(6527), + }, + [STATE(3091)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7211), + [anon_sym_volatile] = ACTIONS(7211), + [anon_sym_restrict] = ACTIONS(7211), + [anon_sym___restrict__] = ACTIONS(7211), + [anon_sym__Atomic] = ACTIONS(7211), + [anon_sym__Noreturn] = ACTIONS(7211), + [anon_sym_noreturn] = ACTIONS(7211), + [anon_sym__Nonnull] = ACTIONS(7211), + [anon_sym_mutable] = ACTIONS(7211), + [anon_sym_constinit] = ACTIONS(7211), + [anon_sym_consteval] = ACTIONS(7211), + [anon_sym_alignas] = ACTIONS(7211), + [anon_sym__Alignas] = ACTIONS(7211), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7209), + [anon_sym_and] = ACTIONS(7209), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7209), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_GT2] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + }, + [STATE(3092)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), + [anon_sym_COMMA] = ACTIONS(7197), + [anon_sym_RPAREN] = ACTIONS(7197), + [anon_sym_LPAREN2] = ACTIONS(7197), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7197), + [anon_sym_AMP_AMP] = ACTIONS(7197), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7197), + [anon_sym_BANG_EQ] = ACTIONS(7197), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7197), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(7197), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7195), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7197), + [anon_sym__Alignas] = ACTIONS(7197), + [anon_sym_QMARK] = ACTIONS(7197), + [anon_sym_STAR_EQ] = ACTIONS(7197), + [anon_sym_SLASH_EQ] = ACTIONS(7197), + [anon_sym_PERCENT_EQ] = ACTIONS(7197), + [anon_sym_PLUS_EQ] = ACTIONS(7197), + [anon_sym_DASH_EQ] = ACTIONS(7197), + [anon_sym_LT_LT_EQ] = ACTIONS(7197), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7197), + [anon_sym_CARET_EQ] = ACTIONS(7197), + [anon_sym_PIPE_EQ] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(7197), + [anon_sym_or] = ACTIONS(7197), + [anon_sym_and] = ACTIONS(7197), + [anon_sym_bitor] = ACTIONS(7197), + [anon_sym_xor] = ACTIONS(7197), + [anon_sym_bitand] = ACTIONS(7197), + [anon_sym_not_eq] = ACTIONS(7197), + [anon_sym_DASH_DASH] = ACTIONS(7197), + [anon_sym_PLUS_PLUS] = ACTIONS(7197), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7197), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7197), + [anon_sym_override] = ACTIONS(7197), + [anon_sym_requires] = ACTIONS(7197), + [anon_sym_DASH_GT_STAR] = ACTIONS(7197), + }, + [STATE(3093)] = { + [sym_identifier] = ACTIONS(8685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8687), + [anon_sym_COMMA] = ACTIONS(8687), + [anon_sym_RPAREN] = ACTIONS(8687), + [aux_sym_preproc_if_token2] = ACTIONS(8687), + [aux_sym_preproc_else_token1] = ACTIONS(8687), + [aux_sym_preproc_elif_token1] = ACTIONS(8685), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8687), + [anon_sym_LPAREN2] = ACTIONS(8687), + [anon_sym_DASH] = ACTIONS(8685), + [anon_sym_PLUS] = ACTIONS(8685), + [anon_sym_STAR] = ACTIONS(8685), + [anon_sym_SLASH] = ACTIONS(8685), + [anon_sym_PERCENT] = ACTIONS(8685), + [anon_sym_PIPE_PIPE] = ACTIONS(8687), + [anon_sym_AMP_AMP] = ACTIONS(8687), + [anon_sym_PIPE] = ACTIONS(8685), + [anon_sym_CARET] = ACTIONS(8685), + [anon_sym_AMP] = ACTIONS(8685), + [anon_sym_EQ_EQ] = ACTIONS(8687), + [anon_sym_BANG_EQ] = ACTIONS(8687), + [anon_sym_GT] = ACTIONS(8685), + [anon_sym_GT_EQ] = ACTIONS(8687), + [anon_sym_LT_EQ] = ACTIONS(8685), + [anon_sym_LT] = ACTIONS(8685), + [anon_sym_LT_LT] = ACTIONS(8685), + [anon_sym_GT_GT] = ACTIONS(8685), + [anon_sym_SEMI] = ACTIONS(8687), + [anon_sym___attribute__] = ACTIONS(8685), + [anon_sym___attribute] = ACTIONS(8685), + [anon_sym_COLON] = ACTIONS(8685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8687), + [anon_sym_LBRACE] = ACTIONS(8687), + [anon_sym_RBRACE] = ACTIONS(8687), + [anon_sym_LBRACK] = ACTIONS(8685), + [anon_sym_RBRACK] = ACTIONS(8687), + [anon_sym_EQ] = ACTIONS(8685), + [anon_sym_QMARK] = ACTIONS(8687), + [anon_sym_STAR_EQ] = ACTIONS(8687), + [anon_sym_SLASH_EQ] = ACTIONS(8687), + [anon_sym_PERCENT_EQ] = ACTIONS(8687), + [anon_sym_PLUS_EQ] = ACTIONS(8687), + [anon_sym_DASH_EQ] = ACTIONS(8687), + [anon_sym_LT_LT_EQ] = ACTIONS(8687), + [anon_sym_GT_GT_EQ] = ACTIONS(8687), + [anon_sym_AMP_EQ] = ACTIONS(8687), + [anon_sym_CARET_EQ] = ACTIONS(8687), + [anon_sym_PIPE_EQ] = ACTIONS(8687), + [anon_sym_and_eq] = ACTIONS(8685), + [anon_sym_or_eq] = ACTIONS(8685), + [anon_sym_xor_eq] = ACTIONS(8685), + [anon_sym_LT_EQ_GT] = ACTIONS(8687), + [anon_sym_or] = ACTIONS(8685), + [anon_sym_and] = ACTIONS(8685), + [anon_sym_bitor] = ACTIONS(8685), + [anon_sym_xor] = ACTIONS(8685), + [anon_sym_bitand] = ACTIONS(8685), + [anon_sym_not_eq] = ACTIONS(8685), + [anon_sym_DASH_DASH] = ACTIONS(8687), + [anon_sym_PLUS_PLUS] = ACTIONS(8687), + [anon_sym_asm] = ACTIONS(8685), + [anon_sym___asm__] = ACTIONS(8685), + [anon_sym___asm] = ACTIONS(8685), + [anon_sym_DOT] = ACTIONS(8685), + [anon_sym_DOT_STAR] = ACTIONS(8687), + [anon_sym_DASH_GT] = ACTIONS(8687), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8685), + [anon_sym_COLON_RBRACK] = ACTIONS(8687), + }, + [STATE(3094)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), + [anon_sym_COMMA] = ACTIONS(7221), + [anon_sym_RPAREN] = ACTIONS(7221), + [anon_sym_LPAREN2] = ACTIONS(7221), + [anon_sym_DASH] = ACTIONS(7219), + [anon_sym_PLUS] = ACTIONS(7219), + [anon_sym_STAR] = ACTIONS(7219), + [anon_sym_SLASH] = ACTIONS(7219), + [anon_sym_PERCENT] = ACTIONS(7219), + [anon_sym_PIPE_PIPE] = ACTIONS(7221), + [anon_sym_AMP_AMP] = ACTIONS(7221), + [anon_sym_PIPE] = ACTIONS(7219), + [anon_sym_CARET] = ACTIONS(7219), + [anon_sym_AMP] = ACTIONS(7219), + [anon_sym_EQ_EQ] = ACTIONS(7221), + [anon_sym_BANG_EQ] = ACTIONS(7221), + [anon_sym_GT] = ACTIONS(7219), + [anon_sym_GT_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ] = ACTIONS(7219), + [anon_sym_LT] = ACTIONS(7219), + [anon_sym_LT_LT] = ACTIONS(7219), + [anon_sym_GT_GT] = ACTIONS(7219), + [anon_sym___extension__] = ACTIONS(7221), + [anon_sym___attribute__] = ACTIONS(7221), + [anon_sym___attribute] = ACTIONS(7219), + [anon_sym_LBRACE] = ACTIONS(7221), + [anon_sym_LBRACK] = ACTIONS(7221), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(7219), + [anon_sym_constexpr] = ACTIONS(7221), + [anon_sym_volatile] = ACTIONS(7221), + [anon_sym_restrict] = ACTIONS(7221), + [anon_sym___restrict__] = ACTIONS(7221), + [anon_sym__Atomic] = ACTIONS(7221), + [anon_sym__Noreturn] = ACTIONS(7221), + [anon_sym_noreturn] = ACTIONS(7221), + [anon_sym__Nonnull] = ACTIONS(7221), + [anon_sym_mutable] = ACTIONS(7221), + [anon_sym_constinit] = ACTIONS(7221), + [anon_sym_consteval] = ACTIONS(7221), + [anon_sym_alignas] = ACTIONS(7221), + [anon_sym__Alignas] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7221), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(7221), + [anon_sym_or] = ACTIONS(7221), + [anon_sym_and] = ACTIONS(7221), + [anon_sym_bitor] = ACTIONS(7221), + [anon_sym_xor] = ACTIONS(7221), + [anon_sym_bitand] = ACTIONS(7221), + [anon_sym_not_eq] = ACTIONS(7221), + [anon_sym_DASH_DASH] = ACTIONS(7221), + [anon_sym_PLUS_PLUS] = ACTIONS(7221), + [anon_sym_DOT] = ACTIONS(7219), + [anon_sym_DOT_STAR] = ACTIONS(7221), + [anon_sym_DASH_GT] = ACTIONS(7219), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7221), + [anon_sym_override] = ACTIONS(7221), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_DASH_GT_STAR] = ACTIONS(7221), + }, + [STATE(3095)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym___based] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), + }, + [STATE(3096)] = { + [sym_identifier] = ACTIONS(7287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7289), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7289), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7289), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7289), + [anon_sym_GT_GT] = ACTIONS(7289), + [anon_sym_SEMI] = ACTIONS(7289), + [anon_sym___extension__] = ACTIONS(7287), + [anon_sym___attribute__] = ACTIONS(7287), + [anon_sym___attribute] = ACTIONS(7287), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), + [anon_sym___based] = ACTIONS(7287), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_signed] = ACTIONS(7287), + [anon_sym_unsigned] = ACTIONS(7287), + [anon_sym_long] = ACTIONS(7287), + [anon_sym_short] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7287), + [anon_sym_volatile] = ACTIONS(7287), + [anon_sym_restrict] = ACTIONS(7287), + [anon_sym___restrict__] = ACTIONS(7287), + [anon_sym__Atomic] = ACTIONS(7287), + [anon_sym__Noreturn] = ACTIONS(7287), + [anon_sym_noreturn] = ACTIONS(7287), + [anon_sym__Nonnull] = ACTIONS(7287), + [anon_sym_mutable] = ACTIONS(7287), + [anon_sym_constinit] = ACTIONS(7287), + [anon_sym_consteval] = ACTIONS(7287), + [anon_sym_alignas] = ACTIONS(7287), + [anon_sym__Alignas] = ACTIONS(7287), + [sym_primitive_type] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7287), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7287), + [anon_sym_not_eq] = ACTIONS(7287), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7287), + [anon_sym_override] = ACTIONS(7287), + [anon_sym_requires] = ACTIONS(7287), + [anon_sym_COLON_RBRACK] = ACTIONS(7289), + }, + [STATE(3097)] = { + [sym_identifier] = ACTIONS(8689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8691), + [anon_sym_COMMA] = ACTIONS(8691), + [anon_sym_RPAREN] = ACTIONS(8691), + [aux_sym_preproc_if_token2] = ACTIONS(8691), + [aux_sym_preproc_else_token1] = ACTIONS(8691), + [aux_sym_preproc_elif_token1] = ACTIONS(8689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8691), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8691), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_DASH] = ACTIONS(8689), + [anon_sym_PLUS] = ACTIONS(8689), + [anon_sym_STAR] = ACTIONS(8689), + [anon_sym_SLASH] = ACTIONS(8689), + [anon_sym_PERCENT] = ACTIONS(8689), + [anon_sym_PIPE_PIPE] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_PIPE] = ACTIONS(8689), + [anon_sym_CARET] = ACTIONS(8689), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_EQ_EQ] = ACTIONS(8691), + [anon_sym_BANG_EQ] = ACTIONS(8691), + [anon_sym_GT] = ACTIONS(8689), + [anon_sym_GT_EQ] = ACTIONS(8691), + [anon_sym_LT_EQ] = ACTIONS(8689), + [anon_sym_LT] = ACTIONS(8689), + [anon_sym_LT_LT] = ACTIONS(8689), + [anon_sym_GT_GT] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_COLON] = ACTIONS(8689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym_LBRACE] = ACTIONS(8691), + [anon_sym_RBRACE] = ACTIONS(8691), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_RBRACK] = ACTIONS(8691), + [anon_sym_EQ] = ACTIONS(8689), + [anon_sym_QMARK] = ACTIONS(8691), + [anon_sym_STAR_EQ] = ACTIONS(8691), + [anon_sym_SLASH_EQ] = ACTIONS(8691), + [anon_sym_PERCENT_EQ] = ACTIONS(8691), + [anon_sym_PLUS_EQ] = ACTIONS(8691), + [anon_sym_DASH_EQ] = ACTIONS(8691), + [anon_sym_LT_LT_EQ] = ACTIONS(8691), + [anon_sym_GT_GT_EQ] = ACTIONS(8691), + [anon_sym_AMP_EQ] = ACTIONS(8691), + [anon_sym_CARET_EQ] = ACTIONS(8691), + [anon_sym_PIPE_EQ] = ACTIONS(8691), + [anon_sym_and_eq] = ACTIONS(8689), + [anon_sym_or_eq] = ACTIONS(8689), + [anon_sym_xor_eq] = ACTIONS(8689), + [anon_sym_LT_EQ_GT] = ACTIONS(8691), + [anon_sym_or] = ACTIONS(8689), + [anon_sym_and] = ACTIONS(8689), + [anon_sym_bitor] = ACTIONS(8689), + [anon_sym_xor] = ACTIONS(8689), + [anon_sym_bitand] = ACTIONS(8689), + [anon_sym_not_eq] = ACTIONS(8689), + [anon_sym_DASH_DASH] = ACTIONS(8691), + [anon_sym_PLUS_PLUS] = ACTIONS(8691), + [anon_sym_asm] = ACTIONS(8689), + [anon_sym___asm__] = ACTIONS(8689), + [anon_sym___asm] = ACTIONS(8689), + [anon_sym_DOT] = ACTIONS(8689), + [anon_sym_DOT_STAR] = ACTIONS(8691), + [anon_sym_DASH_GT] = ACTIONS(8691), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8689), + [anon_sym_COLON_RBRACK] = ACTIONS(8691), + }, + [STATE(3098)] = { + [sym_identifier] = ACTIONS(8693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8695), + [anon_sym_COMMA] = ACTIONS(8695), + [anon_sym_RPAREN] = ACTIONS(8695), + [aux_sym_preproc_if_token2] = ACTIONS(8695), + [aux_sym_preproc_else_token1] = ACTIONS(8695), + [aux_sym_preproc_elif_token1] = ACTIONS(8693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8695), + [anon_sym_LPAREN2] = ACTIONS(8695), + [anon_sym_DASH] = ACTIONS(8693), + [anon_sym_PLUS] = ACTIONS(8693), + [anon_sym_STAR] = ACTIONS(8693), + [anon_sym_SLASH] = ACTIONS(8693), + [anon_sym_PERCENT] = ACTIONS(8693), + [anon_sym_PIPE_PIPE] = ACTIONS(8695), + [anon_sym_AMP_AMP] = ACTIONS(8695), + [anon_sym_PIPE] = ACTIONS(8693), + [anon_sym_CARET] = ACTIONS(8693), + [anon_sym_AMP] = ACTIONS(8693), + [anon_sym_EQ_EQ] = ACTIONS(8695), + [anon_sym_BANG_EQ] = ACTIONS(8695), + [anon_sym_GT] = ACTIONS(8693), + [anon_sym_GT_EQ] = ACTIONS(8695), + [anon_sym_LT_EQ] = ACTIONS(8693), + [anon_sym_LT] = ACTIONS(8693), + [anon_sym_LT_LT] = ACTIONS(8693), + [anon_sym_GT_GT] = ACTIONS(8693), + [anon_sym_SEMI] = ACTIONS(8695), + [anon_sym___attribute__] = ACTIONS(8693), + [anon_sym___attribute] = ACTIONS(8693), + [anon_sym_COLON] = ACTIONS(8693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8695), + [anon_sym_LBRACE] = ACTIONS(8695), + [anon_sym_RBRACE] = ACTIONS(8695), + [anon_sym_LBRACK] = ACTIONS(8693), + [anon_sym_RBRACK] = ACTIONS(8695), + [anon_sym_EQ] = ACTIONS(8693), + [anon_sym_QMARK] = ACTIONS(8695), + [anon_sym_STAR_EQ] = ACTIONS(8695), + [anon_sym_SLASH_EQ] = ACTIONS(8695), + [anon_sym_PERCENT_EQ] = ACTIONS(8695), + [anon_sym_PLUS_EQ] = ACTIONS(8695), + [anon_sym_DASH_EQ] = ACTIONS(8695), + [anon_sym_LT_LT_EQ] = ACTIONS(8695), + [anon_sym_GT_GT_EQ] = ACTIONS(8695), + [anon_sym_AMP_EQ] = ACTIONS(8695), + [anon_sym_CARET_EQ] = ACTIONS(8695), + [anon_sym_PIPE_EQ] = ACTIONS(8695), + [anon_sym_and_eq] = ACTIONS(8693), + [anon_sym_or_eq] = ACTIONS(8693), + [anon_sym_xor_eq] = ACTIONS(8693), + [anon_sym_LT_EQ_GT] = ACTIONS(8695), + [anon_sym_or] = ACTIONS(8693), + [anon_sym_and] = ACTIONS(8693), + [anon_sym_bitor] = ACTIONS(8693), + [anon_sym_xor] = ACTIONS(8693), + [anon_sym_bitand] = ACTIONS(8693), + [anon_sym_not_eq] = ACTIONS(8693), + [anon_sym_DASH_DASH] = ACTIONS(8695), + [anon_sym_PLUS_PLUS] = ACTIONS(8695), + [anon_sym_asm] = ACTIONS(8693), + [anon_sym___asm__] = ACTIONS(8693), + [anon_sym___asm] = ACTIONS(8693), + [anon_sym_DOT] = ACTIONS(8693), + [anon_sym_DOT_STAR] = ACTIONS(8695), + [anon_sym_DASH_GT] = ACTIONS(8695), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8693), + [anon_sym_COLON_RBRACK] = ACTIONS(8695), + }, + [STATE(3099)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(3100)] = { + [sym_identifier] = ACTIONS(7191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(7191), + [anon_sym___attribute__] = ACTIONS(7191), + [anon_sym___attribute] = ACTIONS(7191), + [anon_sym_COLON] = ACTIONS(7191), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym___based] = ACTIONS(7191), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7191), + [anon_sym_unsigned] = ACTIONS(7191), + [anon_sym_long] = ACTIONS(7191), + [anon_sym_short] = ACTIONS(7191), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7191), + [anon_sym_volatile] = ACTIONS(7191), + [anon_sym_restrict] = ACTIONS(7191), + [anon_sym___restrict__] = ACTIONS(7191), + [anon_sym__Atomic] = ACTIONS(7191), + [anon_sym__Noreturn] = ACTIONS(7191), + [anon_sym_noreturn] = ACTIONS(7191), + [anon_sym__Nonnull] = ACTIONS(7191), + [anon_sym_mutable] = ACTIONS(7191), + [anon_sym_constinit] = ACTIONS(7191), + [anon_sym_consteval] = ACTIONS(7191), + [anon_sym_alignas] = ACTIONS(7191), + [anon_sym__Alignas] = ACTIONS(7191), + [sym_primitive_type] = ACTIONS(7191), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7191), + [anon_sym_and] = ACTIONS(7191), + [anon_sym_bitor] = ACTIONS(7191), + [anon_sym_xor] = ACTIONS(7191), + [anon_sym_bitand] = ACTIONS(7191), + [anon_sym_not_eq] = ACTIONS(7191), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7191), + [anon_sym_override] = ACTIONS(7191), + [anon_sym_requires] = ACTIONS(7191), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), + }, + [STATE(3101)] = { + [sym_template_argument_list] = STATE(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(6205), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6205), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(8697), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6205), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6203), + [anon_sym_or_eq] = ACTIONS(6203), + [anon_sym_xor_eq] = ACTIONS(6203), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6203), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6203), + [anon_sym_not_eq] = ACTIONS(6203), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + }, + [STATE(3102)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym___based] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), + }, + [STATE(3103)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7337), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7337), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7337), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7337), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7337), + [anon_sym_GT_GT] = ACTIONS(7337), + [anon_sym___extension__] = ACTIONS(7339), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_EQ] = ACTIONS(7337), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7339), + [anon_sym_volatile] = ACTIONS(7339), + [anon_sym_restrict] = ACTIONS(7339), + [anon_sym___restrict__] = ACTIONS(7339), + [anon_sym__Atomic] = ACTIONS(7339), + [anon_sym__Noreturn] = ACTIONS(7339), + [anon_sym_noreturn] = ACTIONS(7339), + [anon_sym__Nonnull] = ACTIONS(7339), + [anon_sym_mutable] = ACTIONS(7339), + [anon_sym_constinit] = ACTIONS(7339), + [anon_sym_consteval] = ACTIONS(7339), + [anon_sym_alignas] = ACTIONS(7339), + [anon_sym__Alignas] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_STAR_EQ] = ACTIONS(7339), + [anon_sym_SLASH_EQ] = ACTIONS(7339), + [anon_sym_PERCENT_EQ] = ACTIONS(7339), + [anon_sym_PLUS_EQ] = ACTIONS(7339), + [anon_sym_DASH_EQ] = ACTIONS(7339), + [anon_sym_LT_LT_EQ] = ACTIONS(7339), + [anon_sym_GT_GT_EQ] = ACTIONS(7337), + [anon_sym_AMP_EQ] = ACTIONS(7339), + [anon_sym_CARET_EQ] = ACTIONS(7339), + [anon_sym_PIPE_EQ] = ACTIONS(7339), + [anon_sym_and_eq] = ACTIONS(7339), + [anon_sym_or_eq] = ACTIONS(7339), + [anon_sym_xor_eq] = ACTIONS(7339), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7337), + [anon_sym_and] = ACTIONS(7337), + [anon_sym_bitor] = ACTIONS(7339), + [anon_sym_xor] = ACTIONS(7337), + [anon_sym_bitand] = ACTIONS(7339), + [anon_sym_not_eq] = ACTIONS(7339), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7339), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7339), + [anon_sym_override] = ACTIONS(7339), + [anon_sym_GT2] = ACTIONS(7339), + [anon_sym_requires] = ACTIONS(7339), + }, + [STATE(3104)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7343), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7343), + [anon_sym_volatile] = ACTIONS(7343), + [anon_sym_restrict] = ACTIONS(7343), + [anon_sym___restrict__] = ACTIONS(7343), + [anon_sym__Atomic] = ACTIONS(7343), + [anon_sym__Noreturn] = ACTIONS(7343), + [anon_sym_noreturn] = ACTIONS(7343), + [anon_sym__Nonnull] = ACTIONS(7343), + [anon_sym_mutable] = ACTIONS(7343), + [anon_sym_constinit] = ACTIONS(7343), + [anon_sym_consteval] = ACTIONS(7343), + [anon_sym_alignas] = ACTIONS(7343), + [anon_sym__Alignas] = ACTIONS(7343), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_GT2] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3105)] = { + [sym_attribute_declaration] = STATE(3105), + [aux_sym_attributed_declarator_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8700), + [anon_sym_COMMA] = ACTIONS(8700), + [anon_sym_RPAREN] = ACTIONS(8700), + [aux_sym_preproc_if_token2] = ACTIONS(8700), + [aux_sym_preproc_else_token1] = ACTIONS(8700), + [aux_sym_preproc_elif_token1] = ACTIONS(2101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8700), + [anon_sym_LPAREN2] = ACTIONS(8700), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(8700), + [anon_sym_AMP_AMP] = ACTIONS(8700), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_EQ_EQ] = ACTIONS(8700), + [anon_sym_BANG_EQ] = ACTIONS(8700), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_GT_EQ] = ACTIONS(8700), + [anon_sym_LT_EQ] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(8700), + [anon_sym___attribute__] = ACTIONS(2101), + [anon_sym___attribute] = ACTIONS(2101), + [anon_sym_COLON] = ACTIONS(2101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8702), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8700), + [anon_sym_RBRACE] = ACTIONS(8700), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(8700), + [anon_sym_STAR_EQ] = ACTIONS(8700), + [anon_sym_SLASH_EQ] = ACTIONS(8700), + [anon_sym_PERCENT_EQ] = ACTIONS(8700), + [anon_sym_PLUS_EQ] = ACTIONS(8700), + [anon_sym_DASH_EQ] = ACTIONS(8700), + [anon_sym_LT_LT_EQ] = ACTIONS(8700), + [anon_sym_GT_GT_EQ] = ACTIONS(8700), + [anon_sym_AMP_EQ] = ACTIONS(8700), + [anon_sym_CARET_EQ] = ACTIONS(8700), + [anon_sym_PIPE_EQ] = ACTIONS(8700), + [anon_sym_and_eq] = ACTIONS(2101), + [anon_sym_or_eq] = ACTIONS(2101), + [anon_sym_xor_eq] = ACTIONS(2101), + [anon_sym_LT_EQ_GT] = ACTIONS(8700), + [anon_sym_or] = ACTIONS(2101), + [anon_sym_and] = ACTIONS(2101), + [anon_sym_bitor] = ACTIONS(2101), + [anon_sym_xor] = ACTIONS(2101), + [anon_sym_bitand] = ACTIONS(2101), + [anon_sym_not_eq] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(8700), + [anon_sym_PLUS_PLUS] = ACTIONS(8700), + [anon_sym_DOT] = ACTIONS(2101), + [anon_sym_DOT_STAR] = ACTIONS(8700), + [anon_sym_DASH_GT] = ACTIONS(8700), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2101), + [anon_sym_override] = ACTIONS(2101), + [anon_sym_requires] = ACTIONS(2101), + [anon_sym_COLON_RBRACK] = ACTIONS(8700), + }, + [STATE(3106)] = { + [sym_attribute_specifier] = STATE(3715), + [sym_attribute_declaration] = STATE(6295), + [sym_type_qualifier] = STATE(3651), + [sym_alignas_qualifier] = STATE(3874), + [aux_sym_type_definition_repeat1] = STATE(3715), + [aux_sym__type_definition_type_repeat1] = STATE(3651), + [aux_sym_attributed_declarator_repeat1] = STATE(6295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6388), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(7439), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(7447), + [anon_sym_constexpr] = ACTIONS(7439), + [anon_sym_volatile] = ACTIONS(7439), + [anon_sym_restrict] = ACTIONS(7439), + [anon_sym___restrict__] = ACTIONS(7439), + [anon_sym__Atomic] = ACTIONS(7439), + [anon_sym__Noreturn] = ACTIONS(7439), + [anon_sym_noreturn] = ACTIONS(7439), + [anon_sym__Nonnull] = ACTIONS(7439), + [anon_sym_mutable] = ACTIONS(7439), + [anon_sym_constinit] = ACTIONS(7439), + [anon_sym_consteval] = ACTIONS(7439), + [anon_sym_alignas] = ACTIONS(7449), + [anon_sym__Alignas] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_GT2] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(3107)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7345), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(7347), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7347), + [anon_sym_volatile] = ACTIONS(7347), + [anon_sym_restrict] = ACTIONS(7347), + [anon_sym___restrict__] = ACTIONS(7347), + [anon_sym__Atomic] = ACTIONS(7347), + [anon_sym__Noreturn] = ACTIONS(7347), + [anon_sym_noreturn] = ACTIONS(7347), + [anon_sym__Nonnull] = ACTIONS(7347), + [anon_sym_mutable] = ACTIONS(7347), + [anon_sym_constinit] = ACTIONS(7347), + [anon_sym_consteval] = ACTIONS(7347), + [anon_sym_alignas] = ACTIONS(7347), + [anon_sym__Alignas] = ACTIONS(7347), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_STAR_EQ] = ACTIONS(7347), + [anon_sym_SLASH_EQ] = ACTIONS(7347), + [anon_sym_PERCENT_EQ] = ACTIONS(7347), + [anon_sym_PLUS_EQ] = ACTIONS(7347), + [anon_sym_DASH_EQ] = ACTIONS(7347), + [anon_sym_LT_LT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7347), + [anon_sym_CARET_EQ] = ACTIONS(7347), + [anon_sym_PIPE_EQ] = ACTIONS(7347), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_GT2] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), + }, + [STATE(3108)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7351), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(7353), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_EQ] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7353), + [anon_sym_volatile] = ACTIONS(7353), + [anon_sym_restrict] = ACTIONS(7353), + [anon_sym___restrict__] = ACTIONS(7353), + [anon_sym__Atomic] = ACTIONS(7353), + [anon_sym__Noreturn] = ACTIONS(7353), + [anon_sym_noreturn] = ACTIONS(7353), + [anon_sym__Nonnull] = ACTIONS(7353), + [anon_sym_mutable] = ACTIONS(7353), + [anon_sym_constinit] = ACTIONS(7353), + [anon_sym_consteval] = ACTIONS(7353), + [anon_sym_alignas] = ACTIONS(7353), + [anon_sym__Alignas] = ACTIONS(7353), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_STAR_EQ] = ACTIONS(7353), + [anon_sym_SLASH_EQ] = ACTIONS(7353), + [anon_sym_PERCENT_EQ] = ACTIONS(7353), + [anon_sym_PLUS_EQ] = ACTIONS(7353), + [anon_sym_DASH_EQ] = ACTIONS(7353), + [anon_sym_LT_LT_EQ] = ACTIONS(7353), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7353), + [anon_sym_CARET_EQ] = ACTIONS(7353), + [anon_sym_PIPE_EQ] = ACTIONS(7353), + [anon_sym_and_eq] = ACTIONS(7353), + [anon_sym_or_eq] = ACTIONS(7353), + [anon_sym_xor_eq] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_GT2] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), + }, + [STATE(3109)] = { + [sym_identifier] = ACTIONS(8705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8707), + [anon_sym_COMMA] = ACTIONS(8707), + [anon_sym_RPAREN] = ACTIONS(8707), + [aux_sym_preproc_if_token2] = ACTIONS(8707), + [aux_sym_preproc_else_token1] = ACTIONS(8707), + [aux_sym_preproc_elif_token1] = ACTIONS(8705), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8707), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8707), + [anon_sym_LPAREN2] = ACTIONS(8707), + [anon_sym_DASH] = ACTIONS(8705), + [anon_sym_PLUS] = ACTIONS(8705), + [anon_sym_STAR] = ACTIONS(8705), + [anon_sym_SLASH] = ACTIONS(8705), + [anon_sym_PERCENT] = ACTIONS(8705), + [anon_sym_PIPE_PIPE] = ACTIONS(8707), + [anon_sym_AMP_AMP] = ACTIONS(8707), + [anon_sym_PIPE] = ACTIONS(8705), + [anon_sym_CARET] = ACTIONS(8705), + [anon_sym_AMP] = ACTIONS(8705), + [anon_sym_EQ_EQ] = ACTIONS(8707), + [anon_sym_BANG_EQ] = ACTIONS(8707), + [anon_sym_GT] = ACTIONS(8705), + [anon_sym_GT_EQ] = ACTIONS(8707), + [anon_sym_LT_EQ] = ACTIONS(8705), + [anon_sym_LT] = ACTIONS(8705), + [anon_sym_LT_LT] = ACTIONS(8705), + [anon_sym_GT_GT] = ACTIONS(8705), + [anon_sym_SEMI] = ACTIONS(8707), + [anon_sym___attribute__] = ACTIONS(8705), + [anon_sym___attribute] = ACTIONS(8705), + [anon_sym_COLON] = ACTIONS(8705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8707), + [anon_sym_LBRACE] = ACTIONS(8707), + [anon_sym_RBRACE] = ACTIONS(8707), + [anon_sym_LBRACK] = ACTIONS(8705), + [anon_sym_RBRACK] = ACTIONS(8707), + [anon_sym_EQ] = ACTIONS(8705), + [anon_sym_QMARK] = ACTIONS(8707), + [anon_sym_STAR_EQ] = ACTIONS(8707), + [anon_sym_SLASH_EQ] = ACTIONS(8707), + [anon_sym_PERCENT_EQ] = ACTIONS(8707), + [anon_sym_PLUS_EQ] = ACTIONS(8707), + [anon_sym_DASH_EQ] = ACTIONS(8707), + [anon_sym_LT_LT_EQ] = ACTIONS(8707), + [anon_sym_GT_GT_EQ] = ACTIONS(8707), + [anon_sym_AMP_EQ] = ACTIONS(8707), + [anon_sym_CARET_EQ] = ACTIONS(8707), + [anon_sym_PIPE_EQ] = ACTIONS(8707), + [anon_sym_and_eq] = ACTIONS(8705), + [anon_sym_or_eq] = ACTIONS(8705), + [anon_sym_xor_eq] = ACTIONS(8705), + [anon_sym_LT_EQ_GT] = ACTIONS(8707), + [anon_sym_or] = ACTIONS(8705), + [anon_sym_and] = ACTIONS(8705), + [anon_sym_bitor] = ACTIONS(8705), + [anon_sym_xor] = ACTIONS(8705), + [anon_sym_bitand] = ACTIONS(8705), + [anon_sym_not_eq] = ACTIONS(8705), + [anon_sym_DASH_DASH] = ACTIONS(8707), + [anon_sym_PLUS_PLUS] = ACTIONS(8707), + [anon_sym_asm] = ACTIONS(8705), + [anon_sym___asm__] = ACTIONS(8705), + [anon_sym___asm] = ACTIONS(8705), + [anon_sym_DOT] = ACTIONS(8705), + [anon_sym_DOT_STAR] = ACTIONS(8707), + [anon_sym_DASH_GT] = ACTIONS(8707), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8705), + [anon_sym_COLON_RBRACK] = ACTIONS(8707), + }, + [STATE(3110)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7355), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_STAR_EQ] = ACTIONS(7357), + [anon_sym_SLASH_EQ] = ACTIONS(7357), + [anon_sym_PERCENT_EQ] = ACTIONS(7357), + [anon_sym_PLUS_EQ] = ACTIONS(7357), + [anon_sym_DASH_EQ] = ACTIONS(7357), + [anon_sym_LT_LT_EQ] = ACTIONS(7357), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7357), + [anon_sym_CARET_EQ] = ACTIONS(7357), + [anon_sym_PIPE_EQ] = ACTIONS(7357), + [anon_sym_and_eq] = ACTIONS(7357), + [anon_sym_or_eq] = ACTIONS(7357), + [anon_sym_xor_eq] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_GT2] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), + }, + [STATE(3111)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7361), + [anon_sym_volatile] = ACTIONS(7361), + [anon_sym_restrict] = ACTIONS(7361), + [anon_sym___restrict__] = ACTIONS(7361), + [anon_sym__Atomic] = ACTIONS(7361), + [anon_sym__Noreturn] = ACTIONS(7361), + [anon_sym_noreturn] = ACTIONS(7361), + [anon_sym__Nonnull] = ACTIONS(7361), + [anon_sym_mutable] = ACTIONS(7361), + [anon_sym_constinit] = ACTIONS(7361), + [anon_sym_consteval] = ACTIONS(7361), + [anon_sym_alignas] = ACTIONS(7361), + [anon_sym__Alignas] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7361), + [anon_sym_or_eq] = ACTIONS(7361), + [anon_sym_xor_eq] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7361), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7361), + [anon_sym_not_eq] = ACTIONS(7361), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7361), + [anon_sym_override] = ACTIONS(7361), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7361), + }, + [STATE(3112)] = { + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7265), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7265), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7265), + [anon_sym_GT_GT] = ACTIONS(7265), + [anon_sym_SEMI] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), + [anon_sym___based] = ACTIONS(7263), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_RBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(7263), + [anon_sym_unsigned] = ACTIONS(7263), + [anon_sym_long] = ACTIONS(7263), + [anon_sym_short] = ACTIONS(7263), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [sym_primitive_type] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_COLON_RBRACK] = ACTIONS(7265), + }, + [STATE(3113)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7421), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7423), + [anon_sym_volatile] = ACTIONS(7423), + [anon_sym_restrict] = ACTIONS(7423), + [anon_sym___restrict__] = ACTIONS(7423), + [anon_sym__Atomic] = ACTIONS(7423), + [anon_sym__Noreturn] = ACTIONS(7423), + [anon_sym_noreturn] = ACTIONS(7423), + [anon_sym__Nonnull] = ACTIONS(7423), + [anon_sym_mutable] = ACTIONS(7423), + [anon_sym_constinit] = ACTIONS(7423), + [anon_sym_consteval] = ACTIONS(7423), + [anon_sym_alignas] = ACTIONS(7423), + [anon_sym__Alignas] = ACTIONS(7423), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7421), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7423), + [anon_sym_or_eq] = ACTIONS(7423), + [anon_sym_xor_eq] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7423), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7423), + [anon_sym_not_eq] = ACTIONS(7423), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7423), + [anon_sym_override] = ACTIONS(7423), + [anon_sym_GT2] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7423), + }, + [STATE(3114)] = { + [sym_identifier] = ACTIONS(7379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_RPAREN] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym_SEMI] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7379), + [anon_sym___attribute__] = ACTIONS(7379), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7381), + [anon_sym___based] = ACTIONS(7379), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_RBRACE] = ACTIONS(7381), + [anon_sym_signed] = ACTIONS(7379), + [anon_sym_unsigned] = ACTIONS(7379), + [anon_sym_long] = ACTIONS(7379), + [anon_sym_short] = ACTIONS(7379), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7379), + [anon_sym_volatile] = ACTIONS(7379), + [anon_sym_restrict] = ACTIONS(7379), + [anon_sym___restrict__] = ACTIONS(7379), + [anon_sym__Atomic] = ACTIONS(7379), + [anon_sym__Noreturn] = ACTIONS(7379), + [anon_sym_noreturn] = ACTIONS(7379), + [anon_sym__Nonnull] = ACTIONS(7379), + [anon_sym_mutable] = ACTIONS(7379), + [anon_sym_constinit] = ACTIONS(7379), + [anon_sym_consteval] = ACTIONS(7379), + [anon_sym_alignas] = ACTIONS(7379), + [anon_sym__Alignas] = ACTIONS(7379), + [sym_primitive_type] = ACTIONS(7379), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7379), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7379), + [anon_sym_not_eq] = ACTIONS(7379), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7381), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7379), + [anon_sym_override] = ACTIONS(7379), + [anon_sym_requires] = ACTIONS(7379), + [anon_sym_COLON_RBRACK] = ACTIONS(7381), + }, + [STATE(3115)] = { + [sym_identifier] = ACTIONS(8709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8711), + [anon_sym_COMMA] = ACTIONS(8711), + [anon_sym_RPAREN] = ACTIONS(8711), + [aux_sym_preproc_if_token2] = ACTIONS(8711), + [aux_sym_preproc_else_token1] = ACTIONS(8711), + [aux_sym_preproc_elif_token1] = ACTIONS(8709), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8711), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8711), + [anon_sym_LPAREN2] = ACTIONS(8711), + [anon_sym_DASH] = ACTIONS(8709), + [anon_sym_PLUS] = ACTIONS(8709), + [anon_sym_STAR] = ACTIONS(8709), + [anon_sym_SLASH] = ACTIONS(8709), + [anon_sym_PERCENT] = ACTIONS(8709), + [anon_sym_PIPE_PIPE] = ACTIONS(8711), + [anon_sym_AMP_AMP] = ACTIONS(8711), + [anon_sym_PIPE] = ACTIONS(8709), + [anon_sym_CARET] = ACTIONS(8709), + [anon_sym_AMP] = ACTIONS(8709), + [anon_sym_EQ_EQ] = ACTIONS(8711), + [anon_sym_BANG_EQ] = ACTIONS(8711), + [anon_sym_GT] = ACTIONS(8709), + [anon_sym_GT_EQ] = ACTIONS(8711), + [anon_sym_LT_EQ] = ACTIONS(8709), + [anon_sym_LT] = ACTIONS(8709), + [anon_sym_LT_LT] = ACTIONS(8709), + [anon_sym_GT_GT] = ACTIONS(8709), + [anon_sym_SEMI] = ACTIONS(8711), + [anon_sym___attribute__] = ACTIONS(8709), + [anon_sym___attribute] = ACTIONS(8709), + [anon_sym_COLON] = ACTIONS(8709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8711), + [anon_sym_LBRACE] = ACTIONS(8711), + [anon_sym_RBRACE] = ACTIONS(8711), + [anon_sym_LBRACK] = ACTIONS(8709), + [anon_sym_RBRACK] = ACTIONS(8711), + [anon_sym_EQ] = ACTIONS(8709), + [anon_sym_QMARK] = ACTIONS(8711), + [anon_sym_STAR_EQ] = ACTIONS(8711), + [anon_sym_SLASH_EQ] = ACTIONS(8711), + [anon_sym_PERCENT_EQ] = ACTIONS(8711), + [anon_sym_PLUS_EQ] = ACTIONS(8711), + [anon_sym_DASH_EQ] = ACTIONS(8711), + [anon_sym_LT_LT_EQ] = ACTIONS(8711), + [anon_sym_GT_GT_EQ] = ACTIONS(8711), + [anon_sym_AMP_EQ] = ACTIONS(8711), + [anon_sym_CARET_EQ] = ACTIONS(8711), + [anon_sym_PIPE_EQ] = ACTIONS(8711), + [anon_sym_and_eq] = ACTIONS(8709), + [anon_sym_or_eq] = ACTIONS(8709), + [anon_sym_xor_eq] = ACTIONS(8709), + [anon_sym_LT_EQ_GT] = ACTIONS(8711), + [anon_sym_or] = ACTIONS(8709), + [anon_sym_and] = ACTIONS(8709), + [anon_sym_bitor] = ACTIONS(8709), + [anon_sym_xor] = ACTIONS(8709), + [anon_sym_bitand] = ACTIONS(8709), + [anon_sym_not_eq] = ACTIONS(8709), + [anon_sym_DASH_DASH] = ACTIONS(8711), + [anon_sym_PLUS_PLUS] = ACTIONS(8711), + [anon_sym_asm] = ACTIONS(8709), + [anon_sym___asm__] = ACTIONS(8709), + [anon_sym___asm] = ACTIONS(8709), + [anon_sym_DOT] = ACTIONS(8709), + [anon_sym_DOT_STAR] = ACTIONS(8711), + [anon_sym_DASH_GT] = ACTIONS(8711), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8709), + [anon_sym_COLON_RBRACK] = ACTIONS(8711), + }, + [STATE(3116)] = { + [sym_identifier] = ACTIONS(8713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8715), + [anon_sym_COMMA] = ACTIONS(8715), + [anon_sym_RPAREN] = ACTIONS(8715), + [aux_sym_preproc_if_token2] = ACTIONS(8715), + [aux_sym_preproc_else_token1] = ACTIONS(8715), + [aux_sym_preproc_elif_token1] = ACTIONS(8713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8715), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8715), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8713), + [anon_sym_STAR] = ACTIONS(8713), + [anon_sym_SLASH] = ACTIONS(8713), + [anon_sym_PERCENT] = ACTIONS(8713), + [anon_sym_PIPE_PIPE] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_PIPE] = ACTIONS(8713), + [anon_sym_CARET] = ACTIONS(8713), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_EQ_EQ] = ACTIONS(8715), + [anon_sym_BANG_EQ] = ACTIONS(8715), + [anon_sym_GT] = ACTIONS(8713), + [anon_sym_GT_EQ] = ACTIONS(8715), + [anon_sym_LT_EQ] = ACTIONS(8713), + [anon_sym_LT] = ACTIONS(8713), + [anon_sym_LT_LT] = ACTIONS(8713), + [anon_sym_GT_GT] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_COLON] = ACTIONS(8713), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym_LBRACE] = ACTIONS(8715), + [anon_sym_RBRACE] = ACTIONS(8715), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_RBRACK] = ACTIONS(8715), + [anon_sym_EQ] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [anon_sym_STAR_EQ] = ACTIONS(8715), + [anon_sym_SLASH_EQ] = ACTIONS(8715), + [anon_sym_PERCENT_EQ] = ACTIONS(8715), + [anon_sym_PLUS_EQ] = ACTIONS(8715), + [anon_sym_DASH_EQ] = ACTIONS(8715), + [anon_sym_LT_LT_EQ] = ACTIONS(8715), + [anon_sym_GT_GT_EQ] = ACTIONS(8715), + [anon_sym_AMP_EQ] = ACTIONS(8715), + [anon_sym_CARET_EQ] = ACTIONS(8715), + [anon_sym_PIPE_EQ] = ACTIONS(8715), + [anon_sym_and_eq] = ACTIONS(8713), + [anon_sym_or_eq] = ACTIONS(8713), + [anon_sym_xor_eq] = ACTIONS(8713), + [anon_sym_LT_EQ_GT] = ACTIONS(8715), + [anon_sym_or] = ACTIONS(8713), + [anon_sym_and] = ACTIONS(8713), + [anon_sym_bitor] = ACTIONS(8713), + [anon_sym_xor] = ACTIONS(8713), + [anon_sym_bitand] = ACTIONS(8713), + [anon_sym_not_eq] = ACTIONS(8713), + [anon_sym_DASH_DASH] = ACTIONS(8715), + [anon_sym_PLUS_PLUS] = ACTIONS(8715), + [anon_sym_asm] = ACTIONS(8713), + [anon_sym___asm__] = ACTIONS(8713), + [anon_sym___asm] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_DOT_STAR] = ACTIONS(8715), + [anon_sym_DASH_GT] = ACTIONS(8715), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8713), + [anon_sym_COLON_RBRACK] = ACTIONS(8715), + }, + [STATE(3117)] = { + [sym_identifier] = ACTIONS(8717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8719), + [anon_sym_COMMA] = ACTIONS(8719), + [anon_sym_RPAREN] = ACTIONS(8719), + [aux_sym_preproc_if_token2] = ACTIONS(8719), + [aux_sym_preproc_else_token1] = ACTIONS(8719), + [aux_sym_preproc_elif_token1] = ACTIONS(8717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8719), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8719), + [anon_sym_LPAREN2] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8717), + [anon_sym_STAR] = ACTIONS(8717), + [anon_sym_SLASH] = ACTIONS(8717), + [anon_sym_PERCENT] = ACTIONS(8717), + [anon_sym_PIPE_PIPE] = ACTIONS(8719), + [anon_sym_AMP_AMP] = ACTIONS(8719), + [anon_sym_PIPE] = ACTIONS(8717), + [anon_sym_CARET] = ACTIONS(8717), + [anon_sym_AMP] = ACTIONS(8717), + [anon_sym_EQ_EQ] = ACTIONS(8719), + [anon_sym_BANG_EQ] = ACTIONS(8719), + [anon_sym_GT] = ACTIONS(8717), + [anon_sym_GT_EQ] = ACTIONS(8719), + [anon_sym_LT_EQ] = ACTIONS(8717), + [anon_sym_LT] = ACTIONS(8717), + [anon_sym_LT_LT] = ACTIONS(8717), + [anon_sym_GT_GT] = ACTIONS(8717), + [anon_sym_SEMI] = ACTIONS(8719), + [anon_sym___attribute__] = ACTIONS(8717), + [anon_sym___attribute] = ACTIONS(8717), + [anon_sym_COLON] = ACTIONS(8717), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8719), + [anon_sym_LBRACE] = ACTIONS(8719), + [anon_sym_RBRACE] = ACTIONS(8719), + [anon_sym_LBRACK] = ACTIONS(8717), + [anon_sym_RBRACK] = ACTIONS(8719), + [anon_sym_EQ] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [anon_sym_STAR_EQ] = ACTIONS(8719), + [anon_sym_SLASH_EQ] = ACTIONS(8719), + [anon_sym_PERCENT_EQ] = ACTIONS(8719), + [anon_sym_PLUS_EQ] = ACTIONS(8719), + [anon_sym_DASH_EQ] = ACTIONS(8719), + [anon_sym_LT_LT_EQ] = ACTIONS(8719), + [anon_sym_GT_GT_EQ] = ACTIONS(8719), + [anon_sym_AMP_EQ] = ACTIONS(8719), + [anon_sym_CARET_EQ] = ACTIONS(8719), + [anon_sym_PIPE_EQ] = ACTIONS(8719), + [anon_sym_and_eq] = ACTIONS(8717), + [anon_sym_or_eq] = ACTIONS(8717), + [anon_sym_xor_eq] = ACTIONS(8717), + [anon_sym_LT_EQ_GT] = ACTIONS(8719), + [anon_sym_or] = ACTIONS(8717), + [anon_sym_and] = ACTIONS(8717), + [anon_sym_bitor] = ACTIONS(8717), + [anon_sym_xor] = ACTIONS(8717), + [anon_sym_bitand] = ACTIONS(8717), + [anon_sym_not_eq] = ACTIONS(8717), + [anon_sym_DASH_DASH] = ACTIONS(8719), + [anon_sym_PLUS_PLUS] = ACTIONS(8719), + [anon_sym_asm] = ACTIONS(8717), + [anon_sym___asm__] = ACTIONS(8717), + [anon_sym___asm] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_DOT_STAR] = ACTIONS(8719), + [anon_sym_DASH_GT] = ACTIONS(8719), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8717), + [anon_sym_COLON_RBRACK] = ACTIONS(8719), + }, + [STATE(3118)] = { + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym___based] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(6798), + [anon_sym_unsigned] = ACTIONS(6798), + [anon_sym_long] = ACTIONS(6798), + [anon_sym_short] = ACTIONS(6798), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [sym_primitive_type] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3119)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7261), + [anon_sym_and] = ACTIONS(7261), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7261), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + }, + [STATE(3120)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7255), + [anon_sym_and] = ACTIONS(7255), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7255), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + }, + [STATE(3121)] = { + [sym_identifier] = ACTIONS(8721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8723), + [anon_sym_COMMA] = ACTIONS(8723), + [anon_sym_RPAREN] = ACTIONS(8723), + [aux_sym_preproc_if_token2] = ACTIONS(8723), + [aux_sym_preproc_else_token1] = ACTIONS(8723), + [aux_sym_preproc_elif_token1] = ACTIONS(8721), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8723), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8723), + [anon_sym_LPAREN2] = ACTIONS(8723), + [anon_sym_DASH] = ACTIONS(8721), + [anon_sym_PLUS] = ACTIONS(8721), + [anon_sym_STAR] = ACTIONS(8721), + [anon_sym_SLASH] = ACTIONS(8721), + [anon_sym_PERCENT] = ACTIONS(8721), + [anon_sym_PIPE_PIPE] = ACTIONS(8723), + [anon_sym_AMP_AMP] = ACTIONS(8723), + [anon_sym_PIPE] = ACTIONS(8721), + [anon_sym_CARET] = ACTIONS(8721), + [anon_sym_AMP] = ACTIONS(8721), + [anon_sym_EQ_EQ] = ACTIONS(8723), + [anon_sym_BANG_EQ] = ACTIONS(8723), + [anon_sym_GT] = ACTIONS(8721), + [anon_sym_GT_EQ] = ACTIONS(8723), + [anon_sym_LT_EQ] = ACTIONS(8721), + [anon_sym_LT] = ACTIONS(8721), + [anon_sym_LT_LT] = ACTIONS(8721), + [anon_sym_GT_GT] = ACTIONS(8721), + [anon_sym_SEMI] = ACTIONS(8723), + [anon_sym___attribute__] = ACTIONS(8721), + [anon_sym___attribute] = ACTIONS(8721), + [anon_sym_COLON] = ACTIONS(8721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8723), + [anon_sym_LBRACE] = ACTIONS(8723), + [anon_sym_RBRACE] = ACTIONS(8723), + [anon_sym_LBRACK] = ACTIONS(8721), + [anon_sym_RBRACK] = ACTIONS(8723), + [anon_sym_EQ] = ACTIONS(8721), + [anon_sym_QMARK] = ACTIONS(8723), + [anon_sym_STAR_EQ] = ACTIONS(8723), + [anon_sym_SLASH_EQ] = ACTIONS(8723), + [anon_sym_PERCENT_EQ] = ACTIONS(8723), + [anon_sym_PLUS_EQ] = ACTIONS(8723), + [anon_sym_DASH_EQ] = ACTIONS(8723), + [anon_sym_LT_LT_EQ] = ACTIONS(8723), + [anon_sym_GT_GT_EQ] = ACTIONS(8723), + [anon_sym_AMP_EQ] = ACTIONS(8723), + [anon_sym_CARET_EQ] = ACTIONS(8723), + [anon_sym_PIPE_EQ] = ACTIONS(8723), + [anon_sym_and_eq] = ACTIONS(8721), + [anon_sym_or_eq] = ACTIONS(8721), + [anon_sym_xor_eq] = ACTIONS(8721), + [anon_sym_LT_EQ_GT] = ACTIONS(8723), + [anon_sym_or] = ACTIONS(8721), + [anon_sym_and] = ACTIONS(8721), + [anon_sym_bitor] = ACTIONS(8721), + [anon_sym_xor] = ACTIONS(8721), + [anon_sym_bitand] = ACTIONS(8721), + [anon_sym_not_eq] = ACTIONS(8721), + [anon_sym_DASH_DASH] = ACTIONS(8723), + [anon_sym_PLUS_PLUS] = ACTIONS(8723), + [anon_sym_asm] = ACTIONS(8721), + [anon_sym___asm__] = ACTIONS(8721), + [anon_sym___asm] = ACTIONS(8721), + [anon_sym_DOT] = ACTIONS(8721), + [anon_sym_DOT_STAR] = ACTIONS(8723), + [anon_sym_DASH_GT] = ACTIONS(8723), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8721), + [anon_sym_COLON_RBRACK] = ACTIONS(8723), + }, + [STATE(3122)] = { + [sym_attribute_declaration] = STATE(3105), + [aux_sym_attributed_declarator_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(8725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8727), + [anon_sym_COMMA] = ACTIONS(8727), + [anon_sym_RPAREN] = ACTIONS(8727), + [aux_sym_preproc_if_token2] = ACTIONS(8727), + [aux_sym_preproc_else_token1] = ACTIONS(8727), + [aux_sym_preproc_elif_token1] = ACTIONS(8725), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8727), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8727), + [anon_sym_LPAREN2] = ACTIONS(8727), + [anon_sym_DASH] = ACTIONS(8725), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_STAR] = ACTIONS(8725), + [anon_sym_SLASH] = ACTIONS(8725), + [anon_sym_PERCENT] = ACTIONS(8725), + [anon_sym_PIPE_PIPE] = ACTIONS(8727), + [anon_sym_AMP_AMP] = ACTIONS(8727), + [anon_sym_PIPE] = ACTIONS(8725), + [anon_sym_CARET] = ACTIONS(8725), + [anon_sym_AMP] = ACTIONS(8725), + [anon_sym_EQ_EQ] = ACTIONS(8727), + [anon_sym_BANG_EQ] = ACTIONS(8727), + [anon_sym_GT] = ACTIONS(8725), + [anon_sym_GT_EQ] = ACTIONS(8727), + [anon_sym_LT_EQ] = ACTIONS(8725), + [anon_sym_LT] = ACTIONS(8725), + [anon_sym_LT_LT] = ACTIONS(8725), + [anon_sym_GT_GT] = ACTIONS(8725), + [anon_sym_SEMI] = ACTIONS(8727), + [anon_sym___attribute__] = ACTIONS(8725), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8727), + [anon_sym_RBRACE] = ACTIONS(8727), + [anon_sym_LBRACK] = ACTIONS(8725), + [anon_sym_EQ] = ACTIONS(8725), + [anon_sym_QMARK] = ACTIONS(8727), + [anon_sym_STAR_EQ] = ACTIONS(8727), + [anon_sym_SLASH_EQ] = ACTIONS(8727), + [anon_sym_PERCENT_EQ] = ACTIONS(8727), + [anon_sym_PLUS_EQ] = ACTIONS(8727), + [anon_sym_DASH_EQ] = ACTIONS(8727), + [anon_sym_LT_LT_EQ] = ACTIONS(8727), + [anon_sym_GT_GT_EQ] = ACTIONS(8727), + [anon_sym_AMP_EQ] = ACTIONS(8727), + [anon_sym_CARET_EQ] = ACTIONS(8727), + [anon_sym_PIPE_EQ] = ACTIONS(8727), + [anon_sym_and_eq] = ACTIONS(8725), + [anon_sym_or_eq] = ACTIONS(8725), + [anon_sym_xor_eq] = ACTIONS(8725), + [anon_sym_LT_EQ_GT] = ACTIONS(8727), + [anon_sym_or] = ACTIONS(8725), + [anon_sym_and] = ACTIONS(8725), + [anon_sym_bitor] = ACTIONS(8725), + [anon_sym_xor] = ACTIONS(8725), + [anon_sym_bitand] = ACTIONS(8725), + [anon_sym_not_eq] = ACTIONS(8725), + [anon_sym_DASH_DASH] = ACTIONS(8727), + [anon_sym_PLUS_PLUS] = ACTIONS(8727), + [anon_sym_DOT] = ACTIONS(8725), + [anon_sym_DOT_STAR] = ACTIONS(8727), + [anon_sym_DASH_GT] = ACTIONS(8727), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8725), + [anon_sym_override] = ACTIONS(8725), + [anon_sym_requires] = ACTIONS(8725), + [anon_sym_COLON_RBRACK] = ACTIONS(8727), + }, + [STATE(3123)] = { + [sym_type_qualifier] = STATE(3031), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(3031), + [aux_sym_sized_type_specifier_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(8295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(7784), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8729), + [anon_sym_unsigned] = ACTIONS(8729), + [anon_sym_long] = ACTIONS(8729), + [anon_sym_short] = ACTIONS(8729), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7784), + [anon_sym_volatile] = ACTIONS(7784), + [anon_sym_restrict] = ACTIONS(7784), + [anon_sym___restrict__] = ACTIONS(7784), + [anon_sym__Atomic] = ACTIONS(7784), + [anon_sym__Noreturn] = ACTIONS(7784), + [anon_sym_noreturn] = ACTIONS(7784), + [anon_sym__Nonnull] = ACTIONS(7784), + [anon_sym_mutable] = ACTIONS(7784), + [anon_sym_constinit] = ACTIONS(7784), + [anon_sym_consteval] = ACTIONS(7784), + [anon_sym_alignas] = ACTIONS(8669), + [anon_sym__Alignas] = ACTIONS(8669), + [sym_primitive_type] = ACTIONS(8305), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6812), + }, + [STATE(3124)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), + [anon_sym_COMMA] = ACTIONS(7285), + [anon_sym_RPAREN] = ACTIONS(7285), + [anon_sym_LPAREN2] = ACTIONS(7285), + [anon_sym_DASH] = ACTIONS(7283), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_STAR] = ACTIONS(7283), + [anon_sym_SLASH] = ACTIONS(7283), + [anon_sym_PERCENT] = ACTIONS(7283), + [anon_sym_PIPE_PIPE] = ACTIONS(7285), + [anon_sym_AMP_AMP] = ACTIONS(7285), + [anon_sym_PIPE] = ACTIONS(7283), + [anon_sym_CARET] = ACTIONS(7283), + [anon_sym_AMP] = ACTIONS(7283), + [anon_sym_EQ_EQ] = ACTIONS(7285), + [anon_sym_BANG_EQ] = ACTIONS(7285), + [anon_sym_GT] = ACTIONS(7283), + [anon_sym_GT_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ] = ACTIONS(7283), + [anon_sym_LT] = ACTIONS(7283), + [anon_sym_LT_LT] = ACTIONS(7283), + [anon_sym_GT_GT] = ACTIONS(7283), + [anon_sym___extension__] = ACTIONS(7285), + [anon_sym___attribute__] = ACTIONS(7285), + [anon_sym___attribute] = ACTIONS(7283), + [anon_sym_LBRACE] = ACTIONS(7285), + [anon_sym_LBRACK] = ACTIONS(7285), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(7283), + [anon_sym_constexpr] = ACTIONS(7285), + [anon_sym_volatile] = ACTIONS(7285), + [anon_sym_restrict] = ACTIONS(7285), + [anon_sym___restrict__] = ACTIONS(7285), + [anon_sym__Atomic] = ACTIONS(7285), + [anon_sym__Noreturn] = ACTIONS(7285), + [anon_sym_noreturn] = ACTIONS(7285), + [anon_sym__Nonnull] = ACTIONS(7285), + [anon_sym_mutable] = ACTIONS(7285), + [anon_sym_constinit] = ACTIONS(7285), + [anon_sym_consteval] = ACTIONS(7285), + [anon_sym_alignas] = ACTIONS(7285), + [anon_sym__Alignas] = ACTIONS(7285), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(7285), + [anon_sym_or] = ACTIONS(7285), + [anon_sym_and] = ACTIONS(7285), + [anon_sym_bitor] = ACTIONS(7285), + [anon_sym_xor] = ACTIONS(7285), + [anon_sym_bitand] = ACTIONS(7285), + [anon_sym_not_eq] = ACTIONS(7285), + [anon_sym_DASH_DASH] = ACTIONS(7285), + [anon_sym_PLUS_PLUS] = ACTIONS(7285), + [anon_sym_DOT] = ACTIONS(7283), + [anon_sym_DOT_STAR] = ACTIONS(7285), + [anon_sym_DASH_GT] = ACTIONS(7283), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7285), + [anon_sym_override] = ACTIONS(7285), + [anon_sym_requires] = ACTIONS(7285), + [anon_sym_DASH_GT_STAR] = ACTIONS(7285), + }, + [STATE(3125)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(7377), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7377), + [anon_sym_volatile] = ACTIONS(7377), + [anon_sym_restrict] = ACTIONS(7377), + [anon_sym___restrict__] = ACTIONS(7377), + [anon_sym__Atomic] = ACTIONS(7377), + [anon_sym__Noreturn] = ACTIONS(7377), + [anon_sym_noreturn] = ACTIONS(7377), + [anon_sym__Nonnull] = ACTIONS(7377), + [anon_sym_mutable] = ACTIONS(7377), + [anon_sym_constinit] = ACTIONS(7377), + [anon_sym_consteval] = ACTIONS(7377), + [anon_sym_alignas] = ACTIONS(7377), + [anon_sym__Alignas] = ACTIONS(7377), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_STAR_EQ] = ACTIONS(7377), + [anon_sym_SLASH_EQ] = ACTIONS(7377), + [anon_sym_PERCENT_EQ] = ACTIONS(7377), + [anon_sym_PLUS_EQ] = ACTIONS(7377), + [anon_sym_DASH_EQ] = ACTIONS(7377), + [anon_sym_LT_LT_EQ] = ACTIONS(7377), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7377), + [anon_sym_CARET_EQ] = ACTIONS(7377), + [anon_sym_PIPE_EQ] = ACTIONS(7377), + [anon_sym_and_eq] = ACTIONS(7377), + [anon_sym_or_eq] = ACTIONS(7377), + [anon_sym_xor_eq] = ACTIONS(7377), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7377), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7377), + [anon_sym_not_eq] = ACTIONS(7377), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7377), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7377), + [anon_sym_override] = ACTIONS(7377), + [anon_sym_GT2] = ACTIONS(7377), + [anon_sym_requires] = ACTIONS(7377), + }, + [STATE(3126)] = { + [sym_identifier] = ACTIONS(8731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8733), + [anon_sym_COMMA] = ACTIONS(8733), + [anon_sym_RPAREN] = ACTIONS(8733), + [aux_sym_preproc_if_token2] = ACTIONS(8733), + [aux_sym_preproc_else_token1] = ACTIONS(8733), + [aux_sym_preproc_elif_token1] = ACTIONS(8731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8733), + [anon_sym_LPAREN2] = ACTIONS(8733), + [anon_sym_DASH] = ACTIONS(8731), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_STAR] = ACTIONS(8731), + [anon_sym_SLASH] = ACTIONS(8731), + [anon_sym_PERCENT] = ACTIONS(8731), + [anon_sym_PIPE_PIPE] = ACTIONS(8733), + [anon_sym_AMP_AMP] = ACTIONS(8733), + [anon_sym_PIPE] = ACTIONS(8731), + [anon_sym_CARET] = ACTIONS(8731), + [anon_sym_AMP] = ACTIONS(8731), + [anon_sym_EQ_EQ] = ACTIONS(8733), + [anon_sym_BANG_EQ] = ACTIONS(8733), + [anon_sym_GT] = ACTIONS(8731), + [anon_sym_GT_EQ] = ACTIONS(8733), + [anon_sym_LT_EQ] = ACTIONS(8731), + [anon_sym_LT] = ACTIONS(8731), + [anon_sym_LT_LT] = ACTIONS(8731), + [anon_sym_GT_GT] = ACTIONS(8731), + [anon_sym_SEMI] = ACTIONS(8733), + [anon_sym___attribute__] = ACTIONS(8731), + [anon_sym___attribute] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8733), + [anon_sym_LBRACE] = ACTIONS(8733), + [anon_sym_RBRACE] = ACTIONS(8733), + [anon_sym_LBRACK] = ACTIONS(8731), + [anon_sym_RBRACK] = ACTIONS(8733), + [anon_sym_EQ] = ACTIONS(8731), + [anon_sym_QMARK] = ACTIONS(8733), + [anon_sym_STAR_EQ] = ACTIONS(8733), + [anon_sym_SLASH_EQ] = ACTIONS(8733), + [anon_sym_PERCENT_EQ] = ACTIONS(8733), + [anon_sym_PLUS_EQ] = ACTIONS(8733), + [anon_sym_DASH_EQ] = ACTIONS(8733), + [anon_sym_LT_LT_EQ] = ACTIONS(8733), + [anon_sym_GT_GT_EQ] = ACTIONS(8733), + [anon_sym_AMP_EQ] = ACTIONS(8733), + [anon_sym_CARET_EQ] = ACTIONS(8733), + [anon_sym_PIPE_EQ] = ACTIONS(8733), + [anon_sym_and_eq] = ACTIONS(8731), + [anon_sym_or_eq] = ACTIONS(8731), + [anon_sym_xor_eq] = ACTIONS(8731), + [anon_sym_LT_EQ_GT] = ACTIONS(8733), + [anon_sym_or] = ACTIONS(8731), + [anon_sym_and] = ACTIONS(8731), + [anon_sym_bitor] = ACTIONS(8731), + [anon_sym_xor] = ACTIONS(8731), + [anon_sym_bitand] = ACTIONS(8731), + [anon_sym_not_eq] = ACTIONS(8731), + [anon_sym_DASH_DASH] = ACTIONS(8733), + [anon_sym_PLUS_PLUS] = ACTIONS(8733), + [anon_sym_asm] = ACTIONS(8731), + [anon_sym___asm__] = ACTIONS(8731), + [anon_sym___asm] = ACTIONS(8731), + [anon_sym_DOT] = ACTIONS(8731), + [anon_sym_DOT_STAR] = ACTIONS(8733), + [anon_sym_DASH_GT] = ACTIONS(8733), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(8731), + [anon_sym_COLON_RBRACK] = ACTIONS(8733), + }, + [STATE(3127)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7379), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_STAR_EQ] = ACTIONS(7381), + [anon_sym_SLASH_EQ] = ACTIONS(7381), + [anon_sym_PERCENT_EQ] = ACTIONS(7381), + [anon_sym_PLUS_EQ] = ACTIONS(7381), + [anon_sym_DASH_EQ] = ACTIONS(7381), + [anon_sym_LT_LT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7379), + [anon_sym_AMP_EQ] = ACTIONS(7381), + [anon_sym_CARET_EQ] = ACTIONS(7381), + [anon_sym_PIPE_EQ] = ACTIONS(7381), + [anon_sym_and_eq] = ACTIONS(7381), + [anon_sym_or_eq] = ACTIONS(7381), + [anon_sym_xor_eq] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7381), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_GT2] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + }, + [STATE(3128)] = { + [sym_identifier] = ACTIONS(7375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_RPAREN] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7377), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7377), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7377), + [anon_sym_GT_GT] = ACTIONS(7377), + [anon_sym_SEMI] = ACTIONS(7377), + [anon_sym___extension__] = ACTIONS(7375), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7375), + [anon_sym_COLON] = ACTIONS(7375), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7377), + [anon_sym___based] = ACTIONS(7375), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_RBRACE] = ACTIONS(7377), + [anon_sym_signed] = ACTIONS(7375), + [anon_sym_unsigned] = ACTIONS(7375), + [anon_sym_long] = ACTIONS(7375), + [anon_sym_short] = ACTIONS(7375), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7375), + [anon_sym_volatile] = ACTIONS(7375), + [anon_sym_restrict] = ACTIONS(7375), + [anon_sym___restrict__] = ACTIONS(7375), + [anon_sym__Atomic] = ACTIONS(7375), + [anon_sym__Noreturn] = ACTIONS(7375), + [anon_sym_noreturn] = ACTIONS(7375), + [anon_sym__Nonnull] = ACTIONS(7375), + [anon_sym_mutable] = ACTIONS(7375), + [anon_sym_constinit] = ACTIONS(7375), + [anon_sym_consteval] = ACTIONS(7375), + [anon_sym_alignas] = ACTIONS(7375), + [anon_sym__Alignas] = ACTIONS(7375), + [sym_primitive_type] = ACTIONS(7375), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7377), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_COLON_RBRACK] = ACTIONS(7377), + }, + [STATE(3129)] = { + [sym_attribute_declaration] = STATE(3105), + [aux_sym_attributed_declarator_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(8479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8481), + [anon_sym_COMMA] = ACTIONS(8481), + [anon_sym_RPAREN] = ACTIONS(8481), + [aux_sym_preproc_if_token2] = ACTIONS(8481), + [aux_sym_preproc_else_token1] = ACTIONS(8481), + [aux_sym_preproc_elif_token1] = ACTIONS(8479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8481), + [anon_sym_LPAREN2] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8479), + [anon_sym_STAR] = ACTIONS(8479), + [anon_sym_SLASH] = ACTIONS(8479), + [anon_sym_PERCENT] = ACTIONS(8479), + [anon_sym_PIPE_PIPE] = ACTIONS(8481), + [anon_sym_AMP_AMP] = ACTIONS(8481), + [anon_sym_PIPE] = ACTIONS(8479), + [anon_sym_CARET] = ACTIONS(8479), + [anon_sym_AMP] = ACTIONS(8479), + [anon_sym_EQ_EQ] = ACTIONS(8481), + [anon_sym_BANG_EQ] = ACTIONS(8481), + [anon_sym_GT] = ACTIONS(8479), + [anon_sym_GT_EQ] = ACTIONS(8481), + [anon_sym_LT_EQ] = ACTIONS(8479), + [anon_sym_LT] = ACTIONS(8479), + [anon_sym_LT_LT] = ACTIONS(8479), + [anon_sym_GT_GT] = ACTIONS(8479), + [anon_sym_SEMI] = ACTIONS(8481), + [anon_sym___attribute__] = ACTIONS(8479), + [anon_sym___attribute] = ACTIONS(8479), + [anon_sym_COLON] = ACTIONS(8479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8481), + [anon_sym_RBRACE] = ACTIONS(8481), + [anon_sym_LBRACK] = ACTIONS(8479), + [anon_sym_EQ] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [anon_sym_STAR_EQ] = ACTIONS(8481), + [anon_sym_SLASH_EQ] = ACTIONS(8481), + [anon_sym_PERCENT_EQ] = ACTIONS(8481), + [anon_sym_PLUS_EQ] = ACTIONS(8481), + [anon_sym_DASH_EQ] = ACTIONS(8481), + [anon_sym_LT_LT_EQ] = ACTIONS(8481), + [anon_sym_GT_GT_EQ] = ACTIONS(8481), + [anon_sym_AMP_EQ] = ACTIONS(8481), + [anon_sym_CARET_EQ] = ACTIONS(8481), + [anon_sym_PIPE_EQ] = ACTIONS(8481), + [anon_sym_and_eq] = ACTIONS(8479), + [anon_sym_or_eq] = ACTIONS(8479), + [anon_sym_xor_eq] = ACTIONS(8479), + [anon_sym_LT_EQ_GT] = ACTIONS(8481), + [anon_sym_or] = ACTIONS(8479), + [anon_sym_and] = ACTIONS(8479), + [anon_sym_bitor] = ACTIONS(8479), + [anon_sym_xor] = ACTIONS(8479), + [anon_sym_bitand] = ACTIONS(8479), + [anon_sym_not_eq] = ACTIONS(8479), + [anon_sym_DASH_DASH] = ACTIONS(8481), + [anon_sym_PLUS_PLUS] = ACTIONS(8481), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_DOT_STAR] = ACTIONS(8481), + [anon_sym_DASH_GT] = ACTIONS(8481), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8479), + [anon_sym_override] = ACTIONS(8479), + [anon_sym_requires] = ACTIONS(8479), + [anon_sym_COLON_RBRACK] = ACTIONS(8481), + }, + [STATE(3130)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token2] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + }, + [STATE(3131)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_catch] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(3132)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), + [anon_sym_COMMA] = ACTIONS(7335), + [anon_sym_RPAREN] = ACTIONS(7335), + [anon_sym_LPAREN2] = ACTIONS(7335), + [anon_sym_DASH] = ACTIONS(7333), + [anon_sym_PLUS] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7333), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7335), + [anon_sym_AMP_AMP] = ACTIONS(7335), + [anon_sym_PIPE] = ACTIONS(7333), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7333), + [anon_sym_EQ_EQ] = ACTIONS(7335), + [anon_sym_BANG_EQ] = ACTIONS(7335), + [anon_sym_GT] = ACTIONS(7333), + [anon_sym_GT_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ] = ACTIONS(7333), + [anon_sym_LT] = ACTIONS(7333), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7335), + [anon_sym___attribute__] = ACTIONS(7335), + [anon_sym___attribute] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7335), + [anon_sym_LBRACK] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7333), + [anon_sym_constexpr] = ACTIONS(7335), + [anon_sym_volatile] = ACTIONS(7335), + [anon_sym_restrict] = ACTIONS(7335), + [anon_sym___restrict__] = ACTIONS(7335), + [anon_sym__Atomic] = ACTIONS(7335), + [anon_sym__Noreturn] = ACTIONS(7335), + [anon_sym_noreturn] = ACTIONS(7335), + [anon_sym__Nonnull] = ACTIONS(7335), + [anon_sym_mutable] = ACTIONS(7335), + [anon_sym_constinit] = ACTIONS(7335), + [anon_sym_consteval] = ACTIONS(7335), + [anon_sym_alignas] = ACTIONS(7335), + [anon_sym__Alignas] = ACTIONS(7335), + [anon_sym_QMARK] = ACTIONS(7335), + [anon_sym_STAR_EQ] = ACTIONS(7335), + [anon_sym_SLASH_EQ] = ACTIONS(7335), + [anon_sym_PERCENT_EQ] = ACTIONS(7335), + [anon_sym_PLUS_EQ] = ACTIONS(7335), + [anon_sym_DASH_EQ] = ACTIONS(7335), + [anon_sym_LT_LT_EQ] = ACTIONS(7335), + [anon_sym_GT_GT_EQ] = ACTIONS(7335), + [anon_sym_AMP_EQ] = ACTIONS(7335), + [anon_sym_CARET_EQ] = ACTIONS(7335), + [anon_sym_PIPE_EQ] = ACTIONS(7335), + [anon_sym_LT_EQ_GT] = ACTIONS(7335), + [anon_sym_or] = ACTIONS(7335), + [anon_sym_and] = ACTIONS(7335), + [anon_sym_bitor] = ACTIONS(7335), + [anon_sym_xor] = ACTIONS(7335), + [anon_sym_bitand] = ACTIONS(7335), + [anon_sym_not_eq] = ACTIONS(7335), + [anon_sym_DASH_DASH] = ACTIONS(7335), + [anon_sym_PLUS_PLUS] = ACTIONS(7335), + [anon_sym_DOT] = ACTIONS(7333), + [anon_sym_DOT_STAR] = ACTIONS(7335), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7335), + [anon_sym_override] = ACTIONS(7335), + [anon_sym_requires] = ACTIONS(7335), + [anon_sym_DASH_GT_STAR] = ACTIONS(7335), + }, + [STATE(3133)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_if_token2] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(8208), + [anon_sym___attribute] = ACTIONS(8208), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(3134)] = { + [sym_identifier] = ACTIONS(2795), + [aux_sym_preproc_def_token1] = ACTIONS(2795), + [aux_sym_preproc_if_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), + [sym_preproc_directive] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___extension__] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2795), + [anon_sym_virtual] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), + [anon_sym___declspec] = ACTIONS(2795), + [anon_sym___based] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2795), + [anon_sym_unsigned] = ACTIONS(2795), + [anon_sym_long] = ACTIONS(2795), + [anon_sym_short] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_register] = ACTIONS(2795), + [anon_sym_inline] = ACTIONS(2795), + [anon_sym___inline] = ACTIONS(2795), + [anon_sym___inline__] = ACTIONS(2795), + [anon_sym___forceinline] = ACTIONS(2795), + [anon_sym_thread_local] = ACTIONS(2795), + [anon_sym___thread] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_constexpr] = ACTIONS(2795), + [anon_sym_volatile] = ACTIONS(2795), + [anon_sym_restrict] = ACTIONS(2795), + [anon_sym___restrict__] = ACTIONS(2795), + [anon_sym__Atomic] = ACTIONS(2795), + [anon_sym__Noreturn] = ACTIONS(2795), + [anon_sym_noreturn] = ACTIONS(2795), + [anon_sym__Nonnull] = ACTIONS(2795), + [anon_sym_mutable] = ACTIONS(2795), + [anon_sym_constinit] = ACTIONS(2795), + [anon_sym_consteval] = ACTIONS(2795), + [anon_sym_alignas] = ACTIONS(2795), + [anon_sym__Alignas] = ACTIONS(2795), + [sym_primitive_type] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_typename] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2795), + [anon_sym_decltype] = ACTIONS(2795), + [anon_sym_explicit] = ACTIONS(2795), + [anon_sym_private] = ACTIONS(2795), + [anon_sym_template] = ACTIONS(2795), + [anon_sym_operator] = ACTIONS(2795), + [anon_sym_friend] = ACTIONS(2795), + [anon_sym_public] = ACTIONS(2795), + [anon_sym_protected] = ACTIONS(2795), + [anon_sym_static_assert] = ACTIONS(2795), + [anon_sym_catch] = ACTIONS(2795), + [anon_sym_LBRACK_COLON] = ACTIONS(2793), + }, + [STATE(3135)] = { + [sym_identifier] = ACTIONS(7299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_RPAREN] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym_SEMI] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym___attribute__] = ACTIONS(7299), + [anon_sym___attribute] = ACTIONS(7299), + [anon_sym_COLON] = ACTIONS(7299), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7301), + [anon_sym___based] = ACTIONS(7299), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_RBRACE] = ACTIONS(7301), + [anon_sym_signed] = ACTIONS(7299), + [anon_sym_unsigned] = ACTIONS(7299), + [anon_sym_long] = ACTIONS(7299), + [anon_sym_short] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7299), + [anon_sym__Alignas] = ACTIONS(7299), + [sym_primitive_type] = ACTIONS(7299), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7299), + [anon_sym_and] = ACTIONS(7299), + [anon_sym_bitor] = ACTIONS(7299), + [anon_sym_xor] = ACTIONS(7299), + [anon_sym_bitand] = ACTIONS(7299), + [anon_sym_not_eq] = ACTIONS(7299), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7299), + [anon_sym_override] = ACTIONS(7299), + [anon_sym_requires] = ACTIONS(7299), + [anon_sym_COLON_RBRACK] = ACTIONS(7301), + }, + [STATE(3136)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7325), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7325), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7325), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7325), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_STAR_EQ] = ACTIONS(7327), + [anon_sym_SLASH_EQ] = ACTIONS(7327), + [anon_sym_PERCENT_EQ] = ACTIONS(7327), + [anon_sym_PLUS_EQ] = ACTIONS(7327), + [anon_sym_DASH_EQ] = ACTIONS(7327), + [anon_sym_LT_LT_EQ] = ACTIONS(7327), + [anon_sym_GT_GT_EQ] = ACTIONS(7325), + [anon_sym_AMP_EQ] = ACTIONS(7327), + [anon_sym_CARET_EQ] = ACTIONS(7327), + [anon_sym_PIPE_EQ] = ACTIONS(7327), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7325), + [anon_sym_and] = ACTIONS(7325), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7325), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_GT2] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + }, + [STATE(3137)] = { + [sym_identifier] = ACTIONS(2803), + [aux_sym_preproc_def_token1] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(3888), + [aux_sym_preproc_if_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), + [sym_preproc_directive] = ACTIONS(2803), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2803), + [anon_sym_virtual] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym___attribute__] = ACTIONS(8208), + [anon_sym___attribute] = ACTIONS(8208), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), + [anon_sym___declspec] = ACTIONS(2803), + [anon_sym___based] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2803), + [anon_sym_unsigned] = ACTIONS(2803), + [anon_sym_long] = ACTIONS(2803), + [anon_sym_short] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_register] = ACTIONS(2803), + [anon_sym_inline] = ACTIONS(2803), + [anon_sym___inline] = ACTIONS(2803), + [anon_sym___inline__] = ACTIONS(2803), + [anon_sym___forceinline] = ACTIONS(2803), + [anon_sym_thread_local] = ACTIONS(2803), + [anon_sym___thread] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym__Nonnull] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_alignas] = ACTIONS(2803), + [anon_sym__Alignas] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_typename] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2803), + [anon_sym_decltype] = ACTIONS(2803), + [anon_sym_explicit] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_template] = ACTIONS(2803), + [anon_sym_operator] = ACTIONS(2803), + [anon_sym_friend] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_static_assert] = ACTIONS(2803), + [anon_sym_LBRACK_COLON] = ACTIONS(2801), + }, + [STATE(3138)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7191), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7191), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7191), + [anon_sym_GT_GT] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_mutable] = ACTIONS(7193), + [anon_sym_constinit] = ACTIONS(7193), + [anon_sym_consteval] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7191), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7193), + [anon_sym_or_eq] = ACTIONS(7193), + [anon_sym_xor_eq] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7191), + [anon_sym_and] = ACTIONS(7191), + [anon_sym_bitor] = ACTIONS(7193), + [anon_sym_xor] = ACTIONS(7191), + [anon_sym_bitand] = ACTIONS(7193), + [anon_sym_not_eq] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7193), + [anon_sym_override] = ACTIONS(7193), + [anon_sym_GT2] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7193), + }, + [STATE(3139)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3140)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6798), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6798), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_and_eq] = ACTIONS(6800), + [anon_sym_or_eq] = ACTIONS(6800), + [anon_sym_xor_eq] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_GT2] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + }, + [STATE(3141)] = { + [sym_attribute_declaration] = STATE(3105), + [aux_sym_attributed_declarator_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(8512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8514), + [anon_sym_COMMA] = ACTIONS(8514), + [anon_sym_RPAREN] = ACTIONS(8514), + [aux_sym_preproc_if_token2] = ACTIONS(8514), + [aux_sym_preproc_else_token1] = ACTIONS(8514), + [aux_sym_preproc_elif_token1] = ACTIONS(8512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8514), + [anon_sym_LPAREN2] = ACTIONS(8514), + [anon_sym_DASH] = ACTIONS(8512), + [anon_sym_PLUS] = ACTIONS(8512), + [anon_sym_STAR] = ACTIONS(8512), + [anon_sym_SLASH] = ACTIONS(8512), + [anon_sym_PERCENT] = ACTIONS(8512), + [anon_sym_PIPE_PIPE] = ACTIONS(8514), + [anon_sym_AMP_AMP] = ACTIONS(8514), + [anon_sym_PIPE] = ACTIONS(8512), + [anon_sym_CARET] = ACTIONS(8512), + [anon_sym_AMP] = ACTIONS(8512), + [anon_sym_EQ_EQ] = ACTIONS(8514), + [anon_sym_BANG_EQ] = ACTIONS(8514), + [anon_sym_GT] = ACTIONS(8512), + [anon_sym_GT_EQ] = ACTIONS(8514), + [anon_sym_LT_EQ] = ACTIONS(8512), + [anon_sym_LT] = ACTIONS(8512), + [anon_sym_LT_LT] = ACTIONS(8512), + [anon_sym_GT_GT] = ACTIONS(8512), + [anon_sym_SEMI] = ACTIONS(8514), + [anon_sym___attribute__] = ACTIONS(8512), + [anon_sym___attribute] = ACTIONS(8512), + [anon_sym_COLON] = ACTIONS(8512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8514), + [anon_sym_RBRACE] = ACTIONS(8514), + [anon_sym_LBRACK] = ACTIONS(8512), + [anon_sym_EQ] = ACTIONS(8512), + [anon_sym_QMARK] = ACTIONS(8514), + [anon_sym_STAR_EQ] = ACTIONS(8514), + [anon_sym_SLASH_EQ] = ACTIONS(8514), + [anon_sym_PERCENT_EQ] = ACTIONS(8514), + [anon_sym_PLUS_EQ] = ACTIONS(8514), + [anon_sym_DASH_EQ] = ACTIONS(8514), + [anon_sym_LT_LT_EQ] = ACTIONS(8514), + [anon_sym_GT_GT_EQ] = ACTIONS(8514), + [anon_sym_AMP_EQ] = ACTIONS(8514), + [anon_sym_CARET_EQ] = ACTIONS(8514), + [anon_sym_PIPE_EQ] = ACTIONS(8514), + [anon_sym_and_eq] = ACTIONS(8512), + [anon_sym_or_eq] = ACTIONS(8512), + [anon_sym_xor_eq] = ACTIONS(8512), + [anon_sym_LT_EQ_GT] = ACTIONS(8514), + [anon_sym_or] = ACTIONS(8512), + [anon_sym_and] = ACTIONS(8512), + [anon_sym_bitor] = ACTIONS(8512), + [anon_sym_xor] = ACTIONS(8512), + [anon_sym_bitand] = ACTIONS(8512), + [anon_sym_not_eq] = ACTIONS(8512), + [anon_sym_DASH_DASH] = ACTIONS(8514), + [anon_sym_PLUS_PLUS] = ACTIONS(8514), + [anon_sym_DOT] = ACTIONS(8512), + [anon_sym_DOT_STAR] = ACTIONS(8514), + [anon_sym_DASH_GT] = ACTIONS(8514), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8512), + [anon_sym_override] = ACTIONS(8512), + [anon_sym_requires] = ACTIONS(8512), + [anon_sym_COLON_RBRACK] = ACTIONS(8514), + }, + [STATE(3142)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7355), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_RBRACK] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_STAR_EQ] = ACTIONS(7357), + [anon_sym_SLASH_EQ] = ACTIONS(7357), + [anon_sym_PERCENT_EQ] = ACTIONS(7357), + [anon_sym_PLUS_EQ] = ACTIONS(7357), + [anon_sym_DASH_EQ] = ACTIONS(7357), + [anon_sym_LT_LT_EQ] = ACTIONS(7357), + [anon_sym_GT_GT_EQ] = ACTIONS(7357), + [anon_sym_AMP_EQ] = ACTIONS(7357), + [anon_sym_CARET_EQ] = ACTIONS(7357), + [anon_sym_PIPE_EQ] = ACTIONS(7357), + [anon_sym_and_eq] = ACTIONS(7357), + [anon_sym_or_eq] = ACTIONS(7357), + [anon_sym_xor_eq] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), + }, + [STATE(3143)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_friend] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + }, + [STATE(3144)] = { + [sym_identifier] = ACTIONS(8412), + [aux_sym_preproc_def_token1] = ACTIONS(8412), + [aux_sym_preproc_if_token1] = ACTIONS(8412), + [aux_sym_preproc_if_token2] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), + [sym_preproc_directive] = ACTIONS(8412), + [anon_sym_LPAREN2] = ACTIONS(8414), + [anon_sym_TILDE] = ACTIONS(8414), + [anon_sym_STAR] = ACTIONS(8414), + [anon_sym_AMP_AMP] = ACTIONS(8414), + [anon_sym_AMP] = ACTIONS(8412), + [anon_sym_SEMI] = ACTIONS(8414), + [anon_sym___extension__] = ACTIONS(8412), + [anon_sym_typedef] = ACTIONS(8412), + [anon_sym_virtual] = ACTIONS(8412), + [anon_sym_extern] = ACTIONS(8412), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_using] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(8414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), + [anon_sym___declspec] = ACTIONS(8412), + [anon_sym___based] = ACTIONS(8412), + [anon_sym_signed] = ACTIONS(8412), + [anon_sym_unsigned] = ACTIONS(8412), + [anon_sym_long] = ACTIONS(8412), + [anon_sym_short] = ACTIONS(8412), + [anon_sym_LBRACK] = ACTIONS(8412), + [anon_sym_static] = ACTIONS(8412), + [anon_sym_register] = ACTIONS(8412), + [anon_sym_inline] = ACTIONS(8412), + [anon_sym___inline] = ACTIONS(8412), + [anon_sym___inline__] = ACTIONS(8412), + [anon_sym___forceinline] = ACTIONS(8412), + [anon_sym_thread_local] = ACTIONS(8412), + [anon_sym___thread] = ACTIONS(8412), + [anon_sym_const] = ACTIONS(8412), + [anon_sym_constexpr] = ACTIONS(8412), + [anon_sym_volatile] = ACTIONS(8412), + [anon_sym_restrict] = ACTIONS(8412), + [anon_sym___restrict__] = ACTIONS(8412), + [anon_sym__Atomic] = ACTIONS(8412), + [anon_sym__Noreturn] = ACTIONS(8412), + [anon_sym_noreturn] = ACTIONS(8412), + [anon_sym__Nonnull] = ACTIONS(8412), + [anon_sym_mutable] = ACTIONS(8412), + [anon_sym_constinit] = ACTIONS(8412), + [anon_sym_consteval] = ACTIONS(8412), + [anon_sym_alignas] = ACTIONS(8412), + [anon_sym__Alignas] = ACTIONS(8412), + [sym_primitive_type] = ACTIONS(8412), + [anon_sym_enum] = ACTIONS(8412), + [anon_sym_class] = ACTIONS(8412), + [anon_sym_struct] = ACTIONS(8412), + [anon_sym_union] = ACTIONS(8412), + [anon_sym_typename] = ACTIONS(8412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8412), + [anon_sym_decltype] = ACTIONS(8412), + [anon_sym_explicit] = ACTIONS(8412), + [anon_sym_private] = ACTIONS(8412), + [anon_sym_template] = ACTIONS(8412), + [anon_sym_operator] = ACTIONS(8412), + [anon_sym_friend] = ACTIONS(8412), + [anon_sym_public] = ACTIONS(8412), + [anon_sym_protected] = ACTIONS(8412), + [anon_sym_static_assert] = ACTIONS(8412), + [anon_sym_LBRACK_COLON] = ACTIONS(8414), + }, + [STATE(3145)] = { + [sym_identifier] = ACTIONS(8420), + [aux_sym_preproc_def_token1] = ACTIONS(8420), + [aux_sym_preproc_if_token1] = ACTIONS(8420), + [aux_sym_preproc_if_token2] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), + [sym_preproc_directive] = ACTIONS(8420), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_TILDE] = ACTIONS(8422), + [anon_sym_STAR] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___extension__] = ACTIONS(8420), + [anon_sym_typedef] = ACTIONS(8420), + [anon_sym_virtual] = ACTIONS(8420), + [anon_sym_extern] = ACTIONS(8420), + [anon_sym___attribute__] = ACTIONS(8420), + [anon_sym___attribute] = ACTIONS(8420), + [anon_sym_using] = ACTIONS(8420), + [anon_sym_COLON_COLON] = ACTIONS(8422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), + [anon_sym___declspec] = ACTIONS(8420), + [anon_sym___based] = ACTIONS(8420), + [anon_sym_signed] = ACTIONS(8420), + [anon_sym_unsigned] = ACTIONS(8420), + [anon_sym_long] = ACTIONS(8420), + [anon_sym_short] = ACTIONS(8420), + [anon_sym_LBRACK] = ACTIONS(8420), + [anon_sym_static] = ACTIONS(8420), + [anon_sym_register] = ACTIONS(8420), + [anon_sym_inline] = ACTIONS(8420), + [anon_sym___inline] = ACTIONS(8420), + [anon_sym___inline__] = ACTIONS(8420), + [anon_sym___forceinline] = ACTIONS(8420), + [anon_sym_thread_local] = ACTIONS(8420), + [anon_sym___thread] = ACTIONS(8420), + [anon_sym_const] = ACTIONS(8420), + [anon_sym_constexpr] = ACTIONS(8420), + [anon_sym_volatile] = ACTIONS(8420), + [anon_sym_restrict] = ACTIONS(8420), + [anon_sym___restrict__] = ACTIONS(8420), + [anon_sym__Atomic] = ACTIONS(8420), + [anon_sym__Noreturn] = ACTIONS(8420), + [anon_sym_noreturn] = ACTIONS(8420), + [anon_sym__Nonnull] = ACTIONS(8420), + [anon_sym_mutable] = ACTIONS(8420), + [anon_sym_constinit] = ACTIONS(8420), + [anon_sym_consteval] = ACTIONS(8420), + [anon_sym_alignas] = ACTIONS(8420), + [anon_sym__Alignas] = ACTIONS(8420), + [sym_primitive_type] = ACTIONS(8420), + [anon_sym_enum] = ACTIONS(8420), + [anon_sym_class] = ACTIONS(8420), + [anon_sym_struct] = ACTIONS(8420), + [anon_sym_union] = ACTIONS(8420), + [anon_sym_typename] = ACTIONS(8420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8420), + [anon_sym_decltype] = ACTIONS(8420), + [anon_sym_explicit] = ACTIONS(8420), + [anon_sym_private] = ACTIONS(8420), + [anon_sym_template] = ACTIONS(8420), + [anon_sym_operator] = ACTIONS(8420), + [anon_sym_friend] = ACTIONS(8420), + [anon_sym_public] = ACTIONS(8420), + [anon_sym_protected] = ACTIONS(8420), + [anon_sym_static_assert] = ACTIONS(8420), + [anon_sym_LBRACK_COLON] = ACTIONS(8422), + }, + [STATE(3146)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(3147)] = { + [sym_identifier] = ACTIONS(8313), + [aux_sym_preproc_def_token1] = ACTIONS(8313), + [aux_sym_preproc_if_token1] = ACTIONS(8313), + [aux_sym_preproc_if_token2] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), + [sym_preproc_directive] = ACTIONS(8313), + [anon_sym_LPAREN2] = ACTIONS(8315), + [anon_sym_TILDE] = ACTIONS(8315), + [anon_sym_STAR] = ACTIONS(8315), + [anon_sym_AMP_AMP] = ACTIONS(8315), + [anon_sym_AMP] = ACTIONS(8313), + [anon_sym_SEMI] = ACTIONS(8315), + [anon_sym___extension__] = ACTIONS(8313), + [anon_sym_typedef] = ACTIONS(8313), + [anon_sym_virtual] = ACTIONS(8313), + [anon_sym_extern] = ACTIONS(8313), + [anon_sym___attribute__] = ACTIONS(8313), + [anon_sym___attribute] = ACTIONS(8313), + [anon_sym_using] = ACTIONS(8313), + [anon_sym_COLON_COLON] = ACTIONS(8315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), + [anon_sym___declspec] = ACTIONS(8313), + [anon_sym___based] = ACTIONS(8313), + [anon_sym_signed] = ACTIONS(8313), + [anon_sym_unsigned] = ACTIONS(8313), + [anon_sym_long] = ACTIONS(8313), + [anon_sym_short] = ACTIONS(8313), + [anon_sym_LBRACK] = ACTIONS(8313), + [anon_sym_static] = ACTIONS(8313), + [anon_sym_register] = ACTIONS(8313), + [anon_sym_inline] = ACTIONS(8313), + [anon_sym___inline] = ACTIONS(8313), + [anon_sym___inline__] = ACTIONS(8313), + [anon_sym___forceinline] = ACTIONS(8313), + [anon_sym_thread_local] = ACTIONS(8313), + [anon_sym___thread] = ACTIONS(8313), + [anon_sym_const] = ACTIONS(8313), + [anon_sym_constexpr] = ACTIONS(8313), + [anon_sym_volatile] = ACTIONS(8313), + [anon_sym_restrict] = ACTIONS(8313), + [anon_sym___restrict__] = ACTIONS(8313), + [anon_sym__Atomic] = ACTIONS(8313), + [anon_sym__Noreturn] = ACTIONS(8313), + [anon_sym_noreturn] = ACTIONS(8313), + [anon_sym__Nonnull] = ACTIONS(8313), + [anon_sym_mutable] = ACTIONS(8313), + [anon_sym_constinit] = ACTIONS(8313), + [anon_sym_consteval] = ACTIONS(8313), + [anon_sym_alignas] = ACTIONS(8313), + [anon_sym__Alignas] = ACTIONS(8313), + [sym_primitive_type] = ACTIONS(8313), + [anon_sym_enum] = ACTIONS(8313), + [anon_sym_class] = ACTIONS(8313), + [anon_sym_struct] = ACTIONS(8313), + [anon_sym_union] = ACTIONS(8313), + [anon_sym_typename] = ACTIONS(8313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8313), + [anon_sym_decltype] = ACTIONS(8313), + [anon_sym_explicit] = ACTIONS(8313), + [anon_sym_private] = ACTIONS(8313), + [anon_sym_template] = ACTIONS(8313), + [anon_sym_operator] = ACTIONS(8313), + [anon_sym_friend] = ACTIONS(8313), + [anon_sym_public] = ACTIONS(8313), + [anon_sym_protected] = ACTIONS(8313), + [anon_sym_static_assert] = ACTIONS(8313), + [anon_sym_LBRACK_COLON] = ACTIONS(8315), + }, + [STATE(3148)] = { + [sym_identifier] = ACTIONS(8378), + [aux_sym_preproc_def_token1] = ACTIONS(8378), + [aux_sym_preproc_if_token1] = ACTIONS(8378), + [aux_sym_preproc_if_token2] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), + [sym_preproc_directive] = ACTIONS(8378), + [anon_sym_LPAREN2] = ACTIONS(8380), + [anon_sym_TILDE] = ACTIONS(8380), + [anon_sym_STAR] = ACTIONS(8380), + [anon_sym_AMP_AMP] = ACTIONS(8380), + [anon_sym_AMP] = ACTIONS(8378), + [anon_sym_SEMI] = ACTIONS(8380), + [anon_sym___extension__] = ACTIONS(8378), + [anon_sym_typedef] = ACTIONS(8378), + [anon_sym_virtual] = ACTIONS(8378), + [anon_sym_extern] = ACTIONS(8378), + [anon_sym___attribute__] = ACTIONS(8378), + [anon_sym___attribute] = ACTIONS(8378), + [anon_sym_using] = ACTIONS(8378), + [anon_sym_COLON_COLON] = ACTIONS(8380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), + [anon_sym___declspec] = ACTIONS(8378), + [anon_sym___based] = ACTIONS(8378), + [anon_sym_signed] = ACTIONS(8378), + [anon_sym_unsigned] = ACTIONS(8378), + [anon_sym_long] = ACTIONS(8378), + [anon_sym_short] = ACTIONS(8378), + [anon_sym_LBRACK] = ACTIONS(8378), + [anon_sym_static] = ACTIONS(8378), + [anon_sym_register] = ACTIONS(8378), + [anon_sym_inline] = ACTIONS(8378), + [anon_sym___inline] = ACTIONS(8378), + [anon_sym___inline__] = ACTIONS(8378), + [anon_sym___forceinline] = ACTIONS(8378), + [anon_sym_thread_local] = ACTIONS(8378), + [anon_sym___thread] = ACTIONS(8378), + [anon_sym_const] = ACTIONS(8378), + [anon_sym_constexpr] = ACTIONS(8378), + [anon_sym_volatile] = ACTIONS(8378), + [anon_sym_restrict] = ACTIONS(8378), + [anon_sym___restrict__] = ACTIONS(8378), + [anon_sym__Atomic] = ACTIONS(8378), + [anon_sym__Noreturn] = ACTIONS(8378), + [anon_sym_noreturn] = ACTIONS(8378), + [anon_sym__Nonnull] = ACTIONS(8378), + [anon_sym_mutable] = ACTIONS(8378), + [anon_sym_constinit] = ACTIONS(8378), + [anon_sym_consteval] = ACTIONS(8378), + [anon_sym_alignas] = ACTIONS(8378), + [anon_sym__Alignas] = ACTIONS(8378), + [sym_primitive_type] = ACTIONS(8378), + [anon_sym_enum] = ACTIONS(8378), + [anon_sym_class] = ACTIONS(8378), + [anon_sym_struct] = ACTIONS(8378), + [anon_sym_union] = ACTIONS(8378), + [anon_sym_typename] = ACTIONS(8378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8378), + [anon_sym_decltype] = ACTIONS(8378), + [anon_sym_explicit] = ACTIONS(8378), + [anon_sym_private] = ACTIONS(8378), + [anon_sym_template] = ACTIONS(8378), + [anon_sym_operator] = ACTIONS(8378), + [anon_sym_friend] = ACTIONS(8378), + [anon_sym_public] = ACTIONS(8378), + [anon_sym_protected] = ACTIONS(8378), + [anon_sym_static_assert] = ACTIONS(8378), + [anon_sym_LBRACK_COLON] = ACTIONS(8380), + }, + [STATE(3149)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_RBRACE] = ACTIONS(8349), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(3150)] = { + [sym_template_argument_list] = STATE(2612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6755), + [anon_sym_CARET] = ACTIONS(6755), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6755), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6755), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(6755), + [anon_sym_GT_GT] = ACTIONS(6755), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_RBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6755), + [anon_sym_and] = ACTIONS(6755), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6755), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_DOT] = ACTIONS(6755), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + }, + [STATE(3151)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token2] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(3152)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [aux_sym_preproc_if_token2] = ACTIONS(7393), + [aux_sym_preproc_else_token1] = ACTIONS(7393), + [aux_sym_preproc_elif_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7393), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7391), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_RBRACK] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7391), + [anon_sym_volatile] = ACTIONS(7391), + [anon_sym_restrict] = ACTIONS(7391), + [anon_sym___restrict__] = ACTIONS(7391), + [anon_sym__Atomic] = ACTIONS(7391), + [anon_sym__Noreturn] = ACTIONS(7391), + [anon_sym_noreturn] = ACTIONS(7391), + [anon_sym__Nonnull] = ACTIONS(7391), + [anon_sym_mutable] = ACTIONS(7391), + [anon_sym_constinit] = ACTIONS(7391), + [anon_sym_consteval] = ACTIONS(7391), + [anon_sym_alignas] = ACTIONS(7391), + [anon_sym__Alignas] = ACTIONS(7391), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(3153)] = { + [sym_identifier] = ACTIONS(8442), + [aux_sym_preproc_def_token1] = ACTIONS(8442), + [aux_sym_preproc_if_token1] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), + [sym_preproc_directive] = ACTIONS(8442), + [anon_sym_LPAREN2] = ACTIONS(8444), + [anon_sym_TILDE] = ACTIONS(8444), + [anon_sym_STAR] = ACTIONS(8444), + [anon_sym_AMP_AMP] = ACTIONS(8444), + [anon_sym_AMP] = ACTIONS(8442), + [anon_sym_SEMI] = ACTIONS(8444), + [anon_sym___extension__] = ACTIONS(8442), + [anon_sym_typedef] = ACTIONS(8442), + [anon_sym_virtual] = ACTIONS(8442), + [anon_sym_extern] = ACTIONS(8442), + [anon_sym___attribute__] = ACTIONS(8442), + [anon_sym___attribute] = ACTIONS(8442), + [anon_sym_using] = ACTIONS(8442), + [anon_sym_COLON_COLON] = ACTIONS(8444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), + [anon_sym___declspec] = ACTIONS(8442), + [anon_sym___based] = ACTIONS(8442), + [anon_sym_RBRACE] = ACTIONS(8444), + [anon_sym_signed] = ACTIONS(8442), + [anon_sym_unsigned] = ACTIONS(8442), + [anon_sym_long] = ACTIONS(8442), + [anon_sym_short] = ACTIONS(8442), + [anon_sym_LBRACK] = ACTIONS(8442), + [anon_sym_static] = ACTIONS(8442), + [anon_sym_register] = ACTIONS(8442), + [anon_sym_inline] = ACTIONS(8442), + [anon_sym___inline] = ACTIONS(8442), + [anon_sym___inline__] = ACTIONS(8442), + [anon_sym___forceinline] = ACTIONS(8442), + [anon_sym_thread_local] = ACTIONS(8442), + [anon_sym___thread] = ACTIONS(8442), + [anon_sym_const] = ACTIONS(8442), + [anon_sym_constexpr] = ACTIONS(8442), + [anon_sym_volatile] = ACTIONS(8442), + [anon_sym_restrict] = ACTIONS(8442), + [anon_sym___restrict__] = ACTIONS(8442), + [anon_sym__Atomic] = ACTIONS(8442), + [anon_sym__Noreturn] = ACTIONS(8442), + [anon_sym_noreturn] = ACTIONS(8442), + [anon_sym__Nonnull] = ACTIONS(8442), + [anon_sym_mutable] = ACTIONS(8442), + [anon_sym_constinit] = ACTIONS(8442), + [anon_sym_consteval] = ACTIONS(8442), + [anon_sym_alignas] = ACTIONS(8442), + [anon_sym__Alignas] = ACTIONS(8442), + [sym_primitive_type] = ACTIONS(8442), + [anon_sym_enum] = ACTIONS(8442), + [anon_sym_class] = ACTIONS(8442), + [anon_sym_struct] = ACTIONS(8442), + [anon_sym_union] = ACTIONS(8442), + [anon_sym_typename] = ACTIONS(8442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8442), + [anon_sym_decltype] = ACTIONS(8442), + [anon_sym_explicit] = ACTIONS(8442), + [anon_sym_private] = ACTIONS(8442), + [anon_sym_template] = ACTIONS(8442), + [anon_sym_operator] = ACTIONS(8442), + [anon_sym_friend] = ACTIONS(8442), + [anon_sym_public] = ACTIONS(8442), + [anon_sym_protected] = ACTIONS(8442), + [anon_sym_static_assert] = ACTIONS(8442), + [anon_sym_LBRACK_COLON] = ACTIONS(8444), + }, + [STATE(3154)] = { + [sym_identifier] = ACTIONS(8285), + [aux_sym_preproc_def_token1] = ACTIONS(8285), + [aux_sym_preproc_if_token1] = ACTIONS(8285), + [aux_sym_preproc_if_token2] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), + [sym_preproc_directive] = ACTIONS(8285), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_TILDE] = ACTIONS(8287), + [anon_sym_STAR] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___extension__] = ACTIONS(8285), + [anon_sym_typedef] = ACTIONS(8285), + [anon_sym_virtual] = ACTIONS(8285), + [anon_sym_extern] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_using] = ACTIONS(8285), + [anon_sym_COLON_COLON] = ACTIONS(8287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), + [anon_sym___declspec] = ACTIONS(8285), + [anon_sym___based] = ACTIONS(8285), + [anon_sym_signed] = ACTIONS(8285), + [anon_sym_unsigned] = ACTIONS(8285), + [anon_sym_long] = ACTIONS(8285), + [anon_sym_short] = ACTIONS(8285), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_static] = ACTIONS(8285), + [anon_sym_register] = ACTIONS(8285), + [anon_sym_inline] = ACTIONS(8285), + [anon_sym___inline] = ACTIONS(8285), + [anon_sym___inline__] = ACTIONS(8285), + [anon_sym___forceinline] = ACTIONS(8285), + [anon_sym_thread_local] = ACTIONS(8285), + [anon_sym___thread] = ACTIONS(8285), + [anon_sym_const] = ACTIONS(8285), + [anon_sym_constexpr] = ACTIONS(8285), + [anon_sym_volatile] = ACTIONS(8285), + [anon_sym_restrict] = ACTIONS(8285), + [anon_sym___restrict__] = ACTIONS(8285), + [anon_sym__Atomic] = ACTIONS(8285), + [anon_sym__Noreturn] = ACTIONS(8285), + [anon_sym_noreturn] = ACTIONS(8285), + [anon_sym__Nonnull] = ACTIONS(8285), + [anon_sym_mutable] = ACTIONS(8285), + [anon_sym_constinit] = ACTIONS(8285), + [anon_sym_consteval] = ACTIONS(8285), + [anon_sym_alignas] = ACTIONS(8285), + [anon_sym__Alignas] = ACTIONS(8285), + [sym_primitive_type] = ACTIONS(8285), + [anon_sym_enum] = ACTIONS(8285), + [anon_sym_class] = ACTIONS(8285), + [anon_sym_struct] = ACTIONS(8285), + [anon_sym_union] = ACTIONS(8285), + [anon_sym_typename] = ACTIONS(8285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8285), + [anon_sym_decltype] = ACTIONS(8285), + [anon_sym_explicit] = ACTIONS(8285), + [anon_sym_private] = ACTIONS(8285), + [anon_sym_template] = ACTIONS(8285), + [anon_sym_operator] = ACTIONS(8285), + [anon_sym_friend] = ACTIONS(8285), + [anon_sym_public] = ACTIONS(8285), + [anon_sym_protected] = ACTIONS(8285), + [anon_sym_static_assert] = ACTIONS(8285), + [anon_sym_LBRACK_COLON] = ACTIONS(8287), + }, + [STATE(3155)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token2] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(3156)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token2] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(3157)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token2] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(3158)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token2] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(3159)] = { + [sym_identifier] = ACTIONS(8434), + [aux_sym_preproc_def_token1] = ACTIONS(8434), + [aux_sym_preproc_if_token1] = ACTIONS(8434), + [aux_sym_preproc_if_token2] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), + [sym_preproc_directive] = ACTIONS(8434), + [anon_sym_LPAREN2] = ACTIONS(8436), + [anon_sym_TILDE] = ACTIONS(8436), + [anon_sym_STAR] = ACTIONS(8436), + [anon_sym_AMP_AMP] = ACTIONS(8436), + [anon_sym_AMP] = ACTIONS(8434), + [anon_sym_SEMI] = ACTIONS(8436), + [anon_sym___extension__] = ACTIONS(8434), + [anon_sym_typedef] = ACTIONS(8434), + [anon_sym_virtual] = ACTIONS(8434), + [anon_sym_extern] = ACTIONS(8434), + [anon_sym___attribute__] = ACTIONS(8434), + [anon_sym___attribute] = ACTIONS(8434), + [anon_sym_using] = ACTIONS(8434), + [anon_sym_COLON_COLON] = ACTIONS(8436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), + [anon_sym___declspec] = ACTIONS(8434), + [anon_sym___based] = ACTIONS(8434), + [anon_sym_signed] = ACTIONS(8434), + [anon_sym_unsigned] = ACTIONS(8434), + [anon_sym_long] = ACTIONS(8434), + [anon_sym_short] = ACTIONS(8434), + [anon_sym_LBRACK] = ACTIONS(8434), + [anon_sym_static] = ACTIONS(8434), + [anon_sym_register] = ACTIONS(8434), + [anon_sym_inline] = ACTIONS(8434), + [anon_sym___inline] = ACTIONS(8434), + [anon_sym___inline__] = ACTIONS(8434), + [anon_sym___forceinline] = ACTIONS(8434), + [anon_sym_thread_local] = ACTIONS(8434), + [anon_sym___thread] = ACTIONS(8434), + [anon_sym_const] = ACTIONS(8434), + [anon_sym_constexpr] = ACTIONS(8434), + [anon_sym_volatile] = ACTIONS(8434), + [anon_sym_restrict] = ACTIONS(8434), + [anon_sym___restrict__] = ACTIONS(8434), + [anon_sym__Atomic] = ACTIONS(8434), + [anon_sym__Noreturn] = ACTIONS(8434), + [anon_sym_noreturn] = ACTIONS(8434), + [anon_sym__Nonnull] = ACTIONS(8434), + [anon_sym_mutable] = ACTIONS(8434), + [anon_sym_constinit] = ACTIONS(8434), + [anon_sym_consteval] = ACTIONS(8434), + [anon_sym_alignas] = ACTIONS(8434), + [anon_sym__Alignas] = ACTIONS(8434), + [sym_primitive_type] = ACTIONS(8434), + [anon_sym_enum] = ACTIONS(8434), + [anon_sym_class] = ACTIONS(8434), + [anon_sym_struct] = ACTIONS(8434), + [anon_sym_union] = ACTIONS(8434), + [anon_sym_typename] = ACTIONS(8434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8434), + [anon_sym_decltype] = ACTIONS(8434), + [anon_sym_explicit] = ACTIONS(8434), + [anon_sym_private] = ACTIONS(8434), + [anon_sym_template] = ACTIONS(8434), + [anon_sym_operator] = ACTIONS(8434), + [anon_sym_friend] = ACTIONS(8434), + [anon_sym_public] = ACTIONS(8434), + [anon_sym_protected] = ACTIONS(8434), + [anon_sym_static_assert] = ACTIONS(8434), + [anon_sym_LBRACK_COLON] = ACTIONS(8436), + }, + [STATE(3160)] = { + [sym_identifier] = ACTIONS(8277), + [aux_sym_preproc_def_token1] = ACTIONS(8277), + [aux_sym_preproc_if_token1] = ACTIONS(8277), + [aux_sym_preproc_if_token2] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), + [sym_preproc_directive] = ACTIONS(8277), + [anon_sym_LPAREN2] = ACTIONS(8279), + [anon_sym_TILDE] = ACTIONS(8279), + [anon_sym_STAR] = ACTIONS(8279), + [anon_sym_AMP_AMP] = ACTIONS(8279), + [anon_sym_AMP] = ACTIONS(8277), + [anon_sym_SEMI] = ACTIONS(8279), + [anon_sym___extension__] = ACTIONS(8277), + [anon_sym_typedef] = ACTIONS(8277), + [anon_sym_virtual] = ACTIONS(8277), + [anon_sym_extern] = ACTIONS(8277), + [anon_sym___attribute__] = ACTIONS(8277), + [anon_sym___attribute] = ACTIONS(8277), + [anon_sym_using] = ACTIONS(8277), + [anon_sym_COLON_COLON] = ACTIONS(8279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), + [anon_sym___declspec] = ACTIONS(8277), + [anon_sym___based] = ACTIONS(8277), + [anon_sym_signed] = ACTIONS(8277), + [anon_sym_unsigned] = ACTIONS(8277), + [anon_sym_long] = ACTIONS(8277), + [anon_sym_short] = ACTIONS(8277), + [anon_sym_LBRACK] = ACTIONS(8277), + [anon_sym_static] = ACTIONS(8277), + [anon_sym_register] = ACTIONS(8277), + [anon_sym_inline] = ACTIONS(8277), + [anon_sym___inline] = ACTIONS(8277), + [anon_sym___inline__] = ACTIONS(8277), + [anon_sym___forceinline] = ACTIONS(8277), + [anon_sym_thread_local] = ACTIONS(8277), + [anon_sym___thread] = ACTIONS(8277), + [anon_sym_const] = ACTIONS(8277), + [anon_sym_constexpr] = ACTIONS(8277), + [anon_sym_volatile] = ACTIONS(8277), + [anon_sym_restrict] = ACTIONS(8277), + [anon_sym___restrict__] = ACTIONS(8277), + [anon_sym__Atomic] = ACTIONS(8277), + [anon_sym__Noreturn] = ACTIONS(8277), + [anon_sym_noreturn] = ACTIONS(8277), + [anon_sym__Nonnull] = ACTIONS(8277), + [anon_sym_mutable] = ACTIONS(8277), + [anon_sym_constinit] = ACTIONS(8277), + [anon_sym_consteval] = ACTIONS(8277), + [anon_sym_alignas] = ACTIONS(8277), + [anon_sym__Alignas] = ACTIONS(8277), + [sym_primitive_type] = ACTIONS(8277), + [anon_sym_enum] = ACTIONS(8277), + [anon_sym_class] = ACTIONS(8277), + [anon_sym_struct] = ACTIONS(8277), + [anon_sym_union] = ACTIONS(8277), + [anon_sym_typename] = ACTIONS(8277), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8277), + [anon_sym_decltype] = ACTIONS(8277), + [anon_sym_explicit] = ACTIONS(8277), + [anon_sym_private] = ACTIONS(8277), + [anon_sym_template] = ACTIONS(8277), + [anon_sym_operator] = ACTIONS(8277), + [anon_sym_friend] = ACTIONS(8277), + [anon_sym_public] = ACTIONS(8277), + [anon_sym_protected] = ACTIONS(8277), + [anon_sym_static_assert] = ACTIONS(8277), + [anon_sym_LBRACK_COLON] = ACTIONS(8279), + }, + [STATE(3161)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token2] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(3162)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token2] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(3163)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3164)] = { + [sym_identifier] = ACTIONS(8408), + [aux_sym_preproc_def_token1] = ACTIONS(8408), + [aux_sym_preproc_if_token1] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), + [sym_preproc_directive] = ACTIONS(8408), + [anon_sym_LPAREN2] = ACTIONS(8410), + [anon_sym_TILDE] = ACTIONS(8410), + [anon_sym_STAR] = ACTIONS(8410), + [anon_sym_AMP_AMP] = ACTIONS(8410), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_SEMI] = ACTIONS(8410), + [anon_sym___extension__] = ACTIONS(8408), + [anon_sym_typedef] = ACTIONS(8408), + [anon_sym_virtual] = ACTIONS(8408), + [anon_sym_extern] = ACTIONS(8408), + [anon_sym___attribute__] = ACTIONS(8408), + [anon_sym___attribute] = ACTIONS(8408), + [anon_sym_using] = ACTIONS(8408), + [anon_sym_COLON_COLON] = ACTIONS(8410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), + [anon_sym___declspec] = ACTIONS(8408), + [anon_sym___based] = ACTIONS(8408), + [anon_sym_RBRACE] = ACTIONS(8410), + [anon_sym_signed] = ACTIONS(8408), + [anon_sym_unsigned] = ACTIONS(8408), + [anon_sym_long] = ACTIONS(8408), + [anon_sym_short] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8408), + [anon_sym_static] = ACTIONS(8408), + [anon_sym_register] = ACTIONS(8408), + [anon_sym_inline] = ACTIONS(8408), + [anon_sym___inline] = ACTIONS(8408), + [anon_sym___inline__] = ACTIONS(8408), + [anon_sym___forceinline] = ACTIONS(8408), + [anon_sym_thread_local] = ACTIONS(8408), + [anon_sym___thread] = ACTIONS(8408), + [anon_sym_const] = ACTIONS(8408), + [anon_sym_constexpr] = ACTIONS(8408), + [anon_sym_volatile] = ACTIONS(8408), + [anon_sym_restrict] = ACTIONS(8408), + [anon_sym___restrict__] = ACTIONS(8408), + [anon_sym__Atomic] = ACTIONS(8408), + [anon_sym__Noreturn] = ACTIONS(8408), + [anon_sym_noreturn] = ACTIONS(8408), + [anon_sym__Nonnull] = ACTIONS(8408), + [anon_sym_mutable] = ACTIONS(8408), + [anon_sym_constinit] = ACTIONS(8408), + [anon_sym_consteval] = ACTIONS(8408), + [anon_sym_alignas] = ACTIONS(8408), + [anon_sym__Alignas] = ACTIONS(8408), + [sym_primitive_type] = ACTIONS(8408), + [anon_sym_enum] = ACTIONS(8408), + [anon_sym_class] = ACTIONS(8408), + [anon_sym_struct] = ACTIONS(8408), + [anon_sym_union] = ACTIONS(8408), + [anon_sym_typename] = ACTIONS(8408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8408), + [anon_sym_decltype] = ACTIONS(8408), + [anon_sym_explicit] = ACTIONS(8408), + [anon_sym_private] = ACTIONS(8408), + [anon_sym_template] = ACTIONS(8408), + [anon_sym_operator] = ACTIONS(8408), + [anon_sym_friend] = ACTIONS(8408), + [anon_sym_public] = ACTIONS(8408), + [anon_sym_protected] = ACTIONS(8408), + [anon_sym_static_assert] = ACTIONS(8408), + [anon_sym_LBRACK_COLON] = ACTIONS(8410), + }, + [STATE(3165)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(3166)] = { + [sym_string_literal] = STATE(2486), + [sym_raw_string_literal] = STATE(2486), + [sym_identifier] = ACTIONS(8737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(8739), + [aux_sym_preproc_if_token2] = ACTIONS(8739), + [aux_sym_preproc_else_token1] = ACTIONS(8739), + [aux_sym_preproc_elif_token1] = ACTIONS(8737), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8739), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8739), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_DASH] = ACTIONS(8737), + [anon_sym_PLUS] = ACTIONS(8737), + [anon_sym_STAR] = ACTIONS(8737), + [anon_sym_SLASH] = ACTIONS(8737), + [anon_sym_PERCENT] = ACTIONS(8737), + [anon_sym_PIPE_PIPE] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_PIPE] = ACTIONS(8737), + [anon_sym_CARET] = ACTIONS(8737), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_EQ_EQ] = ACTIONS(8739), + [anon_sym_BANG_EQ] = ACTIONS(8739), + [anon_sym_GT] = ACTIONS(8737), + [anon_sym_GT_EQ] = ACTIONS(8739), + [anon_sym_LT_EQ] = ACTIONS(8737), + [anon_sym_LT] = ACTIONS(8737), + [anon_sym_LT_LT] = ACTIONS(8737), + [anon_sym_GT_GT] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8739), + [anon_sym_EQ] = ACTIONS(8737), + [anon_sym_QMARK] = ACTIONS(8739), + [anon_sym_STAR_EQ] = ACTIONS(8739), + [anon_sym_SLASH_EQ] = ACTIONS(8739), + [anon_sym_PERCENT_EQ] = ACTIONS(8739), + [anon_sym_PLUS_EQ] = ACTIONS(8739), + [anon_sym_DASH_EQ] = ACTIONS(8739), + [anon_sym_LT_LT_EQ] = ACTIONS(8739), + [anon_sym_GT_GT_EQ] = ACTIONS(8739), + [anon_sym_AMP_EQ] = ACTIONS(8739), + [anon_sym_CARET_EQ] = ACTIONS(8739), + [anon_sym_PIPE_EQ] = ACTIONS(8739), + [anon_sym_and_eq] = ACTIONS(8737), + [anon_sym_or_eq] = ACTIONS(8737), + [anon_sym_xor_eq] = ACTIONS(8737), + [anon_sym_LT_EQ_GT] = ACTIONS(8739), + [anon_sym_or] = ACTIONS(8737), + [anon_sym_and] = ACTIONS(8737), + [anon_sym_bitor] = ACTIONS(8737), + [anon_sym_xor] = ACTIONS(8737), + [anon_sym_bitand] = ACTIONS(8737), + [anon_sym_not_eq] = ACTIONS(8737), + [anon_sym_DASH_DASH] = ACTIONS(8739), + [anon_sym_PLUS_PLUS] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8737), + [anon_sym_DOT_STAR] = ACTIONS(8739), + [anon_sym_DASH_GT] = ACTIONS(8739), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [sym_literal_suffix] = ACTIONS(8737), + }, + [STATE(3167)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token2] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(3168)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + }, + [STATE(3169)] = { + [sym_identifier] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym___cdecl] = ACTIONS(8741), + [anon_sym___clrcall] = ACTIONS(8741), + [anon_sym___stdcall] = ACTIONS(8741), + [anon_sym___fastcall] = ACTIONS(8741), + [anon_sym___thiscall] = ACTIONS(8741), + [anon_sym___vectorcall] = ACTIONS(8741), + [anon_sym_LBRACE] = ACTIONS(8743), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [anon_sym_DASH_GT] = ACTIONS(8743), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_noexcept] = ACTIONS(8741), + [anon_sym_throw] = ACTIONS(8741), + [anon_sym_concept] = ACTIONS(8741), + [anon_sym_requires] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), + }, + [STATE(3170)] = { + [sym_identifier] = ACTIONS(6237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [aux_sym_preproc_if_token2] = ACTIONS(6230), + [aux_sym_preproc_else_token1] = ACTIONS(6230), + [aux_sym_preproc_elif_token1] = ACTIONS(6237), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6230), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6230), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6230), + [anon_sym_GT_GT] = ACTIONS(6230), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6237), + [anon_sym___attribute] = ACTIONS(6237), + [anon_sym_COLON] = ACTIONS(6237), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6237), + [anon_sym_and] = ACTIONS(6237), + [anon_sym_bitor] = ACTIONS(6237), + [anon_sym_xor] = ACTIONS(6237), + [anon_sym_bitand] = ACTIONS(6237), + [anon_sym_not_eq] = ACTIONS(6237), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_COLON_RBRACK] = ACTIONS(6230), + }, + [STATE(3171)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4510), + [sym__function_postfix] = STATE(5590), + [sym_trailing_return_type] = STATE(4603), + [sym_requires_clause] = STATE(5590), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8210), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8213), + [anon_sym_override] = ACTIONS(8213), + [anon_sym_requires] = ACTIONS(8216), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(3172)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3315), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [aux_sym_preproc_if_token2] = ACTIONS(7404), + [aux_sym_preproc_else_token1] = ACTIONS(7404), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7404), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7404), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7404), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7404), + [anon_sym_GT_GT] = ACTIONS(7404), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_RBRACK] = ACTIONS(7404), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + }, + [STATE(3173)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(3174)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_private] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_friend] = ACTIONS(4062), + [anon_sym_public] = ACTIONS(4062), + [anon_sym_protected] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + }, + [STATE(3175)] = { + [sym_identifier] = ACTIONS(8347), + [aux_sym_preproc_def_token1] = ACTIONS(8347), + [aux_sym_preproc_if_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), + [sym_preproc_directive] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8349), + [anon_sym_TILDE] = ACTIONS(8349), + [anon_sym_STAR] = ACTIONS(8349), + [anon_sym_AMP_AMP] = ACTIONS(8349), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8349), + [anon_sym___extension__] = ACTIONS(8347), + [anon_sym_typedef] = ACTIONS(8347), + [anon_sym_virtual] = ACTIONS(8347), + [anon_sym_extern] = ACTIONS(8347), + [anon_sym___attribute__] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8347), + [anon_sym_using] = ACTIONS(8347), + [anon_sym_COLON_COLON] = ACTIONS(8349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), + [anon_sym___declspec] = ACTIONS(8347), + [anon_sym___based] = ACTIONS(8347), + [anon_sym_RBRACE] = ACTIONS(8349), + [anon_sym_signed] = ACTIONS(8347), + [anon_sym_unsigned] = ACTIONS(8347), + [anon_sym_long] = ACTIONS(8347), + [anon_sym_short] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_static] = ACTIONS(8347), + [anon_sym_register] = ACTIONS(8347), + [anon_sym_inline] = ACTIONS(8347), + [anon_sym___inline] = ACTIONS(8347), + [anon_sym___inline__] = ACTIONS(8347), + [anon_sym___forceinline] = ACTIONS(8347), + [anon_sym_thread_local] = ACTIONS(8347), + [anon_sym___thread] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8347), + [anon_sym_constexpr] = ACTIONS(8347), + [anon_sym_volatile] = ACTIONS(8347), + [anon_sym_restrict] = ACTIONS(8347), + [anon_sym___restrict__] = ACTIONS(8347), + [anon_sym__Atomic] = ACTIONS(8347), + [anon_sym__Noreturn] = ACTIONS(8347), + [anon_sym_noreturn] = ACTIONS(8347), + [anon_sym__Nonnull] = ACTIONS(8347), + [anon_sym_mutable] = ACTIONS(8347), + [anon_sym_constinit] = ACTIONS(8347), + [anon_sym_consteval] = ACTIONS(8347), + [anon_sym_alignas] = ACTIONS(8347), + [anon_sym__Alignas] = ACTIONS(8347), + [sym_primitive_type] = ACTIONS(8347), + [anon_sym_enum] = ACTIONS(8347), + [anon_sym_class] = ACTIONS(8347), + [anon_sym_struct] = ACTIONS(8347), + [anon_sym_union] = ACTIONS(8347), + [anon_sym_typename] = ACTIONS(8347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8347), + [anon_sym_decltype] = ACTIONS(8347), + [anon_sym_explicit] = ACTIONS(8347), + [anon_sym_private] = ACTIONS(8347), + [anon_sym_template] = ACTIONS(8347), + [anon_sym_operator] = ACTIONS(8347), + [anon_sym_friend] = ACTIONS(8347), + [anon_sym_public] = ACTIONS(8347), + [anon_sym_protected] = ACTIONS(8347), + [anon_sym_static_assert] = ACTIONS(8347), + [anon_sym_LBRACK_COLON] = ACTIONS(8349), + }, + [STATE(3176)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3316), + [sym_identifier] = ACTIONS(7408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [aux_sym_preproc_if_token2] = ACTIONS(7410), + [aux_sym_preproc_else_token1] = ACTIONS(7410), + [aux_sym_preproc_elif_token1] = ACTIONS(7408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7410), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7410), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7410), + [anon_sym_GT_GT] = ACTIONS(7410), + [anon_sym___extension__] = ACTIONS(7408), + [anon_sym___attribute__] = ACTIONS(7408), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(8747), + [anon_sym_unsigned] = ACTIONS(8747), + [anon_sym_long] = ACTIONS(8747), + [anon_sym_short] = ACTIONS(8747), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_RBRACK] = ACTIONS(7410), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7408), + [anon_sym_volatile] = ACTIONS(7408), + [anon_sym_restrict] = ACTIONS(7408), + [anon_sym___restrict__] = ACTIONS(7408), + [anon_sym__Atomic] = ACTIONS(7408), + [anon_sym__Noreturn] = ACTIONS(7408), + [anon_sym_noreturn] = ACTIONS(7408), + [anon_sym__Nonnull] = ACTIONS(7408), + [anon_sym_mutable] = ACTIONS(7408), + [anon_sym_constinit] = ACTIONS(7408), + [anon_sym_consteval] = ACTIONS(7408), + [anon_sym_alignas] = ACTIONS(7408), + [anon_sym__Alignas] = ACTIONS(7408), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7408), + [anon_sym_and] = ACTIONS(7408), + [anon_sym_bitor] = ACTIONS(7408), + [anon_sym_xor] = ACTIONS(7408), + [anon_sym_bitand] = ACTIONS(7408), + [anon_sym_not_eq] = ACTIONS(7408), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7408), + [anon_sym_override] = ACTIONS(7408), + [anon_sym_requires] = ACTIONS(7408), + }, + [STATE(3177)] = { + [sym_identifier] = ACTIONS(8404), + [aux_sym_preproc_def_token1] = ACTIONS(8404), + [aux_sym_preproc_if_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), + [sym_preproc_directive] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_TILDE] = ACTIONS(8406), + [anon_sym_STAR] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___extension__] = ACTIONS(8404), + [anon_sym_typedef] = ACTIONS(8404), + [anon_sym_virtual] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_using] = ACTIONS(8404), + [anon_sym_COLON_COLON] = ACTIONS(8406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), + [anon_sym___declspec] = ACTIONS(8404), + [anon_sym___based] = ACTIONS(8404), + [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_signed] = ACTIONS(8404), + [anon_sym_unsigned] = ACTIONS(8404), + [anon_sym_long] = ACTIONS(8404), + [anon_sym_short] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8404), + [anon_sym_register] = ACTIONS(8404), + [anon_sym_inline] = ACTIONS(8404), + [anon_sym___inline] = ACTIONS(8404), + [anon_sym___inline__] = ACTIONS(8404), + [anon_sym___forceinline] = ACTIONS(8404), + [anon_sym_thread_local] = ACTIONS(8404), + [anon_sym___thread] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8404), + [anon_sym_constexpr] = ACTIONS(8404), + [anon_sym_volatile] = ACTIONS(8404), + [anon_sym_restrict] = ACTIONS(8404), + [anon_sym___restrict__] = ACTIONS(8404), + [anon_sym__Atomic] = ACTIONS(8404), + [anon_sym__Noreturn] = ACTIONS(8404), + [anon_sym_noreturn] = ACTIONS(8404), + [anon_sym__Nonnull] = ACTIONS(8404), + [anon_sym_mutable] = ACTIONS(8404), + [anon_sym_constinit] = ACTIONS(8404), + [anon_sym_consteval] = ACTIONS(8404), + [anon_sym_alignas] = ACTIONS(8404), + [anon_sym__Alignas] = ACTIONS(8404), + [sym_primitive_type] = ACTIONS(8404), + [anon_sym_enum] = ACTIONS(8404), + [anon_sym_class] = ACTIONS(8404), + [anon_sym_struct] = ACTIONS(8404), + [anon_sym_union] = ACTIONS(8404), + [anon_sym_typename] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8404), + [anon_sym_decltype] = ACTIONS(8404), + [anon_sym_explicit] = ACTIONS(8404), + [anon_sym_private] = ACTIONS(8404), + [anon_sym_template] = ACTIONS(8404), + [anon_sym_operator] = ACTIONS(8404), + [anon_sym_friend] = ACTIONS(8404), + [anon_sym_public] = ACTIONS(8404), + [anon_sym_protected] = ACTIONS(8404), + [anon_sym_static_assert] = ACTIONS(8404), + [anon_sym_LBRACK_COLON] = ACTIONS(8406), + }, + [STATE(3178)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(3179)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_private] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_friend] = ACTIONS(4144), + [anon_sym_public] = ACTIONS(4144), + [anon_sym_protected] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + }, + [STATE(3180)] = { + [sym_identifier] = ACTIONS(8434), + [aux_sym_preproc_def_token1] = ACTIONS(8434), + [aux_sym_preproc_if_token1] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), + [sym_preproc_directive] = ACTIONS(8434), + [anon_sym_LPAREN2] = ACTIONS(8436), + [anon_sym_TILDE] = ACTIONS(8436), + [anon_sym_STAR] = ACTIONS(8436), + [anon_sym_AMP_AMP] = ACTIONS(8436), + [anon_sym_AMP] = ACTIONS(8434), + [anon_sym_SEMI] = ACTIONS(8436), + [anon_sym___extension__] = ACTIONS(8434), + [anon_sym_typedef] = ACTIONS(8434), + [anon_sym_virtual] = ACTIONS(8434), + [anon_sym_extern] = ACTIONS(8434), + [anon_sym___attribute__] = ACTIONS(8434), + [anon_sym___attribute] = ACTIONS(8434), + [anon_sym_using] = ACTIONS(8434), + [anon_sym_COLON_COLON] = ACTIONS(8436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), + [anon_sym___declspec] = ACTIONS(8434), + [anon_sym___based] = ACTIONS(8434), + [anon_sym_RBRACE] = ACTIONS(8436), + [anon_sym_signed] = ACTIONS(8434), + [anon_sym_unsigned] = ACTIONS(8434), + [anon_sym_long] = ACTIONS(8434), + [anon_sym_short] = ACTIONS(8434), + [anon_sym_LBRACK] = ACTIONS(8434), + [anon_sym_static] = ACTIONS(8434), + [anon_sym_register] = ACTIONS(8434), + [anon_sym_inline] = ACTIONS(8434), + [anon_sym___inline] = ACTIONS(8434), + [anon_sym___inline__] = ACTIONS(8434), + [anon_sym___forceinline] = ACTIONS(8434), + [anon_sym_thread_local] = ACTIONS(8434), + [anon_sym___thread] = ACTIONS(8434), + [anon_sym_const] = ACTIONS(8434), + [anon_sym_constexpr] = ACTIONS(8434), + [anon_sym_volatile] = ACTIONS(8434), + [anon_sym_restrict] = ACTIONS(8434), + [anon_sym___restrict__] = ACTIONS(8434), + [anon_sym__Atomic] = ACTIONS(8434), + [anon_sym__Noreturn] = ACTIONS(8434), + [anon_sym_noreturn] = ACTIONS(8434), + [anon_sym__Nonnull] = ACTIONS(8434), + [anon_sym_mutable] = ACTIONS(8434), + [anon_sym_constinit] = ACTIONS(8434), + [anon_sym_consteval] = ACTIONS(8434), + [anon_sym_alignas] = ACTIONS(8434), + [anon_sym__Alignas] = ACTIONS(8434), + [sym_primitive_type] = ACTIONS(8434), + [anon_sym_enum] = ACTIONS(8434), + [anon_sym_class] = ACTIONS(8434), + [anon_sym_struct] = ACTIONS(8434), + [anon_sym_union] = ACTIONS(8434), + [anon_sym_typename] = ACTIONS(8434), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8434), + [anon_sym_decltype] = ACTIONS(8434), + [anon_sym_explicit] = ACTIONS(8434), + [anon_sym_private] = ACTIONS(8434), + [anon_sym_template] = ACTIONS(8434), + [anon_sym_operator] = ACTIONS(8434), + [anon_sym_friend] = ACTIONS(8434), + [anon_sym_public] = ACTIONS(8434), + [anon_sym_protected] = ACTIONS(8434), + [anon_sym_static_assert] = ACTIONS(8434), + [anon_sym_LBRACK_COLON] = ACTIONS(8436), + }, + [STATE(3181)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4024), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_private] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_friend] = ACTIONS(4022), + [anon_sym_public] = ACTIONS(4022), + [anon_sym_protected] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + }, + [STATE(3182)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(3183)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token2] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(3184)] = { + [sym_identifier] = ACTIONS(8277), + [aux_sym_preproc_def_token1] = ACTIONS(8277), + [aux_sym_preproc_if_token1] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), + [sym_preproc_directive] = ACTIONS(8277), + [anon_sym_LPAREN2] = ACTIONS(8279), + [anon_sym_TILDE] = ACTIONS(8279), + [anon_sym_STAR] = ACTIONS(8279), + [anon_sym_AMP_AMP] = ACTIONS(8279), + [anon_sym_AMP] = ACTIONS(8277), + [anon_sym_SEMI] = ACTIONS(8279), + [anon_sym___extension__] = ACTIONS(8277), + [anon_sym_typedef] = ACTIONS(8277), + [anon_sym_virtual] = ACTIONS(8277), + [anon_sym_extern] = ACTIONS(8277), + [anon_sym___attribute__] = ACTIONS(8277), + [anon_sym___attribute] = ACTIONS(8277), + [anon_sym_using] = ACTIONS(8277), + [anon_sym_COLON_COLON] = ACTIONS(8279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), + [anon_sym___declspec] = ACTIONS(8277), + [anon_sym___based] = ACTIONS(8277), + [anon_sym_RBRACE] = ACTIONS(8279), + [anon_sym_signed] = ACTIONS(8277), + [anon_sym_unsigned] = ACTIONS(8277), + [anon_sym_long] = ACTIONS(8277), + [anon_sym_short] = ACTIONS(8277), + [anon_sym_LBRACK] = ACTIONS(8277), + [anon_sym_static] = ACTIONS(8277), + [anon_sym_register] = ACTIONS(8277), + [anon_sym_inline] = ACTIONS(8277), + [anon_sym___inline] = ACTIONS(8277), + [anon_sym___inline__] = ACTIONS(8277), + [anon_sym___forceinline] = ACTIONS(8277), + [anon_sym_thread_local] = ACTIONS(8277), + [anon_sym___thread] = ACTIONS(8277), + [anon_sym_const] = ACTIONS(8277), + [anon_sym_constexpr] = ACTIONS(8277), + [anon_sym_volatile] = ACTIONS(8277), + [anon_sym_restrict] = ACTIONS(8277), + [anon_sym___restrict__] = ACTIONS(8277), + [anon_sym__Atomic] = ACTIONS(8277), + [anon_sym__Noreturn] = ACTIONS(8277), + [anon_sym_noreturn] = ACTIONS(8277), + [anon_sym__Nonnull] = ACTIONS(8277), + [anon_sym_mutable] = ACTIONS(8277), + [anon_sym_constinit] = ACTIONS(8277), + [anon_sym_consteval] = ACTIONS(8277), + [anon_sym_alignas] = ACTIONS(8277), + [anon_sym__Alignas] = ACTIONS(8277), + [sym_primitive_type] = ACTIONS(8277), + [anon_sym_enum] = ACTIONS(8277), + [anon_sym_class] = ACTIONS(8277), + [anon_sym_struct] = ACTIONS(8277), + [anon_sym_union] = ACTIONS(8277), + [anon_sym_typename] = ACTIONS(8277), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8277), + [anon_sym_decltype] = ACTIONS(8277), + [anon_sym_explicit] = ACTIONS(8277), + [anon_sym_private] = ACTIONS(8277), + [anon_sym_template] = ACTIONS(8277), + [anon_sym_operator] = ACTIONS(8277), + [anon_sym_friend] = ACTIONS(8277), + [anon_sym_public] = ACTIONS(8277), + [anon_sym_protected] = ACTIONS(8277), + [anon_sym_static_assert] = ACTIONS(8277), + [anon_sym_LBRACK_COLON] = ACTIONS(8279), + }, + [STATE(3185)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_RBRACE] = ACTIONS(8283), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(3186)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(3187)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_private] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_friend] = ACTIONS(4096), + [anon_sym_public] = ACTIONS(4096), + [anon_sym_protected] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + }, + [STATE(3188)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + }, + [STATE(3189)] = { + [sym_identifier] = ACTIONS(8281), + [aux_sym_preproc_def_token1] = ACTIONS(8281), + [aux_sym_preproc_if_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), + [sym_preproc_directive] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8283), + [anon_sym_TILDE] = ACTIONS(8283), + [anon_sym_STAR] = ACTIONS(8283), + [anon_sym_AMP_AMP] = ACTIONS(8283), + [anon_sym_AMP] = ACTIONS(8281), + [anon_sym_SEMI] = ACTIONS(8283), + [anon_sym___extension__] = ACTIONS(8281), + [anon_sym_typedef] = ACTIONS(8281), + [anon_sym_virtual] = ACTIONS(8281), + [anon_sym_extern] = ACTIONS(8281), + [anon_sym___attribute__] = ACTIONS(8281), + [anon_sym___attribute] = ACTIONS(8281), + [anon_sym_using] = ACTIONS(8281), + [anon_sym_COLON_COLON] = ACTIONS(8283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), + [anon_sym___declspec] = ACTIONS(8281), + [anon_sym___based] = ACTIONS(8281), + [anon_sym_RBRACE] = ACTIONS(8283), + [anon_sym_signed] = ACTIONS(8281), + [anon_sym_unsigned] = ACTIONS(8281), + [anon_sym_long] = ACTIONS(8281), + [anon_sym_short] = ACTIONS(8281), + [anon_sym_LBRACK] = ACTIONS(8281), + [anon_sym_static] = ACTIONS(8281), + [anon_sym_register] = ACTIONS(8281), + [anon_sym_inline] = ACTIONS(8281), + [anon_sym___inline] = ACTIONS(8281), + [anon_sym___inline__] = ACTIONS(8281), + [anon_sym___forceinline] = ACTIONS(8281), + [anon_sym_thread_local] = ACTIONS(8281), + [anon_sym___thread] = ACTIONS(8281), + [anon_sym_const] = ACTIONS(8281), + [anon_sym_constexpr] = ACTIONS(8281), + [anon_sym_volatile] = ACTIONS(8281), + [anon_sym_restrict] = ACTIONS(8281), + [anon_sym___restrict__] = ACTIONS(8281), + [anon_sym__Atomic] = ACTIONS(8281), + [anon_sym__Noreturn] = ACTIONS(8281), + [anon_sym_noreturn] = ACTIONS(8281), + [anon_sym__Nonnull] = ACTIONS(8281), + [anon_sym_mutable] = ACTIONS(8281), + [anon_sym_constinit] = ACTIONS(8281), + [anon_sym_consteval] = ACTIONS(8281), + [anon_sym_alignas] = ACTIONS(8281), + [anon_sym__Alignas] = ACTIONS(8281), + [sym_primitive_type] = ACTIONS(8281), + [anon_sym_enum] = ACTIONS(8281), + [anon_sym_class] = ACTIONS(8281), + [anon_sym_struct] = ACTIONS(8281), + [anon_sym_union] = ACTIONS(8281), + [anon_sym_typename] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8281), + [anon_sym_decltype] = ACTIONS(8281), + [anon_sym_explicit] = ACTIONS(8281), + [anon_sym_private] = ACTIONS(8281), + [anon_sym_template] = ACTIONS(8281), + [anon_sym_operator] = ACTIONS(8281), + [anon_sym_friend] = ACTIONS(8281), + [anon_sym_public] = ACTIONS(8281), + [anon_sym_protected] = ACTIONS(8281), + [anon_sym_static_assert] = ACTIONS(8281), + [anon_sym_LBRACK_COLON] = ACTIONS(8283), + }, + [STATE(3190)] = { + [sym_identifier] = ACTIONS(8386), + [aux_sym_preproc_def_token1] = ACTIONS(8386), + [aux_sym_preproc_if_token1] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), + [sym_preproc_directive] = ACTIONS(8386), + [anon_sym_LPAREN2] = ACTIONS(8388), + [anon_sym_TILDE] = ACTIONS(8388), + [anon_sym_STAR] = ACTIONS(8388), + [anon_sym_AMP_AMP] = ACTIONS(8388), + [anon_sym_AMP] = ACTIONS(8386), + [anon_sym_SEMI] = ACTIONS(8388), + [anon_sym___extension__] = ACTIONS(8386), + [anon_sym_typedef] = ACTIONS(8386), + [anon_sym_virtual] = ACTIONS(8386), + [anon_sym_extern] = ACTIONS(8386), + [anon_sym___attribute__] = ACTIONS(8386), + [anon_sym___attribute] = ACTIONS(8386), + [anon_sym_using] = ACTIONS(8386), + [anon_sym_COLON_COLON] = ACTIONS(8388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), + [anon_sym___declspec] = ACTIONS(8386), + [anon_sym___based] = ACTIONS(8386), + [anon_sym_RBRACE] = ACTIONS(8388), + [anon_sym_signed] = ACTIONS(8386), + [anon_sym_unsigned] = ACTIONS(8386), + [anon_sym_long] = ACTIONS(8386), + [anon_sym_short] = ACTIONS(8386), + [anon_sym_LBRACK] = ACTIONS(8386), + [anon_sym_static] = ACTIONS(8386), + [anon_sym_register] = ACTIONS(8386), + [anon_sym_inline] = ACTIONS(8386), + [anon_sym___inline] = ACTIONS(8386), + [anon_sym___inline__] = ACTIONS(8386), + [anon_sym___forceinline] = ACTIONS(8386), + [anon_sym_thread_local] = ACTIONS(8386), + [anon_sym___thread] = ACTIONS(8386), + [anon_sym_const] = ACTIONS(8386), + [anon_sym_constexpr] = ACTIONS(8386), + [anon_sym_volatile] = ACTIONS(8386), + [anon_sym_restrict] = ACTIONS(8386), + [anon_sym___restrict__] = ACTIONS(8386), + [anon_sym__Atomic] = ACTIONS(8386), + [anon_sym__Noreturn] = ACTIONS(8386), + [anon_sym_noreturn] = ACTIONS(8386), + [anon_sym__Nonnull] = ACTIONS(8386), + [anon_sym_mutable] = ACTIONS(8386), + [anon_sym_constinit] = ACTIONS(8386), + [anon_sym_consteval] = ACTIONS(8386), + [anon_sym_alignas] = ACTIONS(8386), + [anon_sym__Alignas] = ACTIONS(8386), + [sym_primitive_type] = ACTIONS(8386), + [anon_sym_enum] = ACTIONS(8386), + [anon_sym_class] = ACTIONS(8386), + [anon_sym_struct] = ACTIONS(8386), + [anon_sym_union] = ACTIONS(8386), + [anon_sym_typename] = ACTIONS(8386), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8386), + [anon_sym_decltype] = ACTIONS(8386), + [anon_sym_explicit] = ACTIONS(8386), + [anon_sym_private] = ACTIONS(8386), + [anon_sym_template] = ACTIONS(8386), + [anon_sym_operator] = ACTIONS(8386), + [anon_sym_friend] = ACTIONS(8386), + [anon_sym_public] = ACTIONS(8386), + [anon_sym_protected] = ACTIONS(8386), + [anon_sym_static_assert] = ACTIONS(8386), + [anon_sym_LBRACK_COLON] = ACTIONS(8388), + }, + [STATE(3191)] = { + [sym_identifier] = ACTIONS(8412), + [aux_sym_preproc_def_token1] = ACTIONS(8412), + [aux_sym_preproc_if_token1] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), + [sym_preproc_directive] = ACTIONS(8412), + [anon_sym_LPAREN2] = ACTIONS(8414), + [anon_sym_TILDE] = ACTIONS(8414), + [anon_sym_STAR] = ACTIONS(8414), + [anon_sym_AMP_AMP] = ACTIONS(8414), + [anon_sym_AMP] = ACTIONS(8412), + [anon_sym_SEMI] = ACTIONS(8414), + [anon_sym___extension__] = ACTIONS(8412), + [anon_sym_typedef] = ACTIONS(8412), + [anon_sym_virtual] = ACTIONS(8412), + [anon_sym_extern] = ACTIONS(8412), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_using] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(8414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), + [anon_sym___declspec] = ACTIONS(8412), + [anon_sym___based] = ACTIONS(8412), + [anon_sym_RBRACE] = ACTIONS(8414), + [anon_sym_signed] = ACTIONS(8412), + [anon_sym_unsigned] = ACTIONS(8412), + [anon_sym_long] = ACTIONS(8412), + [anon_sym_short] = ACTIONS(8412), + [anon_sym_LBRACK] = ACTIONS(8412), + [anon_sym_static] = ACTIONS(8412), + [anon_sym_register] = ACTIONS(8412), + [anon_sym_inline] = ACTIONS(8412), + [anon_sym___inline] = ACTIONS(8412), + [anon_sym___inline__] = ACTIONS(8412), + [anon_sym___forceinline] = ACTIONS(8412), + [anon_sym_thread_local] = ACTIONS(8412), + [anon_sym___thread] = ACTIONS(8412), + [anon_sym_const] = ACTIONS(8412), + [anon_sym_constexpr] = ACTIONS(8412), + [anon_sym_volatile] = ACTIONS(8412), + [anon_sym_restrict] = ACTIONS(8412), + [anon_sym___restrict__] = ACTIONS(8412), + [anon_sym__Atomic] = ACTIONS(8412), + [anon_sym__Noreturn] = ACTIONS(8412), + [anon_sym_noreturn] = ACTIONS(8412), + [anon_sym__Nonnull] = ACTIONS(8412), + [anon_sym_mutable] = ACTIONS(8412), + [anon_sym_constinit] = ACTIONS(8412), + [anon_sym_consteval] = ACTIONS(8412), + [anon_sym_alignas] = ACTIONS(8412), + [anon_sym__Alignas] = ACTIONS(8412), + [sym_primitive_type] = ACTIONS(8412), + [anon_sym_enum] = ACTIONS(8412), + [anon_sym_class] = ACTIONS(8412), + [anon_sym_struct] = ACTIONS(8412), + [anon_sym_union] = ACTIONS(8412), + [anon_sym_typename] = ACTIONS(8412), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8412), + [anon_sym_decltype] = ACTIONS(8412), + [anon_sym_explicit] = ACTIONS(8412), + [anon_sym_private] = ACTIONS(8412), + [anon_sym_template] = ACTIONS(8412), + [anon_sym_operator] = ACTIONS(8412), + [anon_sym_friend] = ACTIONS(8412), + [anon_sym_public] = ACTIONS(8412), + [anon_sym_protected] = ACTIONS(8412), + [anon_sym_static_assert] = ACTIONS(8412), + [anon_sym_LBRACK_COLON] = ACTIONS(8414), + }, + [STATE(3192)] = { + [sym_identifier] = ACTIONS(8420), + [aux_sym_preproc_def_token1] = ACTIONS(8420), + [aux_sym_preproc_if_token1] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), + [sym_preproc_directive] = ACTIONS(8420), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_TILDE] = ACTIONS(8422), + [anon_sym_STAR] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___extension__] = ACTIONS(8420), + [anon_sym_typedef] = ACTIONS(8420), + [anon_sym_virtual] = ACTIONS(8420), + [anon_sym_extern] = ACTIONS(8420), + [anon_sym___attribute__] = ACTIONS(8420), + [anon_sym___attribute] = ACTIONS(8420), + [anon_sym_using] = ACTIONS(8420), + [anon_sym_COLON_COLON] = ACTIONS(8422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), + [anon_sym___declspec] = ACTIONS(8420), + [anon_sym___based] = ACTIONS(8420), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_signed] = ACTIONS(8420), + [anon_sym_unsigned] = ACTIONS(8420), + [anon_sym_long] = ACTIONS(8420), + [anon_sym_short] = ACTIONS(8420), + [anon_sym_LBRACK] = ACTIONS(8420), + [anon_sym_static] = ACTIONS(8420), + [anon_sym_register] = ACTIONS(8420), + [anon_sym_inline] = ACTIONS(8420), + [anon_sym___inline] = ACTIONS(8420), + [anon_sym___inline__] = ACTIONS(8420), + [anon_sym___forceinline] = ACTIONS(8420), + [anon_sym_thread_local] = ACTIONS(8420), + [anon_sym___thread] = ACTIONS(8420), + [anon_sym_const] = ACTIONS(8420), + [anon_sym_constexpr] = ACTIONS(8420), + [anon_sym_volatile] = ACTIONS(8420), + [anon_sym_restrict] = ACTIONS(8420), + [anon_sym___restrict__] = ACTIONS(8420), + [anon_sym__Atomic] = ACTIONS(8420), + [anon_sym__Noreturn] = ACTIONS(8420), + [anon_sym_noreturn] = ACTIONS(8420), + [anon_sym__Nonnull] = ACTIONS(8420), + [anon_sym_mutable] = ACTIONS(8420), + [anon_sym_constinit] = ACTIONS(8420), + [anon_sym_consteval] = ACTIONS(8420), + [anon_sym_alignas] = ACTIONS(8420), + [anon_sym__Alignas] = ACTIONS(8420), + [sym_primitive_type] = ACTIONS(8420), + [anon_sym_enum] = ACTIONS(8420), + [anon_sym_class] = ACTIONS(8420), + [anon_sym_struct] = ACTIONS(8420), + [anon_sym_union] = ACTIONS(8420), + [anon_sym_typename] = ACTIONS(8420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8420), + [anon_sym_decltype] = ACTIONS(8420), + [anon_sym_explicit] = ACTIONS(8420), + [anon_sym_private] = ACTIONS(8420), + [anon_sym_template] = ACTIONS(8420), + [anon_sym_operator] = ACTIONS(8420), + [anon_sym_friend] = ACTIONS(8420), + [anon_sym_public] = ACTIONS(8420), + [anon_sym_protected] = ACTIONS(8420), + [anon_sym_static_assert] = ACTIONS(8420), + [anon_sym_LBRACK_COLON] = ACTIONS(8422), + }, + [STATE(3193)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_friend] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + }, + [STATE(3194)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + }, + [STATE(3195)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3196)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token2] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_private] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_friend] = ACTIONS(4006), + [anon_sym_public] = ACTIONS(4006), + [anon_sym_protected] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + }, + [STATE(3197)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token2] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_friend] = ACTIONS(4010), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + }, + [STATE(3198)] = { + [sym_template_argument_list] = STATE(3582), + [sym_identifier] = ACTIONS(6201), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(8749), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym_virtual] = ACTIONS(6201), + [anon_sym_extern] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_using] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), + [anon_sym___declspec] = ACTIONS(6201), + [anon_sym___based] = ACTIONS(6201), + [anon_sym___cdecl] = ACTIONS(6201), + [anon_sym___clrcall] = ACTIONS(6201), + [anon_sym___stdcall] = ACTIONS(6201), + [anon_sym___fastcall] = ACTIONS(6201), + [anon_sym___thiscall] = ACTIONS(6201), + [anon_sym___vectorcall] = ACTIONS(6201), + [anon_sym_signed] = ACTIONS(6201), + [anon_sym_unsigned] = ACTIONS(6201), + [anon_sym_long] = ACTIONS(6201), + [anon_sym_short] = ACTIONS(6201), + [anon_sym_LBRACK] = ACTIONS(6201), + [anon_sym_static] = ACTIONS(6201), + [anon_sym_register] = ACTIONS(6201), + [anon_sym_inline] = ACTIONS(6201), + [anon_sym___inline] = ACTIONS(6201), + [anon_sym___inline__] = ACTIONS(6201), + [anon_sym___forceinline] = ACTIONS(6201), + [anon_sym_thread_local] = ACTIONS(6201), + [anon_sym___thread] = ACTIONS(6201), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [sym_primitive_type] = ACTIONS(6201), + [anon_sym_enum] = ACTIONS(6201), + [anon_sym_class] = ACTIONS(6201), + [anon_sym_struct] = ACTIONS(6201), + [anon_sym_union] = ACTIONS(6201), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_typename] = ACTIONS(6201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_explicit] = ACTIONS(6201), + [anon_sym_template] = ACTIONS(6201), + [anon_sym_operator] = ACTIONS(6201), + [anon_sym_friend] = ACTIONS(6201), + [anon_sym_concept] = ACTIONS(6201), + [anon_sym_LBRACK_COLON] = ACTIONS(6208), + }, + [STATE(3199)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token2] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = ACTIONS(4014), + [anon_sym_LPAREN2] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [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_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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_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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4014), + [anon_sym_decltype] = ACTIONS(4014), + [anon_sym_explicit] = ACTIONS(4014), + [anon_sym_private] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_friend] = ACTIONS(4014), + [anon_sym_public] = ACTIONS(4014), + [anon_sym_protected] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + }, + [STATE(3200)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(3201)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + }, + [STATE(3202)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + }, + [STATE(3203)] = { + [sym_identifier] = ACTIONS(8751), + [anon_sym_LPAREN2] = ACTIONS(8753), + [anon_sym_TILDE] = ACTIONS(8753), + [anon_sym_STAR] = ACTIONS(8753), + [anon_sym_AMP_AMP] = ACTIONS(8753), + [anon_sym_AMP] = ACTIONS(8751), + [anon_sym___extension__] = ACTIONS(8751), + [anon_sym_virtual] = ACTIONS(8751), + [anon_sym_extern] = ACTIONS(8751), + [anon_sym___attribute__] = ACTIONS(8751), + [anon_sym___attribute] = ACTIONS(8751), + [anon_sym_using] = ACTIONS(8751), + [anon_sym_COLON_COLON] = ACTIONS(8753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8753), + [anon_sym___declspec] = ACTIONS(8751), + [anon_sym___based] = ACTIONS(8751), + [anon_sym___cdecl] = ACTIONS(8751), + [anon_sym___clrcall] = ACTIONS(8751), + [anon_sym___stdcall] = ACTIONS(8751), + [anon_sym___fastcall] = ACTIONS(8751), + [anon_sym___thiscall] = ACTIONS(8751), + [anon_sym___vectorcall] = ACTIONS(8751), + [anon_sym_LBRACE] = ACTIONS(8753), + [anon_sym_signed] = ACTIONS(8751), + [anon_sym_unsigned] = ACTIONS(8751), + [anon_sym_long] = ACTIONS(8751), + [anon_sym_short] = ACTIONS(8751), + [anon_sym_LBRACK] = ACTIONS(8751), + [anon_sym_static] = ACTIONS(8751), + [anon_sym_register] = ACTIONS(8751), + [anon_sym_inline] = ACTIONS(8751), + [anon_sym___inline] = ACTIONS(8751), + [anon_sym___inline__] = ACTIONS(8751), + [anon_sym___forceinline] = ACTIONS(8751), + [anon_sym_thread_local] = ACTIONS(8751), + [anon_sym___thread] = ACTIONS(8751), + [anon_sym_const] = ACTIONS(8751), + [anon_sym_constexpr] = ACTIONS(8751), + [anon_sym_volatile] = ACTIONS(8751), + [anon_sym_restrict] = ACTIONS(8751), + [anon_sym___restrict__] = ACTIONS(8751), + [anon_sym__Atomic] = ACTIONS(8751), + [anon_sym__Noreturn] = ACTIONS(8751), + [anon_sym_noreturn] = ACTIONS(8751), + [anon_sym__Nonnull] = ACTIONS(8751), + [anon_sym_mutable] = ACTIONS(8751), + [anon_sym_constinit] = ACTIONS(8751), + [anon_sym_consteval] = ACTIONS(8751), + [anon_sym_alignas] = ACTIONS(8751), + [anon_sym__Alignas] = ACTIONS(8751), + [sym_primitive_type] = ACTIONS(8751), + [anon_sym_enum] = ACTIONS(8751), + [anon_sym_class] = ACTIONS(8751), + [anon_sym_struct] = ACTIONS(8751), + [anon_sym_union] = ACTIONS(8751), + [anon_sym_typename] = ACTIONS(8751), + [anon_sym_DASH_GT] = ACTIONS(8753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8751), + [anon_sym_decltype] = ACTIONS(8751), + [anon_sym_explicit] = ACTIONS(8751), + [anon_sym_template] = ACTIONS(8751), + [anon_sym_operator] = ACTIONS(8751), + [anon_sym_friend] = ACTIONS(8751), + [anon_sym_noexcept] = ACTIONS(8751), + [anon_sym_throw] = ACTIONS(8751), + [anon_sym_concept] = ACTIONS(8751), + [anon_sym_requires] = ACTIONS(8751), + [anon_sym_LBRACK_COLON] = ACTIONS(8753), + }, + [STATE(3204)] = { + [sym_string_literal] = STATE(2486), + [sym_raw_string_literal] = STATE(2486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(8739), + [anon_sym_RPAREN] = ACTIONS(8739), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_DASH] = ACTIONS(8737), + [anon_sym_PLUS] = ACTIONS(8737), + [anon_sym_STAR] = ACTIONS(8737), + [anon_sym_SLASH] = ACTIONS(8737), + [anon_sym_PERCENT] = ACTIONS(8737), + [anon_sym_PIPE_PIPE] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_PIPE] = ACTIONS(8737), + [anon_sym_CARET] = ACTIONS(8737), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_EQ_EQ] = ACTIONS(8739), + [anon_sym_BANG_EQ] = ACTIONS(8739), + [anon_sym_GT] = ACTIONS(8737), + [anon_sym_GT_EQ] = ACTIONS(8739), + [anon_sym_LT_EQ] = ACTIONS(8737), + [anon_sym_LT] = ACTIONS(8737), + [anon_sym_LT_LT] = ACTIONS(8737), + [anon_sym_GT_GT] = ACTIONS(8737), + [anon_sym_SEMI] = ACTIONS(8739), + [anon_sym_COLON] = ACTIONS(8737), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8739), + [anon_sym_RBRACE] = ACTIONS(8739), + [anon_sym_LBRACK] = ACTIONS(8739), + [anon_sym_EQ] = ACTIONS(8737), + [anon_sym_QMARK] = ACTIONS(8739), + [anon_sym_STAR_EQ] = ACTIONS(8739), + [anon_sym_SLASH_EQ] = ACTIONS(8739), + [anon_sym_PERCENT_EQ] = ACTIONS(8739), + [anon_sym_PLUS_EQ] = ACTIONS(8739), + [anon_sym_DASH_EQ] = ACTIONS(8739), + [anon_sym_LT_LT_EQ] = ACTIONS(8739), + [anon_sym_GT_GT_EQ] = ACTIONS(8739), + [anon_sym_AMP_EQ] = ACTIONS(8739), + [anon_sym_CARET_EQ] = ACTIONS(8739), + [anon_sym_PIPE_EQ] = ACTIONS(8739), + [anon_sym_and_eq] = ACTIONS(8737), + [anon_sym_or_eq] = ACTIONS(8737), + [anon_sym_xor_eq] = ACTIONS(8737), + [anon_sym_LT_EQ_GT] = ACTIONS(8739), + [anon_sym_or] = ACTIONS(8737), + [anon_sym_and] = ACTIONS(8737), + [anon_sym_bitor] = ACTIONS(8737), + [anon_sym_xor] = ACTIONS(8737), + [anon_sym_bitand] = ACTIONS(8737), + [anon_sym_not_eq] = ACTIONS(8737), + [anon_sym_DASH_DASH] = ACTIONS(8739), + [anon_sym_PLUS_PLUS] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8737), + [anon_sym_DOT_STAR] = ACTIONS(8739), + [anon_sym_DASH_GT] = ACTIONS(8739), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [anon_sym_COLON_RBRACK] = ACTIONS(8739), + [sym_literal_suffix] = ACTIONS(8737), + }, + [STATE(3205)] = { + [sym_identifier] = ACTIONS(8321), + [aux_sym_preproc_def_token1] = ACTIONS(8321), + [aux_sym_preproc_if_token1] = ACTIONS(8321), + [aux_sym_preproc_if_token2] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), + [sym_preproc_directive] = ACTIONS(8321), + [anon_sym_LPAREN2] = ACTIONS(8323), + [anon_sym_TILDE] = ACTIONS(8323), + [anon_sym_STAR] = ACTIONS(8323), + [anon_sym_AMP_AMP] = ACTIONS(8323), + [anon_sym_AMP] = ACTIONS(8321), + [anon_sym_SEMI] = ACTIONS(8323), + [anon_sym___extension__] = ACTIONS(8321), + [anon_sym_typedef] = ACTIONS(8321), + [anon_sym_virtual] = ACTIONS(8321), + [anon_sym_extern] = ACTIONS(8321), + [anon_sym___attribute__] = ACTIONS(8321), + [anon_sym___attribute] = ACTIONS(8321), + [anon_sym_using] = ACTIONS(8321), + [anon_sym_COLON_COLON] = ACTIONS(8323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), + [anon_sym___declspec] = ACTIONS(8321), + [anon_sym___based] = ACTIONS(8321), + [anon_sym_signed] = ACTIONS(8321), + [anon_sym_unsigned] = ACTIONS(8321), + [anon_sym_long] = ACTIONS(8321), + [anon_sym_short] = ACTIONS(8321), + [anon_sym_LBRACK] = ACTIONS(8321), + [anon_sym_static] = ACTIONS(8321), + [anon_sym_register] = ACTIONS(8321), + [anon_sym_inline] = ACTIONS(8321), + [anon_sym___inline] = ACTIONS(8321), + [anon_sym___inline__] = ACTIONS(8321), + [anon_sym___forceinline] = ACTIONS(8321), + [anon_sym_thread_local] = ACTIONS(8321), + [anon_sym___thread] = ACTIONS(8321), + [anon_sym_const] = ACTIONS(8321), + [anon_sym_constexpr] = ACTIONS(8321), + [anon_sym_volatile] = ACTIONS(8321), + [anon_sym_restrict] = ACTIONS(8321), + [anon_sym___restrict__] = ACTIONS(8321), + [anon_sym__Atomic] = ACTIONS(8321), + [anon_sym__Noreturn] = ACTIONS(8321), + [anon_sym_noreturn] = ACTIONS(8321), + [anon_sym__Nonnull] = ACTIONS(8321), + [anon_sym_mutable] = ACTIONS(8321), + [anon_sym_constinit] = ACTIONS(8321), + [anon_sym_consteval] = ACTIONS(8321), + [anon_sym_alignas] = ACTIONS(8321), + [anon_sym__Alignas] = ACTIONS(8321), + [sym_primitive_type] = ACTIONS(8321), + [anon_sym_enum] = ACTIONS(8321), + [anon_sym_class] = ACTIONS(8321), + [anon_sym_struct] = ACTIONS(8321), + [anon_sym_union] = ACTIONS(8321), + [anon_sym_typename] = ACTIONS(8321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8321), + [anon_sym_decltype] = ACTIONS(8321), + [anon_sym_explicit] = ACTIONS(8321), + [anon_sym_private] = ACTIONS(8321), + [anon_sym_template] = ACTIONS(8321), + [anon_sym_operator] = ACTIONS(8321), + [anon_sym_friend] = ACTIONS(8321), + [anon_sym_public] = ACTIONS(8321), + [anon_sym_protected] = ACTIONS(8321), + [anon_sym_static_assert] = ACTIONS(8321), + [anon_sym_LBRACK_COLON] = ACTIONS(8323), + }, + [STATE(3206)] = { + [sym_identifier] = ACTIONS(8325), + [aux_sym_preproc_def_token1] = ACTIONS(8325), + [aux_sym_preproc_if_token1] = ACTIONS(8325), + [aux_sym_preproc_if_token2] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), + [sym_preproc_directive] = ACTIONS(8325), + [anon_sym_LPAREN2] = ACTIONS(8327), + [anon_sym_TILDE] = ACTIONS(8327), + [anon_sym_STAR] = ACTIONS(8327), + [anon_sym_AMP_AMP] = ACTIONS(8327), + [anon_sym_AMP] = ACTIONS(8325), + [anon_sym_SEMI] = ACTIONS(8327), + [anon_sym___extension__] = ACTIONS(8325), + [anon_sym_typedef] = ACTIONS(8325), + [anon_sym_virtual] = ACTIONS(8325), + [anon_sym_extern] = ACTIONS(8325), + [anon_sym___attribute__] = ACTIONS(8325), + [anon_sym___attribute] = ACTIONS(8325), + [anon_sym_using] = ACTIONS(8325), + [anon_sym_COLON_COLON] = ACTIONS(8327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), + [anon_sym___declspec] = ACTIONS(8325), + [anon_sym___based] = ACTIONS(8325), + [anon_sym_signed] = ACTIONS(8325), + [anon_sym_unsigned] = ACTIONS(8325), + [anon_sym_long] = ACTIONS(8325), + [anon_sym_short] = ACTIONS(8325), + [anon_sym_LBRACK] = ACTIONS(8325), + [anon_sym_static] = ACTIONS(8325), + [anon_sym_register] = ACTIONS(8325), + [anon_sym_inline] = ACTIONS(8325), + [anon_sym___inline] = ACTIONS(8325), + [anon_sym___inline__] = ACTIONS(8325), + [anon_sym___forceinline] = ACTIONS(8325), + [anon_sym_thread_local] = ACTIONS(8325), + [anon_sym___thread] = ACTIONS(8325), + [anon_sym_const] = ACTIONS(8325), + [anon_sym_constexpr] = ACTIONS(8325), + [anon_sym_volatile] = ACTIONS(8325), + [anon_sym_restrict] = ACTIONS(8325), + [anon_sym___restrict__] = ACTIONS(8325), + [anon_sym__Atomic] = ACTIONS(8325), + [anon_sym__Noreturn] = ACTIONS(8325), + [anon_sym_noreturn] = ACTIONS(8325), + [anon_sym__Nonnull] = ACTIONS(8325), + [anon_sym_mutable] = ACTIONS(8325), + [anon_sym_constinit] = ACTIONS(8325), + [anon_sym_consteval] = ACTIONS(8325), + [anon_sym_alignas] = ACTIONS(8325), + [anon_sym__Alignas] = ACTIONS(8325), + [sym_primitive_type] = ACTIONS(8325), + [anon_sym_enum] = ACTIONS(8325), + [anon_sym_class] = ACTIONS(8325), + [anon_sym_struct] = ACTIONS(8325), + [anon_sym_union] = ACTIONS(8325), + [anon_sym_typename] = ACTIONS(8325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8325), + [anon_sym_decltype] = ACTIONS(8325), + [anon_sym_explicit] = ACTIONS(8325), + [anon_sym_private] = ACTIONS(8325), + [anon_sym_template] = ACTIONS(8325), + [anon_sym_operator] = ACTIONS(8325), + [anon_sym_friend] = ACTIONS(8325), + [anon_sym_public] = ACTIONS(8325), + [anon_sym_protected] = ACTIONS(8325), + [anon_sym_static_assert] = ACTIONS(8325), + [anon_sym_LBRACK_COLON] = ACTIONS(8327), + }, + [STATE(3207)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + }, + [STATE(3208)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_friend] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + }, + [STATE(3209)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = ACTIONS(4018), + [anon_sym_LPAREN2] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [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_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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_RBRACE] = 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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4018), + [anon_sym_decltype] = ACTIONS(4018), + [anon_sym_explicit] = ACTIONS(4018), + [anon_sym_private] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_friend] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4018), + [anon_sym_protected] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + }, + [STATE(3210)] = { + [sym_identifier] = ACTIONS(8329), + [aux_sym_preproc_def_token1] = ACTIONS(8329), + [aux_sym_preproc_if_token1] = ACTIONS(8329), + [aux_sym_preproc_if_token2] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), + [sym_preproc_directive] = ACTIONS(8329), + [anon_sym_LPAREN2] = ACTIONS(8331), + [anon_sym_TILDE] = ACTIONS(8331), + [anon_sym_STAR] = ACTIONS(8331), + [anon_sym_AMP_AMP] = ACTIONS(8331), + [anon_sym_AMP] = ACTIONS(8329), + [anon_sym_SEMI] = ACTIONS(8331), + [anon_sym___extension__] = ACTIONS(8329), + [anon_sym_typedef] = ACTIONS(8329), + [anon_sym_virtual] = ACTIONS(8329), + [anon_sym_extern] = ACTIONS(8329), + [anon_sym___attribute__] = ACTIONS(8329), + [anon_sym___attribute] = ACTIONS(8329), + [anon_sym_using] = ACTIONS(8329), + [anon_sym_COLON_COLON] = ACTIONS(8331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), + [anon_sym___declspec] = ACTIONS(8329), + [anon_sym___based] = ACTIONS(8329), + [anon_sym_signed] = ACTIONS(8329), + [anon_sym_unsigned] = ACTIONS(8329), + [anon_sym_long] = ACTIONS(8329), + [anon_sym_short] = ACTIONS(8329), + [anon_sym_LBRACK] = ACTIONS(8329), + [anon_sym_static] = ACTIONS(8329), + [anon_sym_register] = ACTIONS(8329), + [anon_sym_inline] = ACTIONS(8329), + [anon_sym___inline] = ACTIONS(8329), + [anon_sym___inline__] = ACTIONS(8329), + [anon_sym___forceinline] = ACTIONS(8329), + [anon_sym_thread_local] = ACTIONS(8329), + [anon_sym___thread] = ACTIONS(8329), + [anon_sym_const] = ACTIONS(8329), + [anon_sym_constexpr] = ACTIONS(8329), + [anon_sym_volatile] = ACTIONS(8329), + [anon_sym_restrict] = ACTIONS(8329), + [anon_sym___restrict__] = ACTIONS(8329), + [anon_sym__Atomic] = ACTIONS(8329), + [anon_sym__Noreturn] = ACTIONS(8329), + [anon_sym_noreturn] = ACTIONS(8329), + [anon_sym__Nonnull] = ACTIONS(8329), + [anon_sym_mutable] = ACTIONS(8329), + [anon_sym_constinit] = ACTIONS(8329), + [anon_sym_consteval] = ACTIONS(8329), + [anon_sym_alignas] = ACTIONS(8329), + [anon_sym__Alignas] = ACTIONS(8329), + [sym_primitive_type] = ACTIONS(8329), + [anon_sym_enum] = ACTIONS(8329), + [anon_sym_class] = ACTIONS(8329), + [anon_sym_struct] = ACTIONS(8329), + [anon_sym_union] = ACTIONS(8329), + [anon_sym_typename] = ACTIONS(8329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8329), + [anon_sym_decltype] = ACTIONS(8329), + [anon_sym_explicit] = ACTIONS(8329), + [anon_sym_private] = ACTIONS(8329), + [anon_sym_template] = ACTIONS(8329), + [anon_sym_operator] = ACTIONS(8329), + [anon_sym_friend] = ACTIONS(8329), + [anon_sym_public] = ACTIONS(8329), + [anon_sym_protected] = ACTIONS(8329), + [anon_sym_static_assert] = ACTIONS(8329), + [anon_sym_LBRACK_COLON] = ACTIONS(8331), + }, + [STATE(3211)] = { + [sym_identifier] = ACTIONS(4018), + [aux_sym_preproc_def_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token1] = ACTIONS(4018), + [aux_sym_preproc_if_token2] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), + [sym_preproc_directive] = ACTIONS(4018), + [anon_sym_LPAREN2] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [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_typedef] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym___attribute] = ACTIONS(4018), + [anon_sym_using] = 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_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__Nonnull] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4018), + [anon_sym_decltype] = ACTIONS(4018), + [anon_sym_explicit] = ACTIONS(4018), + [anon_sym_private] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_friend] = ACTIONS(4018), + [anon_sym_public] = ACTIONS(4018), + [anon_sym_protected] = ACTIONS(4018), + [anon_sym_static_assert] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4020), + }, + [STATE(3212)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token2] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(3213)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + }, + [STATE(3215)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3216)] = { + [sym_identifier] = ACTIONS(4002), + [aux_sym_preproc_def_token1] = ACTIONS(4002), + [aux_sym_preproc_if_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), + [sym_preproc_directive] = ACTIONS(4002), + [anon_sym_LPAREN2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_AMP_AMP] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4004), + [anon_sym___extension__] = ACTIONS(4002), + [anon_sym_typedef] = ACTIONS(4002), + [anon_sym_virtual] = ACTIONS(4002), + [anon_sym_extern] = ACTIONS(4002), + [anon_sym___attribute__] = ACTIONS(4002), + [anon_sym___attribute] = ACTIONS(4002), + [anon_sym_using] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(4004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), + [anon_sym___declspec] = ACTIONS(4002), + [anon_sym___based] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4002), + [anon_sym_unsigned] = ACTIONS(4002), + [anon_sym_long] = ACTIONS(4002), + [anon_sym_short] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_static] = ACTIONS(4002), + [anon_sym_register] = ACTIONS(4002), + [anon_sym_inline] = ACTIONS(4002), + [anon_sym___inline] = ACTIONS(4002), + [anon_sym___inline__] = ACTIONS(4002), + [anon_sym___forceinline] = ACTIONS(4002), + [anon_sym_thread_local] = ACTIONS(4002), + [anon_sym___thread] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_constexpr] = ACTIONS(4002), + [anon_sym_volatile] = ACTIONS(4002), + [anon_sym_restrict] = ACTIONS(4002), + [anon_sym___restrict__] = ACTIONS(4002), + [anon_sym__Atomic] = ACTIONS(4002), + [anon_sym__Noreturn] = ACTIONS(4002), + [anon_sym_noreturn] = ACTIONS(4002), + [anon_sym__Nonnull] = ACTIONS(4002), + [anon_sym_mutable] = ACTIONS(4002), + [anon_sym_constinit] = ACTIONS(4002), + [anon_sym_consteval] = ACTIONS(4002), + [anon_sym_alignas] = ACTIONS(4002), + [anon_sym__Alignas] = ACTIONS(4002), + [sym_primitive_type] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_class] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_typename] = ACTIONS(4002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4002), + [anon_sym_decltype] = ACTIONS(4002), + [anon_sym_explicit] = ACTIONS(4002), + [anon_sym_private] = ACTIONS(4002), + [anon_sym_template] = ACTIONS(4002), + [anon_sym_operator] = ACTIONS(4002), + [anon_sym_friend] = ACTIONS(4002), + [anon_sym_public] = ACTIONS(4002), + [anon_sym_protected] = ACTIONS(4002), + [anon_sym_static_assert] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4004), + }, + [STATE(3217)] = { + [sym_identifier] = ACTIONS(4014), + [aux_sym_preproc_def_token1] = ACTIONS(4014), + [aux_sym_preproc_if_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), + [sym_preproc_directive] = ACTIONS(4014), + [anon_sym_LPAREN2] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [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_typedef] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym___attribute] = ACTIONS(4014), + [anon_sym_using] = 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_RBRACE] = 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__Nonnull] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym__Alignas] = 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_typename] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4014), + [anon_sym_decltype] = ACTIONS(4014), + [anon_sym_explicit] = ACTIONS(4014), + [anon_sym_private] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_friend] = ACTIONS(4014), + [anon_sym_public] = ACTIONS(4014), + [anon_sym_protected] = ACTIONS(4014), + [anon_sym_static_assert] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4016), + }, + [STATE(3218)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_private] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_friend] = ACTIONS(4090), + [anon_sym_public] = ACTIONS(4090), + [anon_sym_protected] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + }, + [STATE(3219)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_friend] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + }, + [STATE(3220)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token2] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3221)] = { + [sym_identifier] = ACTIONS(4006), + [aux_sym_preproc_def_token1] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), + [sym_preproc_directive] = ACTIONS(4006), + [anon_sym_LPAREN2] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_AMP_AMP] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4008), + [anon_sym___extension__] = ACTIONS(4006), + [anon_sym_typedef] = ACTIONS(4006), + [anon_sym_virtual] = ACTIONS(4006), + [anon_sym_extern] = ACTIONS(4006), + [anon_sym___attribute__] = ACTIONS(4006), + [anon_sym___attribute] = ACTIONS(4006), + [anon_sym_using] = ACTIONS(4006), + [anon_sym_COLON_COLON] = ACTIONS(4008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), + [anon_sym___declspec] = ACTIONS(4006), + [anon_sym___based] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_signed] = ACTIONS(4006), + [anon_sym_unsigned] = ACTIONS(4006), + [anon_sym_long] = ACTIONS(4006), + [anon_sym_short] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(4006), + [anon_sym_static] = ACTIONS(4006), + [anon_sym_register] = ACTIONS(4006), + [anon_sym_inline] = ACTIONS(4006), + [anon_sym___inline] = ACTIONS(4006), + [anon_sym___inline__] = ACTIONS(4006), + [anon_sym___forceinline] = ACTIONS(4006), + [anon_sym_thread_local] = ACTIONS(4006), + [anon_sym___thread] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4006), + [anon_sym_constexpr] = ACTIONS(4006), + [anon_sym_volatile] = ACTIONS(4006), + [anon_sym_restrict] = ACTIONS(4006), + [anon_sym___restrict__] = ACTIONS(4006), + [anon_sym__Atomic] = ACTIONS(4006), + [anon_sym__Noreturn] = ACTIONS(4006), + [anon_sym_noreturn] = ACTIONS(4006), + [anon_sym__Nonnull] = ACTIONS(4006), + [anon_sym_mutable] = ACTIONS(4006), + [anon_sym_constinit] = ACTIONS(4006), + [anon_sym_consteval] = ACTIONS(4006), + [anon_sym_alignas] = ACTIONS(4006), + [anon_sym__Alignas] = ACTIONS(4006), + [sym_primitive_type] = ACTIONS(4006), + [anon_sym_enum] = ACTIONS(4006), + [anon_sym_class] = ACTIONS(4006), + [anon_sym_struct] = ACTIONS(4006), + [anon_sym_union] = ACTIONS(4006), + [anon_sym_typename] = ACTIONS(4006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4006), + [anon_sym_decltype] = ACTIONS(4006), + [anon_sym_explicit] = ACTIONS(4006), + [anon_sym_private] = ACTIONS(4006), + [anon_sym_template] = ACTIONS(4006), + [anon_sym_operator] = ACTIONS(4006), + [anon_sym_friend] = ACTIONS(4006), + [anon_sym_public] = ACTIONS(4006), + [anon_sym_protected] = ACTIONS(4006), + [anon_sym_static_assert] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4008), + }, + [STATE(3222)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token2] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(3223)] = { + [sym_virtual_specifier] = STATE(3223), + [aux_sym__function_postfix_repeat1] = STATE(3223), + [sym_identifier] = ACTIONS(8755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8757), + [anon_sym_COMMA] = ACTIONS(8757), + [anon_sym_RPAREN] = ACTIONS(8757), + [aux_sym_preproc_if_token2] = ACTIONS(8757), + [aux_sym_preproc_else_token1] = ACTIONS(8757), + [aux_sym_preproc_elif_token1] = ACTIONS(8755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8757), + [anon_sym_DASH] = ACTIONS(8755), + [anon_sym_PLUS] = ACTIONS(8755), + [anon_sym_STAR] = ACTIONS(8755), + [anon_sym_SLASH] = ACTIONS(8755), + [anon_sym_PERCENT] = ACTIONS(8755), + [anon_sym_PIPE_PIPE] = ACTIONS(8757), + [anon_sym_AMP_AMP] = ACTIONS(8757), + [anon_sym_PIPE] = ACTIONS(8755), + [anon_sym_CARET] = ACTIONS(8755), + [anon_sym_AMP] = ACTIONS(8755), + [anon_sym_EQ_EQ] = ACTIONS(8757), + [anon_sym_BANG_EQ] = ACTIONS(8757), + [anon_sym_GT] = ACTIONS(8755), + [anon_sym_GT_EQ] = ACTIONS(8757), + [anon_sym_LT_EQ] = ACTIONS(8755), + [anon_sym_LT] = ACTIONS(8755), + [anon_sym_LT_LT] = ACTIONS(8755), + [anon_sym_GT_GT] = ACTIONS(8755), + [anon_sym_SEMI] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8755), + [anon_sym___attribute] = ACTIONS(8755), + [anon_sym_COLON] = ACTIONS(8755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8757), + [anon_sym_RBRACE] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_EQ] = ACTIONS(8755), + [anon_sym_QMARK] = ACTIONS(8757), + [anon_sym_STAR_EQ] = ACTIONS(8757), + [anon_sym_SLASH_EQ] = ACTIONS(8757), + [anon_sym_PERCENT_EQ] = ACTIONS(8757), + [anon_sym_PLUS_EQ] = ACTIONS(8757), + [anon_sym_DASH_EQ] = ACTIONS(8757), + [anon_sym_LT_LT_EQ] = ACTIONS(8757), + [anon_sym_GT_GT_EQ] = ACTIONS(8757), + [anon_sym_AMP_EQ] = ACTIONS(8757), + [anon_sym_CARET_EQ] = ACTIONS(8757), + [anon_sym_PIPE_EQ] = ACTIONS(8757), + [anon_sym_and_eq] = ACTIONS(8755), + [anon_sym_or_eq] = ACTIONS(8755), + [anon_sym_xor_eq] = ACTIONS(8755), + [anon_sym_LT_EQ_GT] = ACTIONS(8757), + [anon_sym_or] = ACTIONS(8755), + [anon_sym_and] = ACTIONS(8755), + [anon_sym_bitor] = ACTIONS(8755), + [anon_sym_xor] = ACTIONS(8755), + [anon_sym_bitand] = ACTIONS(8755), + [anon_sym_not_eq] = ACTIONS(8755), + [anon_sym_DASH_DASH] = ACTIONS(8757), + [anon_sym_PLUS_PLUS] = ACTIONS(8757), + [anon_sym_DOT] = ACTIONS(8755), + [anon_sym_DOT_STAR] = ACTIONS(8757), + [anon_sym_DASH_GT] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8759), + [anon_sym_override] = ACTIONS(8759), + [anon_sym_requires] = ACTIONS(8755), + [anon_sym_COLON_RBRACK] = ACTIONS(8757), + }, + [STATE(3224)] = { + [sym_identifier] = ACTIONS(8458), + [aux_sym_preproc_def_token1] = ACTIONS(8458), + [aux_sym_preproc_if_token1] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), + [sym_preproc_directive] = ACTIONS(8458), + [anon_sym_LPAREN2] = ACTIONS(8460), + [anon_sym_TILDE] = ACTIONS(8460), + [anon_sym_STAR] = ACTIONS(8460), + [anon_sym_AMP_AMP] = ACTIONS(8460), + [anon_sym_AMP] = ACTIONS(8458), + [anon_sym_SEMI] = ACTIONS(8460), + [anon_sym___extension__] = ACTIONS(8458), + [anon_sym_typedef] = ACTIONS(8458), + [anon_sym_virtual] = ACTIONS(8458), + [anon_sym_extern] = ACTIONS(8458), + [anon_sym___attribute__] = ACTIONS(8458), + [anon_sym___attribute] = ACTIONS(8458), + [anon_sym_using] = ACTIONS(8458), + [anon_sym_COLON_COLON] = ACTIONS(8460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), + [anon_sym___declspec] = ACTIONS(8458), + [anon_sym___based] = ACTIONS(8458), + [anon_sym_RBRACE] = ACTIONS(8460), + [anon_sym_signed] = ACTIONS(8458), + [anon_sym_unsigned] = ACTIONS(8458), + [anon_sym_long] = ACTIONS(8458), + [anon_sym_short] = ACTIONS(8458), + [anon_sym_LBRACK] = ACTIONS(8458), + [anon_sym_static] = ACTIONS(8458), + [anon_sym_register] = ACTIONS(8458), + [anon_sym_inline] = ACTIONS(8458), + [anon_sym___inline] = ACTIONS(8458), + [anon_sym___inline__] = ACTIONS(8458), + [anon_sym___forceinline] = ACTIONS(8458), + [anon_sym_thread_local] = ACTIONS(8458), + [anon_sym___thread] = ACTIONS(8458), + [anon_sym_const] = ACTIONS(8458), + [anon_sym_constexpr] = ACTIONS(8458), + [anon_sym_volatile] = ACTIONS(8458), + [anon_sym_restrict] = ACTIONS(8458), + [anon_sym___restrict__] = ACTIONS(8458), + [anon_sym__Atomic] = ACTIONS(8458), + [anon_sym__Noreturn] = ACTIONS(8458), + [anon_sym_noreturn] = ACTIONS(8458), + [anon_sym__Nonnull] = ACTIONS(8458), + [anon_sym_mutable] = ACTIONS(8458), + [anon_sym_constinit] = ACTIONS(8458), + [anon_sym_consteval] = ACTIONS(8458), + [anon_sym_alignas] = ACTIONS(8458), + [anon_sym__Alignas] = ACTIONS(8458), + [sym_primitive_type] = ACTIONS(8458), + [anon_sym_enum] = ACTIONS(8458), + [anon_sym_class] = ACTIONS(8458), + [anon_sym_struct] = ACTIONS(8458), + [anon_sym_union] = ACTIONS(8458), + [anon_sym_typename] = ACTIONS(8458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8458), + [anon_sym_decltype] = ACTIONS(8458), + [anon_sym_explicit] = ACTIONS(8458), + [anon_sym_private] = ACTIONS(8458), + [anon_sym_template] = ACTIONS(8458), + [anon_sym_operator] = ACTIONS(8458), + [anon_sym_friend] = ACTIONS(8458), + [anon_sym_public] = ACTIONS(8458), + [anon_sym_protected] = ACTIONS(8458), + [anon_sym_static_assert] = ACTIONS(8458), + [anon_sym_LBRACK_COLON] = ACTIONS(8460), + }, + [STATE(3225)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_private] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_friend] = ACTIONS(4100), + [anon_sym_public] = ACTIONS(4100), + [anon_sym_protected] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + }, + [STATE(3226)] = { + [sym_identifier] = ACTIONS(8313), + [aux_sym_preproc_def_token1] = ACTIONS(8313), + [aux_sym_preproc_if_token1] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), + [sym_preproc_directive] = ACTIONS(8313), + [anon_sym_LPAREN2] = ACTIONS(8315), + [anon_sym_TILDE] = ACTIONS(8315), + [anon_sym_STAR] = ACTIONS(8315), + [anon_sym_AMP_AMP] = ACTIONS(8315), + [anon_sym_AMP] = ACTIONS(8313), + [anon_sym_SEMI] = ACTIONS(8315), + [anon_sym___extension__] = ACTIONS(8313), + [anon_sym_typedef] = ACTIONS(8313), + [anon_sym_virtual] = ACTIONS(8313), + [anon_sym_extern] = ACTIONS(8313), + [anon_sym___attribute__] = ACTIONS(8313), + [anon_sym___attribute] = ACTIONS(8313), + [anon_sym_using] = ACTIONS(8313), + [anon_sym_COLON_COLON] = ACTIONS(8315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), + [anon_sym___declspec] = ACTIONS(8313), + [anon_sym___based] = ACTIONS(8313), + [anon_sym_RBRACE] = ACTIONS(8315), + [anon_sym_signed] = ACTIONS(8313), + [anon_sym_unsigned] = ACTIONS(8313), + [anon_sym_long] = ACTIONS(8313), + [anon_sym_short] = ACTIONS(8313), + [anon_sym_LBRACK] = ACTIONS(8313), + [anon_sym_static] = ACTIONS(8313), + [anon_sym_register] = ACTIONS(8313), + [anon_sym_inline] = ACTIONS(8313), + [anon_sym___inline] = ACTIONS(8313), + [anon_sym___inline__] = ACTIONS(8313), + [anon_sym___forceinline] = ACTIONS(8313), + [anon_sym_thread_local] = ACTIONS(8313), + [anon_sym___thread] = ACTIONS(8313), + [anon_sym_const] = ACTIONS(8313), + [anon_sym_constexpr] = ACTIONS(8313), + [anon_sym_volatile] = ACTIONS(8313), + [anon_sym_restrict] = ACTIONS(8313), + [anon_sym___restrict__] = ACTIONS(8313), + [anon_sym__Atomic] = ACTIONS(8313), + [anon_sym__Noreturn] = ACTIONS(8313), + [anon_sym_noreturn] = ACTIONS(8313), + [anon_sym__Nonnull] = ACTIONS(8313), + [anon_sym_mutable] = ACTIONS(8313), + [anon_sym_constinit] = ACTIONS(8313), + [anon_sym_consteval] = ACTIONS(8313), + [anon_sym_alignas] = ACTIONS(8313), + [anon_sym__Alignas] = ACTIONS(8313), + [sym_primitive_type] = ACTIONS(8313), + [anon_sym_enum] = ACTIONS(8313), + [anon_sym_class] = ACTIONS(8313), + [anon_sym_struct] = ACTIONS(8313), + [anon_sym_union] = ACTIONS(8313), + [anon_sym_typename] = ACTIONS(8313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8313), + [anon_sym_decltype] = ACTIONS(8313), + [anon_sym_explicit] = ACTIONS(8313), + [anon_sym_private] = ACTIONS(8313), + [anon_sym_template] = ACTIONS(8313), + [anon_sym_operator] = ACTIONS(8313), + [anon_sym_friend] = ACTIONS(8313), + [anon_sym_public] = ACTIONS(8313), + [anon_sym_protected] = ACTIONS(8313), + [anon_sym_static_assert] = ACTIONS(8313), + [anon_sym_LBRACK_COLON] = ACTIONS(8315), + }, + [STATE(3227)] = { + [sym_identifier] = ACTIONS(8289), + [aux_sym_preproc_def_token1] = ACTIONS(8289), + [aux_sym_preproc_if_token1] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), + [sym_preproc_directive] = ACTIONS(8289), + [anon_sym_LPAREN2] = ACTIONS(8291), + [anon_sym_TILDE] = ACTIONS(8291), + [anon_sym_STAR] = ACTIONS(8291), + [anon_sym_AMP_AMP] = ACTIONS(8291), + [anon_sym_AMP] = ACTIONS(8289), + [anon_sym_SEMI] = ACTIONS(8291), + [anon_sym___extension__] = ACTIONS(8289), + [anon_sym_typedef] = ACTIONS(8289), + [anon_sym_virtual] = ACTIONS(8289), + [anon_sym_extern] = ACTIONS(8289), + [anon_sym___attribute__] = ACTIONS(8289), + [anon_sym___attribute] = ACTIONS(8289), + [anon_sym_using] = ACTIONS(8289), + [anon_sym_COLON_COLON] = ACTIONS(8291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), + [anon_sym___declspec] = ACTIONS(8289), + [anon_sym___based] = ACTIONS(8289), + [anon_sym_RBRACE] = ACTIONS(8291), + [anon_sym_signed] = ACTIONS(8289), + [anon_sym_unsigned] = ACTIONS(8289), + [anon_sym_long] = ACTIONS(8289), + [anon_sym_short] = ACTIONS(8289), + [anon_sym_LBRACK] = ACTIONS(8289), + [anon_sym_static] = ACTIONS(8289), + [anon_sym_register] = ACTIONS(8289), + [anon_sym_inline] = ACTIONS(8289), + [anon_sym___inline] = ACTIONS(8289), + [anon_sym___inline__] = ACTIONS(8289), + [anon_sym___forceinline] = ACTIONS(8289), + [anon_sym_thread_local] = ACTIONS(8289), + [anon_sym___thread] = ACTIONS(8289), + [anon_sym_const] = ACTIONS(8289), + [anon_sym_constexpr] = ACTIONS(8289), + [anon_sym_volatile] = ACTIONS(8289), + [anon_sym_restrict] = ACTIONS(8289), + [anon_sym___restrict__] = ACTIONS(8289), + [anon_sym__Atomic] = ACTIONS(8289), + [anon_sym__Noreturn] = ACTIONS(8289), + [anon_sym_noreturn] = ACTIONS(8289), + [anon_sym__Nonnull] = ACTIONS(8289), + [anon_sym_mutable] = ACTIONS(8289), + [anon_sym_constinit] = ACTIONS(8289), + [anon_sym_consteval] = ACTIONS(8289), + [anon_sym_alignas] = ACTIONS(8289), + [anon_sym__Alignas] = ACTIONS(8289), + [sym_primitive_type] = ACTIONS(8289), + [anon_sym_enum] = ACTIONS(8289), + [anon_sym_class] = ACTIONS(8289), + [anon_sym_struct] = ACTIONS(8289), + [anon_sym_union] = ACTIONS(8289), + [anon_sym_typename] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8289), + [anon_sym_decltype] = ACTIONS(8289), + [anon_sym_explicit] = ACTIONS(8289), + [anon_sym_private] = ACTIONS(8289), + [anon_sym_template] = ACTIONS(8289), + [anon_sym_operator] = ACTIONS(8289), + [anon_sym_friend] = ACTIONS(8289), + [anon_sym_public] = ACTIONS(8289), + [anon_sym_protected] = ACTIONS(8289), + [anon_sym_static_assert] = ACTIONS(8289), + [anon_sym_LBRACK_COLON] = ACTIONS(8291), + }, + [STATE(3228)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(3229)] = { + [sym_identifier] = ACTIONS(4022), + [aux_sym_preproc_def_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token1] = ACTIONS(4022), + [aux_sym_preproc_if_token2] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), + [sym_preproc_directive] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_AMP_AMP] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4024), + [anon_sym___extension__] = ACTIONS(4022), + [anon_sym_typedef] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4022), + [anon_sym_extern] = ACTIONS(4022), + [anon_sym___attribute__] = ACTIONS(4022), + [anon_sym___attribute] = ACTIONS(4022), + [anon_sym_using] = ACTIONS(4022), + [anon_sym_COLON_COLON] = ACTIONS(4024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), + [anon_sym___declspec] = ACTIONS(4022), + [anon_sym___based] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4022), + [anon_sym_unsigned] = ACTIONS(4022), + [anon_sym_long] = ACTIONS(4022), + [anon_sym_short] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4022), + [anon_sym_register] = ACTIONS(4022), + [anon_sym_inline] = ACTIONS(4022), + [anon_sym___inline] = ACTIONS(4022), + [anon_sym___inline__] = ACTIONS(4022), + [anon_sym___forceinline] = ACTIONS(4022), + [anon_sym_thread_local] = ACTIONS(4022), + [anon_sym___thread] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4022), + [anon_sym_constexpr] = ACTIONS(4022), + [anon_sym_volatile] = ACTIONS(4022), + [anon_sym_restrict] = ACTIONS(4022), + [anon_sym___restrict__] = ACTIONS(4022), + [anon_sym__Atomic] = ACTIONS(4022), + [anon_sym__Noreturn] = ACTIONS(4022), + [anon_sym_noreturn] = ACTIONS(4022), + [anon_sym__Nonnull] = ACTIONS(4022), + [anon_sym_mutable] = ACTIONS(4022), + [anon_sym_constinit] = ACTIONS(4022), + [anon_sym_consteval] = ACTIONS(4022), + [anon_sym_alignas] = ACTIONS(4022), + [anon_sym__Alignas] = ACTIONS(4022), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4022), + [anon_sym_class] = ACTIONS(4022), + [anon_sym_struct] = ACTIONS(4022), + [anon_sym_union] = ACTIONS(4022), + [anon_sym_typename] = ACTIONS(4022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4022), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_explicit] = ACTIONS(4022), + [anon_sym_private] = ACTIONS(4022), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4022), + [anon_sym_friend] = ACTIONS(4022), + [anon_sym_public] = ACTIONS(4022), + [anon_sym_protected] = ACTIONS(4022), + [anon_sym_static_assert] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4024), + }, + [STATE(3230)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token2] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_private] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_friend] = ACTIONS(4026), + [anon_sym_public] = ACTIONS(4026), + [anon_sym_protected] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + }, + [STATE(3231)] = { + [sym_identifier] = ACTIONS(8378), + [aux_sym_preproc_def_token1] = ACTIONS(8378), + [aux_sym_preproc_if_token1] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), + [sym_preproc_directive] = ACTIONS(8378), + [anon_sym_LPAREN2] = ACTIONS(8380), + [anon_sym_TILDE] = ACTIONS(8380), + [anon_sym_STAR] = ACTIONS(8380), + [anon_sym_AMP_AMP] = ACTIONS(8380), + [anon_sym_AMP] = ACTIONS(8378), + [anon_sym_SEMI] = ACTIONS(8380), + [anon_sym___extension__] = ACTIONS(8378), + [anon_sym_typedef] = ACTIONS(8378), + [anon_sym_virtual] = ACTIONS(8378), + [anon_sym_extern] = ACTIONS(8378), + [anon_sym___attribute__] = ACTIONS(8378), + [anon_sym___attribute] = ACTIONS(8378), + [anon_sym_using] = ACTIONS(8378), + [anon_sym_COLON_COLON] = ACTIONS(8380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), + [anon_sym___declspec] = ACTIONS(8378), + [anon_sym___based] = ACTIONS(8378), + [anon_sym_RBRACE] = ACTIONS(8380), + [anon_sym_signed] = ACTIONS(8378), + [anon_sym_unsigned] = ACTIONS(8378), + [anon_sym_long] = ACTIONS(8378), + [anon_sym_short] = ACTIONS(8378), + [anon_sym_LBRACK] = ACTIONS(8378), + [anon_sym_static] = ACTIONS(8378), + [anon_sym_register] = ACTIONS(8378), + [anon_sym_inline] = ACTIONS(8378), + [anon_sym___inline] = ACTIONS(8378), + [anon_sym___inline__] = ACTIONS(8378), + [anon_sym___forceinline] = ACTIONS(8378), + [anon_sym_thread_local] = ACTIONS(8378), + [anon_sym___thread] = ACTIONS(8378), + [anon_sym_const] = ACTIONS(8378), + [anon_sym_constexpr] = ACTIONS(8378), + [anon_sym_volatile] = ACTIONS(8378), + [anon_sym_restrict] = ACTIONS(8378), + [anon_sym___restrict__] = ACTIONS(8378), + [anon_sym__Atomic] = ACTIONS(8378), + [anon_sym__Noreturn] = ACTIONS(8378), + [anon_sym_noreturn] = ACTIONS(8378), + [anon_sym__Nonnull] = ACTIONS(8378), + [anon_sym_mutable] = ACTIONS(8378), + [anon_sym_constinit] = ACTIONS(8378), + [anon_sym_consteval] = ACTIONS(8378), + [anon_sym_alignas] = ACTIONS(8378), + [anon_sym__Alignas] = ACTIONS(8378), + [sym_primitive_type] = ACTIONS(8378), + [anon_sym_enum] = ACTIONS(8378), + [anon_sym_class] = ACTIONS(8378), + [anon_sym_struct] = ACTIONS(8378), + [anon_sym_union] = ACTIONS(8378), + [anon_sym_typename] = ACTIONS(8378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8378), + [anon_sym_decltype] = ACTIONS(8378), + [anon_sym_explicit] = ACTIONS(8378), + [anon_sym_private] = ACTIONS(8378), + [anon_sym_template] = ACTIONS(8378), + [anon_sym_operator] = ACTIONS(8378), + [anon_sym_friend] = ACTIONS(8378), + [anon_sym_public] = ACTIONS(8378), + [anon_sym_protected] = ACTIONS(8378), + [anon_sym_static_assert] = ACTIONS(8378), + [anon_sym_LBRACK_COLON] = ACTIONS(8380), + }, + [STATE(3232)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(3233)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4514), + [sym__function_postfix] = STATE(5603), + [sym_trailing_return_type] = STATE(4604), + [sym_requires_clause] = STATE(5603), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8089), + [anon_sym_and] = ACTIONS(8089), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8089), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8762), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8765), + [anon_sym_override] = ACTIONS(8765), + [anon_sym_requires] = ACTIONS(8768), + [anon_sym_DASH_GT_STAR] = ACTIONS(8089), + }, + [STATE(3234)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_RBRACE] = ACTIONS(8398), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(3235)] = { + [sym_template_argument_list] = STATE(3587), + [sym_identifier] = ACTIONS(6746), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(8749), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_using] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym___cdecl] = ACTIONS(6746), + [anon_sym___clrcall] = ACTIONS(6746), + [anon_sym___stdcall] = ACTIONS(6746), + [anon_sym___fastcall] = ACTIONS(6746), + [anon_sym___thiscall] = ACTIONS(6746), + [anon_sym___vectorcall] = ACTIONS(6746), + [anon_sym_signed] = ACTIONS(6746), + [anon_sym_unsigned] = ACTIONS(6746), + [anon_sym_long] = ACTIONS(6746), + [anon_sym_short] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [sym_primitive_type] = ACTIONS(6746), + [anon_sym_enum] = ACTIONS(6746), + [anon_sym_class] = ACTIONS(6746), + [anon_sym_struct] = ACTIONS(6746), + [anon_sym_union] = ACTIONS(6746), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_typename] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6746), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_explicit] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_friend] = ACTIONS(6746), + [anon_sym_concept] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(3236)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token2] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_friend] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + }, + [STATE(3237)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + }, + [STATE(3238)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + }, + [STATE(3239)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [aux_sym_preproc_if_token2] = ACTIONS(6629), + [aux_sym_preproc_else_token1] = ACTIONS(6629), + [aux_sym_preproc_elif_token1] = ACTIONS(6627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6629), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6629), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6629), + [anon_sym_GT_GT] = ACTIONS(6629), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(8771), + [anon_sym_unsigned] = ACTIONS(8771), + [anon_sym_long] = ACTIONS(8771), + [anon_sym_short] = ACTIONS(8771), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_RBRACK] = ACTIONS(6629), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(3240)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(3241)] = { + [sym_identifier] = ACTIONS(3922), + [aux_sym_preproc_def_token1] = ACTIONS(3922), + [aux_sym_preproc_if_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), + [sym_preproc_directive] = ACTIONS(3922), + [anon_sym_LPAREN2] = ACTIONS(3924), + [anon_sym_TILDE] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AMP_AMP] = ACTIONS(3924), + [anon_sym_AMP] = ACTIONS(3922), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym___extension__] = ACTIONS(3922), + [anon_sym_typedef] = ACTIONS(3922), + [anon_sym_virtual] = ACTIONS(3922), + [anon_sym_extern] = ACTIONS(3922), + [anon_sym___attribute__] = ACTIONS(3922), + [anon_sym___attribute] = ACTIONS(3922), + [anon_sym_using] = ACTIONS(3922), + [anon_sym_COLON_COLON] = ACTIONS(3924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), + [anon_sym___declspec] = ACTIONS(3922), + [anon_sym___based] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_signed] = ACTIONS(3922), + [anon_sym_unsigned] = ACTIONS(3922), + [anon_sym_long] = ACTIONS(3922), + [anon_sym_short] = ACTIONS(3922), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_static] = ACTIONS(3922), + [anon_sym_register] = ACTIONS(3922), + [anon_sym_inline] = ACTIONS(3922), + [anon_sym___inline] = ACTIONS(3922), + [anon_sym___inline__] = ACTIONS(3922), + [anon_sym___forceinline] = ACTIONS(3922), + [anon_sym_thread_local] = ACTIONS(3922), + [anon_sym___thread] = ACTIONS(3922), + [anon_sym_const] = ACTIONS(3922), + [anon_sym_constexpr] = ACTIONS(3922), + [anon_sym_volatile] = ACTIONS(3922), + [anon_sym_restrict] = ACTIONS(3922), + [anon_sym___restrict__] = ACTIONS(3922), + [anon_sym__Atomic] = ACTIONS(3922), + [anon_sym__Noreturn] = ACTIONS(3922), + [anon_sym_noreturn] = ACTIONS(3922), + [anon_sym__Nonnull] = ACTIONS(3922), + [anon_sym_mutable] = ACTIONS(3922), + [anon_sym_constinit] = ACTIONS(3922), + [anon_sym_consteval] = ACTIONS(3922), + [anon_sym_alignas] = ACTIONS(3922), + [anon_sym__Alignas] = ACTIONS(3922), + [sym_primitive_type] = ACTIONS(3922), + [anon_sym_enum] = ACTIONS(3922), + [anon_sym_class] = ACTIONS(3922), + [anon_sym_struct] = ACTIONS(3922), + [anon_sym_union] = ACTIONS(3922), + [anon_sym_typename] = ACTIONS(3922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3922), + [anon_sym_decltype] = ACTIONS(3922), + [anon_sym_explicit] = ACTIONS(3922), + [anon_sym_private] = ACTIONS(3922), + [anon_sym_template] = ACTIONS(3922), + [anon_sym_operator] = ACTIONS(3922), + [anon_sym_friend] = ACTIONS(3922), + [anon_sym_public] = ACTIONS(3922), + [anon_sym_protected] = ACTIONS(3922), + [anon_sym_static_assert] = ACTIONS(3922), + [anon_sym_LBRACK_COLON] = ACTIONS(3924), + }, + [STATE(3242)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(3243)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_private] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_friend] = ACTIONS(4096), + [anon_sym_public] = ACTIONS(4096), + [anon_sym_protected] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + }, + [STATE(3244)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_private] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_friend] = ACTIONS(4042), + [anon_sym_public] = ACTIONS(4042), + [anon_sym_protected] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + }, + [STATE(3245)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token2] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_private] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_friend] = ACTIONS(4107), + [anon_sym_public] = ACTIONS(4107), + [anon_sym_protected] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + }, + [STATE(3246)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token2] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + }, + [STATE(3247)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token2] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_private] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_friend] = ACTIONS(4100), + [anon_sym_public] = ACTIONS(4100), + [anon_sym_protected] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + }, + [STATE(3248)] = { + [sym_virtual_specifier] = STATE(3223), + [aux_sym__function_postfix_repeat1] = STATE(3223), + [sym_identifier] = ACTIONS(8774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8776), + [anon_sym_RPAREN] = ACTIONS(8776), + [aux_sym_preproc_if_token2] = ACTIONS(8776), + [aux_sym_preproc_else_token1] = ACTIONS(8776), + [aux_sym_preproc_elif_token1] = ACTIONS(8774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8776), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8776), + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_DASH] = ACTIONS(8774), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_STAR] = ACTIONS(8774), + [anon_sym_SLASH] = ACTIONS(8774), + [anon_sym_PERCENT] = ACTIONS(8774), + [anon_sym_PIPE_PIPE] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_PIPE] = ACTIONS(8774), + [anon_sym_CARET] = ACTIONS(8774), + [anon_sym_AMP] = ACTIONS(8774), + [anon_sym_EQ_EQ] = ACTIONS(8776), + [anon_sym_BANG_EQ] = ACTIONS(8776), + [anon_sym_GT] = ACTIONS(8774), + [anon_sym_GT_EQ] = ACTIONS(8776), + [anon_sym_LT_EQ] = ACTIONS(8774), + [anon_sym_LT] = ACTIONS(8774), + [anon_sym_LT_LT] = ACTIONS(8774), + [anon_sym_GT_GT] = ACTIONS(8774), + [anon_sym_SEMI] = ACTIONS(8776), + [anon_sym___attribute__] = ACTIONS(8774), + [anon_sym___attribute] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8776), + [anon_sym_RBRACE] = ACTIONS(8776), + [anon_sym_LBRACK] = ACTIONS(8776), + [anon_sym_EQ] = ACTIONS(8774), + [anon_sym_QMARK] = ACTIONS(8776), + [anon_sym_STAR_EQ] = ACTIONS(8776), + [anon_sym_SLASH_EQ] = ACTIONS(8776), + [anon_sym_PERCENT_EQ] = ACTIONS(8776), + [anon_sym_PLUS_EQ] = ACTIONS(8776), + [anon_sym_DASH_EQ] = ACTIONS(8776), + [anon_sym_LT_LT_EQ] = ACTIONS(8776), + [anon_sym_GT_GT_EQ] = ACTIONS(8776), + [anon_sym_AMP_EQ] = ACTIONS(8776), + [anon_sym_CARET_EQ] = ACTIONS(8776), + [anon_sym_PIPE_EQ] = ACTIONS(8776), + [anon_sym_and_eq] = ACTIONS(8774), + [anon_sym_or_eq] = ACTIONS(8774), + [anon_sym_xor_eq] = ACTIONS(8774), + [anon_sym_LT_EQ_GT] = ACTIONS(8776), + [anon_sym_or] = ACTIONS(8774), + [anon_sym_and] = ACTIONS(8774), + [anon_sym_bitor] = ACTIONS(8774), + [anon_sym_xor] = ACTIONS(8774), + [anon_sym_bitand] = ACTIONS(8774), + [anon_sym_not_eq] = ACTIONS(8774), + [anon_sym_DASH_DASH] = ACTIONS(8776), + [anon_sym_PLUS_PLUS] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8774), + [anon_sym_DOT_STAR] = ACTIONS(8776), + [anon_sym_DASH_GT] = ACTIONS(8776), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6134), + [anon_sym_override] = ACTIONS(6134), + [anon_sym_requires] = ACTIONS(8774), + [anon_sym_COLON_RBRACK] = ACTIONS(8776), + }, + [STATE(3249)] = { + [sym_identifier] = ACTIONS(3998), + [aux_sym_preproc_def_token1] = ACTIONS(3998), + [aux_sym_preproc_if_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), + [sym_preproc_directive] = ACTIONS(3998), + [anon_sym_LPAREN2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_AMP_AMP] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_typedef] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3998), + [anon_sym_extern] = ACTIONS(3998), + [anon_sym___attribute__] = ACTIONS(3998), + [anon_sym___attribute] = ACTIONS(3998), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), + [anon_sym___declspec] = ACTIONS(3998), + [anon_sym___based] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(3998), + [anon_sym_unsigned] = ACTIONS(3998), + [anon_sym_long] = ACTIONS(3998), + [anon_sym_short] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3998), + [anon_sym_static] = ACTIONS(3998), + [anon_sym_register] = ACTIONS(3998), + [anon_sym_inline] = ACTIONS(3998), + [anon_sym___inline] = ACTIONS(3998), + [anon_sym___inline__] = ACTIONS(3998), + [anon_sym___forceinline] = ACTIONS(3998), + [anon_sym_thread_local] = ACTIONS(3998), + [anon_sym___thread] = ACTIONS(3998), + [anon_sym_const] = ACTIONS(3998), + [anon_sym_constexpr] = ACTIONS(3998), + [anon_sym_volatile] = ACTIONS(3998), + [anon_sym_restrict] = ACTIONS(3998), + [anon_sym___restrict__] = ACTIONS(3998), + [anon_sym__Atomic] = ACTIONS(3998), + [anon_sym__Noreturn] = ACTIONS(3998), + [anon_sym_noreturn] = ACTIONS(3998), + [anon_sym__Nonnull] = ACTIONS(3998), + [anon_sym_mutable] = ACTIONS(3998), + [anon_sym_constinit] = ACTIONS(3998), + [anon_sym_consteval] = ACTIONS(3998), + [anon_sym_alignas] = ACTIONS(3998), + [anon_sym__Alignas] = ACTIONS(3998), + [sym_primitive_type] = ACTIONS(3998), + [anon_sym_enum] = ACTIONS(3998), + [anon_sym_class] = ACTIONS(3998), + [anon_sym_struct] = ACTIONS(3998), + [anon_sym_union] = ACTIONS(3998), + [anon_sym_typename] = ACTIONS(3998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3998), + [anon_sym_decltype] = ACTIONS(3998), + [anon_sym_explicit] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_template] = ACTIONS(3998), + [anon_sym_operator] = ACTIONS(3998), + [anon_sym_friend] = ACTIONS(3998), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_static_assert] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(4000), + }, + [STATE(3250)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4448), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4529), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(3251)] = { + [sym_template_argument_list] = STATE(2570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6755), + [anon_sym_CARET] = ACTIONS(6755), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6755), + [anon_sym_GT_EQ] = ACTIONS(6755), + [anon_sym_LT_EQ] = ACTIONS(6755), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(6755), + [anon_sym_GT_GT] = ACTIONS(6755), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6755), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6755), + [anon_sym_and] = ACTIONS(6755), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6755), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_DOT] = ACTIONS(6755), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6748), + }, + [STATE(3252)] = { + [sym_identifier] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8780), + [anon_sym_TILDE] = ACTIONS(8780), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_AMP_AMP] = ACTIONS(8780), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym___extension__] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym___attribute__] = ACTIONS(8778), + [anon_sym___attribute] = ACTIONS(8778), + [anon_sym_using] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), + [anon_sym___declspec] = ACTIONS(8778), + [anon_sym___based] = ACTIONS(8778), + [anon_sym___cdecl] = ACTIONS(8778), + [anon_sym___clrcall] = ACTIONS(8778), + [anon_sym___stdcall] = ACTIONS(8778), + [anon_sym___fastcall] = ACTIONS(8778), + [anon_sym___thiscall] = ACTIONS(8778), + [anon_sym___vectorcall] = ACTIONS(8778), + [anon_sym_LBRACE] = ACTIONS(8780), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym_inline] = ACTIONS(8778), + [anon_sym___inline] = ACTIONS(8778), + [anon_sym___inline__] = ACTIONS(8778), + [anon_sym___forceinline] = ACTIONS(8778), + [anon_sym_thread_local] = ACTIONS(8778), + [anon_sym___thread] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_restrict] = ACTIONS(8778), + [anon_sym___restrict__] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym__Noreturn] = ACTIONS(8778), + [anon_sym_noreturn] = ACTIONS(8778), + [anon_sym__Nonnull] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_constinit] = ACTIONS(8778), + [anon_sym_consteval] = ACTIONS(8778), + [anon_sym_alignas] = ACTIONS(8778), + [anon_sym__Alignas] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_struct] = ACTIONS(8778), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [anon_sym_DASH_GT] = ACTIONS(8780), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8778), + [anon_sym_decltype] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_operator] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_noexcept] = ACTIONS(8778), + [anon_sym_throw] = ACTIONS(8778), + [anon_sym_concept] = ACTIONS(8778), + [anon_sym_requires] = ACTIONS(8778), + [anon_sym_LBRACK_COLON] = ACTIONS(8780), + }, + [STATE(3253)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + }, + [STATE(3254)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_friend] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + }, + [STATE(3255)] = { + [sym_identifier] = ACTIONS(8386), + [aux_sym_preproc_def_token1] = ACTIONS(8386), + [aux_sym_preproc_if_token1] = ACTIONS(8386), + [aux_sym_preproc_if_token2] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), + [sym_preproc_directive] = ACTIONS(8386), + [anon_sym_LPAREN2] = ACTIONS(8388), + [anon_sym_TILDE] = ACTIONS(8388), + [anon_sym_STAR] = ACTIONS(8388), + [anon_sym_AMP_AMP] = ACTIONS(8388), + [anon_sym_AMP] = ACTIONS(8386), + [anon_sym_SEMI] = ACTIONS(8388), + [anon_sym___extension__] = ACTIONS(8386), + [anon_sym_typedef] = ACTIONS(8386), + [anon_sym_virtual] = ACTIONS(8386), + [anon_sym_extern] = ACTIONS(8386), + [anon_sym___attribute__] = ACTIONS(8386), + [anon_sym___attribute] = ACTIONS(8386), + [anon_sym_using] = ACTIONS(8386), + [anon_sym_COLON_COLON] = ACTIONS(8388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), + [anon_sym___declspec] = ACTIONS(8386), + [anon_sym___based] = ACTIONS(8386), + [anon_sym_signed] = ACTIONS(8386), + [anon_sym_unsigned] = ACTIONS(8386), + [anon_sym_long] = ACTIONS(8386), + [anon_sym_short] = ACTIONS(8386), + [anon_sym_LBRACK] = ACTIONS(8386), + [anon_sym_static] = ACTIONS(8386), + [anon_sym_register] = ACTIONS(8386), + [anon_sym_inline] = ACTIONS(8386), + [anon_sym___inline] = ACTIONS(8386), + [anon_sym___inline__] = ACTIONS(8386), + [anon_sym___forceinline] = ACTIONS(8386), + [anon_sym_thread_local] = ACTIONS(8386), + [anon_sym___thread] = ACTIONS(8386), + [anon_sym_const] = ACTIONS(8386), + [anon_sym_constexpr] = ACTIONS(8386), + [anon_sym_volatile] = ACTIONS(8386), + [anon_sym_restrict] = ACTIONS(8386), + [anon_sym___restrict__] = ACTIONS(8386), + [anon_sym__Atomic] = ACTIONS(8386), + [anon_sym__Noreturn] = ACTIONS(8386), + [anon_sym_noreturn] = ACTIONS(8386), + [anon_sym__Nonnull] = ACTIONS(8386), + [anon_sym_mutable] = ACTIONS(8386), + [anon_sym_constinit] = ACTIONS(8386), + [anon_sym_consteval] = ACTIONS(8386), + [anon_sym_alignas] = ACTIONS(8386), + [anon_sym__Alignas] = ACTIONS(8386), + [sym_primitive_type] = ACTIONS(8386), + [anon_sym_enum] = ACTIONS(8386), + [anon_sym_class] = ACTIONS(8386), + [anon_sym_struct] = ACTIONS(8386), + [anon_sym_union] = ACTIONS(8386), + [anon_sym_typename] = ACTIONS(8386), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8386), + [anon_sym_decltype] = ACTIONS(8386), + [anon_sym_explicit] = ACTIONS(8386), + [anon_sym_private] = ACTIONS(8386), + [anon_sym_template] = ACTIONS(8386), + [anon_sym_operator] = ACTIONS(8386), + [anon_sym_friend] = ACTIONS(8386), + [anon_sym_public] = ACTIONS(8386), + [anon_sym_protected] = ACTIONS(8386), + [anon_sym_static_assert] = ACTIONS(8386), + [anon_sym_LBRACK_COLON] = ACTIONS(8388), + }, + [STATE(3256)] = { + [sym_identifier] = ACTIONS(4062), + [aux_sym_preproc_def_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token1] = ACTIONS(4062), + [aux_sym_preproc_if_token2] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), + [sym_preproc_directive] = ACTIONS(4062), + [anon_sym_LPAREN2] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4062), + [anon_sym_typedef] = ACTIONS(4062), + [anon_sym_virtual] = ACTIONS(4062), + [anon_sym_extern] = ACTIONS(4062), + [anon_sym___attribute__] = ACTIONS(4062), + [anon_sym___attribute] = ACTIONS(4062), + [anon_sym_using] = ACTIONS(4062), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), + [anon_sym___declspec] = ACTIONS(4062), + [anon_sym___based] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4062), + [anon_sym_unsigned] = ACTIONS(4062), + [anon_sym_long] = ACTIONS(4062), + [anon_sym_short] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(4062), + [anon_sym_static] = ACTIONS(4062), + [anon_sym_register] = ACTIONS(4062), + [anon_sym_inline] = ACTIONS(4062), + [anon_sym___inline] = ACTIONS(4062), + [anon_sym___inline__] = ACTIONS(4062), + [anon_sym___forceinline] = ACTIONS(4062), + [anon_sym_thread_local] = ACTIONS(4062), + [anon_sym___thread] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_constexpr] = ACTIONS(4062), + [anon_sym_volatile] = ACTIONS(4062), + [anon_sym_restrict] = ACTIONS(4062), + [anon_sym___restrict__] = ACTIONS(4062), + [anon_sym__Atomic] = ACTIONS(4062), + [anon_sym__Noreturn] = ACTIONS(4062), + [anon_sym_noreturn] = ACTIONS(4062), + [anon_sym__Nonnull] = ACTIONS(4062), + [anon_sym_mutable] = ACTIONS(4062), + [anon_sym_constinit] = ACTIONS(4062), + [anon_sym_consteval] = ACTIONS(4062), + [anon_sym_alignas] = ACTIONS(4062), + [anon_sym__Alignas] = ACTIONS(4062), + [sym_primitive_type] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_class] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_typename] = ACTIONS(4062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4062), + [anon_sym_decltype] = ACTIONS(4062), + [anon_sym_explicit] = ACTIONS(4062), + [anon_sym_private] = ACTIONS(4062), + [anon_sym_template] = ACTIONS(4062), + [anon_sym_operator] = ACTIONS(4062), + [anon_sym_friend] = ACTIONS(4062), + [anon_sym_public] = ACTIONS(4062), + [anon_sym_protected] = ACTIONS(4062), + [anon_sym_static_assert] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4064), + }, + [STATE(3257)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token2] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_private] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_friend] = ACTIONS(4066), + [anon_sym_public] = ACTIONS(4066), + [anon_sym_protected] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + }, + [STATE(3258)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(3259)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4511), + [sym__function_postfix] = STATE(5590), + [sym_trailing_return_type] = STATE(4551), + [sym_requires_clause] = STATE(5590), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8210), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + }, + [STATE(3260)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [anon_sym_COLON_RBRACK] = ACTIONS(5253), + }, + [STATE(3261)] = { + [sym_identifier] = ACTIONS(4070), + [aux_sym_preproc_def_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token1] = ACTIONS(4070), + [aux_sym_preproc_if_token2] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), + [sym_preproc_directive] = ACTIONS(4070), + [anon_sym_LPAREN2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym___extension__] = ACTIONS(4070), + [anon_sym_typedef] = ACTIONS(4070), + [anon_sym_virtual] = ACTIONS(4070), + [anon_sym_extern] = ACTIONS(4070), + [anon_sym___attribute__] = ACTIONS(4070), + [anon_sym___attribute] = ACTIONS(4070), + [anon_sym_using] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), + [anon_sym___declspec] = ACTIONS(4070), + [anon_sym___based] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4070), + [anon_sym_unsigned] = ACTIONS(4070), + [anon_sym_long] = ACTIONS(4070), + [anon_sym_short] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4070), + [anon_sym_static] = ACTIONS(4070), + [anon_sym_register] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym___inline] = ACTIONS(4070), + [anon_sym___inline__] = ACTIONS(4070), + [anon_sym___forceinline] = ACTIONS(4070), + [anon_sym_thread_local] = ACTIONS(4070), + [anon_sym___thread] = ACTIONS(4070), + [anon_sym_const] = ACTIONS(4070), + [anon_sym_constexpr] = ACTIONS(4070), + [anon_sym_volatile] = ACTIONS(4070), + [anon_sym_restrict] = ACTIONS(4070), + [anon_sym___restrict__] = ACTIONS(4070), + [anon_sym__Atomic] = ACTIONS(4070), + [anon_sym__Noreturn] = ACTIONS(4070), + [anon_sym_noreturn] = ACTIONS(4070), + [anon_sym__Nonnull] = ACTIONS(4070), + [anon_sym_mutable] = ACTIONS(4070), + [anon_sym_constinit] = ACTIONS(4070), + [anon_sym_consteval] = ACTIONS(4070), + [anon_sym_alignas] = ACTIONS(4070), + [anon_sym__Alignas] = ACTIONS(4070), + [sym_primitive_type] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_struct] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4070), + [anon_sym_typename] = ACTIONS(4070), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4070), + [anon_sym_decltype] = ACTIONS(4070), + [anon_sym_explicit] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_template] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_friend] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_static_assert] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4072), + }, + [STATE(3262)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3263)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4457), + [sym__function_postfix] = STATE(5603), + [sym_trailing_return_type] = STATE(4563), + [sym_requires_clause] = STATE(5603), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8089), + [anon_sym_and] = ACTIONS(8089), + [anon_sym_bitor] = ACTIONS(8089), + [anon_sym_xor] = ACTIONS(8089), + [anon_sym_bitand] = ACTIONS(8089), + [anon_sym_not_eq] = ACTIONS(8089), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8762), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6453), + [anon_sym_override] = ACTIONS(6453), + [anon_sym_requires] = ACTIONS(6455), + [anon_sym_DASH_GT_STAR] = ACTIONS(8089), + }, + [STATE(3264)] = { + [sym_decltype_auto] = STATE(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8495), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3265)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_RBRACE] = ACTIONS(8452), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(3266)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token2] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_private] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_friend] = ACTIONS(3990), + [anon_sym_public] = ACTIONS(3990), + [anon_sym_protected] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + }, + [STATE(3267)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(3268)] = { + [sym_identifier] = ACTIONS(8321), + [aux_sym_preproc_def_token1] = ACTIONS(8321), + [aux_sym_preproc_if_token1] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), + [sym_preproc_directive] = ACTIONS(8321), + [anon_sym_LPAREN2] = ACTIONS(8323), + [anon_sym_TILDE] = ACTIONS(8323), + [anon_sym_STAR] = ACTIONS(8323), + [anon_sym_AMP_AMP] = ACTIONS(8323), + [anon_sym_AMP] = ACTIONS(8321), + [anon_sym_SEMI] = ACTIONS(8323), + [anon_sym___extension__] = ACTIONS(8321), + [anon_sym_typedef] = ACTIONS(8321), + [anon_sym_virtual] = ACTIONS(8321), + [anon_sym_extern] = ACTIONS(8321), + [anon_sym___attribute__] = ACTIONS(8321), + [anon_sym___attribute] = ACTIONS(8321), + [anon_sym_using] = ACTIONS(8321), + [anon_sym_COLON_COLON] = ACTIONS(8323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), + [anon_sym___declspec] = ACTIONS(8321), + [anon_sym___based] = ACTIONS(8321), + [anon_sym_RBRACE] = ACTIONS(8323), + [anon_sym_signed] = ACTIONS(8321), + [anon_sym_unsigned] = ACTIONS(8321), + [anon_sym_long] = ACTIONS(8321), + [anon_sym_short] = ACTIONS(8321), + [anon_sym_LBRACK] = ACTIONS(8321), + [anon_sym_static] = ACTIONS(8321), + [anon_sym_register] = ACTIONS(8321), + [anon_sym_inline] = ACTIONS(8321), + [anon_sym___inline] = ACTIONS(8321), + [anon_sym___inline__] = ACTIONS(8321), + [anon_sym___forceinline] = ACTIONS(8321), + [anon_sym_thread_local] = ACTIONS(8321), + [anon_sym___thread] = ACTIONS(8321), + [anon_sym_const] = ACTIONS(8321), + [anon_sym_constexpr] = ACTIONS(8321), + [anon_sym_volatile] = ACTIONS(8321), + [anon_sym_restrict] = ACTIONS(8321), + [anon_sym___restrict__] = ACTIONS(8321), + [anon_sym__Atomic] = ACTIONS(8321), + [anon_sym__Noreturn] = ACTIONS(8321), + [anon_sym_noreturn] = ACTIONS(8321), + [anon_sym__Nonnull] = ACTIONS(8321), + [anon_sym_mutable] = ACTIONS(8321), + [anon_sym_constinit] = ACTIONS(8321), + [anon_sym_consteval] = ACTIONS(8321), + [anon_sym_alignas] = ACTIONS(8321), + [anon_sym__Alignas] = ACTIONS(8321), + [sym_primitive_type] = ACTIONS(8321), + [anon_sym_enum] = ACTIONS(8321), + [anon_sym_class] = ACTIONS(8321), + [anon_sym_struct] = ACTIONS(8321), + [anon_sym_union] = ACTIONS(8321), + [anon_sym_typename] = ACTIONS(8321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8321), + [anon_sym_decltype] = ACTIONS(8321), + [anon_sym_explicit] = ACTIONS(8321), + [anon_sym_private] = ACTIONS(8321), + [anon_sym_template] = ACTIONS(8321), + [anon_sym_operator] = ACTIONS(8321), + [anon_sym_friend] = ACTIONS(8321), + [anon_sym_public] = ACTIONS(8321), + [anon_sym_protected] = ACTIONS(8321), + [anon_sym_static_assert] = ACTIONS(8321), + [anon_sym_LBRACK_COLON] = ACTIONS(8323), + }, + [STATE(3269)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_RBRACE] = ACTIONS(8398), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(3270)] = { + [sym_type_qualifier] = STATE(3293), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(3293), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(8505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [aux_sym_preproc_if_token2] = ACTIONS(6812), + [aux_sym_preproc_else_token1] = ACTIONS(6812), + [aux_sym_preproc_elif_token1] = ACTIONS(6814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(7784), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8782), + [anon_sym_unsigned] = ACTIONS(8782), + [anon_sym_long] = ACTIONS(8782), + [anon_sym_short] = ACTIONS(8782), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7784), + [anon_sym_volatile] = ACTIONS(7784), + [anon_sym_restrict] = ACTIONS(7784), + [anon_sym___restrict__] = ACTIONS(7784), + [anon_sym__Atomic] = ACTIONS(7784), + [anon_sym__Noreturn] = ACTIONS(7784), + [anon_sym_noreturn] = ACTIONS(7784), + [anon_sym__Nonnull] = ACTIONS(7784), + [anon_sym_mutable] = ACTIONS(7784), + [anon_sym_constinit] = ACTIONS(7784), + [anon_sym_consteval] = ACTIONS(7784), + [anon_sym_alignas] = ACTIONS(8669), + [anon_sym__Alignas] = ACTIONS(8669), + [sym_primitive_type] = ACTIONS(8510), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + }, + [STATE(3271)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token2] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_friend] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + }, + [STATE(3272)] = { + [sym_identifier] = ACTIONS(3876), + [aux_sym_preproc_def_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token1] = ACTIONS(3876), + [aux_sym_preproc_if_token2] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), + [sym_preproc_directive] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3878), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_AMP] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym___extension__] = ACTIONS(3876), + [anon_sym_typedef] = ACTIONS(3876), + [anon_sym_virtual] = ACTIONS(3876), + [anon_sym_extern] = ACTIONS(3876), + [anon_sym___attribute__] = ACTIONS(3876), + [anon_sym___attribute] = ACTIONS(3876), + [anon_sym_using] = ACTIONS(3876), + [anon_sym_COLON_COLON] = ACTIONS(3878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), + [anon_sym___declspec] = ACTIONS(3876), + [anon_sym___based] = ACTIONS(3876), + [anon_sym_signed] = ACTIONS(3876), + [anon_sym_unsigned] = ACTIONS(3876), + [anon_sym_long] = ACTIONS(3876), + [anon_sym_short] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3876), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_register] = ACTIONS(3876), + [anon_sym_inline] = ACTIONS(3876), + [anon_sym___inline] = ACTIONS(3876), + [anon_sym___inline__] = ACTIONS(3876), + [anon_sym___forceinline] = ACTIONS(3876), + [anon_sym_thread_local] = ACTIONS(3876), + [anon_sym___thread] = ACTIONS(3876), + [anon_sym_const] = ACTIONS(3876), + [anon_sym_constexpr] = ACTIONS(3876), + [anon_sym_volatile] = ACTIONS(3876), + [anon_sym_restrict] = ACTIONS(3876), + [anon_sym___restrict__] = ACTIONS(3876), + [anon_sym__Atomic] = ACTIONS(3876), + [anon_sym__Noreturn] = ACTIONS(3876), + [anon_sym_noreturn] = ACTIONS(3876), + [anon_sym__Nonnull] = ACTIONS(3876), + [anon_sym_mutable] = ACTIONS(3876), + [anon_sym_constinit] = ACTIONS(3876), + [anon_sym_consteval] = ACTIONS(3876), + [anon_sym_alignas] = ACTIONS(3876), + [anon_sym__Alignas] = ACTIONS(3876), + [sym_primitive_type] = ACTIONS(3876), + [anon_sym_enum] = ACTIONS(3876), + [anon_sym_class] = ACTIONS(3876), + [anon_sym_struct] = ACTIONS(3876), + [anon_sym_union] = ACTIONS(3876), + [anon_sym_typename] = ACTIONS(3876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3876), + [anon_sym_decltype] = ACTIONS(3876), + [anon_sym_explicit] = ACTIONS(3876), + [anon_sym_private] = ACTIONS(3876), + [anon_sym_template] = ACTIONS(3876), + [anon_sym_operator] = ACTIONS(3876), + [anon_sym_friend] = ACTIONS(3876), + [anon_sym_public] = ACTIONS(3876), + [anon_sym_protected] = ACTIONS(3876), + [anon_sym_static_assert] = ACTIONS(3876), + [anon_sym_LBRACK_COLON] = ACTIONS(3878), + }, + [STATE(3273)] = { + [sym_identifier] = ACTIONS(4010), + [aux_sym_preproc_def_token1] = ACTIONS(4010), + [aux_sym_preproc_if_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), + [sym_preproc_directive] = ACTIONS(4010), + [anon_sym_LPAREN2] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_AMP_AMP] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4010), + [anon_sym_SEMI] = ACTIONS(4012), + [anon_sym___extension__] = ACTIONS(4010), + [anon_sym_typedef] = ACTIONS(4010), + [anon_sym_virtual] = ACTIONS(4010), + [anon_sym_extern] = ACTIONS(4010), + [anon_sym___attribute__] = ACTIONS(4010), + [anon_sym___attribute] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4010), + [anon_sym_COLON_COLON] = ACTIONS(4012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), + [anon_sym___declspec] = ACTIONS(4010), + [anon_sym___based] = ACTIONS(4010), + [anon_sym_RBRACE] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4010), + [anon_sym_unsigned] = ACTIONS(4010), + [anon_sym_long] = ACTIONS(4010), + [anon_sym_short] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4010), + [anon_sym_static] = ACTIONS(4010), + [anon_sym_register] = ACTIONS(4010), + [anon_sym_inline] = ACTIONS(4010), + [anon_sym___inline] = ACTIONS(4010), + [anon_sym___inline__] = ACTIONS(4010), + [anon_sym___forceinline] = ACTIONS(4010), + [anon_sym_thread_local] = ACTIONS(4010), + [anon_sym___thread] = ACTIONS(4010), + [anon_sym_const] = ACTIONS(4010), + [anon_sym_constexpr] = ACTIONS(4010), + [anon_sym_volatile] = ACTIONS(4010), + [anon_sym_restrict] = ACTIONS(4010), + [anon_sym___restrict__] = ACTIONS(4010), + [anon_sym__Atomic] = ACTIONS(4010), + [anon_sym__Noreturn] = ACTIONS(4010), + [anon_sym_noreturn] = ACTIONS(4010), + [anon_sym__Nonnull] = ACTIONS(4010), + [anon_sym_mutable] = ACTIONS(4010), + [anon_sym_constinit] = ACTIONS(4010), + [anon_sym_consteval] = ACTIONS(4010), + [anon_sym_alignas] = ACTIONS(4010), + [anon_sym__Alignas] = ACTIONS(4010), + [sym_primitive_type] = ACTIONS(4010), + [anon_sym_enum] = ACTIONS(4010), + [anon_sym_class] = ACTIONS(4010), + [anon_sym_struct] = ACTIONS(4010), + [anon_sym_union] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(4010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4010), + [anon_sym_decltype] = ACTIONS(4010), + [anon_sym_explicit] = ACTIONS(4010), + [anon_sym_private] = ACTIONS(4010), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_operator] = ACTIONS(4010), + [anon_sym_friend] = ACTIONS(4010), + [anon_sym_public] = ACTIONS(4010), + [anon_sym_protected] = ACTIONS(4010), + [anon_sym_static_assert] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4012), + }, + [STATE(3274)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + }, + [STATE(3275)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + }, + [STATE(3276)] = { + [sym_identifier] = ACTIONS(4107), + [aux_sym_preproc_def_token1] = ACTIONS(4107), + [aux_sym_preproc_if_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), + [sym_preproc_directive] = ACTIONS(4107), + [anon_sym_LPAREN2] = ACTIONS(4109), + [anon_sym_TILDE] = ACTIONS(4109), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP_AMP] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_SEMI] = ACTIONS(4109), + [anon_sym___extension__] = ACTIONS(4107), + [anon_sym_typedef] = ACTIONS(4107), + [anon_sym_virtual] = ACTIONS(4107), + [anon_sym_extern] = ACTIONS(4107), + [anon_sym___attribute__] = ACTIONS(4107), + [anon_sym___attribute] = ACTIONS(4107), + [anon_sym_using] = ACTIONS(4107), + [anon_sym_COLON_COLON] = ACTIONS(4109), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), + [anon_sym___declspec] = ACTIONS(4107), + [anon_sym___based] = ACTIONS(4107), + [anon_sym_RBRACE] = ACTIONS(4109), + [anon_sym_signed] = ACTIONS(4107), + [anon_sym_unsigned] = ACTIONS(4107), + [anon_sym_long] = ACTIONS(4107), + [anon_sym_short] = ACTIONS(4107), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_static] = ACTIONS(4107), + [anon_sym_register] = ACTIONS(4107), + [anon_sym_inline] = ACTIONS(4107), + [anon_sym___inline] = ACTIONS(4107), + [anon_sym___inline__] = ACTIONS(4107), + [anon_sym___forceinline] = ACTIONS(4107), + [anon_sym_thread_local] = ACTIONS(4107), + [anon_sym___thread] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_constexpr] = ACTIONS(4107), + [anon_sym_volatile] = ACTIONS(4107), + [anon_sym_restrict] = ACTIONS(4107), + [anon_sym___restrict__] = ACTIONS(4107), + [anon_sym__Atomic] = ACTIONS(4107), + [anon_sym__Noreturn] = ACTIONS(4107), + [anon_sym_noreturn] = ACTIONS(4107), + [anon_sym__Nonnull] = ACTIONS(4107), + [anon_sym_mutable] = ACTIONS(4107), + [anon_sym_constinit] = ACTIONS(4107), + [anon_sym_consteval] = ACTIONS(4107), + [anon_sym_alignas] = ACTIONS(4107), + [anon_sym__Alignas] = ACTIONS(4107), + [sym_primitive_type] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_class] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_typename] = ACTIONS(4107), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4107), + [anon_sym_decltype] = ACTIONS(4107), + [anon_sym_explicit] = ACTIONS(4107), + [anon_sym_private] = ACTIONS(4107), + [anon_sym_template] = ACTIONS(4107), + [anon_sym_operator] = ACTIONS(4107), + [anon_sym_friend] = ACTIONS(4107), + [anon_sym_public] = ACTIONS(4107), + [anon_sym_protected] = ACTIONS(4107), + [anon_sym_static_assert] = ACTIONS(4107), + [anon_sym_LBRACK_COLON] = ACTIONS(4109), + }, + [STATE(3277)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3908), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_friend] = ACTIONS(3906), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + }, + [STATE(3278)] = { + [sym_identifier] = ACTIONS(8392), + [aux_sym_preproc_def_token1] = ACTIONS(8392), + [aux_sym_preproc_if_token1] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), + [sym_preproc_directive] = ACTIONS(8392), + [anon_sym_LPAREN2] = ACTIONS(8394), + [anon_sym_TILDE] = ACTIONS(8394), + [anon_sym_STAR] = ACTIONS(8394), + [anon_sym_AMP_AMP] = ACTIONS(8394), + [anon_sym_AMP] = ACTIONS(8392), + [anon_sym_SEMI] = ACTIONS(8394), + [anon_sym___extension__] = ACTIONS(8392), + [anon_sym_typedef] = ACTIONS(8392), + [anon_sym_virtual] = ACTIONS(8392), + [anon_sym_extern] = ACTIONS(8392), + [anon_sym___attribute__] = ACTIONS(8392), + [anon_sym___attribute] = ACTIONS(8392), + [anon_sym_using] = ACTIONS(8392), + [anon_sym_COLON_COLON] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), + [anon_sym___declspec] = ACTIONS(8392), + [anon_sym___based] = ACTIONS(8392), + [anon_sym_RBRACE] = ACTIONS(8394), + [anon_sym_signed] = ACTIONS(8392), + [anon_sym_unsigned] = ACTIONS(8392), + [anon_sym_long] = ACTIONS(8392), + [anon_sym_short] = ACTIONS(8392), + [anon_sym_LBRACK] = ACTIONS(8392), + [anon_sym_static] = ACTIONS(8392), + [anon_sym_register] = ACTIONS(8392), + [anon_sym_inline] = ACTIONS(8392), + [anon_sym___inline] = ACTIONS(8392), + [anon_sym___inline__] = ACTIONS(8392), + [anon_sym___forceinline] = ACTIONS(8392), + [anon_sym_thread_local] = ACTIONS(8392), + [anon_sym___thread] = ACTIONS(8392), + [anon_sym_const] = ACTIONS(8392), + [anon_sym_constexpr] = ACTIONS(8392), + [anon_sym_volatile] = ACTIONS(8392), + [anon_sym_restrict] = ACTIONS(8392), + [anon_sym___restrict__] = ACTIONS(8392), + [anon_sym__Atomic] = ACTIONS(8392), + [anon_sym__Noreturn] = ACTIONS(8392), + [anon_sym_noreturn] = ACTIONS(8392), + [anon_sym__Nonnull] = ACTIONS(8392), + [anon_sym_mutable] = ACTIONS(8392), + [anon_sym_constinit] = ACTIONS(8392), + [anon_sym_consteval] = ACTIONS(8392), + [anon_sym_alignas] = ACTIONS(8392), + [anon_sym__Alignas] = ACTIONS(8392), + [sym_primitive_type] = ACTIONS(8392), + [anon_sym_enum] = ACTIONS(8392), + [anon_sym_class] = ACTIONS(8392), + [anon_sym_struct] = ACTIONS(8392), + [anon_sym_union] = ACTIONS(8392), + [anon_sym_typename] = ACTIONS(8392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8392), + [anon_sym_decltype] = ACTIONS(8392), + [anon_sym_explicit] = ACTIONS(8392), + [anon_sym_private] = ACTIONS(8392), + [anon_sym_template] = ACTIONS(8392), + [anon_sym_operator] = ACTIONS(8392), + [anon_sym_friend] = ACTIONS(8392), + [anon_sym_public] = ACTIONS(8392), + [anon_sym_protected] = ACTIONS(8392), + [anon_sym_static_assert] = ACTIONS(8392), + [anon_sym_LBRACK_COLON] = ACTIONS(8394), + }, + [STATE(3279)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token2] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_private] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_friend] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(4074), + [anon_sym_protected] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + }, + [STATE(3280)] = { + [sym_identifier] = ACTIONS(8325), + [aux_sym_preproc_def_token1] = ACTIONS(8325), + [aux_sym_preproc_if_token1] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), + [sym_preproc_directive] = ACTIONS(8325), + [anon_sym_LPAREN2] = ACTIONS(8327), + [anon_sym_TILDE] = ACTIONS(8327), + [anon_sym_STAR] = ACTIONS(8327), + [anon_sym_AMP_AMP] = ACTIONS(8327), + [anon_sym_AMP] = ACTIONS(8325), + [anon_sym_SEMI] = ACTIONS(8327), + [anon_sym___extension__] = ACTIONS(8325), + [anon_sym_typedef] = ACTIONS(8325), + [anon_sym_virtual] = ACTIONS(8325), + [anon_sym_extern] = ACTIONS(8325), + [anon_sym___attribute__] = ACTIONS(8325), + [anon_sym___attribute] = ACTIONS(8325), + [anon_sym_using] = ACTIONS(8325), + [anon_sym_COLON_COLON] = ACTIONS(8327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), + [anon_sym___declspec] = ACTIONS(8325), + [anon_sym___based] = ACTIONS(8325), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_signed] = ACTIONS(8325), + [anon_sym_unsigned] = ACTIONS(8325), + [anon_sym_long] = ACTIONS(8325), + [anon_sym_short] = ACTIONS(8325), + [anon_sym_LBRACK] = ACTIONS(8325), + [anon_sym_static] = ACTIONS(8325), + [anon_sym_register] = ACTIONS(8325), + [anon_sym_inline] = ACTIONS(8325), + [anon_sym___inline] = ACTIONS(8325), + [anon_sym___inline__] = ACTIONS(8325), + [anon_sym___forceinline] = ACTIONS(8325), + [anon_sym_thread_local] = ACTIONS(8325), + [anon_sym___thread] = ACTIONS(8325), + [anon_sym_const] = ACTIONS(8325), + [anon_sym_constexpr] = ACTIONS(8325), + [anon_sym_volatile] = ACTIONS(8325), + [anon_sym_restrict] = ACTIONS(8325), + [anon_sym___restrict__] = ACTIONS(8325), + [anon_sym__Atomic] = ACTIONS(8325), + [anon_sym__Noreturn] = ACTIONS(8325), + [anon_sym_noreturn] = ACTIONS(8325), + [anon_sym__Nonnull] = ACTIONS(8325), + [anon_sym_mutable] = ACTIONS(8325), + [anon_sym_constinit] = ACTIONS(8325), + [anon_sym_consteval] = ACTIONS(8325), + [anon_sym_alignas] = ACTIONS(8325), + [anon_sym__Alignas] = ACTIONS(8325), + [sym_primitive_type] = ACTIONS(8325), + [anon_sym_enum] = ACTIONS(8325), + [anon_sym_class] = ACTIONS(8325), + [anon_sym_struct] = ACTIONS(8325), + [anon_sym_union] = ACTIONS(8325), + [anon_sym_typename] = ACTIONS(8325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8325), + [anon_sym_decltype] = ACTIONS(8325), + [anon_sym_explicit] = ACTIONS(8325), + [anon_sym_private] = ACTIONS(8325), + [anon_sym_template] = ACTIONS(8325), + [anon_sym_operator] = ACTIONS(8325), + [anon_sym_friend] = ACTIONS(8325), + [anon_sym_public] = ACTIONS(8325), + [anon_sym_protected] = ACTIONS(8325), + [anon_sym_static_assert] = ACTIONS(8325), + [anon_sym_LBRACK_COLON] = ACTIONS(8327), + }, + [STATE(3281)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3282)] = { + [sym_identifier] = ACTIONS(8329), + [aux_sym_preproc_def_token1] = ACTIONS(8329), + [aux_sym_preproc_if_token1] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), + [sym_preproc_directive] = ACTIONS(8329), + [anon_sym_LPAREN2] = ACTIONS(8331), + [anon_sym_TILDE] = ACTIONS(8331), + [anon_sym_STAR] = ACTIONS(8331), + [anon_sym_AMP_AMP] = ACTIONS(8331), + [anon_sym_AMP] = ACTIONS(8329), + [anon_sym_SEMI] = ACTIONS(8331), + [anon_sym___extension__] = ACTIONS(8329), + [anon_sym_typedef] = ACTIONS(8329), + [anon_sym_virtual] = ACTIONS(8329), + [anon_sym_extern] = ACTIONS(8329), + [anon_sym___attribute__] = ACTIONS(8329), + [anon_sym___attribute] = ACTIONS(8329), + [anon_sym_using] = ACTIONS(8329), + [anon_sym_COLON_COLON] = ACTIONS(8331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), + [anon_sym___declspec] = ACTIONS(8329), + [anon_sym___based] = ACTIONS(8329), + [anon_sym_RBRACE] = ACTIONS(8331), + [anon_sym_signed] = ACTIONS(8329), + [anon_sym_unsigned] = ACTIONS(8329), + [anon_sym_long] = ACTIONS(8329), + [anon_sym_short] = ACTIONS(8329), + [anon_sym_LBRACK] = ACTIONS(8329), + [anon_sym_static] = ACTIONS(8329), + [anon_sym_register] = ACTIONS(8329), + [anon_sym_inline] = ACTIONS(8329), + [anon_sym___inline] = ACTIONS(8329), + [anon_sym___inline__] = ACTIONS(8329), + [anon_sym___forceinline] = ACTIONS(8329), + [anon_sym_thread_local] = ACTIONS(8329), + [anon_sym___thread] = ACTIONS(8329), + [anon_sym_const] = ACTIONS(8329), + [anon_sym_constexpr] = ACTIONS(8329), + [anon_sym_volatile] = ACTIONS(8329), + [anon_sym_restrict] = ACTIONS(8329), + [anon_sym___restrict__] = ACTIONS(8329), + [anon_sym__Atomic] = ACTIONS(8329), + [anon_sym__Noreturn] = ACTIONS(8329), + [anon_sym_noreturn] = ACTIONS(8329), + [anon_sym__Nonnull] = ACTIONS(8329), + [anon_sym_mutable] = ACTIONS(8329), + [anon_sym_constinit] = ACTIONS(8329), + [anon_sym_consteval] = ACTIONS(8329), + [anon_sym_alignas] = ACTIONS(8329), + [anon_sym__Alignas] = ACTIONS(8329), + [sym_primitive_type] = ACTIONS(8329), + [anon_sym_enum] = ACTIONS(8329), + [anon_sym_class] = ACTIONS(8329), + [anon_sym_struct] = ACTIONS(8329), + [anon_sym_union] = ACTIONS(8329), + [anon_sym_typename] = ACTIONS(8329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8329), + [anon_sym_decltype] = ACTIONS(8329), + [anon_sym_explicit] = ACTIONS(8329), + [anon_sym_private] = ACTIONS(8329), + [anon_sym_template] = ACTIONS(8329), + [anon_sym_operator] = ACTIONS(8329), + [anon_sym_friend] = ACTIONS(8329), + [anon_sym_public] = ACTIONS(8329), + [anon_sym_protected] = ACTIONS(8329), + [anon_sym_static_assert] = ACTIONS(8329), + [anon_sym_LBRACK_COLON] = ACTIONS(8331), + }, + [STATE(3283)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3284)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token2] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_private] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_friend] = ACTIONS(4078), + [anon_sym_public] = ACTIONS(4078), + [anon_sym_protected] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + }, + [STATE(3285)] = { + [sym_identifier] = ACTIONS(8392), + [aux_sym_preproc_def_token1] = ACTIONS(8392), + [aux_sym_preproc_if_token1] = ACTIONS(8392), + [aux_sym_preproc_if_token2] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), + [sym_preproc_directive] = ACTIONS(8392), + [anon_sym_LPAREN2] = ACTIONS(8394), + [anon_sym_TILDE] = ACTIONS(8394), + [anon_sym_STAR] = ACTIONS(8394), + [anon_sym_AMP_AMP] = ACTIONS(8394), + [anon_sym_AMP] = ACTIONS(8392), + [anon_sym_SEMI] = ACTIONS(8394), + [anon_sym___extension__] = ACTIONS(8392), + [anon_sym_typedef] = ACTIONS(8392), + [anon_sym_virtual] = ACTIONS(8392), + [anon_sym_extern] = ACTIONS(8392), + [anon_sym___attribute__] = ACTIONS(8392), + [anon_sym___attribute] = ACTIONS(8392), + [anon_sym_using] = ACTIONS(8392), + [anon_sym_COLON_COLON] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), + [anon_sym___declspec] = ACTIONS(8392), + [anon_sym___based] = ACTIONS(8392), + [anon_sym_signed] = ACTIONS(8392), + [anon_sym_unsigned] = ACTIONS(8392), + [anon_sym_long] = ACTIONS(8392), + [anon_sym_short] = ACTIONS(8392), + [anon_sym_LBRACK] = ACTIONS(8392), + [anon_sym_static] = ACTIONS(8392), + [anon_sym_register] = ACTIONS(8392), + [anon_sym_inline] = ACTIONS(8392), + [anon_sym___inline] = ACTIONS(8392), + [anon_sym___inline__] = ACTIONS(8392), + [anon_sym___forceinline] = ACTIONS(8392), + [anon_sym_thread_local] = ACTIONS(8392), + [anon_sym___thread] = ACTIONS(8392), + [anon_sym_const] = ACTIONS(8392), + [anon_sym_constexpr] = ACTIONS(8392), + [anon_sym_volatile] = ACTIONS(8392), + [anon_sym_restrict] = ACTIONS(8392), + [anon_sym___restrict__] = ACTIONS(8392), + [anon_sym__Atomic] = ACTIONS(8392), + [anon_sym__Noreturn] = ACTIONS(8392), + [anon_sym_noreturn] = ACTIONS(8392), + [anon_sym__Nonnull] = ACTIONS(8392), + [anon_sym_mutable] = ACTIONS(8392), + [anon_sym_constinit] = ACTIONS(8392), + [anon_sym_consteval] = ACTIONS(8392), + [anon_sym_alignas] = ACTIONS(8392), + [anon_sym__Alignas] = ACTIONS(8392), + [sym_primitive_type] = ACTIONS(8392), + [anon_sym_enum] = ACTIONS(8392), + [anon_sym_class] = ACTIONS(8392), + [anon_sym_struct] = ACTIONS(8392), + [anon_sym_union] = ACTIONS(8392), + [anon_sym_typename] = ACTIONS(8392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8392), + [anon_sym_decltype] = ACTIONS(8392), + [anon_sym_explicit] = ACTIONS(8392), + [anon_sym_private] = ACTIONS(8392), + [anon_sym_template] = ACTIONS(8392), + [anon_sym_operator] = ACTIONS(8392), + [anon_sym_friend] = ACTIONS(8392), + [anon_sym_public] = ACTIONS(8392), + [anon_sym_protected] = ACTIONS(8392), + [anon_sym_static_assert] = ACTIONS(8392), + [anon_sym_LBRACK_COLON] = ACTIONS(8394), + }, + [STATE(3286)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_RBRACE] = ACTIONS(8452), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(3287)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [aux_sym_preproc_if_token2] = ACTIONS(7389), + [aux_sym_preproc_else_token1] = ACTIONS(7389), + [aux_sym_preproc_elif_token1] = ACTIONS(7387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7389), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7389), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7389), + [anon_sym_GT_GT] = ACTIONS(7389), + [anon_sym___extension__] = ACTIONS(7387), + [anon_sym___attribute__] = ACTIONS(7387), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_RBRACK] = ACTIONS(7389), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7387), + [anon_sym_volatile] = ACTIONS(7387), + [anon_sym_restrict] = ACTIONS(7387), + [anon_sym___restrict__] = ACTIONS(7387), + [anon_sym__Atomic] = ACTIONS(7387), + [anon_sym__Noreturn] = ACTIONS(7387), + [anon_sym_noreturn] = ACTIONS(7387), + [anon_sym__Nonnull] = ACTIONS(7387), + [anon_sym_mutable] = ACTIONS(7387), + [anon_sym_constinit] = ACTIONS(7387), + [anon_sym_consteval] = ACTIONS(7387), + [anon_sym_alignas] = ACTIONS(7387), + [anon_sym__Alignas] = ACTIONS(7387), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7387), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7387), + [anon_sym_not_eq] = ACTIONS(7387), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7387), + [anon_sym_override] = ACTIONS(7387), + [anon_sym_requires] = ACTIONS(7387), + }, + [STATE(3288)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(3289)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_RBRACE] = ACTIONS(8339), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3290)] = { + [sym_identifier] = ACTIONS(8362), + [aux_sym_preproc_def_token1] = ACTIONS(8362), + [aux_sym_preproc_if_token1] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), + [sym_preproc_directive] = ACTIONS(8362), + [anon_sym_LPAREN2] = ACTIONS(8364), + [anon_sym_TILDE] = ACTIONS(8364), + [anon_sym_STAR] = ACTIONS(8364), + [anon_sym_AMP_AMP] = ACTIONS(8364), + [anon_sym_AMP] = ACTIONS(8362), + [anon_sym_SEMI] = ACTIONS(8364), + [anon_sym___extension__] = ACTIONS(8362), + [anon_sym_typedef] = ACTIONS(8362), + [anon_sym_virtual] = ACTIONS(8362), + [anon_sym_extern] = ACTIONS(8362), + [anon_sym___attribute__] = ACTIONS(8362), + [anon_sym___attribute] = ACTIONS(8362), + [anon_sym_using] = ACTIONS(8362), + [anon_sym_COLON_COLON] = ACTIONS(8364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), + [anon_sym___declspec] = ACTIONS(8362), + [anon_sym___based] = ACTIONS(8362), + [anon_sym_RBRACE] = ACTIONS(8364), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(8362), + [anon_sym_static] = ACTIONS(8362), + [anon_sym_register] = ACTIONS(8362), + [anon_sym_inline] = ACTIONS(8362), + [anon_sym___inline] = ACTIONS(8362), + [anon_sym___inline__] = ACTIONS(8362), + [anon_sym___forceinline] = ACTIONS(8362), + [anon_sym_thread_local] = ACTIONS(8362), + [anon_sym___thread] = ACTIONS(8362), + [anon_sym_const] = ACTIONS(8362), + [anon_sym_constexpr] = ACTIONS(8362), + [anon_sym_volatile] = ACTIONS(8362), + [anon_sym_restrict] = ACTIONS(8362), + [anon_sym___restrict__] = ACTIONS(8362), + [anon_sym__Atomic] = ACTIONS(8362), + [anon_sym__Noreturn] = ACTIONS(8362), + [anon_sym_noreturn] = ACTIONS(8362), + [anon_sym__Nonnull] = ACTIONS(8362), + [anon_sym_mutable] = ACTIONS(8362), + [anon_sym_constinit] = ACTIONS(8362), + [anon_sym_consteval] = ACTIONS(8362), + [anon_sym_alignas] = ACTIONS(8362), + [anon_sym__Alignas] = ACTIONS(8362), + [sym_primitive_type] = ACTIONS(8362), + [anon_sym_enum] = ACTIONS(8362), + [anon_sym_class] = ACTIONS(8362), + [anon_sym_struct] = ACTIONS(8362), + [anon_sym_union] = ACTIONS(8362), + [anon_sym_typename] = ACTIONS(8362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8362), + [anon_sym_decltype] = ACTIONS(8362), + [anon_sym_explicit] = ACTIONS(8362), + [anon_sym_private] = ACTIONS(8362), + [anon_sym_template] = ACTIONS(8362), + [anon_sym_operator] = ACTIONS(8362), + [anon_sym_friend] = ACTIONS(8362), + [anon_sym_public] = ACTIONS(8362), + [anon_sym_protected] = ACTIONS(8362), + [anon_sym_static_assert] = ACTIONS(8362), + [anon_sym_LBRACK_COLON] = ACTIONS(8364), + }, + [STATE(3291)] = { + [sym_identifier] = ACTIONS(4066), + [aux_sym_preproc_def_token1] = ACTIONS(4066), + [aux_sym_preproc_if_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_LPAREN2] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_AMP_AMP] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_virtual] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym___attribute__] = ACTIONS(4066), + [anon_sym___attribute] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), + [anon_sym___declspec] = ACTIONS(4066), + [anon_sym___based] = ACTIONS(4066), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [anon_sym_LBRACK] = ACTIONS(4066), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym___inline] = ACTIONS(4066), + [anon_sym___inline__] = ACTIONS(4066), + [anon_sym___forceinline] = ACTIONS(4066), + [anon_sym_thread_local] = ACTIONS(4066), + [anon_sym___thread] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym___restrict__] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym__Noreturn] = ACTIONS(4066), + [anon_sym_noreturn] = ACTIONS(4066), + [anon_sym__Nonnull] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_constinit] = ACTIONS(4066), + [anon_sym_consteval] = ACTIONS(4066), + [anon_sym_alignas] = ACTIONS(4066), + [anon_sym__Alignas] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4066), + [anon_sym_decltype] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_private] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_operator] = ACTIONS(4066), + [anon_sym_friend] = ACTIONS(4066), + [anon_sym_public] = ACTIONS(4066), + [anon_sym_protected] = ACTIONS(4066), + [anon_sym_static_assert] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4068), + }, + [STATE(3292)] = { + [sym_identifier] = ACTIONS(8462), + [aux_sym_preproc_def_token1] = ACTIONS(8462), + [aux_sym_preproc_if_token1] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), + [sym_preproc_directive] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_TILDE] = ACTIONS(8464), + [anon_sym_STAR] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_AMP] = ACTIONS(8462), + [anon_sym_SEMI] = ACTIONS(8464), + [anon_sym___extension__] = ACTIONS(8462), + [anon_sym_typedef] = ACTIONS(8462), + [anon_sym_virtual] = ACTIONS(8462), + [anon_sym_extern] = ACTIONS(8462), + [anon_sym___attribute__] = ACTIONS(8462), + [anon_sym___attribute] = ACTIONS(8462), + [anon_sym_using] = ACTIONS(8462), + [anon_sym_COLON_COLON] = ACTIONS(8464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), + [anon_sym___declspec] = ACTIONS(8462), + [anon_sym___based] = ACTIONS(8462), + [anon_sym_RBRACE] = ACTIONS(8464), + [anon_sym_signed] = ACTIONS(8462), + [anon_sym_unsigned] = ACTIONS(8462), + [anon_sym_long] = ACTIONS(8462), + [anon_sym_short] = ACTIONS(8462), + [anon_sym_LBRACK] = ACTIONS(8462), + [anon_sym_static] = ACTIONS(8462), + [anon_sym_register] = ACTIONS(8462), + [anon_sym_inline] = ACTIONS(8462), + [anon_sym___inline] = ACTIONS(8462), + [anon_sym___inline__] = ACTIONS(8462), + [anon_sym___forceinline] = ACTIONS(8462), + [anon_sym_thread_local] = ACTIONS(8462), + [anon_sym___thread] = ACTIONS(8462), + [anon_sym_const] = ACTIONS(8462), + [anon_sym_constexpr] = ACTIONS(8462), + [anon_sym_volatile] = ACTIONS(8462), + [anon_sym_restrict] = ACTIONS(8462), + [anon_sym___restrict__] = ACTIONS(8462), + [anon_sym__Atomic] = ACTIONS(8462), + [anon_sym__Noreturn] = ACTIONS(8462), + [anon_sym_noreturn] = ACTIONS(8462), + [anon_sym__Nonnull] = ACTIONS(8462), + [anon_sym_mutable] = ACTIONS(8462), + [anon_sym_constinit] = ACTIONS(8462), + [anon_sym_consteval] = ACTIONS(8462), + [anon_sym_alignas] = ACTIONS(8462), + [anon_sym__Alignas] = ACTIONS(8462), + [sym_primitive_type] = ACTIONS(8462), + [anon_sym_enum] = ACTIONS(8462), + [anon_sym_class] = ACTIONS(8462), + [anon_sym_struct] = ACTIONS(8462), + [anon_sym_union] = ACTIONS(8462), + [anon_sym_typename] = ACTIONS(8462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8462), + [anon_sym_decltype] = ACTIONS(8462), + [anon_sym_explicit] = ACTIONS(8462), + [anon_sym_private] = ACTIONS(8462), + [anon_sym_template] = ACTIONS(8462), + [anon_sym_operator] = ACTIONS(8462), + [anon_sym_friend] = ACTIONS(8462), + [anon_sym_public] = ACTIONS(8462), + [anon_sym_protected] = ACTIONS(8462), + [anon_sym_static_assert] = ACTIONS(8462), + [anon_sym_LBRACK_COLON] = ACTIONS(8464), + }, + [STATE(3293)] = { + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [aux_sym_sized_type_specifier_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(8483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [aux_sym_preproc_if_token2] = ACTIONS(6884), + [aux_sym_preproc_else_token1] = ACTIONS(6884), + [aux_sym_preproc_elif_token1] = ACTIONS(6886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(7784), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8486), + [anon_sym_unsigned] = ACTIONS(8486), + [anon_sym_long] = ACTIONS(8486), + [anon_sym_short] = ACTIONS(8486), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7784), + [anon_sym_volatile] = ACTIONS(7784), + [anon_sym_restrict] = ACTIONS(7784), + [anon_sym___restrict__] = ACTIONS(7784), + [anon_sym__Atomic] = ACTIONS(7784), + [anon_sym__Noreturn] = ACTIONS(7784), + [anon_sym_noreturn] = ACTIONS(7784), + [anon_sym__Nonnull] = ACTIONS(7784), + [anon_sym_mutable] = ACTIONS(7784), + [anon_sym_constinit] = ACTIONS(7784), + [anon_sym_consteval] = ACTIONS(7784), + [anon_sym_alignas] = ACTIONS(8669), + [anon_sym__Alignas] = ACTIONS(8669), + [sym_primitive_type] = ACTIONS(8488), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + }, + [STATE(3294)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token2] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_private] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_friend] = ACTIONS(3926), + [anon_sym_public] = ACTIONS(3926), + [anon_sym_protected] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + }, + [STATE(3295)] = { + [sym_identifier] = ACTIONS(8285), + [aux_sym_preproc_def_token1] = ACTIONS(8285), + [aux_sym_preproc_if_token1] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), + [sym_preproc_directive] = ACTIONS(8285), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_TILDE] = ACTIONS(8287), + [anon_sym_STAR] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___extension__] = ACTIONS(8285), + [anon_sym_typedef] = ACTIONS(8285), + [anon_sym_virtual] = ACTIONS(8285), + [anon_sym_extern] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_using] = ACTIONS(8285), + [anon_sym_COLON_COLON] = ACTIONS(8287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), + [anon_sym___declspec] = ACTIONS(8285), + [anon_sym___based] = ACTIONS(8285), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_signed] = ACTIONS(8285), + [anon_sym_unsigned] = ACTIONS(8285), + [anon_sym_long] = ACTIONS(8285), + [anon_sym_short] = ACTIONS(8285), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_static] = ACTIONS(8285), + [anon_sym_register] = ACTIONS(8285), + [anon_sym_inline] = ACTIONS(8285), + [anon_sym___inline] = ACTIONS(8285), + [anon_sym___inline__] = ACTIONS(8285), + [anon_sym___forceinline] = ACTIONS(8285), + [anon_sym_thread_local] = ACTIONS(8285), + [anon_sym___thread] = ACTIONS(8285), + [anon_sym_const] = ACTIONS(8285), + [anon_sym_constexpr] = ACTIONS(8285), + [anon_sym_volatile] = ACTIONS(8285), + [anon_sym_restrict] = ACTIONS(8285), + [anon_sym___restrict__] = ACTIONS(8285), + [anon_sym__Atomic] = ACTIONS(8285), + [anon_sym__Noreturn] = ACTIONS(8285), + [anon_sym_noreturn] = ACTIONS(8285), + [anon_sym__Nonnull] = ACTIONS(8285), + [anon_sym_mutable] = ACTIONS(8285), + [anon_sym_constinit] = ACTIONS(8285), + [anon_sym_consteval] = ACTIONS(8285), + [anon_sym_alignas] = ACTIONS(8285), + [anon_sym__Alignas] = ACTIONS(8285), + [sym_primitive_type] = ACTIONS(8285), + [anon_sym_enum] = ACTIONS(8285), + [anon_sym_class] = ACTIONS(8285), + [anon_sym_struct] = ACTIONS(8285), + [anon_sym_union] = ACTIONS(8285), + [anon_sym_typename] = ACTIONS(8285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8285), + [anon_sym_decltype] = ACTIONS(8285), + [anon_sym_explicit] = ACTIONS(8285), + [anon_sym_private] = ACTIONS(8285), + [anon_sym_template] = ACTIONS(8285), + [anon_sym_operator] = ACTIONS(8285), + [anon_sym_friend] = ACTIONS(8285), + [anon_sym_public] = ACTIONS(8285), + [anon_sym_protected] = ACTIONS(8285), + [anon_sym_static_assert] = ACTIONS(8285), + [anon_sym_LBRACK_COLON] = ACTIONS(8287), + }, + [STATE(3296)] = { + [sym_identifier] = ACTIONS(4115), + [aux_sym_preproc_def_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token1] = ACTIONS(4115), + [aux_sym_preproc_if_token2] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), + [sym_preproc_directive] = ACTIONS(4115), + [anon_sym_LPAREN2] = ACTIONS(4117), + [anon_sym_TILDE] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP_AMP] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(4117), + [anon_sym___extension__] = ACTIONS(4115), + [anon_sym_typedef] = ACTIONS(4115), + [anon_sym_virtual] = ACTIONS(4115), + [anon_sym_extern] = ACTIONS(4115), + [anon_sym___attribute__] = ACTIONS(4115), + [anon_sym___attribute] = ACTIONS(4115), + [anon_sym_using] = ACTIONS(4115), + [anon_sym_COLON_COLON] = ACTIONS(4117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), + [anon_sym___declspec] = ACTIONS(4115), + [anon_sym___based] = ACTIONS(4115), + [anon_sym_signed] = ACTIONS(4115), + [anon_sym_unsigned] = ACTIONS(4115), + [anon_sym_long] = ACTIONS(4115), + [anon_sym_short] = ACTIONS(4115), + [anon_sym_LBRACK] = ACTIONS(4115), + [anon_sym_static] = ACTIONS(4115), + [anon_sym_register] = ACTIONS(4115), + [anon_sym_inline] = ACTIONS(4115), + [anon_sym___inline] = ACTIONS(4115), + [anon_sym___inline__] = ACTIONS(4115), + [anon_sym___forceinline] = ACTIONS(4115), + [anon_sym_thread_local] = ACTIONS(4115), + [anon_sym___thread] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_constexpr] = ACTIONS(4115), + [anon_sym_volatile] = ACTIONS(4115), + [anon_sym_restrict] = ACTIONS(4115), + [anon_sym___restrict__] = ACTIONS(4115), + [anon_sym__Atomic] = ACTIONS(4115), + [anon_sym__Noreturn] = ACTIONS(4115), + [anon_sym_noreturn] = ACTIONS(4115), + [anon_sym__Nonnull] = ACTIONS(4115), + [anon_sym_mutable] = ACTIONS(4115), + [anon_sym_constinit] = ACTIONS(4115), + [anon_sym_consteval] = ACTIONS(4115), + [anon_sym_alignas] = ACTIONS(4115), + [anon_sym__Alignas] = ACTIONS(4115), + [sym_primitive_type] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_class] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_typename] = ACTIONS(4115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4115), + [anon_sym_decltype] = ACTIONS(4115), + [anon_sym_explicit] = ACTIONS(4115), + [anon_sym_private] = ACTIONS(4115), + [anon_sym_template] = ACTIONS(4115), + [anon_sym_operator] = ACTIONS(4115), + [anon_sym_friend] = ACTIONS(4115), + [anon_sym_public] = ACTIONS(4115), + [anon_sym_protected] = ACTIONS(4115), + [anon_sym_static_assert] = ACTIONS(4115), + [anon_sym_LBRACK_COLON] = ACTIONS(4117), + }, + [STATE(3297)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_friend] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + }, + [STATE(3298)] = { + [sym_identifier] = ACTIONS(8430), + [aux_sym_preproc_def_token1] = ACTIONS(8430), + [aux_sym_preproc_if_token1] = ACTIONS(8430), + [aux_sym_preproc_if_token2] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), + [sym_preproc_directive] = ACTIONS(8430), + [anon_sym_LPAREN2] = ACTIONS(8432), + [anon_sym_TILDE] = ACTIONS(8432), + [anon_sym_STAR] = ACTIONS(8432), + [anon_sym_AMP_AMP] = ACTIONS(8432), + [anon_sym_AMP] = ACTIONS(8430), + [anon_sym_SEMI] = ACTIONS(8432), + [anon_sym___extension__] = ACTIONS(8430), + [anon_sym_typedef] = ACTIONS(8430), + [anon_sym_virtual] = ACTIONS(8430), + [anon_sym_extern] = ACTIONS(8430), + [anon_sym___attribute__] = ACTIONS(8430), + [anon_sym___attribute] = ACTIONS(8430), + [anon_sym_using] = ACTIONS(8430), + [anon_sym_COLON_COLON] = ACTIONS(8432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), + [anon_sym___declspec] = ACTIONS(8430), + [anon_sym___based] = ACTIONS(8430), + [anon_sym_signed] = ACTIONS(8430), + [anon_sym_unsigned] = ACTIONS(8430), + [anon_sym_long] = ACTIONS(8430), + [anon_sym_short] = ACTIONS(8430), + [anon_sym_LBRACK] = ACTIONS(8430), + [anon_sym_static] = ACTIONS(8430), + [anon_sym_register] = ACTIONS(8430), + [anon_sym_inline] = ACTIONS(8430), + [anon_sym___inline] = ACTIONS(8430), + [anon_sym___inline__] = ACTIONS(8430), + [anon_sym___forceinline] = ACTIONS(8430), + [anon_sym_thread_local] = ACTIONS(8430), + [anon_sym___thread] = ACTIONS(8430), + [anon_sym_const] = ACTIONS(8430), + [anon_sym_constexpr] = ACTIONS(8430), + [anon_sym_volatile] = ACTIONS(8430), + [anon_sym_restrict] = ACTIONS(8430), + [anon_sym___restrict__] = ACTIONS(8430), + [anon_sym__Atomic] = ACTIONS(8430), + [anon_sym__Noreturn] = ACTIONS(8430), + [anon_sym_noreturn] = ACTIONS(8430), + [anon_sym__Nonnull] = ACTIONS(8430), + [anon_sym_mutable] = ACTIONS(8430), + [anon_sym_constinit] = ACTIONS(8430), + [anon_sym_consteval] = ACTIONS(8430), + [anon_sym_alignas] = ACTIONS(8430), + [anon_sym__Alignas] = ACTIONS(8430), + [sym_primitive_type] = ACTIONS(8430), + [anon_sym_enum] = ACTIONS(8430), + [anon_sym_class] = ACTIONS(8430), + [anon_sym_struct] = ACTIONS(8430), + [anon_sym_union] = ACTIONS(8430), + [anon_sym_typename] = ACTIONS(8430), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8430), + [anon_sym_decltype] = ACTIONS(8430), + [anon_sym_explicit] = ACTIONS(8430), + [anon_sym_private] = ACTIONS(8430), + [anon_sym_template] = ACTIONS(8430), + [anon_sym_operator] = ACTIONS(8430), + [anon_sym_friend] = ACTIONS(8430), + [anon_sym_public] = ACTIONS(8430), + [anon_sym_protected] = ACTIONS(8430), + [anon_sym_static_assert] = ACTIONS(8430), + [anon_sym_LBRACK_COLON] = ACTIONS(8432), + }, + [STATE(3299)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_RBRACE] = ACTIONS(8339), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3300)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_friend] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + }, + [STATE(3301)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(7084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [aux_sym_preproc_if_token2] = ACTIONS(7081), + [aux_sym_preproc_else_token1] = ACTIONS(7081), + [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(8205), + [anon_sym_unsigned] = ACTIONS(8205), + [anon_sym_long] = ACTIONS(8205), + [anon_sym_short] = ACTIONS(8205), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(3302)] = { + [sym_identifier] = ACTIONS(4074), + [aux_sym_preproc_def_token1] = ACTIONS(4074), + [aux_sym_preproc_if_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), + [sym_preproc_directive] = ACTIONS(4074), + [anon_sym_LPAREN2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_AMP_AMP] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4074), + [anon_sym_SEMI] = ACTIONS(4076), + [anon_sym___extension__] = ACTIONS(4074), + [anon_sym_typedef] = ACTIONS(4074), + [anon_sym_virtual] = ACTIONS(4074), + [anon_sym_extern] = ACTIONS(4074), + [anon_sym___attribute__] = ACTIONS(4074), + [anon_sym___attribute] = ACTIONS(4074), + [anon_sym_using] = ACTIONS(4074), + [anon_sym_COLON_COLON] = ACTIONS(4076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), + [anon_sym___declspec] = ACTIONS(4074), + [anon_sym___based] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_signed] = ACTIONS(4074), + [anon_sym_unsigned] = ACTIONS(4074), + [anon_sym_long] = ACTIONS(4074), + [anon_sym_short] = ACTIONS(4074), + [anon_sym_LBRACK] = ACTIONS(4074), + [anon_sym_static] = ACTIONS(4074), + [anon_sym_register] = ACTIONS(4074), + [anon_sym_inline] = ACTIONS(4074), + [anon_sym___inline] = ACTIONS(4074), + [anon_sym___inline__] = ACTIONS(4074), + [anon_sym___forceinline] = ACTIONS(4074), + [anon_sym_thread_local] = ACTIONS(4074), + [anon_sym___thread] = ACTIONS(4074), + [anon_sym_const] = ACTIONS(4074), + [anon_sym_constexpr] = ACTIONS(4074), + [anon_sym_volatile] = ACTIONS(4074), + [anon_sym_restrict] = ACTIONS(4074), + [anon_sym___restrict__] = ACTIONS(4074), + [anon_sym__Atomic] = ACTIONS(4074), + [anon_sym__Noreturn] = ACTIONS(4074), + [anon_sym_noreturn] = ACTIONS(4074), + [anon_sym__Nonnull] = ACTIONS(4074), + [anon_sym_mutable] = ACTIONS(4074), + [anon_sym_constinit] = ACTIONS(4074), + [anon_sym_consteval] = ACTIONS(4074), + [anon_sym_alignas] = ACTIONS(4074), + [anon_sym__Alignas] = ACTIONS(4074), + [sym_primitive_type] = ACTIONS(4074), + [anon_sym_enum] = ACTIONS(4074), + [anon_sym_class] = ACTIONS(4074), + [anon_sym_struct] = ACTIONS(4074), + [anon_sym_union] = ACTIONS(4074), + [anon_sym_typename] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4074), + [anon_sym_decltype] = ACTIONS(4074), + [anon_sym_explicit] = ACTIONS(4074), + [anon_sym_private] = ACTIONS(4074), + [anon_sym_template] = ACTIONS(4074), + [anon_sym_operator] = ACTIONS(4074), + [anon_sym_friend] = ACTIONS(4074), + [anon_sym_public] = ACTIONS(4074), + [anon_sym_protected] = ACTIONS(4074), + [anon_sym_static_assert] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4076), + }, + [STATE(3303)] = { + [sym_identifier] = ACTIONS(4078), + [aux_sym_preproc_def_token1] = ACTIONS(4078), + [aux_sym_preproc_if_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), + [sym_preproc_directive] = ACTIONS(4078), + [anon_sym_LPAREN2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_AMP_AMP] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4080), + [anon_sym___extension__] = ACTIONS(4078), + [anon_sym_typedef] = ACTIONS(4078), + [anon_sym_virtual] = ACTIONS(4078), + [anon_sym_extern] = ACTIONS(4078), + [anon_sym___attribute__] = ACTIONS(4078), + [anon_sym___attribute] = ACTIONS(4078), + [anon_sym_using] = ACTIONS(4078), + [anon_sym_COLON_COLON] = ACTIONS(4080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), + [anon_sym___declspec] = ACTIONS(4078), + [anon_sym___based] = ACTIONS(4078), + [anon_sym_RBRACE] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4078), + [anon_sym_unsigned] = ACTIONS(4078), + [anon_sym_long] = ACTIONS(4078), + [anon_sym_short] = ACTIONS(4078), + [anon_sym_LBRACK] = ACTIONS(4078), + [anon_sym_static] = ACTIONS(4078), + [anon_sym_register] = ACTIONS(4078), + [anon_sym_inline] = ACTIONS(4078), + [anon_sym___inline] = ACTIONS(4078), + [anon_sym___inline__] = ACTIONS(4078), + [anon_sym___forceinline] = ACTIONS(4078), + [anon_sym_thread_local] = ACTIONS(4078), + [anon_sym___thread] = ACTIONS(4078), + [anon_sym_const] = ACTIONS(4078), + [anon_sym_constexpr] = ACTIONS(4078), + [anon_sym_volatile] = ACTIONS(4078), + [anon_sym_restrict] = ACTIONS(4078), + [anon_sym___restrict__] = ACTIONS(4078), + [anon_sym__Atomic] = ACTIONS(4078), + [anon_sym__Noreturn] = ACTIONS(4078), + [anon_sym_noreturn] = ACTIONS(4078), + [anon_sym__Nonnull] = ACTIONS(4078), + [anon_sym_mutable] = ACTIONS(4078), + [anon_sym_constinit] = ACTIONS(4078), + [anon_sym_consteval] = ACTIONS(4078), + [anon_sym_alignas] = ACTIONS(4078), + [anon_sym__Alignas] = ACTIONS(4078), + [sym_primitive_type] = ACTIONS(4078), + [anon_sym_enum] = ACTIONS(4078), + [anon_sym_class] = ACTIONS(4078), + [anon_sym_struct] = ACTIONS(4078), + [anon_sym_union] = ACTIONS(4078), + [anon_sym_typename] = ACTIONS(4078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4078), + [anon_sym_decltype] = ACTIONS(4078), + [anon_sym_explicit] = ACTIONS(4078), + [anon_sym_private] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(4078), + [anon_sym_operator] = ACTIONS(4078), + [anon_sym_friend] = ACTIONS(4078), + [anon_sym_public] = ACTIONS(4078), + [anon_sym_protected] = ACTIONS(4078), + [anon_sym_static_assert] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4080), + }, + [STATE(3304)] = { + [sym_identifier] = ACTIONS(8337), + [aux_sym_preproc_def_token1] = ACTIONS(8337), + [aux_sym_preproc_if_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), + [sym_preproc_directive] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8339), + [anon_sym_TILDE] = ACTIONS(8339), + [anon_sym_STAR] = ACTIONS(8339), + [anon_sym_AMP_AMP] = ACTIONS(8339), + [anon_sym_AMP] = ACTIONS(8337), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___extension__] = ACTIONS(8337), + [anon_sym_typedef] = ACTIONS(8337), + [anon_sym_virtual] = ACTIONS(8337), + [anon_sym_extern] = ACTIONS(8337), + [anon_sym___attribute__] = ACTIONS(8337), + [anon_sym___attribute] = ACTIONS(8337), + [anon_sym_using] = ACTIONS(8337), + [anon_sym_COLON_COLON] = ACTIONS(8339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), + [anon_sym___declspec] = ACTIONS(8337), + [anon_sym___based] = ACTIONS(8337), + [anon_sym_RBRACE] = ACTIONS(8339), + [anon_sym_signed] = ACTIONS(8337), + [anon_sym_unsigned] = ACTIONS(8337), + [anon_sym_long] = ACTIONS(8337), + [anon_sym_short] = ACTIONS(8337), + [anon_sym_LBRACK] = ACTIONS(8337), + [anon_sym_static] = ACTIONS(8337), + [anon_sym_register] = ACTIONS(8337), + [anon_sym_inline] = ACTIONS(8337), + [anon_sym___inline] = ACTIONS(8337), + [anon_sym___inline__] = ACTIONS(8337), + [anon_sym___forceinline] = ACTIONS(8337), + [anon_sym_thread_local] = ACTIONS(8337), + [anon_sym___thread] = ACTIONS(8337), + [anon_sym_const] = ACTIONS(8337), + [anon_sym_constexpr] = ACTIONS(8337), + [anon_sym_volatile] = ACTIONS(8337), + [anon_sym_restrict] = ACTIONS(8337), + [anon_sym___restrict__] = ACTIONS(8337), + [anon_sym__Atomic] = ACTIONS(8337), + [anon_sym__Noreturn] = ACTIONS(8337), + [anon_sym_noreturn] = ACTIONS(8337), + [anon_sym__Nonnull] = ACTIONS(8337), + [anon_sym_mutable] = ACTIONS(8337), + [anon_sym_constinit] = ACTIONS(8337), + [anon_sym_consteval] = ACTIONS(8337), + [anon_sym_alignas] = ACTIONS(8337), + [anon_sym__Alignas] = ACTIONS(8337), + [sym_primitive_type] = ACTIONS(8337), + [anon_sym_enum] = ACTIONS(8337), + [anon_sym_class] = ACTIONS(8337), + [anon_sym_struct] = ACTIONS(8337), + [anon_sym_union] = ACTIONS(8337), + [anon_sym_typename] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8337), + [anon_sym_decltype] = ACTIONS(8337), + [anon_sym_explicit] = ACTIONS(8337), + [anon_sym_private] = ACTIONS(8337), + [anon_sym_template] = ACTIONS(8337), + [anon_sym_operator] = ACTIONS(8337), + [anon_sym_friend] = ACTIONS(8337), + [anon_sym_public] = ACTIONS(8337), + [anon_sym_protected] = ACTIONS(8337), + [anon_sym_static_assert] = ACTIONS(8337), + [anon_sym_LBRACK_COLON] = ACTIONS(8339), + }, + [STATE(3305)] = { + [sym_identifier] = ACTIONS(8333), + [aux_sym_preproc_def_token1] = ACTIONS(8333), + [aux_sym_preproc_if_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), + [sym_preproc_directive] = ACTIONS(8333), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_TILDE] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_AMP_AMP] = ACTIONS(8335), + [anon_sym_AMP] = ACTIONS(8333), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym___extension__] = ACTIONS(8333), + [anon_sym_typedef] = ACTIONS(8333), + [anon_sym_virtual] = ACTIONS(8333), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_using] = ACTIONS(8333), + [anon_sym_COLON_COLON] = ACTIONS(8335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_signed] = ACTIONS(8333), + [anon_sym_unsigned] = ACTIONS(8333), + [anon_sym_long] = ACTIONS(8333), + [anon_sym_short] = ACTIONS(8333), + [anon_sym_LBRACK] = ACTIONS(8333), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [anon_sym___inline] = ACTIONS(8333), + [anon_sym___inline__] = ACTIONS(8333), + [anon_sym___forceinline] = ACTIONS(8333), + [anon_sym_thread_local] = ACTIONS(8333), + [anon_sym___thread] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_constexpr] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym___restrict__] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym__Noreturn] = ACTIONS(8333), + [anon_sym_noreturn] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym_mutable] = ACTIONS(8333), + [anon_sym_constinit] = ACTIONS(8333), + [anon_sym_consteval] = ACTIONS(8333), + [anon_sym_alignas] = ACTIONS(8333), + [anon_sym__Alignas] = ACTIONS(8333), + [sym_primitive_type] = ACTIONS(8333), + [anon_sym_enum] = ACTIONS(8333), + [anon_sym_class] = ACTIONS(8333), + [anon_sym_struct] = ACTIONS(8333), + [anon_sym_union] = ACTIONS(8333), + [anon_sym_typename] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8333), + [anon_sym_decltype] = ACTIONS(8333), + [anon_sym_explicit] = ACTIONS(8333), + [anon_sym_private] = ACTIONS(8333), + [anon_sym_template] = ACTIONS(8333), + [anon_sym_operator] = ACTIONS(8333), + [anon_sym_friend] = ACTIONS(8333), + [anon_sym_public] = ACTIONS(8333), + [anon_sym_protected] = ACTIONS(8333), + [anon_sym_static_assert] = ACTIONS(8333), + [anon_sym_LBRACK_COLON] = ACTIONS(8335), + }, + [STATE(3306)] = { + [sym_identifier] = ACTIONS(4111), + [aux_sym_preproc_def_token1] = ACTIONS(4111), + [aux_sym_preproc_if_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), + [sym_preproc_directive] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_TILDE] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym___extension__] = ACTIONS(4111), + [anon_sym_typedef] = ACTIONS(4111), + [anon_sym_virtual] = ACTIONS(4111), + [anon_sym_extern] = ACTIONS(4111), + [anon_sym___attribute__] = ACTIONS(4111), + [anon_sym___attribute] = ACTIONS(4111), + [anon_sym_using] = ACTIONS(4111), + [anon_sym_COLON_COLON] = ACTIONS(4113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), + [anon_sym___declspec] = ACTIONS(4111), + [anon_sym___based] = ACTIONS(4111), + [anon_sym_RBRACE] = ACTIONS(4113), + [anon_sym_signed] = ACTIONS(4111), + [anon_sym_unsigned] = ACTIONS(4111), + [anon_sym_long] = ACTIONS(4111), + [anon_sym_short] = ACTIONS(4111), + [anon_sym_LBRACK] = ACTIONS(4111), + [anon_sym_static] = ACTIONS(4111), + [anon_sym_register] = ACTIONS(4111), + [anon_sym_inline] = ACTIONS(4111), + [anon_sym___inline] = ACTIONS(4111), + [anon_sym___inline__] = ACTIONS(4111), + [anon_sym___forceinline] = ACTIONS(4111), + [anon_sym_thread_local] = ACTIONS(4111), + [anon_sym___thread] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_constexpr] = ACTIONS(4111), + [anon_sym_volatile] = ACTIONS(4111), + [anon_sym_restrict] = ACTIONS(4111), + [anon_sym___restrict__] = ACTIONS(4111), + [anon_sym__Atomic] = ACTIONS(4111), + [anon_sym__Noreturn] = ACTIONS(4111), + [anon_sym_noreturn] = ACTIONS(4111), + [anon_sym__Nonnull] = ACTIONS(4111), + [anon_sym_mutable] = ACTIONS(4111), + [anon_sym_constinit] = ACTIONS(4111), + [anon_sym_consteval] = ACTIONS(4111), + [anon_sym_alignas] = ACTIONS(4111), + [anon_sym__Alignas] = ACTIONS(4111), + [sym_primitive_type] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_class] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_typename] = ACTIONS(4111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4111), + [anon_sym_decltype] = ACTIONS(4111), + [anon_sym_explicit] = ACTIONS(4111), + [anon_sym_private] = ACTIONS(4111), + [anon_sym_template] = ACTIONS(4111), + [anon_sym_operator] = ACTIONS(4111), + [anon_sym_friend] = ACTIONS(4111), + [anon_sym_public] = ACTIONS(4111), + [anon_sym_protected] = ACTIONS(4111), + [anon_sym_static_assert] = ACTIONS(4111), + [anon_sym_LBRACK_COLON] = ACTIONS(4113), + }, + [STATE(3307)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), + [anon_sym_COMMA] = ACTIONS(7109), + [anon_sym_RPAREN] = ACTIONS(7109), + [anon_sym_LPAREN2] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7107), + [anon_sym_PLUS] = ACTIONS(7107), + [anon_sym_STAR] = ACTIONS(7107), + [anon_sym_SLASH] = ACTIONS(7107), + [anon_sym_PERCENT] = ACTIONS(7107), + [anon_sym_PIPE_PIPE] = ACTIONS(7109), + [anon_sym_AMP_AMP] = ACTIONS(7109), + [anon_sym_PIPE] = ACTIONS(7107), + [anon_sym_CARET] = ACTIONS(7107), + [anon_sym_AMP] = ACTIONS(7107), + [anon_sym_EQ_EQ] = ACTIONS(7109), + [anon_sym_BANG_EQ] = ACTIONS(7109), + [anon_sym_GT] = ACTIONS(7107), + [anon_sym_GT_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ] = ACTIONS(7107), + [anon_sym_LT] = ACTIONS(7107), + [anon_sym_LT_LT] = ACTIONS(7107), + [anon_sym_GT_GT] = ACTIONS(7107), + [anon_sym___extension__] = ACTIONS(7109), + [anon_sym_COLON_COLON] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7109), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_EQ] = ACTIONS(7107), + [anon_sym_const] = ACTIONS(7107), + [anon_sym_constexpr] = ACTIONS(7109), + [anon_sym_volatile] = ACTIONS(7109), + [anon_sym_restrict] = ACTIONS(7109), + [anon_sym___restrict__] = ACTIONS(7109), + [anon_sym__Atomic] = ACTIONS(7109), + [anon_sym__Noreturn] = ACTIONS(7109), + [anon_sym_noreturn] = ACTIONS(7109), + [anon_sym__Nonnull] = ACTIONS(7109), + [anon_sym_mutable] = ACTIONS(7109), + [anon_sym_constinit] = ACTIONS(7109), + [anon_sym_consteval] = ACTIONS(7109), + [anon_sym_alignas] = ACTIONS(7109), + [anon_sym__Alignas] = ACTIONS(7109), + [anon_sym_QMARK] = ACTIONS(7109), + [anon_sym_STAR_EQ] = ACTIONS(7109), + [anon_sym_SLASH_EQ] = ACTIONS(7109), + [anon_sym_PERCENT_EQ] = ACTIONS(7109), + [anon_sym_PLUS_EQ] = ACTIONS(7109), + [anon_sym_DASH_EQ] = ACTIONS(7109), + [anon_sym_LT_LT_EQ] = ACTIONS(7109), + [anon_sym_GT_GT_EQ] = ACTIONS(7109), + [anon_sym_AMP_EQ] = ACTIONS(7109), + [anon_sym_CARET_EQ] = ACTIONS(7109), + [anon_sym_PIPE_EQ] = ACTIONS(7109), + [anon_sym_LT_EQ_GT] = ACTIONS(7109), + [anon_sym_or] = ACTIONS(7109), + [anon_sym_and] = ACTIONS(7109), + [anon_sym_bitor] = ACTIONS(7109), + [anon_sym_xor] = ACTIONS(7109), + [anon_sym_bitand] = ACTIONS(7109), + [anon_sym_not_eq] = ACTIONS(7109), + [anon_sym_DASH_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7109), + [anon_sym_DOT] = ACTIONS(7107), + [anon_sym_DOT_STAR] = ACTIONS(7109), + [anon_sym_DASH_GT] = ACTIONS(7107), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7109), + [anon_sym_override] = ACTIONS(7109), + [anon_sym_requires] = ACTIONS(7109), + [anon_sym_DASH_GT_STAR] = ACTIONS(7109), + }, + [STATE(3308)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token2] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_friend] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + }, + [STATE(3309)] = { + [sym_identifier] = ACTIONS(8438), + [aux_sym_preproc_def_token1] = ACTIONS(8438), + [aux_sym_preproc_if_token1] = ACTIONS(8438), + [aux_sym_preproc_if_token2] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), + [sym_preproc_directive] = ACTIONS(8438), + [anon_sym_LPAREN2] = ACTIONS(8440), + [anon_sym_TILDE] = ACTIONS(8440), + [anon_sym_STAR] = ACTIONS(8440), + [anon_sym_AMP_AMP] = ACTIONS(8440), + [anon_sym_AMP] = ACTIONS(8438), + [anon_sym_SEMI] = ACTIONS(8440), + [anon_sym___extension__] = ACTIONS(8438), + [anon_sym_typedef] = ACTIONS(8438), + [anon_sym_virtual] = ACTIONS(8438), + [anon_sym_extern] = ACTIONS(8438), + [anon_sym___attribute__] = ACTIONS(8438), + [anon_sym___attribute] = ACTIONS(8438), + [anon_sym_using] = ACTIONS(8438), + [anon_sym_COLON_COLON] = ACTIONS(8440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), + [anon_sym___declspec] = ACTIONS(8438), + [anon_sym___based] = ACTIONS(8438), + [anon_sym_signed] = ACTIONS(8438), + [anon_sym_unsigned] = ACTIONS(8438), + [anon_sym_long] = ACTIONS(8438), + [anon_sym_short] = ACTIONS(8438), + [anon_sym_LBRACK] = ACTIONS(8438), + [anon_sym_static] = ACTIONS(8438), + [anon_sym_register] = ACTIONS(8438), + [anon_sym_inline] = ACTIONS(8438), + [anon_sym___inline] = ACTIONS(8438), + [anon_sym___inline__] = ACTIONS(8438), + [anon_sym___forceinline] = ACTIONS(8438), + [anon_sym_thread_local] = ACTIONS(8438), + [anon_sym___thread] = ACTIONS(8438), + [anon_sym_const] = ACTIONS(8438), + [anon_sym_constexpr] = ACTIONS(8438), + [anon_sym_volatile] = ACTIONS(8438), + [anon_sym_restrict] = ACTIONS(8438), + [anon_sym___restrict__] = ACTIONS(8438), + [anon_sym__Atomic] = ACTIONS(8438), + [anon_sym__Noreturn] = ACTIONS(8438), + [anon_sym_noreturn] = ACTIONS(8438), + [anon_sym__Nonnull] = ACTIONS(8438), + [anon_sym_mutable] = ACTIONS(8438), + [anon_sym_constinit] = ACTIONS(8438), + [anon_sym_consteval] = ACTIONS(8438), + [anon_sym_alignas] = ACTIONS(8438), + [anon_sym__Alignas] = ACTIONS(8438), + [sym_primitive_type] = ACTIONS(8438), + [anon_sym_enum] = ACTIONS(8438), + [anon_sym_class] = ACTIONS(8438), + [anon_sym_struct] = ACTIONS(8438), + [anon_sym_union] = ACTIONS(8438), + [anon_sym_typename] = ACTIONS(8438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8438), + [anon_sym_decltype] = ACTIONS(8438), + [anon_sym_explicit] = ACTIONS(8438), + [anon_sym_private] = ACTIONS(8438), + [anon_sym_template] = ACTIONS(8438), + [anon_sym_operator] = ACTIONS(8438), + [anon_sym_friend] = ACTIONS(8438), + [anon_sym_public] = ACTIONS(8438), + [anon_sym_protected] = ACTIONS(8438), + [anon_sym_static_assert] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(8440), + }, + [STATE(3310)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(3311)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(3313)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(3314)] = { + [sym_identifier] = ACTIONS(4090), + [aux_sym_preproc_def_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token1] = ACTIONS(4090), + [aux_sym_preproc_if_token2] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), + [sym_preproc_directive] = ACTIONS(4090), + [anon_sym_LPAREN2] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_AMP_AMP] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4090), + [anon_sym_SEMI] = ACTIONS(4092), + [anon_sym___extension__] = ACTIONS(4090), + [anon_sym_typedef] = ACTIONS(4090), + [anon_sym_virtual] = ACTIONS(4090), + [anon_sym_extern] = ACTIONS(4090), + [anon_sym___attribute__] = ACTIONS(4090), + [anon_sym___attribute] = ACTIONS(4090), + [anon_sym_using] = ACTIONS(4090), + [anon_sym_COLON_COLON] = ACTIONS(4092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), + [anon_sym___declspec] = ACTIONS(4090), + [anon_sym___based] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4090), + [anon_sym_unsigned] = ACTIONS(4090), + [anon_sym_long] = ACTIONS(4090), + [anon_sym_short] = ACTIONS(4090), + [anon_sym_LBRACK] = ACTIONS(4090), + [anon_sym_static] = ACTIONS(4090), + [anon_sym_register] = ACTIONS(4090), + [anon_sym_inline] = ACTIONS(4090), + [anon_sym___inline] = ACTIONS(4090), + [anon_sym___inline__] = ACTIONS(4090), + [anon_sym___forceinline] = ACTIONS(4090), + [anon_sym_thread_local] = ACTIONS(4090), + [anon_sym___thread] = ACTIONS(4090), + [anon_sym_const] = ACTIONS(4090), + [anon_sym_constexpr] = ACTIONS(4090), + [anon_sym_volatile] = ACTIONS(4090), + [anon_sym_restrict] = ACTIONS(4090), + [anon_sym___restrict__] = ACTIONS(4090), + [anon_sym__Atomic] = ACTIONS(4090), + [anon_sym__Noreturn] = ACTIONS(4090), + [anon_sym_noreturn] = ACTIONS(4090), + [anon_sym__Nonnull] = ACTIONS(4090), + [anon_sym_mutable] = ACTIONS(4090), + [anon_sym_constinit] = ACTIONS(4090), + [anon_sym_consteval] = ACTIONS(4090), + [anon_sym_alignas] = ACTIONS(4090), + [anon_sym__Alignas] = ACTIONS(4090), + [sym_primitive_type] = ACTIONS(4090), + [anon_sym_enum] = ACTIONS(4090), + [anon_sym_class] = ACTIONS(4090), + [anon_sym_struct] = ACTIONS(4090), + [anon_sym_union] = ACTIONS(4090), + [anon_sym_typename] = ACTIONS(4090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4090), + [anon_sym_decltype] = ACTIONS(4090), + [anon_sym_explicit] = ACTIONS(4090), + [anon_sym_private] = ACTIONS(4090), + [anon_sym_template] = ACTIONS(4090), + [anon_sym_operator] = ACTIONS(4090), + [anon_sym_friend] = ACTIONS(4090), + [anon_sym_public] = ACTIONS(4090), + [anon_sym_protected] = ACTIONS(4090), + [anon_sym_static_assert] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4092), + }, + [STATE(3315)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [aux_sym_preproc_if_token2] = ACTIONS(7416), + [aux_sym_preproc_else_token1] = ACTIONS(7416), + [aux_sym_preproc_elif_token1] = ACTIONS(7414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7416), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7416), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7416), + [anon_sym_GT_GT] = ACTIONS(7416), + [anon_sym___extension__] = ACTIONS(7414), + [anon_sym___attribute__] = ACTIONS(7414), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_RBRACK] = ACTIONS(7416), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7414), + [anon_sym_volatile] = ACTIONS(7414), + [anon_sym_restrict] = ACTIONS(7414), + [anon_sym___restrict__] = ACTIONS(7414), + [anon_sym__Atomic] = ACTIONS(7414), + [anon_sym__Noreturn] = ACTIONS(7414), + [anon_sym_noreturn] = ACTIONS(7414), + [anon_sym__Nonnull] = ACTIONS(7414), + [anon_sym_mutable] = ACTIONS(7414), + [anon_sym_constinit] = ACTIONS(7414), + [anon_sym_consteval] = ACTIONS(7414), + [anon_sym_alignas] = ACTIONS(7414), + [anon_sym__Alignas] = ACTIONS(7414), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7414), + [anon_sym_and] = ACTIONS(7414), + [anon_sym_bitor] = ACTIONS(7414), + [anon_sym_xor] = ACTIONS(7414), + [anon_sym_bitand] = ACTIONS(7414), + [anon_sym_not_eq] = ACTIONS(7414), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7414), + [anon_sym_override] = ACTIONS(7414), + [anon_sym_requires] = ACTIONS(7414), + }, + [STATE(3316)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [aux_sym_preproc_if_token2] = ACTIONS(7201), + [aux_sym_preproc_else_token1] = ACTIONS(7201), + [aux_sym_preproc_elif_token1] = ACTIONS(7199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7201), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7201), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7201), + [anon_sym_GT_GT] = ACTIONS(7201), + [anon_sym___extension__] = ACTIONS(7199), + [anon_sym___attribute__] = ACTIONS(7199), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_RBRACK] = ACTIONS(7201), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7199), + [anon_sym_volatile] = ACTIONS(7199), + [anon_sym_restrict] = ACTIONS(7199), + [anon_sym___restrict__] = ACTIONS(7199), + [anon_sym__Atomic] = ACTIONS(7199), + [anon_sym__Noreturn] = ACTIONS(7199), + [anon_sym_noreturn] = ACTIONS(7199), + [anon_sym__Nonnull] = ACTIONS(7199), + [anon_sym_mutable] = ACTIONS(7199), + [anon_sym_constinit] = ACTIONS(7199), + [anon_sym_consteval] = ACTIONS(7199), + [anon_sym_alignas] = ACTIONS(7199), + [anon_sym__Alignas] = ACTIONS(7199), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7199), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7199), + [anon_sym_not_eq] = ACTIONS(7199), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7199), + [anon_sym_override] = ACTIONS(7199), + [anon_sym_requires] = ACTIONS(7199), + }, + [STATE(3317)] = { + [sym_identifier] = ACTIONS(8442), + [aux_sym_preproc_def_token1] = ACTIONS(8442), + [aux_sym_preproc_if_token1] = ACTIONS(8442), + [aux_sym_preproc_if_token2] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), + [sym_preproc_directive] = ACTIONS(8442), + [anon_sym_LPAREN2] = ACTIONS(8444), + [anon_sym_TILDE] = ACTIONS(8444), + [anon_sym_STAR] = ACTIONS(8444), + [anon_sym_AMP_AMP] = ACTIONS(8444), + [anon_sym_AMP] = ACTIONS(8442), + [anon_sym_SEMI] = ACTIONS(8444), + [anon_sym___extension__] = ACTIONS(8442), + [anon_sym_typedef] = ACTIONS(8442), + [anon_sym_virtual] = ACTIONS(8442), + [anon_sym_extern] = ACTIONS(8442), + [anon_sym___attribute__] = ACTIONS(8442), + [anon_sym___attribute] = ACTIONS(8442), + [anon_sym_using] = ACTIONS(8442), + [anon_sym_COLON_COLON] = ACTIONS(8444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), + [anon_sym___declspec] = ACTIONS(8442), + [anon_sym___based] = ACTIONS(8442), + [anon_sym_signed] = ACTIONS(8442), + [anon_sym_unsigned] = ACTIONS(8442), + [anon_sym_long] = ACTIONS(8442), + [anon_sym_short] = ACTIONS(8442), + [anon_sym_LBRACK] = ACTIONS(8442), + [anon_sym_static] = ACTIONS(8442), + [anon_sym_register] = ACTIONS(8442), + [anon_sym_inline] = ACTIONS(8442), + [anon_sym___inline] = ACTIONS(8442), + [anon_sym___inline__] = ACTIONS(8442), + [anon_sym___forceinline] = ACTIONS(8442), + [anon_sym_thread_local] = ACTIONS(8442), + [anon_sym___thread] = ACTIONS(8442), + [anon_sym_const] = ACTIONS(8442), + [anon_sym_constexpr] = ACTIONS(8442), + [anon_sym_volatile] = ACTIONS(8442), + [anon_sym_restrict] = ACTIONS(8442), + [anon_sym___restrict__] = ACTIONS(8442), + [anon_sym__Atomic] = ACTIONS(8442), + [anon_sym__Noreturn] = ACTIONS(8442), + [anon_sym_noreturn] = ACTIONS(8442), + [anon_sym__Nonnull] = ACTIONS(8442), + [anon_sym_mutable] = ACTIONS(8442), + [anon_sym_constinit] = ACTIONS(8442), + [anon_sym_consteval] = ACTIONS(8442), + [anon_sym_alignas] = ACTIONS(8442), + [anon_sym__Alignas] = ACTIONS(8442), + [sym_primitive_type] = ACTIONS(8442), + [anon_sym_enum] = ACTIONS(8442), + [anon_sym_class] = ACTIONS(8442), + [anon_sym_struct] = ACTIONS(8442), + [anon_sym_union] = ACTIONS(8442), + [anon_sym_typename] = ACTIONS(8442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8442), + [anon_sym_decltype] = ACTIONS(8442), + [anon_sym_explicit] = ACTIONS(8442), + [anon_sym_private] = ACTIONS(8442), + [anon_sym_template] = ACTIONS(8442), + [anon_sym_operator] = ACTIONS(8442), + [anon_sym_friend] = ACTIONS(8442), + [anon_sym_public] = ACTIONS(8442), + [anon_sym_protected] = ACTIONS(8442), + [anon_sym_static_assert] = ACTIONS(8442), + [anon_sym_LBRACK_COLON] = ACTIONS(8444), + }, + [STATE(3318)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3361), + [sym_identifier] = ACTIONS(7213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [aux_sym_preproc_if_token2] = ACTIONS(7215), + [aux_sym_preproc_else_token1] = ACTIONS(7215), + [aux_sym_preproc_elif_token1] = ACTIONS(7213), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7215), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7215), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7215), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7215), + [anon_sym_GT_GT] = ACTIONS(7215), + [anon_sym___extension__] = ACTIONS(7213), + [anon_sym___attribute__] = ACTIONS(7213), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(8784), + [anon_sym_unsigned] = ACTIONS(8784), + [anon_sym_long] = ACTIONS(8784), + [anon_sym_short] = ACTIONS(8784), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_RBRACK] = ACTIONS(7215), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7213), + [anon_sym_volatile] = ACTIONS(7213), + [anon_sym_restrict] = ACTIONS(7213), + [anon_sym___restrict__] = ACTIONS(7213), + [anon_sym__Atomic] = ACTIONS(7213), + [anon_sym__Noreturn] = ACTIONS(7213), + [anon_sym_noreturn] = ACTIONS(7213), + [anon_sym__Nonnull] = ACTIONS(7213), + [anon_sym_mutable] = ACTIONS(7213), + [anon_sym_constinit] = ACTIONS(7213), + [anon_sym_consteval] = ACTIONS(7213), + [anon_sym_alignas] = ACTIONS(7213), + [anon_sym__Alignas] = ACTIONS(7213), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7213), + [anon_sym_and] = ACTIONS(7213), + [anon_sym_bitor] = ACTIONS(7213), + [anon_sym_xor] = ACTIONS(7213), + [anon_sym_bitand] = ACTIONS(7213), + [anon_sym_not_eq] = ACTIONS(7213), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7215), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7213), + [anon_sym_override] = ACTIONS(7213), + [anon_sym_requires] = ACTIONS(7213), + }, + [STATE(3319)] = { + [sym_identifier] = ACTIONS(3926), + [aux_sym_preproc_def_token1] = ACTIONS(3926), + [aux_sym_preproc_if_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), + [sym_preproc_directive] = ACTIONS(3926), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3926), + [anon_sym_typedef] = ACTIONS(3926), + [anon_sym_virtual] = ACTIONS(3926), + [anon_sym_extern] = ACTIONS(3926), + [anon_sym___attribute__] = ACTIONS(3926), + [anon_sym___attribute] = ACTIONS(3926), + [anon_sym_using] = ACTIONS(3926), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3926), + [anon_sym___based] = ACTIONS(3926), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3926), + [anon_sym_unsigned] = ACTIONS(3926), + [anon_sym_long] = ACTIONS(3926), + [anon_sym_short] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3926), + [anon_sym_static] = ACTIONS(3926), + [anon_sym_register] = ACTIONS(3926), + [anon_sym_inline] = ACTIONS(3926), + [anon_sym___inline] = ACTIONS(3926), + [anon_sym___inline__] = ACTIONS(3926), + [anon_sym___forceinline] = ACTIONS(3926), + [anon_sym_thread_local] = ACTIONS(3926), + [anon_sym___thread] = ACTIONS(3926), + [anon_sym_const] = ACTIONS(3926), + [anon_sym_constexpr] = ACTIONS(3926), + [anon_sym_volatile] = ACTIONS(3926), + [anon_sym_restrict] = ACTIONS(3926), + [anon_sym___restrict__] = ACTIONS(3926), + [anon_sym__Atomic] = ACTIONS(3926), + [anon_sym__Noreturn] = ACTIONS(3926), + [anon_sym_noreturn] = ACTIONS(3926), + [anon_sym__Nonnull] = ACTIONS(3926), + [anon_sym_mutable] = ACTIONS(3926), + [anon_sym_constinit] = ACTIONS(3926), + [anon_sym_consteval] = ACTIONS(3926), + [anon_sym_alignas] = ACTIONS(3926), + [anon_sym__Alignas] = ACTIONS(3926), + [sym_primitive_type] = ACTIONS(3926), + [anon_sym_enum] = ACTIONS(3926), + [anon_sym_class] = ACTIONS(3926), + [anon_sym_struct] = ACTIONS(3926), + [anon_sym_union] = ACTIONS(3926), + [anon_sym_typename] = ACTIONS(3926), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3926), + [anon_sym_decltype] = ACTIONS(3926), + [anon_sym_explicit] = ACTIONS(3926), + [anon_sym_private] = ACTIONS(3926), + [anon_sym_template] = ACTIONS(3926), + [anon_sym_operator] = ACTIONS(3926), + [anon_sym_friend] = ACTIONS(3926), + [anon_sym_public] = ACTIONS(3926), + [anon_sym_protected] = ACTIONS(3926), + [anon_sym_static_assert] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + }, + [STATE(3320)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3362), + [sym_identifier] = ACTIONS(7239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [aux_sym_preproc_if_token2] = ACTIONS(7241), + [aux_sym_preproc_else_token1] = ACTIONS(7241), + [aux_sym_preproc_elif_token1] = ACTIONS(7239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7241), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7241), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7241), + [anon_sym_GT_GT] = ACTIONS(7241), + [anon_sym___extension__] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_RBRACK] = ACTIONS(7241), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7239), + [anon_sym_volatile] = ACTIONS(7239), + [anon_sym_restrict] = ACTIONS(7239), + [anon_sym___restrict__] = ACTIONS(7239), + [anon_sym__Atomic] = ACTIONS(7239), + [anon_sym__Noreturn] = ACTIONS(7239), + [anon_sym_noreturn] = ACTIONS(7239), + [anon_sym__Nonnull] = ACTIONS(7239), + [anon_sym_mutable] = ACTIONS(7239), + [anon_sym_constinit] = ACTIONS(7239), + [anon_sym_consteval] = ACTIONS(7239), + [anon_sym_alignas] = ACTIONS(7239), + [anon_sym__Alignas] = ACTIONS(7239), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7239), + [anon_sym_and] = ACTIONS(7239), + [anon_sym_bitor] = ACTIONS(7239), + [anon_sym_xor] = ACTIONS(7239), + [anon_sym_bitand] = ACTIONS(7239), + [anon_sym_not_eq] = ACTIONS(7239), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7239), + [anon_sym_override] = ACTIONS(7239), + [anon_sym_requires] = ACTIONS(7239), + }, + [STATE(3321)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym_RBRACE] = ACTIONS(3932), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_friend] = ACTIONS(3930), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + }, + [STATE(3322)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [aux_sym_preproc_if_token2] = ACTIONS(7251), + [aux_sym_preproc_else_token1] = ACTIONS(7251), + [aux_sym_preproc_elif_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7249), + [anon_sym___attribute__] = ACTIONS(7249), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_RBRACK] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7249), + [anon_sym_volatile] = ACTIONS(7249), + [anon_sym_restrict] = ACTIONS(7249), + [anon_sym___restrict__] = ACTIONS(7249), + [anon_sym__Atomic] = ACTIONS(7249), + [anon_sym__Noreturn] = ACTIONS(7249), + [anon_sym_noreturn] = ACTIONS(7249), + [anon_sym__Nonnull] = ACTIONS(7249), + [anon_sym_mutable] = ACTIONS(7249), + [anon_sym_constinit] = ACTIONS(7249), + [anon_sym_consteval] = ACTIONS(7249), + [anon_sym_alignas] = ACTIONS(7249), + [anon_sym__Alignas] = ACTIONS(7249), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7249), + [anon_sym_and] = ACTIONS(7249), + [anon_sym_bitor] = ACTIONS(7249), + [anon_sym_xor] = ACTIONS(7249), + [anon_sym_bitand] = ACTIONS(7249), + [anon_sym_not_eq] = ACTIONS(7249), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7249), + [anon_sym_override] = ACTIONS(7249), + [anon_sym_requires] = ACTIONS(7249), + }, + [STATE(3323)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_private] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_friend] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3934), + [anon_sym_protected] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + }, + [STATE(3324)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_friend] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + }, + [STATE(3325)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3944), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_friend] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + }, + [STATE(3326)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym_RBRACE] = ACTIONS(3948), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_private] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_friend] = ACTIONS(3946), + [anon_sym_public] = ACTIONS(3946), + [anon_sym_protected] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + }, + [STATE(3327)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_friend] = ACTIONS(3950), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + }, + [STATE(3328)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_attribute_declaration] = STATE(4729), + [sym_gnu_asm_expression] = STATE(8972), + [sym_virtual_specifier] = STATE(4992), + [sym__function_attributes_end] = STATE(4507), + [sym__function_postfix] = STATE(5531), + [sym_trailing_return_type] = STATE(4602), + [sym_requires_clause] = STATE(5531), + [aux_sym_type_definition_repeat1] = STATE(4247), + [aux_sym_attributed_declarator_repeat1] = STATE(4729), + [aux_sym__function_postfix_repeat1] = STATE(4992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym___attribute__] = ACTIONS(6410), + [anon_sym___attribute] = ACTIONS(6412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + }, + [STATE(3329)] = { + [sym_identifier] = ACTIONS(3930), + [aux_sym_preproc_def_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token1] = ACTIONS(3930), + [aux_sym_preproc_if_token2] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), + [sym_preproc_directive] = ACTIONS(3930), + [anon_sym_LPAREN2] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_AMP_AMP] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3930), + [anon_sym_SEMI] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(3930), + [anon_sym_typedef] = ACTIONS(3930), + [anon_sym_virtual] = ACTIONS(3930), + [anon_sym_extern] = ACTIONS(3930), + [anon_sym___attribute__] = ACTIONS(3930), + [anon_sym___attribute] = ACTIONS(3930), + [anon_sym_using] = ACTIONS(3930), + [anon_sym_COLON_COLON] = ACTIONS(3932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), + [anon_sym___declspec] = ACTIONS(3930), + [anon_sym___based] = ACTIONS(3930), + [anon_sym_signed] = ACTIONS(3930), + [anon_sym_unsigned] = ACTIONS(3930), + [anon_sym_long] = ACTIONS(3930), + [anon_sym_short] = ACTIONS(3930), + [anon_sym_LBRACK] = ACTIONS(3930), + [anon_sym_static] = ACTIONS(3930), + [anon_sym_register] = ACTIONS(3930), + [anon_sym_inline] = ACTIONS(3930), + [anon_sym___inline] = ACTIONS(3930), + [anon_sym___inline__] = ACTIONS(3930), + [anon_sym___forceinline] = ACTIONS(3930), + [anon_sym_thread_local] = ACTIONS(3930), + [anon_sym___thread] = ACTIONS(3930), + [anon_sym_const] = ACTIONS(3930), + [anon_sym_constexpr] = ACTIONS(3930), + [anon_sym_volatile] = ACTIONS(3930), + [anon_sym_restrict] = ACTIONS(3930), + [anon_sym___restrict__] = ACTIONS(3930), + [anon_sym__Atomic] = ACTIONS(3930), + [anon_sym__Noreturn] = ACTIONS(3930), + [anon_sym_noreturn] = ACTIONS(3930), + [anon_sym__Nonnull] = ACTIONS(3930), + [anon_sym_mutable] = ACTIONS(3930), + [anon_sym_constinit] = ACTIONS(3930), + [anon_sym_consteval] = ACTIONS(3930), + [anon_sym_alignas] = ACTIONS(3930), + [anon_sym__Alignas] = ACTIONS(3930), + [sym_primitive_type] = ACTIONS(3930), + [anon_sym_enum] = ACTIONS(3930), + [anon_sym_class] = ACTIONS(3930), + [anon_sym_struct] = ACTIONS(3930), + [anon_sym_union] = ACTIONS(3930), + [anon_sym_typename] = ACTIONS(3930), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3930), + [anon_sym_decltype] = ACTIONS(3930), + [anon_sym_explicit] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_template] = ACTIONS(3930), + [anon_sym_operator] = ACTIONS(3930), + [anon_sym_friend] = ACTIONS(3930), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_static_assert] = ACTIONS(3930), + [anon_sym_LBRACK_COLON] = ACTIONS(3932), + }, + [STATE(3330)] = { + [sym_identifier] = ACTIONS(3934), + [aux_sym_preproc_def_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token1] = ACTIONS(3934), + [aux_sym_preproc_if_token2] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), + [sym_preproc_directive] = ACTIONS(3934), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_TILDE] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3936), + [anon_sym_AMP_AMP] = ACTIONS(3936), + [anon_sym_AMP] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym___extension__] = ACTIONS(3934), + [anon_sym_typedef] = ACTIONS(3934), + [anon_sym_virtual] = ACTIONS(3934), + [anon_sym_extern] = ACTIONS(3934), + [anon_sym___attribute__] = ACTIONS(3934), + [anon_sym___attribute] = ACTIONS(3934), + [anon_sym_using] = ACTIONS(3934), + [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), + [anon_sym___declspec] = ACTIONS(3934), + [anon_sym___based] = ACTIONS(3934), + [anon_sym_signed] = ACTIONS(3934), + [anon_sym_unsigned] = ACTIONS(3934), + [anon_sym_long] = ACTIONS(3934), + [anon_sym_short] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_static] = ACTIONS(3934), + [anon_sym_register] = ACTIONS(3934), + [anon_sym_inline] = ACTIONS(3934), + [anon_sym___inline] = ACTIONS(3934), + [anon_sym___inline__] = ACTIONS(3934), + [anon_sym___forceinline] = ACTIONS(3934), + [anon_sym_thread_local] = ACTIONS(3934), + [anon_sym___thread] = ACTIONS(3934), + [anon_sym_const] = ACTIONS(3934), + [anon_sym_constexpr] = ACTIONS(3934), + [anon_sym_volatile] = ACTIONS(3934), + [anon_sym_restrict] = ACTIONS(3934), + [anon_sym___restrict__] = ACTIONS(3934), + [anon_sym__Atomic] = ACTIONS(3934), + [anon_sym__Noreturn] = ACTIONS(3934), + [anon_sym_noreturn] = ACTIONS(3934), + [anon_sym__Nonnull] = ACTIONS(3934), + [anon_sym_mutable] = ACTIONS(3934), + [anon_sym_constinit] = ACTIONS(3934), + [anon_sym_consteval] = ACTIONS(3934), + [anon_sym_alignas] = ACTIONS(3934), + [anon_sym__Alignas] = ACTIONS(3934), + [sym_primitive_type] = ACTIONS(3934), + [anon_sym_enum] = ACTIONS(3934), + [anon_sym_class] = ACTIONS(3934), + [anon_sym_struct] = ACTIONS(3934), + [anon_sym_union] = ACTIONS(3934), + [anon_sym_typename] = ACTIONS(3934), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3934), + [anon_sym_decltype] = ACTIONS(3934), + [anon_sym_explicit] = ACTIONS(3934), + [anon_sym_private] = ACTIONS(3934), + [anon_sym_template] = ACTIONS(3934), + [anon_sym_operator] = ACTIONS(3934), + [anon_sym_friend] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3934), + [anon_sym_protected] = ACTIONS(3934), + [anon_sym_static_assert] = ACTIONS(3934), + [anon_sym_LBRACK_COLON] = ACTIONS(3936), + }, + [STATE(3331)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token2] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_private] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(3884), + [anon_sym_public] = ACTIONS(3884), + [anon_sym_protected] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + }, + [STATE(3332)] = { + [sym_identifier] = ACTIONS(3884), + [aux_sym_preproc_def_token1] = ACTIONS(3884), + [aux_sym_preproc_if_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), + [sym_preproc_directive] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_TILDE] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym___extension__] = ACTIONS(3884), + [anon_sym_typedef] = ACTIONS(3884), + [anon_sym_virtual] = ACTIONS(3884), + [anon_sym_extern] = ACTIONS(3884), + [anon_sym___attribute__] = ACTIONS(3884), + [anon_sym___attribute] = ACTIONS(3884), + [anon_sym_using] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), + [anon_sym___declspec] = ACTIONS(3884), + [anon_sym___based] = ACTIONS(3884), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3884), + [anon_sym_unsigned] = ACTIONS(3884), + [anon_sym_long] = ACTIONS(3884), + [anon_sym_short] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_static] = ACTIONS(3884), + [anon_sym_register] = ACTIONS(3884), + [anon_sym_inline] = ACTIONS(3884), + [anon_sym___inline] = ACTIONS(3884), + [anon_sym___inline__] = ACTIONS(3884), + [anon_sym___forceinline] = ACTIONS(3884), + [anon_sym_thread_local] = ACTIONS(3884), + [anon_sym___thread] = ACTIONS(3884), + [anon_sym_const] = ACTIONS(3884), + [anon_sym_constexpr] = ACTIONS(3884), + [anon_sym_volatile] = ACTIONS(3884), + [anon_sym_restrict] = ACTIONS(3884), + [anon_sym___restrict__] = ACTIONS(3884), + [anon_sym__Atomic] = ACTIONS(3884), + [anon_sym__Noreturn] = ACTIONS(3884), + [anon_sym_noreturn] = ACTIONS(3884), + [anon_sym__Nonnull] = ACTIONS(3884), + [anon_sym_mutable] = ACTIONS(3884), + [anon_sym_constinit] = ACTIONS(3884), + [anon_sym_consteval] = ACTIONS(3884), + [anon_sym_alignas] = ACTIONS(3884), + [anon_sym__Alignas] = ACTIONS(3884), + [sym_primitive_type] = ACTIONS(3884), + [anon_sym_enum] = ACTIONS(3884), + [anon_sym_class] = ACTIONS(3884), + [anon_sym_struct] = ACTIONS(3884), + [anon_sym_union] = ACTIONS(3884), + [anon_sym_typename] = ACTIONS(3884), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3884), + [anon_sym_decltype] = ACTIONS(3884), + [anon_sym_explicit] = ACTIONS(3884), + [anon_sym_private] = ACTIONS(3884), + [anon_sym_template] = ACTIONS(3884), + [anon_sym_operator] = ACTIONS(3884), + [anon_sym_friend] = ACTIONS(3884), + [anon_sym_public] = ACTIONS(3884), + [anon_sym_protected] = ACTIONS(3884), + [anon_sym_static_assert] = ACTIONS(3884), + [anon_sym_LBRACK_COLON] = ACTIONS(3886), + }, + [STATE(3333)] = { + [sym_identifier] = ACTIONS(6790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [aux_sym_preproc_if_token2] = ACTIONS(6792), + [aux_sym_preproc_else_token1] = ACTIONS(6792), + [aux_sym_preproc_elif_token1] = ACTIONS(6790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6792), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6792), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6792), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6792), + [anon_sym_GT_GT] = ACTIONS(6792), + [anon_sym_SEMI] = ACTIONS(6792), + [anon_sym___extension__] = ACTIONS(6790), + [anon_sym___attribute__] = ACTIONS(6790), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_COLON] = ACTIONS(6790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6790), + [anon_sym_volatile] = ACTIONS(6790), + [anon_sym_restrict] = ACTIONS(6790), + [anon_sym___restrict__] = ACTIONS(6790), + [anon_sym__Atomic] = ACTIONS(6790), + [anon_sym__Noreturn] = ACTIONS(6790), + [anon_sym_noreturn] = ACTIONS(6790), + [anon_sym__Nonnull] = ACTIONS(6790), + [anon_sym_mutable] = ACTIONS(6790), + [anon_sym_constinit] = ACTIONS(6790), + [anon_sym_consteval] = ACTIONS(6790), + [anon_sym_alignas] = ACTIONS(6790), + [anon_sym__Alignas] = ACTIONS(6790), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6790), + [anon_sym_and] = ACTIONS(6790), + [anon_sym_bitor] = ACTIONS(6790), + [anon_sym_xor] = ACTIONS(6790), + [anon_sym_bitand] = ACTIONS(6790), + [anon_sym_not_eq] = ACTIONS(6790), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6790), + [anon_sym_override] = ACTIONS(6790), + [anon_sym_requires] = ACTIONS(6790), + [anon_sym_COLON_RBRACK] = ACTIONS(6792), + }, + [STATE(3334)] = { + [sym_identifier] = ACTIONS(3970), + [aux_sym_preproc_def_token1] = ACTIONS(3970), + [aux_sym_preproc_if_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), + [sym_preproc_directive] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_AMP_AMP] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym___extension__] = ACTIONS(3970), + [anon_sym_typedef] = ACTIONS(3970), + [anon_sym_virtual] = ACTIONS(3970), + [anon_sym_extern] = ACTIONS(3970), + [anon_sym___attribute__] = ACTIONS(3970), + [anon_sym___attribute] = ACTIONS(3970), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_COLON_COLON] = ACTIONS(3972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), + [anon_sym___declspec] = ACTIONS(3970), + [anon_sym___based] = ACTIONS(3970), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_signed] = ACTIONS(3970), + [anon_sym_unsigned] = ACTIONS(3970), + [anon_sym_long] = ACTIONS(3970), + [anon_sym_short] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3970), + [anon_sym_static] = ACTIONS(3970), + [anon_sym_register] = ACTIONS(3970), + [anon_sym_inline] = ACTIONS(3970), + [anon_sym___inline] = ACTIONS(3970), + [anon_sym___inline__] = ACTIONS(3970), + [anon_sym___forceinline] = ACTIONS(3970), + [anon_sym_thread_local] = ACTIONS(3970), + [anon_sym___thread] = ACTIONS(3970), + [anon_sym_const] = ACTIONS(3970), + [anon_sym_constexpr] = ACTIONS(3970), + [anon_sym_volatile] = ACTIONS(3970), + [anon_sym_restrict] = ACTIONS(3970), + [anon_sym___restrict__] = ACTIONS(3970), + [anon_sym__Atomic] = ACTIONS(3970), + [anon_sym__Noreturn] = ACTIONS(3970), + [anon_sym_noreturn] = ACTIONS(3970), + [anon_sym__Nonnull] = ACTIONS(3970), + [anon_sym_mutable] = ACTIONS(3970), + [anon_sym_constinit] = ACTIONS(3970), + [anon_sym_consteval] = ACTIONS(3970), + [anon_sym_alignas] = ACTIONS(3970), + [anon_sym__Alignas] = ACTIONS(3970), + [sym_primitive_type] = ACTIONS(3970), + [anon_sym_enum] = ACTIONS(3970), + [anon_sym_class] = ACTIONS(3970), + [anon_sym_struct] = ACTIONS(3970), + [anon_sym_union] = ACTIONS(3970), + [anon_sym_typename] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3970), + [anon_sym_decltype] = ACTIONS(3970), + [anon_sym_explicit] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_template] = ACTIONS(3970), + [anon_sym_operator] = ACTIONS(3970), + [anon_sym_friend] = ACTIONS(3970), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_static_assert] = ACTIONS(3970), + [anon_sym_LBRACK_COLON] = ACTIONS(3972), + }, + [STATE(3335)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token2] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(3336)] = { + [sym_identifier] = ACTIONS(8450), + [aux_sym_preproc_def_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token1] = ACTIONS(8450), + [aux_sym_preproc_if_token2] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), + [sym_preproc_directive] = ACTIONS(8450), + [anon_sym_LPAREN2] = ACTIONS(8452), + [anon_sym_TILDE] = ACTIONS(8452), + [anon_sym_STAR] = ACTIONS(8452), + [anon_sym_AMP_AMP] = ACTIONS(8452), + [anon_sym_AMP] = ACTIONS(8450), + [anon_sym_SEMI] = ACTIONS(8452), + [anon_sym___extension__] = ACTIONS(8450), + [anon_sym_typedef] = ACTIONS(8450), + [anon_sym_virtual] = ACTIONS(8450), + [anon_sym_extern] = ACTIONS(8450), + [anon_sym___attribute__] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8450), + [anon_sym_using] = ACTIONS(8450), + [anon_sym_COLON_COLON] = ACTIONS(8452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), + [anon_sym___declspec] = ACTIONS(8450), + [anon_sym___based] = ACTIONS(8450), + [anon_sym_signed] = ACTIONS(8450), + [anon_sym_unsigned] = ACTIONS(8450), + [anon_sym_long] = ACTIONS(8450), + [anon_sym_short] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(8450), + [anon_sym_static] = ACTIONS(8450), + [anon_sym_register] = ACTIONS(8450), + [anon_sym_inline] = ACTIONS(8450), + [anon_sym___inline] = ACTIONS(8450), + [anon_sym___inline__] = ACTIONS(8450), + [anon_sym___forceinline] = ACTIONS(8450), + [anon_sym_thread_local] = ACTIONS(8450), + [anon_sym___thread] = ACTIONS(8450), + [anon_sym_const] = ACTIONS(8450), + [anon_sym_constexpr] = ACTIONS(8450), + [anon_sym_volatile] = ACTIONS(8450), + [anon_sym_restrict] = ACTIONS(8450), + [anon_sym___restrict__] = ACTIONS(8450), + [anon_sym__Atomic] = ACTIONS(8450), + [anon_sym__Noreturn] = ACTIONS(8450), + [anon_sym_noreturn] = ACTIONS(8450), + [anon_sym__Nonnull] = ACTIONS(8450), + [anon_sym_mutable] = ACTIONS(8450), + [anon_sym_constinit] = ACTIONS(8450), + [anon_sym_consteval] = ACTIONS(8450), + [anon_sym_alignas] = ACTIONS(8450), + [anon_sym__Alignas] = ACTIONS(8450), + [sym_primitive_type] = ACTIONS(8450), + [anon_sym_enum] = ACTIONS(8450), + [anon_sym_class] = ACTIONS(8450), + [anon_sym_struct] = ACTIONS(8450), + [anon_sym_union] = ACTIONS(8450), + [anon_sym_typename] = ACTIONS(8450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8450), + [anon_sym_decltype] = ACTIONS(8450), + [anon_sym_explicit] = ACTIONS(8450), + [anon_sym_private] = ACTIONS(8450), + [anon_sym_template] = ACTIONS(8450), + [anon_sym_operator] = ACTIONS(8450), + [anon_sym_friend] = ACTIONS(8450), + [anon_sym_public] = ACTIONS(8450), + [anon_sym_protected] = ACTIONS(8450), + [anon_sym_static_assert] = ACTIONS(8450), + [anon_sym_LBRACK_COLON] = ACTIONS(8452), + }, + [STATE(3337)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_private] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_friend] = ACTIONS(4144), + [anon_sym_public] = ACTIONS(4144), + [anon_sym_protected] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + }, + [STATE(3338)] = { + [sym_identifier] = ACTIONS(8430), + [aux_sym_preproc_def_token1] = ACTIONS(8430), + [aux_sym_preproc_if_token1] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), + [sym_preproc_directive] = ACTIONS(8430), + [anon_sym_LPAREN2] = ACTIONS(8432), + [anon_sym_TILDE] = ACTIONS(8432), + [anon_sym_STAR] = ACTIONS(8432), + [anon_sym_AMP_AMP] = ACTIONS(8432), + [anon_sym_AMP] = ACTIONS(8430), + [anon_sym_SEMI] = ACTIONS(8432), + [anon_sym___extension__] = ACTIONS(8430), + [anon_sym_typedef] = ACTIONS(8430), + [anon_sym_virtual] = ACTIONS(8430), + [anon_sym_extern] = ACTIONS(8430), + [anon_sym___attribute__] = ACTIONS(8430), + [anon_sym___attribute] = ACTIONS(8430), + [anon_sym_using] = ACTIONS(8430), + [anon_sym_COLON_COLON] = ACTIONS(8432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), + [anon_sym___declspec] = ACTIONS(8430), + [anon_sym___based] = ACTIONS(8430), + [anon_sym_RBRACE] = ACTIONS(8432), + [anon_sym_signed] = ACTIONS(8430), + [anon_sym_unsigned] = ACTIONS(8430), + [anon_sym_long] = ACTIONS(8430), + [anon_sym_short] = ACTIONS(8430), + [anon_sym_LBRACK] = ACTIONS(8430), + [anon_sym_static] = ACTIONS(8430), + [anon_sym_register] = ACTIONS(8430), + [anon_sym_inline] = ACTIONS(8430), + [anon_sym___inline] = ACTIONS(8430), + [anon_sym___inline__] = ACTIONS(8430), + [anon_sym___forceinline] = ACTIONS(8430), + [anon_sym_thread_local] = ACTIONS(8430), + [anon_sym___thread] = ACTIONS(8430), + [anon_sym_const] = ACTIONS(8430), + [anon_sym_constexpr] = ACTIONS(8430), + [anon_sym_volatile] = ACTIONS(8430), + [anon_sym_restrict] = ACTIONS(8430), + [anon_sym___restrict__] = ACTIONS(8430), + [anon_sym__Atomic] = ACTIONS(8430), + [anon_sym__Noreturn] = ACTIONS(8430), + [anon_sym_noreturn] = ACTIONS(8430), + [anon_sym__Nonnull] = ACTIONS(8430), + [anon_sym_mutable] = ACTIONS(8430), + [anon_sym_constinit] = ACTIONS(8430), + [anon_sym_consteval] = ACTIONS(8430), + [anon_sym_alignas] = ACTIONS(8430), + [anon_sym__Alignas] = ACTIONS(8430), + [sym_primitive_type] = ACTIONS(8430), + [anon_sym_enum] = ACTIONS(8430), + [anon_sym_class] = ACTIONS(8430), + [anon_sym_struct] = ACTIONS(8430), + [anon_sym_union] = ACTIONS(8430), + [anon_sym_typename] = ACTIONS(8430), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8430), + [anon_sym_decltype] = ACTIONS(8430), + [anon_sym_explicit] = ACTIONS(8430), + [anon_sym_private] = ACTIONS(8430), + [anon_sym_template] = ACTIONS(8430), + [anon_sym_operator] = ACTIONS(8430), + [anon_sym_friend] = ACTIONS(8430), + [anon_sym_public] = ACTIONS(8430), + [anon_sym_protected] = ACTIONS(8430), + [anon_sym_static_assert] = ACTIONS(8430), + [anon_sym_LBRACK_COLON] = ACTIONS(8432), + }, + [STATE(3339)] = { + [sym_identifier] = ACTIONS(8462), + [aux_sym_preproc_def_token1] = ACTIONS(8462), + [aux_sym_preproc_if_token1] = ACTIONS(8462), + [aux_sym_preproc_if_token2] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), + [sym_preproc_directive] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_TILDE] = ACTIONS(8464), + [anon_sym_STAR] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_AMP] = ACTIONS(8462), + [anon_sym_SEMI] = ACTIONS(8464), + [anon_sym___extension__] = ACTIONS(8462), + [anon_sym_typedef] = ACTIONS(8462), + [anon_sym_virtual] = ACTIONS(8462), + [anon_sym_extern] = ACTIONS(8462), + [anon_sym___attribute__] = ACTIONS(8462), + [anon_sym___attribute] = ACTIONS(8462), + [anon_sym_using] = ACTIONS(8462), + [anon_sym_COLON_COLON] = ACTIONS(8464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), + [anon_sym___declspec] = ACTIONS(8462), + [anon_sym___based] = ACTIONS(8462), + [anon_sym_signed] = ACTIONS(8462), + [anon_sym_unsigned] = ACTIONS(8462), + [anon_sym_long] = ACTIONS(8462), + [anon_sym_short] = ACTIONS(8462), + [anon_sym_LBRACK] = ACTIONS(8462), + [anon_sym_static] = ACTIONS(8462), + [anon_sym_register] = ACTIONS(8462), + [anon_sym_inline] = ACTIONS(8462), + [anon_sym___inline] = ACTIONS(8462), + [anon_sym___inline__] = ACTIONS(8462), + [anon_sym___forceinline] = ACTIONS(8462), + [anon_sym_thread_local] = ACTIONS(8462), + [anon_sym___thread] = ACTIONS(8462), + [anon_sym_const] = ACTIONS(8462), + [anon_sym_constexpr] = ACTIONS(8462), + [anon_sym_volatile] = ACTIONS(8462), + [anon_sym_restrict] = ACTIONS(8462), + [anon_sym___restrict__] = ACTIONS(8462), + [anon_sym__Atomic] = ACTIONS(8462), + [anon_sym__Noreturn] = ACTIONS(8462), + [anon_sym_noreturn] = ACTIONS(8462), + [anon_sym__Nonnull] = ACTIONS(8462), + [anon_sym_mutable] = ACTIONS(8462), + [anon_sym_constinit] = ACTIONS(8462), + [anon_sym_consteval] = ACTIONS(8462), + [anon_sym_alignas] = ACTIONS(8462), + [anon_sym__Alignas] = ACTIONS(8462), + [sym_primitive_type] = ACTIONS(8462), + [anon_sym_enum] = ACTIONS(8462), + [anon_sym_class] = ACTIONS(8462), + [anon_sym_struct] = ACTIONS(8462), + [anon_sym_union] = ACTIONS(8462), + [anon_sym_typename] = ACTIONS(8462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8462), + [anon_sym_decltype] = ACTIONS(8462), + [anon_sym_explicit] = ACTIONS(8462), + [anon_sym_private] = ACTIONS(8462), + [anon_sym_template] = ACTIONS(8462), + [anon_sym_operator] = ACTIONS(8462), + [anon_sym_friend] = ACTIONS(8462), + [anon_sym_public] = ACTIONS(8462), + [anon_sym_protected] = ACTIONS(8462), + [anon_sym_static_assert] = ACTIONS(8462), + [anon_sym_LBRACK_COLON] = ACTIONS(8464), + }, + [STATE(3340)] = { + [sym_template_argument_list] = STATE(3582), + [sym_identifier] = ACTIONS(7031), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_TILDE] = ACTIONS(5272), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(8749), + [anon_sym___extension__] = ACTIONS(7031), + [anon_sym_virtual] = ACTIONS(7031), + [anon_sym_extern] = ACTIONS(7031), + [anon_sym___attribute__] = ACTIONS(7031), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_using] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5272), + [anon_sym___declspec] = ACTIONS(7031), + [anon_sym___based] = ACTIONS(7031), + [anon_sym___cdecl] = ACTIONS(7031), + [anon_sym___clrcall] = ACTIONS(7031), + [anon_sym___stdcall] = ACTIONS(7031), + [anon_sym___fastcall] = ACTIONS(7031), + [anon_sym___thiscall] = ACTIONS(7031), + [anon_sym___vectorcall] = ACTIONS(7031), + [anon_sym_signed] = ACTIONS(7031), + [anon_sym_unsigned] = ACTIONS(7031), + [anon_sym_long] = ACTIONS(7031), + [anon_sym_short] = ACTIONS(7031), + [anon_sym_LBRACK] = ACTIONS(7031), + [anon_sym_static] = ACTIONS(7031), + [anon_sym_register] = ACTIONS(7031), + [anon_sym_inline] = ACTIONS(7031), + [anon_sym___inline] = ACTIONS(7031), + [anon_sym___inline__] = ACTIONS(7031), + [anon_sym___forceinline] = ACTIONS(7031), + [anon_sym_thread_local] = ACTIONS(7031), + [anon_sym___thread] = ACTIONS(7031), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(7031), + [anon_sym_volatile] = ACTIONS(7031), + [anon_sym_restrict] = ACTIONS(7031), + [anon_sym___restrict__] = ACTIONS(7031), + [anon_sym__Atomic] = ACTIONS(7031), + [anon_sym__Noreturn] = ACTIONS(7031), + [anon_sym_noreturn] = ACTIONS(7031), + [anon_sym__Nonnull] = ACTIONS(7031), + [anon_sym_mutable] = ACTIONS(7031), + [anon_sym_constinit] = ACTIONS(7031), + [anon_sym_consteval] = ACTIONS(7031), + [anon_sym_alignas] = ACTIONS(7031), + [anon_sym__Alignas] = ACTIONS(7031), + [sym_primitive_type] = ACTIONS(7031), + [anon_sym_enum] = ACTIONS(7031), + [anon_sym_class] = ACTIONS(7031), + [anon_sym_struct] = ACTIONS(7031), + [anon_sym_union] = ACTIONS(7031), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_typename] = ACTIONS(7031), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7031), + [anon_sym_decltype] = ACTIONS(7031), + [anon_sym_explicit] = ACTIONS(7031), + [anon_sym_template] = ACTIONS(7031), + [anon_sym_operator] = ACTIONS(7031), + [anon_sym_friend] = ACTIONS(7031), + [anon_sym_concept] = ACTIONS(7031), + [anon_sym_LBRACK_COLON] = ACTIONS(5272), + }, + [STATE(3341)] = { + [sym_identifier] = ACTIONS(3938), + [aux_sym_preproc_def_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token1] = ACTIONS(3938), + [aux_sym_preproc_if_token2] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), + [sym_preproc_directive] = ACTIONS(3938), + [anon_sym_LPAREN2] = ACTIONS(3940), + [anon_sym_TILDE] = ACTIONS(3940), + [anon_sym_STAR] = ACTIONS(3940), + [anon_sym_AMP_AMP] = ACTIONS(3940), + [anon_sym_AMP] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3940), + [anon_sym___extension__] = ACTIONS(3938), + [anon_sym_typedef] = ACTIONS(3938), + [anon_sym_virtual] = ACTIONS(3938), + [anon_sym_extern] = ACTIONS(3938), + [anon_sym___attribute__] = ACTIONS(3938), + [anon_sym___attribute] = ACTIONS(3938), + [anon_sym_using] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), + [anon_sym___declspec] = ACTIONS(3938), + [anon_sym___based] = ACTIONS(3938), + [anon_sym_signed] = ACTIONS(3938), + [anon_sym_unsigned] = ACTIONS(3938), + [anon_sym_long] = ACTIONS(3938), + [anon_sym_short] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3938), + [anon_sym_static] = ACTIONS(3938), + [anon_sym_register] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym___inline] = ACTIONS(3938), + [anon_sym___inline__] = ACTIONS(3938), + [anon_sym___forceinline] = ACTIONS(3938), + [anon_sym_thread_local] = ACTIONS(3938), + [anon_sym___thread] = ACTIONS(3938), + [anon_sym_const] = ACTIONS(3938), + [anon_sym_constexpr] = ACTIONS(3938), + [anon_sym_volatile] = ACTIONS(3938), + [anon_sym_restrict] = ACTIONS(3938), + [anon_sym___restrict__] = ACTIONS(3938), + [anon_sym__Atomic] = ACTIONS(3938), + [anon_sym__Noreturn] = ACTIONS(3938), + [anon_sym_noreturn] = ACTIONS(3938), + [anon_sym__Nonnull] = ACTIONS(3938), + [anon_sym_mutable] = ACTIONS(3938), + [anon_sym_constinit] = ACTIONS(3938), + [anon_sym_consteval] = ACTIONS(3938), + [anon_sym_alignas] = ACTIONS(3938), + [anon_sym__Alignas] = ACTIONS(3938), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_struct] = ACTIONS(3938), + [anon_sym_union] = ACTIONS(3938), + [anon_sym_typename] = ACTIONS(3938), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3938), + [anon_sym_decltype] = ACTIONS(3938), + [anon_sym_explicit] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_template] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_friend] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_static_assert] = ACTIONS(3938), + [anon_sym_LBRACK_COLON] = ACTIONS(3940), + }, + [STATE(3342)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3287), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [aux_sym_preproc_if_token2] = ACTIONS(7255), + [aux_sym_preproc_else_token1] = ACTIONS(7255), + [aux_sym_preproc_elif_token1] = ACTIONS(7253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8788), + [anon_sym_unsigned] = ACTIONS(8788), + [anon_sym_long] = ACTIONS(8788), + [anon_sym_short] = ACTIONS(8788), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_RBRACK] = ACTIONS(7255), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7253), + [anon_sym_volatile] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7253), + [anon_sym___restrict__] = ACTIONS(7253), + [anon_sym__Atomic] = ACTIONS(7253), + [anon_sym__Noreturn] = ACTIONS(7253), + [anon_sym_noreturn] = ACTIONS(7253), + [anon_sym__Nonnull] = ACTIONS(7253), + [anon_sym_mutable] = ACTIONS(7253), + [anon_sym_constinit] = ACTIONS(7253), + [anon_sym_consteval] = ACTIONS(7253), + [anon_sym_alignas] = ACTIONS(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + }, + [STATE(3343)] = { + [sym_identifier] = ACTIONS(8458), + [aux_sym_preproc_def_token1] = ACTIONS(8458), + [aux_sym_preproc_if_token1] = ACTIONS(8458), + [aux_sym_preproc_if_token2] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), + [sym_preproc_directive] = ACTIONS(8458), + [anon_sym_LPAREN2] = ACTIONS(8460), + [anon_sym_TILDE] = ACTIONS(8460), + [anon_sym_STAR] = ACTIONS(8460), + [anon_sym_AMP_AMP] = ACTIONS(8460), + [anon_sym_AMP] = ACTIONS(8458), + [anon_sym_SEMI] = ACTIONS(8460), + [anon_sym___extension__] = ACTIONS(8458), + [anon_sym_typedef] = ACTIONS(8458), + [anon_sym_virtual] = ACTIONS(8458), + [anon_sym_extern] = ACTIONS(8458), + [anon_sym___attribute__] = ACTIONS(8458), + [anon_sym___attribute] = ACTIONS(8458), + [anon_sym_using] = ACTIONS(8458), + [anon_sym_COLON_COLON] = ACTIONS(8460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), + [anon_sym___declspec] = ACTIONS(8458), + [anon_sym___based] = ACTIONS(8458), + [anon_sym_signed] = ACTIONS(8458), + [anon_sym_unsigned] = ACTIONS(8458), + [anon_sym_long] = ACTIONS(8458), + [anon_sym_short] = ACTIONS(8458), + [anon_sym_LBRACK] = ACTIONS(8458), + [anon_sym_static] = ACTIONS(8458), + [anon_sym_register] = ACTIONS(8458), + [anon_sym_inline] = ACTIONS(8458), + [anon_sym___inline] = ACTIONS(8458), + [anon_sym___inline__] = ACTIONS(8458), + [anon_sym___forceinline] = ACTIONS(8458), + [anon_sym_thread_local] = ACTIONS(8458), + [anon_sym___thread] = ACTIONS(8458), + [anon_sym_const] = ACTIONS(8458), + [anon_sym_constexpr] = ACTIONS(8458), + [anon_sym_volatile] = ACTIONS(8458), + [anon_sym_restrict] = ACTIONS(8458), + [anon_sym___restrict__] = ACTIONS(8458), + [anon_sym__Atomic] = ACTIONS(8458), + [anon_sym__Noreturn] = ACTIONS(8458), + [anon_sym_noreturn] = ACTIONS(8458), + [anon_sym__Nonnull] = ACTIONS(8458), + [anon_sym_mutable] = ACTIONS(8458), + [anon_sym_constinit] = ACTIONS(8458), + [anon_sym_consteval] = ACTIONS(8458), + [anon_sym_alignas] = ACTIONS(8458), + [anon_sym__Alignas] = ACTIONS(8458), + [sym_primitive_type] = ACTIONS(8458), + [anon_sym_enum] = ACTIONS(8458), + [anon_sym_class] = ACTIONS(8458), + [anon_sym_struct] = ACTIONS(8458), + [anon_sym_union] = ACTIONS(8458), + [anon_sym_typename] = ACTIONS(8458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8458), + [anon_sym_decltype] = ACTIONS(8458), + [anon_sym_explicit] = ACTIONS(8458), + [anon_sym_private] = ACTIONS(8458), + [anon_sym_template] = ACTIONS(8458), + [anon_sym_operator] = ACTIONS(8458), + [anon_sym_friend] = ACTIONS(8458), + [anon_sym_public] = ACTIONS(8458), + [anon_sym_protected] = ACTIONS(8458), + [anon_sym_static_assert] = ACTIONS(8458), + [anon_sym_LBRACK_COLON] = ACTIONS(8460), + }, + [STATE(3344)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(3345)] = { + [sym_identifier] = ACTIONS(3728), + [aux_sym_preproc_def_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token1] = ACTIONS(3728), + [aux_sym_preproc_if_token2] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym___extension__] = ACTIONS(3728), + [anon_sym_typedef] = ACTIONS(3728), + [anon_sym_virtual] = ACTIONS(3728), + [anon_sym_extern] = ACTIONS(3728), + [anon_sym___attribute__] = ACTIONS(3728), + [anon_sym___attribute] = ACTIONS(3728), + [anon_sym_using] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(3730), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), + [anon_sym___declspec] = ACTIONS(3728), + [anon_sym___based] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3728), + [anon_sym_static] = ACTIONS(3728), + [anon_sym_register] = ACTIONS(3728), + [anon_sym_inline] = ACTIONS(3728), + [anon_sym___inline] = ACTIONS(3728), + [anon_sym___inline__] = ACTIONS(3728), + [anon_sym___forceinline] = ACTIONS(3728), + [anon_sym_thread_local] = ACTIONS(3728), + [anon_sym___thread] = ACTIONS(3728), + [anon_sym_const] = ACTIONS(3728), + [anon_sym_constexpr] = ACTIONS(3728), + [anon_sym_volatile] = ACTIONS(3728), + [anon_sym_restrict] = ACTIONS(3728), + [anon_sym___restrict__] = ACTIONS(3728), + [anon_sym__Atomic] = ACTIONS(3728), + [anon_sym__Noreturn] = ACTIONS(3728), + [anon_sym_noreturn] = ACTIONS(3728), + [anon_sym__Nonnull] = ACTIONS(3728), + [anon_sym_mutable] = ACTIONS(3728), + [anon_sym_constinit] = ACTIONS(3728), + [anon_sym_consteval] = ACTIONS(3728), + [anon_sym_alignas] = ACTIONS(3728), + [anon_sym__Alignas] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(3728), + [anon_sym_enum] = ACTIONS(3728), + [anon_sym_class] = ACTIONS(3728), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_union] = ACTIONS(3728), + [anon_sym_typename] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3728), + [anon_sym_decltype] = ACTIONS(3728), + [anon_sym_explicit] = ACTIONS(3728), + [anon_sym_private] = ACTIONS(3728), + [anon_sym_template] = ACTIONS(3728), + [anon_sym_operator] = ACTIONS(3728), + [anon_sym_friend] = ACTIONS(3728), + [anon_sym_public] = ACTIONS(3728), + [anon_sym_protected] = ACTIONS(3728), + [anon_sym_static_assert] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3730), + }, + [STATE(3346)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_friend] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + }, + [STATE(3347)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_private] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_friend] = ACTIONS(4086), + [anon_sym_public] = ACTIONS(4086), + [anon_sym_protected] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + }, + [STATE(3348)] = { + [sym_identifier] = ACTIONS(3906), + [aux_sym_preproc_def_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token1] = ACTIONS(3906), + [aux_sym_preproc_if_token2] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), + [sym_preproc_directive] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_SEMI] = ACTIONS(3908), + [anon_sym___extension__] = ACTIONS(3906), + [anon_sym_typedef] = ACTIONS(3906), + [anon_sym_virtual] = ACTIONS(3906), + [anon_sym_extern] = ACTIONS(3906), + [anon_sym___attribute__] = ACTIONS(3906), + [anon_sym___attribute] = ACTIONS(3906), + [anon_sym_using] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), + [anon_sym___declspec] = ACTIONS(3906), + [anon_sym___based] = ACTIONS(3906), + [anon_sym_signed] = ACTIONS(3906), + [anon_sym_unsigned] = ACTIONS(3906), + [anon_sym_long] = ACTIONS(3906), + [anon_sym_short] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_static] = ACTIONS(3906), + [anon_sym_register] = ACTIONS(3906), + [anon_sym_inline] = ACTIONS(3906), + [anon_sym___inline] = ACTIONS(3906), + [anon_sym___inline__] = ACTIONS(3906), + [anon_sym___forceinline] = ACTIONS(3906), + [anon_sym_thread_local] = ACTIONS(3906), + [anon_sym___thread] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(3906), + [anon_sym_constexpr] = ACTIONS(3906), + [anon_sym_volatile] = ACTIONS(3906), + [anon_sym_restrict] = ACTIONS(3906), + [anon_sym___restrict__] = ACTIONS(3906), + [anon_sym__Atomic] = ACTIONS(3906), + [anon_sym__Noreturn] = ACTIONS(3906), + [anon_sym_noreturn] = ACTIONS(3906), + [anon_sym__Nonnull] = ACTIONS(3906), + [anon_sym_mutable] = ACTIONS(3906), + [anon_sym_constinit] = ACTIONS(3906), + [anon_sym_consteval] = ACTIONS(3906), + [anon_sym_alignas] = ACTIONS(3906), + [anon_sym__Alignas] = ACTIONS(3906), + [sym_primitive_type] = ACTIONS(3906), + [anon_sym_enum] = ACTIONS(3906), + [anon_sym_class] = ACTIONS(3906), + [anon_sym_struct] = ACTIONS(3906), + [anon_sym_union] = ACTIONS(3906), + [anon_sym_typename] = ACTIONS(3906), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3906), + [anon_sym_decltype] = ACTIONS(3906), + [anon_sym_explicit] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_template] = ACTIONS(3906), + [anon_sym_operator] = ACTIONS(3906), + [anon_sym_friend] = ACTIONS(3906), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_static_assert] = ACTIONS(3906), + [anon_sym_LBRACK_COLON] = ACTIONS(3908), + }, + [STATE(3349)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_private] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_friend] = ACTIONS(3890), + [anon_sym_public] = ACTIONS(3890), + [anon_sym_protected] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + }, + [STATE(3350)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3351)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3352)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(3353)] = { + [sym_identifier] = ACTIONS(8438), + [aux_sym_preproc_def_token1] = ACTIONS(8438), + [aux_sym_preproc_if_token1] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), + [sym_preproc_directive] = ACTIONS(8438), + [anon_sym_LPAREN2] = ACTIONS(8440), + [anon_sym_TILDE] = ACTIONS(8440), + [anon_sym_STAR] = ACTIONS(8440), + [anon_sym_AMP_AMP] = ACTIONS(8440), + [anon_sym_AMP] = ACTIONS(8438), + [anon_sym_SEMI] = ACTIONS(8440), + [anon_sym___extension__] = ACTIONS(8438), + [anon_sym_typedef] = ACTIONS(8438), + [anon_sym_virtual] = ACTIONS(8438), + [anon_sym_extern] = ACTIONS(8438), + [anon_sym___attribute__] = ACTIONS(8438), + [anon_sym___attribute] = ACTIONS(8438), + [anon_sym_using] = ACTIONS(8438), + [anon_sym_COLON_COLON] = ACTIONS(8440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), + [anon_sym___declspec] = ACTIONS(8438), + [anon_sym___based] = ACTIONS(8438), + [anon_sym_RBRACE] = ACTIONS(8440), + [anon_sym_signed] = ACTIONS(8438), + [anon_sym_unsigned] = ACTIONS(8438), + [anon_sym_long] = ACTIONS(8438), + [anon_sym_short] = ACTIONS(8438), + [anon_sym_LBRACK] = ACTIONS(8438), + [anon_sym_static] = ACTIONS(8438), + [anon_sym_register] = ACTIONS(8438), + [anon_sym_inline] = ACTIONS(8438), + [anon_sym___inline] = ACTIONS(8438), + [anon_sym___inline__] = ACTIONS(8438), + [anon_sym___forceinline] = ACTIONS(8438), + [anon_sym_thread_local] = ACTIONS(8438), + [anon_sym___thread] = ACTIONS(8438), + [anon_sym_const] = ACTIONS(8438), + [anon_sym_constexpr] = ACTIONS(8438), + [anon_sym_volatile] = ACTIONS(8438), + [anon_sym_restrict] = ACTIONS(8438), + [anon_sym___restrict__] = ACTIONS(8438), + [anon_sym__Atomic] = ACTIONS(8438), + [anon_sym__Noreturn] = ACTIONS(8438), + [anon_sym_noreturn] = ACTIONS(8438), + [anon_sym__Nonnull] = ACTIONS(8438), + [anon_sym_mutable] = ACTIONS(8438), + [anon_sym_constinit] = ACTIONS(8438), + [anon_sym_consteval] = ACTIONS(8438), + [anon_sym_alignas] = ACTIONS(8438), + [anon_sym__Alignas] = ACTIONS(8438), + [sym_primitive_type] = ACTIONS(8438), + [anon_sym_enum] = ACTIONS(8438), + [anon_sym_class] = ACTIONS(8438), + [anon_sym_struct] = ACTIONS(8438), + [anon_sym_union] = ACTIONS(8438), + [anon_sym_typename] = ACTIONS(8438), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8438), + [anon_sym_decltype] = ACTIONS(8438), + [anon_sym_explicit] = ACTIONS(8438), + [anon_sym_private] = ACTIONS(8438), + [anon_sym_template] = ACTIONS(8438), + [anon_sym_operator] = ACTIONS(8438), + [anon_sym_friend] = ACTIONS(8438), + [anon_sym_public] = ACTIONS(8438), + [anon_sym_protected] = ACTIONS(8438), + [anon_sym_static_assert] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(8440), + }, + [STATE(3354)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_private] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_friend] = ACTIONS(3704), + [anon_sym_public] = ACTIONS(3704), + [anon_sym_protected] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + }, + [STATE(3355)] = { + [sym_identifier] = ACTIONS(3942), + [aux_sym_preproc_def_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token1] = ACTIONS(3942), + [aux_sym_preproc_if_token2] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), + [sym_preproc_directive] = ACTIONS(3942), + [anon_sym_LPAREN2] = ACTIONS(3944), + [anon_sym_TILDE] = ACTIONS(3944), + [anon_sym_STAR] = ACTIONS(3944), + [anon_sym_AMP_AMP] = ACTIONS(3944), + [anon_sym_AMP] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym___extension__] = ACTIONS(3942), + [anon_sym_typedef] = ACTIONS(3942), + [anon_sym_virtual] = ACTIONS(3942), + [anon_sym_extern] = ACTIONS(3942), + [anon_sym___attribute__] = ACTIONS(3942), + [anon_sym___attribute] = ACTIONS(3942), + [anon_sym_using] = ACTIONS(3942), + [anon_sym_COLON_COLON] = ACTIONS(3944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), + [anon_sym___declspec] = ACTIONS(3942), + [anon_sym___based] = ACTIONS(3942), + [anon_sym_signed] = ACTIONS(3942), + [anon_sym_unsigned] = ACTIONS(3942), + [anon_sym_long] = ACTIONS(3942), + [anon_sym_short] = ACTIONS(3942), + [anon_sym_LBRACK] = ACTIONS(3942), + [anon_sym_static] = ACTIONS(3942), + [anon_sym_register] = ACTIONS(3942), + [anon_sym_inline] = ACTIONS(3942), + [anon_sym___inline] = ACTIONS(3942), + [anon_sym___inline__] = ACTIONS(3942), + [anon_sym___forceinline] = ACTIONS(3942), + [anon_sym_thread_local] = ACTIONS(3942), + [anon_sym___thread] = ACTIONS(3942), + [anon_sym_const] = ACTIONS(3942), + [anon_sym_constexpr] = ACTIONS(3942), + [anon_sym_volatile] = ACTIONS(3942), + [anon_sym_restrict] = ACTIONS(3942), + [anon_sym___restrict__] = ACTIONS(3942), + [anon_sym__Atomic] = ACTIONS(3942), + [anon_sym__Noreturn] = ACTIONS(3942), + [anon_sym_noreturn] = ACTIONS(3942), + [anon_sym__Nonnull] = ACTIONS(3942), + [anon_sym_mutable] = ACTIONS(3942), + [anon_sym_constinit] = ACTIONS(3942), + [anon_sym_consteval] = ACTIONS(3942), + [anon_sym_alignas] = ACTIONS(3942), + [anon_sym__Alignas] = ACTIONS(3942), + [sym_primitive_type] = ACTIONS(3942), + [anon_sym_enum] = ACTIONS(3942), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3942), + [anon_sym_union] = ACTIONS(3942), + [anon_sym_typename] = ACTIONS(3942), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3942), + [anon_sym_decltype] = ACTIONS(3942), + [anon_sym_explicit] = ACTIONS(3942), + [anon_sym_private] = ACTIONS(3942), + [anon_sym_template] = ACTIONS(3942), + [anon_sym_operator] = ACTIONS(3942), + [anon_sym_friend] = ACTIONS(3942), + [anon_sym_public] = ACTIONS(3942), + [anon_sym_protected] = ACTIONS(3942), + [anon_sym_static_assert] = ACTIONS(3942), + [anon_sym_LBRACK_COLON] = ACTIONS(3944), + }, + [STATE(3356)] = { + [sym_identifier] = ACTIONS(3946), + [aux_sym_preproc_def_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token1] = ACTIONS(3946), + [aux_sym_preproc_if_token2] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), + [sym_preproc_directive] = ACTIONS(3946), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_TILDE] = ACTIONS(3948), + [anon_sym_STAR] = ACTIONS(3948), + [anon_sym_AMP_AMP] = ACTIONS(3948), + [anon_sym_AMP] = ACTIONS(3946), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym___extension__] = ACTIONS(3946), + [anon_sym_typedef] = ACTIONS(3946), + [anon_sym_virtual] = ACTIONS(3946), + [anon_sym_extern] = ACTIONS(3946), + [anon_sym___attribute__] = ACTIONS(3946), + [anon_sym___attribute] = ACTIONS(3946), + [anon_sym_using] = ACTIONS(3946), + [anon_sym_COLON_COLON] = ACTIONS(3948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), + [anon_sym___declspec] = ACTIONS(3946), + [anon_sym___based] = ACTIONS(3946), + [anon_sym_signed] = ACTIONS(3946), + [anon_sym_unsigned] = ACTIONS(3946), + [anon_sym_long] = ACTIONS(3946), + [anon_sym_short] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(3946), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_register] = ACTIONS(3946), + [anon_sym_inline] = ACTIONS(3946), + [anon_sym___inline] = ACTIONS(3946), + [anon_sym___inline__] = ACTIONS(3946), + [anon_sym___forceinline] = ACTIONS(3946), + [anon_sym_thread_local] = ACTIONS(3946), + [anon_sym___thread] = ACTIONS(3946), + [anon_sym_const] = ACTIONS(3946), + [anon_sym_constexpr] = ACTIONS(3946), + [anon_sym_volatile] = ACTIONS(3946), + [anon_sym_restrict] = ACTIONS(3946), + [anon_sym___restrict__] = ACTIONS(3946), + [anon_sym__Atomic] = ACTIONS(3946), + [anon_sym__Noreturn] = ACTIONS(3946), + [anon_sym_noreturn] = ACTIONS(3946), + [anon_sym__Nonnull] = ACTIONS(3946), + [anon_sym_mutable] = ACTIONS(3946), + [anon_sym_constinit] = ACTIONS(3946), + [anon_sym_consteval] = ACTIONS(3946), + [anon_sym_alignas] = ACTIONS(3946), + [anon_sym__Alignas] = ACTIONS(3946), + [sym_primitive_type] = ACTIONS(3946), + [anon_sym_enum] = ACTIONS(3946), + [anon_sym_class] = ACTIONS(3946), + [anon_sym_struct] = ACTIONS(3946), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_typename] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3946), + [anon_sym_decltype] = ACTIONS(3946), + [anon_sym_explicit] = ACTIONS(3946), + [anon_sym_private] = ACTIONS(3946), + [anon_sym_template] = ACTIONS(3946), + [anon_sym_operator] = ACTIONS(3946), + [anon_sym_friend] = ACTIONS(3946), + [anon_sym_public] = ACTIONS(3946), + [anon_sym_protected] = ACTIONS(3946), + [anon_sym_static_assert] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3948), + }, + [STATE(3357)] = { + [sym_identifier] = ACTIONS(3676), + [aux_sym_preproc_def_token1] = ACTIONS(3676), + [aux_sym_preproc_if_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), + [sym_preproc_directive] = ACTIONS(3676), + [anon_sym_LPAREN2] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3678), + [anon_sym_AMP_AMP] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym___extension__] = ACTIONS(3676), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3676), + [anon_sym_extern] = ACTIONS(3676), + [anon_sym___attribute__] = ACTIONS(3676), + [anon_sym___attribute] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(3678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), + [anon_sym___declspec] = ACTIONS(3676), + [anon_sym___based] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3676), + [anon_sym_unsigned] = ACTIONS(3676), + [anon_sym_long] = ACTIONS(3676), + [anon_sym_short] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_register] = ACTIONS(3676), + [anon_sym_inline] = ACTIONS(3676), + [anon_sym___inline] = ACTIONS(3676), + [anon_sym___inline__] = ACTIONS(3676), + [anon_sym___forceinline] = ACTIONS(3676), + [anon_sym_thread_local] = ACTIONS(3676), + [anon_sym___thread] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_constexpr] = ACTIONS(3676), + [anon_sym_volatile] = ACTIONS(3676), + [anon_sym_restrict] = ACTIONS(3676), + [anon_sym___restrict__] = ACTIONS(3676), + [anon_sym__Atomic] = ACTIONS(3676), + [anon_sym__Noreturn] = ACTIONS(3676), + [anon_sym_noreturn] = ACTIONS(3676), + [anon_sym__Nonnull] = ACTIONS(3676), + [anon_sym_mutable] = ACTIONS(3676), + [anon_sym_constinit] = ACTIONS(3676), + [anon_sym_consteval] = ACTIONS(3676), + [anon_sym_alignas] = ACTIONS(3676), + [anon_sym__Alignas] = ACTIONS(3676), + [sym_primitive_type] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_struct] = ACTIONS(3676), + [anon_sym_union] = ACTIONS(3676), + [anon_sym_typename] = ACTIONS(3676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3676), + [anon_sym_decltype] = ACTIONS(3676), + [anon_sym_explicit] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_template] = ACTIONS(3676), + [anon_sym_operator] = ACTIONS(3676), + [anon_sym_friend] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_static_assert] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3678), + }, + [STATE(3358)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_friend] = ACTIONS(3950), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + }, + [STATE(3359)] = { + [sym_identifier] = ACTIONS(8289), + [aux_sym_preproc_def_token1] = ACTIONS(8289), + [aux_sym_preproc_if_token1] = ACTIONS(8289), + [aux_sym_preproc_if_token2] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), + [sym_preproc_directive] = ACTIONS(8289), + [anon_sym_LPAREN2] = ACTIONS(8291), + [anon_sym_TILDE] = ACTIONS(8291), + [anon_sym_STAR] = ACTIONS(8291), + [anon_sym_AMP_AMP] = ACTIONS(8291), + [anon_sym_AMP] = ACTIONS(8289), + [anon_sym_SEMI] = ACTIONS(8291), + [anon_sym___extension__] = ACTIONS(8289), + [anon_sym_typedef] = ACTIONS(8289), + [anon_sym_virtual] = ACTIONS(8289), + [anon_sym_extern] = ACTIONS(8289), + [anon_sym___attribute__] = ACTIONS(8289), + [anon_sym___attribute] = ACTIONS(8289), + [anon_sym_using] = ACTIONS(8289), + [anon_sym_COLON_COLON] = ACTIONS(8291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), + [anon_sym___declspec] = ACTIONS(8289), + [anon_sym___based] = ACTIONS(8289), + [anon_sym_signed] = ACTIONS(8289), + [anon_sym_unsigned] = ACTIONS(8289), + [anon_sym_long] = ACTIONS(8289), + [anon_sym_short] = ACTIONS(8289), + [anon_sym_LBRACK] = ACTIONS(8289), + [anon_sym_static] = ACTIONS(8289), + [anon_sym_register] = ACTIONS(8289), + [anon_sym_inline] = ACTIONS(8289), + [anon_sym___inline] = ACTIONS(8289), + [anon_sym___inline__] = ACTIONS(8289), + [anon_sym___forceinline] = ACTIONS(8289), + [anon_sym_thread_local] = ACTIONS(8289), + [anon_sym___thread] = ACTIONS(8289), + [anon_sym_const] = ACTIONS(8289), + [anon_sym_constexpr] = ACTIONS(8289), + [anon_sym_volatile] = ACTIONS(8289), + [anon_sym_restrict] = ACTIONS(8289), + [anon_sym___restrict__] = ACTIONS(8289), + [anon_sym__Atomic] = ACTIONS(8289), + [anon_sym__Noreturn] = ACTIONS(8289), + [anon_sym_noreturn] = ACTIONS(8289), + [anon_sym__Nonnull] = ACTIONS(8289), + [anon_sym_mutable] = ACTIONS(8289), + [anon_sym_constinit] = ACTIONS(8289), + [anon_sym_consteval] = ACTIONS(8289), + [anon_sym_alignas] = ACTIONS(8289), + [anon_sym__Alignas] = ACTIONS(8289), + [sym_primitive_type] = ACTIONS(8289), + [anon_sym_enum] = ACTIONS(8289), + [anon_sym_class] = ACTIONS(8289), + [anon_sym_struct] = ACTIONS(8289), + [anon_sym_union] = ACTIONS(8289), + [anon_sym_typename] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8289), + [anon_sym_decltype] = ACTIONS(8289), + [anon_sym_explicit] = ACTIONS(8289), + [anon_sym_private] = ACTIONS(8289), + [anon_sym_template] = ACTIONS(8289), + [anon_sym_operator] = ACTIONS(8289), + [anon_sym_friend] = ACTIONS(8289), + [anon_sym_public] = ACTIONS(8289), + [anon_sym_protected] = ACTIONS(8289), + [anon_sym_static_assert] = ACTIONS(8289), + [anon_sym_LBRACK_COLON] = ACTIONS(8291), + }, + [STATE(3360)] = { + [sym_identifier] = ACTIONS(4026), + [aux_sym_preproc_def_token1] = ACTIONS(4026), + [aux_sym_preproc_if_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), + [sym_preproc_directive] = ACTIONS(4026), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP_AMP] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4026), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4026), + [anon_sym_typedef] = ACTIONS(4026), + [anon_sym_virtual] = ACTIONS(4026), + [anon_sym_extern] = ACTIONS(4026), + [anon_sym___attribute__] = ACTIONS(4026), + [anon_sym___attribute] = ACTIONS(4026), + [anon_sym_using] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(4028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), + [anon_sym___declspec] = ACTIONS(4026), + [anon_sym___based] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4026), + [anon_sym_unsigned] = ACTIONS(4026), + [anon_sym_long] = ACTIONS(4026), + [anon_sym_short] = ACTIONS(4026), + [anon_sym_LBRACK] = ACTIONS(4026), + [anon_sym_static] = ACTIONS(4026), + [anon_sym_register] = ACTIONS(4026), + [anon_sym_inline] = ACTIONS(4026), + [anon_sym___inline] = ACTIONS(4026), + [anon_sym___inline__] = ACTIONS(4026), + [anon_sym___forceinline] = ACTIONS(4026), + [anon_sym_thread_local] = ACTIONS(4026), + [anon_sym___thread] = ACTIONS(4026), + [anon_sym_const] = ACTIONS(4026), + [anon_sym_constexpr] = ACTIONS(4026), + [anon_sym_volatile] = ACTIONS(4026), + [anon_sym_restrict] = ACTIONS(4026), + [anon_sym___restrict__] = ACTIONS(4026), + [anon_sym__Atomic] = ACTIONS(4026), + [anon_sym__Noreturn] = ACTIONS(4026), + [anon_sym_noreturn] = ACTIONS(4026), + [anon_sym__Nonnull] = ACTIONS(4026), + [anon_sym_mutable] = ACTIONS(4026), + [anon_sym_constinit] = ACTIONS(4026), + [anon_sym_consteval] = ACTIONS(4026), + [anon_sym_alignas] = ACTIONS(4026), + [anon_sym__Alignas] = ACTIONS(4026), + [sym_primitive_type] = ACTIONS(4026), + [anon_sym_enum] = ACTIONS(4026), + [anon_sym_class] = ACTIONS(4026), + [anon_sym_struct] = ACTIONS(4026), + [anon_sym_union] = ACTIONS(4026), + [anon_sym_typename] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4026), + [anon_sym_decltype] = ACTIONS(4026), + [anon_sym_explicit] = ACTIONS(4026), + [anon_sym_private] = ACTIONS(4026), + [anon_sym_template] = ACTIONS(4026), + [anon_sym_operator] = ACTIONS(4026), + [anon_sym_friend] = ACTIONS(4026), + [anon_sym_public] = ACTIONS(4026), + [anon_sym_protected] = ACTIONS(4026), + [anon_sym_static_assert] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4028), + }, + [STATE(3361)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [aux_sym_preproc_if_token2] = ACTIONS(7385), + [aux_sym_preproc_else_token1] = ACTIONS(7385), + [aux_sym_preproc_elif_token1] = ACTIONS(7383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7385), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7385), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7385), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7385), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7385), + [anon_sym_GT_GT] = ACTIONS(7385), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(7383), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_RBRACK] = ACTIONS(7385), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7385), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + }, + [STATE(3362)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(7395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [aux_sym_preproc_if_token2] = ACTIONS(7397), + [aux_sym_preproc_else_token1] = ACTIONS(7397), + [aux_sym_preproc_elif_token1] = ACTIONS(7395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7397), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7395), + [anon_sym___attribute__] = ACTIONS(7395), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(8735), + [anon_sym_unsigned] = ACTIONS(8735), + [anon_sym_long] = ACTIONS(8735), + [anon_sym_short] = ACTIONS(8735), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_RBRACK] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7395), + [anon_sym_volatile] = ACTIONS(7395), + [anon_sym_restrict] = ACTIONS(7395), + [anon_sym___restrict__] = ACTIONS(7395), + [anon_sym__Atomic] = ACTIONS(7395), + [anon_sym__Noreturn] = ACTIONS(7395), + [anon_sym_noreturn] = ACTIONS(7395), + [anon_sym__Nonnull] = ACTIONS(7395), + [anon_sym_mutable] = ACTIONS(7395), + [anon_sym_constinit] = ACTIONS(7395), + [anon_sym_consteval] = ACTIONS(7395), + [anon_sym_alignas] = ACTIONS(7395), + [anon_sym__Alignas] = ACTIONS(7395), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7395), + [anon_sym_and] = ACTIONS(7395), + [anon_sym_bitor] = ACTIONS(7395), + [anon_sym_xor] = ACTIONS(7395), + [anon_sym_bitand] = ACTIONS(7395), + [anon_sym_not_eq] = ACTIONS(7395), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7395), + [anon_sym_override] = ACTIONS(7395), + [anon_sym_requires] = ACTIONS(7395), + }, + [STATE(3363)] = { + [sym_identifier] = ACTIONS(8317), + [aux_sym_preproc_def_token1] = ACTIONS(8317), + [aux_sym_preproc_if_token1] = ACTIONS(8317), + [aux_sym_preproc_if_token2] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), + [sym_preproc_directive] = ACTIONS(8317), + [anon_sym_LPAREN2] = ACTIONS(8319), + [anon_sym_TILDE] = ACTIONS(8319), + [anon_sym_STAR] = ACTIONS(8319), + [anon_sym_AMP_AMP] = ACTIONS(8319), + [anon_sym_AMP] = ACTIONS(8317), + [anon_sym_SEMI] = ACTIONS(8319), + [anon_sym___extension__] = ACTIONS(8317), + [anon_sym_typedef] = ACTIONS(8317), + [anon_sym_virtual] = ACTIONS(8317), + [anon_sym_extern] = ACTIONS(8317), + [anon_sym___attribute__] = ACTIONS(8317), + [anon_sym___attribute] = ACTIONS(8317), + [anon_sym_using] = ACTIONS(8317), + [anon_sym_COLON_COLON] = ACTIONS(8319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), + [anon_sym___declspec] = ACTIONS(8317), + [anon_sym___based] = ACTIONS(8317), + [anon_sym_signed] = ACTIONS(8317), + [anon_sym_unsigned] = ACTIONS(8317), + [anon_sym_long] = ACTIONS(8317), + [anon_sym_short] = ACTIONS(8317), + [anon_sym_LBRACK] = ACTIONS(8317), + [anon_sym_static] = ACTIONS(8317), + [anon_sym_register] = ACTIONS(8317), + [anon_sym_inline] = ACTIONS(8317), + [anon_sym___inline] = ACTIONS(8317), + [anon_sym___inline__] = ACTIONS(8317), + [anon_sym___forceinline] = ACTIONS(8317), + [anon_sym_thread_local] = ACTIONS(8317), + [anon_sym___thread] = ACTIONS(8317), + [anon_sym_const] = ACTIONS(8317), + [anon_sym_constexpr] = ACTIONS(8317), + [anon_sym_volatile] = ACTIONS(8317), + [anon_sym_restrict] = ACTIONS(8317), + [anon_sym___restrict__] = ACTIONS(8317), + [anon_sym__Atomic] = ACTIONS(8317), + [anon_sym__Noreturn] = ACTIONS(8317), + [anon_sym_noreturn] = ACTIONS(8317), + [anon_sym__Nonnull] = ACTIONS(8317), + [anon_sym_mutable] = ACTIONS(8317), + [anon_sym_constinit] = ACTIONS(8317), + [anon_sym_consteval] = ACTIONS(8317), + [anon_sym_alignas] = ACTIONS(8317), + [anon_sym__Alignas] = ACTIONS(8317), + [sym_primitive_type] = ACTIONS(8317), + [anon_sym_enum] = ACTIONS(8317), + [anon_sym_class] = ACTIONS(8317), + [anon_sym_struct] = ACTIONS(8317), + [anon_sym_union] = ACTIONS(8317), + [anon_sym_typename] = ACTIONS(8317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8317), + [anon_sym_decltype] = ACTIONS(8317), + [anon_sym_explicit] = ACTIONS(8317), + [anon_sym_private] = ACTIONS(8317), + [anon_sym_template] = ACTIONS(8317), + [anon_sym_operator] = ACTIONS(8317), + [anon_sym_friend] = ACTIONS(8317), + [anon_sym_public] = ACTIONS(8317), + [anon_sym_protected] = ACTIONS(8317), + [anon_sym_static_assert] = ACTIONS(8317), + [anon_sym_LBRACK_COLON] = ACTIONS(8319), + }, + [STATE(3364)] = { + [sym_identifier] = ACTIONS(8362), + [aux_sym_preproc_def_token1] = ACTIONS(8362), + [aux_sym_preproc_if_token1] = ACTIONS(8362), + [aux_sym_preproc_if_token2] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), + [sym_preproc_directive] = ACTIONS(8362), + [anon_sym_LPAREN2] = ACTIONS(8364), + [anon_sym_TILDE] = ACTIONS(8364), + [anon_sym_STAR] = ACTIONS(8364), + [anon_sym_AMP_AMP] = ACTIONS(8364), + [anon_sym_AMP] = ACTIONS(8362), + [anon_sym_SEMI] = ACTIONS(8364), + [anon_sym___extension__] = ACTIONS(8362), + [anon_sym_typedef] = ACTIONS(8362), + [anon_sym_virtual] = ACTIONS(8362), + [anon_sym_extern] = ACTIONS(8362), + [anon_sym___attribute__] = ACTIONS(8362), + [anon_sym___attribute] = ACTIONS(8362), + [anon_sym_using] = ACTIONS(8362), + [anon_sym_COLON_COLON] = ACTIONS(8364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), + [anon_sym___declspec] = ACTIONS(8362), + [anon_sym___based] = ACTIONS(8362), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(8362), + [anon_sym_static] = ACTIONS(8362), + [anon_sym_register] = ACTIONS(8362), + [anon_sym_inline] = ACTIONS(8362), + [anon_sym___inline] = ACTIONS(8362), + [anon_sym___inline__] = ACTIONS(8362), + [anon_sym___forceinline] = ACTIONS(8362), + [anon_sym_thread_local] = ACTIONS(8362), + [anon_sym___thread] = ACTIONS(8362), + [anon_sym_const] = ACTIONS(8362), + [anon_sym_constexpr] = ACTIONS(8362), + [anon_sym_volatile] = ACTIONS(8362), + [anon_sym_restrict] = ACTIONS(8362), + [anon_sym___restrict__] = ACTIONS(8362), + [anon_sym__Atomic] = ACTIONS(8362), + [anon_sym__Noreturn] = ACTIONS(8362), + [anon_sym_noreturn] = ACTIONS(8362), + [anon_sym__Nonnull] = ACTIONS(8362), + [anon_sym_mutable] = ACTIONS(8362), + [anon_sym_constinit] = ACTIONS(8362), + [anon_sym_consteval] = ACTIONS(8362), + [anon_sym_alignas] = ACTIONS(8362), + [anon_sym__Alignas] = ACTIONS(8362), + [sym_primitive_type] = ACTIONS(8362), + [anon_sym_enum] = ACTIONS(8362), + [anon_sym_class] = ACTIONS(8362), + [anon_sym_struct] = ACTIONS(8362), + [anon_sym_union] = ACTIONS(8362), + [anon_sym_typename] = ACTIONS(8362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8362), + [anon_sym_decltype] = ACTIONS(8362), + [anon_sym_explicit] = ACTIONS(8362), + [anon_sym_private] = ACTIONS(8362), + [anon_sym_template] = ACTIONS(8362), + [anon_sym_operator] = ACTIONS(8362), + [anon_sym_friend] = ACTIONS(8362), + [anon_sym_public] = ACTIONS(8362), + [anon_sym_protected] = ACTIONS(8362), + [anon_sym_static_assert] = ACTIONS(8362), + [anon_sym_LBRACK_COLON] = ACTIONS(8364), + }, + [STATE(3365)] = { + [sym_identifier] = ACTIONS(3990), + [aux_sym_preproc_def_token1] = ACTIONS(3990), + [aux_sym_preproc_if_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), + [sym_preproc_directive] = ACTIONS(3990), + [anon_sym_LPAREN2] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AMP_AMP] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3990), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym___extension__] = ACTIONS(3990), + [anon_sym_typedef] = ACTIONS(3990), + [anon_sym_virtual] = ACTIONS(3990), + [anon_sym_extern] = ACTIONS(3990), + [anon_sym___attribute__] = ACTIONS(3990), + [anon_sym___attribute] = ACTIONS(3990), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_COLON_COLON] = ACTIONS(3992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), + [anon_sym___declspec] = ACTIONS(3990), + [anon_sym___based] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3990), + [anon_sym_unsigned] = ACTIONS(3990), + [anon_sym_long] = ACTIONS(3990), + [anon_sym_short] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3990), + [anon_sym_static] = ACTIONS(3990), + [anon_sym_register] = ACTIONS(3990), + [anon_sym_inline] = ACTIONS(3990), + [anon_sym___inline] = ACTIONS(3990), + [anon_sym___inline__] = ACTIONS(3990), + [anon_sym___forceinline] = ACTIONS(3990), + [anon_sym_thread_local] = ACTIONS(3990), + [anon_sym___thread] = ACTIONS(3990), + [anon_sym_const] = ACTIONS(3990), + [anon_sym_constexpr] = ACTIONS(3990), + [anon_sym_volatile] = ACTIONS(3990), + [anon_sym_restrict] = ACTIONS(3990), + [anon_sym___restrict__] = ACTIONS(3990), + [anon_sym__Atomic] = ACTIONS(3990), + [anon_sym__Noreturn] = ACTIONS(3990), + [anon_sym_noreturn] = ACTIONS(3990), + [anon_sym__Nonnull] = ACTIONS(3990), + [anon_sym_mutable] = ACTIONS(3990), + [anon_sym_constinit] = ACTIONS(3990), + [anon_sym_consteval] = ACTIONS(3990), + [anon_sym_alignas] = ACTIONS(3990), + [anon_sym__Alignas] = ACTIONS(3990), + [sym_primitive_type] = ACTIONS(3990), + [anon_sym_enum] = ACTIONS(3990), + [anon_sym_class] = ACTIONS(3990), + [anon_sym_struct] = ACTIONS(3990), + [anon_sym_union] = ACTIONS(3990), + [anon_sym_typename] = ACTIONS(3990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3990), + [anon_sym_decltype] = ACTIONS(3990), + [anon_sym_explicit] = ACTIONS(3990), + [anon_sym_private] = ACTIONS(3990), + [anon_sym_template] = ACTIONS(3990), + [anon_sym_operator] = ACTIONS(3990), + [anon_sym_friend] = ACTIONS(3990), + [anon_sym_public] = ACTIONS(3990), + [anon_sym_protected] = ACTIONS(3990), + [anon_sym_static_assert] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3992), + }, + [STATE(3366)] = { + [sym_identifier] = ACTIONS(4086), + [aux_sym_preproc_def_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token1] = ACTIONS(4086), + [aux_sym_preproc_if_token2] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), + [sym_preproc_directive] = ACTIONS(4086), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4086), + [anon_sym_SEMI] = ACTIONS(4088), + [anon_sym___extension__] = ACTIONS(4086), + [anon_sym_typedef] = ACTIONS(4086), + [anon_sym_virtual] = ACTIONS(4086), + [anon_sym_extern] = ACTIONS(4086), + [anon_sym___attribute__] = ACTIONS(4086), + [anon_sym___attribute] = ACTIONS(4086), + [anon_sym_using] = ACTIONS(4086), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4086), + [anon_sym___based] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4086), + [anon_sym_unsigned] = ACTIONS(4086), + [anon_sym_long] = ACTIONS(4086), + [anon_sym_short] = ACTIONS(4086), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_static] = ACTIONS(4086), + [anon_sym_register] = ACTIONS(4086), + [anon_sym_inline] = ACTIONS(4086), + [anon_sym___inline] = ACTIONS(4086), + [anon_sym___inline__] = ACTIONS(4086), + [anon_sym___forceinline] = ACTIONS(4086), + [anon_sym_thread_local] = ACTIONS(4086), + [anon_sym___thread] = ACTIONS(4086), + [anon_sym_const] = ACTIONS(4086), + [anon_sym_constexpr] = ACTIONS(4086), + [anon_sym_volatile] = ACTIONS(4086), + [anon_sym_restrict] = ACTIONS(4086), + [anon_sym___restrict__] = ACTIONS(4086), + [anon_sym__Atomic] = ACTIONS(4086), + [anon_sym__Noreturn] = ACTIONS(4086), + [anon_sym_noreturn] = ACTIONS(4086), + [anon_sym__Nonnull] = ACTIONS(4086), + [anon_sym_mutable] = ACTIONS(4086), + [anon_sym_constinit] = ACTIONS(4086), + [anon_sym_consteval] = ACTIONS(4086), + [anon_sym_alignas] = ACTIONS(4086), + [anon_sym__Alignas] = ACTIONS(4086), + [sym_primitive_type] = ACTIONS(4086), + [anon_sym_enum] = ACTIONS(4086), + [anon_sym_class] = ACTIONS(4086), + [anon_sym_struct] = ACTIONS(4086), + [anon_sym_union] = ACTIONS(4086), + [anon_sym_typename] = ACTIONS(4086), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4086), + [anon_sym_decltype] = ACTIONS(4086), + [anon_sym_explicit] = ACTIONS(4086), + [anon_sym_private] = ACTIONS(4086), + [anon_sym_template] = ACTIONS(4086), + [anon_sym_operator] = ACTIONS(4086), + [anon_sym_friend] = ACTIONS(4086), + [anon_sym_public] = ACTIONS(4086), + [anon_sym_protected] = ACTIONS(4086), + [anon_sym_static_assert] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4088), + }, + [STATE(3367)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token2] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(3368)] = { + [sym_identifier] = ACTIONS(3680), + [aux_sym_preproc_def_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token1] = ACTIONS(3680), + [aux_sym_preproc_if_token2] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), + [sym_preproc_directive] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym___extension__] = ACTIONS(3680), + [anon_sym_typedef] = ACTIONS(3680), + [anon_sym_virtual] = ACTIONS(3680), + [anon_sym_extern] = ACTIONS(3680), + [anon_sym___attribute__] = ACTIONS(3680), + [anon_sym___attribute] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_COLON_COLON] = ACTIONS(3682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), + [anon_sym___declspec] = ACTIONS(3680), + [anon_sym___based] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3680), + [anon_sym_unsigned] = ACTIONS(3680), + [anon_sym_long] = ACTIONS(3680), + [anon_sym_short] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_register] = ACTIONS(3680), + [anon_sym_inline] = ACTIONS(3680), + [anon_sym___inline] = ACTIONS(3680), + [anon_sym___inline__] = ACTIONS(3680), + [anon_sym___forceinline] = ACTIONS(3680), + [anon_sym_thread_local] = ACTIONS(3680), + [anon_sym___thread] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_constexpr] = ACTIONS(3680), + [anon_sym_volatile] = ACTIONS(3680), + [anon_sym_restrict] = ACTIONS(3680), + [anon_sym___restrict__] = ACTIONS(3680), + [anon_sym__Atomic] = ACTIONS(3680), + [anon_sym__Noreturn] = ACTIONS(3680), + [anon_sym_noreturn] = ACTIONS(3680), + [anon_sym__Nonnull] = ACTIONS(3680), + [anon_sym_mutable] = ACTIONS(3680), + [anon_sym_constinit] = ACTIONS(3680), + [anon_sym_consteval] = ACTIONS(3680), + [anon_sym_alignas] = ACTIONS(3680), + [anon_sym__Alignas] = ACTIONS(3680), + [sym_primitive_type] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_struct] = ACTIONS(3680), + [anon_sym_union] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3680), + [anon_sym_decltype] = ACTIONS(3680), + [anon_sym_explicit] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_template] = ACTIONS(3680), + [anon_sym_operator] = ACTIONS(3680), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_static_assert] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3682), + }, + [STATE(3369)] = { + [sym_identifier] = ACTIONS(4042), + [aux_sym_preproc_def_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token1] = ACTIONS(4042), + [aux_sym_preproc_if_token2] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), + [sym_preproc_directive] = ACTIONS(4042), + [anon_sym_LPAREN2] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym___extension__] = ACTIONS(4042), + [anon_sym_typedef] = ACTIONS(4042), + [anon_sym_virtual] = ACTIONS(4042), + [anon_sym_extern] = ACTIONS(4042), + [anon_sym___attribute__] = ACTIONS(4042), + [anon_sym___attribute] = ACTIONS(4042), + [anon_sym_using] = ACTIONS(4042), + [anon_sym_COLON_COLON] = ACTIONS(4044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), + [anon_sym___declspec] = ACTIONS(4042), + [anon_sym___based] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4042), + [anon_sym_unsigned] = ACTIONS(4042), + [anon_sym_long] = ACTIONS(4042), + [anon_sym_short] = ACTIONS(4042), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_static] = ACTIONS(4042), + [anon_sym_register] = ACTIONS(4042), + [anon_sym_inline] = ACTIONS(4042), + [anon_sym___inline] = ACTIONS(4042), + [anon_sym___inline__] = ACTIONS(4042), + [anon_sym___forceinline] = ACTIONS(4042), + [anon_sym_thread_local] = ACTIONS(4042), + [anon_sym___thread] = ACTIONS(4042), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_constexpr] = ACTIONS(4042), + [anon_sym_volatile] = ACTIONS(4042), + [anon_sym_restrict] = ACTIONS(4042), + [anon_sym___restrict__] = ACTIONS(4042), + [anon_sym__Atomic] = ACTIONS(4042), + [anon_sym__Noreturn] = ACTIONS(4042), + [anon_sym_noreturn] = ACTIONS(4042), + [anon_sym__Nonnull] = ACTIONS(4042), + [anon_sym_mutable] = ACTIONS(4042), + [anon_sym_constinit] = ACTIONS(4042), + [anon_sym_consteval] = ACTIONS(4042), + [anon_sym_alignas] = ACTIONS(4042), + [anon_sym__Alignas] = ACTIONS(4042), + [sym_primitive_type] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_class] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_typename] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4042), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_explicit] = ACTIONS(4042), + [anon_sym_private] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(4042), + [anon_sym_operator] = ACTIONS(4042), + [anon_sym_friend] = ACTIONS(4042), + [anon_sym_public] = ACTIONS(4042), + [anon_sym_protected] = ACTIONS(4042), + [anon_sym_static_assert] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4044), + }, + [STATE(3370)] = { + [sym_identifier] = ACTIONS(3890), + [aux_sym_preproc_def_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token1] = ACTIONS(3890), + [aux_sym_preproc_if_token2] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), + [sym_preproc_directive] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3890), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym___extension__] = ACTIONS(3890), + [anon_sym_typedef] = ACTIONS(3890), + [anon_sym_virtual] = ACTIONS(3890), + [anon_sym_extern] = ACTIONS(3890), + [anon_sym___attribute__] = ACTIONS(3890), + [anon_sym___attribute] = ACTIONS(3890), + [anon_sym_using] = ACTIONS(3890), + [anon_sym_COLON_COLON] = ACTIONS(3892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), + [anon_sym___declspec] = ACTIONS(3890), + [anon_sym___based] = ACTIONS(3890), + [anon_sym_signed] = ACTIONS(3890), + [anon_sym_unsigned] = ACTIONS(3890), + [anon_sym_long] = ACTIONS(3890), + [anon_sym_short] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_static] = ACTIONS(3890), + [anon_sym_register] = ACTIONS(3890), + [anon_sym_inline] = ACTIONS(3890), + [anon_sym___inline] = ACTIONS(3890), + [anon_sym___inline__] = ACTIONS(3890), + [anon_sym___forceinline] = ACTIONS(3890), + [anon_sym_thread_local] = ACTIONS(3890), + [anon_sym___thread] = ACTIONS(3890), + [anon_sym_const] = ACTIONS(3890), + [anon_sym_constexpr] = ACTIONS(3890), + [anon_sym_volatile] = ACTIONS(3890), + [anon_sym_restrict] = ACTIONS(3890), + [anon_sym___restrict__] = ACTIONS(3890), + [anon_sym__Atomic] = ACTIONS(3890), + [anon_sym__Noreturn] = ACTIONS(3890), + [anon_sym_noreturn] = ACTIONS(3890), + [anon_sym__Nonnull] = ACTIONS(3890), + [anon_sym_mutable] = ACTIONS(3890), + [anon_sym_constinit] = ACTIONS(3890), + [anon_sym_consteval] = ACTIONS(3890), + [anon_sym_alignas] = ACTIONS(3890), + [anon_sym__Alignas] = ACTIONS(3890), + [sym_primitive_type] = ACTIONS(3890), + [anon_sym_enum] = ACTIONS(3890), + [anon_sym_class] = ACTIONS(3890), + [anon_sym_struct] = ACTIONS(3890), + [anon_sym_union] = ACTIONS(3890), + [anon_sym_typename] = ACTIONS(3890), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3890), + [anon_sym_decltype] = ACTIONS(3890), + [anon_sym_explicit] = ACTIONS(3890), + [anon_sym_private] = ACTIONS(3890), + [anon_sym_template] = ACTIONS(3890), + [anon_sym_operator] = ACTIONS(3890), + [anon_sym_friend] = ACTIONS(3890), + [anon_sym_public] = ACTIONS(3890), + [anon_sym_protected] = ACTIONS(3890), + [anon_sym_static_assert] = ACTIONS(3890), + [anon_sym_LBRACK_COLON] = ACTIONS(3892), + }, + [STATE(3371)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + }, + [STATE(3372)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3373)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3374)] = { + [sym_identifier] = ACTIONS(8396), + [aux_sym_preproc_def_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token1] = ACTIONS(8396), + [aux_sym_preproc_if_token2] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), + [sym_preproc_directive] = ACTIONS(8396), + [anon_sym_LPAREN2] = ACTIONS(8398), + [anon_sym_TILDE] = ACTIONS(8398), + [anon_sym_STAR] = ACTIONS(8398), + [anon_sym_AMP_AMP] = ACTIONS(8398), + [anon_sym_AMP] = ACTIONS(8396), + [anon_sym_SEMI] = ACTIONS(8398), + [anon_sym___extension__] = ACTIONS(8396), + [anon_sym_typedef] = ACTIONS(8396), + [anon_sym_virtual] = ACTIONS(8396), + [anon_sym_extern] = ACTIONS(8396), + [anon_sym___attribute__] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(8396), + [anon_sym_using] = ACTIONS(8396), + [anon_sym_COLON_COLON] = ACTIONS(8398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8396), + [anon_sym___based] = ACTIONS(8396), + [anon_sym_signed] = ACTIONS(8396), + [anon_sym_unsigned] = ACTIONS(8396), + [anon_sym_long] = ACTIONS(8396), + [anon_sym_short] = ACTIONS(8396), + [anon_sym_LBRACK] = ACTIONS(8396), + [anon_sym_static] = ACTIONS(8396), + [anon_sym_register] = ACTIONS(8396), + [anon_sym_inline] = ACTIONS(8396), + [anon_sym___inline] = ACTIONS(8396), + [anon_sym___inline__] = ACTIONS(8396), + [anon_sym___forceinline] = ACTIONS(8396), + [anon_sym_thread_local] = ACTIONS(8396), + [anon_sym___thread] = ACTIONS(8396), + [anon_sym_const] = ACTIONS(8396), + [anon_sym_constexpr] = ACTIONS(8396), + [anon_sym_volatile] = ACTIONS(8396), + [anon_sym_restrict] = ACTIONS(8396), + [anon_sym___restrict__] = ACTIONS(8396), + [anon_sym__Atomic] = ACTIONS(8396), + [anon_sym__Noreturn] = ACTIONS(8396), + [anon_sym_noreturn] = ACTIONS(8396), + [anon_sym__Nonnull] = ACTIONS(8396), + [anon_sym_mutable] = ACTIONS(8396), + [anon_sym_constinit] = ACTIONS(8396), + [anon_sym_consteval] = ACTIONS(8396), + [anon_sym_alignas] = ACTIONS(8396), + [anon_sym__Alignas] = ACTIONS(8396), + [sym_primitive_type] = ACTIONS(8396), + [anon_sym_enum] = ACTIONS(8396), + [anon_sym_class] = ACTIONS(8396), + [anon_sym_struct] = ACTIONS(8396), + [anon_sym_union] = ACTIONS(8396), + [anon_sym_typename] = ACTIONS(8396), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8396), + [anon_sym_decltype] = ACTIONS(8396), + [anon_sym_explicit] = ACTIONS(8396), + [anon_sym_private] = ACTIONS(8396), + [anon_sym_template] = ACTIONS(8396), + [anon_sym_operator] = ACTIONS(8396), + [anon_sym_friend] = ACTIONS(8396), + [anon_sym_public] = ACTIONS(8396), + [anon_sym_protected] = ACTIONS(8396), + [anon_sym_static_assert] = ACTIONS(8396), + [anon_sym_LBRACK_COLON] = ACTIONS(8398), + }, + [STATE(3375)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_friend] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + }, + [STATE(3376)] = { + [sym_identifier] = ACTIONS(8408), + [aux_sym_preproc_def_token1] = ACTIONS(8408), + [aux_sym_preproc_if_token1] = ACTIONS(8408), + [aux_sym_preproc_if_token2] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), + [sym_preproc_directive] = ACTIONS(8408), + [anon_sym_LPAREN2] = ACTIONS(8410), + [anon_sym_TILDE] = ACTIONS(8410), + [anon_sym_STAR] = ACTIONS(8410), + [anon_sym_AMP_AMP] = ACTIONS(8410), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_SEMI] = ACTIONS(8410), + [anon_sym___extension__] = ACTIONS(8408), + [anon_sym_typedef] = ACTIONS(8408), + [anon_sym_virtual] = ACTIONS(8408), + [anon_sym_extern] = ACTIONS(8408), + [anon_sym___attribute__] = ACTIONS(8408), + [anon_sym___attribute] = ACTIONS(8408), + [anon_sym_using] = ACTIONS(8408), + [anon_sym_COLON_COLON] = ACTIONS(8410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), + [anon_sym___declspec] = ACTIONS(8408), + [anon_sym___based] = ACTIONS(8408), + [anon_sym_signed] = ACTIONS(8408), + [anon_sym_unsigned] = ACTIONS(8408), + [anon_sym_long] = ACTIONS(8408), + [anon_sym_short] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8408), + [anon_sym_static] = ACTIONS(8408), + [anon_sym_register] = ACTIONS(8408), + [anon_sym_inline] = ACTIONS(8408), + [anon_sym___inline] = ACTIONS(8408), + [anon_sym___inline__] = ACTIONS(8408), + [anon_sym___forceinline] = ACTIONS(8408), + [anon_sym_thread_local] = ACTIONS(8408), + [anon_sym___thread] = ACTIONS(8408), + [anon_sym_const] = ACTIONS(8408), + [anon_sym_constexpr] = ACTIONS(8408), + [anon_sym_volatile] = ACTIONS(8408), + [anon_sym_restrict] = ACTIONS(8408), + [anon_sym___restrict__] = ACTIONS(8408), + [anon_sym__Atomic] = ACTIONS(8408), + [anon_sym__Noreturn] = ACTIONS(8408), + [anon_sym_noreturn] = ACTIONS(8408), + [anon_sym__Nonnull] = ACTIONS(8408), + [anon_sym_mutable] = ACTIONS(8408), + [anon_sym_constinit] = ACTIONS(8408), + [anon_sym_consteval] = ACTIONS(8408), + [anon_sym_alignas] = ACTIONS(8408), + [anon_sym__Alignas] = ACTIONS(8408), + [sym_primitive_type] = ACTIONS(8408), + [anon_sym_enum] = ACTIONS(8408), + [anon_sym_class] = ACTIONS(8408), + [anon_sym_struct] = ACTIONS(8408), + [anon_sym_union] = ACTIONS(8408), + [anon_sym_typename] = ACTIONS(8408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8408), + [anon_sym_decltype] = ACTIONS(8408), + [anon_sym_explicit] = ACTIONS(8408), + [anon_sym_private] = ACTIONS(8408), + [anon_sym_template] = ACTIONS(8408), + [anon_sym_operator] = ACTIONS(8408), + [anon_sym_friend] = ACTIONS(8408), + [anon_sym_public] = ACTIONS(8408), + [anon_sym_protected] = ACTIONS(8408), + [anon_sym_static_assert] = ACTIONS(8408), + [anon_sym_LBRACK_COLON] = ACTIONS(8410), + }, + [STATE(3377)] = { + [sym_identifier] = ACTIONS(8317), + [aux_sym_preproc_def_token1] = ACTIONS(8317), + [aux_sym_preproc_if_token1] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), + [sym_preproc_directive] = ACTIONS(8317), + [anon_sym_LPAREN2] = ACTIONS(8319), + [anon_sym_TILDE] = ACTIONS(8319), + [anon_sym_STAR] = ACTIONS(8319), + [anon_sym_AMP_AMP] = ACTIONS(8319), + [anon_sym_AMP] = ACTIONS(8317), + [anon_sym_SEMI] = ACTIONS(8319), + [anon_sym___extension__] = ACTIONS(8317), + [anon_sym_typedef] = ACTIONS(8317), + [anon_sym_virtual] = ACTIONS(8317), + [anon_sym_extern] = ACTIONS(8317), + [anon_sym___attribute__] = ACTIONS(8317), + [anon_sym___attribute] = ACTIONS(8317), + [anon_sym_using] = ACTIONS(8317), + [anon_sym_COLON_COLON] = ACTIONS(8319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), + [anon_sym___declspec] = ACTIONS(8317), + [anon_sym___based] = ACTIONS(8317), + [anon_sym_RBRACE] = ACTIONS(8319), + [anon_sym_signed] = ACTIONS(8317), + [anon_sym_unsigned] = ACTIONS(8317), + [anon_sym_long] = ACTIONS(8317), + [anon_sym_short] = ACTIONS(8317), + [anon_sym_LBRACK] = ACTIONS(8317), + [anon_sym_static] = ACTIONS(8317), + [anon_sym_register] = ACTIONS(8317), + [anon_sym_inline] = ACTIONS(8317), + [anon_sym___inline] = ACTIONS(8317), + [anon_sym___inline__] = ACTIONS(8317), + [anon_sym___forceinline] = ACTIONS(8317), + [anon_sym_thread_local] = ACTIONS(8317), + [anon_sym___thread] = ACTIONS(8317), + [anon_sym_const] = ACTIONS(8317), + [anon_sym_constexpr] = ACTIONS(8317), + [anon_sym_volatile] = ACTIONS(8317), + [anon_sym_restrict] = ACTIONS(8317), + [anon_sym___restrict__] = ACTIONS(8317), + [anon_sym__Atomic] = ACTIONS(8317), + [anon_sym__Noreturn] = ACTIONS(8317), + [anon_sym_noreturn] = ACTIONS(8317), + [anon_sym__Nonnull] = ACTIONS(8317), + [anon_sym_mutable] = ACTIONS(8317), + [anon_sym_constinit] = ACTIONS(8317), + [anon_sym_consteval] = ACTIONS(8317), + [anon_sym_alignas] = ACTIONS(8317), + [anon_sym__Alignas] = ACTIONS(8317), + [sym_primitive_type] = ACTIONS(8317), + [anon_sym_enum] = ACTIONS(8317), + [anon_sym_class] = ACTIONS(8317), + [anon_sym_struct] = ACTIONS(8317), + [anon_sym_union] = ACTIONS(8317), + [anon_sym_typename] = ACTIONS(8317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8317), + [anon_sym_decltype] = ACTIONS(8317), + [anon_sym_explicit] = ACTIONS(8317), + [anon_sym_private] = ACTIONS(8317), + [anon_sym_template] = ACTIONS(8317), + [anon_sym_operator] = ACTIONS(8317), + [anon_sym_friend] = ACTIONS(8317), + [anon_sym_public] = ACTIONS(8317), + [anon_sym_protected] = ACTIONS(8317), + [anon_sym_static_assert] = ACTIONS(8317), + [anon_sym_LBRACK_COLON] = ACTIONS(8319), + }, + [STATE(3378)] = { + [sym_type_qualifier] = STATE(3487), + [sym_alignas_qualifier] = STATE(3785), + [aux_sym__type_definition_type_repeat1] = STATE(3487), + [aux_sym_sized_type_specifier_repeat1] = STATE(3679), + [sym_identifier] = ACTIONS(8790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6814), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(8792), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8795), + [anon_sym_unsigned] = ACTIONS(8795), + [anon_sym_long] = ACTIONS(8795), + [anon_sym_short] = ACTIONS(8795), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(8792), + [anon_sym_constexpr] = ACTIONS(8792), + [anon_sym_volatile] = ACTIONS(8792), + [anon_sym_restrict] = ACTIONS(8792), + [anon_sym___restrict__] = ACTIONS(8792), + [anon_sym__Atomic] = ACTIONS(8792), + [anon_sym__Noreturn] = ACTIONS(8792), + [anon_sym_noreturn] = ACTIONS(8792), + [anon_sym__Nonnull] = ACTIONS(8792), + [anon_sym_mutable] = ACTIONS(8792), + [anon_sym_constinit] = ACTIONS(8792), + [anon_sym_consteval] = ACTIONS(8792), + [anon_sym_alignas] = ACTIONS(8797), + [anon_sym__Alignas] = ACTIONS(8797), + [sym_primitive_type] = ACTIONS(8800), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_GT2] = ACTIONS(6812), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(3379)] = { + [sym_string_literal] = STATE(3400), + [sym_raw_string_literal] = STATE(3400), + [aux_sym_concatenated_string_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(8802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_LPAREN2] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(8127), + [anon_sym_STAR] = ACTIONS(8127), + [anon_sym_SLASH] = ACTIONS(8127), + [anon_sym_PERCENT] = ACTIONS(8127), + [anon_sym_PIPE_PIPE] = ACTIONS(8125), + [anon_sym_AMP_AMP] = ACTIONS(8125), + [anon_sym_PIPE] = ACTIONS(8127), + [anon_sym_CARET] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(8127), + [anon_sym_EQ_EQ] = ACTIONS(8125), + [anon_sym_BANG_EQ] = ACTIONS(8125), + [anon_sym_GT] = ACTIONS(8127), + [anon_sym_GT_EQ] = ACTIONS(8125), + [anon_sym_LT_EQ] = ACTIONS(8127), + [anon_sym_LT] = ACTIONS(8127), + [anon_sym_LT_LT] = ACTIONS(8127), + [anon_sym_GT_GT] = ACTIONS(8127), + [anon_sym_SEMI] = ACTIONS(8125), + [anon_sym___attribute__] = ACTIONS(8127), + [anon_sym___attribute] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym_EQ] = ACTIONS(8127), + [anon_sym_QMARK] = ACTIONS(8125), + [anon_sym_STAR_EQ] = ACTIONS(8125), + [anon_sym_SLASH_EQ] = ACTIONS(8125), + [anon_sym_PERCENT_EQ] = ACTIONS(8125), + [anon_sym_PLUS_EQ] = ACTIONS(8125), + [anon_sym_DASH_EQ] = ACTIONS(8125), + [anon_sym_LT_LT_EQ] = ACTIONS(8125), + [anon_sym_GT_GT_EQ] = ACTIONS(8125), + [anon_sym_AMP_EQ] = ACTIONS(8125), + [anon_sym_CARET_EQ] = ACTIONS(8125), + [anon_sym_PIPE_EQ] = ACTIONS(8125), + [anon_sym_and_eq] = ACTIONS(8127), + [anon_sym_or_eq] = ACTIONS(8127), + [anon_sym_xor_eq] = ACTIONS(8127), + [anon_sym_LT_EQ_GT] = ACTIONS(8125), + [anon_sym_or] = ACTIONS(8127), + [anon_sym_and] = ACTIONS(8127), + [anon_sym_bitor] = ACTIONS(8127), + [anon_sym_xor] = ACTIONS(8127), + [anon_sym_bitand] = ACTIONS(8127), + [anon_sym_not_eq] = ACTIONS(8127), + [anon_sym_DASH_DASH] = ACTIONS(8125), + [anon_sym_PLUS_PLUS] = ACTIONS(8125), + [anon_sym_DOT] = ACTIONS(8127), + [anon_sym_DOT_STAR] = ACTIONS(8125), + [anon_sym_DASH_GT] = ACTIONS(8125), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6545), + [anon_sym_LR_DQUOTE] = ACTIONS(6545), + [anon_sym_uR_DQUOTE] = ACTIONS(6545), + [anon_sym_UR_DQUOTE] = ACTIONS(6545), + [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + [sym_literal_suffix] = ACTIONS(8127), + }, + [STATE(3380)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_LBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7281), + [anon_sym_volatile] = ACTIONS(7281), + [anon_sym_restrict] = ACTIONS(7281), + [anon_sym___restrict__] = ACTIONS(7281), + [anon_sym__Atomic] = ACTIONS(7281), + [anon_sym__Noreturn] = ACTIONS(7281), + [anon_sym_noreturn] = ACTIONS(7281), + [anon_sym__Nonnull] = ACTIONS(7281), + [anon_sym_mutable] = ACTIONS(7281), + [anon_sym_constinit] = ACTIONS(7281), + [anon_sym_consteval] = ACTIONS(7281), + [anon_sym_alignas] = ACTIONS(7281), + [anon_sym__Alignas] = ACTIONS(7281), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7281), + [anon_sym_and] = ACTIONS(7281), + [anon_sym_bitor] = ACTIONS(7281), + [anon_sym_xor] = ACTIONS(7281), + [anon_sym_bitand] = ACTIONS(7281), + [anon_sym_not_eq] = ACTIONS(7281), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7279), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7281), + [anon_sym_override] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7281), + [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + }, + [STATE(3381)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7423), + [anon_sym_volatile] = ACTIONS(7423), + [anon_sym_restrict] = ACTIONS(7423), + [anon_sym___restrict__] = ACTIONS(7423), + [anon_sym__Atomic] = ACTIONS(7423), + [anon_sym__Noreturn] = ACTIONS(7423), + [anon_sym_noreturn] = ACTIONS(7423), + [anon_sym__Nonnull] = ACTIONS(7423), + [anon_sym_mutable] = ACTIONS(7423), + [anon_sym_constinit] = ACTIONS(7423), + [anon_sym_consteval] = ACTIONS(7423), + [anon_sym_alignas] = ACTIONS(7423), + [anon_sym__Alignas] = ACTIONS(7423), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7423), + [anon_sym_and] = ACTIONS(7423), + [anon_sym_bitor] = ACTIONS(7423), + [anon_sym_xor] = ACTIONS(7423), + [anon_sym_bitand] = ACTIONS(7423), + [anon_sym_not_eq] = ACTIONS(7423), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7423), + [anon_sym_override] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7423), + [anon_sym_DASH_GT_STAR] = ACTIONS(7423), + }, + [STATE(3382)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), + [anon_sym_COMMA] = ACTIONS(7327), + [anon_sym_RPAREN] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7327), + [anon_sym_DASH] = ACTIONS(7325), + [anon_sym_PLUS] = ACTIONS(7325), + [anon_sym_STAR] = ACTIONS(7325), + [anon_sym_SLASH] = ACTIONS(7325), + [anon_sym_PERCENT] = ACTIONS(7325), + [anon_sym_PIPE_PIPE] = ACTIONS(7327), + [anon_sym_AMP_AMP] = ACTIONS(7327), + [anon_sym_PIPE] = ACTIONS(7325), + [anon_sym_CARET] = ACTIONS(7325), + [anon_sym_AMP] = ACTIONS(7325), + [anon_sym_EQ_EQ] = ACTIONS(7327), + [anon_sym_BANG_EQ] = ACTIONS(7327), + [anon_sym_GT] = ACTIONS(7325), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7325), + [anon_sym_LT] = ACTIONS(7325), + [anon_sym_LT_LT] = ACTIONS(7325), + [anon_sym_GT_GT] = ACTIONS(7325), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7325), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7327), + [anon_sym_STAR_EQ] = ACTIONS(7327), + [anon_sym_SLASH_EQ] = ACTIONS(7327), + [anon_sym_PERCENT_EQ] = ACTIONS(7327), + [anon_sym_PLUS_EQ] = ACTIONS(7327), + [anon_sym_DASH_EQ] = ACTIONS(7327), + [anon_sym_LT_LT_EQ] = ACTIONS(7327), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7327), + [anon_sym_CARET_EQ] = ACTIONS(7327), + [anon_sym_PIPE_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7327), + [anon_sym_PLUS_PLUS] = ACTIONS(7327), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_DOT_STAR] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7325), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_DASH_GT_STAR] = ACTIONS(7327), + }, + [STATE(3383)] = { + [sym_argument_list] = STATE(3819), + [sym_initializer_list] = STATE(3819), + [sym_new_declarator] = STATE(3595), + [sym_identifier] = ACTIONS(8804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8806), + [anon_sym_COMMA] = ACTIONS(8806), + [anon_sym_RPAREN] = ACTIONS(8806), + [aux_sym_preproc_if_token2] = ACTIONS(8806), + [aux_sym_preproc_else_token1] = ACTIONS(8806), + [aux_sym_preproc_elif_token1] = ACTIONS(8804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(8804), + [anon_sym_PLUS] = ACTIONS(8804), + [anon_sym_STAR] = ACTIONS(8804), + [anon_sym_SLASH] = ACTIONS(8804), + [anon_sym_PERCENT] = ACTIONS(8804), + [anon_sym_PIPE_PIPE] = ACTIONS(8806), + [anon_sym_AMP_AMP] = ACTIONS(8806), + [anon_sym_PIPE] = ACTIONS(8804), + [anon_sym_CARET] = ACTIONS(8804), + [anon_sym_AMP] = ACTIONS(8804), + [anon_sym_EQ_EQ] = ACTIONS(8806), + [anon_sym_BANG_EQ] = ACTIONS(8806), + [anon_sym_GT] = ACTIONS(8804), + [anon_sym_GT_EQ] = ACTIONS(8806), + [anon_sym_LT_EQ] = ACTIONS(8804), + [anon_sym_LT] = ACTIONS(8804), + [anon_sym_LT_LT] = ACTIONS(8804), + [anon_sym_GT_GT] = ACTIONS(8804), + [anon_sym_SEMI] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8804), + [anon_sym___attribute] = ACTIONS(8804), + [anon_sym_COLON] = ACTIONS(8804), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8806), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(8804), + [anon_sym_QMARK] = ACTIONS(8806), + [anon_sym_STAR_EQ] = ACTIONS(8806), + [anon_sym_SLASH_EQ] = ACTIONS(8806), + [anon_sym_PERCENT_EQ] = ACTIONS(8806), + [anon_sym_PLUS_EQ] = ACTIONS(8806), + [anon_sym_DASH_EQ] = ACTIONS(8806), + [anon_sym_LT_LT_EQ] = ACTIONS(8806), + [anon_sym_GT_GT_EQ] = ACTIONS(8806), + [anon_sym_AMP_EQ] = ACTIONS(8806), + [anon_sym_CARET_EQ] = ACTIONS(8806), + [anon_sym_PIPE_EQ] = ACTIONS(8806), + [anon_sym_and_eq] = ACTIONS(8804), + [anon_sym_or_eq] = ACTIONS(8804), + [anon_sym_xor_eq] = ACTIONS(8804), + [anon_sym_LT_EQ_GT] = ACTIONS(8806), + [anon_sym_or] = ACTIONS(8804), + [anon_sym_and] = ACTIONS(8804), + [anon_sym_bitor] = ACTIONS(8804), + [anon_sym_xor] = ACTIONS(8804), + [anon_sym_bitand] = ACTIONS(8804), + [anon_sym_not_eq] = ACTIONS(8804), + [anon_sym_DASH_DASH] = ACTIONS(8806), + [anon_sym_PLUS_PLUS] = ACTIONS(8806), + [anon_sym_DOT] = ACTIONS(8804), + [anon_sym_DOT_STAR] = ACTIONS(8806), + [anon_sym_DASH_GT] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8806), + }, + [STATE(3384)] = { + [sym__abstract_declarator] = STATE(6229), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3397), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3397), + [sym_identifier] = ACTIONS(6993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_preproc_if_token2] = ACTIONS(6991), + [aux_sym_preproc_else_token1] = ACTIONS(6991), + [aux_sym_preproc_elif_token1] = ACTIONS(6993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6993), + [anon_sym_and] = ACTIONS(6993), + [anon_sym_bitor] = ACTIONS(6993), + [anon_sym_xor] = ACTIONS(6993), + [anon_sym_bitand] = ACTIONS(6993), + [anon_sym_not_eq] = ACTIONS(6993), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + }, + [STATE(3385)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3512), + [sym__function_exception_specification] = STATE(3993), + [sym__function_attributes_end] = STATE(5837), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5711), + [sym_noexcept] = STATE(3993), + [sym_throw_specifier] = STATE(3993), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(8815), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8821), + [anon_sym_override] = ACTIONS(8821), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(8824), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(3386)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), + [anon_sym_COMMA] = ACTIONS(7331), + [anon_sym_RPAREN] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7331), + [anon_sym_DASH] = ACTIONS(7329), + [anon_sym_PLUS] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7329), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7331), + [anon_sym_AMP_AMP] = ACTIONS(7331), + [anon_sym_PIPE] = ACTIONS(7329), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7329), + [anon_sym_EQ_EQ] = ACTIONS(7331), + [anon_sym_BANG_EQ] = ACTIONS(7331), + [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7329), + [anon_sym_LT] = ACTIONS(7329), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7329), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7331), + [anon_sym_STAR_EQ] = ACTIONS(7331), + [anon_sym_SLASH_EQ] = ACTIONS(7331), + [anon_sym_PERCENT_EQ] = ACTIONS(7331), + [anon_sym_PLUS_EQ] = ACTIONS(7331), + [anon_sym_DASH_EQ] = ACTIONS(7331), + [anon_sym_LT_LT_EQ] = ACTIONS(7331), + [anon_sym_GT_GT_EQ] = ACTIONS(7331), + [anon_sym_AMP_EQ] = ACTIONS(7331), + [anon_sym_CARET_EQ] = ACTIONS(7331), + [anon_sym_PIPE_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7331), + [anon_sym_PLUS_PLUS] = ACTIONS(7331), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_DOT_STAR] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + [anon_sym_DASH_GT_STAR] = ACTIONS(7331), + }, + [STATE(3387)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7237), + [anon_sym_and] = ACTIONS(7237), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7237), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7235), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7237), + [anon_sym_override] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7237), + [anon_sym_DASH_GT_STAR] = ACTIONS(7237), + }, + [STATE(3388)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), + [anon_sym_COMMA] = ACTIONS(7247), + [anon_sym_RPAREN] = ACTIONS(7247), + [anon_sym_LPAREN2] = ACTIONS(7247), + [anon_sym_DASH] = ACTIONS(7245), + [anon_sym_PLUS] = ACTIONS(7245), + [anon_sym_STAR] = ACTIONS(7245), + [anon_sym_SLASH] = ACTIONS(7245), + [anon_sym_PERCENT] = ACTIONS(7245), + [anon_sym_PIPE_PIPE] = ACTIONS(7247), + [anon_sym_AMP_AMP] = ACTIONS(7247), + [anon_sym_PIPE] = ACTIONS(7245), + [anon_sym_CARET] = ACTIONS(7245), + [anon_sym_AMP] = ACTIONS(7245), + [anon_sym_EQ_EQ] = ACTIONS(7247), + [anon_sym_BANG_EQ] = ACTIONS(7247), + [anon_sym_GT] = ACTIONS(7245), + [anon_sym_GT_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ] = ACTIONS(7245), + [anon_sym_LT] = ACTIONS(7245), + [anon_sym_LT_LT] = ACTIONS(7245), + [anon_sym_GT_GT] = ACTIONS(7245), + [anon_sym___extension__] = ACTIONS(7247), + [anon_sym_LBRACE] = ACTIONS(7247), + [anon_sym_LBRACK] = ACTIONS(7247), + [anon_sym_EQ] = ACTIONS(7245), + [anon_sym_const] = ACTIONS(7245), + [anon_sym_constexpr] = ACTIONS(7247), + [anon_sym_volatile] = ACTIONS(7247), + [anon_sym_restrict] = ACTIONS(7247), + [anon_sym___restrict__] = ACTIONS(7247), + [anon_sym__Atomic] = ACTIONS(7247), + [anon_sym__Noreturn] = ACTIONS(7247), + [anon_sym_noreturn] = ACTIONS(7247), + [anon_sym__Nonnull] = ACTIONS(7247), + [anon_sym_mutable] = ACTIONS(7247), + [anon_sym_constinit] = ACTIONS(7247), + [anon_sym_consteval] = ACTIONS(7247), + [anon_sym_alignas] = ACTIONS(7247), + [anon_sym__Alignas] = ACTIONS(7247), + [anon_sym_QMARK] = ACTIONS(7247), + [anon_sym_STAR_EQ] = ACTIONS(7247), + [anon_sym_SLASH_EQ] = ACTIONS(7247), + [anon_sym_PERCENT_EQ] = ACTIONS(7247), + [anon_sym_PLUS_EQ] = ACTIONS(7247), + [anon_sym_DASH_EQ] = ACTIONS(7247), + [anon_sym_LT_LT_EQ] = ACTIONS(7247), + [anon_sym_GT_GT_EQ] = ACTIONS(7247), + [anon_sym_AMP_EQ] = ACTIONS(7247), + [anon_sym_CARET_EQ] = ACTIONS(7247), + [anon_sym_PIPE_EQ] = ACTIONS(7247), + [anon_sym_LT_EQ_GT] = ACTIONS(7247), + [anon_sym_or] = ACTIONS(7247), + [anon_sym_and] = ACTIONS(7247), + [anon_sym_bitor] = ACTIONS(7247), + [anon_sym_xor] = ACTIONS(7247), + [anon_sym_bitand] = ACTIONS(7247), + [anon_sym_not_eq] = ACTIONS(7247), + [anon_sym_DASH_DASH] = ACTIONS(7247), + [anon_sym_PLUS_PLUS] = ACTIONS(7247), + [anon_sym_DOT] = ACTIONS(7245), + [anon_sym_DOT_STAR] = ACTIONS(7247), + [anon_sym_DASH_GT] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7247), + [anon_sym_override] = ACTIONS(7247), + [anon_sym_requires] = ACTIONS(7247), + [anon_sym_DASH_GT_STAR] = ACTIONS(7247), + }, + [STATE(3389)] = { + [sym__abstract_declarator] = STATE(6201), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3432), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6991), + [anon_sym___attribute] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(3390)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(8827), + [anon_sym_unsigned] = ACTIONS(8827), + [anon_sym_long] = ACTIONS(8827), + [anon_sym_short] = ACTIONS(8827), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3391)] = { + [sym_argument_list] = STATE(5523), + [sym_initializer_list] = STATE(5932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3392)] = { + [sym_string_literal] = STATE(3557), + [sym_template_argument_list] = STATE(5009), + [sym_raw_string_literal] = STATE(3557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(8829), + [anon_sym_LPAREN2] = ACTIONS(8829), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(8831), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(3393)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), + [anon_sym_COMMA] = ACTIONS(7404), + [anon_sym_RPAREN] = ACTIONS(7404), + [anon_sym_LPAREN2] = ACTIONS(7404), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7404), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7404), + [anon_sym_PIPE_PIPE] = ACTIONS(7404), + [anon_sym_AMP_AMP] = ACTIONS(7404), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7404), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7404), + [anon_sym_BANG_EQ] = ACTIONS(7404), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7404), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7404), + [anon_sym_GT_GT] = ACTIONS(7404), + [anon_sym_SEMI] = ACTIONS(7404), + [anon_sym___extension__] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7404), + [anon_sym_LBRACE] = ACTIONS(7404), + [anon_sym_RBRACE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(8833), + [anon_sym_unsigned] = ACTIONS(8833), + [anon_sym_long] = ACTIONS(8833), + [anon_sym_short] = ACTIONS(8833), + [anon_sym_LBRACK] = ACTIONS(7404), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym___restrict__] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym__Noreturn] = ACTIONS(7404), + [anon_sym_noreturn] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym_mutable] = ACTIONS(7404), + [anon_sym_constinit] = ACTIONS(7404), + [anon_sym_consteval] = ACTIONS(7404), + [anon_sym_alignas] = ACTIONS(7404), + [anon_sym__Alignas] = ACTIONS(7404), + [anon_sym_QMARK] = ACTIONS(7404), + [anon_sym_LT_EQ_GT] = ACTIONS(7404), + [anon_sym_or] = ACTIONS(7404), + [anon_sym_and] = ACTIONS(7404), + [anon_sym_bitor] = ACTIONS(7404), + [anon_sym_xor] = ACTIONS(7404), + [anon_sym_bitand] = ACTIONS(7404), + [anon_sym_not_eq] = ACTIONS(7404), + [anon_sym_DASH_DASH] = ACTIONS(7404), + [anon_sym_PLUS_PLUS] = ACTIONS(7404), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7404), + [anon_sym_DASH_GT] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7404), + [anon_sym_override] = ACTIONS(7404), + [anon_sym_requires] = ACTIONS(7404), + [anon_sym_COLON_RBRACK] = ACTIONS(7404), + }, + [STATE(3394)] = { + [sym_string_literal] = STATE(3557), + [sym_template_argument_list] = STATE(4731), + [sym_raw_string_literal] = STATE(3557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(8835), + [anon_sym_LPAREN2] = ACTIONS(8835), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6512), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(8838), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(3395)] = { + [sym_argument_list] = STATE(3765), + [sym_initializer_list] = STATE(3765), + [sym_new_declarator] = STATE(3588), + [sym_identifier] = ACTIONS(8841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8843), + [anon_sym_COMMA] = ACTIONS(8843), + [anon_sym_RPAREN] = ACTIONS(8843), + [aux_sym_preproc_if_token2] = ACTIONS(8843), + [aux_sym_preproc_else_token1] = ACTIONS(8843), + [aux_sym_preproc_elif_token1] = ACTIONS(8841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8843), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(8841), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_STAR] = ACTIONS(8841), + [anon_sym_SLASH] = ACTIONS(8841), + [anon_sym_PERCENT] = ACTIONS(8841), + [anon_sym_PIPE_PIPE] = ACTIONS(8843), + [anon_sym_AMP_AMP] = ACTIONS(8843), + [anon_sym_PIPE] = ACTIONS(8841), + [anon_sym_CARET] = ACTIONS(8841), + [anon_sym_AMP] = ACTIONS(8841), + [anon_sym_EQ_EQ] = ACTIONS(8843), + [anon_sym_BANG_EQ] = ACTIONS(8843), + [anon_sym_GT] = ACTIONS(8841), + [anon_sym_GT_EQ] = ACTIONS(8843), + [anon_sym_LT_EQ] = ACTIONS(8841), + [anon_sym_LT] = ACTIONS(8841), + [anon_sym_LT_LT] = ACTIONS(8841), + [anon_sym_GT_GT] = ACTIONS(8841), + [anon_sym_SEMI] = ACTIONS(8843), + [anon_sym___attribute__] = ACTIONS(8841), + [anon_sym___attribute] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8843), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(8843), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(8841), + [anon_sym_QMARK] = ACTIONS(8843), + [anon_sym_STAR_EQ] = ACTIONS(8843), + [anon_sym_SLASH_EQ] = ACTIONS(8843), + [anon_sym_PERCENT_EQ] = ACTIONS(8843), + [anon_sym_PLUS_EQ] = ACTIONS(8843), + [anon_sym_DASH_EQ] = ACTIONS(8843), + [anon_sym_LT_LT_EQ] = ACTIONS(8843), + [anon_sym_GT_GT_EQ] = ACTIONS(8843), + [anon_sym_AMP_EQ] = ACTIONS(8843), + [anon_sym_CARET_EQ] = ACTIONS(8843), + [anon_sym_PIPE_EQ] = ACTIONS(8843), + [anon_sym_and_eq] = ACTIONS(8841), + [anon_sym_or_eq] = ACTIONS(8841), + [anon_sym_xor_eq] = ACTIONS(8841), + [anon_sym_LT_EQ_GT] = ACTIONS(8843), + [anon_sym_or] = ACTIONS(8841), + [anon_sym_and] = ACTIONS(8841), + [anon_sym_bitor] = ACTIONS(8841), + [anon_sym_xor] = ACTIONS(8841), + [anon_sym_bitand] = ACTIONS(8841), + [anon_sym_not_eq] = ACTIONS(8841), + [anon_sym_DASH_DASH] = ACTIONS(8843), + [anon_sym_PLUS_PLUS] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8841), + [anon_sym_DOT_STAR] = ACTIONS(8843), + [anon_sym_DASH_GT] = ACTIONS(8843), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8843), + }, + [STATE(3396)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), + [anon_sym_COMMA] = ACTIONS(7297), + [anon_sym_RPAREN] = ACTIONS(7297), + [anon_sym_LPAREN2] = ACTIONS(7297), + [anon_sym_DASH] = ACTIONS(7295), + [anon_sym_PLUS] = ACTIONS(7295), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7295), + [anon_sym_PERCENT] = ACTIONS(7295), + [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7295), + [anon_sym_CARET] = ACTIONS(7295), + [anon_sym_AMP] = ACTIONS(7295), + [anon_sym_EQ_EQ] = ACTIONS(7297), + [anon_sym_BANG_EQ] = ACTIONS(7297), + [anon_sym_GT] = ACTIONS(7295), + [anon_sym_GT_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(7295), + [anon_sym_LT_LT] = ACTIONS(7295), + [anon_sym_GT_GT] = ACTIONS(7295), + [anon_sym___extension__] = ACTIONS(7297), + [anon_sym_LBRACE] = ACTIONS(7297), + [anon_sym_LBRACK] = ACTIONS(7297), + [anon_sym_EQ] = ACTIONS(7295), + [anon_sym_const] = ACTIONS(7295), + [anon_sym_constexpr] = ACTIONS(7297), + [anon_sym_volatile] = ACTIONS(7297), + [anon_sym_restrict] = ACTIONS(7297), + [anon_sym___restrict__] = ACTIONS(7297), + [anon_sym__Atomic] = ACTIONS(7297), + [anon_sym__Noreturn] = ACTIONS(7297), + [anon_sym_noreturn] = ACTIONS(7297), + [anon_sym__Nonnull] = ACTIONS(7297), + [anon_sym_mutable] = ACTIONS(7297), + [anon_sym_constinit] = ACTIONS(7297), + [anon_sym_consteval] = ACTIONS(7297), + [anon_sym_alignas] = ACTIONS(7297), + [anon_sym__Alignas] = ACTIONS(7297), + [anon_sym_QMARK] = ACTIONS(7297), + [anon_sym_STAR_EQ] = ACTIONS(7297), + [anon_sym_SLASH_EQ] = ACTIONS(7297), + [anon_sym_PERCENT_EQ] = ACTIONS(7297), + [anon_sym_PLUS_EQ] = ACTIONS(7297), + [anon_sym_DASH_EQ] = ACTIONS(7297), + [anon_sym_LT_LT_EQ] = ACTIONS(7297), + [anon_sym_GT_GT_EQ] = ACTIONS(7297), + [anon_sym_AMP_EQ] = ACTIONS(7297), + [anon_sym_CARET_EQ] = ACTIONS(7297), + [anon_sym_PIPE_EQ] = ACTIONS(7297), + [anon_sym_LT_EQ_GT] = ACTIONS(7297), + [anon_sym_or] = ACTIONS(7297), + [anon_sym_and] = ACTIONS(7297), + [anon_sym_bitor] = ACTIONS(7297), + [anon_sym_xor] = ACTIONS(7297), + [anon_sym_bitand] = ACTIONS(7297), + [anon_sym_not_eq] = ACTIONS(7297), + [anon_sym_DASH_DASH] = ACTIONS(7297), + [anon_sym_PLUS_PLUS] = ACTIONS(7297), + [anon_sym_DOT] = ACTIONS(7295), + [anon_sym_DOT_STAR] = ACTIONS(7297), + [anon_sym_DASH_GT] = ACTIONS(7295), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7297), + [anon_sym_override] = ACTIONS(7297), + [anon_sym_requires] = ACTIONS(7297), + [anon_sym_DASH_GT_STAR] = ACTIONS(7297), + }, + [STATE(3397)] = { + [sym__abstract_declarator] = STATE(6230), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(6997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [aux_sym_preproc_if_token2] = ACTIONS(6995), + [aux_sym_preproc_else_token1] = ACTIONS(6995), + [aux_sym_preproc_elif_token1] = ACTIONS(6997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6997), + [anon_sym_and] = ACTIONS(6997), + [anon_sym_bitor] = ACTIONS(6997), + [anon_sym_xor] = ACTIONS(6997), + [anon_sym_bitand] = ACTIONS(6997), + [anon_sym_not_eq] = ACTIONS(6997), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + }, + [STATE(3398)] = { + [sym__abstract_declarator] = STATE(6231), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3401), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3401), + [sym_identifier] = ACTIONS(7001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [aux_sym_preproc_if_token2] = ACTIONS(6999), + [aux_sym_preproc_else_token1] = ACTIONS(6999), + [aux_sym_preproc_elif_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(7001), + [anon_sym_and] = ACTIONS(7001), + [anon_sym_bitor] = ACTIONS(7001), + [anon_sym_xor] = ACTIONS(7001), + [anon_sym_bitand] = ACTIONS(7001), + [anon_sym_not_eq] = ACTIONS(7001), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + }, + [STATE(3399)] = { + [sym__abstract_declarator] = STATE(6261), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(6495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [aux_sym_preproc_if_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6497), + [aux_sym_preproc_elif_token1] = ACTIONS(6495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6495), + [anon_sym_and] = ACTIONS(6495), + [anon_sym_bitor] = ACTIONS(6495), + [anon_sym_xor] = ACTIONS(6495), + [anon_sym_bitand] = ACTIONS(6495), + [anon_sym_not_eq] = ACTIONS(6495), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(3400)] = { + [sym_string_literal] = STATE(3404), + [sym_raw_string_literal] = STATE(3404), + [aux_sym_concatenated_string_repeat1] = STATE(3404), + [sym_identifier] = ACTIONS(8845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), + [anon_sym_COMMA] = ACTIONS(8116), + [anon_sym_LPAREN2] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8118), + [anon_sym_STAR] = ACTIONS(8118), + [anon_sym_SLASH] = ACTIONS(8118), + [anon_sym_PERCENT] = ACTIONS(8118), + [anon_sym_PIPE_PIPE] = ACTIONS(8116), + [anon_sym_AMP_AMP] = ACTIONS(8116), + [anon_sym_PIPE] = ACTIONS(8118), + [anon_sym_CARET] = ACTIONS(8118), + [anon_sym_AMP] = ACTIONS(8118), + [anon_sym_EQ_EQ] = ACTIONS(8116), + [anon_sym_BANG_EQ] = ACTIONS(8116), + [anon_sym_GT] = ACTIONS(8118), + [anon_sym_GT_EQ] = ACTIONS(8116), + [anon_sym_LT_EQ] = ACTIONS(8118), + [anon_sym_LT] = ACTIONS(8118), + [anon_sym_LT_LT] = ACTIONS(8118), + [anon_sym_GT_GT] = ACTIONS(8118), + [anon_sym_SEMI] = ACTIONS(8116), + [anon_sym___attribute__] = ACTIONS(8118), + [anon_sym___attribute] = ACTIONS(8118), + [anon_sym_LBRACK] = ACTIONS(8116), + [anon_sym_EQ] = ACTIONS(8118), + [anon_sym_QMARK] = ACTIONS(8116), + [anon_sym_STAR_EQ] = ACTIONS(8116), + [anon_sym_SLASH_EQ] = ACTIONS(8116), + [anon_sym_PERCENT_EQ] = ACTIONS(8116), + [anon_sym_PLUS_EQ] = ACTIONS(8116), + [anon_sym_DASH_EQ] = ACTIONS(8116), + [anon_sym_LT_LT_EQ] = ACTIONS(8116), + [anon_sym_GT_GT_EQ] = ACTIONS(8116), + [anon_sym_AMP_EQ] = ACTIONS(8116), + [anon_sym_CARET_EQ] = ACTIONS(8116), + [anon_sym_PIPE_EQ] = ACTIONS(8116), + [anon_sym_and_eq] = ACTIONS(8118), + [anon_sym_or_eq] = ACTIONS(8118), + [anon_sym_xor_eq] = ACTIONS(8118), + [anon_sym_LT_EQ_GT] = ACTIONS(8116), + [anon_sym_or] = ACTIONS(8118), + [anon_sym_and] = ACTIONS(8118), + [anon_sym_bitor] = ACTIONS(8118), + [anon_sym_xor] = ACTIONS(8118), + [anon_sym_bitand] = ACTIONS(8118), + [anon_sym_not_eq] = ACTIONS(8118), + [anon_sym_DASH_DASH] = ACTIONS(8116), + [anon_sym_PLUS_PLUS] = ACTIONS(8116), + [anon_sym_DOT] = ACTIONS(8118), + [anon_sym_DOT_STAR] = ACTIONS(8116), + [anon_sym_DASH_GT] = ACTIONS(8116), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6545), + [anon_sym_LR_DQUOTE] = ACTIONS(6545), + [anon_sym_uR_DQUOTE] = ACTIONS(6545), + [anon_sym_UR_DQUOTE] = ACTIONS(6545), + [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + [sym_literal_suffix] = ACTIONS(8118), + }, + [STATE(3401)] = { + [sym__abstract_declarator] = STATE(6232), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(7005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [aux_sym_preproc_if_token2] = ACTIONS(7003), + [aux_sym_preproc_else_token1] = ACTIONS(7003), + [aux_sym_preproc_elif_token1] = ACTIONS(7005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7005), + [anon_sym_and] = ACTIONS(7005), + [anon_sym_bitor] = ACTIONS(7005), + [anon_sym_xor] = ACTIONS(7005), + [anon_sym_bitand] = ACTIONS(7005), + [anon_sym_not_eq] = ACTIONS(7005), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + }, + [STATE(3402)] = { + [sym__abstract_declarator] = STATE(6262), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [sym_identifier] = ACTIONS(7009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [aux_sym_preproc_if_token2] = ACTIONS(7007), + [aux_sym_preproc_else_token1] = ACTIONS(7007), + [aux_sym_preproc_elif_token1] = ACTIONS(7009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8081), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8083), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8085), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7009), + [anon_sym_and] = ACTIONS(7009), + [anon_sym_bitor] = ACTIONS(7009), + [anon_sym_xor] = ACTIONS(7009), + [anon_sym_bitand] = ACTIONS(7009), + [anon_sym_not_eq] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + }, + [STATE(3403)] = { + [sym_type_qualifier] = STATE(3438), + [sym_alignas_qualifier] = STATE(3736), + [aux_sym__type_definition_type_repeat1] = STATE(3438), + [aux_sym_sized_type_specifier_repeat1] = STATE(3669), + [sym_identifier] = ACTIONS(8847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(8849), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(8852), + [anon_sym_unsigned] = ACTIONS(8852), + [anon_sym_long] = ACTIONS(8852), + [anon_sym_short] = ACTIONS(8852), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_RBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(8849), + [anon_sym_constexpr] = ACTIONS(8849), + [anon_sym_volatile] = ACTIONS(8849), + [anon_sym_restrict] = ACTIONS(8849), + [anon_sym___restrict__] = ACTIONS(8849), + [anon_sym__Atomic] = ACTIONS(8849), + [anon_sym__Noreturn] = ACTIONS(8849), + [anon_sym_noreturn] = ACTIONS(8849), + [anon_sym__Nonnull] = ACTIONS(8849), + [anon_sym_mutable] = ACTIONS(8849), + [anon_sym_constinit] = ACTIONS(8849), + [anon_sym_consteval] = ACTIONS(8849), + [anon_sym_alignas] = ACTIONS(8854), + [anon_sym__Alignas] = ACTIONS(8854), + [sym_primitive_type] = ACTIONS(8510), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6814), + [anon_sym_override] = ACTIONS(6814), + [anon_sym_requires] = ACTIONS(6814), + }, + [STATE(3404)] = { + [sym_string_literal] = STATE(3404), + [sym_raw_string_literal] = STATE(3404), + [aux_sym_concatenated_string_repeat1] = STATE(3404), + [sym_identifier] = ACTIONS(8857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), + [anon_sym_COMMA] = ACTIONS(8045), + [anon_sym_LPAREN2] = ACTIONS(8045), + [anon_sym_DASH] = ACTIONS(8047), + [anon_sym_PLUS] = ACTIONS(8047), + [anon_sym_STAR] = ACTIONS(8047), + [anon_sym_SLASH] = ACTIONS(8047), + [anon_sym_PERCENT] = ACTIONS(8047), + [anon_sym_PIPE_PIPE] = ACTIONS(8045), + [anon_sym_AMP_AMP] = ACTIONS(8045), + [anon_sym_PIPE] = ACTIONS(8047), + [anon_sym_CARET] = ACTIONS(8047), + [anon_sym_AMP] = ACTIONS(8047), + [anon_sym_EQ_EQ] = ACTIONS(8045), + [anon_sym_BANG_EQ] = ACTIONS(8045), + [anon_sym_GT] = ACTIONS(8047), + [anon_sym_GT_EQ] = ACTIONS(8045), + [anon_sym_LT_EQ] = ACTIONS(8047), + [anon_sym_LT] = ACTIONS(8047), + [anon_sym_LT_LT] = ACTIONS(8047), + [anon_sym_GT_GT] = ACTIONS(8047), + [anon_sym_SEMI] = ACTIONS(8045), + [anon_sym___attribute__] = ACTIONS(8047), + [anon_sym___attribute] = ACTIONS(8047), + [anon_sym_LBRACK] = ACTIONS(8045), + [anon_sym_EQ] = ACTIONS(8047), + [anon_sym_QMARK] = ACTIONS(8045), + [anon_sym_STAR_EQ] = ACTIONS(8045), + [anon_sym_SLASH_EQ] = ACTIONS(8045), + [anon_sym_PERCENT_EQ] = ACTIONS(8045), + [anon_sym_PLUS_EQ] = ACTIONS(8045), + [anon_sym_DASH_EQ] = ACTIONS(8045), + [anon_sym_LT_LT_EQ] = ACTIONS(8045), + [anon_sym_GT_GT_EQ] = ACTIONS(8045), + [anon_sym_AMP_EQ] = ACTIONS(8045), + [anon_sym_CARET_EQ] = ACTIONS(8045), + [anon_sym_PIPE_EQ] = ACTIONS(8045), + [anon_sym_and_eq] = ACTIONS(8047), + [anon_sym_or_eq] = ACTIONS(8047), + [anon_sym_xor_eq] = ACTIONS(8047), + [anon_sym_LT_EQ_GT] = ACTIONS(8045), + [anon_sym_or] = ACTIONS(8047), + [anon_sym_and] = ACTIONS(8047), + [anon_sym_bitor] = ACTIONS(8047), + [anon_sym_xor] = ACTIONS(8047), + [anon_sym_bitand] = ACTIONS(8047), + [anon_sym_not_eq] = ACTIONS(8047), + [anon_sym_DASH_DASH] = ACTIONS(8045), + [anon_sym_PLUS_PLUS] = ACTIONS(8045), + [anon_sym_DOT] = ACTIONS(8047), + [anon_sym_DOT_STAR] = ACTIONS(8045), + [anon_sym_DASH_GT] = ACTIONS(8045), + [anon_sym_L_DQUOTE] = ACTIONS(8860), + [anon_sym_u_DQUOTE] = ACTIONS(8860), + [anon_sym_U_DQUOTE] = ACTIONS(8860), + [anon_sym_u8_DQUOTE] = ACTIONS(8860), + [anon_sym_DQUOTE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8863), + [anon_sym_LR_DQUOTE] = ACTIONS(8863), + [anon_sym_uR_DQUOTE] = ACTIONS(8863), + [anon_sym_UR_DQUOTE] = ACTIONS(8863), + [anon_sym_u8R_DQUOTE] = ACTIONS(8863), + [sym_literal_suffix] = ACTIONS(8047), + }, + [STATE(3405)] = { + [sym_argument_list] = STATE(3759), + [sym_initializer_list] = STATE(3759), + [sym_new_declarator] = STATE(3576), + [sym_identifier] = ACTIONS(8866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8868), + [anon_sym_COMMA] = ACTIONS(8868), + [anon_sym_RPAREN] = ACTIONS(8868), + [aux_sym_preproc_if_token2] = ACTIONS(8868), + [aux_sym_preproc_else_token1] = ACTIONS(8868), + [aux_sym_preproc_elif_token1] = ACTIONS(8866), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8868), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(8866), + [anon_sym_PLUS] = ACTIONS(8866), + [anon_sym_STAR] = ACTIONS(8866), + [anon_sym_SLASH] = ACTIONS(8866), + [anon_sym_PERCENT] = ACTIONS(8866), + [anon_sym_PIPE_PIPE] = ACTIONS(8868), + [anon_sym_AMP_AMP] = ACTIONS(8868), + [anon_sym_PIPE] = ACTIONS(8866), + [anon_sym_CARET] = ACTIONS(8866), + [anon_sym_AMP] = ACTIONS(8866), + [anon_sym_EQ_EQ] = ACTIONS(8868), + [anon_sym_BANG_EQ] = ACTIONS(8868), + [anon_sym_GT] = ACTIONS(8866), + [anon_sym_GT_EQ] = ACTIONS(8868), + [anon_sym_LT_EQ] = ACTIONS(8866), + [anon_sym_LT] = ACTIONS(8866), + [anon_sym_LT_LT] = ACTIONS(8866), + [anon_sym_GT_GT] = ACTIONS(8866), + [anon_sym_SEMI] = ACTIONS(8868), + [anon_sym___attribute__] = ACTIONS(8866), + [anon_sym___attribute] = ACTIONS(8866), + [anon_sym_COLON] = ACTIONS(8866), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8868), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(8868), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(8866), + [anon_sym_QMARK] = ACTIONS(8868), + [anon_sym_STAR_EQ] = ACTIONS(8868), + [anon_sym_SLASH_EQ] = ACTIONS(8868), + [anon_sym_PERCENT_EQ] = ACTIONS(8868), + [anon_sym_PLUS_EQ] = ACTIONS(8868), + [anon_sym_DASH_EQ] = ACTIONS(8868), + [anon_sym_LT_LT_EQ] = ACTIONS(8868), + [anon_sym_GT_GT_EQ] = ACTIONS(8868), + [anon_sym_AMP_EQ] = ACTIONS(8868), + [anon_sym_CARET_EQ] = ACTIONS(8868), + [anon_sym_PIPE_EQ] = ACTIONS(8868), + [anon_sym_and_eq] = ACTIONS(8866), + [anon_sym_or_eq] = ACTIONS(8866), + [anon_sym_xor_eq] = ACTIONS(8866), + [anon_sym_LT_EQ_GT] = ACTIONS(8868), + [anon_sym_or] = ACTIONS(8866), + [anon_sym_and] = ACTIONS(8866), + [anon_sym_bitor] = ACTIONS(8866), + [anon_sym_xor] = ACTIONS(8866), + [anon_sym_bitand] = ACTIONS(8866), + [anon_sym_not_eq] = ACTIONS(8866), + [anon_sym_DASH_DASH] = ACTIONS(8868), + [anon_sym_PLUS_PLUS] = ACTIONS(8868), + [anon_sym_DOT] = ACTIONS(8866), + [anon_sym_DOT_STAR] = ACTIONS(8868), + [anon_sym_DASH_GT] = ACTIONS(8868), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8868), + }, + [STATE(3406)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(8829), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(8831), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3407)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), + [anon_sym_COMMA] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7410), + [anon_sym_LPAREN2] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7408), + [anon_sym_PLUS] = ACTIONS(7408), + [anon_sym_STAR] = ACTIONS(7410), + [anon_sym_SLASH] = ACTIONS(7408), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_PIPE_PIPE] = ACTIONS(7410), + [anon_sym_AMP_AMP] = ACTIONS(7410), + [anon_sym_PIPE] = ACTIONS(7408), + [anon_sym_CARET] = ACTIONS(7410), + [anon_sym_AMP] = ACTIONS(7408), + [anon_sym_EQ_EQ] = ACTIONS(7410), + [anon_sym_BANG_EQ] = ACTIONS(7410), + [anon_sym_GT] = ACTIONS(7408), + [anon_sym_GT_EQ] = ACTIONS(7410), + [anon_sym_LT_EQ] = ACTIONS(7408), + [anon_sym_LT] = ACTIONS(7408), + [anon_sym_LT_LT] = ACTIONS(7410), + [anon_sym_GT_GT] = ACTIONS(7410), + [anon_sym_SEMI] = ACTIONS(7410), + [anon_sym___extension__] = ACTIONS(7410), + [anon_sym___attribute__] = ACTIONS(7410), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7410), + [anon_sym_LBRACE] = ACTIONS(7410), + [anon_sym_RBRACE] = ACTIONS(7410), + [anon_sym_signed] = ACTIONS(8870), + [anon_sym_unsigned] = ACTIONS(8870), + [anon_sym_long] = ACTIONS(8870), + [anon_sym_short] = ACTIONS(8870), + [anon_sym_LBRACK] = ACTIONS(7410), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_constexpr] = ACTIONS(7410), + [anon_sym_volatile] = ACTIONS(7410), + [anon_sym_restrict] = ACTIONS(7410), + [anon_sym___restrict__] = ACTIONS(7410), + [anon_sym__Atomic] = ACTIONS(7410), + [anon_sym__Noreturn] = ACTIONS(7410), + [anon_sym_noreturn] = ACTIONS(7410), + [anon_sym__Nonnull] = ACTIONS(7410), + [anon_sym_mutable] = ACTIONS(7410), + [anon_sym_constinit] = ACTIONS(7410), + [anon_sym_consteval] = ACTIONS(7410), + [anon_sym_alignas] = ACTIONS(7410), + [anon_sym__Alignas] = ACTIONS(7410), + [anon_sym_QMARK] = ACTIONS(7410), + [anon_sym_LT_EQ_GT] = ACTIONS(7410), + [anon_sym_or] = ACTIONS(7410), + [anon_sym_and] = ACTIONS(7410), + [anon_sym_bitor] = ACTIONS(7410), + [anon_sym_xor] = ACTIONS(7410), + [anon_sym_bitand] = ACTIONS(7410), + [anon_sym_not_eq] = ACTIONS(7410), + [anon_sym_DASH_DASH] = ACTIONS(7410), + [anon_sym_PLUS_PLUS] = ACTIONS(7410), + [anon_sym_DOT] = ACTIONS(7408), + [anon_sym_DOT_STAR] = ACTIONS(7410), + [anon_sym_DASH_GT] = ACTIONS(7410), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7410), + [anon_sym_override] = ACTIONS(7410), + [anon_sym_requires] = ACTIONS(7410), + [anon_sym_COLON_RBRACK] = ACTIONS(7410), + }, + [STATE(3408)] = { + [sym_identifier] = ACTIONS(5229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [aux_sym_preproc_if_token2] = ACTIONS(5231), + [aux_sym_preproc_else_token1] = ACTIONS(5231), + [aux_sym_preproc_elif_token1] = ACTIONS(5229), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5231), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5231), + [anon_sym_LPAREN2] = ACTIONS(5231), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_PERCENT] = ACTIONS(5229), + [anon_sym_PIPE_PIPE] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5231), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym_AMP] = ACTIONS(5229), + [anon_sym_EQ_EQ] = ACTIONS(5231), + [anon_sym_BANG_EQ] = ACTIONS(5231), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_GT_EQ] = ACTIONS(5231), + [anon_sym_LT_EQ] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_LT_LT] = ACTIONS(5229), + [anon_sym_GT_GT] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(5231), + [anon_sym___attribute__] = ACTIONS(5229), + [anon_sym___attribute] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5231), + [anon_sym_RBRACE] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(5231), + [anon_sym_STAR_EQ] = ACTIONS(5231), + [anon_sym_SLASH_EQ] = ACTIONS(5231), + [anon_sym_PERCENT_EQ] = ACTIONS(5231), + [anon_sym_PLUS_EQ] = ACTIONS(5231), + [anon_sym_DASH_EQ] = ACTIONS(5231), + [anon_sym_LT_LT_EQ] = ACTIONS(5231), + [anon_sym_GT_GT_EQ] = ACTIONS(5231), + [anon_sym_AMP_EQ] = ACTIONS(5231), + [anon_sym_CARET_EQ] = ACTIONS(5231), + [anon_sym_PIPE_EQ] = ACTIONS(5231), + [anon_sym_and_eq] = ACTIONS(5229), + [anon_sym_or_eq] = ACTIONS(5229), + [anon_sym_xor_eq] = ACTIONS(5229), + [anon_sym_LT_EQ_GT] = ACTIONS(5231), + [anon_sym_or] = ACTIONS(5229), + [anon_sym_and] = ACTIONS(5229), + [anon_sym_bitor] = ACTIONS(5229), + [anon_sym_xor] = ACTIONS(5229), + [anon_sym_bitand] = ACTIONS(5229), + [anon_sym_not_eq] = ACTIONS(5229), + [anon_sym_DASH_DASH] = ACTIONS(5231), + [anon_sym_PLUS_PLUS] = ACTIONS(5231), + [anon_sym_DOT] = ACTIONS(5229), + [anon_sym_DOT_STAR] = ACTIONS(5231), + [anon_sym_DASH_GT] = ACTIONS(5231), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5229), + [anon_sym_override] = ACTIONS(5229), + [anon_sym_requires] = ACTIONS(5229), + [anon_sym_COLON_RBRACK] = ACTIONS(5231), + }, + [STATE(3409)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), + [anon_sym_COMMA] = ACTIONS(7207), + [anon_sym_RPAREN] = ACTIONS(7207), + [anon_sym_LPAREN2] = ACTIONS(7207), + [anon_sym_DASH] = ACTIONS(7205), + [anon_sym_PLUS] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7205), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7207), + [anon_sym_AMP_AMP] = ACTIONS(7207), + [anon_sym_PIPE] = ACTIONS(7205), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7205), + [anon_sym_EQ_EQ] = ACTIONS(7207), + [anon_sym_BANG_EQ] = ACTIONS(7207), + [anon_sym_GT] = ACTIONS(7205), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7205), + [anon_sym_LT] = ACTIONS(7205), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(7205), + [anon_sym_constexpr] = ACTIONS(7207), + [anon_sym_volatile] = ACTIONS(7207), + [anon_sym_restrict] = ACTIONS(7207), + [anon_sym___restrict__] = ACTIONS(7207), + [anon_sym__Atomic] = ACTIONS(7207), + [anon_sym__Noreturn] = ACTIONS(7207), + [anon_sym_noreturn] = ACTIONS(7207), + [anon_sym__Nonnull] = ACTIONS(7207), + [anon_sym_mutable] = ACTIONS(7207), + [anon_sym_constinit] = ACTIONS(7207), + [anon_sym_consteval] = ACTIONS(7207), + [anon_sym_alignas] = ACTIONS(7207), + [anon_sym__Alignas] = ACTIONS(7207), + [anon_sym_QMARK] = ACTIONS(7207), + [anon_sym_STAR_EQ] = ACTIONS(7207), + [anon_sym_SLASH_EQ] = ACTIONS(7207), + [anon_sym_PERCENT_EQ] = ACTIONS(7207), + [anon_sym_PLUS_EQ] = ACTIONS(7207), + [anon_sym_DASH_EQ] = ACTIONS(7207), + [anon_sym_LT_LT_EQ] = ACTIONS(7207), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7207), + [anon_sym_CARET_EQ] = ACTIONS(7207), + [anon_sym_PIPE_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7207), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7207), + [anon_sym_PLUS_PLUS] = ACTIONS(7207), + [anon_sym_DOT] = ACTIONS(7205), + [anon_sym_DOT_STAR] = ACTIONS(7207), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_DASH_GT_STAR] = ACTIONS(7207), + }, + [STATE(3410)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), + [anon_sym_COMMA] = ACTIONS(7211), + [anon_sym_RPAREN] = ACTIONS(7211), + [anon_sym_LPAREN2] = ACTIONS(7211), + [anon_sym_DASH] = ACTIONS(7209), + [anon_sym_PLUS] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7209), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7211), + [anon_sym_AMP_AMP] = ACTIONS(7211), + [anon_sym_PIPE] = ACTIONS(7209), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7209), + [anon_sym_EQ_EQ] = ACTIONS(7211), + [anon_sym_BANG_EQ] = ACTIONS(7211), + [anon_sym_GT] = ACTIONS(7209), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7209), + [anon_sym_LT] = ACTIONS(7209), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7211), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7211), + [anon_sym_volatile] = ACTIONS(7211), + [anon_sym_restrict] = ACTIONS(7211), + [anon_sym___restrict__] = ACTIONS(7211), + [anon_sym__Atomic] = ACTIONS(7211), + [anon_sym__Noreturn] = ACTIONS(7211), + [anon_sym_noreturn] = ACTIONS(7211), + [anon_sym__Nonnull] = ACTIONS(7211), + [anon_sym_mutable] = ACTIONS(7211), + [anon_sym_constinit] = ACTIONS(7211), + [anon_sym_consteval] = ACTIONS(7211), + [anon_sym_alignas] = ACTIONS(7211), + [anon_sym__Alignas] = ACTIONS(7211), + [anon_sym_QMARK] = ACTIONS(7211), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7211), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7211), + [anon_sym_PLUS_PLUS] = ACTIONS(7211), + [anon_sym_DOT] = ACTIONS(7209), + [anon_sym_DOT_STAR] = ACTIONS(7211), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_DASH_GT_STAR] = ACTIONS(7211), + }, + [STATE(3411)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + }, + [STATE(3412)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), + [anon_sym_COMMA] = ACTIONS(6272), + [aux_sym_preproc_if_token2] = ACTIONS(6272), + [aux_sym_preproc_else_token1] = ACTIONS(6272), + [aux_sym_preproc_elif_token1] = ACTIONS(6270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6272), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_DASH] = ACTIONS(6270), + [anon_sym_PLUS] = ACTIONS(6270), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_SLASH] = ACTIONS(6270), + [anon_sym_PERCENT] = ACTIONS(6272), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_PIPE] = ACTIONS(6270), + [anon_sym_CARET] = ACTIONS(6272), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym_EQ_EQ] = ACTIONS(6272), + [anon_sym_BANG_EQ] = ACTIONS(6272), + [anon_sym_GT] = ACTIONS(6270), + [anon_sym_GT_EQ] = ACTIONS(6272), + [anon_sym_LT_EQ] = ACTIONS(6270), + [anon_sym_LT] = ACTIONS(6270), + [anon_sym_LT_LT] = ACTIONS(6272), + [anon_sym_GT_GT] = ACTIONS(6272), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_COLON] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACE] = ACTIONS(6272), + [anon_sym_LBRACK] = ACTIONS(6272), + [anon_sym_RBRACK] = ACTIONS(6272), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [anon_sym_QMARK] = ACTIONS(6272), + [anon_sym_LT_EQ_GT] = ACTIONS(6272), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_bitor] = ACTIONS(6270), + [anon_sym_xor] = ACTIONS(6270), + [anon_sym_bitand] = ACTIONS(6270), + [anon_sym_not_eq] = ACTIONS(6270), + [anon_sym_DASH_DASH] = ACTIONS(6272), + [anon_sym_PLUS_PLUS] = ACTIONS(6272), + [anon_sym_DOT] = ACTIONS(6270), + [anon_sym_DOT_STAR] = ACTIONS(6272), + [anon_sym_DASH_GT] = ACTIONS(6272), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_final] = ACTIONS(6270), + [anon_sym_override] = ACTIONS(6270), + [anon_sym_requires] = ACTIONS(6270), + }, + [STATE(3413)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3414)] = { + [sym_string_literal] = STATE(2486), + [sym_template_argument_list] = STATE(3966), + [sym_raw_string_literal] = STATE(2486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(8835), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8872), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(8838), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + }, + [STATE(3415)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), + [anon_sym_COMMA] = ACTIONS(7229), + [anon_sym_RPAREN] = ACTIONS(7229), + [anon_sym_LPAREN2] = ACTIONS(7229), + [anon_sym_DASH] = ACTIONS(7227), + [anon_sym_PLUS] = ACTIONS(7227), + [anon_sym_STAR] = ACTIONS(7227), + [anon_sym_SLASH] = ACTIONS(7227), + [anon_sym_PERCENT] = ACTIONS(7227), + [anon_sym_PIPE_PIPE] = ACTIONS(7229), + [anon_sym_AMP_AMP] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(7227), + [anon_sym_CARET] = ACTIONS(7227), + [anon_sym_AMP] = ACTIONS(7227), + [anon_sym_EQ_EQ] = ACTIONS(7229), + [anon_sym_BANG_EQ] = ACTIONS(7229), + [anon_sym_GT] = ACTIONS(7227), + [anon_sym_GT_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ] = ACTIONS(7227), + [anon_sym_LT] = ACTIONS(7227), + [anon_sym_LT_LT] = ACTIONS(7227), + [anon_sym_GT_GT] = ACTIONS(7227), + [anon_sym___extension__] = ACTIONS(7229), + [anon_sym_LBRACE] = ACTIONS(7229), + [anon_sym_LBRACK] = ACTIONS(7229), + [anon_sym_EQ] = ACTIONS(7227), + [anon_sym_const] = ACTIONS(7227), + [anon_sym_constexpr] = ACTIONS(7229), + [anon_sym_volatile] = ACTIONS(7229), + [anon_sym_restrict] = ACTIONS(7229), + [anon_sym___restrict__] = ACTIONS(7229), + [anon_sym__Atomic] = ACTIONS(7229), + [anon_sym__Noreturn] = ACTIONS(7229), + [anon_sym_noreturn] = ACTIONS(7229), + [anon_sym__Nonnull] = ACTIONS(7229), + [anon_sym_mutable] = ACTIONS(7229), + [anon_sym_constinit] = ACTIONS(7229), + [anon_sym_consteval] = ACTIONS(7229), + [anon_sym_alignas] = ACTIONS(7229), + [anon_sym__Alignas] = ACTIONS(7229), + [anon_sym_QMARK] = ACTIONS(7229), + [anon_sym_STAR_EQ] = ACTIONS(7229), + [anon_sym_SLASH_EQ] = ACTIONS(7229), + [anon_sym_PERCENT_EQ] = ACTIONS(7229), + [anon_sym_PLUS_EQ] = ACTIONS(7229), + [anon_sym_DASH_EQ] = ACTIONS(7229), + [anon_sym_LT_LT_EQ] = ACTIONS(7229), + [anon_sym_GT_GT_EQ] = ACTIONS(7229), + [anon_sym_AMP_EQ] = ACTIONS(7229), + [anon_sym_CARET_EQ] = ACTIONS(7229), + [anon_sym_PIPE_EQ] = ACTIONS(7229), + [anon_sym_LT_EQ_GT] = ACTIONS(7229), + [anon_sym_or] = ACTIONS(7229), + [anon_sym_and] = ACTIONS(7229), + [anon_sym_bitor] = ACTIONS(7229), + [anon_sym_xor] = ACTIONS(7229), + [anon_sym_bitand] = ACTIONS(7229), + [anon_sym_not_eq] = ACTIONS(7229), + [anon_sym_DASH_DASH] = ACTIONS(7229), + [anon_sym_PLUS_PLUS] = ACTIONS(7229), + [anon_sym_DOT] = ACTIONS(7227), + [anon_sym_DOT_STAR] = ACTIONS(7229), + [anon_sym_DASH_GT] = ACTIONS(7227), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7229), + [anon_sym_override] = ACTIONS(7229), + [anon_sym_requires] = ACTIONS(7229), + [anon_sym_DASH_GT_STAR] = ACTIONS(7229), + }, + [STATE(3416)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7233), + [anon_sym_and] = ACTIONS(7233), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7233), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7231), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), + [anon_sym_DASH_GT_STAR] = ACTIONS(7233), + }, + [STATE(3417)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3418)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3419)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), + [anon_sym_COMMA] = ACTIONS(7385), + [anon_sym_RPAREN] = ACTIONS(7385), + [anon_sym_LPAREN2] = ACTIONS(7385), + [anon_sym_DASH] = ACTIONS(7383), + [anon_sym_PLUS] = ACTIONS(7383), + [anon_sym_STAR] = ACTIONS(7385), + [anon_sym_SLASH] = ACTIONS(7383), + [anon_sym_PERCENT] = ACTIONS(7385), + [anon_sym_PIPE_PIPE] = ACTIONS(7385), + [anon_sym_AMP_AMP] = ACTIONS(7385), + [anon_sym_PIPE] = ACTIONS(7383), + [anon_sym_CARET] = ACTIONS(7385), + [anon_sym_AMP] = ACTIONS(7383), + [anon_sym_EQ_EQ] = ACTIONS(7385), + [anon_sym_BANG_EQ] = ACTIONS(7385), + [anon_sym_GT] = ACTIONS(7383), + [anon_sym_GT_EQ] = ACTIONS(7385), + [anon_sym_LT_EQ] = ACTIONS(7383), + [anon_sym_LT] = ACTIONS(7383), + [anon_sym_LT_LT] = ACTIONS(7385), + [anon_sym_GT_GT] = ACTIONS(7385), + [anon_sym_SEMI] = ACTIONS(7385), + [anon_sym___extension__] = ACTIONS(7385), + [anon_sym___attribute__] = ACTIONS(7385), + [anon_sym___attribute] = ACTIONS(7383), + [anon_sym_COLON] = ACTIONS(7383), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7385), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(7385), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7385), + [anon_sym_const] = ACTIONS(7383), + [anon_sym_constexpr] = ACTIONS(7385), + [anon_sym_volatile] = ACTIONS(7385), + [anon_sym_restrict] = ACTIONS(7385), + [anon_sym___restrict__] = ACTIONS(7385), + [anon_sym__Atomic] = ACTIONS(7385), + [anon_sym__Noreturn] = ACTIONS(7385), + [anon_sym_noreturn] = ACTIONS(7385), + [anon_sym__Nonnull] = ACTIONS(7385), + [anon_sym_mutable] = ACTIONS(7385), + [anon_sym_constinit] = ACTIONS(7385), + [anon_sym_consteval] = ACTIONS(7385), + [anon_sym_alignas] = ACTIONS(7385), + [anon_sym__Alignas] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7385), + [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_or] = ACTIONS(7385), + [anon_sym_and] = ACTIONS(7385), + [anon_sym_bitor] = ACTIONS(7385), + [anon_sym_xor] = ACTIONS(7385), + [anon_sym_bitand] = ACTIONS(7385), + [anon_sym_not_eq] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7385), + [anon_sym_PLUS_PLUS] = ACTIONS(7385), + [anon_sym_DOT] = ACTIONS(7383), + [anon_sym_DOT_STAR] = ACTIONS(7385), + [anon_sym_DASH_GT] = ACTIONS(7385), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7385), + [anon_sym_override] = ACTIONS(7385), + [anon_sym_requires] = ACTIONS(7385), + [anon_sym_COLON_RBRACK] = ACTIONS(7385), + }, + [STATE(3420)] = { + [sym__abstract_declarator] = STATE(6196), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_RPAREN] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), + [anon_sym_RBRACE] = ACTIONS(6995), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6995), + }, + [STATE(3421)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(8877), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3422)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(5860), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3423)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [aux_sym_preproc_if_token2] = ACTIONS(6244), + [aux_sym_preproc_else_token1] = ACTIONS(6244), + [aux_sym_preproc_elif_token1] = ACTIONS(6242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6244), + [anon_sym_GT_GT] = ACTIONS(6244), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_RBRACK] = ACTIONS(6244), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_final] = ACTIONS(6242), + [anon_sym_override] = ACTIONS(6242), + [anon_sym_requires] = ACTIONS(6242), + }, + [STATE(3424)] = { + [sym_argument_list] = STATE(3723), + [sym_initializer_list] = STATE(5901), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym___attribute__] = ACTIONS(6798), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3425)] = { + [sym_template_argument_list] = STATE(2824), + [sym_identifier] = ACTIONS(6201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [aux_sym_preproc_if_token2] = ACTIONS(6208), + [aux_sym_preproc_else_token1] = ACTIONS(6208), + [aux_sym_preproc_elif_token1] = ACTIONS(6201), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6208), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6208), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(8879), + [anon_sym_LT_LT] = ACTIONS(6208), + [anon_sym_GT_GT] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(6201), + [anon_sym___attribute__] = ACTIONS(6201), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6201), + [anon_sym_volatile] = ACTIONS(6201), + [anon_sym_restrict] = ACTIONS(6201), + [anon_sym___restrict__] = ACTIONS(6201), + [anon_sym__Atomic] = ACTIONS(6201), + [anon_sym__Noreturn] = ACTIONS(6201), + [anon_sym_noreturn] = ACTIONS(6201), + [anon_sym__Nonnull] = ACTIONS(6201), + [anon_sym_mutable] = ACTIONS(6201), + [anon_sym_constinit] = ACTIONS(6201), + [anon_sym_consteval] = ACTIONS(6201), + [anon_sym_alignas] = ACTIONS(6201), + [anon_sym__Alignas] = ACTIONS(6201), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6201), + [anon_sym_and] = ACTIONS(6201), + [anon_sym_bitor] = ACTIONS(6201), + [anon_sym_xor] = ACTIONS(6201), + [anon_sym_bitand] = ACTIONS(6201), + [anon_sym_not_eq] = ACTIONS(6201), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6201), + [anon_sym_decltype] = ACTIONS(6201), + [anon_sym_final] = ACTIONS(6201), + [anon_sym_override] = ACTIONS(6201), + [anon_sym_requires] = ACTIONS(6201), + }, + [STATE(3426)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), + [anon_sym_COMMA] = ACTIONS(7397), + [anon_sym_RPAREN] = ACTIONS(7397), + [anon_sym_LPAREN2] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7395), + [anon_sym_PLUS] = ACTIONS(7395), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7395), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7397), + [anon_sym_AMP_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7395), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7395), + [anon_sym_EQ_EQ] = ACTIONS(7397), + [anon_sym_BANG_EQ] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7395), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7395), + [anon_sym_LT] = ACTIONS(7395), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym_SEMI] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7397), + [anon_sym___attribute] = ACTIONS(7395), + [anon_sym_COLON] = ACTIONS(7395), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7397), + [anon_sym_LBRACE] = ACTIONS(7397), + [anon_sym_RBRACE] = ACTIONS(7397), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7395), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7397), + [anon_sym_PLUS_PLUS] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7395), + [anon_sym_DOT_STAR] = ACTIONS(7397), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + [anon_sym_COLON_RBRACK] = ACTIONS(7397), + }, + [STATE(3427)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3518), + [sym__function_exception_specification] = STATE(4017), + [sym__function_attributes_end] = STATE(5849), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5969), + [sym_noexcept] = STATE(4017), + [sym_throw_specifier] = STATE(4017), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(8815), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8882), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6868), + [anon_sym_override] = ACTIONS(6868), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6874), + }, + [STATE(3428)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), + [anon_sym_COMMA] = ACTIONS(6248), + [aux_sym_preproc_if_token2] = ACTIONS(6248), + [aux_sym_preproc_else_token1] = ACTIONS(6248), + [aux_sym_preproc_elif_token1] = ACTIONS(6246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6248), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_PLUS] = ACTIONS(6246), + [anon_sym_STAR] = ACTIONS(6248), + [anon_sym_SLASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6248), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(6246), + [anon_sym_CARET] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym_EQ_EQ] = ACTIONS(6248), + [anon_sym_BANG_EQ] = ACTIONS(6248), + [anon_sym_GT] = ACTIONS(6246), + [anon_sym_GT_EQ] = ACTIONS(6248), + [anon_sym_LT_EQ] = ACTIONS(6246), + [anon_sym_LT] = ACTIONS(6246), + [anon_sym_LT_LT] = ACTIONS(6248), + [anon_sym_GT_GT] = ACTIONS(6248), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACE] = ACTIONS(6248), + [anon_sym_LBRACK] = ACTIONS(6248), + [anon_sym_RBRACK] = ACTIONS(6248), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [anon_sym_QMARK] = ACTIONS(6248), + [anon_sym_LT_EQ_GT] = ACTIONS(6248), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_bitor] = ACTIONS(6246), + [anon_sym_xor] = ACTIONS(6246), + [anon_sym_bitand] = ACTIONS(6246), + [anon_sym_not_eq] = ACTIONS(6246), + [anon_sym_DASH_DASH] = ACTIONS(6248), + [anon_sym_PLUS_PLUS] = ACTIONS(6248), + [anon_sym_DOT] = ACTIONS(6246), + [anon_sym_DOT_STAR] = ACTIONS(6248), + [anon_sym_DASH_GT] = ACTIONS(6248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_final] = ACTIONS(6246), + [anon_sym_override] = ACTIONS(6246), + [anon_sym_requires] = ACTIONS(6246), + }, + [STATE(3429)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), + [anon_sym_COMMA] = ACTIONS(6252), + [aux_sym_preproc_if_token2] = ACTIONS(6252), + [aux_sym_preproc_else_token1] = ACTIONS(6252), + [aux_sym_preproc_elif_token1] = ACTIONS(6250), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6252), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6252), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6250), + [anon_sym_PLUS] = ACTIONS(6250), + [anon_sym_STAR] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6250), + [anon_sym_PERCENT] = ACTIONS(6252), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_PIPE] = ACTIONS(6250), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym_EQ_EQ] = ACTIONS(6252), + [anon_sym_BANG_EQ] = ACTIONS(6252), + [anon_sym_GT] = ACTIONS(6250), + [anon_sym_GT_EQ] = ACTIONS(6252), + [anon_sym_LT_EQ] = ACTIONS(6250), + [anon_sym_LT] = ACTIONS(6250), + [anon_sym_LT_LT] = ACTIONS(6252), + [anon_sym_GT_GT] = ACTIONS(6252), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_COLON] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACE] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(6252), + [anon_sym_RBRACK] = ACTIONS(6252), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [anon_sym_QMARK] = ACTIONS(6252), + [anon_sym_LT_EQ_GT] = ACTIONS(6252), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_bitor] = ACTIONS(6250), + [anon_sym_xor] = ACTIONS(6250), + [anon_sym_bitand] = ACTIONS(6250), + [anon_sym_not_eq] = ACTIONS(6250), + [anon_sym_DASH_DASH] = ACTIONS(6252), + [anon_sym_PLUS_PLUS] = ACTIONS(6252), + [anon_sym_DOT] = ACTIONS(6250), + [anon_sym_DOT_STAR] = ACTIONS(6252), + [anon_sym_DASH_GT] = ACTIONS(6252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_final] = ACTIONS(6250), + [anon_sym_override] = ACTIONS(6250), + [anon_sym_requires] = ACTIONS(6250), + }, + [STATE(3430)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), + [anon_sym_COMMA] = ACTIONS(6256), + [aux_sym_preproc_if_token2] = ACTIONS(6256), + [aux_sym_preproc_else_token1] = ACTIONS(6256), + [aux_sym_preproc_elif_token1] = ACTIONS(6254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6256), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_DASH] = ACTIONS(6254), + [anon_sym_PLUS] = ACTIONS(6254), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_PERCENT] = ACTIONS(6256), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_PIPE] = ACTIONS(6254), + [anon_sym_CARET] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym_EQ_EQ] = ACTIONS(6256), + [anon_sym_BANG_EQ] = ACTIONS(6256), + [anon_sym_GT] = ACTIONS(6254), + [anon_sym_GT_EQ] = ACTIONS(6256), + [anon_sym_LT_EQ] = ACTIONS(6254), + [anon_sym_LT] = ACTIONS(6254), + [anon_sym_LT_LT] = ACTIONS(6256), + [anon_sym_GT_GT] = ACTIONS(6256), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(6256), + [anon_sym_LBRACK] = ACTIONS(6256), + [anon_sym_RBRACK] = ACTIONS(6256), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [anon_sym_QMARK] = ACTIONS(6256), + [anon_sym_LT_EQ_GT] = ACTIONS(6256), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_bitor] = ACTIONS(6254), + [anon_sym_xor] = ACTIONS(6254), + [anon_sym_bitand] = ACTIONS(6254), + [anon_sym_not_eq] = ACTIONS(6254), + [anon_sym_DASH_DASH] = ACTIONS(6256), + [anon_sym_PLUS_PLUS] = ACTIONS(6256), + [anon_sym_DOT] = ACTIONS(6254), + [anon_sym_DOT_STAR] = ACTIONS(6256), + [anon_sym_DASH_GT] = ACTIONS(6256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_final] = ACTIONS(6254), + [anon_sym_override] = ACTIONS(6254), + [anon_sym_requires] = ACTIONS(6254), + }, + [STATE(3431)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7255), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7255), + [anon_sym___attribute__] = ACTIONS(7255), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8827), + [anon_sym_unsigned] = ACTIONS(8827), + [anon_sym_long] = ACTIONS(8827), + [anon_sym_short] = ACTIONS(8827), + [anon_sym_LBRACK] = ACTIONS(7255), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7255), + [anon_sym_volatile] = ACTIONS(7255), + [anon_sym_restrict] = ACTIONS(7255), + [anon_sym___restrict__] = ACTIONS(7255), + [anon_sym__Atomic] = ACTIONS(7255), + [anon_sym__Noreturn] = ACTIONS(7255), + [anon_sym_noreturn] = ACTIONS(7255), + [anon_sym__Nonnull] = ACTIONS(7255), + [anon_sym_mutable] = ACTIONS(7255), + [anon_sym_constinit] = ACTIONS(7255), + [anon_sym_consteval] = ACTIONS(7255), + [anon_sym_alignas] = ACTIONS(7255), + [anon_sym__Alignas] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7255), + [anon_sym_and] = ACTIONS(7255), + [anon_sym_bitor] = ACTIONS(7255), + [anon_sym_xor] = ACTIONS(7255), + [anon_sym_bitand] = ACTIONS(7255), + [anon_sym_not_eq] = ACTIONS(7255), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7255), + [anon_sym_override] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7255), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), + }, + [STATE(3432)] = { + [sym__abstract_declarator] = STATE(6203), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6995), + [anon_sym___attribute] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(3433)] = { + [sym__abstract_declarator] = STATE(6204), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3436), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3434)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3597), + [sym__function_exception_specification] = STATE(3986), + [sym__function_attributes_end] = STATE(5908), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(6005), + [sym_noexcept] = STATE(3986), + [sym_throw_specifier] = STATE(3986), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(8815), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8882), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8885), + [anon_sym_override] = ACTIONS(8885), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(8888), + }, + [STATE(3435)] = { + [sym_identifier] = ACTIONS(5233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [aux_sym_preproc_if_token2] = ACTIONS(5235), + [aux_sym_preproc_else_token1] = ACTIONS(5235), + [aux_sym_preproc_elif_token1] = ACTIONS(5233), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5235), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5235), + [anon_sym_LPAREN2] = ACTIONS(5235), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_PERCENT] = ACTIONS(5233), + [anon_sym_PIPE_PIPE] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5235), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym_AMP] = ACTIONS(5233), + [anon_sym_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_LT_LT] = ACTIONS(5233), + [anon_sym_GT_GT] = ACTIONS(5233), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym___attribute__] = ACTIONS(5233), + [anon_sym___attribute] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5235), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5233), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_and_eq] = ACTIONS(5233), + [anon_sym_or_eq] = ACTIONS(5233), + [anon_sym_xor_eq] = ACTIONS(5233), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_or] = ACTIONS(5233), + [anon_sym_and] = ACTIONS(5233), + [anon_sym_bitor] = ACTIONS(5233), + [anon_sym_xor] = ACTIONS(5233), + [anon_sym_bitand] = ACTIONS(5233), + [anon_sym_not_eq] = ACTIONS(5233), + [anon_sym_DASH_DASH] = ACTIONS(5235), + [anon_sym_PLUS_PLUS] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5233), + [anon_sym_DOT_STAR] = ACTIONS(5235), + [anon_sym_DASH_GT] = ACTIONS(5235), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5233), + [anon_sym_override] = ACTIONS(5233), + [anon_sym_requires] = ACTIONS(5233), + [anon_sym_COLON_RBRACK] = ACTIONS(5235), + }, + [STATE(3436)] = { + [sym__abstract_declarator] = STATE(6205), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(7003), + [anon_sym___attribute] = ACTIONS(7005), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(3437)] = { + [sym__abstract_declarator] = STATE(6188), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(7007), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(3438)] = { + [sym_type_qualifier] = STATE(3559), + [sym_alignas_qualifier] = STATE(3736), + [aux_sym__type_definition_type_repeat1] = STATE(3559), + [aux_sym_sized_type_specifier_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(8891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(8893), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8486), + [anon_sym_unsigned] = ACTIONS(8486), + [anon_sym_long] = ACTIONS(8486), + [anon_sym_short] = ACTIONS(8486), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_RBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(8893), + [anon_sym_constexpr] = ACTIONS(8893), + [anon_sym_volatile] = ACTIONS(8893), + [anon_sym_restrict] = ACTIONS(8893), + [anon_sym___restrict__] = ACTIONS(8893), + [anon_sym__Atomic] = ACTIONS(8893), + [anon_sym__Noreturn] = ACTIONS(8893), + [anon_sym_noreturn] = ACTIONS(8893), + [anon_sym__Nonnull] = ACTIONS(8893), + [anon_sym_mutable] = ACTIONS(8893), + [anon_sym_constinit] = ACTIONS(8893), + [anon_sym_consteval] = ACTIONS(8893), + [anon_sym_alignas] = ACTIONS(8896), + [anon_sym__Alignas] = ACTIONS(8896), + [sym_primitive_type] = ACTIONS(8488), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(3439)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + }, + [STATE(3440)] = { + [sym__abstract_declarator] = STATE(6193), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3420), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_RPAREN] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6993), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), + [anon_sym_RBRACE] = ACTIONS(6991), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6991), + }, + [STATE(3441)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_LBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7265), + [anon_sym_volatile] = ACTIONS(7265), + [anon_sym_restrict] = ACTIONS(7265), + [anon_sym___restrict__] = ACTIONS(7265), + [anon_sym__Atomic] = ACTIONS(7265), + [anon_sym__Noreturn] = ACTIONS(7265), + [anon_sym_noreturn] = ACTIONS(7265), + [anon_sym__Nonnull] = ACTIONS(7265), + [anon_sym_mutable] = ACTIONS(7265), + [anon_sym_constinit] = ACTIONS(7265), + [anon_sym_consteval] = ACTIONS(7265), + [anon_sym_alignas] = ACTIONS(7265), + [anon_sym__Alignas] = ACTIONS(7265), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7265), + [anon_sym_and] = ACTIONS(7265), + [anon_sym_bitor] = ACTIONS(7265), + [anon_sym_xor] = ACTIONS(7265), + [anon_sym_bitand] = ACTIONS(7265), + [anon_sym_not_eq] = ACTIONS(7265), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7265), + [anon_sym_override] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7265), + [anon_sym_DASH_GT_STAR] = ACTIONS(7265), + }, + [STATE(3442)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), + [anon_sym_COMMA] = ACTIONS(7269), + [anon_sym_RPAREN] = ACTIONS(7269), + [anon_sym_LPAREN2] = ACTIONS(7269), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_PLUS] = ACTIONS(7267), + [anon_sym_STAR] = ACTIONS(7267), + [anon_sym_SLASH] = ACTIONS(7267), + [anon_sym_PERCENT] = ACTIONS(7267), + [anon_sym_PIPE_PIPE] = ACTIONS(7269), + [anon_sym_AMP_AMP] = ACTIONS(7269), + [anon_sym_PIPE] = ACTIONS(7267), + [anon_sym_CARET] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7267), + [anon_sym_EQ_EQ] = ACTIONS(7269), + [anon_sym_BANG_EQ] = ACTIONS(7269), + [anon_sym_GT] = ACTIONS(7267), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7267), + [anon_sym_LT] = ACTIONS(7267), + [anon_sym_LT_LT] = ACTIONS(7267), + [anon_sym_GT_GT] = ACTIONS(7267), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7269), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7267), + [anon_sym_const] = ACTIONS(7267), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7269), + [anon_sym_STAR_EQ] = ACTIONS(7269), + [anon_sym_SLASH_EQ] = ACTIONS(7269), + [anon_sym_PERCENT_EQ] = ACTIONS(7269), + [anon_sym_PLUS_EQ] = ACTIONS(7269), + [anon_sym_DASH_EQ] = ACTIONS(7269), + [anon_sym_LT_LT_EQ] = ACTIONS(7269), + [anon_sym_GT_GT_EQ] = ACTIONS(7269), + [anon_sym_AMP_EQ] = ACTIONS(7269), + [anon_sym_CARET_EQ] = ACTIONS(7269), + [anon_sym_PIPE_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7269), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7269), + [anon_sym_PLUS_PLUS] = ACTIONS(7269), + [anon_sym_DOT] = ACTIONS(7267), + [anon_sym_DOT_STAR] = ACTIONS(7269), + [anon_sym_DASH_GT] = ACTIONS(7267), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_DASH_GT_STAR] = ACTIONS(7269), + }, + [STATE(3443)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), + [anon_sym_COMMA] = ACTIONS(7273), + [anon_sym_RPAREN] = ACTIONS(7273), + [anon_sym_LPAREN2] = ACTIONS(7273), + [anon_sym_DASH] = ACTIONS(7271), + [anon_sym_PLUS] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7271), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7273), + [anon_sym_AMP_AMP] = ACTIONS(7273), + [anon_sym_PIPE] = ACTIONS(7271), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7271), + [anon_sym_EQ_EQ] = ACTIONS(7273), + [anon_sym_BANG_EQ] = ACTIONS(7273), + [anon_sym_GT] = ACTIONS(7271), + [anon_sym_GT_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ] = ACTIONS(7271), + [anon_sym_LT] = ACTIONS(7271), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7273), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7271), + [anon_sym_constexpr] = ACTIONS(7273), + [anon_sym_volatile] = ACTIONS(7273), + [anon_sym_restrict] = ACTIONS(7273), + [anon_sym___restrict__] = ACTIONS(7273), + [anon_sym__Atomic] = ACTIONS(7273), + [anon_sym__Noreturn] = ACTIONS(7273), + [anon_sym_noreturn] = ACTIONS(7273), + [anon_sym__Nonnull] = ACTIONS(7273), + [anon_sym_mutable] = ACTIONS(7273), + [anon_sym_constinit] = ACTIONS(7273), + [anon_sym_consteval] = ACTIONS(7273), + [anon_sym_alignas] = ACTIONS(7273), + [anon_sym__Alignas] = ACTIONS(7273), + [anon_sym_QMARK] = ACTIONS(7273), + [anon_sym_STAR_EQ] = ACTIONS(7273), + [anon_sym_SLASH_EQ] = ACTIONS(7273), + [anon_sym_PERCENT_EQ] = ACTIONS(7273), + [anon_sym_PLUS_EQ] = ACTIONS(7273), + [anon_sym_DASH_EQ] = ACTIONS(7273), + [anon_sym_LT_LT_EQ] = ACTIONS(7273), + [anon_sym_GT_GT_EQ] = ACTIONS(7273), + [anon_sym_AMP_EQ] = ACTIONS(7273), + [anon_sym_CARET_EQ] = ACTIONS(7273), + [anon_sym_PIPE_EQ] = ACTIONS(7273), + [anon_sym_LT_EQ_GT] = ACTIONS(7273), + [anon_sym_or] = ACTIONS(7273), + [anon_sym_and] = ACTIONS(7273), + [anon_sym_bitor] = ACTIONS(7273), + [anon_sym_xor] = ACTIONS(7273), + [anon_sym_bitand] = ACTIONS(7273), + [anon_sym_not_eq] = ACTIONS(7273), + [anon_sym_DASH_DASH] = ACTIONS(7273), + [anon_sym_PLUS_PLUS] = ACTIONS(7273), + [anon_sym_DOT] = ACTIONS(7271), + [anon_sym_DOT_STAR] = ACTIONS(7273), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7273), + [anon_sym_override] = ACTIONS(7273), + [anon_sym_requires] = ACTIONS(7273), + [anon_sym_DASH_GT_STAR] = ACTIONS(7273), + }, + [STATE(3444)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_LBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7277), + [anon_sym_volatile] = ACTIONS(7277), + [anon_sym_restrict] = ACTIONS(7277), + [anon_sym___restrict__] = ACTIONS(7277), + [anon_sym__Atomic] = ACTIONS(7277), + [anon_sym__Noreturn] = ACTIONS(7277), + [anon_sym_noreturn] = ACTIONS(7277), + [anon_sym__Nonnull] = ACTIONS(7277), + [anon_sym_mutable] = ACTIONS(7277), + [anon_sym_constinit] = ACTIONS(7277), + [anon_sym_consteval] = ACTIONS(7277), + [anon_sym_alignas] = ACTIONS(7277), + [anon_sym__Alignas] = ACTIONS(7277), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7277), + [anon_sym_and] = ACTIONS(7277), + [anon_sym_bitor] = ACTIONS(7277), + [anon_sym_xor] = ACTIONS(7277), + [anon_sym_bitand] = ACTIONS(7277), + [anon_sym_not_eq] = ACTIONS(7277), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7277), + [anon_sym_override] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7277), + [anon_sym_DASH_GT_STAR] = ACTIONS(7277), + }, + [STATE(3445)] = { + [sym_identifier] = ACTIONS(6716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_COMMA] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6718), + [anon_sym_LPAREN2] = ACTIONS(6718), + [anon_sym_TILDE] = ACTIONS(6718), + [anon_sym_STAR] = ACTIONS(6718), + [anon_sym_AMP_AMP] = ACTIONS(6718), + [anon_sym_AMP] = ACTIONS(6716), + [anon_sym_SEMI] = ACTIONS(6718), + [anon_sym___extension__] = ACTIONS(6716), + [anon_sym_virtual] = ACTIONS(6716), + [anon_sym_extern] = ACTIONS(6716), + [anon_sym___attribute__] = ACTIONS(6716), + [anon_sym___attribute] = ACTIONS(6716), + [anon_sym_COLON_COLON] = ACTIONS(6718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), + [anon_sym___declspec] = ACTIONS(6716), + [anon_sym___based] = ACTIONS(6716), + [anon_sym___cdecl] = ACTIONS(6716), + [anon_sym___clrcall] = ACTIONS(6716), + [anon_sym___stdcall] = ACTIONS(6716), + [anon_sym___fastcall] = ACTIONS(6716), + [anon_sym___thiscall] = ACTIONS(6716), + [anon_sym___vectorcall] = ACTIONS(6716), + [anon_sym_LBRACE] = ACTIONS(6718), + [anon_sym_signed] = ACTIONS(6716), + [anon_sym_unsigned] = ACTIONS(6716), + [anon_sym_long] = ACTIONS(6716), + [anon_sym_short] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(6716), + [anon_sym_static] = ACTIONS(6716), + [anon_sym_EQ] = ACTIONS(6718), + [anon_sym_register] = ACTIONS(6716), + [anon_sym_inline] = ACTIONS(6716), + [anon_sym___inline] = ACTIONS(6716), + [anon_sym___inline__] = ACTIONS(6716), + [anon_sym___forceinline] = ACTIONS(6716), + [anon_sym_thread_local] = ACTIONS(6716), + [anon_sym___thread] = ACTIONS(6716), + [anon_sym_const] = ACTIONS(6716), + [anon_sym_constexpr] = ACTIONS(6716), + [anon_sym_volatile] = ACTIONS(6716), + [anon_sym_restrict] = ACTIONS(6716), + [anon_sym___restrict__] = ACTIONS(6716), + [anon_sym__Atomic] = ACTIONS(6716), + [anon_sym__Noreturn] = ACTIONS(6716), + [anon_sym_noreturn] = ACTIONS(6716), + [anon_sym__Nonnull] = ACTIONS(6716), + [anon_sym_mutable] = ACTIONS(6716), + [anon_sym_constinit] = ACTIONS(6716), + [anon_sym_consteval] = ACTIONS(6716), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [sym_primitive_type] = ACTIONS(6716), + [anon_sym_enum] = ACTIONS(6716), + [anon_sym_class] = ACTIONS(6716), + [anon_sym_struct] = ACTIONS(6716), + [anon_sym_union] = ACTIONS(6716), + [anon_sym_typename] = ACTIONS(6716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6716), + [anon_sym_decltype] = ACTIONS(6716), + [anon_sym_explicit] = ACTIONS(6716), + [anon_sym_template] = ACTIONS(6716), + [anon_sym_GT2] = ACTIONS(6718), + [anon_sym_operator] = ACTIONS(6716), + [anon_sym_LBRACK_COLON] = ACTIONS(6718), + }, + [STATE(3446)] = { + [sym_string_literal] = STATE(5056), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(5056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___attribute__] = ACTIONS(5253), + [anon_sym___attribute] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6535), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6537), + [anon_sym_SLASH_EQ] = ACTIONS(6537), + [anon_sym_PERCENT_EQ] = ACTIONS(6537), + [anon_sym_PLUS_EQ] = ACTIONS(6537), + [anon_sym_DASH_EQ] = ACTIONS(6537), + [anon_sym_LT_LT_EQ] = ACTIONS(6537), + [anon_sym_GT_GT_EQ] = ACTIONS(6537), + [anon_sym_AMP_EQ] = ACTIONS(6537), + [anon_sym_CARET_EQ] = ACTIONS(6537), + [anon_sym_PIPE_EQ] = ACTIONS(6537), + [anon_sym_and_eq] = ACTIONS(6537), + [anon_sym_or_eq] = ACTIONS(6537), + [anon_sym_xor_eq] = ACTIONS(6537), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6539), + [anon_sym_u_DQUOTE] = ACTIONS(6539), + [anon_sym_U_DQUOTE] = ACTIONS(6539), + [anon_sym_u8_DQUOTE] = ACTIONS(6539), + [anon_sym_DQUOTE] = ACTIONS(6539), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6541), + [anon_sym_LR_DQUOTE] = ACTIONS(6541), + [anon_sym_uR_DQUOTE] = ACTIONS(6541), + [anon_sym_UR_DQUOTE] = ACTIONS(6541), + [anon_sym_u8R_DQUOTE] = ACTIONS(6541), + }, + [STATE(3447)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7289), + [anon_sym_and] = ACTIONS(7289), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7289), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + }, + [STATE(3448)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7293), + [anon_sym_and] = ACTIONS(7293), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7293), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + }, + [STATE(3449)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_COMMA] = ACTIONS(6260), + [aux_sym_preproc_if_token2] = ACTIONS(6260), + [aux_sym_preproc_else_token1] = ACTIONS(6260), + [aux_sym_preproc_elif_token1] = ACTIONS(6258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6260), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6258), + [anon_sym_STAR] = ACTIONS(6260), + [anon_sym_SLASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6260), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_PIPE] = ACTIONS(6258), + [anon_sym_CARET] = ACTIONS(6260), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym_EQ_EQ] = ACTIONS(6260), + [anon_sym_BANG_EQ] = ACTIONS(6260), + [anon_sym_GT] = ACTIONS(6258), + [anon_sym_GT_EQ] = ACTIONS(6260), + [anon_sym_LT_EQ] = ACTIONS(6258), + [anon_sym_LT] = ACTIONS(6258), + [anon_sym_LT_LT] = ACTIONS(6260), + [anon_sym_GT_GT] = ACTIONS(6260), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACE] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(6260), + [anon_sym_RBRACK] = ACTIONS(6260), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [anon_sym_QMARK] = ACTIONS(6260), + [anon_sym_LT_EQ_GT] = ACTIONS(6260), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_bitor] = ACTIONS(6258), + [anon_sym_xor] = ACTIONS(6258), + [anon_sym_bitand] = ACTIONS(6258), + [anon_sym_not_eq] = ACTIONS(6258), + [anon_sym_DASH_DASH] = ACTIONS(6260), + [anon_sym_PLUS_PLUS] = ACTIONS(6260), + [anon_sym_DOT] = ACTIONS(6258), + [anon_sym_DOT_STAR] = ACTIONS(6260), + [anon_sym_DASH_GT] = ACTIONS(6260), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_final] = ACTIONS(6258), + [anon_sym_override] = ACTIONS(6258), + [anon_sym_requires] = ACTIONS(6258), + }, + [STATE(3450)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), + [anon_sym_COMMA] = ACTIONS(7301), + [anon_sym_RPAREN] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7301), + [anon_sym_DASH] = ACTIONS(7299), + [anon_sym_PLUS] = ACTIONS(7299), + [anon_sym_STAR] = ACTIONS(7299), + [anon_sym_SLASH] = ACTIONS(7299), + [anon_sym_PERCENT] = ACTIONS(7299), + [anon_sym_PIPE_PIPE] = ACTIONS(7301), + [anon_sym_AMP_AMP] = ACTIONS(7301), + [anon_sym_PIPE] = ACTIONS(7299), + [anon_sym_CARET] = ACTIONS(7299), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7301), + [anon_sym_BANG_EQ] = ACTIONS(7301), + [anon_sym_GT] = ACTIONS(7299), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7299), + [anon_sym_LT] = ACTIONS(7299), + [anon_sym_LT_LT] = ACTIONS(7299), + [anon_sym_GT_GT] = ACTIONS(7299), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7299), + [anon_sym_const] = ACTIONS(7299), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7301), + [anon_sym_STAR_EQ] = ACTIONS(7301), + [anon_sym_SLASH_EQ] = ACTIONS(7301), + [anon_sym_PERCENT_EQ] = ACTIONS(7301), + [anon_sym_PLUS_EQ] = ACTIONS(7301), + [anon_sym_DASH_EQ] = ACTIONS(7301), + [anon_sym_LT_LT_EQ] = ACTIONS(7301), + [anon_sym_GT_GT_EQ] = ACTIONS(7301), + [anon_sym_AMP_EQ] = ACTIONS(7301), + [anon_sym_CARET_EQ] = ACTIONS(7301), + [anon_sym_PIPE_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7301), + [anon_sym_PLUS_PLUS] = ACTIONS(7301), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_DOT_STAR] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7299), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + [anon_sym_DASH_GT_STAR] = ACTIONS(7301), + }, + [STATE(3451)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [anon_sym_LBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7289), + [anon_sym_and] = ACTIONS(7289), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7289), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + }, + [STATE(3452)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), + [anon_sym_COMMA] = ACTIONS(7305), + [anon_sym_RPAREN] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7303), + [anon_sym_PLUS] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7303), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7305), + [anon_sym_AMP_AMP] = ACTIONS(7305), + [anon_sym_PIPE] = ACTIONS(7303), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7303), + [anon_sym_EQ_EQ] = ACTIONS(7305), + [anon_sym_BANG_EQ] = ACTIONS(7305), + [anon_sym_GT] = ACTIONS(7303), + [anon_sym_GT_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ] = ACTIONS(7303), + [anon_sym_LT] = ACTIONS(7303), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7305), + [anon_sym_LBRACE] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7305), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7303), + [anon_sym_constexpr] = ACTIONS(7305), + [anon_sym_volatile] = ACTIONS(7305), + [anon_sym_restrict] = ACTIONS(7305), + [anon_sym___restrict__] = ACTIONS(7305), + [anon_sym__Atomic] = ACTIONS(7305), + [anon_sym__Noreturn] = ACTIONS(7305), + [anon_sym_noreturn] = ACTIONS(7305), + [anon_sym__Nonnull] = ACTIONS(7305), + [anon_sym_mutable] = ACTIONS(7305), + [anon_sym_constinit] = ACTIONS(7305), + [anon_sym_consteval] = ACTIONS(7305), + [anon_sym_alignas] = ACTIONS(7305), + [anon_sym__Alignas] = ACTIONS(7305), + [anon_sym_QMARK] = ACTIONS(7305), + [anon_sym_STAR_EQ] = ACTIONS(7305), + [anon_sym_SLASH_EQ] = ACTIONS(7305), + [anon_sym_PERCENT_EQ] = ACTIONS(7305), + [anon_sym_PLUS_EQ] = ACTIONS(7305), + [anon_sym_DASH_EQ] = ACTIONS(7305), + [anon_sym_LT_LT_EQ] = ACTIONS(7305), + [anon_sym_GT_GT_EQ] = ACTIONS(7305), + [anon_sym_AMP_EQ] = ACTIONS(7305), + [anon_sym_CARET_EQ] = ACTIONS(7305), + [anon_sym_PIPE_EQ] = ACTIONS(7305), + [anon_sym_LT_EQ_GT] = ACTIONS(7305), + [anon_sym_or] = ACTIONS(7305), + [anon_sym_and] = ACTIONS(7305), + [anon_sym_bitor] = ACTIONS(7305), + [anon_sym_xor] = ACTIONS(7305), + [anon_sym_bitand] = ACTIONS(7305), + [anon_sym_not_eq] = ACTIONS(7305), + [anon_sym_DASH_DASH] = ACTIONS(7305), + [anon_sym_PLUS_PLUS] = ACTIONS(7305), + [anon_sym_DOT] = ACTIONS(7303), + [anon_sym_DOT_STAR] = ACTIONS(7305), + [anon_sym_DASH_GT] = ACTIONS(7303), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7305), + [anon_sym_override] = ACTIONS(7305), + [anon_sym_requires] = ACTIONS(7305), + [anon_sym_DASH_GT_STAR] = ACTIONS(7305), + }, + [STATE(3453)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7191), + [anon_sym_PLUS] = ACTIONS(7191), + [anon_sym_STAR] = ACTIONS(7191), + [anon_sym_SLASH] = ACTIONS(7191), + [anon_sym_PERCENT] = ACTIONS(7191), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7191), + [anon_sym_CARET] = ACTIONS(7191), + [anon_sym_AMP] = ACTIONS(7191), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7191), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7191), + [anon_sym_LT] = ACTIONS(7191), + [anon_sym_LT_LT] = ACTIONS(7191), + [anon_sym_GT_GT] = ACTIONS(7191), + [anon_sym___extension__] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7191), + [anon_sym_const] = ACTIONS(7191), + [anon_sym_constexpr] = ACTIONS(7193), + [anon_sym_volatile] = ACTIONS(7193), + [anon_sym_restrict] = ACTIONS(7193), + [anon_sym___restrict__] = ACTIONS(7193), + [anon_sym__Atomic] = ACTIONS(7193), + [anon_sym__Noreturn] = ACTIONS(7193), + [anon_sym_noreturn] = ACTIONS(7193), + [anon_sym__Nonnull] = ACTIONS(7193), + [anon_sym_mutable] = ACTIONS(7193), + [anon_sym_constinit] = ACTIONS(7193), + [anon_sym_consteval] = ACTIONS(7193), + [anon_sym_alignas] = ACTIONS(7193), + [anon_sym__Alignas] = ACTIONS(7193), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7193), + [anon_sym_and] = ACTIONS(7193), + [anon_sym_bitor] = ACTIONS(7193), + [anon_sym_xor] = ACTIONS(7193), + [anon_sym_bitand] = ACTIONS(7193), + [anon_sym_not_eq] = ACTIONS(7193), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7191), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7191), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7193), + [anon_sym_override] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7193), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + }, + [STATE(3454)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [anon_sym_COMMA] = ACTIONS(6264), + [aux_sym_preproc_if_token2] = ACTIONS(6264), + [aux_sym_preproc_else_token1] = ACTIONS(6264), + [aux_sym_preproc_elif_token1] = ACTIONS(6262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6264), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_PLUS] = ACTIONS(6262), + [anon_sym_STAR] = ACTIONS(6264), + [anon_sym_SLASH] = ACTIONS(6262), + [anon_sym_PERCENT] = ACTIONS(6264), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_PIPE] = ACTIONS(6262), + [anon_sym_CARET] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym_EQ_EQ] = ACTIONS(6264), + [anon_sym_BANG_EQ] = ACTIONS(6264), + [anon_sym_GT] = ACTIONS(6262), + [anon_sym_GT_EQ] = ACTIONS(6264), + [anon_sym_LT_EQ] = ACTIONS(6262), + [anon_sym_LT] = ACTIONS(6262), + [anon_sym_LT_LT] = ACTIONS(6264), + [anon_sym_GT_GT] = ACTIONS(6264), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(6264), + [anon_sym_LBRACK] = ACTIONS(6264), + [anon_sym_RBRACK] = ACTIONS(6264), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [anon_sym_QMARK] = ACTIONS(6264), + [anon_sym_LT_EQ_GT] = ACTIONS(6264), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_bitor] = ACTIONS(6262), + [anon_sym_xor] = ACTIONS(6262), + [anon_sym_bitand] = ACTIONS(6262), + [anon_sym_not_eq] = ACTIONS(6262), + [anon_sym_DASH_DASH] = ACTIONS(6264), + [anon_sym_PLUS_PLUS] = ACTIONS(6264), + [anon_sym_DOT] = ACTIONS(6262), + [anon_sym_DOT_STAR] = ACTIONS(6264), + [anon_sym_DASH_GT] = ACTIONS(6264), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_final] = ACTIONS(6262), + [anon_sym_override] = ACTIONS(6262), + [anon_sym_requires] = ACTIONS(6262), + }, + [STATE(3455)] = { + [sym_string_literal] = STATE(3379), + [sym_template_argument_list] = STATE(3611), + [sym_raw_string_literal] = STATE(3379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8018), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___attribute__] = ACTIONS(5253), + [anon_sym___attribute] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6545), + [anon_sym_LR_DQUOTE] = ACTIONS(6545), + [anon_sym_uR_DQUOTE] = ACTIONS(6545), + [anon_sym_UR_DQUOTE] = ACTIONS(6545), + [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + }, + [STATE(3456)] = { + [sym_identifier] = ACTIONS(6967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [aux_sym_preproc_if_token2] = ACTIONS(6969), + [aux_sym_preproc_else_token1] = ACTIONS(6969), + [aux_sym_preproc_elif_token1] = ACTIONS(6967), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6969), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_DASH] = ACTIONS(6967), + [anon_sym_PLUS] = ACTIONS(6967), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_SLASH] = ACTIONS(6967), + [anon_sym_PERCENT] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_PIPE] = ACTIONS(6967), + [anon_sym_CARET] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_EQ_EQ] = ACTIONS(6969), + [anon_sym_BANG_EQ] = ACTIONS(6969), + [anon_sym_GT] = ACTIONS(6967), + [anon_sym_GT_EQ] = ACTIONS(6969), + [anon_sym_LT_EQ] = ACTIONS(6967), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(6969), + [anon_sym_GT_GT] = ACTIONS(6969), + [anon_sym___extension__] = ACTIONS(6967), + [anon_sym___attribute__] = ACTIONS(6967), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6969), + [anon_sym_RBRACK] = ACTIONS(6969), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6967), + [anon_sym_volatile] = ACTIONS(6967), + [anon_sym_restrict] = ACTIONS(6967), + [anon_sym___restrict__] = ACTIONS(6967), + [anon_sym__Atomic] = ACTIONS(6967), + [anon_sym__Noreturn] = ACTIONS(6967), + [anon_sym_noreturn] = ACTIONS(6967), + [anon_sym__Nonnull] = ACTIONS(6967), + [anon_sym_mutable] = ACTIONS(6967), + [anon_sym_constinit] = ACTIONS(6967), + [anon_sym_consteval] = ACTIONS(6967), + [anon_sym_alignas] = ACTIONS(6967), + [anon_sym__Alignas] = ACTIONS(6967), + [anon_sym_QMARK] = ACTIONS(6969), + [anon_sym_LT_EQ_GT] = ACTIONS(6969), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_bitor] = ACTIONS(6967), + [anon_sym_xor] = ACTIONS(6967), + [anon_sym_bitand] = ACTIONS(6967), + [anon_sym_not_eq] = ACTIONS(6967), + [anon_sym_DASH_DASH] = ACTIONS(6969), + [anon_sym_PLUS_PLUS] = ACTIONS(6969), + [anon_sym_DOT] = ACTIONS(6967), + [anon_sym_DOT_STAR] = ACTIONS(6969), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6967), + [anon_sym_decltype] = ACTIONS(6967), + [anon_sym_final] = ACTIONS(6967), + [anon_sym_override] = ACTIONS(6967), + [anon_sym_requires] = ACTIONS(6967), + }, + [STATE(3457)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym_ref_qualifier] = STATE(3548), + [sym__function_exception_specification] = STATE(3980), + [sym__function_attributes_end] = STATE(5867), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5718), + [sym_noexcept] = STATE(3980), + [sym_throw_specifier] = STATE(3980), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(8815), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6913), + [anon_sym_override] = ACTIONS(6913), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(3458)] = { + [sym__abstract_declarator] = STATE(6197), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3485), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_RPAREN] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), + [anon_sym_RBRACE] = ACTIONS(6999), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6999), + }, + [STATE(3459)] = { + [sym__abstract_declarator] = STATE(6225), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7009), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), + [anon_sym_RBRACE] = ACTIONS(7007), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7007), + }, + [STATE(3460)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3461)] = { + [sym_decltype_auto] = STATE(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8495), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3462)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_TILDE] = ACTIONS(6846), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym_virtual] = ACTIONS(6844), + [anon_sym_extern] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_using] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), + [anon_sym___declspec] = ACTIONS(6844), + [anon_sym___based] = ACTIONS(6844), + [anon_sym___cdecl] = ACTIONS(6844), + [anon_sym___clrcall] = ACTIONS(6844), + [anon_sym___stdcall] = ACTIONS(6844), + [anon_sym___fastcall] = ACTIONS(6844), + [anon_sym___thiscall] = ACTIONS(6844), + [anon_sym___vectorcall] = ACTIONS(6844), + [anon_sym_signed] = ACTIONS(6844), + [anon_sym_unsigned] = ACTIONS(6844), + [anon_sym_long] = ACTIONS(6844), + [anon_sym_short] = ACTIONS(6844), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_static] = ACTIONS(6844), + [anon_sym_register] = ACTIONS(6844), + [anon_sym_inline] = ACTIONS(6844), + [anon_sym___inline] = ACTIONS(6844), + [anon_sym___inline__] = ACTIONS(6844), + [anon_sym___forceinline] = ACTIONS(6844), + [anon_sym_thread_local] = ACTIONS(6844), + [anon_sym___thread] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [sym_primitive_type] = ACTIONS(6844), + [anon_sym_enum] = ACTIONS(6844), + [anon_sym_class] = ACTIONS(6844), + [anon_sym_struct] = ACTIONS(6844), + [anon_sym_union] = ACTIONS(6844), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_typename] = ACTIONS(6844), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6844), + [anon_sym_decltype] = ACTIONS(6844), + [anon_sym_explicit] = ACTIONS(6844), + [anon_sym_template] = ACTIONS(6844), + [anon_sym_operator] = ACTIONS(6844), + [anon_sym_friend] = ACTIONS(6844), + [anon_sym_concept] = ACTIONS(6844), + [anon_sym_LBRACK_COLON] = ACTIONS(6846), + }, + [STATE(3463)] = { + [sym_string_literal] = STATE(2486), + [sym_template_argument_list] = STATE(3611), + [sym_raw_string_literal] = STATE(2486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(8829), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8018), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(8831), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(2056), + [anon_sym_u_DQUOTE] = ACTIONS(2056), + [anon_sym_U_DQUOTE] = ACTIONS(2056), + [anon_sym_u8_DQUOTE] = ACTIONS(2056), + [anon_sym_DQUOTE] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2068), + [anon_sym_LR_DQUOTE] = ACTIONS(2068), + [anon_sym_uR_DQUOTE] = ACTIONS(2068), + [anon_sym_UR_DQUOTE] = ACTIONS(2068), + [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + }, + [STATE(3464)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), + [anon_sym_COMMA] = ACTIONS(7393), + [anon_sym_RPAREN] = ACTIONS(7393), + [anon_sym_LPAREN2] = ACTIONS(7393), + [anon_sym_DASH] = ACTIONS(7391), + [anon_sym_PLUS] = ACTIONS(7391), + [anon_sym_STAR] = ACTIONS(7393), + [anon_sym_SLASH] = ACTIONS(7391), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7393), + [anon_sym_AMP_AMP] = ACTIONS(7393), + [anon_sym_PIPE] = ACTIONS(7391), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7391), + [anon_sym_EQ_EQ] = ACTIONS(7393), + [anon_sym_BANG_EQ] = ACTIONS(7393), + [anon_sym_GT] = ACTIONS(7391), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7391), + [anon_sym_LT] = ACTIONS(7391), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym_SEMI] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7393), + [anon_sym___attribute__] = ACTIONS(7393), + [anon_sym___attribute] = ACTIONS(7391), + [anon_sym_COLON] = ACTIONS(7391), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7393), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_RBRACE] = ACTIONS(7393), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7391), + [anon_sym_constexpr] = ACTIONS(7393), + [anon_sym_volatile] = ACTIONS(7393), + [anon_sym_restrict] = ACTIONS(7393), + [anon_sym___restrict__] = ACTIONS(7393), + [anon_sym__Atomic] = ACTIONS(7393), + [anon_sym__Noreturn] = ACTIONS(7393), + [anon_sym_noreturn] = ACTIONS(7393), + [anon_sym__Nonnull] = ACTIONS(7393), + [anon_sym_mutable] = ACTIONS(7393), + [anon_sym_constinit] = ACTIONS(7393), + [anon_sym_consteval] = ACTIONS(7393), + [anon_sym_alignas] = ACTIONS(7393), + [anon_sym__Alignas] = ACTIONS(7393), + [anon_sym_QMARK] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7393), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7393), + [anon_sym_PLUS_PLUS] = ACTIONS(7393), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + [anon_sym_COLON_RBRACK] = ACTIONS(7393), + }, + [STATE(3465)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), + [anon_sym_COMMA] = ACTIONS(7416), + [anon_sym_RPAREN] = ACTIONS(7416), + [anon_sym_LPAREN2] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_STAR] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7414), + [anon_sym_PERCENT] = ACTIONS(7416), + [anon_sym_PIPE_PIPE] = ACTIONS(7416), + [anon_sym_AMP_AMP] = ACTIONS(7416), + [anon_sym_PIPE] = ACTIONS(7414), + [anon_sym_CARET] = ACTIONS(7416), + [anon_sym_AMP] = ACTIONS(7414), + [anon_sym_EQ_EQ] = ACTIONS(7416), + [anon_sym_BANG_EQ] = ACTIONS(7416), + [anon_sym_GT] = ACTIONS(7414), + [anon_sym_GT_EQ] = ACTIONS(7416), + [anon_sym_LT_EQ] = ACTIONS(7414), + [anon_sym_LT] = ACTIONS(7414), + [anon_sym_LT_LT] = ACTIONS(7416), + [anon_sym_GT_GT] = ACTIONS(7416), + [anon_sym_SEMI] = ACTIONS(7416), + [anon_sym___extension__] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7414), + [anon_sym_COLON] = ACTIONS(7414), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7416), + [anon_sym_LBRACE] = ACTIONS(7416), + [anon_sym_RBRACE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7416), + [anon_sym_const] = ACTIONS(7414), + [anon_sym_constexpr] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym___restrict__] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym__Noreturn] = ACTIONS(7416), + [anon_sym_noreturn] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym_mutable] = ACTIONS(7416), + [anon_sym_constinit] = ACTIONS(7416), + [anon_sym_consteval] = ACTIONS(7416), + [anon_sym_alignas] = ACTIONS(7416), + [anon_sym__Alignas] = ACTIONS(7416), + [anon_sym_QMARK] = ACTIONS(7416), + [anon_sym_LT_EQ_GT] = ACTIONS(7416), + [anon_sym_or] = ACTIONS(7416), + [anon_sym_and] = ACTIONS(7416), + [anon_sym_bitor] = ACTIONS(7416), + [anon_sym_xor] = ACTIONS(7416), + [anon_sym_bitand] = ACTIONS(7416), + [anon_sym_not_eq] = ACTIONS(7416), + [anon_sym_DASH_DASH] = ACTIONS(7416), + [anon_sym_PLUS_PLUS] = ACTIONS(7416), + [anon_sym_DOT] = ACTIONS(7414), + [anon_sym_DOT_STAR] = ACTIONS(7416), + [anon_sym_DASH_GT] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7416), + [anon_sym_override] = ACTIONS(7416), + [anon_sym_requires] = ACTIONS(7416), + [anon_sym_COLON_RBRACK] = ACTIONS(7416), + }, + [STATE(3466)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7201), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7201), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7201), + [anon_sym_GT_GT] = ACTIONS(7201), + [anon_sym_SEMI] = ACTIONS(7201), + [anon_sym___extension__] = ACTIONS(7201), + [anon_sym___attribute__] = ACTIONS(7201), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), + [anon_sym_LBRACE] = ACTIONS(7201), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7201), + [anon_sym_and] = ACTIONS(7201), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7201), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_COLON_RBRACK] = ACTIONS(7201), + }, + [STATE(3467)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), + [anon_sym_COMMA] = ACTIONS(6792), + [anon_sym_RPAREN] = ACTIONS(6792), + [anon_sym_LPAREN2] = ACTIONS(6792), + [anon_sym_DASH] = ACTIONS(6790), + [anon_sym_PLUS] = ACTIONS(6790), + [anon_sym_STAR] = ACTIONS(6790), + [anon_sym_SLASH] = ACTIONS(6790), + [anon_sym_PERCENT] = ACTIONS(6790), + [anon_sym_PIPE_PIPE] = ACTIONS(6792), + [anon_sym_AMP_AMP] = ACTIONS(6792), + [anon_sym_PIPE] = ACTIONS(6790), + [anon_sym_CARET] = ACTIONS(6790), + [anon_sym_AMP] = ACTIONS(6790), + [anon_sym_EQ_EQ] = ACTIONS(6792), + [anon_sym_BANG_EQ] = ACTIONS(6792), + [anon_sym_GT] = ACTIONS(6790), + [anon_sym_GT_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ] = ACTIONS(6790), + [anon_sym_LT] = ACTIONS(6790), + [anon_sym_LT_LT] = ACTIONS(6790), + [anon_sym_GT_GT] = ACTIONS(6790), + [anon_sym___extension__] = ACTIONS(6792), + [anon_sym_LBRACE] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(6790), + [anon_sym_const] = ACTIONS(6790), + [anon_sym_constexpr] = ACTIONS(6792), + [anon_sym_volatile] = ACTIONS(6792), + [anon_sym_restrict] = ACTIONS(6792), + [anon_sym___restrict__] = ACTIONS(6792), + [anon_sym__Atomic] = ACTIONS(6792), + [anon_sym__Noreturn] = ACTIONS(6792), + [anon_sym_noreturn] = ACTIONS(6792), + [anon_sym__Nonnull] = ACTIONS(6792), + [anon_sym_mutable] = ACTIONS(6792), + [anon_sym_constinit] = ACTIONS(6792), + [anon_sym_consteval] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(6792), + [anon_sym__Alignas] = ACTIONS(6792), + [anon_sym_QMARK] = ACTIONS(6792), + [anon_sym_STAR_EQ] = ACTIONS(6792), + [anon_sym_SLASH_EQ] = ACTIONS(6792), + [anon_sym_PERCENT_EQ] = ACTIONS(6792), + [anon_sym_PLUS_EQ] = ACTIONS(6792), + [anon_sym_DASH_EQ] = ACTIONS(6792), + [anon_sym_LT_LT_EQ] = ACTIONS(6792), + [anon_sym_GT_GT_EQ] = ACTIONS(6792), + [anon_sym_AMP_EQ] = ACTIONS(6792), + [anon_sym_CARET_EQ] = ACTIONS(6792), + [anon_sym_PIPE_EQ] = ACTIONS(6792), + [anon_sym_LT_EQ_GT] = ACTIONS(6792), + [anon_sym_or] = ACTIONS(6792), + [anon_sym_and] = ACTIONS(6792), + [anon_sym_bitor] = ACTIONS(6792), + [anon_sym_xor] = ACTIONS(6792), + [anon_sym_bitand] = ACTIONS(6792), + [anon_sym_not_eq] = ACTIONS(6792), + [anon_sym_DASH_DASH] = ACTIONS(6792), + [anon_sym_PLUS_PLUS] = ACTIONS(6792), + [anon_sym_DOT] = ACTIONS(6790), + [anon_sym_DOT_STAR] = ACTIONS(6792), + [anon_sym_DASH_GT] = ACTIONS(6790), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6792), + [anon_sym_override] = ACTIONS(6792), + [anon_sym_requires] = ACTIONS(6792), + [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + }, + [STATE(3468)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), + [anon_sym_COMMA] = ACTIONS(7215), + [anon_sym_RPAREN] = ACTIONS(7215), + [anon_sym_LPAREN2] = ACTIONS(7215), + [anon_sym_DASH] = ACTIONS(7213), + [anon_sym_PLUS] = ACTIONS(7213), + [anon_sym_STAR] = ACTIONS(7215), + [anon_sym_SLASH] = ACTIONS(7213), + [anon_sym_PERCENT] = ACTIONS(7215), + [anon_sym_PIPE_PIPE] = ACTIONS(7215), + [anon_sym_AMP_AMP] = ACTIONS(7215), + [anon_sym_PIPE] = ACTIONS(7213), + [anon_sym_CARET] = ACTIONS(7215), + [anon_sym_AMP] = ACTIONS(7213), + [anon_sym_EQ_EQ] = ACTIONS(7215), + [anon_sym_BANG_EQ] = ACTIONS(7215), + [anon_sym_GT] = ACTIONS(7213), + [anon_sym_GT_EQ] = ACTIONS(7215), + [anon_sym_LT_EQ] = ACTIONS(7213), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(7215), + [anon_sym_GT_GT] = ACTIONS(7215), + [anon_sym_SEMI] = ACTIONS(7215), + [anon_sym___extension__] = ACTIONS(7215), + [anon_sym___attribute__] = ACTIONS(7215), + [anon_sym___attribute] = ACTIONS(7213), + [anon_sym_COLON] = ACTIONS(7213), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7215), + [anon_sym_LBRACE] = ACTIONS(7215), + [anon_sym_RBRACE] = ACTIONS(7215), + [anon_sym_signed] = ACTIONS(8899), + [anon_sym_unsigned] = ACTIONS(8899), + [anon_sym_long] = ACTIONS(8899), + [anon_sym_short] = ACTIONS(8899), + [anon_sym_LBRACK] = ACTIONS(7215), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7215), + [anon_sym_volatile] = ACTIONS(7215), + [anon_sym_restrict] = ACTIONS(7215), + [anon_sym___restrict__] = ACTIONS(7215), + [anon_sym__Atomic] = ACTIONS(7215), + [anon_sym__Noreturn] = ACTIONS(7215), + [anon_sym_noreturn] = ACTIONS(7215), + [anon_sym__Nonnull] = ACTIONS(7215), + [anon_sym_mutable] = ACTIONS(7215), + [anon_sym_constinit] = ACTIONS(7215), + [anon_sym_consteval] = ACTIONS(7215), + [anon_sym_alignas] = ACTIONS(7215), + [anon_sym__Alignas] = ACTIONS(7215), + [anon_sym_QMARK] = ACTIONS(7215), + [anon_sym_LT_EQ_GT] = ACTIONS(7215), + [anon_sym_or] = ACTIONS(7215), + [anon_sym_and] = ACTIONS(7215), + [anon_sym_bitor] = ACTIONS(7215), + [anon_sym_xor] = ACTIONS(7215), + [anon_sym_bitand] = ACTIONS(7215), + [anon_sym_not_eq] = ACTIONS(7215), + [anon_sym_DASH_DASH] = ACTIONS(7215), + [anon_sym_PLUS_PLUS] = ACTIONS(7215), + [anon_sym_DOT] = ACTIONS(7213), + [anon_sym_DOT_STAR] = ACTIONS(7215), + [anon_sym_DASH_GT] = ACTIONS(7215), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7215), + [anon_sym_override] = ACTIONS(7215), + [anon_sym_requires] = ACTIONS(7215), + [anon_sym_COLON_RBRACK] = ACTIONS(7215), + }, + [STATE(3469)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), + [anon_sym_COMMA] = ACTIONS(7241), + [anon_sym_RPAREN] = ACTIONS(7241), + [anon_sym_LPAREN2] = ACTIONS(7241), + [anon_sym_DASH] = ACTIONS(7239), + [anon_sym_PLUS] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(7241), + [anon_sym_SLASH] = ACTIONS(7239), + [anon_sym_PERCENT] = ACTIONS(7241), + [anon_sym_PIPE_PIPE] = ACTIONS(7241), + [anon_sym_AMP_AMP] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7239), + [anon_sym_CARET] = ACTIONS(7241), + [anon_sym_AMP] = ACTIONS(7239), + [anon_sym_EQ_EQ] = ACTIONS(7241), + [anon_sym_BANG_EQ] = ACTIONS(7241), + [anon_sym_GT] = ACTIONS(7239), + [anon_sym_GT_EQ] = ACTIONS(7241), + [anon_sym_LT_EQ] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(7241), + [anon_sym_GT_GT] = ACTIONS(7241), + [anon_sym_SEMI] = ACTIONS(7241), + [anon_sym___extension__] = ACTIONS(7241), + [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7239), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7241), + [anon_sym_LBRACE] = ACTIONS(7241), + [anon_sym_RBRACE] = ACTIONS(7241), + [anon_sym_signed] = ACTIONS(8901), + [anon_sym_unsigned] = ACTIONS(8901), + [anon_sym_long] = ACTIONS(8901), + [anon_sym_short] = ACTIONS(8901), + [anon_sym_LBRACK] = ACTIONS(7241), + [anon_sym_const] = ACTIONS(7239), + [anon_sym_constexpr] = ACTIONS(7241), + [anon_sym_volatile] = ACTIONS(7241), + [anon_sym_restrict] = ACTIONS(7241), + [anon_sym___restrict__] = ACTIONS(7241), + [anon_sym__Atomic] = ACTIONS(7241), + [anon_sym__Noreturn] = ACTIONS(7241), + [anon_sym_noreturn] = ACTIONS(7241), + [anon_sym__Nonnull] = ACTIONS(7241), + [anon_sym_mutable] = ACTIONS(7241), + [anon_sym_constinit] = ACTIONS(7241), + [anon_sym_consteval] = ACTIONS(7241), + [anon_sym_alignas] = ACTIONS(7241), + [anon_sym__Alignas] = ACTIONS(7241), + [anon_sym_QMARK] = ACTIONS(7241), + [anon_sym_LT_EQ_GT] = ACTIONS(7241), + [anon_sym_or] = ACTIONS(7241), + [anon_sym_and] = ACTIONS(7241), + [anon_sym_bitor] = ACTIONS(7241), + [anon_sym_xor] = ACTIONS(7241), + [anon_sym_bitand] = ACTIONS(7241), + [anon_sym_not_eq] = ACTIONS(7241), + [anon_sym_DASH_DASH] = ACTIONS(7241), + [anon_sym_PLUS_PLUS] = ACTIONS(7241), + [anon_sym_DOT] = ACTIONS(7239), + [anon_sym_DOT_STAR] = ACTIONS(7241), + [anon_sym_DASH_GT] = ACTIONS(7241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7241), + [anon_sym_override] = ACTIONS(7241), + [anon_sym_requires] = ACTIONS(7241), + [anon_sym_COLON_RBRACK] = ACTIONS(7241), + }, + [STATE(3470)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), + [anon_sym_COMMA] = ACTIONS(7251), + [anon_sym_RPAREN] = ACTIONS(7251), + [anon_sym_LPAREN2] = ACTIONS(7251), + [anon_sym_DASH] = ACTIONS(7249), + [anon_sym_PLUS] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7249), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7251), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE] = ACTIONS(7249), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7249), + [anon_sym_EQ_EQ] = ACTIONS(7251), + [anon_sym_BANG_EQ] = ACTIONS(7251), + [anon_sym_GT] = ACTIONS(7249), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7249), + [anon_sym_LT] = ACTIONS(7249), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym_SEMI] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7249), + [anon_sym_COLON] = ACTIONS(7249), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7251), + [anon_sym_RBRACE] = ACTIONS(7251), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7249), + [anon_sym_constexpr] = ACTIONS(7251), + [anon_sym_volatile] = ACTIONS(7251), + [anon_sym_restrict] = ACTIONS(7251), + [anon_sym___restrict__] = ACTIONS(7251), + [anon_sym__Atomic] = ACTIONS(7251), + [anon_sym__Noreturn] = ACTIONS(7251), + [anon_sym_noreturn] = ACTIONS(7251), + [anon_sym__Nonnull] = ACTIONS(7251), + [anon_sym_mutable] = ACTIONS(7251), + [anon_sym_constinit] = ACTIONS(7251), + [anon_sym_consteval] = ACTIONS(7251), + [anon_sym_alignas] = ACTIONS(7251), + [anon_sym__Alignas] = ACTIONS(7251), + [anon_sym_QMARK] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7251), + [anon_sym_PLUS_PLUS] = ACTIONS(7251), + [anon_sym_DOT] = ACTIONS(7249), + [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_COLON_RBRACK] = ACTIONS(7251), + }, + [STATE(3471)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), + [anon_sym_COMMA] = ACTIONS(7339), + [anon_sym_RPAREN] = ACTIONS(7339), + [anon_sym_LPAREN2] = ACTIONS(7339), + [anon_sym_DASH] = ACTIONS(7337), + [anon_sym_PLUS] = ACTIONS(7337), + [anon_sym_STAR] = ACTIONS(7337), + [anon_sym_SLASH] = ACTIONS(7337), + [anon_sym_PERCENT] = ACTIONS(7337), + [anon_sym_PIPE_PIPE] = ACTIONS(7339), + [anon_sym_AMP_AMP] = ACTIONS(7339), + [anon_sym_PIPE] = ACTIONS(7337), + [anon_sym_CARET] = ACTIONS(7337), + [anon_sym_AMP] = ACTIONS(7337), + [anon_sym_EQ_EQ] = ACTIONS(7339), + [anon_sym_BANG_EQ] = ACTIONS(7339), + [anon_sym_GT] = ACTIONS(7337), + [anon_sym_GT_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ] = ACTIONS(7337), + [anon_sym_LT] = ACTIONS(7337), + [anon_sym_LT_LT] = ACTIONS(7337), + [anon_sym_GT_GT] = ACTIONS(7337), + [anon_sym___extension__] = ACTIONS(7339), + [anon_sym_LBRACE] = ACTIONS(7339), + [anon_sym_LBRACK] = ACTIONS(7339), + [anon_sym_EQ] = ACTIONS(7337), + [anon_sym_const] = ACTIONS(7337), + [anon_sym_constexpr] = ACTIONS(7339), + [anon_sym_volatile] = ACTIONS(7339), + [anon_sym_restrict] = ACTIONS(7339), + [anon_sym___restrict__] = ACTIONS(7339), + [anon_sym__Atomic] = ACTIONS(7339), + [anon_sym__Noreturn] = ACTIONS(7339), + [anon_sym_noreturn] = ACTIONS(7339), + [anon_sym__Nonnull] = ACTIONS(7339), + [anon_sym_mutable] = ACTIONS(7339), + [anon_sym_constinit] = ACTIONS(7339), + [anon_sym_consteval] = ACTIONS(7339), + [anon_sym_alignas] = ACTIONS(7339), + [anon_sym__Alignas] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7339), + [anon_sym_STAR_EQ] = ACTIONS(7339), + [anon_sym_SLASH_EQ] = ACTIONS(7339), + [anon_sym_PERCENT_EQ] = ACTIONS(7339), + [anon_sym_PLUS_EQ] = ACTIONS(7339), + [anon_sym_DASH_EQ] = ACTIONS(7339), + [anon_sym_LT_LT_EQ] = ACTIONS(7339), + [anon_sym_GT_GT_EQ] = ACTIONS(7339), + [anon_sym_AMP_EQ] = ACTIONS(7339), + [anon_sym_CARET_EQ] = ACTIONS(7339), + [anon_sym_PIPE_EQ] = ACTIONS(7339), + [anon_sym_LT_EQ_GT] = ACTIONS(7339), + [anon_sym_or] = ACTIONS(7339), + [anon_sym_and] = ACTIONS(7339), + [anon_sym_bitor] = ACTIONS(7339), + [anon_sym_xor] = ACTIONS(7339), + [anon_sym_bitand] = ACTIONS(7339), + [anon_sym_not_eq] = ACTIONS(7339), + [anon_sym_DASH_DASH] = ACTIONS(7339), + [anon_sym_PLUS_PLUS] = ACTIONS(7339), + [anon_sym_DOT] = ACTIONS(7337), + [anon_sym_DOT_STAR] = ACTIONS(7339), + [anon_sym_DASH_GT] = ACTIONS(7337), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7339), + [anon_sym_override] = ACTIONS(7339), + [anon_sym_requires] = ACTIONS(7339), + [anon_sym_DASH_GT_STAR] = ACTIONS(7339), + }, + [STATE(3472)] = { + [sym_argument_list] = STATE(3847), + [sym_initializer_list] = STATE(3847), + [sym_new_declarator] = STATE(3507), + [sym_identifier] = ACTIONS(8903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8905), + [anon_sym_COMMA] = ACTIONS(8905), + [anon_sym_RPAREN] = ACTIONS(8905), + [aux_sym_preproc_if_token2] = ACTIONS(8905), + [aux_sym_preproc_else_token1] = ACTIONS(8905), + [aux_sym_preproc_elif_token1] = ACTIONS(8903), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8905), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8905), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8903), + [anon_sym_STAR] = ACTIONS(8903), + [anon_sym_SLASH] = ACTIONS(8903), + [anon_sym_PERCENT] = ACTIONS(8903), + [anon_sym_PIPE_PIPE] = ACTIONS(8905), + [anon_sym_AMP_AMP] = ACTIONS(8905), + [anon_sym_PIPE] = ACTIONS(8903), + [anon_sym_CARET] = ACTIONS(8903), + [anon_sym_AMP] = ACTIONS(8903), + [anon_sym_EQ_EQ] = ACTIONS(8905), + [anon_sym_BANG_EQ] = ACTIONS(8905), + [anon_sym_GT] = ACTIONS(8903), + [anon_sym_GT_EQ] = ACTIONS(8905), + [anon_sym_LT_EQ] = ACTIONS(8903), + [anon_sym_LT] = ACTIONS(8903), + [anon_sym_LT_LT] = ACTIONS(8903), + [anon_sym_GT_GT] = ACTIONS(8903), + [anon_sym_SEMI] = ACTIONS(8905), + [anon_sym___attribute__] = ACTIONS(8903), + [anon_sym___attribute] = ACTIONS(8903), + [anon_sym_COLON] = ACTIONS(8903), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8905), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(8905), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [anon_sym_STAR_EQ] = ACTIONS(8905), + [anon_sym_SLASH_EQ] = ACTIONS(8905), + [anon_sym_PERCENT_EQ] = ACTIONS(8905), + [anon_sym_PLUS_EQ] = ACTIONS(8905), + [anon_sym_DASH_EQ] = ACTIONS(8905), + [anon_sym_LT_LT_EQ] = ACTIONS(8905), + [anon_sym_GT_GT_EQ] = ACTIONS(8905), + [anon_sym_AMP_EQ] = ACTIONS(8905), + [anon_sym_CARET_EQ] = ACTIONS(8905), + [anon_sym_PIPE_EQ] = ACTIONS(8905), + [anon_sym_and_eq] = ACTIONS(8903), + [anon_sym_or_eq] = ACTIONS(8903), + [anon_sym_xor_eq] = ACTIONS(8903), + [anon_sym_LT_EQ_GT] = ACTIONS(8905), + [anon_sym_or] = ACTIONS(8903), + [anon_sym_and] = ACTIONS(8903), + [anon_sym_bitor] = ACTIONS(8903), + [anon_sym_xor] = ACTIONS(8903), + [anon_sym_bitand] = ACTIONS(8903), + [anon_sym_not_eq] = ACTIONS(8903), + [anon_sym_DASH_DASH] = ACTIONS(8905), + [anon_sym_PLUS_PLUS] = ACTIONS(8905), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_DOT_STAR] = ACTIONS(8905), + [anon_sym_DASH_GT] = ACTIONS(8905), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8905), + }, + [STATE(3473)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7343), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7343), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7341), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7343), + [anon_sym_LBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7341), + [anon_sym_constexpr] = ACTIONS(7343), + [anon_sym_volatile] = ACTIONS(7343), + [anon_sym_restrict] = ACTIONS(7343), + [anon_sym___restrict__] = ACTIONS(7343), + [anon_sym__Atomic] = ACTIONS(7343), + [anon_sym__Noreturn] = ACTIONS(7343), + [anon_sym_noreturn] = ACTIONS(7343), + [anon_sym__Nonnull] = ACTIONS(7343), + [anon_sym_mutable] = ACTIONS(7343), + [anon_sym_constinit] = ACTIONS(7343), + [anon_sym_consteval] = ACTIONS(7343), + [anon_sym_alignas] = ACTIONS(7343), + [anon_sym__Alignas] = ACTIONS(7343), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + }, + [STATE(3474)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), + [anon_sym_COMMA] = ACTIONS(7347), + [anon_sym_RPAREN] = ACTIONS(7347), + [anon_sym_LPAREN2] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7345), + [anon_sym_STAR] = ACTIONS(7345), + [anon_sym_SLASH] = ACTIONS(7345), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7347), + [anon_sym_AMP_AMP] = ACTIONS(7347), + [anon_sym_PIPE] = ACTIONS(7345), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(7345), + [anon_sym_EQ_EQ] = ACTIONS(7347), + [anon_sym_BANG_EQ] = ACTIONS(7347), + [anon_sym_GT] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7345), + [anon_sym_LT] = ACTIONS(7345), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(7347), + [anon_sym_LBRACE] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(7345), + [anon_sym_constexpr] = ACTIONS(7347), + [anon_sym_volatile] = ACTIONS(7347), + [anon_sym_restrict] = ACTIONS(7347), + [anon_sym___restrict__] = ACTIONS(7347), + [anon_sym__Atomic] = ACTIONS(7347), + [anon_sym__Noreturn] = ACTIONS(7347), + [anon_sym_noreturn] = ACTIONS(7347), + [anon_sym__Nonnull] = ACTIONS(7347), + [anon_sym_mutable] = ACTIONS(7347), + [anon_sym_constinit] = ACTIONS(7347), + [anon_sym_consteval] = ACTIONS(7347), + [anon_sym_alignas] = ACTIONS(7347), + [anon_sym__Alignas] = ACTIONS(7347), + [anon_sym_QMARK] = ACTIONS(7347), + [anon_sym_STAR_EQ] = ACTIONS(7347), + [anon_sym_SLASH_EQ] = ACTIONS(7347), + [anon_sym_PERCENT_EQ] = ACTIONS(7347), + [anon_sym_PLUS_EQ] = ACTIONS(7347), + [anon_sym_DASH_EQ] = ACTIONS(7347), + [anon_sym_LT_LT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7347), + [anon_sym_CARET_EQ] = ACTIONS(7347), + [anon_sym_PIPE_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7347), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7347), + [anon_sym_PLUS_PLUS] = ACTIONS(7347), + [anon_sym_DOT] = ACTIONS(7345), + [anon_sym_DOT_STAR] = ACTIONS(7347), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), + [anon_sym_DASH_GT_STAR] = ACTIONS(7347), + }, + [STATE(3475)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), + [anon_sym_COMMA] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(7353), + [anon_sym_LPAREN2] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_PLUS] = ACTIONS(7351), + [anon_sym_STAR] = ACTIONS(7351), + [anon_sym_SLASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7353), + [anon_sym_AMP_AMP] = ACTIONS(7353), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(7351), + [anon_sym_EQ_EQ] = ACTIONS(7353), + [anon_sym_BANG_EQ] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(7353), + [anon_sym_LBRACE] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(7353), + [anon_sym_EQ] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(7351), + [anon_sym_constexpr] = ACTIONS(7353), + [anon_sym_volatile] = ACTIONS(7353), + [anon_sym_restrict] = ACTIONS(7353), + [anon_sym___restrict__] = ACTIONS(7353), + [anon_sym__Atomic] = ACTIONS(7353), + [anon_sym__Noreturn] = ACTIONS(7353), + [anon_sym_noreturn] = ACTIONS(7353), + [anon_sym__Nonnull] = ACTIONS(7353), + [anon_sym_mutable] = ACTIONS(7353), + [anon_sym_constinit] = ACTIONS(7353), + [anon_sym_consteval] = ACTIONS(7353), + [anon_sym_alignas] = ACTIONS(7353), + [anon_sym__Alignas] = ACTIONS(7353), + [anon_sym_QMARK] = ACTIONS(7353), + [anon_sym_STAR_EQ] = ACTIONS(7353), + [anon_sym_SLASH_EQ] = ACTIONS(7353), + [anon_sym_PERCENT_EQ] = ACTIONS(7353), + [anon_sym_PLUS_EQ] = ACTIONS(7353), + [anon_sym_DASH_EQ] = ACTIONS(7353), + [anon_sym_LT_LT_EQ] = ACTIONS(7353), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7353), + [anon_sym_CARET_EQ] = ACTIONS(7353), + [anon_sym_PIPE_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7353), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7353), + [anon_sym_PLUS_PLUS] = ACTIONS(7353), + [anon_sym_DOT] = ACTIONS(7351), + [anon_sym_DOT_STAR] = ACTIONS(7353), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), + [anon_sym_DASH_GT_STAR] = ACTIONS(7353), + }, + [STATE(3476)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), + [anon_sym_COMMA] = ACTIONS(7357), + [anon_sym_RPAREN] = ACTIONS(7357), + [anon_sym_LPAREN2] = ACTIONS(7357), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_PLUS] = ACTIONS(7355), + [anon_sym_STAR] = ACTIONS(7355), + [anon_sym_SLASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7357), + [anon_sym_AMP_AMP] = ACTIONS(7357), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(7355), + [anon_sym_EQ_EQ] = ACTIONS(7357), + [anon_sym_BANG_EQ] = ACTIONS(7357), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym_LBRACE] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(7355), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7357), + [anon_sym_STAR_EQ] = ACTIONS(7357), + [anon_sym_SLASH_EQ] = ACTIONS(7357), + [anon_sym_PERCENT_EQ] = ACTIONS(7357), + [anon_sym_PLUS_EQ] = ACTIONS(7357), + [anon_sym_DASH_EQ] = ACTIONS(7357), + [anon_sym_LT_LT_EQ] = ACTIONS(7357), + [anon_sym_GT_GT_EQ] = ACTIONS(7357), + [anon_sym_AMP_EQ] = ACTIONS(7357), + [anon_sym_CARET_EQ] = ACTIONS(7357), + [anon_sym_PIPE_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7357), + [anon_sym_PLUS_PLUS] = ACTIONS(7357), + [anon_sym_DOT] = ACTIONS(7355), + [anon_sym_DOT_STAR] = ACTIONS(7357), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), + [anon_sym_DASH_GT_STAR] = ACTIONS(7357), + }, + [STATE(3477)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [anon_sym_constexpr] = ACTIONS(7361), + [anon_sym_volatile] = ACTIONS(7361), + [anon_sym_restrict] = ACTIONS(7361), + [anon_sym___restrict__] = ACTIONS(7361), + [anon_sym__Atomic] = ACTIONS(7361), + [anon_sym__Noreturn] = ACTIONS(7361), + [anon_sym_noreturn] = ACTIONS(7361), + [anon_sym__Nonnull] = ACTIONS(7361), + [anon_sym_mutable] = ACTIONS(7361), + [anon_sym_constinit] = ACTIONS(7361), + [anon_sym_consteval] = ACTIONS(7361), + [anon_sym_alignas] = ACTIONS(7361), + [anon_sym__Alignas] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [anon_sym_or] = ACTIONS(7361), + [anon_sym_and] = ACTIONS(7361), + [anon_sym_bitor] = ACTIONS(7361), + [anon_sym_xor] = ACTIONS(7361), + [anon_sym_bitand] = ACTIONS(7361), + [anon_sym_not_eq] = ACTIONS(7361), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7361), + [anon_sym_override] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7361), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + }, + [STATE(3478)] = { + [sym_argument_list] = STATE(5546), + [sym_initializer_list] = STATE(5981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(8167), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6798), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6798), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6798), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6798), + [anon_sym_GT_GT] = ACTIONS(6798), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_EQ] = ACTIONS(6798), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_STAR_EQ] = ACTIONS(6800), + [anon_sym_SLASH_EQ] = ACTIONS(6800), + [anon_sym_PERCENT_EQ] = ACTIONS(6800), + [anon_sym_PLUS_EQ] = ACTIONS(6800), + [anon_sym_DASH_EQ] = ACTIONS(6800), + [anon_sym_LT_LT_EQ] = ACTIONS(6800), + [anon_sym_GT_GT_EQ] = ACTIONS(6800), + [anon_sym_AMP_EQ] = ACTIONS(6800), + [anon_sym_CARET_EQ] = ACTIONS(6800), + [anon_sym_PIPE_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + }, + [STATE(3479)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6237), + [anon_sym_PLUS] = ACTIONS(6237), + [anon_sym_STAR] = ACTIONS(6237), + [anon_sym_SLASH] = ACTIONS(6237), + [anon_sym_PERCENT] = ACTIONS(6237), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6237), + [anon_sym_CARET] = ACTIONS(6237), + [anon_sym_AMP] = ACTIONS(6237), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6237), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6237), + [anon_sym_LT] = ACTIONS(6237), + [anon_sym_LT_LT] = ACTIONS(6237), + [anon_sym_GT_GT] = ACTIONS(6237), + [anon_sym___extension__] = ACTIONS(6233), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6237), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6233), + [anon_sym_volatile] = ACTIONS(6233), + [anon_sym_restrict] = ACTIONS(6233), + [anon_sym___restrict__] = ACTIONS(6233), + [anon_sym__Atomic] = ACTIONS(6233), + [anon_sym__Noreturn] = ACTIONS(6233), + [anon_sym_noreturn] = ACTIONS(6233), + [anon_sym__Nonnull] = ACTIONS(6233), + [anon_sym_mutable] = ACTIONS(6233), + [anon_sym_constinit] = ACTIONS(6233), + [anon_sym_consteval] = ACTIONS(6233), + [anon_sym_alignas] = ACTIONS(6233), + [anon_sym__Alignas] = ACTIONS(6233), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6230), + [anon_sym_and] = ACTIONS(6230), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6230), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6237), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6237), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(6233), + [anon_sym_DASH_GT_STAR] = ACTIONS(6230), + }, + [STATE(3480)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), + [anon_sym_COMMA] = ACTIONS(7377), + [anon_sym_RPAREN] = ACTIONS(7377), + [anon_sym_LPAREN2] = ACTIONS(7377), + [anon_sym_DASH] = ACTIONS(7375), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7375), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7375), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(7375), + [anon_sym_EQ_EQ] = ACTIONS(7377), + [anon_sym_BANG_EQ] = ACTIONS(7377), + [anon_sym_GT] = ACTIONS(7375), + [anon_sym_GT_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ] = ACTIONS(7375), + [anon_sym_LT] = ACTIONS(7375), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(7377), + [anon_sym_LBRACE] = ACTIONS(7377), + [anon_sym_LBRACK] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(7375), + [anon_sym_constexpr] = ACTIONS(7377), + [anon_sym_volatile] = ACTIONS(7377), + [anon_sym_restrict] = ACTIONS(7377), + [anon_sym___restrict__] = ACTIONS(7377), + [anon_sym__Atomic] = ACTIONS(7377), + [anon_sym__Noreturn] = ACTIONS(7377), + [anon_sym_noreturn] = ACTIONS(7377), + [anon_sym__Nonnull] = ACTIONS(7377), + [anon_sym_mutable] = ACTIONS(7377), + [anon_sym_constinit] = ACTIONS(7377), + [anon_sym_consteval] = ACTIONS(7377), + [anon_sym_alignas] = ACTIONS(7377), + [anon_sym__Alignas] = ACTIONS(7377), + [anon_sym_QMARK] = ACTIONS(7377), + [anon_sym_STAR_EQ] = ACTIONS(7377), + [anon_sym_SLASH_EQ] = ACTIONS(7377), + [anon_sym_PERCENT_EQ] = ACTIONS(7377), + [anon_sym_PLUS_EQ] = ACTIONS(7377), + [anon_sym_DASH_EQ] = ACTIONS(7377), + [anon_sym_LT_LT_EQ] = ACTIONS(7377), + [anon_sym_GT_GT_EQ] = ACTIONS(7377), + [anon_sym_AMP_EQ] = ACTIONS(7377), + [anon_sym_CARET_EQ] = ACTIONS(7377), + [anon_sym_PIPE_EQ] = ACTIONS(7377), + [anon_sym_LT_EQ_GT] = ACTIONS(7377), + [anon_sym_or] = ACTIONS(7377), + [anon_sym_and] = ACTIONS(7377), + [anon_sym_bitor] = ACTIONS(7377), + [anon_sym_xor] = ACTIONS(7377), + [anon_sym_bitand] = ACTIONS(7377), + [anon_sym_not_eq] = ACTIONS(7377), + [anon_sym_DASH_DASH] = ACTIONS(7377), + [anon_sym_PLUS_PLUS] = ACTIONS(7377), + [anon_sym_DOT] = ACTIONS(7375), + [anon_sym_DOT_STAR] = ACTIONS(7377), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7377), + [anon_sym_override] = ACTIONS(7377), + [anon_sym_requires] = ACTIONS(7377), + [anon_sym_DASH_GT_STAR] = ACTIONS(7377), + }, + [STATE(3481)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), + [anon_sym_COMMA] = ACTIONS(7381), + [anon_sym_RPAREN] = ACTIONS(7381), + [anon_sym_LPAREN2] = ACTIONS(7381), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(7381), + [anon_sym_AMP_AMP] = ACTIONS(7381), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7381), + [anon_sym_BANG_EQ] = ACTIONS(7381), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7379), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym_LBRACE] = ACTIONS(7381), + [anon_sym_LBRACK] = ACTIONS(7381), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7381), + [anon_sym_STAR_EQ] = ACTIONS(7381), + [anon_sym_SLASH_EQ] = ACTIONS(7381), + [anon_sym_PERCENT_EQ] = ACTIONS(7381), + [anon_sym_PLUS_EQ] = ACTIONS(7381), + [anon_sym_DASH_EQ] = ACTIONS(7381), + [anon_sym_LT_LT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7381), + [anon_sym_CARET_EQ] = ACTIONS(7381), + [anon_sym_PIPE_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7381), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7381), + [anon_sym_PLUS_PLUS] = ACTIONS(7381), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(7381), + [anon_sym_DASH_GT] = ACTIONS(7379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + [anon_sym_DASH_GT_STAR] = ACTIONS(7381), + }, + [STATE(3482)] = { + [sym_identifier] = ACTIONS(2768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_LPAREN2] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym___extension__] = ACTIONS(2768), + [anon_sym_virtual] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym___attribute__] = ACTIONS(2768), + [anon_sym___attribute] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), + [anon_sym___declspec] = ACTIONS(2768), + [anon_sym___based] = ACTIONS(2768), + [anon_sym___cdecl] = ACTIONS(2768), + [anon_sym___clrcall] = ACTIONS(2768), + [anon_sym___stdcall] = ACTIONS(2768), + [anon_sym___fastcall] = ACTIONS(2768), + [anon_sym___thiscall] = ACTIONS(2768), + [anon_sym___vectorcall] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_signed] = ACTIONS(2768), + [anon_sym_unsigned] = ACTIONS(2768), + [anon_sym_long] = ACTIONS(2768), + [anon_sym_short] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym_register] = ACTIONS(2768), + [anon_sym_inline] = ACTIONS(2768), + [anon_sym___inline] = ACTIONS(2768), + [anon_sym___inline__] = ACTIONS(2768), + [anon_sym___forceinline] = ACTIONS(2768), + [anon_sym_thread_local] = ACTIONS(2768), + [anon_sym___thread] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_constexpr] = ACTIONS(2768), + [anon_sym_volatile] = ACTIONS(2768), + [anon_sym_restrict] = ACTIONS(2768), + [anon_sym___restrict__] = ACTIONS(2768), + [anon_sym__Atomic] = ACTIONS(2768), + [anon_sym__Noreturn] = ACTIONS(2768), + [anon_sym_noreturn] = ACTIONS(2768), + [anon_sym__Nonnull] = ACTIONS(2768), + [anon_sym_mutable] = ACTIONS(2768), + [anon_sym_constinit] = ACTIONS(2768), + [anon_sym_consteval] = ACTIONS(2768), + [anon_sym_alignas] = ACTIONS(2768), + [anon_sym__Alignas] = ACTIONS(2768), + [sym_primitive_type] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_typename] = ACTIONS(2768), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2768), + [anon_sym_explicit] = ACTIONS(2768), + [anon_sym_template] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_operator] = ACTIONS(2768), + [anon_sym_LBRACK_COLON] = ACTIONS(2758), + }, + [STATE(3483)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7389), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7389), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7389), + [anon_sym_GT_GT] = ACTIONS(7389), + [anon_sym_SEMI] = ACTIONS(7389), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(7389), + [anon_sym___attribute] = ACTIONS(7387), + [anon_sym_COLON] = ACTIONS(7387), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), + [anon_sym_LBRACE] = ACTIONS(7389), + [anon_sym_RBRACE] = ACTIONS(7389), + [anon_sym_signed] = ACTIONS(8875), + [anon_sym_unsigned] = ACTIONS(8875), + [anon_sym_long] = ACTIONS(8875), + [anon_sym_short] = ACTIONS(8875), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7389), + [anon_sym_and] = ACTIONS(7389), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7389), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_COLON_RBRACK] = ACTIONS(7389), + }, + [STATE(3484)] = { + [sym__abstract_declarator] = STATE(6206), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(6495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6497), + }, + [STATE(3485)] = { + [sym__abstract_declarator] = STATE(6198), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_RPAREN] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8030), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8032), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8034), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym_COLON] = ACTIONS(7005), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), + [anon_sym_RBRACE] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7003), + }, + [STATE(3486)] = { + [sym_attribute_specifier] = STATE(4006), + [sym_field_declaration_list] = STATE(3732), + [sym_virtual_specifier] = STATE(9499), + [sym_base_class_clause] = STATE(10436), + [sym_identifier] = ACTIONS(6826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [aux_sym_preproc_if_token2] = ACTIONS(6828), + [aux_sym_preproc_else_token1] = ACTIONS(6828), + [aux_sym_preproc_elif_token1] = ACTIONS(6826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6828), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6828), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6828), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6828), + [anon_sym_GT_GT] = ACTIONS(6828), + [anon_sym___extension__] = ACTIONS(6826), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(7817), + [anon_sym_LBRACE] = ACTIONS(8909), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6826), + [anon_sym_volatile] = ACTIONS(6826), + [anon_sym_restrict] = ACTIONS(6826), + [anon_sym___restrict__] = ACTIONS(6826), + [anon_sym__Atomic] = ACTIONS(6826), + [anon_sym__Noreturn] = ACTIONS(6826), + [anon_sym_noreturn] = ACTIONS(6826), + [anon_sym__Nonnull] = ACTIONS(6826), + [anon_sym_mutable] = ACTIONS(6826), + [anon_sym_constinit] = ACTIONS(6826), + [anon_sym_consteval] = ACTIONS(6826), + [anon_sym_alignas] = ACTIONS(6826), + [anon_sym__Alignas] = ACTIONS(6826), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6828), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6836), + [anon_sym_override] = ACTIONS(6836), + [anon_sym_requires] = ACTIONS(6826), + }, + [STATE(3487)] = { + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [aux_sym_sized_type_specifier_repeat1] = STATE(3926), + [sym_identifier] = ACTIONS(8911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6886), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(8913), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8916), + [anon_sym_unsigned] = ACTIONS(8916), + [anon_sym_long] = ACTIONS(8916), + [anon_sym_short] = ACTIONS(8916), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(8913), + [anon_sym_constexpr] = ACTIONS(8913), + [anon_sym_volatile] = ACTIONS(8913), + [anon_sym_restrict] = ACTIONS(8913), + [anon_sym___restrict__] = ACTIONS(8913), + [anon_sym__Atomic] = ACTIONS(8913), + [anon_sym__Noreturn] = ACTIONS(8913), + [anon_sym_noreturn] = ACTIONS(8913), + [anon_sym__Nonnull] = ACTIONS(8913), + [anon_sym_mutable] = ACTIONS(8913), + [anon_sym_constinit] = ACTIONS(8913), + [anon_sym_consteval] = ACTIONS(8913), + [anon_sym_alignas] = ACTIONS(8918), + [anon_sym__Alignas] = ACTIONS(8918), + [sym_primitive_type] = ACTIONS(8921), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_GT2] = ACTIONS(6884), + [anon_sym_requires] = ACTIONS(6886), + }, + [STATE(3488)] = { + [sym__abstract_declarator] = STATE(6183), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8108), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8110), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8112), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(3489)] = { + [sym_identifier] = ACTIONS(8622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8624), + [anon_sym_COMMA] = ACTIONS(8624), + [anon_sym_RPAREN] = ACTIONS(8624), + [aux_sym_preproc_if_token2] = ACTIONS(8624), + [aux_sym_preproc_else_token1] = ACTIONS(8624), + [aux_sym_preproc_elif_token1] = ACTIONS(8622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8624), + [anon_sym_LPAREN2] = ACTIONS(8624), + [anon_sym_DASH] = ACTIONS(8622), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_STAR] = ACTIONS(8622), + [anon_sym_SLASH] = ACTIONS(8622), + [anon_sym_PERCENT] = ACTIONS(8622), + [anon_sym_PIPE_PIPE] = ACTIONS(8624), + [anon_sym_AMP_AMP] = ACTIONS(8624), + [anon_sym_PIPE] = ACTIONS(8622), + [anon_sym_CARET] = ACTIONS(8622), + [anon_sym_AMP] = ACTIONS(8622), + [anon_sym_EQ_EQ] = ACTIONS(8624), + [anon_sym_BANG_EQ] = ACTIONS(8624), + [anon_sym_GT] = ACTIONS(8622), + [anon_sym_GT_EQ] = ACTIONS(8624), + [anon_sym_LT_EQ] = ACTIONS(8622), + [anon_sym_LT] = ACTIONS(8622), + [anon_sym_LT_LT] = ACTIONS(8622), + [anon_sym_GT_GT] = ACTIONS(8622), + [anon_sym_SEMI] = ACTIONS(8624), + [anon_sym___attribute__] = ACTIONS(8622), + [anon_sym___attribute] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8624), + [anon_sym_RBRACE] = ACTIONS(8624), + [anon_sym_LBRACK] = ACTIONS(8624), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_QMARK] = ACTIONS(8624), + [anon_sym_STAR_EQ] = ACTIONS(8624), + [anon_sym_SLASH_EQ] = ACTIONS(8624), + [anon_sym_PERCENT_EQ] = ACTIONS(8624), + [anon_sym_PLUS_EQ] = ACTIONS(8624), + [anon_sym_DASH_EQ] = ACTIONS(8624), + [anon_sym_LT_LT_EQ] = ACTIONS(8624), + [anon_sym_GT_GT_EQ] = ACTIONS(8624), + [anon_sym_AMP_EQ] = ACTIONS(8624), + [anon_sym_CARET_EQ] = ACTIONS(8624), + [anon_sym_PIPE_EQ] = ACTIONS(8624), + [anon_sym_and_eq] = ACTIONS(8622), + [anon_sym_or_eq] = ACTIONS(8622), + [anon_sym_xor_eq] = ACTIONS(8622), + [anon_sym_LT_EQ_GT] = ACTIONS(8624), + [anon_sym_or] = ACTIONS(8622), + [anon_sym_and] = ACTIONS(8622), + [anon_sym_bitor] = ACTIONS(8622), + [anon_sym_xor] = ACTIONS(8622), + [anon_sym_bitand] = ACTIONS(8622), + [anon_sym_not_eq] = ACTIONS(8622), + [anon_sym_DASH_DASH] = ACTIONS(8624), + [anon_sym_PLUS_PLUS] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8622), + [anon_sym_DOT_STAR] = ACTIONS(8624), + [anon_sym_DASH_GT] = ACTIONS(8624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8622), + [anon_sym_override] = ACTIONS(8622), + [anon_sym_requires] = ACTIONS(8622), + [anon_sym_COLON_RBRACK] = ACTIONS(8624), + }, + [STATE(3490)] = { + [sym_attribute_declaration] = STATE(3648), + [sym_parameter_list] = STATE(3121), + [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [sym_identifier] = ACTIONS(8923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8925), + [anon_sym_COMMA] = ACTIONS(8925), + [anon_sym_RPAREN] = ACTIONS(8925), + [aux_sym_preproc_if_token2] = ACTIONS(8925), + [aux_sym_preproc_else_token1] = ACTIONS(8925), + [aux_sym_preproc_elif_token1] = ACTIONS(8923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8925), + [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8923), + [anon_sym_SLASH] = ACTIONS(8923), + [anon_sym_PERCENT] = ACTIONS(8923), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_PIPE] = ACTIONS(8923), + [anon_sym_CARET] = ACTIONS(8923), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym_EQ_EQ] = ACTIONS(8925), + [anon_sym_BANG_EQ] = ACTIONS(8925), + [anon_sym_GT] = ACTIONS(8923), + [anon_sym_GT_EQ] = ACTIONS(8925), + [anon_sym_LT_EQ] = ACTIONS(8923), + [anon_sym_LT] = ACTIONS(8923), + [anon_sym_LT_LT] = ACTIONS(8923), + [anon_sym_GT_GT] = ACTIONS(8923), + [anon_sym_SEMI] = ACTIONS(8925), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_COLON] = ACTIONS(8923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(8925), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [anon_sym_STAR_EQ] = ACTIONS(8925), + [anon_sym_SLASH_EQ] = ACTIONS(8925), + [anon_sym_PERCENT_EQ] = ACTIONS(8925), + [anon_sym_PLUS_EQ] = ACTIONS(8925), + [anon_sym_DASH_EQ] = ACTIONS(8925), + [anon_sym_LT_LT_EQ] = ACTIONS(8925), + [anon_sym_GT_GT_EQ] = ACTIONS(8925), + [anon_sym_AMP_EQ] = ACTIONS(8925), + [anon_sym_CARET_EQ] = ACTIONS(8925), + [anon_sym_PIPE_EQ] = ACTIONS(8925), + [anon_sym_and_eq] = ACTIONS(8923), + [anon_sym_or_eq] = ACTIONS(8923), + [anon_sym_xor_eq] = ACTIONS(8923), + [anon_sym_LT_EQ_GT] = ACTIONS(8925), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_bitor] = ACTIONS(8923), + [anon_sym_xor] = ACTIONS(8923), + [anon_sym_bitand] = ACTIONS(8923), + [anon_sym_not_eq] = ACTIONS(8923), + [anon_sym_DASH_DASH] = ACTIONS(8925), + [anon_sym_PLUS_PLUS] = ACTIONS(8925), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_DOT_STAR] = ACTIONS(8925), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8925), + }, + [STATE(3491)] = { + [sym_attribute_declaration] = STATE(3648), + [sym_parameter_list] = STATE(3121), + [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [sym_identifier] = ACTIONS(8931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8933), + [anon_sym_COMMA] = ACTIONS(8933), + [anon_sym_RPAREN] = ACTIONS(8933), + [aux_sym_preproc_if_token2] = ACTIONS(8933), + [aux_sym_preproc_else_token1] = ACTIONS(8933), + [aux_sym_preproc_elif_token1] = ACTIONS(8931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8933), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8933), + [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8931), + [anon_sym_STAR] = ACTIONS(8931), + [anon_sym_SLASH] = ACTIONS(8931), + [anon_sym_PERCENT] = ACTIONS(8931), + [anon_sym_PIPE_PIPE] = ACTIONS(8933), + [anon_sym_AMP_AMP] = ACTIONS(8933), + [anon_sym_PIPE] = ACTIONS(8931), + [anon_sym_CARET] = ACTIONS(8931), + [anon_sym_AMP] = ACTIONS(8931), + [anon_sym_EQ_EQ] = ACTIONS(8933), + [anon_sym_BANG_EQ] = ACTIONS(8933), + [anon_sym_GT] = ACTIONS(8931), + [anon_sym_GT_EQ] = ACTIONS(8933), + [anon_sym_LT_EQ] = ACTIONS(8931), + [anon_sym_LT] = ACTIONS(8931), + [anon_sym_LT_LT] = ACTIONS(8931), + [anon_sym_GT_GT] = ACTIONS(8931), + [anon_sym_SEMI] = ACTIONS(8933), + [anon_sym___attribute__] = ACTIONS(8931), + [anon_sym___attribute] = ACTIONS(8931), + [anon_sym_COLON] = ACTIONS(8931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(8933), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [anon_sym_STAR_EQ] = ACTIONS(8933), + [anon_sym_SLASH_EQ] = ACTIONS(8933), + [anon_sym_PERCENT_EQ] = ACTIONS(8933), + [anon_sym_PLUS_EQ] = ACTIONS(8933), + [anon_sym_DASH_EQ] = ACTIONS(8933), + [anon_sym_LT_LT_EQ] = ACTIONS(8933), + [anon_sym_GT_GT_EQ] = ACTIONS(8933), + [anon_sym_AMP_EQ] = ACTIONS(8933), + [anon_sym_CARET_EQ] = ACTIONS(8933), + [anon_sym_PIPE_EQ] = ACTIONS(8933), + [anon_sym_and_eq] = ACTIONS(8931), + [anon_sym_or_eq] = ACTIONS(8931), + [anon_sym_xor_eq] = ACTIONS(8931), + [anon_sym_LT_EQ_GT] = ACTIONS(8933), + [anon_sym_or] = ACTIONS(8931), + [anon_sym_and] = ACTIONS(8931), + [anon_sym_bitor] = ACTIONS(8931), + [anon_sym_xor] = ACTIONS(8931), + [anon_sym_bitand] = ACTIONS(8931), + [anon_sym_not_eq] = ACTIONS(8931), + [anon_sym_DASH_DASH] = ACTIONS(8933), + [anon_sym_PLUS_PLUS] = ACTIONS(8933), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_DOT_STAR] = ACTIONS(8933), + [anon_sym_DASH_GT] = ACTIONS(8933), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8933), + }, + [STATE(3492)] = { + [sym_identifier] = ACTIONS(8935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8937), + [anon_sym_COMMA] = ACTIONS(8937), + [anon_sym_RPAREN] = ACTIONS(8937), + [aux_sym_preproc_if_token2] = ACTIONS(8937), + [aux_sym_preproc_else_token1] = ACTIONS(8937), + [aux_sym_preproc_elif_token1] = ACTIONS(8935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8937), + [anon_sym_LPAREN2] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8935), + [anon_sym_STAR] = ACTIONS(8935), + [anon_sym_SLASH] = ACTIONS(8935), + [anon_sym_PERCENT] = ACTIONS(8935), + [anon_sym_PIPE_PIPE] = ACTIONS(8937), + [anon_sym_AMP_AMP] = ACTIONS(8937), + [anon_sym_PIPE] = ACTIONS(8935), + [anon_sym_CARET] = ACTIONS(8935), + [anon_sym_AMP] = ACTIONS(8935), + [anon_sym_EQ_EQ] = ACTIONS(8937), + [anon_sym_BANG_EQ] = ACTIONS(8937), + [anon_sym_GT] = ACTIONS(8935), + [anon_sym_GT_EQ] = ACTIONS(8937), + [anon_sym_LT_EQ] = ACTIONS(8935), + [anon_sym_LT] = ACTIONS(8935), + [anon_sym_LT_LT] = ACTIONS(8935), + [anon_sym_GT_GT] = ACTIONS(8935), + [anon_sym_SEMI] = ACTIONS(8937), + [anon_sym___attribute__] = ACTIONS(8935), + [anon_sym___attribute] = ACTIONS(8935), + [anon_sym_COLON] = ACTIONS(8935), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8937), + [anon_sym_RBRACE] = ACTIONS(8937), + [anon_sym_LBRACK] = ACTIONS(8937), + [anon_sym_EQ] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [anon_sym_STAR_EQ] = ACTIONS(8937), + [anon_sym_SLASH_EQ] = ACTIONS(8937), + [anon_sym_PERCENT_EQ] = ACTIONS(8937), + [anon_sym_PLUS_EQ] = ACTIONS(8937), + [anon_sym_DASH_EQ] = ACTIONS(8937), + [anon_sym_LT_LT_EQ] = ACTIONS(8937), + [anon_sym_GT_GT_EQ] = ACTIONS(8937), + [anon_sym_AMP_EQ] = ACTIONS(8937), + [anon_sym_CARET_EQ] = ACTIONS(8937), + [anon_sym_PIPE_EQ] = ACTIONS(8937), + [anon_sym_and_eq] = ACTIONS(8935), + [anon_sym_or_eq] = ACTIONS(8935), + [anon_sym_xor_eq] = ACTIONS(8935), + [anon_sym_LT_EQ_GT] = ACTIONS(8937), + [anon_sym_or] = ACTIONS(8935), + [anon_sym_and] = ACTIONS(8935), + [anon_sym_bitor] = ACTIONS(8935), + [anon_sym_xor] = ACTIONS(8935), + [anon_sym_bitand] = ACTIONS(8935), + [anon_sym_not_eq] = ACTIONS(8935), + [anon_sym_DASH_DASH] = ACTIONS(8937), + [anon_sym_PLUS_PLUS] = ACTIONS(8937), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_DOT_STAR] = ACTIONS(8937), + [anon_sym_DASH_GT] = ACTIONS(8937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8935), + [anon_sym_override] = ACTIONS(8935), + [anon_sym_requires] = ACTIONS(8935), + [anon_sym_COLON_RBRACK] = ACTIONS(8937), + }, + [STATE(3493)] = { + [sym_identifier] = ACTIONS(8606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8608), + [anon_sym_COMMA] = ACTIONS(8608), + [anon_sym_RPAREN] = ACTIONS(8608), + [aux_sym_preproc_if_token2] = ACTIONS(8608), + [aux_sym_preproc_else_token1] = ACTIONS(8608), + [aux_sym_preproc_elif_token1] = ACTIONS(8606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8608), + [anon_sym_LPAREN2] = ACTIONS(8608), + [anon_sym_DASH] = ACTIONS(8606), + [anon_sym_PLUS] = ACTIONS(8606), + [anon_sym_STAR] = ACTIONS(8606), + [anon_sym_SLASH] = ACTIONS(8606), + [anon_sym_PERCENT] = ACTIONS(8606), + [anon_sym_PIPE_PIPE] = ACTIONS(8608), + [anon_sym_AMP_AMP] = ACTIONS(8608), + [anon_sym_PIPE] = ACTIONS(8606), + [anon_sym_CARET] = ACTIONS(8606), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(8608), + [anon_sym_BANG_EQ] = ACTIONS(8608), + [anon_sym_GT] = ACTIONS(8606), + [anon_sym_GT_EQ] = ACTIONS(8608), + [anon_sym_LT_EQ] = ACTIONS(8606), + [anon_sym_LT] = ACTIONS(8606), + [anon_sym_LT_LT] = ACTIONS(8606), + [anon_sym_GT_GT] = ACTIONS(8606), + [anon_sym_SEMI] = ACTIONS(8608), + [anon_sym___attribute__] = ACTIONS(8606), + [anon_sym___attribute] = ACTIONS(8606), + [anon_sym_COLON] = ACTIONS(8606), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8608), + [anon_sym_RBRACE] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8608), + [anon_sym_EQ] = ACTIONS(8606), + [anon_sym_QMARK] = ACTIONS(8608), + [anon_sym_STAR_EQ] = ACTIONS(8608), + [anon_sym_SLASH_EQ] = ACTIONS(8608), + [anon_sym_PERCENT_EQ] = ACTIONS(8608), + [anon_sym_PLUS_EQ] = ACTIONS(8608), + [anon_sym_DASH_EQ] = ACTIONS(8608), + [anon_sym_LT_LT_EQ] = ACTIONS(8608), + [anon_sym_GT_GT_EQ] = ACTIONS(8608), + [anon_sym_AMP_EQ] = ACTIONS(8608), + [anon_sym_CARET_EQ] = ACTIONS(8608), + [anon_sym_PIPE_EQ] = ACTIONS(8608), + [anon_sym_and_eq] = ACTIONS(8606), + [anon_sym_or_eq] = ACTIONS(8606), + [anon_sym_xor_eq] = ACTIONS(8606), + [anon_sym_LT_EQ_GT] = ACTIONS(8608), + [anon_sym_or] = ACTIONS(8606), + [anon_sym_and] = ACTIONS(8606), + [anon_sym_bitor] = ACTIONS(8606), + [anon_sym_xor] = ACTIONS(8606), + [anon_sym_bitand] = ACTIONS(8606), + [anon_sym_not_eq] = ACTIONS(8606), + [anon_sym_DASH_DASH] = ACTIONS(8608), + [anon_sym_PLUS_PLUS] = ACTIONS(8608), + [anon_sym_DOT] = ACTIONS(8606), + [anon_sym_DOT_STAR] = ACTIONS(8608), + [anon_sym_DASH_GT] = ACTIONS(8608), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8606), + [anon_sym_override] = ACTIONS(8606), + [anon_sym_requires] = ACTIONS(8606), + [anon_sym_COLON_RBRACK] = ACTIONS(8608), + }, + [STATE(3494)] = { + [sym_identifier] = ACTIONS(8939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8941), + [anon_sym_COMMA] = ACTIONS(8941), + [anon_sym_RPAREN] = ACTIONS(8941), + [aux_sym_preproc_if_token2] = ACTIONS(8941), + [aux_sym_preproc_else_token1] = ACTIONS(8941), + [aux_sym_preproc_elif_token1] = ACTIONS(8939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8941), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8941), + [anon_sym_LPAREN2] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8939), + [anon_sym_STAR] = ACTIONS(8939), + [anon_sym_SLASH] = ACTIONS(8939), + [anon_sym_PERCENT] = ACTIONS(8939), + [anon_sym_PIPE_PIPE] = ACTIONS(8941), + [anon_sym_AMP_AMP] = ACTIONS(8943), + [anon_sym_PIPE] = ACTIONS(8939), + [anon_sym_CARET] = ACTIONS(8939), + [anon_sym_AMP] = ACTIONS(8939), + [anon_sym_EQ_EQ] = ACTIONS(8941), + [anon_sym_BANG_EQ] = ACTIONS(8941), + [anon_sym_GT] = ACTIONS(8939), + [anon_sym_GT_EQ] = ACTIONS(8941), + [anon_sym_LT_EQ] = ACTIONS(8939), + [anon_sym_LT] = ACTIONS(8939), + [anon_sym_LT_LT] = ACTIONS(8939), + [anon_sym_GT_GT] = ACTIONS(8939), + [anon_sym_SEMI] = ACTIONS(8941), + [anon_sym___attribute__] = ACTIONS(8939), + [anon_sym___attribute] = ACTIONS(8939), + [anon_sym_COLON] = ACTIONS(8939), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8941), + [anon_sym_RBRACE] = ACTIONS(8941), + [anon_sym_LBRACK] = ACTIONS(8941), + [anon_sym_EQ] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [anon_sym_STAR_EQ] = ACTIONS(8941), + [anon_sym_SLASH_EQ] = ACTIONS(8941), + [anon_sym_PERCENT_EQ] = ACTIONS(8941), + [anon_sym_PLUS_EQ] = ACTIONS(8941), + [anon_sym_DASH_EQ] = ACTIONS(8941), + [anon_sym_LT_LT_EQ] = ACTIONS(8941), + [anon_sym_GT_GT_EQ] = ACTIONS(8941), + [anon_sym_AMP_EQ] = ACTIONS(8941), + [anon_sym_CARET_EQ] = ACTIONS(8941), + [anon_sym_PIPE_EQ] = ACTIONS(8941), + [anon_sym_and_eq] = ACTIONS(8939), + [anon_sym_or_eq] = ACTIONS(8939), + [anon_sym_xor_eq] = ACTIONS(8939), + [anon_sym_LT_EQ_GT] = ACTIONS(8941), + [anon_sym_or] = ACTIONS(8939), + [anon_sym_and] = ACTIONS(8945), + [anon_sym_bitor] = ACTIONS(8939), + [anon_sym_xor] = ACTIONS(8939), + [anon_sym_bitand] = ACTIONS(8939), + [anon_sym_not_eq] = ACTIONS(8939), + [anon_sym_DASH_DASH] = ACTIONS(8941), + [anon_sym_PLUS_PLUS] = ACTIONS(8941), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_DOT_STAR] = ACTIONS(8941), + [anon_sym_DASH_GT] = ACTIONS(8941), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8939), + [anon_sym_override] = ACTIONS(8939), + [anon_sym_requires] = ACTIONS(8939), + [anon_sym_COLON_RBRACK] = ACTIONS(8941), + }, + [STATE(3495)] = { + [sym_attribute_declaration] = STATE(3648), + [sym_parameter_list] = STATE(3121), + [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [sym_identifier] = ACTIONS(8947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8949), + [anon_sym_COMMA] = ACTIONS(8949), + [anon_sym_RPAREN] = ACTIONS(8949), + [aux_sym_preproc_if_token2] = ACTIONS(8949), + [aux_sym_preproc_else_token1] = ACTIONS(8949), + [aux_sym_preproc_elif_token1] = ACTIONS(8947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8949), + [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_DASH] = ACTIONS(8947), + [anon_sym_PLUS] = ACTIONS(8947), + [anon_sym_STAR] = ACTIONS(8947), + [anon_sym_SLASH] = ACTIONS(8947), + [anon_sym_PERCENT] = ACTIONS(8947), + [anon_sym_PIPE_PIPE] = ACTIONS(8949), + [anon_sym_AMP_AMP] = ACTIONS(8949), + [anon_sym_PIPE] = ACTIONS(8947), + [anon_sym_CARET] = ACTIONS(8947), + [anon_sym_AMP] = ACTIONS(8947), + [anon_sym_EQ_EQ] = ACTIONS(8949), + [anon_sym_BANG_EQ] = ACTIONS(8949), + [anon_sym_GT] = ACTIONS(8947), + [anon_sym_GT_EQ] = ACTIONS(8949), + [anon_sym_LT_EQ] = ACTIONS(8947), + [anon_sym_LT] = ACTIONS(8947), + [anon_sym_LT_LT] = ACTIONS(8947), + [anon_sym_GT_GT] = ACTIONS(8947), + [anon_sym_SEMI] = ACTIONS(8949), + [anon_sym___attribute__] = ACTIONS(8947), + [anon_sym___attribute] = ACTIONS(8947), + [anon_sym_COLON] = ACTIONS(8947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(8949), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(8947), + [anon_sym_QMARK] = ACTIONS(8949), + [anon_sym_STAR_EQ] = ACTIONS(8949), + [anon_sym_SLASH_EQ] = ACTIONS(8949), + [anon_sym_PERCENT_EQ] = ACTIONS(8949), + [anon_sym_PLUS_EQ] = ACTIONS(8949), + [anon_sym_DASH_EQ] = ACTIONS(8949), + [anon_sym_LT_LT_EQ] = ACTIONS(8949), + [anon_sym_GT_GT_EQ] = ACTIONS(8949), + [anon_sym_AMP_EQ] = ACTIONS(8949), + [anon_sym_CARET_EQ] = ACTIONS(8949), + [anon_sym_PIPE_EQ] = ACTIONS(8949), + [anon_sym_and_eq] = ACTIONS(8947), + [anon_sym_or_eq] = ACTIONS(8947), + [anon_sym_xor_eq] = ACTIONS(8947), + [anon_sym_LT_EQ_GT] = ACTIONS(8949), + [anon_sym_or] = ACTIONS(8947), + [anon_sym_and] = ACTIONS(8947), + [anon_sym_bitor] = ACTIONS(8947), + [anon_sym_xor] = ACTIONS(8947), + [anon_sym_bitand] = ACTIONS(8947), + [anon_sym_not_eq] = ACTIONS(8947), + [anon_sym_DASH_DASH] = ACTIONS(8949), + [anon_sym_PLUS_PLUS] = ACTIONS(8949), + [anon_sym_DOT] = ACTIONS(8947), + [anon_sym_DOT_STAR] = ACTIONS(8949), + [anon_sym_DASH_GT] = ACTIONS(8949), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8949), + }, + [STATE(3496)] = { + [sym_identifier] = ACTIONS(2795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2793), + [anon_sym_COMMA] = ACTIONS(2793), + [anon_sym_RPAREN] = ACTIONS(2793), + [aux_sym_preproc_if_token2] = ACTIONS(2793), + [aux_sym_preproc_else_token1] = ACTIONS(2793), + [aux_sym_preproc_elif_token1] = ACTIONS(2795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2793), + [anon_sym_BANG_EQ] = ACTIONS(2793), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2793), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2795), + [anon_sym___attribute] = ACTIONS(2795), + [anon_sym_COLON] = ACTIONS(2795), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_QMARK] = ACTIONS(2793), + [anon_sym_STAR_EQ] = ACTIONS(2793), + [anon_sym_SLASH_EQ] = ACTIONS(2793), + [anon_sym_PERCENT_EQ] = ACTIONS(2793), + [anon_sym_PLUS_EQ] = ACTIONS(2793), + [anon_sym_DASH_EQ] = ACTIONS(2793), + [anon_sym_LT_LT_EQ] = ACTIONS(2793), + [anon_sym_GT_GT_EQ] = ACTIONS(2793), + [anon_sym_AMP_EQ] = ACTIONS(2793), + [anon_sym_CARET_EQ] = ACTIONS(2793), + [anon_sym_PIPE_EQ] = ACTIONS(2793), + [anon_sym_and_eq] = ACTIONS(2795), + [anon_sym_or_eq] = ACTIONS(2795), + [anon_sym_xor_eq] = ACTIONS(2795), + [anon_sym_LT_EQ_GT] = ACTIONS(2793), + [anon_sym_or] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2795), + [anon_sym_bitor] = ACTIONS(2795), + [anon_sym_xor] = ACTIONS(2795), + [anon_sym_bitand] = ACTIONS(2795), + [anon_sym_not_eq] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_DOT_STAR] = ACTIONS(2793), + [anon_sym_DASH_GT] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2795), + [anon_sym_override] = ACTIONS(2795), + [anon_sym_requires] = ACTIONS(2795), + [anon_sym_COLON_RBRACK] = ACTIONS(2793), + }, + [STATE(3497)] = { + [sym_identifier] = ACTIONS(8087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), + [anon_sym_COMMA] = ACTIONS(8089), + [anon_sym_RPAREN] = ACTIONS(8089), + [aux_sym_preproc_if_token2] = ACTIONS(8089), + [aux_sym_preproc_else_token1] = ACTIONS(8089), + [aux_sym_preproc_elif_token1] = ACTIONS(8087), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), + [anon_sym_LPAREN2] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8087), + [anon_sym_STAR] = ACTIONS(8087), + [anon_sym_SLASH] = ACTIONS(8087), + [anon_sym_PERCENT] = ACTIONS(8087), + [anon_sym_PIPE_PIPE] = ACTIONS(8089), + [anon_sym_AMP_AMP] = ACTIONS(8089), + [anon_sym_PIPE] = ACTIONS(8087), + [anon_sym_CARET] = ACTIONS(8087), + [anon_sym_AMP] = ACTIONS(8087), + [anon_sym_EQ_EQ] = ACTIONS(8089), + [anon_sym_BANG_EQ] = ACTIONS(8089), + [anon_sym_GT] = ACTIONS(8087), + [anon_sym_GT_EQ] = ACTIONS(8089), + [anon_sym_LT_EQ] = ACTIONS(8087), + [anon_sym_LT] = ACTIONS(8087), + [anon_sym_LT_LT] = ACTIONS(8087), + [anon_sym_GT_GT] = ACTIONS(8087), + [anon_sym_SEMI] = ACTIONS(8089), + [anon_sym___attribute__] = ACTIONS(8087), + [anon_sym___attribute] = ACTIONS(8087), + [anon_sym_COLON] = ACTIONS(8087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), + [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_LBRACK] = ACTIONS(8089), + [anon_sym_EQ] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_STAR_EQ] = ACTIONS(8089), + [anon_sym_SLASH_EQ] = ACTIONS(8089), + [anon_sym_PERCENT_EQ] = ACTIONS(8089), + [anon_sym_PLUS_EQ] = ACTIONS(8089), + [anon_sym_DASH_EQ] = ACTIONS(8089), + [anon_sym_LT_LT_EQ] = ACTIONS(8089), + [anon_sym_GT_GT_EQ] = ACTIONS(8089), + [anon_sym_AMP_EQ] = ACTIONS(8089), + [anon_sym_CARET_EQ] = ACTIONS(8089), + [anon_sym_PIPE_EQ] = ACTIONS(8089), + [anon_sym_and_eq] = ACTIONS(8087), + [anon_sym_or_eq] = ACTIONS(8087), + [anon_sym_xor_eq] = ACTIONS(8087), + [anon_sym_LT_EQ_GT] = ACTIONS(8089), + [anon_sym_or] = ACTIONS(8087), + [anon_sym_and] = ACTIONS(8087), + [anon_sym_bitor] = ACTIONS(8087), + [anon_sym_xor] = ACTIONS(8087), + [anon_sym_bitand] = ACTIONS(8087), + [anon_sym_not_eq] = ACTIONS(8087), + [anon_sym_DASH_DASH] = ACTIONS(8089), + [anon_sym_PLUS_PLUS] = ACTIONS(8089), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_DOT_STAR] = ACTIONS(8089), + [anon_sym_DASH_GT] = ACTIONS(8089), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8087), + [anon_sym_override] = ACTIONS(8087), + [anon_sym_requires] = ACTIONS(8087), + [anon_sym_COLON_RBRACK] = ACTIONS(8089), + }, + [STATE(3498)] = { + [sym_identifier] = ACTIONS(8665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), + [anon_sym_COMMA] = ACTIONS(8667), + [anon_sym_RPAREN] = ACTIONS(8667), + [aux_sym_preproc_if_token2] = ACTIONS(8667), + [aux_sym_preproc_else_token1] = ACTIONS(8667), + [aux_sym_preproc_elif_token1] = ACTIONS(8665), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8667), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8667), + [anon_sym_LPAREN2] = ACTIONS(8667), + [anon_sym_DASH] = ACTIONS(8665), + [anon_sym_PLUS] = ACTIONS(8665), + [anon_sym_STAR] = ACTIONS(8665), + [anon_sym_SLASH] = ACTIONS(8665), + [anon_sym_PERCENT] = ACTIONS(8665), + [anon_sym_PIPE_PIPE] = ACTIONS(8667), + [anon_sym_AMP_AMP] = ACTIONS(8667), + [anon_sym_PIPE] = ACTIONS(8665), + [anon_sym_CARET] = ACTIONS(8665), + [anon_sym_AMP] = ACTIONS(8665), + [anon_sym_EQ_EQ] = ACTIONS(8667), + [anon_sym_BANG_EQ] = ACTIONS(8667), + [anon_sym_GT] = ACTIONS(8665), + [anon_sym_GT_EQ] = ACTIONS(8667), + [anon_sym_LT_EQ] = ACTIONS(8665), + [anon_sym_LT] = ACTIONS(8665), + [anon_sym_LT_LT] = ACTIONS(8665), + [anon_sym_GT_GT] = ACTIONS(8665), + [anon_sym_SEMI] = ACTIONS(8667), + [anon_sym___attribute__] = ACTIONS(8665), + [anon_sym___attribute] = ACTIONS(8665), + [anon_sym_COLON] = ACTIONS(8665), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), + [anon_sym_RBRACE] = ACTIONS(8667), + [anon_sym_LBRACK] = ACTIONS(8667), + [anon_sym_EQ] = ACTIONS(8665), + [anon_sym_QMARK] = ACTIONS(8667), + [anon_sym_STAR_EQ] = ACTIONS(8667), + [anon_sym_SLASH_EQ] = ACTIONS(8667), + [anon_sym_PERCENT_EQ] = ACTIONS(8667), + [anon_sym_PLUS_EQ] = ACTIONS(8667), + [anon_sym_DASH_EQ] = ACTIONS(8667), + [anon_sym_LT_LT_EQ] = ACTIONS(8667), + [anon_sym_GT_GT_EQ] = ACTIONS(8667), + [anon_sym_AMP_EQ] = ACTIONS(8667), + [anon_sym_CARET_EQ] = ACTIONS(8667), + [anon_sym_PIPE_EQ] = ACTIONS(8667), + [anon_sym_and_eq] = ACTIONS(8665), + [anon_sym_or_eq] = ACTIONS(8665), + [anon_sym_xor_eq] = ACTIONS(8665), + [anon_sym_LT_EQ_GT] = ACTIONS(8667), + [anon_sym_or] = ACTIONS(8665), + [anon_sym_and] = ACTIONS(8665), + [anon_sym_bitor] = ACTIONS(8665), + [anon_sym_xor] = ACTIONS(8665), + [anon_sym_bitand] = ACTIONS(8665), + [anon_sym_not_eq] = ACTIONS(8665), + [anon_sym_DASH_DASH] = ACTIONS(8667), + [anon_sym_PLUS_PLUS] = ACTIONS(8667), + [anon_sym_DOT] = ACTIONS(8665), + [anon_sym_DOT_STAR] = ACTIONS(8667), + [anon_sym_DASH_GT] = ACTIONS(8667), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8665), + [anon_sym_override] = ACTIONS(8665), + [anon_sym_requires] = ACTIONS(8665), + [anon_sym_COLON_RBRACK] = ACTIONS(8667), + }, + [STATE(3499)] = { + [sym_identifier] = ACTIONS(8516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8518), + [anon_sym_COMMA] = ACTIONS(8518), + [anon_sym_RPAREN] = ACTIONS(8518), + [aux_sym_preproc_if_token2] = ACTIONS(8518), + [aux_sym_preproc_else_token1] = ACTIONS(8518), + [aux_sym_preproc_elif_token1] = ACTIONS(8516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8518), + [anon_sym_LPAREN2] = ACTIONS(8518), + [anon_sym_DASH] = ACTIONS(8516), + [anon_sym_PLUS] = ACTIONS(8516), + [anon_sym_STAR] = ACTIONS(8516), + [anon_sym_SLASH] = ACTIONS(8516), + [anon_sym_PERCENT] = ACTIONS(8516), + [anon_sym_PIPE_PIPE] = ACTIONS(8518), + [anon_sym_AMP_AMP] = ACTIONS(8518), + [anon_sym_PIPE] = ACTIONS(8516), + [anon_sym_CARET] = ACTIONS(8516), + [anon_sym_AMP] = ACTIONS(8516), + [anon_sym_EQ_EQ] = ACTIONS(8518), + [anon_sym_BANG_EQ] = ACTIONS(8518), + [anon_sym_GT] = ACTIONS(8516), + [anon_sym_GT_EQ] = ACTIONS(8518), + [anon_sym_LT_EQ] = ACTIONS(8516), + [anon_sym_LT] = ACTIONS(8516), + [anon_sym_LT_LT] = ACTIONS(8516), + [anon_sym_GT_GT] = ACTIONS(8516), + [anon_sym_SEMI] = ACTIONS(8518), + [anon_sym___attribute__] = ACTIONS(8516), + [anon_sym___attribute] = ACTIONS(8516), + [anon_sym_COLON] = ACTIONS(8516), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8518), + [anon_sym_RBRACE] = ACTIONS(8518), + [anon_sym_LBRACK] = ACTIONS(8518), + [anon_sym_EQ] = ACTIONS(8516), + [anon_sym_QMARK] = ACTIONS(8518), + [anon_sym_STAR_EQ] = ACTIONS(8518), + [anon_sym_SLASH_EQ] = ACTIONS(8518), + [anon_sym_PERCENT_EQ] = ACTIONS(8518), + [anon_sym_PLUS_EQ] = ACTIONS(8518), + [anon_sym_DASH_EQ] = ACTIONS(8518), + [anon_sym_LT_LT_EQ] = ACTIONS(8518), + [anon_sym_GT_GT_EQ] = ACTIONS(8518), + [anon_sym_AMP_EQ] = ACTIONS(8518), + [anon_sym_CARET_EQ] = ACTIONS(8518), + [anon_sym_PIPE_EQ] = ACTIONS(8518), + [anon_sym_and_eq] = ACTIONS(8516), + [anon_sym_or_eq] = ACTIONS(8516), + [anon_sym_xor_eq] = ACTIONS(8516), + [anon_sym_LT_EQ_GT] = ACTIONS(8518), + [anon_sym_or] = ACTIONS(8516), + [anon_sym_and] = ACTIONS(8516), + [anon_sym_bitor] = ACTIONS(8516), + [anon_sym_xor] = ACTIONS(8516), + [anon_sym_bitand] = ACTIONS(8516), + [anon_sym_not_eq] = ACTIONS(8516), + [anon_sym_DASH_DASH] = ACTIONS(8518), + [anon_sym_PLUS_PLUS] = ACTIONS(8518), + [anon_sym_DOT] = ACTIONS(8516), + [anon_sym_DOT_STAR] = ACTIONS(8518), + [anon_sym_DASH_GT] = ACTIONS(8518), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8516), + [anon_sym_override] = ACTIONS(8516), + [anon_sym_requires] = ACTIONS(8516), + [anon_sym_COLON_RBRACK] = ACTIONS(8518), + }, + [STATE(3500)] = { + [sym_identifier] = ACTIONS(8614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8616), + [anon_sym_COMMA] = ACTIONS(8616), + [anon_sym_RPAREN] = ACTIONS(8616), + [aux_sym_preproc_if_token2] = ACTIONS(8616), + [aux_sym_preproc_else_token1] = ACTIONS(8616), + [aux_sym_preproc_elif_token1] = ACTIONS(8614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8616), + [anon_sym_LPAREN2] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8614), + [anon_sym_STAR] = ACTIONS(8614), + [anon_sym_SLASH] = ACTIONS(8614), + [anon_sym_PERCENT] = ACTIONS(8614), + [anon_sym_PIPE_PIPE] = ACTIONS(8616), + [anon_sym_AMP_AMP] = ACTIONS(8616), + [anon_sym_PIPE] = ACTIONS(8614), + [anon_sym_CARET] = ACTIONS(8614), + [anon_sym_AMP] = ACTIONS(8614), + [anon_sym_EQ_EQ] = ACTIONS(8616), + [anon_sym_BANG_EQ] = ACTIONS(8616), + [anon_sym_GT] = ACTIONS(8614), + [anon_sym_GT_EQ] = ACTIONS(8616), + [anon_sym_LT_EQ] = ACTIONS(8614), + [anon_sym_LT] = ACTIONS(8614), + [anon_sym_LT_LT] = ACTIONS(8614), + [anon_sym_GT_GT] = ACTIONS(8614), + [anon_sym_SEMI] = ACTIONS(8616), + [anon_sym___attribute__] = ACTIONS(8614), + [anon_sym___attribute] = ACTIONS(8614), + [anon_sym_COLON] = ACTIONS(8614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8616), + [anon_sym_RBRACE] = ACTIONS(8616), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_EQ] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [anon_sym_STAR_EQ] = ACTIONS(8616), + [anon_sym_SLASH_EQ] = ACTIONS(8616), + [anon_sym_PERCENT_EQ] = ACTIONS(8616), + [anon_sym_PLUS_EQ] = ACTIONS(8616), + [anon_sym_DASH_EQ] = ACTIONS(8616), + [anon_sym_LT_LT_EQ] = ACTIONS(8616), + [anon_sym_GT_GT_EQ] = ACTIONS(8616), + [anon_sym_AMP_EQ] = ACTIONS(8616), + [anon_sym_CARET_EQ] = ACTIONS(8616), + [anon_sym_PIPE_EQ] = ACTIONS(8616), + [anon_sym_and_eq] = ACTIONS(8614), + [anon_sym_or_eq] = ACTIONS(8614), + [anon_sym_xor_eq] = ACTIONS(8614), + [anon_sym_LT_EQ_GT] = ACTIONS(8616), + [anon_sym_or] = ACTIONS(8614), + [anon_sym_and] = ACTIONS(8614), + [anon_sym_bitor] = ACTIONS(8614), + [anon_sym_xor] = ACTIONS(8614), + [anon_sym_bitand] = ACTIONS(8614), + [anon_sym_not_eq] = ACTIONS(8614), + [anon_sym_DASH_DASH] = ACTIONS(8616), + [anon_sym_PLUS_PLUS] = ACTIONS(8616), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_DOT_STAR] = ACTIONS(8616), + [anon_sym_DASH_GT] = ACTIONS(8616), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8614), + [anon_sym_override] = ACTIONS(8614), + [anon_sym_requires] = ACTIONS(8614), + [anon_sym_COLON_RBRACK] = ACTIONS(8616), + }, + [STATE(3501)] = { + [sym_identifier] = ACTIONS(8599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8601), + [anon_sym_COMMA] = ACTIONS(8601), + [anon_sym_RPAREN] = ACTIONS(8601), + [aux_sym_preproc_if_token2] = ACTIONS(8601), + [aux_sym_preproc_else_token1] = ACTIONS(8601), + [aux_sym_preproc_elif_token1] = ACTIONS(8599), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8601), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8601), + [anon_sym_LPAREN2] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8599), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(8599), + [anon_sym_PERCENT] = ACTIONS(8599), + [anon_sym_PIPE_PIPE] = ACTIONS(8601), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(8599), + [anon_sym_CARET] = ACTIONS(8599), + [anon_sym_AMP] = ACTIONS(8599), + [anon_sym_EQ_EQ] = ACTIONS(8601), + [anon_sym_BANG_EQ] = ACTIONS(8601), + [anon_sym_GT] = ACTIONS(8599), + [anon_sym_GT_EQ] = ACTIONS(8601), + [anon_sym_LT_EQ] = ACTIONS(8599), + [anon_sym_LT] = ACTIONS(8599), + [anon_sym_LT_LT] = ACTIONS(8599), + [anon_sym_GT_GT] = ACTIONS(8599), + [anon_sym_SEMI] = ACTIONS(8601), + [anon_sym___attribute__] = ACTIONS(8599), + [anon_sym___attribute] = ACTIONS(8599), + [anon_sym_COLON] = ACTIONS(8599), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8601), + [anon_sym_RBRACE] = ACTIONS(8601), + [anon_sym_LBRACK] = ACTIONS(8601), + [anon_sym_EQ] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [anon_sym_STAR_EQ] = ACTIONS(8601), + [anon_sym_SLASH_EQ] = ACTIONS(8601), + [anon_sym_PERCENT_EQ] = ACTIONS(8601), + [anon_sym_PLUS_EQ] = ACTIONS(8601), + [anon_sym_DASH_EQ] = ACTIONS(8601), + [anon_sym_LT_LT_EQ] = ACTIONS(8601), + [anon_sym_GT_GT_EQ] = ACTIONS(8601), + [anon_sym_AMP_EQ] = ACTIONS(8601), + [anon_sym_CARET_EQ] = ACTIONS(8601), + [anon_sym_PIPE_EQ] = ACTIONS(8601), + [anon_sym_and_eq] = ACTIONS(8599), + [anon_sym_or_eq] = ACTIONS(8599), + [anon_sym_xor_eq] = ACTIONS(8599), + [anon_sym_LT_EQ_GT] = ACTIONS(8601), + [anon_sym_or] = ACTIONS(8599), + [anon_sym_and] = ACTIONS(8599), + [anon_sym_bitor] = ACTIONS(8599), + [anon_sym_xor] = ACTIONS(8599), + [anon_sym_bitand] = ACTIONS(8599), + [anon_sym_not_eq] = ACTIONS(8599), + [anon_sym_DASH_DASH] = ACTIONS(8601), + [anon_sym_PLUS_PLUS] = ACTIONS(8601), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_DOT_STAR] = ACTIONS(8601), + [anon_sym_DASH_GT] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8599), + [anon_sym_override] = ACTIONS(8599), + [anon_sym_requires] = ACTIONS(8599), + [anon_sym_COLON_RBRACK] = ACTIONS(8601), + }, + [STATE(3502)] = { + [sym_identifier] = ACTIONS(8618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8620), + [anon_sym_RPAREN] = ACTIONS(8620), + [aux_sym_preproc_if_token2] = ACTIONS(8620), + [aux_sym_preproc_else_token1] = ACTIONS(8620), + [aux_sym_preproc_elif_token1] = ACTIONS(8618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8620), + [anon_sym_LPAREN2] = ACTIONS(8620), + [anon_sym_DASH] = ACTIONS(8618), + [anon_sym_PLUS] = ACTIONS(8618), + [anon_sym_STAR] = ACTIONS(8618), + [anon_sym_SLASH] = ACTIONS(8618), + [anon_sym_PERCENT] = ACTIONS(8618), + [anon_sym_PIPE_PIPE] = ACTIONS(8620), + [anon_sym_AMP_AMP] = ACTIONS(8620), + [anon_sym_PIPE] = ACTIONS(8618), + [anon_sym_CARET] = ACTIONS(8618), + [anon_sym_AMP] = ACTIONS(8618), + [anon_sym_EQ_EQ] = ACTIONS(8620), + [anon_sym_BANG_EQ] = ACTIONS(8620), + [anon_sym_GT] = ACTIONS(8618), + [anon_sym_GT_EQ] = ACTIONS(8620), + [anon_sym_LT_EQ] = ACTIONS(8618), + [anon_sym_LT] = ACTIONS(8618), + [anon_sym_LT_LT] = ACTIONS(8618), + [anon_sym_GT_GT] = ACTIONS(8618), + [anon_sym_SEMI] = ACTIONS(8620), + [anon_sym___attribute__] = ACTIONS(8618), + [anon_sym___attribute] = ACTIONS(8618), + [anon_sym_COLON] = ACTIONS(8618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8620), + [anon_sym_RBRACE] = ACTIONS(8620), + [anon_sym_LBRACK] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8618), + [anon_sym_QMARK] = ACTIONS(8620), + [anon_sym_STAR_EQ] = ACTIONS(8620), + [anon_sym_SLASH_EQ] = ACTIONS(8620), + [anon_sym_PERCENT_EQ] = ACTIONS(8620), + [anon_sym_PLUS_EQ] = ACTIONS(8620), + [anon_sym_DASH_EQ] = ACTIONS(8620), + [anon_sym_LT_LT_EQ] = ACTIONS(8620), + [anon_sym_GT_GT_EQ] = ACTIONS(8620), + [anon_sym_AMP_EQ] = ACTIONS(8620), + [anon_sym_CARET_EQ] = ACTIONS(8620), + [anon_sym_PIPE_EQ] = ACTIONS(8620), + [anon_sym_and_eq] = ACTIONS(8618), + [anon_sym_or_eq] = ACTIONS(8618), + [anon_sym_xor_eq] = ACTIONS(8618), + [anon_sym_LT_EQ_GT] = ACTIONS(8620), + [anon_sym_or] = ACTIONS(8618), + [anon_sym_and] = ACTIONS(8618), + [anon_sym_bitor] = ACTIONS(8618), + [anon_sym_xor] = ACTIONS(8618), + [anon_sym_bitand] = ACTIONS(8618), + [anon_sym_not_eq] = ACTIONS(8618), + [anon_sym_DASH_DASH] = ACTIONS(8620), + [anon_sym_PLUS_PLUS] = ACTIONS(8620), + [anon_sym_DOT] = ACTIONS(8618), + [anon_sym_DOT_STAR] = ACTIONS(8620), + [anon_sym_DASH_GT] = ACTIONS(8620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8618), + [anon_sym_override] = ACTIONS(8618), + [anon_sym_requires] = ACTIONS(8618), + [anon_sym_COLON_RBRACK] = ACTIONS(8620), + }, + [STATE(3503)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3504)] = { + [sym_identifier] = ACTIONS(6254), + [anon_sym_LPAREN2] = ACTIONS(6256), + [anon_sym_TILDE] = ACTIONS(6256), + [anon_sym_STAR] = ACTIONS(6256), + [anon_sym_PIPE_PIPE] = ACTIONS(6256), + [anon_sym_AMP_AMP] = ACTIONS(6256), + [anon_sym_AMP] = ACTIONS(6254), + [anon_sym___extension__] = ACTIONS(6254), + [anon_sym_virtual] = ACTIONS(6254), + [anon_sym_extern] = ACTIONS(6254), + [anon_sym___attribute__] = ACTIONS(6254), + [anon_sym___attribute] = ACTIONS(6254), + [anon_sym_using] = ACTIONS(6254), + [anon_sym_COLON_COLON] = ACTIONS(6256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), + [anon_sym___declspec] = ACTIONS(6254), + [anon_sym___based] = ACTIONS(6254), + [anon_sym___cdecl] = ACTIONS(6254), + [anon_sym___clrcall] = ACTIONS(6254), + [anon_sym___stdcall] = ACTIONS(6254), + [anon_sym___fastcall] = ACTIONS(6254), + [anon_sym___thiscall] = ACTIONS(6254), + [anon_sym___vectorcall] = ACTIONS(6254), + [anon_sym_signed] = ACTIONS(6254), + [anon_sym_unsigned] = ACTIONS(6254), + [anon_sym_long] = ACTIONS(6254), + [anon_sym_short] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(6254), + [anon_sym_static] = ACTIONS(6254), + [anon_sym_register] = ACTIONS(6254), + [anon_sym_inline] = ACTIONS(6254), + [anon_sym___inline] = ACTIONS(6254), + [anon_sym___inline__] = ACTIONS(6254), + [anon_sym___forceinline] = ACTIONS(6254), + [anon_sym_thread_local] = ACTIONS(6254), + [anon_sym___thread] = ACTIONS(6254), + [anon_sym_const] = ACTIONS(6254), + [anon_sym_constexpr] = ACTIONS(6254), + [anon_sym_volatile] = ACTIONS(6254), + [anon_sym_restrict] = ACTIONS(6254), + [anon_sym___restrict__] = ACTIONS(6254), + [anon_sym__Atomic] = ACTIONS(6254), + [anon_sym__Noreturn] = ACTIONS(6254), + [anon_sym_noreturn] = ACTIONS(6254), + [anon_sym__Nonnull] = ACTIONS(6254), + [anon_sym_mutable] = ACTIONS(6254), + [anon_sym_constinit] = ACTIONS(6254), + [anon_sym_consteval] = ACTIONS(6254), + [anon_sym_alignas] = ACTIONS(6254), + [anon_sym__Alignas] = ACTIONS(6254), + [sym_primitive_type] = ACTIONS(6254), + [anon_sym_enum] = ACTIONS(6254), + [anon_sym_class] = ACTIONS(6254), + [anon_sym_struct] = ACTIONS(6254), + [anon_sym_union] = ACTIONS(6254), + [anon_sym_or] = ACTIONS(6254), + [anon_sym_and] = ACTIONS(6254), + [anon_sym_typename] = ACTIONS(6254), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6254), + [anon_sym_decltype] = ACTIONS(6254), + [anon_sym_explicit] = ACTIONS(6254), + [anon_sym_template] = ACTIONS(6254), + [anon_sym_operator] = ACTIONS(6254), + [anon_sym_friend] = ACTIONS(6254), + [anon_sym_concept] = ACTIONS(6254), + [anon_sym_LBRACK_COLON] = ACTIONS(6256), + }, + [STATE(3505)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5372), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3506)] = { + [sym_template_argument_list] = STATE(1956), + [sym_identifier] = ACTIONS(6753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [aux_sym_preproc_if_token2] = ACTIONS(6758), + [aux_sym_preproc_else_token1] = ACTIONS(6758), + [aux_sym_preproc_elif_token1] = ACTIONS(6753), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6753), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6753), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6758), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6753), + [anon_sym_AMP] = ACTIONS(6753), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(7037), + [anon_sym_LT_LT] = ACTIONS(6753), + [anon_sym_GT_GT] = ACTIONS(6753), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___attribute__] = ACTIONS(6753), + [anon_sym___attribute] = ACTIONS(6753), + [anon_sym_COLON] = ACTIONS(6753), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6758), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(6758), + [anon_sym_EQ] = ACTIONS(6753), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_STAR_EQ] = ACTIONS(6758), + [anon_sym_SLASH_EQ] = ACTIONS(6758), + [anon_sym_PERCENT_EQ] = ACTIONS(6758), + [anon_sym_PLUS_EQ] = ACTIONS(6758), + [anon_sym_DASH_EQ] = ACTIONS(6758), + [anon_sym_LT_LT_EQ] = ACTIONS(6758), + [anon_sym_GT_GT_EQ] = ACTIONS(6758), + [anon_sym_AMP_EQ] = ACTIONS(6758), + [anon_sym_CARET_EQ] = ACTIONS(6758), + [anon_sym_PIPE_EQ] = ACTIONS(6758), + [anon_sym_and_eq] = ACTIONS(6753), + [anon_sym_or_eq] = ACTIONS(6753), + [anon_sym_xor_eq] = ACTIONS(6753), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6758), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6758), + }, + [STATE(3507)] = { + [sym_argument_list] = STATE(3794), + [sym_initializer_list] = STATE(3794), + [sym_identifier] = ACTIONS(8951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8953), + [anon_sym_COMMA] = ACTIONS(8953), + [anon_sym_RPAREN] = ACTIONS(8953), + [aux_sym_preproc_if_token2] = ACTIONS(8953), + [aux_sym_preproc_else_token1] = ACTIONS(8953), + [aux_sym_preproc_elif_token1] = ACTIONS(8951), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8953), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8953), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8951), + [anon_sym_STAR] = ACTIONS(8951), + [anon_sym_SLASH] = ACTIONS(8951), + [anon_sym_PERCENT] = ACTIONS(8951), + [anon_sym_PIPE_PIPE] = ACTIONS(8953), + [anon_sym_AMP_AMP] = ACTIONS(8953), + [anon_sym_PIPE] = ACTIONS(8951), + [anon_sym_CARET] = ACTIONS(8951), + [anon_sym_AMP] = ACTIONS(8951), + [anon_sym_EQ_EQ] = ACTIONS(8953), + [anon_sym_BANG_EQ] = ACTIONS(8953), + [anon_sym_GT] = ACTIONS(8951), + [anon_sym_GT_EQ] = ACTIONS(8953), + [anon_sym_LT_EQ] = ACTIONS(8951), + [anon_sym_LT] = ACTIONS(8951), + [anon_sym_LT_LT] = ACTIONS(8951), + [anon_sym_GT_GT] = ACTIONS(8951), + [anon_sym_SEMI] = ACTIONS(8953), + [anon_sym___attribute__] = ACTIONS(8951), + [anon_sym___attribute] = ACTIONS(8951), + [anon_sym_COLON] = ACTIONS(8951), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8953), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(8953), + [anon_sym_LBRACK] = ACTIONS(8953), + [anon_sym_EQ] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [anon_sym_STAR_EQ] = ACTIONS(8953), + [anon_sym_SLASH_EQ] = ACTIONS(8953), + [anon_sym_PERCENT_EQ] = ACTIONS(8953), + [anon_sym_PLUS_EQ] = ACTIONS(8953), + [anon_sym_DASH_EQ] = ACTIONS(8953), + [anon_sym_LT_LT_EQ] = ACTIONS(8953), + [anon_sym_GT_GT_EQ] = ACTIONS(8953), + [anon_sym_AMP_EQ] = ACTIONS(8953), + [anon_sym_CARET_EQ] = ACTIONS(8953), + [anon_sym_PIPE_EQ] = ACTIONS(8953), + [anon_sym_and_eq] = ACTIONS(8951), + [anon_sym_or_eq] = ACTIONS(8951), + [anon_sym_xor_eq] = ACTIONS(8951), + [anon_sym_LT_EQ_GT] = ACTIONS(8953), + [anon_sym_or] = ACTIONS(8951), + [anon_sym_and] = ACTIONS(8951), + [anon_sym_bitor] = ACTIONS(8951), + [anon_sym_xor] = ACTIONS(8951), + [anon_sym_bitand] = ACTIONS(8951), + [anon_sym_not_eq] = ACTIONS(8951), + [anon_sym_DASH_DASH] = ACTIONS(8953), + [anon_sym_PLUS_PLUS] = ACTIONS(8953), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_DOT_STAR] = ACTIONS(8953), + [anon_sym_DASH_GT] = ACTIONS(8953), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8953), + }, + [STATE(3508)] = { + [sym_identifier] = ACTIONS(8610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8612), + [anon_sym_COMMA] = ACTIONS(8612), + [anon_sym_RPAREN] = ACTIONS(8612), + [aux_sym_preproc_if_token2] = ACTIONS(8612), + [aux_sym_preproc_else_token1] = ACTIONS(8612), + [aux_sym_preproc_elif_token1] = ACTIONS(8610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8612), + [anon_sym_LPAREN2] = ACTIONS(8612), + [anon_sym_DASH] = ACTIONS(8610), + [anon_sym_PLUS] = ACTIONS(8610), + [anon_sym_STAR] = ACTIONS(8610), + [anon_sym_SLASH] = ACTIONS(8610), + [anon_sym_PERCENT] = ACTIONS(8610), + [anon_sym_PIPE_PIPE] = ACTIONS(8612), + [anon_sym_AMP_AMP] = ACTIONS(8612), + [anon_sym_PIPE] = ACTIONS(8610), + [anon_sym_CARET] = ACTIONS(8610), + [anon_sym_AMP] = ACTIONS(8610), + [anon_sym_EQ_EQ] = ACTIONS(8612), + [anon_sym_BANG_EQ] = ACTIONS(8612), + [anon_sym_GT] = ACTIONS(8610), + [anon_sym_GT_EQ] = ACTIONS(8612), + [anon_sym_LT_EQ] = ACTIONS(8610), + [anon_sym_LT] = ACTIONS(8610), + [anon_sym_LT_LT] = ACTIONS(8610), + [anon_sym_GT_GT] = ACTIONS(8610), + [anon_sym_SEMI] = ACTIONS(8612), + [anon_sym___attribute__] = ACTIONS(8610), + [anon_sym___attribute] = ACTIONS(8610), + [anon_sym_COLON] = ACTIONS(8610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8612), + [anon_sym_RBRACE] = ACTIONS(8612), + [anon_sym_LBRACK] = ACTIONS(8612), + [anon_sym_EQ] = ACTIONS(8610), + [anon_sym_QMARK] = ACTIONS(8612), + [anon_sym_STAR_EQ] = ACTIONS(8612), + [anon_sym_SLASH_EQ] = ACTIONS(8612), + [anon_sym_PERCENT_EQ] = ACTIONS(8612), + [anon_sym_PLUS_EQ] = ACTIONS(8612), + [anon_sym_DASH_EQ] = ACTIONS(8612), + [anon_sym_LT_LT_EQ] = ACTIONS(8612), + [anon_sym_GT_GT_EQ] = ACTIONS(8612), + [anon_sym_AMP_EQ] = ACTIONS(8612), + [anon_sym_CARET_EQ] = ACTIONS(8612), + [anon_sym_PIPE_EQ] = ACTIONS(8612), + [anon_sym_and_eq] = ACTIONS(8610), + [anon_sym_or_eq] = ACTIONS(8610), + [anon_sym_xor_eq] = ACTIONS(8610), + [anon_sym_LT_EQ_GT] = ACTIONS(8612), + [anon_sym_or] = ACTIONS(8610), + [anon_sym_and] = ACTIONS(8610), + [anon_sym_bitor] = ACTIONS(8610), + [anon_sym_xor] = ACTIONS(8610), + [anon_sym_bitand] = ACTIONS(8610), + [anon_sym_not_eq] = ACTIONS(8610), + [anon_sym_DASH_DASH] = ACTIONS(8612), + [anon_sym_PLUS_PLUS] = ACTIONS(8612), + [anon_sym_DOT] = ACTIONS(8610), + [anon_sym_DOT_STAR] = ACTIONS(8612), + [anon_sym_DASH_GT] = ACTIONS(8612), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8610), + [anon_sym_override] = ACTIONS(8610), + [anon_sym_requires] = ACTIONS(8610), + [anon_sym_COLON_RBRACK] = ACTIONS(8612), + }, + [STATE(3509)] = { + [sym_template_argument_list] = STATE(3611), + [sym_identifier] = ACTIONS(6210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), + [anon_sym_COMMA] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6203), + [aux_sym_preproc_if_token2] = ACTIONS(6203), + [aux_sym_preproc_else_token1] = ACTIONS(6203), + [aux_sym_preproc_elif_token1] = ACTIONS(6210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6203), + [anon_sym_LPAREN2] = ACTIONS(6203), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_STAR] = ACTIONS(6210), + [anon_sym_SLASH] = ACTIONS(6210), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6203), + [anon_sym_AMP_AMP] = ACTIONS(6203), + [anon_sym_PIPE] = ACTIONS(6210), + [anon_sym_CARET] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6210), + [anon_sym_EQ_EQ] = ACTIONS(6203), + [anon_sym_BANG_EQ] = ACTIONS(6203), + [anon_sym_GT] = ACTIONS(6210), + [anon_sym_GT_EQ] = ACTIONS(6203), + [anon_sym_LT_EQ] = ACTIONS(6210), + [anon_sym_LT] = ACTIONS(8697), + [anon_sym_LT_LT] = ACTIONS(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6203), + [anon_sym___attribute__] = ACTIONS(6210), + [anon_sym___attribute] = ACTIONS(6210), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6203), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6203), + [anon_sym_LBRACK] = ACTIONS(6203), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_QMARK] = ACTIONS(6203), + [anon_sym_STAR_EQ] = ACTIONS(6203), + [anon_sym_SLASH_EQ] = ACTIONS(6203), + [anon_sym_PERCENT_EQ] = ACTIONS(6203), + [anon_sym_PLUS_EQ] = ACTIONS(6203), + [anon_sym_DASH_EQ] = ACTIONS(6203), + [anon_sym_LT_LT_EQ] = ACTIONS(6203), + [anon_sym_GT_GT_EQ] = ACTIONS(6203), + [anon_sym_AMP_EQ] = ACTIONS(6203), + [anon_sym_CARET_EQ] = ACTIONS(6203), + [anon_sym_PIPE_EQ] = ACTIONS(6203), + [anon_sym_and_eq] = ACTIONS(6210), + [anon_sym_or_eq] = ACTIONS(6210), + [anon_sym_xor_eq] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6203), + [anon_sym_or] = ACTIONS(6210), + [anon_sym_and] = ACTIONS(6210), + [anon_sym_bitor] = ACTIONS(6210), + [anon_sym_xor] = ACTIONS(6210), + [anon_sym_bitand] = ACTIONS(6210), + [anon_sym_not_eq] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6203), + [anon_sym_PLUS_PLUS] = ACTIONS(6203), + [anon_sym_DOT] = ACTIONS(6210), + [anon_sym_DOT_STAR] = ACTIONS(6203), + [anon_sym_DASH_GT] = ACTIONS(6203), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6203), + }, + [STATE(3510)] = { + [sym_identifier] = ACTIONS(8955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8957), + [anon_sym_COMMA] = ACTIONS(8957), + [anon_sym_RPAREN] = ACTIONS(8957), + [aux_sym_preproc_if_token2] = ACTIONS(8957), + [aux_sym_preproc_else_token1] = ACTIONS(8957), + [aux_sym_preproc_elif_token1] = ACTIONS(8955), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8957), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8957), + [anon_sym_LPAREN2] = ACTIONS(8957), + [anon_sym_DASH] = ACTIONS(8955), + [anon_sym_PLUS] = ACTIONS(8955), + [anon_sym_STAR] = ACTIONS(8955), + [anon_sym_SLASH] = ACTIONS(8955), + [anon_sym_PERCENT] = ACTIONS(8955), + [anon_sym_PIPE_PIPE] = ACTIONS(8957), + [anon_sym_AMP_AMP] = ACTIONS(8957), + [anon_sym_PIPE] = ACTIONS(8955), + [anon_sym_CARET] = ACTIONS(8955), + [anon_sym_AMP] = ACTIONS(8955), + [anon_sym_EQ_EQ] = ACTIONS(8957), + [anon_sym_BANG_EQ] = ACTIONS(8957), + [anon_sym_GT] = ACTIONS(8955), + [anon_sym_GT_EQ] = ACTIONS(8957), + [anon_sym_LT_EQ] = ACTIONS(8955), + [anon_sym_LT] = ACTIONS(8955), + [anon_sym_LT_LT] = ACTIONS(8955), + [anon_sym_GT_GT] = ACTIONS(8955), + [anon_sym_SEMI] = ACTIONS(8957), + [anon_sym___attribute__] = ACTIONS(8955), + [anon_sym___attribute] = ACTIONS(8955), + [anon_sym_COLON] = ACTIONS(8955), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8957), + [anon_sym_RBRACE] = ACTIONS(8957), + [anon_sym_LBRACK] = ACTIONS(8957), + [anon_sym_EQ] = ACTIONS(8955), + [anon_sym_QMARK] = ACTIONS(8957), + [anon_sym_STAR_EQ] = ACTIONS(8957), + [anon_sym_SLASH_EQ] = ACTIONS(8957), + [anon_sym_PERCENT_EQ] = ACTIONS(8957), + [anon_sym_PLUS_EQ] = ACTIONS(8957), + [anon_sym_DASH_EQ] = ACTIONS(8957), + [anon_sym_LT_LT_EQ] = ACTIONS(8957), + [anon_sym_GT_GT_EQ] = ACTIONS(8957), + [anon_sym_AMP_EQ] = ACTIONS(8957), + [anon_sym_CARET_EQ] = ACTIONS(8957), + [anon_sym_PIPE_EQ] = ACTIONS(8957), + [anon_sym_and_eq] = ACTIONS(8955), + [anon_sym_or_eq] = ACTIONS(8955), + [anon_sym_xor_eq] = ACTIONS(8955), + [anon_sym_LT_EQ_GT] = ACTIONS(8957), + [anon_sym_or] = ACTIONS(8955), + [anon_sym_and] = ACTIONS(8955), + [anon_sym_bitor] = ACTIONS(8955), + [anon_sym_xor] = ACTIONS(8955), + [anon_sym_bitand] = ACTIONS(8955), + [anon_sym_not_eq] = ACTIONS(8955), + [anon_sym_DASH_DASH] = ACTIONS(8957), + [anon_sym_PLUS_PLUS] = ACTIONS(8957), + [anon_sym_DOT] = ACTIONS(8955), + [anon_sym_DOT_STAR] = ACTIONS(8957), + [anon_sym_DASH_GT] = ACTIONS(8957), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8955), + [anon_sym_override] = ACTIONS(8955), + [anon_sym_requires] = ACTIONS(8955), + [anon_sym_COLON_RBRACK] = ACTIONS(8957), + }, + [STATE(3511)] = { + [sym_identifier] = ACTIONS(8959), + [anon_sym_LPAREN2] = ACTIONS(8961), + [anon_sym_TILDE] = ACTIONS(8961), + [anon_sym_STAR] = ACTIONS(8961), + [anon_sym_PIPE_PIPE] = ACTIONS(8963), + [anon_sym_AMP_AMP] = ACTIONS(8965), + [anon_sym_AMP] = ACTIONS(8959), + [anon_sym___extension__] = ACTIONS(8959), + [anon_sym_virtual] = ACTIONS(8959), + [anon_sym_extern] = ACTIONS(8959), + [anon_sym___attribute__] = ACTIONS(8959), + [anon_sym___attribute] = ACTIONS(8959), + [anon_sym_using] = ACTIONS(8959), + [anon_sym_COLON_COLON] = ACTIONS(8961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8961), + [anon_sym___declspec] = ACTIONS(8959), + [anon_sym___based] = ACTIONS(8959), + [anon_sym___cdecl] = ACTIONS(8959), + [anon_sym___clrcall] = ACTIONS(8959), + [anon_sym___stdcall] = ACTIONS(8959), + [anon_sym___fastcall] = ACTIONS(8959), + [anon_sym___thiscall] = ACTIONS(8959), + [anon_sym___vectorcall] = ACTIONS(8959), + [anon_sym_signed] = ACTIONS(8959), + [anon_sym_unsigned] = ACTIONS(8959), + [anon_sym_long] = ACTIONS(8959), + [anon_sym_short] = ACTIONS(8959), + [anon_sym_LBRACK] = ACTIONS(8959), + [anon_sym_static] = ACTIONS(8959), + [anon_sym_register] = ACTIONS(8959), + [anon_sym_inline] = ACTIONS(8959), + [anon_sym___inline] = ACTIONS(8959), + [anon_sym___inline__] = ACTIONS(8959), + [anon_sym___forceinline] = ACTIONS(8959), + [anon_sym_thread_local] = ACTIONS(8959), + [anon_sym___thread] = ACTIONS(8959), + [anon_sym_const] = ACTIONS(8959), + [anon_sym_constexpr] = ACTIONS(8959), + [anon_sym_volatile] = ACTIONS(8959), + [anon_sym_restrict] = ACTIONS(8959), + [anon_sym___restrict__] = ACTIONS(8959), + [anon_sym__Atomic] = ACTIONS(8959), + [anon_sym__Noreturn] = ACTIONS(8959), + [anon_sym_noreturn] = ACTIONS(8959), + [anon_sym__Nonnull] = ACTIONS(8959), + [anon_sym_mutable] = ACTIONS(8959), + [anon_sym_constinit] = ACTIONS(8959), + [anon_sym_consteval] = ACTIONS(8959), + [anon_sym_alignas] = ACTIONS(8959), + [anon_sym__Alignas] = ACTIONS(8959), + [sym_primitive_type] = ACTIONS(8959), + [anon_sym_enum] = ACTIONS(8959), + [anon_sym_class] = ACTIONS(8959), + [anon_sym_struct] = ACTIONS(8959), + [anon_sym_union] = ACTIONS(8959), + [anon_sym_or] = ACTIONS(8967), + [anon_sym_and] = ACTIONS(8969), + [anon_sym_typename] = ACTIONS(8959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8959), + [anon_sym_decltype] = ACTIONS(8959), + [anon_sym_explicit] = ACTIONS(8959), + [anon_sym_template] = ACTIONS(8959), + [anon_sym_operator] = ACTIONS(8959), + [anon_sym_friend] = ACTIONS(8959), + [anon_sym_concept] = ACTIONS(8959), + [anon_sym_LBRACK_COLON] = ACTIONS(8961), + }, + [STATE(3512)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(3939), + [sym__function_attributes_end] = STATE(5841), + [sym__function_postfix] = STATE(5305), + [sym_trailing_return_type] = STATE(5719), + [sym_noexcept] = STATE(3939), + [sym_throw_specifier] = STATE(3939), + [sym_requires_clause] = STATE(5305), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8971), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8974), + [anon_sym_override] = ACTIONS(8974), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(8977), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(3513)] = { + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(7629), + [anon_sym___attribute] = ACTIONS(7629), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_STAR_EQ] = ACTIONS(7627), + [anon_sym_SLASH_EQ] = ACTIONS(7627), + [anon_sym_PERCENT_EQ] = ACTIONS(7627), + [anon_sym_PLUS_EQ] = ACTIONS(7627), + [anon_sym_DASH_EQ] = ACTIONS(7627), + [anon_sym_LT_LT_EQ] = ACTIONS(7627), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7627), + [anon_sym_CARET_EQ] = ACTIONS(7627), + [anon_sym_PIPE_EQ] = ACTIONS(7627), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7629), + [anon_sym_override] = ACTIONS(7629), + [anon_sym_requires] = ACTIONS(7629), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(3514)] = { + [sym_string_literal] = STATE(5466), + [sym_template_argument_list] = STATE(6719), + [sym_raw_string_literal] = STATE(5466), + [aux_sym_structured_binding_declarator_repeat1] = STATE(10037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), + [anon_sym_COMMA] = ACTIONS(8983), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8603), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(8986), + [anon_sym_EQ] = ACTIONS(8990), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6617), + [anon_sym_SLASH_EQ] = ACTIONS(6617), + [anon_sym_PERCENT_EQ] = ACTIONS(6617), + [anon_sym_PLUS_EQ] = ACTIONS(6617), + [anon_sym_DASH_EQ] = ACTIONS(6617), + [anon_sym_LT_LT_EQ] = ACTIONS(6617), + [anon_sym_GT_GT_EQ] = ACTIONS(6617), + [anon_sym_AMP_EQ] = ACTIONS(6617), + [anon_sym_CARET_EQ] = ACTIONS(6617), + [anon_sym_PIPE_EQ] = ACTIONS(6617), + [anon_sym_and_eq] = ACTIONS(6617), + [anon_sym_or_eq] = ACTIONS(6617), + [anon_sym_xor_eq] = ACTIONS(6617), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6619), + [anon_sym_u_DQUOTE] = ACTIONS(6619), + [anon_sym_U_DQUOTE] = ACTIONS(6619), + [anon_sym_u8_DQUOTE] = ACTIONS(6619), + [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6625), + [anon_sym_LR_DQUOTE] = ACTIONS(6625), + [anon_sym_uR_DQUOTE] = ACTIONS(6625), + [anon_sym_UR_DQUOTE] = ACTIONS(6625), + [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + }, + [STATE(3515)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), + [anon_sym_COMMA] = ACTIONS(8994), + [anon_sym_RPAREN] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_SLASH] = ACTIONS(8992), + [anon_sym_PERCENT] = ACTIONS(8992), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_PIPE] = ACTIONS(8992), + [anon_sym_CARET] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym_EQ_EQ] = ACTIONS(8994), + [anon_sym_BANG_EQ] = ACTIONS(8994), + [anon_sym_GT] = ACTIONS(8992), + [anon_sym_GT_EQ] = ACTIONS(8994), + [anon_sym_LT_EQ] = ACTIONS(8992), + [anon_sym_LT] = ACTIONS(8992), + [anon_sym_LT_LT] = ACTIONS(8992), + [anon_sym_GT_GT] = ACTIONS(8992), + [anon_sym_SEMI] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_COLON] = ACTIONS(8992), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_EQ] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [anon_sym_STAR_EQ] = ACTIONS(8994), + [anon_sym_SLASH_EQ] = ACTIONS(8994), + [anon_sym_PERCENT_EQ] = ACTIONS(8994), + [anon_sym_PLUS_EQ] = ACTIONS(8994), + [anon_sym_DASH_EQ] = ACTIONS(8994), + [anon_sym_LT_LT_EQ] = ACTIONS(8994), + [anon_sym_GT_GT_EQ] = ACTIONS(8994), + [anon_sym_AMP_EQ] = ACTIONS(8994), + [anon_sym_CARET_EQ] = ACTIONS(8994), + [anon_sym_PIPE_EQ] = ACTIONS(8994), + [anon_sym_and_eq] = ACTIONS(8992), + [anon_sym_or_eq] = ACTIONS(8992), + [anon_sym_xor_eq] = ACTIONS(8992), + [anon_sym_LT_EQ_GT] = ACTIONS(8994), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_bitor] = ACTIONS(8992), + [anon_sym_xor] = ACTIONS(8992), + [anon_sym_bitand] = ACTIONS(8992), + [anon_sym_not_eq] = ACTIONS(8992), + [anon_sym_DASH_DASH] = ACTIONS(8994), + [anon_sym_PLUS_PLUS] = ACTIONS(8994), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_DOT_STAR] = ACTIONS(8994), + [anon_sym_DASH_GT] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8992), + [anon_sym_override] = ACTIONS(8992), + [anon_sym_requires] = ACTIONS(8992), + [anon_sym_COLON_RBRACK] = ACTIONS(8994), + }, + [STATE(3516)] = { + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7546), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7546), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7546), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7546), + [anon_sym_GT_GT] = ACTIONS(7546), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7546), + [anon_sym___attribute] = ACTIONS(7546), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7544), + [anon_sym_EQ] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_STAR_EQ] = ACTIONS(7544), + [anon_sym_SLASH_EQ] = ACTIONS(7544), + [anon_sym_PERCENT_EQ] = ACTIONS(7544), + [anon_sym_PLUS_EQ] = ACTIONS(7544), + [anon_sym_DASH_EQ] = ACTIONS(7544), + [anon_sym_LT_LT_EQ] = ACTIONS(7544), + [anon_sym_GT_GT_EQ] = ACTIONS(7544), + [anon_sym_AMP_EQ] = ACTIONS(7544), + [anon_sym_CARET_EQ] = ACTIONS(7544), + [anon_sym_PIPE_EQ] = ACTIONS(7544), + [anon_sym_and_eq] = ACTIONS(7546), + [anon_sym_or_eq] = ACTIONS(7546), + [anon_sym_xor_eq] = ACTIONS(7546), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(7544), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7546), + [anon_sym_override] = ACTIONS(7546), + [anon_sym_requires] = ACTIONS(7546), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(3517)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(4017), + [sym__function_attributes_end] = STATE(5849), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5969), + [sym_noexcept] = STATE(4017), + [sym_throw_specifier] = STATE(4017), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8882), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6868), + [anon_sym_override] = ACTIONS(6868), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6874), + }, + [STATE(3518)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(4018), + [sym__function_attributes_end] = STATE(5850), + [sym__function_postfix] = STATE(5305), + [sym_trailing_return_type] = STATE(5924), + [sym_noexcept] = STATE(4018), + [sym_throw_specifier] = STATE(4018), + [sym_requires_clause] = STATE(5305), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8996), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6868), + [anon_sym_override] = ACTIONS(6868), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6874), + }, + [STATE(3519)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(3986), + [sym__function_attributes_end] = STATE(5908), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(6005), + [sym_noexcept] = STATE(3986), + [sym_throw_specifier] = STATE(3986), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [aux_sym_preproc_if_token2] = ACTIONS(7544), + [aux_sym_preproc_else_token1] = ACTIONS(7544), + [aux_sym_preproc_elif_token1] = ACTIONS(7546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7546), + [anon_sym_and] = ACTIONS(7546), + [anon_sym_bitor] = ACTIONS(7546), + [anon_sym_xor] = ACTIONS(7546), + [anon_sym_bitand] = ACTIONS(7546), + [anon_sym_not_eq] = ACTIONS(7546), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8882), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8885), + [anon_sym_override] = ACTIONS(8885), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(8888), + }, + [STATE(3520)] = { + [sym_identifier] = ACTIONS(6250), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_TILDE] = ACTIONS(6252), + [anon_sym_STAR] = ACTIONS(6252), + [anon_sym_PIPE_PIPE] = ACTIONS(6252), + [anon_sym_AMP_AMP] = ACTIONS(6252), + [anon_sym_AMP] = ACTIONS(6250), + [anon_sym___extension__] = ACTIONS(6250), + [anon_sym_virtual] = ACTIONS(6250), + [anon_sym_extern] = ACTIONS(6250), + [anon_sym___attribute__] = ACTIONS(6250), + [anon_sym___attribute] = ACTIONS(6250), + [anon_sym_using] = ACTIONS(6250), + [anon_sym_COLON_COLON] = ACTIONS(6252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), + [anon_sym___declspec] = ACTIONS(6250), + [anon_sym___based] = ACTIONS(6250), + [anon_sym___cdecl] = ACTIONS(6250), + [anon_sym___clrcall] = ACTIONS(6250), + [anon_sym___stdcall] = ACTIONS(6250), + [anon_sym___fastcall] = ACTIONS(6250), + [anon_sym___thiscall] = ACTIONS(6250), + [anon_sym___vectorcall] = ACTIONS(6250), + [anon_sym_signed] = ACTIONS(6250), + [anon_sym_unsigned] = ACTIONS(6250), + [anon_sym_long] = ACTIONS(6250), + [anon_sym_short] = ACTIONS(6250), + [anon_sym_LBRACK] = ACTIONS(6250), + [anon_sym_static] = ACTIONS(6250), + [anon_sym_register] = ACTIONS(6250), + [anon_sym_inline] = ACTIONS(6250), + [anon_sym___inline] = ACTIONS(6250), + [anon_sym___inline__] = ACTIONS(6250), + [anon_sym___forceinline] = ACTIONS(6250), + [anon_sym_thread_local] = ACTIONS(6250), + [anon_sym___thread] = ACTIONS(6250), + [anon_sym_const] = ACTIONS(6250), + [anon_sym_constexpr] = ACTIONS(6250), + [anon_sym_volatile] = ACTIONS(6250), + [anon_sym_restrict] = ACTIONS(6250), + [anon_sym___restrict__] = ACTIONS(6250), + [anon_sym__Atomic] = ACTIONS(6250), + [anon_sym__Noreturn] = ACTIONS(6250), + [anon_sym_noreturn] = ACTIONS(6250), + [anon_sym__Nonnull] = ACTIONS(6250), + [anon_sym_mutable] = ACTIONS(6250), + [anon_sym_constinit] = ACTIONS(6250), + [anon_sym_consteval] = ACTIONS(6250), + [anon_sym_alignas] = ACTIONS(6250), + [anon_sym__Alignas] = ACTIONS(6250), + [sym_primitive_type] = ACTIONS(6250), + [anon_sym_enum] = ACTIONS(6250), + [anon_sym_class] = ACTIONS(6250), + [anon_sym_struct] = ACTIONS(6250), + [anon_sym_union] = ACTIONS(6250), + [anon_sym_or] = ACTIONS(6250), + [anon_sym_and] = ACTIONS(6250), + [anon_sym_typename] = ACTIONS(6250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6250), + [anon_sym_decltype] = ACTIONS(6250), + [anon_sym_explicit] = ACTIONS(6250), + [anon_sym_template] = ACTIONS(6250), + [anon_sym_operator] = ACTIONS(6250), + [anon_sym_friend] = ACTIONS(6250), + [anon_sym_concept] = ACTIONS(6250), + [anon_sym_LBRACK_COLON] = ACTIONS(6252), + }, + [STATE(3521)] = { + [sym_identifier] = ACTIONS(8999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9001), + [anon_sym_COMMA] = ACTIONS(9001), + [anon_sym_RPAREN] = ACTIONS(9001), + [aux_sym_preproc_if_token2] = ACTIONS(9001), + [aux_sym_preproc_else_token1] = ACTIONS(9001), + [aux_sym_preproc_elif_token1] = ACTIONS(8999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9001), + [anon_sym_LPAREN2] = ACTIONS(9001), + [anon_sym_DASH] = ACTIONS(8999), + [anon_sym_PLUS] = ACTIONS(8999), + [anon_sym_STAR] = ACTIONS(8999), + [anon_sym_SLASH] = ACTIONS(8999), + [anon_sym_PERCENT] = ACTIONS(8999), + [anon_sym_PIPE_PIPE] = ACTIONS(9001), + [anon_sym_AMP_AMP] = ACTIONS(9001), + [anon_sym_PIPE] = ACTIONS(8999), + [anon_sym_CARET] = ACTIONS(8999), + [anon_sym_AMP] = ACTIONS(8999), + [anon_sym_EQ_EQ] = ACTIONS(9001), + [anon_sym_BANG_EQ] = ACTIONS(9001), + [anon_sym_GT] = ACTIONS(8999), + [anon_sym_GT_EQ] = ACTIONS(9001), + [anon_sym_LT_EQ] = ACTIONS(8999), + [anon_sym_LT] = ACTIONS(8999), + [anon_sym_LT_LT] = ACTIONS(8999), + [anon_sym_GT_GT] = ACTIONS(8999), + [anon_sym_SEMI] = ACTIONS(9001), + [anon_sym___attribute__] = ACTIONS(8999), + [anon_sym___attribute] = ACTIONS(8999), + [anon_sym_COLON] = ACTIONS(8999), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9001), + [anon_sym_RBRACE] = ACTIONS(9001), + [anon_sym_LBRACK] = ACTIONS(9001), + [anon_sym_EQ] = ACTIONS(8999), + [anon_sym_QMARK] = ACTIONS(9001), + [anon_sym_STAR_EQ] = ACTIONS(9001), + [anon_sym_SLASH_EQ] = ACTIONS(9001), + [anon_sym_PERCENT_EQ] = ACTIONS(9001), + [anon_sym_PLUS_EQ] = ACTIONS(9001), + [anon_sym_DASH_EQ] = ACTIONS(9001), + [anon_sym_LT_LT_EQ] = ACTIONS(9001), + [anon_sym_GT_GT_EQ] = ACTIONS(9001), + [anon_sym_AMP_EQ] = ACTIONS(9001), + [anon_sym_CARET_EQ] = ACTIONS(9001), + [anon_sym_PIPE_EQ] = ACTIONS(9001), + [anon_sym_and_eq] = ACTIONS(8999), + [anon_sym_or_eq] = ACTIONS(8999), + [anon_sym_xor_eq] = ACTIONS(8999), + [anon_sym_LT_EQ_GT] = ACTIONS(9001), + [anon_sym_or] = ACTIONS(8999), + [anon_sym_and] = ACTIONS(8999), + [anon_sym_bitor] = ACTIONS(8999), + [anon_sym_xor] = ACTIONS(8999), + [anon_sym_bitand] = ACTIONS(8999), + [anon_sym_not_eq] = ACTIONS(8999), + [anon_sym_DASH_DASH] = ACTIONS(9001), + [anon_sym_PLUS_PLUS] = ACTIONS(9001), + [anon_sym_DOT] = ACTIONS(8999), + [anon_sym_DOT_STAR] = ACTIONS(9001), + [anon_sym_DASH_GT] = ACTIONS(9001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8999), + [anon_sym_override] = ACTIONS(8999), + [anon_sym_requires] = ACTIONS(8999), + [anon_sym_COLON_RBRACK] = ACTIONS(9001), + }, + [STATE(3522)] = { + [sym_identifier] = ACTIONS(9003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9005), + [anon_sym_COMMA] = ACTIONS(9005), + [anon_sym_RPAREN] = ACTIONS(9005), + [aux_sym_preproc_if_token2] = ACTIONS(9005), + [aux_sym_preproc_else_token1] = ACTIONS(9005), + [aux_sym_preproc_elif_token1] = ACTIONS(9003), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9005), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9005), + [anon_sym_LPAREN2] = ACTIONS(9005), + [anon_sym_DASH] = ACTIONS(9003), + [anon_sym_PLUS] = ACTIONS(9003), + [anon_sym_STAR] = ACTIONS(9003), + [anon_sym_SLASH] = ACTIONS(9003), + [anon_sym_PERCENT] = ACTIONS(9003), + [anon_sym_PIPE_PIPE] = ACTIONS(9005), + [anon_sym_AMP_AMP] = ACTIONS(9005), + [anon_sym_PIPE] = ACTIONS(9003), + [anon_sym_CARET] = ACTIONS(9003), + [anon_sym_AMP] = ACTIONS(9003), + [anon_sym_EQ_EQ] = ACTIONS(9005), + [anon_sym_BANG_EQ] = ACTIONS(9005), + [anon_sym_GT] = ACTIONS(9003), + [anon_sym_GT_EQ] = ACTIONS(9005), + [anon_sym_LT_EQ] = ACTIONS(9003), + [anon_sym_LT] = ACTIONS(9003), + [anon_sym_LT_LT] = ACTIONS(9003), + [anon_sym_GT_GT] = ACTIONS(9003), + [anon_sym_SEMI] = ACTIONS(9005), + [anon_sym___attribute__] = ACTIONS(9003), + [anon_sym___attribute] = ACTIONS(9003), + [anon_sym_COLON] = ACTIONS(9003), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9005), + [anon_sym_RBRACE] = ACTIONS(9005), + [anon_sym_LBRACK] = ACTIONS(9005), + [anon_sym_EQ] = ACTIONS(9003), + [anon_sym_QMARK] = ACTIONS(9005), + [anon_sym_STAR_EQ] = ACTIONS(9005), + [anon_sym_SLASH_EQ] = ACTIONS(9005), + [anon_sym_PERCENT_EQ] = ACTIONS(9005), + [anon_sym_PLUS_EQ] = ACTIONS(9005), + [anon_sym_DASH_EQ] = ACTIONS(9005), + [anon_sym_LT_LT_EQ] = ACTIONS(9005), + [anon_sym_GT_GT_EQ] = ACTIONS(9005), + [anon_sym_AMP_EQ] = ACTIONS(9005), + [anon_sym_CARET_EQ] = ACTIONS(9005), + [anon_sym_PIPE_EQ] = ACTIONS(9005), + [anon_sym_and_eq] = ACTIONS(9003), + [anon_sym_or_eq] = ACTIONS(9003), + [anon_sym_xor_eq] = ACTIONS(9003), + [anon_sym_LT_EQ_GT] = ACTIONS(9005), + [anon_sym_or] = ACTIONS(9003), + [anon_sym_and] = ACTIONS(9003), + [anon_sym_bitor] = ACTIONS(9003), + [anon_sym_xor] = ACTIONS(9003), + [anon_sym_bitand] = ACTIONS(9003), + [anon_sym_not_eq] = ACTIONS(9003), + [anon_sym_DASH_DASH] = ACTIONS(9005), + [anon_sym_PLUS_PLUS] = ACTIONS(9005), + [anon_sym_DOT] = ACTIONS(9003), + [anon_sym_DOT_STAR] = ACTIONS(9005), + [anon_sym_DASH_GT] = ACTIONS(9005), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9003), + [anon_sym_override] = ACTIONS(9003), + [anon_sym_requires] = ACTIONS(9003), + [anon_sym_COLON_RBRACK] = ACTIONS(9005), + }, + [STATE(3523)] = { + [sym_identifier] = ACTIONS(9007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9009), + [anon_sym_COMMA] = ACTIONS(9009), + [anon_sym_RPAREN] = ACTIONS(9009), + [aux_sym_preproc_if_token2] = ACTIONS(9009), + [aux_sym_preproc_else_token1] = ACTIONS(9009), + [aux_sym_preproc_elif_token1] = ACTIONS(9007), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9009), + [anon_sym_LPAREN2] = ACTIONS(9009), + [anon_sym_DASH] = ACTIONS(9007), + [anon_sym_PLUS] = ACTIONS(9007), + [anon_sym_STAR] = ACTIONS(9007), + [anon_sym_SLASH] = ACTIONS(9007), + [anon_sym_PERCENT] = ACTIONS(9007), + [anon_sym_PIPE_PIPE] = ACTIONS(9009), + [anon_sym_AMP_AMP] = ACTIONS(9009), + [anon_sym_PIPE] = ACTIONS(9007), + [anon_sym_CARET] = ACTIONS(9007), + [anon_sym_AMP] = ACTIONS(9007), + [anon_sym_EQ_EQ] = ACTIONS(9009), + [anon_sym_BANG_EQ] = ACTIONS(9009), + [anon_sym_GT] = ACTIONS(9007), + [anon_sym_GT_EQ] = ACTIONS(9009), + [anon_sym_LT_EQ] = ACTIONS(9007), + [anon_sym_LT] = ACTIONS(9007), + [anon_sym_LT_LT] = ACTIONS(9007), + [anon_sym_GT_GT] = ACTIONS(9007), + [anon_sym_SEMI] = ACTIONS(9009), + [anon_sym___attribute__] = ACTIONS(9007), + [anon_sym___attribute] = ACTIONS(9007), + [anon_sym_COLON] = ACTIONS(9007), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9009), + [anon_sym_RBRACE] = ACTIONS(9009), + [anon_sym_LBRACK] = ACTIONS(9009), + [anon_sym_EQ] = ACTIONS(9007), + [anon_sym_QMARK] = ACTIONS(9009), + [anon_sym_STAR_EQ] = ACTIONS(9009), + [anon_sym_SLASH_EQ] = ACTIONS(9009), + [anon_sym_PERCENT_EQ] = ACTIONS(9009), + [anon_sym_PLUS_EQ] = ACTIONS(9009), + [anon_sym_DASH_EQ] = ACTIONS(9009), + [anon_sym_LT_LT_EQ] = ACTIONS(9009), + [anon_sym_GT_GT_EQ] = ACTIONS(9009), + [anon_sym_AMP_EQ] = ACTIONS(9009), + [anon_sym_CARET_EQ] = ACTIONS(9009), + [anon_sym_PIPE_EQ] = ACTIONS(9009), + [anon_sym_and_eq] = ACTIONS(9007), + [anon_sym_or_eq] = ACTIONS(9007), + [anon_sym_xor_eq] = ACTIONS(9007), + [anon_sym_LT_EQ_GT] = ACTIONS(9009), + [anon_sym_or] = ACTIONS(9007), + [anon_sym_and] = ACTIONS(9007), + [anon_sym_bitor] = ACTIONS(9007), + [anon_sym_xor] = ACTIONS(9007), + [anon_sym_bitand] = ACTIONS(9007), + [anon_sym_not_eq] = ACTIONS(9007), + [anon_sym_DASH_DASH] = ACTIONS(9009), + [anon_sym_PLUS_PLUS] = ACTIONS(9009), + [anon_sym_DOT] = ACTIONS(9007), + [anon_sym_DOT_STAR] = ACTIONS(9009), + [anon_sym_DASH_GT] = ACTIONS(9009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9007), + [anon_sym_override] = ACTIONS(9007), + [anon_sym_requires] = ACTIONS(9007), + [anon_sym_COLON_RBRACK] = ACTIONS(9009), + }, + [STATE(3524)] = { + [sym_identifier] = ACTIONS(6258), + [anon_sym_LPAREN2] = ACTIONS(6260), + [anon_sym_TILDE] = ACTIONS(6260), + [anon_sym_STAR] = ACTIONS(6260), + [anon_sym_PIPE_PIPE] = ACTIONS(6260), + [anon_sym_AMP_AMP] = ACTIONS(6260), + [anon_sym_AMP] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(6258), + [anon_sym_virtual] = ACTIONS(6258), + [anon_sym_extern] = ACTIONS(6258), + [anon_sym___attribute__] = ACTIONS(6258), + [anon_sym___attribute] = ACTIONS(6258), + [anon_sym_using] = ACTIONS(6258), + [anon_sym_COLON_COLON] = ACTIONS(6260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), + [anon_sym___declspec] = ACTIONS(6258), + [anon_sym___based] = ACTIONS(6258), + [anon_sym___cdecl] = ACTIONS(6258), + [anon_sym___clrcall] = ACTIONS(6258), + [anon_sym___stdcall] = ACTIONS(6258), + [anon_sym___fastcall] = ACTIONS(6258), + [anon_sym___thiscall] = ACTIONS(6258), + [anon_sym___vectorcall] = ACTIONS(6258), + [anon_sym_signed] = ACTIONS(6258), + [anon_sym_unsigned] = ACTIONS(6258), + [anon_sym_long] = ACTIONS(6258), + [anon_sym_short] = ACTIONS(6258), + [anon_sym_LBRACK] = ACTIONS(6258), + [anon_sym_static] = ACTIONS(6258), + [anon_sym_register] = ACTIONS(6258), + [anon_sym_inline] = ACTIONS(6258), + [anon_sym___inline] = ACTIONS(6258), + [anon_sym___inline__] = ACTIONS(6258), + [anon_sym___forceinline] = ACTIONS(6258), + [anon_sym_thread_local] = ACTIONS(6258), + [anon_sym___thread] = ACTIONS(6258), + [anon_sym_const] = ACTIONS(6258), + [anon_sym_constexpr] = ACTIONS(6258), + [anon_sym_volatile] = ACTIONS(6258), + [anon_sym_restrict] = ACTIONS(6258), + [anon_sym___restrict__] = ACTIONS(6258), + [anon_sym__Atomic] = ACTIONS(6258), + [anon_sym__Noreturn] = ACTIONS(6258), + [anon_sym_noreturn] = ACTIONS(6258), + [anon_sym__Nonnull] = ACTIONS(6258), + [anon_sym_mutable] = ACTIONS(6258), + [anon_sym_constinit] = ACTIONS(6258), + [anon_sym_consteval] = ACTIONS(6258), + [anon_sym_alignas] = ACTIONS(6258), + [anon_sym__Alignas] = ACTIONS(6258), + [sym_primitive_type] = ACTIONS(6258), + [anon_sym_enum] = ACTIONS(6258), + [anon_sym_class] = ACTIONS(6258), + [anon_sym_struct] = ACTIONS(6258), + [anon_sym_union] = ACTIONS(6258), + [anon_sym_or] = ACTIONS(6258), + [anon_sym_and] = ACTIONS(6258), + [anon_sym_typename] = ACTIONS(6258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6258), + [anon_sym_decltype] = ACTIONS(6258), + [anon_sym_explicit] = ACTIONS(6258), + [anon_sym_template] = ACTIONS(6258), + [anon_sym_operator] = ACTIONS(6258), + [anon_sym_friend] = ACTIONS(6258), + [anon_sym_concept] = ACTIONS(6258), + [anon_sym_LBRACK_COLON] = ACTIONS(6260), + }, + [STATE(3525)] = { + [sym_identifier] = ACTIONS(9011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9013), + [anon_sym_COMMA] = ACTIONS(9013), + [anon_sym_RPAREN] = ACTIONS(9013), + [aux_sym_preproc_if_token2] = ACTIONS(9013), + [aux_sym_preproc_else_token1] = ACTIONS(9013), + [aux_sym_preproc_elif_token1] = ACTIONS(9011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9013), + [anon_sym_LPAREN2] = ACTIONS(9013), + [anon_sym_DASH] = ACTIONS(9011), + [anon_sym_PLUS] = ACTIONS(9011), + [anon_sym_STAR] = ACTIONS(9011), + [anon_sym_SLASH] = ACTIONS(9011), + [anon_sym_PERCENT] = ACTIONS(9011), + [anon_sym_PIPE_PIPE] = ACTIONS(9013), + [anon_sym_AMP_AMP] = ACTIONS(9013), + [anon_sym_PIPE] = ACTIONS(9011), + [anon_sym_CARET] = ACTIONS(9011), + [anon_sym_AMP] = ACTIONS(9011), + [anon_sym_EQ_EQ] = ACTIONS(9013), + [anon_sym_BANG_EQ] = ACTIONS(9013), + [anon_sym_GT] = ACTIONS(9011), + [anon_sym_GT_EQ] = ACTIONS(9013), + [anon_sym_LT_EQ] = ACTIONS(9011), + [anon_sym_LT] = ACTIONS(9011), + [anon_sym_LT_LT] = ACTIONS(9011), + [anon_sym_GT_GT] = ACTIONS(9011), + [anon_sym_SEMI] = ACTIONS(9013), + [anon_sym___attribute__] = ACTIONS(9011), + [anon_sym___attribute] = ACTIONS(9011), + [anon_sym_COLON] = ACTIONS(9011), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9013), + [anon_sym_RBRACE] = ACTIONS(9013), + [anon_sym_LBRACK] = ACTIONS(9013), + [anon_sym_EQ] = ACTIONS(9011), + [anon_sym_QMARK] = ACTIONS(9013), + [anon_sym_STAR_EQ] = ACTIONS(9013), + [anon_sym_SLASH_EQ] = ACTIONS(9013), + [anon_sym_PERCENT_EQ] = ACTIONS(9013), + [anon_sym_PLUS_EQ] = ACTIONS(9013), + [anon_sym_DASH_EQ] = ACTIONS(9013), + [anon_sym_LT_LT_EQ] = ACTIONS(9013), + [anon_sym_GT_GT_EQ] = ACTIONS(9013), + [anon_sym_AMP_EQ] = ACTIONS(9013), + [anon_sym_CARET_EQ] = ACTIONS(9013), + [anon_sym_PIPE_EQ] = ACTIONS(9013), + [anon_sym_and_eq] = ACTIONS(9011), + [anon_sym_or_eq] = ACTIONS(9011), + [anon_sym_xor_eq] = ACTIONS(9011), + [anon_sym_LT_EQ_GT] = ACTIONS(9013), + [anon_sym_or] = ACTIONS(9011), + [anon_sym_and] = ACTIONS(9011), + [anon_sym_bitor] = ACTIONS(9011), + [anon_sym_xor] = ACTIONS(9011), + [anon_sym_bitand] = ACTIONS(9011), + [anon_sym_not_eq] = ACTIONS(9011), + [anon_sym_DASH_DASH] = ACTIONS(9013), + [anon_sym_PLUS_PLUS] = ACTIONS(9013), + [anon_sym_DOT] = ACTIONS(9011), + [anon_sym_DOT_STAR] = ACTIONS(9013), + [anon_sym_DASH_GT] = ACTIONS(9013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9011), + [anon_sym_override] = ACTIONS(9011), + [anon_sym_requires] = ACTIONS(9011), + [anon_sym_COLON_RBRACK] = ACTIONS(9013), + }, + [STATE(3526)] = { + [sym_identifier] = ACTIONS(9015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9017), + [anon_sym_COMMA] = ACTIONS(9017), + [anon_sym_RPAREN] = ACTIONS(9017), + [aux_sym_preproc_if_token2] = ACTIONS(9017), + [aux_sym_preproc_else_token1] = ACTIONS(9017), + [aux_sym_preproc_elif_token1] = ACTIONS(9015), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9017), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9017), + [anon_sym_LPAREN2] = ACTIONS(9017), + [anon_sym_DASH] = ACTIONS(9015), + [anon_sym_PLUS] = ACTIONS(9015), + [anon_sym_STAR] = ACTIONS(9015), + [anon_sym_SLASH] = ACTIONS(9015), + [anon_sym_PERCENT] = ACTIONS(9015), + [anon_sym_PIPE_PIPE] = ACTIONS(9017), + [anon_sym_AMP_AMP] = ACTIONS(9017), + [anon_sym_PIPE] = ACTIONS(9015), + [anon_sym_CARET] = ACTIONS(9015), + [anon_sym_AMP] = ACTIONS(9015), + [anon_sym_EQ_EQ] = ACTIONS(9017), + [anon_sym_BANG_EQ] = ACTIONS(9017), + [anon_sym_GT] = ACTIONS(9015), + [anon_sym_GT_EQ] = ACTIONS(9017), + [anon_sym_LT_EQ] = ACTIONS(9015), + [anon_sym_LT] = ACTIONS(9015), + [anon_sym_LT_LT] = ACTIONS(9015), + [anon_sym_GT_GT] = ACTIONS(9015), + [anon_sym_SEMI] = ACTIONS(9017), + [anon_sym___attribute__] = ACTIONS(9015), + [anon_sym___attribute] = ACTIONS(9015), + [anon_sym_COLON] = ACTIONS(9015), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9017), + [anon_sym_RBRACE] = ACTIONS(9017), + [anon_sym_LBRACK] = ACTIONS(9017), + [anon_sym_EQ] = ACTIONS(9015), + [anon_sym_QMARK] = ACTIONS(9017), + [anon_sym_STAR_EQ] = ACTIONS(9017), + [anon_sym_SLASH_EQ] = ACTIONS(9017), + [anon_sym_PERCENT_EQ] = ACTIONS(9017), + [anon_sym_PLUS_EQ] = ACTIONS(9017), + [anon_sym_DASH_EQ] = ACTIONS(9017), + [anon_sym_LT_LT_EQ] = ACTIONS(9017), + [anon_sym_GT_GT_EQ] = ACTIONS(9017), + [anon_sym_AMP_EQ] = ACTIONS(9017), + [anon_sym_CARET_EQ] = ACTIONS(9017), + [anon_sym_PIPE_EQ] = ACTIONS(9017), + [anon_sym_and_eq] = ACTIONS(9015), + [anon_sym_or_eq] = ACTIONS(9015), + [anon_sym_xor_eq] = ACTIONS(9015), + [anon_sym_LT_EQ_GT] = ACTIONS(9017), + [anon_sym_or] = ACTIONS(9015), + [anon_sym_and] = ACTIONS(9015), + [anon_sym_bitor] = ACTIONS(9015), + [anon_sym_xor] = ACTIONS(9015), + [anon_sym_bitand] = ACTIONS(9015), + [anon_sym_not_eq] = ACTIONS(9015), + [anon_sym_DASH_DASH] = ACTIONS(9017), + [anon_sym_PLUS_PLUS] = ACTIONS(9017), + [anon_sym_DOT] = ACTIONS(9015), + [anon_sym_DOT_STAR] = ACTIONS(9017), + [anon_sym_DASH_GT] = ACTIONS(9017), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9015), + [anon_sym_override] = ACTIONS(9015), + [anon_sym_requires] = ACTIONS(9015), + [anon_sym_COLON_RBRACK] = ACTIONS(9017), + }, + [STATE(3527)] = { + [sym_identifier] = ACTIONS(6242), + [anon_sym_LPAREN2] = ACTIONS(6244), + [anon_sym_TILDE] = ACTIONS(6244), + [anon_sym_STAR] = ACTIONS(6244), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym___extension__] = ACTIONS(6242), + [anon_sym_virtual] = ACTIONS(6242), + [anon_sym_extern] = ACTIONS(6242), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_using] = ACTIONS(6242), + [anon_sym_COLON_COLON] = ACTIONS(6244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), + [anon_sym___declspec] = ACTIONS(6242), + [anon_sym___based] = ACTIONS(6242), + [anon_sym___cdecl] = ACTIONS(6242), + [anon_sym___clrcall] = ACTIONS(6242), + [anon_sym___stdcall] = ACTIONS(6242), + [anon_sym___fastcall] = ACTIONS(6242), + [anon_sym___thiscall] = ACTIONS(6242), + [anon_sym___vectorcall] = ACTIONS(6242), + [anon_sym_signed] = ACTIONS(6242), + [anon_sym_unsigned] = ACTIONS(6242), + [anon_sym_long] = ACTIONS(6242), + [anon_sym_short] = ACTIONS(6242), + [anon_sym_LBRACK] = ACTIONS(6242), + [anon_sym_static] = ACTIONS(6242), + [anon_sym_register] = ACTIONS(6242), + [anon_sym_inline] = ACTIONS(6242), + [anon_sym___inline] = ACTIONS(6242), + [anon_sym___inline__] = ACTIONS(6242), + [anon_sym___forceinline] = ACTIONS(6242), + [anon_sym_thread_local] = ACTIONS(6242), + [anon_sym___thread] = ACTIONS(6242), + [anon_sym_const] = ACTIONS(6242), + [anon_sym_constexpr] = ACTIONS(6242), + [anon_sym_volatile] = ACTIONS(6242), + [anon_sym_restrict] = ACTIONS(6242), + [anon_sym___restrict__] = ACTIONS(6242), + [anon_sym__Atomic] = ACTIONS(6242), + [anon_sym__Noreturn] = ACTIONS(6242), + [anon_sym_noreturn] = ACTIONS(6242), + [anon_sym__Nonnull] = ACTIONS(6242), + [anon_sym_mutable] = ACTIONS(6242), + [anon_sym_constinit] = ACTIONS(6242), + [anon_sym_consteval] = ACTIONS(6242), + [anon_sym_alignas] = ACTIONS(6242), + [anon_sym__Alignas] = ACTIONS(6242), + [sym_primitive_type] = ACTIONS(6242), + [anon_sym_enum] = ACTIONS(6242), + [anon_sym_class] = ACTIONS(6242), + [anon_sym_struct] = ACTIONS(6242), + [anon_sym_union] = ACTIONS(6242), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_typename] = ACTIONS(6242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6242), + [anon_sym_decltype] = ACTIONS(6242), + [anon_sym_explicit] = ACTIONS(6242), + [anon_sym_template] = ACTIONS(6242), + [anon_sym_operator] = ACTIONS(6242), + [anon_sym_friend] = ACTIONS(6242), + [anon_sym_concept] = ACTIONS(6242), + [anon_sym_LBRACK_COLON] = ACTIONS(6244), + }, + [STATE(3528)] = { + [sym_identifier] = ACTIONS(8541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), + [anon_sym_COMMA] = ACTIONS(8543), + [anon_sym_RPAREN] = ACTIONS(8543), + [aux_sym_preproc_if_token2] = ACTIONS(8543), + [aux_sym_preproc_else_token1] = ACTIONS(8543), + [aux_sym_preproc_elif_token1] = ACTIONS(8541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), + [anon_sym_LPAREN2] = ACTIONS(8543), + [anon_sym_DASH] = ACTIONS(8541), + [anon_sym_PLUS] = ACTIONS(8541), + [anon_sym_STAR] = ACTIONS(8541), + [anon_sym_SLASH] = ACTIONS(8541), + [anon_sym_PERCENT] = ACTIONS(8541), + [anon_sym_PIPE_PIPE] = ACTIONS(8543), + [anon_sym_AMP_AMP] = ACTIONS(8543), + [anon_sym_PIPE] = ACTIONS(8541), + [anon_sym_CARET] = ACTIONS(8541), + [anon_sym_AMP] = ACTIONS(8541), + [anon_sym_EQ_EQ] = ACTIONS(8543), + [anon_sym_BANG_EQ] = ACTIONS(8543), + [anon_sym_GT] = ACTIONS(8541), + [anon_sym_GT_EQ] = ACTIONS(8543), + [anon_sym_LT_EQ] = ACTIONS(8541), + [anon_sym_LT] = ACTIONS(8541), + [anon_sym_LT_LT] = ACTIONS(8541), + [anon_sym_GT_GT] = ACTIONS(8541), + [anon_sym_SEMI] = ACTIONS(8543), + [anon_sym___attribute__] = ACTIONS(8541), + [anon_sym___attribute] = ACTIONS(8541), + [anon_sym_COLON] = ACTIONS(8541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), + [anon_sym_RBRACE] = ACTIONS(8543), + [anon_sym_LBRACK] = ACTIONS(8543), + [anon_sym_EQ] = ACTIONS(8541), + [anon_sym_QMARK] = ACTIONS(8543), + [anon_sym_STAR_EQ] = ACTIONS(8543), + [anon_sym_SLASH_EQ] = ACTIONS(8543), + [anon_sym_PERCENT_EQ] = ACTIONS(8543), + [anon_sym_PLUS_EQ] = ACTIONS(8543), + [anon_sym_DASH_EQ] = ACTIONS(8543), + [anon_sym_LT_LT_EQ] = ACTIONS(8543), + [anon_sym_GT_GT_EQ] = ACTIONS(8543), + [anon_sym_AMP_EQ] = ACTIONS(8543), + [anon_sym_CARET_EQ] = ACTIONS(8543), + [anon_sym_PIPE_EQ] = ACTIONS(8543), + [anon_sym_and_eq] = ACTIONS(8541), + [anon_sym_or_eq] = ACTIONS(8541), + [anon_sym_xor_eq] = ACTIONS(8541), + [anon_sym_LT_EQ_GT] = ACTIONS(8543), + [anon_sym_or] = ACTIONS(8541), + [anon_sym_and] = ACTIONS(8541), + [anon_sym_bitor] = ACTIONS(8541), + [anon_sym_xor] = ACTIONS(8541), + [anon_sym_bitand] = ACTIONS(8541), + [anon_sym_not_eq] = ACTIONS(8541), + [anon_sym_DASH_DASH] = ACTIONS(8543), + [anon_sym_PLUS_PLUS] = ACTIONS(8543), + [anon_sym_DOT] = ACTIONS(8541), + [anon_sym_DOT_STAR] = ACTIONS(8543), + [anon_sym_DASH_GT] = ACTIONS(8543), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8541), + [anon_sym_override] = ACTIONS(8541), + [anon_sym_requires] = ACTIONS(8541), + [anon_sym_COLON_RBRACK] = ACTIONS(8543), + }, + [STATE(3529)] = { + [sym_attribute_specifier] = STATE(3974), + [sym_enumerator_list] = STATE(3746), + [sym__enum_base_clause] = STATE(3694), + [sym_identifier] = ACTIONS(7600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [aux_sym_preproc_if_token2] = ACTIONS(7602), + [aux_sym_preproc_else_token1] = ACTIONS(7602), + [aux_sym_preproc_elif_token1] = ACTIONS(7600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7602), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(9019), + [anon_sym_LBRACE] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + }, + [STATE(3530)] = { + [sym_attribute_specifier] = STATE(4024), + [sym_enumerator_list] = STATE(3795), + [sym__enum_base_clause] = STATE(3713), + [sym_identifier] = ACTIONS(7651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [aux_sym_preproc_if_token2] = ACTIONS(7653), + [aux_sym_preproc_else_token1] = ACTIONS(7653), + [aux_sym_preproc_elif_token1] = ACTIONS(7651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7653), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7653), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7653), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7653), + [anon_sym_GT_GT] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(9019), + [anon_sym_LBRACE] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7651), + [anon_sym_volatile] = ACTIONS(7651), + [anon_sym_restrict] = ACTIONS(7651), + [anon_sym___restrict__] = ACTIONS(7651), + [anon_sym__Atomic] = ACTIONS(7651), + [anon_sym__Noreturn] = ACTIONS(7651), + [anon_sym_noreturn] = ACTIONS(7651), + [anon_sym__Nonnull] = ACTIONS(7651), + [anon_sym_mutable] = ACTIONS(7651), + [anon_sym_constinit] = ACTIONS(7651), + [anon_sym_consteval] = ACTIONS(7651), + [anon_sym_alignas] = ACTIONS(7651), + [anon_sym__Alignas] = ACTIONS(7651), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7651), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7651), + [anon_sym_not_eq] = ACTIONS(7651), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7651), + [anon_sym_requires] = ACTIONS(7651), + }, + [STATE(3531)] = { + [sym_string_literal] = STATE(3552), + [sym_raw_string_literal] = STATE(3552), + [aux_sym_concatenated_string_repeat1] = STATE(3552), + [sym_identifier] = ACTIONS(9023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), + [anon_sym_COMMA] = ACTIONS(8116), + [anon_sym_RPAREN] = ACTIONS(8116), + [anon_sym_LPAREN2] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8118), + [anon_sym_STAR] = ACTIONS(8118), + [anon_sym_SLASH] = ACTIONS(8118), + [anon_sym_PERCENT] = ACTIONS(8118), + [anon_sym_PIPE_PIPE] = ACTIONS(8116), + [anon_sym_AMP_AMP] = ACTIONS(8116), + [anon_sym_PIPE] = ACTIONS(8118), + [anon_sym_CARET] = ACTIONS(8118), + [anon_sym_AMP] = ACTIONS(8118), + [anon_sym_EQ_EQ] = ACTIONS(8116), + [anon_sym_BANG_EQ] = ACTIONS(8116), + [anon_sym_GT] = ACTIONS(8118), + [anon_sym_GT_EQ] = ACTIONS(8116), + [anon_sym_LT_EQ] = ACTIONS(8118), + [anon_sym_LT] = ACTIONS(8118), + [anon_sym_LT_LT] = ACTIONS(8118), + [anon_sym_GT_GT] = ACTIONS(8118), + [anon_sym_LBRACK] = ACTIONS(8116), + [anon_sym_EQ] = ACTIONS(8118), + [anon_sym_QMARK] = ACTIONS(8116), + [anon_sym_STAR_EQ] = ACTIONS(8116), + [anon_sym_SLASH_EQ] = ACTIONS(8116), + [anon_sym_PERCENT_EQ] = ACTIONS(8116), + [anon_sym_PLUS_EQ] = ACTIONS(8116), + [anon_sym_DASH_EQ] = ACTIONS(8116), + [anon_sym_LT_LT_EQ] = ACTIONS(8116), + [anon_sym_GT_GT_EQ] = ACTIONS(8116), + [anon_sym_AMP_EQ] = ACTIONS(8116), + [anon_sym_CARET_EQ] = ACTIONS(8116), + [anon_sym_PIPE_EQ] = ACTIONS(8116), + [anon_sym_and_eq] = ACTIONS(8118), + [anon_sym_or_eq] = ACTIONS(8118), + [anon_sym_xor_eq] = ACTIONS(8118), + [anon_sym_LT_EQ_GT] = ACTIONS(8116), + [anon_sym_or] = ACTIONS(8118), + [anon_sym_and] = ACTIONS(8118), + [anon_sym_bitor] = ACTIONS(8118), + [anon_sym_xor] = ACTIONS(8118), + [anon_sym_bitand] = ACTIONS(8118), + [anon_sym_not_eq] = ACTIONS(8118), + [anon_sym_DASH_DASH] = ACTIONS(8116), + [anon_sym_PLUS_PLUS] = ACTIONS(8116), + [anon_sym_DOT] = ACTIONS(8118), + [anon_sym_DOT_STAR] = ACTIONS(8116), + [anon_sym_DASH_GT] = ACTIONS(8118), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(8116), + [sym_literal_suffix] = ACTIONS(8118), + }, + [STATE(3532)] = { + [sym_identifier] = ACTIONS(8939), + [anon_sym_LPAREN2] = ACTIONS(8941), + [anon_sym_TILDE] = ACTIONS(8941), + [anon_sym_STAR] = ACTIONS(8941), + [anon_sym_PIPE_PIPE] = ACTIONS(8941), + [anon_sym_AMP_AMP] = ACTIONS(8965), + [anon_sym_AMP] = ACTIONS(8939), + [anon_sym___extension__] = ACTIONS(8939), + [anon_sym_virtual] = ACTIONS(8939), + [anon_sym_extern] = ACTIONS(8939), + [anon_sym___attribute__] = ACTIONS(8939), + [anon_sym___attribute] = ACTIONS(8939), + [anon_sym_using] = ACTIONS(8939), + [anon_sym_COLON_COLON] = ACTIONS(8941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8941), + [anon_sym___declspec] = ACTIONS(8939), + [anon_sym___based] = ACTIONS(8939), + [anon_sym___cdecl] = ACTIONS(8939), + [anon_sym___clrcall] = ACTIONS(8939), + [anon_sym___stdcall] = ACTIONS(8939), + [anon_sym___fastcall] = ACTIONS(8939), + [anon_sym___thiscall] = ACTIONS(8939), + [anon_sym___vectorcall] = ACTIONS(8939), + [anon_sym_signed] = ACTIONS(8939), + [anon_sym_unsigned] = ACTIONS(8939), + [anon_sym_long] = ACTIONS(8939), + [anon_sym_short] = ACTIONS(8939), + [anon_sym_LBRACK] = ACTIONS(8939), + [anon_sym_static] = ACTIONS(8939), + [anon_sym_register] = ACTIONS(8939), + [anon_sym_inline] = ACTIONS(8939), + [anon_sym___inline] = ACTIONS(8939), + [anon_sym___inline__] = ACTIONS(8939), + [anon_sym___forceinline] = ACTIONS(8939), + [anon_sym_thread_local] = ACTIONS(8939), + [anon_sym___thread] = ACTIONS(8939), + [anon_sym_const] = ACTIONS(8939), + [anon_sym_constexpr] = ACTIONS(8939), + [anon_sym_volatile] = ACTIONS(8939), + [anon_sym_restrict] = ACTIONS(8939), + [anon_sym___restrict__] = ACTIONS(8939), + [anon_sym__Atomic] = ACTIONS(8939), + [anon_sym__Noreturn] = ACTIONS(8939), + [anon_sym_noreturn] = ACTIONS(8939), + [anon_sym__Nonnull] = ACTIONS(8939), + [anon_sym_mutable] = ACTIONS(8939), + [anon_sym_constinit] = ACTIONS(8939), + [anon_sym_consteval] = ACTIONS(8939), + [anon_sym_alignas] = ACTIONS(8939), + [anon_sym__Alignas] = ACTIONS(8939), + [sym_primitive_type] = ACTIONS(8939), + [anon_sym_enum] = ACTIONS(8939), + [anon_sym_class] = ACTIONS(8939), + [anon_sym_struct] = ACTIONS(8939), + [anon_sym_union] = ACTIONS(8939), + [anon_sym_or] = ACTIONS(8939), + [anon_sym_and] = ACTIONS(8969), + [anon_sym_typename] = ACTIONS(8939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8939), + [anon_sym_decltype] = ACTIONS(8939), + [anon_sym_explicit] = ACTIONS(8939), + [anon_sym_template] = ACTIONS(8939), + [anon_sym_operator] = ACTIONS(8939), + [anon_sym_friend] = ACTIONS(8939), + [anon_sym_concept] = ACTIONS(8939), + [anon_sym_LBRACK_COLON] = ACTIONS(8941), + }, + [STATE(3533)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym_SEMI] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_COLON] = ACTIONS(7084), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_RBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(8205), + [anon_sym_unsigned] = ACTIONS(8205), + [anon_sym_long] = ACTIONS(8205), + [anon_sym_short] = ACTIONS(8205), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7081), + }, + [STATE(3534)] = { + [sym_attribute_specifier] = STATE(3082), + [sym_field_declaration_list] = STATE(3743), + [sym_virtual_specifier] = STATE(9325), + [sym_base_class_clause] = STATE(10195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), + [anon_sym_COMMA] = ACTIONS(6828), + [anon_sym_RPAREN] = ACTIONS(6828), + [anon_sym_LPAREN2] = ACTIONS(6828), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6828), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6828), + [anon_sym_PIPE_PIPE] = ACTIONS(6828), + [anon_sym_AMP_AMP] = ACTIONS(6828), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6828), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6828), + [anon_sym_BANG_EQ] = ACTIONS(6828), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6828), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6828), + [anon_sym_GT_GT] = ACTIONS(6828), + [anon_sym_SEMI] = ACTIONS(6828), + [anon_sym___extension__] = ACTIONS(6828), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(6832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6828), + [anon_sym_LBRACE] = ACTIONS(9027), + [anon_sym_RBRACE] = ACTIONS(6828), + [anon_sym_LBRACK] = ACTIONS(6828), + [anon_sym_const] = ACTIONS(6826), + [anon_sym_constexpr] = ACTIONS(6828), + [anon_sym_volatile] = ACTIONS(6828), + [anon_sym_restrict] = ACTIONS(6828), + [anon_sym___restrict__] = ACTIONS(6828), + [anon_sym__Atomic] = ACTIONS(6828), + [anon_sym__Noreturn] = ACTIONS(6828), + [anon_sym_noreturn] = ACTIONS(6828), + [anon_sym__Nonnull] = ACTIONS(6828), + [anon_sym_mutable] = ACTIONS(6828), + [anon_sym_constinit] = ACTIONS(6828), + [anon_sym_consteval] = ACTIONS(6828), + [anon_sym_alignas] = ACTIONS(6828), + [anon_sym__Alignas] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6828), + [anon_sym_LT_EQ_GT] = ACTIONS(6828), + [anon_sym_or] = ACTIONS(6828), + [anon_sym_and] = ACTIONS(6828), + [anon_sym_bitor] = ACTIONS(6828), + [anon_sym_xor] = ACTIONS(6828), + [anon_sym_bitand] = ACTIONS(6828), + [anon_sym_not_eq] = ACTIONS(6828), + [anon_sym_DASH_DASH] = ACTIONS(6828), + [anon_sym_PLUS_PLUS] = ACTIONS(6828), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6828), + [anon_sym_DASH_GT] = ACTIONS(6828), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7821), + [anon_sym_override] = ACTIONS(7821), + [anon_sym_requires] = ACTIONS(6828), + [anon_sym_COLON_RBRACK] = ACTIONS(6828), + }, + [STATE(3535)] = { + [sym_identifier] = ACTIONS(9029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9031), + [anon_sym_COMMA] = ACTIONS(9031), + [anon_sym_RPAREN] = ACTIONS(9031), + [aux_sym_preproc_if_token2] = ACTIONS(9031), + [aux_sym_preproc_else_token1] = ACTIONS(9031), + [aux_sym_preproc_elif_token1] = ACTIONS(9029), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9031), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9031), + [anon_sym_LPAREN2] = ACTIONS(9031), + [anon_sym_DASH] = ACTIONS(9029), + [anon_sym_PLUS] = ACTIONS(9029), + [anon_sym_STAR] = ACTIONS(9029), + [anon_sym_SLASH] = ACTIONS(9029), + [anon_sym_PERCENT] = ACTIONS(9029), + [anon_sym_PIPE_PIPE] = ACTIONS(9031), + [anon_sym_AMP_AMP] = ACTIONS(9031), + [anon_sym_PIPE] = ACTIONS(9029), + [anon_sym_CARET] = ACTIONS(9029), + [anon_sym_AMP] = ACTIONS(9029), + [anon_sym_EQ_EQ] = ACTIONS(9031), + [anon_sym_BANG_EQ] = ACTIONS(9031), + [anon_sym_GT] = ACTIONS(9029), + [anon_sym_GT_EQ] = ACTIONS(9031), + [anon_sym_LT_EQ] = ACTIONS(9029), + [anon_sym_LT] = ACTIONS(9029), + [anon_sym_LT_LT] = ACTIONS(9029), + [anon_sym_GT_GT] = ACTIONS(9029), + [anon_sym_SEMI] = ACTIONS(9031), + [anon_sym___attribute__] = ACTIONS(9029), + [anon_sym___attribute] = ACTIONS(9029), + [anon_sym_COLON] = ACTIONS(9029), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9031), + [anon_sym_RBRACE] = ACTIONS(9031), + [anon_sym_LBRACK] = ACTIONS(9031), + [anon_sym_EQ] = ACTIONS(9029), + [anon_sym_QMARK] = ACTIONS(9031), + [anon_sym_STAR_EQ] = ACTIONS(9031), + [anon_sym_SLASH_EQ] = ACTIONS(9031), + [anon_sym_PERCENT_EQ] = ACTIONS(9031), + [anon_sym_PLUS_EQ] = ACTIONS(9031), + [anon_sym_DASH_EQ] = ACTIONS(9031), + [anon_sym_LT_LT_EQ] = ACTIONS(9031), + [anon_sym_GT_GT_EQ] = ACTIONS(9031), + [anon_sym_AMP_EQ] = ACTIONS(9031), + [anon_sym_CARET_EQ] = ACTIONS(9031), + [anon_sym_PIPE_EQ] = ACTIONS(9031), + [anon_sym_and_eq] = ACTIONS(9029), + [anon_sym_or_eq] = ACTIONS(9029), + [anon_sym_xor_eq] = ACTIONS(9029), + [anon_sym_LT_EQ_GT] = ACTIONS(9031), + [anon_sym_or] = ACTIONS(9029), + [anon_sym_and] = ACTIONS(9029), + [anon_sym_bitor] = ACTIONS(9029), + [anon_sym_xor] = ACTIONS(9029), + [anon_sym_bitand] = ACTIONS(9029), + [anon_sym_not_eq] = ACTIONS(9029), + [anon_sym_DASH_DASH] = ACTIONS(9031), + [anon_sym_PLUS_PLUS] = ACTIONS(9031), + [anon_sym_DOT] = ACTIONS(9029), + [anon_sym_DOT_STAR] = ACTIONS(9031), + [anon_sym_DASH_GT] = ACTIONS(9031), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9029), + [anon_sym_override] = ACTIONS(9029), + [anon_sym_requires] = ACTIONS(9029), + [anon_sym_COLON_RBRACK] = ACTIONS(9031), + }, + [STATE(3536)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8400), + [anon_sym_PLUS] = ACTIONS(8400), + [anon_sym_STAR] = ACTIONS(8400), + [anon_sym_SLASH] = ACTIONS(8400), + [anon_sym_PERCENT] = ACTIONS(8400), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8400), + [anon_sym_CARET] = ACTIONS(8400), + [anon_sym_AMP] = ACTIONS(8400), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8400), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8400), + [anon_sym_LT] = ACTIONS(8400), + [anon_sym_LT_LT] = ACTIONS(8400), + [anon_sym_GT_GT] = ACTIONS(8400), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym_COLON] = ACTIONS(8400), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8400), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8400), + [anon_sym_or_eq] = ACTIONS(8400), + [anon_sym_xor_eq] = ACTIONS(8400), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8400), + [anon_sym_and] = ACTIONS(8400), + [anon_sym_bitor] = ACTIONS(8400), + [anon_sym_xor] = ACTIONS(8400), + [anon_sym_bitand] = ACTIONS(8400), + [anon_sym_not_eq] = ACTIONS(8400), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8400), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [anon_sym_L_DQUOTE] = ACTIONS(8402), + [anon_sym_u_DQUOTE] = ACTIONS(8402), + [anon_sym_U_DQUOTE] = ACTIONS(8402), + [anon_sym_u8_DQUOTE] = ACTIONS(8402), + [anon_sym_DQUOTE] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8402), + [anon_sym_LR_DQUOTE] = ACTIONS(8402), + [anon_sym_uR_DQUOTE] = ACTIONS(8402), + [anon_sym_UR_DQUOTE] = ACTIONS(8402), + [anon_sym_u8R_DQUOTE] = ACTIONS(8402), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), + [sym_literal_suffix] = ACTIONS(8400), + }, + [STATE(3537)] = { + [sym_string_literal] = STATE(3557), + [sym_template_argument_list] = STATE(5009), + [sym_raw_string_literal] = STATE(3557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(3538)] = { + [sym_template_argument_list] = STATE(2840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6755), + [anon_sym_PLUS] = ACTIONS(6755), + [anon_sym_STAR] = ACTIONS(6755), + [anon_sym_SLASH] = ACTIONS(6755), + [anon_sym_PERCENT] = ACTIONS(6755), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6755), + [anon_sym_CARET] = ACTIONS(6755), + [anon_sym_AMP] = ACTIONS(6755), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6755), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6755), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(6755), + [anon_sym_GT_GT] = ACTIONS(6755), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6755), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_DOT] = ACTIONS(6755), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6755), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), + }, + [STATE(3539)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [aux_sym_preproc_if_token2] = ACTIONS(6951), + [aux_sym_preproc_else_token1] = ACTIONS(6951), + [aux_sym_preproc_elif_token1] = ACTIONS(6949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_DASH] = ACTIONS(6949), + [anon_sym_PLUS] = ACTIONS(6949), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_SLASH] = ACTIONS(6949), + [anon_sym_PERCENT] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_PIPE] = ACTIONS(6949), + [anon_sym_CARET] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_EQ_EQ] = ACTIONS(6951), + [anon_sym_BANG_EQ] = ACTIONS(6951), + [anon_sym_GT] = ACTIONS(6949), + [anon_sym_GT_EQ] = ACTIONS(6951), + [anon_sym_LT_EQ] = ACTIONS(6949), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(6951), + [anon_sym_GT_GT] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6951), + [anon_sym_RBRACK] = ACTIONS(6951), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_QMARK] = ACTIONS(6951), + [anon_sym_LT_EQ_GT] = ACTIONS(6951), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_bitor] = ACTIONS(6949), + [anon_sym_xor] = ACTIONS(6949), + [anon_sym_bitand] = ACTIONS(6949), + [anon_sym_not_eq] = ACTIONS(6949), + [anon_sym_DASH_DASH] = ACTIONS(6951), + [anon_sym_PLUS_PLUS] = ACTIONS(6951), + [anon_sym_DOT] = ACTIONS(6949), + [anon_sym_DOT_STAR] = ACTIONS(6951), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_requires] = ACTIONS(6949), + }, + [STATE(3540)] = { + [sym_attribute_declaration] = STATE(3648), + [sym_parameter_list] = STATE(3121), + [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [sym_identifier] = ACTIONS(9033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9035), + [anon_sym_COMMA] = ACTIONS(9035), + [anon_sym_RPAREN] = ACTIONS(9035), + [aux_sym_preproc_if_token2] = ACTIONS(9035), + [aux_sym_preproc_else_token1] = ACTIONS(9035), + [aux_sym_preproc_elif_token1] = ACTIONS(9033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9035), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9035), + [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_DASH] = ACTIONS(9033), + [anon_sym_PLUS] = ACTIONS(9033), + [anon_sym_STAR] = ACTIONS(9033), + [anon_sym_SLASH] = ACTIONS(9033), + [anon_sym_PERCENT] = ACTIONS(9033), + [anon_sym_PIPE_PIPE] = ACTIONS(9035), + [anon_sym_AMP_AMP] = ACTIONS(9035), + [anon_sym_PIPE] = ACTIONS(9033), + [anon_sym_CARET] = ACTIONS(9033), + [anon_sym_AMP] = ACTIONS(9033), + [anon_sym_EQ_EQ] = ACTIONS(9035), + [anon_sym_BANG_EQ] = ACTIONS(9035), + [anon_sym_GT] = ACTIONS(9033), + [anon_sym_GT_EQ] = ACTIONS(9035), + [anon_sym_LT_EQ] = ACTIONS(9033), + [anon_sym_LT] = ACTIONS(9033), + [anon_sym_LT_LT] = ACTIONS(9033), + [anon_sym_GT_GT] = ACTIONS(9033), + [anon_sym_SEMI] = ACTIONS(9035), + [anon_sym___attribute__] = ACTIONS(9033), + [anon_sym___attribute] = ACTIONS(9033), + [anon_sym_COLON] = ACTIONS(9033), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(9035), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(9033), + [anon_sym_QMARK] = ACTIONS(9035), + [anon_sym_STAR_EQ] = ACTIONS(9035), + [anon_sym_SLASH_EQ] = ACTIONS(9035), + [anon_sym_PERCENT_EQ] = ACTIONS(9035), + [anon_sym_PLUS_EQ] = ACTIONS(9035), + [anon_sym_DASH_EQ] = ACTIONS(9035), + [anon_sym_LT_LT_EQ] = ACTIONS(9035), + [anon_sym_GT_GT_EQ] = ACTIONS(9035), + [anon_sym_AMP_EQ] = ACTIONS(9035), + [anon_sym_CARET_EQ] = ACTIONS(9035), + [anon_sym_PIPE_EQ] = ACTIONS(9035), + [anon_sym_and_eq] = ACTIONS(9033), + [anon_sym_or_eq] = ACTIONS(9033), + [anon_sym_xor_eq] = ACTIONS(9033), + [anon_sym_LT_EQ_GT] = ACTIONS(9035), + [anon_sym_or] = ACTIONS(9033), + [anon_sym_and] = ACTIONS(9033), + [anon_sym_bitor] = ACTIONS(9033), + [anon_sym_xor] = ACTIONS(9033), + [anon_sym_bitand] = ACTIONS(9033), + [anon_sym_not_eq] = ACTIONS(9033), + [anon_sym_DASH_DASH] = ACTIONS(9035), + [anon_sym_PLUS_PLUS] = ACTIONS(9035), + [anon_sym_DOT] = ACTIONS(9033), + [anon_sym_DOT_STAR] = ACTIONS(9035), + [anon_sym_DASH_GT] = ACTIONS(9035), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9035), + }, + [STATE(3541)] = { + [sym_identifier] = ACTIONS(8559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(8561), + [anon_sym_RPAREN] = ACTIONS(8561), + [aux_sym_preproc_if_token2] = ACTIONS(8561), + [aux_sym_preproc_else_token1] = ACTIONS(8561), + [aux_sym_preproc_elif_token1] = ACTIONS(8559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), + [anon_sym_LPAREN2] = ACTIONS(8561), + [anon_sym_DASH] = ACTIONS(8559), + [anon_sym_PLUS] = ACTIONS(8559), + [anon_sym_STAR] = ACTIONS(8559), + [anon_sym_SLASH] = ACTIONS(8559), + [anon_sym_PERCENT] = ACTIONS(8559), + [anon_sym_PIPE_PIPE] = ACTIONS(8561), + [anon_sym_AMP_AMP] = ACTIONS(8561), + [anon_sym_PIPE] = ACTIONS(8559), + [anon_sym_CARET] = ACTIONS(8559), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym_EQ_EQ] = ACTIONS(8561), + [anon_sym_BANG_EQ] = ACTIONS(8561), + [anon_sym_GT] = ACTIONS(8559), + [anon_sym_GT_EQ] = ACTIONS(8561), + [anon_sym_LT_EQ] = ACTIONS(8559), + [anon_sym_LT] = ACTIONS(8559), + [anon_sym_LT_LT] = ACTIONS(8559), + [anon_sym_GT_GT] = ACTIONS(8559), + [anon_sym_SEMI] = ACTIONS(8561), + [anon_sym___attribute__] = ACTIONS(8559), + [anon_sym___attribute] = ACTIONS(8559), + [anon_sym_COLON] = ACTIONS(8559), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), + [anon_sym_RBRACE] = ACTIONS(8561), + [anon_sym_LBRACK] = ACTIONS(8561), + [anon_sym_EQ] = ACTIONS(8559), + [anon_sym_QMARK] = ACTIONS(8561), + [anon_sym_STAR_EQ] = ACTIONS(8561), + [anon_sym_SLASH_EQ] = ACTIONS(8561), + [anon_sym_PERCENT_EQ] = ACTIONS(8561), + [anon_sym_PLUS_EQ] = ACTIONS(8561), + [anon_sym_DASH_EQ] = ACTIONS(8561), + [anon_sym_LT_LT_EQ] = ACTIONS(8561), + [anon_sym_GT_GT_EQ] = ACTIONS(8561), + [anon_sym_AMP_EQ] = ACTIONS(8561), + [anon_sym_CARET_EQ] = ACTIONS(8561), + [anon_sym_PIPE_EQ] = ACTIONS(8561), + [anon_sym_and_eq] = ACTIONS(8559), + [anon_sym_or_eq] = ACTIONS(8559), + [anon_sym_xor_eq] = ACTIONS(8559), + [anon_sym_LT_EQ_GT] = ACTIONS(8561), + [anon_sym_or] = ACTIONS(8559), + [anon_sym_and] = ACTIONS(8559), + [anon_sym_bitor] = ACTIONS(8559), + [anon_sym_xor] = ACTIONS(8559), + [anon_sym_bitand] = ACTIONS(8559), + [anon_sym_not_eq] = ACTIONS(8559), + [anon_sym_DASH_DASH] = ACTIONS(8561), + [anon_sym_PLUS_PLUS] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8559), + [anon_sym_DOT_STAR] = ACTIONS(8561), + [anon_sym_DASH_GT] = ACTIONS(8561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8559), + [anon_sym_override] = ACTIONS(8559), + [anon_sym_requires] = ACTIONS(8559), + [anon_sym_COLON_RBRACK] = ACTIONS(8561), + }, + [STATE(3542)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8456), + [anon_sym_RPAREN] = ACTIONS(8456), + [anon_sym_LPAREN2] = ACTIONS(8456), + [anon_sym_DASH] = ACTIONS(8454), + [anon_sym_PLUS] = ACTIONS(8454), + [anon_sym_STAR] = ACTIONS(8454), + [anon_sym_SLASH] = ACTIONS(8454), + [anon_sym_PERCENT] = ACTIONS(8454), + [anon_sym_PIPE_PIPE] = ACTIONS(8456), + [anon_sym_AMP_AMP] = ACTIONS(8456), + [anon_sym_PIPE] = ACTIONS(8454), + [anon_sym_CARET] = ACTIONS(8454), + [anon_sym_AMP] = ACTIONS(8454), + [anon_sym_EQ_EQ] = ACTIONS(8456), + [anon_sym_BANG_EQ] = ACTIONS(8456), + [anon_sym_GT] = ACTIONS(8454), + [anon_sym_GT_EQ] = ACTIONS(8456), + [anon_sym_LT_EQ] = ACTIONS(8454), + [anon_sym_LT] = ACTIONS(8454), + [anon_sym_LT_LT] = ACTIONS(8454), + [anon_sym_GT_GT] = ACTIONS(8454), + [anon_sym_SEMI] = ACTIONS(8456), + [anon_sym_COLON] = ACTIONS(8454), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8456), + [anon_sym_RBRACE] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8456), + [anon_sym_EQ] = ACTIONS(8454), + [anon_sym_QMARK] = ACTIONS(8456), + [anon_sym_STAR_EQ] = ACTIONS(8456), + [anon_sym_SLASH_EQ] = ACTIONS(8456), + [anon_sym_PERCENT_EQ] = ACTIONS(8456), + [anon_sym_PLUS_EQ] = ACTIONS(8456), + [anon_sym_DASH_EQ] = ACTIONS(8456), + [anon_sym_LT_LT_EQ] = ACTIONS(8456), + [anon_sym_GT_GT_EQ] = ACTIONS(8456), + [anon_sym_AMP_EQ] = ACTIONS(8456), + [anon_sym_CARET_EQ] = ACTIONS(8456), + [anon_sym_PIPE_EQ] = ACTIONS(8456), + [anon_sym_and_eq] = ACTIONS(8454), + [anon_sym_or_eq] = ACTIONS(8454), + [anon_sym_xor_eq] = ACTIONS(8454), + [anon_sym_LT_EQ_GT] = ACTIONS(8456), + [anon_sym_or] = ACTIONS(8454), + [anon_sym_and] = ACTIONS(8454), + [anon_sym_bitor] = ACTIONS(8454), + [anon_sym_xor] = ACTIONS(8454), + [anon_sym_bitand] = ACTIONS(8454), + [anon_sym_not_eq] = ACTIONS(8454), + [anon_sym_DASH_DASH] = ACTIONS(8456), + [anon_sym_PLUS_PLUS] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8454), + [anon_sym_DOT_STAR] = ACTIONS(8456), + [anon_sym_DASH_GT] = ACTIONS(8456), + [anon_sym_L_DQUOTE] = ACTIONS(8456), + [anon_sym_u_DQUOTE] = ACTIONS(8456), + [anon_sym_U_DQUOTE] = ACTIONS(8456), + [anon_sym_u8_DQUOTE] = ACTIONS(8456), + [anon_sym_DQUOTE] = ACTIONS(8456), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8456), + [anon_sym_LR_DQUOTE] = ACTIONS(8456), + [anon_sym_uR_DQUOTE] = ACTIONS(8456), + [anon_sym_UR_DQUOTE] = ACTIONS(8456), + [anon_sym_u8R_DQUOTE] = ACTIONS(8456), + [anon_sym_COLON_RBRACK] = ACTIONS(8456), + [sym_literal_suffix] = ACTIONS(8454), + }, + [STATE(3543)] = { + [sym_identifier] = ACTIONS(9037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9039), + [anon_sym_COMMA] = ACTIONS(9039), + [anon_sym_RPAREN] = ACTIONS(9039), + [aux_sym_preproc_if_token2] = ACTIONS(9039), + [aux_sym_preproc_else_token1] = ACTIONS(9039), + [aux_sym_preproc_elif_token1] = ACTIONS(9037), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9039), + [anon_sym_LPAREN2] = ACTIONS(9039), + [anon_sym_DASH] = ACTIONS(9037), + [anon_sym_PLUS] = ACTIONS(9037), + [anon_sym_STAR] = ACTIONS(9037), + [anon_sym_SLASH] = ACTIONS(9037), + [anon_sym_PERCENT] = ACTIONS(9037), + [anon_sym_PIPE_PIPE] = ACTIONS(9039), + [anon_sym_AMP_AMP] = ACTIONS(9039), + [anon_sym_PIPE] = ACTIONS(9037), + [anon_sym_CARET] = ACTIONS(9037), + [anon_sym_AMP] = ACTIONS(9037), + [anon_sym_EQ_EQ] = ACTIONS(9039), + [anon_sym_BANG_EQ] = ACTIONS(9039), + [anon_sym_GT] = ACTIONS(9037), + [anon_sym_GT_EQ] = ACTIONS(9039), + [anon_sym_LT_EQ] = ACTIONS(9037), + [anon_sym_LT] = ACTIONS(9037), + [anon_sym_LT_LT] = ACTIONS(9037), + [anon_sym_GT_GT] = ACTIONS(9037), + [anon_sym_SEMI] = ACTIONS(9039), + [anon_sym___attribute__] = ACTIONS(9037), + [anon_sym___attribute] = ACTIONS(9037), + [anon_sym_COLON] = ACTIONS(9037), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9039), + [anon_sym_RBRACE] = ACTIONS(9039), + [anon_sym_LBRACK] = ACTIONS(9039), + [anon_sym_EQ] = ACTIONS(9037), + [anon_sym_QMARK] = ACTIONS(9039), + [anon_sym_STAR_EQ] = ACTIONS(9039), + [anon_sym_SLASH_EQ] = ACTIONS(9039), + [anon_sym_PERCENT_EQ] = ACTIONS(9039), + [anon_sym_PLUS_EQ] = ACTIONS(9039), + [anon_sym_DASH_EQ] = ACTIONS(9039), + [anon_sym_LT_LT_EQ] = ACTIONS(9039), + [anon_sym_GT_GT_EQ] = ACTIONS(9039), + [anon_sym_AMP_EQ] = ACTIONS(9039), + [anon_sym_CARET_EQ] = ACTIONS(9039), + [anon_sym_PIPE_EQ] = ACTIONS(9039), + [anon_sym_and_eq] = ACTIONS(9037), + [anon_sym_or_eq] = ACTIONS(9037), + [anon_sym_xor_eq] = ACTIONS(9037), + [anon_sym_LT_EQ_GT] = ACTIONS(9039), + [anon_sym_or] = ACTIONS(9037), + [anon_sym_and] = ACTIONS(9037), + [anon_sym_bitor] = ACTIONS(9037), + [anon_sym_xor] = ACTIONS(9037), + [anon_sym_bitand] = ACTIONS(9037), + [anon_sym_not_eq] = ACTIONS(9037), + [anon_sym_DASH_DASH] = ACTIONS(9039), + [anon_sym_PLUS_PLUS] = ACTIONS(9039), + [anon_sym_DOT] = ACTIONS(9037), + [anon_sym_DOT_STAR] = ACTIONS(9039), + [anon_sym_DASH_GT] = ACTIONS(9039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9037), + [anon_sym_override] = ACTIONS(9037), + [anon_sym_requires] = ACTIONS(9037), + [anon_sym_COLON_RBRACK] = ACTIONS(9039), + }, + [STATE(3544)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), + [anon_sym_COMMA] = ACTIONS(8448), + [anon_sym_RPAREN] = ACTIONS(8448), + [anon_sym_LPAREN2] = ACTIONS(8448), + [anon_sym_DASH] = ACTIONS(8446), + [anon_sym_PLUS] = ACTIONS(8446), + [anon_sym_STAR] = ACTIONS(8446), + [anon_sym_SLASH] = ACTIONS(8446), + [anon_sym_PERCENT] = ACTIONS(8446), + [anon_sym_PIPE_PIPE] = ACTIONS(8448), + [anon_sym_AMP_AMP] = ACTIONS(8448), + [anon_sym_PIPE] = ACTIONS(8446), + [anon_sym_CARET] = ACTIONS(8446), + [anon_sym_AMP] = ACTIONS(8446), + [anon_sym_EQ_EQ] = ACTIONS(8448), + [anon_sym_BANG_EQ] = ACTIONS(8448), + [anon_sym_GT] = ACTIONS(8446), + [anon_sym_GT_EQ] = ACTIONS(8448), + [anon_sym_LT_EQ] = ACTIONS(8446), + [anon_sym_LT] = ACTIONS(8446), + [anon_sym_LT_LT] = ACTIONS(8446), + [anon_sym_GT_GT] = ACTIONS(8446), + [anon_sym_SEMI] = ACTIONS(8448), + [anon_sym_COLON] = ACTIONS(8446), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8448), + [anon_sym_RBRACE] = ACTIONS(8448), + [anon_sym_LBRACK] = ACTIONS(8448), + [anon_sym_EQ] = ACTIONS(8446), + [anon_sym_QMARK] = ACTIONS(8448), + [anon_sym_STAR_EQ] = ACTIONS(8448), + [anon_sym_SLASH_EQ] = ACTIONS(8448), + [anon_sym_PERCENT_EQ] = ACTIONS(8448), + [anon_sym_PLUS_EQ] = ACTIONS(8448), + [anon_sym_DASH_EQ] = ACTIONS(8448), + [anon_sym_LT_LT_EQ] = ACTIONS(8448), + [anon_sym_GT_GT_EQ] = ACTIONS(8448), + [anon_sym_AMP_EQ] = ACTIONS(8448), + [anon_sym_CARET_EQ] = ACTIONS(8448), + [anon_sym_PIPE_EQ] = ACTIONS(8448), + [anon_sym_and_eq] = ACTIONS(8446), + [anon_sym_or_eq] = ACTIONS(8446), + [anon_sym_xor_eq] = ACTIONS(8446), + [anon_sym_LT_EQ_GT] = ACTIONS(8448), + [anon_sym_or] = ACTIONS(8446), + [anon_sym_and] = ACTIONS(8446), + [anon_sym_bitor] = ACTIONS(8446), + [anon_sym_xor] = ACTIONS(8446), + [anon_sym_bitand] = ACTIONS(8446), + [anon_sym_not_eq] = ACTIONS(8446), + [anon_sym_DASH_DASH] = ACTIONS(8448), + [anon_sym_PLUS_PLUS] = ACTIONS(8448), + [anon_sym_DOT] = ACTIONS(8446), + [anon_sym_DOT_STAR] = ACTIONS(8448), + [anon_sym_DASH_GT] = ACTIONS(8448), + [anon_sym_L_DQUOTE] = ACTIONS(8448), + [anon_sym_u_DQUOTE] = ACTIONS(8448), + [anon_sym_U_DQUOTE] = ACTIONS(8448), + [anon_sym_u8_DQUOTE] = ACTIONS(8448), + [anon_sym_DQUOTE] = ACTIONS(8448), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8448), + [anon_sym_LR_DQUOTE] = ACTIONS(8448), + [anon_sym_uR_DQUOTE] = ACTIONS(8448), + [anon_sym_UR_DQUOTE] = ACTIONS(8448), + [anon_sym_u8R_DQUOTE] = ACTIONS(8448), + [anon_sym_COLON_RBRACK] = ACTIONS(8448), + [sym_literal_suffix] = ACTIONS(8446), + }, + [STATE(3545)] = { + [sym_string_literal] = STATE(5466), + [sym_template_argument_list] = STATE(6719), + [sym_raw_string_literal] = STATE(5466), + [aux_sym_structured_binding_declarator_repeat1] = STATE(10037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(9041), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8603), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(9043), + [anon_sym_EQ] = ACTIONS(6615), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6617), + [anon_sym_SLASH_EQ] = ACTIONS(6617), + [anon_sym_PERCENT_EQ] = ACTIONS(6617), + [anon_sym_PLUS_EQ] = ACTIONS(6617), + [anon_sym_DASH_EQ] = ACTIONS(6617), + [anon_sym_LT_LT_EQ] = ACTIONS(6617), + [anon_sym_GT_GT_EQ] = ACTIONS(6617), + [anon_sym_AMP_EQ] = ACTIONS(6617), + [anon_sym_CARET_EQ] = ACTIONS(6617), + [anon_sym_PIPE_EQ] = ACTIONS(6617), + [anon_sym_and_eq] = ACTIONS(6617), + [anon_sym_or_eq] = ACTIONS(6617), + [anon_sym_xor_eq] = ACTIONS(6617), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6619), + [anon_sym_u_DQUOTE] = ACTIONS(6619), + [anon_sym_U_DQUOTE] = ACTIONS(6619), + [anon_sym_u8_DQUOTE] = ACTIONS(6619), + [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6625), + [anon_sym_LR_DQUOTE] = ACTIONS(6625), + [anon_sym_uR_DQUOTE] = ACTIONS(6625), + [anon_sym_UR_DQUOTE] = ACTIONS(6625), + [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + }, + [STATE(3546)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), + [anon_sym_COMMA] = ACTIONS(8631), + [anon_sym_RPAREN] = ACTIONS(8631), + [aux_sym_preproc_if_token2] = ACTIONS(8631), + [aux_sym_preproc_else_token1] = ACTIONS(8631), + [aux_sym_preproc_elif_token1] = ACTIONS(8629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_DASH] = ACTIONS(8629), + [anon_sym_PLUS] = ACTIONS(8629), + [anon_sym_STAR] = ACTIONS(8629), + [anon_sym_SLASH] = ACTIONS(8629), + [anon_sym_PERCENT] = ACTIONS(8629), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_PIPE] = ACTIONS(8629), + [anon_sym_CARET] = ACTIONS(8629), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym_EQ_EQ] = ACTIONS(8631), + [anon_sym_BANG_EQ] = ACTIONS(8631), + [anon_sym_GT] = ACTIONS(8629), + [anon_sym_GT_EQ] = ACTIONS(8631), + [anon_sym_LT_EQ] = ACTIONS(8629), + [anon_sym_LT] = ACTIONS(8629), + [anon_sym_LT_LT] = ACTIONS(8629), + [anon_sym_GT_GT] = ACTIONS(8629), + [anon_sym_SEMI] = ACTIONS(8631), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_COLON] = ACTIONS(8629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), + [anon_sym_RBRACE] = ACTIONS(8631), + [anon_sym_LBRACK] = ACTIONS(8631), + [anon_sym_EQ] = ACTIONS(8629), + [anon_sym_QMARK] = ACTIONS(8631), + [anon_sym_STAR_EQ] = ACTIONS(8631), + [anon_sym_SLASH_EQ] = ACTIONS(8631), + [anon_sym_PERCENT_EQ] = ACTIONS(8631), + [anon_sym_PLUS_EQ] = ACTIONS(8631), + [anon_sym_DASH_EQ] = ACTIONS(8631), + [anon_sym_LT_LT_EQ] = ACTIONS(8631), + [anon_sym_GT_GT_EQ] = ACTIONS(8631), + [anon_sym_AMP_EQ] = ACTIONS(8631), + [anon_sym_CARET_EQ] = ACTIONS(8631), + [anon_sym_PIPE_EQ] = ACTIONS(8631), + [anon_sym_and_eq] = ACTIONS(8629), + [anon_sym_or_eq] = ACTIONS(8629), + [anon_sym_xor_eq] = ACTIONS(8629), + [anon_sym_LT_EQ_GT] = ACTIONS(8631), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_bitor] = ACTIONS(8629), + [anon_sym_xor] = ACTIONS(8629), + [anon_sym_bitand] = ACTIONS(8629), + [anon_sym_not_eq] = ACTIONS(8629), + [anon_sym_DASH_DASH] = ACTIONS(8631), + [anon_sym_PLUS_PLUS] = ACTIONS(8631), + [anon_sym_DOT] = ACTIONS(8629), + [anon_sym_DOT_STAR] = ACTIONS(8631), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8629), + [anon_sym_override] = ACTIONS(8629), + [anon_sym_requires] = ACTIONS(8629), + [anon_sym_COLON_RBRACK] = ACTIONS(8631), + }, + [STATE(3547)] = { + [sym_identifier] = ACTIONS(8595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8597), + [anon_sym_COMMA] = ACTIONS(8597), + [anon_sym_RPAREN] = ACTIONS(8597), + [aux_sym_preproc_if_token2] = ACTIONS(8597), + [aux_sym_preproc_else_token1] = ACTIONS(8597), + [aux_sym_preproc_elif_token1] = ACTIONS(8595), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8597), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8597), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8595), + [anon_sym_STAR] = ACTIONS(8595), + [anon_sym_SLASH] = ACTIONS(8595), + [anon_sym_PERCENT] = ACTIONS(8595), + [anon_sym_PIPE_PIPE] = ACTIONS(8597), + [anon_sym_AMP_AMP] = ACTIONS(8597), + [anon_sym_PIPE] = ACTIONS(8595), + [anon_sym_CARET] = ACTIONS(8595), + [anon_sym_AMP] = ACTIONS(8595), + [anon_sym_EQ_EQ] = ACTIONS(8597), + [anon_sym_BANG_EQ] = ACTIONS(8597), + [anon_sym_GT] = ACTIONS(8595), + [anon_sym_GT_EQ] = ACTIONS(8597), + [anon_sym_LT_EQ] = ACTIONS(8595), + [anon_sym_LT] = ACTIONS(8595), + [anon_sym_LT_LT] = ACTIONS(8595), + [anon_sym_GT_GT] = ACTIONS(8595), + [anon_sym_SEMI] = ACTIONS(8597), + [anon_sym___attribute__] = ACTIONS(8595), + [anon_sym___attribute] = ACTIONS(8595), + [anon_sym_COLON] = ACTIONS(8595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8597), + [anon_sym_RBRACE] = ACTIONS(8597), + [anon_sym_LBRACK] = ACTIONS(8597), + [anon_sym_EQ] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [anon_sym_STAR_EQ] = ACTIONS(8597), + [anon_sym_SLASH_EQ] = ACTIONS(8597), + [anon_sym_PERCENT_EQ] = ACTIONS(8597), + [anon_sym_PLUS_EQ] = ACTIONS(8597), + [anon_sym_DASH_EQ] = ACTIONS(8597), + [anon_sym_LT_LT_EQ] = ACTIONS(8597), + [anon_sym_GT_GT_EQ] = ACTIONS(8597), + [anon_sym_AMP_EQ] = ACTIONS(8597), + [anon_sym_CARET_EQ] = ACTIONS(8597), + [anon_sym_PIPE_EQ] = ACTIONS(8597), + [anon_sym_and_eq] = ACTIONS(8595), + [anon_sym_or_eq] = ACTIONS(8595), + [anon_sym_xor_eq] = ACTIONS(8595), + [anon_sym_LT_EQ_GT] = ACTIONS(8597), + [anon_sym_or] = ACTIONS(8595), + [anon_sym_and] = ACTIONS(8595), + [anon_sym_bitor] = ACTIONS(8595), + [anon_sym_xor] = ACTIONS(8595), + [anon_sym_bitand] = ACTIONS(8595), + [anon_sym_not_eq] = ACTIONS(8595), + [anon_sym_DASH_DASH] = ACTIONS(8597), + [anon_sym_PLUS_PLUS] = ACTIONS(8597), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_DOT_STAR] = ACTIONS(8597), + [anon_sym_DASH_GT] = ACTIONS(8597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8595), + [anon_sym_override] = ACTIONS(8595), + [anon_sym_requires] = ACTIONS(8595), + [anon_sym_COLON_RBRACK] = ACTIONS(8597), + }, + [STATE(3548)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(4022), + [sym__function_attributes_end] = STATE(5842), + [sym__function_postfix] = STATE(5305), + [sym_trailing_return_type] = STATE(5666), + [sym_noexcept] = STATE(4022), + [sym_throw_specifier] = STATE(4022), + [sym_requires_clause] = STATE(5305), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [anon_sym_RPAREN] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym_SEMI] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8971), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6913), + [anon_sym_override] = ACTIONS(6913), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_COLON_RBRACK] = ACTIONS(7627), + }, + [STATE(3549)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5332), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3550)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), + [anon_sym_COMMA] = ACTIONS(8631), + [anon_sym_RPAREN] = ACTIONS(8631), + [aux_sym_preproc_if_token2] = ACTIONS(8631), + [aux_sym_preproc_else_token1] = ACTIONS(8631), + [aux_sym_preproc_elif_token1] = ACTIONS(8629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_DASH] = ACTIONS(8629), + [anon_sym_PLUS] = ACTIONS(8629), + [anon_sym_STAR] = ACTIONS(8629), + [anon_sym_SLASH] = ACTIONS(8629), + [anon_sym_PERCENT] = ACTIONS(8629), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_PIPE] = ACTIONS(8629), + [anon_sym_CARET] = ACTIONS(8629), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym_EQ_EQ] = ACTIONS(8631), + [anon_sym_BANG_EQ] = ACTIONS(8631), + [anon_sym_GT] = ACTIONS(8629), + [anon_sym_GT_EQ] = ACTIONS(8631), + [anon_sym_LT_EQ] = ACTIONS(8629), + [anon_sym_LT] = ACTIONS(8629), + [anon_sym_LT_LT] = ACTIONS(8629), + [anon_sym_GT_GT] = ACTIONS(8629), + [anon_sym_SEMI] = ACTIONS(8631), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_COLON] = ACTIONS(8629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), + [anon_sym_RBRACE] = ACTIONS(8631), + [anon_sym_LBRACK] = ACTIONS(8631), + [anon_sym_EQ] = ACTIONS(8629), + [anon_sym_QMARK] = ACTIONS(8631), + [anon_sym_STAR_EQ] = ACTIONS(8631), + [anon_sym_SLASH_EQ] = ACTIONS(8631), + [anon_sym_PERCENT_EQ] = ACTIONS(8631), + [anon_sym_PLUS_EQ] = ACTIONS(8631), + [anon_sym_DASH_EQ] = ACTIONS(8631), + [anon_sym_LT_LT_EQ] = ACTIONS(8631), + [anon_sym_GT_GT_EQ] = ACTIONS(8631), + [anon_sym_AMP_EQ] = ACTIONS(8631), + [anon_sym_CARET_EQ] = ACTIONS(8631), + [anon_sym_PIPE_EQ] = ACTIONS(8631), + [anon_sym_and_eq] = ACTIONS(8629), + [anon_sym_or_eq] = ACTIONS(8629), + [anon_sym_xor_eq] = ACTIONS(8629), + [anon_sym_LT_EQ_GT] = ACTIONS(8631), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_bitor] = ACTIONS(8629), + [anon_sym_xor] = ACTIONS(8629), + [anon_sym_bitand] = ACTIONS(8629), + [anon_sym_not_eq] = ACTIONS(8629), + [anon_sym_DASH_DASH] = ACTIONS(8631), + [anon_sym_PLUS_PLUS] = ACTIONS(8631), + [anon_sym_DOT] = ACTIONS(8629), + [anon_sym_DOT_STAR] = ACTIONS(8631), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8629), + [anon_sym_override] = ACTIONS(8629), + [anon_sym_requires] = ACTIONS(8629), + [anon_sym_COLON_RBRACK] = ACTIONS(8631), + }, + [STATE(3551)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(3980), + [sym__function_attributes_end] = STATE(5867), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5718), + [sym_noexcept] = STATE(3980), + [sym_throw_specifier] = STATE(3980), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6913), + [anon_sym_override] = ACTIONS(6913), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(3552)] = { + [sym_string_literal] = STATE(3552), + [sym_raw_string_literal] = STATE(3552), + [aux_sym_concatenated_string_repeat1] = STATE(3552), + [sym_identifier] = ACTIONS(9046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), + [anon_sym_COMMA] = ACTIONS(8045), + [anon_sym_RPAREN] = ACTIONS(8045), + [anon_sym_LPAREN2] = ACTIONS(8045), + [anon_sym_DASH] = ACTIONS(8047), + [anon_sym_PLUS] = ACTIONS(8047), + [anon_sym_STAR] = ACTIONS(8047), + [anon_sym_SLASH] = ACTIONS(8047), + [anon_sym_PERCENT] = ACTIONS(8047), + [anon_sym_PIPE_PIPE] = ACTIONS(8045), + [anon_sym_AMP_AMP] = ACTIONS(8045), + [anon_sym_PIPE] = ACTIONS(8047), + [anon_sym_CARET] = ACTIONS(8047), + [anon_sym_AMP] = ACTIONS(8047), + [anon_sym_EQ_EQ] = ACTIONS(8045), + [anon_sym_BANG_EQ] = ACTIONS(8045), + [anon_sym_GT] = ACTIONS(8047), + [anon_sym_GT_EQ] = ACTIONS(8045), + [anon_sym_LT_EQ] = ACTIONS(8047), + [anon_sym_LT] = ACTIONS(8047), + [anon_sym_LT_LT] = ACTIONS(8047), + [anon_sym_GT_GT] = ACTIONS(8047), + [anon_sym_LBRACK] = ACTIONS(8045), + [anon_sym_EQ] = ACTIONS(8047), + [anon_sym_QMARK] = ACTIONS(8045), + [anon_sym_STAR_EQ] = ACTIONS(8045), + [anon_sym_SLASH_EQ] = ACTIONS(8045), + [anon_sym_PERCENT_EQ] = ACTIONS(8045), + [anon_sym_PLUS_EQ] = ACTIONS(8045), + [anon_sym_DASH_EQ] = ACTIONS(8045), + [anon_sym_LT_LT_EQ] = ACTIONS(8045), + [anon_sym_GT_GT_EQ] = ACTIONS(8045), + [anon_sym_AMP_EQ] = ACTIONS(8045), + [anon_sym_CARET_EQ] = ACTIONS(8045), + [anon_sym_PIPE_EQ] = ACTIONS(8045), + [anon_sym_and_eq] = ACTIONS(8047), + [anon_sym_or_eq] = ACTIONS(8047), + [anon_sym_xor_eq] = ACTIONS(8047), + [anon_sym_LT_EQ_GT] = ACTIONS(8045), + [anon_sym_or] = ACTIONS(8047), + [anon_sym_and] = ACTIONS(8047), + [anon_sym_bitor] = ACTIONS(8047), + [anon_sym_xor] = ACTIONS(8047), + [anon_sym_bitand] = ACTIONS(8047), + [anon_sym_not_eq] = ACTIONS(8047), + [anon_sym_DASH_DASH] = ACTIONS(8045), + [anon_sym_PLUS_PLUS] = ACTIONS(8045), + [anon_sym_DOT] = ACTIONS(8047), + [anon_sym_DOT_STAR] = ACTIONS(8045), + [anon_sym_DASH_GT] = ACTIONS(8047), + [anon_sym_L_DQUOTE] = ACTIONS(9049), + [anon_sym_u_DQUOTE] = ACTIONS(9049), + [anon_sym_U_DQUOTE] = ACTIONS(9049), + [anon_sym_u8_DQUOTE] = ACTIONS(9049), + [anon_sym_DQUOTE] = ACTIONS(9049), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9052), + [anon_sym_LR_DQUOTE] = ACTIONS(9052), + [anon_sym_uR_DQUOTE] = ACTIONS(9052), + [anon_sym_UR_DQUOTE] = ACTIONS(9052), + [anon_sym_u8R_DQUOTE] = ACTIONS(9052), + [anon_sym_DASH_GT_STAR] = ACTIONS(8045), + [sym_literal_suffix] = ACTIONS(8047), + }, + [STATE(3553)] = { + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(9055), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_const] = ACTIONS(9055), + [anon_sym_constexpr] = ACTIONS(9055), + [anon_sym_volatile] = ACTIONS(9055), + [anon_sym_restrict] = ACTIONS(9055), + [anon_sym___restrict__] = ACTIONS(9055), + [anon_sym__Atomic] = ACTIONS(9055), + [anon_sym__Noreturn] = ACTIONS(9055), + [anon_sym_noreturn] = ACTIONS(9055), + [anon_sym__Nonnull] = ACTIONS(9055), + [anon_sym_mutable] = ACTIONS(9055), + [anon_sym_constinit] = ACTIONS(9055), + [anon_sym_consteval] = ACTIONS(9055), + [anon_sym_alignas] = ACTIONS(9058), + [anon_sym__Alignas] = ACTIONS(9058), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_GT2] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6525), + }, + [STATE(3554)] = { + [sym_template_argument_list] = STATE(2824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_COMMA] = ACTIONS(6208), + [anon_sym_RPAREN] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6201), + [anon_sym_PLUS] = ACTIONS(6201), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_SLASH] = ACTIONS(6201), + [anon_sym_PERCENT] = ACTIONS(6208), + [anon_sym_PIPE_PIPE] = ACTIONS(6208), + [anon_sym_AMP_AMP] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(6201), + [anon_sym_CARET] = ACTIONS(6208), + [anon_sym_AMP] = ACTIONS(6201), + [anon_sym_EQ_EQ] = ACTIONS(6208), + [anon_sym_BANG_EQ] = ACTIONS(6208), + [anon_sym_GT] = ACTIONS(6201), + [anon_sym_GT_EQ] = ACTIONS(6208), + [anon_sym_LT_EQ] = ACTIONS(6201), + [anon_sym_LT] = ACTIONS(9061), + [anon_sym_LT_LT] = ACTIONS(6208), + [anon_sym_GT_GT] = ACTIONS(6208), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym___extension__] = ACTIONS(6208), + [anon_sym___attribute__] = ACTIONS(6208), + [anon_sym___attribute] = ACTIONS(6201), + [anon_sym_COLON] = ACTIONS(6201), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6208), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_const] = ACTIONS(6201), + [anon_sym_constexpr] = ACTIONS(6208), + [anon_sym_volatile] = ACTIONS(6208), + [anon_sym_restrict] = ACTIONS(6208), + [anon_sym___restrict__] = ACTIONS(6208), + [anon_sym__Atomic] = ACTIONS(6208), + [anon_sym__Noreturn] = ACTIONS(6208), + [anon_sym_noreturn] = ACTIONS(6208), + [anon_sym__Nonnull] = ACTIONS(6208), + [anon_sym_mutable] = ACTIONS(6208), + [anon_sym_constinit] = ACTIONS(6208), + [anon_sym_consteval] = ACTIONS(6208), + [anon_sym_alignas] = ACTIONS(6208), + [anon_sym__Alignas] = ACTIONS(6208), + [anon_sym_QMARK] = ACTIONS(6208), + [anon_sym_LT_EQ_GT] = ACTIONS(6208), + [anon_sym_or] = ACTIONS(6208), + [anon_sym_and] = ACTIONS(6208), + [anon_sym_bitor] = ACTIONS(6208), + [anon_sym_xor] = ACTIONS(6208), + [anon_sym_bitand] = ACTIONS(6208), + [anon_sym_not_eq] = ACTIONS(6208), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_DOT] = ACTIONS(6201), + [anon_sym_DOT_STAR] = ACTIONS(6208), + [anon_sym_DASH_GT] = ACTIONS(6208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(6208), + [anon_sym_override] = ACTIONS(6208), + [anon_sym_requires] = ACTIONS(6208), + [anon_sym_COLON_RBRACK] = ACTIONS(6208), + }, + [STATE(3555)] = { + [sym_identifier] = ACTIONS(6246), + [anon_sym_LPAREN2] = ACTIONS(6248), + [anon_sym_TILDE] = ACTIONS(6248), + [anon_sym_STAR] = ACTIONS(6248), + [anon_sym_PIPE_PIPE] = ACTIONS(6248), + [anon_sym_AMP_AMP] = ACTIONS(6248), + [anon_sym_AMP] = ACTIONS(6246), + [anon_sym___extension__] = ACTIONS(6246), + [anon_sym_virtual] = ACTIONS(6246), + [anon_sym_extern] = ACTIONS(6246), + [anon_sym___attribute__] = ACTIONS(6246), + [anon_sym___attribute] = ACTIONS(6246), + [anon_sym_using] = ACTIONS(6246), + [anon_sym_COLON_COLON] = ACTIONS(6248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), + [anon_sym___declspec] = ACTIONS(6246), + [anon_sym___based] = ACTIONS(6246), + [anon_sym___cdecl] = ACTIONS(6246), + [anon_sym___clrcall] = ACTIONS(6246), + [anon_sym___stdcall] = ACTIONS(6246), + [anon_sym___fastcall] = ACTIONS(6246), + [anon_sym___thiscall] = ACTIONS(6246), + [anon_sym___vectorcall] = ACTIONS(6246), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(6246), + [anon_sym_static] = ACTIONS(6246), + [anon_sym_register] = ACTIONS(6246), + [anon_sym_inline] = ACTIONS(6246), + [anon_sym___inline] = ACTIONS(6246), + [anon_sym___inline__] = ACTIONS(6246), + [anon_sym___forceinline] = ACTIONS(6246), + [anon_sym_thread_local] = ACTIONS(6246), + [anon_sym___thread] = ACTIONS(6246), + [anon_sym_const] = ACTIONS(6246), + [anon_sym_constexpr] = ACTIONS(6246), + [anon_sym_volatile] = ACTIONS(6246), + [anon_sym_restrict] = ACTIONS(6246), + [anon_sym___restrict__] = ACTIONS(6246), + [anon_sym__Atomic] = ACTIONS(6246), + [anon_sym__Noreturn] = ACTIONS(6246), + [anon_sym_noreturn] = ACTIONS(6246), + [anon_sym__Nonnull] = ACTIONS(6246), + [anon_sym_mutable] = ACTIONS(6246), + [anon_sym_constinit] = ACTIONS(6246), + [anon_sym_consteval] = ACTIONS(6246), + [anon_sym_alignas] = ACTIONS(6246), + [anon_sym__Alignas] = ACTIONS(6246), + [sym_primitive_type] = ACTIONS(6246), + [anon_sym_enum] = ACTIONS(6246), + [anon_sym_class] = ACTIONS(6246), + [anon_sym_struct] = ACTIONS(6246), + [anon_sym_union] = ACTIONS(6246), + [anon_sym_or] = ACTIONS(6246), + [anon_sym_and] = ACTIONS(6246), + [anon_sym_typename] = ACTIONS(6246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6246), + [anon_sym_decltype] = ACTIONS(6246), + [anon_sym_explicit] = ACTIONS(6246), + [anon_sym_template] = ACTIONS(6246), + [anon_sym_operator] = ACTIONS(6246), + [anon_sym_friend] = ACTIONS(6246), + [anon_sym_concept] = ACTIONS(6246), + [anon_sym_LBRACK_COLON] = ACTIONS(6248), + }, + [STATE(3556)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_using] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym___cdecl] = ACTIONS(6746), + [anon_sym___clrcall] = ACTIONS(6746), + [anon_sym___stdcall] = ACTIONS(6746), + [anon_sym___fastcall] = ACTIONS(6746), + [anon_sym___thiscall] = ACTIONS(6746), + [anon_sym___vectorcall] = ACTIONS(6746), + [anon_sym_signed] = ACTIONS(6746), + [anon_sym_unsigned] = ACTIONS(6746), + [anon_sym_long] = ACTIONS(6746), + [anon_sym_short] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [sym_primitive_type] = ACTIONS(6746), + [anon_sym_enum] = ACTIONS(6746), + [anon_sym_class] = ACTIONS(6746), + [anon_sym_struct] = ACTIONS(6746), + [anon_sym_union] = ACTIONS(6746), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_typename] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6746), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_explicit] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_friend] = ACTIONS(6746), + [anon_sym_concept] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(3557)] = { + [sym_string_literal] = STATE(3531), + [sym_raw_string_literal] = STATE(3531), + [aux_sym_concatenated_string_repeat1] = STATE(3531), + [sym_identifier] = ACTIONS(9064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_RPAREN] = ACTIONS(8125), + [anon_sym_LPAREN2] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(8127), + [anon_sym_STAR] = ACTIONS(8127), + [anon_sym_SLASH] = ACTIONS(8127), + [anon_sym_PERCENT] = ACTIONS(8127), + [anon_sym_PIPE_PIPE] = ACTIONS(8125), + [anon_sym_AMP_AMP] = ACTIONS(8125), + [anon_sym_PIPE] = ACTIONS(8127), + [anon_sym_CARET] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(8127), + [anon_sym_EQ_EQ] = ACTIONS(8125), + [anon_sym_BANG_EQ] = ACTIONS(8125), + [anon_sym_GT] = ACTIONS(8127), + [anon_sym_GT_EQ] = ACTIONS(8125), + [anon_sym_LT_EQ] = ACTIONS(8127), + [anon_sym_LT] = ACTIONS(8127), + [anon_sym_LT_LT] = ACTIONS(8127), + [anon_sym_GT_GT] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym_EQ] = ACTIONS(8127), + [anon_sym_QMARK] = ACTIONS(8125), + [anon_sym_STAR_EQ] = ACTIONS(8125), + [anon_sym_SLASH_EQ] = ACTIONS(8125), + [anon_sym_PERCENT_EQ] = ACTIONS(8125), + [anon_sym_PLUS_EQ] = ACTIONS(8125), + [anon_sym_DASH_EQ] = ACTIONS(8125), + [anon_sym_LT_LT_EQ] = ACTIONS(8125), + [anon_sym_GT_GT_EQ] = ACTIONS(8125), + [anon_sym_AMP_EQ] = ACTIONS(8125), + [anon_sym_CARET_EQ] = ACTIONS(8125), + [anon_sym_PIPE_EQ] = ACTIONS(8125), + [anon_sym_and_eq] = ACTIONS(8127), + [anon_sym_or_eq] = ACTIONS(8127), + [anon_sym_xor_eq] = ACTIONS(8127), + [anon_sym_LT_EQ_GT] = ACTIONS(8125), + [anon_sym_or] = ACTIONS(8127), + [anon_sym_and] = ACTIONS(8127), + [anon_sym_bitor] = ACTIONS(8127), + [anon_sym_xor] = ACTIONS(8127), + [anon_sym_bitand] = ACTIONS(8127), + [anon_sym_not_eq] = ACTIONS(8127), + [anon_sym_DASH_DASH] = ACTIONS(8125), + [anon_sym_PLUS_PLUS] = ACTIONS(8125), + [anon_sym_DOT] = ACTIONS(8127), + [anon_sym_DOT_STAR] = ACTIONS(8125), + [anon_sym_DASH_GT] = ACTIONS(8127), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(8125), + [sym_literal_suffix] = ACTIONS(8127), + }, + [STATE(3558)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3287), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(8788), + [anon_sym_unsigned] = ACTIONS(8788), + [anon_sym_long] = ACTIONS(8788), + [anon_sym_short] = ACTIONS(8788), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + }, + [STATE(3559)] = { + [sym_type_qualifier] = STATE(3559), + [sym_alignas_qualifier] = STATE(3736), + [aux_sym__type_definition_type_repeat1] = STATE(3559), + [sym_identifier] = ACTIONS(6525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(9066), + [anon_sym___attribute__] = ACTIONS(6525), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACE] = ACTIONS(6527), + [anon_sym_signed] = ACTIONS(6525), + [anon_sym_unsigned] = ACTIONS(6525), + [anon_sym_long] = ACTIONS(6525), + [anon_sym_short] = ACTIONS(6525), + [anon_sym_LBRACK] = ACTIONS(6527), + [anon_sym_RBRACK] = ACTIONS(6527), + [anon_sym_const] = ACTIONS(9066), + [anon_sym_constexpr] = ACTIONS(9066), + [anon_sym_volatile] = ACTIONS(9066), + [anon_sym_restrict] = ACTIONS(9066), + [anon_sym___restrict__] = ACTIONS(9066), + [anon_sym__Atomic] = ACTIONS(9066), + [anon_sym__Noreturn] = ACTIONS(9066), + [anon_sym_noreturn] = ACTIONS(9066), + [anon_sym__Nonnull] = ACTIONS(9066), + [anon_sym_mutable] = ACTIONS(9066), + [anon_sym_constinit] = ACTIONS(9066), + [anon_sym_consteval] = ACTIONS(9066), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(6525), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6525), + [anon_sym_and] = ACTIONS(6525), + [anon_sym_bitor] = ACTIONS(6525), + [anon_sym_xor] = ACTIONS(6525), + [anon_sym_bitand] = ACTIONS(6525), + [anon_sym_not_eq] = ACTIONS(6525), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_requires] = ACTIONS(6525), + }, + [STATE(3560)] = { + [sym__abstract_declarator] = STATE(4089), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_parameter_list] = STATE(1843), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9072), + [anon_sym_COMMA] = ACTIONS(9072), + [anon_sym_RPAREN] = ACTIONS(9072), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(9074), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(9074), + [anon_sym_PERCENT] = ACTIONS(9074), + [anon_sym_PIPE_PIPE] = ACTIONS(9072), + [anon_sym_AMP_AMP] = ACTIONS(6481), + [anon_sym_PIPE] = ACTIONS(9074), + [anon_sym_CARET] = ACTIONS(9074), + [anon_sym_AMP] = ACTIONS(6483), + [anon_sym_EQ_EQ] = ACTIONS(9072), + [anon_sym_BANG_EQ] = ACTIONS(9072), + [anon_sym_GT] = ACTIONS(9074), + [anon_sym_GT_EQ] = ACTIONS(9072), + [anon_sym_LT_EQ] = ACTIONS(9074), + [anon_sym_LT] = ACTIONS(9074), + [anon_sym_LT_LT] = ACTIONS(9074), + [anon_sym_GT_GT] = ACTIONS(9074), + [anon_sym_SEMI] = ACTIONS(9072), + [anon_sym_COLON] = ACTIONS(9074), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9072), + [anon_sym_RBRACE] = ACTIONS(9072), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(9074), + [anon_sym_QMARK] = ACTIONS(9072), + [anon_sym_STAR_EQ] = ACTIONS(9072), + [anon_sym_SLASH_EQ] = ACTIONS(9072), + [anon_sym_PERCENT_EQ] = ACTIONS(9072), + [anon_sym_PLUS_EQ] = ACTIONS(9072), + [anon_sym_DASH_EQ] = ACTIONS(9072), + [anon_sym_LT_LT_EQ] = ACTIONS(9072), + [anon_sym_GT_GT_EQ] = ACTIONS(9072), + [anon_sym_AMP_EQ] = ACTIONS(9072), + [anon_sym_CARET_EQ] = ACTIONS(9072), + [anon_sym_PIPE_EQ] = ACTIONS(9072), + [anon_sym_and_eq] = ACTIONS(9072), + [anon_sym_or_eq] = ACTIONS(9072), + [anon_sym_xor_eq] = ACTIONS(9072), + [anon_sym_LT_EQ_GT] = ACTIONS(9072), + [anon_sym_or] = ACTIONS(9074), + [anon_sym_and] = ACTIONS(9074), + [anon_sym_bitor] = ACTIONS(9072), + [anon_sym_xor] = ACTIONS(9074), + [anon_sym_bitand] = ACTIONS(9072), + [anon_sym_not_eq] = ACTIONS(9072), + [anon_sym_DASH_DASH] = ACTIONS(9072), + [anon_sym_PLUS_PLUS] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9074), + [anon_sym_DOT_STAR] = ACTIONS(9072), + [anon_sym_DASH_GT] = ACTIONS(9072), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9072), + [anon_sym_override] = ACTIONS(9072), + [anon_sym_requires] = ACTIONS(9072), + [anon_sym_COLON_RBRACK] = ACTIONS(9072), + }, + [STATE(3561)] = { + [sym_decltype_auto] = STATE(3030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9076), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3562)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5322), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3563)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3564)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), + [anon_sym_COMMA] = ACTIONS(8384), + [anon_sym_RPAREN] = ACTIONS(8384), + [anon_sym_LPAREN2] = ACTIONS(8384), + [anon_sym_DASH] = ACTIONS(8382), + [anon_sym_PLUS] = ACTIONS(8382), + [anon_sym_STAR] = ACTIONS(8382), + [anon_sym_SLASH] = ACTIONS(8382), + [anon_sym_PERCENT] = ACTIONS(8382), + [anon_sym_PIPE_PIPE] = ACTIONS(8384), + [anon_sym_AMP_AMP] = ACTIONS(8384), + [anon_sym_PIPE] = ACTIONS(8382), + [anon_sym_CARET] = ACTIONS(8382), + [anon_sym_AMP] = ACTIONS(8382), + [anon_sym_EQ_EQ] = ACTIONS(8384), + [anon_sym_BANG_EQ] = ACTIONS(8384), + [anon_sym_GT] = ACTIONS(8382), + [anon_sym_GT_EQ] = ACTIONS(8384), + [anon_sym_LT_EQ] = ACTIONS(8382), + [anon_sym_LT] = ACTIONS(8382), + [anon_sym_LT_LT] = ACTIONS(8382), + [anon_sym_GT_GT] = ACTIONS(8382), + [anon_sym_SEMI] = ACTIONS(8384), + [anon_sym_COLON] = ACTIONS(8382), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8384), + [anon_sym_RBRACE] = ACTIONS(8384), + [anon_sym_LBRACK] = ACTIONS(8384), + [anon_sym_EQ] = ACTIONS(8382), + [anon_sym_QMARK] = ACTIONS(8384), + [anon_sym_STAR_EQ] = ACTIONS(8384), + [anon_sym_SLASH_EQ] = ACTIONS(8384), + [anon_sym_PERCENT_EQ] = ACTIONS(8384), + [anon_sym_PLUS_EQ] = ACTIONS(8384), + [anon_sym_DASH_EQ] = ACTIONS(8384), + [anon_sym_LT_LT_EQ] = ACTIONS(8384), + [anon_sym_GT_GT_EQ] = ACTIONS(8384), + [anon_sym_AMP_EQ] = ACTIONS(8384), + [anon_sym_CARET_EQ] = ACTIONS(8384), + [anon_sym_PIPE_EQ] = ACTIONS(8384), + [anon_sym_and_eq] = ACTIONS(8382), + [anon_sym_or_eq] = ACTIONS(8382), + [anon_sym_xor_eq] = ACTIONS(8382), + [anon_sym_LT_EQ_GT] = ACTIONS(8384), + [anon_sym_or] = ACTIONS(8382), + [anon_sym_and] = ACTIONS(8382), + [anon_sym_bitor] = ACTIONS(8382), + [anon_sym_xor] = ACTIONS(8382), + [anon_sym_bitand] = ACTIONS(8382), + [anon_sym_not_eq] = ACTIONS(8382), + [anon_sym_DASH_DASH] = ACTIONS(8384), + [anon_sym_PLUS_PLUS] = ACTIONS(8384), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_DOT_STAR] = ACTIONS(8384), + [anon_sym_DASH_GT] = ACTIONS(8384), + [anon_sym_L_DQUOTE] = ACTIONS(8384), + [anon_sym_u_DQUOTE] = ACTIONS(8384), + [anon_sym_U_DQUOTE] = ACTIONS(8384), + [anon_sym_u8_DQUOTE] = ACTIONS(8384), + [anon_sym_DQUOTE] = ACTIONS(8384), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8384), + [anon_sym_LR_DQUOTE] = ACTIONS(8384), + [anon_sym_uR_DQUOTE] = ACTIONS(8384), + [anon_sym_UR_DQUOTE] = ACTIONS(8384), + [anon_sym_u8R_DQUOTE] = ACTIONS(8384), + [anon_sym_COLON_RBRACK] = ACTIONS(8384), + [sym_literal_suffix] = ACTIONS(8382), + }, + [STATE(3565)] = { + [sym_identifier] = ACTIONS(9078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9080), + [anon_sym_COMMA] = ACTIONS(9080), + [anon_sym_RPAREN] = ACTIONS(9080), + [aux_sym_preproc_if_token2] = ACTIONS(9080), + [aux_sym_preproc_else_token1] = ACTIONS(9080), + [aux_sym_preproc_elif_token1] = ACTIONS(9078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9080), + [anon_sym_LPAREN2] = ACTIONS(9080), + [anon_sym_DASH] = ACTIONS(9078), + [anon_sym_PLUS] = ACTIONS(9078), + [anon_sym_STAR] = ACTIONS(9078), + [anon_sym_SLASH] = ACTIONS(9078), + [anon_sym_PERCENT] = ACTIONS(9078), + [anon_sym_PIPE_PIPE] = ACTIONS(9080), + [anon_sym_AMP_AMP] = ACTIONS(9080), + [anon_sym_PIPE] = ACTIONS(9078), + [anon_sym_CARET] = ACTIONS(9078), + [anon_sym_AMP] = ACTIONS(9078), + [anon_sym_EQ_EQ] = ACTIONS(9080), + [anon_sym_BANG_EQ] = ACTIONS(9080), + [anon_sym_GT] = ACTIONS(9078), + [anon_sym_GT_EQ] = ACTIONS(9080), + [anon_sym_LT_EQ] = ACTIONS(9078), + [anon_sym_LT] = ACTIONS(9078), + [anon_sym_LT_LT] = ACTIONS(9078), + [anon_sym_GT_GT] = ACTIONS(9078), + [anon_sym_SEMI] = ACTIONS(9080), + [anon_sym___attribute__] = ACTIONS(9078), + [anon_sym___attribute] = ACTIONS(9078), + [anon_sym_COLON] = ACTIONS(9078), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9080), + [anon_sym_RBRACE] = ACTIONS(9080), + [anon_sym_LBRACK] = ACTIONS(9080), + [anon_sym_EQ] = ACTIONS(9078), + [anon_sym_QMARK] = ACTIONS(9080), + [anon_sym_STAR_EQ] = ACTIONS(9080), + [anon_sym_SLASH_EQ] = ACTIONS(9080), + [anon_sym_PERCENT_EQ] = ACTIONS(9080), + [anon_sym_PLUS_EQ] = ACTIONS(9080), + [anon_sym_DASH_EQ] = ACTIONS(9080), + [anon_sym_LT_LT_EQ] = ACTIONS(9080), + [anon_sym_GT_GT_EQ] = ACTIONS(9080), + [anon_sym_AMP_EQ] = ACTIONS(9080), + [anon_sym_CARET_EQ] = ACTIONS(9080), + [anon_sym_PIPE_EQ] = ACTIONS(9080), + [anon_sym_and_eq] = ACTIONS(9078), + [anon_sym_or_eq] = ACTIONS(9078), + [anon_sym_xor_eq] = ACTIONS(9078), + [anon_sym_LT_EQ_GT] = ACTIONS(9080), + [anon_sym_or] = ACTIONS(9078), + [anon_sym_and] = ACTIONS(9078), + [anon_sym_bitor] = ACTIONS(9078), + [anon_sym_xor] = ACTIONS(9078), + [anon_sym_bitand] = ACTIONS(9078), + [anon_sym_not_eq] = ACTIONS(9078), + [anon_sym_DASH_DASH] = ACTIONS(9080), + [anon_sym_PLUS_PLUS] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9078), + [anon_sym_DOT_STAR] = ACTIONS(9080), + [anon_sym_DASH_GT] = ACTIONS(9080), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9078), + [anon_sym_override] = ACTIONS(9078), + [anon_sym_requires] = ACTIONS(9078), + [anon_sym_COLON_RBRACK] = ACTIONS(9080), + }, + [STATE(3566)] = { + [sym_identifier] = ACTIONS(2803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2801), + [anon_sym_RPAREN] = ACTIONS(2801), + [aux_sym_preproc_if_token2] = ACTIONS(2801), + [aux_sym_preproc_else_token1] = ACTIONS(2801), + [aux_sym_preproc_elif_token1] = ACTIONS(2803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2803), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_CARET] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2803), + [anon_sym___attribute] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2803), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_STAR_EQ] = ACTIONS(2801), + [anon_sym_SLASH_EQ] = ACTIONS(2801), + [anon_sym_PERCENT_EQ] = ACTIONS(2801), + [anon_sym_PLUS_EQ] = ACTIONS(2801), + [anon_sym_DASH_EQ] = ACTIONS(2801), + [anon_sym_LT_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_GT_EQ] = ACTIONS(2801), + [anon_sym_AMP_EQ] = ACTIONS(2801), + [anon_sym_CARET_EQ] = ACTIONS(2801), + [anon_sym_PIPE_EQ] = ACTIONS(2801), + [anon_sym_and_eq] = ACTIONS(2803), + [anon_sym_or_eq] = ACTIONS(2803), + [anon_sym_xor_eq] = ACTIONS(2803), + [anon_sym_LT_EQ_GT] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2803), + [anon_sym_and] = ACTIONS(2803), + [anon_sym_bitor] = ACTIONS(2803), + [anon_sym_xor] = ACTIONS(2803), + [anon_sym_bitand] = ACTIONS(2803), + [anon_sym_not_eq] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2803), + [anon_sym_DOT_STAR] = ACTIONS(2801), + [anon_sym_DASH_GT] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2803), + [anon_sym_override] = ACTIONS(2803), + [anon_sym_requires] = ACTIONS(2803), + [anon_sym_COLON_RBRACK] = ACTIONS(2801), + }, + [STATE(3567)] = { + [sym_identifier] = ACTIONS(8651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8653), + [anon_sym_COMMA] = ACTIONS(8653), + [anon_sym_RPAREN] = ACTIONS(8653), + [aux_sym_preproc_if_token2] = ACTIONS(8653), + [aux_sym_preproc_else_token1] = ACTIONS(8653), + [aux_sym_preproc_elif_token1] = ACTIONS(8651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8653), + [anon_sym_LPAREN2] = ACTIONS(8653), + [anon_sym_DASH] = ACTIONS(8651), + [anon_sym_PLUS] = ACTIONS(8651), + [anon_sym_STAR] = ACTIONS(8651), + [anon_sym_SLASH] = ACTIONS(8651), + [anon_sym_PERCENT] = ACTIONS(8651), + [anon_sym_PIPE_PIPE] = ACTIONS(8653), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_PIPE] = ACTIONS(8651), + [anon_sym_CARET] = ACTIONS(8651), + [anon_sym_AMP] = ACTIONS(8651), + [anon_sym_EQ_EQ] = ACTIONS(8653), + [anon_sym_BANG_EQ] = ACTIONS(8653), + [anon_sym_GT] = ACTIONS(8651), + [anon_sym_GT_EQ] = ACTIONS(8653), + [anon_sym_LT_EQ] = ACTIONS(8651), + [anon_sym_LT] = ACTIONS(8651), + [anon_sym_LT_LT] = ACTIONS(8651), + [anon_sym_GT_GT] = ACTIONS(8651), + [anon_sym_SEMI] = ACTIONS(8653), + [anon_sym___attribute__] = ACTIONS(8651), + [anon_sym___attribute] = ACTIONS(8651), + [anon_sym_COLON] = ACTIONS(8651), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8653), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_LBRACK] = ACTIONS(8653), + [anon_sym_EQ] = ACTIONS(8651), + [anon_sym_QMARK] = ACTIONS(8653), + [anon_sym_STAR_EQ] = ACTIONS(8653), + [anon_sym_SLASH_EQ] = ACTIONS(8653), + [anon_sym_PERCENT_EQ] = ACTIONS(8653), + [anon_sym_PLUS_EQ] = ACTIONS(8653), + [anon_sym_DASH_EQ] = ACTIONS(8653), + [anon_sym_LT_LT_EQ] = ACTIONS(8653), + [anon_sym_GT_GT_EQ] = ACTIONS(8653), + [anon_sym_AMP_EQ] = ACTIONS(8653), + [anon_sym_CARET_EQ] = ACTIONS(8653), + [anon_sym_PIPE_EQ] = ACTIONS(8653), + [anon_sym_and_eq] = ACTIONS(8651), + [anon_sym_or_eq] = ACTIONS(8651), + [anon_sym_xor_eq] = ACTIONS(8651), + [anon_sym_LT_EQ_GT] = ACTIONS(8653), + [anon_sym_or] = ACTIONS(8651), + [anon_sym_and] = ACTIONS(8651), + [anon_sym_bitor] = ACTIONS(8651), + [anon_sym_xor] = ACTIONS(8651), + [anon_sym_bitand] = ACTIONS(8651), + [anon_sym_not_eq] = ACTIONS(8651), + [anon_sym_DASH_DASH] = ACTIONS(8653), + [anon_sym_PLUS_PLUS] = ACTIONS(8653), + [anon_sym_DOT] = ACTIONS(8651), + [anon_sym_DOT_STAR] = ACTIONS(8653), + [anon_sym_DASH_GT] = ACTIONS(8653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8651), + [anon_sym_override] = ACTIONS(8651), + [anon_sym_requires] = ACTIONS(8651), + [anon_sym_COLON_RBRACK] = ACTIONS(8653), + }, + [STATE(3568)] = { + [sym_identifier] = ACTIONS(8655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8657), + [anon_sym_COMMA] = ACTIONS(8657), + [anon_sym_RPAREN] = ACTIONS(8657), + [aux_sym_preproc_if_token2] = ACTIONS(8657), + [aux_sym_preproc_else_token1] = ACTIONS(8657), + [aux_sym_preproc_elif_token1] = ACTIONS(8655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8657), + [anon_sym_LPAREN2] = ACTIONS(8657), + [anon_sym_DASH] = ACTIONS(8655), + [anon_sym_PLUS] = ACTIONS(8655), + [anon_sym_STAR] = ACTIONS(8655), + [anon_sym_SLASH] = ACTIONS(8655), + [anon_sym_PERCENT] = ACTIONS(8655), + [anon_sym_PIPE_PIPE] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8657), + [anon_sym_PIPE] = ACTIONS(8655), + [anon_sym_CARET] = ACTIONS(8655), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym_EQ_EQ] = ACTIONS(8657), + [anon_sym_BANG_EQ] = ACTIONS(8657), + [anon_sym_GT] = ACTIONS(8655), + [anon_sym_GT_EQ] = ACTIONS(8657), + [anon_sym_LT_EQ] = ACTIONS(8655), + [anon_sym_LT] = ACTIONS(8655), + [anon_sym_LT_LT] = ACTIONS(8655), + [anon_sym_GT_GT] = ACTIONS(8655), + [anon_sym_SEMI] = ACTIONS(8657), + [anon_sym___attribute__] = ACTIONS(8655), + [anon_sym___attribute] = ACTIONS(8655), + [anon_sym_COLON] = ACTIONS(8655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8657), + [anon_sym_RBRACE] = ACTIONS(8657), + [anon_sym_LBRACK] = ACTIONS(8657), + [anon_sym_EQ] = ACTIONS(8655), + [anon_sym_QMARK] = ACTIONS(8657), + [anon_sym_STAR_EQ] = ACTIONS(8657), + [anon_sym_SLASH_EQ] = ACTIONS(8657), + [anon_sym_PERCENT_EQ] = ACTIONS(8657), + [anon_sym_PLUS_EQ] = ACTIONS(8657), + [anon_sym_DASH_EQ] = ACTIONS(8657), + [anon_sym_LT_LT_EQ] = ACTIONS(8657), + [anon_sym_GT_GT_EQ] = ACTIONS(8657), + [anon_sym_AMP_EQ] = ACTIONS(8657), + [anon_sym_CARET_EQ] = ACTIONS(8657), + [anon_sym_PIPE_EQ] = ACTIONS(8657), + [anon_sym_and_eq] = ACTIONS(8655), + [anon_sym_or_eq] = ACTIONS(8655), + [anon_sym_xor_eq] = ACTIONS(8655), + [anon_sym_LT_EQ_GT] = ACTIONS(8657), + [anon_sym_or] = ACTIONS(8655), + [anon_sym_and] = ACTIONS(8655), + [anon_sym_bitor] = ACTIONS(8655), + [anon_sym_xor] = ACTIONS(8655), + [anon_sym_bitand] = ACTIONS(8655), + [anon_sym_not_eq] = ACTIONS(8655), + [anon_sym_DASH_DASH] = ACTIONS(8657), + [anon_sym_PLUS_PLUS] = ACTIONS(8657), + [anon_sym_DOT] = ACTIONS(8655), + [anon_sym_DOT_STAR] = ACTIONS(8657), + [anon_sym_DASH_GT] = ACTIONS(8657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8655), + [anon_sym_override] = ACTIONS(8655), + [anon_sym_requires] = ACTIONS(8655), + [anon_sym_COLON_RBRACK] = ACTIONS(8657), + }, + [STATE(3569)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(3993), + [sym__function_attributes_end] = STATE(5837), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(5711), + [sym_noexcept] = STATE(3993), + [sym_throw_specifier] = STATE(3993), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), + [anon_sym_COMMA] = ACTIONS(7544), + [anon_sym_RPAREN] = ACTIONS(7544), + [anon_sym_LPAREN2] = ACTIONS(7544), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_STAR] = ACTIONS(7544), + [anon_sym_SLASH] = ACTIONS(7546), + [anon_sym_PERCENT] = ACTIONS(7544), + [anon_sym_PIPE_PIPE] = ACTIONS(7544), + [anon_sym_AMP_AMP] = ACTIONS(7544), + [anon_sym_PIPE] = ACTIONS(7546), + [anon_sym_CARET] = ACTIONS(7544), + [anon_sym_AMP] = ACTIONS(7546), + [anon_sym_EQ_EQ] = ACTIONS(7544), + [anon_sym_BANG_EQ] = ACTIONS(7544), + [anon_sym_GT] = ACTIONS(7546), + [anon_sym_GT_EQ] = ACTIONS(7544), + [anon_sym_LT_EQ] = ACTIONS(7546), + [anon_sym_LT] = ACTIONS(7546), + [anon_sym_LT_LT] = ACTIONS(7544), + [anon_sym_GT_GT] = ACTIONS(7544), + [anon_sym_SEMI] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(6906), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_COLON] = ACTIONS(7546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), + [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_LBRACK] = ACTIONS(7546), + [anon_sym_QMARK] = ACTIONS(7544), + [anon_sym_LT_EQ_GT] = ACTIONS(7544), + [anon_sym_or] = ACTIONS(7544), + [anon_sym_and] = ACTIONS(7544), + [anon_sym_bitor] = ACTIONS(7544), + [anon_sym_xor] = ACTIONS(7544), + [anon_sym_bitand] = ACTIONS(7544), + [anon_sym_not_eq] = ACTIONS(7544), + [anon_sym_DASH_DASH] = ACTIONS(7544), + [anon_sym_PLUS_PLUS] = ACTIONS(7544), + [anon_sym_asm] = ACTIONS(6154), + [anon_sym___asm__] = ACTIONS(6154), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_DOT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8821), + [anon_sym_override] = ACTIONS(8821), + [anon_sym_noexcept] = ACTIONS(6915), + [anon_sym_throw] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(8824), + [anon_sym_COLON_RBRACK] = ACTIONS(7544), + }, + [STATE(3570)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8832), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4820), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_AMP_AMP] = ACTIONS(8199), + [anon_sym_AMP] = ACTIONS(8201), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(6497), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3571)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8705), + [sym__abstract_declarator] = STATE(8833), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(4820), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_AMP_AMP] = ACTIONS(8199), + [anon_sym_AMP] = ACTIONS(8201), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(7009), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(7007), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(7007), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3572)] = { + [sym__abstract_declarator] = STATE(4147), + [sym_abstract_parenthesized_declarator] = STATE(3510), + [sym_abstract_pointer_declarator] = STATE(3510), + [sym_abstract_function_declarator] = STATE(3510), + [sym_abstract_array_declarator] = STATE(3510), + [sym_parameter_list] = STATE(1842), + [sym_abstract_reference_declarator] = STATE(3510), + [sym__function_declarator_seq] = STATE(3515), + [sym_identifier] = ACTIONS(9074), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9072), + [anon_sym_COMMA] = ACTIONS(9072), + [aux_sym_preproc_if_token2] = ACTIONS(9072), + [aux_sym_preproc_else_token1] = ACTIONS(9072), + [aux_sym_preproc_elif_token1] = ACTIONS(9074), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9072), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_DASH] = ACTIONS(9074), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_SLASH] = ACTIONS(9074), + [anon_sym_PERCENT] = ACTIONS(9074), + [anon_sym_PIPE_PIPE] = ACTIONS(9072), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_PIPE] = ACTIONS(9074), + [anon_sym_CARET] = ACTIONS(9074), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym_EQ_EQ] = ACTIONS(9072), + [anon_sym_BANG_EQ] = ACTIONS(9072), + [anon_sym_GT] = ACTIONS(9074), + [anon_sym_GT_EQ] = ACTIONS(9072), + [anon_sym_LT_EQ] = ACTIONS(9074), + [anon_sym_LT] = ACTIONS(9074), + [anon_sym_LT_LT] = ACTIONS(9074), + [anon_sym_GT_GT] = ACTIONS(9074), + [anon_sym_LBRACK] = ACTIONS(6475), + [anon_sym_EQ] = ACTIONS(9074), + [anon_sym_QMARK] = ACTIONS(9072), + [anon_sym_STAR_EQ] = ACTIONS(9072), + [anon_sym_SLASH_EQ] = ACTIONS(9072), + [anon_sym_PERCENT_EQ] = ACTIONS(9072), + [anon_sym_PLUS_EQ] = ACTIONS(9072), + [anon_sym_DASH_EQ] = ACTIONS(9072), + [anon_sym_LT_LT_EQ] = ACTIONS(9072), + [anon_sym_GT_GT_EQ] = ACTIONS(9072), + [anon_sym_AMP_EQ] = ACTIONS(9072), + [anon_sym_CARET_EQ] = ACTIONS(9072), + [anon_sym_PIPE_EQ] = ACTIONS(9072), + [anon_sym_and_eq] = ACTIONS(9074), + [anon_sym_or_eq] = ACTIONS(9074), + [anon_sym_xor_eq] = ACTIONS(9074), + [anon_sym_LT_EQ_GT] = ACTIONS(9072), + [anon_sym_or] = ACTIONS(9074), + [anon_sym_and] = ACTIONS(9074), + [anon_sym_bitor] = ACTIONS(9074), + [anon_sym_xor] = ACTIONS(9074), + [anon_sym_bitand] = ACTIONS(9074), + [anon_sym_not_eq] = ACTIONS(9074), + [anon_sym_DASH_DASH] = ACTIONS(9072), + [anon_sym_PLUS_PLUS] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9074), + [anon_sym_DOT_STAR] = ACTIONS(9072), + [anon_sym_DASH_GT] = ACTIONS(9072), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9074), + [anon_sym_override] = ACTIONS(9074), + [anon_sym_requires] = ACTIONS(9074), + }, + [STATE(3573)] = { + [sym_identifier] = ACTIONS(9082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9084), + [anon_sym_COMMA] = ACTIONS(9084), + [anon_sym_RPAREN] = ACTIONS(9084), + [aux_sym_preproc_if_token2] = ACTIONS(9084), + [aux_sym_preproc_else_token1] = ACTIONS(9084), + [aux_sym_preproc_elif_token1] = ACTIONS(9082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9084), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9084), + [anon_sym_LPAREN2] = ACTIONS(9084), + [anon_sym_DASH] = ACTIONS(9082), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_STAR] = ACTIONS(9082), + [anon_sym_SLASH] = ACTIONS(9082), + [anon_sym_PERCENT] = ACTIONS(9082), + [anon_sym_PIPE_PIPE] = ACTIONS(9084), + [anon_sym_AMP_AMP] = ACTIONS(9084), + [anon_sym_PIPE] = ACTIONS(9082), + [anon_sym_CARET] = ACTIONS(9082), + [anon_sym_AMP] = ACTIONS(9082), + [anon_sym_EQ_EQ] = ACTIONS(9084), + [anon_sym_BANG_EQ] = ACTIONS(9084), + [anon_sym_GT] = ACTIONS(9082), + [anon_sym_GT_EQ] = ACTIONS(9084), + [anon_sym_LT_EQ] = ACTIONS(9082), + [anon_sym_LT] = ACTIONS(9082), + [anon_sym_LT_LT] = ACTIONS(9082), + [anon_sym_GT_GT] = ACTIONS(9082), + [anon_sym_SEMI] = ACTIONS(9084), + [anon_sym___attribute__] = ACTIONS(9082), + [anon_sym___attribute] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9084), + [anon_sym_RBRACE] = ACTIONS(9084), + [anon_sym_LBRACK] = ACTIONS(9084), + [anon_sym_EQ] = ACTIONS(9082), + [anon_sym_QMARK] = ACTIONS(9084), + [anon_sym_STAR_EQ] = ACTIONS(9084), + [anon_sym_SLASH_EQ] = ACTIONS(9084), + [anon_sym_PERCENT_EQ] = ACTIONS(9084), + [anon_sym_PLUS_EQ] = ACTIONS(9084), + [anon_sym_DASH_EQ] = ACTIONS(9084), + [anon_sym_LT_LT_EQ] = ACTIONS(9084), + [anon_sym_GT_GT_EQ] = ACTIONS(9084), + [anon_sym_AMP_EQ] = ACTIONS(9084), + [anon_sym_CARET_EQ] = ACTIONS(9084), + [anon_sym_PIPE_EQ] = ACTIONS(9084), + [anon_sym_and_eq] = ACTIONS(9082), + [anon_sym_or_eq] = ACTIONS(9082), + [anon_sym_xor_eq] = ACTIONS(9082), + [anon_sym_LT_EQ_GT] = ACTIONS(9084), + [anon_sym_or] = ACTIONS(9082), + [anon_sym_and] = ACTIONS(9082), + [anon_sym_bitor] = ACTIONS(9082), + [anon_sym_xor] = ACTIONS(9082), + [anon_sym_bitand] = ACTIONS(9082), + [anon_sym_not_eq] = ACTIONS(9082), + [anon_sym_DASH_DASH] = ACTIONS(9084), + [anon_sym_PLUS_PLUS] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9082), + [anon_sym_DOT_STAR] = ACTIONS(9084), + [anon_sym_DASH_GT] = ACTIONS(9084), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9082), + [anon_sym_override] = ACTIONS(9082), + [anon_sym_requires] = ACTIONS(9082), + [anon_sym_COLON_RBRACK] = ACTIONS(9084), + }, + [STATE(3574)] = { + [sym_identifier] = ACTIONS(8629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), + [anon_sym_COMMA] = ACTIONS(8631), + [anon_sym_RPAREN] = ACTIONS(8631), + [aux_sym_preproc_if_token2] = ACTIONS(8631), + [aux_sym_preproc_else_token1] = ACTIONS(8631), + [aux_sym_preproc_elif_token1] = ACTIONS(8629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), + [anon_sym_LPAREN2] = ACTIONS(8631), + [anon_sym_DASH] = ACTIONS(8629), + [anon_sym_PLUS] = ACTIONS(8629), + [anon_sym_STAR] = ACTIONS(8629), + [anon_sym_SLASH] = ACTIONS(8629), + [anon_sym_PERCENT] = ACTIONS(8629), + [anon_sym_PIPE_PIPE] = ACTIONS(8631), + [anon_sym_AMP_AMP] = ACTIONS(8631), + [anon_sym_PIPE] = ACTIONS(8629), + [anon_sym_CARET] = ACTIONS(8629), + [anon_sym_AMP] = ACTIONS(8629), + [anon_sym_EQ_EQ] = ACTIONS(8631), + [anon_sym_BANG_EQ] = ACTIONS(8631), + [anon_sym_GT] = ACTIONS(8629), + [anon_sym_GT_EQ] = ACTIONS(8631), + [anon_sym_LT_EQ] = ACTIONS(8629), + [anon_sym_LT] = ACTIONS(8629), + [anon_sym_LT_LT] = ACTIONS(8629), + [anon_sym_GT_GT] = ACTIONS(8629), + [anon_sym_SEMI] = ACTIONS(8631), + [anon_sym___attribute__] = ACTIONS(8629), + [anon_sym___attribute] = ACTIONS(8629), + [anon_sym_COLON] = ACTIONS(8629), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), + [anon_sym_RBRACE] = ACTIONS(8631), + [anon_sym_LBRACK] = ACTIONS(8631), + [anon_sym_EQ] = ACTIONS(8629), + [anon_sym_QMARK] = ACTIONS(8631), + [anon_sym_STAR_EQ] = ACTIONS(8631), + [anon_sym_SLASH_EQ] = ACTIONS(8631), + [anon_sym_PERCENT_EQ] = ACTIONS(8631), + [anon_sym_PLUS_EQ] = ACTIONS(8631), + [anon_sym_DASH_EQ] = ACTIONS(8631), + [anon_sym_LT_LT_EQ] = ACTIONS(8631), + [anon_sym_GT_GT_EQ] = ACTIONS(8631), + [anon_sym_AMP_EQ] = ACTIONS(8631), + [anon_sym_CARET_EQ] = ACTIONS(8631), + [anon_sym_PIPE_EQ] = ACTIONS(8631), + [anon_sym_and_eq] = ACTIONS(8629), + [anon_sym_or_eq] = ACTIONS(8629), + [anon_sym_xor_eq] = ACTIONS(8629), + [anon_sym_LT_EQ_GT] = ACTIONS(8631), + [anon_sym_or] = ACTIONS(8629), + [anon_sym_and] = ACTIONS(8629), + [anon_sym_bitor] = ACTIONS(8629), + [anon_sym_xor] = ACTIONS(8629), + [anon_sym_bitand] = ACTIONS(8629), + [anon_sym_not_eq] = ACTIONS(8629), + [anon_sym_DASH_DASH] = ACTIONS(8631), + [anon_sym_PLUS_PLUS] = ACTIONS(8631), + [anon_sym_DOT] = ACTIONS(8629), + [anon_sym_DOT_STAR] = ACTIONS(8631), + [anon_sym_DASH_GT] = ACTIONS(8631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8629), + [anon_sym_override] = ACTIONS(8629), + [anon_sym_requires] = ACTIONS(8629), + [anon_sym_COLON_RBRACK] = ACTIONS(8631), + }, + [STATE(3575)] = { + [sym_identifier] = ACTIONS(8633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(8635), + [anon_sym_RPAREN] = ACTIONS(8635), + [aux_sym_preproc_if_token2] = ACTIONS(8635), + [aux_sym_preproc_else_token1] = ACTIONS(8635), + [aux_sym_preproc_elif_token1] = ACTIONS(8633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8635), + [anon_sym_LPAREN2] = ACTIONS(8635), + [anon_sym_DASH] = ACTIONS(8633), + [anon_sym_PLUS] = ACTIONS(8633), + [anon_sym_STAR] = ACTIONS(8633), + [anon_sym_SLASH] = ACTIONS(8633), + [anon_sym_PERCENT] = ACTIONS(8633), + [anon_sym_PIPE_PIPE] = ACTIONS(8635), + [anon_sym_AMP_AMP] = ACTIONS(8635), + [anon_sym_PIPE] = ACTIONS(8633), + [anon_sym_CARET] = ACTIONS(8633), + [anon_sym_AMP] = ACTIONS(8633), + [anon_sym_EQ_EQ] = ACTIONS(8635), + [anon_sym_BANG_EQ] = ACTIONS(8635), + [anon_sym_GT] = ACTIONS(8633), + [anon_sym_GT_EQ] = ACTIONS(8635), + [anon_sym_LT_EQ] = ACTIONS(8633), + [anon_sym_LT] = ACTIONS(8633), + [anon_sym_LT_LT] = ACTIONS(8633), + [anon_sym_GT_GT] = ACTIONS(8633), + [anon_sym_SEMI] = ACTIONS(8635), + [anon_sym___attribute__] = ACTIONS(8633), + [anon_sym___attribute] = ACTIONS(8633), + [anon_sym_COLON] = ACTIONS(8633), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8635), + [anon_sym_RBRACE] = ACTIONS(8635), + [anon_sym_LBRACK] = ACTIONS(8635), + [anon_sym_EQ] = ACTIONS(8633), + [anon_sym_QMARK] = ACTIONS(8635), + [anon_sym_STAR_EQ] = ACTIONS(8635), + [anon_sym_SLASH_EQ] = ACTIONS(8635), + [anon_sym_PERCENT_EQ] = ACTIONS(8635), + [anon_sym_PLUS_EQ] = ACTIONS(8635), + [anon_sym_DASH_EQ] = ACTIONS(8635), + [anon_sym_LT_LT_EQ] = ACTIONS(8635), + [anon_sym_GT_GT_EQ] = ACTIONS(8635), + [anon_sym_AMP_EQ] = ACTIONS(8635), + [anon_sym_CARET_EQ] = ACTIONS(8635), + [anon_sym_PIPE_EQ] = ACTIONS(8635), + [anon_sym_and_eq] = ACTIONS(8633), + [anon_sym_or_eq] = ACTIONS(8633), + [anon_sym_xor_eq] = ACTIONS(8633), + [anon_sym_LT_EQ_GT] = ACTIONS(8635), + [anon_sym_or] = ACTIONS(8633), + [anon_sym_and] = ACTIONS(8633), + [anon_sym_bitor] = ACTIONS(8633), + [anon_sym_xor] = ACTIONS(8633), + [anon_sym_bitand] = ACTIONS(8633), + [anon_sym_not_eq] = ACTIONS(8633), + [anon_sym_DASH_DASH] = ACTIONS(8635), + [anon_sym_PLUS_PLUS] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8633), + [anon_sym_DOT_STAR] = ACTIONS(8635), + [anon_sym_DASH_GT] = ACTIONS(8635), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8633), + [anon_sym_override] = ACTIONS(8633), + [anon_sym_requires] = ACTIONS(8633), + [anon_sym_COLON_RBRACK] = ACTIONS(8635), + }, + [STATE(3576)] = { + [sym_argument_list] = STATE(3829), + [sym_initializer_list] = STATE(3829), + [sym_identifier] = ACTIONS(9086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9088), + [anon_sym_COMMA] = ACTIONS(9088), + [anon_sym_RPAREN] = ACTIONS(9088), + [aux_sym_preproc_if_token2] = ACTIONS(9088), + [aux_sym_preproc_else_token1] = ACTIONS(9088), + [aux_sym_preproc_elif_token1] = ACTIONS(9086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9088), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9086), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_STAR] = ACTIONS(9086), + [anon_sym_SLASH] = ACTIONS(9086), + [anon_sym_PERCENT] = ACTIONS(9086), + [anon_sym_PIPE_PIPE] = ACTIONS(9088), + [anon_sym_AMP_AMP] = ACTIONS(9088), + [anon_sym_PIPE] = ACTIONS(9086), + [anon_sym_CARET] = ACTIONS(9086), + [anon_sym_AMP] = ACTIONS(9086), + [anon_sym_EQ_EQ] = ACTIONS(9088), + [anon_sym_BANG_EQ] = ACTIONS(9088), + [anon_sym_GT] = ACTIONS(9086), + [anon_sym_GT_EQ] = ACTIONS(9088), + [anon_sym_LT_EQ] = ACTIONS(9086), + [anon_sym_LT] = ACTIONS(9086), + [anon_sym_LT_LT] = ACTIONS(9086), + [anon_sym_GT_GT] = ACTIONS(9086), + [anon_sym_SEMI] = ACTIONS(9088), + [anon_sym___attribute__] = ACTIONS(9086), + [anon_sym___attribute] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9088), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(9088), + [anon_sym_LBRACK] = ACTIONS(9088), + [anon_sym_EQ] = ACTIONS(9086), + [anon_sym_QMARK] = ACTIONS(9088), + [anon_sym_STAR_EQ] = ACTIONS(9088), + [anon_sym_SLASH_EQ] = ACTIONS(9088), + [anon_sym_PERCENT_EQ] = ACTIONS(9088), + [anon_sym_PLUS_EQ] = ACTIONS(9088), + [anon_sym_DASH_EQ] = ACTIONS(9088), + [anon_sym_LT_LT_EQ] = ACTIONS(9088), + [anon_sym_GT_GT_EQ] = ACTIONS(9088), + [anon_sym_AMP_EQ] = ACTIONS(9088), + [anon_sym_CARET_EQ] = ACTIONS(9088), + [anon_sym_PIPE_EQ] = ACTIONS(9088), + [anon_sym_and_eq] = ACTIONS(9086), + [anon_sym_or_eq] = ACTIONS(9086), + [anon_sym_xor_eq] = ACTIONS(9086), + [anon_sym_LT_EQ_GT] = ACTIONS(9088), + [anon_sym_or] = ACTIONS(9086), + [anon_sym_and] = ACTIONS(9086), + [anon_sym_bitor] = ACTIONS(9086), + [anon_sym_xor] = ACTIONS(9086), + [anon_sym_bitand] = ACTIONS(9086), + [anon_sym_not_eq] = ACTIONS(9086), + [anon_sym_DASH_DASH] = ACTIONS(9088), + [anon_sym_PLUS_PLUS] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9086), + [anon_sym_DOT_STAR] = ACTIONS(9088), + [anon_sym_DASH_GT] = ACTIONS(9088), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9088), + }, + [STATE(3577)] = { + [sym_string_literal] = STATE(3798), + [sym_template_argument_list] = STATE(5689), + [sym_raw_string_literal] = STATE(3798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(9090), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(5601), + [anon_sym_u_DQUOTE] = ACTIONS(5601), + [anon_sym_U_DQUOTE] = ACTIONS(5601), + [anon_sym_u8_DQUOTE] = ACTIONS(5601), + [anon_sym_DQUOTE] = ACTIONS(5601), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + }, + [STATE(3578)] = { + [sym_identifier] = ACTIONS(9093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9095), + [anon_sym_COMMA] = ACTIONS(9095), + [anon_sym_RPAREN] = ACTIONS(9095), + [aux_sym_preproc_if_token2] = ACTIONS(9095), + [aux_sym_preproc_else_token1] = ACTIONS(9095), + [aux_sym_preproc_elif_token1] = ACTIONS(9093), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9095), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9095), + [anon_sym_LPAREN2] = ACTIONS(9095), + [anon_sym_DASH] = ACTIONS(9093), + [anon_sym_PLUS] = ACTIONS(9093), + [anon_sym_STAR] = ACTIONS(9093), + [anon_sym_SLASH] = ACTIONS(9093), + [anon_sym_PERCENT] = ACTIONS(9093), + [anon_sym_PIPE_PIPE] = ACTIONS(9095), + [anon_sym_AMP_AMP] = ACTIONS(9095), + [anon_sym_PIPE] = ACTIONS(9093), + [anon_sym_CARET] = ACTIONS(9093), + [anon_sym_AMP] = ACTIONS(9093), + [anon_sym_EQ_EQ] = ACTIONS(9095), + [anon_sym_BANG_EQ] = ACTIONS(9095), + [anon_sym_GT] = ACTIONS(9093), + [anon_sym_GT_EQ] = ACTIONS(9095), + [anon_sym_LT_EQ] = ACTIONS(9093), + [anon_sym_LT] = ACTIONS(9093), + [anon_sym_LT_LT] = ACTIONS(9093), + [anon_sym_GT_GT] = ACTIONS(9093), + [anon_sym_SEMI] = ACTIONS(9095), + [anon_sym___attribute__] = ACTIONS(9093), + [anon_sym___attribute] = ACTIONS(9093), + [anon_sym_COLON] = ACTIONS(9093), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9095), + [anon_sym_RBRACE] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(9095), + [anon_sym_EQ] = ACTIONS(9093), + [anon_sym_QMARK] = ACTIONS(9095), + [anon_sym_STAR_EQ] = ACTIONS(9095), + [anon_sym_SLASH_EQ] = ACTIONS(9095), + [anon_sym_PERCENT_EQ] = ACTIONS(9095), + [anon_sym_PLUS_EQ] = ACTIONS(9095), + [anon_sym_DASH_EQ] = ACTIONS(9095), + [anon_sym_LT_LT_EQ] = ACTIONS(9095), + [anon_sym_GT_GT_EQ] = ACTIONS(9095), + [anon_sym_AMP_EQ] = ACTIONS(9095), + [anon_sym_CARET_EQ] = ACTIONS(9095), + [anon_sym_PIPE_EQ] = ACTIONS(9095), + [anon_sym_and_eq] = ACTIONS(9093), + [anon_sym_or_eq] = ACTIONS(9093), + [anon_sym_xor_eq] = ACTIONS(9093), + [anon_sym_LT_EQ_GT] = ACTIONS(9095), + [anon_sym_or] = ACTIONS(9093), + [anon_sym_and] = ACTIONS(9093), + [anon_sym_bitor] = ACTIONS(9093), + [anon_sym_xor] = ACTIONS(9093), + [anon_sym_bitand] = ACTIONS(9093), + [anon_sym_not_eq] = ACTIONS(9093), + [anon_sym_DASH_DASH] = ACTIONS(9095), + [anon_sym_PLUS_PLUS] = ACTIONS(9095), + [anon_sym_DOT] = ACTIONS(9093), + [anon_sym_DOT_STAR] = ACTIONS(9095), + [anon_sym_DASH_GT] = ACTIONS(9095), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9093), + [anon_sym_override] = ACTIONS(9093), + [anon_sym_requires] = ACTIONS(9093), + [anon_sym_COLON_RBRACK] = ACTIONS(9095), + }, + [STATE(3579)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_using] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_enum] = ACTIONS(6949), + [anon_sym_class] = ACTIONS(6949), + [anon_sym_struct] = ACTIONS(6949), + [anon_sym_union] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_typename] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_explicit] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_friend] = ACTIONS(6949), + [anon_sym_concept] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3580)] = { + [sym_identifier] = ACTIONS(9097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9099), + [anon_sym_COMMA] = ACTIONS(9099), + [anon_sym_RPAREN] = ACTIONS(9099), + [aux_sym_preproc_if_token2] = ACTIONS(9099), + [aux_sym_preproc_else_token1] = ACTIONS(9099), + [aux_sym_preproc_elif_token1] = ACTIONS(9097), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9099), + [anon_sym_LPAREN2] = ACTIONS(9099), + [anon_sym_DASH] = ACTIONS(9097), + [anon_sym_PLUS] = ACTIONS(9097), + [anon_sym_STAR] = ACTIONS(9097), + [anon_sym_SLASH] = ACTIONS(9097), + [anon_sym_PERCENT] = ACTIONS(9097), + [anon_sym_PIPE_PIPE] = ACTIONS(9099), + [anon_sym_AMP_AMP] = ACTIONS(9099), + [anon_sym_PIPE] = ACTIONS(9097), + [anon_sym_CARET] = ACTIONS(9097), + [anon_sym_AMP] = ACTIONS(9097), + [anon_sym_EQ_EQ] = ACTIONS(9099), + [anon_sym_BANG_EQ] = ACTIONS(9099), + [anon_sym_GT] = ACTIONS(9097), + [anon_sym_GT_EQ] = ACTIONS(9099), + [anon_sym_LT_EQ] = ACTIONS(9097), + [anon_sym_LT] = ACTIONS(9097), + [anon_sym_LT_LT] = ACTIONS(9097), + [anon_sym_GT_GT] = ACTIONS(9097), + [anon_sym_SEMI] = ACTIONS(9099), + [anon_sym___attribute__] = ACTIONS(9097), + [anon_sym___attribute] = ACTIONS(9097), + [anon_sym_COLON] = ACTIONS(9097), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9099), + [anon_sym_RBRACE] = ACTIONS(9099), + [anon_sym_LBRACK] = ACTIONS(9099), + [anon_sym_EQ] = ACTIONS(9097), + [anon_sym_QMARK] = ACTIONS(9099), + [anon_sym_STAR_EQ] = ACTIONS(9099), + [anon_sym_SLASH_EQ] = ACTIONS(9099), + [anon_sym_PERCENT_EQ] = ACTIONS(9099), + [anon_sym_PLUS_EQ] = ACTIONS(9099), + [anon_sym_DASH_EQ] = ACTIONS(9099), + [anon_sym_LT_LT_EQ] = ACTIONS(9099), + [anon_sym_GT_GT_EQ] = ACTIONS(9099), + [anon_sym_AMP_EQ] = ACTIONS(9099), + [anon_sym_CARET_EQ] = ACTIONS(9099), + [anon_sym_PIPE_EQ] = ACTIONS(9099), + [anon_sym_and_eq] = ACTIONS(9097), + [anon_sym_or_eq] = ACTIONS(9097), + [anon_sym_xor_eq] = ACTIONS(9097), + [anon_sym_LT_EQ_GT] = ACTIONS(9099), + [anon_sym_or] = ACTIONS(9097), + [anon_sym_and] = ACTIONS(9097), + [anon_sym_bitor] = ACTIONS(9097), + [anon_sym_xor] = ACTIONS(9097), + [anon_sym_bitand] = ACTIONS(9097), + [anon_sym_not_eq] = ACTIONS(9097), + [anon_sym_DASH_DASH] = ACTIONS(9099), + [anon_sym_PLUS_PLUS] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9097), + [anon_sym_DOT_STAR] = ACTIONS(9099), + [anon_sym_DASH_GT] = ACTIONS(9099), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9097), + [anon_sym_override] = ACTIONS(9097), + [anon_sym_requires] = ACTIONS(9097), + [anon_sym_COLON_RBRACK] = ACTIONS(9099), + }, + [STATE(3581)] = { + [sym_identifier] = ACTIONS(9101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9103), + [anon_sym_COMMA] = ACTIONS(9103), + [anon_sym_RPAREN] = ACTIONS(9103), + [aux_sym_preproc_if_token2] = ACTIONS(9103), + [aux_sym_preproc_else_token1] = ACTIONS(9103), + [aux_sym_preproc_elif_token1] = ACTIONS(9101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9103), + [anon_sym_LPAREN2] = ACTIONS(9103), + [anon_sym_DASH] = ACTIONS(9101), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_STAR] = ACTIONS(9101), + [anon_sym_SLASH] = ACTIONS(9101), + [anon_sym_PERCENT] = ACTIONS(9101), + [anon_sym_PIPE_PIPE] = ACTIONS(9103), + [anon_sym_AMP_AMP] = ACTIONS(9103), + [anon_sym_PIPE] = ACTIONS(9101), + [anon_sym_CARET] = ACTIONS(9101), + [anon_sym_AMP] = ACTIONS(9101), + [anon_sym_EQ_EQ] = ACTIONS(9103), + [anon_sym_BANG_EQ] = ACTIONS(9103), + [anon_sym_GT] = ACTIONS(9101), + [anon_sym_GT_EQ] = ACTIONS(9103), + [anon_sym_LT_EQ] = ACTIONS(9101), + [anon_sym_LT] = ACTIONS(9101), + [anon_sym_LT_LT] = ACTIONS(9101), + [anon_sym_GT_GT] = ACTIONS(9101), + [anon_sym_SEMI] = ACTIONS(9103), + [anon_sym___attribute__] = ACTIONS(9101), + [anon_sym___attribute] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(9101), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9103), + [anon_sym_RBRACE] = ACTIONS(9103), + [anon_sym_LBRACK] = ACTIONS(9103), + [anon_sym_EQ] = ACTIONS(9101), + [anon_sym_QMARK] = ACTIONS(9103), + [anon_sym_STAR_EQ] = ACTIONS(9103), + [anon_sym_SLASH_EQ] = ACTIONS(9103), + [anon_sym_PERCENT_EQ] = ACTIONS(9103), + [anon_sym_PLUS_EQ] = ACTIONS(9103), + [anon_sym_DASH_EQ] = ACTIONS(9103), + [anon_sym_LT_LT_EQ] = ACTIONS(9103), + [anon_sym_GT_GT_EQ] = ACTIONS(9103), + [anon_sym_AMP_EQ] = ACTIONS(9103), + [anon_sym_CARET_EQ] = ACTIONS(9103), + [anon_sym_PIPE_EQ] = ACTIONS(9103), + [anon_sym_and_eq] = ACTIONS(9101), + [anon_sym_or_eq] = ACTIONS(9101), + [anon_sym_xor_eq] = ACTIONS(9101), + [anon_sym_LT_EQ_GT] = ACTIONS(9103), + [anon_sym_or] = ACTIONS(9101), + [anon_sym_and] = ACTIONS(9101), + [anon_sym_bitor] = ACTIONS(9101), + [anon_sym_xor] = ACTIONS(9101), + [anon_sym_bitand] = ACTIONS(9101), + [anon_sym_not_eq] = ACTIONS(9101), + [anon_sym_DASH_DASH] = ACTIONS(9103), + [anon_sym_PLUS_PLUS] = ACTIONS(9103), + [anon_sym_DOT] = ACTIONS(9101), + [anon_sym_DOT_STAR] = ACTIONS(9103), + [anon_sym_DASH_GT] = ACTIONS(9103), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9101), + [anon_sym_override] = ACTIONS(9101), + [anon_sym_requires] = ACTIONS(9101), + [anon_sym_COLON_RBRACK] = ACTIONS(9103), + }, + [STATE(3582)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_TILDE] = ACTIONS(6233), + [anon_sym_STAR] = ACTIONS(6233), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_using] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym___cdecl] = ACTIONS(6226), + [anon_sym___clrcall] = ACTIONS(6226), + [anon_sym___stdcall] = ACTIONS(6226), + [anon_sym___fastcall] = ACTIONS(6226), + [anon_sym___thiscall] = ACTIONS(6226), + [anon_sym___vectorcall] = ACTIONS(6226), + [anon_sym_signed] = ACTIONS(6226), + [anon_sym_unsigned] = ACTIONS(6226), + [anon_sym_long] = ACTIONS(6226), + [anon_sym_short] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(6226), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [sym_primitive_type] = ACTIONS(6226), + [anon_sym_enum] = ACTIONS(6226), + [anon_sym_class] = ACTIONS(6226), + [anon_sym_struct] = ACTIONS(6226), + [anon_sym_union] = ACTIONS(6226), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_typename] = ACTIONS(6226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_explicit] = ACTIONS(6226), + [anon_sym_template] = ACTIONS(6226), + [anon_sym_operator] = ACTIONS(6226), + [anon_sym_friend] = ACTIONS(6226), + [anon_sym_concept] = ACTIONS(6226), + [anon_sym_LBRACK_COLON] = ACTIONS(6233), + }, + [STATE(3583)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_using] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_enum] = ACTIONS(6949), + [anon_sym_class] = ACTIONS(6949), + [anon_sym_struct] = ACTIONS(6949), + [anon_sym_union] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_typename] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_explicit] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_friend] = ACTIONS(6949), + [anon_sym_concept] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3584)] = { + [sym_identifier] = ACTIONS(6262), + [anon_sym_LPAREN2] = ACTIONS(6264), + [anon_sym_TILDE] = ACTIONS(6264), + [anon_sym_STAR] = ACTIONS(6264), + [anon_sym_PIPE_PIPE] = ACTIONS(6264), + [anon_sym_AMP_AMP] = ACTIONS(6264), + [anon_sym_AMP] = ACTIONS(6262), + [anon_sym___extension__] = ACTIONS(6262), + [anon_sym_virtual] = ACTIONS(6262), + [anon_sym_extern] = ACTIONS(6262), + [anon_sym___attribute__] = ACTIONS(6262), + [anon_sym___attribute] = ACTIONS(6262), + [anon_sym_using] = ACTIONS(6262), + [anon_sym_COLON_COLON] = ACTIONS(6264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), + [anon_sym___declspec] = ACTIONS(6262), + [anon_sym___based] = ACTIONS(6262), + [anon_sym___cdecl] = ACTIONS(6262), + [anon_sym___clrcall] = ACTIONS(6262), + [anon_sym___stdcall] = ACTIONS(6262), + [anon_sym___fastcall] = ACTIONS(6262), + [anon_sym___thiscall] = ACTIONS(6262), + [anon_sym___vectorcall] = ACTIONS(6262), + [anon_sym_signed] = ACTIONS(6262), + [anon_sym_unsigned] = ACTIONS(6262), + [anon_sym_long] = ACTIONS(6262), + [anon_sym_short] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(6262), + [anon_sym_static] = ACTIONS(6262), + [anon_sym_register] = ACTIONS(6262), + [anon_sym_inline] = ACTIONS(6262), + [anon_sym___inline] = ACTIONS(6262), + [anon_sym___inline__] = ACTIONS(6262), + [anon_sym___forceinline] = ACTIONS(6262), + [anon_sym_thread_local] = ACTIONS(6262), + [anon_sym___thread] = ACTIONS(6262), + [anon_sym_const] = ACTIONS(6262), + [anon_sym_constexpr] = ACTIONS(6262), + [anon_sym_volatile] = ACTIONS(6262), + [anon_sym_restrict] = ACTIONS(6262), + [anon_sym___restrict__] = ACTIONS(6262), + [anon_sym__Atomic] = ACTIONS(6262), + [anon_sym__Noreturn] = ACTIONS(6262), + [anon_sym_noreturn] = ACTIONS(6262), + [anon_sym__Nonnull] = ACTIONS(6262), + [anon_sym_mutable] = ACTIONS(6262), + [anon_sym_constinit] = ACTIONS(6262), + [anon_sym_consteval] = ACTIONS(6262), + [anon_sym_alignas] = ACTIONS(6262), + [anon_sym__Alignas] = ACTIONS(6262), + [sym_primitive_type] = ACTIONS(6262), + [anon_sym_enum] = ACTIONS(6262), + [anon_sym_class] = ACTIONS(6262), + [anon_sym_struct] = ACTIONS(6262), + [anon_sym_union] = ACTIONS(6262), + [anon_sym_or] = ACTIONS(6262), + [anon_sym_and] = ACTIONS(6262), + [anon_sym_typename] = ACTIONS(6262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(6262), + [anon_sym_explicit] = ACTIONS(6262), + [anon_sym_template] = ACTIONS(6262), + [anon_sym_operator] = ACTIONS(6262), + [anon_sym_friend] = ACTIONS(6262), + [anon_sym_concept] = ACTIONS(6262), + [anon_sym_LBRACK_COLON] = ACTIONS(6264), + }, + [STATE(3585)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_using] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_signed] = ACTIONS(6949), + [anon_sym_unsigned] = ACTIONS(6949), + [anon_sym_long] = ACTIONS(6949), + [anon_sym_short] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [sym_primitive_type] = ACTIONS(6949), + [anon_sym_enum] = ACTIONS(6949), + [anon_sym_class] = ACTIONS(6949), + [anon_sym_struct] = ACTIONS(6949), + [anon_sym_union] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_typename] = ACTIONS(6949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_explicit] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_friend] = ACTIONS(6949), + [anon_sym_concept] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3586)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5330), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5278), + [anon_sym_SLASH_EQ] = ACTIONS(5278), + [anon_sym_PERCENT_EQ] = ACTIONS(5278), + [anon_sym_PLUS_EQ] = ACTIONS(5278), + [anon_sym_DASH_EQ] = ACTIONS(5278), + [anon_sym_LT_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_GT_EQ] = ACTIONS(5278), + [anon_sym_AMP_EQ] = ACTIONS(5278), + [anon_sym_CARET_EQ] = ACTIONS(5278), + [anon_sym_PIPE_EQ] = ACTIONS(5278), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3587)] = { + [sym_identifier] = ACTIONS(6762), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_TILDE] = ACTIONS(6764), + [anon_sym_STAR] = ACTIONS(6764), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym_virtual] = ACTIONS(6762), + [anon_sym_extern] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_using] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6764), + [anon_sym___declspec] = ACTIONS(6762), + [anon_sym___based] = ACTIONS(6762), + [anon_sym___cdecl] = ACTIONS(6762), + [anon_sym___clrcall] = ACTIONS(6762), + [anon_sym___stdcall] = ACTIONS(6762), + [anon_sym___fastcall] = ACTIONS(6762), + [anon_sym___thiscall] = ACTIONS(6762), + [anon_sym___vectorcall] = ACTIONS(6762), + [anon_sym_signed] = ACTIONS(6762), + [anon_sym_unsigned] = ACTIONS(6762), + [anon_sym_long] = ACTIONS(6762), + [anon_sym_short] = ACTIONS(6762), + [anon_sym_LBRACK] = ACTIONS(6762), + [anon_sym_static] = ACTIONS(6762), + [anon_sym_register] = ACTIONS(6762), + [anon_sym_inline] = ACTIONS(6762), + [anon_sym___inline] = ACTIONS(6762), + [anon_sym___inline__] = ACTIONS(6762), + [anon_sym___forceinline] = ACTIONS(6762), + [anon_sym_thread_local] = ACTIONS(6762), + [anon_sym___thread] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6762), + [anon_sym__Alignas] = ACTIONS(6762), + [sym_primitive_type] = ACTIONS(6762), + [anon_sym_enum] = ACTIONS(6762), + [anon_sym_class] = ACTIONS(6762), + [anon_sym_struct] = ACTIONS(6762), + [anon_sym_union] = ACTIONS(6762), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_typename] = ACTIONS(6762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6762), + [anon_sym_decltype] = ACTIONS(6762), + [anon_sym_explicit] = ACTIONS(6762), + [anon_sym_template] = ACTIONS(6762), + [anon_sym_operator] = ACTIONS(6762), + [anon_sym_friend] = ACTIONS(6762), + [anon_sym_concept] = ACTIONS(6762), + [anon_sym_LBRACK_COLON] = ACTIONS(6764), + }, + [STATE(3588)] = { + [sym_argument_list] = STATE(3817), + [sym_initializer_list] = STATE(3817), + [sym_identifier] = ACTIONS(9105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9107), + [anon_sym_COMMA] = ACTIONS(9107), + [anon_sym_RPAREN] = ACTIONS(9107), + [aux_sym_preproc_if_token2] = ACTIONS(9107), + [aux_sym_preproc_else_token1] = ACTIONS(9107), + [aux_sym_preproc_elif_token1] = ACTIONS(9105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9107), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9107), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9105), + [anon_sym_PLUS] = ACTIONS(9105), + [anon_sym_STAR] = ACTIONS(9105), + [anon_sym_SLASH] = ACTIONS(9105), + [anon_sym_PERCENT] = ACTIONS(9105), + [anon_sym_PIPE_PIPE] = ACTIONS(9107), + [anon_sym_AMP_AMP] = ACTIONS(9107), + [anon_sym_PIPE] = ACTIONS(9105), + [anon_sym_CARET] = ACTIONS(9105), + [anon_sym_AMP] = ACTIONS(9105), + [anon_sym_EQ_EQ] = ACTIONS(9107), + [anon_sym_BANG_EQ] = ACTIONS(9107), + [anon_sym_GT] = ACTIONS(9105), + [anon_sym_GT_EQ] = ACTIONS(9107), + [anon_sym_LT_EQ] = ACTIONS(9105), + [anon_sym_LT] = ACTIONS(9105), + [anon_sym_LT_LT] = ACTIONS(9105), + [anon_sym_GT_GT] = ACTIONS(9105), + [anon_sym_SEMI] = ACTIONS(9107), + [anon_sym___attribute__] = ACTIONS(9105), + [anon_sym___attribute] = ACTIONS(9105), + [anon_sym_COLON] = ACTIONS(9105), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9107), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(9107), + [anon_sym_LBRACK] = ACTIONS(9107), + [anon_sym_EQ] = ACTIONS(9105), + [anon_sym_QMARK] = ACTIONS(9107), + [anon_sym_STAR_EQ] = ACTIONS(9107), + [anon_sym_SLASH_EQ] = ACTIONS(9107), + [anon_sym_PERCENT_EQ] = ACTIONS(9107), + [anon_sym_PLUS_EQ] = ACTIONS(9107), + [anon_sym_DASH_EQ] = ACTIONS(9107), + [anon_sym_LT_LT_EQ] = ACTIONS(9107), + [anon_sym_GT_GT_EQ] = ACTIONS(9107), + [anon_sym_AMP_EQ] = ACTIONS(9107), + [anon_sym_CARET_EQ] = ACTIONS(9107), + [anon_sym_PIPE_EQ] = ACTIONS(9107), + [anon_sym_and_eq] = ACTIONS(9105), + [anon_sym_or_eq] = ACTIONS(9105), + [anon_sym_xor_eq] = ACTIONS(9105), + [anon_sym_LT_EQ_GT] = ACTIONS(9107), + [anon_sym_or] = ACTIONS(9105), + [anon_sym_and] = ACTIONS(9105), + [anon_sym_bitor] = ACTIONS(9105), + [anon_sym_xor] = ACTIONS(9105), + [anon_sym_bitand] = ACTIONS(9105), + [anon_sym_not_eq] = ACTIONS(9105), + [anon_sym_DASH_DASH] = ACTIONS(9107), + [anon_sym_PLUS_PLUS] = ACTIONS(9107), + [anon_sym_DOT] = ACTIONS(9105), + [anon_sym_DOT_STAR] = ACTIONS(9107), + [anon_sym_DASH_GT] = ACTIONS(9107), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9107), + }, + [STATE(3589)] = { + [sym_identifier] = ACTIONS(5229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LPAREN2] = ACTIONS(5231), + [anon_sym_TILDE] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5231), + [anon_sym_AMP_AMP] = ACTIONS(5231), + [anon_sym_AMP] = ACTIONS(5229), + [anon_sym_SEMI] = ACTIONS(5231), + [anon_sym___extension__] = ACTIONS(5229), + [anon_sym_virtual] = ACTIONS(5229), + [anon_sym_extern] = ACTIONS(5229), + [anon_sym___attribute__] = ACTIONS(5229), + [anon_sym___attribute] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_COLON_COLON] = ACTIONS(5231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), + [anon_sym___declspec] = ACTIONS(5229), + [anon_sym___based] = ACTIONS(5229), + [anon_sym___cdecl] = ACTIONS(5229), + [anon_sym___clrcall] = ACTIONS(5229), + [anon_sym___stdcall] = ACTIONS(5229), + [anon_sym___fastcall] = ACTIONS(5229), + [anon_sym___thiscall] = ACTIONS(5229), + [anon_sym___vectorcall] = ACTIONS(5229), + [anon_sym_LBRACE] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5229), + [anon_sym_static] = ACTIONS(5229), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_register] = ACTIONS(5229), + [anon_sym_inline] = ACTIONS(5229), + [anon_sym___inline] = ACTIONS(5229), + [anon_sym___inline__] = ACTIONS(5229), + [anon_sym___forceinline] = ACTIONS(5229), + [anon_sym_thread_local] = ACTIONS(5229), + [anon_sym___thread] = ACTIONS(5229), + [anon_sym_const] = ACTIONS(5229), + [anon_sym_constexpr] = ACTIONS(5229), + [anon_sym_volatile] = ACTIONS(5229), + [anon_sym_restrict] = ACTIONS(5229), + [anon_sym___restrict__] = ACTIONS(5229), + [anon_sym__Atomic] = ACTIONS(5229), + [anon_sym__Noreturn] = ACTIONS(5229), + [anon_sym_noreturn] = ACTIONS(5229), + [anon_sym__Nonnull] = ACTIONS(5229), + [anon_sym_mutable] = ACTIONS(5229), + [anon_sym_constinit] = ACTIONS(5229), + [anon_sym_consteval] = ACTIONS(5229), + [anon_sym_alignas] = ACTIONS(5229), + [anon_sym__Alignas] = ACTIONS(5229), + [anon_sym_DASH_GT] = ACTIONS(5231), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5229), + [anon_sym_final] = ACTIONS(5229), + [anon_sym_override] = ACTIONS(5229), + [anon_sym_explicit] = ACTIONS(5229), + [anon_sym_private] = ACTIONS(5229), + [anon_sym_template] = ACTIONS(5229), + [anon_sym_GT2] = ACTIONS(5231), + [anon_sym_operator] = ACTIONS(5229), + [anon_sym_public] = ACTIONS(5229), + [anon_sym_protected] = ACTIONS(5229), + [anon_sym_noexcept] = ACTIONS(5229), + [anon_sym_throw] = ACTIONS(5229), + [anon_sym_requires] = ACTIONS(5229), + [anon_sym_LBRACK_COLON] = ACTIONS(5231), + }, + [STATE(3590)] = { + [sym_identifier] = ACTIONS(9109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9111), + [anon_sym_COMMA] = ACTIONS(9111), + [anon_sym_RPAREN] = ACTIONS(9111), + [aux_sym_preproc_if_token2] = ACTIONS(9111), + [aux_sym_preproc_else_token1] = ACTIONS(9111), + [aux_sym_preproc_elif_token1] = ACTIONS(9109), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9111), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9111), + [anon_sym_LPAREN2] = ACTIONS(9111), + [anon_sym_DASH] = ACTIONS(9109), + [anon_sym_PLUS] = ACTIONS(9109), + [anon_sym_STAR] = ACTIONS(9109), + [anon_sym_SLASH] = ACTIONS(9109), + [anon_sym_PERCENT] = ACTIONS(9109), + [anon_sym_PIPE_PIPE] = ACTIONS(9111), + [anon_sym_AMP_AMP] = ACTIONS(9111), + [anon_sym_PIPE] = ACTIONS(9109), + [anon_sym_CARET] = ACTIONS(9109), + [anon_sym_AMP] = ACTIONS(9109), + [anon_sym_EQ_EQ] = ACTIONS(9111), + [anon_sym_BANG_EQ] = ACTIONS(9111), + [anon_sym_GT] = ACTIONS(9109), + [anon_sym_GT_EQ] = ACTIONS(9111), + [anon_sym_LT_EQ] = ACTIONS(9109), + [anon_sym_LT] = ACTIONS(9109), + [anon_sym_LT_LT] = ACTIONS(9109), + [anon_sym_GT_GT] = ACTIONS(9109), + [anon_sym_SEMI] = ACTIONS(9111), + [anon_sym___attribute__] = ACTIONS(9109), + [anon_sym___attribute] = ACTIONS(9109), + [anon_sym_COLON] = ACTIONS(9109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9111), + [anon_sym_RBRACE] = ACTIONS(9111), + [anon_sym_LBRACK] = ACTIONS(9111), + [anon_sym_EQ] = ACTIONS(9109), + [anon_sym_QMARK] = ACTIONS(9111), + [anon_sym_STAR_EQ] = ACTIONS(9111), + [anon_sym_SLASH_EQ] = ACTIONS(9111), + [anon_sym_PERCENT_EQ] = ACTIONS(9111), + [anon_sym_PLUS_EQ] = ACTIONS(9111), + [anon_sym_DASH_EQ] = ACTIONS(9111), + [anon_sym_LT_LT_EQ] = ACTIONS(9111), + [anon_sym_GT_GT_EQ] = ACTIONS(9111), + [anon_sym_AMP_EQ] = ACTIONS(9111), + [anon_sym_CARET_EQ] = ACTIONS(9111), + [anon_sym_PIPE_EQ] = ACTIONS(9111), + [anon_sym_and_eq] = ACTIONS(9109), + [anon_sym_or_eq] = ACTIONS(9109), + [anon_sym_xor_eq] = ACTIONS(9109), + [anon_sym_LT_EQ_GT] = ACTIONS(9111), + [anon_sym_or] = ACTIONS(9109), + [anon_sym_and] = ACTIONS(9109), + [anon_sym_bitor] = ACTIONS(9109), + [anon_sym_xor] = ACTIONS(9109), + [anon_sym_bitand] = ACTIONS(9109), + [anon_sym_not_eq] = ACTIONS(9109), + [anon_sym_DASH_DASH] = ACTIONS(9111), + [anon_sym_PLUS_PLUS] = ACTIONS(9111), + [anon_sym_DOT] = ACTIONS(9109), + [anon_sym_DOT_STAR] = ACTIONS(9111), + [anon_sym_DASH_GT] = ACTIONS(9111), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9109), + [anon_sym_override] = ACTIONS(9109), + [anon_sym_requires] = ACTIONS(9109), + [anon_sym_COLON_RBRACK] = ACTIONS(9111), + }, + [STATE(3591)] = { + [sym_identifier] = ACTIONS(6270), + [anon_sym_LPAREN2] = ACTIONS(6272), + [anon_sym_TILDE] = ACTIONS(6272), + [anon_sym_STAR] = ACTIONS(6272), + [anon_sym_PIPE_PIPE] = ACTIONS(6272), + [anon_sym_AMP_AMP] = ACTIONS(6272), + [anon_sym_AMP] = ACTIONS(6270), + [anon_sym___extension__] = ACTIONS(6270), + [anon_sym_virtual] = ACTIONS(6270), + [anon_sym_extern] = ACTIONS(6270), + [anon_sym___attribute__] = ACTIONS(6270), + [anon_sym___attribute] = ACTIONS(6270), + [anon_sym_using] = ACTIONS(6270), + [anon_sym_COLON_COLON] = ACTIONS(6272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), + [anon_sym___declspec] = ACTIONS(6270), + [anon_sym___based] = ACTIONS(6270), + [anon_sym___cdecl] = ACTIONS(6270), + [anon_sym___clrcall] = ACTIONS(6270), + [anon_sym___stdcall] = ACTIONS(6270), + [anon_sym___fastcall] = ACTIONS(6270), + [anon_sym___thiscall] = ACTIONS(6270), + [anon_sym___vectorcall] = ACTIONS(6270), + [anon_sym_signed] = ACTIONS(6270), + [anon_sym_unsigned] = ACTIONS(6270), + [anon_sym_long] = ACTIONS(6270), + [anon_sym_short] = ACTIONS(6270), + [anon_sym_LBRACK] = ACTIONS(6270), + [anon_sym_static] = ACTIONS(6270), + [anon_sym_register] = ACTIONS(6270), + [anon_sym_inline] = ACTIONS(6270), + [anon_sym___inline] = ACTIONS(6270), + [anon_sym___inline__] = ACTIONS(6270), + [anon_sym___forceinline] = ACTIONS(6270), + [anon_sym_thread_local] = ACTIONS(6270), + [anon_sym___thread] = ACTIONS(6270), + [anon_sym_const] = ACTIONS(6270), + [anon_sym_constexpr] = ACTIONS(6270), + [anon_sym_volatile] = ACTIONS(6270), + [anon_sym_restrict] = ACTIONS(6270), + [anon_sym___restrict__] = ACTIONS(6270), + [anon_sym__Atomic] = ACTIONS(6270), + [anon_sym__Noreturn] = ACTIONS(6270), + [anon_sym_noreturn] = ACTIONS(6270), + [anon_sym__Nonnull] = ACTIONS(6270), + [anon_sym_mutable] = ACTIONS(6270), + [anon_sym_constinit] = ACTIONS(6270), + [anon_sym_consteval] = ACTIONS(6270), + [anon_sym_alignas] = ACTIONS(6270), + [anon_sym__Alignas] = ACTIONS(6270), + [sym_primitive_type] = ACTIONS(6270), + [anon_sym_enum] = ACTIONS(6270), + [anon_sym_class] = ACTIONS(6270), + [anon_sym_struct] = ACTIONS(6270), + [anon_sym_union] = ACTIONS(6270), + [anon_sym_or] = ACTIONS(6270), + [anon_sym_and] = ACTIONS(6270), + [anon_sym_typename] = ACTIONS(6270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6270), + [anon_sym_decltype] = ACTIONS(6270), + [anon_sym_explicit] = ACTIONS(6270), + [anon_sym_template] = ACTIONS(6270), + [anon_sym_operator] = ACTIONS(6270), + [anon_sym_friend] = ACTIONS(6270), + [anon_sym_concept] = ACTIONS(6270), + [anon_sym_LBRACK_COLON] = ACTIONS(6272), + }, + [STATE(3592)] = { + [sym_identifier] = ACTIONS(8959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8961), + [anon_sym_COMMA] = ACTIONS(8961), + [anon_sym_RPAREN] = ACTIONS(8961), + [aux_sym_preproc_if_token2] = ACTIONS(8961), + [aux_sym_preproc_else_token1] = ACTIONS(8961), + [aux_sym_preproc_elif_token1] = ACTIONS(8959), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8961), + [anon_sym_LPAREN2] = ACTIONS(8961), + [anon_sym_DASH] = ACTIONS(8959), + [anon_sym_PLUS] = ACTIONS(8959), + [anon_sym_STAR] = ACTIONS(8959), + [anon_sym_SLASH] = ACTIONS(8959), + [anon_sym_PERCENT] = ACTIONS(8959), + [anon_sym_PIPE_PIPE] = ACTIONS(9113), + [anon_sym_AMP_AMP] = ACTIONS(8943), + [anon_sym_PIPE] = ACTIONS(8959), + [anon_sym_CARET] = ACTIONS(8959), + [anon_sym_AMP] = ACTIONS(8959), + [anon_sym_EQ_EQ] = ACTIONS(8961), + [anon_sym_BANG_EQ] = ACTIONS(8961), + [anon_sym_GT] = ACTIONS(8959), + [anon_sym_GT_EQ] = ACTIONS(8961), + [anon_sym_LT_EQ] = ACTIONS(8959), + [anon_sym_LT] = ACTIONS(8959), + [anon_sym_LT_LT] = ACTIONS(8959), + [anon_sym_GT_GT] = ACTIONS(8959), + [anon_sym_SEMI] = ACTIONS(8961), + [anon_sym___attribute__] = ACTIONS(8959), + [anon_sym___attribute] = ACTIONS(8959), + [anon_sym_COLON] = ACTIONS(8959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8961), + [anon_sym_RBRACE] = ACTIONS(8961), + [anon_sym_LBRACK] = ACTIONS(8961), + [anon_sym_EQ] = ACTIONS(8959), + [anon_sym_QMARK] = ACTIONS(8961), + [anon_sym_STAR_EQ] = ACTIONS(8961), + [anon_sym_SLASH_EQ] = ACTIONS(8961), + [anon_sym_PERCENT_EQ] = ACTIONS(8961), + [anon_sym_PLUS_EQ] = ACTIONS(8961), + [anon_sym_DASH_EQ] = ACTIONS(8961), + [anon_sym_LT_LT_EQ] = ACTIONS(8961), + [anon_sym_GT_GT_EQ] = ACTIONS(8961), + [anon_sym_AMP_EQ] = ACTIONS(8961), + [anon_sym_CARET_EQ] = ACTIONS(8961), + [anon_sym_PIPE_EQ] = ACTIONS(8961), + [anon_sym_and_eq] = ACTIONS(8959), + [anon_sym_or_eq] = ACTIONS(8959), + [anon_sym_xor_eq] = ACTIONS(8959), + [anon_sym_LT_EQ_GT] = ACTIONS(8961), + [anon_sym_or] = ACTIONS(9115), + [anon_sym_and] = ACTIONS(8945), + [anon_sym_bitor] = ACTIONS(8959), + [anon_sym_xor] = ACTIONS(8959), + [anon_sym_bitand] = ACTIONS(8959), + [anon_sym_not_eq] = ACTIONS(8959), + [anon_sym_DASH_DASH] = ACTIONS(8961), + [anon_sym_PLUS_PLUS] = ACTIONS(8961), + [anon_sym_DOT] = ACTIONS(8959), + [anon_sym_DOT_STAR] = ACTIONS(8961), + [anon_sym_DASH_GT] = ACTIONS(8961), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8959), + [anon_sym_override] = ACTIONS(8959), + [anon_sym_requires] = ACTIONS(8959), + [anon_sym_COLON_RBRACK] = ACTIONS(8961), + }, + [STATE(3593)] = { + [sym_identifier] = ACTIONS(6967), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_TILDE] = ACTIONS(6969), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym___extension__] = ACTIONS(6967), + [anon_sym_virtual] = ACTIONS(6967), + [anon_sym_extern] = ACTIONS(6967), + [anon_sym___attribute__] = ACTIONS(6967), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_using] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6969), + [anon_sym___declspec] = ACTIONS(6967), + [anon_sym___based] = ACTIONS(6967), + [anon_sym___cdecl] = ACTIONS(6967), + [anon_sym___clrcall] = ACTIONS(6967), + [anon_sym___stdcall] = ACTIONS(6967), + [anon_sym___fastcall] = ACTIONS(6967), + [anon_sym___thiscall] = ACTIONS(6967), + [anon_sym___vectorcall] = ACTIONS(6967), + [anon_sym_signed] = ACTIONS(6967), + [anon_sym_unsigned] = ACTIONS(6967), + [anon_sym_long] = ACTIONS(6967), + [anon_sym_short] = ACTIONS(6967), + [anon_sym_LBRACK] = ACTIONS(6967), + [anon_sym_static] = ACTIONS(6967), + [anon_sym_register] = ACTIONS(6967), + [anon_sym_inline] = ACTIONS(6967), + [anon_sym___inline] = ACTIONS(6967), + [anon_sym___inline__] = ACTIONS(6967), + [anon_sym___forceinline] = ACTIONS(6967), + [anon_sym_thread_local] = ACTIONS(6967), + [anon_sym___thread] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6967), + [anon_sym_volatile] = ACTIONS(6967), + [anon_sym_restrict] = ACTIONS(6967), + [anon_sym___restrict__] = ACTIONS(6967), + [anon_sym__Atomic] = ACTIONS(6967), + [anon_sym__Noreturn] = ACTIONS(6967), + [anon_sym_noreturn] = ACTIONS(6967), + [anon_sym__Nonnull] = ACTIONS(6967), + [anon_sym_mutable] = ACTIONS(6967), + [anon_sym_constinit] = ACTIONS(6967), + [anon_sym_consteval] = ACTIONS(6967), + [anon_sym_alignas] = ACTIONS(6967), + [anon_sym__Alignas] = ACTIONS(6967), + [sym_primitive_type] = ACTIONS(6967), + [anon_sym_enum] = ACTIONS(6967), + [anon_sym_class] = ACTIONS(6967), + [anon_sym_struct] = ACTIONS(6967), + [anon_sym_union] = ACTIONS(6967), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_typename] = ACTIONS(6967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6967), + [anon_sym_decltype] = ACTIONS(6967), + [anon_sym_explicit] = ACTIONS(6967), + [anon_sym_template] = ACTIONS(6967), + [anon_sym_operator] = ACTIONS(6967), + [anon_sym_friend] = ACTIONS(6967), + [anon_sym_concept] = ACTIONS(6967), + [anon_sym_LBRACK_COLON] = ACTIONS(6969), + }, + [STATE(3594)] = { + [sym_identifier] = ACTIONS(5233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LPAREN2] = ACTIONS(5235), + [anon_sym_TILDE] = ACTIONS(5235), + [anon_sym_STAR] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5235), + [anon_sym_AMP] = ACTIONS(5233), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym___extension__] = ACTIONS(5233), + [anon_sym_virtual] = ACTIONS(5233), + [anon_sym_extern] = ACTIONS(5233), + [anon_sym___attribute__] = ACTIONS(5233), + [anon_sym___attribute] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_COLON_COLON] = ACTIONS(5235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), + [anon_sym___declspec] = ACTIONS(5233), + [anon_sym___based] = ACTIONS(5233), + [anon_sym___cdecl] = ACTIONS(5233), + [anon_sym___clrcall] = ACTIONS(5233), + [anon_sym___stdcall] = ACTIONS(5233), + [anon_sym___fastcall] = ACTIONS(5233), + [anon_sym___thiscall] = ACTIONS(5233), + [anon_sym___vectorcall] = ACTIONS(5233), + [anon_sym_LBRACE] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5233), + [anon_sym_static] = ACTIONS(5233), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_register] = ACTIONS(5233), + [anon_sym_inline] = ACTIONS(5233), + [anon_sym___inline] = ACTIONS(5233), + [anon_sym___inline__] = ACTIONS(5233), + [anon_sym___forceinline] = ACTIONS(5233), + [anon_sym_thread_local] = ACTIONS(5233), + [anon_sym___thread] = ACTIONS(5233), + [anon_sym_const] = ACTIONS(5233), + [anon_sym_constexpr] = ACTIONS(5233), + [anon_sym_volatile] = ACTIONS(5233), + [anon_sym_restrict] = ACTIONS(5233), + [anon_sym___restrict__] = ACTIONS(5233), + [anon_sym__Atomic] = ACTIONS(5233), + [anon_sym__Noreturn] = ACTIONS(5233), + [anon_sym_noreturn] = ACTIONS(5233), + [anon_sym__Nonnull] = ACTIONS(5233), + [anon_sym_mutable] = ACTIONS(5233), + [anon_sym_constinit] = ACTIONS(5233), + [anon_sym_consteval] = ACTIONS(5233), + [anon_sym_alignas] = ACTIONS(5233), + [anon_sym__Alignas] = ACTIONS(5233), + [anon_sym_DASH_GT] = ACTIONS(5235), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5233), + [anon_sym_final] = ACTIONS(5233), + [anon_sym_override] = ACTIONS(5233), + [anon_sym_explicit] = ACTIONS(5233), + [anon_sym_private] = ACTIONS(5233), + [anon_sym_template] = ACTIONS(5233), + [anon_sym_GT2] = ACTIONS(5235), + [anon_sym_operator] = ACTIONS(5233), + [anon_sym_public] = ACTIONS(5233), + [anon_sym_protected] = ACTIONS(5233), + [anon_sym_noexcept] = ACTIONS(5233), + [anon_sym_throw] = ACTIONS(5233), + [anon_sym_requires] = ACTIONS(5233), + [anon_sym_LBRACK_COLON] = ACTIONS(5235), + }, + [STATE(3595)] = { + [sym_argument_list] = STATE(3748), + [sym_initializer_list] = STATE(3748), + [sym_identifier] = ACTIONS(9117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9119), + [anon_sym_COMMA] = ACTIONS(9119), + [anon_sym_RPAREN] = ACTIONS(9119), + [aux_sym_preproc_if_token2] = ACTIONS(9119), + [aux_sym_preproc_else_token1] = ACTIONS(9119), + [aux_sym_preproc_elif_token1] = ACTIONS(9117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9119), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9117), + [anon_sym_PLUS] = ACTIONS(9117), + [anon_sym_STAR] = ACTIONS(9117), + [anon_sym_SLASH] = ACTIONS(9117), + [anon_sym_PERCENT] = ACTIONS(9117), + [anon_sym_PIPE_PIPE] = ACTIONS(9119), + [anon_sym_AMP_AMP] = ACTIONS(9119), + [anon_sym_PIPE] = ACTIONS(9117), + [anon_sym_CARET] = ACTIONS(9117), + [anon_sym_AMP] = ACTIONS(9117), + [anon_sym_EQ_EQ] = ACTIONS(9119), + [anon_sym_BANG_EQ] = ACTIONS(9119), + [anon_sym_GT] = ACTIONS(9117), + [anon_sym_GT_EQ] = ACTIONS(9119), + [anon_sym_LT_EQ] = ACTIONS(9117), + [anon_sym_LT] = ACTIONS(9117), + [anon_sym_LT_LT] = ACTIONS(9117), + [anon_sym_GT_GT] = ACTIONS(9117), + [anon_sym_SEMI] = ACTIONS(9119), + [anon_sym___attribute__] = ACTIONS(9117), + [anon_sym___attribute] = ACTIONS(9117), + [anon_sym_COLON] = ACTIONS(9117), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9119), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(9119), + [anon_sym_LBRACK] = ACTIONS(9119), + [anon_sym_EQ] = ACTIONS(9117), + [anon_sym_QMARK] = ACTIONS(9119), + [anon_sym_STAR_EQ] = ACTIONS(9119), + [anon_sym_SLASH_EQ] = ACTIONS(9119), + [anon_sym_PERCENT_EQ] = ACTIONS(9119), + [anon_sym_PLUS_EQ] = ACTIONS(9119), + [anon_sym_DASH_EQ] = ACTIONS(9119), + [anon_sym_LT_LT_EQ] = ACTIONS(9119), + [anon_sym_GT_GT_EQ] = ACTIONS(9119), + [anon_sym_AMP_EQ] = ACTIONS(9119), + [anon_sym_CARET_EQ] = ACTIONS(9119), + [anon_sym_PIPE_EQ] = ACTIONS(9119), + [anon_sym_and_eq] = ACTIONS(9117), + [anon_sym_or_eq] = ACTIONS(9117), + [anon_sym_xor_eq] = ACTIONS(9117), + [anon_sym_LT_EQ_GT] = ACTIONS(9119), + [anon_sym_or] = ACTIONS(9117), + [anon_sym_and] = ACTIONS(9117), + [anon_sym_bitor] = ACTIONS(9117), + [anon_sym_xor] = ACTIONS(9117), + [anon_sym_bitand] = ACTIONS(9117), + [anon_sym_not_eq] = ACTIONS(9117), + [anon_sym_DASH_DASH] = ACTIONS(9119), + [anon_sym_PLUS_PLUS] = ACTIONS(9119), + [anon_sym_DOT] = ACTIONS(9117), + [anon_sym_DOT_STAR] = ACTIONS(9119), + [anon_sym_DASH_GT] = ACTIONS(9119), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9119), + }, + [STATE(3596)] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_TILDE] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym_virtual] = ACTIONS(7185), + [anon_sym_extern] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_using] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7183), + [anon_sym___declspec] = ACTIONS(7185), + [anon_sym___based] = ACTIONS(7185), + [anon_sym___cdecl] = ACTIONS(7185), + [anon_sym___clrcall] = ACTIONS(7185), + [anon_sym___stdcall] = ACTIONS(7185), + [anon_sym___fastcall] = ACTIONS(7185), + [anon_sym___thiscall] = ACTIONS(7185), + [anon_sym___vectorcall] = ACTIONS(7185), + [anon_sym_signed] = ACTIONS(7185), + [anon_sym_unsigned] = ACTIONS(7185), + [anon_sym_long] = ACTIONS(7185), + [anon_sym_short] = ACTIONS(7185), + [anon_sym_LBRACK] = ACTIONS(7185), + [anon_sym_static] = ACTIONS(7185), + [anon_sym_register] = ACTIONS(7185), + [anon_sym_inline] = ACTIONS(7185), + [anon_sym___inline] = ACTIONS(7185), + [anon_sym___inline__] = ACTIONS(7185), + [anon_sym___forceinline] = ACTIONS(7185), + [anon_sym_thread_local] = ACTIONS(7185), + [anon_sym___thread] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_mutable] = ACTIONS(7185), + [anon_sym_constinit] = ACTIONS(7185), + [anon_sym_consteval] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [sym_primitive_type] = ACTIONS(7185), + [anon_sym_enum] = ACTIONS(7185), + [anon_sym_class] = ACTIONS(7185), + [anon_sym_struct] = ACTIONS(7185), + [anon_sym_union] = ACTIONS(7185), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_typename] = ACTIONS(7185), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7185), + [anon_sym_decltype] = ACTIONS(7185), + [anon_sym_explicit] = ACTIONS(7185), + [anon_sym_template] = ACTIONS(7185), + [anon_sym_operator] = ACTIONS(7185), + [anon_sym_friend] = ACTIONS(7185), + [anon_sym_concept] = ACTIONS(7185), + [anon_sym_LBRACK_COLON] = ACTIONS(7183), + }, + [STATE(3597)] = { + [sym_attribute_specifier] = STATE(4374), + [sym_attribute_declaration] = STATE(4622), + [sym_gnu_asm_expression] = STATE(8992), + [sym_virtual_specifier] = STATE(4709), + [sym__function_exception_specification] = STATE(3987), + [sym__function_attributes_end] = STATE(5909), + [sym__function_postfix] = STATE(5305), + [sym_trailing_return_type] = STATE(6006), + [sym_noexcept] = STATE(3987), + [sym_throw_specifier] = STATE(3987), + [sym_requires_clause] = STATE(5305), + [aux_sym_type_definition_repeat1] = STATE(4374), + [aux_sym_attributed_declarator_repeat1] = STATE(4622), + [aux_sym__function_postfix_repeat1] = STATE(4709), + [sym_identifier] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), + [anon_sym_COMMA] = ACTIONS(7627), + [aux_sym_preproc_if_token2] = ACTIONS(7627), + [aux_sym_preproc_else_token1] = ACTIONS(7627), + [aux_sym_preproc_elif_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), + [anon_sym_LPAREN2] = ACTIONS(7627), + [anon_sym_DASH] = ACTIONS(7629), + [anon_sym_PLUS] = ACTIONS(7629), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7627), + [anon_sym_AMP_AMP] = ACTIONS(7627), + [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7629), + [anon_sym_EQ_EQ] = ACTIONS(7627), + [anon_sym_BANG_EQ] = ACTIONS(7627), + [anon_sym_GT] = ACTIONS(7629), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7629), + [anon_sym_LT] = ACTIONS(7629), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7627), + [anon_sym_PLUS_PLUS] = ACTIONS(7627), + [anon_sym_asm] = ACTIONS(6129), + [anon_sym___asm__] = ACTIONS(6129), + [anon_sym___asm] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(7629), + [anon_sym_DOT_STAR] = ACTIONS(7627), + [anon_sym_DASH_GT] = ACTIONS(8996), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9121), + [anon_sym_override] = ACTIONS(9121), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(9124), + }, + [STATE(3598)] = { + [sym_attribute_declaration] = STATE(3648), + [sym_parameter_list] = STATE(3121), + [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [sym_identifier] = ACTIONS(9127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9129), + [anon_sym_COMMA] = ACTIONS(9129), + [anon_sym_RPAREN] = ACTIONS(9129), + [aux_sym_preproc_if_token2] = ACTIONS(9129), + [aux_sym_preproc_else_token1] = ACTIONS(9129), + [aux_sym_preproc_elif_token1] = ACTIONS(9127), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9129), + [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_DASH] = ACTIONS(9127), + [anon_sym_PLUS] = ACTIONS(9127), + [anon_sym_STAR] = ACTIONS(9127), + [anon_sym_SLASH] = ACTIONS(9127), + [anon_sym_PERCENT] = ACTIONS(9127), + [anon_sym_PIPE_PIPE] = ACTIONS(9129), + [anon_sym_AMP_AMP] = ACTIONS(9129), + [anon_sym_PIPE] = ACTIONS(9127), + [anon_sym_CARET] = ACTIONS(9127), + [anon_sym_AMP] = ACTIONS(9127), + [anon_sym_EQ_EQ] = ACTIONS(9129), + [anon_sym_BANG_EQ] = ACTIONS(9129), + [anon_sym_GT] = ACTIONS(9127), + [anon_sym_GT_EQ] = ACTIONS(9129), + [anon_sym_LT_EQ] = ACTIONS(9127), + [anon_sym_LT] = ACTIONS(9127), + [anon_sym_LT_LT] = ACTIONS(9127), + [anon_sym_GT_GT] = ACTIONS(9127), + [anon_sym_SEMI] = ACTIONS(9129), + [anon_sym___attribute__] = ACTIONS(9127), + [anon_sym___attribute] = ACTIONS(9127), + [anon_sym_COLON] = ACTIONS(9127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(9129), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_EQ] = ACTIONS(9127), + [anon_sym_QMARK] = ACTIONS(9129), + [anon_sym_STAR_EQ] = ACTIONS(9129), + [anon_sym_SLASH_EQ] = ACTIONS(9129), + [anon_sym_PERCENT_EQ] = ACTIONS(9129), + [anon_sym_PLUS_EQ] = ACTIONS(9129), + [anon_sym_DASH_EQ] = ACTIONS(9129), + [anon_sym_LT_LT_EQ] = ACTIONS(9129), + [anon_sym_GT_GT_EQ] = ACTIONS(9129), + [anon_sym_AMP_EQ] = ACTIONS(9129), + [anon_sym_CARET_EQ] = ACTIONS(9129), + [anon_sym_PIPE_EQ] = ACTIONS(9129), + [anon_sym_and_eq] = ACTIONS(9127), + [anon_sym_or_eq] = ACTIONS(9127), + [anon_sym_xor_eq] = ACTIONS(9127), + [anon_sym_LT_EQ_GT] = ACTIONS(9129), + [anon_sym_or] = ACTIONS(9127), + [anon_sym_and] = ACTIONS(9127), + [anon_sym_bitor] = ACTIONS(9127), + [anon_sym_xor] = ACTIONS(9127), + [anon_sym_bitand] = ACTIONS(9127), + [anon_sym_not_eq] = ACTIONS(9127), + [anon_sym_DASH_DASH] = ACTIONS(9129), + [anon_sym_PLUS_PLUS] = ACTIONS(9129), + [anon_sym_DOT] = ACTIONS(9127), + [anon_sym_DOT_STAR] = ACTIONS(9129), + [anon_sym_DASH_GT] = ACTIONS(9129), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9129), + }, + [STATE(3599)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6704), + [anon_sym_SLASH_EQ] = ACTIONS(6704), + [anon_sym_PERCENT_EQ] = ACTIONS(6704), + [anon_sym_PLUS_EQ] = ACTIONS(6704), + [anon_sym_DASH_EQ] = ACTIONS(6704), + [anon_sym_LT_LT_EQ] = ACTIONS(6704), + [anon_sym_GT_GT_EQ] = ACTIONS(6704), + [anon_sym_AMP_EQ] = ACTIONS(6704), + [anon_sym_CARET_EQ] = ACTIONS(6704), + [anon_sym_PIPE_EQ] = ACTIONS(6704), + [anon_sym_and_eq] = ACTIONS(6704), + [anon_sym_or_eq] = ACTIONS(6704), + [anon_sym_xor_eq] = ACTIONS(6704), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3600)] = { + [sym_string_literal] = STATE(3637), + [sym_raw_string_literal] = STATE(3637), + [aux_sym_concatenated_string_repeat1] = STATE(3637), + [sym_identifier] = ACTIONS(9131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), + [anon_sym_COMMA] = ACTIONS(8116), + [anon_sym_LPAREN2] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8118), + [anon_sym_STAR] = ACTIONS(8118), + [anon_sym_SLASH] = ACTIONS(8118), + [anon_sym_PERCENT] = ACTIONS(8118), + [anon_sym_PIPE_PIPE] = ACTIONS(8116), + [anon_sym_AMP_AMP] = ACTIONS(8116), + [anon_sym_PIPE] = ACTIONS(8118), + [anon_sym_CARET] = ACTIONS(8118), + [anon_sym_AMP] = ACTIONS(8118), + [anon_sym_EQ_EQ] = ACTIONS(8116), + [anon_sym_BANG_EQ] = ACTIONS(8116), + [anon_sym_GT] = ACTIONS(8118), + [anon_sym_GT_EQ] = ACTIONS(8116), + [anon_sym_LT_EQ] = ACTIONS(8118), + [anon_sym_LT] = ACTIONS(8118), + [anon_sym_LT_LT] = ACTIONS(8118), + [anon_sym_GT_GT] = ACTIONS(8118), + [anon_sym_LBRACK] = ACTIONS(8116), + [anon_sym_RBRACK] = ACTIONS(8116), + [anon_sym_EQ] = ACTIONS(8118), + [anon_sym_QMARK] = ACTIONS(8116), + [anon_sym_STAR_EQ] = ACTIONS(8116), + [anon_sym_SLASH_EQ] = ACTIONS(8116), + [anon_sym_PERCENT_EQ] = ACTIONS(8116), + [anon_sym_PLUS_EQ] = ACTIONS(8116), + [anon_sym_DASH_EQ] = ACTIONS(8116), + [anon_sym_LT_LT_EQ] = ACTIONS(8116), + [anon_sym_GT_GT_EQ] = ACTIONS(8116), + [anon_sym_AMP_EQ] = ACTIONS(8116), + [anon_sym_CARET_EQ] = ACTIONS(8116), + [anon_sym_PIPE_EQ] = ACTIONS(8116), + [anon_sym_and_eq] = ACTIONS(8118), + [anon_sym_or_eq] = ACTIONS(8118), + [anon_sym_xor_eq] = ACTIONS(8118), + [anon_sym_LT_EQ_GT] = ACTIONS(8116), + [anon_sym_or] = ACTIONS(8118), + [anon_sym_and] = ACTIONS(8118), + [anon_sym_bitor] = ACTIONS(8118), + [anon_sym_xor] = ACTIONS(8118), + [anon_sym_bitand] = ACTIONS(8118), + [anon_sym_not_eq] = ACTIONS(8118), + [anon_sym_DASH_DASH] = ACTIONS(8116), + [anon_sym_PLUS_PLUS] = ACTIONS(8116), + [anon_sym_DOT] = ACTIONS(8118), + [anon_sym_DOT_STAR] = ACTIONS(8116), + [anon_sym_DASH_GT] = ACTIONS(8116), + [anon_sym_L_DQUOTE] = ACTIONS(6676), + [anon_sym_u_DQUOTE] = ACTIONS(6676), + [anon_sym_U_DQUOTE] = ACTIONS(6676), + [anon_sym_u8_DQUOTE] = ACTIONS(6676), + [anon_sym_DQUOTE] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6682), + [anon_sym_LR_DQUOTE] = ACTIONS(6682), + [anon_sym_uR_DQUOTE] = ACTIONS(6682), + [anon_sym_UR_DQUOTE] = ACTIONS(6682), + [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + [sym_literal_suffix] = ACTIONS(8118), + }, + [STATE(3601)] = { + [sym_identifier] = ACTIONS(6226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), + [anon_sym_COMMA] = ACTIONS(6233), + [anon_sym_RPAREN] = ACTIONS(6233), + [anon_sym_LPAREN2] = ACTIONS(6233), + [anon_sym_STAR] = ACTIONS(6233), + [anon_sym_PIPE_PIPE] = ACTIONS(6233), + [anon_sym_AMP_AMP] = ACTIONS(6233), + [anon_sym_AMP] = ACTIONS(6226), + [anon_sym_SEMI] = ACTIONS(6233), + [anon_sym___extension__] = ACTIONS(6226), + [anon_sym_virtual] = ACTIONS(6226), + [anon_sym_extern] = ACTIONS(6226), + [anon_sym___attribute__] = ACTIONS(6226), + [anon_sym___attribute] = ACTIONS(6226), + [anon_sym_COLON] = ACTIONS(6226), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), + [anon_sym___declspec] = ACTIONS(6226), + [anon_sym___based] = ACTIONS(6226), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_signed] = ACTIONS(6226), + [anon_sym_unsigned] = ACTIONS(6226), + [anon_sym_long] = ACTIONS(6226), + [anon_sym_short] = ACTIONS(6226), + [anon_sym_LBRACK] = ACTIONS(6226), + [anon_sym_static] = ACTIONS(6226), + [anon_sym_EQ] = ACTIONS(6233), + [anon_sym_register] = ACTIONS(6226), + [anon_sym_inline] = ACTIONS(6226), + [anon_sym___inline] = ACTIONS(6226), + [anon_sym___inline__] = ACTIONS(6226), + [anon_sym___forceinline] = ACTIONS(6226), + [anon_sym_thread_local] = ACTIONS(6226), + [anon_sym___thread] = ACTIONS(6226), + [anon_sym_const] = ACTIONS(6226), + [anon_sym_constexpr] = ACTIONS(6226), + [anon_sym_volatile] = ACTIONS(6226), + [anon_sym_restrict] = ACTIONS(6226), + [anon_sym___restrict__] = ACTIONS(6226), + [anon_sym__Atomic] = ACTIONS(6226), + [anon_sym__Noreturn] = ACTIONS(6226), + [anon_sym_noreturn] = ACTIONS(6226), + [anon_sym__Nonnull] = ACTIONS(6226), + [anon_sym_mutable] = ACTIONS(6226), + [anon_sym_constinit] = ACTIONS(6226), + [anon_sym_consteval] = ACTIONS(6226), + [anon_sym_alignas] = ACTIONS(6226), + [anon_sym__Alignas] = ACTIONS(6226), + [sym_primitive_type] = ACTIONS(6226), + [anon_sym_or] = ACTIONS(6226), + [anon_sym_and] = ACTIONS(6226), + [anon_sym_asm] = ACTIONS(6226), + [anon_sym___asm__] = ACTIONS(6226), + [anon_sym___asm] = ACTIONS(6226), + [anon_sym_DASH_GT] = ACTIONS(6233), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(6226), + [anon_sym_final] = ACTIONS(6226), + [anon_sym_override] = ACTIONS(6226), + [anon_sym_GT2] = ACTIONS(6233), + [anon_sym_try] = ACTIONS(6226), + [anon_sym_noexcept] = ACTIONS(6226), + [anon_sym_throw] = ACTIONS(6226), + [anon_sym_requires] = ACTIONS(6226), + }, + [STATE(3602)] = { + [sym_string_literal] = STATE(5440), + [sym_template_argument_list] = STATE(6726), + [sym_raw_string_literal] = STATE(5440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6706), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6690), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6692), + [anon_sym_SLASH_EQ] = ACTIONS(6692), + [anon_sym_PERCENT_EQ] = ACTIONS(6692), + [anon_sym_PLUS_EQ] = ACTIONS(6692), + [anon_sym_DASH_EQ] = ACTIONS(6692), + [anon_sym_LT_LT_EQ] = ACTIONS(6692), + [anon_sym_GT_GT_EQ] = ACTIONS(6690), + [anon_sym_AMP_EQ] = ACTIONS(6692), + [anon_sym_CARET_EQ] = ACTIONS(6692), + [anon_sym_PIPE_EQ] = ACTIONS(6692), + [anon_sym_and_eq] = ACTIONS(6692), + [anon_sym_or_eq] = ACTIONS(6692), + [anon_sym_xor_eq] = ACTIONS(6692), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6694), + [anon_sym_u_DQUOTE] = ACTIONS(6694), + [anon_sym_U_DQUOTE] = ACTIONS(6694), + [anon_sym_u8_DQUOTE] = ACTIONS(6694), + [anon_sym_DQUOTE] = ACTIONS(6694), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5253), + [anon_sym_R_DQUOTE] = ACTIONS(6700), + [anon_sym_LR_DQUOTE] = ACTIONS(6700), + [anon_sym_uR_DQUOTE] = ACTIONS(6700), + [anon_sym_UR_DQUOTE] = ACTIONS(6700), + [anon_sym_u8R_DQUOTE] = ACTIONS(6700), + }, + [STATE(3603)] = { + [sym_string_literal] = STATE(3600), + [sym_raw_string_literal] = STATE(3600), + [aux_sym_concatenated_string_repeat1] = STATE(3600), + [sym_identifier] = ACTIONS(9133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_LPAREN2] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(8127), + [anon_sym_STAR] = ACTIONS(8127), + [anon_sym_SLASH] = ACTIONS(8127), + [anon_sym_PERCENT] = ACTIONS(8127), + [anon_sym_PIPE_PIPE] = ACTIONS(8125), + [anon_sym_AMP_AMP] = ACTIONS(8125), + [anon_sym_PIPE] = ACTIONS(8127), + [anon_sym_CARET] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(8127), + [anon_sym_EQ_EQ] = ACTIONS(8125), + [anon_sym_BANG_EQ] = ACTIONS(8125), + [anon_sym_GT] = ACTIONS(8127), + [anon_sym_GT_EQ] = ACTIONS(8125), + [anon_sym_LT_EQ] = ACTIONS(8127), + [anon_sym_LT] = ACTIONS(8127), + [anon_sym_LT_LT] = ACTIONS(8127), + [anon_sym_GT_GT] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym_RBRACK] = ACTIONS(8125), + [anon_sym_EQ] = ACTIONS(8127), + [anon_sym_QMARK] = ACTIONS(8125), + [anon_sym_STAR_EQ] = ACTIONS(8125), + [anon_sym_SLASH_EQ] = ACTIONS(8125), + [anon_sym_PERCENT_EQ] = ACTIONS(8125), + [anon_sym_PLUS_EQ] = ACTIONS(8125), + [anon_sym_DASH_EQ] = ACTIONS(8125), + [anon_sym_LT_LT_EQ] = ACTIONS(8125), + [anon_sym_GT_GT_EQ] = ACTIONS(8125), + [anon_sym_AMP_EQ] = ACTIONS(8125), + [anon_sym_CARET_EQ] = ACTIONS(8125), + [anon_sym_PIPE_EQ] = ACTIONS(8125), + [anon_sym_and_eq] = ACTIONS(8127), + [anon_sym_or_eq] = ACTIONS(8127), + [anon_sym_xor_eq] = ACTIONS(8127), + [anon_sym_LT_EQ_GT] = ACTIONS(8125), + [anon_sym_or] = ACTIONS(8127), + [anon_sym_and] = ACTIONS(8127), + [anon_sym_bitor] = ACTIONS(8127), + [anon_sym_xor] = ACTIONS(8127), + [anon_sym_bitand] = ACTIONS(8127), + [anon_sym_not_eq] = ACTIONS(8127), + [anon_sym_DASH_DASH] = ACTIONS(8125), + [anon_sym_PLUS_PLUS] = ACTIONS(8125), + [anon_sym_DOT] = ACTIONS(8127), + [anon_sym_DOT_STAR] = ACTIONS(8125), + [anon_sym_DASH_GT] = ACTIONS(8125), + [anon_sym_L_DQUOTE] = ACTIONS(6676), + [anon_sym_u_DQUOTE] = ACTIONS(6676), + [anon_sym_U_DQUOTE] = ACTIONS(6676), + [anon_sym_u8_DQUOTE] = ACTIONS(6676), + [anon_sym_DQUOTE] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6682), + [anon_sym_LR_DQUOTE] = ACTIONS(6682), + [anon_sym_uR_DQUOTE] = ACTIONS(6682), + [anon_sym_UR_DQUOTE] = ACTIONS(6682), + [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + [sym_literal_suffix] = ACTIONS(8127), + }, + [STATE(3604)] = { + [sym_template_argument_list] = STATE(3605), + [sym_identifier] = ACTIONS(9135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9137), + [anon_sym_COMMA] = ACTIONS(9137), + [anon_sym_RPAREN] = ACTIONS(9137), + [aux_sym_preproc_if_token2] = ACTIONS(9137), + [aux_sym_preproc_else_token1] = ACTIONS(9137), + [aux_sym_preproc_elif_token1] = ACTIONS(9135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9137), + [anon_sym_LPAREN2] = ACTIONS(9137), + [anon_sym_DASH] = ACTIONS(9135), + [anon_sym_PLUS] = ACTIONS(9135), + [anon_sym_STAR] = ACTIONS(9135), + [anon_sym_SLASH] = ACTIONS(9135), + [anon_sym_PERCENT] = ACTIONS(9135), + [anon_sym_PIPE_PIPE] = ACTIONS(9137), + [anon_sym_AMP_AMP] = ACTIONS(9137), + [anon_sym_PIPE] = ACTIONS(9135), + [anon_sym_CARET] = ACTIONS(9135), + [anon_sym_AMP] = ACTIONS(9135), + [anon_sym_EQ_EQ] = ACTIONS(9137), + [anon_sym_BANG_EQ] = ACTIONS(9137), + [anon_sym_GT] = ACTIONS(9135), + [anon_sym_GT_EQ] = ACTIONS(9137), + [anon_sym_LT_EQ] = ACTIONS(9135), + [anon_sym_LT] = ACTIONS(9139), + [anon_sym_LT_LT] = ACTIONS(9135), + [anon_sym_GT_GT] = ACTIONS(9135), + [anon_sym_SEMI] = ACTIONS(9137), + [anon_sym___attribute__] = ACTIONS(9135), + [anon_sym___attribute] = ACTIONS(9135), + [anon_sym_COLON] = ACTIONS(9135), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9137), + [anon_sym_RBRACE] = ACTIONS(9137), + [anon_sym_LBRACK] = ACTIONS(9137), + [anon_sym_EQ] = ACTIONS(9135), + [anon_sym_QMARK] = ACTIONS(9137), + [anon_sym_STAR_EQ] = ACTIONS(9137), + [anon_sym_SLASH_EQ] = ACTIONS(9137), + [anon_sym_PERCENT_EQ] = ACTIONS(9137), + [anon_sym_PLUS_EQ] = ACTIONS(9137), + [anon_sym_DASH_EQ] = ACTIONS(9137), + [anon_sym_LT_LT_EQ] = ACTIONS(9137), + [anon_sym_GT_GT_EQ] = ACTIONS(9137), + [anon_sym_AMP_EQ] = ACTIONS(9137), + [anon_sym_CARET_EQ] = ACTIONS(9137), + [anon_sym_PIPE_EQ] = ACTIONS(9137), + [anon_sym_and_eq] = ACTIONS(9135), + [anon_sym_or_eq] = ACTIONS(9135), + [anon_sym_xor_eq] = ACTIONS(9135), + [anon_sym_LT_EQ_GT] = ACTIONS(9137), + [anon_sym_or] = ACTIONS(9135), + [anon_sym_and] = ACTIONS(9135), + [anon_sym_bitor] = ACTIONS(9135), + [anon_sym_xor] = ACTIONS(9135), + [anon_sym_bitand] = ACTIONS(9135), + [anon_sym_not_eq] = ACTIONS(9135), + [anon_sym_DASH_DASH] = ACTIONS(9137), + [anon_sym_PLUS_PLUS] = ACTIONS(9137), + [anon_sym_DOT] = ACTIONS(9135), + [anon_sym_DOT_STAR] = ACTIONS(9137), + [anon_sym_DASH_GT] = ACTIONS(9137), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9137), + }, + [STATE(3605)] = { + [sym_identifier] = ACTIONS(9142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9144), + [anon_sym_COMMA] = ACTIONS(9144), + [anon_sym_RPAREN] = ACTIONS(9144), + [aux_sym_preproc_if_token2] = ACTIONS(9144), + [aux_sym_preproc_else_token1] = ACTIONS(9144), + [aux_sym_preproc_elif_token1] = ACTIONS(9142), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9144), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9144), + [anon_sym_LPAREN2] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9142), + [anon_sym_STAR] = ACTIONS(9142), + [anon_sym_SLASH] = ACTIONS(9142), + [anon_sym_PERCENT] = ACTIONS(9142), + [anon_sym_PIPE_PIPE] = ACTIONS(9144), + [anon_sym_AMP_AMP] = ACTIONS(9144), + [anon_sym_PIPE] = ACTIONS(9142), + [anon_sym_CARET] = ACTIONS(9142), + [anon_sym_AMP] = ACTIONS(9142), + [anon_sym_EQ_EQ] = ACTIONS(9144), + [anon_sym_BANG_EQ] = ACTIONS(9144), + [anon_sym_GT] = ACTIONS(9142), + [anon_sym_GT_EQ] = ACTIONS(9144), + [anon_sym_LT_EQ] = ACTIONS(9142), + [anon_sym_LT] = ACTIONS(9142), + [anon_sym_LT_LT] = ACTIONS(9142), + [anon_sym_GT_GT] = ACTIONS(9142), + [anon_sym_SEMI] = ACTIONS(9144), + [anon_sym___attribute__] = ACTIONS(9142), + [anon_sym___attribute] = ACTIONS(9142), + [anon_sym_COLON] = ACTIONS(9142), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9144), + [anon_sym_LBRACE] = ACTIONS(9144), + [anon_sym_RBRACE] = ACTIONS(9144), + [anon_sym_LBRACK] = ACTIONS(9144), + [anon_sym_EQ] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [anon_sym_STAR_EQ] = ACTIONS(9144), + [anon_sym_SLASH_EQ] = ACTIONS(9144), + [anon_sym_PERCENT_EQ] = ACTIONS(9144), + [anon_sym_PLUS_EQ] = ACTIONS(9144), + [anon_sym_DASH_EQ] = ACTIONS(9144), + [anon_sym_LT_LT_EQ] = ACTIONS(9144), + [anon_sym_GT_GT_EQ] = ACTIONS(9144), + [anon_sym_AMP_EQ] = ACTIONS(9144), + [anon_sym_CARET_EQ] = ACTIONS(9144), + [anon_sym_PIPE_EQ] = ACTIONS(9144), + [anon_sym_and_eq] = ACTIONS(9142), + [anon_sym_or_eq] = ACTIONS(9142), + [anon_sym_xor_eq] = ACTIONS(9142), + [anon_sym_LT_EQ_GT] = ACTIONS(9144), + [anon_sym_or] = ACTIONS(9142), + [anon_sym_and] = ACTIONS(9142), + [anon_sym_bitor] = ACTIONS(9142), + [anon_sym_xor] = ACTIONS(9142), + [anon_sym_bitand] = ACTIONS(9142), + [anon_sym_not_eq] = ACTIONS(9142), + [anon_sym_DASH_DASH] = ACTIONS(9144), + [anon_sym_PLUS_PLUS] = ACTIONS(9144), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_DOT_STAR] = ACTIONS(9144), + [anon_sym_DASH_GT] = ACTIONS(9144), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9144), + }, + [STATE(3606)] = { + [sym_string_literal] = STATE(4004), + [sym_template_argument_list] = STATE(5595), + [sym_raw_string_literal] = STATE(4004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(6713), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6709), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6711), + [anon_sym_SLASH_EQ] = ACTIONS(6711), + [anon_sym_PERCENT_EQ] = ACTIONS(6711), + [anon_sym_PLUS_EQ] = ACTIONS(6711), + [anon_sym_DASH_EQ] = ACTIONS(6711), + [anon_sym_LT_LT_EQ] = ACTIONS(6711), + [anon_sym_GT_GT_EQ] = ACTIONS(6711), + [anon_sym_AMP_EQ] = ACTIONS(6711), + [anon_sym_CARET_EQ] = ACTIONS(6711), + [anon_sym_PIPE_EQ] = ACTIONS(6711), + [anon_sym_and_eq] = ACTIONS(6711), + [anon_sym_or_eq] = ACTIONS(6711), + [anon_sym_xor_eq] = ACTIONS(6711), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(3359), + [anon_sym_u_DQUOTE] = ACTIONS(3359), + [anon_sym_U_DQUOTE] = ACTIONS(3359), + [anon_sym_u8_DQUOTE] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3369), + [anon_sym_LR_DQUOTE] = ACTIONS(3369), + [anon_sym_uR_DQUOTE] = ACTIONS(3369), + [anon_sym_UR_DQUOTE] = ACTIONS(3369), + [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + }, + [STATE(3607)] = { + [sym_string_literal] = STATE(5466), + [sym_template_argument_list] = STATE(6719), + [sym_raw_string_literal] = STATE(5466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), + [anon_sym_COMMA] = ACTIONS(9146), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8603), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(9148), + [anon_sym_EQ] = ACTIONS(8990), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6617), + [anon_sym_SLASH_EQ] = ACTIONS(6617), + [anon_sym_PERCENT_EQ] = ACTIONS(6617), + [anon_sym_PLUS_EQ] = ACTIONS(6617), + [anon_sym_DASH_EQ] = ACTIONS(6617), + [anon_sym_LT_LT_EQ] = ACTIONS(6617), + [anon_sym_GT_GT_EQ] = ACTIONS(6617), + [anon_sym_AMP_EQ] = ACTIONS(6617), + [anon_sym_CARET_EQ] = ACTIONS(6617), + [anon_sym_PIPE_EQ] = ACTIONS(6617), + [anon_sym_and_eq] = ACTIONS(6617), + [anon_sym_or_eq] = ACTIONS(6617), + [anon_sym_xor_eq] = ACTIONS(6617), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6619), + [anon_sym_u_DQUOTE] = ACTIONS(6619), + [anon_sym_U_DQUOTE] = ACTIONS(6619), + [anon_sym_u8_DQUOTE] = ACTIONS(6619), + [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6625), + [anon_sym_LR_DQUOTE] = ACTIONS(6625), + [anon_sym_uR_DQUOTE] = ACTIONS(6625), + [anon_sym_UR_DQUOTE] = ACTIONS(6625), + [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + }, + [STATE(3608)] = { + [sym_template_argument_list] = STATE(1956), + [sym_identifier] = ACTIONS(6753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), + [anon_sym_COMMA] = ACTIONS(6758), + [anon_sym_RPAREN] = ACTIONS(6758), + [aux_sym_preproc_if_token2] = ACTIONS(6758), + [aux_sym_preproc_else_token1] = ACTIONS(6758), + [aux_sym_preproc_elif_token1] = ACTIONS(6753), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6758), + [anon_sym_LPAREN2] = ACTIONS(6758), + [anon_sym_DASH] = ACTIONS(6753), + [anon_sym_PLUS] = ACTIONS(6753), + [anon_sym_STAR] = ACTIONS(6753), + [anon_sym_SLASH] = ACTIONS(6753), + [anon_sym_PERCENT] = ACTIONS(6753), + [anon_sym_PIPE_PIPE] = ACTIONS(6758), + [anon_sym_AMP_AMP] = ACTIONS(6758), + [anon_sym_PIPE] = ACTIONS(6753), + [anon_sym_CARET] = ACTIONS(6753), + [anon_sym_AMP] = ACTIONS(6753), + [anon_sym_EQ_EQ] = ACTIONS(6758), + [anon_sym_BANG_EQ] = ACTIONS(6758), + [anon_sym_GT] = ACTIONS(6753), + [anon_sym_GT_EQ] = ACTIONS(6758), + [anon_sym_LT_EQ] = ACTIONS(6753), + [anon_sym_LT] = ACTIONS(7037), + [anon_sym_LT_LT] = ACTIONS(6753), + [anon_sym_GT_GT] = ACTIONS(6753), + [anon_sym_SEMI] = ACTIONS(6758), + [anon_sym___attribute__] = ACTIONS(6753), + [anon_sym___attribute] = ACTIONS(6753), + [anon_sym_COLON] = ACTIONS(6753), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6758), + [anon_sym_RBRACE] = ACTIONS(6758), + [anon_sym_LBRACK] = ACTIONS(6758), + [anon_sym_EQ] = ACTIONS(6753), + [anon_sym_QMARK] = ACTIONS(6758), + [anon_sym_STAR_EQ] = ACTIONS(6758), + [anon_sym_SLASH_EQ] = ACTIONS(6758), + [anon_sym_PERCENT_EQ] = ACTIONS(6758), + [anon_sym_PLUS_EQ] = ACTIONS(6758), + [anon_sym_DASH_EQ] = ACTIONS(6758), + [anon_sym_LT_LT_EQ] = ACTIONS(6758), + [anon_sym_GT_GT_EQ] = ACTIONS(6758), + [anon_sym_AMP_EQ] = ACTIONS(6758), + [anon_sym_CARET_EQ] = ACTIONS(6758), + [anon_sym_PIPE_EQ] = ACTIONS(6758), + [anon_sym_and_eq] = ACTIONS(6753), + [anon_sym_or_eq] = ACTIONS(6753), + [anon_sym_xor_eq] = ACTIONS(6753), + [anon_sym_LT_EQ_GT] = ACTIONS(6758), + [anon_sym_or] = ACTIONS(6753), + [anon_sym_and] = ACTIONS(6753), + [anon_sym_bitor] = ACTIONS(6753), + [anon_sym_xor] = ACTIONS(6753), + [anon_sym_bitand] = ACTIONS(6753), + [anon_sym_not_eq] = ACTIONS(6753), + [anon_sym_DASH_DASH] = ACTIONS(6758), + [anon_sym_PLUS_PLUS] = ACTIONS(6758), + [anon_sym_DOT] = ACTIONS(6753), + [anon_sym_DOT_STAR] = ACTIONS(6758), + [anon_sym_DASH_GT] = ACTIONS(6758), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6758), + }, + [STATE(3609)] = { + [sym_string_literal] = STATE(3379), + [sym_raw_string_literal] = STATE(3379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(8739), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_DASH] = ACTIONS(8737), + [anon_sym_PLUS] = ACTIONS(8737), + [anon_sym_STAR] = ACTIONS(8737), + [anon_sym_SLASH] = ACTIONS(8737), + [anon_sym_PERCENT] = ACTIONS(8737), + [anon_sym_PIPE_PIPE] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_PIPE] = ACTIONS(8737), + [anon_sym_CARET] = ACTIONS(8737), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_EQ_EQ] = ACTIONS(8739), + [anon_sym_BANG_EQ] = ACTIONS(8739), + [anon_sym_GT] = ACTIONS(8737), + [anon_sym_GT_EQ] = ACTIONS(8739), + [anon_sym_LT_EQ] = ACTIONS(8737), + [anon_sym_LT] = ACTIONS(8737), + [anon_sym_LT_LT] = ACTIONS(8737), + [anon_sym_GT_GT] = ACTIONS(8737), + [anon_sym_SEMI] = ACTIONS(8739), + [anon_sym___attribute__] = ACTIONS(8737), + [anon_sym___attribute] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8739), + [anon_sym_EQ] = ACTIONS(8737), + [anon_sym_QMARK] = ACTIONS(8739), + [anon_sym_STAR_EQ] = ACTIONS(8739), + [anon_sym_SLASH_EQ] = ACTIONS(8739), + [anon_sym_PERCENT_EQ] = ACTIONS(8739), + [anon_sym_PLUS_EQ] = ACTIONS(8739), + [anon_sym_DASH_EQ] = ACTIONS(8739), + [anon_sym_LT_LT_EQ] = ACTIONS(8739), + [anon_sym_GT_GT_EQ] = ACTIONS(8739), + [anon_sym_AMP_EQ] = ACTIONS(8739), + [anon_sym_CARET_EQ] = ACTIONS(8739), + [anon_sym_PIPE_EQ] = ACTIONS(8739), + [anon_sym_and_eq] = ACTIONS(8737), + [anon_sym_or_eq] = ACTIONS(8737), + [anon_sym_xor_eq] = ACTIONS(8737), + [anon_sym_LT_EQ_GT] = ACTIONS(8739), + [anon_sym_or] = ACTIONS(8737), + [anon_sym_and] = ACTIONS(8737), + [anon_sym_bitor] = ACTIONS(8737), + [anon_sym_xor] = ACTIONS(8737), + [anon_sym_bitand] = ACTIONS(8737), + [anon_sym_not_eq] = ACTIONS(8737), + [anon_sym_DASH_DASH] = ACTIONS(8739), + [anon_sym_PLUS_PLUS] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8737), + [anon_sym_DOT_STAR] = ACTIONS(8739), + [anon_sym_DASH_GT] = ACTIONS(8739), + [anon_sym_L_DQUOTE] = ACTIONS(6543), + [anon_sym_u_DQUOTE] = ACTIONS(6543), + [anon_sym_U_DQUOTE] = ACTIONS(6543), + [anon_sym_u8_DQUOTE] = ACTIONS(6543), + [anon_sym_DQUOTE] = ACTIONS(6543), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6545), + [anon_sym_LR_DQUOTE] = ACTIONS(6545), + [anon_sym_uR_DQUOTE] = ACTIONS(6545), + [anon_sym_UR_DQUOTE] = ACTIONS(6545), + [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + [sym_literal_suffix] = ACTIONS(8737), + }, + [STATE(3610)] = { + [sym_string_literal] = STATE(3610), + [sym_raw_string_literal] = STATE(3610), + [aux_sym_concatenated_string_repeat1] = STATE(3610), + [sym_identifier] = ACTIONS(9151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), + [anon_sym_COMMA] = ACTIONS(8045), + [anon_sym_LPAREN2] = ACTIONS(8045), + [anon_sym_DASH] = ACTIONS(8047), + [anon_sym_PLUS] = ACTIONS(8047), + [anon_sym_STAR] = ACTIONS(8047), + [anon_sym_SLASH] = ACTIONS(8047), + [anon_sym_PERCENT] = ACTIONS(8047), + [anon_sym_PIPE_PIPE] = ACTIONS(8045), + [anon_sym_AMP_AMP] = ACTIONS(8045), + [anon_sym_PIPE] = ACTIONS(8047), + [anon_sym_CARET] = ACTIONS(8047), + [anon_sym_AMP] = ACTIONS(8047), + [anon_sym_EQ_EQ] = ACTIONS(8045), + [anon_sym_BANG_EQ] = ACTIONS(8045), + [anon_sym_GT] = ACTIONS(8047), + [anon_sym_GT_EQ] = ACTIONS(8047), + [anon_sym_LT_EQ] = ACTIONS(8047), + [anon_sym_LT] = ACTIONS(8047), + [anon_sym_LT_LT] = ACTIONS(8047), + [anon_sym_GT_GT] = ACTIONS(8047), + [anon_sym_LBRACK] = ACTIONS(8045), + [anon_sym_EQ] = ACTIONS(8047), + [anon_sym_QMARK] = ACTIONS(8045), + [anon_sym_STAR_EQ] = ACTIONS(8045), + [anon_sym_SLASH_EQ] = ACTIONS(8045), + [anon_sym_PERCENT_EQ] = ACTIONS(8045), + [anon_sym_PLUS_EQ] = ACTIONS(8045), + [anon_sym_DASH_EQ] = ACTIONS(8045), + [anon_sym_LT_LT_EQ] = ACTIONS(8045), + [anon_sym_GT_GT_EQ] = ACTIONS(8047), + [anon_sym_AMP_EQ] = ACTIONS(8045), + [anon_sym_CARET_EQ] = ACTIONS(8045), + [anon_sym_PIPE_EQ] = ACTIONS(8045), + [anon_sym_and_eq] = ACTIONS(8047), + [anon_sym_or_eq] = ACTIONS(8047), + [anon_sym_xor_eq] = ACTIONS(8047), + [anon_sym_LT_EQ_GT] = ACTIONS(8045), + [anon_sym_or] = ACTIONS(8047), + [anon_sym_and] = ACTIONS(8047), + [anon_sym_bitor] = ACTIONS(8047), + [anon_sym_xor] = ACTIONS(8047), + [anon_sym_bitand] = ACTIONS(8047), + [anon_sym_not_eq] = ACTIONS(8047), + [anon_sym_DASH_DASH] = ACTIONS(8045), + [anon_sym_PLUS_PLUS] = ACTIONS(8045), + [anon_sym_DOT] = ACTIONS(8047), + [anon_sym_DOT_STAR] = ACTIONS(8045), + [anon_sym_DASH_GT] = ACTIONS(8045), + [anon_sym_L_DQUOTE] = ACTIONS(9154), + [anon_sym_u_DQUOTE] = ACTIONS(9154), + [anon_sym_U_DQUOTE] = ACTIONS(9154), + [anon_sym_u8_DQUOTE] = ACTIONS(9154), + [anon_sym_DQUOTE] = ACTIONS(9154), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8045), + [anon_sym_R_DQUOTE] = ACTIONS(9157), + [anon_sym_LR_DQUOTE] = ACTIONS(9157), + [anon_sym_uR_DQUOTE] = ACTIONS(9157), + [anon_sym_UR_DQUOTE] = ACTIONS(9157), + [anon_sym_u8R_DQUOTE] = ACTIONS(9157), + [sym_literal_suffix] = ACTIONS(8047), + }, + [STATE(3611)] = { + [sym_identifier] = ACTIONS(6235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), + [anon_sym_COMMA] = ACTIONS(6228), + [anon_sym_RPAREN] = ACTIONS(6228), + [aux_sym_preproc_if_token2] = ACTIONS(6228), + [aux_sym_preproc_else_token1] = ACTIONS(6228), + [aux_sym_preproc_elif_token1] = ACTIONS(6235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6228), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6228), + [anon_sym_LPAREN2] = ACTIONS(6228), + [anon_sym_DASH] = ACTIONS(6235), + [anon_sym_PLUS] = ACTIONS(6235), + [anon_sym_STAR] = ACTIONS(6235), + [anon_sym_SLASH] = ACTIONS(6235), + [anon_sym_PERCENT] = ACTIONS(6235), + [anon_sym_PIPE_PIPE] = ACTIONS(6228), + [anon_sym_AMP_AMP] = ACTIONS(6228), + [anon_sym_PIPE] = ACTIONS(6235), + [anon_sym_CARET] = ACTIONS(6235), + [anon_sym_AMP] = ACTIONS(6235), + [anon_sym_EQ_EQ] = ACTIONS(6228), + [anon_sym_BANG_EQ] = ACTIONS(6228), + [anon_sym_GT] = ACTIONS(6235), + [anon_sym_GT_EQ] = ACTIONS(6228), + [anon_sym_LT_EQ] = ACTIONS(6235), + [anon_sym_LT] = ACTIONS(6235), + [anon_sym_LT_LT] = ACTIONS(6235), + [anon_sym_GT_GT] = ACTIONS(6235), + [anon_sym_SEMI] = ACTIONS(6228), + [anon_sym___attribute__] = ACTIONS(6235), + [anon_sym___attribute] = ACTIONS(6235), + [anon_sym_COLON] = ACTIONS(6235), + [anon_sym_COLON_COLON] = ACTIONS(6233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6228), + [anon_sym_LBRACE] = ACTIONS(6233), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_LBRACK] = ACTIONS(6228), + [anon_sym_EQ] = ACTIONS(6235), + [anon_sym_QMARK] = ACTIONS(6228), + [anon_sym_STAR_EQ] = ACTIONS(6228), + [anon_sym_SLASH_EQ] = ACTIONS(6228), + [anon_sym_PERCENT_EQ] = ACTIONS(6228), + [anon_sym_PLUS_EQ] = ACTIONS(6228), + [anon_sym_DASH_EQ] = ACTIONS(6228), + [anon_sym_LT_LT_EQ] = ACTIONS(6228), + [anon_sym_GT_GT_EQ] = ACTIONS(6228), + [anon_sym_AMP_EQ] = ACTIONS(6228), + [anon_sym_CARET_EQ] = ACTIONS(6228), + [anon_sym_PIPE_EQ] = ACTIONS(6228), + [anon_sym_and_eq] = ACTIONS(6235), + [anon_sym_or_eq] = ACTIONS(6235), + [anon_sym_xor_eq] = ACTIONS(6235), + [anon_sym_LT_EQ_GT] = ACTIONS(6228), + [anon_sym_or] = ACTIONS(6235), + [anon_sym_and] = ACTIONS(6235), + [anon_sym_bitor] = ACTIONS(6235), + [anon_sym_xor] = ACTIONS(6235), + [anon_sym_bitand] = ACTIONS(6235), + [anon_sym_not_eq] = ACTIONS(6235), + [anon_sym_DASH_DASH] = ACTIONS(6228), + [anon_sym_PLUS_PLUS] = ACTIONS(6228), + [anon_sym_DOT] = ACTIONS(6235), + [anon_sym_DOT_STAR] = ACTIONS(6228), + [anon_sym_DASH_GT] = ACTIONS(6228), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6228), + }, + [STATE(3612)] = { + [sym_attribute_specifier] = STATE(3078), + [sym_enumerator_list] = STATE(3797), + [sym__enum_base_clause] = STATE(3687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), + [anon_sym_COMMA] = ACTIONS(7602), + [anon_sym_RPAREN] = ACTIONS(7602), + [anon_sym_LPAREN2] = ACTIONS(7602), + [anon_sym_DASH] = ACTIONS(7600), + [anon_sym_PLUS] = ACTIONS(7600), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7600), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7602), + [anon_sym_AMP_AMP] = ACTIONS(7602), + [anon_sym_PIPE] = ACTIONS(7600), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7600), + [anon_sym_EQ_EQ] = ACTIONS(7602), + [anon_sym_BANG_EQ] = ACTIONS(7602), + [anon_sym_GT] = ACTIONS(7600), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7600), + [anon_sym_LT] = ACTIONS(7600), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym_SEMI] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(9160), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7602), + [anon_sym_LBRACE] = ACTIONS(9162), + [anon_sym_RBRACE] = ACTIONS(7602), + [anon_sym_LBRACK] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7600), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7602), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7602), + [anon_sym_PLUS_PLUS] = ACTIONS(7602), + [anon_sym_DOT] = ACTIONS(7600), + [anon_sym_DOT_STAR] = ACTIONS(7602), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_COLON_RBRACK] = ACTIONS(7602), + }, + [STATE(3613)] = { + [sym_attribute_specifier] = STATE(3021), + [sym_enumerator_list] = STATE(3793), + [sym__enum_base_clause] = STATE(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7653), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7653), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7653), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7653), + [anon_sym_GT_GT] = ACTIONS(7653), + [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(9160), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(9162), + [anon_sym_RBRACE] = ACTIONS(7653), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7653), + [anon_sym_and] = ACTIONS(7653), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7653), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_COLON_RBRACK] = ACTIONS(7653), + }, + [STATE(3614)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(7084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [aux_sym_preproc_if_token2] = ACTIONS(7081), + [aux_sym_preproc_else_token1] = ACTIONS(7081), + [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(8205), + [anon_sym_unsigned] = ACTIONS(8205), + [anon_sym_long] = ACTIONS(8205), + [anon_sym_short] = ACTIONS(8205), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + }, + [STATE(3615)] = { + [sym_type_qualifier] = STATE(3615), + [sym_alignas_qualifier] = STATE(3884), + [aux_sym__type_definition_type_repeat1] = STATE(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6527), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6527), + [anon_sym___extension__] = ACTIONS(9164), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_RBRACK] = ACTIONS(6527), + [anon_sym_const] = ACTIONS(9167), + [anon_sym_constexpr] = ACTIONS(9164), + [anon_sym_volatile] = ACTIONS(9164), + [anon_sym_restrict] = ACTIONS(9164), + [anon_sym___restrict__] = ACTIONS(9164), + [anon_sym__Atomic] = ACTIONS(9164), + [anon_sym__Noreturn] = ACTIONS(9164), + [anon_sym_noreturn] = ACTIONS(9164), + [anon_sym__Nonnull] = ACTIONS(9164), + [anon_sym_mutable] = ACTIONS(9164), + [anon_sym_constinit] = ACTIONS(9164), + [anon_sym_consteval] = ACTIONS(9164), + [anon_sym_alignas] = ACTIONS(9170), + [anon_sym__Alignas] = ACTIONS(9170), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6527), + [anon_sym_and] = ACTIONS(6527), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6527), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + }, + [STATE(3616)] = { + [sym_new_declarator] = STATE(3717), + [sym_identifier] = ACTIONS(9173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9175), + [anon_sym_COMMA] = ACTIONS(9175), + [anon_sym_RPAREN] = ACTIONS(9175), + [aux_sym_preproc_if_token2] = ACTIONS(9175), + [aux_sym_preproc_else_token1] = ACTIONS(9175), + [aux_sym_preproc_elif_token1] = ACTIONS(9173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9175), + [anon_sym_LPAREN2] = ACTIONS(9175), + [anon_sym_DASH] = ACTIONS(9173), + [anon_sym_PLUS] = ACTIONS(9173), + [anon_sym_STAR] = ACTIONS(9173), + [anon_sym_SLASH] = ACTIONS(9173), + [anon_sym_PERCENT] = ACTIONS(9173), + [anon_sym_PIPE_PIPE] = ACTIONS(9175), + [anon_sym_AMP_AMP] = ACTIONS(9175), + [anon_sym_PIPE] = ACTIONS(9173), + [anon_sym_CARET] = ACTIONS(9173), + [anon_sym_AMP] = ACTIONS(9173), + [anon_sym_EQ_EQ] = ACTIONS(9175), + [anon_sym_BANG_EQ] = ACTIONS(9175), + [anon_sym_GT] = ACTIONS(9173), + [anon_sym_GT_EQ] = ACTIONS(9175), + [anon_sym_LT_EQ] = ACTIONS(9173), + [anon_sym_LT] = ACTIONS(9173), + [anon_sym_LT_LT] = ACTIONS(9173), + [anon_sym_GT_GT] = ACTIONS(9173), + [anon_sym_SEMI] = ACTIONS(9175), + [anon_sym___attribute__] = ACTIONS(9173), + [anon_sym___attribute] = ACTIONS(9173), + [anon_sym_COLON] = ACTIONS(9173), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9175), + [anon_sym_LBRACE] = ACTIONS(9175), + [anon_sym_RBRACE] = ACTIONS(9175), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(9173), + [anon_sym_QMARK] = ACTIONS(9175), + [anon_sym_STAR_EQ] = ACTIONS(9175), + [anon_sym_SLASH_EQ] = ACTIONS(9175), + [anon_sym_PERCENT_EQ] = ACTIONS(9175), + [anon_sym_PLUS_EQ] = ACTIONS(9175), + [anon_sym_DASH_EQ] = ACTIONS(9175), + [anon_sym_LT_LT_EQ] = ACTIONS(9175), + [anon_sym_GT_GT_EQ] = ACTIONS(9175), + [anon_sym_AMP_EQ] = ACTIONS(9175), + [anon_sym_CARET_EQ] = ACTIONS(9175), + [anon_sym_PIPE_EQ] = ACTIONS(9175), + [anon_sym_and_eq] = ACTIONS(9173), + [anon_sym_or_eq] = ACTIONS(9173), + [anon_sym_xor_eq] = ACTIONS(9173), + [anon_sym_LT_EQ_GT] = ACTIONS(9175), + [anon_sym_or] = ACTIONS(9173), + [anon_sym_and] = ACTIONS(9173), + [anon_sym_bitor] = ACTIONS(9173), + [anon_sym_xor] = ACTIONS(9173), + [anon_sym_bitand] = ACTIONS(9173), + [anon_sym_not_eq] = ACTIONS(9173), + [anon_sym_DASH_DASH] = ACTIONS(9175), + [anon_sym_PLUS_PLUS] = ACTIONS(9175), + [anon_sym_DOT] = ACTIONS(9173), + [anon_sym_DOT_STAR] = ACTIONS(9175), + [anon_sym_DASH_GT] = ACTIONS(9175), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9175), + }, + [STATE(3617)] = { + [sym_identifier] = ACTIONS(6967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), + [anon_sym_COMMA] = ACTIONS(6969), + [anon_sym_RPAREN] = ACTIONS(6969), + [anon_sym_LPAREN2] = ACTIONS(6969), + [anon_sym_TILDE] = ACTIONS(6969), + [anon_sym_STAR] = ACTIONS(6969), + [anon_sym_PIPE_PIPE] = ACTIONS(6969), + [anon_sym_AMP_AMP] = ACTIONS(6969), + [anon_sym_AMP] = ACTIONS(6967), + [anon_sym_SEMI] = ACTIONS(6969), + [anon_sym___extension__] = ACTIONS(6967), + [anon_sym_virtual] = ACTIONS(6967), + [anon_sym_extern] = ACTIONS(6967), + [anon_sym___attribute__] = ACTIONS(6967), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_COLON] = ACTIONS(6967), + [anon_sym_COLON_COLON] = ACTIONS(6969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6969), + [anon_sym___declspec] = ACTIONS(6967), + [anon_sym___based] = ACTIONS(6967), + [anon_sym___cdecl] = ACTIONS(6967), + [anon_sym___clrcall] = ACTIONS(6967), + [anon_sym___stdcall] = ACTIONS(6967), + [anon_sym___fastcall] = ACTIONS(6967), + [anon_sym___thiscall] = ACTIONS(6967), + [anon_sym___vectorcall] = ACTIONS(6967), + [anon_sym_LBRACE] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6967), + [anon_sym_static] = ACTIONS(6967), + [anon_sym_EQ] = ACTIONS(6969), + [anon_sym_register] = ACTIONS(6967), + [anon_sym_inline] = ACTIONS(6967), + [anon_sym___inline] = ACTIONS(6967), + [anon_sym___inline__] = ACTIONS(6967), + [anon_sym___forceinline] = ACTIONS(6967), + [anon_sym_thread_local] = ACTIONS(6967), + [anon_sym___thread] = ACTIONS(6967), + [anon_sym_const] = ACTIONS(6967), + [anon_sym_constexpr] = ACTIONS(6967), + [anon_sym_volatile] = ACTIONS(6967), + [anon_sym_restrict] = ACTIONS(6967), + [anon_sym___restrict__] = ACTIONS(6967), + [anon_sym__Atomic] = ACTIONS(6967), + [anon_sym__Noreturn] = ACTIONS(6967), + [anon_sym_noreturn] = ACTIONS(6967), + [anon_sym__Nonnull] = ACTIONS(6967), + [anon_sym_mutable] = ACTIONS(6967), + [anon_sym_constinit] = ACTIONS(6967), + [anon_sym_consteval] = ACTIONS(6967), + [anon_sym_alignas] = ACTIONS(6967), + [anon_sym__Alignas] = ACTIONS(6967), + [anon_sym_or] = ACTIONS(6967), + [anon_sym_and] = ACTIONS(6967), + [anon_sym_DASH_GT] = ACTIONS(6969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6967), + [anon_sym_decltype] = ACTIONS(6967), + [anon_sym_final] = ACTIONS(6967), + [anon_sym_override] = ACTIONS(6967), + [anon_sym_template] = ACTIONS(6967), + [anon_sym_GT2] = ACTIONS(6969), + [anon_sym_operator] = ACTIONS(6967), + [anon_sym_noexcept] = ACTIONS(6967), + [anon_sym_throw] = ACTIONS(6967), + [anon_sym_LBRACK_COLON] = ACTIONS(6969), + }, + [STATE(3618)] = { + [sym_template_argument_list] = STATE(3605), + [sym_identifier] = ACTIONS(9177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9179), + [anon_sym_COMMA] = ACTIONS(9179), + [anon_sym_RPAREN] = ACTIONS(9179), + [aux_sym_preproc_if_token2] = ACTIONS(9179), + [aux_sym_preproc_else_token1] = ACTIONS(9179), + [aux_sym_preproc_elif_token1] = ACTIONS(9177), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9179), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9179), + [anon_sym_LPAREN2] = ACTIONS(9179), + [anon_sym_DASH] = ACTIONS(9177), + [anon_sym_PLUS] = ACTIONS(9177), + [anon_sym_STAR] = ACTIONS(9177), + [anon_sym_SLASH] = ACTIONS(9177), + [anon_sym_PERCENT] = ACTIONS(9177), + [anon_sym_PIPE_PIPE] = ACTIONS(9179), + [anon_sym_AMP_AMP] = ACTIONS(9179), + [anon_sym_PIPE] = ACTIONS(9177), + [anon_sym_CARET] = ACTIONS(9177), + [anon_sym_AMP] = ACTIONS(9177), + [anon_sym_EQ_EQ] = ACTIONS(9179), + [anon_sym_BANG_EQ] = ACTIONS(9179), + [anon_sym_GT] = ACTIONS(9177), + [anon_sym_GT_EQ] = ACTIONS(9179), + [anon_sym_LT_EQ] = ACTIONS(9177), + [anon_sym_LT] = ACTIONS(9181), + [anon_sym_LT_LT] = ACTIONS(9177), + [anon_sym_GT_GT] = ACTIONS(9177), + [anon_sym_SEMI] = ACTIONS(9179), + [anon_sym___attribute__] = ACTIONS(9177), + [anon_sym___attribute] = ACTIONS(9177), + [anon_sym_COLON] = ACTIONS(9177), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9179), + [anon_sym_RBRACE] = ACTIONS(9179), + [anon_sym_LBRACK] = ACTIONS(9179), + [anon_sym_EQ] = ACTIONS(9177), + [anon_sym_QMARK] = ACTIONS(9179), + [anon_sym_STAR_EQ] = ACTIONS(9179), + [anon_sym_SLASH_EQ] = ACTIONS(9179), + [anon_sym_PERCENT_EQ] = ACTIONS(9179), + [anon_sym_PLUS_EQ] = ACTIONS(9179), + [anon_sym_DASH_EQ] = ACTIONS(9179), + [anon_sym_LT_LT_EQ] = ACTIONS(9179), + [anon_sym_GT_GT_EQ] = ACTIONS(9179), + [anon_sym_AMP_EQ] = ACTIONS(9179), + [anon_sym_CARET_EQ] = ACTIONS(9179), + [anon_sym_PIPE_EQ] = ACTIONS(9179), + [anon_sym_and_eq] = ACTIONS(9177), + [anon_sym_or_eq] = ACTIONS(9177), + [anon_sym_xor_eq] = ACTIONS(9177), + [anon_sym_LT_EQ_GT] = ACTIONS(9179), + [anon_sym_or] = ACTIONS(9177), + [anon_sym_and] = ACTIONS(9177), + [anon_sym_bitor] = ACTIONS(9177), + [anon_sym_xor] = ACTIONS(9177), + [anon_sym_bitand] = ACTIONS(9177), + [anon_sym_not_eq] = ACTIONS(9177), + [anon_sym_DASH_DASH] = ACTIONS(9179), + [anon_sym_PLUS_PLUS] = ACTIONS(9179), + [anon_sym_DOT] = ACTIONS(9177), + [anon_sym_DOT_STAR] = ACTIONS(9179), + [anon_sym_DASH_GT] = ACTIONS(9179), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9179), + }, + [STATE(3619)] = { + [sym_identifier] = ACTIONS(6762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), + [anon_sym_COMMA] = ACTIONS(6764), + [aux_sym_preproc_if_token2] = ACTIONS(6764), + [aux_sym_preproc_else_token1] = ACTIONS(6764), + [aux_sym_preproc_elif_token1] = ACTIONS(6762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6764), + [anon_sym_LPAREN2] = ACTIONS(6764), + [anon_sym_DASH] = ACTIONS(6762), + [anon_sym_PLUS] = ACTIONS(6762), + [anon_sym_STAR] = ACTIONS(6764), + [anon_sym_SLASH] = ACTIONS(6762), + [anon_sym_PERCENT] = ACTIONS(6764), + [anon_sym_PIPE_PIPE] = ACTIONS(6764), + [anon_sym_AMP_AMP] = ACTIONS(6764), + [anon_sym_PIPE] = ACTIONS(6762), + [anon_sym_CARET] = ACTIONS(6764), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6764), + [anon_sym_BANG_EQ] = ACTIONS(6764), + [anon_sym_GT] = ACTIONS(6762), + [anon_sym_GT_EQ] = ACTIONS(6764), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6762), + [anon_sym_LT_LT] = ACTIONS(6764), + [anon_sym_GT_GT] = ACTIONS(6764), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6762), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACE] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6764), + [anon_sym_RBRACK] = ACTIONS(6764), + [anon_sym_const] = ACTIONS(6762), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6762), + [anon_sym__Alignas] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6764), + [anon_sym_LT_EQ_GT] = ACTIONS(6764), + [anon_sym_or] = ACTIONS(6762), + [anon_sym_and] = ACTIONS(6762), + [anon_sym_bitor] = ACTIONS(6762), + [anon_sym_xor] = ACTIONS(6762), + [anon_sym_bitand] = ACTIONS(6762), + [anon_sym_not_eq] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6764), + [anon_sym_PLUS_PLUS] = ACTIONS(6764), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DOT_STAR] = ACTIONS(6764), + [anon_sym_DASH_GT] = ACTIONS(6764), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6762), + [anon_sym_override] = ACTIONS(6762), + [anon_sym_requires] = ACTIONS(6762), + }, + [STATE(3620)] = { + [sym_type_qualifier] = STATE(3615), + [sym_alignas_qualifier] = STATE(3884), + [aux_sym__type_definition_type_repeat1] = STATE(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6390), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6390), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_RBRACK] = ACTIONS(6390), + [anon_sym_const] = ACTIONS(7503), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(3621)] = { + [sym_string_literal] = STATE(3603), + [sym_template_argument_list] = STATE(5247), + [sym_raw_string_literal] = STATE(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(9184), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6676), + [anon_sym_u_DQUOTE] = ACTIONS(6676), + [anon_sym_U_DQUOTE] = ACTIONS(6676), + [anon_sym_u8_DQUOTE] = ACTIONS(6676), + [anon_sym_DQUOTE] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6682), + [anon_sym_LR_DQUOTE] = ACTIONS(6682), + [anon_sym_uR_DQUOTE] = ACTIONS(6682), + [anon_sym_UR_DQUOTE] = ACTIONS(6682), + [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + }, + [STATE(3622)] = { + [sym_decltype_auto] = STATE(4306), + [sym_template_argument_list] = STATE(3968), + [aux_sym_sized_type_specifier_repeat1] = STATE(3914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5251), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(9187), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5251), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6688), + [anon_sym_unsigned] = ACTIONS(6688), + [anon_sym_long] = ACTIONS(6688), + [anon_sym_short] = ACTIONS(6688), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5258), + [anon_sym_and] = ACTIONS(5258), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5258), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6696), + [anon_sym_decltype] = ACTIONS(6698), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_GT2] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + }, + [STATE(3623)] = { + [sym_decltype_auto] = STATE(3030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9076), + [anon_sym_decltype] = ACTIONS(6507), + [anon_sym_final] = ACTIONS(6800), + [anon_sym_override] = ACTIONS(6800), + [anon_sym_requires] = ACTIONS(6800), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3624)] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [aux_sym_preproc_if_token2] = ACTIONS(7183), + [aux_sym_preproc_else_token1] = ACTIONS(7183), + [aux_sym_preproc_elif_token1] = ACTIONS(7185), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_DASH] = ACTIONS(7185), + [anon_sym_PLUS] = ACTIONS(7185), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7185), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_PIPE] = ACTIONS(7185), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_EQ_EQ] = ACTIONS(7183), + [anon_sym_BANG_EQ] = ACTIONS(7183), + [anon_sym_GT] = ACTIONS(7185), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7185), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_RBRACK] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_mutable] = ACTIONS(7185), + [anon_sym_constinit] = ACTIONS(7185), + [anon_sym_consteval] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [anon_sym_QMARK] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7183), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_bitor] = ACTIONS(7185), + [anon_sym_xor] = ACTIONS(7185), + [anon_sym_bitand] = ACTIONS(7185), + [anon_sym_not_eq] = ACTIONS(7185), + [anon_sym_DASH_DASH] = ACTIONS(7183), + [anon_sym_PLUS_PLUS] = ACTIONS(7183), + [anon_sym_DOT] = ACTIONS(7185), + [anon_sym_DOT_STAR] = ACTIONS(7183), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7185), + [anon_sym_override] = ACTIONS(7185), + [anon_sym_requires] = ACTIONS(7185), + }, + [STATE(3625)] = { + [sym_string_literal] = STATE(3610), + [sym_raw_string_literal] = STATE(3610), + [aux_sym_concatenated_string_repeat1] = STATE(3610), + [sym_identifier] = ACTIONS(9189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), + [anon_sym_COMMA] = ACTIONS(8116), + [anon_sym_LPAREN2] = ACTIONS(8116), + [anon_sym_DASH] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8118), + [anon_sym_STAR] = ACTIONS(8118), + [anon_sym_SLASH] = ACTIONS(8118), + [anon_sym_PERCENT] = ACTIONS(8118), + [anon_sym_PIPE_PIPE] = ACTIONS(8116), + [anon_sym_AMP_AMP] = ACTIONS(8116), + [anon_sym_PIPE] = ACTIONS(8118), + [anon_sym_CARET] = ACTIONS(8118), + [anon_sym_AMP] = ACTIONS(8118), + [anon_sym_EQ_EQ] = ACTIONS(8116), + [anon_sym_BANG_EQ] = ACTIONS(8116), + [anon_sym_GT] = ACTIONS(8118), + [anon_sym_GT_EQ] = ACTIONS(8118), + [anon_sym_LT_EQ] = ACTIONS(8118), + [anon_sym_LT] = ACTIONS(8118), + [anon_sym_LT_LT] = ACTIONS(8118), + [anon_sym_GT_GT] = ACTIONS(8118), + [anon_sym_LBRACK] = ACTIONS(8116), + [anon_sym_EQ] = ACTIONS(8118), + [anon_sym_QMARK] = ACTIONS(8116), + [anon_sym_STAR_EQ] = ACTIONS(8116), + [anon_sym_SLASH_EQ] = ACTIONS(8116), + [anon_sym_PERCENT_EQ] = ACTIONS(8116), + [anon_sym_PLUS_EQ] = ACTIONS(8116), + [anon_sym_DASH_EQ] = ACTIONS(8116), + [anon_sym_LT_LT_EQ] = ACTIONS(8116), + [anon_sym_GT_GT_EQ] = ACTIONS(8118), + [anon_sym_AMP_EQ] = ACTIONS(8116), + [anon_sym_CARET_EQ] = ACTIONS(8116), + [anon_sym_PIPE_EQ] = ACTIONS(8116), + [anon_sym_and_eq] = ACTIONS(8118), + [anon_sym_or_eq] = ACTIONS(8118), + [anon_sym_xor_eq] = ACTIONS(8118), + [anon_sym_LT_EQ_GT] = ACTIONS(8116), + [anon_sym_or] = ACTIONS(8118), + [anon_sym_and] = ACTIONS(8118), + [anon_sym_bitor] = ACTIONS(8118), + [anon_sym_xor] = ACTIONS(8118), + [anon_sym_bitand] = ACTIONS(8118), + [anon_sym_not_eq] = ACTIONS(8118), + [anon_sym_DASH_DASH] = ACTIONS(8116), + [anon_sym_PLUS_PLUS] = ACTIONS(8116), + [anon_sym_DOT] = ACTIONS(8118), + [anon_sym_DOT_STAR] = ACTIONS(8116), + [anon_sym_DASH_GT] = ACTIONS(8116), + [anon_sym_L_DQUOTE] = ACTIONS(6640), + [anon_sym_u_DQUOTE] = ACTIONS(6640), + [anon_sym_U_DQUOTE] = ACTIONS(6640), + [anon_sym_u8_DQUOTE] = ACTIONS(6640), + [anon_sym_DQUOTE] = ACTIONS(6640), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8116), + [anon_sym_R_DQUOTE] = ACTIONS(6646), + [anon_sym_LR_DQUOTE] = ACTIONS(6646), + [anon_sym_uR_DQUOTE] = ACTIONS(6646), + [anon_sym_UR_DQUOTE] = ACTIONS(6646), + [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + [sym_literal_suffix] = ACTIONS(8118), + }, + [STATE(3626)] = { + [sym_template_argument_list] = STATE(2824), + [sym_identifier] = ACTIONS(7031), + [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(7031), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(5272), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(8526), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(7031), + [anon_sym___attribute__] = ACTIONS(7031), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(7031), + [anon_sym_volatile] = ACTIONS(7031), + [anon_sym_restrict] = ACTIONS(7031), + [anon_sym___restrict__] = ACTIONS(7031), + [anon_sym__Atomic] = ACTIONS(7031), + [anon_sym__Noreturn] = ACTIONS(7031), + [anon_sym_noreturn] = ACTIONS(7031), + [anon_sym__Nonnull] = ACTIONS(7031), + [anon_sym_mutable] = ACTIONS(7031), + [anon_sym_constinit] = ACTIONS(7031), + [anon_sym_consteval] = ACTIONS(7031), + [anon_sym_alignas] = ACTIONS(7031), + [anon_sym__Alignas] = ACTIONS(7031), + [anon_sym_QMARK] = ACTIONS(5272), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(7031), + [anon_sym_and] = ACTIONS(7031), + [anon_sym_bitor] = ACTIONS(7031), + [anon_sym_xor] = ACTIONS(7031), + [anon_sym_bitand] = ACTIONS(7031), + [anon_sym_not_eq] = ACTIONS(7031), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7031), + [anon_sym_override] = ACTIONS(7031), + [anon_sym_requires] = ACTIONS(7031), + }, + [STATE(3627)] = { + [sym_decltype_auto] = STATE(3963), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9191), + [anon_sym_decltype] = ACTIONS(6451), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + }, + [STATE(3628)] = { + [sym__abstract_declarator] = STATE(6368), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6997), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_GT2] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(3629)] = { + [sym__abstract_declarator] = STATE(6372), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3631), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_GT2] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3630)] = { + [sym__abstract_declarator] = STATE(6378), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6495), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6495), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(3631)] = { + [sym__abstract_declarator] = STATE(6375), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7005), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7005), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_GT2] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(3632)] = { + [sym__abstract_declarator] = STATE(6379), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7009), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7009), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_GT2] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(3633)] = { + [sym_type_qualifier] = STATE(3615), + [sym_alignas_qualifier] = STATE(3884), + [aux_sym__type_definition_type_repeat1] = STATE(3615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6523), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6523), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6523), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6523), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6523), + [anon_sym_GT_GT] = ACTIONS(6523), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_RBRACK] = ACTIONS(6523), + [anon_sym_const] = ACTIONS(7503), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6523), + [anon_sym_and] = ACTIONS(6523), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6523), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + }, + [STATE(3634)] = { + [sym_template_argument_list] = STATE(3619), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [aux_sym_preproc_if_token2] = ACTIONS(6751), + [aux_sym_preproc_else_token1] = ACTIONS(6751), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(8526), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + }, + [STATE(3635)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(5860), + [aux_sym_sized_type_specifier_repeat1] = STATE(3483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [anon_sym_RPAREN] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym_SEMI] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6800), + [anon_sym___attribute__] = ACTIONS(6800), + [anon_sym___attribute] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_RBRACE] = ACTIONS(6800), + [anon_sym_signed] = ACTIONS(8827), + [anon_sym_unsigned] = ACTIONS(8827), + [anon_sym_long] = ACTIONS(8827), + [anon_sym_short] = ACTIONS(8827), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6800), + [anon_sym_volatile] = ACTIONS(6800), + [anon_sym_restrict] = ACTIONS(6800), + [anon_sym___restrict__] = ACTIONS(6800), + [anon_sym__Atomic] = ACTIONS(6800), + [anon_sym__Noreturn] = ACTIONS(6800), + [anon_sym_noreturn] = ACTIONS(6800), + [anon_sym__Nonnull] = ACTIONS(6800), + [anon_sym_mutable] = ACTIONS(6800), + [anon_sym_constinit] = ACTIONS(6800), + [anon_sym_consteval] = ACTIONS(6800), + [anon_sym_alignas] = ACTIONS(6800), + [anon_sym__Alignas] = ACTIONS(6800), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6800), + [anon_sym_and] = ACTIONS(6800), + [anon_sym_bitor] = ACTIONS(6800), + [anon_sym_xor] = ACTIONS(6800), + [anon_sym_bitand] = ACTIONS(6800), + [anon_sym_not_eq] = ACTIONS(6800), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6800), + }, + [STATE(3636)] = { + [sym_decltype_auto] = STATE(3956), + [sym_template_argument_list] = STATE(4000), + [aux_sym_sized_type_specifier_repeat1] = STATE(3152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), + [anon_sym_COMMA] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5251), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5251), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PIPE_PIPE] = ACTIONS(5258), + [anon_sym_AMP_AMP] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5251), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5251), + [anon_sym_EQ_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5251), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5251), + [anon_sym_LT] = ACTIONS(8526), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym___extension__] = ACTIONS(5258), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5258), + [anon_sym_signed] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [anon_sym_LBRACK] = ACTIONS(5258), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_const] = ACTIONS(5251), + [anon_sym_constexpr] = ACTIONS(5258), + [anon_sym_volatile] = ACTIONS(5258), + [anon_sym_restrict] = ACTIONS(5258), + [anon_sym___restrict__] = ACTIONS(5258), + [anon_sym__Atomic] = ACTIONS(5258), + [anon_sym__Noreturn] = ACTIONS(5258), + [anon_sym_noreturn] = ACTIONS(5258), + [anon_sym__Nonnull] = ACTIONS(5258), + [anon_sym_mutable] = ACTIONS(5258), + [anon_sym_constinit] = ACTIONS(5258), + [anon_sym_consteval] = ACTIONS(5258), + [anon_sym_alignas] = ACTIONS(5258), + [anon_sym__Alignas] = ACTIONS(5258), + [anon_sym_QMARK] = ACTIONS(5258), + [anon_sym_LT_EQ_GT] = ACTIONS(5258), + [anon_sym_or] = ACTIONS(5258), + [anon_sym_and] = ACTIONS(5258), + [anon_sym_bitor] = ACTIONS(5258), + [anon_sym_xor] = ACTIONS(5258), + [anon_sym_bitand] = ACTIONS(5258), + [anon_sym_not_eq] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DOT] = ACTIONS(5251), + [anon_sym_DOT_STAR] = ACTIONS(5258), + [anon_sym_DASH_GT] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6621), + [anon_sym_decltype] = ACTIONS(6623), + [anon_sym_final] = ACTIONS(5258), + [anon_sym_override] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + }, + [STATE(3637)] = { + [sym_string_literal] = STATE(3637), + [sym_raw_string_literal] = STATE(3637), + [aux_sym_concatenated_string_repeat1] = STATE(3637), + [sym_identifier] = ACTIONS(9193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), + [anon_sym_COMMA] = ACTIONS(8045), + [anon_sym_LPAREN2] = ACTIONS(8045), + [anon_sym_DASH] = ACTIONS(8047), + [anon_sym_PLUS] = ACTIONS(8047), + [anon_sym_STAR] = ACTIONS(8047), + [anon_sym_SLASH] = ACTIONS(8047), + [anon_sym_PERCENT] = ACTIONS(8047), + [anon_sym_PIPE_PIPE] = ACTIONS(8045), + [anon_sym_AMP_AMP] = ACTIONS(8045), + [anon_sym_PIPE] = ACTIONS(8047), + [anon_sym_CARET] = ACTIONS(8047), + [anon_sym_AMP] = ACTIONS(8047), + [anon_sym_EQ_EQ] = ACTIONS(8045), + [anon_sym_BANG_EQ] = ACTIONS(8045), + [anon_sym_GT] = ACTIONS(8047), + [anon_sym_GT_EQ] = ACTIONS(8045), + [anon_sym_LT_EQ] = ACTIONS(8047), + [anon_sym_LT] = ACTIONS(8047), + [anon_sym_LT_LT] = ACTIONS(8047), + [anon_sym_GT_GT] = ACTIONS(8047), + [anon_sym_LBRACK] = ACTIONS(8045), + [anon_sym_RBRACK] = ACTIONS(8045), + [anon_sym_EQ] = ACTIONS(8047), + [anon_sym_QMARK] = ACTIONS(8045), + [anon_sym_STAR_EQ] = ACTIONS(8045), + [anon_sym_SLASH_EQ] = ACTIONS(8045), + [anon_sym_PERCENT_EQ] = ACTIONS(8045), + [anon_sym_PLUS_EQ] = ACTIONS(8045), + [anon_sym_DASH_EQ] = ACTIONS(8045), + [anon_sym_LT_LT_EQ] = ACTIONS(8045), + [anon_sym_GT_GT_EQ] = ACTIONS(8045), + [anon_sym_AMP_EQ] = ACTIONS(8045), + [anon_sym_CARET_EQ] = ACTIONS(8045), + [anon_sym_PIPE_EQ] = ACTIONS(8045), + [anon_sym_and_eq] = ACTIONS(8047), + [anon_sym_or_eq] = ACTIONS(8047), + [anon_sym_xor_eq] = ACTIONS(8047), + [anon_sym_LT_EQ_GT] = ACTIONS(8045), + [anon_sym_or] = ACTIONS(8047), + [anon_sym_and] = ACTIONS(8047), + [anon_sym_bitor] = ACTIONS(8047), + [anon_sym_xor] = ACTIONS(8047), + [anon_sym_bitand] = ACTIONS(8047), + [anon_sym_not_eq] = ACTIONS(8047), + [anon_sym_DASH_DASH] = ACTIONS(8045), + [anon_sym_PLUS_PLUS] = ACTIONS(8045), + [anon_sym_DOT] = ACTIONS(8047), + [anon_sym_DOT_STAR] = ACTIONS(8045), + [anon_sym_DASH_GT] = ACTIONS(8045), + [anon_sym_L_DQUOTE] = ACTIONS(9196), + [anon_sym_u_DQUOTE] = ACTIONS(9196), + [anon_sym_U_DQUOTE] = ACTIONS(9196), + [anon_sym_u8_DQUOTE] = ACTIONS(9196), + [anon_sym_DQUOTE] = ACTIONS(9196), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9199), + [anon_sym_LR_DQUOTE] = ACTIONS(9199), + [anon_sym_uR_DQUOTE] = ACTIONS(9199), + [anon_sym_UR_DQUOTE] = ACTIONS(9199), + [anon_sym_u8R_DQUOTE] = ACTIONS(9199), + [sym_literal_suffix] = ACTIONS(8047), + }, + [STATE(3638)] = { + [sym__abstract_declarator] = STATE(6383), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6995), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6995), + [anon_sym_override] = ACTIONS(6995), + [anon_sym_requires] = ACTIONS(6995), + }, + [STATE(3639)] = { + [sym__abstract_declarator] = STATE(6384), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3642), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3640)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [aux_sym_preproc_if_token2] = ACTIONS(6751), + [aux_sym_preproc_else_token1] = ACTIONS(6751), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_RBRACK] = ACTIONS(6751), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + }, + [STATE(3641)] = { + [sym__abstract_declarator] = STATE(6327), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6497), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6497), + [anon_sym_override] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6497), + }, + [STATE(3642)] = { + [sym__abstract_declarator] = STATE(6385), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(7003), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7003), + [anon_sym_override] = ACTIONS(7003), + [anon_sym_requires] = ACTIONS(7003), + }, + [STATE(3643)] = { + [sym__abstract_declarator] = STATE(6319), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3734), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(7007), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7007), + [anon_sym_override] = ACTIONS(7007), + [anon_sym_requires] = ACTIONS(7007), + }, + [STATE(3644)] = { + [sym__abstract_declarator] = STATE(6365), + [sym_abstract_parenthesized_declarator] = STATE(6488), + [sym_abstract_pointer_declarator] = STATE(6488), + [sym_abstract_function_declarator] = STATE(6488), + [sym_abstract_array_declarator] = STATE(6488), + [sym_type_qualifier] = STATE(3628), + [sym_alignas_qualifier] = STATE(3785), + [sym_parameter_list] = STATE(2153), + [sym_abstract_reference_declarator] = STATE(6488), + [sym__function_declarator_seq] = STATE(6497), + [aux_sym__type_definition_type_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(8224), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8226), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8228), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8230), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6993), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6993), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym_LBRACK] = ACTIONS(8240), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_GT2] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(3645)] = { + [sym__abstract_declarator] = STATE(6381), + [sym_abstract_parenthesized_declarator] = STATE(6612), + [sym_abstract_pointer_declarator] = STATE(6612), + [sym_abstract_function_declarator] = STATE(6612), + [sym_abstract_array_declarator] = STATE(6612), + [sym_type_qualifier] = STATE(3638), + [sym_alignas_qualifier] = STATE(4050), + [sym_parameter_list] = STATE(2154), + [sym_abstract_reference_declarator] = STATE(6612), + [sym__function_declarator_seq] = STATE(6536), + [aux_sym__type_definition_type_repeat1] = STATE(3638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(8246), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8248), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8250), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8252), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(8254), + [anon_sym_LBRACK] = ACTIONS(8262), + [anon_sym_RBRACK] = ACTIONS(6991), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(8254), + [anon_sym_volatile] = ACTIONS(8254), + [anon_sym_restrict] = ACTIONS(8254), + [anon_sym___restrict__] = ACTIONS(8254), + [anon_sym__Atomic] = ACTIONS(8254), + [anon_sym__Noreturn] = ACTIONS(8254), + [anon_sym_noreturn] = ACTIONS(8254), + [anon_sym__Nonnull] = ACTIONS(8254), + [anon_sym_mutable] = ACTIONS(8254), + [anon_sym_constinit] = ACTIONS(8254), + [anon_sym_consteval] = ACTIONS(8254), + [anon_sym_alignas] = ACTIONS(8264), + [anon_sym__Alignas] = ACTIONS(8264), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6991), + [anon_sym_override] = ACTIONS(6991), + [anon_sym_requires] = ACTIONS(6991), + }, + [STATE(3646)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_EQ] = ACTIONS(6951), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_noexcept] = ACTIONS(6949), + [anon_sym_throw] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3647)] = { + [sym_type_qualifier] = STATE(3647), + [sym_alignas_qualifier] = STATE(3874), + [aux_sym__type_definition_type_repeat1] = STATE(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), + [anon_sym_COMMA] = ACTIONS(6527), + [anon_sym_LPAREN2] = ACTIONS(6527), + [anon_sym_DASH] = ACTIONS(6525), + [anon_sym_PLUS] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(6527), + [anon_sym_SLASH] = ACTIONS(6525), + [anon_sym_PERCENT] = ACTIONS(6527), + [anon_sym_PIPE_PIPE] = ACTIONS(6527), + [anon_sym_AMP_AMP] = ACTIONS(6527), + [anon_sym_PIPE] = ACTIONS(6525), + [anon_sym_CARET] = ACTIONS(6527), + [anon_sym_AMP] = ACTIONS(6525), + [anon_sym_EQ_EQ] = ACTIONS(6527), + [anon_sym_BANG_EQ] = ACTIONS(6527), + [anon_sym_GT] = ACTIONS(6525), + [anon_sym_GT_EQ] = ACTIONS(6525), + [anon_sym_LT_EQ] = ACTIONS(6525), + [anon_sym_LT] = ACTIONS(6525), + [anon_sym_LT_LT] = ACTIONS(6527), + [anon_sym_GT_GT] = ACTIONS(6525), + [anon_sym___extension__] = ACTIONS(9202), + [anon_sym___attribute__] = ACTIONS(6527), + [anon_sym___attribute] = ACTIONS(6525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), + [anon_sym_LBRACK] = ACTIONS(6525), + [anon_sym_const] = ACTIONS(9205), + [anon_sym_constexpr] = ACTIONS(9202), + [anon_sym_volatile] = ACTIONS(9202), + [anon_sym_restrict] = ACTIONS(9202), + [anon_sym___restrict__] = ACTIONS(9202), + [anon_sym__Atomic] = ACTIONS(9202), + [anon_sym__Noreturn] = ACTIONS(9202), + [anon_sym_noreturn] = ACTIONS(9202), + [anon_sym__Nonnull] = ACTIONS(9202), + [anon_sym_mutable] = ACTIONS(9202), + [anon_sym_constinit] = ACTIONS(9202), + [anon_sym_consteval] = ACTIONS(9202), + [anon_sym_alignas] = ACTIONS(9208), + [anon_sym__Alignas] = ACTIONS(9208), + [anon_sym_QMARK] = ACTIONS(6527), + [anon_sym_LT_EQ_GT] = ACTIONS(6527), + [anon_sym_or] = ACTIONS(6527), + [anon_sym_and] = ACTIONS(6527), + [anon_sym_bitor] = ACTIONS(6527), + [anon_sym_xor] = ACTIONS(6527), + [anon_sym_bitand] = ACTIONS(6527), + [anon_sym_not_eq] = ACTIONS(6527), + [anon_sym_DASH_DASH] = ACTIONS(6527), + [anon_sym_PLUS_PLUS] = ACTIONS(6527), + [anon_sym_asm] = ACTIONS(6527), + [anon_sym___asm__] = ACTIONS(6527), + [anon_sym___asm] = ACTIONS(6525), + [anon_sym_DOT] = ACTIONS(6525), + [anon_sym_DOT_STAR] = ACTIONS(6527), + [anon_sym_DASH_GT] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6527), + [anon_sym_override] = ACTIONS(6527), + [anon_sym_GT2] = ACTIONS(6527), + [anon_sym_noexcept] = ACTIONS(6527), + [anon_sym_throw] = ACTIONS(6527), + [anon_sym_requires] = ACTIONS(6527), + }, + [STATE(3648)] = { + [sym_attribute_declaration] = STATE(3105), + [aux_sym_attributed_declarator_repeat1] = STATE(3105), + [sym_identifier] = ACTIONS(9211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9213), + [anon_sym_COMMA] = ACTIONS(9213), + [anon_sym_RPAREN] = ACTIONS(9213), + [aux_sym_preproc_if_token2] = ACTIONS(9213), + [aux_sym_preproc_else_token1] = ACTIONS(9213), + [aux_sym_preproc_elif_token1] = ACTIONS(9211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9213), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9213), + [anon_sym_LPAREN2] = ACTIONS(9213), + [anon_sym_DASH] = ACTIONS(9211), + [anon_sym_PLUS] = ACTIONS(9211), + [anon_sym_STAR] = ACTIONS(9211), + [anon_sym_SLASH] = ACTIONS(9211), + [anon_sym_PERCENT] = ACTIONS(9211), + [anon_sym_PIPE_PIPE] = ACTIONS(9213), + [anon_sym_AMP_AMP] = ACTIONS(9213), + [anon_sym_PIPE] = ACTIONS(9211), + [anon_sym_CARET] = ACTIONS(9211), + [anon_sym_AMP] = ACTIONS(9211), + [anon_sym_EQ_EQ] = ACTIONS(9213), + [anon_sym_BANG_EQ] = ACTIONS(9213), + [anon_sym_GT] = ACTIONS(9211), + [anon_sym_GT_EQ] = ACTIONS(9213), + [anon_sym_LT_EQ] = ACTIONS(9211), + [anon_sym_LT] = ACTIONS(9211), + [anon_sym_LT_LT] = ACTIONS(9211), + [anon_sym_GT_GT] = ACTIONS(9211), + [anon_sym_SEMI] = ACTIONS(9213), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(9211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_RBRACE] = ACTIONS(9213), + [anon_sym_LBRACK] = ACTIONS(9211), + [anon_sym_EQ] = ACTIONS(9211), + [anon_sym_QMARK] = ACTIONS(9213), + [anon_sym_STAR_EQ] = ACTIONS(9213), + [anon_sym_SLASH_EQ] = ACTIONS(9213), + [anon_sym_PERCENT_EQ] = ACTIONS(9213), + [anon_sym_PLUS_EQ] = ACTIONS(9213), + [anon_sym_DASH_EQ] = ACTIONS(9213), + [anon_sym_LT_LT_EQ] = ACTIONS(9213), + [anon_sym_GT_GT_EQ] = ACTIONS(9213), + [anon_sym_AMP_EQ] = ACTIONS(9213), + [anon_sym_CARET_EQ] = ACTIONS(9213), + [anon_sym_PIPE_EQ] = ACTIONS(9213), + [anon_sym_and_eq] = ACTIONS(9211), + [anon_sym_or_eq] = ACTIONS(9211), + [anon_sym_xor_eq] = ACTIONS(9211), + [anon_sym_LT_EQ_GT] = ACTIONS(9213), + [anon_sym_or] = ACTIONS(9211), + [anon_sym_and] = ACTIONS(9211), + [anon_sym_bitor] = ACTIONS(9211), + [anon_sym_xor] = ACTIONS(9211), + [anon_sym_bitand] = ACTIONS(9211), + [anon_sym_not_eq] = ACTIONS(9211), + [anon_sym_DASH_DASH] = ACTIONS(9213), + [anon_sym_PLUS_PLUS] = ACTIONS(9213), + [anon_sym_DOT] = ACTIONS(9211), + [anon_sym_DOT_STAR] = ACTIONS(9213), + [anon_sym_DASH_GT] = ACTIONS(9213), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9213), + }, + [STATE(3649)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_EQ] = ACTIONS(6951), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_noexcept] = ACTIONS(6949), + [anon_sym_throw] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3650)] = { + [sym_identifier] = ACTIONS(6949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), + [anon_sym_COMMA] = ACTIONS(6951), + [anon_sym_RPAREN] = ACTIONS(6951), + [anon_sym_LPAREN2] = ACTIONS(6951), + [anon_sym_TILDE] = ACTIONS(6951), + [anon_sym_STAR] = ACTIONS(6951), + [anon_sym_PIPE_PIPE] = ACTIONS(6951), + [anon_sym_AMP_AMP] = ACTIONS(6951), + [anon_sym_AMP] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(6951), + [anon_sym___extension__] = ACTIONS(6949), + [anon_sym_virtual] = ACTIONS(6949), + [anon_sym_extern] = ACTIONS(6949), + [anon_sym___attribute__] = ACTIONS(6949), + [anon_sym___attribute] = ACTIONS(6949), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_COLON_COLON] = ACTIONS(6951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), + [anon_sym___declspec] = ACTIONS(6949), + [anon_sym___based] = ACTIONS(6949), + [anon_sym___cdecl] = ACTIONS(6949), + [anon_sym___clrcall] = ACTIONS(6949), + [anon_sym___stdcall] = ACTIONS(6949), + [anon_sym___fastcall] = ACTIONS(6949), + [anon_sym___thiscall] = ACTIONS(6949), + [anon_sym___vectorcall] = ACTIONS(6949), + [anon_sym_LBRACE] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(6949), + [anon_sym_static] = ACTIONS(6949), + [anon_sym_EQ] = ACTIONS(6951), + [anon_sym_register] = ACTIONS(6949), + [anon_sym_inline] = ACTIONS(6949), + [anon_sym___inline] = ACTIONS(6949), + [anon_sym___inline__] = ACTIONS(6949), + [anon_sym___forceinline] = ACTIONS(6949), + [anon_sym_thread_local] = ACTIONS(6949), + [anon_sym___thread] = ACTIONS(6949), + [anon_sym_const] = ACTIONS(6949), + [anon_sym_constexpr] = ACTIONS(6949), + [anon_sym_volatile] = ACTIONS(6949), + [anon_sym_restrict] = ACTIONS(6949), + [anon_sym___restrict__] = ACTIONS(6949), + [anon_sym__Atomic] = ACTIONS(6949), + [anon_sym__Noreturn] = ACTIONS(6949), + [anon_sym_noreturn] = ACTIONS(6949), + [anon_sym__Nonnull] = ACTIONS(6949), + [anon_sym_mutable] = ACTIONS(6949), + [anon_sym_constinit] = ACTIONS(6949), + [anon_sym_consteval] = ACTIONS(6949), + [anon_sym_alignas] = ACTIONS(6949), + [anon_sym__Alignas] = ACTIONS(6949), + [anon_sym_or] = ACTIONS(6949), + [anon_sym_and] = ACTIONS(6949), + [anon_sym_DASH_GT] = ACTIONS(6951), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6949), + [anon_sym_decltype] = ACTIONS(6949), + [anon_sym_final] = ACTIONS(6949), + [anon_sym_override] = ACTIONS(6949), + [anon_sym_template] = ACTIONS(6949), + [anon_sym_GT2] = ACTIONS(6951), + [anon_sym_operator] = ACTIONS(6949), + [anon_sym_noexcept] = ACTIONS(6949), + [anon_sym_throw] = ACTIONS(6949), + [anon_sym_LBRACK_COLON] = ACTIONS(6951), + }, + [STATE(3651)] = { + [sym_type_qualifier] = STATE(3647), + [sym_alignas_qualifier] = STATE(3874), + [aux_sym__type_definition_type_repeat1] = STATE(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), + [anon_sym_COMMA] = ACTIONS(6523), + [anon_sym_LPAREN2] = ACTIONS(6523), + [anon_sym_DASH] = ACTIONS(6521), + [anon_sym_PLUS] = ACTIONS(6521), + [anon_sym_STAR] = ACTIONS(6523), + [anon_sym_SLASH] = ACTIONS(6521), + [anon_sym_PERCENT] = ACTIONS(6523), + [anon_sym_PIPE_PIPE] = ACTIONS(6523), + [anon_sym_AMP_AMP] = ACTIONS(6523), + [anon_sym_PIPE] = ACTIONS(6521), + [anon_sym_CARET] = ACTIONS(6523), + [anon_sym_AMP] = ACTIONS(6521), + [anon_sym_EQ_EQ] = ACTIONS(6523), + [anon_sym_BANG_EQ] = ACTIONS(6523), + [anon_sym_GT] = ACTIONS(6521), + [anon_sym_GT_EQ] = ACTIONS(6521), + [anon_sym_LT_EQ] = ACTIONS(6521), + [anon_sym_LT] = ACTIONS(6521), + [anon_sym_LT_LT] = ACTIONS(6523), + [anon_sym_GT_GT] = ACTIONS(6521), + [anon_sym___extension__] = ACTIONS(7439), + [anon_sym___attribute__] = ACTIONS(6523), + [anon_sym___attribute] = ACTIONS(6521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), + [anon_sym_LBRACK] = ACTIONS(6521), + [anon_sym_const] = ACTIONS(7447), + [anon_sym_constexpr] = ACTIONS(7439), + [anon_sym_volatile] = ACTIONS(7439), + [anon_sym_restrict] = ACTIONS(7439), + [anon_sym___restrict__] = ACTIONS(7439), + [anon_sym__Atomic] = ACTIONS(7439), + [anon_sym__Noreturn] = ACTIONS(7439), + [anon_sym_noreturn] = ACTIONS(7439), + [anon_sym__Nonnull] = ACTIONS(7439), + [anon_sym_mutable] = ACTIONS(7439), + [anon_sym_constinit] = ACTIONS(7439), + [anon_sym_consteval] = ACTIONS(7439), + [anon_sym_alignas] = ACTIONS(7449), + [anon_sym__Alignas] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(6523), + [anon_sym_LT_EQ_GT] = ACTIONS(6523), + [anon_sym_or] = ACTIONS(6523), + [anon_sym_and] = ACTIONS(6523), + [anon_sym_bitor] = ACTIONS(6523), + [anon_sym_xor] = ACTIONS(6523), + [anon_sym_bitand] = ACTIONS(6523), + [anon_sym_not_eq] = ACTIONS(6523), + [anon_sym_DASH_DASH] = ACTIONS(6523), + [anon_sym_PLUS_PLUS] = ACTIONS(6523), + [anon_sym_asm] = ACTIONS(6523), + [anon_sym___asm__] = ACTIONS(6523), + [anon_sym___asm] = ACTIONS(6521), + [anon_sym_DOT] = ACTIONS(6521), + [anon_sym_DOT_STAR] = ACTIONS(6523), + [anon_sym_DASH_GT] = ACTIONS(6523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6523), + [anon_sym_override] = ACTIONS(6523), + [anon_sym_GT2] = ACTIONS(6523), + [anon_sym_noexcept] = ACTIONS(6523), + [anon_sym_throw] = ACTIONS(6523), + [anon_sym_requires] = ACTIONS(6523), + }, + [STATE(3652)] = { + [sym_string_literal] = STATE(3625), + [sym_raw_string_literal] = STATE(3625), + [aux_sym_concatenated_string_repeat1] = STATE(3625), + [sym_identifier] = ACTIONS(9215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), + [anon_sym_COMMA] = ACTIONS(8125), + [anon_sym_LPAREN2] = ACTIONS(8125), + [anon_sym_DASH] = ACTIONS(8127), + [anon_sym_PLUS] = ACTIONS(8127), + [anon_sym_STAR] = ACTIONS(8127), + [anon_sym_SLASH] = ACTIONS(8127), + [anon_sym_PERCENT] = ACTIONS(8127), + [anon_sym_PIPE_PIPE] = ACTIONS(8125), + [anon_sym_AMP_AMP] = ACTIONS(8125), + [anon_sym_PIPE] = ACTIONS(8127), + [anon_sym_CARET] = ACTIONS(8127), + [anon_sym_AMP] = ACTIONS(8127), + [anon_sym_EQ_EQ] = ACTIONS(8125), + [anon_sym_BANG_EQ] = ACTIONS(8125), + [anon_sym_GT] = ACTIONS(8127), + [anon_sym_GT_EQ] = ACTIONS(8127), + [anon_sym_LT_EQ] = ACTIONS(8127), + [anon_sym_LT] = ACTIONS(8127), + [anon_sym_LT_LT] = ACTIONS(8127), + [anon_sym_GT_GT] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(8125), + [anon_sym_EQ] = ACTIONS(8127), + [anon_sym_QMARK] = ACTIONS(8125), + [anon_sym_STAR_EQ] = ACTIONS(8125), + [anon_sym_SLASH_EQ] = ACTIONS(8125), + [anon_sym_PERCENT_EQ] = ACTIONS(8125), + [anon_sym_PLUS_EQ] = ACTIONS(8125), + [anon_sym_DASH_EQ] = ACTIONS(8125), + [anon_sym_LT_LT_EQ] = ACTIONS(8125), + [anon_sym_GT_GT_EQ] = ACTIONS(8127), + [anon_sym_AMP_EQ] = ACTIONS(8125), + [anon_sym_CARET_EQ] = ACTIONS(8125), + [anon_sym_PIPE_EQ] = ACTIONS(8125), + [anon_sym_and_eq] = ACTIONS(8127), + [anon_sym_or_eq] = ACTIONS(8127), + [anon_sym_xor_eq] = ACTIONS(8127), + [anon_sym_LT_EQ_GT] = ACTIONS(8125), + [anon_sym_or] = ACTIONS(8127), + [anon_sym_and] = ACTIONS(8127), + [anon_sym_bitor] = ACTIONS(8127), + [anon_sym_xor] = ACTIONS(8127), + [anon_sym_bitand] = ACTIONS(8127), + [anon_sym_not_eq] = ACTIONS(8127), + [anon_sym_DASH_DASH] = ACTIONS(8125), + [anon_sym_PLUS_PLUS] = ACTIONS(8125), + [anon_sym_DOT] = ACTIONS(8127), + [anon_sym_DOT_STAR] = ACTIONS(8125), + [anon_sym_DASH_GT] = ACTIONS(8125), + [anon_sym_L_DQUOTE] = ACTIONS(6640), + [anon_sym_u_DQUOTE] = ACTIONS(6640), + [anon_sym_U_DQUOTE] = ACTIONS(6640), + [anon_sym_u8_DQUOTE] = ACTIONS(6640), + [anon_sym_DQUOTE] = ACTIONS(6640), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8125), + [anon_sym_R_DQUOTE] = ACTIONS(6646), + [anon_sym_LR_DQUOTE] = ACTIONS(6646), + [anon_sym_uR_DQUOTE] = ACTIONS(6646), + [anon_sym_UR_DQUOTE] = ACTIONS(6646), + [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + [sym_literal_suffix] = ACTIONS(8127), + }, + [STATE(3653)] = { + [sym_type_qualifier] = STATE(3647), + [sym_alignas_qualifier] = STATE(3874), + [aux_sym__type_definition_type_repeat1] = STATE(3647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), + [anon_sym_COMMA] = ACTIONS(6390), + [anon_sym_LPAREN2] = ACTIONS(6390), + [anon_sym_DASH] = ACTIONS(6388), + [anon_sym_PLUS] = ACTIONS(6388), + [anon_sym_STAR] = ACTIONS(6390), + [anon_sym_SLASH] = ACTIONS(6388), + [anon_sym_PERCENT] = ACTIONS(6390), + [anon_sym_PIPE_PIPE] = ACTIONS(6390), + [anon_sym_AMP_AMP] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(6388), + [anon_sym_CARET] = ACTIONS(6390), + [anon_sym_AMP] = ACTIONS(6388), + [anon_sym_EQ_EQ] = ACTIONS(6390), + [anon_sym_BANG_EQ] = ACTIONS(6390), + [anon_sym_GT] = ACTIONS(6388), + [anon_sym_GT_EQ] = ACTIONS(6388), + [anon_sym_LT_EQ] = ACTIONS(6388), + [anon_sym_LT] = ACTIONS(6388), + [anon_sym_LT_LT] = ACTIONS(6390), + [anon_sym_GT_GT] = ACTIONS(6388), + [anon_sym___extension__] = ACTIONS(7439), + [anon_sym___attribute__] = ACTIONS(6390), + [anon_sym___attribute] = ACTIONS(6388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), + [anon_sym_LBRACK] = ACTIONS(6388), + [anon_sym_const] = ACTIONS(7447), + [anon_sym_constexpr] = ACTIONS(7439), + [anon_sym_volatile] = ACTIONS(7439), + [anon_sym_restrict] = ACTIONS(7439), + [anon_sym___restrict__] = ACTIONS(7439), + [anon_sym__Atomic] = ACTIONS(7439), + [anon_sym__Noreturn] = ACTIONS(7439), + [anon_sym_noreturn] = ACTIONS(7439), + [anon_sym__Nonnull] = ACTIONS(7439), + [anon_sym_mutable] = ACTIONS(7439), + [anon_sym_constinit] = ACTIONS(7439), + [anon_sym_consteval] = ACTIONS(7439), + [anon_sym_alignas] = ACTIONS(7449), + [anon_sym__Alignas] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(6390), + [anon_sym_LT_EQ_GT] = ACTIONS(6390), + [anon_sym_or] = ACTIONS(6390), + [anon_sym_and] = ACTIONS(6390), + [anon_sym_bitor] = ACTIONS(6390), + [anon_sym_xor] = ACTIONS(6390), + [anon_sym_bitand] = ACTIONS(6390), + [anon_sym_not_eq] = ACTIONS(6390), + [anon_sym_DASH_DASH] = ACTIONS(6390), + [anon_sym_PLUS_PLUS] = ACTIONS(6390), + [anon_sym_asm] = ACTIONS(6390), + [anon_sym___asm__] = ACTIONS(6390), + [anon_sym___asm] = ACTIONS(6388), + [anon_sym_DOT] = ACTIONS(6388), + [anon_sym_DOT_STAR] = ACTIONS(6390), + [anon_sym_DASH_GT] = ACTIONS(6390), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6390), + [anon_sym_override] = ACTIONS(6390), + [anon_sym_GT2] = ACTIONS(6390), + [anon_sym_noexcept] = ACTIONS(6390), + [anon_sym_throw] = ACTIONS(6390), + [anon_sym_requires] = ACTIONS(6390), + }, + [STATE(3654)] = { + [sym_string_literal] = STATE(5466), + [sym_template_argument_list] = STATE(6719), + [sym_raw_string_literal] = STATE(5466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(8603), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(6615), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(6617), + [anon_sym_SLASH_EQ] = ACTIONS(6617), + [anon_sym_PERCENT_EQ] = ACTIONS(6617), + [anon_sym_PLUS_EQ] = ACTIONS(6617), + [anon_sym_DASH_EQ] = ACTIONS(6617), + [anon_sym_LT_LT_EQ] = ACTIONS(6617), + [anon_sym_GT_GT_EQ] = ACTIONS(6617), + [anon_sym_AMP_EQ] = ACTIONS(6617), + [anon_sym_CARET_EQ] = ACTIONS(6617), + [anon_sym_PIPE_EQ] = ACTIONS(6617), + [anon_sym_and_eq] = ACTIONS(6617), + [anon_sym_or_eq] = ACTIONS(6617), + [anon_sym_xor_eq] = ACTIONS(6617), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6619), + [anon_sym_u_DQUOTE] = ACTIONS(6619), + [anon_sym_U_DQUOTE] = ACTIONS(6619), + [anon_sym_u8_DQUOTE] = ACTIONS(6619), + [anon_sym_DQUOTE] = ACTIONS(6619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6625), + [anon_sym_LR_DQUOTE] = ACTIONS(6625), + [anon_sym_uR_DQUOTE] = ACTIONS(6625), + [anon_sym_UR_DQUOTE] = ACTIONS(6625), + [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + }, + [STATE(3655)] = { + [sym_string_literal] = STATE(3603), + [sym_template_argument_list] = STATE(5247), + [sym_raw_string_literal] = STATE(3603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), + [anon_sym_COMMA] = ACTIONS(9217), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(9184), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(9219), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6676), + [anon_sym_u_DQUOTE] = ACTIONS(6676), + [anon_sym_U_DQUOTE] = ACTIONS(6676), + [anon_sym_u8_DQUOTE] = ACTIONS(6676), + [anon_sym_DQUOTE] = ACTIONS(6676), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6682), + [anon_sym_LR_DQUOTE] = ACTIONS(6682), + [anon_sym_uR_DQUOTE] = ACTIONS(6682), + [anon_sym_UR_DQUOTE] = ACTIONS(6682), + [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + }, + [STATE(3656)] = { + [sym_string_literal] = STATE(3652), + [sym_template_argument_list] = STATE(5220), + [sym_raw_string_literal] = STATE(3652), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5260), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(9222), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5260), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5253), + [anon_sym_or_eq] = ACTIONS(5253), + [anon_sym_xor_eq] = ACTIONS(5253), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5253), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5253), + [anon_sym_not_eq] = ACTIONS(5253), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [anon_sym_L_DQUOTE] = ACTIONS(6640), + [anon_sym_u_DQUOTE] = ACTIONS(6640), + [anon_sym_U_DQUOTE] = ACTIONS(6640), + [anon_sym_u8_DQUOTE] = ACTIONS(6640), + [anon_sym_DQUOTE] = ACTIONS(6640), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5253), + [anon_sym_R_DQUOTE] = ACTIONS(6646), + [anon_sym_LR_DQUOTE] = ACTIONS(6646), + [anon_sym_uR_DQUOTE] = ACTIONS(6646), + [anon_sym_UR_DQUOTE] = ACTIONS(6646), + [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + }, + [STATE(3657)] = { + [sym__abstract_declarator] = STATE(6430), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6495), + [anon_sym_PLUS] = ACTIONS(6495), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(6495), + [anon_sym_PERCENT] = ACTIONS(6497), + [anon_sym_PIPE_PIPE] = ACTIONS(6497), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(6495), + [anon_sym_CARET] = ACTIONS(6497), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6497), + [anon_sym_BANG_EQ] = ACTIONS(6497), + [anon_sym_GT] = ACTIONS(6495), + [anon_sym_GT_EQ] = ACTIONS(6497), + [anon_sym_LT_EQ] = ACTIONS(6495), + [anon_sym_LT] = ACTIONS(6495), + [anon_sym_LT_LT] = ACTIONS(6497), + [anon_sym_GT_GT] = ACTIONS(6497), + [anon_sym_SEMI] = ACTIONS(6497), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6497), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6497), + [anon_sym_LT_EQ_GT] = ACTIONS(6497), + [anon_sym_or] = ACTIONS(6497), + [anon_sym_and] = ACTIONS(6497), + [anon_sym_bitor] = ACTIONS(6497), + [anon_sym_xor] = ACTIONS(6497), + [anon_sym_bitand] = ACTIONS(6497), + [anon_sym_not_eq] = ACTIONS(6497), + [anon_sym_DASH_DASH] = ACTIONS(6497), + [anon_sym_PLUS_PLUS] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6495), + [anon_sym_DOT_STAR] = ACTIONS(6497), + [anon_sym_DASH_GT] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + }, + [STATE(3658)] = { + [sym_decltype_auto] = STATE(3963), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(6800), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_RBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9191), + [anon_sym_decltype] = ACTIONS(6451), + [anon_sym_final] = ACTIONS(6798), + [anon_sym_override] = ACTIONS(6798), + [anon_sym_requires] = ACTIONS(6798), + }, + [STATE(3659)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8705), + [sym__abstract_declarator] = STATE(8931), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5185), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8307), + [anon_sym_AMP_AMP] = ACTIONS(8309), + [anon_sym_AMP] = ACTIONS(8311), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(7009), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(7007), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3660)] = { + [sym_string_literal] = STATE(3557), + [sym_raw_string_literal] = STATE(3557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(8739), + [anon_sym_RPAREN] = ACTIONS(8739), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_DASH] = ACTIONS(8737), + [anon_sym_PLUS] = ACTIONS(8737), + [anon_sym_STAR] = ACTIONS(8737), + [anon_sym_SLASH] = ACTIONS(8737), + [anon_sym_PERCENT] = ACTIONS(8737), + [anon_sym_PIPE_PIPE] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_PIPE] = ACTIONS(8737), + [anon_sym_CARET] = ACTIONS(8737), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_EQ_EQ] = ACTIONS(8739), + [anon_sym_BANG_EQ] = ACTIONS(8739), + [anon_sym_GT] = ACTIONS(8737), + [anon_sym_GT_EQ] = ACTIONS(8739), + [anon_sym_LT_EQ] = ACTIONS(8737), + [anon_sym_LT] = ACTIONS(8737), + [anon_sym_LT_LT] = ACTIONS(8737), + [anon_sym_GT_GT] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8739), + [anon_sym_EQ] = ACTIONS(8737), + [anon_sym_QMARK] = ACTIONS(8739), + [anon_sym_STAR_EQ] = ACTIONS(8739), + [anon_sym_SLASH_EQ] = ACTIONS(8739), + [anon_sym_PERCENT_EQ] = ACTIONS(8739), + [anon_sym_PLUS_EQ] = ACTIONS(8739), + [anon_sym_DASH_EQ] = ACTIONS(8739), + [anon_sym_LT_LT_EQ] = ACTIONS(8739), + [anon_sym_GT_GT_EQ] = ACTIONS(8739), + [anon_sym_AMP_EQ] = ACTIONS(8739), + [anon_sym_CARET_EQ] = ACTIONS(8739), + [anon_sym_PIPE_EQ] = ACTIONS(8739), + [anon_sym_and_eq] = ACTIONS(8737), + [anon_sym_or_eq] = ACTIONS(8737), + [anon_sym_xor_eq] = ACTIONS(8737), + [anon_sym_LT_EQ_GT] = ACTIONS(8739), + [anon_sym_or] = ACTIONS(8737), + [anon_sym_and] = ACTIONS(8737), + [anon_sym_bitor] = ACTIONS(8737), + [anon_sym_xor] = ACTIONS(8737), + [anon_sym_bitand] = ACTIONS(8737), + [anon_sym_not_eq] = ACTIONS(8737), + [anon_sym_DASH_DASH] = ACTIONS(8739), + [anon_sym_PLUS_PLUS] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8737), + [anon_sym_DOT_STAR] = ACTIONS(8739), + [anon_sym_DASH_GT] = ACTIONS(8737), + [anon_sym_L_DQUOTE] = ACTIONS(6517), + [anon_sym_u_DQUOTE] = ACTIONS(6517), + [anon_sym_U_DQUOTE] = ACTIONS(6517), + [anon_sym_u8_DQUOTE] = ACTIONS(6517), + [anon_sym_DQUOTE] = ACTIONS(6517), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6519), + [anon_sym_LR_DQUOTE] = ACTIONS(6519), + [anon_sym_uR_DQUOTE] = ACTIONS(6519), + [anon_sym_UR_DQUOTE] = ACTIONS(6519), + [anon_sym_u8R_DQUOTE] = ACTIONS(6519), + [anon_sym_DASH_GT_STAR] = ACTIONS(8739), + [sym_literal_suffix] = ACTIONS(8737), + }, + [STATE(3661)] = { + [sym_identifier] = ACTIONS(8145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8140), + [anon_sym_COMMA] = ACTIONS(8140), + [anon_sym_RPAREN] = ACTIONS(8140), + [aux_sym_preproc_if_token2] = ACTIONS(8140), + [aux_sym_preproc_else_token1] = ACTIONS(8140), + [aux_sym_preproc_elif_token1] = ACTIONS(8145), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8140), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8140), + [anon_sym_LPAREN2] = ACTIONS(8140), + [anon_sym_DASH] = ACTIONS(8145), + [anon_sym_PLUS] = ACTIONS(8145), + [anon_sym_STAR] = ACTIONS(8145), + [anon_sym_SLASH] = ACTIONS(8145), + [anon_sym_PERCENT] = ACTIONS(8145), + [anon_sym_PIPE_PIPE] = ACTIONS(8140), + [anon_sym_AMP_AMP] = ACTIONS(8140), + [anon_sym_PIPE] = ACTIONS(8145), + [anon_sym_CARET] = ACTIONS(8145), + [anon_sym_AMP] = ACTIONS(8145), + [anon_sym_EQ_EQ] = ACTIONS(8140), + [anon_sym_BANG_EQ] = ACTIONS(8140), + [anon_sym_GT] = ACTIONS(8145), + [anon_sym_GT_EQ] = ACTIONS(8140), + [anon_sym_LT_EQ] = ACTIONS(8145), + [anon_sym_LT] = ACTIONS(8145), + [anon_sym_LT_LT] = ACTIONS(8145), + [anon_sym_GT_GT] = ACTIONS(8145), + [anon_sym_SEMI] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(8145), + [anon_sym___attribute] = ACTIONS(8145), + [anon_sym_COLON] = ACTIONS(8145), + [anon_sym_COLON_COLON] = ACTIONS(8140), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8140), + [anon_sym_RBRACE] = ACTIONS(8140), + [anon_sym_LBRACK] = ACTIONS(8140), + [anon_sym_EQ] = ACTIONS(8145), + [anon_sym_QMARK] = ACTIONS(8140), + [anon_sym_STAR_EQ] = ACTIONS(8140), + [anon_sym_SLASH_EQ] = ACTIONS(8140), + [anon_sym_PERCENT_EQ] = ACTIONS(8140), + [anon_sym_PLUS_EQ] = ACTIONS(8140), + [anon_sym_DASH_EQ] = ACTIONS(8140), + [anon_sym_LT_LT_EQ] = ACTIONS(8140), + [anon_sym_GT_GT_EQ] = ACTIONS(8140), + [anon_sym_AMP_EQ] = ACTIONS(8140), + [anon_sym_CARET_EQ] = ACTIONS(8140), + [anon_sym_PIPE_EQ] = ACTIONS(8140), + [anon_sym_and_eq] = ACTIONS(8145), + [anon_sym_or_eq] = ACTIONS(8145), + [anon_sym_xor_eq] = ACTIONS(8145), + [anon_sym_LT_EQ_GT] = ACTIONS(8140), + [anon_sym_or] = ACTIONS(8145), + [anon_sym_and] = ACTIONS(8145), + [anon_sym_bitor] = ACTIONS(8145), + [anon_sym_xor] = ACTIONS(8145), + [anon_sym_bitand] = ACTIONS(8145), + [anon_sym_not_eq] = ACTIONS(8145), + [anon_sym_DASH_DASH] = ACTIONS(8140), + [anon_sym_PLUS_PLUS] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8145), + [anon_sym_DOT_STAR] = ACTIONS(8140), + [anon_sym_DASH_GT] = ACTIONS(8140), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8140), + }, + [STATE(3662)] = { + [sym_template_argument_list] = STATE(2081), + [sym_identifier] = ACTIONS(9225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), + [anon_sym_COMMA] = ACTIONS(9227), + [anon_sym_RPAREN] = ACTIONS(9227), + [aux_sym_preproc_if_token2] = ACTIONS(9227), + [aux_sym_preproc_else_token1] = ACTIONS(9227), + [aux_sym_preproc_elif_token1] = ACTIONS(9225), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), + [anon_sym_LPAREN2] = ACTIONS(9227), + [anon_sym_DASH] = ACTIONS(9225), + [anon_sym_PLUS] = ACTIONS(9225), + [anon_sym_STAR] = ACTIONS(9225), + [anon_sym_SLASH] = ACTIONS(9225), + [anon_sym_PERCENT] = ACTIONS(9225), + [anon_sym_PIPE_PIPE] = ACTIONS(9227), + [anon_sym_AMP_AMP] = ACTIONS(9227), + [anon_sym_PIPE] = ACTIONS(9225), + [anon_sym_CARET] = ACTIONS(9225), + [anon_sym_AMP] = ACTIONS(9225), + [anon_sym_EQ_EQ] = ACTIONS(9227), + [anon_sym_BANG_EQ] = ACTIONS(9227), + [anon_sym_GT] = ACTIONS(9225), + [anon_sym_GT_EQ] = ACTIONS(9227), + [anon_sym_LT_EQ] = ACTIONS(9225), + [anon_sym_LT] = ACTIONS(9229), + [anon_sym_LT_LT] = ACTIONS(9225), + [anon_sym_GT_GT] = ACTIONS(9225), + [anon_sym_SEMI] = ACTIONS(9227), + [anon_sym___attribute__] = ACTIONS(9225), + [anon_sym___attribute] = ACTIONS(9225), + [anon_sym_COLON] = ACTIONS(9225), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), + [anon_sym_RBRACE] = ACTIONS(9227), + [anon_sym_LBRACK] = ACTIONS(9227), + [anon_sym_EQ] = ACTIONS(9225), + [anon_sym_QMARK] = ACTIONS(9227), + [anon_sym_STAR_EQ] = ACTIONS(9227), + [anon_sym_SLASH_EQ] = ACTIONS(9227), + [anon_sym_PERCENT_EQ] = ACTIONS(9227), + [anon_sym_PLUS_EQ] = ACTIONS(9227), + [anon_sym_DASH_EQ] = ACTIONS(9227), + [anon_sym_LT_LT_EQ] = ACTIONS(9227), + [anon_sym_GT_GT_EQ] = ACTIONS(9227), + [anon_sym_AMP_EQ] = ACTIONS(9227), + [anon_sym_CARET_EQ] = ACTIONS(9227), + [anon_sym_PIPE_EQ] = ACTIONS(9227), + [anon_sym_and_eq] = ACTIONS(9225), + [anon_sym_or_eq] = ACTIONS(9225), + [anon_sym_xor_eq] = ACTIONS(9225), + [anon_sym_LT_EQ_GT] = ACTIONS(9227), + [anon_sym_or] = ACTIONS(9225), + [anon_sym_and] = ACTIONS(9225), + [anon_sym_bitor] = ACTIONS(9225), + [anon_sym_xor] = ACTIONS(9225), + [anon_sym_bitand] = ACTIONS(9225), + [anon_sym_not_eq] = ACTIONS(9225), + [anon_sym_DASH_DASH] = ACTIONS(9227), + [anon_sym_PLUS_PLUS] = ACTIONS(9227), + [anon_sym_DOT] = ACTIONS(9225), + [anon_sym_DOT_STAR] = ACTIONS(9227), + [anon_sym_DASH_GT] = ACTIONS(9227), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9227), + }, + [STATE(3663)] = { + [sym_ms_based_modifier] = STATE(10827), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8942), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(7868), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_AMP_AMP] = ACTIONS(8356), + [anon_sym_AMP] = ACTIONS(8358), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3664)] = { + [sym__abstract_declarator] = STATE(6402), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), + [anon_sym_COMMA] = ACTIONS(7003), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(7005), + [anon_sym_PERCENT] = ACTIONS(7003), + [anon_sym_PIPE_PIPE] = ACTIONS(7003), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(7005), + [anon_sym_CARET] = ACTIONS(7003), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(7003), + [anon_sym_BANG_EQ] = ACTIONS(7003), + [anon_sym_GT] = ACTIONS(7005), + [anon_sym_GT_EQ] = ACTIONS(7003), + [anon_sym_LT_EQ] = ACTIONS(7005), + [anon_sym_LT] = ACTIONS(7005), + [anon_sym_LT_LT] = ACTIONS(7003), + [anon_sym_GT_GT] = ACTIONS(7003), + [anon_sym_SEMI] = ACTIONS(7003), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(7003), + [anon_sym___attribute] = ACTIONS(7005), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7003), + [anon_sym_LT_EQ_GT] = ACTIONS(7003), + [anon_sym_or] = ACTIONS(7003), + [anon_sym_and] = ACTIONS(7003), + [anon_sym_bitor] = ACTIONS(7003), + [anon_sym_xor] = ACTIONS(7003), + [anon_sym_bitand] = ACTIONS(7003), + [anon_sym_not_eq] = ACTIONS(7003), + [anon_sym_DASH_DASH] = ACTIONS(7003), + [anon_sym_PLUS_PLUS] = ACTIONS(7003), + [anon_sym_DOT] = ACTIONS(7005), + [anon_sym_DOT_STAR] = ACTIONS(7003), + [anon_sym_DASH_GT] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + }, + [STATE(3665)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9234), + [anon_sym_COMMA] = ACTIONS(9234), + [anon_sym_RPAREN] = ACTIONS(9234), + [aux_sym_preproc_if_token2] = ACTIONS(9234), + [aux_sym_preproc_else_token1] = ACTIONS(9234), + [aux_sym_preproc_elif_token1] = ACTIONS(9232), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9234), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9232), + [anon_sym_PLUS] = ACTIONS(9232), + [anon_sym_STAR] = ACTIONS(9232), + [anon_sym_SLASH] = ACTIONS(9232), + [anon_sym_PERCENT] = ACTIONS(9232), + [anon_sym_PIPE_PIPE] = ACTIONS(9234), + [anon_sym_AMP_AMP] = ACTIONS(9234), + [anon_sym_PIPE] = ACTIONS(9232), + [anon_sym_CARET] = ACTIONS(9232), + [anon_sym_AMP] = ACTIONS(9232), + [anon_sym_EQ_EQ] = ACTIONS(9234), + [anon_sym_BANG_EQ] = ACTIONS(9234), + [anon_sym_GT] = ACTIONS(9232), + [anon_sym_GT_EQ] = ACTIONS(9234), + [anon_sym_LT_EQ] = ACTIONS(9232), + [anon_sym_LT] = ACTIONS(9232), + [anon_sym_LT_LT] = ACTIONS(9232), + [anon_sym_GT_GT] = ACTIONS(9232), + [anon_sym_SEMI] = ACTIONS(9234), + [anon_sym___attribute__] = ACTIONS(9232), + [anon_sym___attribute] = ACTIONS(9232), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9234), + [anon_sym_RBRACE] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9232), + [anon_sym_QMARK] = ACTIONS(9234), + [anon_sym_STAR_EQ] = ACTIONS(9234), + [anon_sym_SLASH_EQ] = ACTIONS(9234), + [anon_sym_PERCENT_EQ] = ACTIONS(9234), + [anon_sym_PLUS_EQ] = ACTIONS(9234), + [anon_sym_DASH_EQ] = ACTIONS(9234), + [anon_sym_LT_LT_EQ] = ACTIONS(9234), + [anon_sym_GT_GT_EQ] = ACTIONS(9234), + [anon_sym_AMP_EQ] = ACTIONS(9234), + [anon_sym_CARET_EQ] = ACTIONS(9234), + [anon_sym_PIPE_EQ] = ACTIONS(9234), + [anon_sym_and_eq] = ACTIONS(9232), + [anon_sym_or_eq] = ACTIONS(9232), + [anon_sym_xor_eq] = ACTIONS(9232), + [anon_sym_LT_EQ_GT] = ACTIONS(9234), + [anon_sym_or] = ACTIONS(9232), + [anon_sym_and] = ACTIONS(9232), + [anon_sym_bitor] = ACTIONS(9232), + [anon_sym_xor] = ACTIONS(9232), + [anon_sym_bitand] = ACTIONS(9232), + [anon_sym_not_eq] = ACTIONS(9232), + [anon_sym_DASH_DASH] = ACTIONS(9238), + [anon_sym_PLUS_PLUS] = ACTIONS(9238), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9234), + }, + [STATE(3666)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9244), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9246), + [anon_sym_COMMA] = ACTIONS(9246), + [anon_sym_RPAREN] = ACTIONS(9246), + [aux_sym_preproc_if_token2] = ACTIONS(9246), + [aux_sym_preproc_else_token1] = ACTIONS(9246), + [aux_sym_preproc_elif_token1] = ACTIONS(9244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9246), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9244), + [anon_sym_PLUS] = ACTIONS(9244), + [anon_sym_STAR] = ACTIONS(9244), + [anon_sym_SLASH] = ACTIONS(9244), + [anon_sym_PERCENT] = ACTIONS(9244), + [anon_sym_PIPE_PIPE] = ACTIONS(9246), + [anon_sym_AMP_AMP] = ACTIONS(9246), + [anon_sym_PIPE] = ACTIONS(9244), + [anon_sym_CARET] = ACTIONS(9244), + [anon_sym_AMP] = ACTIONS(9244), + [anon_sym_EQ_EQ] = ACTIONS(9246), + [anon_sym_BANG_EQ] = ACTIONS(9246), + [anon_sym_GT] = ACTIONS(9244), + [anon_sym_GT_EQ] = ACTIONS(9246), + [anon_sym_LT_EQ] = ACTIONS(9244), + [anon_sym_LT] = ACTIONS(9244), + [anon_sym_LT_LT] = ACTIONS(9244), + [anon_sym_GT_GT] = ACTIONS(9244), + [anon_sym_SEMI] = ACTIONS(9246), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9246), + [anon_sym_RBRACE] = ACTIONS(9246), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9244), + [anon_sym_QMARK] = ACTIONS(9246), + [anon_sym_STAR_EQ] = ACTIONS(9246), + [anon_sym_SLASH_EQ] = ACTIONS(9246), + [anon_sym_PERCENT_EQ] = ACTIONS(9246), + [anon_sym_PLUS_EQ] = ACTIONS(9246), + [anon_sym_DASH_EQ] = ACTIONS(9246), + [anon_sym_LT_LT_EQ] = ACTIONS(9246), + [anon_sym_GT_GT_EQ] = ACTIONS(9246), + [anon_sym_AMP_EQ] = ACTIONS(9246), + [anon_sym_CARET_EQ] = ACTIONS(9246), + [anon_sym_PIPE_EQ] = ACTIONS(9246), + [anon_sym_and_eq] = ACTIONS(9244), + [anon_sym_or_eq] = ACTIONS(9244), + [anon_sym_xor_eq] = ACTIONS(9244), + [anon_sym_LT_EQ_GT] = ACTIONS(9246), + [anon_sym_or] = ACTIONS(9244), + [anon_sym_and] = ACTIONS(9244), + [anon_sym_bitor] = ACTIONS(9244), + [anon_sym_xor] = ACTIONS(9244), + [anon_sym_bitand] = ACTIONS(9244), + [anon_sym_not_eq] = ACTIONS(9244), + [anon_sym_DASH_DASH] = ACTIONS(9238), + [anon_sym_PLUS_PLUS] = ACTIONS(9238), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9246), + }, + [STATE(3667)] = { + [sym_identifier] = ACTIONS(9248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), + [anon_sym_COMMA] = ACTIONS(9250), + [anon_sym_RPAREN] = ACTIONS(9250), + [aux_sym_preproc_if_token2] = ACTIONS(9250), + [aux_sym_preproc_else_token1] = ACTIONS(9250), + [aux_sym_preproc_elif_token1] = ACTIONS(9248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), + [anon_sym_LPAREN2] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9248), + [anon_sym_STAR] = ACTIONS(9248), + [anon_sym_SLASH] = ACTIONS(9248), + [anon_sym_PERCENT] = ACTIONS(9248), + [anon_sym_PIPE_PIPE] = ACTIONS(9250), + [anon_sym_AMP_AMP] = ACTIONS(9250), + [anon_sym_PIPE] = ACTIONS(9248), + [anon_sym_CARET] = ACTIONS(9248), + [anon_sym_AMP] = ACTIONS(9248), + [anon_sym_EQ_EQ] = ACTIONS(9250), + [anon_sym_BANG_EQ] = ACTIONS(9250), + [anon_sym_GT] = ACTIONS(9248), + [anon_sym_GT_EQ] = ACTIONS(9250), + [anon_sym_LT_EQ] = ACTIONS(9248), + [anon_sym_LT] = ACTIONS(9248), + [anon_sym_LT_LT] = ACTIONS(9248), + [anon_sym_GT_GT] = ACTIONS(9248), + [anon_sym_SEMI] = ACTIONS(9250), + [anon_sym___attribute__] = ACTIONS(9248), + [anon_sym___attribute] = ACTIONS(9248), + [anon_sym_COLON] = ACTIONS(9248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), + [anon_sym_LBRACE] = ACTIONS(9250), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_LBRACK] = ACTIONS(9250), + [anon_sym_EQ] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [anon_sym_STAR_EQ] = ACTIONS(9250), + [anon_sym_SLASH_EQ] = ACTIONS(9250), + [anon_sym_PERCENT_EQ] = ACTIONS(9250), + [anon_sym_PLUS_EQ] = ACTIONS(9250), + [anon_sym_DASH_EQ] = ACTIONS(9250), + [anon_sym_LT_LT_EQ] = ACTIONS(9250), + [anon_sym_GT_GT_EQ] = ACTIONS(9250), + [anon_sym_AMP_EQ] = ACTIONS(9250), + [anon_sym_CARET_EQ] = ACTIONS(9250), + [anon_sym_PIPE_EQ] = ACTIONS(9250), + [anon_sym_and_eq] = ACTIONS(9248), + [anon_sym_or_eq] = ACTIONS(9248), + [anon_sym_xor_eq] = ACTIONS(9248), + [anon_sym_LT_EQ_GT] = ACTIONS(9250), + [anon_sym_or] = ACTIONS(9248), + [anon_sym_and] = ACTIONS(9248), + [anon_sym_bitor] = ACTIONS(9248), + [anon_sym_xor] = ACTIONS(9248), + [anon_sym_bitand] = ACTIONS(9248), + [anon_sym_not_eq] = ACTIONS(9248), + [anon_sym_DASH_DASH] = ACTIONS(9250), + [anon_sym_PLUS_PLUS] = ACTIONS(9250), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_DOT_STAR] = ACTIONS(9250), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9250), + }, + [STATE(3668)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9254), + [anon_sym_COMMA] = ACTIONS(9254), + [anon_sym_RPAREN] = ACTIONS(9254), + [aux_sym_preproc_if_token2] = ACTIONS(9254), + [aux_sym_preproc_else_token1] = ACTIONS(9254), + [aux_sym_preproc_elif_token1] = ACTIONS(9252), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9254), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9254), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9252), + [anon_sym_PLUS] = ACTIONS(9252), + [anon_sym_STAR] = ACTIONS(9252), + [anon_sym_SLASH] = ACTIONS(9252), + [anon_sym_PERCENT] = ACTIONS(9252), + [anon_sym_PIPE_PIPE] = ACTIONS(9254), + [anon_sym_AMP_AMP] = ACTIONS(9254), + [anon_sym_PIPE] = ACTIONS(9252), + [anon_sym_CARET] = ACTIONS(9252), + [anon_sym_AMP] = ACTIONS(9252), + [anon_sym_EQ_EQ] = ACTIONS(9254), + [anon_sym_BANG_EQ] = ACTIONS(9254), + [anon_sym_GT] = ACTIONS(9252), + [anon_sym_GT_EQ] = ACTIONS(9254), + [anon_sym_LT_EQ] = ACTIONS(9252), + [anon_sym_LT] = ACTIONS(9252), + [anon_sym_LT_LT] = ACTIONS(9252), + [anon_sym_GT_GT] = ACTIONS(9252), + [anon_sym_SEMI] = ACTIONS(9254), + [anon_sym___attribute__] = ACTIONS(9252), + [anon_sym___attribute] = ACTIONS(9252), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9254), + [anon_sym_RBRACE] = ACTIONS(9254), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9252), + [anon_sym_QMARK] = ACTIONS(9254), + [anon_sym_STAR_EQ] = ACTIONS(9254), + [anon_sym_SLASH_EQ] = ACTIONS(9254), + [anon_sym_PERCENT_EQ] = ACTIONS(9254), + [anon_sym_PLUS_EQ] = ACTIONS(9254), + [anon_sym_DASH_EQ] = ACTIONS(9254), + [anon_sym_LT_LT_EQ] = ACTIONS(9254), + [anon_sym_GT_GT_EQ] = ACTIONS(9254), + [anon_sym_AMP_EQ] = ACTIONS(9254), + [anon_sym_CARET_EQ] = ACTIONS(9254), + [anon_sym_PIPE_EQ] = ACTIONS(9254), + [anon_sym_and_eq] = ACTIONS(9252), + [anon_sym_or_eq] = ACTIONS(9252), + [anon_sym_xor_eq] = ACTIONS(9252), + [anon_sym_LT_EQ_GT] = ACTIONS(9254), + [anon_sym_or] = ACTIONS(9252), + [anon_sym_and] = ACTIONS(9252), + [anon_sym_bitor] = ACTIONS(9252), + [anon_sym_xor] = ACTIONS(9252), + [anon_sym_bitand] = ACTIONS(9252), + [anon_sym_not_eq] = ACTIONS(9252), + [anon_sym_DASH_DASH] = ACTIONS(9238), + [anon_sym_PLUS_PLUS] = ACTIONS(9238), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9254), + }, + [STATE(3669)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3716), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(9256), + [anon_sym_unsigned] = ACTIONS(9256), + [anon_sym_long] = ACTIONS(9256), + [anon_sym_short] = ACTIONS(9256), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_RBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(3670)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6629), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6629), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6627), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6629), + [anon_sym_GT_GT] = ACTIONS(6627), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(9259), + [anon_sym_unsigned] = ACTIONS(9259), + [anon_sym_long] = ACTIONS(9259), + [anon_sym_short] = ACTIONS(9259), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_GT2] = ACTIONS(6629), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(3671)] = { + [sym_attribute_specifier] = STATE(2997), + [sym_enumerator_list] = STATE(3816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [anon_sym_RPAREN] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7013), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7013), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7013), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7013), + [anon_sym_GT_GT] = ACTIONS(7013), + [anon_sym_SEMI] = ACTIONS(7013), + [anon_sym___extension__] = ACTIONS(7013), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(7011), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7013), + [anon_sym_LBRACE] = ACTIONS(9162), + [anon_sym_RBRACE] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7013), + [anon_sym_volatile] = ACTIONS(7013), + [anon_sym_restrict] = ACTIONS(7013), + [anon_sym___restrict__] = ACTIONS(7013), + [anon_sym__Atomic] = ACTIONS(7013), + [anon_sym__Noreturn] = ACTIONS(7013), + [anon_sym_noreturn] = ACTIONS(7013), + [anon_sym__Nonnull] = ACTIONS(7013), + [anon_sym_mutable] = ACTIONS(7013), + [anon_sym_constinit] = ACTIONS(7013), + [anon_sym_consteval] = ACTIONS(7013), + [anon_sym_alignas] = ACTIONS(7013), + [anon_sym__Alignas] = ACTIONS(7013), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7013), + [anon_sym_and] = ACTIONS(7013), + [anon_sym_bitor] = ACTIONS(7013), + [anon_sym_xor] = ACTIONS(7013), + [anon_sym_bitand] = ACTIONS(7013), + [anon_sym_not_eq] = ACTIONS(7013), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7013), + [anon_sym_override] = ACTIONS(7013), + [anon_sym_requires] = ACTIONS(7013), + [anon_sym_COLON_RBRACK] = ACTIONS(7013), + }, + [STATE(3672)] = { + [sym_identifier] = ACTIONS(8454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8456), + [anon_sym_LPAREN2] = ACTIONS(8456), + [anon_sym_DASH] = ACTIONS(8454), + [anon_sym_PLUS] = ACTIONS(8454), + [anon_sym_STAR] = ACTIONS(8454), + [anon_sym_SLASH] = ACTIONS(8454), + [anon_sym_PERCENT] = ACTIONS(8454), + [anon_sym_PIPE_PIPE] = ACTIONS(8456), + [anon_sym_AMP_AMP] = ACTIONS(8456), + [anon_sym_PIPE] = ACTIONS(8454), + [anon_sym_CARET] = ACTIONS(8454), + [anon_sym_AMP] = ACTIONS(8454), + [anon_sym_EQ_EQ] = ACTIONS(8456), + [anon_sym_BANG_EQ] = ACTIONS(8456), + [anon_sym_GT] = ACTIONS(8454), + [anon_sym_GT_EQ] = ACTIONS(8456), + [anon_sym_LT_EQ] = ACTIONS(8454), + [anon_sym_LT] = ACTIONS(8454), + [anon_sym_LT_LT] = ACTIONS(8454), + [anon_sym_GT_GT] = ACTIONS(8454), + [anon_sym_SEMI] = ACTIONS(8456), + [anon_sym___attribute__] = ACTIONS(8454), + [anon_sym___attribute] = ACTIONS(8454), + [anon_sym_LBRACK] = ACTIONS(8456), + [anon_sym_EQ] = ACTIONS(8454), + [anon_sym_QMARK] = ACTIONS(8456), + [anon_sym_STAR_EQ] = ACTIONS(8456), + [anon_sym_SLASH_EQ] = ACTIONS(8456), + [anon_sym_PERCENT_EQ] = ACTIONS(8456), + [anon_sym_PLUS_EQ] = ACTIONS(8456), + [anon_sym_DASH_EQ] = ACTIONS(8456), + [anon_sym_LT_LT_EQ] = ACTIONS(8456), + [anon_sym_GT_GT_EQ] = ACTIONS(8456), + [anon_sym_AMP_EQ] = ACTIONS(8456), + [anon_sym_CARET_EQ] = ACTIONS(8456), + [anon_sym_PIPE_EQ] = ACTIONS(8456), + [anon_sym_and_eq] = ACTIONS(8454), + [anon_sym_or_eq] = ACTIONS(8454), + [anon_sym_xor_eq] = ACTIONS(8454), + [anon_sym_LT_EQ_GT] = ACTIONS(8456), + [anon_sym_or] = ACTIONS(8454), + [anon_sym_and] = ACTIONS(8454), + [anon_sym_bitor] = ACTIONS(8454), + [anon_sym_xor] = ACTIONS(8454), + [anon_sym_bitand] = ACTIONS(8454), + [anon_sym_not_eq] = ACTIONS(8454), + [anon_sym_DASH_DASH] = ACTIONS(8456), + [anon_sym_PLUS_PLUS] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8454), + [anon_sym_DOT_STAR] = ACTIONS(8456), + [anon_sym_DASH_GT] = ACTIONS(8456), + [anon_sym_L_DQUOTE] = ACTIONS(8456), + [anon_sym_u_DQUOTE] = ACTIONS(8456), + [anon_sym_U_DQUOTE] = ACTIONS(8456), + [anon_sym_u8_DQUOTE] = ACTIONS(8456), + [anon_sym_DQUOTE] = ACTIONS(8456), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8456), + [anon_sym_LR_DQUOTE] = ACTIONS(8456), + [anon_sym_uR_DQUOTE] = ACTIONS(8456), + [anon_sym_UR_DQUOTE] = ACTIONS(8456), + [anon_sym_u8R_DQUOTE] = ACTIONS(8456), + [sym_literal_suffix] = ACTIONS(8454), + }, + [STATE(3673)] = { + [sym_identifier] = ACTIONS(9262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9264), + [anon_sym_COMMA] = ACTIONS(9264), + [anon_sym_RPAREN] = ACTIONS(9264), + [aux_sym_preproc_if_token2] = ACTIONS(9264), + [aux_sym_preproc_else_token1] = ACTIONS(9264), + [aux_sym_preproc_elif_token1] = ACTIONS(9262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9264), + [anon_sym_LPAREN2] = ACTIONS(9264), + [anon_sym_DASH] = ACTIONS(9262), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_STAR] = ACTIONS(9262), + [anon_sym_SLASH] = ACTIONS(9262), + [anon_sym_PERCENT] = ACTIONS(9262), + [anon_sym_PIPE_PIPE] = ACTIONS(9264), + [anon_sym_AMP_AMP] = ACTIONS(9264), + [anon_sym_PIPE] = ACTIONS(9262), + [anon_sym_CARET] = ACTIONS(9262), + [anon_sym_AMP] = ACTIONS(9262), + [anon_sym_EQ_EQ] = ACTIONS(9264), + [anon_sym_BANG_EQ] = ACTIONS(9264), + [anon_sym_GT] = ACTIONS(9262), + [anon_sym_GT_EQ] = ACTIONS(9264), + [anon_sym_LT_EQ] = ACTIONS(9262), + [anon_sym_LT] = ACTIONS(9262), + [anon_sym_LT_LT] = ACTIONS(9262), + [anon_sym_GT_GT] = ACTIONS(9262), + [anon_sym_SEMI] = ACTIONS(9264), + [anon_sym___attribute__] = ACTIONS(9262), + [anon_sym___attribute] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9264), + [anon_sym_RBRACE] = ACTIONS(9264), + [anon_sym_LBRACK] = ACTIONS(9264), + [anon_sym_EQ] = ACTIONS(9262), + [anon_sym_QMARK] = ACTIONS(9264), + [anon_sym_STAR_EQ] = ACTIONS(9264), + [anon_sym_SLASH_EQ] = ACTIONS(9264), + [anon_sym_PERCENT_EQ] = ACTIONS(9264), + [anon_sym_PLUS_EQ] = ACTIONS(9264), + [anon_sym_DASH_EQ] = ACTIONS(9264), + [anon_sym_LT_LT_EQ] = ACTIONS(9264), + [anon_sym_GT_GT_EQ] = ACTIONS(9264), + [anon_sym_AMP_EQ] = ACTIONS(9264), + [anon_sym_CARET_EQ] = ACTIONS(9264), + [anon_sym_PIPE_EQ] = ACTIONS(9264), + [anon_sym_and_eq] = ACTIONS(9262), + [anon_sym_or_eq] = ACTIONS(9262), + [anon_sym_xor_eq] = ACTIONS(9262), + [anon_sym_LT_EQ_GT] = ACTIONS(9264), + [anon_sym_or] = ACTIONS(9262), + [anon_sym_and] = ACTIONS(9262), + [anon_sym_bitor] = ACTIONS(9262), + [anon_sym_xor] = ACTIONS(9262), + [anon_sym_bitand] = ACTIONS(9262), + [anon_sym_not_eq] = ACTIONS(9262), + [anon_sym_DASH_DASH] = ACTIONS(9264), + [anon_sym_PLUS_PLUS] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9262), + [anon_sym_DOT_STAR] = ACTIONS(9264), + [anon_sym_DASH_GT] = ACTIONS(9264), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9264), + }, + [STATE(3674)] = { + [sym_identifier] = ACTIONS(8400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8400), + [anon_sym_PLUS] = ACTIONS(8400), + [anon_sym_STAR] = ACTIONS(8400), + [anon_sym_SLASH] = ACTIONS(8400), + [anon_sym_PERCENT] = ACTIONS(8400), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8400), + [anon_sym_CARET] = ACTIONS(8400), + [anon_sym_AMP] = ACTIONS(8400), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8400), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8400), + [anon_sym_LT] = ACTIONS(8400), + [anon_sym_LT_LT] = ACTIONS(8400), + [anon_sym_GT_GT] = ACTIONS(8400), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8400), + [anon_sym___attribute] = ACTIONS(8400), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8400), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8400), + [anon_sym_or_eq] = ACTIONS(8400), + [anon_sym_xor_eq] = ACTIONS(8400), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8400), + [anon_sym_and] = ACTIONS(8400), + [anon_sym_bitor] = ACTIONS(8400), + [anon_sym_xor] = ACTIONS(8400), + [anon_sym_bitand] = ACTIONS(8400), + [anon_sym_not_eq] = ACTIONS(8400), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8400), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [anon_sym_L_DQUOTE] = ACTIONS(8402), + [anon_sym_u_DQUOTE] = ACTIONS(8402), + [anon_sym_U_DQUOTE] = ACTIONS(8402), + [anon_sym_u8_DQUOTE] = ACTIONS(8402), + [anon_sym_DQUOTE] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8402), + [anon_sym_LR_DQUOTE] = ACTIONS(8402), + [anon_sym_uR_DQUOTE] = ACTIONS(8402), + [anon_sym_UR_DQUOTE] = ACTIONS(8402), + [anon_sym_u8R_DQUOTE] = ACTIONS(8402), + [sym_literal_suffix] = ACTIONS(8400), + }, + [STATE(3675)] = { + [sym_identifier] = ACTIONS(9266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9268), + [anon_sym_COMMA] = ACTIONS(9268), + [anon_sym_RPAREN] = ACTIONS(9268), + [aux_sym_preproc_if_token2] = ACTIONS(9268), + [aux_sym_preproc_else_token1] = ACTIONS(9268), + [aux_sym_preproc_elif_token1] = ACTIONS(9266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9268), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9268), + [anon_sym_LPAREN2] = ACTIONS(9268), + [anon_sym_DASH] = ACTIONS(9266), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_STAR] = ACTIONS(9266), + [anon_sym_SLASH] = ACTIONS(9266), + [anon_sym_PERCENT] = ACTIONS(9266), + [anon_sym_PIPE_PIPE] = ACTIONS(9268), + [anon_sym_AMP_AMP] = ACTIONS(9268), + [anon_sym_PIPE] = ACTIONS(9266), + [anon_sym_CARET] = ACTIONS(9266), + [anon_sym_AMP] = ACTIONS(9266), + [anon_sym_EQ_EQ] = ACTIONS(9268), + [anon_sym_BANG_EQ] = ACTIONS(9268), + [anon_sym_GT] = ACTIONS(9266), + [anon_sym_GT_EQ] = ACTIONS(9268), + [anon_sym_LT_EQ] = ACTIONS(9266), + [anon_sym_LT] = ACTIONS(9266), + [anon_sym_LT_LT] = ACTIONS(9266), + [anon_sym_GT_GT] = ACTIONS(9266), + [anon_sym_SEMI] = ACTIONS(9268), + [anon_sym___attribute__] = ACTIONS(9266), + [anon_sym___attribute] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9268), + [anon_sym_LBRACE] = ACTIONS(9268), + [anon_sym_RBRACE] = ACTIONS(9268), + [anon_sym_LBRACK] = ACTIONS(9268), + [anon_sym_EQ] = ACTIONS(9266), + [anon_sym_QMARK] = ACTIONS(9268), + [anon_sym_STAR_EQ] = ACTIONS(9268), + [anon_sym_SLASH_EQ] = ACTIONS(9268), + [anon_sym_PERCENT_EQ] = ACTIONS(9268), + [anon_sym_PLUS_EQ] = ACTIONS(9268), + [anon_sym_DASH_EQ] = ACTIONS(9268), + [anon_sym_LT_LT_EQ] = ACTIONS(9268), + [anon_sym_GT_GT_EQ] = ACTIONS(9268), + [anon_sym_AMP_EQ] = ACTIONS(9268), + [anon_sym_CARET_EQ] = ACTIONS(9268), + [anon_sym_PIPE_EQ] = ACTIONS(9268), + [anon_sym_and_eq] = ACTIONS(9266), + [anon_sym_or_eq] = ACTIONS(9266), + [anon_sym_xor_eq] = ACTIONS(9266), + [anon_sym_LT_EQ_GT] = ACTIONS(9268), + [anon_sym_or] = ACTIONS(9266), + [anon_sym_and] = ACTIONS(9266), + [anon_sym_bitor] = ACTIONS(9266), + [anon_sym_xor] = ACTIONS(9266), + [anon_sym_bitand] = ACTIONS(9266), + [anon_sym_not_eq] = ACTIONS(9266), + [anon_sym_DASH_DASH] = ACTIONS(9268), + [anon_sym_PLUS_PLUS] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9266), + [anon_sym_DOT_STAR] = ACTIONS(9268), + [anon_sym_DASH_GT] = ACTIONS(9268), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9268), + }, + [STATE(3676)] = { + [sym_ms_based_modifier] = STATE(10827), + [sym__declarator] = STATE(8705), + [sym__abstract_declarator] = STATE(8889), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7869), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(7868), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_AMP_AMP] = ACTIONS(8356), + [anon_sym_AMP] = ACTIONS(8358), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(7009), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_COLON_COLON] = ACTIONS(8360), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3677)] = { + [sym_identifier] = ACTIONS(9248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), + [anon_sym_COMMA] = ACTIONS(9250), + [anon_sym_RPAREN] = ACTIONS(9250), + [aux_sym_preproc_if_token2] = ACTIONS(9250), + [aux_sym_preproc_else_token1] = ACTIONS(9250), + [aux_sym_preproc_elif_token1] = ACTIONS(9248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), + [anon_sym_LPAREN2] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9248), + [anon_sym_STAR] = ACTIONS(9248), + [anon_sym_SLASH] = ACTIONS(9248), + [anon_sym_PERCENT] = ACTIONS(9248), + [anon_sym_PIPE_PIPE] = ACTIONS(9250), + [anon_sym_AMP_AMP] = ACTIONS(9250), + [anon_sym_PIPE] = ACTIONS(9248), + [anon_sym_CARET] = ACTIONS(9248), + [anon_sym_AMP] = ACTIONS(9248), + [anon_sym_EQ_EQ] = ACTIONS(9250), + [anon_sym_BANG_EQ] = ACTIONS(9250), + [anon_sym_GT] = ACTIONS(9248), + [anon_sym_GT_EQ] = ACTIONS(9250), + [anon_sym_LT_EQ] = ACTIONS(9248), + [anon_sym_LT] = ACTIONS(9248), + [anon_sym_LT_LT] = ACTIONS(9248), + [anon_sym_GT_GT] = ACTIONS(9248), + [anon_sym_SEMI] = ACTIONS(9250), + [anon_sym___attribute__] = ACTIONS(9248), + [anon_sym___attribute] = ACTIONS(9248), + [anon_sym_COLON] = ACTIONS(9248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), + [anon_sym_LBRACE] = ACTIONS(9250), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_LBRACK] = ACTIONS(9250), + [anon_sym_EQ] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [anon_sym_STAR_EQ] = ACTIONS(9250), + [anon_sym_SLASH_EQ] = ACTIONS(9250), + [anon_sym_PERCENT_EQ] = ACTIONS(9250), + [anon_sym_PLUS_EQ] = ACTIONS(9250), + [anon_sym_DASH_EQ] = ACTIONS(9250), + [anon_sym_LT_LT_EQ] = ACTIONS(9250), + [anon_sym_GT_GT_EQ] = ACTIONS(9250), + [anon_sym_AMP_EQ] = ACTIONS(9250), + [anon_sym_CARET_EQ] = ACTIONS(9250), + [anon_sym_PIPE_EQ] = ACTIONS(9250), + [anon_sym_and_eq] = ACTIONS(9248), + [anon_sym_or_eq] = ACTIONS(9248), + [anon_sym_xor_eq] = ACTIONS(9248), + [anon_sym_LT_EQ_GT] = ACTIONS(9250), + [anon_sym_or] = ACTIONS(9248), + [anon_sym_and] = ACTIONS(9248), + [anon_sym_bitor] = ACTIONS(9248), + [anon_sym_xor] = ACTIONS(9248), + [anon_sym_bitand] = ACTIONS(9248), + [anon_sym_not_eq] = ACTIONS(9248), + [anon_sym_DASH_DASH] = ACTIONS(9250), + [anon_sym_PLUS_PLUS] = ACTIONS(9250), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_DOT_STAR] = ACTIONS(9250), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9250), + }, + [STATE(3678)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9272), + [anon_sym_COMMA] = ACTIONS(9272), + [anon_sym_RPAREN] = ACTIONS(9272), + [aux_sym_preproc_if_token2] = ACTIONS(9272), + [aux_sym_preproc_else_token1] = ACTIONS(9272), + [aux_sym_preproc_elif_token1] = ACTIONS(9270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9272), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9270), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_STAR] = ACTIONS(9270), + [anon_sym_SLASH] = ACTIONS(9270), + [anon_sym_PERCENT] = ACTIONS(9270), + [anon_sym_PIPE_PIPE] = ACTIONS(9272), + [anon_sym_AMP_AMP] = ACTIONS(9272), + [anon_sym_PIPE] = ACTIONS(9270), + [anon_sym_CARET] = ACTIONS(9270), + [anon_sym_AMP] = ACTIONS(9270), + [anon_sym_EQ_EQ] = ACTIONS(9272), + [anon_sym_BANG_EQ] = ACTIONS(9272), + [anon_sym_GT] = ACTIONS(9270), + [anon_sym_GT_EQ] = ACTIONS(9272), + [anon_sym_LT_EQ] = ACTIONS(9270), + [anon_sym_LT] = ACTIONS(9270), + [anon_sym_LT_LT] = ACTIONS(9270), + [anon_sym_GT_GT] = ACTIONS(9270), + [anon_sym_SEMI] = ACTIONS(9272), + [anon_sym___attribute__] = ACTIONS(9270), + [anon_sym___attribute] = ACTIONS(9270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9272), + [anon_sym_RBRACE] = ACTIONS(9272), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9270), + [anon_sym_QMARK] = ACTIONS(9272), + [anon_sym_STAR_EQ] = ACTIONS(9272), + [anon_sym_SLASH_EQ] = ACTIONS(9272), + [anon_sym_PERCENT_EQ] = ACTIONS(9272), + [anon_sym_PLUS_EQ] = ACTIONS(9272), + [anon_sym_DASH_EQ] = ACTIONS(9272), + [anon_sym_LT_LT_EQ] = ACTIONS(9272), + [anon_sym_GT_GT_EQ] = ACTIONS(9272), + [anon_sym_AMP_EQ] = ACTIONS(9272), + [anon_sym_CARET_EQ] = ACTIONS(9272), + [anon_sym_PIPE_EQ] = ACTIONS(9272), + [anon_sym_and_eq] = ACTIONS(9270), + [anon_sym_or_eq] = ACTIONS(9270), + [anon_sym_xor_eq] = ACTIONS(9270), + [anon_sym_LT_EQ_GT] = ACTIONS(9272), + [anon_sym_or] = ACTIONS(9270), + [anon_sym_and] = ACTIONS(9270), + [anon_sym_bitor] = ACTIONS(9270), + [anon_sym_xor] = ACTIONS(9270), + [anon_sym_bitand] = ACTIONS(9270), + [anon_sym_not_eq] = ACTIONS(9270), + [anon_sym_DASH_DASH] = ACTIONS(9238), + [anon_sym_PLUS_PLUS] = ACTIONS(9238), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9272), + }, + [STATE(3679)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), + [anon_sym_COMMA] = ACTIONS(7081), + [anon_sym_LPAREN2] = ACTIONS(7081), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7081), + [anon_sym_AMP_AMP] = ACTIONS(7081), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7081), + [anon_sym_BANG_EQ] = ACTIONS(7081), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7084), + [anon_sym_LT_EQ] = ACTIONS(7084), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym___extension__] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym_LBRACE] = ACTIONS(7081), + [anon_sym_signed] = ACTIONS(9259), + [anon_sym_unsigned] = ACTIONS(9259), + [anon_sym_long] = ACTIONS(9259), + [anon_sym_short] = ACTIONS(9259), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_constexpr] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym___restrict__] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym__Noreturn] = ACTIONS(7084), + [anon_sym_noreturn] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym_mutable] = ACTIONS(7084), + [anon_sym_constinit] = ACTIONS(7084), + [anon_sym_consteval] = ACTIONS(7084), + [anon_sym_alignas] = ACTIONS(7084), + [anon_sym__Alignas] = ACTIONS(7084), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7081), + [anon_sym_or] = ACTIONS(7084), + [anon_sym_and] = ACTIONS(7084), + [anon_sym_bitor] = ACTIONS(7084), + [anon_sym_xor] = ACTIONS(7084), + [anon_sym_bitand] = ACTIONS(7084), + [anon_sym_not_eq] = ACTIONS(7084), + [anon_sym_DASH_DASH] = ACTIONS(7081), + [anon_sym_PLUS_PLUS] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7084), + [anon_sym_DOT_STAR] = ACTIONS(7081), + [anon_sym_DASH_GT] = ACTIONS(7081), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7084), + [anon_sym_override] = ACTIONS(7084), + [anon_sym_GT2] = ACTIONS(7081), + [anon_sym_requires] = ACTIONS(7084), + }, + [STATE(3680)] = { + [sym_identifier] = ACTIONS(9248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), + [anon_sym_COMMA] = ACTIONS(9250), + [anon_sym_RPAREN] = ACTIONS(9250), + [aux_sym_preproc_if_token2] = ACTIONS(9250), + [aux_sym_preproc_else_token1] = ACTIONS(9250), + [aux_sym_preproc_elif_token1] = ACTIONS(9248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), + [anon_sym_LPAREN2] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9248), + [anon_sym_STAR] = ACTIONS(9248), + [anon_sym_SLASH] = ACTIONS(9248), + [anon_sym_PERCENT] = ACTIONS(9248), + [anon_sym_PIPE_PIPE] = ACTIONS(9250), + [anon_sym_AMP_AMP] = ACTIONS(9250), + [anon_sym_PIPE] = ACTIONS(9248), + [anon_sym_CARET] = ACTIONS(9248), + [anon_sym_AMP] = ACTIONS(9248), + [anon_sym_EQ_EQ] = ACTIONS(9250), + [anon_sym_BANG_EQ] = ACTIONS(9250), + [anon_sym_GT] = ACTIONS(9248), + [anon_sym_GT_EQ] = ACTIONS(9250), + [anon_sym_LT_EQ] = ACTIONS(9248), + [anon_sym_LT] = ACTIONS(9248), + [anon_sym_LT_LT] = ACTIONS(9248), + [anon_sym_GT_GT] = ACTIONS(9248), + [anon_sym_SEMI] = ACTIONS(9250), + [anon_sym___attribute__] = ACTIONS(9248), + [anon_sym___attribute] = ACTIONS(9248), + [anon_sym_COLON] = ACTIONS(9248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), + [anon_sym_LBRACE] = ACTIONS(9250), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_LBRACK] = ACTIONS(9250), + [anon_sym_EQ] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [anon_sym_STAR_EQ] = ACTIONS(9250), + [anon_sym_SLASH_EQ] = ACTIONS(9250), + [anon_sym_PERCENT_EQ] = ACTIONS(9250), + [anon_sym_PLUS_EQ] = ACTIONS(9250), + [anon_sym_DASH_EQ] = ACTIONS(9250), + [anon_sym_LT_LT_EQ] = ACTIONS(9250), + [anon_sym_GT_GT_EQ] = ACTIONS(9250), + [anon_sym_AMP_EQ] = ACTIONS(9250), + [anon_sym_CARET_EQ] = ACTIONS(9250), + [anon_sym_PIPE_EQ] = ACTIONS(9250), + [anon_sym_and_eq] = ACTIONS(9248), + [anon_sym_or_eq] = ACTIONS(9248), + [anon_sym_xor_eq] = ACTIONS(9248), + [anon_sym_LT_EQ_GT] = ACTIONS(9250), + [anon_sym_or] = ACTIONS(9248), + [anon_sym_and] = ACTIONS(9248), + [anon_sym_bitor] = ACTIONS(9248), + [anon_sym_xor] = ACTIONS(9248), + [anon_sym_bitand] = ACTIONS(9248), + [anon_sym_not_eq] = ACTIONS(9248), + [anon_sym_DASH_DASH] = ACTIONS(9250), + [anon_sym_PLUS_PLUS] = ACTIONS(9250), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_DOT_STAR] = ACTIONS(9250), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9250), + }, + [STATE(3681)] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_LT] = ACTIONS(6846), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___extension__] = ACTIONS(6844), + [anon_sym_virtual] = ACTIONS(6844), + [anon_sym_extern] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6844), + [anon_sym_COLON_COLON] = ACTIONS(6846), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), + [anon_sym___declspec] = ACTIONS(6844), + [anon_sym___based] = ACTIONS(6844), + [anon_sym_LBRACE] = ACTIONS(6846), + [anon_sym_signed] = ACTIONS(6844), + [anon_sym_unsigned] = ACTIONS(6844), + [anon_sym_long] = ACTIONS(6844), + [anon_sym_short] = ACTIONS(6844), + [anon_sym_LBRACK] = ACTIONS(6844), + [anon_sym_static] = ACTIONS(6844), + [anon_sym_EQ] = ACTIONS(6846), + [anon_sym_register] = ACTIONS(6844), + [anon_sym_inline] = ACTIONS(6844), + [anon_sym___inline] = ACTIONS(6844), + [anon_sym___inline__] = ACTIONS(6844), + [anon_sym___forceinline] = ACTIONS(6844), + [anon_sym_thread_local] = ACTIONS(6844), + [anon_sym___thread] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_constexpr] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym___restrict__] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym__Noreturn] = ACTIONS(6844), + [anon_sym_noreturn] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym_mutable] = ACTIONS(6844), + [anon_sym_constinit] = ACTIONS(6844), + [anon_sym_consteval] = ACTIONS(6844), + [anon_sym_alignas] = ACTIONS(6844), + [anon_sym__Alignas] = ACTIONS(6844), + [sym_primitive_type] = ACTIONS(6844), + [anon_sym_or] = ACTIONS(6844), + [anon_sym_and] = ACTIONS(6844), + [anon_sym_asm] = ACTIONS(6844), + [anon_sym___asm__] = ACTIONS(6844), + [anon_sym___asm] = ACTIONS(6844), + [anon_sym_DASH_GT] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6844), + [anon_sym_override] = ACTIONS(6844), + [anon_sym_GT2] = ACTIONS(6846), + [anon_sym_try] = ACTIONS(6844), + [anon_sym_noexcept] = ACTIONS(6844), + [anon_sym_throw] = ACTIONS(6844), + [anon_sym_requires] = ACTIONS(6844), + }, + [STATE(3682)] = { + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_TILDE] = ACTIONS(6751), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_virtual] = ACTIONS(6746), + [anon_sym_extern] = ACTIONS(6746), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), + [anon_sym___declspec] = ACTIONS(6746), + [anon_sym___based] = ACTIONS(6746), + [anon_sym___cdecl] = ACTIONS(6746), + [anon_sym___clrcall] = ACTIONS(6746), + [anon_sym___stdcall] = ACTIONS(6746), + [anon_sym___fastcall] = ACTIONS(6746), + [anon_sym___thiscall] = ACTIONS(6746), + [anon_sym___vectorcall] = ACTIONS(6746), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_static] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6751), + [anon_sym_register] = ACTIONS(6746), + [anon_sym_inline] = ACTIONS(6746), + [anon_sym___inline] = ACTIONS(6746), + [anon_sym___inline__] = ACTIONS(6746), + [anon_sym___forceinline] = ACTIONS(6746), + [anon_sym_thread_local] = ACTIONS(6746), + [anon_sym___thread] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6746), + [anon_sym__Alignas] = ACTIONS(6746), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6746), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_template] = ACTIONS(6746), + [anon_sym_GT2] = ACTIONS(6751), + [anon_sym_operator] = ACTIONS(6746), + [anon_sym_noexcept] = ACTIONS(6746), + [anon_sym_throw] = ACTIONS(6746), + [anon_sym_LBRACK_COLON] = ACTIONS(6751), + }, + [STATE(3683)] = { + [sym_type_qualifier] = STATE(3690), + [sym_alignas_qualifier] = STATE(3785), + [aux_sym__type_definition_type_repeat1] = STATE(3690), + [aux_sym_sized_type_specifier_repeat1] = STATE(3988), + [sym_identifier] = ACTIONS(8790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6814), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym___extension__] = ACTIONS(8242), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(9274), + [anon_sym_unsigned] = ACTIONS(9274), + [anon_sym_long] = ACTIONS(9274), + [anon_sym_short] = ACTIONS(9274), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8242), + [anon_sym_volatile] = ACTIONS(8242), + [anon_sym_restrict] = ACTIONS(8242), + [anon_sym___restrict__] = ACTIONS(8242), + [anon_sym__Atomic] = ACTIONS(8242), + [anon_sym__Noreturn] = ACTIONS(8242), + [anon_sym_noreturn] = ACTIONS(8242), + [anon_sym__Nonnull] = ACTIONS(8242), + [anon_sym_mutable] = ACTIONS(8242), + [anon_sym_constinit] = ACTIONS(8242), + [anon_sym_consteval] = ACTIONS(8242), + [anon_sym_alignas] = ACTIONS(9276), + [anon_sym__Alignas] = ACTIONS(9276), + [sym_primitive_type] = ACTIONS(8800), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6812), + }, + [STATE(3684)] = { + [sym_identifier] = ACTIONS(9278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9280), + [anon_sym_COMMA] = ACTIONS(9280), + [anon_sym_RPAREN] = ACTIONS(9280), + [aux_sym_preproc_if_token2] = ACTIONS(9280), + [aux_sym_preproc_else_token1] = ACTIONS(9280), + [aux_sym_preproc_elif_token1] = ACTIONS(9278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9280), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9280), + [anon_sym_LPAREN2] = ACTIONS(9280), + [anon_sym_DASH] = ACTIONS(9278), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_STAR] = ACTIONS(9278), + [anon_sym_SLASH] = ACTIONS(9278), + [anon_sym_PERCENT] = ACTIONS(9278), + [anon_sym_PIPE_PIPE] = ACTIONS(9280), + [anon_sym_AMP_AMP] = ACTIONS(9280), + [anon_sym_PIPE] = ACTIONS(9278), + [anon_sym_CARET] = ACTIONS(9278), + [anon_sym_AMP] = ACTIONS(9278), + [anon_sym_EQ_EQ] = ACTIONS(9280), + [anon_sym_BANG_EQ] = ACTIONS(9280), + [anon_sym_GT] = ACTIONS(9278), + [anon_sym_GT_EQ] = ACTIONS(9280), + [anon_sym_LT_EQ] = ACTIONS(9278), + [anon_sym_LT] = ACTIONS(9278), + [anon_sym_LT_LT] = ACTIONS(9278), + [anon_sym_GT_GT] = ACTIONS(9278), + [anon_sym_SEMI] = ACTIONS(9280), + [anon_sym___attribute__] = ACTIONS(9278), + [anon_sym___attribute] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9280), + [anon_sym_LBRACE] = ACTIONS(9280), + [anon_sym_RBRACE] = ACTIONS(9280), + [anon_sym_LBRACK] = ACTIONS(9280), + [anon_sym_EQ] = ACTIONS(9278), + [anon_sym_QMARK] = ACTIONS(9280), + [anon_sym_STAR_EQ] = ACTIONS(9280), + [anon_sym_SLASH_EQ] = ACTIONS(9280), + [anon_sym_PERCENT_EQ] = ACTIONS(9280), + [anon_sym_PLUS_EQ] = ACTIONS(9280), + [anon_sym_DASH_EQ] = ACTIONS(9280), + [anon_sym_LT_LT_EQ] = ACTIONS(9280), + [anon_sym_GT_GT_EQ] = ACTIONS(9280), + [anon_sym_AMP_EQ] = ACTIONS(9280), + [anon_sym_CARET_EQ] = ACTIONS(9280), + [anon_sym_PIPE_EQ] = ACTIONS(9280), + [anon_sym_and_eq] = ACTIONS(9278), + [anon_sym_or_eq] = ACTIONS(9278), + [anon_sym_xor_eq] = ACTIONS(9278), + [anon_sym_LT_EQ_GT] = ACTIONS(9280), + [anon_sym_or] = ACTIONS(9278), + [anon_sym_and] = ACTIONS(9278), + [anon_sym_bitor] = ACTIONS(9278), + [anon_sym_xor] = ACTIONS(9278), + [anon_sym_bitand] = ACTIONS(9278), + [anon_sym_not_eq] = ACTIONS(9278), + [anon_sym_DASH_DASH] = ACTIONS(9280), + [anon_sym_PLUS_PLUS] = ACTIONS(9280), + [anon_sym_DOT] = ACTIONS(9278), + [anon_sym_DOT_STAR] = ACTIONS(9280), + [anon_sym_DASH_GT] = ACTIONS(9280), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9280), + }, + [STATE(3685)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9284), + [anon_sym_COMMA] = ACTIONS(9284), + [anon_sym_RPAREN] = ACTIONS(9284), + [aux_sym_preproc_if_token2] = ACTIONS(9284), + [aux_sym_preproc_else_token1] = ACTIONS(9284), + [aux_sym_preproc_elif_token1] = ACTIONS(9282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9284), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9284), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9282), + [anon_sym_PLUS] = ACTIONS(9282), + [anon_sym_STAR] = ACTIONS(9282), + [anon_sym_SLASH] = ACTIONS(9282), + [anon_sym_PERCENT] = ACTIONS(9282), + [anon_sym_PIPE_PIPE] = ACTIONS(9284), + [anon_sym_AMP_AMP] = ACTIONS(9284), + [anon_sym_PIPE] = ACTIONS(9282), + [anon_sym_CARET] = ACTIONS(9282), + [anon_sym_AMP] = ACTIONS(9282), + [anon_sym_EQ_EQ] = ACTIONS(9284), + [anon_sym_BANG_EQ] = ACTIONS(9284), + [anon_sym_GT] = ACTIONS(9282), + [anon_sym_GT_EQ] = ACTIONS(9284), + [anon_sym_LT_EQ] = ACTIONS(9282), + [anon_sym_LT] = ACTIONS(9282), + [anon_sym_LT_LT] = ACTIONS(9282), + [anon_sym_GT_GT] = ACTIONS(9282), + [anon_sym_SEMI] = ACTIONS(9284), + [anon_sym___attribute__] = ACTIONS(9282), + [anon_sym___attribute] = ACTIONS(9282), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9284), + [anon_sym_RBRACE] = ACTIONS(9284), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9282), + [anon_sym_QMARK] = ACTIONS(9284), + [anon_sym_STAR_EQ] = ACTIONS(9284), + [anon_sym_SLASH_EQ] = ACTIONS(9284), + [anon_sym_PERCENT_EQ] = ACTIONS(9284), + [anon_sym_PLUS_EQ] = ACTIONS(9284), + [anon_sym_DASH_EQ] = ACTIONS(9284), + [anon_sym_LT_LT_EQ] = ACTIONS(9284), + [anon_sym_GT_GT_EQ] = ACTIONS(9284), + [anon_sym_AMP_EQ] = ACTIONS(9284), + [anon_sym_CARET_EQ] = ACTIONS(9284), + [anon_sym_PIPE_EQ] = ACTIONS(9284), + [anon_sym_and_eq] = ACTIONS(9282), + [anon_sym_or_eq] = ACTIONS(9282), + [anon_sym_xor_eq] = ACTIONS(9282), + [anon_sym_LT_EQ_GT] = ACTIONS(9284), + [anon_sym_or] = ACTIONS(9282), + [anon_sym_and] = ACTIONS(9282), + [anon_sym_bitor] = ACTIONS(9282), + [anon_sym_xor] = ACTIONS(9282), + [anon_sym_bitand] = ACTIONS(9282), + [anon_sym_not_eq] = ACTIONS(9282), + [anon_sym_DASH_DASH] = ACTIONS(9238), + [anon_sym_PLUS_PLUS] = ACTIONS(9238), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9284), + }, + [STATE(3686)] = { + [sym_template_argument_list] = STATE(2096), + [sym_identifier] = ACTIONS(9225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), + [anon_sym_COMMA] = ACTIONS(9227), + [anon_sym_RPAREN] = ACTIONS(9227), + [aux_sym_preproc_if_token2] = ACTIONS(9227), + [aux_sym_preproc_else_token1] = ACTIONS(9227), + [aux_sym_preproc_elif_token1] = ACTIONS(9225), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), + [anon_sym_LPAREN2] = ACTIONS(9227), + [anon_sym_DASH] = ACTIONS(9225), + [anon_sym_PLUS] = ACTIONS(9225), + [anon_sym_STAR] = ACTIONS(9225), + [anon_sym_SLASH] = ACTIONS(9225), + [anon_sym_PERCENT] = ACTIONS(9225), + [anon_sym_PIPE_PIPE] = ACTIONS(9227), + [anon_sym_AMP_AMP] = ACTIONS(9227), + [anon_sym_PIPE] = ACTIONS(9225), + [anon_sym_CARET] = ACTIONS(9225), + [anon_sym_AMP] = ACTIONS(9225), + [anon_sym_EQ_EQ] = ACTIONS(9227), + [anon_sym_BANG_EQ] = ACTIONS(9227), + [anon_sym_GT] = ACTIONS(9225), + [anon_sym_GT_EQ] = ACTIONS(9227), + [anon_sym_LT_EQ] = ACTIONS(9225), + [anon_sym_LT] = ACTIONS(9229), + [anon_sym_LT_LT] = ACTIONS(9225), + [anon_sym_GT_GT] = ACTIONS(9225), + [anon_sym_SEMI] = ACTIONS(9227), + [anon_sym___attribute__] = ACTIONS(9225), + [anon_sym___attribute] = ACTIONS(9225), + [anon_sym_COLON] = ACTIONS(9225), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), + [anon_sym_RBRACE] = ACTIONS(9227), + [anon_sym_LBRACK] = ACTIONS(9227), + [anon_sym_EQ] = ACTIONS(9225), + [anon_sym_QMARK] = ACTIONS(9227), + [anon_sym_STAR_EQ] = ACTIONS(9227), + [anon_sym_SLASH_EQ] = ACTIONS(9227), + [anon_sym_PERCENT_EQ] = ACTIONS(9227), + [anon_sym_PLUS_EQ] = ACTIONS(9227), + [anon_sym_DASH_EQ] = ACTIONS(9227), + [anon_sym_LT_LT_EQ] = ACTIONS(9227), + [anon_sym_GT_GT_EQ] = ACTIONS(9227), + [anon_sym_AMP_EQ] = ACTIONS(9227), + [anon_sym_CARET_EQ] = ACTIONS(9227), + [anon_sym_PIPE_EQ] = ACTIONS(9227), + [anon_sym_and_eq] = ACTIONS(9225), + [anon_sym_or_eq] = ACTIONS(9225), + [anon_sym_xor_eq] = ACTIONS(9225), + [anon_sym_LT_EQ_GT] = ACTIONS(9227), + [anon_sym_or] = ACTIONS(9225), + [anon_sym_and] = ACTIONS(9225), + [anon_sym_bitor] = ACTIONS(9225), + [anon_sym_xor] = ACTIONS(9225), + [anon_sym_bitand] = ACTIONS(9225), + [anon_sym_not_eq] = ACTIONS(9225), + [anon_sym_DASH_DASH] = ACTIONS(9227), + [anon_sym_PLUS_PLUS] = ACTIONS(9227), + [anon_sym_DOT] = ACTIONS(9225), + [anon_sym_DOT_STAR] = ACTIONS(9227), + [anon_sym_DASH_GT] = ACTIONS(9227), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9227), + }, + [STATE(3687)] = { + [sym_attribute_specifier] = STATE(3061), + [sym_enumerator_list] = STATE(3787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [anon_sym_RPAREN] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6987), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6987), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6987), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6987), + [anon_sym_GT_GT] = ACTIONS(6987), + [anon_sym_SEMI] = ACTIONS(6987), + [anon_sym___extension__] = ACTIONS(6987), + [anon_sym___attribute__] = ACTIONS(9025), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(6985), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6987), + [anon_sym_LBRACE] = ACTIONS(9162), + [anon_sym_RBRACE] = ACTIONS(6987), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6987), + [anon_sym_volatile] = ACTIONS(6987), + [anon_sym_restrict] = ACTIONS(6987), + [anon_sym___restrict__] = ACTIONS(6987), + [anon_sym__Atomic] = ACTIONS(6987), + [anon_sym__Noreturn] = ACTIONS(6987), + [anon_sym_noreturn] = ACTIONS(6987), + [anon_sym__Nonnull] = ACTIONS(6987), + [anon_sym_mutable] = ACTIONS(6987), + [anon_sym_constinit] = ACTIONS(6987), + [anon_sym_consteval] = ACTIONS(6987), + [anon_sym_alignas] = ACTIONS(6987), + [anon_sym__Alignas] = ACTIONS(6987), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6987), + [anon_sym_and] = ACTIONS(6987), + [anon_sym_bitor] = ACTIONS(6987), + [anon_sym_xor] = ACTIONS(6987), + [anon_sym_bitand] = ACTIONS(6987), + [anon_sym_not_eq] = ACTIONS(6987), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6987), + [anon_sym_override] = ACTIONS(6987), + [anon_sym_requires] = ACTIONS(6987), + [anon_sym_COLON_RBRACK] = ACTIONS(6987), + }, + [STATE(3688)] = { + [sym_template_argument_list] = STATE(2848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), + [anon_sym_COMMA] = ACTIONS(6751), + [anon_sym_RPAREN] = ACTIONS(6751), + [anon_sym_LPAREN2] = ACTIONS(6751), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6751), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6751), + [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [anon_sym_AMP_AMP] = ACTIONS(6751), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6751), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6751), + [anon_sym_BANG_EQ] = ACTIONS(6751), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6751), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(8390), + [anon_sym_LT_LT] = ACTIONS(6751), + [anon_sym_GT_GT] = ACTIONS(6751), + [anon_sym_SEMI] = ACTIONS(6751), + [anon_sym___extension__] = ACTIONS(6751), + [anon_sym___attribute__] = ACTIONS(6751), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), + [anon_sym_LBRACE] = ACTIONS(6751), + [anon_sym_RBRACE] = ACTIONS(6751), + [anon_sym_LBRACK] = ACTIONS(6751), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6751), + [anon_sym_volatile] = ACTIONS(6751), + [anon_sym_restrict] = ACTIONS(6751), + [anon_sym___restrict__] = ACTIONS(6751), + [anon_sym__Atomic] = ACTIONS(6751), + [anon_sym__Noreturn] = ACTIONS(6751), + [anon_sym_noreturn] = ACTIONS(6751), + [anon_sym__Nonnull] = ACTIONS(6751), + [anon_sym_mutable] = ACTIONS(6751), + [anon_sym_constinit] = ACTIONS(6751), + [anon_sym_consteval] = ACTIONS(6751), + [anon_sym_alignas] = ACTIONS(6751), + [anon_sym__Alignas] = ACTIONS(6751), + [anon_sym_QMARK] = ACTIONS(6751), + [anon_sym_LT_EQ_GT] = ACTIONS(6751), + [anon_sym_or] = ACTIONS(6751), + [anon_sym_and] = ACTIONS(6751), + [anon_sym_bitor] = ACTIONS(6751), + [anon_sym_xor] = ACTIONS(6751), + [anon_sym_bitand] = ACTIONS(6751), + [anon_sym_not_eq] = ACTIONS(6751), + [anon_sym_DASH_DASH] = ACTIONS(6751), + [anon_sym_PLUS_PLUS] = ACTIONS(6751), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6751), + [anon_sym_DASH_GT] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6751), + [anon_sym_override] = ACTIONS(6751), + [anon_sym_requires] = ACTIONS(6751), + [anon_sym_COLON_RBRACK] = ACTIONS(6751), + }, + [STATE(3689)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9288), + [anon_sym_COMMA] = ACTIONS(9288), + [anon_sym_RPAREN] = ACTIONS(9288), + [aux_sym_preproc_if_token2] = ACTIONS(9288), + [aux_sym_preproc_else_token1] = ACTIONS(9288), + [aux_sym_preproc_elif_token1] = ACTIONS(9286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9288), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9288), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9286), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_STAR] = ACTIONS(9286), + [anon_sym_SLASH] = ACTIONS(9286), + [anon_sym_PERCENT] = ACTIONS(9286), + [anon_sym_PIPE_PIPE] = ACTIONS(9288), + [anon_sym_AMP_AMP] = ACTIONS(9288), + [anon_sym_PIPE] = ACTIONS(9286), + [anon_sym_CARET] = ACTIONS(9286), + [anon_sym_AMP] = ACTIONS(9286), + [anon_sym_EQ_EQ] = ACTIONS(9288), + [anon_sym_BANG_EQ] = ACTIONS(9288), + [anon_sym_GT] = ACTIONS(9286), + [anon_sym_GT_EQ] = ACTIONS(9288), + [anon_sym_LT_EQ] = ACTIONS(9286), + [anon_sym_LT] = ACTIONS(9286), + [anon_sym_LT_LT] = ACTIONS(9286), + [anon_sym_GT_GT] = ACTIONS(9286), + [anon_sym_SEMI] = ACTIONS(9288), + [anon_sym___attribute__] = ACTIONS(9286), + [anon_sym___attribute] = ACTIONS(9286), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9288), + [anon_sym_RBRACE] = ACTIONS(9288), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9286), + [anon_sym_QMARK] = ACTIONS(9288), + [anon_sym_STAR_EQ] = ACTIONS(9288), + [anon_sym_SLASH_EQ] = ACTIONS(9288), + [anon_sym_PERCENT_EQ] = ACTIONS(9288), + [anon_sym_PLUS_EQ] = ACTIONS(9288), + [anon_sym_DASH_EQ] = ACTIONS(9288), + [anon_sym_LT_LT_EQ] = ACTIONS(9288), + [anon_sym_GT_GT_EQ] = ACTIONS(9288), + [anon_sym_AMP_EQ] = ACTIONS(9288), + [anon_sym_CARET_EQ] = ACTIONS(9288), + [anon_sym_PIPE_EQ] = ACTIONS(9288), + [anon_sym_and_eq] = ACTIONS(9286), + [anon_sym_or_eq] = ACTIONS(9286), + [anon_sym_xor_eq] = ACTIONS(9286), + [anon_sym_LT_EQ_GT] = ACTIONS(9288), + [anon_sym_or] = ACTIONS(9286), + [anon_sym_and] = ACTIONS(9286), + [anon_sym_bitor] = ACTIONS(9286), + [anon_sym_xor] = ACTIONS(9286), + [anon_sym_bitand] = ACTIONS(9286), + [anon_sym_not_eq] = ACTIONS(9286), + [anon_sym_DASH_DASH] = ACTIONS(9288), + [anon_sym_PLUS_PLUS] = ACTIONS(9288), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9288), + }, + [STATE(3690)] = { + [sym_type_qualifier] = STATE(3553), + [sym_alignas_qualifier] = STATE(3785), + [aux_sym__type_definition_type_repeat1] = STATE(3553), + [aux_sym_sized_type_specifier_repeat1] = STATE(3926), + [sym_identifier] = ACTIONS(8911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6886), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6886), + [anon_sym___extension__] = ACTIONS(8242), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8916), + [anon_sym_unsigned] = ACTIONS(8916), + [anon_sym_long] = ACTIONS(8916), + [anon_sym_short] = ACTIONS(8916), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(8242), + [anon_sym_constexpr] = ACTIONS(8242), + [anon_sym_volatile] = ACTIONS(8242), + [anon_sym_restrict] = ACTIONS(8242), + [anon_sym___restrict__] = ACTIONS(8242), + [anon_sym__Atomic] = ACTIONS(8242), + [anon_sym__Noreturn] = ACTIONS(8242), + [anon_sym_noreturn] = ACTIONS(8242), + [anon_sym__Nonnull] = ACTIONS(8242), + [anon_sym_mutable] = ACTIONS(8242), + [anon_sym_constinit] = ACTIONS(8242), + [anon_sym_consteval] = ACTIONS(8242), + [anon_sym_alignas] = ACTIONS(9276), + [anon_sym__Alignas] = ACTIONS(9276), + [sym_primitive_type] = ACTIONS(8921), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6884), + }, + [STATE(3691)] = { + [sym__abstract_declarator] = STATE(6431), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7009), + [anon_sym_PLUS] = ACTIONS(7009), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(7009), + [anon_sym_PERCENT] = ACTIONS(7007), + [anon_sym_PIPE_PIPE] = ACTIONS(7007), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(7009), + [anon_sym_CARET] = ACTIONS(7007), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(7007), + [anon_sym_BANG_EQ] = ACTIONS(7007), + [anon_sym_GT] = ACTIONS(7009), + [anon_sym_GT_EQ] = ACTIONS(7007), + [anon_sym_LT_EQ] = ACTIONS(7009), + [anon_sym_LT] = ACTIONS(7009), + [anon_sym_LT_LT] = ACTIONS(7007), + [anon_sym_GT_GT] = ACTIONS(7007), + [anon_sym_SEMI] = ACTIONS(7007), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(7007), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7007), + [anon_sym_LT_EQ_GT] = ACTIONS(7007), + [anon_sym_or] = ACTIONS(7007), + [anon_sym_and] = ACTIONS(7007), + [anon_sym_bitor] = ACTIONS(7007), + [anon_sym_xor] = ACTIONS(7007), + [anon_sym_bitand] = ACTIONS(7007), + [anon_sym_not_eq] = ACTIONS(7007), + [anon_sym_DASH_DASH] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7007), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_DOT_STAR] = ACTIONS(7007), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + }, + [STATE(3692)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8942), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_RPAREN] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3693)] = { + [sym__abstract_declarator] = STATE(6396), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3664), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), + [anon_sym_COMMA] = ACTIONS(6999), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(7001), + [anon_sym_PLUS] = ACTIONS(7001), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(7001), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(6999), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(7001), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6999), + [anon_sym_BANG_EQ] = ACTIONS(6999), + [anon_sym_GT] = ACTIONS(7001), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(7001), + [anon_sym_LT] = ACTIONS(7001), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym_SEMI] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(6999), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(6999), + [anon_sym_PLUS_PLUS] = ACTIONS(6999), + [anon_sym_DOT] = ACTIONS(7001), + [anon_sym_DOT_STAR] = ACTIONS(6999), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + }, + [STATE(3694)] = { + [sym_attribute_specifier] = STATE(4030), + [sym_enumerator_list] = STATE(3730), + [sym_identifier] = ACTIONS(6985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), + [anon_sym_COMMA] = ACTIONS(6987), + [aux_sym_preproc_if_token2] = ACTIONS(6987), + [aux_sym_preproc_else_token1] = ACTIONS(6987), + [aux_sym_preproc_elif_token1] = ACTIONS(6985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6987), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6987), + [anon_sym_LPAREN2] = ACTIONS(6987), + [anon_sym_DASH] = ACTIONS(6985), + [anon_sym_PLUS] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(6987), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6987), + [anon_sym_PIPE_PIPE] = ACTIONS(6987), + [anon_sym_AMP_AMP] = ACTIONS(6987), + [anon_sym_PIPE] = ACTIONS(6985), + [anon_sym_CARET] = ACTIONS(6987), + [anon_sym_AMP] = ACTIONS(6985), + [anon_sym_EQ_EQ] = ACTIONS(6987), + [anon_sym_BANG_EQ] = ACTIONS(6987), + [anon_sym_GT] = ACTIONS(6985), + [anon_sym_GT_EQ] = ACTIONS(6987), + [anon_sym_LT_EQ] = ACTIONS(6985), + [anon_sym_LT] = ACTIONS(6985), + [anon_sym_LT_LT] = ACTIONS(6987), + [anon_sym_GT_GT] = ACTIONS(6987), + [anon_sym___extension__] = ACTIONS(6985), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_LBRACE] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(6987), + [anon_sym_const] = ACTIONS(6985), + [anon_sym_constexpr] = ACTIONS(6985), + [anon_sym_volatile] = ACTIONS(6985), + [anon_sym_restrict] = ACTIONS(6985), + [anon_sym___restrict__] = ACTIONS(6985), + [anon_sym__Atomic] = ACTIONS(6985), + [anon_sym__Noreturn] = ACTIONS(6985), + [anon_sym_noreturn] = ACTIONS(6985), + [anon_sym__Nonnull] = ACTIONS(6985), + [anon_sym_mutable] = ACTIONS(6985), + [anon_sym_constinit] = ACTIONS(6985), + [anon_sym_consteval] = ACTIONS(6985), + [anon_sym_alignas] = ACTIONS(6985), + [anon_sym__Alignas] = ACTIONS(6985), + [anon_sym_QMARK] = ACTIONS(6987), + [anon_sym_LT_EQ_GT] = ACTIONS(6987), + [anon_sym_or] = ACTIONS(6985), + [anon_sym_and] = ACTIONS(6985), + [anon_sym_bitor] = ACTIONS(6985), + [anon_sym_xor] = ACTIONS(6985), + [anon_sym_bitand] = ACTIONS(6985), + [anon_sym_not_eq] = ACTIONS(6985), + [anon_sym_DASH_DASH] = ACTIONS(6987), + [anon_sym_PLUS_PLUS] = ACTIONS(6987), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_DOT_STAR] = ACTIONS(6987), + [anon_sym_DASH_GT] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6985), + [anon_sym_override] = ACTIONS(6985), + [anon_sym_requires] = ACTIONS(6985), + }, + [STATE(3695)] = { + [sym_argument_list] = STATE(3786), + [sym_subscript_argument_list] = STATE(3784), + [sym_identifier] = ACTIONS(9290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9292), + [anon_sym_COMMA] = ACTIONS(9292), + [anon_sym_RPAREN] = ACTIONS(9292), + [aux_sym_preproc_if_token2] = ACTIONS(9292), + [aux_sym_preproc_else_token1] = ACTIONS(9292), + [aux_sym_preproc_elif_token1] = ACTIONS(9290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9292), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_DASH] = ACTIONS(9290), + [anon_sym_PLUS] = ACTIONS(9290), + [anon_sym_STAR] = ACTIONS(9290), + [anon_sym_SLASH] = ACTIONS(9290), + [anon_sym_PERCENT] = ACTIONS(9290), + [anon_sym_PIPE_PIPE] = ACTIONS(9292), + [anon_sym_AMP_AMP] = ACTIONS(9292), + [anon_sym_PIPE] = ACTIONS(9290), + [anon_sym_CARET] = ACTIONS(9290), + [anon_sym_AMP] = ACTIONS(9290), + [anon_sym_EQ_EQ] = ACTIONS(9292), + [anon_sym_BANG_EQ] = ACTIONS(9292), + [anon_sym_GT] = ACTIONS(9290), + [anon_sym_GT_EQ] = ACTIONS(9292), + [anon_sym_LT_EQ] = ACTIONS(9290), + [anon_sym_LT] = ACTIONS(9290), + [anon_sym_LT_LT] = ACTIONS(9290), + [anon_sym_GT_GT] = ACTIONS(9290), + [anon_sym_SEMI] = ACTIONS(9292), + [anon_sym___attribute__] = ACTIONS(9290), + [anon_sym___attribute] = ACTIONS(9290), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9292), + [anon_sym_RBRACE] = ACTIONS(9292), + [anon_sym_LBRACK] = ACTIONS(9236), + [anon_sym_EQ] = ACTIONS(9290), + [anon_sym_QMARK] = ACTIONS(9292), + [anon_sym_STAR_EQ] = ACTIONS(9292), + [anon_sym_SLASH_EQ] = ACTIONS(9292), + [anon_sym_PERCENT_EQ] = ACTIONS(9292), + [anon_sym_PLUS_EQ] = ACTIONS(9292), + [anon_sym_DASH_EQ] = ACTIONS(9292), + [anon_sym_LT_LT_EQ] = ACTIONS(9292), + [anon_sym_GT_GT_EQ] = ACTIONS(9292), + [anon_sym_AMP_EQ] = ACTIONS(9292), + [anon_sym_CARET_EQ] = ACTIONS(9292), + [anon_sym_PIPE_EQ] = ACTIONS(9292), + [anon_sym_and_eq] = ACTIONS(9290), + [anon_sym_or_eq] = ACTIONS(9290), + [anon_sym_xor_eq] = ACTIONS(9290), + [anon_sym_LT_EQ_GT] = ACTIONS(9292), + [anon_sym_or] = ACTIONS(9290), + [anon_sym_and] = ACTIONS(9290), + [anon_sym_bitor] = ACTIONS(9290), + [anon_sym_xor] = ACTIONS(9290), + [anon_sym_bitand] = ACTIONS(9290), + [anon_sym_not_eq] = ACTIONS(9290), + [anon_sym_DASH_DASH] = ACTIONS(9292), + [anon_sym_PLUS_PLUS] = ACTIONS(9292), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_DOT_STAR] = ACTIONS(9242), + [anon_sym_DASH_GT] = ACTIONS(9242), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9292), + }, + [STATE(3696)] = { + [sym_identifier] = ACTIONS(9294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9296), + [anon_sym_COMMA] = ACTIONS(9296), + [anon_sym_RPAREN] = ACTIONS(9296), + [aux_sym_preproc_if_token2] = ACTIONS(9296), + [aux_sym_preproc_else_token1] = ACTIONS(9296), + [aux_sym_preproc_elif_token1] = ACTIONS(9294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9296), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9296), + [anon_sym_LPAREN2] = ACTIONS(9296), + [anon_sym_DASH] = ACTIONS(9294), + [anon_sym_PLUS] = ACTIONS(9294), + [anon_sym_STAR] = ACTIONS(9294), + [anon_sym_SLASH] = ACTIONS(9294), + [anon_sym_PERCENT] = ACTIONS(9294), + [anon_sym_PIPE_PIPE] = ACTIONS(9296), + [anon_sym_AMP_AMP] = ACTIONS(9296), + [anon_sym_PIPE] = ACTIONS(9294), + [anon_sym_CARET] = ACTIONS(9294), + [anon_sym_AMP] = ACTIONS(9294), + [anon_sym_EQ_EQ] = ACTIONS(9296), + [anon_sym_BANG_EQ] = ACTIONS(9296), + [anon_sym_GT] = ACTIONS(9294), + [anon_sym_GT_EQ] = ACTIONS(9296), + [anon_sym_LT_EQ] = ACTIONS(9294), + [anon_sym_LT] = ACTIONS(9294), + [anon_sym_LT_LT] = ACTIONS(9294), + [anon_sym_GT_GT] = ACTIONS(9294), + [anon_sym_SEMI] = ACTIONS(9296), + [anon_sym___attribute__] = ACTIONS(9294), + [anon_sym___attribute] = ACTIONS(9294), + [anon_sym_COLON] = ACTIONS(9294), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9296), + [anon_sym_LBRACE] = ACTIONS(9296), + [anon_sym_RBRACE] = ACTIONS(9296), + [anon_sym_LBRACK] = ACTIONS(9296), + [anon_sym_EQ] = ACTIONS(9294), + [anon_sym_QMARK] = ACTIONS(9296), + [anon_sym_STAR_EQ] = ACTIONS(9296), + [anon_sym_SLASH_EQ] = ACTIONS(9296), + [anon_sym_PERCENT_EQ] = ACTIONS(9296), + [anon_sym_PLUS_EQ] = ACTIONS(9296), + [anon_sym_DASH_EQ] = ACTIONS(9296), + [anon_sym_LT_LT_EQ] = ACTIONS(9296), + [anon_sym_GT_GT_EQ] = ACTIONS(9296), + [anon_sym_AMP_EQ] = ACTIONS(9296), + [anon_sym_CARET_EQ] = ACTIONS(9296), + [anon_sym_PIPE_EQ] = ACTIONS(9296), + [anon_sym_and_eq] = ACTIONS(9294), + [anon_sym_or_eq] = ACTIONS(9294), + [anon_sym_xor_eq] = ACTIONS(9294), + [anon_sym_LT_EQ_GT] = ACTIONS(9296), + [anon_sym_or] = ACTIONS(9294), + [anon_sym_and] = ACTIONS(9294), + [anon_sym_bitor] = ACTIONS(9294), + [anon_sym_xor] = ACTIONS(9294), + [anon_sym_bitand] = ACTIONS(9294), + [anon_sym_not_eq] = ACTIONS(9294), + [anon_sym_DASH_DASH] = ACTIONS(9296), + [anon_sym_PLUS_PLUS] = ACTIONS(9296), + [anon_sym_DOT] = ACTIONS(9294), + [anon_sym_DOT_STAR] = ACTIONS(9296), + [anon_sym_DASH_GT] = ACTIONS(9296), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9296), + }, + [STATE(3697)] = { + [sym_type_qualifier] = STATE(3714), + [sym_alignas_qualifier] = STATE(3736), + [aux_sym__type_definition_type_repeat1] = STATE(3714), + [aux_sym_sized_type_specifier_repeat1] = STATE(4013), + [sym_identifier] = ACTIONS(8847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_DASH] = ACTIONS(6814), + [anon_sym_PLUS] = ACTIONS(6814), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_SLASH] = ACTIONS(6814), + [anon_sym_PERCENT] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_CARET] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_EQ_EQ] = ACTIONS(6812), + [anon_sym_BANG_EQ] = ACTIONS(6812), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_EQ] = ACTIONS(6812), + [anon_sym_LT_EQ] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6812), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(9298), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(9300), + [anon_sym_unsigned] = ACTIONS(9300), + [anon_sym_long] = ACTIONS(9300), + [anon_sym_short] = ACTIONS(9300), + [anon_sym_LBRACK] = ACTIONS(6812), + [anon_sym_RBRACK] = ACTIONS(6812), + [anon_sym_const] = ACTIONS(9298), + [anon_sym_constexpr] = ACTIONS(9298), + [anon_sym_volatile] = ACTIONS(9298), + [anon_sym_restrict] = ACTIONS(9298), + [anon_sym___restrict__] = ACTIONS(9298), + [anon_sym__Atomic] = ACTIONS(9298), + [anon_sym__Noreturn] = ACTIONS(9298), + [anon_sym_noreturn] = ACTIONS(9298), + [anon_sym__Nonnull] = ACTIONS(9298), + [anon_sym_mutable] = ACTIONS(9298), + [anon_sym_constinit] = ACTIONS(9298), + [anon_sym_consteval] = ACTIONS(9298), + [anon_sym_alignas] = ACTIONS(9302), + [anon_sym__Alignas] = ACTIONS(9302), + [sym_primitive_type] = ACTIONS(8510), + [anon_sym_QMARK] = ACTIONS(6812), + [anon_sym_LT_EQ_GT] = ACTIONS(6812), + [anon_sym_or] = ACTIONS(6814), + [anon_sym_and] = ACTIONS(6814), + [anon_sym_bitor] = ACTIONS(6814), + [anon_sym_xor] = ACTIONS(6814), + [anon_sym_bitand] = ACTIONS(6814), + [anon_sym_not_eq] = ACTIONS(6814), + [anon_sym_DASH_DASH] = ACTIONS(6812), + [anon_sym_PLUS_PLUS] = ACTIONS(6812), + [anon_sym_DOT] = ACTIONS(6814), + [anon_sym_DOT_STAR] = ACTIONS(6812), + [anon_sym_DASH_GT] = ACTIONS(6812), + [sym_comment] = ACTIONS(3), + }, + [STATE(3698)] = { + [sym_identifier] = ACTIONS(9304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9306), + [anon_sym_COMMA] = ACTIONS(9306), + [anon_sym_RPAREN] = ACTIONS(9306), + [aux_sym_preproc_if_token2] = ACTIONS(9306), + [aux_sym_preproc_else_token1] = ACTIONS(9306), + [aux_sym_preproc_elif_token1] = ACTIONS(9304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9306), + [anon_sym_LPAREN2] = ACTIONS(9306), + [anon_sym_DASH] = ACTIONS(9304), + [anon_sym_PLUS] = ACTIONS(9304), + [anon_sym_STAR] = ACTIONS(9304), + [anon_sym_SLASH] = ACTIONS(9304), + [anon_sym_PERCENT] = ACTIONS(9304), + [anon_sym_PIPE_PIPE] = ACTIONS(9306), + [anon_sym_AMP_AMP] = ACTIONS(9306), + [anon_sym_PIPE] = ACTIONS(9304), + [anon_sym_CARET] = ACTIONS(9304), + [anon_sym_AMP] = ACTIONS(9304), + [anon_sym_EQ_EQ] = ACTIONS(9306), + [anon_sym_BANG_EQ] = ACTIONS(9306), + [anon_sym_GT] = ACTIONS(9304), + [anon_sym_GT_EQ] = ACTIONS(9306), + [anon_sym_LT_EQ] = ACTIONS(9304), + [anon_sym_LT] = ACTIONS(9304), + [anon_sym_LT_LT] = ACTIONS(9304), + [anon_sym_GT_GT] = ACTIONS(9304), + [anon_sym_SEMI] = ACTIONS(9306), + [anon_sym___attribute__] = ACTIONS(9304), + [anon_sym___attribute] = ACTIONS(9304), + [anon_sym_COLON] = ACTIONS(9304), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9306), + [anon_sym_LBRACE] = ACTIONS(9306), + [anon_sym_RBRACE] = ACTIONS(9306), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9304), + [anon_sym_QMARK] = ACTIONS(9306), + [anon_sym_STAR_EQ] = ACTIONS(9306), + [anon_sym_SLASH_EQ] = ACTIONS(9306), + [anon_sym_PERCENT_EQ] = ACTIONS(9306), + [anon_sym_PLUS_EQ] = ACTIONS(9306), + [anon_sym_DASH_EQ] = ACTIONS(9306), + [anon_sym_LT_LT_EQ] = ACTIONS(9306), + [anon_sym_GT_GT_EQ] = ACTIONS(9306), + [anon_sym_AMP_EQ] = ACTIONS(9306), + [anon_sym_CARET_EQ] = ACTIONS(9306), + [anon_sym_PIPE_EQ] = ACTIONS(9306), + [anon_sym_and_eq] = ACTIONS(9304), + [anon_sym_or_eq] = ACTIONS(9304), + [anon_sym_xor_eq] = ACTIONS(9304), + [anon_sym_LT_EQ_GT] = ACTIONS(9306), + [anon_sym_or] = ACTIONS(9304), + [anon_sym_and] = ACTIONS(9304), + [anon_sym_bitor] = ACTIONS(9304), + [anon_sym_xor] = ACTIONS(9304), + [anon_sym_bitand] = ACTIONS(9304), + [anon_sym_not_eq] = ACTIONS(9304), + [anon_sym_DASH_DASH] = ACTIONS(9306), + [anon_sym_PLUS_PLUS] = ACTIONS(9306), + [anon_sym_DOT] = ACTIONS(9304), + [anon_sym_DOT_STAR] = ACTIONS(9306), + [anon_sym_DASH_GT] = ACTIONS(9306), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9306), + }, + [STATE(3699)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8646), + [sym__abstract_declarator] = STATE(8923), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5185), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(6497), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8307), + [anon_sym_AMP_AMP] = ACTIONS(8309), + [anon_sym_AMP] = ACTIONS(8311), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(6495), + [anon_sym___attribute] = ACTIONS(6495), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_GT2] = ACTIONS(6497), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3700)] = { + [sym_ms_based_modifier] = STATE(10656), + [sym__declarator] = STATE(8705), + [sym__abstract_declarator] = STATE(8889), + [sym_parenthesized_declarator] = STATE(8469), + [sym_abstract_parenthesized_declarator] = STATE(8389), + [sym_attributed_declarator] = STATE(8469), + [sym_pointer_declarator] = STATE(8469), + [sym_abstract_pointer_declarator] = STATE(8389), + [sym_function_declarator] = STATE(8469), + [sym_abstract_function_declarator] = STATE(8389), + [sym_array_declarator] = STATE(8469), + [sym_abstract_array_declarator] = STATE(8389), + [sym_type_qualifier] = STATE(6842), + [sym_alignas_qualifier] = STATE(7436), + [sym_parameter_list] = STATE(5256), + [sym_decltype] = STATE(10976), + [sym_reference_declarator] = STATE(8469), + [sym_abstract_reference_declarator] = STATE(8389), + [sym_structured_binding_declarator] = STATE(8469), + [sym__function_declarator_seq] = STATE(8393), + [sym_template_type] = STATE(10976), + [sym_template_function] = STATE(8469), + [sym_destructor_name] = STATE(8469), + [sym_dependent_type_identifier] = STATE(10976), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8469), + [sym_splice_specifier] = STATE(8089), + [sym__splice_specialization_specifier] = STATE(3682), + [sym_splice_type_specifier] = STATE(10976), + [sym_splice_expression] = STATE(10976), + [sym_operator_name] = STATE(8469), + [aux_sym__type_definition_type_repeat1] = STATE(6842), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(7007), + [anon_sym_RPAREN] = ACTIONS(7007), + [anon_sym_LPAREN2] = ACTIONS(5301), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(7009), + [anon_sym___attribute] = ACTIONS(7009), + [anon_sym_COLON_COLON] = ACTIONS(8203), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5311), + [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__Nonnull] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2939), + [anon_sym__Alignas] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2062), + [anon_sym_template] = ACTIONS(4800), + [anon_sym_operator] = ACTIONS(1924), + [anon_sym_LBRACK_COLON] = ACTIONS(4804), + }, + [STATE(3701)] = { + [sym_template_argument_list] = STATE(3611), + [sym_identifier] = ACTIONS(9225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), + [anon_sym_COMMA] = ACTIONS(9227), + [anon_sym_RPAREN] = ACTIONS(9227), + [aux_sym_preproc_if_token2] = ACTIONS(9227), + [aux_sym_preproc_else_token1] = ACTIONS(9227), + [aux_sym_preproc_elif_token1] = ACTIONS(9225), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), + [anon_sym_LPAREN2] = ACTIONS(9227), + [anon_sym_DASH] = ACTIONS(9225), + [anon_sym_PLUS] = ACTIONS(9225), + [anon_sym_STAR] = ACTIONS(9225), + [anon_sym_SLASH] = ACTIONS(9225), + [anon_sym_PERCENT] = ACTIONS(9225), + [anon_sym_PIPE_PIPE] = ACTIONS(9227), + [anon_sym_AMP_AMP] = ACTIONS(9227), + [anon_sym_PIPE] = ACTIONS(9225), + [anon_sym_CARET] = ACTIONS(9225), + [anon_sym_AMP] = ACTIONS(9225), + [anon_sym_EQ_EQ] = ACTIONS(9227), + [anon_sym_BANG_EQ] = ACTIONS(9227), + [anon_sym_GT] = ACTIONS(9225), + [anon_sym_GT_EQ] = ACTIONS(9227), + [anon_sym_LT_EQ] = ACTIONS(9225), + [anon_sym_LT] = ACTIONS(9229), + [anon_sym_LT_LT] = ACTIONS(9225), + [anon_sym_GT_GT] = ACTIONS(9225), + [anon_sym_SEMI] = ACTIONS(9227), + [anon_sym___attribute__] = ACTIONS(9225), + [anon_sym___attribute] = ACTIONS(9225), + [anon_sym_COLON] = ACTIONS(9225), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), + [anon_sym_RBRACE] = ACTIONS(9227), + [anon_sym_LBRACK] = ACTIONS(9227), + [anon_sym_EQ] = ACTIONS(9225), + [anon_sym_QMARK] = ACTIONS(9227), + [anon_sym_STAR_EQ] = ACTIONS(9227), + [anon_sym_SLASH_EQ] = ACTIONS(9227), + [anon_sym_PERCENT_EQ] = ACTIONS(9227), + [anon_sym_PLUS_EQ] = ACTIONS(9227), + [anon_sym_DASH_EQ] = ACTIONS(9227), + [anon_sym_LT_LT_EQ] = ACTIONS(9227), + [anon_sym_GT_GT_EQ] = ACTIONS(9227), + [anon_sym_AMP_EQ] = ACTIONS(9227), + [anon_sym_CARET_EQ] = ACTIONS(9227), + [anon_sym_PIPE_EQ] = ACTIONS(9227), + [anon_sym_and_eq] = ACTIONS(9225), + [anon_sym_or_eq] = ACTIONS(9225), + [anon_sym_xor_eq] = ACTIONS(9225), + [anon_sym_LT_EQ_GT] = ACTIONS(9227), + [anon_sym_or] = ACTIONS(9225), + [anon_sym_and] = ACTIONS(9225), + [anon_sym_bitor] = ACTIONS(9225), + [anon_sym_xor] = ACTIONS(9225), + [anon_sym_bitand] = ACTIONS(9225), + [anon_sym_not_eq] = ACTIONS(9225), + [anon_sym_DASH_DASH] = ACTIONS(9227), + [anon_sym_PLUS_PLUS] = ACTIONS(9227), + [anon_sym_DOT] = ACTIONS(9225), + [anon_sym_DOT_STAR] = ACTIONS(9227), + [anon_sym_DASH_GT] = ACTIONS(9227), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9227), + }, + [STATE(3702)] = { + [sym_identifier] = ACTIONS(9308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9310), + [anon_sym_COMMA] = ACTIONS(9310), + [anon_sym_RPAREN] = ACTIONS(9310), + [aux_sym_preproc_if_token2] = ACTIONS(9310), + [aux_sym_preproc_else_token1] = ACTIONS(9310), + [aux_sym_preproc_elif_token1] = ACTIONS(9308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9310), + [anon_sym_LPAREN2] = ACTIONS(9310), + [anon_sym_DASH] = ACTIONS(9308), + [anon_sym_PLUS] = ACTIONS(9308), + [anon_sym_STAR] = ACTIONS(9308), + [anon_sym_SLASH] = ACTIONS(9308), + [anon_sym_PERCENT] = ACTIONS(9308), + [anon_sym_PIPE_PIPE] = ACTIONS(9310), + [anon_sym_AMP_AMP] = ACTIONS(9310), + [anon_sym_PIPE] = ACTIONS(9308), + [anon_sym_CARET] = ACTIONS(9308), + [anon_sym_AMP] = ACTIONS(9308), + [anon_sym_EQ_EQ] = ACTIONS(9310), + [anon_sym_BANG_EQ] = ACTIONS(9310), + [anon_sym_GT] = ACTIONS(9308), + [anon_sym_GT_EQ] = ACTIONS(9310), + [anon_sym_LT_EQ] = ACTIONS(9308), + [anon_sym_LT] = ACTIONS(9308), + [anon_sym_LT_LT] = ACTIONS(9308), + [anon_sym_GT_GT] = ACTIONS(9308), + [anon_sym_SEMI] = ACTIONS(9310), + [anon_sym___attribute__] = ACTIONS(9308), + [anon_sym___attribute] = ACTIONS(9308), + [anon_sym_COLON] = ACTIONS(9308), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9310), + [anon_sym_RBRACE] = ACTIONS(9310), + [anon_sym_LBRACK] = ACTIONS(9308), + [anon_sym_EQ] = ACTIONS(9308), + [anon_sym_QMARK] = ACTIONS(9310), + [anon_sym_STAR_EQ] = ACTIONS(9310), + [anon_sym_SLASH_EQ] = ACTIONS(9310), + [anon_sym_PERCENT_EQ] = ACTIONS(9310), + [anon_sym_PLUS_EQ] = ACTIONS(9310), + [anon_sym_DASH_EQ] = ACTIONS(9310), + [anon_sym_LT_LT_EQ] = ACTIONS(9310), + [anon_sym_GT_GT_EQ] = ACTIONS(9310), + [anon_sym_AMP_EQ] = ACTIONS(9310), + [anon_sym_CARET_EQ] = ACTIONS(9310), + [anon_sym_PIPE_EQ] = ACTIONS(9310), + [anon_sym_and_eq] = ACTIONS(9308), + [anon_sym_or_eq] = ACTIONS(9308), + [anon_sym_xor_eq] = ACTIONS(9308), + [anon_sym_LT_EQ_GT] = ACTIONS(9310), + [anon_sym_or] = ACTIONS(9308), + [anon_sym_and] = ACTIONS(9308), + [anon_sym_bitor] = ACTIONS(9308), + [anon_sym_xor] = ACTIONS(9308), + [anon_sym_bitand] = ACTIONS(9308), + [anon_sym_not_eq] = ACTIONS(9308), + [anon_sym_DASH_DASH] = ACTIONS(9310), + [anon_sym_PLUS_PLUS] = ACTIONS(9310), + [anon_sym_DOT] = ACTIONS(9308), + [anon_sym_DOT_STAR] = ACTIONS(9310), + [anon_sym_DASH_GT] = ACTIONS(9310), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9310), + [anon_sym_LBRACK_RBRACK] = ACTIONS(9312), + }, + [STATE(3703)] = { + [sym_template_argument_list] = STATE(3601), + [aux_sym_sized_type_specifier_repeat1] = STATE(3914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), + [anon_sym_COMMA] = ACTIONS(7019), + [anon_sym_LPAREN2] = ACTIONS(7019), + [anon_sym_DASH] = ACTIONS(7017), + [anon_sym_PLUS] = ACTIONS(7017), + [anon_sym_STAR] = ACTIONS(7019), + [anon_sym_SLASH] = ACTIONS(7017), + [anon_sym_PERCENT] = ACTIONS(7019), + [anon_sym_PIPE_PIPE] = ACTIONS(7019), + [anon_sym_AMP_AMP] = ACTIONS(7019), + [anon_sym_PIPE] = ACTIONS(7017), + [anon_sym_CARET] = ACTIONS(7019), + [anon_sym_AMP] = ACTIONS(7017), + [anon_sym_EQ_EQ] = ACTIONS(7019), + [anon_sym_BANG_EQ] = ACTIONS(7019), + [anon_sym_GT] = ACTIONS(7017), + [anon_sym_GT_EQ] = ACTIONS(7017), + [anon_sym_LT_EQ] = ACTIONS(7017), + [anon_sym_LT] = ACTIONS(7017), + [anon_sym_LT_LT] = ACTIONS(7019), + [anon_sym_GT_GT] = ACTIONS(7017), + [anon_sym___extension__] = ACTIONS(7019), + [anon_sym___attribute__] = ACTIONS(7019), + [anon_sym___attribute] = ACTIONS(7017), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(7019), + [anon_sym_signed] = ACTIONS(6688), + [anon_sym_unsigned] = ACTIONS(6688), + [anon_sym_long] = ACTIONS(6688), + [anon_sym_short] = ACTIONS(6688), + [anon_sym_LBRACK] = ACTIONS(7019), + [anon_sym_const] = ACTIONS(7017), + [anon_sym_constexpr] = ACTIONS(7019), + [anon_sym_volatile] = ACTIONS(7019), + [anon_sym_restrict] = ACTIONS(7019), + [anon_sym___restrict__] = ACTIONS(7019), + [anon_sym__Atomic] = ACTIONS(7019), + [anon_sym__Noreturn] = ACTIONS(7019), + [anon_sym_noreturn] = ACTIONS(7019), + [anon_sym__Nonnull] = ACTIONS(7019), + [anon_sym_mutable] = ACTIONS(7019), + [anon_sym_constinit] = ACTIONS(7019), + [anon_sym_consteval] = ACTIONS(7019), + [anon_sym_alignas] = ACTIONS(7019), + [anon_sym__Alignas] = ACTIONS(7019), + [anon_sym_QMARK] = ACTIONS(7019), + [anon_sym_LT_EQ_GT] = ACTIONS(7019), + [anon_sym_or] = ACTIONS(7019), + [anon_sym_and] = ACTIONS(7019), + [anon_sym_bitor] = ACTIONS(7019), + [anon_sym_xor] = ACTIONS(7019), + [anon_sym_bitand] = ACTIONS(7019), + [anon_sym_not_eq] = ACTIONS(7019), + [anon_sym_DASH_DASH] = ACTIONS(7019), + [anon_sym_PLUS_PLUS] = ACTIONS(7019), + [anon_sym_DOT] = ACTIONS(7017), + [anon_sym_DOT_STAR] = ACTIONS(7019), + [anon_sym_DASH_GT] = ACTIONS(7019), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7019), + [anon_sym_override] = ACTIONS(7019), + [anon_sym_GT2] = ACTIONS(7019), + [anon_sym_requires] = ACTIONS(7019), + }, + [STATE(3704)] = { + [sym_identifier] = ACTIONS(8446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), + [anon_sym_COMMA] = ACTIONS(8448), + [anon_sym_LPAREN2] = ACTIONS(8448), + [anon_sym_DASH] = ACTIONS(8446), + [anon_sym_PLUS] = ACTIONS(8446), + [anon_sym_STAR] = ACTIONS(8446), + [anon_sym_SLASH] = ACTIONS(8446), + [anon_sym_PERCENT] = ACTIONS(8446), + [anon_sym_PIPE_PIPE] = ACTIONS(8448), + [anon_sym_AMP_AMP] = ACTIONS(8448), + [anon_sym_PIPE] = ACTIONS(8446), + [anon_sym_CARET] = ACTIONS(8446), + [anon_sym_AMP] = ACTIONS(8446), + [anon_sym_EQ_EQ] = ACTIONS(8448), + [anon_sym_BANG_EQ] = ACTIONS(8448), + [anon_sym_GT] = ACTIONS(8446), + [anon_sym_GT_EQ] = ACTIONS(8448), + [anon_sym_LT_EQ] = ACTIONS(8446), + [anon_sym_LT] = ACTIONS(8446), + [anon_sym_LT_LT] = ACTIONS(8446), + [anon_sym_GT_GT] = ACTIONS(8446), + [anon_sym_SEMI] = ACTIONS(8448), + [anon_sym___attribute__] = ACTIONS(8446), + [anon_sym___attribute] = ACTIONS(8446), + [anon_sym_LBRACK] = ACTIONS(8448), + [anon_sym_EQ] = ACTIONS(8446), + [anon_sym_QMARK] = ACTIONS(8448), + [anon_sym_STAR_EQ] = ACTIONS(8448), + [anon_sym_SLASH_EQ] = ACTIONS(8448), + [anon_sym_PERCENT_EQ] = ACTIONS(8448), + [anon_sym_PLUS_EQ] = ACTIONS(8448), + [anon_sym_DASH_EQ] = ACTIONS(8448), + [anon_sym_LT_LT_EQ] = ACTIONS(8448), + [anon_sym_GT_GT_EQ] = ACTIONS(8448), + [anon_sym_AMP_EQ] = ACTIONS(8448), + [anon_sym_CARET_EQ] = ACTIONS(8448), + [anon_sym_PIPE_EQ] = ACTIONS(8448), + [anon_sym_and_eq] = ACTIONS(8446), + [anon_sym_or_eq] = ACTIONS(8446), + [anon_sym_xor_eq] = ACTIONS(8446), + [anon_sym_LT_EQ_GT] = ACTIONS(8448), + [anon_sym_or] = ACTIONS(8446), + [anon_sym_and] = ACTIONS(8446), + [anon_sym_bitor] = ACTIONS(8446), + [anon_sym_xor] = ACTIONS(8446), + [anon_sym_bitand] = ACTIONS(8446), + [anon_sym_not_eq] = ACTIONS(8446), + [anon_sym_DASH_DASH] = ACTIONS(8448), + [anon_sym_PLUS_PLUS] = ACTIONS(8448), + [anon_sym_DOT] = ACTIONS(8446), + [anon_sym_DOT_STAR] = ACTIONS(8448), + [anon_sym_DASH_GT] = ACTIONS(8448), + [anon_sym_L_DQUOTE] = ACTIONS(8448), + [anon_sym_u_DQUOTE] = ACTIONS(8448), + [anon_sym_U_DQUOTE] = ACTIONS(8448), + [anon_sym_u8_DQUOTE] = ACTIONS(8448), + [anon_sym_DQUOTE] = ACTIONS(8448), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8448), + [anon_sym_LR_DQUOTE] = ACTIONS(8448), + [anon_sym_uR_DQUOTE] = ACTIONS(8448), + [anon_sym_UR_DQUOTE] = ACTIONS(8448), + [anon_sym_u8R_DQUOTE] = ACTIONS(8448), + [sym_literal_suffix] = ACTIONS(8446), + }, + [STATE(3705)] = { + [sym_argument_list] = STATE(3783), + [sym_initializer_list] = STATE(5860), + [aux_sym_sized_type_specifier_repeat1] = STATE(3287), + [sym_identifier] = ACTIONS(6798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), + [anon_sym_COMMA] = ACTIONS(6800), + [aux_sym_preproc_if_token2] = ACTIONS(6800), + [aux_sym_preproc_else_token1] = ACTIONS(6800), + [aux_sym_preproc_elif_token1] = ACTIONS(6798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(6798), + [anon_sym_PLUS] = ACTIONS(6798), + [anon_sym_STAR] = ACTIONS(6800), + [anon_sym_SLASH] = ACTIONS(6798), + [anon_sym_PERCENT] = ACTIONS(6800), + [anon_sym_PIPE_PIPE] = ACTIONS(6800), + [anon_sym_AMP_AMP] = ACTIONS(6800), + [anon_sym_PIPE] = ACTIONS(6798), + [anon_sym_CARET] = ACTIONS(6800), + [anon_sym_AMP] = ACTIONS(6798), + [anon_sym_EQ_EQ] = ACTIONS(6800), + [anon_sym_BANG_EQ] = ACTIONS(6800), + [anon_sym_GT] = ACTIONS(6798), + [anon_sym_GT_EQ] = ACTIONS(6800), + [anon_sym_LT_EQ] = ACTIONS(6798), + [anon_sym_LT] = ACTIONS(6798), + [anon_sym_LT_LT] = ACTIONS(6800), + [anon_sym_GT_GT] = ACTIONS(6800), + [anon_sym___extension__] = ACTIONS(6798), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_signed] = ACTIONS(8788), + [anon_sym_unsigned] = ACTIONS(8788), + [anon_sym_long] = ACTIONS(8788), + [anon_sym_short] = ACTIONS(8788), + [anon_sym_LBRACK] = ACTIONS(6800), + [anon_sym_const] = ACTIONS(6798), + [anon_sym_constexpr] = ACTIONS(6798), + [anon_sym_volatile] = ACTIONS(6798), + [anon_sym_restrict] = ACTIONS(6798), + [anon_sym___restrict__] = ACTIONS(6798), + [anon_sym__Atomic] = ACTIONS(6798), + [anon_sym__Noreturn] = ACTIONS(6798), + [anon_sym_noreturn] = ACTIONS(6798), + [anon_sym__Nonnull] = ACTIONS(6798), + [anon_sym_mutable] = ACTIONS(6798), + [anon_sym_constinit] = ACTIONS(6798), + [anon_sym_consteval] = ACTIONS(6798), + [anon_sym_alignas] = ACTIONS(6798), + [anon_sym__Alignas] = ACTIONS(6798), + [anon_sym_QMARK] = ACTIONS(6800), + [anon_sym_LT_EQ_GT] = ACTIONS(6800), + [anon_sym_or] = ACTIONS(6798), + [anon_sym_and] = ACTIONS(6798), + [anon_sym_bitor] = ACTIONS(6798), + [anon_sym_xor] = ACTIONS(6798), + [anon_sym_bitand] = ACTIONS(6798), + [anon_sym_not_eq] = ACTIONS(6798), + [anon_sym_DASH_DASH] = ACTIONS(6800), + [anon_sym_PLUS_PLUS] = ACTIONS(6800), + [anon_sym_DOT] = ACTIONS(6798), + [anon_sym_DOT_STAR] = ACTIONS(6800), + [anon_sym_DASH_GT] = ACTIONS(6800), + [sym_comment] = ACTIONS(3), + }, + [STATE(3706)] = { + [sym_identifier] = ACTIONS(5260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), + [anon_sym_COMMA] = ACTIONS(5253), + [anon_sym_RPAREN] = ACTIONS(5253), + [aux_sym_preproc_if_token2] = ACTIONS(5253), + [aux_sym_preproc_else_token1] = ACTIONS(5253), + [aux_sym_preproc_elif_token1] = ACTIONS(5260), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), + [anon_sym_LPAREN2] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5260), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_SLASH] = ACTIONS(5260), + [anon_sym_PERCENT] = ACTIONS(5260), + [anon_sym_PIPE_PIPE] = ACTIONS(5253), + [anon_sym_AMP_AMP] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5260), + [anon_sym_CARET] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_EQ_EQ] = ACTIONS(5253), + [anon_sym_BANG_EQ] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5260), + [anon_sym_GT_EQ] = ACTIONS(5253), + [anon_sym_LT_EQ] = ACTIONS(5260), + [anon_sym_LT] = ACTIONS(5260), + [anon_sym_LT_LT] = ACTIONS(5260), + [anon_sym_GT_GT] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5253), + [anon_sym___attribute__] = ACTIONS(5260), + [anon_sym___attribute] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_LBRACK] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5253), + [anon_sym_STAR_EQ] = ACTIONS(5253), + [anon_sym_SLASH_EQ] = ACTIONS(5253), + [anon_sym_PERCENT_EQ] = ACTIONS(5253), + [anon_sym_PLUS_EQ] = ACTIONS(5253), + [anon_sym_DASH_EQ] = ACTIONS(5253), + [anon_sym_LT_LT_EQ] = ACTIONS(5253), + [anon_sym_GT_GT_EQ] = ACTIONS(5253), + [anon_sym_AMP_EQ] = ACTIONS(5253), + [anon_sym_CARET_EQ] = ACTIONS(5253), + [anon_sym_PIPE_EQ] = ACTIONS(5253), + [anon_sym_and_eq] = ACTIONS(5260), + [anon_sym_or_eq] = ACTIONS(5260), + [anon_sym_xor_eq] = ACTIONS(5260), + [anon_sym_LT_EQ_GT] = ACTIONS(5253), + [anon_sym_or] = ACTIONS(5260), + [anon_sym_and] = ACTIONS(5260), + [anon_sym_bitor] = ACTIONS(5260), + [anon_sym_xor] = ACTIONS(5260), + [anon_sym_bitand] = ACTIONS(5260), + [anon_sym_not_eq] = ACTIONS(5260), + [anon_sym_DASH_DASH] = ACTIONS(5253), + [anon_sym_PLUS_PLUS] = ACTIONS(5253), + [anon_sym_DOT] = ACTIONS(5260), + [anon_sym_DOT_STAR] = ACTIONS(5253), + [anon_sym_DASH_GT] = ACTIONS(5253), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(5253), + }, + [STATE(3707)] = { + [sym__abstract_declarator] = STATE(6444), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(3720), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(3720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), + [anon_sym_COMMA] = ACTIONS(6991), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6993), + [anon_sym_PLUS] = ACTIONS(6993), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(6993), + [anon_sym_PERCENT] = ACTIONS(6991), + [anon_sym_PIPE_PIPE] = ACTIONS(6991), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(6993), + [anon_sym_CARET] = ACTIONS(6991), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6991), + [anon_sym_BANG_EQ] = ACTIONS(6991), + [anon_sym_GT] = ACTIONS(6993), + [anon_sym_GT_EQ] = ACTIONS(6991), + [anon_sym_LT_EQ] = ACTIONS(6993), + [anon_sym_LT] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6991), + [anon_sym_GT_GT] = ACTIONS(6991), + [anon_sym_SEMI] = ACTIONS(6991), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6991), + [anon_sym___attribute] = ACTIONS(6993), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6991), + [anon_sym_LT_EQ_GT] = ACTIONS(6991), + [anon_sym_or] = ACTIONS(6991), + [anon_sym_and] = ACTIONS(6991), + [anon_sym_bitor] = ACTIONS(6991), + [anon_sym_xor] = ACTIONS(6991), + [anon_sym_bitand] = ACTIONS(6991), + [anon_sym_not_eq] = ACTIONS(6991), + [anon_sym_DASH_DASH] = ACTIONS(6991), + [anon_sym_PLUS_PLUS] = ACTIONS(6991), + [anon_sym_DOT] = ACTIONS(6993), + [anon_sym_DOT_STAR] = ACTIONS(6991), + [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_comment] = ACTIONS(3), + }, + [STATE(3708)] = { + [sym_identifier] = ACTIONS(8382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), + [anon_sym_COMMA] = ACTIONS(8384), + [anon_sym_LPAREN2] = ACTIONS(8384), + [anon_sym_DASH] = ACTIONS(8382), + [anon_sym_PLUS] = ACTIONS(8382), + [anon_sym_STAR] = ACTIONS(8382), + [anon_sym_SLASH] = ACTIONS(8382), + [anon_sym_PERCENT] = ACTIONS(8382), + [anon_sym_PIPE_PIPE] = ACTIONS(8384), + [anon_sym_AMP_AMP] = ACTIONS(8384), + [anon_sym_PIPE] = ACTIONS(8382), + [anon_sym_CARET] = ACTIONS(8382), + [anon_sym_AMP] = ACTIONS(8382), + [anon_sym_EQ_EQ] = ACTIONS(8384), + [anon_sym_BANG_EQ] = ACTIONS(8384), + [anon_sym_GT] = ACTIONS(8382), + [anon_sym_GT_EQ] = ACTIONS(8384), + [anon_sym_LT_EQ] = ACTIONS(8382), + [anon_sym_LT] = ACTIONS(8382), + [anon_sym_LT_LT] = ACTIONS(8382), + [anon_sym_GT_GT] = ACTIONS(8382), + [anon_sym_SEMI] = ACTIONS(8384), + [anon_sym___attribute__] = ACTIONS(8382), + [anon_sym___attribute] = ACTIONS(8382), + [anon_sym_LBRACK] = ACTIONS(8384), + [anon_sym_EQ] = ACTIONS(8382), + [anon_sym_QMARK] = ACTIONS(8384), + [anon_sym_STAR_EQ] = ACTIONS(8384), + [anon_sym_SLASH_EQ] = ACTIONS(8384), + [anon_sym_PERCENT_EQ] = ACTIONS(8384), + [anon_sym_PLUS_EQ] = ACTIONS(8384), + [anon_sym_DASH_EQ] = ACTIONS(8384), + [anon_sym_LT_LT_EQ] = ACTIONS(8384), + [anon_sym_GT_GT_EQ] = ACTIONS(8384), + [anon_sym_AMP_EQ] = ACTIONS(8384), + [anon_sym_CARET_EQ] = ACTIONS(8384), + [anon_sym_PIPE_EQ] = ACTIONS(8384), + [anon_sym_and_eq] = ACTIONS(8382), + [anon_sym_or_eq] = ACTIONS(8382), + [anon_sym_xor_eq] = ACTIONS(8382), + [anon_sym_LT_EQ_GT] = ACTIONS(8384), + [anon_sym_or] = ACTIONS(8382), + [anon_sym_and] = ACTIONS(8382), + [anon_sym_bitor] = ACTIONS(8382), + [anon_sym_xor] = ACTIONS(8382), + [anon_sym_bitand] = ACTIONS(8382), + [anon_sym_not_eq] = ACTIONS(8382), + [anon_sym_DASH_DASH] = ACTIONS(8384), + [anon_sym_PLUS_PLUS] = ACTIONS(8384), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_DOT_STAR] = ACTIONS(8384), + [anon_sym_DASH_GT] = ACTIONS(8384), + [anon_sym_L_DQUOTE] = ACTIONS(8384), + [anon_sym_u_DQUOTE] = ACTIONS(8384), + [anon_sym_U_DQUOTE] = ACTIONS(8384), + [anon_sym_u8_DQUOTE] = ACTIONS(8384), + [anon_sym_DQUOTE] = ACTIONS(8384), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8384), + [anon_sym_LR_DQUOTE] = ACTIONS(8384), + [anon_sym_uR_DQUOTE] = ACTIONS(8384), + [anon_sym_UR_DQUOTE] = ACTIONS(8384), + [anon_sym_u8R_DQUOTE] = ACTIONS(8384), + [sym_literal_suffix] = ACTIONS(8382), + }, + [STATE(3709)] = { + [sym_type_qualifier] = STATE(3710), + [sym_alignas_qualifier] = STATE(3482), + [aux_sym__type_definition_type_repeat1] = STATE(3710), + [aux_sym_sized_type_specifier_repeat1] = STATE(3975), + [sym_identifier] = ACTIONS(9314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), + [anon_sym_COMMA] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_LPAREN2] = ACTIONS(6812), + [anon_sym_TILDE] = ACTIONS(6812), + [anon_sym_STAR] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_AMP] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6812), + [anon_sym___extension__] = ACTIONS(9317), + [anon_sym_virtual] = ACTIONS(6814), + [anon_sym_extern] = ACTIONS(6814), + [anon_sym___attribute__] = ACTIONS(6814), + [anon_sym___attribute] = ACTIONS(6814), + [anon_sym_COLON_COLON] = ACTIONS(6812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6812), + [anon_sym___declspec] = ACTIONS(6814), + [anon_sym___based] = ACTIONS(6814), + [anon_sym___cdecl] = ACTIONS(6814), + [anon_sym___clrcall] = ACTIONS(6814), + [anon_sym___stdcall] = ACTIONS(6814), + [anon_sym___fastcall] = ACTIONS(6814), + [anon_sym___thiscall] = ACTIONS(6814), + [anon_sym___vectorcall] = ACTIONS(6814), + [anon_sym_LBRACE] = ACTIONS(6812), + [anon_sym_signed] = ACTIONS(9320), + [anon_sym_unsigned] = ACTIONS(9320), + [anon_sym_long] = ACTIONS(9320), + [anon_sym_short] = ACTIONS(9320), + [anon_sym_LBRACK] = ACTIONS(6814), + [anon_sym_static] = ACTIONS(6814), + [anon_sym_EQ] = ACTIONS(6812), + [anon_sym_register] = ACTIONS(6814), + [anon_sym_inline] = ACTIONS(6814), + [anon_sym___inline] = ACTIONS(6814), + [anon_sym___inline__] = ACTIONS(6814), + [anon_sym___forceinline] = ACTIONS(6814), + [anon_sym_thread_local] = ACTIONS(6814), + [anon_sym___thread] = ACTIONS(6814), + [anon_sym_const] = ACTIONS(9317), + [anon_sym_constexpr] = ACTIONS(9317), + [anon_sym_volatile] = ACTIONS(9317), + [anon_sym_restrict] = ACTIONS(9317), + [anon_sym___restrict__] = ACTIONS(9317), + [anon_sym__Atomic] = ACTIONS(9317), + [anon_sym__Noreturn] = ACTIONS(9317), + [anon_sym_noreturn] = ACTIONS(9317), + [anon_sym__Nonnull] = ACTIONS(9317), + [anon_sym_mutable] = ACTIONS(9317), + [anon_sym_constinit] = ACTIONS(9317), + [anon_sym_consteval] = ACTIONS(9317), + [anon_sym_alignas] = ACTIONS(9322), + [anon_sym__Alignas] = ACTIONS(9322), + [sym_primitive_type] = ACTIONS(9325), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6814), + [anon_sym_template] = ACTIONS(6814), + [anon_sym_GT2] = ACTIONS(6812), + [anon_sym_operator] = ACTIONS(6814), + [anon_sym_LBRACK_COLON] = ACTIONS(6812), + }, + [STATE(3710)] = { + [sym_type_qualifier] = STATE(3090), + [sym_alignas_qualifier] = STATE(3482), + [aux_sym__type_definition_type_repeat1] = STATE(3090), + [aux_sym_sized_type_specifier_repeat1] = STATE(4095), + [sym_identifier] = ACTIONS(9327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_TILDE] = ACTIONS(6884), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_SEMI] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(9330), + [anon_sym_virtual] = ACTIONS(6886), + [anon_sym_extern] = ACTIONS(6886), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_COLON_COLON] = ACTIONS(6884), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6884), + [anon_sym___declspec] = ACTIONS(6886), + [anon_sym___based] = ACTIONS(6886), + [anon_sym___cdecl] = ACTIONS(6886), + [anon_sym___clrcall] = ACTIONS(6886), + [anon_sym___stdcall] = ACTIONS(6886), + [anon_sym___fastcall] = ACTIONS(6886), + [anon_sym___thiscall] = ACTIONS(6886), + [anon_sym___vectorcall] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(9333), + [anon_sym_unsigned] = ACTIONS(9333), + [anon_sym_long] = ACTIONS(9333), + [anon_sym_short] = ACTIONS(9333), + [anon_sym_LBRACK] = ACTIONS(6886), + [anon_sym_static] = ACTIONS(6886), + [anon_sym_EQ] = ACTIONS(6884), + [anon_sym_register] = ACTIONS(6886), + [anon_sym_inline] = ACTIONS(6886), + [anon_sym___inline] = ACTIONS(6886), + [anon_sym___inline__] = ACTIONS(6886), + [anon_sym___forceinline] = ACTIONS(6886), + [anon_sym_thread_local] = ACTIONS(6886), + [anon_sym___thread] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(9330), + [anon_sym_constexpr] = ACTIONS(9330), + [anon_sym_volatile] = ACTIONS(9330), + [anon_sym_restrict] = ACTIONS(9330), + [anon_sym___restrict__] = ACTIONS(9330), + [anon_sym__Atomic] = ACTIONS(9330), + [anon_sym__Noreturn] = ACTIONS(9330), + [anon_sym_noreturn] = ACTIONS(9330), + [anon_sym__Nonnull] = ACTIONS(9330), + [anon_sym_mutable] = ACTIONS(9330), + [anon_sym_constinit] = ACTIONS(9330), + [anon_sym_consteval] = ACTIONS(9330), + [anon_sym_alignas] = ACTIONS(9335), + [anon_sym__Alignas] = ACTIONS(9335), + [sym_primitive_type] = ACTIONS(9338), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6886), + [anon_sym_template] = ACTIONS(6886), + [anon_sym_GT2] = ACTIONS(6884), + [anon_sym_operator] = ACTIONS(6886), + [anon_sym_LBRACK_COLON] = ACTIONS(6884), + }, + [STATE(3711)] = { + [sym_identifier] = ACTIONS(9340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9342), + [anon_sym_COMMA] = ACTIONS(9342), + [aux_sym_preproc_if_token2] = ACTIONS(9342), + [aux_sym_preproc_else_token1] = ACTIONS(9342), + [aux_sym_preproc_elif_token1] = ACTIONS(9344), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9342), + [anon_sym_LPAREN2] = ACTIONS(9342), + [anon_sym_TILDE] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9344), + [anon_sym_STAR] = ACTIONS(9340), + [anon_sym_SLASH] = ACTIONS(9344), + [anon_sym_PERCENT] = ACTIONS(9344), + [anon_sym_PIPE_PIPE] = ACTIONS(9342), + [anon_sym_AMP_AMP] = ACTIONS(9342), + [anon_sym_PIPE] = ACTIONS(9344), + [anon_sym_CARET] = ACTIONS(9344), + [anon_sym_AMP] = ACTIONS(9344), + [anon_sym_EQ_EQ] = ACTIONS(9342), + [anon_sym_BANG_EQ] = ACTIONS(9342), + [anon_sym_GT] = ACTIONS(9344), + [anon_sym_GT_EQ] = ACTIONS(9342), + [anon_sym_LT_EQ] = ACTIONS(9344), + [anon_sym_LT] = ACTIONS(9344), + [anon_sym_LT_LT] = ACTIONS(9344), + [anon_sym_GT_GT] = ACTIONS(9344), + [anon_sym_COLON_COLON] = ACTIONS(9346), + [anon_sym___based] = ACTIONS(9340), + [anon_sym_LBRACK] = ACTIONS(9344), + [anon_sym_EQ] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9342), + [anon_sym_STAR_EQ] = ACTIONS(9342), + [anon_sym_SLASH_EQ] = ACTIONS(9342), + [anon_sym_PERCENT_EQ] = ACTIONS(9342), + [anon_sym_PLUS_EQ] = ACTIONS(9342), + [anon_sym_DASH_EQ] = ACTIONS(9342), + [anon_sym_LT_LT_EQ] = ACTIONS(9342), + [anon_sym_GT_GT_EQ] = ACTIONS(9342), + [anon_sym_AMP_EQ] = ACTIONS(9342), + [anon_sym_CARET_EQ] = ACTIONS(9342), + [anon_sym_PIPE_EQ] = ACTIONS(9342), + [anon_sym_and_eq] = ACTIONS(9344), + [anon_sym_or_eq] = ACTIONS(9344), + [anon_sym_xor_eq] = ACTIONS(9344), + [anon_sym_LT_EQ_GT] = ACTIONS(9342), + [anon_sym_or] = ACTIONS(9344), + [anon_sym_and] = ACTIONS(9344), + [anon_sym_bitor] = ACTIONS(9344), + [anon_sym_xor] = ACTIONS(9344), + [anon_sym_bitand] = ACTIONS(9344), + [anon_sym_not_eq] = ACTIONS(9344), + [anon_sym_DASH_DASH] = ACTIONS(9342), + [anon_sym_PLUS_PLUS] = ACTIONS(9342), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_DOT_STAR] = ACTIONS(9342), + [anon_sym_DASH_GT] = ACTIONS(9342), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(9340), + [anon_sym_template] = ACTIONS(9340), + [anon_sym_operator] = ACTIONS(9340), + [anon_sym_delete] = ACTIONS(9348), + [anon_sym_new] = ACTIONS(9350), + [anon_sym_LBRACK_COLON] = ACTIONS(9346), + }, + [STATE(3712)] = { + [sym_identifier] = ACTIONS(7185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7183), + [anon_sym_LPAREN2] = ACTIONS(7183), + [anon_sym_TILDE] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7183), + [anon_sym_AMP_AMP] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7185), + [anon_sym_SEMI] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7185), + [anon_sym_virtual] = ACTIONS(7185), + [anon_sym_extern] = ACTIONS(7185), + [anon_sym___attribute__] = ACTIONS(7185), + [anon_sym___attribute] = ACTIONS(7185), + [anon_sym_COLON] = ACTIONS(7185), + [anon_sym_COLON_COLON] = ACTIONS(6802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7183), + [anon_sym___declspec] = ACTIONS(7185), + [anon_sym___based] = ACTIONS(7185), + [anon_sym___cdecl] = ACTIONS(7185), + [anon_sym___clrcall] = ACTIONS(7185), + [anon_sym___stdcall] = ACTIONS(7185), + [anon_sym___fastcall] = ACTIONS(7185), + [anon_sym___thiscall] = ACTIONS(7185), + [anon_sym___vectorcall] = ACTIONS(7185), + [anon_sym_LBRACE] = ACTIONS(7183), + [anon_sym_LBRACK] = ACTIONS(7185), + [anon_sym_static] = ACTIONS(7185), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_register] = ACTIONS(7185), + [anon_sym_inline] = ACTIONS(7185), + [anon_sym___inline] = ACTIONS(7185), + [anon_sym___inline__] = ACTIONS(7185), + [anon_sym___forceinline] = ACTIONS(7185), + [anon_sym_thread_local] = ACTIONS(7185), + [anon_sym___thread] = ACTIONS(7185), + [anon_sym_const] = ACTIONS(7185), + [anon_sym_constexpr] = ACTIONS(7185), + [anon_sym_volatile] = ACTIONS(7185), + [anon_sym_restrict] = ACTIONS(7185), + [anon_sym___restrict__] = ACTIONS(7185), + [anon_sym__Atomic] = ACTIONS(7185), + [anon_sym__Noreturn] = ACTIONS(7185), + [anon_sym_noreturn] = ACTIONS(7185), + [anon_sym__Nonnull] = ACTIONS(7185), + [anon_sym_mutable] = ACTIONS(7185), + [anon_sym_constinit] = ACTIONS(7185), + [anon_sym_consteval] = ACTIONS(7185), + [anon_sym_alignas] = ACTIONS(7185), + [anon_sym__Alignas] = ACTIONS(7185), + [anon_sym_or] = ACTIONS(7185), + [anon_sym_and] = ACTIONS(7185), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7185), + [anon_sym_final] = ACTIONS(7185), + [anon_sym_override] = ACTIONS(7185), + [anon_sym_template] = ACTIONS(7185), + [anon_sym_GT2] = ACTIONS(7183), + [anon_sym_operator] = ACTIONS(7185), + [anon_sym_noexcept] = ACTIONS(7185), + [anon_sym_throw] = ACTIONS(7185), + [anon_sym_LBRACK_COLON] = ACTIONS(7183), + }, + [STATE(3713)] = { + [sym_attribute_specifier] = STATE(3949), + [sym_enumerator_list] = STATE(3725), + [sym_identifier] = ACTIONS(7011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), + [anon_sym_COMMA] = ACTIONS(7013), + [aux_sym_preproc_if_token2] = ACTIONS(7013), + [aux_sym_preproc_else_token1] = ACTIONS(7013), + [aux_sym_preproc_elif_token1] = ACTIONS(7011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7013), + [anon_sym_LPAREN2] = ACTIONS(7013), + [anon_sym_DASH] = ACTIONS(7011), + [anon_sym_PLUS] = ACTIONS(7011), + [anon_sym_STAR] = ACTIONS(7013), + [anon_sym_SLASH] = ACTIONS(7011), + [anon_sym_PERCENT] = ACTIONS(7013), + [anon_sym_PIPE_PIPE] = ACTIONS(7013), + [anon_sym_AMP_AMP] = ACTIONS(7013), + [anon_sym_PIPE] = ACTIONS(7011), + [anon_sym_CARET] = ACTIONS(7013), + [anon_sym_AMP] = ACTIONS(7011), + [anon_sym_EQ_EQ] = ACTIONS(7013), + [anon_sym_BANG_EQ] = ACTIONS(7013), + [anon_sym_GT] = ACTIONS(7011), + [anon_sym_GT_EQ] = ACTIONS(7013), + [anon_sym_LT_EQ] = ACTIONS(7011), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(7013), + [anon_sym_GT_GT] = ACTIONS(7013), + [anon_sym___extension__] = ACTIONS(7011), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym_LBRACE] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(7013), + [anon_sym_const] = ACTIONS(7011), + [anon_sym_constexpr] = ACTIONS(7011), + [anon_sym_volatile] = ACTIONS(7011), + [anon_sym_restrict] = ACTIONS(7011), + [anon_sym___restrict__] = ACTIONS(7011), + [anon_sym__Atomic] = ACTIONS(7011), + [anon_sym__Noreturn] = ACTIONS(7011), + [anon_sym_noreturn] = ACTIONS(7011), + [anon_sym__Nonnull] = ACTIONS(7011), + [anon_sym_mutable] = ACTIONS(7011), + [anon_sym_constinit] = ACTIONS(7011), + [anon_sym_consteval] = ACTIONS(7011), + [anon_sym_alignas] = ACTIONS(7011), + [anon_sym__Alignas] = ACTIONS(7011), + [anon_sym_QMARK] = ACTIONS(7013), + [anon_sym_LT_EQ_GT] = ACTIONS(7013), + [anon_sym_or] = ACTIONS(7011), + [anon_sym_and] = ACTIONS(7011), + [anon_sym_bitor] = ACTIONS(7011), + [anon_sym_xor] = ACTIONS(7011), + [anon_sym_bitand] = ACTIONS(7011), + [anon_sym_not_eq] = ACTIONS(7011), + [anon_sym_DASH_DASH] = ACTIONS(7013), + [anon_sym_PLUS_PLUS] = ACTIONS(7013), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_DOT_STAR] = ACTIONS(7013), + [anon_sym_DASH_GT] = ACTIONS(7013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7011), + [anon_sym_override] = ACTIONS(7011), + [anon_sym_requires] = ACTIONS(7011), + }, + [STATE(3714)] = { + [sym_type_qualifier] = STATE(3559), + [sym_alignas_qualifier] = STATE(3736), + [aux_sym__type_definition_type_repeat1] = STATE(3559), + [aux_sym_sized_type_specifier_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(8891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), + [anon_sym_COMMA] = ACTIONS(6884), + [anon_sym_LPAREN2] = ACTIONS(6884), + [anon_sym_DASH] = ACTIONS(6886), + [anon_sym_PLUS] = ACTIONS(6886), + [anon_sym_STAR] = ACTIONS(6884), + [anon_sym_SLASH] = ACTIONS(6886), + [anon_sym_PERCENT] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE] = ACTIONS(6886), + [anon_sym_CARET] = ACTIONS(6884), + [anon_sym_AMP] = ACTIONS(6886), + [anon_sym_EQ_EQ] = ACTIONS(6884), + [anon_sym_BANG_EQ] = ACTIONS(6884), + [anon_sym_GT] = ACTIONS(6886), + [anon_sym_GT_EQ] = ACTIONS(6884), + [anon_sym_LT_EQ] = ACTIONS(6886), + [anon_sym_LT] = ACTIONS(6886), + [anon_sym_LT_LT] = ACTIONS(6884), + [anon_sym_GT_GT] = ACTIONS(6884), + [anon_sym___extension__] = ACTIONS(9298), + [anon_sym___attribute__] = ACTIONS(6886), + [anon_sym___attribute] = ACTIONS(6886), + [anon_sym_LBRACE] = ACTIONS(6884), + [anon_sym_signed] = ACTIONS(8486), + [anon_sym_unsigned] = ACTIONS(8486), + [anon_sym_long] = ACTIONS(8486), + [anon_sym_short] = ACTIONS(8486), + [anon_sym_LBRACK] = ACTIONS(6884), + [anon_sym_RBRACK] = ACTIONS(6884), + [anon_sym_const] = ACTIONS(9298), + [anon_sym_constexpr] = ACTIONS(9298), + [anon_sym_volatile] = ACTIONS(9298), + [anon_sym_restrict] = ACTIONS(9298), + [anon_sym___restrict__] = ACTIONS(9298), + [anon_sym__Atomic] = ACTIONS(9298), + [anon_sym__Noreturn] = ACTIONS(9298), + [anon_sym_noreturn] = ACTIONS(9298), + [anon_sym__Nonnull] = ACTIONS(9298), + [anon_sym_mutable] = ACTIONS(9298), + [anon_sym_constinit] = ACTIONS(9298), + [anon_sym_consteval] = ACTIONS(9298), + [anon_sym_alignas] = ACTIONS(9302), + [anon_sym__Alignas] = ACTIONS(9302), + [sym_primitive_type] = ACTIONS(8488), + [anon_sym_QMARK] = ACTIONS(6884), + [anon_sym_LT_EQ_GT] = ACTIONS(6884), + [anon_sym_or] = ACTIONS(6886), + [anon_sym_and] = ACTIONS(6886), + [anon_sym_bitor] = ACTIONS(6886), + [anon_sym_xor] = ACTIONS(6886), + [anon_sym_bitand] = ACTIONS(6886), + [anon_sym_not_eq] = ACTIONS(6886), + [anon_sym_DASH_DASH] = ACTIONS(6884), + [anon_sym_PLUS_PLUS] = ACTIONS(6884), + [anon_sym_DOT] = ACTIONS(6886), + [anon_sym_DOT_STAR] = ACTIONS(6884), + [anon_sym_DASH_GT] = ACTIONS(6884), + [sym_comment] = ACTIONS(3), + }, + [STATE(3715)] = { + [sym_attribute_specifier] = STATE(3715), + [aux_sym_type_definition_repeat1] = STATE(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6555), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6555), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6555), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6553), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6555), + [anon_sym_GT_GT] = ACTIONS(6553), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(9352), + [anon_sym___attribute] = ACTIONS(9355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6555), + [anon_sym_and] = ACTIONS(6555), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6555), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_GT2] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + }, + [STATE(3716)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3716), + [sym_identifier] = ACTIONS(6627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(6629), + [anon_sym_LPAREN2] = ACTIONS(6629), + [anon_sym_DASH] = ACTIONS(6627), + [anon_sym_PLUS] = ACTIONS(6627), + [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_SLASH] = ACTIONS(6627), + [anon_sym_PERCENT] = ACTIONS(6629), + [anon_sym_PIPE_PIPE] = ACTIONS(6629), + [anon_sym_AMP_AMP] = ACTIONS(6629), + [anon_sym_PIPE] = ACTIONS(6627), + [anon_sym_CARET] = ACTIONS(6629), + [anon_sym_AMP] = ACTIONS(6627), + [anon_sym_EQ_EQ] = ACTIONS(6629), + [anon_sym_BANG_EQ] = ACTIONS(6629), + [anon_sym_GT] = ACTIONS(6627), + [anon_sym_GT_EQ] = ACTIONS(6629), + [anon_sym_LT_EQ] = ACTIONS(6627), + [anon_sym_LT] = ACTIONS(6627), + [anon_sym_LT_LT] = ACTIONS(6629), + [anon_sym_GT_GT] = ACTIONS(6629), + [anon_sym___extension__] = ACTIONS(6627), + [anon_sym___attribute__] = ACTIONS(6627), + [anon_sym___attribute] = ACTIONS(6627), + [anon_sym_LBRACE] = ACTIONS(6629), + [anon_sym_signed] = ACTIONS(9256), + [anon_sym_unsigned] = ACTIONS(9256), + [anon_sym_long] = ACTIONS(9256), + [anon_sym_short] = ACTIONS(9256), + [anon_sym_LBRACK] = ACTIONS(6629), + [anon_sym_RBRACK] = ACTIONS(6629), + [anon_sym_const] = ACTIONS(6627), + [anon_sym_constexpr] = ACTIONS(6627), + [anon_sym_volatile] = ACTIONS(6627), + [anon_sym_restrict] = ACTIONS(6627), + [anon_sym___restrict__] = ACTIONS(6627), + [anon_sym__Atomic] = ACTIONS(6627), + [anon_sym__Noreturn] = ACTIONS(6627), + [anon_sym_noreturn] = ACTIONS(6627), + [anon_sym__Nonnull] = ACTIONS(6627), + [anon_sym_mutable] = ACTIONS(6627), + [anon_sym_constinit] = ACTIONS(6627), + [anon_sym_consteval] = ACTIONS(6627), + [anon_sym_alignas] = ACTIONS(6627), + [anon_sym__Alignas] = ACTIONS(6627), + [sym_primitive_type] = ACTIONS(6627), + [anon_sym_QMARK] = ACTIONS(6629), + [anon_sym_LT_EQ_GT] = ACTIONS(6629), + [anon_sym_or] = ACTIONS(6627), + [anon_sym_and] = ACTIONS(6627), + [anon_sym_bitor] = ACTIONS(6627), + [anon_sym_xor] = ACTIONS(6627), + [anon_sym_bitand] = ACTIONS(6627), + [anon_sym_not_eq] = ACTIONS(6627), + [anon_sym_DASH_DASH] = ACTIONS(6629), + [anon_sym_PLUS_PLUS] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6627), + [anon_sym_DOT_STAR] = ACTIONS(6629), + [anon_sym_DASH_GT] = ACTIONS(6629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6627), + [anon_sym_override] = ACTIONS(6627), + [anon_sym_requires] = ACTIONS(6627), + }, + [STATE(3717)] = { + [sym_identifier] = ACTIONS(9358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9360), + [anon_sym_COMMA] = ACTIONS(9360), + [anon_sym_RPAREN] = ACTIONS(9360), + [aux_sym_preproc_if_token2] = ACTIONS(9360), + [aux_sym_preproc_else_token1] = ACTIONS(9360), + [aux_sym_preproc_elif_token1] = ACTIONS(9358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9360), + [anon_sym_LPAREN2] = ACTIONS(9360), + [anon_sym_DASH] = ACTIONS(9358), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_STAR] = ACTIONS(9358), + [anon_sym_SLASH] = ACTIONS(9358), + [anon_sym_PERCENT] = ACTIONS(9358), + [anon_sym_PIPE_PIPE] = ACTIONS(9360), + [anon_sym_AMP_AMP] = ACTIONS(9360), + [anon_sym_PIPE] = ACTIONS(9358), + [anon_sym_CARET] = ACTIONS(9358), + [anon_sym_AMP] = ACTIONS(9358), + [anon_sym_EQ_EQ] = ACTIONS(9360), + [anon_sym_BANG_EQ] = ACTIONS(9360), + [anon_sym_GT] = ACTIONS(9358), + [anon_sym_GT_EQ] = ACTIONS(9360), + [anon_sym_LT_EQ] = ACTIONS(9358), + [anon_sym_LT] = ACTIONS(9358), + [anon_sym_LT_LT] = ACTIONS(9358), + [anon_sym_GT_GT] = ACTIONS(9358), + [anon_sym_SEMI] = ACTIONS(9360), + [anon_sym___attribute__] = ACTIONS(9358), + [anon_sym___attribute] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9360), + [anon_sym_LBRACE] = ACTIONS(9360), + [anon_sym_RBRACE] = ACTIONS(9360), + [anon_sym_LBRACK] = ACTIONS(9360), + [anon_sym_EQ] = ACTIONS(9358), + [anon_sym_QMARK] = ACTIONS(9360), + [anon_sym_STAR_EQ] = ACTIONS(9360), + [anon_sym_SLASH_EQ] = ACTIONS(9360), + [anon_sym_PERCENT_EQ] = ACTIONS(9360), + [anon_sym_PLUS_EQ] = ACTIONS(9360), + [anon_sym_DASH_EQ] = ACTIONS(9360), + [anon_sym_LT_LT_EQ] = ACTIONS(9360), + [anon_sym_GT_GT_EQ] = ACTIONS(9360), + [anon_sym_AMP_EQ] = ACTIONS(9360), + [anon_sym_CARET_EQ] = ACTIONS(9360), + [anon_sym_PIPE_EQ] = ACTIONS(9360), + [anon_sym_and_eq] = ACTIONS(9358), + [anon_sym_or_eq] = ACTIONS(9358), + [anon_sym_xor_eq] = ACTIONS(9358), + [anon_sym_LT_EQ_GT] = ACTIONS(9360), + [anon_sym_or] = ACTIONS(9358), + [anon_sym_and] = ACTIONS(9358), + [anon_sym_bitor] = ACTIONS(9358), + [anon_sym_xor] = ACTIONS(9358), + [anon_sym_bitand] = ACTIONS(9358), + [anon_sym_not_eq] = ACTIONS(9358), + [anon_sym_DASH_DASH] = ACTIONS(9360), + [anon_sym_PLUS_PLUS] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9358), + [anon_sym_DOT_STAR] = ACTIONS(9360), + [anon_sym_DASH_GT] = ACTIONS(9360), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9360), + }, + [STATE(3718)] = { + [sym_template_argument_list] = STATE(2824), + [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(7031), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(5272), + [anon_sym_SLASH] = ACTIONS(7031), + [anon_sym_PERCENT] = ACTIONS(5272), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(7031), + [anon_sym_CARET] = ACTIONS(5272), + [anon_sym_AMP] = ACTIONS(7031), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(7031), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(7031), + [anon_sym_LT] = ACTIONS(8390), + [anon_sym_LT_LT] = ACTIONS(5272), + [anon_sym_GT_GT] = ACTIONS(5272), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym___extension__] = ACTIONS(5272), + [anon_sym___attribute__] = ACTIONS(5272), + [anon_sym___attribute] = ACTIONS(7031), + [anon_sym_COLON] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(5270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_const] = ACTIONS(7031), + [anon_sym_constexpr] = ACTIONS(5272), + [anon_sym_volatile] = ACTIONS(5272), + [anon_sym_restrict] = ACTIONS(5272), + [anon_sym___restrict__] = ACTIONS(5272), + [anon_sym__Atomic] = ACTIONS(5272), + [anon_sym__Noreturn] = ACTIONS(5272), + [anon_sym_noreturn] = ACTIONS(5272), + [anon_sym__Nonnull] = ACTIONS(5272), + [anon_sym_mutable] = ACTIONS(5272), + [anon_sym_constinit] = ACTIONS(5272), + [anon_sym_consteval] = ACTIONS(5272), + [anon_sym_alignas] = ACTIONS(5272), + [anon_sym__Alignas] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5272), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5272), + [anon_sym_and] = ACTIONS(5272), + [anon_sym_bitor] = ACTIONS(5272), + [anon_sym_xor] = ACTIONS(5272), + [anon_sym_bitand] = ACTIONS(5272), + [anon_sym_not_eq] = ACTIONS(5272), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(7031), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_requires] = ACTIONS(5272), + [anon_sym_COLON_RBRACK] = ACTIONS(5272), + }, + [STATE(3719)] = { + [sym_attribute_specifier] = STATE(3719), + [aux_sym_type_definition_repeat1] = STATE(3719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), + [anon_sym_COMMA] = ACTIONS(6555), + [anon_sym_LPAREN2] = ACTIONS(6555), + [anon_sym_DASH] = ACTIONS(6553), + [anon_sym_PLUS] = ACTIONS(6553), + [anon_sym_STAR] = ACTIONS(6555), + [anon_sym_SLASH] = ACTIONS(6553), + [anon_sym_PERCENT] = ACTIONS(6555), + [anon_sym_PIPE_PIPE] = ACTIONS(6555), + [anon_sym_AMP_AMP] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(6553), + [anon_sym_CARET] = ACTIONS(6555), + [anon_sym_AMP] = ACTIONS(6553), + [anon_sym_EQ_EQ] = ACTIONS(6555), + [anon_sym_BANG_EQ] = ACTIONS(6555), + [anon_sym_GT] = ACTIONS(6553), + [anon_sym_GT_EQ] = ACTIONS(6555), + [anon_sym_LT_EQ] = ACTIONS(6553), + [anon_sym_LT] = ACTIONS(6553), + [anon_sym_LT_LT] = ACTIONS(6555), + [anon_sym_GT_GT] = ACTIONS(6555), + [anon_sym___extension__] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(9362), + [anon_sym___attribute] = ACTIONS(9365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), + [anon_sym_LBRACK] = ACTIONS(6553), + [anon_sym_RBRACK] = ACTIONS(6555), + [anon_sym_const] = ACTIONS(6553), + [anon_sym_constexpr] = ACTIONS(6555), + [anon_sym_volatile] = ACTIONS(6555), + [anon_sym_restrict] = ACTIONS(6555), + [anon_sym___restrict__] = ACTIONS(6555), + [anon_sym__Atomic] = ACTIONS(6555), + [anon_sym__Noreturn] = ACTIONS(6555), + [anon_sym_noreturn] = ACTIONS(6555), + [anon_sym__Nonnull] = ACTIONS(6555), + [anon_sym_mutable] = ACTIONS(6555), + [anon_sym_constinit] = ACTIONS(6555), + [anon_sym_consteval] = ACTIONS(6555), + [anon_sym_alignas] = ACTIONS(6555), + [anon_sym__Alignas] = ACTIONS(6555), + [anon_sym_QMARK] = ACTIONS(6555), + [anon_sym_LT_EQ_GT] = ACTIONS(6555), + [anon_sym_or] = ACTIONS(6555), + [anon_sym_and] = ACTIONS(6555), + [anon_sym_bitor] = ACTIONS(6555), + [anon_sym_xor] = ACTIONS(6555), + [anon_sym_bitand] = ACTIONS(6555), + [anon_sym_not_eq] = ACTIONS(6555), + [anon_sym_DASH_DASH] = ACTIONS(6555), + [anon_sym_PLUS_PLUS] = ACTIONS(6555), + [anon_sym_asm] = ACTIONS(6555), + [anon_sym___asm__] = ACTIONS(6555), + [anon_sym___asm] = ACTIONS(6553), + [anon_sym_DOT] = ACTIONS(6553), + [anon_sym_DOT_STAR] = ACTIONS(6555), + [anon_sym_DASH_GT] = ACTIONS(6555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6555), + [anon_sym_throw] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6555), + }, + [STATE(3720)] = { + [sym__abstract_declarator] = STATE(6418), + [sym_abstract_parenthesized_declarator] = STATE(5164), + [sym_abstract_pointer_declarator] = STATE(5164), + [sym_abstract_function_declarator] = STATE(5164), + [sym_abstract_array_declarator] = STATE(5164), + [sym_type_qualifier] = STATE(2399), + [sym_alignas_qualifier] = STATE(2592), + [sym_parameter_list] = STATE(2152), + [sym_abstract_reference_declarator] = STATE(5164), + [sym__function_declarator_seq] = STATE(5165), + [aux_sym__type_definition_type_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), + [anon_sym_COMMA] = ACTIONS(6995), + [anon_sym_LPAREN2] = ACTIONS(7731), + [anon_sym_DASH] = ACTIONS(6997), + [anon_sym_PLUS] = ACTIONS(6997), + [anon_sym_STAR] = ACTIONS(8341), + [anon_sym_SLASH] = ACTIONS(6997), + [anon_sym_PERCENT] = ACTIONS(6995), + [anon_sym_PIPE_PIPE] = ACTIONS(6995), + [anon_sym_AMP_AMP] = ACTIONS(8343), + [anon_sym_PIPE] = ACTIONS(6997), + [anon_sym_CARET] = ACTIONS(6995), + [anon_sym_AMP] = ACTIONS(8345), + [anon_sym_EQ_EQ] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(6995), + [anon_sym_GT] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6995), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_LT] = ACTIONS(6997), + [anon_sym_LT_LT] = ACTIONS(6995), + [anon_sym_GT_GT] = ACTIONS(6995), + [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym___extension__] = ACTIONS(7778), + [anon_sym___attribute__] = ACTIONS(6995), + [anon_sym___attribute] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7784), + [anon_sym_constexpr] = ACTIONS(7778), + [anon_sym_volatile] = ACTIONS(7778), + [anon_sym_restrict] = ACTIONS(7778), + [anon_sym___restrict__] = ACTIONS(7778), + [anon_sym__Atomic] = ACTIONS(7778), + [anon_sym__Noreturn] = ACTIONS(7778), + [anon_sym_noreturn] = ACTIONS(7778), + [anon_sym__Nonnull] = ACTIONS(7778), + [anon_sym_mutable] = ACTIONS(7778), + [anon_sym_constinit] = ACTIONS(7778), + [anon_sym_consteval] = ACTIONS(7778), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(6995), + [anon_sym_LT_EQ_GT] = ACTIONS(6995), + [anon_sym_or] = ACTIONS(6995), + [anon_sym_and] = ACTIONS(6995), + [anon_sym_bitor] = ACTIONS(6995), + [anon_sym_xor] = ACTIONS(6995), + [anon_sym_bitand] = ACTIONS(6995), + [anon_sym_not_eq] = ACTIONS(6995), + [anon_sym_DASH_DASH] = ACTIONS(6995), + [anon_sym_PLUS_PLUS] = ACTIONS(6995), + [anon_sym_DOT] = ACTIONS(6997), + [anon_sym_DOT_STAR] = ACTIONS(6995), + [anon_sym_DASH_GT] = ACTIONS(6995), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8448), 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, + [71] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9368), 1, + anon_sym_LT, + STATE(3698), 1, + sym_template_argument_list, + ACTIONS(9262), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9264), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9371), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9373), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [217] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3603), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6676), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6682), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8739), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [294] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3958), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7125), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7123), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [369] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3020), 1, + sym_attribute_specifier, + ACTIONS(7099), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7101), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9375), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9377), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3112), 1, + sym_attribute_specifier, + ACTIONS(7053), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7055), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9379), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9381), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [665] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3950), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7097), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7095), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [740] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3960), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7135), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7133), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [815] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4040), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7063), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7061), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [890] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9383), 1, + sym_identifier, + STATE(3800), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5603), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8118), 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(8116), 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, + [969] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4050), 1, + sym_alignas_qualifier, + ACTIONS(9388), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3734), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9385), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6525), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6527), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8384), 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, + [1119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(2768), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [1190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9391), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9393), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1261] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(7554), 1, + anon_sym_DASH_GT, + STATE(2911), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [1344] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3941), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7067), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7065), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [1419] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_DASH_GT, + ACTIONS(9401), 1, + anon_sym_requires, + STATE(2872), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [1502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3102), 1, + sym_attribute_specifier, + ACTIONS(7061), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7063), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [1721] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8120), 1, + anon_sym_DASH_GT, + ACTIONS(8132), 1, + anon_sym_requires, + STATE(2867), 1, + sym_trailing_return_type, + ACTIONS(8129), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [1804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5253), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1875] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4025), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7059), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7057), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [1950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7221), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7219), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [2021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9408), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9410), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9412), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9414), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8456), 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, + [2305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8402), 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, + [2376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9416), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9418), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9420), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9422), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9308), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9310), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9424), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9426), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9428), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9430), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9432), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9434), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9436), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9438), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9440), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9442), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3015] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3951), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7101), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7099), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [3090] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6475), 1, + anon_sym_LBRACK, + ACTIONS(6576), 1, + anon_sym_STAR, + ACTIONS(6578), 1, + anon_sym_AMP_AMP, + ACTIONS(6580), 1, + anon_sym_AMP, + STATE(1870), 1, + sym_parameter_list, + STATE(3515), 1, + sym__function_declarator_seq, + STATE(4339), 1, + sym__abstract_declarator, + STATE(3510), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [3179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7261), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7259), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [3250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9444), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9446), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8208), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(3888), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3392] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7554), 1, + anon_sym_DASH_GT, + ACTIONS(7560), 1, + anon_sym_requires, + STATE(2961), 1, + sym_trailing_return_type, + ACTIONS(7557), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [3475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9448), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9450), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 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, + [3617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9262), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9264), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3688] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9076), 1, + sym_auto, + STATE(3030), 1, + sym_decltype_auto, + ACTIONS(6798), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 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(6716), 43, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [3840] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6475), 1, + anon_sym_LBRACK, + ACTIONS(6594), 1, + anon_sym_STAR, + ACTIONS(6596), 1, + anon_sym_AMP_AMP, + ACTIONS(6598), 1, + anon_sym_AMP, + STATE(1841), 1, + sym_parameter_list, + STATE(3515), 1, + sym__function_declarator_seq, + STATE(4421), 1, + sym__abstract_declarator, + STATE(3510), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(9072), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3929] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4023), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7055), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7053), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [4004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9452), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9454), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9456), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9458), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5253), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3135), 1, + sym_attribute_specifier, + ACTIONS(7065), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7067), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [4294] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9460), 1, + anon_sym_delete, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9342), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9464), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9466), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9468), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9470), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9472), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9474), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9476), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9478), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 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(2768), 43, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [4799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9472), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9474), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3009), 1, + sym_attribute_specifier, + ACTIONS(7095), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7097), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [4947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7335), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7333), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [5018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9406), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5089] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(7631), 1, + anon_sym_DASH_GT, + STATE(2959), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [5172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9480), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9482), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 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(8456), 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, + [5314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(2994), 1, + sym_attribute_specifier, + ACTIONS(7091), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7093), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [5391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9484), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9486), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5462] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3948), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7093), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7091), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [5537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8831), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8829), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5608] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3058), 1, + sym_attribute_specifier, + ACTIONS(7057), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7059), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [5685] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9488), 1, + sym_identifier, + STATE(3733), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5603), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8127), 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(8125), 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, + [5764] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(8120), 1, + anon_sym_DASH_GT, + STATE(2964), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [5847] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9490), 1, + sym_identifier, + STATE(3800), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(9493), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9496), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8047), 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(8045), 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, + [5926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7283), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [5997] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3652), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6640), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6646), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8739), 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(8737), 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, + [6074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9499), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9501), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6145] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7579), 1, + anon_sym_DASH_GT, + STATE(2911), 1, + sym_trailing_return_type, + ACTIONS(6134), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7544), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [6228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [6299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9503), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9505), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6370] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6475), 1, + anon_sym_LBRACK, + ACTIONS(6560), 1, + anon_sym_STAR, + ACTIONS(6562), 1, + anon_sym_AMP_AMP, + ACTIONS(6564), 1, + anon_sym_AMP, + STATE(1847), 1, + sym_parameter_list, + STATE(3515), 1, + sym__function_declarator_seq, + STATE(4382), 1, + sym__abstract_declarator, + STATE(3510), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9507), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9509), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9511), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9513), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6601] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(9395), 1, + anon_sym_DASH_GT, + STATE(2968), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [6684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9515), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9517), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6755] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7642), 1, + anon_sym_DASH_GT, + STATE(2959), 1, + sym_trailing_return_type, + ACTIONS(6134), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7627), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [6838] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(8091), 1, + anon_sym_DASH_GT, + STATE(2964), 1, + sym_trailing_return_type, + ACTIONS(6134), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8089), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [6921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9519), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9521), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9525), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3128), 1, + sym_attribute_specifier, + ACTIONS(7123), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7125), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [7140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9527), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9529), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7211] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3973), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7089), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7087), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [7286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9531), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9533), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7357] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(9535), 1, + anon_sym_DASH_GT, + STATE(2968), 1, + sym_trailing_return_type, + ACTIONS(6134), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8543), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [7440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4568), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3035), 1, + sym_attribute_specifier, + ACTIONS(7103), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7105), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [7588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9538), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9540), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9542), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9544), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9546), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9548), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7197), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7195), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [7872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9344), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9342), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7943] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7579), 1, + anon_sym_DASH_GT, + ACTIONS(7585), 1, + anon_sym_requires, + STATE(2961), 1, + sym_trailing_return_type, + ACTIONS(7582), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7544), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [8026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9550), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9552), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9554), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9556), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8168] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_DASH_GT, + ACTIONS(7648), 1, + anon_sym_requires, + STATE(2975), 1, + sym_trailing_return_type, + ACTIONS(7645), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7627), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [8251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3077), 1, + sym_attribute_specifier, + ACTIONS(7087), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7089), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [8328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3114), 1, + sym_attribute_specifier, + ACTIONS(7133), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7135), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [8405] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3952), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7105), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7103), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8480] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3995), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7189), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7187), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 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, + [8626] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + STATE(3081), 1, + sym_attribute_specifier, + ACTIONS(7187), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7189), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [8703] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8091), 1, + anon_sym_DASH_GT, + ACTIONS(8105), 1, + anon_sym_requires, + STATE(2867), 1, + sym_trailing_return_type, + ACTIONS(8102), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8089), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [8786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9558), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9560), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6716), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9562), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9564), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8999] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8548), 1, + anon_sym_requires, + ACTIONS(9535), 1, + anon_sym_DASH_GT, + STATE(2872), 1, + sym_trailing_return_type, + ACTIONS(8545), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8543), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [9082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7253), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [9153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9566), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9568), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9224] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 1, + anon_sym_DASH_GT, + ACTIONS(7637), 1, + anon_sym_requires, + STATE(2975), 1, + sym_trailing_return_type, + ACTIONS(7634), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [9307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9570), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9572), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9574), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9576), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9578), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9580), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9582), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9584), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 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(8456), 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, + [9661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(4006), 1, + sym_attribute_specifier, + STATE(4282), 1, + sym_field_declaration_list, + STATE(9403), 1, + sym_virtual_specifier, + STATE(10085), 1, + sym_base_class_clause, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6826), 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(6828), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_requires, + [9749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9590), 1, + anon_sym_LT, + STATE(4107), 1, + sym_template_argument_list, + ACTIONS(6208), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [9825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6720), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6722), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [9895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7107), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [9965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6796), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [10035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6786), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6788), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [10105] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6767), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3918), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6993), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6991), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [10203] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9596), 1, + anon_sym_LBRACE, + STATE(4235), 1, + sym_field_declaration_list, + STATE(4399), 1, + sym_attribute_specifier, + STATE(9295), 1, + sym_virtual_specifier, + STATE(10069), 1, + sym_base_class_clause, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6826), 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(6828), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [10291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9598), 1, + anon_sym_delete, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9342), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9344), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [10369] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9590), 1, + anon_sym_LT, + STATE(4107), 1, + sym_template_argument_list, + ACTIONS(5272), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7031), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [10445] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9604), 1, + anon_sym_virtual, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3915), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9602), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9600), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [10533] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9606), 1, + sym_ms_restrict_modifier, + STATE(4191), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9609), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9612), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3862), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6600), 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(6602), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [10613] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9615), 1, + anon_sym_AMP_AMP, + ACTIONS(9618), 1, + anon_sym_AMP, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + STATE(3996), 1, + sym_ref_qualifier, + STATE(6163), 1, + sym__function_attributes_end, + STATE(6254), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4464), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [10725] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(8879), 1, + anon_sym_LT, + STATE(4000), 1, + sym_template_argument_list, + ACTIONS(6201), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6208), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [10801] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9624), 1, + anon_sym_AMP_AMP, + ACTIONS(9627), 1, + anon_sym_AMP, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + STATE(4011), 1, + sym_ref_qualifier, + STATE(6170), 1, + sym__function_attributes_end, + STATE(6194), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4489), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [10913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 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, + [10983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6790), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6792), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [11053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [11123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 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, + [11193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 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, + [11263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6790), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6792), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [11473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2768), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(2758), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [11543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6716), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6718), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [11613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9406), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8448), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [11963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8456), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8384), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8402), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [12173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2768), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(2758), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [12243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6716), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6718), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [12313] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(8812), 1, + anon_sym_AMP_AMP, + ACTIONS(8815), 1, + anon_sym_AMP, + ACTIONS(9633), 1, + anon_sym___attribute__, + ACTIONS(9636), 1, + anon_sym___attribute, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(3957), 1, + sym_ref_qualifier, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6082), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4487), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [12425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6800), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6798), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [12497] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(9615), 1, + anon_sym_AMP_AMP, + ACTIONS(9618), 1, + anon_sym_AMP, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + ACTIONS(9645), 1, + anon_sym_requires, + STATE(3961), 1, + sym_ref_qualifier, + STATE(6181), 1, + sym__function_attributes_end, + STATE(6215), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9642), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4503), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [12609] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(9624), 1, + anon_sym_AMP_AMP, + ACTIONS(9627), 1, + anon_sym_AMP, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(3964), 1, + sym_ref_qualifier, + STATE(6162), 1, + sym__function_attributes_end, + STATE(6234), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9648), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4516), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [12721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 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(8456), 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, + [12791] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6670), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3553), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6997), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6995), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [12889] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6673), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3897), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7001), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6999), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [12987] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(9590), 1, + anon_sym_LT, + STATE(4164), 1, + sym_template_argument_list, + ACTIONS(6751), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6746), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [13063] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(8812), 1, + anon_sym_AMP_AMP, + ACTIONS(8815), 1, + anon_sym_AMP, + ACTIONS(8824), 1, + anon_sym_requires, + ACTIONS(9633), 1, + anon_sym___attribute__, + ACTIONS(9636), 1, + anon_sym___attribute, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(3971), 1, + sym_ref_qualifier, + STATE(5711), 1, + sym_trailing_return_type, + STATE(6050), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4506), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [13175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6720), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6722), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [13245] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6697), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3553), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6495), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6497), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [13343] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6676), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3553), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7005), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7003), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [13441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [13511] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_LPAREN2, + ACTIONS(6650), 1, + anon_sym_STAR, + ACTIONS(6652), 1, + anon_sym_AMP_AMP, + ACTIONS(6654), 1, + anon_sym_AMP, + ACTIONS(6664), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4465), 1, + sym__abstract_declarator, + STATE(4681), 1, + sym__function_declarator_seq, + STATE(4672), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9072), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [13599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9456), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9458), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [13669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6794), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6796), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [13739] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9604), 1, + anon_sym_virtual, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3915), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9656), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9654), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [13827] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6683), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3553), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7009), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7007), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [13925] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [14011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6786), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6788), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [14081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 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, + [14151] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6507), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9076), 1, + sym_auto, + STATE(3030), 1, + sym_decltype_auto, + ACTIONS(6798), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [14229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8418), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [14299] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9660), 1, + sym_ms_restrict_modifier, + STATE(4192), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9663), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9666), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3909), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6600), 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(6602), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, + anon_sym_LT, + STATE(3968), 1, + sym_template_argument_list, + ACTIONS(6201), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6208), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7019), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7017), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [14535] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3913), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9674), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14609] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7387), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7389), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14683] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7391), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7393), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14757] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9685), 1, + anon_sym_virtual, + ACTIONS(9694), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9697), 1, + anon_sym___declspec, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(9691), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9700), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3915), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(9688), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9680), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(9678), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9682), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [14845] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3922), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9703), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7402), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7404), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14919] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3923), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9705), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7408), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7410), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14993] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6680), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3734), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6997), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6995), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [15091] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6682), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3930), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7001), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6999), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [15189] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9709), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [15277] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_const, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(3785), 1, + sym_alignas_qualifier, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6657), 1, + sym__abstract_declarator, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6993), 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(8232), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6991), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [15375] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7414), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7416), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15449] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7199), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7201), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15523] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3933), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9713), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7213), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7215), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15597] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3934), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9715), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7239), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7241), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15671] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7249), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7251), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15745] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(9717), 1, + anon_sym_COLON, + STATE(2001), 1, + sym__enum_base_clause, + STATE(2034), 1, + sym_enumerator_list, + STATE(2074), 1, + sym_attribute_specifier, + ACTIONS(6830), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7600), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7602), 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, + [15827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(9717), 1, + anon_sym_COLON, + STATE(2009), 1, + sym__enum_base_clause, + STATE(2043), 1, + sym_enumerator_list, + STATE(2092), 1, + sym_attribute_specifier, + ACTIONS(6830), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7651), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7653), 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, + [15909] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6706), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3734), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6495), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6497), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [16007] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6751), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3734), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7005), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7003), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [16105] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3913), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9674), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7255), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16179] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_argument_list, + STATE(5901), 1, + sym_initializer_list, + ACTIONS(7183), 26, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7185), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [16259] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7383), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7385), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16333] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9676), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7395), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7397), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16407] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_const, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8262), 1, + anon_sym_LBRACK, + ACTIONS(8520), 1, + anon_sym_STAR, + ACTIONS(8522), 1, + anon_sym_AMP_AMP, + ACTIONS(8524), 1, + anon_sym_AMP, + STATE(2180), 1, + sym_parameter_list, + STATE(4050), 1, + sym_alignas_qualifier, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6702), 1, + sym__abstract_declarator, + ACTIONS(8264), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3734), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6612), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7009), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8254), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7007), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [16505] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9723), 1, + anon_sym_virtual, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3902), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9721), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9719), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [16593] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym___attribute, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(7714), 1, + anon_sym___attribute__, + ACTIONS(9725), 1, + anon_sym_COLON, + STATE(2001), 1, + sym__enum_base_clause, + STATE(2034), 1, + sym_enumerator_list, + STATE(2074), 1, + sym_attribute_specifier, + ACTIONS(7600), 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(7602), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [16676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8448), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [16745] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9733), 1, + anon_sym_requires, + STATE(5721), 1, + sym_trailing_return_type, + STATE(5843), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9730), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [16844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8456), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [16913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7301), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7299), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [16982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7289), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7287), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7305), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7303), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8384), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [17189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8402), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [17258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7329), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7237), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7339), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7337), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7343), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7347), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7345), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7351), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7357), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7355), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7359), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17810] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4238), 1, + sym_alignas_qualifier, + ACTIONS(9739), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6527), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9736), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6525), 30, + anon_sym_AMP, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [17887] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9633), 1, + anon_sym___attribute__, + ACTIONS(9636), 1, + anon_sym___attribute, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6082), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4487), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [17992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7245), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18061] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9742), 1, + anon_sym___attribute__, + ACTIONS(9745), 1, + anon_sym___attribute, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5666), 1, + sym_trailing_return_type, + STATE(6048), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4472), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [18166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7375), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18235] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + ACTIONS(9645), 1, + anon_sym_requires, + STATE(6181), 1, + sym__function_attributes_end, + STATE(6215), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9642), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4503), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [18340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7381), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7379), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18409] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(9751), 1, + anon_sym_DASH_GT, + ACTIONS(9757), 1, + anon_sym_requires, + STATE(6161), 1, + sym__function_attributes_end, + STATE(6219), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9754), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4459), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [18514] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6162), 1, + sym__function_attributes_end, + STATE(6234), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9648), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4516), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [18619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7295), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18688] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + ACTIONS(9766), 1, + anon_sym_requires, + STATE(6155), 1, + sym__function_attributes_end, + STATE(6235), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9763), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4446), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [18793] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(9769), 1, + sym_auto, + STATE(4315), 1, + sym_decltype_auto, + ACTIONS(6798), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6228), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [18941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7423), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7421), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6233), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [19079] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(8824), 1, + anon_sym_requires, + ACTIONS(9633), 1, + anon_sym___attribute__, + ACTIONS(9636), 1, + anon_sym___attribute, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(5711), 1, + sym_trailing_return_type, + STATE(6050), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4506), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [19184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8418), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [19253] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6915), 1, + anon_sym_noexcept, + ACTIONS(6917), 1, + anon_sym_throw, + ACTIONS(8977), 1, + anon_sym_requires, + ACTIONS(9742), 1, + anon_sym___attribute__, + ACTIONS(9745), 1, + anon_sym___attribute, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5719), 1, + sym_trailing_return_type, + STATE(6079), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4519), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [19358] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(8818), 1, + anon_sym_DASH_GT, + STATE(5718), 1, + sym_trailing_return_type, + STATE(5867), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [19457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7205), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7209), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + sym_primitive_type, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9771), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7081), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7084), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [19670] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6451), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9191), 1, + sym_auto, + STATE(3963), 1, + sym_decltype_auto, + ACTIONS(6800), 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, + ACTIONS(6798), 32, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [19749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9774), 1, + sym_identifier, + STATE(4015), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3359), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8118), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8116), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [19826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 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, + [19895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 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(8456), 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, + [19964] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(8971), 1, + anon_sym_DASH_GT, + STATE(5666), 1, + sym_trailing_return_type, + STATE(5842), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [20063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6951), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6951), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20205] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6724), 1, + anon_sym_LPAREN2, + ACTIONS(6726), 1, + anon_sym_STAR, + ACTIONS(6728), 1, + anon_sym_AMP_AMP, + ACTIONS(6730), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(4536), 1, + sym__abstract_declarator, + STATE(4970), 1, + sym__function_declarator_seq, + STATE(4956), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20292] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6766), 1, + anon_sym_LPAREN2, + ACTIONS(6768), 1, + anon_sym_STAR, + ACTIONS(6770), 1, + anon_sym_AMP_AMP, + ACTIONS(6772), 1, + anon_sym_AMP, + ACTIONS(6782), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(4548), 1, + sym__abstract_declarator, + STATE(4975), 1, + sym__function_declarator_seq, + STATE(4966), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [20379] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8882), 1, + anon_sym_DASH_GT, + ACTIONS(8888), 1, + anon_sym_requires, + STATE(5908), 1, + sym__function_attributes_end, + STATE(6005), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8885), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7546), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7544), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [20474] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8996), 1, + anon_sym_DASH_GT, + ACTIONS(9124), 1, + anon_sym_requires, + STATE(5909), 1, + sym__function_attributes_end, + STATE(6006), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9121), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7629), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7627), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [20569] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9776), 1, + anon_sym_DASH_GT, + ACTIONS(9782), 1, + anon_sym_requires, + STATE(5910), 1, + sym__function_attributes_end, + STATE(6007), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9779), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8087), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8089), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [20664] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3670), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9259), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6627), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(7084), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(7081), 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, + [20739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6967), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6969), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20808] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5303), 1, + anon_sym_STAR, + ACTIONS(5305), 1, + anon_sym_AMP_AMP, + ACTIONS(5307), 1, + anon_sym_AMP, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym_RPAREN, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4601), 1, + sym_parameter_list, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8694), 1, + sym__declarator, + STATE(8877), 1, + sym__abstract_declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [20931] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5303), 1, + anon_sym_STAR, + ACTIONS(5305), 1, + anon_sym_AMP_AMP, + ACTIONS(5307), 1, + anon_sym_AMP, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_RPAREN, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4601), 1, + sym_parameter_list, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8701), 1, + sym__declarator, + STATE(8868), 1, + sym__abstract_declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [21054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7281), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7279), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21123] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(8971), 1, + anon_sym_DASH_GT, + ACTIONS(8977), 1, + anon_sym_requires, + STATE(5719), 1, + sym_trailing_return_type, + STATE(5841), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [21222] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + STATE(6163), 1, + sym__function_attributes_end, + STATE(6254), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4464), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [21327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7229), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7227), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21396] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7456), 1, + anon_sym_noexcept, + ACTIONS(7458), 1, + anon_sym_throw, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9751), 1, + anon_sym_DASH_GT, + STATE(6169), 1, + sym__function_attributes_end, + STATE(6263), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4467), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [21501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [21570] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym___attribute, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(7714), 1, + anon_sym___attribute__, + ACTIONS(9725), 1, + anon_sym_COLON, + STATE(2009), 1, + sym__enum_base_clause, + STATE(2043), 1, + sym_enumerator_list, + STATE(2092), 1, + sym_attribute_specifier, + ACTIONS(7651), 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(7653), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [21653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(4096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5860), 1, + sym_initializer_list, + ACTIONS(9785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6800), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [21734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6233), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21803] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9787), 1, + anon_sym_delete, + ACTIONS(9789), 1, + anon_sym_new, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9342), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(9344), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + [21880] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6282), 1, + anon_sym___attribute__, + ACTIONS(6284), 1, + anon_sym___attribute, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(2243), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4381), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(8514), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [21959] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6282), 1, + anon_sym___attribute__, + ACTIONS(6284), 1, + anon_sym___attribute, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(2243), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4363), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(8481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [22038] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9791), 1, + sym_identifier, + STATE(3977), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3359), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8127), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8125), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [22115] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6746), 1, + anon_sym_const, + ACTIONS(8390), 1, + anon_sym_LT, + STATE(2848), 1, + sym_template_argument_list, + ACTIONS(6755), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(6751), 15, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6748), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [22192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7233), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7231), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 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, + [22330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6846), 30, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6844), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [22399] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + STATE(6170), 1, + sym__function_attributes_end, + STATE(6194), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4489), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7546), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [22504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7223), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_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, + [22573] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7513), 1, + anon_sym_noexcept, + ACTIONS(7515), 1, + anon_sym_throw, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + STATE(6156), 1, + sym__function_attributes_end, + STATE(6209), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4508), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7629), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7627), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [22678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7223), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_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, + [22747] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9256), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6627), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(7084), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(7081), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [22822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7327), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7325), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22891] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9793), 1, + sym_identifier, + STATE(4015), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(9796), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9799), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8047), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8045), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [22968] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(8882), 1, + anon_sym_DASH_GT, + STATE(5849), 1, + sym__function_attributes_end, + STATE(5969), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7546), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7544), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [23063] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(8996), 1, + anon_sym_DASH_GT, + STATE(5850), 1, + sym__function_attributes_end, + STATE(5924), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7629), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7627), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [23158] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(9776), 1, + anon_sym_DASH_GT, + STATE(5851), 1, + sym__function_attributes_end, + STATE(5977), 1, + sym_trailing_return_type, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6129), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8087), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8089), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [23253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8418), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [23322] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + ACTIONS(9802), 1, + anon_sym_COLON, + STATE(3974), 1, + sym_attribute_specifier, + STATE(4216), 1, + sym__enum_base_clause, + STATE(4280), 1, + sym_enumerator_list, + ACTIONS(7600), 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(7602), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23405] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + ACTIONS(9802), 1, + anon_sym_COLON, + STATE(4024), 1, + sym_attribute_specifier, + STATE(4217), 1, + sym__enum_base_clause, + STATE(4284), 1, + sym_enumerator_list, + ACTIONS(7651), 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(7653), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23488] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + STATE(5864), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [23587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7265), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7263), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7269), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7267), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7273), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7271), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6272), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6242), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6244), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6246), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6248), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6250), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6252), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7277), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7275), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24139] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9804), 1, + anon_sym_COLON, + ACTIONS(9806), 1, + anon_sym_LBRACE, + STATE(4204), 1, + sym__enum_base_clause, + STATE(4254), 1, + sym_enumerator_list, + STATE(4375), 1, + sym_attribute_specifier, + ACTIONS(7600), 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(7602), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9804), 1, + anon_sym_COLON, + ACTIONS(9806), 1, + anon_sym_LBRACE, + STATE(4180), 1, + sym__enum_base_clause, + STATE(4251), 1, + sym_enumerator_list, + STATE(4323), 1, + sym_attribute_specifier, + ACTIONS(7651), 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(7653), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6254), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6256), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6258), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6260), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24443] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9771), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6629), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6627), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [24516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6262), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6264), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24585] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3798), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5601), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5603), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 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(8739), 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, + [24660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7289), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7287), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24729] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + ACTIONS(8818), 1, + anon_sym_DASH_GT, + ACTIONS(8824), 1, + anon_sym_requires, + STATE(5711), 1, + sym_trailing_return_type, + STATE(5837), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [24828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7293), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7291), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7193), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7191), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6800), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6798), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [25035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7223), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_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, + [25104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7637), 1, + anon_sym_requires, + ACTIONS(8076), 1, + anon_sym_DASH_GT, + STATE(2975), 1, + sym_trailing_return_type, + ACTIONS(7634), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [25184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7185), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8448), 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, + [25322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8456), 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, + [25390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 1, + anon_sym_decltype, + ACTIONS(9769), 1, + sym_auto, + STATE(4315), 1, + sym_decltype_auto, + ACTIONS(6798), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8402), 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, + [25532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(2768), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [25600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6716), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [25668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9810), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(9808), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6270), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6242), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6248), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6246), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6252), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6250), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6254), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6258), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6264), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6262), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26212] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9812), 1, + anon_sym_delete, + ACTIONS(9814), 1, + anon_sym_new, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9342), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [26288] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7385), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7383), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [26360] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7397), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7395), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [26432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6969), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6967), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8551), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8553), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [26568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8555), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8557), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [26636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2910), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(2905), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(9187), 1, + anon_sym_LT, + STATE(4211), 1, + sym_template_argument_list, + ACTIONS(6746), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6751), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [26778] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5422), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [26898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8579), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8581), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [26966] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4068), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5300), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [27086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(2949), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [27154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(8526), 1, + anon_sym_LT, + STATE(3619), 1, + sym_template_argument_list, + ACTIONS(6746), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6751), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27228] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8384), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4127), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5296), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [27348] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4077), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5279), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [27468] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4088), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9824), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7404), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7402), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [27540] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4091), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9826), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7410), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7408), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [27612] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5291), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [27732] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6326), 1, + anon_sym___attribute__, + ACTIONS(6328), 1, + anon_sym___attribute, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(2260), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4445), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8514), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27810] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6326), 1, + anon_sym___attribute__, + ACTIONS(6328), 1, + anon_sym___attribute, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(2260), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4504), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27888] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6451), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9191), 1, + sym_auto, + STATE(3963), 1, + sym_decltype_auto, + ACTIONS(6800), 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, + ACTIONS(6798), 32, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [27964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9830), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(9828), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [28032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6951), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6949), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [28102] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9832), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9838), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9842), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28330] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9846), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28406] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9850), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28482] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7416), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7414), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [28554] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9854), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28630] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9858), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28706] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7201), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7199), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [28778] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1843), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9862), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [28854] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4061), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7215), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7213), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [28926] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4062), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7241), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7239), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [28998] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7251), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7249), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [29070] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7389), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7387), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [29142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9872), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(9870), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [29210] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8384), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4152), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5348), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29330] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4101), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5170), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9886), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(9884), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [29518] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5174), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29638] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6475), 1, + anon_sym_LBRACK, + ACTIONS(6838), 1, + anon_sym_STAR, + ACTIONS(6840), 1, + anon_sym_AMP_AMP, + ACTIONS(6842), 1, + anon_sym_AMP, + STATE(1871), 1, + sym_parameter_list, + STATE(3515), 1, + sym__function_declarator_seq, + STATE(4693), 1, + sym__abstract_declarator, + STATE(3510), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [29724] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8384), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4156), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5369), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29844] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4105), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5200), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29964] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5203), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6951), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6949), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [30154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6226), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [30222] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5300), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30342] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4203), 1, + sym_template_argument_list, + STATE(4767), 1, + sym_decltype_auto, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 9, + 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_LBRACK_COLON, + ACTIONS(5251), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [30426] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8686), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4158), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5375), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30546] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4112), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5225), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30666] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5228), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30786] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8686), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4159), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5378), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30906] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4115), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5235), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31026] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5239), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31146] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4096), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7255), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7253), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31218] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4118), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5249), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31338] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5252), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31458] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4120), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5261), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31578] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5265), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31698] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9816), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7393), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7391), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9918), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8585), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [31840] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8702), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4108), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5224), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9187), 1, + anon_sym_LT, + STATE(3968), 1, + sym_template_argument_list, + ACTIONS(7031), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5272), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [32034] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9920), 1, + anon_sym_delete, + ACTIONS(9922), 1, + anon_sym_new, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9342), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9344), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [32110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9930), 1, + anon_sym_template, + STATE(2000), 1, + sym_string_literal, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [32184] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5279), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32304] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8702), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4155), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5359), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32424] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9932), 1, + anon_sym_template, + STATE(2014), 1, + sym_string_literal, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [32498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8637), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8639), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [32566] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9934), 1, + anon_sym_delete, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9342), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [32642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8643), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [32710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(7933), 1, + anon_sym_DASH_GT, + STATE(2911), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [32790] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(8076), 1, + anon_sym_DASH_GT, + STATE(2959), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3497), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [32870] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(8534), 1, + anon_sym_DASH_GT, + STATE(2964), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [32950] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_requires, + ACTIONS(9936), 1, + anon_sym_DASH_GT, + STATE(2968), 1, + sym_trailing_return_type, + ACTIONS(6181), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [33030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6949), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [33098] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym_requires, + ACTIONS(7933), 1, + anon_sym_DASH_GT, + STATE(2961), 1, + sym_trailing_return_type, + ACTIONS(7557), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3513), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [33178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6746), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [33246] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8132), 1, + anon_sym_requires, + ACTIONS(8534), 1, + anon_sym_DASH_GT, + STATE(2867), 1, + sym_trailing_return_type, + ACTIONS(8129), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3528), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [33326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_requires, + ACTIONS(9936), 1, + anon_sym_DASH_GT, + STATE(2872), 1, + sym_trailing_return_type, + ACTIONS(9398), 2, + anon_sym_final, + anon_sym_override, + STATE(3248), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3541), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [33406] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9832), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9834), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33482] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9838), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9840), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33558] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9842), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9844), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33634] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9846), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9848), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33710] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9850), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9852), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33786] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9854), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9856), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33862] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9858), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9860), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33938] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1842), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9862), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9864), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [34014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9939), 1, + anon_sym_template, + STATE(2010), 1, + sym_string_literal, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [34088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6949), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6951), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34156] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5170), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34276] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8702), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4157), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5372), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9941), 1, + anon_sym_template, + STATE(2013), 1, + sym_string_literal, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [34470] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5200), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34590] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5235), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34710] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5249), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34830] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5225), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34950] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5261), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35070] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6361), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym___attribute, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(2281), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4499), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 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(8514), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35148] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6361), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym___attribute, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(2281), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4480), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 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(8481), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9945), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(9943), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [35294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(8526), 1, + anon_sym_LT, + STATE(4000), 1, + sym_template_argument_list, + ACTIONS(7031), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5272), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [35368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6764), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6762), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [35436] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6629), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6627), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [35508] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9950), 1, + anon_sym_delete, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9342), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9344), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [35584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8384), 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, + [35652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6846), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6844), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [35719] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(9952), 1, + anon_sym_DASH_GT, + STATE(4264), 1, + sym_trailing_return_type, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4702), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [35798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7185), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7183), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8551), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8553), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [35934] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + ACTIONS(8827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 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(6800), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [36013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8555), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8557), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [36080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8579), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8581), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [36147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [36214] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4096), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6800), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [36285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6844), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6846), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8418), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [36419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6716), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [36486] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + STATE(4261), 1, + sym_enumerator_list, + STATE(4428), 1, + sym_attribute_specifier, + ACTIONS(7011), 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(7013), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + sym_ms_restrict_modifier, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6808), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 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, + [36697] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(8219), 1, + anon_sym_LPAREN2, + STATE(3287), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5801), 1, + sym_argument_list, + STATE(7210), 1, + sym_initializer_list, + ACTIONS(9955), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 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(6800), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [36776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6844), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6846), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [36843] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7994), 1, + anon_sym_DASH_GT, + ACTIONS(8000), 1, + anon_sym_requires, + STATE(4230), 1, + sym_trailing_return_type, + ACTIONS(7997), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4846), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [36922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9957), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8585), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(7841), 1, + anon_sym_DASH_GT, + STATE(4241), 1, + sym_trailing_return_type, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4844), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [37070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 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, + [37137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6746), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6751), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [37204] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8470), 1, + anon_sym_DASH_GT, + ACTIONS(8476), 1, + anon_sym_requires, + STATE(4232), 1, + sym_trailing_return_type, + ACTIONS(8473), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4685), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [37283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6900), 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, + sym_ms_restrict_modifier, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6902), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6900), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + sym_ms_restrict_modifier, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6902), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [37417] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + ACTIONS(9963), 1, + sym_auto, + ACTIONS(9965), 1, + anon_sym_decltype, + STATE(3601), 1, + sym_template_argument_list, + STATE(5101), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5980), 1, + sym_decltype_auto, + ACTIONS(9961), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5251), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5258), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [37500] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9952), 1, + anon_sym_DASH_GT, + ACTIONS(9970), 1, + anon_sym_requires, + STATE(4237), 1, + sym_trailing_return_type, + ACTIONS(9967), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4702), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [37579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8637), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8639), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8643), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37713] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(8274), 1, + anon_sym_LPAREN2, + STATE(3913), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5660), 1, + sym_argument_list, + STATE(7265), 1, + sym_initializer_list, + ACTIONS(9674), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 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(6800), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [37792] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(7994), 1, + anon_sym_DASH_GT, + STATE(4274), 1, + sym_trailing_return_type, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4846), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [37871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9973), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8585), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6792), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6790), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [38007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9977), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(9975), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [38074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 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(8456), 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, + [38141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6226), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [38208] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + STATE(4255), 1, + sym_enumerator_list, + STATE(4334), 1, + sym_attribute_specifier, + ACTIONS(6985), 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(6987), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38285] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_LPAREN2, + ACTIONS(6929), 1, + anon_sym_STAR, + ACTIONS(6931), 1, + anon_sym_AMP_AMP, + ACTIONS(6933), 1, + anon_sym_AMP, + ACTIONS(6943), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(4987), 1, + sym__abstract_declarator, + STATE(5582), 1, + sym__function_declarator_seq, + STATE(5581), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9072), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [38370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(8526), 1, + anon_sym_LT, + STATE(3619), 1, + sym_template_argument_list, + ACTIONS(6746), 15, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6755), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6748), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [38445] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(8470), 1, + anon_sym_DASH_GT, + STATE(4259), 1, + sym_trailing_return_type, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4685), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [38524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8637), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8639), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8643), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38658] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_LPAREN2, + ACTIONS(6664), 1, + anon_sym_LBRACK, + ACTIONS(6971), 1, + anon_sym_STAR, + ACTIONS(6973), 1, + anon_sym_AMP_AMP, + ACTIONS(6975), 1, + anon_sym_AMP, + STATE(1869), 1, + sym_parameter_list, + STATE(4681), 1, + sym__function_declarator_seq, + STATE(4963), 1, + sym__abstract_declarator, + STATE(4672), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9072), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6762), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6764), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38810] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7841), 1, + anon_sym_DASH_GT, + ACTIONS(7851), 1, + anon_sym_requires, + STATE(4273), 1, + sym_trailing_return_type, + ACTIONS(7848), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4844), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [38889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8551), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8553), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8555), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8557), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8579), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8581), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(4030), 1, + sym_attribute_specifier, + STATE(4286), 1, + sym_enumerator_list, + ACTIONS(6985), 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(6987), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39167] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3949), 1, + sym_attribute_specifier, + STATE(4289), 1, + sym_enumerator_list, + ACTIONS(7011), 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(7013), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 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, + sym_ms_restrict_modifier, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6808), 48, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39311] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(9979), 1, + anon_sym_LBRACK, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4767), 1, + sym_decltype_auto, + STATE(5816), 1, + sym_template_argument_list, + ACTIONS(5290), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(5251), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [39397] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4844), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [39471] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + sym_identifier, + ACTIONS(9992), 1, + sym_primitive_type, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(5120), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9989), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9987), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6884), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(9984), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6886), 22, + anon_sym_AMP, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [39553] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, + anon_sym_requires, + ACTIONS(7848), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4844), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [39627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8384), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [39693] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(7951), 1, + anon_sym_DASH_GT, + STATE(4424), 1, + sym_trailing_return_type, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4984), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [39771] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(7966), 1, + anon_sym_DASH_GT, + STATE(4310), 1, + sym_trailing_return_type, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4983), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [39849] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7966), 1, + anon_sym_DASH_GT, + ACTIONS(7972), 1, + anon_sym_requires, + STATE(4305), 1, + sym_trailing_return_type, + ACTIONS(7969), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4983), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [39927] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8061), 1, + anon_sym_DASH_GT, + ACTIONS(8067), 1, + anon_sym_requires, + STATE(4308), 1, + sym_trailing_return_type, + ACTIONS(8064), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4995), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [40005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6792), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6790), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [40071] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(9994), 1, + anon_sym_DASH_GT, + STATE(4377), 1, + sym_trailing_return_type, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5014), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [40149] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8476), 1, + anon_sym_requires, + ACTIONS(8473), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4685), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [40223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(6716), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [40289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9970), 1, + anon_sym_requires, + ACTIONS(9967), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4702), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [40363] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8576), 1, + anon_sym_DASH_GT, + ACTIONS(8662), 1, + anon_sym_requires, + STATE(4309), 1, + sym_trailing_return_type, + ACTIONS(8659), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5002), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [40441] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(6569), 1, + sym__function_attributes_start, + STATE(7100), 1, + sym_ref_qualifier, + STATE(7934), 1, + sym_trailing_return_type, + STATE(7956), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7550), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4345), 1, + sym_attribute_specifier, + ACTIONS(7061), 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(7063), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [40633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10024), 1, + anon_sym_DASH_GT, + ACTIONS(10030), 1, + anon_sym_requires, + STATE(4311), 1, + sym_trailing_return_type, + ACTIONS(10027), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5005), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [40711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10036), 1, + anon_sym_requires, + ACTIONS(10033), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4721), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8561), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [40785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(2768), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [40851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8448), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [40917] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7951), 1, + anon_sym_DASH_GT, + ACTIONS(7957), 1, + anon_sym_requires, + STATE(4410), 1, + sym_trailing_return_type, + ACTIONS(7954), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4984), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [40995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4846), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [41069] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(8039), 1, + anon_sym_DASH_GT, + STATE(4325), 1, + sym_trailing_return_type, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [41147] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10042), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(6591), 1, + sym__function_attributes_start, + STATE(7246), 1, + sym_ref_qualifier, + STATE(7924), 1, + sym_trailing_return_type, + STATE(7947), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10039), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7541), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [41267] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6410), 1, + anon_sym___attribute__, + ACTIONS(6412), 1, + anon_sym___attribute, + ACTIONS(6414), 1, + anon_sym_LBRACK_LBRACK, + STATE(2419), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4763), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8514), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [41343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(8061), 1, + anon_sym_DASH_GT, + STATE(4326), 1, + sym_trailing_return_type, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4995), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [41421] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(8576), 1, + anon_sym_DASH_GT, + STATE(4327), 1, + sym_trailing_return_type, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5002), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [41499] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6410), 1, + anon_sym___attribute__, + ACTIONS(6412), 1, + anon_sym___attribute, + ACTIONS(6414), 1, + anon_sym_LBRACK_LBRACK, + STATE(2419), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4745), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [41575] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6766), 1, + anon_sym_LPAREN2, + ACTIONS(6782), 1, + anon_sym_LBRACK, + ACTIONS(6977), 1, + anon_sym_STAR, + ACTIONS(6979), 1, + anon_sym_AMP_AMP, + ACTIONS(6981), 1, + anon_sym_AMP, + STATE(1873), 1, + sym_parameter_list, + STATE(4975), 1, + sym__function_declarator_seq, + STATE(5350), 1, + sym__abstract_declarator, + STATE(4966), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [41659] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(10024), 1, + anon_sym_DASH_GT, + STATE(4349), 1, + sym_trailing_return_type, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5005), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [41737] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4317), 1, + sym_attribute_specifier, + ACTIONS(7053), 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(7055), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [41809] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4407), 1, + sym_attribute_specifier, + ACTIONS(7091), 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(7093), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [41881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6798), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6800), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [41949] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8039), 1, + anon_sym_DASH_GT, + ACTIONS(8058), 1, + anon_sym_requires, + STATE(4412), 1, + sym_trailing_return_type, + ACTIONS(8055), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [42027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4332), 1, + sym_attribute_specifier, + ACTIONS(7057), 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(7059), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4430), 1, + sym_attribute_specifier, + ACTIONS(7095), 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(7097), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(4203), 1, + sym_template_argument_list, + ACTIONS(6208), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [42243] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4396), 1, + sym_attribute_specifier, + ACTIONS(7187), 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(7189), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42315] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5272), 1, + anon_sym_SEMI, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4203), 1, + sym_template_argument_list, + STATE(4767), 1, + sym_decltype_auto, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5251), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [42399] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4702), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [42473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4295), 1, + sym_attribute_specifier, + ACTIONS(7099), 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(7101), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42545] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4318), 1, + sym_attribute_specifier, + ACTIONS(7123), 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(7125), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8456), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [42683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4322), 1, + sym_attribute_specifier, + ACTIONS(7133), 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(7135), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42755] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4721), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8561), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [42829] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8626), 1, + anon_sym_DASH_GT, + ACTIONS(8648), 1, + anon_sym_requires, + STATE(4414), 1, + sym_trailing_return_type, + ACTIONS(8645), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5023), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [42907] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4298), 1, + sym_attribute_specifier, + ACTIONS(7103), 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(7105), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42979] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9994), 1, + anon_sym_DASH_GT, + ACTIONS(10048), 1, + anon_sym_requires, + STATE(4419), 1, + sym_trailing_return_type, + ACTIONS(10045), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5014), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [43057] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10051), 1, + anon_sym_delete, + ACTIONS(10053), 1, + anon_sym_new, + ACTIONS(9346), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_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(9342), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + ACTIONS(8418), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [43197] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10055), 1, + sym_identifier, + ACTIONS(10065), 1, + sym_primitive_type, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4642), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10062), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4221), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10060), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6812), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10057), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6814), 22, + anon_sym_AMP, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [43279] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7813), 1, + anon_sym___attribute__, + ACTIONS(7815), 1, + anon_sym___attribute, + ACTIONS(7992), 1, + anon_sym_LBRACE, + ACTIONS(10067), 1, + anon_sym_COLON, + STATE(2543), 1, + sym__enum_base_clause, + STATE(2617), 1, + sym_enumerator_list, + STATE(2931), 1, + sym_attribute_specifier, + ACTIONS(7651), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7653), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [43359] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6724), 1, + anon_sym_LPAREN2, + ACTIONS(6740), 1, + anon_sym_LBRACK, + ACTIONS(7025), 1, + anon_sym_STAR, + ACTIONS(7027), 1, + anon_sym_AMP_AMP, + ACTIONS(7029), 1, + anon_sym_AMP, + STATE(1875), 1, + sym_parameter_list, + STATE(4970), 1, + sym__function_declarator_seq, + STATE(5363), 1, + sym__abstract_declarator, + STATE(4956), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9072), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [43443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8000), 1, + anon_sym_requires, + ACTIONS(7997), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4846), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [43517] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6307), 1, + anon_sym_requires, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4455), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4685), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [43591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7107), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7109), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [43657] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3973), 1, + sym_attribute_specifier, + ACTIONS(7087), 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(7089), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43729] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3995), 1, + sym_attribute_specifier, + ACTIONS(7187), 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(7189), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43801] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7813), 1, + anon_sym___attribute__, + ACTIONS(7815), 1, + anon_sym___attribute, + ACTIONS(7992), 1, + anon_sym_LBRACE, + ACTIONS(10067), 1, + anon_sym_COLON, + STATE(2522), 1, + sym__enum_base_clause, + STATE(2601), 1, + sym_enumerator_list, + STATE(2851), 1, + sym_attribute_specifier, + ACTIONS(7600), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(7602), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [43881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(4023), 1, + sym_attribute_specifier, + ACTIONS(7053), 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(7055), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(4025), 1, + sym_attribute_specifier, + ACTIONS(7057), 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(7059), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4373), 1, + sym_attribute_specifier, + ACTIONS(7087), 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(7089), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44097] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(4040), 1, + sym_attribute_specifier, + ACTIONS(7061), 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(7063), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3941), 1, + sym_attribute_specifier, + ACTIONS(7065), 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(7067), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3948), 1, + sym_attribute_specifier, + ACTIONS(7091), 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(7093), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + STATE(4351), 1, + sym_attribute_specifier, + ACTIONS(7065), 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(7067), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44385] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3950), 1, + sym_attribute_specifier, + ACTIONS(7095), 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(7097), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44457] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3951), 1, + sym_attribute_specifier, + ACTIONS(7099), 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(7101), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44529] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3952), 1, + sym_attribute_specifier, + ACTIONS(7103), 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(7105), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3958), 1, + sym_attribute_specifier, + ACTIONS(7123), 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(7125), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44673] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + STATE(3960), 1, + sym_attribute_specifier, + ACTIONS(7133), 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(7135), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8402), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [44811] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(8626), 1, + anon_sym_DASH_GT, + STATE(4354), 1, + sym_trailing_return_type, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5023), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [44889] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9848), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9846), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [44962] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8003), 1, + anon_sym___attribute__, + ACTIONS(8005), 1, + anon_sym___attribute, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10069), 1, + anon_sym_COLON, + STATE(2585), 1, + sym__enum_base_clause, + STATE(2679), 1, + sym_enumerator_list, + STATE(3045), 1, + sym_attribute_specifier, + ACTIONS(7651), 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(7653), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7351), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7353), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45106] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4983), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6256), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6254), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [45244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7355), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7357), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6258), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [45374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6264), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6262), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [45439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7359), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7361), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45504] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10071), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [45589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym_requires, + ACTIONS(7969), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4983), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45662] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10073), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [45747] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8067), 1, + anon_sym_requires, + ACTIONS(8064), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4995), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7245), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7247), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45885] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9862), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [45958] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8662), 1, + anon_sym_requires, + ACTIONS(8659), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5002), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [46031] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10030), 1, + anon_sym_requires, + ACTIONS(10027), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5005), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [46104] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4995), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [46177] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10078), 1, + anon_sym_requires, + ACTIONS(10075), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5008), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 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(8561), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [46250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10083), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10081), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [46315] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10085), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [46398] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10087), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [46481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7297), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7261), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7265), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7377), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46741] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10089), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10091), 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, + [46850] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10123), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10125), 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, + [46959] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10101), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9344), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(9342), 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, + [47068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7379), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7381), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7269), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47198] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10127), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [47283] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5023), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 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, + [47356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5002), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [47429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5005), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [47502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(4365), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(8481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [47571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7253), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7255), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47636] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10129), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [47719] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [47802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7271), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7273), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47867] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9832), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [47940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7275), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7277), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48005] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9838), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48078] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9842), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48151] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9846), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48224] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9850), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48297] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9854), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9858), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1870), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9862), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48516] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10133), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6367), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5137), 13, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [48601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7285), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7289), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7293), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48796] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10135), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [48879] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10137), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [48962] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10139), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49047] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_requires, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4611), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5008), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 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(8561), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [49120] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6751), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -293298,13 +475008,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6746), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [49191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7299), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7301), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49256] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10141), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49339] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10143), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49422] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5014), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8543), 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, + [49495] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10145), 1, anon_sym_LBRACE, + STATE(4620), 1, + sym_enumerator_list, + STATE(4810), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7013), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6364), 13, + anon_sym_LBRACK_COLON, + ACTIONS(7011), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7289), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49633] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10147), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7305), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10149), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -293317,12 +475653,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5139), 25, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49866] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10151), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, anon_sym_AMP, + anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -293340,14 +475712,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [87] = 3, + [49949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293361,40 +475755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5844), 35, + ACTIONS(9838), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293406,16 +475784,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, - [158] = 3, + anon_sym_COLON_RBRACK, + [50022] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293429,40 +475821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5721), 35, + ACTIONS(9842), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293474,16 +475850,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, - [229] = 3, + anon_sym_COLON_RBRACK, + [50095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(4365), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293497,40 +475884,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8514), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7195), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7197), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10153), 1, + anon_sym_LBRACK_LBRACK, + STATE(4365), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - ACTIONS(5904), 35, + anon_sym_DASH_GT, + ACTIONS(8700), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293542,16 +476038,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, - [300] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8637), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293565,40 +476069,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8639), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(5927), 35, + anon_sym_DASH_GT, + ACTIONS(8643), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293611,15 +476161,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [371] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6272), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6270), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [50493] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9711), 1, + anon_sym_virtual, + ACTIONS(10156), 1, + anon_sym_SEMI, + STATE(4644), 1, + sym_alignas_qualifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3861), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7874), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7870), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9707), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50578] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10158), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50661] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7862), 1, + anon_sym___attribute__, + ACTIONS(7864), 1, + anon_sym___attribute, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10160), 1, + anon_sym_COLON, + STATE(2582), 1, + sym__enum_base_clause, + STATE(2653), 1, + sym_enumerator_list, + STATE(3010), 1, + sym_attribute_specifier, + ACTIONS(7651), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293629,16 +476408,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7653), 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, + [50740] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2436), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4589), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -293647,7 +476484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5923), 35, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8514), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -293656,17 +476496,322 @@ 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_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [50813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7205), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7207), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50878] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6859), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2436), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4623), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8481), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [50951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7209), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7211), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7235), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7237), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51081] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5135), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8561), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293674,20 +476819,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, - [442] = 3, + anon_sym_GT2, + [51154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4984), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293697,44 +476858,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [51227] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10162), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(5848), 35, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [51310] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9850), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293746,16 +477025,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, - [513] = 3, + anon_sym_COLON_RBRACK, + [51383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(4365), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293769,40 +477059,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(5896), 35, + anon_sym_DASH_GT, + ACTIONS(8727), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293814,18 +477087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [584] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51452] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293839,39 +477126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6376), 33, + ACTIONS(9854), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293883,16 +477155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [657] = 3, + anon_sym_COLON_RBRACK, + [51525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8551), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293906,40 +477184,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(5725), 35, + anon_sym_DASH_GT, + ACTIONS(8553), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293952,15 +477214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [728] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8555), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293974,40 +477246,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(5852), 35, + anon_sym_DASH_GT, + ACTIONS(8557), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294020,38 +477276,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [799] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, - anon_sym_LBRACE, - STATE(1938), 1, - sym_attribute_specifier, - STATE(2456), 1, - sym_enumerator_list, - ACTIONS(6173), 10, + ACTIONS(7219), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(6175), 48, + ACTIONS(7221), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -294060,15 +477319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -294096,17 +477351,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [880] = 3, + [51720] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10164), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [51803] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(10166), 1, + anon_sym_SEMI, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [51886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6242), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [51951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6248), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6246), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [52016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6252), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6250), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [52081] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -294115,8 +477716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -294127,28 +477726,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(5717), 35, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294161,20 +477751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + [52162] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 20, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -294183,9 +477787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -294196,27 +477797,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(3955), 34, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294229,37 +477822,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + [52245] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1022] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6382), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5109), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -294270,23 +477869,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(5111), 30, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, @@ -294299,14 +477894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [1097] = 3, + [52330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 20, + ACTIONS(7223), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -294318,16 +477923,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_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(5116), 43, + anon_sym_requires, + [52395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7279), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -294338,14 +477970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, + anon_sym_DOT, + ACTIONS(7281), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -294359,107 +478002,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [1168] = 3, + [52460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 27, + ACTIONS(7227), 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___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_literal_suffix, - ACTIONS(5488), 36, + ACTIONS(7229), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [1239] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52525] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8927), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9836), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6385), 27, - aux_sym_preproc_elif_token1, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294473,35 +478105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6387), 27, + anon_sym_DOT, + ACTIONS(9846), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294513,231 +478134,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - [1324] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [52598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7333), 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___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(5816), 35, + ACTIONS(7335), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LT_LT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1395] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52663] = 3, ACTIONS(3), 1, sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7231), 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___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7233), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7421), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6028), 30, + ACTIONS(7423), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1470] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7191), 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___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7193), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(5767), 35, + ACTIONS(6800), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LT_LT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1541] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52923] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8927), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9836), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6399), 27, - aux_sym_preproc_elif_token1, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294751,35 +478481,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6401), 29, + anon_sym_DOT, + ACTIONS(9832), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294791,89 +478510,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [1624] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [52996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7223), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6405), 34, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1695] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53061] = 3, ACTIONS(3), 1, sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8579), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294887,35 +478601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(6058), 30, + anon_sym_DASH_GT, + ACTIONS(8581), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294928,228 +478631,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [1770] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [53126] = 3, ACTIONS(3), 1, sym_comment, - STATE(2352), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6407), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7223), 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___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(6095), 30, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1845] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7337), 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___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(5749), 35, + ACTIONS(7339), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LT_LT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1916] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7325), 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___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(5812), 35, + ACTIONS(7327), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LT_LT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1987] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53321] = 7, ACTIONS(3), 1, sym_comment, - STATE(2353), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6409), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7957), 1, + anon_sym_requires, + ACTIONS(7954), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4984), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295159,38 +478856,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6101), 30, + ACTIONS(7544), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295199,20 +478883,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, - [2062] = 3, + anon_sym_GT2, + [53394] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8058), 1, + anon_sym_requires, + ACTIONS(8055), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295222,44 +478922,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6413), 35, + ACTIONS(7627), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295267,111 +478949,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2133] = 10, + anon_sym_GT2, + [53467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6415), 27, - aux_sym_preproc_elif_token1, + ACTIONS(7329), 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___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(6417), 27, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7331), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [2218] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6419), 27, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53532] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8648), 1, + anon_sym_requires, + ACTIONS(8645), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5023), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295381,39 +479050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6421), 27, + anon_sym_DOT, + ACTIONS(8089), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295421,16 +479077,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - [2303] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [53605] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8003), 1, + anon_sym___attribute__, + ACTIONS(8005), 1, + anon_sym___attribute, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10069), 1, + anon_sym_COLON, + STATE(2583), 1, + sym__enum_base_clause, + STATE(2663), 1, + sym_enumerator_list, + STATE(3026), 1, + sym_attribute_specifier, + ACTIONS(7600), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295444,38 +479123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(5820), 35, + ACTIONS(7602), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -295489,16 +479150,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2374] = 3, + [53684] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10048), 1, + anon_sym_requires, + ACTIONS(10045), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5014), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295508,44 +479185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5856), 35, + ACTIONS(8543), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295553,93 +479212,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2445] = 9, + anon_sym_GT2, + [53757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6790), 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___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(6425), 29, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6792), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [2528] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9834), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295654,8 +479315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295668,26 +479327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5771), 35, + ACTIONS(9832), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295704,17 +479355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2599] = 5, + [53895] = 7, ACTIONS(3), 1, sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9840), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295729,8 +479381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295743,21 +479393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6048), 30, + ACTIONS(9838), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, @@ -295774,17 +479421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2674] = 5, + [53968] = 7, ACTIONS(3), 1, sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9844), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295799,8 +479447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295813,21 +479459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6052), 30, + ACTIONS(9842), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, @@ -295844,10 +479487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2749] = 3, + [54041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 27, + ACTIONS(10171), 1, + anon_sym_requires, + ACTIONS(10168), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5135), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295857,25 +479511,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___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5495), 36, + ACTIONS(8561), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -295883,8 +479530,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_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295893,36 +479538,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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [2820] = 5, + anon_sym_GT2, + [54114] = 7, ACTIONS(3), 1, sym_comment, - STATE(2366), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6427), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9852), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -295937,8 +479579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -295951,21 +479591,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6022), 30, + ACTIONS(9850), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, @@ -295982,10 +479619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2895] = 3, + [54187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9856), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296000,8 +479645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296014,26 +479657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5794), 35, + ACTIONS(9854), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296050,10 +479685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2966] = 3, + [54260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 28, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9860), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -296068,8 +479711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296082,26 +479723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5860), 35, + ACTIONS(9858), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296118,10 +479751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3037] = 3, + [54333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 27, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1841), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9864), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296135,8 +479777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296148,18 +479788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 36, + sym_identifier, + ACTIONS(9862), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296176,21 +479817,21 @@ 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, - [3108] = 3, + [54406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6386), 1, + anon_sym_requires, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4532), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296200,44 +479841,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5663), 35, + ACTIONS(7627), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296245,20 +479868,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3179] = 3, + anon_sym_GT2, + [54479] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7862), 1, + anon_sym___attribute__, + ACTIONS(7864), 1, + anon_sym___attribute, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10160), 1, + anon_sym_COLON, + STATE(2562), 1, + sym__enum_base_clause, + STATE(2717), 1, + sym_enumerator_list, + STATE(3091), 1, + sym_attribute_specifier, + ACTIONS(7600), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296268,44 +479910,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5868), 35, + ACTIONS(7602), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296313,27 +479937,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3250] = 5, + anon_sym_GT2, + [54558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(4203), 1, + sym_template_argument_list, + ACTIONS(5272), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7031), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [54629] = 7, ACTIONS(3), 1, sym_comment, - STATE(2369), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6429), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1847), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296347,35 +480042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6068), 30, + ACTIONS(9858), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296387,103 +480071,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3325] = 5, + anon_sym_COLON_RBRACK, + [54702] = 3, ACTIONS(3), 1, sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7341), 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___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(6086), 30, + ACTIONS(7343), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3400] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, - sym_identifier, - STATE(2403), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4343), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4345), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5455), 23, + ACTIONS(10174), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296497,27 +480164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5453), 26, + ACTIONS(8585), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296530,132 +480193,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [3479] = 5, + [54834] = 3, ACTIONS(3), 1, sym_comment, - STATE(2336), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6433), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 28, - aux_sym_preproc_elif_token1, + ACTIONS(7345), 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___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(5860), 30, + ACTIONS(7347), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3554] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54899] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10176), 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(5717), 35, + ACTIONS(10178), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296667,66 +480354,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55008] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10182), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3625] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9436), 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(6158), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(9438), 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_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, @@ -296737,63 +480440,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55121] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6435), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 7, + 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(6437), 35, + ACTIONS(9284), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296805,63 +480522,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55226] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5878), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 8, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5880), 35, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296873,38 +480602,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55327] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3842] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2331), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6397), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10103), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296912,26 +480660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6064), 30, + ACTIONS(9284), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296943,31 +480681,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55426] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10105), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 12, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -296976,30 +480738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5884), 35, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297011,31 +480759,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55523] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5886), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 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, @@ -297045,29 +480815,16 @@ 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(5888), 35, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297079,32 +480836,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55618] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6439), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(9282), 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, @@ -297115,27 +480888,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(6441), 34, + ACTIONS(9284), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297147,31 +480911,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55709] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -297182,28 +480960,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(5892), 35, + ACTIONS(9284), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297215,63 +480984,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55796] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10184), 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(5713), 35, + ACTIONS(10186), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297283,64 +481068,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55905] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10182), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10188), 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(5900), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(10190), 15, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -297351,63 +481154,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [56018] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10192), 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(5908), 35, + ACTIONS(10194), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297419,64 +481238,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [56127] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10097), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10099), 1, + anon_sym_AMP_AMP, + ACTIONS(10111), 1, + anon_sym_GT_EQ, + ACTIONS(10115), 1, anon_sym_LT_EQ_GT, + ACTIONS(10117), 1, + anon_sym_or, + ACTIONS(10119), 1, + anon_sym_and, + ACTIONS(10121), 1, + anon_sym_not_eq, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10182), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10101), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10103), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10105), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10113), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10095), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10109), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10196), 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(5872), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(10198), 15, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -297487,16 +481324,81 @@ 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, - [4485] = 3, + [56240] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + STATE(4594), 1, + sym_enumerator_list, + STATE(4750), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6987), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6985), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [56313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(4485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297510,39 +481412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(6445), 35, + ACTIONS(8727), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297555,84 +481439,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4556] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [56381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10200), 1, + anon_sym_DASH_GT, + ACTIONS(10206), 1, + anon_sym_requires, + STATE(6165), 1, + sym__function_attributes_end, + STATE(6236), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10203), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(5782), 35, + ACTIONS(8089), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4627] = 3, + [56475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297646,40 +481554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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), 35, + anon_sym_DASH_GT, + ACTIONS(9832), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297691,32 +481580,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4698] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56547] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(8210), 1, anon_sym_DASH_GT, - ACTIONS(6451), 27, - aux_sym_preproc_elif_token1, + STATE(4551), 1, + sym_trailing_return_type, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5590), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297730,35 +481626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_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(6453), 27, + anon_sym_DOT, + ACTIONS(7627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297771,11 +481651,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [4783] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [56623] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [56695] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297789,40 +481751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5713), 35, + anon_sym_DASH_GT, + ACTIONS(9838), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297834,16 +481777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4854] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297857,40 +481816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5713), 35, + anon_sym_DASH_GT, + ACTIONS(9842), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297902,16 +481842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4925] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297925,40 +481881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5659), 35, + anon_sym_DASH_GT, + ACTIONS(9846), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297970,49 +481907,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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [4996] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6466), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2617), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6463), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2317), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6461), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5122), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym_compound_statement, + ACTIONS(2758), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6458), 13, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -298025,20 +481970,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5124), 25, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56979] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_compound_statement, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, anon_sym_AMP, + anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -298048,14 +482021,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [5083] = 3, + [57047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6305), 2, + anon_sym_final, + anon_sym_override, + STATE(4460), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298069,40 +482070,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6445), 35, + anon_sym_DASH_GT, + ACTIONS(8776), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298114,15 +482098,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5154] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_compound_statement, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [57183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 27, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(10217), 1, + anon_sym_DASH_GT, + STATE(4567), 1, + sym_trailing_return_type, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5609), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298137,20 +482206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 36, + ACTIONS(8543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298173,25 +482230,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [5225] = 3, + [57259] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298205,40 +482265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6445), 35, + anon_sym_DASH_GT, + ACTIONS(9850), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298250,84 +482291,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5296] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10220), 1, + anon_sym_DASH_GT, + ACTIONS(10226), 1, + anon_sym_requires, + STATE(6168), 1, + sym__function_attributes_end, + STATE(6221), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10223), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(6470), 35, + ACTIONS(8089), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5367] = 3, + anon_sym_GT2, + [57425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10229), 2, + anon_sym_final, + anon_sym_override, + STATE(4460), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298341,40 +482404,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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(6474), 34, + anon_sym_DASH_GT, + ACTIONS(8757), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298386,237 +482432,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5438] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(305), 1, + anon_sym_LBRACE, + STATE(513), 1, + sym_compound_statement, + ACTIONS(2758), 7, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(6478), 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, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [57561] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10232), 1, + anon_sym_LBRACE, + STATE(2700), 1, + sym_compound_statement, + ACTIONS(2758), 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, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5509] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [57629] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + STATE(6163), 1, + sym__function_attributes_end, + STATE(6254), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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___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(3983), 34, + ACTIONS(7544), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [5580] = 3, + anon_sym_GT2, + [57723] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 27, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9751), 1, + anon_sym_DASH_GT, + STATE(6169), 1, + sym__function_attributes_end, + STATE(6263), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5488), 36, + ACTIONS(7627), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [5651] = 7, + anon_sym_GT2, + [57817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - sym_identifier, - STATE(2394), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6483), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6486), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5433), 23, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298633,24 +482750,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(5431), 26, + ACTIONS(9854), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298662,25 +482773,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [5730] = 8, + [57889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, + ACTIONS(6623), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, anon_sym_LBRACE, - STATE(1951), 1, - sym_attribute_specifier, - STATE(2457), 1, - sym_enumerator_list, - ACTIONS(6225), 10, + ACTIONS(10234), 1, + sym_auto, + STATE(3963), 1, + sym_decltype_auto, + ACTIONS(6798), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -298691,10 +482811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(6227), 48, + ACTIONS(6800), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -298706,10 +482825,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___extension__, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, @@ -298737,81 +482853,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [5811] = 3, + [57963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 27, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(10220), 1, + anon_sym_DASH_GT, + STATE(6167), 1, + sym__function_attributes_end, + STATE(6265), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [5882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2561), 20, + anon_sym_DOT, + ACTIONS(8089), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -298823,34 +482917,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(2571), 43, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + [58057] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + STATE(3601), 1, + sym_template_argument_list, + STATE(5101), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9961), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(7017), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7019), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -298864,22 +482988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [5953] = 3, + [58131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 28, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298894,8 +483015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -298908,10 +483027,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5864), 35, + ACTIONS(5253), 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, @@ -298922,12 +483040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298944,54 +483057,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6024] = 10, + [58197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 27, + ACTIONS(8551), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, sym_identifier, - ACTIONS(6491), 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8553), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298999,30 +483096,40 @@ 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [6109] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [58261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 27, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299036,31 +483143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_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(5480), 36, + anon_sym_DASH_GT, + ACTIONS(9858), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299072,179 +483169,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_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, - [6180] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [58333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(10238), 1, + anon_sym___attribute__, + ACTIONS(10241), 1, + anon_sym___attribute, + ACTIONS(10244), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + STATE(6054), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(5840), 35, + ACTIONS(8089), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [6251] = 3, + [58427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 27, + ACTIONS(8637), 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 36, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8639), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_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, - [6322] = 7, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [58491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - sym_identifier, - STATE(2394), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4343), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4345), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5421), 23, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299258,7 +483339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -299266,9 +483351,7 @@ 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(5419), 26, + ACTIONS(5253), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299278,6 +483361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -299294,40 +483380,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6401] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [58557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 28, + ACTIONS(8641), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(5824), 35, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8643), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299336,109 +483422,39 @@ 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_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6472] = 6, + anon_sym_COLON_RBRACK, + [58621] = 7, ACTIONS(3), 1, sym_comment, - STATE(2279), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6188), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5790), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10209), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10211), 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - 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_GT_EQ, - anon_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, - [6549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 28, - aux_sym_preproc_elif_token1, + STATE(1867), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299452,40 +483468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5828), 35, + anon_sym_DASH_GT, + ACTIONS(9862), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299497,86 +483494,90 @@ 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, - [6620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6499), 1, - anon_sym_LT, - STATE(2316), 1, - sym_template_argument_list, - ACTIONS(6495), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6497), 34, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [58693] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [6695] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [58767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10249), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299590,8 +483591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -299603,15 +483603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5832), 35, + sym_literal_suffix, + ACTIONS(10247), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299619,11 +483615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299640,11 +483634,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6766] = 3, + anon_sym_COLON_RBRACK, + [58831] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_argument_list, + STATE(5901), 1, + sym_initializer_list, + ACTIONS(6800), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [58905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(4497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299654,44 +483719,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(5836), 35, + ACTIONS(8514), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299699,25 +483746,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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6837] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58973] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, anon_sym___attribute__, - ACTIONS(6217), 1, + ACTIONS(7499), 1, anon_sym___attribute, - STATE(1903), 1, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + STATE(6170), 1, + sym__function_attributes_end, + STATE(6194), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, sym_attribute_specifier, - ACTIONS(6288), 10, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -299726,12 +483812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6290), 49, + ACTIONS(7544), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -299743,26 +483828,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___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -299774,43 +483840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [6913] = 3, + [59067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 28, + ACTIONS(8555), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(6504), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8557), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299819,199 +483880,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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6983] = 3, + anon_sym_COLON_RBRACK, + [59131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9633), 1, anon_sym___attribute__, + ACTIONS(9636), 1, 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(5204), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(9639), 1, anon_sym_DASH_GT, - [7053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 28, - aux_sym_preproc_elif_token1, + STATE(5718), 1, + sym_trailing_return_type, + STATE(6082), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(5204), 34, + ACTIONS(7544), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [7123] = 3, + [59225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 28, + ACTIONS(8579), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(5204), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8581), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300020,37 +484017,36 @@ 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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7193] = 3, + anon_sym_COLON_RBRACK, + [59289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10251), 1, + anon_sym_LBRACK_LBRACK, + STATE(4485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300064,38 +484060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(4161), 34, + ACTIONS(8700), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300108,83 +484087,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7263] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [59357] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10042), 1, + anon_sym_requires, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10261), 1, + anon_sym___asm, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(6993), 1, + sym__function_attributes_start, + STATE(7412), 1, + sym_ref_qualifier, + STATE(7924), 1, + sym_trailing_return_type, + STATE(8011), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10039), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10258), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7606), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [59475] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9742), 1, + anon_sym___attribute__, + ACTIONS(9745), 1, + anon_sym___attribute, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5666), 1, + sym_trailing_return_type, + STATE(6048), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(6508), 34, + ACTIONS(7627), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [7333] = 3, + [59569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(4485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300198,38 +484287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(6376), 34, + ACTIONS(8481), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300242,21 +484314,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7403] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [59637] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, anon_sym___attribute__, - ACTIONS(6217), 1, + ACTIONS(7499), 1, anon_sym___attribute, - STATE(1937), 1, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + STATE(6156), 1, + sym__function_attributes_end, + STATE(6209), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, sym_attribute_specifier, - ACTIONS(6317), 10, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -300265,12 +484376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6319), 49, + ACTIONS(7627), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -300282,13 +484392,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [59731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6949), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_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, @@ -300302,61 +484452,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [7479] = 5, + [59795] = 6, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 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, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, anon_sym_LT, - anon_sym_GT_GT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(6201), 7, + anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_DOT, - ACTIONS(6028), 44, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6208), 46, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -300370,27 +484518,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [7553] = 3, + [59865] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8164), 1, + anon_sym_DASH_GT, + ACTIONS(8177), 1, + anon_sym_requires, + STATE(4602), 1, + sym_trailing_return_type, + ACTIONS(8174), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5531), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300404,39 +484561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6514), 34, + ACTIONS(7544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300449,61 +484586,357 @@ 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, - [7623] = 3, + anon_sym_DASH_GT_STAR, + [59941] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + ACTIONS(9645), 1, + anon_sym_requires, + STATE(6181), 1, + sym__function_attributes_end, + STATE(6215), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9642), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [60035] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7026), 1, + sym__function_attributes_start, + STATE(7442), 1, + sym_ref_qualifier, + STATE(7934), 1, + sym_trailing_return_type, + STATE(8284), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7596), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [60153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 1, + anon_sym_LBRACE, + STATE(865), 1, + sym_compound_statement, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(6518), 34, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [60221] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8824), 1, + anon_sym_requires, + ACTIONS(9633), 1, + anon_sym___attribute__, + ACTIONS(9636), 1, + anon_sym___attribute, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(5711), 1, + sym_trailing_return_type, + STATE(6050), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7544), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - 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, + [60315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10268), 1, + anon_sym_LBRACK_LBRACK, + STATE(4497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 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_RBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8700), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300511,69 +484944,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7693] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60383] = 9, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 13, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(8164), 1, + anon_sym_DASH_GT, + STATE(4529), 1, + sym_trailing_return_type, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5531), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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___attribute, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(6048), 44, + ACTIONS(7544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -300584,16 +485028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [7767] = 3, + anon_sym_DASH_GT_STAR, + [60459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(4497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300603,43 +485047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(6522), 34, + ACTIONS(8727), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300647,26 +485074,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7837] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60527] = 5, ACTIONS(3), 1, sym_comment, - STATE(2422), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6524), 4, + ACTIONS(10271), 1, + anon_sym_LBRACE, + STATE(3337), 1, + sym_compound_statement, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6097), 13, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [60595] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(10273), 1, + anon_sym_COLON, + STATE(4444), 1, + sym__enum_base_clause, + STATE(4573), 1, + sym_enumerator_list, + STATE(4866), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7602), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7600), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [60671] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(10273), 1, + anon_sym_COLON, + STATE(4355), 1, + sym__enum_base_clause, + STATE(4592), 1, + sym_enumerator_list, + STATE(4746), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7653), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7651), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [60747] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9751), 1, + anon_sym_DASH_GT, + ACTIONS(9757), 1, + anon_sym_requires, + STATE(6161), 1, + sym__function_attributes_end, + STATE(6219), 1, + sym_trailing_return_type, + STATE(8995), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9754), 2, + anon_sym_final, + anon_sym_override, + STATE(6065), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -300677,10 +485339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6095), 44, + ACTIONS(7627), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -300692,23 +485353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -300720,15 +485364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [7911] = 3, + [60841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(4485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300742,30 +485387,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(4933), 41, + ACTIONS(8514), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300787,105 +485423,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [7981] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [60909] = 30, ACTIONS(3), 1, sym_comment, - STATE(2486), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6095), 38, - anon_sym_DOT_DOT_DOT, + ACTIONS(10261), 1, + anon_sym___asm, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(6919), 1, + sym__function_attributes_start, + STATE(7413), 1, + sym_ref_qualifier, + STATE(7934), 1, + sym_trailing_return_type, + STATE(8005), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10258), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7585), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8055] = 5, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [61027] = 18, ACTIONS(3), 1, sym_comment, - STATE(2439), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6528), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 13, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8977), 1, + anon_sym_requires, + ACTIONS(9742), 1, + anon_sym___attribute__, + ACTIONS(9745), 1, + anon_sym___attribute, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5719), 1, + sym_trailing_return_type, + STATE(6079), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6101), 44, + ACTIONS(7627), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -300896,24 +485577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -300925,16 +485592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + [61121] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8210), 1, anon_sym_DASH_GT, + ACTIONS(8216), 1, + anon_sym_requires, + STATE(4603), 1, + sym_trailing_return_type, + ACTIONS(8213), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [8129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6530), 28, - aux_sym_preproc_elif_token1, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5590), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300948,39 +485624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6532), 34, + ACTIONS(7627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300993,86 +485649,199 @@ 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, - [8199] = 3, + anon_sym_DASH_GT_STAR, + [61197] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(10200), 1, + anon_sym_DASH_GT, + STATE(6180), 1, + sym__function_attributes_end, + STATE(6213), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(4933), 41, + ACTIONS(8089), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, + [61291] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10009), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10042), 1, + anon_sym_requires, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(6912), 1, + sym__function_attributes_start, + STATE(7410), 1, + sym_ref_qualifier, + STATE(7924), 1, + sym_trailing_return_type, + STATE(8266), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10039), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8160), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7593), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [8269] = 5, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [61409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6534), 1, - anon_sym_LT, - STATE(2391), 1, - sym_template_argument_list, - ACTIONS(6530), 27, - aux_sym_preproc_elif_token1, + ACTIONS(8762), 1, + anon_sym_DASH_GT, + ACTIONS(8768), 1, + anon_sym_requires, + STATE(4604), 1, + sym_trailing_return_type, + ACTIONS(8765), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301083,40 +485852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6532), 33, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301129,21 +485880,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8343] = 5, + anon_sym_DASH_GT_STAR, + [61485] = 9, ACTIONS(3), 1, sym_comment, - STATE(2533), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6537), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 19, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(8762), 1, + anon_sym_DASH_GT, + STATE(4563), 1, + sym_trailing_return_type, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301157,13 +485922,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, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5860), 38, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301173,13 +485934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301191,95 +485946,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8417] = 3, + anon_sym_DASH_GT_STAR, + [61561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, + ACTIONS(10275), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, anon_sym___asm, anon_sym_DOT, - ACTIONS(4933), 41, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8585), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [8487] = 5, + anon_sym_COLON_RBRACK, + [61627] = 11, ACTIONS(3), 1, sym_comment, - STATE(2490), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(4121), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6539), 4, + STATE(4203), 1, + sym_template_argument_list, + STATE(4767), 1, + sym_decltype_auto, + ACTIONS(5274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6103), 19, + ACTIONS(5258), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(5251), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [61707] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, + anon_sym_DASH_GT, + ACTIONS(10282), 1, + anon_sym_requires, + STATE(4608), 1, + sym_trailing_return_type, + ACTIONS(10279), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5609), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301293,13 +486120,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, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6101), 38, + ACTIONS(8543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301309,13 +486132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301327,156 +486144,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8561] = 3, + anon_sym_DASH_GT_STAR, + [61783] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6162), 1, + sym__function_attributes_end, + STATE(6234), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9648), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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___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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(6543), 34, + ACTIONS(7544), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8631] = 3, + [61877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 26, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + ACTIONS(9766), 1, + anon_sym_requires, + STATE(6155), 1, + sym__function_attributes_end, + STATE(6235), 1, + sym_trailing_return_type, + STATE(8976), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9763), 2, + anon_sym_final, + anon_sym_override, + STATE(6071), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5480), 36, + ACTIONS(7627), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [8701] = 3, + [61971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + ACTIONS(6800), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [62045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(4497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301486,43 +486391,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(6547), 34, + ACTIONS(8481), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301530,86 +486418,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8771] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62113] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9733), 1, + anon_sym_requires, + ACTIONS(10238), 1, + anon_sym___attribute__, + ACTIONS(10241), 1, + anon_sym___attribute, + ACTIONS(10244), 1, + anon_sym_DASH_GT, + STATE(5721), 1, + sym_trailing_return_type, + STATE(6074), 1, + sym__function_attributes_end, + STATE(8992), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9730), 2, + anon_sym_final, + anon_sym_override, + STATE(4374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4622), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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_LBRACK, + anon_sym_DOT, + ACTIONS(8089), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [62207] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(6551), 34, + anon_sym_template, + anon_sym_operator, + [62279] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [8841] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [62349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 28, + ACTIONS(10249), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301624,8 +486659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -301638,10 +486671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6555), 34, + sym_literal_suffix, + ACTIONS(10247), 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, @@ -301652,11 +486685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301673,17 +486702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8911] = 5, + [62413] = 8, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 13, + ACTIONS(6698), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9769), 1, + sym_auto, + STATE(4315), 1, + sym_decltype_auto, + ACTIONS(6798), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -301694,10 +486726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(6052), 44, + ACTIONS(6800), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -301710,8 +486741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -301738,61 +486767,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [8985] = 3, + [62487] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6927), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + anon_sym_LBRACK, + ACTIONS(7319), 1, + anon_sym_STAR, + ACTIONS(7321), 1, + anon_sym_AMP_AMP, + ACTIONS(7323), 1, + anon_sym_AMP, + STATE(1888), 1, + sym_parameter_list, + STATE(5582), 1, + sym__function_declarator_seq, + STATE(5730), 1, + sym__abstract_declarator, + STATE(5581), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6559), 34, + anon_sym_DASH_GT, + ACTIONS(9072), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301805,134 +486828,294 @@ 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, - [9055] = 3, + anon_sym_DASH_GT_STAR, + [62569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10285), 1, + anon_sym_namespace, + ACTIONS(9926), 7, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 47, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(6563), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [62634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10287), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [62699] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10291), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9568), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [62818] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(10305), 1, anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9125] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_COLON, - STATE(2265), 1, - sym__enum_base_clause, - STATE(2287), 1, - sym_enumerator_list, - STATE(2371), 1, - sym_attribute_specifier, - ACTIONS(5676), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6565), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 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(6567), 29, + ACTIONS(10125), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301944,29 +487127,25 @@ 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, - [9207] = 9, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [62927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_COLON, - STATE(2246), 1, - sym__enum_base_clause, - STATE(2302), 1, - sym_enumerator_list, - STATE(2327), 1, - sym_attribute_specifier, - ACTIONS(5676), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6571), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5590), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301981,24 +487160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6573), 29, + anon_sym_DASH_GT, + ACTIONS(7627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302018,61 +487185,84 @@ 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, - [9289] = 3, + anon_sym_DASH_GT_STAR, + [62998] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9344), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(2763), 34, + ACTIONS(9342), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -302084,82 +487274,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [9359] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [63107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 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, + STATE(4901), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6577), 34, + ACTIONS(7135), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [9429] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [63174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 26, + ACTIONS(6384), 2, + anon_sym_final, + anon_sym_override, + STATE(4559), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302169,33 +487359,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, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(8776), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -302204,30 +487386,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [9499] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [63241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 28, - aux_sym_preproc_elif_token1, + STATE(4900), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7089), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7087), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [63308] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302241,38 +487489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6581), 34, + ACTIONS(9832), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -302285,22 +487514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9569] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [63379] = 7, ACTIONS(3), 1, sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 19, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9852), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302310,33 +487549,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6058), 38, + ACTIONS(9850), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -302344,7 +487574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -302359,11 +487588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9643] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [63450] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9856), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302373,43 +487613,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6587), 34, + ACTIONS(9854), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -302417,20 +487638,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, - [9713] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [63521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9840), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302444,38 +487681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6591), 34, + ACTIONS(9838), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -302488,16 +487706,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9783] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [63592] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9844), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302511,38 +487745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5168), 34, + ACTIONS(9842), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -302555,92 +487770,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [9853] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - ACTIONS(6597), 1, - anon_sym_LBRACE, - STATE(2714), 1, - sym_field_declaration_list, - STATE(2798), 1, - sym_attribute_specifier, - STATE(7262), 1, - sym_virtual_specifier, - STATE(7875), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 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(5674), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [9941] = 3, + [63663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9860), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302650,43 +487805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6601), 34, + ACTIONS(9858), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -302694,20 +487830,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, - [10011] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [63734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9848), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302721,38 +487873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6605), 34, + ACTIONS(9846), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -302765,72 +487898,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [10081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1932), 1, - sym_attribute_specifier, - ACTIONS(6313), 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(6315), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -302840,67 +487912,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [10157] = 6, + [63805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1914), 1, - sym_attribute_specifier, - ACTIONS(6346), 10, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9864), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_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(6348), 49, + ACTIONS(9862), 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___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -302909,68 +487974,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [10233] = 6, + [63876] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1941), 1, - sym_attribute_specifier, - ACTIONS(6334), 10, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9834), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_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(6336), 49, + ACTIONS(9832), 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___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -302979,12 +488038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [10309] = 3, + [63947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9840), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302994,43 +488061,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6609), 34, + ACTIONS(9838), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303038,74 +488086,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10379] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [64018] = 7, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 13, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9844), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6158), 44, + ACTIONS(9842), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -303116,10 +488168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [10453] = 3, + [64089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 26, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1874), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9848), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303129,34 +488189,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5488), 36, + ACTIONS(9846), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303164,29 +488214,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_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, - [10523] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [64160] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4816), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7189), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7187), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [64227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 21, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9852), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303200,30 +488319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6611), 41, + ACTIONS(9850), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -303245,70 +488353,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [10593] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [64298] = 7, ACTIONS(3), 1, sym_comment, - STATE(2419), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6615), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 13, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9856), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5860), 44, + ACTIONS(9854), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -303317,67 +488421,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [10667] = 5, + [64369] = 7, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 13, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9860), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6064), 44, + ACTIONS(9858), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -303386,19 +488485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [10741] = 5, + [64440] = 7, ACTIONS(3), 1, sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 19, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1872), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9864), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303412,28 +488511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6158), 38, + ACTIONS(9862), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -303457,11 +488547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10815] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [64511] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303475,39 +488578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6619), 34, + anon_sym_DASH_GT, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303520,61 +488604,193 @@ 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, - [10885] = 3, + anon_sym_DASH_GT_STAR, + [64582] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(6621), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10343), 1, + anon_sym_COMMA, + ACTIONS(10345), 1, + anon_sym_RPAREN, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10349), 1, anon_sym_DASH, + ACTIONS(10351), 1, anon_sym_PLUS, + ACTIONS(10353), 1, anon_sym_STAR, + ACTIONS(10355), 1, anon_sym_SLASH, + ACTIONS(10357), 1, anon_sym_PERCENT, + ACTIONS(10359), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10361), 1, + anon_sym_AMP_AMP, + ACTIONS(10363), 1, anon_sym_PIPE, + ACTIONS(10365), 1, anon_sym_CARET, + ACTIONS(10367), 1, anon_sym_AMP, + ACTIONS(10369), 1, + anon_sym_EQ_EQ, + ACTIONS(10371), 1, + anon_sym_BANG_EQ, + ACTIONS(10373), 1, anon_sym_GT, + ACTIONS(10375), 1, + anon_sym_GT_EQ, + ACTIONS(10377), 1, anon_sym_LT_EQ, + ACTIONS(10379), 1, anon_sym_LT, + ACTIONS(10381), 1, anon_sym_LT_LT, + ACTIONS(10383), 1, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10387), 1, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10389), 1, + anon_sym_QMARK, + ACTIONS(10391), 1, + anon_sym_STAR_EQ, + ACTIONS(10393), 1, + anon_sym_SLASH_EQ, + ACTIONS(10395), 1, + anon_sym_PERCENT_EQ, + ACTIONS(10397), 1, + anon_sym_PLUS_EQ, + ACTIONS(10399), 1, + anon_sym_DASH_EQ, + ACTIONS(10401), 1, + anon_sym_LT_LT_EQ, + ACTIONS(10403), 1, + anon_sym_GT_GT_EQ, + ACTIONS(10405), 1, + anon_sym_AMP_EQ, + ACTIONS(10407), 1, + anon_sym_CARET_EQ, + ACTIONS(10409), 1, + anon_sym_PIPE_EQ, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10415), 1, anon_sym_or, + ACTIONS(10417), 1, anon_sym_and, + ACTIONS(10419), 1, anon_sym_bitor, + ACTIONS(10421), 1, anon_sym_xor, + ACTIONS(10423), 1, anon_sym_bitand, + ACTIONS(10425), 1, anon_sym_not_eq, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, anon_sym_DOT, - sym_identifier, - ACTIONS(6623), 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_DASH_GT, + ACTIONS(10411), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [64743] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10176), 1, + anon_sym_EQ, + ACTIONS(10305), 1, anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10315), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303586,36 +488802,260 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [64852] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - [10955] = 5, + ACTIONS(10442), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7101), 1, + sym__function_attributes_start, + STATE(7478), 1, + sym_ref_qualifier, + STATE(8422), 1, + sym__function_attributes_end, + STATE(8423), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7620), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [64969] = 31, ACTIONS(3), 1, sym_comment, - STATE(2459), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10445), 1, + anon_sym_RPAREN, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6625), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9981), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6024), 13, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9926), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [65151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6790), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(6022), 44, + ACTIONS(6792), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303626,11 +489066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -303658,32 +489100,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [11029] = 3, + [65214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 28, + ACTIONS(10447), 1, + anon_sym_LBRACK_LBRACK, + STATE(4558), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -303692,7 +489131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(1936), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8700), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303701,37 +489143,36 @@ 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_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11099] = 3, + anon_sym_COLON_RBRACK, + [65281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10450), 2, + anon_sym_final, + anon_sym_override, + STATE(4559), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303741,43 +489182,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6629), 34, + ACTIONS(8757), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303785,116 +489209,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11169] = 3, + anon_sym_GT2, + anon_sym_requires, + [65348] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + ACTIONS(6798), 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_const, + anon_sym_DOT, + ACTIONS(6800), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [65421] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_argument_list, + STATE(5901), 1, + sym_initializer_list, + ACTIONS(6798), 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, - sym_identifier, - ACTIONS(6633), 34, + ACTIONS(6800), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11239] = 4, + [65494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5663), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5245), 1, + anon_sym_using, + ACTIONS(5247), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5661), 49, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(5249), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -303917,22 +489404,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [11311] = 3, + [65561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5609), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303946,15 +489445,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_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(4933), 41, + anon_sym_DASH_GT, + ACTIONS(8543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303964,13 +489458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -303982,25 +489470,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [11381] = 3, + anon_sym_DASH_GT_STAR, + [65632] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8189), 1, + anon_sym___attribute__, + ACTIONS(8191), 1, + anon_sym___attribute, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10453), 1, + anon_sym_COLON, + STATE(2829), 1, + sym__enum_base_clause, + STATE(2846), 1, + sym_enumerator_list, + STATE(3410), 1, + sym_attribute_specifier, + ACTIONS(7600), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304014,39 +489512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(5196), 34, + anon_sym_DASH_GT, + ACTIONS(7602), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304059,62 +489538,87 @@ 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, - [11451] = 3, + anon_sym_DASH_GT_STAR, + [65709] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + ACTIONS(10455), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5985), 34, - anon_sym_DOT_DOT_DOT, + ACTIONS(9438), 18, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -304125,83 +489629,134 @@ 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, - [11521] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [65822] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 26, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10343), 1, + anon_sym_COMMA, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10349), 1, anon_sym_DASH, + ACTIONS(10351), 1, anon_sym_PLUS, + ACTIONS(10353), 1, anon_sym_STAR, + ACTIONS(10355), 1, anon_sym_SLASH, + ACTIONS(10357), 1, anon_sym_PERCENT, + ACTIONS(10359), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10361), 1, + anon_sym_AMP_AMP, + ACTIONS(10363), 1, anon_sym_PIPE, + ACTIONS(10365), 1, anon_sym_CARET, + ACTIONS(10367), 1, anon_sym_AMP, + ACTIONS(10369), 1, + anon_sym_EQ_EQ, + ACTIONS(10371), 1, + anon_sym_BANG_EQ, + ACTIONS(10373), 1, anon_sym_GT, + ACTIONS(10375), 1, + anon_sym_GT_EQ, + ACTIONS(10377), 1, anon_sym_LT_EQ, + ACTIONS(10379), 1, anon_sym_LT, + ACTIONS(10381), 1, anon_sym_LT_LT, + ACTIONS(10383), 1, 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(5495), 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, + ACTIONS(10385), 1, anon_sym_LBRACK, + ACTIONS(10387), 1, + anon_sym_EQ, + ACTIONS(10389), 1, anon_sym_QMARK, + ACTIONS(10391), 1, anon_sym_STAR_EQ, + ACTIONS(10393), 1, anon_sym_SLASH_EQ, + ACTIONS(10395), 1, anon_sym_PERCENT_EQ, + ACTIONS(10397), 1, anon_sym_PLUS_EQ, + ACTIONS(10399), 1, anon_sym_DASH_EQ, + ACTIONS(10401), 1, anon_sym_LT_LT_EQ, + ACTIONS(10403), 1, anon_sym_GT_GT_EQ, + ACTIONS(10405), 1, anon_sym_AMP_EQ, + ACTIONS(10407), 1, anon_sym_CARET_EQ, + ACTIONS(10409), 1, anon_sym_PIPE_EQ, + ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(10415), 1, + anon_sym_or, + ACTIONS(10417), 1, + anon_sym_and, + ACTIONS(10419), 1, + anon_sym_bitor, + ACTIONS(10421), 1, + anon_sym_xor, + ACTIONS(10423), 1, + anon_sym_bitand, + ACTIONS(10425), 1, + anon_sym_not_eq, + ACTIONS(10431), 1, 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, + ACTIONS(10433), 1, anon_sym_DASH_GT_STAR, - [11591] = 3, + ACTIONS(10457), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10411), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [65983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6635), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5614), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304215,39 +489770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6637), 34, + anon_sym_DASH_GT, + ACTIONS(8561), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304260,21 +489796,304 @@ 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, - [11661] = 5, + anon_sym_DASH_GT_STAR, + [66054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10459), 1, + anon_sym_namespace, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [66119] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4775), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7063), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7061), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [66186] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4781), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7067), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7065), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [66253] = 31, ACTIONS(3), 1, sym_comment, - STATE(1622), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10461), 1, + anon_sym_RPAREN, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10027), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6066), 19, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [66372] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_requires, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5531), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304288,13 +490107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6064), 38, + anon_sym_DASH_GT, + ACTIONS(7544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304304,13 +490120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304322,27 +490132,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [11735] = 3, + anon_sym_DASH_GT_STAR, + [66443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + STATE(4748), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7059), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7057), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [66510] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -304351,39 +490239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6641), 34, + ACTIONS(9284), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304395,120 +490265,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_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, - [11805] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [66589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6623), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(10234), 1, + sym_auto, + STATE(3963), 1, + sym_decltype_auto, + ACTIONS(6798), 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___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(6645), 34, + ACTIONS(6800), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11875] = 3, + [66660] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(4933), 41, + ACTIONS(9284), 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304523,73 +490417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [11945] = 7, + anon_sym_COLON_RBRACK, + [66765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_or, - ACTIONS(6653), 1, - anon_sym_and, - ACTIONS(6199), 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___attribute, + ACTIONS(6445), 4, 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(6201), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(6447), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -304600,85 +490437,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, - [12023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1977), 1, - sym_attribute_specifier, - ACTIONS(6292), 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(6294), 49, + ACTIONS(5253), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [12099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5170), 28, + ACTIONS(5260), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304693,12 +490472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -304707,25 +490480,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5172), 34, + [66832] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10303), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304737,62 +490555,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [66933] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5174), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 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(5176), 34, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304804,62 +490631,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_COLON_RBRACK, + [67030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5231), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5229), 48, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_using, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [67093] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10331), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4169), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 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(4161), 34, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304871,58 +490767,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_COLON_RBRACK, + [67188] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12309] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 19, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6048), 38, + ACTIONS(9284), 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_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304937,65 +490843,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [67279] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6655), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 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(6657), 34, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305007,62 +490912,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [67368] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5178), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5180), 34, + ACTIONS(9284), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305074,21 +490983,40 @@ 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, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [67453] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6659), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -305097,39 +491025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6661), 34, + ACTIONS(9284), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305141,58 +491051,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_COLON_RBRACK, + [67534] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12593] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 19, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6052), 38, + ACTIONS(9284), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305211,34 +491128,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [67617] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 1, + anon_sym_const, + ACTIONS(6237), 1, + anon_sym_AMP, + ACTIONS(6230), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(6235), 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(6228), 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, - [12667] = 3, + ACTIONS(6233), 18, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + [67688] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10463), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9941), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 28, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + STATE(4558), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -305247,7 +491311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6665), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8727), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305256,72 +491323,281 @@ 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_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12737] = 5, + anon_sym_COLON_RBRACK, + [67874] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10465), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9671), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67993] = 5, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, + STATE(4591), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, + ACTIONS(10467), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6060), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6629), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6627), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym_DOT, - ACTIONS(6058), 44, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [68060] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4809), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7093), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7091), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [68127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7253), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -305335,27 +491611,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [68190] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4813), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7097), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7095), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [68257] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10184), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, anon_sym_or, + ACTIONS(10327), 1, anon_sym_and, + ACTIONS(10329), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10331), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [12811] = 3, + ACTIONS(10301), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [68366] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8177), 1, + anon_sym_requires, + ACTIONS(8174), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5531), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305369,39 +491788,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(5208), 34, + anon_sym_DASH_GT, + ACTIONS(7544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305414,81 +491814,184 @@ 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, - [12881] = 3, + anon_sym_DASH_GT_STAR, + [68437] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8219), 1, + anon_sym_LPAREN2, + STATE(5801), 1, + sym_argument_list, + STATE(7210), 1, + sym_initializer_list, + ACTIONS(6798), 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___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(3909), 34, + ACTIONS(6800), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12951] = 3, + [68510] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10470), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9789), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 28, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10472), 1, + anon_sym_LBRACK, + STATE(4903), 1, + sym_new_declarator, + STATE(5600), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305498,34 +492001,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 34, + anon_sym_DASH_GT, + ACTIONS(8843), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305533,30 +492027,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [13021] = 3, + anon_sym_DASH_GT_STAR, + [68702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(5255), 1, + sym_parameter_list, + STATE(4833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8931), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305570,39 +492070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6669), 34, + anon_sym_DASH_GT, + ACTIONS(8933), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305614,22 +492096,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68775] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - [13091] = 5, + ACTIONS(10478), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7227), 1, + sym__function_attributes_start, + STATE(7458), 1, + sym_ref_qualifier, + STATE(8452), 1, + sym__function_attributes_end, + STATE(8458), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7621), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [68892] = 7, ACTIONS(3), 1, sym_comment, - STATE(2464), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6671), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 19, + ACTIONS(8216), 1, + anon_sym_requires, + ACTIONS(8213), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5590), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305643,13 +492222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(6022), 38, + anon_sym_DASH_GT, + ACTIONS(7627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305659,13 +492235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305677,22 +492247,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13165] = 3, + anon_sym_DASH_GT_STAR, + [68963] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8768), 1, + anon_sym_requires, + ACTIONS(8765), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305706,39 +492286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6675), 34, + anon_sym_DASH_GT, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305751,15 +492312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13235] = 3, + anon_sym_DASH_GT_STAR, + [69034] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10282), 1, + anon_sym_requires, + ACTIONS(10279), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5609), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305773,39 +492350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6679), 34, + anon_sym_DASH_GT, + ACTIONS(8543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305818,88 +492376,313 @@ 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, - [13305] = 3, + anon_sym_DASH_GT_STAR, + [69105] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10480), 1, + anon_sym_RPAREN, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9887), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [69224] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 28, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, + anon_sym_bitor, + ACTIONS(10331), 1, + anon_sym_bitand, + ACTIONS(10455), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 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, + ACTIONS(10190), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 34, + anon_sym_COLON_RBRACK, + [69337] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10341), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(10343), 1, anon_sym_COMMA, + ACTIONS(10347), 1, anon_sym_LPAREN2, + ACTIONS(10349), 1, + anon_sym_DASH, + ACTIONS(10351), 1, + anon_sym_PLUS, + ACTIONS(10353), 1, + anon_sym_STAR, + ACTIONS(10355), 1, + anon_sym_SLASH, + ACTIONS(10357), 1, + anon_sym_PERCENT, + ACTIONS(10359), 1, anon_sym_PIPE_PIPE, + ACTIONS(10361), 1, anon_sym_AMP_AMP, + ACTIONS(10363), 1, + anon_sym_PIPE, + ACTIONS(10365), 1, + anon_sym_CARET, + ACTIONS(10367), 1, + anon_sym_AMP, + ACTIONS(10369), 1, anon_sym_EQ_EQ, + ACTIONS(10371), 1, anon_sym_BANG_EQ, + ACTIONS(10373), 1, + anon_sym_GT, + ACTIONS(10375), 1, + anon_sym_GT_EQ, + ACTIONS(10377), 1, + anon_sym_LT_EQ, + ACTIONS(10379), 1, + anon_sym_LT, + ACTIONS(10381), 1, + anon_sym_LT_LT, + ACTIONS(10383), 1, + anon_sym_GT_GT, + ACTIONS(10385), 1, anon_sym_LBRACK, + ACTIONS(10387), 1, + anon_sym_EQ, + ACTIONS(10389), 1, anon_sym_QMARK, + ACTIONS(10391), 1, anon_sym_STAR_EQ, + ACTIONS(10393), 1, anon_sym_SLASH_EQ, + ACTIONS(10395), 1, anon_sym_PERCENT_EQ, + ACTIONS(10397), 1, anon_sym_PLUS_EQ, + ACTIONS(10399), 1, anon_sym_DASH_EQ, + ACTIONS(10401), 1, anon_sym_LT_LT_EQ, + ACTIONS(10403), 1, + anon_sym_GT_GT_EQ, + ACTIONS(10405), 1, anon_sym_AMP_EQ, + ACTIONS(10407), 1, anon_sym_CARET_EQ, + ACTIONS(10409), 1, anon_sym_PIPE_EQ, + ACTIONS(10413), 1, anon_sym_LT_EQ_GT, + ACTIONS(10415), 1, + anon_sym_or, + ACTIONS(10417), 1, + anon_sym_and, + ACTIONS(10419), 1, + anon_sym_bitor, + ACTIONS(10421), 1, + anon_sym_xor, + ACTIONS(10423), 1, + anon_sym_bitand, + ACTIONS(10425), 1, + anon_sym_not_eq, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10482), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_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, - [13375] = 5, + ACTIONS(10411), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [69498] = 7, ACTIONS(3), 1, sym_comment, - STATE(2477), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 19, + ACTIONS(10487), 1, + anon_sym_requires, + ACTIONS(10484), 2, + anon_sym_final, + anon_sym_override, + STATE(4992), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5614), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305913,13 +492696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6068), 38, + anon_sym_DASH_GT, + ACTIONS(8561), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305929,13 +492709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305947,22 +492721,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13449] = 3, + anon_sym_DASH_GT_STAR, + [69569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(5255), 1, + sym_parameter_list, + STATE(4833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9127), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -305976,39 +492760,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5164), 34, + anon_sym_DASH_GT, + ACTIONS(9129), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -306020,51 +492786,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13519] = 5, + anon_sym_DASH_GT_STAR, + [69642] = 31, ACTIONS(3), 1, sym_comment, - STATE(2463), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10490), 1, + anon_sym_RPAREN, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6683), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10011), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6070), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6068), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -306076,47 +492885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [13593] = 11, + [69761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6685), 1, - anon_sym_LT, - ACTIONS(6689), 1, - sym_auto, - ACTIONS(6691), 1, - anon_sym_decltype, - STATE(2628), 1, - sym_template_argument_list, - STATE(2690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3309), 1, - sym_decltype_auto, - ACTIONS(6687), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 18, + ACTIONS(6349), 2, + anon_sym_final, + anon_sym_override, + STATE(4625), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306127,6 +492905,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, @@ -306134,19 +492913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4167), 33, + ACTIONS(8776), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -306168,32 +492945,37 @@ 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, - [13679] = 6, + anon_sym_DASH_GT, + anon_sym_requires, + [69828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1970), 1, - sym_attribute_specifier, - ACTIONS(6276), 10, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + anon_sym_LPAREN2, + STATE(5660), 1, + sym_argument_list, + STATE(7265), 1, + sym_initializer_list, + ACTIONS(6798), 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(6278), 49, + ACTIONS(6800), 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, @@ -306201,16 +492983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -306236,149 +493011,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [13755] = 5, + anon_sym_GT2, + [69901] = 5, ACTIONS(3), 1, sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4815), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6086), 38, + ACTIONS(7101), 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7099), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13829] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [69968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4704), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5184), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [13899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 13, + ACTIONS(7105), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306389,17 +493093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5684), 49, + anon_sym_LBRACK_COLON, + ACTIONS(7103), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -306431,135 +493132,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [13969] = 3, + [70035] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(4933), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(10305), 1, anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, + anon_sym_or, + ACTIONS(10327), 1, + anon_sym_and, + ACTIONS(10329), 1, anon_sym_bitor, + ACTIONS(10331), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [14039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6693), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6695), 34, + ACTIONS(10194), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -306571,22 +493215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [14109] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [70144] = 8, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6510), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 13, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + anon_sym_LPAREN2, + STATE(5662), 1, + sym_argument_list, + STATE(7145), 1, + sym_initializer_list, + ACTIONS(6798), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306597,13 +493243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(6086), 44, + ACTIONS(6800), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -306613,8 +493257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -306641,50 +493283,104 @@ 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, - [14183] = 5, + [70217] = 4, ACTIONS(3), 1, sym_comment, - STATE(2419), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6615), 4, + ACTIONS(10492), 1, + anon_sym_namespace, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5661), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym_DOT, - ACTIONS(5663), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [70282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10494), 1, + anon_sym_friend, + ACTIONS(2758), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_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, @@ -306698,31 +493394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14257] = 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [70347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6653), 1, - anon_sym_and, - ACTIONS(6247), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5229), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306736,37 +493423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, - anon_sym_bitor, + anon_sym_and, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6249), 33, + anon_sym_DASH_GT, + ACTIONS(5231), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -306778,53 +493452,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, - [14331] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [70410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, + STATE(4870), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(6217), 1, anon_sym___attribute, - STATE(1942), 1, - sym_attribute_specifier, - ACTIONS(6354), 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(6356), 49, + ACTIONS(7125), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7123), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -306838,73 +493524,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [70477] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10196), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, + anon_sym_PIPE, + ACTIONS(10313), 1, + anon_sym_AMP, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, anon_sym_or, + ACTIONS(10327), 1, anon_sym_and, + ACTIONS(10329), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10331), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10455), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [14407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5158), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(10311), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5160), 34, - anon_sym_DOT_DOT_DOT, + ACTIONS(10317), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 18, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -306915,35 +493609,32 @@ 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, - [14477] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [70590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 28, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + STATE(4558), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -306952,7 +493643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6699), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8481), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306961,42 +493655,36 @@ 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_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [14547] = 6, + anon_sym_COLON_RBRACK, + [70657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1950), 1, - sym_attribute_specifier, - ACTIONS(6272), 10, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + STATE(4558), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -307005,82 +493693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6274), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - [14623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1964), 1, - sym_attribute_specifier, - ACTIONS(6338), 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(6340), 49, + ACTIONS(8514), 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, @@ -307093,45 +493728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [14699] = 3, + anon_sym_COLON_RBRACK, + [70724] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6208), 1, + anon_sym_LBRACE, + ACTIONS(10496), 1, + anon_sym_LT, + STATE(3966), 1, + sym_template_argument_list, + ACTIONS(6210), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307142,31 +493759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(6703), 34, + ACTIONS(6203), 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, @@ -307174,10 +493777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307189,22 +493790,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, - [14769] = 5, + [70795] = 5, ACTIONS(3), 1, sym_comment, - STATE(2533), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6537), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 19, + ACTIONS(10499), 2, + anon_sym_final, + anon_sym_override, + STATE(4625), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307218,27 +493824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5663), 38, + ACTIONS(8757), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -307263,11 +493862,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [14843] = 3, + anon_sym_requires, + [70862] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(5255), 1, + sym_parameter_list, + STATE(4833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8923), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307281,39 +493891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6707), 34, + anon_sym_DASH_GT, + ACTIONS(8925), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307325,16 +493917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [14913] = 3, + anon_sym_DASH_GT_STAR, + [70935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(5255), 1, + sym_parameter_list, + STATE(4833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8947), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307348,39 +493956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6711), 34, + anon_sym_DASH_GT, + ACTIONS(8949), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307392,16 +493982,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 1, + anon_sym_const, + ACTIONS(6237), 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(6233), 18, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6230), 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, - [14983] = 3, + anon_sym_GT2, + [71075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10502), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71140] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10474), 1, + anon_sym_LBRACK, + STATE(5255), 1, + sym_parameter_list, + STATE(4833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9033), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307415,39 +494144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6715), 34, + anon_sym_DASH_GT, + ACTIONS(9035), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307459,53 +494170,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15053] = 6, + anon_sym_DASH_GT_STAR, + [71213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1902), 1, - sym_attribute_specifier, - ACTIONS(6284), 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(6286), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10504), 1, + anon_sym_namespace, + ACTIONS(9926), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 47, + anon_sym_AMP, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -307519,26 +494230,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [15129] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71278] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 28, - aux_sym_preproc_elif_token1, + ACTIONS(8189), 1, + anon_sym___attribute__, + ACTIONS(8191), 1, + anon_sym___attribute, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10453), 1, + anon_sym_COLON, + STATE(2826), 1, + sym__enum_base_clause, + STATE(2894), 1, + sym_enumerator_list, + STATE(3442), 1, + sym_attribute_specifier, + ACTIONS(7651), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307552,39 +494273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(5188), 34, + anon_sym_DASH_GT, + ACTIONS(7653), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307597,15 +494299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15199] = 3, + anon_sym_DASH_GT_STAR, + [71355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5233), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307619,39 +494326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(6719), 34, + anon_sym_DASH_GT, + ACTIONS(5235), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307663,16 +494355,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15269] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [71418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10506), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71483] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6208), 1, + anon_sym_LBRACE, + ACTIONS(8351), 1, + anon_sym_LT, + STATE(4731), 1, + sym_template_argument_list, + ACTIONS(6210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307683,42 +494452,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___attribute__, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6723), 34, + anon_sym_DASH_GT, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307730,16 +494483,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15339] = 3, + anon_sym_DASH_GT_STAR, + [71554] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10472), 1, + anon_sym_LBRACK, + STATE(4851), 1, + sym_new_declarator, + STATE(5552), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307753,39 +494522,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4933), 34, + anon_sym_DASH_GT, + ACTIONS(8868), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307797,16 +494548,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15409] = 3, + anon_sym_DASH_GT_STAR, + [71627] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(10277), 1, + anon_sym_LT, + ACTIONS(10510), 1, + anon_sym_EQ, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4203), 1, + sym_template_argument_list, + STATE(4767), 1, + sym_decltype_auto, + ACTIONS(10508), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5251), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [71710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10512), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71775] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10472), 1, + anon_sym_LBRACK, + STATE(4683), 1, + sym_new_declarator, + STATE(5539), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307820,39 +494718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4933), 34, + anon_sym_DASH_GT, + ACTIONS(8905), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -307864,399 +494744,759 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15479] = 3, + anon_sym_DASH_GT_STAR, + [71848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10514), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10516), 1, + anon_sym_friend, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [71978] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6627), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(10467), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7081), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7084), 37, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [72047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, + ACTIONS(6226), 1, + anon_sym_const, + ACTIONS(6237), 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___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4933), 34, + ACTIONS(6233), 18, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6230), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15549] = 3, + [72114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [72177] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 28, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10343), 1, + anon_sym_COMMA, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10349), 1, anon_sym_DASH, + ACTIONS(10351), 1, anon_sym_PLUS, + ACTIONS(10353), 1, anon_sym_STAR, + ACTIONS(10355), 1, anon_sym_SLASH, + ACTIONS(10357), 1, anon_sym_PERCENT, + ACTIONS(10359), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10361), 1, + anon_sym_AMP_AMP, + ACTIONS(10363), 1, anon_sym_PIPE, + ACTIONS(10365), 1, anon_sym_CARET, + ACTIONS(10367), 1, anon_sym_AMP, + ACTIONS(10369), 1, + anon_sym_EQ_EQ, + ACTIONS(10371), 1, + anon_sym_BANG_EQ, + ACTIONS(10373), 1, anon_sym_GT, + ACTIONS(10375), 1, anon_sym_GT_EQ, + ACTIONS(10377), 1, anon_sym_LT_EQ, + ACTIONS(10379), 1, anon_sym_LT, + ACTIONS(10381), 1, anon_sym_LT_LT, + ACTIONS(10383), 1, 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(5488), 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, + ACTIONS(10385), 1, anon_sym_LBRACK, + ACTIONS(10387), 1, + anon_sym_EQ, + ACTIONS(10389), 1, anon_sym_QMARK, + ACTIONS(10391), 1, anon_sym_STAR_EQ, + ACTIONS(10393), 1, anon_sym_SLASH_EQ, + ACTIONS(10395), 1, anon_sym_PERCENT_EQ, + ACTIONS(10397), 1, anon_sym_PLUS_EQ, + ACTIONS(10399), 1, anon_sym_DASH_EQ, + ACTIONS(10401), 1, anon_sym_LT_LT_EQ, + ACTIONS(10403), 1, + anon_sym_GT_GT_EQ, + ACTIONS(10405), 1, anon_sym_AMP_EQ, + ACTIONS(10407), 1, anon_sym_CARET_EQ, + ACTIONS(10409), 1, anon_sym_PIPE_EQ, + ACTIONS(10413), 1, anon_sym_LT_EQ_GT, + ACTIONS(10415), 1, + anon_sym_or, + ACTIONS(10417), 1, + anon_sym_and, + ACTIONS(10419), 1, + anon_sym_bitor, + ACTIONS(10421), 1, + anon_sym_xor, + ACTIONS(10423), 1, + anon_sym_bitand, + ACTIONS(10425), 1, + anon_sym_not_eq, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10518), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_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, - [15619] = 3, + ACTIONS(10411), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [72338] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(9979), 1, + anon_sym_LBRACK, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4767), 1, + sym_decltype_auto, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(5290), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(5251), 33, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [72421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10520), 1, + anon_sym_typedef, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(4933), 34, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [72486] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4743), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7055), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7053), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15689] = 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [72553] = 8, ACTIONS(3), 1, sym_comment, - STATE(1622), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6583), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 19, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8219), 1, + anon_sym_LPAREN2, + STATE(5707), 1, + sym_argument_list, + STATE(7118), 1, + sym_initializer_list, + ACTIONS(6798), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6028), 38, + ACTIONS(6800), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15763] = 3, + [72626] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10089), 1, + anon_sym_EQ, + ACTIONS(10305), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10307), 1, + anon_sym_AMP_AMP, + ACTIONS(10309), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10313), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10319), 1, + anon_sym_GT_EQ, + ACTIONS(10323), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10325), 1, anon_sym_or, + ACTIONS(10327), 1, anon_sym_and, + ACTIONS(10329), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10331), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(4933), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6549), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10311), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10321), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10315), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6551), 34, + ACTIONS(10091), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -308268,83 +495508,174 @@ 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, - [15903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5190), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_COLON_RBRACK, + [72735] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(5192), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10522), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9553), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [72854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10524), 1, + anon_sym_typedef, + ACTIONS(2758), 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, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15973] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [72919] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 28, - aux_sym_preproc_elif_token1, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10472), 1, + anon_sym_LBRACK, + STATE(4778), 1, + sym_new_declarator, + STATE(5467), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308358,39 +495689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5200), 34, + anon_sym_DASH_GT, + ACTIONS(8806), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -308402,83 +495715,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, - [16043] = 3, + anon_sym_DASH_GT_STAR, + [72992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 28, - aux_sym_preproc_elif_token1, + ACTIONS(10526), 1, + anon_sym_typedef, + ACTIONS(2758), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [73057] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6698), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_LBRACE, + ACTIONS(9769), 1, + sym_auto, + STATE(4315), 1, + sym_decltype_auto, + ACTIONS(6798), 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___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(4933), 34, + ACTIONS(6800), 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_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16113] = 3, + anon_sym_GT2, + [73128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5235), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5233), 48, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_using, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [73191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9101), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308492,129 +495928,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6611), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16183] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - STATE(1968), 1, - sym_attribute_specifier, - ACTIONS(6342), 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(6344), 49, + ACTIONS(9103), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - 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___extension__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [16259] = 3, + anon_sym_DASH_GT_STAR, + [73253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 28, + ACTIONS(8599), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308624,33 +495983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 34, + anon_sym_DASH_GT, + ACTIONS(8601), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -308659,30 +496011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [16329] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [73315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 28, - aux_sym_preproc_elif_token1, + ACTIONS(9003), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308696,39 +496046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6727), 34, + anon_sym_DASH_GT, + ACTIONS(9005), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -308740,16 +496074,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, - [16399] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [73377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 28, - aux_sym_preproc_elif_token1, + ACTIONS(9011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308763,39 +496105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(1940), 34, + anon_sym_DASH_GT, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -308807,16 +496133,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [16469] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [73439] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 28, - aux_sym_preproc_elif_token1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7480), 1, + sym_type_specifier, + STATE(8181), 1, + sym_type_descriptor, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4943), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [73555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308830,39 +496250,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6731), 34, + anon_sym_DASH_GT, + ACTIONS(9017), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -308874,44 +496278,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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [16539] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [73617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10535), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10531), 4, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5850), 48, + ACTIONS(10533), 5, anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(10538), 11, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_auto, + ACTIONS(10528), 31, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -308934,107 +496351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [16608] = 12, + [73685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6735), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8927), 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(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(10540), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [16695] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(2690), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6687), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 20, + STATE(5561), 1, + sym_parameter_list, + STATE(5151), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8923), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309048,26 +496382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6245), 34, + ACTIONS(8925), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309089,77 +496417,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, - [16772] = 3, + anon_sym_DASH_GT, + [73757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 14, + ACTIONS(9097), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5010), 47, + anon_sym_DASH_GT, + ACTIONS(9099), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [16841] = 3, + anon_sym_DASH_GT_STAR, + [73819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5840), 13, + ACTIONS(7221), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309170,10 +496491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5838), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7219), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309211,691 +496532,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [16910] = 3, + [73881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 14, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + STATE(5017), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9127), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5014), 47, + ACTIONS(9129), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [16979] = 3, + [73953] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 14, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + STATE(5017), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8947), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5018), 47, + ACTIONS(8949), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [17048] = 3, + [74025] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 14, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + STATE(5017), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9033), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5022), 47, + ACTIONS(9035), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [17117] = 3, + [74097] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 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(2692), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5661), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5717), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10542), 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(5715), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(10544), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 14, + STATE(4967), 1, + sym_new_declarator, + STATE(5619), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5629), 46, + ACTIONS(8843), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [17326] = 3, + [74169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 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(6330), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5719), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(8929), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 14, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + STATE(5017), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8931), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5629), 46, + ACTIONS(8933), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [17466] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 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(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [17551] = 3, + [74241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(8955), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5635), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_DASH_GT, + ACTIONS(8957), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [17620] = 3, + anon_sym_DASH_GT_STAR, + [74303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 13, + ACTIONS(7233), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309906,10 +496929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5723), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7231), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309947,93 +496970,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17689] = 3, + [74365] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 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(5715), 48, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10568), 1, + anon_sym_QMARK, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9436), 2, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17758] = 6, + anon_sym_EQ, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 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, + [74477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6743), 1, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + STATE(5017), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8923), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2628), 1, - sym_template_argument_list, - ACTIONS(4931), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8925), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310044,17 +497136,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___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4938), 38, + ACTIONS(8620), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310064,8 +497155,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, @@ -310088,53 +497177,50 @@ 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_requires, anon_sym_DASH_GT_STAR, - [17833] = 3, + [74611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(7031), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5272), 44, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5765), 48, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -310148,21 +497234,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [17902] = 3, + [74679] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10568), 1, + anon_sym_QMARK, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10188), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10190), 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, + [74791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9109), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9111), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [74853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5864), 13, + ACTIONS(7327), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310173,10 +497400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5862), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7325), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -310214,21 +497441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [17971] = 3, + [74915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 27, + ACTIONS(8992), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310238,32 +497458,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 34, + anon_sym_DASH_GT, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -310272,114 +497486,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_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, - [18040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 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, - [18109] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [74977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6746), 1, - anon_sym_LT, - ACTIONS(6750), 1, - sym_auto, - ACTIONS(6752), 1, - anon_sym_decltype, - STATE(2651), 1, - sym_template_argument_list, - STATE(2713), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3443), 1, - sym_decltype_auto, - ACTIONS(6748), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 19, + ACTIONS(7546), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310389,25 +497517,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(4167), 31, + anon_sym_DASH_GT, + ACTIONS(7544), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -310416,6 +497545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -310429,31 +497559,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [18194] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [75039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - ACTIONS(6758), 1, + ACTIONS(2592), 1, anon_sym_LBRACE, - STATE(2967), 1, - sym_field_declaration_list, - STATE(3275), 1, - sym_attribute_specifier, - STATE(7275), 1, - sym_virtual_specifier, - STATE(7940), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5503), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8951), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310473,11 +497593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5674), 32, + ACTIONS(8953), 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, @@ -310506,10 +497625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [18281] = 3, + [75107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 13, + ACTIONS(7331), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310520,10 +497639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5792), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7329), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -310561,29 +497680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18350] = 5, + [75169] = 3, ACTIONS(3), 1, sym_comment, - STATE(2336), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6433), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8541), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310598,31 +497702,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, - ACTIONS(5663), 30, + anon_sym_DASH_GT, + ACTIONS(8543), 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, @@ -310635,15 +497729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [18423] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [75231] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 27, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310653,33 +497764,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_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(5488), 34, + ACTIONS(9832), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -310687,99 +497791,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_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, - [18492] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5092), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(6760), 1, - sym_auto, - STATE(2766), 1, - sym_decltype_auto, - ACTIONS(5661), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5663), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [18569] = 3, + [75301] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 27, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310789,33 +497827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_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(5495), 34, + ACTIONS(9838), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -310823,44 +497854,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, - 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, - [18638] = 6, + [75371] = 7, ACTIONS(3), 1, sym_comment, - STATE(2363), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4343), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4345), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5788), 23, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310874,27 +497894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5790), 26, + ACTIONS(9842), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -310906,463 +497921,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [18713] = 3, + anon_sym_DASH_GT, + [75441] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5860), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 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(5858), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 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(5854), 48, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10192), 2, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5771), 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(5769), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [18920] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6245), 12, + ACTIONS(10194), 18, anon_sym_DOT_DOT_DOT, 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(6243), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [18999] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6771), 1, - anon_sym_virtual, - ACTIONS(6780), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6783), 1, - anon_sym___declspec, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(6777), 2, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2579), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6774), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6766), 11, - 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, + [75549] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6764), 13, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6768), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [19086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5836), 13, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9846), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5834), 48, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(5427), 1, + sym_template_argument_list, + ACTIONS(6746), 7, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5713), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(6751), 44, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5711), 48, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -311376,523 +498130,648 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [19224] = 3, + [75687] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 14, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4998), 47, + ACTIONS(9850), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19293] = 3, + [75757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 14, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5002), 47, + ACTIONS(9854), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9858), 31, + 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___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19362] = 6, + [75897] = 7, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6358), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5109), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - ACTIONS(5215), 19, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(9836), 1, + anon_sym_LBRACK, + STATE(1871), 1, + sym_parameter_list, + STATE(3573), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5212), 20, + ACTIONS(9862), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75967] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10337), 1, anon_sym_LPAREN2, + ACTIONS(10580), 1, + anon_sym_LBRACK, + STATE(5557), 1, + sym_parameter_list, + STATE(5016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8923), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8925), 28, + 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [19437] = 3, + [76039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 13, + ACTIONS(9029), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9031), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5814), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [19506] = 3, + anon_sym_DASH_GT_STAR, + [76101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10584), 1, + anon_sym_LBRACK, + STATE(5088), 1, + sym_new_declarator, + STATE(5668), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8843), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5818), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19575] = 3, + [76173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4814), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10586), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4810), 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(4808), 31, 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(5878), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19644] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [76239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 14, + ACTIONS(5233), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5006), 47, + ACTIONS(5235), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, - [19713] = 3, + [76301] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5747), 48, - anon_sym_AMP, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11410), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -311905,89 +498784,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19782] = 3, + [76417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 14, + ACTIONS(8559), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5031), 47, + anon_sym_DASH_GT, + ACTIONS(8561), 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_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [19851] = 3, + anon_sym_DASH_GT_STAR, + [76479] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(6607), 1, + sym_type_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(8466), 1, + sym_type_descriptor, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5007), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [76595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 13, + ACTIONS(7357), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311998,10 +498943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5866), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7355), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312039,35 +498984,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19920] = 3, + [76657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9977), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5882), 48, + anon_sym_LBRACK_COLON, + ACTIONS(9975), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312076,12 +499008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -312105,21 +499035,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [19989] = 3, + [76719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5896), 13, + ACTIONS(7193), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312130,10 +499061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5894), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7191), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312171,21 +499102,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20058] = 3, + [76781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6272), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [76843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 13, + ACTIONS(7361), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312196,10 +499179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5886), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312237,35 +499220,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20127] = 3, + [76905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 13, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4762), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_requires, + ACTIONS(8776), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [76971] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2608), 1, anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(10584), 1, + anon_sym_LBRACK, + STATE(4928), 1, + sym_new_declarator, + STATE(5710), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8868), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5780), 48, + [77043] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10568), 1, + anon_sym_QMARK, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10196), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 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, + [77155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9926), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(9924), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312274,12 +499453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -312303,58 +499480,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20196] = 3, + [77217] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5892), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5890), 48, - anon_sym_AMP, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8072), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -312367,23 +499578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20265] = 3, + [77333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5927), 13, + ACTIONS(6800), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312394,10 +499592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5925), 48, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -312435,125 +499633,777 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20334] = 3, + [77395] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5848), 13, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10580), 1, + anon_sym_LBRACK, + STATE(5557), 1, + sym_parameter_list, + STATE(5016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9033), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9035), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [77467] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [77571] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 4, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9284), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + 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, + [77671] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9284), 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, + [77767] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6125), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(10540), 1, + anon_sym_LBRACK, + STATE(5561), 1, + sym_parameter_list, + STATE(5151), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9033), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5846), 48, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9035), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [77839] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10558), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 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, + [77933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9037), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9039), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [77995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9007), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9009), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [78057] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10580), 1, + anon_sym_LBRACK, + STATE(5557), 1, + sym_parameter_list, + STATE(5016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9127), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9129), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [78129] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [78219] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10608), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7337), 1, + sym__function_attributes_start, + STATE(7523), 1, + sym_ref_qualifier, + STATE(8306), 1, + sym_trailing_return_type, + STATE(8534), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10439), 2, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5824), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7650), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 5, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5822), 48, - anon_sym_AMP, + anon_sym_try, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -312565,126 +500415,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20472] = 3, + [78335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 13, + ACTIONS(8651), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(8653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5826), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [20541] = 3, + anon_sym_DASH_GT_STAR, + [78397] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 13, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(10584), 1, + anon_sym_LBRACK, + STATE(4981), 1, + sym_new_declarator, + STATE(5746), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8806), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [78469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10617), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10615), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10613), 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(10611), 31, + anon_sym_COMMA, + anon_sym_TILDE, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [78535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6414), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5830), 48, + STATE(4776), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [78601] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10619), 1, + sym_identifier, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(10625), 1, + sym_primitive_type, + ACTIONS(10627), 1, + anon_sym_enum, + ACTIONS(10629), 1, + anon_sym_class, + ACTIONS(10631), 1, + anon_sym_struct, + ACTIONS(10633), 1, + anon_sym_union, + ACTIONS(10635), 1, + anon_sym_typename, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6310), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6603), 1, + sym_splice_specifier, + STATE(6703), 1, + sym_type_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7218), 1, + sym_template_type, + STATE(7294), 1, + sym_qualified_type_identifier, + STATE(7496), 1, + sym_decltype_auto, + STATE(8466), 1, + sym_type_descriptor, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5106), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7484), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7497), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -312697,89 +500746,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20610] = 3, + [78717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 13, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6228), 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(5842), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20679] = 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, + [78781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(4203), 1, + sym_template_argument_list, + ACTIONS(6208), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312787,27 +500823,21 @@ 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(5711), 48, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -312831,95 +500861,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20748] = 28, + [78849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5695), 1, + ACTIONS(10584), 1, + anon_sym_LBRACK, + STATE(5045), 1, + sym_new_declarator, + STATE(5780), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(5697), 1, - anon_sym_AMP_AMP, - ACTIONS(5699), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5703), 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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8905), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [78921] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - STATE(3081), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6561), 1, - sym__declarator, - STATE(6780), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(10642), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5709), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(5707), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -312933,84 +501018,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [20867] = 28, + [79037] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(5695), 1, - anon_sym_STAR, - ACTIONS(5697), 1, - anon_sym_AMP_AMP, - ACTIONS(5699), 1, - anon_sym_AMP, - ACTIONS(5703), 1, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - STATE(3081), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6534), 1, - sym__declarator, - STATE(6746), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(10676), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6791), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(6789), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -313024,79 +501104,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [20986] = 3, + [79153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10544), 1, + anon_sym_LBRACK, + STATE(5095), 1, + sym_new_declarator, + STATE(5725), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5898), 48, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21055] = 4, + anon_sym_GT, + anon_sym_LT_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(8905), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [79225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 22, + ACTIONS(6254), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313110,19 +501185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(5026), 37, + ACTIONS(6256), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -313130,8 +501201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -313153,155 +501225,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21126] = 12, + [79287] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6797), 1, - anon_sym_virtual, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2616), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6795), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10647), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10645), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10643), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6793), 13, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [21213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 13, - anon_sym_DOT_DOT_DOT, + 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(10641), 31, 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(5810), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21282] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [79353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 13, + ACTIONS(7237), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313312,10 +501302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5902), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313353,58 +501343,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21351] = 3, + [79415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 13, + ACTIONS(9078), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9080), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [79477] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5870), 48, - anon_sym_AMP, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2866), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5214), 1, + sym_type_descriptor, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5127), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -313417,23 +501492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21420] = 3, + [79593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 13, + ACTIONS(7261), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313444,10 +501506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5906), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7259), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313485,21 +501547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21489] = 3, + [79655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(7265), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313510,10 +501565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5711), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7263), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313551,96 +501606,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, + [79717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9082), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9084), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [21558] = 12, + anon_sym_DASH_GT_STAR, + [79779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6414), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6803), 1, - anon_sym_virtual, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2579), 7, - sym__declaration_modifiers, - sym_attribute_specifier, + STATE(4776), 2, sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6801), 11, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8514), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6799), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [21645] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [79845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 13, + ACTIONS(7269), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313651,10 +501744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5921), 48, + anon_sym_LBRACK_COLON, + ACTIONS(7267), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313692,105 +501785,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [21714] = 12, + [79907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6365), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6803), 1, - anon_sym_virtual, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2579), 7, - sym__declaration_modifiers, - sym_attribute_specifier, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10580), 1, + anon_sym_LBRACK, + STATE(5557), 1, + sym_parameter_list, + STATE(5016), 2, sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(6807), 11, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8947), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8949), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6805), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [21801] = 6, + [79979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, - sym_primitive_type, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6015), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5212), 13, + ACTIONS(7273), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313801,10 +501867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5215), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7271), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313846,28 +501912,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [21875] = 9, + [80041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(6809), 1, - anon_sym_LPAREN2, - STATE(2535), 1, - sym_argument_list, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3929), 1, - sym_initializer_list, - ACTIONS(6812), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 10, + ACTIONS(10661), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10659), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10657), 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(10655), 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, + [80107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7277), 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, @@ -313875,7 +501988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(5661), 41, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7275), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -313917,298 +502032,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [21955] = 6, + [80169] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, - anon_sym_decltype, - ACTIONS(6760), 1, - sym_auto, - STATE(2766), 1, - sym_decltype_auto, - ACTIONS(5661), 13, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10562), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(9282), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5663), 44, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 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___extension__, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [22029] = 6, + [80257] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6814), 1, - anon_sym_LT, - STATE(2720), 1, - sym_template_argument_list, - ACTIONS(4187), 27, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(9236), 1, anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5971), 30, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [22103] = 7, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [80341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6816), 1, - sym_identifier, - STATE(2622), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3641), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3645), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5421), 17, - aux_sym_preproc_elif_token1, + ACTIONS(4806), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10663), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4776), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5419), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(4774), 31, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_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, - [22179] = 7, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [80407] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6818), 1, + ACTIONS(4772), 1, sym_identifier, - STATE(2622), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6821), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6824), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5433), 17, - aux_sym_preproc_elif_token1, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6166), 1, + sym_type_specifier, + STATE(8181), 1, + sym_type_descriptor, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5134), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5891), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [80523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8633), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_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(5431), 29, + anon_sym_DASH_GT, + ACTIONS(8635), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [22255] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [80585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5676), 1, - anon_sym___attribute, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(6827), 1, - anon_sym___attribute__, - ACTIONS(6829), 1, - anon_sym_COLON, - STATE(2265), 1, - sym__enum_base_clause, - STATE(2287), 1, - sym_enumerator_list, - STATE(2371), 1, - sym_attribute_specifier, - ACTIONS(6565), 18, + ACTIONS(8595), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314227,7 +502402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6567), 35, + anon_sym_DASH_GT, + ACTIONS(8597), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314237,10 +502413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314262,82 +502435,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [22337] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [80647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - sym_identifier, - STATE(2621), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3641), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3645), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5455), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10667), 1, + anon_sym_AMP_AMP, + ACTIONS(10669), 1, + anon_sym_or, + ACTIONS(10671), 1, + anon_sym_and, + ACTIONS(8959), 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_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_literal_suffix, - ACTIONS(5453), 29, + anon_sym_DASH_GT, + ACTIONS(8961), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [22413] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [80717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 21, + ACTIONS(5233), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314347,31 +502515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_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(5629), 38, + ACTIONS(5235), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314379,7 +502543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -314393,17 +502556,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, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [22483] = 4, + anon_sym_GT2, + anon_sym_requires, + [80779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 21, + ACTIONS(9093), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314417,15 +502578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5629), 38, + ACTIONS(9095), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314435,8 +502594,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, @@ -314459,15 +502616,14 @@ 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_requires, anon_sym_DASH_GT_STAR, - [22553] = 3, + [80841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 21, + ACTIONS(8655), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314481,15 +502637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5635), 39, + ACTIONS(8657), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314499,9 +502653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -314524,15 +502675,14 @@ 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_requires, anon_sym_DASH_GT_STAR, - [22621] = 3, + [80903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 21, + ACTIONS(2803), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314546,15 +502696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5031), 39, + ACTIONS(2801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314564,9 +502712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -314589,29 +502734,32 @@ 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_requires, anon_sym_DASH_GT_STAR, - [22689] = 3, + [80965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 24, + ACTIONS(10673), 2, + anon_sym_final, + anon_sym_override, + STATE(4762), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 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_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -314619,50 +502767,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 36, + anon_sym_requires, + ACTIONS(8757), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [22757] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [81031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 24, + ACTIONS(6414), 1, + anon_sym_LBRACK_LBRACK, + STATE(4776), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314676,18 +502821,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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(8727), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314697,7 +502835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314710,70 +502847,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [22825] = 10, + [81097] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5676), 1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10089), 2, anon_sym___attribute, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(6827), 1, - anon_sym___attribute__, - ACTIONS(6829), 1, - anon_sym_COLON, - STATE(2246), 1, - sym__enum_base_clause, - STATE(2302), 1, - sym_enumerator_list, - STATE(2327), 1, - sym_attribute_specifier, - ACTIONS(6571), 18, + anon_sym_EQ, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6573), 35, + ACTIONS(10091), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314788,53 +502942,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [81205] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3197), 1, + anon_sym_enum, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, + sym_identifier, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(10682), 1, + anon_sym_typename, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2189), 1, + sym_type_specifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4722), 1, + sym_type_descriptor, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5140), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [81321] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, anon_sym_bitor, + ACTIONS(10578), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5486), 24, + ACTIONS(10123), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5488), 36, + ACTIONS(10125), 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, + [81429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7245), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [81491] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, + anon_sym_or, + ACTIONS(10574), 1, + anon_sym_and, + ACTIONS(10576), 1, + anon_sym_bitor, + ACTIONS(10578), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9344), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10560), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(10562), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 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, @@ -314846,31 +503248,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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [22975] = 6, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81599] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(6833), 1, - anon_sym_LT, - STATE(2651), 1, - sym_template_argument_list, - ACTIONS(4931), 21, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2002), 1, + sym_type_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3523), 1, + sym_type_descriptor, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5143), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [81715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7283), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [81777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6258), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314880,19 +503409,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___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4938), 36, + ACTIONS(6260), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314900,9 +503427,12 @@ 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_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314910,6 +503440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -314924,15 +503455,10 @@ 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, - [23049] = 3, + [81839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 24, + ACTIONS(6262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314946,28 +503472,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 36, + ACTIONS(6264), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -314979,49 +503503,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [23117] = 3, + anon_sym_DASH_GT, + [81901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 14, + ACTIONS(7225), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_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), 46, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -315045,48 +503569,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23185] = 3, + [81963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 14, + ACTIONS(7289), 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_GT2, - ACTIONS(4996), 46, + anon_sym_LBRACK_COLON, + ACTIONS(7287), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -315110,48 +503628,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23253] = 3, + [82025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 14, + ACTIONS(7293), 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_GT2, - ACTIONS(5000), 46, + anon_sym_LBRACK_COLON, + ACTIONS(7291), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -315175,57 +503687,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23321] = 3, + [82087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 14, + ACTIONS(10692), 1, + anon_sym_LBRACK_LBRACK, + STATE(4776), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8700), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82153] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5004), 46, - anon_sym_AMP, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7032), 1, + sym_type_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(8466), 1, + sym_type_descriptor, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5145), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -315238,45 +503838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23389] = 12, + [82269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - ACTIONS(6840), 1, + ACTIONS(2592), 1, anon_sym_LBRACE, - STATE(3066), 1, - sym_field_declaration_list, - STATE(3469), 1, - sym_attribute_specifier, - STATE(7154), 1, - sym_virtual_specifier, - STATE(7925), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 20, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5589), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315286,25 +503858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5674), 30, + anon_sym_DASH_GT, + ACTIONS(9119), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -315313,6 +503885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -315326,110 +503899,167 @@ 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, - [23475] = 6, + anon_sym_DASH_GT_STAR, + [82337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6814), 1, - anon_sym_LT, - STATE(2720), 1, - sym_template_argument_list, - ACTIONS(4938), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(8606), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8608), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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(4931), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [23549] = 3, + anon_sym_DASH_GT_STAR, + [82399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 13, + ACTIONS(8610), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5629), 47, + anon_sym_DASH_GT, + ACTIONS(8612), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7301), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7299), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -315443,39 +504073,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [82523] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6632), 1, + sym_type_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(8466), 1, + sym_type_descriptor, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5147), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [82639] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4004), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3359), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8739), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [23617] = 7, + anon_sym_COLON_RBRACK, + [82707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(2713), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6748), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 21, + ACTIONS(8622), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315485,28 +504238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6245), 32, + anon_sym_DASH_GT, + ACTIONS(8624), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -315515,6 +504266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -315528,45 +504280,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [23693] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82769] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 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, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5012), 46, - anon_sym_AMP, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(6678), 1, + sym_type_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(8466), 1, + sym_type_descriptor, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -315579,50 +504370,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23761] = 3, + [82885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 14, + ACTIONS(7289), 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_GT2, - ACTIONS(5016), 46, + anon_sym_LBRACK_COLON, + ACTIONS(7287), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -315646,57 +504425,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23829] = 3, + [82947] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 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, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5020), 46, - anon_sym_AMP, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6087), 1, + sym_type_specifier, + STATE(8181), 1, + sym_type_descriptor, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5891), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -315709,33 +504515,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + [83063] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2855), 1, sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3544), 1, + anon_sym_enum, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [23897] = 5, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(10707), 1, + anon_sym_typename, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3644), 1, + sym_type_specifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6529), 1, + sym_type_descriptor, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5158), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83179] = 30, ACTIONS(3), 1, sym_comment, - STATE(2695), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10619), 1, + sym_identifier, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(10625), 1, + sym_primitive_type, + ACTIONS(10627), 1, + anon_sym_enum, + ACTIONS(10629), 1, + anon_sym_class, + ACTIONS(10631), 1, + anon_sym_struct, + ACTIONS(10633), 1, + anon_sym_union, + ACTIONS(10635), 1, + anon_sym_typename, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6310), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6812), 4, + STATE(6417), 1, + sym_type_specifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7218), 1, + sym_template_type, + STATE(7294), 1, + sym_qualified_type_identifier, + STATE(7496), 1, + sym_decltype_auto, + STATE(8466), 1, + sym_type_descriptor, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4925), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7484), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5860), 13, + STATE(7497), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6800), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315744,12 +504701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5858), 41, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -315791,54 +504747,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [23968] = 5, + [83359] = 30, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3455), 1, + anon_sym_enum, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(10715), 1, + anon_sym_typename, + STATE(2240), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, + STATE(2287), 1, + sym_type_specifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, + sym_template_type, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(5482), 1, + sym_type_descriptor, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3262), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4927), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3451), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6058), 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(6060), 41, - anon_sym_AMP, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -315851,121 +504833,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + [83475] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_enum, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_operator, - [24039] = 6, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10723), 1, + anon_sym_typename, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3645), 1, + sym_type_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(6579), 1, + sym_type_descriptor, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4929), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83591] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3243), 1, + anon_sym_enum, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, + sym_identifier, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(6685), 1, - anon_sym_LT, - STATE(2628), 1, - sym_template_argument_list, - ACTIONS(5971), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4187), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [24112] = 6, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(10731), 1, + anon_sym_typename, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2224), 1, + sym_type_specifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4964), 1, + sym_type_descriptor, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4932), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83707] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3512), 1, + anon_sym_enum, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - STATE(1654), 1, - sym_string_literal, - ACTIONS(6848), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10739), 1, + anon_sym_typename, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2230), 1, + sym_type_specifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(5098), 1, + sym_type_descriptor, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4933), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3508), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -315978,95 +505091,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [83823] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3389), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5214), 1, + sym_type_descriptor, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4935), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83939] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3341), 1, anon_sym_enum, + ACTIONS(3343), 1, anon_sym_class, + ACTIONS(3345), 1, anon_sym_struct, + ACTIONS(3347), 1, anon_sym_union, - sym_identifier, + ACTIONS(3361), 1, sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - anon_sym_explicit, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(10745), 1, anon_sym_typename, - anon_sym_operator, - [24185] = 28, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2952), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(5214), 1, + sym_type_descriptor, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4936), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [84055] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, sym_identifier, - ACTIONS(5703), 1, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5979), 1, - anon_sym_STAR, - ACTIONS(5981), 1, - anon_sym_AMP_AMP, - ACTIONS(5983), 1, - anon_sym_AMP, - STATE(3247), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2146), 1, + sym_type_specifier, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(3523), 1, + sym_type_descriptor, + STATE(8593), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6534), 1, - sym__declarator, - STATE(6866), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6791), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4937), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -316080,81 +505349,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [24302] = 3, + [84171] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5031), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [24369] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2667), 1, + ACTIONS(3273), 1, + anon_sym_enum, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(10749), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1988), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6852), 4, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2016), 1, + sym_type_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3523), 1, + sym_type_descriptor, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4938), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3269), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6097), 20, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [84287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10667), 1, + anon_sym_AMP_AMP, + ACTIONS(10671), 1, + anon_sym_and, + ACTIONS(8939), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316168,25 +505456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6095), 34, + ACTIONS(8941), 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, @@ -316209,18 +505492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [24440] = 5, + [84353] = 3, ACTIONS(3), 1, sym_comment, - STATE(2668), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6854), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 20, + ACTIONS(8614), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316234,14 +505513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6101), 34, + ACTIONS(8616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316251,8 +505529,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, @@ -316275,11 +505551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [24511] = 3, + [84415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 23, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6208), 1, + anon_sym_LBRACE, + ACTIONS(8492), 1, + anon_sym_LT, + STATE(5009), 1, + sym_template_argument_list, + ACTIONS(6210), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316290,20 +505577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5495), 36, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316325,69 +505607,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [24578] = 3, + [84485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 18, + ACTIONS(6746), 1, + anon_sym_const, + ACTIONS(9187), 1, + anon_sym_LT, + STATE(4211), 1, + sym_template_argument_list, + ACTIONS(6755), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5031), 41, + ACTIONS(6751), 15, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6748), 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_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, 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, @@ -316398,60 +505679,82 @@ 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_requires, - anon_sym_DASH_GT_STAR, - [24645] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [84555] = 30, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6856), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10477), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5111), 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(5109), 41, - anon_sym_AMP, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -316464,54 +505767,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [24716] = 6, + [84671] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - STATE(1659), 1, - sym_string_literal, - ACTIONS(6848), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10821), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -316524,67 +505853,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + [84787] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, anon_sym_enum, + ACTIONS(1888), 1, anon_sym_class, + ACTIONS(1890), 1, anon_sym_struct, + ACTIONS(1892), 1, anon_sym_union, - sym_identifier, + ACTIONS(1918), 1, sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_explicit, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, anon_sym_typename, - anon_sym_operator, - [24789] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2656), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11353), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6052), 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(6054), 41, - anon_sym_AMP, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -316597,88 +505939,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [24860] = 28, + [84903] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5505), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5997), 1, - anon_sym_STAR, - ACTIONS(5999), 1, - anon_sym_AMP_AMP, - ACTIONS(6001), 1, - anon_sym_AMP, - ACTIONS(6003), 1, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - STATE(3247), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6685), 1, - sym__declarator, - STATE(6919), 1, - sym__abstract_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(11442), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5709), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -316692,42 +506025,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [24977] = 4, + [85019] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(5668), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5670), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10880), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -316739,107 +506111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [25046] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6861), 1, - anon_sym_LT, - ACTIONS(6865), 1, - sym_auto, - ACTIONS(6867), 1, - anon_sym_decltype, - STATE(2655), 1, - sym_template_argument_list, - STATE(2862), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3798), 1, - sym_decltype_auto, - ACTIONS(6863), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_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_DOT, - anon_sym_DASH_GT, - ACTIONS(4167), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25129] = 5, + [85135] = 3, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 13, + ACTIONS(7335), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316850,10 +506125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6066), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7333), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316895,17 +506170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [25200] = 5, + [85197] = 3, ACTIONS(3), 1, sym_comment, - STATE(2674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6869), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 13, + ACTIONS(7339), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316916,10 +506184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6024), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7337), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316961,27 +506229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [25271] = 6, + [85259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_template, - STATE(1657), 1, - sym_string_literal, - ACTIONS(6848), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6846), 6, + ACTIONS(7343), 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(6844), 46, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7341), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316990,10 +506255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -317017,28 +506284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, + anon_sym_template, anon_sym_operator, - [25344] = 5, + [85321] = 3, ACTIONS(3), 1, sym_comment, - STATE(2662), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6873), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6068), 13, + ACTIONS(7305), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317049,10 +506302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6070), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7303), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -317094,29 +506347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [25415] = 11, + [85383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 8, + ACTIONS(7109), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -317124,8 +506359,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, - ACTIONS(4159), 40, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7107), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -317164,349 +506403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + anon_sym_decltype, anon_sym_template, anon_sym_operator, - [25498] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6048), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25569] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6052), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25640] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2684), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6877), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6022), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25711] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2685), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6879), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6068), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25782] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6086), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25853] = 5, + [85445] = 3, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6086), 13, + ACTIONS(7347), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317517,10 +506420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6088), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7345), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -317562,46 +506465,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [25924] = 8, + [85507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - STATE(2730), 1, - sym_enumerator_list, - STATE(2816), 1, - sym_attribute_specifier, - ACTIONS(6225), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_DOT, - ACTIONS(6227), 42, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6951), 46, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -317615,33 +506514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + 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, - [26001] = 5, + [85571] = 3, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6158), 13, + ACTIONS(7353), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317652,10 +506539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6160), 41, + anon_sym_LBRACK_COLON, + ACTIONS(7351), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -317697,148 +506584,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [26072] = 4, + [85633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5629), 36, + ACTIONS(7229), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7227), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [26141] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1852), 1, anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + [85695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5997), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5999), 1, anon_sym_AMP_AMP, - ACTIONS(6001), 1, - anon_sym_AMP, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - STATE(3247), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6686), 1, - sym__declarator, - STATE(6866), 1, - sym__abstract_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6791), 2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7295), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -317851,17 +506696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [26258] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [85757] = 3, ACTIONS(3), 1, sym_comment, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6883), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 20, + ACTIONS(6242), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317875,26 +506719,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5860), 34, + ACTIONS(6244), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -317916,18 +506760,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, - [26329] = 5, + anon_sym_DASH_GT, + [85819] = 3, ACTIONS(3), 1, sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 20, + ACTIONS(6246), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317941,26 +506778,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6028), 34, + ACTIONS(6248), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -317982,75 +506819,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [26400] = 3, + anon_sym_DASH_GT, + [85881] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5480), 36, - anon_sym_DOT_DOT_DOT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7379), 1, + sym__function_attributes_start, + STATE(7502), 1, + sym_ref_qualifier, + STATE(8269), 1, + sym_trailing_return_type, + STATE(8329), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7660), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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, - [26467] = 3, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [85997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 22, + ACTIONS(6250), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318060,20 +506919,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___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5635), 37, + ACTIONS(6252), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318081,10 +506937,12 @@ 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_GT_EQ, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318092,6 +506950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -318106,51 +506965,42 @@ 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, - [26534] = 8, + [86059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - STATE(2722), 1, - sym_enumerator_list, - STATE(2834), 1, - sym_attribute_specifier, - ACTIONS(6173), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_DOT, - ACTIONS(6175), 42, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(6951), 46, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -318164,26 +507014,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [86123] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10608), 1, anon_sym_requires, - [26611] = 3, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7292), 1, + sym__function_attributes_start, + STATE(7518), 1, + sym_ref_qualifier, + STATE(8306), 1, + sym_trailing_return_type, + STATE(8333), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7642), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 23, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10544), 1, + anon_sym_LBRACK, + STATE(5153), 1, + sym_new_declarator, + STATE(5647), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318200,24 +507142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5484), 36, + ACTIONS(8806), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318229,63 +507164,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [26678] = 6, + anon_sym_DASH_GT, + [86311] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - STATE(1661), 1, - sym_string_literal, - ACTIONS(6848), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8181), 1, + sym_type_descriptor, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -318298,30 +507261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_operator, - [26751] = 5, + [86427] = 3, ACTIONS(3), 1, sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 20, + ACTIONS(8629), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318335,14 +507278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6158), 34, + ACTIONS(8631), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318352,8 +507294,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, @@ -318376,18 +507316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [26822] = 5, + [86489] = 3, ACTIONS(3), 1, sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 20, + ACTIONS(8629), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318401,14 +507337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6064), 34, + ACTIONS(8631), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318418,8 +507353,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, @@ -318442,46 +507375,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [26893] = 4, + [86551] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(5627), 22, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10746), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [86729] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10936), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86845] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 15, + 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___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5629), 36, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318489,6 +507666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -318499,19 +507677,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [26962] = 3, + [86923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 23, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10544), 1, + anon_sym_LBRACK, + STATE(5142), 1, + sym_new_declarator, + STATE(5784), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318528,24 +507708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5488), 36, + ACTIONS(8868), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318557,114 +507730,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [27029] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5955), 1, - anon_sym_STAR, - ACTIONS(5957), 1, - anon_sym_AMP_AMP, - ACTIONS(5959), 1, - anon_sym_AMP, - STATE(3333), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6561), 1, - sym__declarator, - STATE(6856), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5707), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5709), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27146] = 3, + anon_sym_DASH_GT, + [86995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 20, + ACTIONS(6286), 1, + anon_sym_LBRACK_LBRACK, + STATE(4365), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318678,14 +507763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5629), 39, + ACTIONS(9213), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -318695,10 +507780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318720,22 +507801,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_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [27213] = 5, + [87061] = 3, ACTIONS(3), 1, sym_comment, - STATE(1681), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6875), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 20, + ACTIONS(5229), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318745,30 +507815,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6058), 34, + ACTIONS(5231), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318776,7 +507843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -318790,342 +507856,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27284] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2694), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6887), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6095), 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(6097), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27355] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2658), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6889), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6101), 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_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(6103), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27426] = 28, + anon_sym_requires, + [87123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5979), 1, + ACTIONS(8629), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(5981), 1, - anon_sym_AMP_AMP, - ACTIONS(5983), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3247), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6561), 1, - sym__declarator, - STATE(6919), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5709), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27543] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2656), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6048), 13, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8631), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6050), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27614] = 5, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [87185] = 30, ACTIONS(3), 1, sym_comment, - STATE(2656), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6842), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11059), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6028), 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(6030), 41, - anon_sym_AMP, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -319138,88 +508006,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27685] = 28, + [87301] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(5703), 1, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5955), 1, - anon_sym_STAR, - ACTIONS(5957), 1, - anon_sym_AMP_AMP, - ACTIONS(5959), 1, - anon_sym_AMP, - STATE(3333), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6534), 1, - sym__declarator, - STATE(6928), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(10692), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6789), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(6791), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(4159), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -319233,24 +508092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27802] = 10, + [87417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - ACTIONS(6891), 1, - anon_sym_COLON, - ACTIONS(6893), 1, - anon_sym_LBRACE, - STATE(2856), 1, - sym__enum_base_clause, - STATE(2931), 1, - sym_enumerator_list, - STATE(3266), 1, - sym_attribute_specifier, - ACTIONS(6571), 19, + ACTIONS(8665), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319270,7 +508115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6573), 32, + ACTIONS(8667), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -319302,18 +508147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [27882] = 5, + [87479] = 3, ACTIONS(3), 1, sym_comment, - STATE(2721), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 21, + ACTIONS(8516), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319323,28 +508164,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5860), 32, + anon_sym_DASH_GT, + ACTIONS(8518), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -319353,6 +508192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -319366,117 +508206,129 @@ 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, - [27952] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [87541] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2815), 1, - sym_attribute_specifier, - ACTIONS(6272), 12, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10548), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 13, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(6274), 43, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + [87621] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [28024] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1689), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 21, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6048), 32, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -319484,6 +508336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -319494,53 +508347,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [28094] = 3, + [87703] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5024), 45, - anon_sym_AMP, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10906), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -319553,26 +508433,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + [87819] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_operator, - [28160] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1689), 1, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11540), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6088), 21, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319582,28 +508532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6086), 32, + anon_sym_DASH_GT, + ACTIONS(7627), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -319612,6 +508560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -319625,340 +508574,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [28230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6899), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [28296] = 3, + anon_sym_DASH_GT_STAR, + [87997] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(2777), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_typename, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5008), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10295), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10297), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28428] = 4, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11541), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [88113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5629), 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(5627), 30, + ACTIONS(8087), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5629), 27, - 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_LBRACE, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8089), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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(5627), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [28564] = 7, + anon_sym_DASH_GT_STAR, + [88175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(2862), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6863), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 17, + ACTIONS(2795), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319972,11 +508740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6245), 34, + ACTIONS(2793), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -319986,8 +508756,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, @@ -320000,91 +508768,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [28638] = 3, + [88237] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6903), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10295), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11460), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [88353] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10733), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [88469] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28704] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1689), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11045), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6160), 21, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [88585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5509), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9086), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320094,28 +509060,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6158), 32, + anon_sym_DASH_GT, + ACTIONS(9088), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -320124,6 +509087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -320137,110 +509101,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [28774] = 5, + anon_sym_DASH_GT_STAR, + [88653] = 9, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6746), 1, + anon_sym_const, + ACTIONS(6755), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(9187), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6052), 32, + STATE(4211), 1, + sym_template_argument_list, + ACTIONS(6748), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [28844] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2797), 1, - sym_attribute_specifier, - ACTIONS(6342), 12, + ACTIONS(6753), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(6344), 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, + ACTIONS(6751), 15, anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320254,6 +509148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + ACTIONS(6758), 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, @@ -320266,112 +509167,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [28916] = 5, + [88727] = 30, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10483), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6060), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6058), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [28986] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2822), 1, - sym_attribute_specifier, - ACTIONS(6284), 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(6286), 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, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320383,61 +509253,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [29058] = 6, + [88843] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2833), 1, - sym_attribute_specifier, - ACTIONS(6288), 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(6290), 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, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10892), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320449,35 +509339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [29130] = 5, + [88959] = 3, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 21, + ACTIONS(5229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -320487,19 +509352,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___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6064), 32, + ACTIONS(5231), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320507,9 +509370,9 @@ 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_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -320517,6 +509380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -320531,110 +509395,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [29200] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [89021] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4996), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10295), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10297), 1, anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11132), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89137] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29266] = 6, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10873), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89253] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(4931), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11014), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(4938), 48, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7281), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7279), 41, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320648,53 +509711,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - sym_auto, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [29338] = 3, + anon_sym_template, + anon_sym_operator, + [89431] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5686), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11148), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320706,189 +509801,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [89547] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [29404] = 3, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89663] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5024), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10295), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10297), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29470] = 5, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10672), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89779] = 30, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6897), 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10749), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6030), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6028), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [29540] = 6, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89895] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2767), 1, - sym_attribute_specifier, - ACTIONS(6346), 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(6348), 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, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11085), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320900,61 +510145,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [90011] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11145), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [29612] = 6, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2830), 1, - sym_attribute_specifier, - ACTIONS(6317), 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(6319), 43, + ACTIONS(7211), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7209), 41, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -320968,439 +510286,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [29684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6909), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6907), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, anon_sym_decltype, - anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29750] = 5, + anon_sym_operator, + [90189] = 3, ACTIONS(3), 1, sym_comment, - STATE(2711), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6911), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6101), 32, + ACTIONS(7423), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [29820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5635), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5633), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 28, - anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_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(5004), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5627), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5629), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [30018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6915), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_LBRACK_COLON, + ACTIONS(7421), 41, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6913), 30, - anon_sym_DASH, - anon_sym_PLUS, anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30084] = 6, + anon_sym_operator, + [90251] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2783), 1, - sym_attribute_specifier, - ACTIONS(6334), 12, + ACTIONS(6746), 1, + anon_sym_const, + ACTIONS(8526), 1, + anon_sym_LT, + STATE(3619), 1, + sym_template_argument_list, + ACTIONS(6755), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(6336), 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, + ACTIONS(6751), 15, anon_sym___extension__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -321414,156 +510383,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [30156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5668), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5670), 36, + ACTIONS(6748), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [30224] = 6, + anon_sym_DASH_GT, + [90321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(2651), 1, - sym_template_argument_list, - ACTIONS(5971), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6967), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4187), 34, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6969), 47, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_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_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, - [30296] = 3, + anon_sym_try, + anon_sym_requires, + [90383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 13, + ACTIONS(7377), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321574,17 +510485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5116), 45, + anon_sym_LBRACK_COLON, + ACTIONS(7375), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -321618,337 +510528,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [30362] = 3, + [90445] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5012), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_typename, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5627), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10594), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30494] = 3, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8037), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90561] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5016), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_typename, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5022), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5020), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10594), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30626] = 10, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8040), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90677] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - ACTIONS(6891), 1, - anon_sym_COLON, - ACTIONS(6893), 1, + ACTIONS(2738), 1, anon_sym_LBRACE, - STATE(2878), 1, - sym__enum_base_clause, - STATE(2951), 1, - sym_enumerator_list, - STATE(3184), 1, - sym_attribute_specifier, - ACTIONS(6565), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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(6567), 32, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(4096), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5523), 1, + sym_argument_list, + STATE(5932), 1, + sym_initializer_list, + ACTIONS(9785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6800), 10, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [30706] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [90751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 13, + ACTIONS(7225), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321959,17 +510781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5657), 45, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -322003,48 +510824,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [30772] = 6, + [90813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2796), 1, - sym_attribute_specifier, - ACTIONS(6276), 12, + ACTIONS(10761), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10759), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10757), 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(6278), 43, - 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(10755), 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_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, + [90879] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 1, + anon_sym_const, + ACTIONS(6237), 1, + anon_sym_AMP, + ACTIONS(6230), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(6235), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6233), 18, anon_sym___extension__, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -322058,6 +510926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6228), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -322070,108 +510950,167 @@ 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, - [30844] = 3, + [90949] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(2731), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10594), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30910] = 4, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8073), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91065] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5663), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8074), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -322183,67 +511122,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + [91181] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, anon_sym_or, + ACTIONS(10574), 1, anon_sym_and, + ACTIONS(10576), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10578), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [30978] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 21, + ACTIONS(10176), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 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___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6095), 32, + ACTIONS(10178), 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_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -322251,68 +511197,861 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [31048] = 5, + [91289] = 30, ACTIONS(3), 1, sym_comment, - STATE(2695), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6812), 4, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8080), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5663), 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, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91405] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5661), 41, - anon_sym_AMP, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8083), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91521] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8087), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91637] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8088), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91753] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8092), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91869] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8093), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91985] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8095), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92101] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8096), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92217] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8097), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92333] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8098), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -322325,178 +512064,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31118] = 5, + [92449] = 30, ACTIONS(3), 1, sym_comment, - STATE(2710), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6919), 4, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8100), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6024), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6022), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [31188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 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(5668), 30, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31256] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2809), 1, - sym_attribute_specifier, - ACTIONS(6354), 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(6356), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -322508,61 +512150,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31328] = 6, + [92565] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2788), 1, - sym_attribute_specifier, - ACTIONS(6338), 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(6340), 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, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8102), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -322574,61 +512236,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31400] = 6, + [92681] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2811), 1, - sym_attribute_specifier, - ACTIONS(6292), 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(6294), 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, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10987), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -322640,228 +512322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31472] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2716), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6921), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6068), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [31542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6925), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(6923), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31608] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - ACTIONS(6931), 1, - anon_sym_LBRACE, - STATE(3291), 1, - sym_field_declaration_list, - STATE(3734), 1, - sym_attribute_specifier, - STATE(7298), 1, - sym_virtual_specifier, - STATE(8008), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 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(5674), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [31692] = 3, + [92797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 13, + ACTIONS(7197), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322872,17 +512336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6933), 45, + anon_sym_LBRACK_COLON, + ACTIONS(7195), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -322916,87 +512379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [31758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - STATE(2780), 1, - sym_attribute_specifier, - ACTIONS(6313), 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(6315), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31830] = 6, + [92859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6937), 1, - anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - ACTIONS(4931), 17, + ACTIONS(10769), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10767), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10765), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323007,27 +512401,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(4938), 38, - anon_sym_DOT_DOT_DOT, + ACTIONS(10763), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -323038,360 +512428,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [31902] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [92925] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5000), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10594), 1, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31968] = 3, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7587), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8038), 1, + sym__type_definition_type, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4949), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93041] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5006), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [32033] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 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, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(6491), 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, - [32128] = 16, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11023), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93157] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 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, + ACTIONS(4772), 1, sym_identifier, - ACTIONS(6491), 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, - [32219] = 14, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6359), 1, + sym_type_specifier, + STATE(8181), 1, + sym_type_descriptor, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5079), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5891), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93273] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6125), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8927), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10540), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, + STATE(5561), 1, + sym_parameter_list, + STATE(5151), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9127), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6491), 22, + anon_sym_DOT, + ACTIONS(9129), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323403,311 +512753,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5862), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5864), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32371] = 25, + [93345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10337), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10580), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, + STATE(5557), 1, + sym_parameter_list, + STATE(5016), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8931), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6956), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6958), 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, - [32480] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6974), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6978), 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, - [32593] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, anon_sym_or, - ACTIONS(6972), 1, anon_sym_and, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6982), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6984), 17, + anon_sym_DOT, + ACTIONS(8933), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323715,129 +512813,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, - [32702] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6940), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6986), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6988), 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, - [32815] = 3, + anon_sym_GT2, + [93417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5767), 44, + ACTIONS(7207), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7205), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -323851,55 +512883,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32880] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [93479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5749), 44, + ACTIONS(7381), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7379), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -323913,58 +512942,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [93541] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10552), 1, + anon_sym_AMP_AMP, + ACTIONS(10554), 1, + anon_sym_PIPE, + ACTIONS(10558), 1, + anon_sym_AMP, + ACTIONS(10564), 1, + anon_sym_GT_EQ, + ACTIONS(10570), 1, anon_sym_LT_EQ_GT, + ACTIONS(10572), 1, anon_sym_or, + ACTIONS(10574), 1, anon_sym_and, + ACTIONS(10576), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10578), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [32945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 18, + ACTIONS(10184), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10546), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10556), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10566), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10560), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10562), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5010), 39, + ACTIONS(10186), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323976,25 +513025,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_or, - anon_sym_and, - anon_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, - [33010] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [93649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 18, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5464), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324008,24 +513052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4998), 39, + ACTIONS(9107), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -324038,25 +513079,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_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [33075] = 3, + [93717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 18, + ACTIONS(8999), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324070,12 +513107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5002), 39, + ACTIONS(9001), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324085,9 +513123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -324100,149 +513135,1056 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [33140] = 3, + [93779] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11125), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93895] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11130), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94011] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11149), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94127] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11154), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94243] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11171), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94359] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11175), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94475] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11191), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94591] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11195), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94707] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11211), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94823] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5014), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [33205] = 3, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11215), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94939] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 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, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, 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(6673), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11228), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95055] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, anon_sym_enum, + ACTIONS(1888), 1, anon_sym_class, + ACTIONS(1890), 1, anon_sym_struct, + ACTIONS(1892), 1, 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(1918), 1, sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - anon_sym_typename, + ACTIONS(4800), 1, anon_sym_template, - [33270] = 3, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(11231), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 18, + ACTIONS(8935), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324256,74 +514198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5018), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_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, - [33335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5022), 39, + ACTIONS(8937), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324333,9 +514214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -324348,27 +514226,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [33400] = 4, + [95233] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 18, + ACTIONS(6125), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(10540), 1, + anon_sym_LBRACK, + STATE(5561), 1, + sym_parameter_list, + STATE(5151), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8947), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324382,24 +514268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5629), 38, + ACTIONS(8949), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324411,119 +514293,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [33467] = 11, + anon_sym_DASH_GT, + [95305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6489), 22, + STATE(4004), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3359), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6491), 23, + sym_literal_suffix, + ACTIONS(8739), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [33548] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6940), 2, + [95373] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6125), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8927), 1, + anon_sym_LPAREN2, + ACTIONS(10540), 1, + anon_sym_LBRACK, + STATE(5561), 1, + sym_parameter_list, + STATE(5151), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8931), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 20, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -324533,28 +514395,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, - sym_identifier, - ACTIONS(6491), 23, + anon_sym_DOT, + ACTIONS(8933), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324566,67 +514419,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, - [33631] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6940), 2, + [95445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(6753), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6491), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6758), 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_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, @@ -324638,227 +514482,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, - [33716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5792), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5794), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [33781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5812), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [33846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5663), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [33911] = 11, + anon_sym_DASH_GT_STAR, + [95515] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(6994), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3061), 1, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6463), 2, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7094), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10929), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2800), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6992), 4, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5122), 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(6458), 13, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -324872,62 +514579,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5124), 22, + [95631] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7386), 1, + sym__function_attributes_start, + STATE(7510), 1, + sym_ref_qualifier, + STATE(8269), 1, + sym_trailing_return_type, + STATE(8495), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [33992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5844), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7664), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 5, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10001), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -324939,196 +514665,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34057] = 3, + [95747] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5880), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10347), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(10385), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(10775), 1, + anon_sym_AMP_AMP, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, + anon_sym_AMP, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, anon_sym_and, + ACTIONS(10793), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10795), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(9282), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34122] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 18, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(10779), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(10789), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5629), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [34189] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - ACTIONS(6996), 1, - anon_sym_COLON, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(2942), 1, - sym__enum_base_clause, - STATE(3084), 1, - sym_enumerator_list, - STATE(3510), 1, - sym_attribute_specifier, - ACTIONS(6571), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 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(6573), 30, + ACTIONS(9284), 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, @@ -325136,126 +514736,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, - anon_sym_GT2, - [34268] = 13, + anon_sym_DASH_GT_STAR, + [95850] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10619), 1, + sym_identifier, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(7000), 1, - anon_sym_LBRACK, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3724), 1, - sym_template_argument_list, - ACTIONS(4184), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(10625), 1, + sym_primitive_type, + ACTIONS(10627), 1, + anon_sym_enum, + ACTIONS(10629), 1, + anon_sym_class, + ACTIONS(10631), 1, + anon_sym_struct, + ACTIONS(10633), 1, + anon_sym_union, + ACTIONS(10635), 1, + anon_sym_typename, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6310), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6441), 1, + sym_type_specifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7218), 1, + sym_template_type, + STATE(7294), 1, + sym_qualified_type_identifier, + STATE(7496), 1, + sym_decltype_auto, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [34353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5884), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7484), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7497), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -325267,119 +514828,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34418] = 3, + [95963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10799), 1, + anon_sym_LT, + STATE(1855), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 39, + ACTIONS(9227), 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_COLON, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [34483] = 3, + [96028] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5888), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3455), 1, + anon_sym_enum, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(10715), 1, + anon_sym_typename, + STATE(2240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2294), 1, + sym_type_specifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, + sym_template_type, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3262), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -325391,30 +514972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34548] = 4, + [96141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5668), 22, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5779), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9086), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325429,24 +514997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5670), 34, + ACTIONS(9088), 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___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -325469,42 +515032,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [34615] = 3, + [96208] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5892), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_enum, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10723), 1, + anon_sym_typename, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3639), 1, + sym_type_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -325516,57 +515117,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34680] = 3, + [96321] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5713), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3341), 1, + anon_sym_enum, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(10745), 1, + anon_sym_typename, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3398), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -325578,130 +515201,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [96434] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2265), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34745] = 3, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96547] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 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, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3243), 1, + anon_sym_enum, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, + sym_identifier, + ACTIONS(10727), 1, 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(6729), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(10731), 1, + anon_sym_typename, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2226), 1, + sym_type_specifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3239), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96660] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3512), 1, anon_sym_enum, + ACTIONS(3514), 1, anon_sym_class, + ACTIONS(3516), 1, anon_sym_struct, + ACTIONS(3518), 1, 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(3524), 1, sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10739), 1, anon_sym_typename, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2232), 1, + sym_type_specifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96773] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(3273), 1, + anon_sym_enum, + ACTIONS(4800), 1, anon_sym_template, - [34810] = 6, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(10749), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1988), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2140), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3269), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96886] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4938), 9, - 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(4931), 45, - anon_sym_AMP, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3433), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -325714,67 +515621,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [96999] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3341), 1, + anon_sym_enum, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(10745), 1, + anon_sym_typename, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2905), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97112] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2148), 1, + sym_type_specifier, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97225] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(3273), 1, + anon_sym_enum, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_operator, - [34881] = 3, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(10749), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1988), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2018), 1, + sym_type_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3269), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 13, + ACTIONS(9093), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5904), 44, + ACTIONS(9095), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -325785,26 +515931,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [34946] = 3, + [97399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 13, + ACTIONS(8655), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5900), 44, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8657), 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, @@ -325813,92 +515974,69 @@ static const uint16_t ts_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_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35011] = 3, + anon_sym_COLON_RBRACK, + [97460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 13, + ACTIONS(8629), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5908), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(8631), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -325909,10 +516047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [35076] = 3, + [97521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 18, + ACTIONS(8629), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325922,28 +516060,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5635), 39, + ACTIONS(8631), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -325952,59 +516087,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [35141] = 11, + anon_sym_GT2, + anon_sym_requires, + [97582] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(7007), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3341), 1, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6369), 2, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7462), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7005), 4, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5137), 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(6364), 13, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -326018,14 +516189,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5139), 22, - anon_sym_AMP, + [97695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8384), 5, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8382), 48, + anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - 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, @@ -326034,108 +516223,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [35222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6699), 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(6697), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_class, anon_sym_struct, anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_typename, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_typename, anon_sym_template, - [35287] = 3, + [97756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(8629), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5713), 44, + ACTIONS(8631), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [97817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(4203), 1, + sym_template_argument_list, + ACTIONS(5272), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7031), 38, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -326149,55 +516360,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35352] = 3, + anon_sym_template, + anon_sym_operator, + [97884] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(6746), 1, + anon_sym_const, + ACTIONS(6755), 1, + anon_sym_AMP, + ACTIONS(8390), 1, + anon_sym_LT, + STATE(2848), 1, + sym_template_argument_list, + ACTIONS(6748), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6753), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, anon_sym_DOT, - ACTIONS(5713), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(6751), 15, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -326211,6 +516408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + ACTIONS(6758), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -326223,21 +516430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35417] = 5, + [97957] = 4, ACTIONS(3), 1, sym_comment, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6883), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 19, + ACTIONS(10802), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326251,24 +516449,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(5663), 33, + ACTIONS(9310), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -326290,11 +516488,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, - [35486] = 3, + anon_sym_DASH_GT, + [98020] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + sym_identifier, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, + sym_template_type, + STATE(7594), 1, + sym_type_specifier, + STATE(7603), 1, + sym_qualified_type_identifier, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 18, + ACTIONS(8629), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -326304,6 +516586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -326312,8 +516597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5488), 39, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8631), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326333,46 +516620,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [35551] = 3, + anon_sym_COLON_RBRACK, + [98194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 13, + ACTIONS(8629), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5659), 44, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8631), 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, @@ -326381,191 +516674,115 @@ static const uint16_t ts_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_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35616] = 10, + anon_sym_COLON_RBRACK, + [98255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - ACTIONS(6996), 1, - anon_sym_COLON, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(2938), 1, - sym__enum_base_clause, - STATE(3064), 1, - sym_enumerator_list, - STATE(3463), 1, - sym_attribute_specifier, - ACTIONS(6565), 20, + ACTIONS(8629), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6567), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8631), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [35695] = 3, + anon_sym_COLON_RBRACK, + [98316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(5233), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5927), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [35760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5848), 44, + ACTIONS(5235), 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, @@ -326574,11 +516791,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [98377] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7099), 1, + sym_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -326590,57 +516889,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35825] = 3, + [98490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(5116), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10804), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_DOT, - ACTIONS(5852), 44, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(7255), 42, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -326654,74 +516942,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [35890] = 3, + [98555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 13, + ACTIONS(8955), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5923), 44, + ACTIONS(8957), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -326732,39 +517007,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [35955] = 3, + [98616] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5896), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3544), 1, + anon_sym_enum, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(10707), 1, + anon_sym_typename, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3892), 1, + sym_type_specifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -326776,138 +517091,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36020] = 3, + [98729] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 13, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9860), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5860), 44, + anon_sym_DASH_GT, + ACTIONS(9858), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36085] = 3, + anon_sym_DASH_GT_STAR, + [98798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 13, + ACTIONS(2795), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5824), 44, + ACTIONS(2793), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -326916,308 +517210,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [36150] = 3, + [98859] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 13, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5868), 44, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [98948] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 13, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 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_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5872), 44, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 27, 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36280] = 3, + anon_sym_DASH_GT_STAR, + [99029] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 13, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9852), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5836), 44, + anon_sym_DASH_GT, + ACTIONS(9850), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36345] = 3, + anon_sym_DASH_GT_STAR, + [99098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5480), 39, + anon_sym_DASH_GT, + ACTIONS(9854), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [36410] = 3, + anon_sym_DASH_GT_STAR, + [99167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 13, + ACTIONS(9007), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5782), 44, + ACTIONS(9009), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327228,58 +517533,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36475] = 3, + [99228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 13, + ACTIONS(2803), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5840), 44, + ACTIONS(2801), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327290,58 +517591,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36540] = 3, + [99289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(8955), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5717), 44, + ACTIONS(8957), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327350,117 +517648,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [36605] = 3, + [99350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 13, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5646), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5721), 44, + ACTIONS(9107), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36670] = 3, + [99417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 13, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9852), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5816), 44, + anon_sym_DASH_GT, + ACTIONS(9850), 33, 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -327471,63 +517768,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [99486] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, anon_sym_DASH_GT, + ACTIONS(10812), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7408), 1, + sym__function_attributes_start, + STATE(7549), 1, + sym_ref_qualifier, + STATE(8608), 1, + sym__function_attributes_end, + STATE(8615), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7745), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - anon_sym_requires, - [36735] = 3, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(8992), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5820), 44, + ACTIONS(8994), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327538,58 +517915,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36800] = 3, + [99662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(9015), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5856), 44, + ACTIONS(9017), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327600,150 +517973,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36865] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4187), 1, - anon_sym_SEMI, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4159), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [36948] = 25, + [99723] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6940), 2, + ACTIONS(9244), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7009), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7011), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9246), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -327755,82 +518030,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37057] = 27, + anon_sym_and_eq, + anon_sym_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, + [99798] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6940), 2, + ACTIONS(9252), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6643), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6645), 15, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9254), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -327841,120 +518095,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37170] = 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_GT_STAR, + [99873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6208), 1, + anon_sym_LBRACE, + ACTIONS(10814), 1, + anon_sym_LT, + STATE(5247), 1, + sym_template_argument_list, + ACTIONS(6210), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 39, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [37235] = 3, + [99942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 13, + ACTIONS(8992), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5828), 44, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -327963,81 +518222,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [37300] = 25, + [100003] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6940), 2, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7013), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(7015), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328049,142 +518281,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37409] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(6960), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6970), 1, - anon_sym_or, - ACTIONS(6972), 1, - anon_sym_and, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, + anon_sym_DASH_GT_STAR, + [100080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8595), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6946), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7019), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8597), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37518] = 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [100141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 13, + ACTIONS(9029), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5725), 44, + ACTIONS(9031), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -328195,24 +518405,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [37583] = 3, + [100202] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 13, + ACTIONS(10817), 1, + sym_identifier, + STATE(4979), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10820), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10823), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8047), 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___attribute__, anon_sym___attribute, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5832), 44, + sym_literal_suffix, + ACTIONS(8045), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -328223,111 +518456,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37648] = 23, + [100271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - ACTIONS(6962), 1, - anon_sym_AMP_AMP, - ACTIONS(6972), 1, - anon_sym_and, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, + ACTIONS(7546), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 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(6489), 7, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, - sym_identifier, - ACTIONS(6491), 18, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7544), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328335,79 +518507,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, - [37753] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6940), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [100332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5796), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6964), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 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(6489), 8, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - ACTIONS(6491), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9119), 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_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, @@ -328415,62 +518571,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37854] = 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, + [100399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(8622), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5717), 44, + ACTIONS(8624), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -328481,74 +518644,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [37919] = 20, + [100460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6940), 2, + ACTIONS(7629), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6966), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(6491), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7627), 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_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328560,73 +518688,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38018] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6948), 1, - anon_sym_GT_EQ, - ACTIONS(6952), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6954), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6940), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6944), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6950), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6968), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6942), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6946), 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(6489), 12, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, + anon_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, - sym_identifier, - ACTIONS(6491), 19, + anon_sym_DOT, + ACTIONS(7627), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328634,62 +518742,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, - [38115] = 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [100582] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10826), 1, + anon_sym_requires, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7434), 1, + sym__function_attributes_start, + STATE(7540), 1, + sym_ref_qualifier, + STATE(8561), 1, + sym__function_attributes_end, + STATE(8562), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7709), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6113), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 13, + ACTIONS(9093), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5771), 44, + ACTIONS(9095), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -328698,19 +518902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [38180] = 5, + [100758] = 7, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 17, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9856), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328724,23 +518928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6086), 34, + ACTIONS(9854), 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, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328762,435 +518961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_attribute_specifier, - STATE(3037), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6227), 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(6225), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38320] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7025), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38402] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7027), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38486] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7029), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38568] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7031), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38650] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7033), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38732] = 7, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [100827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(6691), 1, - anon_sym_decltype, - ACTIONS(7035), 1, - sym_auto, - STATE(3378), 1, - sym_decltype_auto, - ACTIONS(5661), 19, + ACTIONS(9097), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329209,19 +518987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5663), 33, + ACTIONS(9099), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329243,18 +519019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38804] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100888] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 17, + ACTIONS(9101), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329268,23 +519040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6048), 34, + ACTIONS(9103), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329296,22 +519067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38872] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 27, - aux_sym_preproc_elif_token1, + ACTIONS(9109), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329326,25 +519099,13 @@ 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_literal_suffix, - ACTIONS(7039), 29, + ACTIONS(9111), 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_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -329352,6 +519113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329363,21 +519125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [38936] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6861), 1, - anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - ACTIONS(5971), 17, + ACTIONS(10829), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329388,14 +519155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4187), 36, + ACTIONS(9310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -329405,9 +519175,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, @@ -329419,23 +519187,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [39006] = 3, + [101073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 17, + ACTIONS(6453), 2, + anon_sym_final, + anon_sym_override, + STATE(5070), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329449,11 +519221,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_DOT, anon_sym_DASH_GT, - ACTIONS(5629), 39, + ACTIONS(8776), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -329463,9 +519234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -329488,18 +519256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [39070] = 4, + [101138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8935), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329509,35 +519271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4161), 29, + ACTIONS(8937), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -329546,26 +519298,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [39136] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [101199] = 3, ACTIONS(3), 1, sym_comment, - STATE(2721), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 20, + ACTIONS(9097), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329586,7 +519340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5663), 31, + ACTIONS(9099), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -329594,7 +519348,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, @@ -329617,18 +519370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [39204] = 5, + anon_sym_requires, + [101260] = 3, ACTIONS(3), 1, sym_comment, - STATE(2890), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7043), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 17, + ACTIONS(8087), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329642,23 +519391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6022), 34, + ACTIONS(8089), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329670,31 +519418,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39272] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - ACTIONS(6893), 1, - anon_sym_LBRACE, - STATE(2958), 1, - sym_enumerator_list, - STATE(3192), 1, - sym_attribute_specifier, - ACTIONS(6173), 19, + ACTIONS(10831), 1, + anon_sym_AMP_AMP, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(8939), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329710,21 +519455,18 @@ 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(6175), 32, + ACTIONS(8941), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329746,18 +519488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39346] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101386] = 3, ACTIONS(3), 1, sym_comment, - STATE(2849), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7045), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 17, + ACTIONS(8999), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329771,23 +519509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6095), 34, + ACTIONS(9001), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329799,28 +519536,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39414] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101447] = 3, ACTIONS(3), 1, sym_comment, - STATE(2880), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7047), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 17, + ACTIONS(9003), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329834,23 +519567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6068), 34, + ACTIONS(9005), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329862,168 +519594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39482] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7049), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [39564] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7051), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [39646] = 5, + anon_sym_requires, + [101508] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 17, + ACTIONS(9011), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330037,23 +519625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6052), 34, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330065,28 +519652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39714] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101569] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 17, + ACTIONS(9015), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330100,23 +519683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6058), 34, + ACTIONS(9017), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330128,98 +519710,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39782] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7053), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - ACTIONS(5674), 6, + anon_sym_requires, + [101630] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10347), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10389), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [39864] = 5, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10190), 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, + [101741] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 17, + ACTIONS(8541), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330233,23 +519824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6028), 34, + ACTIONS(8543), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330261,905 +519851,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39932] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7055), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40014] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7065), 1, - anon_sym___attribute__, - ACTIONS(7068), 1, - anon_sym___attribute, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7093), 1, - anon_sym_requires, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4678), 1, - sym__function_attributes_start, - STATE(5006), 1, - sym_ref_qualifier, - STATE(5686), 1, - sym_trailing_return_type, - STATE(5861), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5427), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40132] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(7098), 1, - sym_auto, - ACTIONS(7100), 1, - anon_sym_decltype, - STATE(1626), 1, - sym_template_argument_list, - STATE(2576), 1, - sym_decltype_auto, - STATE(3237), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7096), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(4167), 39, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [40212] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7102), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40294] = 27, + [101802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(4326), 1, + ACTIONS(9029), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4328), 1, - anon_sym_AMP_AMP, - ACTIONS(4330), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5707), 1, - anon_sym_RPAREN, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6673), 1, - sym__declarator, - STATE(6868), 1, - sym__abstract_declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4187), 9, - 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(5971), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [40476] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7104), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40560] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7106), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40642] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(4326), 1, - anon_sym_STAR, - ACTIONS(4328), 1, - anon_sym_AMP_AMP, - ACTIONS(4330), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(6789), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6690), 1, - sym__declarator, - STATE(6937), 1, - sym__abstract_declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40754] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7108), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40836] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7110), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40918] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - STATE(2601), 1, - sym_attribute_specifier, - STATE(3038), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6175), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9031), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6173), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [40990] = 5, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101863] = 5, ACTIONS(3), 1, sym_comment, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7112), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 17, + ACTIONS(10839), 1, + anon_sym_LT, + STATE(2655), 1, + sym_template_argument_list, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331170,14 +519941,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___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5860), 34, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -331187,9 +519960,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, @@ -331201,31 +519972,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, - [41058] = 8, + [101928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - ACTIONS(6893), 1, - anon_sym_LBRACE, - STATE(2904), 1, - sym_enumerator_list, - STATE(3273), 1, - sym_attribute_specifier, - ACTIONS(6225), 19, + ACTIONS(8559), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331244,11 +520005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6227), 32, + ACTIONS(8561), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -331256,6 +520015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -331277,59 +520037,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [41132] = 12, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101989] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(6751), 1, anon_sym_LBRACE, - ACTIONS(7114), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(6753), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(6758), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [102058] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, + sym_identifier, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, - anon_sym_AMP, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(6550), 1, + sym_type_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -331342,23 +520187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41214] = 5, + [102171] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 17, + ACTIONS(9037), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331372,23 +520204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6064), 34, + ACTIONS(9039), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -331400,531 +520231,526 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [41282] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [102232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 12, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(6228), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5627), 44, + anon_sym_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, + [102295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8516), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_asm, - 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_operator, - anon_sym_try, anon_sym_requires, - [41346] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7116), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, + ACTIONS(8518), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41430] = 12, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [102356] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7118), 1, - anon_sym_SEMI, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 6, + ACTIONS(10196), 1, + anon_sym_EQ, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10347), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10389), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5672), 39, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41512] = 13, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 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, + [102467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7120), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5253), 26, + 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, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41596] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7122), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(5260), 26, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41680] = 30, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [102530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(5229), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7065), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(7068), 1, anon_sym___attribute, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4816), 1, - sym__function_attributes_start, - STATE(5008), 1, - sym_ref_qualifier, - STATE(5769), 1, - sym_trailing_return_type, - STATE(5837), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5402), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 7, + anon_sym_requires, + ACTIONS(5231), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [102591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8559), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_try, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [41798] = 13, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8561), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [102652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7126), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, + ACTIONS(10806), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9860), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9858), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [102721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(4497), 2, sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 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___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [41882] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2861), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7128), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 17, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9213), 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_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [102786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(4485), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331938,23 +520764,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6101), 34, + ACTIONS(9213), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -331966,99 +520791,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, - [41950] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6737), 1, - anon_sym_virtual, - ACTIONS(7130), 1, - anon_sym_SEMI, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - STATE(2614), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5511), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(5507), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6733), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [42034] = 5, + anon_sym_DASH_GT, + [102851] = 3, ACTIONS(3), 1, sym_comment, - STATE(1730), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7021), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 17, + ACTIONS(8633), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332068,26 +520815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6158), 34, + ACTIONS(8635), 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, anon_sym_STAR_EQ, @@ -332096,61 +520842,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [42102] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [102912] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3455), 1, + anon_sym_enum, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, + sym_identifier, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(5971), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(4187), 46, - 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, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(10715), 1, + anon_sym_typename, + STATE(2240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2504), 1, + sym_type_specifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, + sym_template_type, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3262), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_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, @@ -332162,34 +520944,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [42172] = 8, + [103025] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 1, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7136), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - STATE(3368), 1, - sym_parameter_list, - STATE(3009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6074), 19, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, + anon_sym_AMP_AMP, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, + anon_sym_AMP, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10125), 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, + [103132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8665), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332199,25 +521038,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(6076), 30, + ACTIONS(8667), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -332225,7 +521065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -332239,17 +521078,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, - [42245] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [103193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, - anon_sym_decltype, - ACTIONS(7035), 1, - sym_auto, - STATE(3378), 1, - sym_decltype_auto, - ACTIONS(5661), 19, + ACTIONS(8516), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332259,27 +521096,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(5663), 33, + ACTIONS(8518), 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, @@ -332288,7 +521123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -332302,11 +521136,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, - [42314] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [103254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 25, + ACTIONS(8541), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332316,37 +521154,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_literal_suffix, - ACTIONS(7039), 30, + ACTIONS(8543), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -332354,196 +521181,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42377] = 52, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [103315] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_COMMA, - ACTIONS(7142), 1, - anon_sym_RPAREN, - ACTIONS(7144), 1, + ACTIONS(10806), 1, anon_sym_LPAREN2, - ACTIONS(7146), 1, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9834), 16, anon_sym_DASH, - ACTIONS(7148), 1, anon_sym_PLUS, - ACTIONS(7150), 1, anon_sym_STAR, - ACTIONS(7152), 1, anon_sym_SLASH, - ACTIONS(7154), 1, anon_sym_PERCENT, - ACTIONS(7156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, anon_sym_PIPE, - ACTIONS(7162), 1, anon_sym_CARET, - ACTIONS(7164), 1, anon_sym_AMP, - ACTIONS(7166), 1, - anon_sym_EQ_EQ, - ACTIONS(7168), 1, - anon_sym_BANG_EQ, - ACTIONS(7170), 1, anon_sym_GT, - ACTIONS(7172), 1, - anon_sym_GT_EQ, - ACTIONS(7174), 1, anon_sym_LT_EQ, - ACTIONS(7176), 1, anon_sym_LT, - ACTIONS(7178), 1, anon_sym_LT_LT, - ACTIONS(7180), 1, anon_sym_GT_GT, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7184), 1, anon_sym_EQ, - ACTIONS(7186), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9832), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, - ACTIONS(7188), 1, anon_sym_STAR_EQ, - ACTIONS(7190), 1, anon_sym_SLASH_EQ, - ACTIONS(7192), 1, anon_sym_PERCENT_EQ, - ACTIONS(7194), 1, anon_sym_PLUS_EQ, - ACTIONS(7196), 1, anon_sym_DASH_EQ, - ACTIONS(7198), 1, anon_sym_LT_LT_EQ, - ACTIONS(7200), 1, anon_sym_GT_GT_EQ, - ACTIONS(7202), 1, anon_sym_AMP_EQ, - ACTIONS(7204), 1, anon_sym_CARET_EQ, - ACTIONS(7206), 1, anon_sym_PIPE_EQ, - ACTIONS(7210), 1, anon_sym_LT_EQ_GT, - ACTIONS(7212), 1, anon_sym_or, - ACTIONS(7214), 1, anon_sym_and, - ACTIONS(7216), 1, anon_sym_bitor, - ACTIONS(7218), 1, anon_sym_xor, - ACTIONS(7220), 1, anon_sym_bitand, - ACTIONS(7222), 1, anon_sym_not_eq, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7208), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [42538] = 28, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [103384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6974), 1, + ACTIONS(8633), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6976), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8635), 35, anon_sym_DOT_DOT_DOT, - ACTIONS(7236), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7254), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7256), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_and, - ACTIONS(7262), 1, anon_sym_bitor, - ACTIONS(7264), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [103445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(6753), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6978), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6758), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -332557,76 +521373,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [42651] = 26, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [103514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, - anon_sym_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10845), 1, + anon_sym_virtual, + ACTIONS(10854), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10857), 1, + anon_sym___declspec, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(9680), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10851), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10860), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2900), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4033), 2, + STATE(5027), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(10848), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10842), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332640,325 +521433,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [42760] = 26, + ACTIONS(9678), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [103593] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, - anon_sym_STAR, - ACTIONS(7276), 1, + ACTIONS(10831), 1, anon_sym_AMP_AMP, - ACTIONS(7278), 1, + ACTIONS(10833), 1, + anon_sym_and, + ACTIONS(10863), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10865), 1, + anon_sym_or, + ACTIONS(8959), 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, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6814), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4051), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [42869] = 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8961), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [103662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10806), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(7272), 1, + ACTIONS(10808), 1, anon_sym_LBRACK, - ACTIONS(7280), 1, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9864), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 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(9862), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [103731] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10874), 1, + anon_sym_virtual, + ACTIONS(10883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10886), 1, + anon_sym___declspec, + ACTIONS(10892), 1, + anon_sym_explicit, + STATE(4644), 1, sym_alignas_qualifier, - STATE(6025), 1, - sym__scope_resolution, - STATE(6348), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(10880), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10889), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4016), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [42978] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10869), 6, anon_sym_LPAREN2, - ACTIONS(2809), 1, anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10867), 7, anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6407), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4044), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [43087] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, anon_sym_template, - ACTIONS(1852), 1, anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4027), 2, + ACTIONS(10877), 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(5030), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(10871), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332972,76 +521640,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43196] = 26, + [103812] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6025), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(6618), 1, + sym_type_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6382), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4041), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333055,103 +521724,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43305] = 30, + [103925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(8610), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7074), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8612), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7300), 1, - anon_sym___asm, - ACTIONS(7303), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7305), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4871), 1, - sym__function_attributes_start, - STATE(5012), 1, - sym_ref_qualifier, - STATE(5580), 1, - sym_trailing_return_type, - STATE(5869), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7086), 2, anon_sym_final, anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5443), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [43422] = 6, + anon_sym_requires, + [103986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3193), 1, - sym_attribute_specifier, - ACTIONS(6334), 19, + ACTIONS(10895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10897), 1, + anon_sym_AMP_AMP, + ACTIONS(10899), 1, + anon_sym_or, + ACTIONS(10901), 1, + anon_sym_and, + ACTIONS(8959), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333161,27 +521803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_GT_GT_EQ, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6336), 33, + ACTIONS(8961), 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, @@ -333190,7 +521826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -333204,124 +521839,250 @@ 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, - [43491] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [104055] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, anon_sym_STAR, - ACTIONS(7312), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [104142] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9840), 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, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6407), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4017), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [43600] = 7, + 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(9838), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [104211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_const, - ACTIONS(5035), 1, + ACTIONS(8610), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5028), 7, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8612), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5033), 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [104272] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9844), 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, - ACTIONS(5026), 18, - anon_sym_PERCENT, + anon_sym_DASH_GT, + ACTIONS(9842), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + 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, @@ -333332,78 +522093,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, - ACTIONS(5031), 18, - anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - [43671] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [104341] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(7318), 1, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9290), 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, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9292), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [104414] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5100), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4189), 4, + ACTIONS(10903), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4167), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(7402), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7404), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4159), 34, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -333417,134 +522214,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [43750] = 26, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104479] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6427), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2955), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4036), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [43859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4938), 1, - anon_sym_LBRACE, - ACTIONS(4945), 1, - anon_sym_LT, - STATE(2607), 1, - sym_template_argument_list, - ACTIONS(4940), 18, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_LT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4933), 33, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -333559,103 +522286,99 @@ 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, - [43930] = 26, + anon_sym_DASH_GT_STAR, + [104562] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10176), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - ACTIONS(7324), 1, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6886), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2979), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4015), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [44039] = 4, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 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, + [104669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5668), 18, + ACTIONS(10839), 1, + anon_sym_LT, + STATE(4731), 1, + sym_template_argument_list, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333666,15 +522389,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___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5670), 36, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -333684,9 +522408,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, @@ -333698,174 +522420,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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [44104] = 26, + [104734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_AMP_AMP, - ACTIONS(7324), 1, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7383), 6, anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6921), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2925), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4046), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [44213] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym___asm, + ACTIONS(7385), 42, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, anon_sym_STAR, - ACTIONS(7330), 1, anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6372), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4035), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -333877,45 +522482,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44322] = 9, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7334), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(2876), 1, - sym__enum_base_clause, - STATE(3028), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6573), 9, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(5490), 1, + sym_template_argument_list, + ACTIONS(6751), 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(6571), 39, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6746), 38, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -333941,55 +522548,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [44397] = 6, + [104866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 12, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5819), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8951), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8953), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [104933] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7395), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7397), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_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(5661), 40, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -334003,79 +522666,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [44466] = 26, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8087), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8089), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(7308), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [105059] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, sym_identifier, - ACTIONS(7316), 1, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2135), 1, + sym_type_specifier, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, + STATE(8593), 1, sym__scope_resolution, - STATE(6625), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2999), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4014), 2, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -334089,21 +522815,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44575] = 8, + [105172] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1885), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9848), 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(9846), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [105241] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7344), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - STATE(3026), 1, - sym_new_declarator, - STATE(3401), 2, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6150), 19, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9232), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334121,9 +522914,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(6152), 30, + ACTIONS(9234), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -334150,79 +522941,109 @@ 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, - [44648] = 26, + [105316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10209), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10211), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7009), 1, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9864), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + 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(7236), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9862), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7256), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_and, - ACTIONS(7262), 1, anon_sym_bitor, - ACTIONS(7264), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_DASH_GT_STAR, + [105385] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10209), 1, + anon_sym_LPAREN2, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9844), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9842), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -334237,75 +523058,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [44757] = 26, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [105454] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(9344), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7017), 1, - anon_sym_EQ, - ACTIONS(7236), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, + ACTIONS(10777), 1, anon_sym_PIPE, - ACTIONS(7244), 1, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7250), 1, + ACTIONS(10787), 1, anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, + ACTIONS(10791), 1, anon_sym_and, - ACTIONS(7262), 1, + ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(7264), 1, + ACTIONS(10795), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, + ACTIONS(10779), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7252), 2, + ACTIONS(10789), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 3, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, + ACTIONS(10783), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7248), 3, + ACTIONS(10785), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 20, + ACTIONS(9342), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -334320,165 +523146,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [44866] = 26, + anon_sym_DASH_GT_STAR, + [105561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, + ACTIONS(10907), 1, + anon_sym_LT, + STATE(5379), 1, + sym_template_argument_list, + ACTIONS(9177), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7348), 1, - anon_sym_AMP_AMP, - ACTIONS(7350), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6534), 1, - sym__declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4013), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [44975] = 30, + 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(9179), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [105628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + STATE(5109), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10910), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7408), 6, anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7076), 1, + anon_sym___inline, anon_sym_const, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7300), 1, anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4882), 1, - sym__function_attributes_start, - STATE(5059), 1, - sym_ref_qualifier, - STATE(5769), 1, - sym_trailing_return_type, - STATE(5899), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5444), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, + ACTIONS(7410), 42, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - ACTIONS(7063), 12, - anon_sym___extension__, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -334490,16 +523259,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [45092] = 6, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [105693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(10912), 1, + sym_identifier, + STATE(5078), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6539), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6541), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8127), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(6756), 1, anon_sym___attribute, - STATE(3208), 1, - sym_attribute_specifier, - ACTIONS(6276), 19, + 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(8125), 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, + [105762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9078), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334509,27 +523343,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(6278), 33, + ACTIONS(9080), 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, @@ -334538,7 +523370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -334552,76 +523383,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [45161] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [105823] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10089), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6982), 1, - anon_sym_EQ, - ACTIONS(7236), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, + ACTIONS(10777), 1, anon_sym_PIPE, - ACTIONS(7244), 1, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7250), 1, + ACTIONS(10787), 1, anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, + ACTIONS(10791), 1, anon_sym_and, - ACTIONS(7262), 1, + ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(7264), 1, + ACTIONS(10795), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, + ACTIONS(10779), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7252), 2, + ACTIONS(10789), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 3, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, + ACTIONS(10783), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7248), 3, + ACTIONS(10785), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 20, + ACTIONS(10091), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -334636,21 +523468,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [45270] = 8, + anon_sym_DASH_GT_STAR, + [105930] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7344), 1, - anon_sym_LBRACK, - STATE(3002), 1, - sym_new_declarator, - STATE(3496), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 19, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(3397), 1, + anon_sym_enum, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10723), 1, + anon_sym_typename, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3627), 1, + sym_template_type, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(3919), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334669,16 +523575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6080), 30, + ACTIONS(8631), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -334700,183 +523607,153 @@ 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, - [45343] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [106104] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10184), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - ACTIONS(7324), 1, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6918), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4047), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45452] = 26, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 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, + [106211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, + ACTIONS(8633), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8635), 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(7268), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4033), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45561] = 6, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [106272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3213), 1, - sym_attribute_specifier, - ACTIONS(6292), 19, + ACTIONS(9082), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334886,27 +523763,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(6294), 33, + ACTIONS(9084), 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, @@ -334915,7 +523790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -334929,102 +523803,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [45630] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [106333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, + ACTIONS(5276), 1, + anon_sym_EQ, + ACTIONS(5278), 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(5260), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5253), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6427), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2926), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4042), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45739] = 7, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [106398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(6752), 1, - anon_sym_decltype, - ACTIONS(7358), 1, - sym_auto, - STATE(3450), 1, - sym_decltype_auto, - ACTIONS(5661), 20, + ACTIONS(10914), 1, + anon_sym_LT, + STATE(5379), 1, + sym_template_argument_list, + ACTIONS(9135), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335034,26 +523887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5663), 31, + anon_sym_DASH_GT, + ACTIONS(9137), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -335062,6 +523914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -335075,105 +523928,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, - [45810] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7300), 1, - anon_sym___asm, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4839), 1, - sym__function_attributes_start, - STATE(5043), 1, - sym_ref_qualifier, - STATE(5604), 1, - sym_trailing_return_type, - STATE(5853), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5435), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [45927] = 6, + anon_sym_DASH_GT_STAR, + [106465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3188), 1, - sym_attribute_specifier, - ACTIONS(6317), 19, + ACTIONS(8629), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335192,19 +523951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6319), 33, + ACTIONS(8631), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335226,165 +523983,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [45996] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(3237), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7096), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6245), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [46069] = 30, + [106526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(8629), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7093), 1, - anon_sym_requires, - ACTIONS(7300), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4881), 1, - sym__function_attributes_start, - STATE(5029), 1, - sym_ref_qualifier, - STATE(5686), 1, - sym_trailing_return_type, - STATE(5910), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5433), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, + anon_sym_GT, + anon_sym_LT_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(8631), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [46186] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [106587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 24, + ACTIONS(8610), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335394,36 +524058,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, - ACTIONS(4161), 30, + ACTIONS(8612), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335431,87 +524085,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [46251] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [106648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(8606), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6976), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8608), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(6986), 1, - anon_sym_EQ, - ACTIONS(7236), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7254), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7256), 1, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_and, - ACTIONS(7262), 1, - anon_sym_bitor, - ACTIONS(7264), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_COLON_RBRACK, + [106709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10917), 2, + anon_sym_final, + anon_sym_override, + STATE(5070), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6988), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8757), 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_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -335522,78 +524209,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, - [46364] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7236), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, - anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7256), 1, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, anon_sym_or, - ACTIONS(7260), 1, anon_sym_and, - ACTIONS(7262), 1, anon_sym_bitor, - ACTIONS(7264), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [106774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6753), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7015), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335608,85 +524274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [46473] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 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(5661), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [46546] = 8, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [106841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(3086), 1, - sym_enumerator_list, - STATE(3512), 1, - sym_attribute_specifier, - ACTIONS(6225), 20, + ACTIONS(8595), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335707,7 +524306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6227), 30, + ACTIONS(8597), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -335737,39 +524336,60 @@ 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, - [46619] = 5, + anon_sym_requires, + [106902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5649), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(4161), 19, + ACTIONS(8622), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8624), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -335777,39 +524397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4169), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - [46686] = 6, + anon_sym_COLON_RBRACK, + [106963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3264), 1, - sym_attribute_specifier, - ACTIONS(6354), 19, + ACTIONS(9101), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335819,27 +524411,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(6356), 33, + ACTIONS(9103), 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, @@ -335848,7 +524438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -335862,104 +524451,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, - [46755] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6372), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2948), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4035), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [46864] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [107024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(3101), 1, - sym_enumerator_list, - STATE(3533), 1, - sym_attribute_specifier, - ACTIONS(6173), 20, + ACTIONS(8999), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335980,7 +524480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6175), 30, + ACTIONS(9001), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -336010,224 +524510,259 @@ 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, - [46937] = 7, + anon_sym_requires, + [107085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 11, + ACTIONS(2795), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(2793), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5661), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [47008] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [107146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10247), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_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, - ACTIONS(7362), 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(10249), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7364), 1, - anon_sym_AMP_AMP, - ACTIONS(7366), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6685), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2950), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4049), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47117] = 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [107207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10920), 1, + sym_identifier, + STATE(4979), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6539), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6541), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8118), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8116), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [107276] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 1, sym_identifier, - ACTIONS(6003), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6336), 1, + sym_type_specifier, + STATE(8584), 1, sym__scope_resolution, - STATE(6625), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2901), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4008), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, + STATE(5891), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -336241,16 +524776,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [47226] = 6, + [107389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(8614), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(6756), 1, anon_sym___attribute, - STATE(3381), 1, - sym_attribute_specifier, - ACTIONS(6313), 19, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8616), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [107450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8599), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336269,19 +524856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6315), 33, + ACTIONS(8601), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -336298,354 +524883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_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, - [47295] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, - anon_sym_STAR, - ACTIONS(7364), 1, - anon_sym_AMP_AMP, - ACTIONS(7366), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6677), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2998), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4022), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47404] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6333), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4043), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47513] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2972), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4027), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47622] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, - anon_sym_STAR, - ACTIONS(7364), 1, - anon_sym_AMP_AMP, - ACTIONS(7366), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6686), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4009), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [47731] = 6, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [107511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3272), 1, - sym_attribute_specifier, - ACTIONS(6272), 19, + ACTIONS(9109), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336655,27 +524905,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(6274), 33, + ACTIONS(9111), 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, @@ -336684,7 +524932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -336698,47 +524945,37 @@ 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, - [47800] = 9, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [107572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7334), 1, - anon_sym_COLON, - STATE(2594), 1, - sym_attribute_specifier, - STATE(2842), 1, - sym__enum_base_clause, - STATE(3051), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6567), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(8402), 5, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6565), 39, - anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8400), 48, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -336761,82 +524998,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_template, - anon_sym_operator, - [47875] = 26, + [107633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8618), 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(8620), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [107694] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6457), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, + anon_sym_LPAREN2, + ACTIONS(10924), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(10928), 1, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6690), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + STATE(4243), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8307), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, + ACTIONS(10932), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10934), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5141), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4021), 2, + STATE(6090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -336848,185 +525129,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [47984] = 52, + ACTIONS(6459), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [107793] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_COMMA, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7146), 1, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9282), 17, anon_sym_DASH, - ACTIONS(7148), 1, anon_sym_PLUS, - ACTIONS(7150), 1, anon_sym_STAR, - ACTIONS(7152), 1, anon_sym_SLASH, - ACTIONS(7154), 1, anon_sym_PERCENT, - ACTIONS(7156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, anon_sym_PIPE, - ACTIONS(7162), 1, anon_sym_CARET, - ACTIONS(7164), 1, anon_sym_AMP, - ACTIONS(7166), 1, - anon_sym_EQ_EQ, - ACTIONS(7168), 1, - anon_sym_BANG_EQ, - ACTIONS(7170), 1, anon_sym_GT, - ACTIONS(7172), 1, - anon_sym_GT_EQ, - ACTIONS(7174), 1, anon_sym_LT_EQ, - ACTIONS(7176), 1, anon_sym_LT, - ACTIONS(7178), 1, anon_sym_LT_LT, - ACTIONS(7180), 1, anon_sym_GT_GT, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7184), 1, anon_sym_EQ, - ACTIONS(7186), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, - ACTIONS(7188), 1, anon_sym_STAR_EQ, - ACTIONS(7190), 1, anon_sym_SLASH_EQ, - ACTIONS(7192), 1, anon_sym_PERCENT_EQ, - ACTIONS(7194), 1, anon_sym_PLUS_EQ, - ACTIONS(7196), 1, anon_sym_DASH_EQ, - ACTIONS(7198), 1, anon_sym_LT_LT_EQ, - ACTIONS(7200), 1, anon_sym_GT_GT_EQ, - ACTIONS(7202), 1, anon_sym_AMP_EQ, - ACTIONS(7204), 1, anon_sym_CARET_EQ, - ACTIONS(7206), 1, anon_sym_PIPE_EQ, - ACTIONS(7210), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7212), 1, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [107868] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6208), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, + anon_sym_LT, + STATE(5220), 1, + sym_template_argument_list, + ACTIONS(6210), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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, - ACTIONS(7214), 1, anon_sym_and, - ACTIONS(7216), 1, - anon_sym_bitor, - ACTIONS(7218), 1, anon_sym_xor, - ACTIONS(7220), 1, + anon_sym_DOT, + ACTIONS(6203), 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, - ACTIONS(7222), 1, anon_sym_not_eq, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7368), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7208), 3, + anon_sym_GT2, + [107937] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5745), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9107), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48145] = 26, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [108004] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3458), 1, + sym_type_specifier, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4052), 2, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337040,32 +525415,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [48254] = 11, + [108117] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, + anon_sym_AMP_AMP, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, + anon_sym_AMP, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7234), 3, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 14, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10194), 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, + [108224] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -337078,7 +525535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 29, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337087,9 +525544,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, @@ -337108,99 +525562,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [48333] = 26, + anon_sym_DASH_GT_STAR, + [108303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, + ACTIONS(8599), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7276), 1, - anon_sym_AMP_AMP, - ACTIONS(7278), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6810), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3000), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4030), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [48442] = 6, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8601), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [108364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3373), 1, - sym_attribute_specifier, - ACTIONS(6346), 19, + ACTIONS(7546), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337219,19 +525643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6348), 33, + ACTIONS(7544), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -337253,75 +525675,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [48511] = 24, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108425] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10341), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7238), 1, + ACTIONS(10389), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10775), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, + ACTIONS(10777), 1, anon_sym_PIPE, - ACTIONS(7244), 1, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7250), 1, + ACTIONS(10787), 1, anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7260), 1, + ACTIONS(10791), 1, anon_sym_and, - ACTIONS(7262), 1, + ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(7264), 1, + ACTIONS(10795), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10835), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10837), 1, + anon_sym_or, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7232), 2, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, + ACTIONS(10779), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7252), 2, + ACTIONS(10789), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 3, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, + ACTIONS(10783), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7248), 3, + ACTIONS(10785), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(9438), 16, 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, @@ -337335,70 +525761,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48616] = 22, + anon_sym_DASH_GT_STAR, + [108536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7262), 1, - anon_sym_bitor, - ACTIONS(7264), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5813), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + sym_initializer_list, + ACTIONS(8951), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8953), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -337414,21 +525815,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48717] = 8, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [108603] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7136), 1, - anon_sym_LBRACK, - STATE(3368), 1, - sym_parameter_list, - STATE(3009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6044), 19, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3243), 1, + anon_sym_enum, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, + sym_identifier, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(10731), 1, + anon_sym_typename, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2388), 1, + sym_type_specifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337438,25 +525920,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(6046), 30, + ACTIONS(8620), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -337464,7 +525947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -337478,75 +525960,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [48790] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [108777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6956), 1, + ACTIONS(9007), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(7236), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9009), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7256), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_and, - ACTIONS(7262), 1, anon_sym_bitor, - ACTIONS(7264), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8935), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8937), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -337562,68 +526070,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48899] = 20, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7414), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7244), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7416), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [108964] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7391), 6, anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7264), 1, - anon_sym_bitand, - STATE(2437), 1, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7393), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109029] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(9286), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 23, + anon_sym_xor, + ACTIONS(9288), 29, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -337638,77 +526258,84 @@ 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, - [48996] = 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [109102] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6025), 1, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7130), 1, + sym_splice_specifier, + STATE(7399), 1, + sym_type_specifier, + STATE(8634), 1, sym__scope_resolution, - STATE(6382), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2899), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4041), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, + STATE(4252), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337722,21 +526349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [49105] = 8, + [109215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7136), 1, + ACTIONS(10472), 1, anon_sym_LBRACK, - STATE(3368), 1, - sym_parameter_list, - STATE(3009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6162), 19, + STATE(5206), 1, + sym_new_declarator, + ACTIONS(9173), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337756,15 +526376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6164), 30, + ACTIONS(9175), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -337787,103 +526409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49178] = 30, + [109280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4892), 1, - sym__function_attributes_start, - STATE(5045), 1, - sym_ref_qualifier, - STATE(5769), 1, - sym_trailing_return_type, - STATE(6143), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5437), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, + ACTIONS(10209), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [49295] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3303), 1, - sym_attribute_specifier, - ACTIONS(6284), 19, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9848), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337903,18 +526440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6286), 33, + ACTIONS(9846), 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, @@ -337937,21 +526471,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49364] = 8, + [109349] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7136), 1, - anon_sym_LBRACK, - STATE(3368), 1, - sym_parameter_list, - STATE(3009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6034), 19, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10619), 1, + sym_identifier, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(10625), 1, + sym_primitive_type, + ACTIONS(10627), 1, + anon_sym_enum, + ACTIONS(10629), 1, + anon_sym_class, + ACTIONS(10631), 1, + anon_sym_struct, + ACTIONS(10633), 1, + anon_sym_union, + ACTIONS(10635), 1, + anon_sym_typename, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6310), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6603), 1, + sym_splice_specifier, + STATE(6669), 1, + sym_type_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7218), 1, + sym_template_type, + STATE(7294), 1, + sym_qualified_type_identifier, + STATE(7496), 1, + sym_decltype_auto, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7484), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7497), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8651), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337970,16 +526577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6036), 30, + ACTIONS(8653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -338001,17 +526609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49437] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3307), 1, - sym_attribute_specifier, - ACTIONS(6288), 19, + ACTIONS(9003), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338021,27 +526626,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(6290), 33, + ACTIONS(9005), 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, @@ -338050,7 +526653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -338064,55 +526666,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_STAR, - [49506] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [109584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 11, - anon_sym_DOT_DOT_DOT, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7199), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7201), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(5661), 40, + anon_sym_try, + anon_sym_requires, + [109649] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5043), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10938), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7213), 6, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7215), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -338126,21 +526784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [49577] = 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4938), 1, - anon_sym_LBRACE, - ACTIONS(5058), 1, - anon_sym_LT, - STATE(3006), 1, - sym_template_argument_list, - ACTIONS(4940), 19, + ACTIONS(8655), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338151,26 +526805,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + ACTIONS(8657), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -338192,79 +526845,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49648] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + STATE(5046), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10940), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7239), 6, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6690), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4034), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7241), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -338276,16 +526900,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [49757] = 6, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109840] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3375), 1, - sym_attribute_specifier, - ACTIONS(6338), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10777), 1, + anon_sym_PIPE, + ACTIONS(10781), 1, + anon_sym_AMP, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10793), 1, + anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [109939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338295,27 +526999,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(6340), 33, + ACTIONS(2793), 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, @@ -338324,7 +527026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -338338,67 +527039,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49826] = 19, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7264), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(8606), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 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(6491), 23, + anon_sym_DOT, + ACTIONS(8608), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -338414,83 +527091,57 @@ 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, - [49921] = 30, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7387), 6, anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7076), 1, + anon_sym___inline, anon_sym_const, - ACTIONS(7082), 1, anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7093), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4846), 1, - sym__function_attributes_start, - STATE(5050), 1, - sym_ref_qualifier, - STATE(5686), 1, - sym_trailing_return_type, - STATE(6157), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5445), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 6, + ACTIONS(7389), 42, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_try, - ACTIONS(7063), 12, - anon_sym___extension__, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -338502,63 +527153,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [50038] = 17, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [110126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(8622), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 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(6491), 24, + anon_sym_DOT, + ACTIONS(8624), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -338574,101 +527209,25 @@ 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, - [50129] = 26, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, - anon_sym_STAR, - ACTIONS(7348), 1, + ACTIONS(10897), 1, anon_sym_AMP_AMP, - ACTIONS(7350), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6550), 1, - sym__declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2989), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4018), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [50238] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym___attribute__, - ACTIONS(6756), 1, - anon_sym___attribute, - STATE(3268), 1, - sym_attribute_specifier, - ACTIONS(6342), 19, + ACTIONS(10901), 1, + anon_sym_and, + ACTIONS(8939), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -338678,27 +527237,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6344), 33, + ACTIONS(8941), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -338707,7 +527262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -338721,133 +527275,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, - [50307] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110252] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_AMP_AMP, - ACTIONS(7324), 1, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10781), 1, anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6921), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4046), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [50416] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7132), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7136), 1, - anon_sym_LBRACK, - STATE(3368), 1, - sym_parameter_list, - STATE(3009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6107), 19, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10779), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6109), 30, + ACTIONS(9284), 21, 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, @@ -338862,86 +527353,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [50489] = 26, + [110347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + STATE(4591), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10905), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7249), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7251), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2953), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4048), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -338953,78 +527406,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [50598] = 28, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [110412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym_EQ, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7236), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, - anon_sym_AMP_AMP, - ACTIONS(7240), 1, - anon_sym_PIPE, - ACTIONS(7244), 1, - anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7254), 1, - anon_sym_QMARK, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_and, - ACTIONS(7262), 1, - anon_sym_bitor, - ACTIONS(7264), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(8614), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7248), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8616), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -339038,76 +527462,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50711] = 26, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110473] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3197), 1, + anon_sym_enum, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, sym_identifier, - ACTIONS(5703), 1, + ACTIONS(10678), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, - anon_sym_STAR, - ACTIONS(7276), 1, - anon_sym_AMP_AMP, - ACTIONS(7278), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(10682), 1, + anon_sym_typename, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2308), 1, + sym_type_specifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(8639), 1, sym__scope_resolution, - STATE(6812), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2898), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4053), 2, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -339121,62 +527557,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [50820] = 16, + [110586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(8665), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7250), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8667), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7256), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_COLON_RBRACK, + [110647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9011), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7248), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 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(6491), 27, + anon_sym_DOT, + ACTIONS(9013), 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_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339184,70 +527655,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [50909] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7256), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10942), 1, + anon_sym_LT, + STATE(3966), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 28, + anon_sym_DOT, + ACTIONS(9227), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339262,36 +527725,183 @@ 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, - [50994] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [110773] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5116), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10804), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6800), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [110838] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2938), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110951] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(9270), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -339304,7 +527914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 29, + ACTIONS(9272), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339313,9 +527923,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, @@ -339334,140 +527941,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51075] = 26, + anon_sym_DASH_GT_STAR, + [111026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(2803), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(2801), 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(7348), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7350), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6561), 1, - sym__declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2920), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4023), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [51184] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + anon_sym_COLON_RBRACK, + [111087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8665), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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(6491), 29, + anon_sym_DOT, + ACTIONS(8667), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -339487,104 +528051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51267] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, - anon_sym_STAR, - ACTIONS(7348), 1, - anon_sym_AMP_AMP, - ACTIONS(7350), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6561), 1, - sym__declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4023), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [51376] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [111148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7344), 1, - anon_sym_LBRACK, - STATE(3036), 1, - sym_new_declarator, - STATE(3508), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 19, + ACTIONS(8516), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339603,16 +528080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6156), 30, + ACTIONS(8518), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339634,25 +528112,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51449] = 10, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [111209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(8599), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(6929), 1, anon_sym___attribute, - ACTIONS(7372), 1, anon_sym_COLON, - ACTIONS(7374), 1, + anon_sym_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(8601), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - STATE(3155), 1, - sym__enum_base_clause, - STATE(3282), 1, - sym_enumerator_list, - STATE(3731), 1, - sym_attribute_specifier, - ACTIONS(6565), 16, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [111270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8595), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339667,12 +528192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 32, + ACTIONS(8597), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -339680,6 +528206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339691,87 +528218,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [51526] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [111331] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(4772), 1, sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6179), 1, + sym_type_specifier, + STATE(8584), 1, sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2905), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4052), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, + STATE(5891), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -339785,268 +528316,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [51635] = 52, + [111444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_COMMA, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7146), 1, + ACTIONS(9037), 20, anon_sym_DASH, - ACTIONS(7148), 1, anon_sym_PLUS, - ACTIONS(7150), 1, anon_sym_STAR, - ACTIONS(7152), 1, anon_sym_SLASH, - ACTIONS(7154), 1, anon_sym_PERCENT, - ACTIONS(7156), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, anon_sym_PIPE, - ACTIONS(7162), 1, anon_sym_CARET, - ACTIONS(7164), 1, anon_sym_AMP, - ACTIONS(7166), 1, - anon_sym_EQ_EQ, - ACTIONS(7168), 1, - anon_sym_BANG_EQ, - ACTIONS(7170), 1, anon_sym_GT, - ACTIONS(7172), 1, anon_sym_GT_EQ, - ACTIONS(7174), 1, anon_sym_LT_EQ, - ACTIONS(7176), 1, anon_sym_LT, - ACTIONS(7178), 1, anon_sym_LT_LT, - ACTIONS(7180), 1, anon_sym_GT_GT, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7184), 1, anon_sym_EQ, - ACTIONS(7186), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9039), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7188), 1, anon_sym_STAR_EQ, - ACTIONS(7190), 1, anon_sym_SLASH_EQ, - ACTIONS(7192), 1, anon_sym_PERCENT_EQ, - ACTIONS(7194), 1, anon_sym_PLUS_EQ, - ACTIONS(7196), 1, anon_sym_DASH_EQ, - ACTIONS(7198), 1, anon_sym_LT_LT_EQ, - ACTIONS(7200), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7202), 1, anon_sym_AMP_EQ, - ACTIONS(7204), 1, anon_sym_CARET_EQ, - ACTIONS(7206), 1, anon_sym_PIPE_EQ, - ACTIONS(7210), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7212), 1, - anon_sym_or, - ACTIONS(7214), 1, - anon_sym_and, - ACTIONS(7216), 1, anon_sym_bitor, - ACTIONS(7218), 1, - anon_sym_xor, - ACTIONS(7220), 1, anon_sym_bitand, - ACTIONS(7222), 1, anon_sym_not_eq, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7376), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7208), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [51796] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [111505] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3512), 1, + anon_sym_enum, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6025), 1, - sym__scope_resolution, - STATE(6367), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2902), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4055), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [51905] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(10733), 1, sym_identifier, - ACTIONS(5703), 1, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10739), 1, + anon_sym_typename, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2338), 1, + sym_type_specifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, + STATE(8624), 1, sym__scope_resolution, - STATE(6314), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2913), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4006), 2, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(3508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -340060,21 +528458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [52014] = 8, + [111618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(10209), 1, anon_sym_LPAREN2, - ACTIONS(7344), 1, + ACTIONS(10211), 1, anon_sym_LBRACK, - STATE(3011), 1, - sym_new_declarator, - STATE(3530), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 19, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340094,7 +528489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6113), 30, + ACTIONS(9832), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -340125,24 +528520,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [52087] = 10, + [111687] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - ACTIONS(7372), 1, - anon_sym_COLON, - ACTIONS(7374), 1, - anon_sym_LBRACE, - STATE(3177), 1, - sym__enum_base_clause, - STATE(3372), 1, - sym_enumerator_list, - STATE(3763), 1, - sym_attribute_specifier, - ACTIONS(6571), 16, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10413), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10781), 1, + anon_sym_AMP, + ACTIONS(10787), 1, + anon_sym_GT_EQ, + ACTIONS(10795), 1, + anon_sym_bitand, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10427), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10771), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10789), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10773), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10783), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10785), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [111780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10799), 1, + anon_sym_LT, + STATE(1868), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340153,23 +528612,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(6573), 32, + ACTIONS(9227), 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, @@ -340181,87 +528643,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52164] = 26, + anon_sym_DASH_GT, + [111845] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3197), 1, + anon_sym_enum, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, sym_identifier, - ACTIONS(6003), 1, + ACTIONS(10678), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, - anon_sym_STAR, - ACTIONS(7364), 1, - anon_sym_AMP_AMP, - ACTIONS(7366), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(10682), 1, + anon_sym_typename, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2185), 1, + sym_type_specifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, + STATE(8639), 1, sym__scope_resolution, - STATE(6685), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4049), 2, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_splice_expression, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -340275,267 +528738,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [52273] = 26, + [111958] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(10924), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(10928), 1, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + STATE(4243), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8311), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4048), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, + ACTIONS(10932), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [52382] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, - anon_sym_STAR, - ACTIONS(7276), 1, - anon_sym_AMP_AMP, - ACTIONS(7278), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6812), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, + ACTIONS(10934), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4053), 2, + STATE(6129), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + STATE(6140), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [52491] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, - anon_sym_AMP_AMP, - ACTIONS(7386), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7400), 1, - anon_sym_QMARK, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, - anon_sym_or, - ACTIONS(7406), 1, - anon_sym_and, - ACTIONS(7408), 1, - anon_sym_bitor, - ACTIONS(7410), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6986), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6988), 16, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6497), 13, anon_sym_COMMA, + anon_sym_RPAREN, 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, - [52603] = 6, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [112057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - STATE(3397), 2, + STATE(5724), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6251), 19, + ACTIONS(9086), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340554,17 +528844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6253), 31, + ACTIONS(9088), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340586,11 +528875,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, - [52671] = 3, + anon_sym_DASH_GT, + [112124] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2004), 1, + sym_type_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 20, + ACTIONS(8651), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340600,29 +528973,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5880), 34, + ACTIONS(8653), 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, anon_sym_STAR_EQ, @@ -340631,7 +529000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -340645,11 +529013,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52733] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [112298] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6876), 1, + sym_type_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 20, + ACTIONS(8655), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340659,29 +529115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5892), 34, + ACTIONS(8657), 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, anon_sym_STAR_EQ, @@ -340690,7 +529142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -340704,22 +529155,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52795] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [112472] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7416), 1, - anon_sym_LBRACK, - STATE(3558), 1, - sym_parameter_list, - STATE(3174), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6074), 20, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6659), 1, + sym_type_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9078), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340729,24 +529257,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(6076), 28, + ACTIONS(9080), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340754,6 +529284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -340768,14 +529299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [52867] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [112646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 20, + ACTIONS(2803), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340789,24 +529319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5026), 32, + ACTIONS(2801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340828,22 +529356,103 @@ 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, - [52931] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [112707] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LPAREN2, - ACTIONS(7414), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(3693), 1, + sym_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7416), 1, - anon_sym_LBRACK, - STATE(3558), 1, - sym_parameter_list, - STATE(3174), 2, + STATE(3105), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6034), 20, + ACTIONS(9211), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340853,24 +529462,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(6036), 28, + ACTIONS(9213), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340878,6 +529489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -340892,22 +529504,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [53003] = 8, + [112885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7412), 1, + ACTIONS(8618), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8620), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7416), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(3558), 1, - sym_parameter_list, - STATE(3174), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6162), 20, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [112946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5758), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340917,24 +529582,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6164), 28, + ACTIONS(9119), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340942,6 +529608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -340956,16 +529623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [53075] = 5, + [113013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7134), 1, - anon_sym_LBRACK_LBRACK, - STATE(3079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6211), 20, + ACTIONS(8606), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340975,27 +529636,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(6213), 31, + ACTIONS(8608), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341003,7 +529663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -341017,82 +529676,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [53141] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7424), 1, anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4986), 1, - sym__function_attributes_start, - STATE(5134), 1, - sym_ref_qualifier, - STATE(5604), 1, - sym_trailing_return_type, - STATE(6090), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, + anon_sym_GT2, + anon_sym_requires, + [113074] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4784), 1, + sym_primitive_type, + ACTIONS(4786), 1, + anon_sym_enum, + ACTIONS(4788), 1, + anon_sym_class, + ACTIONS(4790), 1, + anon_sym_struct, + ACTIONS(4792), 1, + anon_sym_union, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, + sym_auto, + ACTIONS(4798), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, + sym_template_type, + STATE(5495), 1, + sym_qualified_type_identifier, + STATE(6020), 1, + sym_decltype_auto, + STATE(6152), 1, + sym_type_specifier, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5469), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7288), 12, + STATE(5891), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5975), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -341104,17 +529765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [53257] = 6, + [113187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(10209), 1, anon_sym_LPAREN2, - STATE(3507), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 19, + ACTIONS(10211), 1, + anon_sym_LBRACK, + STATE(1869), 1, + sym_parameter_list, + STATE(4744), 1, + sym__function_declarator_seq, + ACTIONS(9840), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341134,7 +529796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6261), 31, + ACTIONS(9838), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341143,7 +529805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341166,204 +529827,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53325] = 7, + [113256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_const, - ACTIONS(5035), 1, - anon_sym_AMP, - ACTIONS(5028), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(5033), 8, + ACTIONS(8614), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5031), 18, - anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - ACTIONS(5026), 21, + ACTIONS(8616), 33, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53395] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [113317] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_namespace, - ACTIONS(6846), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3544), 1, anon_sym_enum, + ACTIONS(3546), 1, anon_sym_class, + ACTIONS(3548), 1, anon_sym_struct, + ACTIONS(3550), 1, anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(10707), 1, anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [53459] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7430), 1, - anon_sym_requires, - STATE(1683), 1, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3482), 1, sym_alignas_qualifier, - STATE(4957), 1, - sym__function_attributes_start, - STATE(5124), 1, - sym_ref_qualifier, - STATE(5818), 1, - sym_trailing_return_type, - STATE(6194), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7295), 2, + STATE(3629), 1, + sym_type_specifier, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5458), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7288), 12, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -341375,10 +529969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [53575] = 3, + [113430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 20, + ACTIONS(9082), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341392,26 +529986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5927), 34, + ACTIONS(9084), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341433,97 +530023,148 @@ 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, - [53637] = 30, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(8651), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7438), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4990), 1, - sym__function_attributes_start, - STATE(5120), 1, - sym_ref_qualifier, - STATE(6250), 1, - sym_trailing_return_type, - STATE(6337), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7435), 2, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5451), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, + anon_sym_requires, + ACTIONS(8653), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [53753] = 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [113552] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, + anon_sym_bitor, + ACTIONS(10967), 1, + anon_sym_bitand, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10947), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [113650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 20, + ACTIONS(8145), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341537,14 +530178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5860), 34, + ACTIONS(8140), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341554,8 +530194,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_COLON_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -341579,69 +530218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53815] = 3, + [113710] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 25, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(7441), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [53877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 20, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9252), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341655,26 +530251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5840), 34, + ACTIONS(9254), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341693,85 +530282,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [113784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8955), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8957), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [53939] = 30, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [113844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(8992), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8994), 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, - ACTIONS(7061), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [113904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7185), 7, anon_sym_AMP, - ACTIONS(7074), 1, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(7082), 1, + anon_sym___inline, + anon_sym_const, anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4991), 1, - sym__function_attributes_start, - STATE(5126), 1, - sym_ref_qualifier, - STATE(6120), 1, - sym_trailing_return_type, - STATE(6377), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5477), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, + ACTIONS(7183), 44, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_try, - ACTIONS(7288), 12, - anon_sym___extension__, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -341783,81 +530443,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54055] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7305), 1, - anon_sym_requires, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4945), 1, - sym__function_attributes_start, - STATE(5118), 1, - sym_ref_qualifier, - STATE(5580), 1, - sym_trailing_return_type, - STATE(6108), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - ACTIONS(7086), 2, anon_sym_final, anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5467), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(7288), 12, + anon_sym_LBRACK_COLON, + ACTIONS(6242), 39, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -341869,10 +530502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54171] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [114026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 12, + ACTIONS(6248), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341880,26 +530522,22 @@ 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(6844), 42, + anon_sym_LBRACK_COLON, + ACTIONS(6246), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -341924,36 +530562,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [54233] = 5, + [114086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4050), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4055), 1, - anon_sym_using, - ACTIONS(4057), 5, + ACTIONS(6252), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4059), 47, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6250), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -341977,28 +530618,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [54299] = 5, + [114146] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7456), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7454), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7452), 20, - anon_sym_BANG, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114250] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342013,19 +530730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7450), 31, + anon_sym_DOT, + ACTIONS(9832), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -342039,69 +530757,268 @@ 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, - [54365] = 13, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [114318] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(7000), 1, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4050), 1, - sym_template_argument_list, - ACTIONS(4184), 3, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10985), 1, anon_sym_RPAREN, + ACTIONS(10987), 1, + anon_sym_DASH, + ACTIONS(10989), 1, + anon_sym_PLUS, + ACTIONS(10991), 1, + anon_sym_STAR, + ACTIONS(10993), 1, + anon_sym_SLASH, + ACTIONS(10995), 1, + anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, + anon_sym_PIPE, + ACTIONS(11003), 1, + anon_sym_CARET, + ACTIONS(11005), 1, + anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, + anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, + anon_sym_LT_EQ, + ACTIONS(11017), 1, + anon_sym_LT, + ACTIONS(11019), 1, + anon_sym_LT_LT, + ACTIONS(11021), 1, + anon_sym_GT_GT, + ACTIONS(11023), 1, + anon_sym_EQ, + ACTIONS(11025), 1, + anon_sym_QMARK, + ACTIONS(11027), 1, + anon_sym_STAR_EQ, + ACTIONS(11029), 1, + anon_sym_SLASH_EQ, + ACTIONS(11031), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, + anon_sym_PLUS_EQ, + ACTIONS(11035), 1, + anon_sym_DASH_EQ, + ACTIONS(11037), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, + anon_sym_AMP_EQ, + ACTIONS(11043), 1, + anon_sym_CARET_EQ, + ACTIONS(11045), 1, + anon_sym_PIPE_EQ, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, + anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, + anon_sym_bitand, + ACTIONS(11059), 1, + anon_sym_not_eq, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [114474] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 6, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11063), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11087), 1, + anon_sym_QMARK, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 15, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [114584] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, anon_sym_STAR, + ACTIONS(9878), 1, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4159), 33, + ACTIONS(9880), 1, anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8407), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -342114,22 +531031,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [54447] = 6, + [114688] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(9344), 1, + anon_sym_EQ, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [114794] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, anon_sym_LPAREN2, - STATE(3563), 2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(5759), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6255), 19, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9286), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(9288), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [114866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9456), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342143,22 +531191,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(6257), 31, + ACTIONS(9458), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -342181,196 +531231,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54515] = 5, + [114926] = 6, ACTIONS(3), 1, sym_comment, - STATE(2592), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6340), 12, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11105), 1, + anon_sym_LT, + STATE(5480), 1, + sym_template_argument_list, + ACTIONS(9135), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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(9137), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6338), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [54581] = 5, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [114992] = 3, ACTIONS(3), 1, sym_comment, - STATE(2600), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6319), 12, + ACTIONS(8446), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8448), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6317), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [54647] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [115052] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(7382), 1, + ACTIONS(11112), 1, anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - ACTIONS(7386), 1, + ACTIONS(11116), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(11120), 1, anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, + ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, + ACTIONS(11130), 1, anon_sym_or, - ACTIONS(7406), 1, + ACTIONS(11132), 1, anon_sym_and, - ACTIONS(7408), 1, + ACTIONS(11134), 1, anon_sym_bitor, - ACTIONS(7410), 1, + ACTIONS(11136), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10089), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7013), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, + ACTIONS(11118), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7398), 2, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, + ACTIONS(11122), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7394), 3, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 18, + ACTIONS(10091), 16, 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_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, + [115156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10247), 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, @@ -342382,13 +531452,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(10249), 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, - [54755] = 3, + anon_sym_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, + [115216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 20, + ACTIONS(8689), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342402,14 +531501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5824), 34, + ACTIONS(8691), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342419,9 +531518,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, @@ -342444,74 +531541,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54817] = 26, + [115276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(8705), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(6393), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7382), 1, + anon_sym_DASH_GT, + ACTIONS(8707), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, anon_sym_AMP_AMP, - ACTIONS(7386), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7402), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, - anon_sym_or, - ACTIONS(7406), 1, - anon_sym_and, - ACTIONS(7408), 1, anon_sym_bitor, - ACTIONS(7410), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7017), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + anon_sym_DASH_GT_STAR, + [115336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8731), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8733), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -342526,55 +531647,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [54925] = 11, + anon_sym_LT_EQ_GT, + anon_sym_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, + [115396] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7451), 1, + sym__function_attributes_start, + STATE(7582), 1, + sym_ref_qualifier, + STATE(8483), 1, + sym__function_attributes_end, + STATE(8615), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6113), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7815), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7380), 3, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9244), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 15, - 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___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 27, + ACTIONS(9246), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -342582,7 +531792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -342593,56 +531802,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [55003] = 12, + anon_sym_GT2, + [115584] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9252), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 27, + ACTIONS(9254), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -342650,7 +531856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -342661,57 +531866,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [55083] = 13, + anon_sym_GT2, + [115658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(11142), 1, + anon_sym_LT, + STATE(2859), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -342730,16 +531922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [55165] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [115722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7464), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7462), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7460), 20, - anon_sym_BANG, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9848), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342749,59 +531947,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7458), 31, + anon_sym_DOT, + ACTIONS(9846), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [55231] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [115790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - STATE(3398), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 19, + ACTIONS(9308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342815,22 +532004,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(6181), 31, + ACTIONS(9310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -342853,229 +532044,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [55299] = 5, + [115850] = 25, ACTIONS(3), 1, sym_comment, - STATE(2602), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6336), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10582), 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(6334), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(11099), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55365] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2589), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6348), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6346), 39, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55431] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2606), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6344), 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(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, + anon_sym_or, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(10123), 2, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6342), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6752), 1, - anon_sym_decltype, - ACTIONS(7358), 1, - sym_auto, - STATE(3450), 1, - sym_decltype_auto, - ACTIONS(5661), 20, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5663), 31, + ACTIONS(10125), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343089,30 +532122,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [55565] = 8, + [115954] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7468), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - STATE(3138), 1, - sym_new_declarator, - STATE(3702), 2, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(5759), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 20, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343132,8 +532159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6080), 28, + ACTIONS(9292), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -343159,82 +532185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [55637] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2610), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6278), 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(6276), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55703] = 7, + [116026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4938), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_LT, - STATE(3176), 1, - sym_template_argument_list, - ACTIONS(4940), 18, + ACTIONS(9308), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343245,25 +532200,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + ACTIONS(9310), 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, @@ -343285,144 +532242,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55773] = 5, + anon_sym_DASH_GT, + [116086] = 25, ACTIONS(3), 1, sym_comment, - STATE(2598), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6356), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10582), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6354), 39, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55839] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2615), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6294), 12, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, + anon_sym_or, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(9344), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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(6292), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55905] = 8, + [116190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8835), 1, anon_sym_LPAREN2, - ACTIONS(7468), 1, + ACTIONS(8838), 1, anon_sym_LBRACK, - STATE(3141), 1, - sym_new_declarator, - STATE(3637), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 20, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343432,24 +532341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6113), 28, + ACTIONS(5253), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343457,6 +532367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -343471,103 +532382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [55977] = 30, + [116256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, + ACTIONS(6515), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4985), 1, - sym__function_attributes_start, - STATE(5132), 1, - sym_ref_qualifier, - STATE(5838), 1, - sym_trailing_return_type, - STATE(6236), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5452), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_RPAREN, + ACTIONS(8835), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [56093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7472), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3947), 20, - anon_sym_BANG, + ACTIONS(8838), 1, + anon_sym_LBRACK, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343582,19 +532406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(3945), 31, + anon_sym_DOT, + ACTIONS(5253), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -343608,93 +532434,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [56159] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [116322] = 8, ACTIONS(3), 1, sym_comment, - STATE(2609), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(5592), 1, + sym_new_declarator, + STATE(5854), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6315), 12, + 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(8905), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6313), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [56225] = 8, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [116392] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, + ACTIONS(2738), 1, anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(11149), 1, anon_sym_LPAREN2, - ACTIONS(7468), 1, + ACTIONS(11151), 1, anon_sym_LBRACK, - STATE(3142), 1, + STATE(5496), 1, sym_new_declarator, - STATE(3629), 2, + STATE(6019), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6150), 20, + ACTIONS(8841), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343704,24 +532528,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(6152), 28, + anon_sym_DASH_GT, + ACTIONS(8843), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343729,64 +532551,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [56297] = 5, + anon_sym_DASH_GT_STAR, + [116462] = 26, ACTIONS(3), 1, sym_comment, - STATE(2591), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6274), 12, + ACTIONS(10176), 1, + anon_sym_EQ, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [116568] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, anon_sym_STAR, + ACTIONS(9896), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6272), 39, + ACTIONS(9898), 1, anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -343799,147 +532725,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [56363] = 8, + [116672] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7468), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - STATE(3143), 1, - sym_new_declarator, - STATE(3687), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 20, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6156), 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(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, + ACTIONS(11153), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [56435] = 5, + [116828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7480), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7478), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7476), 20, - anon_sym_BANG, + ACTIONS(7546), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7474), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7544), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [56501] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [116888] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7488), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7486), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7484), 20, - anon_sym_BANG, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8644), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8831), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343953,20 +532983,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7482), 31, + ACTIONS(8829), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -343980,188 +533015,41 @@ 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, - [56567] = 4, + [117052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7490), 1, - anon_sym_typedef, - ACTIONS(2561), 6, + ACTIONS(6256), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [56631] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4960), 1, - sym__function_attributes_start, - STATE(5090), 1, - sym_ref_qualifier, - STATE(6094), 1, - sym_trailing_return_type, - STATE(6300), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5483), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [56747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7496), 1, - anon_sym_typedef, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -344185,28 +533073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [56811] = 6, + [117112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3468), 1, - sym_attribute_specifier, - ACTIONS(6342), 20, + ACTIONS(9358), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344216,25 +533093,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(6344), 31, + anon_sym_DASH_GT, + ACTIONS(9360), 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, @@ -344244,6 +533122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -344257,12 +533136,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, - [56879] = 3, + anon_sym_DASH_GT_STAR, + [117172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 12, + ACTIONS(6260), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344270,26 +533148,22 @@ 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(2571), 42, + anon_sym_LBRACK_COLON, + ACTIONS(6258), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -344314,35 +533188,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [56941] = 4, + [117232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7498), 1, - anon_sym_friend, - ACTIONS(2561), 6, + ACTIONS(6264), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6262), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -344366,148 +533244,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [57005] = 6, + [117292] = 26, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5109), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6015), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5212), 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, + ACTIONS(10184), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5215), 37, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [57073] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7382), 1, + ACTIONS(11069), 1, anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, + ACTIONS(11071), 1, anon_sym_AMP_AMP, - ACTIONS(7386), 1, + ACTIONS(11073), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(11077), 1, anon_sym_AMP, - ACTIONS(7396), 1, + ACTIONS(11083), 1, anon_sym_GT_EQ, - ACTIONS(7402), 1, + ACTIONS(11089), 1, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, + ACTIONS(11091), 1, anon_sym_or, - ACTIONS(7406), 1, + ACTIONS(11093), 1, anon_sym_and, - ACTIONS(7408), 1, + ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(7410), 1, + ACTIONS(11097), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7009), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, + ACTIONS(11075), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7398), 2, + ACTIONS(11085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, + ACTIONS(11079), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7394), 3, + ACTIONS(11081), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 18, + ACTIONS(10186), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344522,16 +533331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [57181] = 6, + [117398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3509), 1, - sym_attribute_specifier, - ACTIONS(6354), 20, + ACTIONS(8671), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344541,27 +533344,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(6356), 31, + anon_sym_DASH_GT, + ACTIONS(8673), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344569,6 +533373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -344582,18 +533387,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, - [57249] = 6, + anon_sym_DASH_GT_STAR, + [117458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3511), 1, - sym_attribute_specifier, - ACTIONS(6272), 20, + ACTIONS(8675), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344603,27 +533401,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(6274), 31, + anon_sym_DASH_GT, + ACTIONS(8677), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344631,6 +533430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -344644,78 +533444,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [57317] = 4, + anon_sym_DASH_GT_STAR, + [117518] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_namespace, - ACTIONS(6846), 6, - anon_sym_LPAREN2, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(8307), 1, anon_sym_STAR, + ACTIONS(11155), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11159), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 47, + ACTIONS(11161), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(11163), 1, + anon_sym_EQ, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5185), 1, + sym_parameter_list, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8611), 1, + sym__declarator, + STATE(8846), 1, + sym__abstract_declarator, + STATE(9000), 1, + sym_abstract_reference_declarator, + STATE(9736), 1, + sym_variadic_declarator, + STATE(9741), 1, + sym_variadic_reference_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [57381] = 6, + ACTIONS(11157), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9025), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8389), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3515), 1, - sym_attribute_specifier, - ACTIONS(6284), 20, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11165), 1, + anon_sym_LT, + STATE(5480), 1, + sym_template_argument_list, + ACTIONS(9177), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344727,7 +533553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -344736,7 +533561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6286), 31, + ACTIONS(9179), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -344744,7 +533569,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, @@ -344768,139 +533592,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [57449] = 6, + [117704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3516), 1, - sym_attribute_specifier, - ACTIONS(6288), 20, + ACTIONS(9007), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6290), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9009), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [57517] = 28, + anon_sym_COLON_RBRACK, + [117764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, - anon_sym_AMP_AMP, - ACTIONS(7386), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7400), 1, - anon_sym_QMARK, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, - anon_sym_or, - ACTIONS(7406), 1, - anon_sym_and, - ACTIONS(7408), 1, - anon_sym_bitor, - ACTIONS(7410), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6643), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + ACTIONS(8693), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 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(8695), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -344914,118 +533698,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [57629] = 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, + [117824] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3953), 48, + ACTIONS(9999), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10003), 1, anon_sym___attribute__, + ACTIONS(10006), 1, anon_sym___attribute, - anon_sym_using, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(10012), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10826), 1, + anon_sym_requires, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7455), 1, + sym__function_attributes_start, + STATE(7566), 1, + sym_ref_qualifier, + STATE(8489), 1, + sym__function_attributes_end, + STATE(8562), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [57691] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_LT, - ACTIONS(7504), 1, - anon_sym_EQ, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(7502), 2, + ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6113), 3, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 6, - anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4159), 34, - anon_sym_AMP, + anon_sym_GT2, + STATE(7801), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -345037,77 +533790,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [57773] = 24, + [117938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7384), 1, - anon_sym_AMP_AMP, - ACTIONS(7386), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7406), 1, - anon_sym_and, - ACTIONS(7408), 1, - anon_sym_bitor, - ACTIONS(7410), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(9440), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 3, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_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, @@ -345122,70 +533839,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [57877] = 22, + anon_sym_LT_EQ_GT, + anon_sym_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, + [117998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7386), 1, - anon_sym_PIPE, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7408), 1, - anon_sym_bitor, - ACTIONS(7410), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(9286), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 4, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 20, + anon_sym_xor, + ACTIONS(9288), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345200,67 +533904,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [57977] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, anon_sym_LT_EQ_GT, - ACTIONS(7410), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7378), 2, + [118070] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11168), 1, + anon_sym_LT, + STATE(1898), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 5, - anon_sym_PIPE, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 21, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345275,67 +533961,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [58073] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7390), 1, - anon_sym_AMP, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, anon_sym_LT_EQ_GT, - ACTIONS(7410), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7378), 2, + anon_sym_DASH_GT_STAR, + [118134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 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(6489), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 21, + anon_sym_DOT, + ACTIONS(6228), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345343,71 +534012,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - [58167] = 17, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [118196] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10442), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7464), 1, + sym__function_attributes_start, + STATE(7557), 1, + sym_ref_qualifier, + STATE(8423), 1, + sym_trailing_return_type, + STATE(8501), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6113), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7806), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118310] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7378), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 8, + ACTIONS(9282), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 22, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345422,63 +534172,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [58257] = 16, + anon_sym_not_eq, + [118386] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_GT_EQ, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(9282), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7394), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 25, + ACTIONS(9284), 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_SEMI, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345493,148 +534236,283 @@ 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, - [58345] = 14, + [118460] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118564] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118668] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7402), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10431), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7378), 2, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(6489), 11, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, - anon_sym___attribute, + ACTIONS(11019), 1, + anon_sym_LT_LT, + ACTIONS(11021), 1, + anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6491), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, - [58429] = 4, + ACTIONS(11173), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [118824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7506), 1, - anon_sym_friend, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6748), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [58493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7508), 1, - anon_sym_LBRACK_LBRACK, - STATE(3079), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2039), 20, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6753), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345644,27 +534522,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6267), 31, + ACTIONS(6758), 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, @@ -345672,7 +534548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -345686,82 +534561,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58559] = 30, + anon_sym_DASH_GT, + anon_sym_GT2, + [118890] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9904), 1, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7300), 1, - anon_sym___asm, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(1683), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, sym_alignas_qualifier, - STATE(4947), 1, - sym__function_attributes_start, - STATE(5150), 1, - sym_ref_qualifier, - STATE(5838), 1, - sym_trailing_return_type, - STATE(5981), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7295), 2, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8652), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(6842), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5460), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7288), 12, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -345773,361 +534642,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [58675] = 30, + [118994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9078), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(7421), 1, anon_sym___attribute, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4948), 1, - sym__function_attributes_start, - STATE(5064), 1, - sym_ref_qualifier, - STATE(6094), 1, - sym_trailing_return_type, - STATE(6160), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5476), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, + anon_sym_requires, + ACTIONS(9080), 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_EQ, - anon_sym_GT2, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [58791] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7300), 1, - anon_sym___asm, - ACTIONS(7430), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4949), 1, - sym__function_attributes_start, - STATE(5071), 1, - sym_ref_qualifier, - STATE(5818), 1, - sym_trailing_return_type, - STATE(5988), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7297), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5486), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_CARET, + anon_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_try, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [58907] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7513), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4950), 1, - sym__function_attributes_start, - STATE(5074), 1, - sym_ref_qualifier, - STATE(6120), 1, - sym_trailing_return_type, - STATE(6164), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5468), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [59023] = 6, + anon_sym_COLON_RBRACK, + [119054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3532), 1, - sym_attribute_specifier, - ACTIONS(6317), 20, + ACTIONS(9082), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6319), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9084), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [59091] = 4, + anon_sym_COLON_RBRACK, + [119114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, - anon_sym_namespace, - ACTIONS(6846), 6, + ACTIONS(6790), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6792), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 47, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -346141,28 +534803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [59155] = 6, + 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, + [119174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3534), 1, - sym_attribute_specifier, - ACTIONS(6334), 20, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11175), 1, + anon_sym_LT, + STATE(5429), 1, + sym_template_argument_list, + ACTIONS(9177), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346172,18 +534832,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(6336), 31, + ACTIONS(9179), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -346191,8 +534848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346200,6 +534858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -346214,17 +534873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [59223] = 6, + [119240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3535), 1, - sym_attribute_specifier, - ACTIONS(6276), 20, + ACTIONS(11142), 1, + anon_sym_LT, + STATE(2966), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346234,26 +534890,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6278), 31, + anon_sym_DASH_GT, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -346262,6 +534917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -346275,78 +534931,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, - [59291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7517), 1, - anon_sym_friend, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [59355] = 6, + anon_sym_DASH_GT_STAR, + [119304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3537), 1, - sym_attribute_specifier, - ACTIONS(6292), 20, + ACTIONS(11178), 1, + sym_literal_suffix, + ACTIONS(5260), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346356,26 +534947,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6294), 31, + anon_sym_DASH_GT, + ACTIONS(5253), 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, @@ -346384,55 +534981,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [59423] = 4, + anon_sym_DASH_GT_STAR, + [119366] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 1, - anon_sym_namespace, - ACTIONS(6846), 6, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, anon_sym_STAR, + ACTIONS(9890), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 47, + ACTIONS(9892), 1, anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -346445,88 +535069,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [59487] = 26, + [119470] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7382), 1, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, + anon_sym_DASH, + ACTIONS(10989), 1, + anon_sym_PLUS, + ACTIONS(10991), 1, + anon_sym_STAR, + ACTIONS(10993), 1, + anon_sym_SLASH, + ACTIONS(10995), 1, + anon_sym_PERCENT, + ACTIONS(10997), 1, anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, + ACTIONS(10999), 1, anon_sym_AMP_AMP, - ACTIONS(7386), 1, + ACTIONS(11001), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(11003), 1, + anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, - ACTIONS(7396), 1, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, + anon_sym_GT, + ACTIONS(11013), 1, anon_sym_GT_EQ, - ACTIONS(7402), 1, + ACTIONS(11015), 1, + anon_sym_LT_EQ, + ACTIONS(11017), 1, + anon_sym_LT, + ACTIONS(11019), 1, + anon_sym_LT_LT, + ACTIONS(11021), 1, + anon_sym_GT_GT, + ACTIONS(11023), 1, + anon_sym_EQ, + ACTIONS(11025), 1, + anon_sym_QMARK, + ACTIONS(11027), 1, + anon_sym_STAR_EQ, + ACTIONS(11029), 1, + anon_sym_SLASH_EQ, + ACTIONS(11031), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, + anon_sym_PLUS_EQ, + ACTIONS(11035), 1, + anon_sym_DASH_EQ, + ACTIONS(11037), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, + anon_sym_AMP_EQ, + ACTIONS(11043), 1, + anon_sym_CARET_EQ, + ACTIONS(11045), 1, + anon_sym_PIPE_EQ, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, + ACTIONS(11049), 1, anon_sym_or, - ACTIONS(7406), 1, + ACTIONS(11051), 1, anon_sym_and, - ACTIONS(7408), 1, + ACTIONS(11053), 1, anon_sym_bitor, - ACTIONS(7410), 1, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(11059), 1, + anon_sym_not_eq, + ACTIONS(11180), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, sym_argument_list, - STATE(2476), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6956), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + [119626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8831), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7398), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7394), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8829), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -346541,170 +535223,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [59595] = 4, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, - anon_sym_friend, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, + ACTIONS(8382), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [59659] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2556), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6286), 12, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8384), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6284), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [59725] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [119746] = 25, ACTIONS(3), 1, sym_comment, - STATE(2560), 1, - sym_attribute_specifier, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6290), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, anon_sym_STAR, + ACTIONS(9890), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6288), 39, + ACTIONS(9892), 1, anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8407), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -346717,22 +535367,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [59791] = 5, + [119850] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(9282), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [119952] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7523), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3921), 20, - anon_sym_BANG, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + ACTIONS(11151), 1, + anon_sym_LBRACK, + STATE(5563), 1, + sym_new_declarator, + STATE(5986), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346747,19 +535474,18 @@ 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(3919), 31, + ACTIONS(8868), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -346770,177 +535496,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [59857] = 30, + [120022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7733), 1, + anon_sym_STAR, + ACTIONS(7735), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(7737), 1, anon_sym_AMP, - ACTIONS(7074), 1, + ACTIONS(7745), 1, anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4937), 1, - sym__function_attributes_start, - STATE(5065), 1, - sym_ref_qualifier, - STATE(6193), 1, - sym_trailing_return_type, - STATE(6323), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, + STATE(1971), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6038), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5462), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 5, + anon_sym_requires, + ACTIONS(9072), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [59973] = 28, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120100] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, - anon_sym_AMP_AMP, - ACTIONS(7386), 1, + ACTIONS(11073), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(11077), 1, anon_sym_AMP, - ACTIONS(7396), 1, + ACTIONS(11083), 1, anon_sym_GT_EQ, - ACTIONS(7400), 1, - anon_sym_QMARK, - ACTIONS(7402), 1, + ACTIONS(11089), 1, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, - anon_sym_or, - ACTIONS(7406), 1, - anon_sym_and, - ACTIONS(7408), 1, + ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(7410), 1, + ACTIONS(11097), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6974), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, + ACTIONS(11075), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7398), 2, + ACTIONS(11085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(9282), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, + ACTIONS(11079), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7394), 3, + ACTIONS(11081), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6978), 16, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -346954,135 +535649,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [60085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7527), 1, - anon_sym_friend, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [60149] = 26, + [120198] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7382), 1, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10305), 1, anon_sym_PIPE_PIPE, - ACTIONS(7384), 1, + ACTIONS(10307), 1, anon_sym_AMP_AMP, - ACTIONS(7386), 1, + ACTIONS(10309), 1, anon_sym_PIPE, - ACTIONS(7390), 1, + ACTIONS(10313), 1, anon_sym_AMP, - ACTIONS(7396), 1, + ACTIONS(10319), 1, anon_sym_GT_EQ, - ACTIONS(7402), 1, + ACTIONS(10323), 1, anon_sym_LT_EQ_GT, - ACTIONS(7404), 1, + ACTIONS(10325), 1, anon_sym_or, - ACTIONS(7406), 1, + ACTIONS(10327), 1, anon_sym_and, - ACTIONS(7408), 1, + ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(7410), 1, + ACTIONS(10331), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(10455), 1, + anon_sym_QMARK, + ACTIONS(10482), 1, + anon_sym_RPAREN, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11184), 1, + anon_sym_EQ, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6982), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7378), 2, + ACTIONS(10301), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7388), 2, + ACTIONS(10311), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7398), 2, + ACTIONS(10321), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7380), 3, + ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7392), 3, + ACTIONS(10315), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7394), 3, + ACTIONS(10317), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + ACTIONS(10411), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -347096,106 +535733,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [60257] = 4, + [120312] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, - anon_sym_friend, - ACTIONS(2561), 6, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(10973), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [60321] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3540), 1, - sym_attribute_specifier, - ACTIONS(6346), 20, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6348), 31, + ACTIONS(9284), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347203,61 +535799,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + [120406] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11097), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [60389] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3542), 1, - sym_attribute_specifier, - ACTIONS(6313), 20, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6315), 31, + ACTIONS(9284), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347265,96 +535872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [60457] = 4, + [120498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - anon_sym_friend, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6233), 2, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [60521] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7412), 1, - anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7416), 1, - anon_sym_LBRACK, - STATE(3558), 1, - sym_parameter_list, - STATE(3174), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6044), 20, + anon_sym_LBRACE, + ACTIONS(6235), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347364,24 +535896,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(6046), 28, + ACTIONS(6228), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347389,6 +535923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -347403,172 +535938,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [60593] = 6, + [120560] = 6, ACTIONS(3), 1, sym_comment, - STATE(2624), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3641), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3645), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5788), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6753), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5790), 24, + ACTIONS(6758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60661] = 5, + [120626] = 25, ACTIONS(3), 1, sym_comment, - STATE(2864), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7112), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 16, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120730] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5663), 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, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, anon_sym_or, + ACTIONS(11051), 1, anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, + ACTIONS(11186), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60727] = 8, + [120886] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7412), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7414), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7416), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - STATE(3558), 1, - sym_parameter_list, - STATE(3174), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6107), 20, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6109), 28, + ACTIONS(9284), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347576,114 +536244,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [60799] = 4, + [120974] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 1, - anon_sym_typedef, - ACTIONS(2561), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2571), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(53), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, + ACTIONS(1924), 1, anon_sym_operator, - [60863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3983), 6, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, anon_sym_STAR, + ACTIONS(9914), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3981), 48, + ACTIONS(9916), 1, anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8644), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_using, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -347696,60 +536332,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [60925] = 6, + [121078] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym___attribute__, - ACTIONS(6838), 1, - anon_sym___attribute, - STATE(3462), 1, - sym_attribute_specifier, - ACTIONS(6338), 20, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11081), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6340), 31, + ACTIONS(9284), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347757,84 +536392,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [60993] = 22, + [121164] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(11077), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11083), 1, anon_sym_GT_EQ, - ACTIONS(7553), 1, + ACTIONS(11087), 1, + anon_sym_QMARK, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(7555), 1, + ACTIONS(11097), 1, anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, + STATE(5762), 1, sym_argument_list, - STATE(3399), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, + ACTIONS(11075), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6489), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7537), 3, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11079), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11081), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10190), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -347848,15 +536484,10 @@ 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, - [61092] = 5, + [121274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_LT, - STATE(2607), 1, - sym_template_argument_list, - ACTIONS(6495), 18, + ACTIONS(8721), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347867,6 +536498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, @@ -347875,18 +536507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6497), 33, + anon_sym_DASH_GT, + ACTIONS(8723), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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, @@ -347908,17 +536540,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [121334] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10003), 1, + anon_sym___attribute__, + ACTIONS(10006), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, anon_sym_DASH_GT, - [61157] = 6, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(7483), 1, + sym__function_attributes_start, + STATE(7576), 1, + sym_ref_qualifier, + STATE(8458), 1, + sym_trailing_return_type, + STATE(8542), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6113), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7846), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7562), 1, - anon_sym_LT, - STATE(3246), 1, - sym_template_argument_list, - ACTIONS(6327), 18, + ACTIONS(10584), 1, + anon_sym_LBRACK, + STATE(5497), 1, + sym_new_declarator, + ACTIONS(9173), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347928,26 +536642,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(6329), 32, + ACTIONS(9175), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347955,7 +536669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -347969,163 +536682,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61224] = 9, + anon_sym_DASH_GT, + anon_sym_GT2, + [121512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6399), 17, + ACTIONS(7629), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6401), 29, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7627), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [61297] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7557), 1, anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7535), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 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_COLON_RBRACK, + [121572] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, anon_sym_LT, - ACTIONS(6489), 7, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(6753), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6491), 22, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6758), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [61386] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6385), 17, + anon_sym_COLON_RBRACK, + [121640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9440), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348139,19 +536819,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6387), 27, + anon_sym_DOT, + ACTIONS(9442), 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, @@ -348170,212 +536855,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [61461] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [121700] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, anon_sym_AMP, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121804] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10431), 1, anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, - anon_sym_or, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, + anon_sym_PIPE, + ACTIONS(11003), 1, + anon_sym_CARET, + ACTIONS(11005), 1, + anon_sym_AMP, + ACTIONS(11007), 1, anon_sym_EQ_EQ, + ACTIONS(11009), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(7015), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11019), 1, + anon_sym_LT_LT, + ACTIONS(11021), 1, + anon_sym_GT_GT, + ACTIONS(11023), 1, + anon_sym_EQ, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [61568] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6974), 1, - anon_sym_EQ, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7186), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, - anon_sym_AMP, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, + ACTIONS(11049), 1, anon_sym_or, - ACTIONS(7571), 1, + ACTIONS(11051), 1, anon_sym_and, - STATE(3396), 1, + ACTIONS(11053), 1, + anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, + anon_sym_bitand, + ACTIONS(11059), 1, + anon_sym_not_eq, + ACTIONS(11188), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7535), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 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(6978), 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, - [61679] = 6, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [121960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4938), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6746), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6751), 45, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4931), 39, + anon_sym_try, + anon_sym_requires, + [122020] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(9965), 1, + anon_sym_decltype, + ACTIONS(11190), 1, + sym_auto, + STATE(5972), 1, + sym_decltype_auto, + ACTIONS(6798), 7, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6800), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -348389,21 +537154,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_template, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [122088] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, anon_sym_operator, - [61746] = 5, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8652), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [122192] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_LT, - STATE(3006), 1, - sym_template_argument_list, - ACTIONS(6495), 19, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + ACTIONS(11151), 1, + anon_sym_LBRACK, + STATE(5457), 1, + sym_new_declarator, + STATE(6014), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348414,26 +537265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6497), 32, + ACTIONS(8806), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348445,70 +537291,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61811] = 16, + [122262] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11089), 1, anon_sym_LT_EQ_GT, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, + STATE(5762), 1, sym_argument_list, - STATE(3399), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7551), 2, + ACTIONS(11085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7547), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 7, + ACTIONS(9282), 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(6491), 25, + ACTIONS(9284), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348526,192 +537370,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [61898] = 14, + [122344] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(5276), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8835), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(8838), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(5278), 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(5260), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 26, + anon_sym_DOT, + ACTIONS(5253), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_GT_STAR, - [61981] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122414] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, + ACTIONS(10431), 1, anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(7537), 3, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(6489), 12, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6491), 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, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [62060] = 13, + ACTIONS(11192), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [122570] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, sym_argument_list, - STATE(3399), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 10, + ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 27, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348730,228 +537603,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [62141] = 6, + [122648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7576), 1, - anon_sym_LT, - STATE(3246), 1, - sym_template_argument_list, - ACTIONS(6296), 18, + ACTIONS(9093), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6298), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9095), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62208] = 5, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [122708] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_LT, - STATE(1740), 1, - sym_template_argument_list, - ACTIONS(6495), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, + anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6497), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62273] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6982), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, - anon_sym_AMP, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, - anon_sym_or, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, + ACTIONS(11194), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7535), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 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(6984), 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, - [62380] = 6, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [122864] = 3, ACTIONS(3), 1, sym_comment, - STATE(2624), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3641), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3645), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5788), 16, + ACTIONS(9097), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -348960,6 +537778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -348967,11 +537788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5790), 25, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9099), 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, @@ -348984,152 +537812,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62447] = 10, + anon_sym_COLON_RBRACK, + [122924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6415), 17, + ACTIONS(9101), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6417), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9103), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [62522] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6419), 17, + anon_sym_COLON_RBRACK, + [122984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9109), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6421), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9111), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [62597] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [123044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349150,7 +537960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6376), 32, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349183,224 +537993,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62660] = 10, + [123104] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, + ACTIONS(10431), 1, anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6451), 17, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, + anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6453), 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, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_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, - [62735] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7017), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, - anon_sym_AMP, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, + ACTIONS(11049), 1, anon_sym_or, - ACTIONS(7571), 1, + ACTIONS(11051), 1, anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7535), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, + ACTIONS(11053), 1, + anon_sym_bitor, + ACTIONS(11055), 1, anon_sym_xor, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7545), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11057), 1, + anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, - ACTIONS(7547), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7019), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11196), 1, 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, - [62842] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7226), 2, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6423), 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(6425), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [62915] = 5, + [123260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_LT, - STATE(1576), 1, - sym_template_argument_list, - ACTIONS(6495), 17, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349411,14 +538112,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, - ACTIONS(6497), 34, + anon_sym_DASH_GT, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349428,9 +538132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349452,39 +538154,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, - [62980] = 3, + anon_sym_DASH_GT_STAR, + [123320] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 6, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6933), 47, + ACTIONS(9822), 1, anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8467), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -349497,28 +538234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [63041] = 5, + [123424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_LBRACK, - STATE(3223), 1, - sym_new_declarator, - ACTIONS(6280), 19, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349532,13 +538251,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(6282), 32, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349548,7 +538268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349571,17 +538291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63106] = 6, + [123484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - STATE(3628), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6251), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349591,25 +538304,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(6253), 29, + anon_sym_DASH_GT, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -349617,6 +538333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -349630,20 +538347,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, - [63173] = 7, + anon_sym_DASH_GT_STAR, + [123544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, - anon_sym_decltype, - ACTIONS(7581), 1, - sym_auto, - STATE(3835), 1, - sym_decltype_auto, - ACTIONS(5661), 16, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349657,10 +538365,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(5663), 33, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349670,8 +538382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349683,86 +538394,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63242] = 28, + [123604] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 1, - anon_sym_EQ, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7144), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(5311), 1, anon_sym_LBRACK, - ACTIONS(7186), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, - anon_sym_AMP, - ACTIONS(7549), 1, - anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(8424), 1, + anon_sym_STAR, + ACTIONS(11155), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11159), 1, anon_sym_AMP_AMP, - ACTIONS(7569), 1, - anon_sym_or, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11161), 1, + anon_sym_AMP, + ACTIONS(11198), 1, + anon_sym_EQ, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5256), 1, + sym_parameter_list, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8633), 1, + sym__declarator, + STATE(8829), 1, + sym__abstract_declarator, + STATE(8961), 1, + sym_abstract_reference_declarator, + STATE(9736), 1, + sym_variadic_declarator, + STATE(9741), 1, + sym_variadic_reference_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9025), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8389), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [123724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7551), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7537), 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6988), 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(9406), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_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, @@ -349776,18 +538541,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, - [63353] = 6, + [123784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - STATE(3685), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 20, + ACTIONS(11142), 1, + anon_sym_LT, + STATE(5009), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349797,24 +538566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6261), 29, + anon_sym_DASH_GT, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -349823,6 +538593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -349836,80 +538607,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [63420] = 6, + anon_sym_DASH_GT_STAR, + [123848] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - STATE(3581), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6255), 20, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, anon_sym_PIPE, + ACTIONS(11003), 1, anon_sym_CARET, + ACTIONS(11005), 1, anon_sym_AMP, + ACTIONS(11007), 1, + anon_sym_EQ_EQ, + ACTIONS(11009), 1, + anon_sym_BANG_EQ, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, + ACTIONS(11019), 1, anon_sym_LT_LT, + ACTIONS(11021), 1, anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6257), 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_LBRACK, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, anon_sym_bitand, + ACTIONS(11059), 1, anon_sym_not_eq, + ACTIONS(11200), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [63487] = 6, + [124004] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - STATE(3602), 2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(5759), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 20, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9232), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349929,15 +538752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6181), 29, + ACTIONS(9234), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -349955,83 +538776,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [63554] = 3, + [124078] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 6, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6844), 47, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 10, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [63615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7039), 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350043,45 +538837,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7037), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [63676] = 4, + [124158] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 19, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9860), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350091,28 +538865,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6376), 33, + ACTIONS(9858), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350120,7 +538890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -350135,28 +538904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63739] = 7, + anon_sym_GT2, + [124226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 1, - sym_identifier, - STATE(3172), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5969), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5421), 18, + ACTIONS(8400), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -350165,8 +538917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -350175,9 +538926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5419), 21, + ACTIONS(8402), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -350190,6 +538942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -350197,14 +538951,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63808] = 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_COLON_RBRACK, + [124286] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_LT, - STATE(1577), 1, - sym_template_argument_list, - ACTIONS(6495), 18, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8407), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124390] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + ACTIONS(11151), 1, + anon_sym_LBRACK, + STATE(5579), 1, + sym_new_declarator, + STATE(5979), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350215,26 +539066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6497), 33, + anon_sym_DASH_GT, + ACTIONS(8905), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350246,21 +539092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [63873] = 3, + anon_sym_DASH_GT_STAR, + [124460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 21, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8838), 1, + anon_sym_LBRACK, + ACTIONS(8835), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350270,29 +539123,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5880), 32, + anon_sym_DASH_GT, + ACTIONS(5253), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350300,6 +539148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -350313,71 +539162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [63934] = 4, + anon_sym_DASH_GT_STAR, + [124526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4161), 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, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8838), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(4169), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [63997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 21, + ACTIONS(8835), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350387,29 +539183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5892), 32, + anon_sym_DASH_GT, + ACTIONS(5253), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350417,6 +539208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -350430,86 +539222,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, - [64058] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(5070), 1, - sym_auto, - ACTIONS(5072), 1, - anon_sym_decltype, - ACTIONS(7587), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - STATE(1947), 1, - sym_decltype_auto, - STATE(2216), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5066), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4167), 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [64135] = 7, + anon_sym_DASH_GT_STAR, + [124592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(4938), 1, - anon_sym_LBRACE, - ACTIONS(5651), 1, - anon_sym_LT, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(4940), 19, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350519,24 +539238,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(4933), 30, + anon_sym_DASH_GT, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -350545,6 +539266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -350558,82 +539280,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [64204] = 30, + anon_sym_DASH_GT_STAR, + [124654] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - STATE(1683), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, sym_alignas_qualifier, - STATE(5009), 1, - sym__function_attributes_start, - STATE(5215), 1, - sym_ref_qualifier, - STATE(6408), 1, - sym_trailing_return_type, - STATE(6456), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(6842), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5487), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7288), 12, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -350645,163 +539360,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [64319] = 8, + [124758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - ACTIONS(7374), 1, - anon_sym_LBRACE, - STATE(3386), 1, - sym_enumerator_list, - STATE(3768), 1, - sym_attribute_specifier, - ACTIONS(6225), 16, + ACTIONS(8935), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6227), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8937), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64390] = 30, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [124818] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(67), 1, + ACTIONS(11202), 1, + anon_sym_LBRACE, + STATE(5874), 1, + sym_field_declaration_list, + STATE(6002), 1, + sym_attribute_specifier, + STATE(9330), 1, + sym_virtual_specifier, + STATE(10162), 1, + sym_base_class_clause, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6826), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(5517), 1, + anon_sym___asm, + ACTIONS(6828), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [124896] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(5280), 1, + sym_auto, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(6515), 1, + anon_sym_SEMI, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(9979), 1, + anon_sym_LBRACK, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4767), 1, + sym_decltype_auto, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(5290), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + ACTIONS(5258), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5251), 33, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7593), 1, - anon_sym_requires, - STATE(1683), 1, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [124978] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, sym_alignas_qualifier, - STATE(5001), 1, - sym__function_attributes_start, - STATE(5219), 1, - sym_ref_qualifier, - STATE(6424), 1, - sym_trailing_return_type, - STATE(6457), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8701), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(6842), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5494), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7057), 4, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125082] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, + anon_sym_AMP_AMP, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, + anon_sym_or, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(10176), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [64505] = 5, + [125186] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7596), 1, - anon_sym_LBRACK_LBRACK, - STATE(3157), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2039), 21, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9834), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350816,17 +539735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6267), 29, + ACTIONS(9832), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -350853,10 +539770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [64570] = 3, + [125254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 21, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9848), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350866,29 +539791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5927), 32, + ACTIONS(9846), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350896,6 +539816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -350910,101 +539831,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [64631] = 3, + [125322] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 21, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7745), 1, + anon_sym_LBRACK, + ACTIONS(7772), 1, + anon_sym_STAR, + ACTIONS(7774), 1, + anon_sym_AMP_AMP, + ACTIONS(7776), 1, + anon_sym_AMP, + STATE(1977), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6067), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5860), 32, + ACTIONS(9072), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [64692] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [125400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 21, + ACTIONS(8087), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5840), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8089), 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___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [125460] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10089), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351012,68 +540027,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [64753] = 11, + [125566] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7537), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6489), 14, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(11214), 2, anon_sym_CARET, - anon_sym_AMP, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 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(6491), 27, + ACTIONS(10125), 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, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351088,138 +540114,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [64830] = 6, + [125672] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7606), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7602), 4, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7604), 5, - anon_sym_AMP, - anon_sym___based, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(7609), 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(7599), 31, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - [64897] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7009), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9344), 1, anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, anon_sym_or, - ACTIONS(7571), 1, + ACTIONS(11230), 1, anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, + ACTIONS(11214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 18, + ACTIONS(9342), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351234,53 +540194,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [65004] = 10, + [125778] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10176), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6489), 17, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 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(6491), 27, + ACTIONS(10178), 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, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351295,140 +540274,75 @@ 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, - [65079] = 9, + [125884] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7611), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3500), 1, - sym_argument_list, - STATE(3922), 1, - sym_initializer_list, - ACTIONS(6812), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 9, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10180), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5661), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [65152] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, + ACTIONS(11212), 1, anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7553), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(7555), 1, + ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + ACTIONS(11236), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6489), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, + ACTIONS(11214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(9438), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -351442,16 +540356,32 @@ 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, - [65255] = 3, + [125994] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -351464,21 +540394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5686), 34, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351497,79 +540421,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65316] = 28, + [126070] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 1, - anon_sym_EQ, - ACTIONS(7138), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7186), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7553), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(7555), 1, + ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, - anon_sym_or, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(9282), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, + ACTIONS(11214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 16, + ACTIONS(9284), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -351583,43 +540499,68 @@ 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, - [65427] = 3, + [126172] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11212), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11216), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11222), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(9282), 3, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5824), 32, + ACTIONS(11206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351627,80 +540568,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [65488] = 20, + [126270] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7543), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7555), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, + ACTIONS(11214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 4, + ACTIONS(9282), 4, anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 21, + ACTIONS(9284), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351716,73 +540649,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [65583] = 26, + [126364] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6956), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7539), 1, - anon_sym_PIPE, - ACTIONS(7543), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7553), 1, - anon_sym_bitor, - ACTIONS(7555), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7567), 1, - anon_sym_AMP_AMP, - ACTIONS(7569), 1, - anon_sym_or, - ACTIONS(7571), 1, - anon_sym_and, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7541), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7545), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7547), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 18, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351797,127 +540721,131 @@ 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, - [65690] = 7, + anon_sym_bitor, + [126456] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7614), 1, - sym_identifier, - STATE(3172), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7617), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7620), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5433), 18, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + 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(5431), 21, + ACTIONS(9284), 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_RBRACK_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [65759] = 19, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [126544] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7543), 1, - anon_sym_AMP, - ACTIONS(7549), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7555), 1, - anon_sym_bitand, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7224), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7535), 2, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7551), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7537), 3, + ACTIONS(11206), 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, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 6, + ACTIONS(9282), 7, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 21, + ACTIONS(9284), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351933,45 +540861,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [65852] = 5, + anon_sym_bitand, + anon_sym_not_eq, + [126630] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_LBRACK_LBRACK, - STATE(3157), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6211), 21, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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, - anon_sym_DOT, - ACTIONS(6213), 29, + ACTIONS(9284), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351979,120 +540921,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [126712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [65917] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7623), 1, - sym_identifier, - STATE(3147), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5969), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5455), 18, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11206), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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(5453), 21, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [126790] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 19, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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(5026), 32, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [126870] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, anon_sym_AMP_AMP, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, + anon_sym_or, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + ACTIONS(11238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11240), 1, + anon_sym_QMARK, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(9436), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11122), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [126978] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10184), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, + anon_sym_bitor, + ACTIONS(11234), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352107,56 +541225,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [127084] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, + anon_sym_or, + ACTIONS(11230), 1, + anon_sym_and, + ACTIONS(11232), 1, anon_sym_bitor, + ACTIONS(11234), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11236), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66049] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - ACTIONS(7374), 1, - anon_sym_LBRACE, - STATE(3297), 1, - sym_enumerator_list, - STATE(3803), 1, - sym_attribute_specifier, - ACTIONS(6173), 16, + anon_sym_DASH_GT, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 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(6175), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(10190), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -352167,54 +541304,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, + [127194] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(11208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11210), 1, + anon_sym_AMP_AMP, + ACTIONS(11212), 1, + anon_sym_PIPE, + ACTIONS(11216), 1, + anon_sym_AMP, + ACTIONS(11222), 1, + anon_sym_GT_EQ, + ACTIONS(11226), 1, anon_sym_LT_EQ_GT, + ACTIONS(11228), 1, anon_sym_or, + ACTIONS(11230), 1, anon_sym_and, + ACTIONS(11232), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11234), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5661), 19, + anon_sym_DASH_GT, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11220), 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(5663), 33, + ACTIONS(10194), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352229,81 +541387,75 @@ 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, - [66183] = 26, + [127300] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6982), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10196), 1, anon_sym_EQ, - ACTIONS(7629), 1, + ACTIONS(11208), 1, anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, + ACTIONS(11210), 1, anon_sym_AMP_AMP, - ACTIONS(7633), 1, + ACTIONS(11212), 1, anon_sym_PIPE, - ACTIONS(7637), 1, + ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(7643), 1, + ACTIONS(11222), 1, anon_sym_GT_EQ, - ACTIONS(7647), 1, + ACTIONS(11226), 1, anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, + ACTIONS(11228), 1, anon_sym_or, - ACTIONS(7651), 1, + ACTIONS(11230), 1, anon_sym_and, - ACTIONS(7653), 1, + ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(7655), 1, + ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11236), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, + ACTIONS(11214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7645), 2, + ACTIONS(11224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, + ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, + ACTIONS(11218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7641), 3, + ACTIONS(11220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10198), 15, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -352317,14 +541469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [66289] = 5, + [127410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, - anon_sym_LT, - STATE(1869), 1, - sym_template_argument_list, - ACTIONS(6495), 18, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(9262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352335,6 +541485,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, @@ -352343,7 +541494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6497), 32, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352376,14 +541527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66353] = 5, + [127472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_LT, - STATE(1606), 1, - sym_template_argument_list, - ACTIONS(6495), 18, + ACTIONS(11242), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352394,15 +541543,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(6497), 32, + ACTIONS(9310), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352412,7 +541563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352435,203 +541585,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66417] = 3, + [127534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 20, + ACTIONS(8999), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5985), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9001), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [66477] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7009), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7011), 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, - [66581] = 3, + anon_sym_COLON_RBRACK, + [127594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 19, + ACTIONS(9003), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5888), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9005), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66641] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [127654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 22, + ACTIONS(9011), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -352643,6 +541714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -352654,7 +541726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5168), 30, + ACTIONS(9013), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352674,21 +541746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66701] = 3, + anon_sym_COLON_RBRACK, + [127714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 22, + ACTIONS(9015), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -352700,6 +541771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -352711,7 +541783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5188), 30, + ACTIONS(9017), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352731,21 +541803,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66761] = 3, + anon_sym_COLON_RBRACK, + [127774] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 22, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(5530), 1, + sym_new_declarator, + STATE(5871), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -352757,6 +541839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -352765,10 +541848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5176), 30, + ACTIONS(8806), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352776,7 +541856,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -352788,21 +541867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66821] = 3, + anon_sym_COLON_RBRACK, + [127844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 19, + ACTIONS(5229), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352816,13 +541892,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(5828), 33, + ACTIONS(5231), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352832,8 +541906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352845,85 +541918,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [66881] = 27, + [127904] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(7702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7704), 1, - anon_sym_QMARK, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6643), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(9282), 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, - ACTIONS(6645), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 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, @@ -352936,17 +541992,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [66989] = 6, + [127980] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3840), 1, - sym_attribute_specifier, - ACTIONS(6313), 16, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352956,25 +542026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6315), 33, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352982,25 +542050,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [128054] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, anon_sym_or, + ACTIONS(11093), 1, anon_sym_and, + ACTIONS(11095), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11097), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67055] = 3, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10194), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [128160] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 20, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9852), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353014,24 +542166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6661), 32, + ACTIONS(9850), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353053,42 +542201,145 @@ 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, - [67115] = 3, + anon_sym_DASH_GT, + [128228] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 19, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11114), 1, + anon_sym_AMP_AMP, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9284), 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, + [128328] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9282), 4, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5832), 33, + ACTIONS(11124), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353096,56 +542347,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_GT2, + [128424] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(11136), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 19, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 5, + anon_sym_PIPE, 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(5844), 33, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353153,59 +542419,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67235] = 6, + anon_sym_GT2, + [128516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - anon_sym_decltype, - ACTIONS(7581), 1, - sym_auto, - STATE(3835), 1, - sym_decltype_auto, - ACTIONS(5661), 16, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5663), 33, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353213,92 +542491,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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67301] = 30, + anon_sym_GT2, + [128606] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(6976), 1, + ACTIONS(11063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7142), 1, - anon_sym_RPAREN, - ACTIONS(7236), 1, + ACTIONS(11069), 1, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, + ACTIONS(11071), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, + ACTIONS(11073), 1, anon_sym_PIPE, - ACTIONS(7244), 1, + ACTIONS(11077), 1, anon_sym_AMP, - ACTIONS(7250), 1, + ACTIONS(11083), 1, anon_sym_GT_EQ, - ACTIONS(7254), 1, + ACTIONS(11087), 1, anon_sym_QMARK, - ACTIONS(7256), 1, + ACTIONS(11089), 1, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, + ACTIONS(11091), 1, anon_sym_or, - ACTIONS(7260), 1, + ACTIONS(11093), 1, anon_sym_and, - ACTIONS(7262), 1, + ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(7264), 1, + ACTIONS(11097), 1, anon_sym_bitand, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(7708), 1, - anon_sym_EQ, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, + ACTIONS(11075), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7252), 2, + ACTIONS(11085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 3, + ACTIONS(11244), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, + ACTIONS(11079), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7248), 3, + ACTIONS(11081), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7208), 13, + ACTIONS(9438), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -353312,32 +542582,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [67415] = 11, + [128718] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(3694), 1, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7696), 2, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 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(9284), 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, + [128804] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 16, + ACTIONS(11124), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 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(9284), 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, + [128888] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -353345,14 +542760,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(6491), 24, + ACTIONS(9284), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -353372,36 +542785,37 @@ 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, - [67491] = 10, + [128970] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6489), 19, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -353416,7 +542830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 24, + ACTIONS(9284), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -353441,69 +542855,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [67565] = 23, + [129048] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, + ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(7666), 3, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(9282), 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(6491), 17, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 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, @@ -353517,68 +542917,191 @@ 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, - [67665] = 21, + [129128] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, anon_sym_AMP, - ACTIONS(7684), 1, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129232] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6212), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(5816), 1, + sym_template_argument_list, + ACTIONS(6205), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6208), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [129302] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9856), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6489), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7680), 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(6491), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9854), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353586,71 +543109,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [67761] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, anon_sym_LT_EQ_GT, - ACTIONS(7694), 1, + anon_sym_bitor, anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + [129370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11246), 1, + anon_sym_LT, + STATE(5573), 1, + sym_template_argument_list, + ACTIONS(9262), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 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(6489), 5, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 19, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353658,140 +543168,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_GT2, - [67853] = 18, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129434] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(10431), 1, + anon_sym_DOT_STAR, + ACTIONS(10433), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10983), 1, + anon_sym_COMMA, + ACTIONS(10987), 1, anon_sym_DASH, + ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(10991), 1, anon_sym_STAR, + ACTIONS(10993), 1, anon_sym_SLASH, + ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(7678), 3, + ACTIONS(10997), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10999), 1, + anon_sym_AMP_AMP, + ACTIONS(11001), 1, + anon_sym_PIPE, + ACTIONS(11003), 1, + anon_sym_CARET, + ACTIONS(11005), 1, + anon_sym_AMP, + ACTIONS(11007), 1, anon_sym_EQ_EQ, + ACTIONS(11009), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(11011), 1, anon_sym_GT, + ACTIONS(11013), 1, anon_sym_GT_EQ, + ACTIONS(11015), 1, anon_sym_LT_EQ, + ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(6489), 7, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11019), 1, + anon_sym_LT_LT, + ACTIONS(11021), 1, + anon_sym_GT_GT, + ACTIONS(11023), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6491), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11025), 1, anon_sym_QMARK, + ACTIONS(11027), 1, anon_sym_STAR_EQ, + ACTIONS(11029), 1, anon_sym_SLASH_EQ, + ACTIONS(11031), 1, anon_sym_PERCENT_EQ, + ACTIONS(11033), 1, anon_sym_PLUS_EQ, + ACTIONS(11035), 1, anon_sym_DASH_EQ, + ACTIONS(11037), 1, anon_sym_LT_LT_EQ, + ACTIONS(11039), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11041), 1, anon_sym_AMP_EQ, + ACTIONS(11043), 1, anon_sym_CARET_EQ, + ACTIONS(11045), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11049), 1, + anon_sym_or, + ACTIONS(11051), 1, + anon_sym_and, + ACTIONS(11053), 1, anon_sym_bitor, - anon_sym_GT2, - [67943] = 16, + ACTIONS(11055), 1, + anon_sym_xor, + ACTIONS(11057), 1, + anon_sym_bitand, + ACTIONS(11059), 1, + anon_sym_not_eq, + ACTIONS(11249), 1, + anon_sym_RPAREN, + STATE(1667), 1, + sym__binary_fold_operator, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + STATE(10893), 1, + sym__fold_operator, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [129590] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(6457), 1, + anon_sym___asm, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7698), 1, + ACTIONS(11251), 1, + anon_sym_STAR, + ACTIONS(11253), 1, + anon_sym_AMP_AMP, + ACTIONS(11255), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4486), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8328), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10932), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10934), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5383), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6158), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129688] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, anon_sym_DOT, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9270), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 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(6489), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 20, + ACTIONS(9272), 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, @@ -353805,61 +543423,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [68029] = 15, + [129762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(8685), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7680), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8687), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -353867,172 +543470,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_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, - [68113] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - ACTIONS(7230), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7714), 1, - anon_sym_RPAREN, - ACTIONS(7716), 1, + [129822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8709), 20, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, anon_sym_PIPE, - ACTIONS(7732), 1, anon_sym_CARET, - ACTIONS(7734), 1, anon_sym_AMP, - ACTIONS(7736), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_BANG_EQ, - ACTIONS(7740), 1, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, anon_sym_LT_LT, - ACTIONS(7750), 1, anon_sym_GT_GT, - ACTIONS(7752), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8711), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, anon_sym_not_eq, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [68269] = 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(8713), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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(6491), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8715), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -354040,64 +543584,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [68351] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(11142), 1, + anon_sym_LT, + STATE(2933), 1, + sym_template_argument_list, + ACTIONS(9225), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354105,6 +543643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -354115,37 +543654,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [68429] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130006] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7664), 2, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130110] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9852), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -354153,12 +543761,15 @@ 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(6491), 24, + anon_sym_DOT, + ACTIONS(9850), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -354182,11 +543793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [68509] = 3, + [130178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 19, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11257), 1, + anon_sym_LT, + STATE(5429), 1, + sym_template_argument_list, + ACTIONS(9135), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354197,7 +543818,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, @@ -354205,19 +543825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5904), 33, + ACTIONS(9137), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354239,11 +543857,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, - [68569] = 3, + anon_sym_DASH_GT, + [130244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 20, + ACTIONS(8717), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354264,7 +543882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5733), 32, + ACTIONS(8719), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -354297,10 +543915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68629] = 3, + [130304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 20, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9856), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354310,28 +543936,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5745), 32, + ACTIONS(9854), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354339,7 +543961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -354353,42 +543974,250 @@ 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, - [68689] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [130372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 20, + ACTIONS(8541), 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___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8543), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5808), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9031), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130492] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(10277), 1, + anon_sym_LT, + ACTIONS(10510), 1, + anon_sym_EQ, + STATE(4203), 1, + sym_template_argument_list, + ACTIONS(10508), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5272), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7031), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [130562] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10125), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354403,34 +544232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68749] = 10, + [130668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10333), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10335), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6451), 19, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9840), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354440,23 +544253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6453), 24, + anon_sym_DOT, + ACTIONS(9838), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354464,6 +544278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -354474,11 +544289,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [68823] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130736] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8415), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130840] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 19, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9270), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354496,20 +544409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5923), 33, + ACTIONS(9272), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354528,14 +544436,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [130914] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(5468), 1, + sym_new_declarator, + STATE(5875), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(8868), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68883] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130984] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8694), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 22, + ACTIONS(8559), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -354547,86 +544592,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8561), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [131148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6272), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6270), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [131208] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131312] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, + anon_sym_AMP_AMP, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, + anon_sym_AMP, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, anon_sym_or, + ACTIONS(11132), 1, anon_sym_and, + ACTIONS(11134), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11136), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5204), 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, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(10184), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11118), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68943] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3730), 1, - sym_attribute_specifier, - ACTIONS(6338), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6340), 33, + ACTIONS(10186), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354634,25 +544842,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [69009] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [131416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9844), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354666,24 +544874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + ACTIONS(9842), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354705,11 +544909,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69069] = 3, + anon_sym_DASH_GT, + [131484] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8646), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(6233), 1, + anon_sym_COLON_COLON, + ACTIONS(9142), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354723,14 +545008,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(4933), 32, + ACTIONS(9144), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -354740,7 +545024,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, @@ -354763,10 +545047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [69129] = 3, + [131650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 20, + ACTIONS(10544), 1, + anon_sym_LBRACK, + STATE(5617), 1, + sym_new_declarator, + ACTIONS(9173), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354776,18 +545064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5686), 32, + ACTIONS(9175), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354795,9 +545081,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354805,6 +545091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -354819,130 +545106,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [69189] = 3, + [131714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(9037), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9039), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [69249] = 25, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [131774] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7668), 1, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - ACTIONS(7672), 1, + ACTIONS(11116), 1, anon_sym_PIPE, - ACTIONS(7676), 1, + ACTIONS(11120), 1, anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, + ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, + ACTIONS(11130), 1, anon_sym_or, - ACTIONS(7690), 1, + ACTIONS(11132), 1, anon_sym_and, - ACTIONS(7692), 1, + ACTIONS(11134), 1, anon_sym_bitor, - ACTIONS(7694), 1, + ACTIONS(11136), 1, anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, + ACTIONS(11238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11240), 1, + anon_sym_QMARK, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6956), 2, + ACTIONS(10188), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, + ACTIONS(11118), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7682), 2, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, + ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, + ACTIONS(11122), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(11124), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(10190), 14, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -354956,10 +545244,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [69353] = 3, + [131882] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6495), 1, + anon_sym___asm, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, + anon_sym_LPAREN2, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_STAR, + ACTIONS(11253), 1, + anon_sym_AMP_AMP, + ACTIONS(11255), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4486), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8358), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10932), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10934), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6140), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6182), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [131980] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11260), 1, + anon_sym_COLON, + STATE(4444), 1, + sym__enum_base_clause, + STATE(4573), 1, + sym_enumerator_list, + STATE(4866), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7602), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7600), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [132052] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 19, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9860), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354978,19 +545413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5896), 33, + ACTIONS(9858), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355012,116 +545443,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69413] = 51, + anon_sym_DASH_GT, + [132120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11260), 1, + anon_sym_COLON, + STATE(4355), 1, + sym__enum_base_clause, + STATE(4592), 1, + sym_enumerator_list, + STATE(4746), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7653), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, anon_sym_COMMA, - ACTIONS(7716), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7651), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [132192] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(5454), 1, + sym_new_declarator, + STATE(5914), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, - anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, - anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, anon_sym_PIPE, - ACTIONS(7732), 1, - anon_sym_CARET, - ACTIONS(7734), 1, anon_sym_AMP, - ACTIONS(7736), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_BANG_EQ, - ACTIONS(7740), 1, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, - anon_sym_EQ, - ACTIONS(7754), 1, - anon_sym_QMARK, - ACTIONS(7756), 1, - anon_sym_STAR_EQ, - ACTIONS(7758), 1, - anon_sym_SLASH_EQ, - ACTIONS(7760), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, - anon_sym_PLUS_EQ, - ACTIONS(7764), 1, - anon_sym_DASH_EQ, - ACTIONS(7766), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, - anon_sym_AMP_EQ, - ACTIONS(7772), 1, - anon_sym_CARET_EQ, - ACTIONS(7774), 1, - anon_sym_PIPE_EQ, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(7780), 1, anon_sym_and, - ACTIONS(7782), 1, anon_sym_bitor, - ACTIONS(7784), 1, anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, anon_sym_not_eq, - ACTIONS(7792), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + sym_identifier, + ACTIONS(8843), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [69569] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [132262] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 19, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9286), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355139,20 +545603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6449), 33, + ACTIONS(9288), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355173,43 +545632,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69629] = 3, + [132334] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10089), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, + anon_sym_bitor, + ACTIONS(10967), 1, + anon_sym_bitand, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + ACTIONS(10091), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355224,18 +545712,26 @@ 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, + [132440] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5761), 20, + anon_sym_DASH_GT, + ACTIONS(9244), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355249,24 +545745,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(5763), 32, + ACTIONS(9246), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355285,14 +545776,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [132514] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 20, + anon_sym_DASH_GT, + ACTIONS(9252), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355306,24 +545809,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(4933), 32, + ACTIONS(9254), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355342,154 +545840,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, - [69809] = 27, + [132588] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(10949), 1, anon_sym_PIPE, - ACTIONS(7676), 1, + ACTIONS(10953), 1, anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, + ACTIONS(10965), 1, anon_sym_bitor, - ACTIONS(7694), 1, + ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7704), 1, - anon_sym_QMARK, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6974), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, + ACTIONS(10951), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7682), 2, + ACTIONS(10961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, + ACTIONS(10955), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(10957), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6978), 14, + ACTIONS(10125), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69917] = 5, + [132694] = 9, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6028), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [69981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 20, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355503,24 +545950,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(4933), 32, + ACTIONS(9292), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355541,73 +545983,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70041] = 25, + [132766] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9344), 1, + anon_sym_EQ, + ACTIONS(10949), 1, anon_sym_PIPE, - ACTIONS(7676), 1, + ACTIONS(10953), 1, anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, + ACTIONS(10965), 1, anon_sym_bitor, - ACTIONS(7694), 1, + ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6982), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, + ACTIONS(10951), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7682), 2, + ACTIONS(10961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, + ACTIONS(10955), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(10957), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 16, + ACTIONS(9342), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355615,51 +546056,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [70145] = 6, + [132872] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3733), 1, - sym_attribute_specifier, - ACTIONS(6342), 16, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10176), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, + anon_sym_bitor, + ACTIONS(10967), 1, + anon_sym_bitand, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 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(6344), 33, + ACTIONS(10178), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355671,53 +546140,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [132978] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(10965), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10967), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + ACTIONS(11270), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5784), 20, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5786), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(9438), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -355731,51 +546225,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_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [70271] = 5, + [133088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7468), 1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - STATE(3426), 1, - sym_new_declarator, - ACTIONS(6280), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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(6282), 30, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355783,6 +546279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -355793,151 +546290,134 @@ 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, - [70335] = 51, + [133164] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + anon_sym_DASH_GT, + ACTIONS(9282), 17, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, anon_sym_PIPE, - ACTIONS(7732), 1, anon_sym_CARET, - ACTIONS(7734), 1, anon_sym_AMP, - ACTIONS(7736), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_BANG_EQ, - ACTIONS(7740), 1, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, anon_sym_LT_LT, - ACTIONS(7750), 1, anon_sym_GT_GT, - ACTIONS(7752), 1, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, anon_sym_not_eq, - ACTIONS(7796), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, + [133238] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, + anon_sym_bitor, + ACTIONS(10967), 1, + anon_sym_bitand, + ACTIONS(10969), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [70491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 20, + ACTIONS(9282), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5798), 32, + anon_sym_LT, + ACTIONS(9284), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -355952,521 +546432,277 @@ 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, - [70551] = 27, + [133340] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7686), 1, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, + ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7704), 1, - anon_sym_QMARK, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6986), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, + ACTIONS(10951), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7682), 2, + ACTIONS(10961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, + ACTIONS(10955), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7680), 4, + ACTIONS(10957), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6988), 14, + ACTIONS(9282), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9284), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [70659] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6058), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [70723] = 51, + anon_sym_bitor, + [133434] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10967), 1, + anon_sym_bitand, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, - anon_sym_PIPE, - ACTIONS(7732), 1, - anon_sym_CARET, - ACTIONS(7734), 1, - anon_sym_AMP, - ACTIONS(7736), 1, + ACTIONS(10955), 3, anon_sym_EQ_EQ, - ACTIONS(7738), 1, anon_sym_BANG_EQ, - ACTIONS(7740), 1, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, - anon_sym_bitand, - ACTIONS(7788), 1, - anon_sym_not_eq, - ACTIONS(7798), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [70879] = 51, + [133526] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, - anon_sym_PIPE, - ACTIONS(7732), 1, - anon_sym_CARET, - ACTIONS(7734), 1, - anon_sym_AMP, - ACTIONS(7736), 1, + ACTIONS(10955), 3, anon_sym_EQ_EQ, - ACTIONS(7738), 1, anon_sym_BANG_EQ, - ACTIONS(7740), 1, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, + ACTIONS(9282), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, - anon_sym_not_eq, - ACTIONS(7800), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [71035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5488), 4, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5486), 48, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [71095] = 11, + [133614] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7802), 1, - anon_sym_LT, - ACTIONS(7806), 1, - sym_auto, - ACTIONS(7808), 1, - anon_sym_decltype, - STATE(1868), 1, - sym_template_argument_list, - STATE(3758), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4245), 1, - sym_decltype_auto, - ACTIONS(7804), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(4167), 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(8808), 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(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 19, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10957), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 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(5713), 33, + ACTIONS(9284), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356481,128 +546717,104 @@ 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, - [71231] = 51, + [133700] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, + ACTIONS(9282), 10, anon_sym_PIPE, - ACTIONS(7732), 1, anon_sym_CARET, - ACTIONS(7734), 1, anon_sym_AMP, - ACTIONS(7736), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_BANG_EQ, - ACTIONS(7740), 1, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9284), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, anon_sym_not_eq, - ACTIONS(7810), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, + [133782] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [71387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6374), 19, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -356611,24 +546823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6376), 33, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356647,45 +546854,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [71447] = 3, + [133860] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 19, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 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(5794), 33, + ACTIONS(9284), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356704,16 +546921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [133940] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(6350), 19, + anon_sym_DASH_GT, + ACTIONS(9270), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356731,19 +546958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6352), 32, + ACTIONS(9272), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356762,129 +546985,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71569] = 30, + [134014] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(11116), 1, + anon_sym_PIPE, + ACTIONS(11120), 1, anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, + ACTIONS(11128), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11130), 1, + anon_sym_or, + ACTIONS(11132), 1, + anon_sym_and, + ACTIONS(11134), 1, + anon_sym_bitor, + ACTIONS(11136), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(10192), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5027), 1, - sym__function_attributes_start, - STATE(5287), 1, - sym_ref_qualifier, - STATE(6193), 1, - sym_trailing_return_type, - STATE(6330), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5532), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [71683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 19, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11118), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11122), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5663), 33, + ACTIONS(10194), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356892,478 +547057,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, + [134118] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10184), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, anon_sym_bitor, + ACTIONS(10967), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71743] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + ACTIONS(10945), 2, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, - anon_sym_PIPE, - ACTIONS(7732), 1, - anon_sym_CARET, - ACTIONS(7734), 1, - anon_sym_AMP, - ACTIONS(7736), 1, + ACTIONS(10955), 3, anon_sym_EQ_EQ, - ACTIONS(7738), 1, anon_sym_BANG_EQ, - ACTIONS(7740), 1, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, - anon_sym_EQ, - ACTIONS(7754), 1, + ACTIONS(10186), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [134224] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, + ACTIONS(10965), 1, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, + ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(7788), 1, - anon_sym_not_eq, - ACTIONS(7814), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, + ACTIONS(10969), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + ACTIONS(11270), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [71899] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_DOT_STAR, - ACTIONS(7230), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + ACTIONS(10945), 2, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, - anon_sym_PIPE, - ACTIONS(7732), 1, - anon_sym_CARET, - ACTIONS(7734), 1, - anon_sym_AMP, - ACTIONS(7736), 1, + ACTIONS(10955), 3, anon_sym_EQ_EQ, - ACTIONS(7738), 1, anon_sym_BANG_EQ, - ACTIONS(7740), 1, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, - anon_sym_LT_LT, - ACTIONS(7750), 1, - anon_sym_GT_GT, - ACTIONS(7752), 1, - anon_sym_EQ, - ACTIONS(7754), 1, - anon_sym_QMARK, - ACTIONS(7756), 1, + ACTIONS(10190), 15, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [134334] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(10949), 1, + anon_sym_PIPE, + ACTIONS(10953), 1, + anon_sym_AMP, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, + ACTIONS(10965), 1, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, + ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(7788), 1, - anon_sym_not_eq, - ACTIONS(7816), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, + ACTIONS(10969), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, + anon_sym_AMP_AMP, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [72055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5190), 22, - aux_sym_preproc_elif_token1, + ACTIONS(10945), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10947), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5192), 30, + ACTIONS(10194), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72115] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [134440] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10180), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10196), 1, + anon_sym_EQ, + ACTIONS(10949), 1, anon_sym_PIPE, + ACTIONS(10953), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, + ACTIONS(10959), 1, + anon_sym_GT_EQ, + ACTIONS(10963), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(10967), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10969), 1, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5200), 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, + ACTIONS(11262), 1, anon_sym_PIPE_PIPE, + ACTIONS(11264), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(11266), 1, + anon_sym_or, + ACTIONS(11268), 1, + anon_sym_and, + ACTIONS(11270), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10945), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10951), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72175] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3337), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7818), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6095), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10947), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [72239] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3338), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7820), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6101), 41, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10955), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10957), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [72303] = 8, + 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, + [134550] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7824), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - STATE(3556), 1, - sym_new_declarator, - STATE(3879), 2, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 16, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357378,17 +547419,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(6080), 30, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9292), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357400,29 +547442,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72373] = 8, + [134622] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(10196), 1, anon_sym_EQ, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(5935), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(4197), 13, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, + anon_sym_AMP_AMP, + ACTIONS(11073), 1, + anon_sym_PIPE, + ACTIONS(11077), 1, + anon_sym_AMP, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11087), 1, + anon_sym_QMARK, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, + anon_sym_or, + ACTIONS(11093), 1, + anon_sym_and, + ACTIONS(11095), 1, + anon_sym_bitor, + ACTIONS(11097), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 15, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -357436,7 +547533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4169), 17, + [134732] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 1, + anon_sym_LPAREN2, + ACTIONS(10335), 1, + anon_sym_LBRACK, + STATE(1873), 1, + sym_parameter_list, + STATE(5159), 1, + sym__function_declarator_seq, + ACTIONS(9864), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357450,11 +547558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 18, + ACTIONS(9862), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -357462,9 +547571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -357473,67 +547594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72443] = 3, + [134800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(1936), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(10337), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(10339), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 20, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9840), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357543,28 +547615,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3955), 32, + ACTIONS(9838), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357572,7 +547640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -357586,11 +547653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72563] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [134868] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 20, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9844), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357600,28 +547676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6611), 32, + ACTIONS(9842), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357629,7 +547701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -357643,167 +547714,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72623] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [134936] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5204), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(10089), 1, + anon_sym_EQ, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11069), 1, anon_sym_PIPE_PIPE, + ACTIONS(11071), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5162), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11073), 1, anon_sym_PIPE, + ACTIONS(11077), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(11083), 1, + anon_sym_GT_EQ, + ACTIONS(11089), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11091), 1, anon_sym_or, + ACTIONS(11093), 1, anon_sym_and, + ACTIONS(11095), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11097), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5164), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72743] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, + STATE(5762), 1, sym_argument_list, - STATE(3696), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7696), 2, + ACTIONS(10975), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6385), 19, + ACTIONS(11065), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11075), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11079), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11081), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6387), 24, + ACTIONS(10091), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357811,80 +547789,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, - [72817] = 5, + [135042] = 10, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6158), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [72881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 19, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9232), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357902,20 +547833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5848), 33, + ACTIONS(9234), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357934,16 +547860,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [135116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(10971), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5661), 20, + anon_sym_DASH_GT, + ACTIONS(9232), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357953,27 +547889,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(5663), 31, + ACTIONS(9234), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -357981,6 +547913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -357991,15 +547924,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, - anon_sym_GT2, - [73003] = 3, + [135190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 19, + ACTIONS(5233), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358013,13 +547941,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(5852), 33, + ACTIONS(5235), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -358029,8 +547955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358042,56 +547967,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [73063] = 5, + [135250] = 25, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6064), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8644), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(2937), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -358103,19 +548060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [73127] = 3, + [135354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 19, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, + anon_sym_LBRACK, + STATE(1875), 1, + sym_parameter_list, + STATE(5063), 1, + sym__function_declarator_seq, + ACTIONS(9864), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358125,28 +548081,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(5900), 33, + ACTIONS(9862), 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, @@ -358154,7 +548106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -358168,213 +548119,109 @@ 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, - [73187] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(4187), 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(5971), 38, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [73253] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7826), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [73317] = 29, + [135422] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym_EQ, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7236), 1, + ACTIONS(11112), 1, anon_sym_PIPE_PIPE, - ACTIONS(7238), 1, + ACTIONS(11114), 1, anon_sym_AMP_AMP, - ACTIONS(7240), 1, + ACTIONS(11116), 1, anon_sym_PIPE, - ACTIONS(7244), 1, + ACTIONS(11120), 1, anon_sym_AMP, - ACTIONS(7250), 1, - anon_sym_GT_EQ, - ACTIONS(7254), 1, - anon_sym_QMARK, - ACTIONS(7256), 1, + ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - ACTIONS(7258), 1, + ACTIONS(11130), 1, anon_sym_or, - ACTIONS(7260), 1, + ACTIONS(11132), 1, anon_sym_and, - ACTIONS(7262), 1, + ACTIONS(11134), 1, anon_sym_bitor, - ACTIONS(7264), 1, + ACTIONS(11136), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(11238), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11240), 1, + anon_sym_QMARK, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6395), 2, + ACTIONS(10196), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7232), 2, + ACTIONS(11108), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7242), 2, + ACTIONS(11118), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7252), 2, + ACTIONS(11126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7828), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7234), 3, + ACTIONS(11138), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7246), 3, + ACTIONS(11122), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7248), 3, + ACTIONS(11124), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 13, + ACTIONS(10198), 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, - [73429] = 3, + anon_sym_GT2, + [135530] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 19, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10975), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9244), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358392,20 +548239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5868), 33, + ACTIONS(9246), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358424,103 +548266,126 @@ 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, - [73489] = 3, + [135604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 19, + ACTIONS(8454), 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_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(5872), 33, + sym_literal_suffix, + ACTIONS(8456), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73549] = 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, + anon_sym_COLON_RBRACK, + [135664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6762), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5985), 33, - anon_sym_DOT_DOT_DOT, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6764), 45, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [135724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6535), 1, + anon_sym_EQ, + ACTIONS(6537), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -358534,18 +548399,7 @@ 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, - [73609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 19, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358559,38 +548413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5908), 33, + ACTIONS(5253), 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_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, @@ -358598,22 +548438,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, - [73669] = 8, + anon_sym_DASH_GT, + [135788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_LBRACK, - STATE(3405), 1, - sym_new_declarator, - STATE(3954), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 16, + ACTIONS(6233), 1, + anon_sym_COLON_COLON, + ACTIONS(9142), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358628,17 +548459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6113), 30, + ACTIONS(9144), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358650,21 +548485,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, - [73739] = 3, + anon_sym_DASH_GT, + [135849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 20, + ACTIONS(8689), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358684,11 +548519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6405), 32, + ACTIONS(8691), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -358696,6 +548529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358717,11 +548551,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, - [73799] = 3, + anon_sym_DASH_GT, + [135908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 19, + ACTIONS(8606), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358736,12 +548570,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(5713), 33, + ACTIONS(8608), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -358751,7 +548582,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, @@ -358764,21 +548594,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [73859] = 3, + [135967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5229), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5231), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [136026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 19, + ACTIONS(11272), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8939), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358793,22 +548685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5713), 33, + ACTIONS(8941), 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, @@ -358821,27 +548708,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_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [73919] = 6, + [136087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3762), 1, - sym_attribute_specifier, - ACTIONS(6354), 16, + ACTIONS(8614), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358858,7 +548741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6356), 33, + ACTIONS(8616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -358868,7 +548751,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, @@ -358891,74 +548773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(1940), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [74045] = 6, + anon_sym_DASH_GT_STAR, + [136146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3767), 1, - sym_attribute_specifier, - ACTIONS(6272), 16, + ACTIONS(8705), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358972,21 +548794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6274), 33, + ACTIONS(8707), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358998,21 +548822,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, - [74111] = 3, + anon_sym_DASH_GT, + [136205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 19, + ACTIONS(9468), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359032,7 +548856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5836), 33, + ACTIONS(9470), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359042,7 +548866,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, @@ -359066,10 +548889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74171] = 3, + [136264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 19, + ACTIONS(10799), 1, + anon_sym_LT, + STATE(1924), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359080,7 +548907,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, @@ -359088,8 +548914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5782), 33, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359099,7 +548924,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, @@ -359122,77 +548946,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, - [74231] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3961), 1, - sym_field_declaration_list, - STATE(7348), 1, - sym_virtual_specifier, - STATE(8127), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5674), 37, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [74309] = 3, + anon_sym_DASH_GT, + [136327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 19, + ACTIONS(9391), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359212,7 +548970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5816), 33, + ACTIONS(9393), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359222,7 +548980,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, @@ -359246,10 +549003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74369] = 3, + [136386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 19, + ACTIONS(9464), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359269,7 +549026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5820), 33, + ACTIONS(9466), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359279,7 +549036,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, @@ -359303,78 +549059,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74429] = 30, + [136445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(11274), 1, + sym_identifier, + STATE(5477), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6694), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6700), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8127), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7074), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8125), 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, + [136512] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, anon_sym_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7292), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - STATE(1683), 1, + ACTIONS(10442), 1, + anon_sym_requires, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5031), 1, + STATE(7533), 1, sym__function_attributes_start, - STATE(5293), 1, + STATE(7598), 1, sym_ref_qualifier, - STATE(5604), 1, - sym_trailing_return_type, - STATE(6455), 1, + STATE(8719), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8854), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6113), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4060), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(6036), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4283), 2, + STATE(6264), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5980), 2, + STATE(8457), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5516), 3, + STATE(7874), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -359387,23 +549202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [74543] = 9, + [136625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6399), 19, + ACTIONS(9578), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359413,23 +549215,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(6401), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9580), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359437,6 +549243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -359449,72 +549256,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [74615] = 25, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [136684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, - anon_sym_PIPE, - ACTIONS(7676), 1, - anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, - anon_sym_or, - ACTIONS(7690), 1, - anon_sym_and, - ACTIONS(7692), 1, - anon_sym_bitor, - ACTIONS(7694), 1, - anon_sym_bitand, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7013), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, + ACTIONS(9420), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7674), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7682), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7666), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 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(7015), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359522,23 +549299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [74719] = 6, + anon_sym_LT_EQ_GT, + anon_sym_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, + [136743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3771), 1, - sym_attribute_specifier, - ACTIONS(6284), 16, + ACTIONS(9416), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359553,9 +549332,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(6286), 33, + ACTIONS(9418), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359565,7 +549347,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, @@ -359578,21 +549359,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, - [74785] = 3, + [136802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 20, + ACTIONS(9499), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359606,14 +549387,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(3983), 32, + ACTIONS(9501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359623,7 +549403,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, @@ -359646,16 +549426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74845] = 6, + [136861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3774), 1, - sym_attribute_specifier, - ACTIONS(6288), 16, + ACTIONS(9412), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359670,9 +549444,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(6290), 33, + ACTIONS(9414), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359682,7 +549459,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, @@ -359695,105 +549471,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, - [74911] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5061), 1, - sym__function_attributes_start, - STATE(5302), 1, - sym_ref_qualifier, - STATE(5838), 1, - sym_trailing_return_type, - STATE(6220), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5500), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [75025] = 3, + [136920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 20, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(9262), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359803,28 +549497,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(6474), 32, + ACTIONS(9264), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359832,7 +549524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -359846,12 +549537,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, - [75085] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [136981] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 22, - aux_sym_preproc_elif_token1, + ACTIONS(11276), 1, + sym_identifier, + STATE(5519), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6619), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6625), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8118), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -359860,8 +549569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -359869,18 +549576,10 @@ 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(5184), 30, + sym_literal_suffix, + ACTIONS(8116), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -359892,10 +549591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -359904,16 +549599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75145] = 6, + [137048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3839), 1, - sym_attribute_specifier, - ACTIONS(6346), 16, + ACTIONS(9480), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359928,9 +549617,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(6348), 33, + ACTIONS(9482), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359940,7 +549632,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, @@ -359953,225 +549644,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75211] = 3, + [137107] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 19, + ACTIONS(11278), 1, + sym_identifier, + STATE(5450), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11281), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11284), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8047), 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(5717), 33, + sym_literal_suffix, + ACTIONS(8045), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75271] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7430), 1, - anon_sym_requires, - ACTIONS(7832), 1, anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5038), 1, - sym__function_attributes_start, - STATE(5312), 1, - sym_ref_qualifier, - STATE(5818), 1, - sym_trailing_return_type, - STATE(6224), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5529), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [75385] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(7841), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7838), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7836), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(7834), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [75453] = 4, + [137174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, - sym_literal_suffix, - ACTIONS(4169), 25, + ACTIONS(11287), 1, + anon_sym_LT, + STATE(5715), 1, + sym_template_argument_list, + ACTIONS(9262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360181,32 +549732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4161), 26, + ACTIONS(9264), 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, @@ -360215,76 +549758,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5204), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75575] = 3, + anon_sym_GT2, + [137237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 19, + ACTIONS(9308), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360304,7 +549796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5721), 33, + ACTIONS(9310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360314,7 +549806,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, @@ -360338,94 +549829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75635] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7593), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5019), 1, - sym__function_attributes_start, - STATE(5321), 1, - sym_ref_qualifier, - STATE(6326), 1, - sym__function_attributes_end, - STATE(6424), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5515), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [75749] = 3, + [137296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 20, + ACTIONS(9582), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360439,14 +549846,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(5876), 32, + ACTIONS(9584), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360456,7 +549862,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, @@ -360479,69 +549885,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [75809] = 5, + [137355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - anon_sym_EQ, - ACTIONS(5965), 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(4169), 18, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5870), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4161), 20, + sym_identifier, + ACTIONS(9107), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + 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, - [75873] = 3, + anon_sym_COLON_RBRACK, + [137420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 19, + ACTIONS(11272), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11290), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8959), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360556,22 +549968,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(5725), 33, + ACTIONS(8961), 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, @@ -360584,21 +549990,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_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [75933] = 3, + [137483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 20, + ACTIONS(8731), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360618,11 +550025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5729), 32, + ACTIONS(8733), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -360630,6 +550035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360651,11 +550057,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, - [75993] = 3, + anon_sym_DASH_GT, + [137542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 19, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + STATE(6017), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360670,22 +550083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5856), 33, + ACTIONS(9119), 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, @@ -360698,27 +550106,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76053] = 6, + [137607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(5709), 1, + sym_new_declarator, + ACTIONS(9173), 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__, - ACTIONS(6929), 1, anon_sym___attribute, - STATE(3821), 1, - sym_attribute_specifier, - ACTIONS(6276), 16, + 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(9175), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [137670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8610), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360735,7 +550195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6278), 33, + ACTIONS(8612), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360745,7 +550205,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, @@ -360768,80 +550227,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [76119] = 30, + [137729] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7421), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7438), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5022), 1, - sym__function_attributes_start, - STATE(5339), 1, - sym_ref_qualifier, - STATE(6250), 1, - sym_trailing_return_type, - STATE(6370), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, + ACTIONS(11292), 1, + anon_sym_COLON, + ACTIONS(11294), 1, + anon_sym_LBRACE, + STATE(5731), 1, + sym__enum_base_clause, + STATE(5855), 1, + sym_enumerator_list, + STATE(5923), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, + ACTIONS(7651), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7653), 39, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5520), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -360853,10 +550285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [76233] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [137802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 19, + ACTIONS(8622), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360871,12 +550312,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(5717), 33, + ACTIONS(8624), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360886,7 +550324,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, @@ -360899,79 +550336,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_STAR, - [76293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5026), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [76355] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [137861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 20, + ACTIONS(7546), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360985,14 +550367,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(5737), 32, + ACTIONS(7544), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361002,7 +550380,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, @@ -361014,21 +550392,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [76415] = 3, + [137920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 19, + ACTIONS(9404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361048,7 +550429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5864), 33, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361058,7 +550439,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, @@ -361082,10 +550462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76475] = 3, + [137979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 20, + ACTIONS(9527), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361099,14 +550479,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(5741), 32, + ACTIONS(9529), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361116,7 +550495,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, @@ -361139,69 +550518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5495), 4, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5493), 48, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [76595] = 4, + [138038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 20, + ACTIONS(9503), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361215,14 +550535,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(6376), 31, + ACTIONS(9505), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361232,6 +550551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361254,10 +550574,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76657] = 3, + [138097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 20, + ACTIONS(11296), 1, + sym_identifier, + STATE(5448), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6619), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6625), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8127), 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(8125), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [138164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9531), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361271,14 +550651,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(6441), 32, + ACTIONS(9533), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361288,7 +550667,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, @@ -361311,10 +550690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76717] = 3, + [138223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 22, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5876), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9086), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -361326,6 +550712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -361334,10 +550721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5172), 30, + ACTIONS(9088), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361345,7 +550729,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -361357,37 +550740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76777] = 10, + anon_sym_COLON_RBRACK, + [138288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6415), 19, + ACTIONS(9344), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361397,23 +550762,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(6417), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9342), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361421,6 +550790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -361431,132 +550801,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [76851] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - ACTIONS(7230), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7712), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, + [138347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8689), 21, anon_sym_DASH, - ACTIONS(7718), 1, anon_sym_PLUS, - ACTIONS(7720), 1, anon_sym_STAR, - ACTIONS(7722), 1, anon_sym_SLASH, - ACTIONS(7724), 1, anon_sym_PERCENT, - ACTIONS(7726), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7728), 1, - anon_sym_AMP_AMP, - ACTIONS(7730), 1, anon_sym_PIPE, - ACTIONS(7732), 1, anon_sym_CARET, - ACTIONS(7734), 1, anon_sym_AMP, - ACTIONS(7736), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_BANG_EQ, - ACTIONS(7740), 1, anon_sym_GT, - ACTIONS(7742), 1, anon_sym_GT_EQ, - ACTIONS(7744), 1, anon_sym_LT_EQ, - ACTIONS(7746), 1, anon_sym_LT, - ACTIONS(7748), 1, anon_sym_LT_LT, - ACTIONS(7750), 1, anon_sym_GT_GT, - ACTIONS(7752), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7754), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8691), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - ACTIONS(7756), 1, anon_sym_STAR_EQ, - ACTIONS(7758), 1, anon_sym_SLASH_EQ, - ACTIONS(7760), 1, anon_sym_PERCENT_EQ, - ACTIONS(7762), 1, anon_sym_PLUS_EQ, - ACTIONS(7764), 1, anon_sym_DASH_EQ, - ACTIONS(7766), 1, anon_sym_LT_LT_EQ, - ACTIONS(7768), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7770), 1, anon_sym_AMP_EQ, - ACTIONS(7772), 1, anon_sym_CARET_EQ, - ACTIONS(7774), 1, anon_sym_PIPE_EQ, - ACTIONS(7776), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7778), 1, - anon_sym_or, - ACTIONS(7780), 1, - anon_sym_and, - ACTIONS(7782), 1, anon_sym_bitor, - ACTIONS(7784), 1, - anon_sym_xor, - ACTIONS(7786), 1, anon_sym_bitand, - ACTIONS(7788), 1, anon_sym_not_eq, - ACTIONS(7850), 1, - anon_sym_RPAREN, - STATE(1384), 1, - sym__binary_fold_operator, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - STATE(8728), 1, - sym__fold_operator, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [77007] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7696), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6419), 19, + anon_sym_GT2, + [138406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8705), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361571,18 +550879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6421), 24, + anon_sym_DOT, + ACTIONS(8707), 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, @@ -361600,11 +550912,15 @@ 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, - [77081] = 3, + [138465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 19, + ACTIONS(9507), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361618,24 +550934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6661), 33, + anon_sym_DASH_GT, + ACTIONS(9509), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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, @@ -361657,11 +550972,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, - [77141] = 3, + anon_sym_DASH_GT_STAR, + [138524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 20, + ACTIONS(4570), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361675,14 +550990,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(6376), 32, + ACTIONS(4568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -361692,7 +551006,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, @@ -361715,21 +551029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77201] = 8, + [138583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_LBRACK, - STATE(3440), 1, - sym_new_declarator, - STATE(3889), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6150), 16, + ACTIONS(9404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361744,17 +551047,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6152), 30, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361766,27 +551074,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, - [77271] = 6, + [138642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(4169), 18, + ACTIONS(8595), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361801,20 +551103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 31, + anon_sym_DASH_GT, + ACTIONS(8597), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361826,21 +551127,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77337] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [138701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 19, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(5260), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361850,27 +551156,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(5771), 33, + ACTIONS(5253), 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, @@ -361879,7 +551183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -361893,72 +551196,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [77397] = 25, + anon_sym_DASH_GT, + anon_sym_GT2, + [138762] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7670), 1, - anon_sym_AMP_AMP, - ACTIONS(7672), 1, + ACTIONS(11298), 1, + sym_identifier, + STATE(5450), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6694), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6700), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8118), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(7676), 1, anon_sym_AMP, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7686), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7688), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_or, - ACTIONS(7690), 1, anon_sym_and, - ACTIONS(7692), 1, anon_sym_bitor, - ACTIONS(7694), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7698), 1, + anon_sym_not_eq, anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7017), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7664), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7674), 2, + sym_literal_suffix, + ACTIONS(8116), 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_xor, - ACTIONS(7682), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7696), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7700), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7666), 3, + anon_sym_GT2, + [138829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9562), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7678), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7680), 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(7019), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9564), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361966,30 +551299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [77501] = 9, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [138888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 19, + ACTIONS(9566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361999,23 +551327,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(6425), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362023,6 +551355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -362035,11 +551368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [77573] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [138947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 26, + ACTIONS(6233), 1, + anon_sym_COLON_COLON, + ACTIONS(9142), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362049,33 +551385,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, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7039), 26, + ACTIONS(9144), 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, @@ -362084,23 +551412,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, - [77633] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [139008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, - anon_sym_LT, - STATE(3176), 1, - sym_template_argument_list, - ACTIONS(6495), 18, + ACTIONS(9404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362111,6 +551441,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, @@ -362119,7 +551450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6497), 32, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362152,110 +551483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77697] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7418), 1, - anon_sym___attribute__, - ACTIONS(7421), 1, - anon_sym___attribute, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5034), 1, - sym__function_attributes_start, - STATE(5309), 1, - sym_ref_qualifier, - STATE(6316), 1, - sym__function_attributes_end, - STATE(6408), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5531), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [77811] = 5, + [139067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4197), 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(4169), 17, + ACTIONS(9007), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362269,11 +551500,10 @@ 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(4161), 21, + anon_sym_DASH_GT, + ACTIONS(9009), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362283,28 +551513,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77875] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [139126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7852), 1, + ACTIONS(11300), 1, anon_sym_LT, - STATE(3419), 1, + STATE(3016), 1, sym_template_argument_list, - ACTIONS(6327), 19, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362324,7 +551566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6329), 30, + ACTIONS(9227), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -362355,16 +551597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [77941] = 6, + [139189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(4169), 18, + ACTIONS(11303), 1, + anon_sym_LT, + STATE(5247), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362375,7 +551615,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, @@ -362383,16 +551622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 31, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362415,384 +551655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [78007] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6048), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [78071] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6052), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [78135] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3263), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7855), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6022), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [78199] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3267), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7857), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6068), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [78263] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7794), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6086), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [78327] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, - anon_sym_COLON_COLON, - ACTIONS(7862), 1, - anon_sym_virtual, - ACTIONS(7871), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7874), 1, - anon_sym___declspec, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(7868), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7877), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3342), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7865), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7859), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6764), 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, - [78405] = 9, + [139252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6399), 17, + ACTIONS(8731), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362802,23 +551668,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(6401), 28, + anon_sym_DOT, + ACTIONS(8733), 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, @@ -362826,7 +551696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -362839,72 +551708,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [78477] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [139311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, - anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + ACTIONS(9404), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362919,26 +551759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [78583] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6415), 17, + anon_sym_DASH_GT_STAR, + [139370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362953,18 +551785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6417), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2793), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362976,33 +551809,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [78657] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6419), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [139429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9294), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363020,15 +551844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6421), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9296), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -363047,103 +551875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [78731] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7017), 1, - anon_sym_EQ, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, - anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7019), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [78837] = 9, + anon_sym_DASH_GT_STAR, + [139488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 17, + ACTIONS(9404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363161,15 +551900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6425), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -363190,72 +551933,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [78909] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [139547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6764), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7009), 1, - anon_sym_EQ, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6762), 38, anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [139606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9078), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9080), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363267,78 +552033,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [79015] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_EQ, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, - anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, anon_sym_or, - ACTIONS(7651), 1, anon_sym_and, - ACTIONS(7653), 1, anon_sym_bitor, - ACTIONS(7655), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(7880), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [139665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5253), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -363352,32 +552095,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [79125] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, + anon_sym_DASH_GT_STAR, + [139724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9082), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -363387,18 +552121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6491), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9084), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363410,33 +552145,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [79201] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [139783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363454,15 +552180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 26, + anon_sym_DOT, + ACTIONS(6272), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363481,70 +552211,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [79275] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [139842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9965), 1, + anon_sym_decltype, + ACTIONS(11190), 1, + sym_auto, + STATE(5972), 1, + sym_decltype_auto, + ACTIONS(6798), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(7631), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6800), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6489), 2, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_or, - ACTIONS(7625), 2, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [139907] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + STATE(6004), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9107), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363556,71 +552322,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [79377] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 3, - anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(7627), 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [139972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9358), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 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(6491), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9360), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363628,72 +552374,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, - [79475] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7655), 1, + anon_sym_bitor, anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7627), 3, + anon_sym_GT2, + [140031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6491), 20, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363708,65 +552437,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [79569] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7655), 1, + anon_sym_bitor, anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8599), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 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(6491), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8601), 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_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363778,65 +552487,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [79661] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [140149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8618), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 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(6491), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8620), 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_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363848,64 +552543,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - [79749] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [140208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8693), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7641), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 24, + anon_sym_DOT, + ACTIONS(8695), 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_COLON, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363920,60 +552605,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [79835] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7627), 3, + [140267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8671), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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(6491), 25, + anon_sym_DOT, + ACTIONS(8673), 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, @@ -363981,43 +552654,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [79917] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7627), 3, + anon_sym_GT2, + [140326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9484), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -364030,15 +552690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6491), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9486), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -364057,55 +552721,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [79995] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9519), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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(6491), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9521), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -364124,26 +552777,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [80075] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + STATE(5056), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6539), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6541), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8739), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6389), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6451), 17, + [140509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9472), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364161,15 +552861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6453), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -364188,72 +552892,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [80149] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6956), 1, - anon_sym_EQ, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, - anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9476), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9478), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364268,75 +552944,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [80255] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6974), 1, - anon_sym_EQ, - ACTIONS(6976), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, - anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, anon_sym_bitor, - ACTIONS(7655), 1, anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(7880), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8633), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7627), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6978), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8635), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -364347,19 +552994,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, - [80365] = 6, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [140686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7882), 1, - anon_sym_LT, - STATE(3419), 1, - sym_template_argument_list, - ACTIONS(6296), 19, + ACTIONS(9550), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364369,24 +553021,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(6298), 30, + anon_sym_DASH_GT, + ACTIONS(9552), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364395,6 +553049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -364408,94 +553063,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [80431] = 28, + anon_sym_DASH_GT_STAR, + [140745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6976), 1, + ACTIONS(11306), 1, + sym_literal_suffix, + ACTIONS(5253), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(6986), 1, - anon_sym_EQ, - ACTIONS(7629), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7631), 1, anon_sym_AMP_AMP, - ACTIONS(7633), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_AMP, - ACTIONS(7643), 1, - anon_sym_GT_EQ, - ACTIONS(7647), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7649), 1, - anon_sym_or, - ACTIONS(7651), 1, - anon_sym_and, - ACTIONS(7653), 1, - anon_sym_bitor, - ACTIONS(7655), 1, - anon_sym_bitand, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(7880), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7635), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7645), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7659), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7627), 3, + anon_sym_GT2, + ACTIONS(5260), 26, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7639), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7641), 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(6988), 15, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [80541] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [140806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 19, + ACTIONS(8675), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364505,28 +553134,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(5659), 33, + ACTIONS(8677), 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, @@ -364534,7 +553162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -364548,11 +553175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80601] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [140865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5910), 20, + ACTIONS(11300), 1, + anon_sym_LT, + STATE(5220), 1, + sym_template_argument_list, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364562,28 +553194,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5912), 32, + ACTIONS(9227), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364591,7 +553220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -364605,22 +553233,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, - [80661] = 8, + anon_sym_DASH_GT, + anon_sym_GT2, + [140928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - ACTIONS(7824), 1, - anon_sym_LBRACK, - STATE(3465), 1, - sym_new_declarator, - STATE(3907), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 16, + ACTIONS(8208), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364635,17 +553253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6156), 30, + ACTIONS(3888), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364657,94 +553280,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80731] = 3, + [140987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 22, - aux_sym_preproc_elif_token1, + ACTIONS(8665), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5180), 30, + anon_sym_DASH_GT, + ACTIONS(8667), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [80791] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [141046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6391), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6385), 17, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364762,15 +553370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6387), 26, + anon_sym_DOT, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364789,16 +553400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [80865] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [141107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3802), 1, - sym_attribute_specifier, - ACTIONS(6317), 16, + ACTIONS(8516), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364815,7 +553424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6319), 33, + ACTIONS(8518), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364825,7 +553434,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, @@ -364848,11 +553456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [80931] = 3, + [141166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 19, + ACTIONS(8145), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364862,27 +553473,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(5749), 33, + ACTIONS(8140), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -364891,7 +553501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -364905,17 +553514,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, - [80991] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [141225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3823), 1, - sym_attribute_specifier, - ACTIONS(6292), 16, + ACTIONS(9375), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364930,9 +553534,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(6294), 33, + ACTIONS(9377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -364942,7 +553549,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, @@ -364955,21 +553561,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + [141284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11308), 1, + sym_identifier, + STATE(5519), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11311), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11314), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8047), 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(8045), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81057] = 3, + anon_sym_DASH_GT, + [141351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 19, + ACTIONS(11300), 1, + anon_sym_LT, + STATE(2992), 1, + sym_template_argument_list, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364979,27 +553649,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(5884), 33, + ACTIONS(9227), 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, @@ -365008,7 +553675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -365022,72 +553688,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81117] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [141414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 22, - aux_sym_preproc_elif_token1, + ACTIONS(8693), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5208), 30, + ACTIONS(8695), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, - [81177] = 5, + anon_sym_GT2, + [141473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7885), 1, - anon_sym_LT, - STATE(3451), 1, - sym_template_argument_list, - ACTIONS(6530), 18, + ACTIONS(9558), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365098,6 +553760,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, @@ -365106,7 +553769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6532), 32, + ACTIONS(9560), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365139,10 +553802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81241] = 3, + [141532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 19, + ACTIONS(9472), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365162,7 +553825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5767), 33, + ACTIONS(9474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365172,7 +553835,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, @@ -365196,124 +553858,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81301] = 3, + [141591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 22, - aux_sym_preproc_elif_token1, + ACTIONS(9515), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5196), 30, + anon_sym_DASH_GT, + ACTIONS(9517), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [81361] = 3, + anon_sym_DASH_GT_STAR, + [141650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 22, - aux_sym_preproc_elif_token1, + ACTIONS(11303), 1, + anon_sym_LT, + STATE(3043), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_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(5160), 30, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81421] = 3, + [141713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 19, + ACTIONS(8935), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365328,12 +553990,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(5812), 33, + ACTIONS(8937), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365343,7 +554002,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, @@ -365356,28 +554014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [81481] = 6, + [141772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(5929), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4169), 19, + ACTIONS(9248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365397,14 +554051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4161), 29, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365427,17 +554084,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81547] = 6, + [141831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(5929), 2, - anon_sym_RPAREN, + ACTIONS(10247), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4169), 19, + 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(10249), 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, + [141890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9428), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365457,14 +554163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4161), 29, + ACTIONS(9430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365487,142 +554196,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81613] = 5, + [141949] = 6, ACTIONS(3), 1, sym_comment, - STATE(3228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7826), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 6, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5860), 41, + 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(9119), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [81677] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7895), 1, - anon_sym_virtual, - ACTIONS(7904), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7907), 1, - anon_sym___declspec, - ACTIONS(7913), 1, - anon_sym_explicit, - STATE(3059), 1, - sym_alignas_qualifier, - ACTIONS(7901), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7910), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7890), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7888), 7, - anon_sym_AMP, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(7898), 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(3385), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - ACTIONS(7892), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [81757] = 6, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [142014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym___attribute__, - ACTIONS(6929), 1, - anon_sym___attribute, - STATE(3805), 1, - sym_attribute_specifier, - ACTIONS(6334), 16, + ACTIONS(7629), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365639,7 +554275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6336), 33, + ACTIONS(7627), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365649,7 +554285,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, @@ -365672,95 +554307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81823] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7305), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5036), 1, - sym__function_attributes_start, - STATE(5304), 1, - sym_ref_qualifier, - STATE(5580), 1, - sym_trailing_return_type, - STATE(6480), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, anon_sym_final, anon_sym_override, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7057), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5507), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [81937] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [142073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 19, + ACTIONS(8685), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365770,27 +554324,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5172), 32, + ACTIONS(8687), 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, @@ -365798,7 +554352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -365812,11 +554365,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, - [81996] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [142132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 19, + ACTIONS(8709), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365826,27 +554380,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(6611), 32, + ACTIONS(8711), 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, @@ -365854,7 +554408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -365868,11 +554421,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, - [82055] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [142191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 19, + ACTIONS(9511), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365892,7 +554446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4161), 32, + ACTIONS(9513), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365925,10 +554479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82114] = 3, + [142250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 19, + ACTIONS(9523), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365948,7 +554502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6629), 32, + ACTIONS(9525), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365981,14 +554535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82173] = 5, + [142309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_LT, - STATE(1892), 1, - sym_template_argument_list, - ACTIONS(6495), 19, + ACTIONS(9248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365998,24 +554548,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(6497), 30, + anon_sym_DASH_GT, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -366024,6 +554576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -366037,12 +554590,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, - [82236] = 3, + anon_sym_DASH_GT_STAR, + [142368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 19, + ACTIONS(9248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366062,7 +554614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6645), 32, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366095,10 +554647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82295] = 3, + [142427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 19, + ACTIONS(8655), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366113,12 +554665,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(6711), 32, + ACTIONS(8657), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366140,21 +554689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [82354] = 3, + [142486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 21, + ACTIONS(9574), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366164,27 +554716,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(5798), 30, + anon_sym_DASH_GT, + ACTIONS(9576), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -366192,6 +554744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -366205,12 +554758,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, - [82413] = 3, + anon_sym_DASH_GT_STAR, + [142545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 19, + ACTIONS(9093), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366225,12 +554777,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(6551), 32, + ACTIONS(9095), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366252,21 +554801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [82472] = 3, + [142604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 19, + ACTIONS(9554), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366286,7 +554838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6547), 32, + ACTIONS(9556), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366319,10 +554871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82531] = 3, + [142663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 19, + ACTIONS(9097), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366337,12 +554889,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(6727), 32, + ACTIONS(9099), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366364,21 +554913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [82590] = 3, + [142722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6635), 19, + ACTIONS(9101), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366393,12 +554945,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(6637), 32, + ACTIONS(9103), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366420,21 +554969,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [82649] = 3, + [142781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 19, + ACTIONS(9109), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366449,12 +555001,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(6719), 32, + ACTIONS(9111), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366476,21 +555025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [82708] = 3, + [142840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 19, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(6753), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366501,20 +555062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6559), 32, + ACTIONS(6758), 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, @@ -366532,25 +555088,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, - [82767] = 5, + [142907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_LT, - STATE(1611), 1, - sym_template_argument_list, - ACTIONS(6495), 17, + ACTIONS(9371), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366561,6 +555113,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, @@ -366568,7 +555121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6497), 32, + anon_sym_DASH_GT, + ACTIONS(9373), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366600,11 +555154,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, - [82830] = 3, + anon_sym_DASH_GT_STAR, + [142966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 19, + ACTIONS(9452), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366624,7 +555178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5188), 32, + ACTIONS(9454), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366657,73 +555211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 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(5495), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [82948] = 6, + [143025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - STATE(3906), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 16, + ACTIONS(9456), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366738,124 +555229,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(6261), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83013] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7919), 1, - sym_identifier, - STATE(3548), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5088), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5094), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5455), 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(5453), 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, - [83080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5178), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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(5180), 32, + ACTIONS(9458), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366888,10 +555267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83139] = 3, + [143084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 19, + ACTIONS(6242), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366910,18 +555289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5208), 32, + ACTIONS(6244), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366943,11 +555322,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, - [83198] = 3, + anon_sym_DASH_GT, + [143143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 19, + ACTIONS(11317), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366961,23 +555342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6723), 32, + ACTIONS(9310), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -366999,15 +555379,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, - [83257] = 5, + anon_sym_DASH_GT, + [143204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - anon_sym_AMP_AMP, - ACTIONS(7923), 1, - anon_sym_and, - ACTIONS(6247), 18, + ACTIONS(6246), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367023,19 +555399,21 @@ 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(6249), 31, + ACTIONS(6248), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367057,11 +555435,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, - [83320] = 3, + anon_sym_DASH_GT, + [143263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 17, + ACTIONS(9432), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367075,11 +555453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5927), 34, + ACTIONS(9434), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367089,8 +555469,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, @@ -367103,21 +555481,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, - [83379] = 3, + [143322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 19, + ACTIONS(6250), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367136,18 +555514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6641), 32, + ACTIONS(6252), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367169,94 +555547,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, - [83438] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, anon_sym_DASH_GT, - ACTIONS(7438), 1, - anon_sym_requires, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5141), 1, - sym__function_attributes_start, - STATE(5372), 1, - sym_ref_qualifier, - STATE(6586), 1, - sym__function_attributes_end, - STATE(6742), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7057), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5542), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [83551] = 3, + [143381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6655), 19, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(9262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367275,11 +555572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6657), 32, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -367287,6 +555582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367308,67 +555604,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83610] = 3, + anon_sym_DASH_GT, + [143442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 16, + ACTIONS(11319), 1, + anon_sym_LT, + STATE(5733), 1, + sym_template_argument_list, + ACTIONS(9262), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 35, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83669] = 3, + [143505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 19, + ACTIONS(10249), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367383,15 +555681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5160), 32, + sym_literal_suffix, + ACTIONS(10247), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -367399,6 +555702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367410,21 +555714,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, - [83728] = 3, + anon_sym_DASH_GT, + [143564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 17, + ACTIONS(8721), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367434,27 +555732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5860), 34, + ACTIONS(8723), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367462,25 +555760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83787] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [143623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 19, + ACTIONS(9570), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367500,7 +555798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5164), 32, + ACTIONS(9572), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367533,12 +555831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83846] = 4, + [143682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(6350), 20, + ACTIONS(11322), 1, + sym_literal_suffix, + ACTIONS(5260), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367548,18 +555846,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_and_eq, + anon_sym_or_eq, + anon_sym_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(6352), 30, + ACTIONS(5253), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -367567,7 +555869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367575,25 +555879,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, - [83907] = 3, + [143743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 17, + ACTIONS(6254), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367607,23 +555905,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5840), 34, + ACTIONS(6256), 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_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367635,21 +555933,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, - [83966] = 3, + anon_sym_DASH_GT, + [143802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 19, + ACTIONS(8721), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367663,23 +555961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6504), 32, + ACTIONS(8723), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -367701,11 +555999,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, - [84025] = 3, + anon_sym_DASH_GT, + [143861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 19, + ACTIONS(9379), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367725,7 +556023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6508), 32, + ACTIONS(9381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367758,10 +556056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84084] = 3, + [143920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 19, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + STATE(5978), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9086), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367776,16 +556081,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(5184), 32, + ACTIONS(9088), 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, @@ -367803,21 +556104,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, - [84143] = 3, + [143985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 19, + ACTIONS(9538), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367837,7 +556138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6633), 32, + ACTIONS(9540), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367870,10 +556171,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84202] = 3, + [144044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5235), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [144103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 19, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367893,7 +556250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6470), 32, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367926,10 +556283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84261] = 3, + [144162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 20, + ACTIONS(8629), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367939,26 +556296,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8631), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [144221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(6449), 31, + anon_sym_DASH_GT, + ACTIONS(8631), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -367967,27 +556377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [84320] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [144280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 21, + ACTIONS(8831), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367997,26 +556408,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(6376), 29, + anon_sym_DASH_GT, + ACTIONS(8829), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368024,6 +556436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -368037,12 +556450,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, - [84381] = 3, + anon_sym_DASH_GT_STAR, + [144339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 19, + ACTIONS(9262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368062,7 +556474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6555), 32, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368095,10 +556507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84440] = 3, + [144398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 20, + ACTIONS(8629), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368108,26 +556520,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(5794), 31, + anon_sym_DASH_GT, + ACTIONS(8631), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -368136,25 +556545,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [84499] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [144457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 20, + ACTIONS(6258), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368164,18 +556576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5663), 31, + ACTIONS(6260), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -368183,8 +556593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368192,6 +556604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -368206,190 +556619,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [84558] = 7, + [144516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(3758), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7804), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9304), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6245), 25, + anon_sym_DASH_GT, + ACTIONS(9306), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [84625] = 6, + anon_sym_DASH_GT_STAR, + [144575] = 3, ACTIONS(3), 1, sym_comment, - STATE(3175), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5967), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5969), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5788), 18, + ACTIONS(9542), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5790), 21, + anon_sym_DASH_GT, + ACTIONS(9544), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [84690] = 7, + anon_sym_DASH_GT_STAR, + [144634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, - sym_identifier, - STATE(3433), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7930), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7933), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5433), 18, + ACTIONS(8671), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5431), 19, + ACTIONS(8673), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [84757] = 3, + [144693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 19, + ACTIONS(8675), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368403,23 +556804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6665), 32, + ACTIONS(8677), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368441,11 +556842,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, - [84816] = 3, + anon_sym_DASH_GT, + [144752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 19, + ACTIONS(6262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368464,18 +556865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6679), 32, + ACTIONS(6264), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -368497,11 +556898,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, - [84875] = 3, + anon_sym_DASH_GT, + [144811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 19, + ACTIONS(9546), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368521,7 +556922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6514), 32, + ACTIONS(9548), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368554,10 +556955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84934] = 3, + [144870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 19, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + anon_sym_LPAREN2, + STATE(5994), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8951), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368572,16 +556980,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(6518), 32, + ACTIONS(8953), 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, @@ -368599,21 +557003,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, - [84993] = 3, + [144935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 20, + ACTIONS(9436), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368623,26 +557027,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(5836), 31, + anon_sym_DASH_GT, + ACTIONS(9438), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -368651,6 +557055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -368664,12 +557069,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, - [85052] = 3, + anon_sym_DASH_GT_STAR, + [144994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 20, + ACTIONS(8955), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368679,26 +557083,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(5782), 31, + anon_sym_DASH_GT, + ACTIONS(8957), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -368707,32 +557108,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [85111] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [145053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - STATE(3957), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6255), 16, + ACTIONS(8992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368749,10 +557146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6257), 31, + ACTIONS(8994), 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, @@ -368780,11 +557178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [85176] = 3, + [145112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 20, + ACTIONS(9278), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368794,26 +557195,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(5816), 31, + anon_sym_DASH_GT, + ACTIONS(9280), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -368822,6 +557223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -368835,12 +557237,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, - [85235] = 3, + anon_sym_DASH_GT_STAR, + [145171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 20, + ACTIONS(9424), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368850,26 +557251,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(5820), 31, + anon_sym_DASH_GT, + ACTIONS(9426), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -368878,6 +557279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -368891,12 +557293,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, - [85294] = 3, + anon_sym_DASH_GT_STAR, + [145230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 20, + ACTIONS(9448), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368906,83 +557307,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(5856), 31, + anon_sym_DASH_GT, + ACTIONS(9450), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [85353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6439), 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(6441), 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, @@ -368990,6 +557335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -369003,12 +557349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [85412] = 3, + anon_sym_DASH_GT_STAR, + [145289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 20, + ACTIONS(11300), 1, + anon_sym_LT, + STATE(3024), 1, + sym_template_argument_list, + ACTIONS(9225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369020,7 +557369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -369029,7 +557377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5864), 31, + ACTIONS(9227), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -369037,7 +557385,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, @@ -369061,10 +557408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [85471] = 3, + [145352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 19, + ACTIONS(11319), 1, + anon_sym_LT, + STATE(3698), 1, + sym_template_argument_list, + ACTIONS(9262), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369075,7 +557426,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, @@ -369083,17 +557433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6699), 32, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_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, @@ -369116,11 +557465,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, - [85530] = 3, + anon_sym_DASH_GT, + [145415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 19, + ACTIONS(9440), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369140,7 +557489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6445), 32, + ACTIONS(9442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369173,10 +557522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85589] = 3, + [145474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 19, + ACTIONS(9408), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369196,7 +557545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6445), 32, + ACTIONS(9410), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369229,10 +557578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85648] = 3, + [145533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 19, + ACTIONS(8087), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369247,12 +557596,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(6445), 32, + ACTIONS(8089), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369274,77 +557620,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, - [85707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5765), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5767), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [85766] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [145592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 19, + ACTIONS(11303), 1, + anon_sym_LT, + STATE(3042), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369355,7 +557652,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, @@ -369363,11 +557659,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6478), 32, + ACTIONS(9227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -369375,6 +557669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -369396,67 +557691,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, - [85825] = 3, + anon_sym_DASH_GT, + [145655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5857), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8951), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + sym_identifier, + ACTIONS(8953), 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_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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_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, - [85884] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [145720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 19, + ACTIONS(8685), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369470,23 +557768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5985), 32, + ACTIONS(8687), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -369508,72 +557806,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, - [85943] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4942), 1, - anon_sym_LBRACK, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(3724), 1, - sym_template_argument_list, - ACTIONS(4935), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4938), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4931), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [86012] = 3, + anon_sym_DASH_GT, + [145779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(11324), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369583,27 +557822,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(4933), 32, + ACTIONS(9310), 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, @@ -369611,7 +557849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -369625,11 +557862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [86071] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [145840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 16, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -369638,6 +557880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -369645,11 +557890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 35, + sym_identifier, + ACTIONS(6228), 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, @@ -369662,30 +557911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [86130] = 3, + anon_sym_COLON_RBRACK, + [145901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(8999), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369700,12 +557939,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(4933), 32, + ACTIONS(9001), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369727,21 +557963,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [86189] = 3, + [145960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 19, + ACTIONS(9003), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369756,12 +557995,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(6522), 32, + ACTIONS(9005), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369783,21 +558019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [86248] = 3, + [146019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(9011), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369812,12 +558051,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(4933), 32, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369839,21 +558075,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [86307] = 3, + [146078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 19, + ACTIONS(9015), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369868,12 +558107,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(6675), 32, + ACTIONS(9017), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369895,21 +558131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [86366] = 3, + [146137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 19, + ACTIONS(9444), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369929,7 +558168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6413), 32, + ACTIONS(9446), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369962,10 +558201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [86425] = 3, + [146196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 20, + ACTIONS(8713), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369980,13 +558219,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(5884), 31, + ACTIONS(8715), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -369994,8 +558234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370018,10 +558257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [86484] = 3, + [146255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 20, + ACTIONS(8709), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370031,18 +558270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5888), 31, + ACTIONS(8711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370050,8 +558288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370059,6 +558298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -370073,11 +558313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [86543] = 3, + [146314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 21, + ACTIONS(8541), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370087,27 +558326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5876), 30, + anon_sym_DASH_GT, + ACTIONS(8543), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370115,32 +558351,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [86602] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [146373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - STATE(3972), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 16, + ACTIONS(9266), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370155,12 +558387,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(6181), 31, + ACTIONS(9268), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -370178,96 +558414,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, - [86667] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5701), 1, - anon_sym___attribute, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7938), 1, - anon_sym_STAR, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - STATE(2866), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6251), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3478), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4184), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86764] = 3, + [146432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 20, + ACTIONS(8713), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370277,18 +558438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5713), 31, + ACTIONS(8715), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370296,8 +558456,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370305,6 +558466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -370319,11 +558481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [86823] = 3, + [146491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 20, + ACTIONS(8717), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370333,18 +558494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5900), 31, + ACTIONS(8719), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370352,8 +558512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370361,6 +558522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -370375,11 +558537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [86882] = 3, + [146550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 20, + ACTIONS(8717), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370394,13 +558555,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(5908), 31, + ACTIONS(8719), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370408,8 +558570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370432,10 +558593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [86941] = 3, + [146609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(9029), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370450,12 +558611,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(4933), 32, + ACTIONS(9031), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370477,21 +558635,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [87000] = 3, + [146668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 19, + ACTIONS(8559), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370506,12 +558667,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(5168), 32, + ACTIONS(8561), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370533,21 +558691,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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [87059] = 3, + [146727] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7183), 1, + anon_sym_SEMI, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [146796] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_decltype, + ACTIONS(7183), 1, + anon_sym_SEMI, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [146863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 20, + ACTIONS(8145), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370557,18 +558839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5713), 31, + ACTIONS(8140), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -370576,8 +558856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370585,6 +558867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -370599,11 +558882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87118] = 3, + [146922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 20, + ACTIONS(6588), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5260), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370613,26 +558899,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(5713), 31, + anon_sym_DASH_GT, + ACTIONS(5253), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -370641,12 +558927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -370654,12 +558938,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, - [87177] = 3, + anon_sym_DASH_GT_STAR, + [146983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 21, + ACTIONS(9037), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370669,27 +558952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5729), 30, + anon_sym_DASH_GT, + ACTIONS(9039), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370697,25 +558977,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [147042] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(11292), 1, + anon_sym_COLON, + ACTIONS(11294), 1, + anon_sym_LBRACE, + STATE(5797), 1, + sym__enum_base_clause, + STATE(5893), 1, + sym_enumerator_list, + STATE(5985), 1, + sym_attribute_specifier, + ACTIONS(7600), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7602), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [87236] = 3, + anon_sym_try, + anon_sym_requires, + [147115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 21, + ACTIONS(2803), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370725,27 +559071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5737), 30, + anon_sym_DASH_GT, + ACTIONS(2801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370753,25 +559096,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [87295] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [147174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 19, + ACTIONS(9358), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370790,18 +559136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4933), 32, + ACTIONS(9360), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370823,11 +559169,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, - [87354] = 3, + anon_sym_DASH_GT, + [147233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 21, + ACTIONS(8651), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370837,27 +559183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5741), 30, + anon_sym_DASH_GT, + ACTIONS(8653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -370865,161 +559208,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [87413] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7938), 1, - anon_sym_STAR, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - STATE(2866), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6263), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4189), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - ACTIONS(7504), 1, - anon_sym_EQ, - STATE(2701), 1, - sym_template_argument_list, - ACTIONS(7502), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4187), 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(5971), 38, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [87579] = 3, + anon_sym_DASH_GT_STAR, + [147292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 17, + ACTIONS(9444), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371033,23 +559243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5824), 34, + ACTIONS(9446), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371061,160 +559270,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, - anon_sym_DASH_GT_STAR, - [87638] = 3, + anon_sym_DASH_GT, + [147350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 16, + ACTIONS(9554), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5488), 35, + ACTIONS(9556), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [87697] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(5093), 1, - sym__function_attributes_start, - STATE(5408), 1, - sym_ref_qualifier, - STATE(6520), 1, - sym__function_attributes_end, - STATE(6676), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7057), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5535), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87810] = 3, + [147408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 21, + ACTIONS(9448), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371229,14 +559354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5733), 30, + ACTIONS(9450), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371244,7 +559368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371267,70 +559391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87869] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(7100), 1, - anon_sym_decltype, - ACTIONS(7956), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5661), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [87936] = 3, + [147466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 21, + ACTIONS(9266), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371345,14 +559409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5808), 30, + ACTIONS(9268), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371360,7 +559423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371383,85 +559446,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87995] = 22, + [147524] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5701), 1, - anon_sym___asm, - ACTIONS(7936), 1, + ACTIONS(9344), 1, + anon_sym_EQ, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6234), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3489), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4202), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 11, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [88092] = 3, + 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, + [147626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 19, + ACTIONS(8208), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371480,11 +559545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6703), 32, + ACTIONS(3888), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -371492,6 +559555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371513,11 +559577,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, - [88151] = 3, + anon_sym_DASH_GT, + [147684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 21, + ACTIONS(9379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371527,19 +559591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6474), 30, + ACTIONS(9381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371547,7 +559608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371555,6 +559618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -371569,86 +559633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [88210] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6242), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4205), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 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(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [88307] = 3, + [147742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 21, + ACTIONS(9578), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371663,14 +559651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5763), 30, + ACTIONS(9580), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -371678,7 +559665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371701,10 +559688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88366] = 3, + [147800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 19, + ACTIONS(9499), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371714,26 +559701,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(5204), 32, + ACTIONS(9501), 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, @@ -371742,7 +559728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -371756,15 +559741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88425] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [147858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_LT, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(6495), 19, + ACTIONS(11354), 1, + anon_sym_COMMA, + ACTIONS(11356), 1, + anon_sym_RBRACK, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371774,24 +559760,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(6497), 30, + ACTIONS(5253), 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, @@ -371800,6 +559785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -371814,11 +559800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [88488] = 3, + [147920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 19, + ACTIONS(9542), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371837,11 +559822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 32, + ACTIONS(9544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -371849,6 +559832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371870,16 +559854,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88547] = 3, + anon_sym_DASH_GT, + [147978] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -371889,22 +559890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 32, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371916,21 +559910,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88606] = 3, + [148052] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371945,22 +559952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6437), 32, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371972,21 +559972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88665] = 3, + [148124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 19, + ACTIONS(8208), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371996,26 +559993,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(6669), 32, + ACTIONS(3888), 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, @@ -372024,7 +560020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372038,15 +560033,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, - [88724] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [148182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7964), 1, - anon_sym_LT, - STATE(2391), 1, - sym_template_argument_list, - ACTIONS(6530), 17, + ACTIONS(5260), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372056,15 +560048,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(6532), 32, + ACTIONS(5253), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372072,8 +560067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -372082,7 +560075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372097,40 +560089,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88787] = 3, + anon_sym_GT2, + [148240] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 19, + ACTIONS(9282), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 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(5176), 32, + ACTIONS(9284), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372142,110 +560164,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_or, anon_sym_DASH_GT_STAR, - [88846] = 6, + [148340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7967), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(4931), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6615), 1, + anon_sym_EQ, + ACTIONS(6617), 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(5260), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4938), 25, + ACTIONS(5253), 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, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88911] = 3, + [148402] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 19, + ACTIONS(9282), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, + anon_sym_DASH_GT_STAR, + [148500] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11350), 1, anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6551), 32, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372257,51 +560367,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_DASH_GT_STAR, + [148594] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11352), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_DASH_GT_STAR, - [88970] = 3, + [148684] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9282), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, + ACTIONS(9284), 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, + [148770] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6563), 32, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(9284), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372313,136 +560572,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89029] = 30, + [148854] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(5103), 1, - sym__function_attributes_start, - STATE(5354), 1, - sym_ref_qualifier, - STATE(6193), 1, - sym_trailing_return_type, - STATE(6596), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7057), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5537), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [89142] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7974), 1, - anon_sym_LT, - STATE(3573), 1, - sym_template_argument_list, - ACTIONS(6530), 19, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 7, 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_LT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6532), 30, + ACTIONS(9284), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372450,25 +560634,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [89205] = 3, + anon_sym_DASH_GT_STAR, + [148934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 19, + ACTIONS(9499), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372487,11 +560667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1936), 32, + ACTIONS(9501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -372499,6 +560677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372520,99 +560699,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_STAR, - [89264] = 30, + anon_sym_DASH_GT, + [148992] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7074), 1, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7977), 1, - anon_sym_requires, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(5068), 1, - sym__function_attributes_start, - STATE(5358), 1, - sym_ref_qualifier, - STATE(6525), 1, - sym__function_attributes_end, - STATE(6714), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7057), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7086), 2, - anon_sym_final, - anon_sym_override, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5980), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5546), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [89377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5878), 17, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -372621,23 +560735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5880), 34, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372656,44 +560763,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89436] = 3, + [149068] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 19, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9282), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6609), 32, + ACTIONS(9284), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372705,21 +560821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89495] = 3, + [149146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 19, + ACTIONS(9582), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372729,26 +560842,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(6619), 32, + ACTIONS(9584), 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, @@ -372757,7 +560869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372771,11 +560882,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, - [89554] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [149204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 20, + ACTIONS(9527), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372785,18 +560897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5848), 31, + ACTIONS(9529), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372804,8 +560914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372813,6 +560924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372827,11 +560939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89613] = 3, + [149262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 20, + ACTIONS(9531), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372841,18 +560952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5852), 31, + ACTIONS(9533), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372860,8 +560969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372869,6 +560979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372883,11 +560994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89672] = 3, + [149320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 20, + ACTIONS(9262), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372908,7 +561018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5868), 31, + ACTIONS(9264), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372916,7 +561026,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, @@ -372940,10 +561049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89731] = 3, + [149378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 20, + ACTIONS(9546), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372964,7 +561073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5872), 31, + ACTIONS(9548), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -372972,7 +561081,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, @@ -372996,10 +561104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89790] = 3, + [149436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 19, + ACTIONS(9515), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373018,11 +561126,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6543), 32, + ACTIONS(9517), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373030,6 +561136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373051,11 +561158,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, - [89849] = 3, + anon_sym_DASH_GT, + [149494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 20, + ACTIONS(9308), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373065,18 +561172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5717), 31, + ACTIONS(9310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373084,8 +561189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373093,6 +561199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373107,11 +561214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89908] = 3, + [149552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 20, + ACTIONS(9344), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373121,18 +561227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5721), 31, + ACTIONS(9342), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373140,8 +561244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373149,6 +561254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373163,11 +561269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89967] = 3, + [149610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 20, + ACTIONS(9229), 1, + anon_sym_LT, + STATE(3275), 1, + sym_template_argument_list, + ACTIONS(9225), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373177,26 +561286,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(5725), 31, + ACTIONS(9227), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -373205,6 +561311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373219,68 +561326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [90026] = 4, + [149672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7980), 1, - sym_literal_suffix, - ACTIONS(4161), 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(4169), 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, - [90087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 20, + ACTIONS(9436), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373301,7 +561350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5717), 31, + ACTIONS(9438), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373309,7 +561358,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, @@ -373333,10 +561381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90146] = 3, + [149730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 19, + ACTIONS(9217), 1, + anon_sym_COMMA, + ACTIONS(9219), 1, + anon_sym_RBRACK, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373355,11 +561407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6376), 32, + ACTIONS(5253), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373388,11 +561437,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, - [90205] = 3, + anon_sym_DASH_GT, + [149792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 20, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373402,18 +561451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5771), 31, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373421,8 +561468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373430,6 +561478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373444,11 +561493,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [90264] = 3, + [149850] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 19, + ACTIONS(5276), 1, + anon_sym_EQ, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8835), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_LBRACK, + ACTIONS(5278), 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(5253), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5260), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373462,23 +561550,53 @@ 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, + [149920] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6731), 32, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9270), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(9272), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373490,21 +561608,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [90323] = 3, + [149992] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 17, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9286), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373518,23 +561646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5892), 34, + ACTIONS(9288), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373555,16 +561676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [90382] = 4, + [150062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4169), 19, + ACTIONS(9472), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373574,26 +561690,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(4161), 29, + ACTIONS(9474), 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, @@ -373602,10 +561717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -373613,11 +561730,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90443] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [150120] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 19, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9270), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9272), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [150192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9371), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373627,26 +561807,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(6605), 32, + ACTIONS(9373), 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, @@ -373655,7 +561834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373669,67 +561847,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90502] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [150250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 19, + ACTIONS(9464), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6601), 32, + sym_identifier, + ACTIONS(9466), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90561] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [150308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 21, + ACTIONS(9515), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373744,14 +561922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5786), 30, + ACTIONS(9517), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373759,7 +561936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373782,10 +561959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90620] = 3, + [150366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 21, + ACTIONS(9248), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373795,19 +561972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6405), 30, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373815,7 +561989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373823,6 +561999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -373837,67 +562014,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [90679] = 3, + [150424] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 19, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2763), 32, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [90738] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [150490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 19, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373916,11 +562095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6532), 32, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -373928,6 +562105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373949,11 +562127,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, - [90797] = 3, + anon_sym_DASH_GT, + [150548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 19, + ACTIONS(9444), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373963,26 +562141,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(6695), 32, + ACTIONS(9446), 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, @@ -373991,7 +562168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374005,11 +562181,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, - [90856] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [150606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 19, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374028,11 +562205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6661), 32, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374040,6 +562215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374061,11 +562237,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, - [90915] = 3, + anon_sym_DASH_GT, + [150664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 20, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374075,18 +562251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5828), 31, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374094,8 +562268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374103,6 +562278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374117,11 +562293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [90974] = 3, + [150722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 20, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374131,18 +562306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5832), 31, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374150,8 +562323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374159,6 +562333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374173,11 +562348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91033] = 3, + [150780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 20, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374187,18 +562361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5844), 31, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374206,8 +562378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374215,6 +562388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374229,11 +562403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91092] = 3, + [150838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 20, + ACTIONS(9294), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374254,7 +562427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5904), 31, + ACTIONS(9296), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374262,7 +562435,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, @@ -374286,10 +562458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91151] = 3, + [150896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 19, + ACTIONS(9507), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374308,11 +562480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1940), 32, + ACTIONS(9509), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374320,6 +562490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374341,11 +562512,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, - [91210] = 3, + anon_sym_DASH_GT, + [150954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 20, + ACTIONS(9404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374355,18 +562526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5923), 31, + ACTIONS(9406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374374,8 +562543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374383,6 +562553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374397,11 +562568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91269] = 3, + [151012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 20, + ACTIONS(6709), 1, + anon_sym_EQ, + ACTIONS(6711), 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(5260), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374411,18 +562597,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(5896), 31, + ACTIONS(5253), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374430,21 +562613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -374453,78 +562625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91328] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4199), 1, - sym_auto, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_SEMI, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(7000), 1, - anon_sym_LBRACK, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4050), 1, - sym_template_argument_list, - ACTIONS(4184), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(4189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [91409] = 3, + [151074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 20, + ACTIONS(9511), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374534,18 +562638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5749), 31, + ACTIONS(9513), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374553,8 +562655,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374562,6 +562665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374576,73 +562680,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91468] = 9, + [151132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7982), 1, - anon_sym_COLON, - STATE(2594), 1, - sym_attribute_specifier, - STATE(2842), 1, - sym__enum_base_clause, - STATE(3051), 1, - sym_enumerator_list, - ACTIONS(5513), 2, + ACTIONS(8145), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6567), 11, + 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(8140), 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [151190] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10089), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6565), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [91539] = 3, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 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, + [151292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 20, + ACTIONS(9375), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374652,18 +562825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5812), 31, + ACTIONS(9377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -374671,8 +562842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374680,6 +562852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -374694,156 +562867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [91598] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7982), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(2876), 1, - sym__enum_base_clause, - STATE(3028), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6573), 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(6571), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [91669] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7074), 1, - anon_sym_LBRACK, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7438), 1, - anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(5104), 1, - sym__function_attributes_start, - STATE(5353), 1, - sym_ref_qualifier, - STATE(6250), 1, - sym_trailing_return_type, - STATE(6607), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7057), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7435), 2, - anon_sym_final, - anon_sym_override, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6262), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5551), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91782] = 3, + [151350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 19, + ACTIONS(9424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374862,11 +562889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6581), 32, + ACTIONS(9426), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374874,6 +562899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374895,11 +562921,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, - [91841] = 3, + anon_sym_DASH_GT, + [151408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 19, + ACTIONS(9558), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374918,11 +562944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6587), 32, + ACTIONS(9560), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374930,6 +562954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374951,11 +562976,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, - [91900] = 3, + anon_sym_DASH_GT, + [151466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 19, + ACTIONS(8831), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374974,11 +562999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6591), 32, + ACTIONS(8829), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -374986,6 +563009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375007,71 +563031,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91959] = 7, + anon_sym_DASH_GT, + [151524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 1, - sym_identifier, - STATE(3433), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5088), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5094), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5421), 18, + ACTIONS(9546), 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, - sym_literal_suffix, - ACTIONS(5419), 19, + ACTIONS(9548), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [92026] = 3, + [151582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 19, + ACTIONS(9420), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375090,11 +563109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5192), 32, + ACTIONS(9422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375102,6 +563119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375123,161 +563141,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, - [92085] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5701), 1, - anon_sym___asm, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - STATE(2933), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6290), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3551), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4177), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92182] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - STATE(2933), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6184), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4182), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92279] = 3, + anon_sym_DASH_GT, + [151640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 19, + ACTIONS(9538), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375287,26 +563155,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(5200), 32, + ACTIONS(9540), 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, @@ -375315,7 +563182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -375329,11 +563195,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, - [92338] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [151698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 19, + ACTIONS(9468), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375343,26 +563210,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(6577), 32, + ACTIONS(9470), 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, @@ -375371,7 +563237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -375385,11 +563250,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, - [92397] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [151756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 19, + ACTIONS(9416), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375408,11 +563274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5196), 32, + ACTIONS(9418), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375420,6 +563284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375441,19 +563306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [92456] = 7, + anon_sym_DASH_GT, + [151814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - anon_sym_AMP_AMP, - ACTIONS(7923), 1, - anon_sym_and, - ACTIONS(7992), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7994), 1, - anon_sym_or, - ACTIONS(6199), 17, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375468,14 +563328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6201), 30, + ACTIONS(6228), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -375491,28 +563352,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, - [92523] = 6, + [151874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_LPAREN2, - STATE(3888), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6251), 16, + ACTIONS(9412), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375527,18 +563381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6253), 31, + ACTIONS(9414), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375550,21 +563407,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, - [92588] = 3, + anon_sym_DASH_GT, + [151932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 19, + ACTIONS(9582), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375583,11 +563440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6707), 32, + ACTIONS(9584), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375595,6 +563450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375616,11 +563472,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, - [92647] = 3, + anon_sym_DASH_GT, + [151990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5910), 21, + ACTIONS(9424), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375635,14 +563491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5912), 30, + ACTIONS(9426), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -375650,7 +563505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375673,28 +563528,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92706] = 11, + [152048] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - STATE(4113), 1, - sym_field_declaration_list, - STATE(4266), 1, - sym_attribute_specifier, - STATE(7148), 1, - sym_virtual_specifier, - STATE(8111), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5672), 17, + ACTIONS(10196), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11025), 1, + anon_sym_QMARK, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 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, + [152154] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11361), 1, + anon_sym_delete, + ACTIONS(11363), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375704,6 +563635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -375711,8 +563643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5674), 24, + ACTIONS(9342), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -375720,7 +563651,6 @@ 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, @@ -375730,17 +563660,16 @@ 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, - [92781] = 3, + [152220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 19, + ACTIONS(9456), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375750,26 +563679,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(3909), 32, + ACTIONS(9458), 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, @@ -375778,7 +563706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -375792,11 +563719,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, - [92840] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [152278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 19, + ACTIONS(9440), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375815,11 +563743,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6715), 32, + ACTIONS(9442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375827,6 +563753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375848,11 +563775,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, - [92899] = 3, + anon_sym_DASH_GT, + [152336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 19, + ACTIONS(9248), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375871,11 +563798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4161), 32, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375883,6 +563808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375904,11 +563830,128 @@ 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, - [92958] = 3, + anon_sym_DASH_GT, + [152394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11367), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(11365), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [152452] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9244), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9246), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [152524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6621), 19, + ACTIONS(9248), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375927,11 +563970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6623), 32, + ACTIONS(9250), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -375939,6 +563980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375960,11 +564002,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [152582] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9252), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9254), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [152654] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 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, - [93017] = 3, + [152756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 21, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9840), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375974,27 +564163,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(3955), 30, + anon_sym_DASH_GT, + ACTIONS(9838), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376002,25 +564186,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93076] = 3, + anon_sym_DASH_GT_STAR, + [152822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 24, + ACTIONS(9428), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9430), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376039,13 +564244,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, anon_sym_GT2, - ACTIONS(7037), 27, + [152880] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9844), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376055,84 +564277,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - 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(9842), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [93135] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [152946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 20, + ACTIONS(8824), 1, + anon_sym_requires, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5659), 31, + ACTIONS(7544), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93194] = 3, + anon_sym_COLON_RBRACK, + [153012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 21, + ACTIONS(9371), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376142,19 +564387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3983), 30, + ACTIONS(9373), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376162,7 +564404,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376170,6 +564414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -376184,67 +564429,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93253] = 3, + [153070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5743), 21, + ACTIONS(9480), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5745), 30, + sym_identifier, + ACTIONS(9482), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93312] = 3, + anon_sym_COLON_RBRACK, + [153128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 24, + ACTIONS(9358), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376265,13 +564508,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(5002), 26, + ACTIONS(9360), 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, @@ -376287,8 +564527,10 @@ 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_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -376296,10 +564538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93370] = 3, + anon_sym_COLON_RBRACK, + [153186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 20, + ACTIONS(9432), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376320,7 +564563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6581), 30, + ACTIONS(9434), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376351,63 +564594,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93428] = 13, + [153244] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(8977), 1, + anon_sym_requires, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8000), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6489), 7, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(6491), 27, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -376415,75 +564648,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [93506] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [153310] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, + ACTIONS(10797), 1, anon_sym_DOT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7754), 1, - anon_sym_QMARK, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7226), 2, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(9244), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6978), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(9246), 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, @@ -376494,11 +564707,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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [93612] = 3, + [153382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 20, + ACTIONS(9262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376508,18 +564728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6478), 30, + ACTIONS(9264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376527,7 +564745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376535,6 +564755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -376549,75 +564770,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93670] = 27, + [153440] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, + ACTIONS(10797), 1, anon_sym_DOT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7754), 1, - anon_sym_QMARK, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7226), 2, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(9252), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6988), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(9254), 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, @@ -376628,11 +564824,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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [93776] = 3, + [153512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 20, + ACTIONS(9304), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376653,7 +564856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6707), 30, + ACTIONS(9306), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376684,12 +564887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93834] = 4, + [153570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5661), 16, + ACTIONS(9523), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376699,24 +564900,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(5663), 33, + ACTIONS(9525), 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, @@ -376725,82 +564927,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [93894] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [153628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 24, - aux_sym_preproc_elif_token1, + ACTIONS(9480), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5629), 25, + ACTIONS(9482), 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, - [93954] = 3, + anon_sym_GT2, + [153686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 24, - aux_sym_preproc_elif_token1, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -376809,28 +565020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5010), 26, + ACTIONS(7627), 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, @@ -376842,140 +565038,71 @@ 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94012] = 22, + anon_sym_COLON_RBRACK, + [153752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5701), 1, - anon_sym___asm, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8026), 1, - anon_sym_STAR, - ACTIONS(8028), 1, - anon_sym_AMP_AMP, - ACTIONS(8030), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3082), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6305), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3583), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9733), 1, + anon_sym_requires, + ACTIONS(9730), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [94108] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6423), 14, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6425), 29, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8089), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -376985,53 +565112,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [94178] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [153818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6621), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6615), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6623), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(9146), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9148), 1, + anon_sym_RBRACK, + ACTIONS(6617), 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(5253), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -377040,42 +565156,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94236] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8032), 1, - anon_sym_LBRACK, - STATE(3861), 1, - sym_new_declarator, - ACTIONS(6280), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5260), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6282), 29, + [153884] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11372), 1, + anon_sym_requires, + ACTIONS(11369), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8543), 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, @@ -377088,94 +565216,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94298] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8026), 1, - anon_sym_STAR, - ACTIONS(8028), 1, - anon_sym_AMP_AMP, - ACTIONS(8030), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3082), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6310), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4270), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [94394] = 3, + anon_sym_COLON_RBRACK, + [153950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 18, + ACTIONS(9456), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377194,7 +565255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5018), 32, + ACTIONS(9458), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377203,8 +565264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377227,11 +565288,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94452] = 3, + [154008] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 24, - aux_sym_preproc_elif_token1, + ACTIONS(11378), 1, + anon_sym_requires, + ACTIONS(11375), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5381), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -377240,28 +565311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4998), 26, + ACTIONS(8561), 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, @@ -377273,19 +565329,28 @@ 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94510] = 3, + anon_sym_COLON_RBRACK, + [154074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 20, + ACTIONS(9550), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377295,18 +565360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6577), 30, + ACTIONS(9552), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377314,7 +565377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377322,6 +565387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377336,11 +565402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94568] = 3, + [154132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 20, + ACTIONS(9574), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377350,18 +565415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6470), 30, + ACTIONS(9576), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377369,7 +565432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377377,6 +565442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377391,236 +565457,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94626] = 3, + [154190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 20, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(6601), 30, + ACTIONS(7544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94684] = 3, + anon_sym_COLON_RBRACK, + [154256] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 24, - aux_sym_preproc_elif_token1, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9852), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5006), 26, + anon_sym_DASH_GT, + ACTIONS(9850), 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_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_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, - [94742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7100), 1, - anon_sym_decltype, - ACTIONS(7956), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5661), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [94806] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5084), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5086), 12, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4161), 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_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(4169), 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, - [94868] = 3, + anon_sym_DASH_GT_STAR, + [154322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 20, + ACTIONS(9523), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377630,18 +565588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 30, + ACTIONS(9525), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377649,7 +565605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377657,6 +565615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377671,11 +565630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94926] = 3, + [154380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 20, + ACTIONS(9464), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377685,18 +565643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5985), 30, + ACTIONS(9466), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377704,7 +565660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377712,6 +565670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377726,121 +565685,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94984] = 3, + [154438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 24, - aux_sym_preproc_elif_token1, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9856), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5014), 26, + anon_sym_DASH_GT, + ACTIONS(9854), 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_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_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, - [95042] = 3, + anon_sym_DASH_GT_STAR, + [154504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, 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(5018), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(11294), 1, + anon_sym_LBRACE, + STATE(5830), 1, + sym_enumerator_list, + STATE(5984), 1, + sym_attribute_specifier, + ACTIONS(7011), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7013), 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_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, - [95100] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [154572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 20, + ACTIONS(9562), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377861,7 +565828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6445), 30, + ACTIONS(9564), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377892,10 +565859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95158] = 3, + [154630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 20, + ACTIONS(9304), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377905,18 +565872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5172), 30, + ACTIONS(9306), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377924,7 +565889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377932,6 +565899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377946,12 +565914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95216] = 3, + [154688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 24, - aux_sym_preproc_elif_token1, + ACTIONS(8446), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -377962,7 +565928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -377971,17 +565936,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(5022), 26, + sym_literal_suffix, + ACTIONS(8448), 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, @@ -377993,8 +565951,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, @@ -378002,14 +565959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95274] = 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, + [154746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 1, - anon_sym_COMMA, - ACTIONS(8036), 1, - anon_sym_RBRACK, - ACTIONS(4169), 18, + ACTIONS(9503), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378019,23 +565982,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 30, + ACTIONS(9505), 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, @@ -378044,7 +566009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378059,10 +566023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95336] = 3, + anon_sym_GT2, + [154804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 20, + ACTIONS(9294), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378072,18 +566037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6445), 30, + ACTIONS(9296), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378091,7 +566054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378099,6 +566064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378113,11 +566079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95394] = 3, + [154862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 20, + ACTIONS(9566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378127,18 +566092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4161), 30, + ACTIONS(9568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378146,7 +566109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378154,6 +566119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378168,66 +566134,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95452] = 3, + [154920] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10188), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11025), 1, + anon_sym_QMARK, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, anon_sym_PIPE, + ACTIONS(11336), 1, anon_sym_CARET, + ACTIONS(11338), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11344), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, anon_sym_DOT, - ACTIONS(6727), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10190), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [95510] = 3, + anon_sym_DASH_GT_STAR, + [155026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 19, + ACTIONS(8454), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -378247,7 +566236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5480), 31, + ACTIONS(8456), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378279,10 +566268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [95568] = 3, + [155084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 20, + ACTIONS(9570), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378292,18 +566281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6715), 30, + ACTIONS(9572), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378311,7 +566298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378319,6 +566308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378333,67 +566323,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95626] = 4, + [155142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 20, - aux_sym_preproc_elif_token1, + ACTIONS(4570), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5026), 28, + ACTIONS(4568), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95686] = 3, + [155200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 19, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -378402,20 +566401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5484), 31, + ACTIONS(8543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -378428,141 +566420,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_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, - [95744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5629), 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, - [95804] = 25, + anon_sym_COLON_RBRACK, + [155266] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8197), 1, + anon_sym_STAR, + ACTIONS(8199), 1, + anon_sym_AMP_AMP, + ACTIONS(8201), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(11155), 1, + anon_sym_DOT_DOT_DOT, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4820), 1, + sym_parameter_list, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8689), 1, + sym__declarator, + STATE(8839), 1, + sym__abstract_declarator, + STATE(9787), 1, + sym_variadic_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(9074), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9072), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [155376] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(10176), 1, anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(10347), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, + ACTIONS(10797), 1, anon_sym_DOT_STAR, - ACTIONS(7776), 1, + ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, + ACTIONS(11334), 1, anon_sym_PIPE, - ACTIONS(8010), 1, + ACTIONS(11336), 1, anon_sym_CARET, - ACTIONS(8012), 1, + ACTIONS(11338), 1, anon_sym_AMP, - ACTIONS(8018), 1, + ACTIONS(11344), 1, anon_sym_GT_EQ, - ACTIONS(8020), 1, + ACTIONS(11348), 1, anon_sym_bitor, - ACTIONS(8022), 1, + ACTIONS(11350), 1, anon_sym_xor, - ACTIONS(8024), 1, + ACTIONS(11352), 1, anon_sym_bitand, - STATE(3396), 1, + STATE(5506), 1, sym_argument_list, - STATE(3399), 1, + STATE(5507), 1, sym_subscript_argument_list, - ACTIONS(7226), 2, + ACTIONS(10429), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7790), 2, + ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, + ACTIONS(11330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8006), 2, + ACTIONS(11332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8000), 3, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 3, + ACTIONS(11340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8016), 3, + ACTIONS(11342), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 15, + ACTIONS(10178), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378578,10 +566595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [95906] = 3, + [155478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 20, + ACTIONS(9527), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378602,7 +566619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6719), 30, + ACTIONS(9529), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378633,10 +566650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95964] = 3, + [155536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 20, + ACTIONS(9531), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378657,7 +566674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6376), 30, + ACTIONS(9533), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378688,10 +566705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96022] = 3, + [155594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 20, + ACTIONS(9436), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378701,18 +566718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6723), 30, + ACTIONS(9438), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378720,7 +566735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378728,6 +566745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378742,11 +566760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96080] = 3, + [155652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6435), 20, + ACTIONS(9519), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378756,18 +566773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6437), 30, + ACTIONS(9521), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378775,7 +566790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378783,6 +566800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378797,11 +566815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96138] = 3, + [155710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 20, + ACTIONS(9566), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378822,7 +566839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6661), 30, + ACTIONS(9568), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378853,49 +566870,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96196] = 10, + [155768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, + ACTIONS(9240), 1, anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6451), 14, + ACTIONS(9286), 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, - ACTIONS(6453), 27, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9288), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_COLON_RBRACK, + [155838] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10123), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10125), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378907,31 +567007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [96268] = 9, + [155940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6399), 14, + ACTIONS(9428), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378946,15 +567026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6401), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378966,20 +567052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [96338] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [155998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 20, + ACTIONS(8831), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379000,7 +567087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6563), 30, + ACTIONS(8829), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379031,10 +567118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96396] = 3, + [156056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 20, + ACTIONS(9391), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379055,7 +567142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6445), 30, + ACTIONS(9393), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379086,10 +567173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96454] = 3, + [156114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 20, + ACTIONS(9344), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379110,7 +567197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6629), 30, + ACTIONS(9342), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379141,71 +567228,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96512] = 25, + [156172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(9278), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9280), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379217,12 +567272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [96614] = 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, + [156230] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 24, - aux_sym_preproc_elif_token1, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5381), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -379231,28 +567306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5635), 26, + ACTIONS(8561), 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, @@ -379264,74 +567324,83 @@ 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96672] = 3, + anon_sym_COLON_RBRACK, + [156296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 19, + ACTIONS(9408), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5488), 31, + ACTIONS(9410), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [96730] = 3, + [156354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 20, + ACTIONS(9472), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379352,7 +567421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6555), 30, + ACTIONS(9474), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379383,96 +567452,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96788] = 3, + [156412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 19, + ACTIONS(9578), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 31, + ACTIONS(9580), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [96846] = 9, + [156470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(9476), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_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(4316), 1, - anon_sym_SEMI, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9478), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5935), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(4197), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4161), 15, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [156528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9472), 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(9474), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -379481,28 +567617,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4169), 17, + [156586] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - [96916] = 3, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9292), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_COLON_RBRACK, + [156656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 20, + ACTIONS(4570), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379523,7 +567702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6514), 30, + ACTIONS(4568), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379554,56 +567733,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96974] = 16, + [156714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(9476), 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(9478), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7182), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [156772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9519), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8016), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6491), 25, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9521), 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, @@ -379611,57 +567828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [97058] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [156830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, + ACTIONS(10806), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10808), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9860), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 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(6491), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9858), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379681,17 +567891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97138] = 3, + [156896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 20, + ACTIONS(9554), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379712,7 +567926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6547), 30, + ACTIONS(9556), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379743,10 +567957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97196] = 3, + [156954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379767,7 +567981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6559), 30, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379798,10 +568012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97254] = 3, + [157012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379822,7 +568036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6703), 30, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379853,10 +568067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97312] = 3, + [157070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 20, + ACTIONS(9562), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379866,18 +568080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5208), 30, + ACTIONS(9564), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379885,7 +568097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379893,6 +568107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -379907,11 +568122,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [97370] = 3, + [157128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9452), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9454), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [157186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379932,7 +568201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5196), 30, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379963,10 +568232,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97428] = 3, + [157244] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 18, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9284), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [157316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379976,16 +568307,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(5022), 32, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379993,8 +568326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -380003,7 +568334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -380018,10 +568348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97486] = 3, + anon_sym_GT2, + [157374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 20, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9848), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380031,26 +568370,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(5192), 30, + anon_sym_DASH_GT, + ACTIONS(9846), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380058,25 +568393,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97544] = 3, + anon_sym_DASH_GT_STAR, + [157440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 20, + ACTIONS(5260), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380097,7 +568432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5200), 30, + ACTIONS(5253), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380128,10 +568463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97602] = 3, + [157498] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 16, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9290), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380146,21 +568494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5686), 34, + ACTIONS(9292), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380181,12 +568523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97660] = 3, + [157568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 20, + ACTIONS(9550), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380207,7 +568548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6695), 30, + ACTIONS(9552), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380238,10 +568579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97718] = 3, + [157626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 20, + ACTIONS(9574), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380262,7 +568603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6522), 30, + ACTIONS(9576), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380293,10 +568634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97776] = 3, + [157684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 20, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380317,7 +568658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6587), 30, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380348,10 +568689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97834] = 3, + [157742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 20, + ACTIONS(9464), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380372,7 +568713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6591), 30, + ACTIONS(9466), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380403,65 +568744,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97892] = 3, + [157800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 20, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(5260), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3909), 30, + sym_identifier, + ACTIONS(5253), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [97950] = 3, + anon_sym_COLON_RBRACK, + [157860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 20, + ACTIONS(9432), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380471,18 +568813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6711), 30, + ACTIONS(9434), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380490,7 +568830,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380498,6 +568840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -380512,42 +568855,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [98008] = 5, + [157918] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, - anon_sym_AMP_AMP, - ACTIONS(8041), 1, - anon_sym_and, - ACTIONS(6247), 19, + ACTIONS(10192), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6249), 29, + ACTIONS(10194), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380555,25 +568927,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_DASH_GT_STAR, + [158020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8208), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(3888), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [98070] = 3, + anon_sym_COLON_RBRACK, + [158078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 20, + ACTIONS(9440), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380594,7 +569011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5188), 30, + ACTIONS(9442), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380625,10 +569042,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98128] = 3, + [158136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 20, + ACTIONS(6690), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6692), 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(5253), 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(5260), 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, + [158198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380649,7 +569123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5180), 30, + ACTIONS(9406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380680,65 +569154,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98186] = 3, + [158256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(8382), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4933), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(8384), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [98244] = 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, + [158314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 20, + ACTIONS(9379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380759,7 +569233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6731), 30, + ACTIONS(9381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380790,10 +569264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98302] = 3, + [158372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 20, + ACTIONS(9542), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380814,7 +569288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1940), 30, + ACTIONS(9544), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380845,65 +569319,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98360] = 3, + [158430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 20, + ACTIONS(8400), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6543), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(8402), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [98418] = 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, + [158488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 20, + ACTIONS(9570), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380924,7 +569398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6641), 30, + ACTIONS(9572), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380955,10 +569429,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98476] = 3, + [158546] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6655), 20, + ACTIONS(9436), 1, + anon_sym_EQ, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + ACTIONS(10385), 1, + anon_sym_LBRACK, + ACTIONS(10797), 1, + anon_sym_DOT_STAR, + ACTIONS(10981), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11025), 1, + anon_sym_QMARK, + ACTIONS(11047), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11334), 1, + anon_sym_PIPE, + ACTIONS(11336), 1, + anon_sym_CARET, + ACTIONS(11338), 1, + anon_sym_AMP, + ACTIONS(11344), 1, + anon_sym_GT_EQ, + ACTIONS(11348), 1, + anon_sym_bitor, + ACTIONS(11350), 1, + anon_sym_xor, + ACTIONS(11352), 1, + anon_sym_bitand, + STATE(5506), 1, + sym_argument_list, + STATE(5507), 1, + sym_subscript_argument_list, + ACTIONS(10429), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11061), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11328), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 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, + [158652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9408), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380979,7 +569532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6657), 30, + ACTIONS(9410), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381010,69 +569563,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98534] = 7, + [158710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(2216), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5066), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 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, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(6245), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(11294), 1, + anon_sym_LBRACE, + STATE(5859), 1, + sym_enumerator_list, + STATE(5931), 1, + sym_attribute_specifier, + ACTIONS(6985), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6987), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [98600] = 3, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [158778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 20, + ACTIONS(9308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381093,7 +569647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6504), 30, + ACTIONS(9310), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381124,68 +569678,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98658] = 3, + [158836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6702), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6508), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6704), 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_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98716] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 16, + ACTIONS(5260), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381199,46 +569711,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5026), 32, + ACTIONS(5253), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [98776] = 3, + anon_sym_DASH_GT, + [158898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(10806), 1, + anon_sym_LPAREN2, + ACTIONS(10808), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9864), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381248,26 +569756,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(4933), 30, + anon_sym_DASH_GT, + ACTIONS(9862), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381275,25 +569779,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98834] = 3, + anon_sym_DASH_GT_STAR, + [158964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(9472), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381303,18 +569807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4933), 30, + ACTIONS(9474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381322,7 +569824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381330,6 +569834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -381344,11 +569849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [98892] = 3, + [159022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(9248), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381369,7 +569873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4933), 30, + ACTIONS(9250), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381400,10 +569904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98950] = 3, + [159080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 20, + ACTIONS(9507), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381424,7 +569928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5160), 30, + ACTIONS(9509), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381455,10 +569959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99008] = 3, + [159138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(9511), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381479,70 +569983,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4933), 30, + ACTIONS(9513), 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, - [99066] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6171), 1, - anon_sym_EQ, - ACTIONS(6238), 1, - anon_sym_COMMA, - ACTIONS(6240), 1, - anon_sym_RBRACK, - ACTIONS(6133), 13, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4161), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -381551,28 +570013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4169), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [99132] = 3, + anon_sym_GT2, + [159196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 20, + ACTIONS(9248), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381593,7 +570038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4933), 30, + ACTIONS(9250), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381624,74 +570069,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99190] = 27, + [159254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + ACTIONS(10806), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(10808), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7710), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7754), 1, - anon_sym_QMARK, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + STATE(1888), 1, + sym_parameter_list, + STATE(5493), 1, + sym__function_declarator_seq, + ACTIONS(9834), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9832), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -381702,34 +570117,26 @@ 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, - [99296] = 12, + [159320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(9448), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -381739,15 +570146,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6491), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9450), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381759,18 +570172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [99372] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 20, + ACTIONS(9375), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381791,7 +570207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6611), 30, + ACTIONS(9377), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381822,14 +570238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99430] = 5, + [159436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6499), 1, - anon_sym_LT, - STATE(1931), 1, - sym_template_argument_list, - ACTIONS(6495), 17, + ACTIONS(9558), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381839,23 +570251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6497), 31, + ACTIONS(9560), 30, anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -381864,7 +570278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -381879,10 +570292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99492] = 3, + anon_sym_GT2, + [159494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 20, + ACTIONS(9266), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381892,18 +570306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6675), 30, + ACTIONS(9268), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381911,7 +570323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381919,6 +570333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -381933,11 +570348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99550] = 3, + [159552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 20, + ACTIONS(9248), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381958,7 +570372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5168), 30, + ACTIONS(9250), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381989,10 +570403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99608] = 3, + [159610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 20, + ACTIONS(9420), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382013,7 +570427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5176), 30, + ACTIONS(9422), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382044,10 +570458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99666] = 3, + [159668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 20, + ACTIONS(9484), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382057,18 +570471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6551), 30, + ACTIONS(9486), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382076,7 +570488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382084,6 +570498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382098,11 +570513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99724] = 3, + [159726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 20, + ACTIONS(9452), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382112,18 +570526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5204), 30, + ACTIONS(9454), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382131,7 +570543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382139,6 +570553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382153,11 +570568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99782] = 3, + [159784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 20, + ACTIONS(9416), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382178,7 +570592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5204), 30, + ACTIONS(9418), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382209,10 +570623,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [99840] = 3, + [159842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6237), 1, + anon_sym_LBRACK, + ACTIONS(6230), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6233), 6, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(6226), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [159904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 20, + ACTIONS(9538), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382222,18 +570693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5204), 30, + ACTIONS(9540), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382241,7 +570710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382249,6 +570720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382263,11 +570735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99898] = 3, + [159962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 20, + ACTIONS(9503), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382277,18 +570748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6633), 30, + ACTIONS(9505), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382296,7 +570765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382304,6 +570775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382318,11 +570790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99956] = 3, + [160020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 20, + ACTIONS(9484), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382343,7 +570814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6413), 30, + ACTIONS(9486), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382374,10 +570845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [100014] = 3, + [160078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 20, + ACTIONS(9412), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382398,7 +570869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6665), 30, + ACTIONS(9414), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382429,10 +570900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [100072] = 3, + [160136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 18, + ACTIONS(9452), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382442,16 +570913,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(5010), 32, + ACTIONS(9454), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382459,8 +570932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -382469,7 +570940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382484,26 +570954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [100130] = 10, + anon_sym_GT2, + [160194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, + ACTIONS(11151), 1, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6419), 14, + STATE(5834), 1, + sym_new_declarator, + ACTIONS(9173), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382518,15 +570977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6421), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9175), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -382545,11 +571008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100202] = 3, + [160256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 20, + ACTIONS(9391), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382559,18 +571025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1936), 30, + ACTIONS(9393), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382578,7 +571042,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382586,6 +571052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382600,11 +571067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [100260] = 3, + [160314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 20, + ACTIONS(5260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382614,18 +571080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6605), 30, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382633,7 +571097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382641,6 +571107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382655,11 +571122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [100318] = 3, + [160372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 20, + ACTIONS(9278), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382680,7 +571146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6679), 30, + ACTIONS(9280), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382711,10 +571177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [100376] = 3, + [160430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 20, + ACTIONS(9480), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382724,18 +571190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6518), 30, + ACTIONS(9482), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382743,7 +571207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382751,6 +571217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -382765,27 +571232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [100434] = 10, + [160488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6415), 14, + ACTIONS(9468), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382800,15 +571250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6417), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9470), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382820,73 +571276,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_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, - [100506] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [160546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5951), 1, + sym_attribute_specifier, + ACTIONS(7065), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7067), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [160609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 18, + ACTIONS(9499), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9501), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [160666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5995), 1, + sym_attribute_specifier, + ACTIONS(7123), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7125), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [160729] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, + anon_sym_LPAREN2, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11381), 1, + anon_sym_STAR, + ACTIONS(11383), 1, + anon_sym_AMP_AMP, + ACTIONS(11385), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4509), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8613), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10932), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10934), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5858), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9570), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4998), 32, + sym_identifier, + ACTIONS(9572), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [160879] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7745), 1, + anon_sym_LBRACK, + ACTIONS(8108), 1, + anon_sym_STAR, + ACTIONS(8110), 1, + anon_sym_AMP_AMP, + ACTIONS(8112), 1, + anon_sym_AMP, + STATE(2157), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6187), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9072), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [100564] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [160954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 20, + ACTIONS(9358), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382896,25 +571657,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(6609), 30, + anon_sym_DASH_GT, + ACTIONS(9360), 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, @@ -382923,362 +571683,745 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [100622] = 3, + anon_sym_DASH_GT_STAR, + [161011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 18, + ACTIONS(8818), 1, + anon_sym_DASH_GT, + ACTIONS(8824), 1, + anon_sym_requires, + STATE(5711), 1, + sym_trailing_return_type, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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_COLON, + anon_sym_DOT, + ACTIONS(7544), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [161080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5002), 32, + sym_identifier, + ACTIONS(4568), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [100680] = 3, + anon_sym_COLON_RBRACK, + [161137] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 20, + ACTIONS(8971), 1, + anon_sym_DASH_GT, + ACTIONS(8977), 1, + anon_sym_requires, + STATE(5719), 1, + sym_trailing_return_type, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7627), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [161206] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(5546), 1, + sym_argument_list, + STATE(5981), 1, + sym_initializer_list, + ACTIONS(6800), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [161273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9538), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6619), 30, + sym_identifier, + ACTIONS(9540), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9428), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9430), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [100738] = 3, + anon_sym_COLON_RBRACK, + [161387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 20, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9733), 1, + anon_sym_requires, + STATE(5721), 1, + sym_trailing_return_type, + ACTIONS(9730), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8089), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [161456] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(2763), 30, + ACTIONS(8089), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [100796] = 25, + anon_sym_COLON_RBRACK, + [161525] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, + ACTIONS(11372), 1, + anon_sym_requires, + ACTIONS(11387), 1, + anon_sym_DASH_GT, + STATE(5723), 1, + sym_trailing_return_type, + ACTIONS(11369), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, anon_sym_AMP, - ACTIONS(8018), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8543), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8020), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8022), 1, anon_sym_xor, - ACTIONS(8024), 1, anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [161594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8000), 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8384), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(8014), 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(8016), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7011), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_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_DASH_GT_STAR, - [100898] = 3, + 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, + [161651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 18, + ACTIONS(8400), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5006), 32, + sym_literal_suffix, + ACTIONS(8402), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [100956] = 8, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [161708] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 1, - anon_sym_SEMI, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 5, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11393), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(11390), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6602), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5661), 40, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6600), 29, anon_sym_AMP, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [161773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5964), 1, + sym_attribute_specifier, + ACTIONS(7087), 5, + anon_sym_AMP, anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7089), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -383292,379 +572435,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [101024] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [161836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 20, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(8882), 1, + anon_sym_DASH_GT, + STATE(5969), 1, + sym_trailing_return_type, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6532), 30, + sym_identifier, + ACTIONS(7544), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101082] = 3, + [161905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 20, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(8996), 1, + anon_sym_DASH_GT, + STATE(5924), 1, + sym_trailing_return_type, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6645), 30, + sym_identifier, + ACTIONS(7627), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101140] = 3, + [161974] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 20, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(9776), 1, + anon_sym_DASH_GT, + STATE(5977), 1, + sym_trailing_return_type, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6551), 30, + sym_identifier, + ACTIONS(8089), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101198] = 7, + [162043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, - anon_sym_AMP_AMP, - ACTIONS(8041), 1, - anon_sym_and, - ACTIONS(8043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8045), 1, - anon_sym_or, - ACTIONS(6199), 18, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(11396), 1, + anon_sym_DASH_GT, + STATE(5920), 1, + sym_trailing_return_type, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6201), 28, + sym_identifier, + ACTIONS(8543), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [101264] = 3, + [162112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6635), 20, + ACTIONS(9578), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6637), 30, + sym_identifier, + ACTIONS(9580), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [101322] = 5, + anon_sym_COLON_RBRACK, + [162169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(6205), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6208), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_EQ, - ACTIONS(6236), 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(4169), 17, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [162236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9574), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4161), 19, + sym_identifier, + ACTIONS(9576), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101384] = 3, + anon_sym_COLON_RBRACK, + [162293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5983), 1, + sym_attribute_specifier, + ACTIONS(7091), 5, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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(5014), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7093), 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_GT_EQ, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 1, + anon_sym_EQ, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(5278), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -383678,41 +572927,7 @@ 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, - [101442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6229), 1, - anon_sym_COMMA, - ACTIONS(6231), 1, - anon_sym_RBRACK, - ACTIONS(4169), 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(4161), 30, + ACTIONS(5253), 17, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -383722,19 +572937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -383743,32 +572945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101504] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8000), 3, + ACTIONS(5260), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6489), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -383777,327 +572959,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6491), 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, - [101578] = 3, + anon_sym_DOT, + [162419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 20, + ACTIONS(9484), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6699), 30, + sym_identifier, + ACTIONS(9486), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [162476] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, + anon_sym_LPAREN2, + ACTIONS(10930), 1, + sym_ms_restrict_modifier, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11381), 1, + anon_sym_STAR, + ACTIONS(11383), 1, + anon_sym_AMP_AMP, + ACTIONS(11385), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4509), 1, + sym_parameter_list, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8616), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10932), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10934), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6140), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6364), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162569] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5918), 1, + sym_attribute_specifier, + ACTIONS(7095), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7097), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [101636] = 3, + anon_sym_try, + anon_sym_requires, + [162632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 20, + ACTIONS(9515), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6669), 30, + sym_identifier, + ACTIONS(9517), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [101694] = 25, + anon_sym_COLON_RBRACK, + [162689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5998), 1, + sym_attribute_specifier, + ACTIONS(7187), 5, anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7019), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7189), 41, 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, - [101796] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6489), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6491), 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, - [101868] = 7, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5670), 1, - anon_sym_SEMI, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 6, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5925), 1, + sym_attribute_specifier, + ACTIONS(7133), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7135), 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(5661), 40, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -384111,540 +573307,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [101934] = 5, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6171), 1, - anon_sym_EQ, - ACTIONS(6133), 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(4169), 17, + ACTIONS(9408), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4161), 19, + sym_identifier, + ACTIONS(9410), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101996] = 24, + anon_sym_COLON_RBRACK, + [162872] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(11387), 1, anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + STATE(5757), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 17, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8543), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_DASH_GT_STAR, - [102096] = 3, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [162941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 20, + ACTIONS(8446), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5164), 30, + sym_literal_suffix, + ACTIONS(8448), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [102154] = 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, + [162998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 20, + ACTIONS(9436), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5184), 30, + sym_identifier, + ACTIONS(9438), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [102212] = 23, + anon_sym_COLON_RBRACK, + [163055] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_EQ, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, - anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, - anon_sym_bitor, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(8971), 1, anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + STATE(5666), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8000), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7627), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT_STAR, - [102310] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8010), 1, anon_sym_CARET, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8022), 1, - anon_sym_xor, - ACTIONS(8024), 1, - anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8002), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8000), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [102404] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8024), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(8000), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 21, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [163124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5937), 1, + sym_attribute_specifier, + ACTIONS(7099), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7101), 41, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + 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_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_DASH_GT_STAR, - [102494] = 28, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [163187] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8049), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5942), 1, + sym_attribute_specifier, + ACTIONS(7103), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7105), 41, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(7610), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -384656,276 +573701,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102602] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [163250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7824), 1, - anon_sym_LBRACK, - STATE(3841), 1, - sym_new_declarator, - ACTIONS(6280), 16, + ACTIONS(9527), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6282), 32, + sym_identifier, + ACTIONS(9529), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [102664] = 17, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [163307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - ACTIONS(7182), 1, - anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7998), 2, + ACTIONS(9531), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8000), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(6491), 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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [102750] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6956), 1, - anon_sym_EQ, - ACTIONS(7144), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9533), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(7182), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7557), 1, - anon_sym_DOT_STAR, - ACTIONS(7776), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8008), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [163364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(8010), 1, - anon_sym_CARET, - ACTIONS(8012), 1, anon_sym_AMP, - ACTIONS(8018), 1, - anon_sym_GT_EQ, - ACTIONS(8020), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8022), 1, anon_sym_xor, - ACTIONS(8024), 1, anon_sym_bitand, - STATE(3396), 1, - sym_argument_list, - STATE(3399), 1, - sym_subscript_argument_list, - ACTIONS(7226), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7790), 2, + sym_literal_suffix, + ACTIONS(8456), 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, - ACTIONS(7998), 2, + anon_sym_DOT_STAR, + anon_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, + [163421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9554), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8002), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8004), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8006), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8000), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(8014), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8016), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 15, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9556), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [102852] = 27, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [163478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(8061), 1, - sym_primitive_type, - ACTIONS(8063), 1, - anon_sym_enum, - ACTIONS(8065), 1, - anon_sym_class, - ACTIONS(8067), 1, - anon_sym_struct, - ACTIONS(8069), 1, - anon_sym_union, - ACTIONS(8071), 1, - sym_auto, - ACTIONS(8073), 1, - anon_sym_decltype, - ACTIONS(8075), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4624), 1, - sym_type_specifier, - STATE(4918), 1, - sym_template_type, - STATE(4938), 1, - sym_qualified_type_identifier, - STATE(5058), 1, - sym_decltype, - STATE(5115), 1, - sym_decltype_auto, - STATE(6209), 1, - sym_type_descriptor, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3896), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5143), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5949), 1, + sym_attribute_specifier, + ACTIONS(7061), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7063), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -384937,10 +573974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102957] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [163541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 18, + ACTIONS(9432), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -384951,6 +573998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -384958,10 +574006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 31, + sym_identifier, + ACTIONS(9434), 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, @@ -384974,6 +574027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -384981,20 +574036,12 @@ 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, - [103014] = 3, + anon_sym_COLON_RBRACK, + [163598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 18, + ACTIONS(9550), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385005,6 +574052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -385012,10 +574060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 31, + sym_identifier, + ACTIONS(9552), 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, @@ -385028,6 +574081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -385035,62 +574090,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [163655] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5440), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6694), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(6700), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [103071] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6419), 18, - aux_sym_preproc_elif_token1, + ACTIONS(8737), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6421), 22, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8739), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -385098,18 +574139,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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [103142] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [163718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 19, + ACTIONS(9503), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -385121,6 +574163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -385129,7 +574172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6633), 30, + ACTIONS(9505), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385149,49 +574192,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [103199] = 13, + anon_sym_COLON_RBRACK, + [163775] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(4199), 1, + ACTIONS(5280), 1, sym_auto, - ACTIONS(4201), 1, + ACTIONS(5282), 1, anon_sym_decltype, - ACTIONS(6762), 1, + ACTIONS(9959), 1, anon_sym_LT, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - STATE(2576), 1, - sym_decltype_auto, - STATE(2647), 1, + STATE(4121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4324), 1, + STATE(4767), 1, + sym_decltype_auto, + STATE(6335), 1, sym_template_argument_list, - ACTIONS(4184), 2, + ACTIONS(5290), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(4167), 3, + ACTIONS(5258), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(4189), 4, + ACTIONS(5274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4159), 32, + ACTIONS(5251), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -385224,10 +574266,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_operator, - [103276] = 3, + [163852] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7745), 1, + anon_sym_LBRACK, + ACTIONS(8081), 1, + anon_sym_STAR, + ACTIONS(8083), 1, + anon_sym_AMP_AMP, + ACTIONS(8085), 1, + anon_sym_AMP, + STATE(1970), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6260), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9072), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [163927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 18, + ACTIONS(9507), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385238,6 +574344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -385245,10 +574352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5488), 31, + sym_identifier, + ACTIONS(9509), 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, @@ -385261,6 +574373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -385268,54 +574382,44 @@ 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, - [103333] = 5, + anon_sym_COLON_RBRACK, + [163984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5922), 1, + sym_attribute_specifier, + ACTIONS(7053), 5, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(5028), 2, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7055), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5031), 5, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5024), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -385329,15 +574433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [103394] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 18, + ACTIONS(9519), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385348,6 +574455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -385355,10 +574463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5495), 31, + sym_identifier, + ACTIONS(9521), 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, @@ -385371,6 +574484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -385378,234 +574493,41 @@ 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, - [103451] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103556] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8344), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103661] = 22, + anon_sym_COLON_RBRACK, + [164104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5701), 1, + ACTIONS(7107), 7, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6439), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3729), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4307), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 9, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7109), 42, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -385617,687 +574539,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103756] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6447), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103851] = 3, + [164161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 16, + ACTIONS(9379), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5884), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [103908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5886), 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(5888), 33, + sym_identifier, + ACTIONS(9381), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [103965] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 16, + ACTIONS(9412), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5713), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 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(5900), 33, + sym_identifier, + ACTIONS(9414), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104079] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 16, + ACTIONS(9511), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5908), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104136] = 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), 33, + sym_identifier, + ACTIONS(9513), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104193] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 16, + ACTIONS(9562), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5713), 33, + sym_identifier, + ACTIONS(9564), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104250] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8437), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104355] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8387), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104460] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 16, + ACTIONS(9523), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5794), 33, + sym_identifier, + ACTIONS(9525), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104517] = 10, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6489), 18, + ACTIONS(9566), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386309,14 +574833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6491), 22, + ACTIONS(9568), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -386324,6 +574850,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, @@ -386335,77 +574862,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [104588] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4639), 1, - sym_type_specifier, - STATE(6209), 1, - sym_type_descriptor, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3915), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(6798), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(6800), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -386417,77 +574918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104693] = 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), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104750] = 9, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6399), 18, + ACTIONS(9344), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386499,14 +574942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6401), 24, + ACTIONS(9342), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -386514,6 +574959,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, @@ -386525,22 +574971,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [104819] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + STATE(5929), 1, + sym_attribute_specifier, + ACTIONS(7057), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7059), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(11401), 1, + anon_sym_delete, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(8087), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(4931), 10, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -386548,15 +575064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4938), 36, + ACTIONS(9342), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -386567,47 +575088,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_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_COLON_RBRACK, + [164747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(5523), 1, + sym_argument_list, + STATE(5932), 1, + sym_initializer_list, + ACTIONS(6800), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [104882] = 4, + anon_sym_template, + anon_sym_operator, + [164814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, - sym_literal_suffix, - ACTIONS(4169), 22, + ACTIONS(9416), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -386615,38 +575178,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4161), 26, + sym_identifier, + ACTIONS(9418), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104941] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [164871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 23, + ACTIONS(9375), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386658,6 +575224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -386666,13 +575233,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(5629), 26, + ACTIONS(9377), 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, @@ -386688,8 +575252,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -386697,72 +575262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [104998] = 27, + anon_sym_COLON_RBRACK, + [164928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4431), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3886), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + ACTIONS(7183), 1, + anon_sym_SEMI, + ACTIONS(6800), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -386775,35 +575313,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105103] = 6, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [164989] = 3, ACTIONS(3), 1, sym_comment, - STATE(3406), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5088), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5094), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5788), 18, + ACTIONS(9558), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -386811,10 +575342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5790), 19, + sym_identifier, + ACTIONS(9560), 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, @@ -386823,7 +575359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -386831,18 +575372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105166] = 5, + anon_sym_COLON_RBRACK, + [165046] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8090), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5109), 19, + ACTIONS(5260), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386854,6 +575388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -386862,9 +575397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5111), 25, + ACTIONS(5253), 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, @@ -386880,7 +575416,9 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -386888,182 +575426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105227] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8528), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105332] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5966), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105437] = 10, + anon_sym_COLON_RBRACK, + [165103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6451), 18, + ACTIONS(9546), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387075,14 +575442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6453), 22, + ACTIONS(9548), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387090,6 +575459,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, @@ -387101,92 +575471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [105508] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8661), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105613] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [165160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 16, + ACTIONS(10249), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387201,141 +575499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5836), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [105670] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_type_specifier, - STATE(6209), 1, - sym_type_descriptor, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3905), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5780), 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(5782), 33, + sym_literal_suffix, + ACTIONS(10247), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -387345,7 +575518,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, @@ -387359,27 +575531,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, anon_sym_DASH_GT_STAR, - [105832] = 5, + [165217] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 19, + ACTIONS(9420), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387391,6 +575550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -387399,9 +575559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6028), 25, + ACTIONS(9422), 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, @@ -387417,7 +575578,9 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -387425,17 +575588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105893] = 5, + anon_sym_COLON_RBRACK, + [165274] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 19, + ACTIONS(9542), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387447,6 +575604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -387455,9 +575613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6058), 25, + ACTIONS(9544), 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, @@ -387473,7 +575632,9 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -387481,49 +575642,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105954] = 3, + anon_sym_COLON_RBRACK, + [165331] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 16, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(8818), 1, + anon_sym_DASH_GT, + STATE(5718), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5816), 33, + ACTIONS(7544), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -387534,336 +575702,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106011] = 3, + anon_sym_COLON_RBRACK, + [165400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 16, + STATE(5466), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6619), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6625), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8737), 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(5820), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106068] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4353), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6042), 1, - sym_type_descriptor, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3973), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [106173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 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(5848), 33, + sym_literal_suffix, + ACTIONS(8739), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106230] = 3, + anon_sym_DASH_GT, + [165463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 16, + ACTIONS(8882), 1, + anon_sym_DASH_GT, + ACTIONS(8888), 1, + anon_sym_requires, + STATE(6005), 1, + sym_trailing_return_type, + ACTIONS(8885), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5852), 33, + sym_identifier, + ACTIONS(7544), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_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, - anon_sym_DASH_GT_STAR, - [106287] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4514), 1, - sym_type_specifier, - STATE(6209), 1, - sym_type_descriptor, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3923), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [106392] = 5, + [165532] = 9, ACTIONS(3), 1, sym_comment, - STATE(3777), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8141), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 19, + ACTIONS(8996), 1, + anon_sym_DASH_GT, + ACTIONS(9124), 1, + anon_sym_requires, + STATE(6006), 1, + sym_trailing_return_type, + ACTIONS(9121), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387873,8 +575848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -387883,7 +575856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6095), 25, + ACTIONS(7627), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -387901,25 +575874,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [106453] = 5, + [165601] = 9, ACTIONS(3), 1, sym_comment, - STATE(3780), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8143), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 19, + ACTIONS(9776), 1, + anon_sym_DASH_GT, + ACTIONS(9782), 1, + anon_sym_requires, + STATE(6007), 1, + sym_trailing_return_type, + ACTIONS(9779), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -387929,8 +575908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -387939,7 +575916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6101), 25, + ACTIONS(8089), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -387957,258 +575934,132 @@ 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, - [106514] = 3, + [165670] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 16, + ACTIONS(11396), 1, + anon_sym_DASH_GT, + ACTIONS(11408), 1, + anon_sym_requires, + STATE(6009), 1, + sym_trailing_return_type, + ACTIONS(11405), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5868), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 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(5872), 33, + sym_identifier, + ACTIONS(8543), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_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, - anon_sym_DASH_GT_STAR, - [106628] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4599), 1, - sym_type_specifier, - STATE(6209), 1, - sym_type_descriptor, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3925), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [106733] = 3, + [165739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 16, + ACTIONS(9391), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5717), 33, + sym_identifier, + ACTIONS(9393), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106790] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [165796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 16, + ACTIONS(11178), 1, + sym_literal_suffix, + ACTIONS(5260), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388223,9 +576074,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(5721), 33, + ACTIONS(5253), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388235,7 +576092,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, @@ -388249,176 +576105,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, anon_sym_DASH_GT_STAR, - [106847] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5808), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [106952] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4164), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6042), 1, - sym_type_descriptor, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3939), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107057] = 3, + [165855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 16, + ACTIONS(8145), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388435,7 +576129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5725), 33, + ACTIONS(8140), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388445,7 +576139,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_COLON_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -388469,173 +576163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107114] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4162), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6042), 1, - sym_type_descriptor, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3985), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107219] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8145), 1, - sym_identifier, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8149), 1, - anon_sym_enum, - ACTIONS(8151), 1, - anon_sym_class, - ACTIONS(8153), 1, - anon_sym_struct, - ACTIONS(8155), 1, - anon_sym_union, - ACTIONS(8157), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4906), 1, - sym_type_specifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6042), 1, - sym_type_descriptor, - STATE(6830), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3999), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107324] = 5, + [165912] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 19, + ACTIONS(9444), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -388647,6 +576178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -388655,9 +576187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6048), 25, + ACTIONS(9446), 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, @@ -388673,7 +576206,9 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -388681,88 +576216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107385] = 27, + anon_sym_COLON_RBRACK, + [165969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4934), 1, - sym_type_specifier, - STATE(6209), 1, - sym_type_descriptor, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3876), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 16, + ACTIONS(5260), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388779,7 +576239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5717), 33, + ACTIONS(5253), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388789,7 +576249,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, @@ -388813,129 +576272,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107547] = 5, + [166028] = 12, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7745), 1, + anon_sym_LBRACK, + ACTIONS(8030), 1, + anon_sym_STAR, + ACTIONS(8032), 1, + anon_sym_AMP_AMP, + ACTIONS(8034), 1, + anon_sym_AMP, + STATE(1976), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6191), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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(6052), 25, + ACTIONS(9072), 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_RPAREN, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [107608] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3788), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6022), 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, - [107669] = 5, + anon_sym_COLON_RBRACK, + [166103] = 9, ACTIONS(3), 1, sym_comment, - STATE(3792), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8161), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 19, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(11411), 1, + anon_sym_COLON, + STATE(3694), 1, + sym__enum_base_clause, + STATE(3746), 1, + sym_enumerator_list, + STATE(3974), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7600), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -388945,8 +576361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -388955,7 +576369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6068), 25, + ACTIONS(7602), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -388973,7 +576387,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, @@ -388981,66 +576394,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107730] = 5, + [166171] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7345), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6086), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7347), 42, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [107791] = 3, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 16, + ACTIONS(9344), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389057,7 +576467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5771), 33, + ACTIONS(9342), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389067,7 +576477,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, @@ -389091,17 +576500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [107848] = 5, + [166283] = 7, ACTIONS(3), 1, sym_comment, - STATE(3757), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8163), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5858), 19, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5381), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -389111,8 +576524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -389121,7 +576532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5860), 25, + ACTIONS(8561), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -389139,7 +576550,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, @@ -389147,10 +576557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107909] = 3, + [166347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 23, + ACTIONS(9538), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389165,16 +576575,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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7039), 26, + ACTIONS(9540), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389197,77 +576600,102 @@ 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, - [107966] = 27, + [166403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9036), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + ACTIONS(7263), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7265), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7267), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7269), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -389279,17 +576707,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108071] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166515] = 7, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 19, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -389299,8 +576740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -389309,7 +576748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6158), 25, + ACTIONS(8089), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -389327,7 +576766,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, @@ -389335,46 +576773,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108132] = 6, + [166579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4316), 1, - anon_sym_SEMI, - ACTIONS(4197), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4161), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(7379), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7381), 42, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_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(4169), 17, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9416), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389388,42 +576843,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9418), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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_DOT, - [108195] = 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [166691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8167), 11, + ACTIONS(7223), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7225), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(8165), 38, + anon_sym_try, + anon_sym_requires, + [166747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7253), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7255), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -389437,82 +576978,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [108252] = 27, + [166803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8274), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7271), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7273), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -389524,94 +577029,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108357] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166859] = 3, ACTIONS(3), 1, sym_comment, - STATE(3749), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9480), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6064), 25, + anon_sym_DASH_GT, + ACTIONS(9482), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [108418] = 3, + anon_sym_DASH_GT_STAR, + [166915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8169), 38, + ACTIONS(7275), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7277), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -389625,97 +577137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [108475] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8461), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [108580] = 3, + [166971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 16, + ACTIONS(9515), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389732,7 +577164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5659), 33, + ACTIONS(9517), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389742,7 +577174,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, @@ -389766,17 +577197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108637] = 6, + [167027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7802), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(5971), 21, - aux_sym_preproc_elif_token1, + ACTIONS(8382), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -389784,9 +577208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -389795,15 +577217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - ACTIONS(4187), 25, + sym_literal_suffix, + ACTIONS(8384), 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, @@ -389815,96 +577232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108700] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4191), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3899), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [108805] = 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, + [167083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 16, + ACTIONS(9499), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389921,7 +577270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5856), 33, + ACTIONS(9501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389931,7 +577280,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, @@ -389955,88 +577303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108862] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(8061), 1, - sym_primitive_type, - ACTIONS(8063), 1, - anon_sym_enum, - ACTIONS(8065), 1, - anon_sym_class, - ACTIONS(8067), 1, - anon_sym_struct, - ACTIONS(8069), 1, - anon_sym_union, - ACTIONS(8071), 1, - sym_auto, - ACTIONS(8073), 1, - anon_sym_decltype, - ACTIONS(8075), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4399), 1, - sym_type_specifier, - STATE(4918), 1, - sym_template_type, - STATE(4938), 1, - sym_qualified_type_identifier, - STATE(5058), 1, - sym_decltype, - STATE(5115), 1, - sym_decltype_auto, - STATE(6209), 1, - sym_type_descriptor, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3908), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5143), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [108967] = 3, + [167139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 16, + ACTIONS(9412), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390053,7 +577323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5864), 33, + ACTIONS(9414), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390063,7 +577333,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, @@ -390087,72 +577356,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109024] = 27, + [167195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, + ACTIONS(6228), 1, + anon_sym_SEMI, + ACTIONS(6237), 1, + anon_sym_LBRACK, + ACTIONS(6230), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6233), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8842), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6226), 35, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -390165,181 +577405,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109129] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [167257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7351), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5828), 33, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7353), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [109186] = 3, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167313] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 16, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(11413), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5832), 33, + ACTIONS(9342), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109243] = 27, + anon_sym_DASH_GT, + [167377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8603), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7283), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7285), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -390351,10 +577566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109348] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 16, + ACTIONS(9452), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390371,7 +577595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5844), 33, + ACTIONS(9454), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -390381,7 +577605,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, @@ -390405,30 +577628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109405] = 10, + [167489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8187), 1, - anon_sym_COLON, - STATE(2594), 1, - sym_attribute_specifier, - STATE(3837), 1, - sym__enum_base_clause, - STATE(3959), 1, - sym_enumerator_list, - ACTIONS(6565), 5, + ACTIONS(7223), 6, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6567), 37, + ACTIONS(7225), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -390438,9 +577648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, anon_sym___inline__, @@ -390464,188 +577678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [109476] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8873), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [109581] = 27, + [167545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4247), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3921), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [109686] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8187), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(3838), 1, - sym__enum_base_clause, - STATE(3963), 1, - sym_enumerator_list, - ACTIONS(6571), 5, + ACTIONS(7355), 6, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6573), 37, + ACTIONS(7357), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -390655,9 +577701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, anon_sym___inline__, @@ -390681,525 +577731,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [109757] = 27, + [167601] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(7987), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [109862] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(8051), 1, + ACTIONS(8197), 1, + anon_sym_STAR, + ACTIONS(8199), 1, + anon_sym_AMP_AMP, + ACTIONS(8201), 1, + anon_sym_AMP, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4820), 1, + sym_parameter_list, + STATE(7878), 1, sym__scope_resolution, - STATE(8643), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [109967] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8689), 1, + sym__declarator, + STATE(8839), 1, + sym__abstract_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(9074), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9072), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8917), 1, - sym_type_descriptor, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110072] = 9, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7279), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6425), 24, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7281), 42, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [110141] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8498), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110246] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4318), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3931), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110351] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8516), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7359), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7361), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391211,73 +577908,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110456] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(8400), 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, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8727), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + sym_literal_suffix, + ACTIONS(8402), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_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, + [167873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7421), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7423), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391289,73 +578014,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110561] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9011), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7289), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391367,73 +578067,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110666] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4819), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3937), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7293), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391445,73 +578120,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110771] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8416), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9503), 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(9505), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [168097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7299), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7301), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391523,10 +578226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110876] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 16, + ACTIONS(4570), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391543,7 +578255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5904), 33, + ACTIONS(4568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391553,7 +578265,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, @@ -391577,73 +578288,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110933] = 27, + [168209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8469), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7287), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7289), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -391655,10 +578332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111038] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 16, + ACTIONS(9428), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391675,7 +578361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5923), 33, + ACTIONS(9430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391685,7 +578371,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, @@ -391709,10 +578394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111095] = 3, + [168321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 16, + ACTIONS(9554), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391729,7 +578414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5896), 33, + ACTIONS(9556), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -391739,7 +578424,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, @@ -391763,307 +578447,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111152] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8556), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111257] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4465), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3942), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111362] = 27, + [168377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8926), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7325), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111467] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8971), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + anon_sym___asm, + ACTIONS(7327), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -392075,307 +578491,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111572] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8511), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111677] = 27, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8685), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111782] = 27, + ACTIONS(8208), 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(3888), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [168489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8272), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111887] = 27, + ACTIONS(9519), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9521), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [168545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8316), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7329), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7331), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -392387,21 +578650,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111992] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8382), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -392410,14 +578681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6543), 30, + sym_literal_suffix, + ACTIONS(8384), 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, @@ -392426,103 +578693,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_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112049] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5829), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112154] = 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, + [168657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 16, + ACTIONS(9578), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392539,7 +578732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5767), 33, + ACTIONS(9580), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392549,7 +578742,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, @@ -392573,73 +578765,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112211] = 27, + [168713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, + ACTIONS(7195), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7197), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168769] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym___attribute, + ACTIONS(11415), 1, + anon_sym_STAR, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, + anon_sym_AMP, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5835), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8673), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3892), 2, + STATE(5966), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6405), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -392651,26 +578890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112316] = 8, + [168863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2611), 1, - sym_attribute_specifier, - STATE(3964), 1, - sym_enumerator_list, - ACTIONS(6225), 5, + ACTIONS(7205), 6, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6227), 39, + ACTIONS(7207), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -392680,8 +578910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, anon_sym_EQ, anon_sym_register, @@ -392710,26 +578943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [112383] = 8, + [168919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2601), 1, - sym_attribute_specifier, - STATE(3967), 1, - sym_enumerator_list, - ACTIONS(6173), 5, + ACTIONS(7303), 6, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6175), 39, + ACTIONS(7305), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -392739,8 +578963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, anon_sym_EQ, anon_sym_register, @@ -392769,64 +578996,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [112450] = 3, + [168975] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(11415), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5749), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8678), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112507] = 3, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 16, + ACTIONS(9507), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392843,7 +579088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5812), 33, + ACTIONS(9509), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392853,7 +579098,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, @@ -392877,220 +579121,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112564] = 3, + [169125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 16, + ACTIONS(8400), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + 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(6449), 33, + sym_identifier, + sym_literal_suffix, + ACTIONS(8402), 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_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [112621] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5894), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112726] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5897), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112831] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [169181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 19, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393100,8 +579198,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -393110,10 +579206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6719), 30, + ACTIONS(7627), 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, @@ -393129,241 +579224,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112888] = 27, + [169245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5918), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112993] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5919), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7235), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113098] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5922), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + anon_sym___asm, + ACTIONS(7237), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -393375,307 +579275,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113203] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5923), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113308] = 27, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5929), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113413] = 27, + ACTIONS(9420), 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(9422), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [169357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5931), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7295), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113518] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5935), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + anon_sym___asm, + ACTIONS(7297), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -393687,229 +579381,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113623] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5936), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113728] = 27, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, + ACTIONS(8454), 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, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5937), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113833] = 27, + sym_literal_suffix, + ACTIONS(8456), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_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, + [169469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5938), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(9511), 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(9513), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [169525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(6800), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -393921,73 +579540,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113938] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5939), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7333), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7335), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -393999,73 +579593,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114043] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5381), 1, - sym_type_specifier, - STATE(5940), 1, - sym__type_definition_type, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3892), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(8543), 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, + [169701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9550), 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(9552), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [169757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9574), 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(9576), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [169813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7245), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7247), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394077,73 +579809,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114148] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8609), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9546), 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(9548), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [169925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7261), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394155,73 +579915,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114253] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8630), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7337), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7339), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394233,37 +579968,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114358] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 5, + ACTIONS(7341), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7343), 42, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8189), 44, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394277,83 +580023,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [114415] = 27, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8970), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7209), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7211), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394365,153 +580074,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114520] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9432), 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(9434), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [170205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 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(9525), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [170261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9464), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9466), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [170317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9391), 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(6449), 30, + anon_sym_DASH_GT, + ACTIONS(9393), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [114577] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5048), 1, - sym_type_specifier, - STATE(6042), 1, - sym_type_descriptor, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3887), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114682] = 3, + anon_sym_DASH_GT_STAR, + [170373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8446), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -394520,14 +580317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2763), 30, + sym_literal_suffix, + ACTIONS(8448), 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, @@ -394536,197 +580329,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114739] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8774), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114844] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8778), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114949] = 10, + 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, + [170429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9436), 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, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(9438), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - ACTIONS(6415), 18, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [170485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(11411), 1, + anon_sym_COLON, + STATE(3713), 1, + sym__enum_base_clause, + STATE(3795), 1, + sym_enumerator_list, + STATE(4024), 1, + sym_attribute_specifier, + ACTIONS(8907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7651), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -394736,23 +580427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6417), 22, + ACTIONS(7653), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -394763,78 +580453,152 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [115020] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [170553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8797), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(9562), 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(9564), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [170609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9484), 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(9486), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [170665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7375), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7377), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394846,73 +580610,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115125] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8801), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7221), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -394924,73 +580663,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115230] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8818), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7225), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -395002,73 +580716,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115335] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5119), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8822), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7229), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -395080,151 +580769,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115440] = 27, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170889] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(8051), 1, + ACTIONS(8354), 1, + anon_sym_STAR, + ACTIONS(8356), 1, + anon_sym_AMP_AMP, + ACTIONS(8358), 1, + anon_sym_AMP, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5256), 1, + sym_parameter_list, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8665), 1, + sym__declarator, + STATE(8829), 1, + sym__abstract_declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9025), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8838), 1, - sym_type_descriptor, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [115545] = 27, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(8454), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4988), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(8278), 1, - sym_type_descriptor, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3895), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + sym_literal_suffix, + ACTIONS(8456), 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, + [171051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 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(5253), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [171107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7233), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -395236,63 +581006,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115650] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171163] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 16, + ACTIONS(8888), 1, + anon_sym_requires, + ACTIONS(8885), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 32, + sym_identifier, + ACTIONS(7544), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115706] = 3, + anon_sym_DASH_GT, + [171227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 16, + ACTIONS(9527), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395309,7 +581092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1936), 32, + ACTIONS(9529), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395342,192 +581125,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115762] = 3, + [171283] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 16, + ACTIONS(9124), 1, + anon_sym_requires, + ACTIONS(9121), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4161), 32, + sym_identifier, + ACTIONS(7627), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115818] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4981), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [115920] = 3, + anon_sym_DASH_GT, + [171347] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 16, + ACTIONS(9782), 1, + anon_sym_requires, + ACTIONS(9779), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6645), 32, + sym_identifier, + ACTIONS(8089), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115976] = 3, + anon_sym_DASH_GT, + [171411] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6621), 19, + ACTIONS(11408), 1, + anon_sym_requires, + ACTIONS(11405), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -395537,8 +581263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -395547,10 +581271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6623), 29, + ACTIONS(8543), 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, @@ -395566,21 +581289,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_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116032] = 3, + [171475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 16, + ACTIONS(9375), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395597,7 +581316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6669), 32, + ACTIONS(9377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395630,10 +581349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116088] = 3, + [171531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 19, + ACTIONS(11438), 1, + anon_sym_requires, + ACTIONS(11435), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5381), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -395643,8 +581373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -395653,10 +581381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6514), 29, + ACTIONS(8561), 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, @@ -395672,21 +581399,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_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116144] = 3, + [171595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 16, + ACTIONS(9570), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395703,7 +581426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5164), 32, + ACTIONS(9572), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395736,10 +581459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116200] = 3, + [171651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 16, + ACTIONS(9379), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395756,7 +581479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5184), 32, + ACTIONS(9381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395789,63 +581512,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116256] = 3, + [171707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9542), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6508), 29, + anon_sym_DASH_GT, + ACTIONS(9544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116312] = 3, + anon_sym_DASH_GT_STAR, + [171763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 16, + ACTIONS(9558), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395862,7 +581585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6707), 32, + ACTIONS(9560), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395895,10 +581618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116368] = 3, + [171819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 16, + ACTIONS(9531), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395915,7 +581638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6715), 32, + ACTIONS(9533), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395948,162 +581671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116424] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4406), 1, - sym_type_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [116526] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5017), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [116628] = 3, + [171875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 16, + ACTIONS(9566), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396120,7 +581691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6547), 32, + ACTIONS(9568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396153,10 +581724,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116684] = 3, + [171931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 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(8448), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_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, + [171987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 16, + ACTIONS(9408), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396173,7 +581797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6559), 32, + ACTIONS(9410), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396206,10 +581830,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116740] = 3, + [172043] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6874), 1, + anon_sym_requires, + ACTIONS(6868), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 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, + [172107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 16, + ACTIONS(9444), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396226,7 +581907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5208), 32, + ACTIONS(9446), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396259,71 +581940,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [116796] = 26, + [172163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4998), 1, - sym_type_specifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(7191), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7193), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -396335,71 +581984,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116898] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [172219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1683), 1, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(11441), 1, + anon_sym_COLON, + STATE(3021), 1, + sym_attribute_specifier, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3793), 1, + sym_enumerator_list, + ACTIONS(7651), 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(7653), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [172288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_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, + [172343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8418), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [172398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 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(8384), 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, + [172453] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(11441), 1, + anon_sym_COLON, + STATE(3078), 1, + sym_attribute_specifier, + STATE(3687), 1, + sym__enum_base_clause, + STATE(3797), 1, + sym_enumerator_list, + ACTIONS(7600), 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(7602), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [172522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8400), 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(8402), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_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, + [172577] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11443), 1, + anon_sym_STAR, + ACTIONS(11445), 1, + anon_sym_AMP_AMP, + ACTIONS(11447), 1, + anon_sym_AMP, + STATE(2592), 1, sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(5414), 1, - sym_type_specifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(4554), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8727), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6032), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6474), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -396411,271 +582389,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117000] = 21, + [172668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8446), 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(8448), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 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(8193), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + 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, + [172723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8416), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8418), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8195), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8197), 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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [172778] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8246), 1, + anon_sym_LPAREN2, + ACTIONS(8248), 1, + anon_sym_STAR, + ACTIONS(8250), 1, + anon_sym_AMP_AMP, + ACTIONS(8252), 1, anon_sym_AMP, - STATE(2975), 1, + ACTIONS(8262), 1, + anon_sym_LBRACK, + STATE(2154), 1, sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6554), 1, + STATE(6326), 1, sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4373), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(6536), 1, + sym__function_declarator_seq, + STATE(6612), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9074), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9072), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117092] = 3, + [172851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 16, + ACTIONS(8446), 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(2763), 32, + sym_literal_suffix, + ACTIONS(8448), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117148] = 26, + anon_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, + [172906] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4984), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117250] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(8061), 1, - sym_primitive_type, - ACTIONS(8063), 1, - anon_sym_enum, - ACTIONS(8065), 1, - anon_sym_class, - ACTIONS(8067), 1, - anon_sym_struct, - ACTIONS(8069), 1, - anon_sym_union, - ACTIONS(8071), 1, - sym_auto, - ACTIONS(8073), 1, - anon_sym_decltype, - ACTIONS(8075), 1, - anon_sym_typename, - STATE(1683), 1, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11443), 1, + anon_sym_STAR, + ACTIONS(11445), 1, + anon_sym_AMP_AMP, + ACTIONS(11447), 1, + anon_sym_AMP, + STATE(2592), 1, sym_alignas_qualifier, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4614), 1, - sym_type_specifier, - STATE(4918), 1, - sym_template_type, - STATE(4938), 1, - sym_qualified_type_identifier, - STATE(5058), 1, - sym_decltype, - STATE(5115), 1, - sym_decltype_auto, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(4554), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8732), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6544), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5143), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -396687,20 +582676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117352] = 3, + [172997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 19, + ACTIONS(8454), 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, @@ -396708,9 +582695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_literal_suffix, - ACTIONS(5480), 29, + ACTIONS(8456), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -396721,8 +582707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -396734,16 +582723,76 @@ 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, - [117408] = 3, + [173052] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 1, + anon_sym_LPAREN2, + ACTIONS(8226), 1, + anon_sym_STAR, + ACTIONS(8228), 1, + anon_sym_AMP_AMP, + ACTIONS(8230), 1, + anon_sym_AMP, + ACTIONS(8240), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6377), 1, + sym__abstract_declarator, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 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(9072), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [173125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 19, + ACTIONS(8454), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -396761,9 +582810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_literal_suffix, - ACTIONS(5484), 29, + ACTIONS(8456), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -396793,71 +582841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [117464] = 26, + [173180] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, + ACTIONS(10012), 1, + anon_sym_const, + STATE(4238), 1, sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4196), 1, - sym_type_specifier, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6185), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(6299), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7916), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6388), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -396869,11 +582878,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117566] = 3, + ACTIONS(6390), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [173249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6607), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8400), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -396882,8 +582912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -396891,15 +582919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6609), 29, + sym_literal_suffix, + ACTIONS(8402), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -396911,9 +582934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -396922,23 +582942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117622] = 9, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [173304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8199), 1, - anon_sym_COLON, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4056), 1, - sym__enum_base_clause, - STATE(4112), 1, - sym_enumerator_list, - STATE(4262), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6565), 17, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -396956,14 +582981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6567), 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9854), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -396974,161 +583001,114 @@ 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, - [117690] = 3, + [173366] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 16, + ACTIONS(11453), 1, + anon_sym_delete, + ACTIONS(11455), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 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(5168), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [117746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5174), 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(5176), 32, + ACTIONS(9342), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117802] = 3, + anon_sym_DASH_GT, + [173428] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 16, + ACTIONS(8824), 1, + anon_sym_requires, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(5711), 1, + sym_trailing_return_type, + ACTIONS(8821), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5192), 32, + ACTIONS(7544), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -397139,532 +583119,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117858] = 26, + [173494] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, + ACTIONS(11457), 1, + anon_sym_delete, + ACTIONS(11459), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4798), 1, - sym_type_specifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6607), 16, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 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(6609), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [118016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6617), 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(6619), 32, + ACTIONS(9342), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [118072] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(8061), 1, - sym_primitive_type, - ACTIONS(8063), 1, - anon_sym_enum, - ACTIONS(8065), 1, - anon_sym_class, - ACTIONS(8067), 1, - anon_sym_struct, - ACTIONS(8069), 1, - anon_sym_union, - ACTIONS(8071), 1, - sym_auto, - ACTIONS(8073), 1, - anon_sym_decltype, - ACTIONS(8075), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4395), 1, - sym_type_specifier, - STATE(4918), 1, - sym_template_type, - STATE(4938), 1, - sym_qualified_type_identifier, - STATE(5058), 1, - sym_decltype, - STATE(5115), 1, - sym_decltype_auto, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5143), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118174] = 3, + anon_sym_DASH_GT, + [173556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 16, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_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(5180), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9832), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118230] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5701), 1, - anon_sym___attribute, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6504), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3911), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4396), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118324] = 22, + anon_sym_DASH_GT, + [173618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(11451), 1, anon_sym_LBRACK, - STATE(3083), 1, + STATE(1971), 1, sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, + STATE(5230), 1, sym__function_declarator_seq, - STATE(6506), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4398), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5198), 16, + ACTIONS(9864), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_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(5200), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9862), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118474] = 9, + anon_sym_DASH_GT, + [173680] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8199), 1, - anon_sym_COLON, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4076), 1, - sym__enum_base_clause, - STATE(4127), 1, - sym_enumerator_list, - STATE(4286), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6571), 17, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9848), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397682,14 +583313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6573), 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9846), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -397700,55 +583333,52 @@ 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, - [118542] = 3, + [173742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 16, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9864), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6675), 32, + ACTIONS(9862), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -397759,72 +583389,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, - [118598] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [173804] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym___attribute, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4559), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8766), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6083), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -397836,64 +583464,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118700] = 3, + [173896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 16, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(11467), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9344), 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6543), 32, + ACTIONS(9342), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118756] = 3, + anon_sym_DASH_GT, + [173958] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(10244), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -397902,24 +583546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6723), 29, + ACTIONS(8089), 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, @@ -397932,60 +583563,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118812] = 4, + [174024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8219), 2, + ACTIONS(11469), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6247), 16, + ACTIONS(8939), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6249), 30, + ACTIONS(8941), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_bitor, @@ -397995,49 +583623,58 @@ 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, - [118870] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [174080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 16, + ACTIONS(8977), 1, + anon_sym_requires, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5719), 1, + sym_trailing_return_type, + ACTIONS(8974), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5160), 32, + ACTIONS(7627), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -398048,39 +583685,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118926] = 3, + [174146] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7731), 1, + anon_sym_LPAREN2, + ACTIONS(7745), 1, + anon_sym_LBRACK, + ACTIONS(8341), 1, + anon_sym_STAR, + ACTIONS(8343), 1, + anon_sym_AMP_AMP, + ACTIONS(8345), 1, + anon_sym_AMP, + STATE(2152), 1, + sym_parameter_list, + STATE(5165), 1, + sym__function_declarator_seq, + STATE(6429), 1, + sym__abstract_declarator, + STATE(5164), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9072), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [174218] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6679), 29, + ACTIONS(9850), 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, @@ -398092,134 +583782,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118982] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [174280] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1268), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(3917), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(3925), 1, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, + ACTIONS(8424), 1, + anon_sym_STAR, + ACTIONS(8426), 1, + anon_sym_AMP_AMP, + ACTIONS(8428), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5256), 1, + sym_parameter_list, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8689), 1, + sym__declarator, + STATE(8903), 1, + sym__abstract_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(9072), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(9074), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4257), 1, - sym_type_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119084] = 3, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [174382] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 16, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(11471), 1, + anon_sym_DASH_GT, + STATE(5757), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6563), 32, + ACTIONS(8543), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -398230,72 +583932,64 @@ 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, - [119140] = 26, + [174448] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(1683), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, + anon_sym_STAR, + ACTIONS(11476), 1, + anon_sym_AMP_AMP, + ACTIONS(11478), 1, + anon_sym_AMP, + STATE(4725), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, sym_alignas_qualifier, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4555), 1, - sym_type_specifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8746), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6061), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6760), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -398307,48 +584001,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119242] = 3, + [174538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 16, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5196), 32, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -398359,72 +584051,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, - [119298] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [174600] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym___attribute, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, + anon_sym_STAR, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(2592), 1, sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4562), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(5221), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8791), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6064), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6786), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6459), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -398436,10 +584126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119400] = 3, + [174692] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398449,8 +584147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -398459,15 +584155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6619), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9858), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -398478,21 +584175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_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, - [119456] = 3, + [174754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398502,8 +584202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -398512,15 +584210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6707), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9842), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -398531,53 +584230,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [174816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(3715), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6269), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, + ACTIONS(8514), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119512] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [174880] = 21, ACTIONS(3), 1, sym_comment, - STATE(4125), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, + anon_sym_STAR, + ACTIONS(11476), 1, + anon_sym_AMP_AMP, + ACTIONS(11478), 1, + anon_sym_AMP, + STATE(4725), 1, + sym_parameter_list, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(8224), 2, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8753), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3928), 2, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5846), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(8221), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7836), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(6623), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 7, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7834), 27, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -398589,21 +584361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [119576] = 3, + [174970] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 19, - aux_sym_preproc_elif_token1, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -398612,25 +584381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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(6563), 29, + ACTIONS(9858), 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, @@ -398642,172 +584398,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119632] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5147), 1, - sym_type_specifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119734] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4297), 1, - sym_type_specifier, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119836] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398817,8 +584437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -398827,15 +584445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6581), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9838), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -398846,57 +584465,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119892] = 8, + [175094] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4942), 1, - anon_sym_LBRACK, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(4050), 1, - sym_template_argument_list, - ACTIONS(4935), 3, - anon_sym_RPAREN, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4938), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, anon_sym_STAR, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4931), 35, + ACTIONS(11484), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8796), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6686), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -398908,44 +584541,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [119958] = 3, + [175186] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(3715), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6295), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(6587), 29, + ACTIONS(8481), 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, @@ -398954,25 +584580,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120014] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [175250] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 19, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(8307), 1, + anon_sym_STAR, + ACTIONS(8309), 1, + anon_sym_AMP_AMP, + ACTIONS(8311), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5185), 1, + sym_parameter_list, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8689), 1, + sym__declarator, + STATE(8881), 1, + sym__abstract_declarator, + STATE(10656), 1, + sym_ms_based_modifier, + ACTIONS(9072), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(9074), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [175352] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -398981,25 +584692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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(6577), 29, + ACTIONS(9854), 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, @@ -399011,20 +584709,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120070] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175414] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399034,8 +584748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -399044,15 +584756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6591), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9850), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -399063,135 +584776,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120126] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4821), 1, - sym_type_specifier, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120228] = 3, + [175476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 16, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3909), 32, + ACTIONS(9838), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -399202,88 +584832,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_STAR, - [120284] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4179), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [120386] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 19, - aux_sym_preproc_elif_token1, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399292,25 +584857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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(3909), 29, + ACTIONS(9842), 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, @@ -399322,58 +584874,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120442] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175600] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 16, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(3719), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6297), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6711), 32, + ACTIONS(8481), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -399384,71 +584944,98 @@ 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, - [120498] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [175664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(4468), 1, - sym_type_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + ACTIONS(6203), 1, + anon_sym_SEMI, + ACTIONS(6212), 1, + anon_sym_LBRACK, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(6205), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6208), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(6201), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3927), 4, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [175730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6808), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6806), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -399461,11 +585048,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120600] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 19, - aux_sym_preproc_elif_token1, + ACTIONS(11372), 1, + anon_sym_requires, + ACTIONS(11471), 1, + anon_sym_DASH_GT, + STATE(5723), 1, + sym_trailing_return_type, + ACTIONS(11369), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5373), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399474,24 +585083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6669), 29, + ACTIONS(8543), 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, @@ -399504,58 +585100,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120656] = 3, + [175850] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 16, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9848), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6581), 32, + ACTIONS(9846), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -399566,158 +585163,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [120712] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11486), 1, + anon_sym_delete, + ACTIONS(11488), 1, + anon_sym_new, + ACTIONS(9346), 4, + 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6587), 32, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9342), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [120768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6589), 16, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9344), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6591), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [120824] = 3, + anon_sym_DOT, + [175974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 16, + ACTIONS(11469), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11490), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8959), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6731), 32, + ACTIONS(8961), 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_STAR, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -399725,12 +585271,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, - [120880] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [176032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9639), 1, + anon_sym_DASH_GT, + STATE(5718), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399739,24 +585303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6715), 29, + ACTIONS(7544), 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, @@ -399769,21 +585320,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120936] = 3, + [176098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9733), 1, + anon_sym_requires, + ACTIONS(10244), 1, + anon_sym_DASH_GT, + STATE(5721), 1, + sym_trailing_return_type, + ACTIONS(9730), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5364), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399792,24 +585360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6547), 29, + ACTIONS(8089), 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, @@ -399822,111 +585377,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6516), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6518), 29, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [176164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6902), 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_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_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, - [121048] = 3, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6900), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [176218] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 16, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(3719), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6314), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5188), 32, + ACTIONS(8514), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -399937,12 +585493,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121104] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [176282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6919), 1, + anon_sym_requires, + ACTIONS(9748), 1, + anon_sym_DASH_GT, + STATE(5666), 1, + sym_trailing_return_type, + ACTIONS(6913), 2, + anon_sym_final, + anon_sym_override, + STATE(4709), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -399951,24 +585524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6559), 29, + ACTIONS(7627), 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, @@ -399981,48 +585541,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [121160] = 3, + [176348] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8768), 1, + sym__abstract_declarator, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6756), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176440] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, + anon_sym_LPAREN2, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8354), 1, + anon_sym_STAR, + ACTIONS(8356), 1, + anon_sym_AMP_AMP, + ACTIONS(8358), 1, + anon_sym_AMP, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5256), 1, + sym_parameter_list, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8689), 1, + sym__declarator, + STATE(8903), 1, + sym__abstract_declarator, + STATE(10827), 1, + sym_ms_based_modifier, + ACTIONS(9072), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(9074), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [176542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(6727), 29, + ACTIONS(8585), 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, @@ -400030,62 +585729,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121216] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [176597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 16, + ACTIONS(8579), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6695), 32, + ACTIONS(8581), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -400095,44 +585793,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121272] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [176650] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6993), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, + anon_sym_LPAREN2, + ACTIONS(10924), 1, + anon_sym_STAR, + ACTIONS(10926), 1, + anon_sym_AMP_AMP, + ACTIONS(10928), 1, + anon_sym_AMP, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4243), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8305), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6115), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6991), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [176731] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8279), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6097), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6959), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176820] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2592), 1, - sym_attribute_specifier, - ACTIONS(6338), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6340), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11510), 1, + sym_identifier, + ACTIONS(11512), 1, anon_sym_LPAREN2, + ACTIONS(11514), 1, anon_sym_STAR, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11518), 1, + anon_sym_AMP, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8240), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7012), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400144,51 +586000,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121334] = 6, + [176909] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6495), 1, anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2606), 1, - sym_attribute_specifier, - ACTIONS(6342), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(10012), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6344), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10922), 1, anon_sym_LPAREN2, + ACTIONS(10924), 1, anon_sym_STAR, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10928), 1, + anon_sym_AMP, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4243), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8311), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400200,104 +586050,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6497), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [121396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6621), 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(6623), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [121452] = 6, + [176990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2598), 1, - sym_attribute_specifier, - ACTIONS(6354), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6356), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3730), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3728), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400311,49 +586104,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121514] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177043] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2591), 1, - sym_attribute_specifier, - ACTIONS(6272), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6274), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, anon_sym_STAR, + ACTIONS(11526), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11528), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4671), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11121), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6843), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3892), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3890), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400367,102 +586222,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 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(1940), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [121632] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2556), 1, - sym_attribute_specifier, - ACTIONS(6284), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6286), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3632), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3630), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400476,49 +586272,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121694] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2560), 1, - sym_attribute_specifier, - ACTIONS(6288), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6290), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3632), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3630), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400532,49 +586322,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121756] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177291] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2600), 1, - sym_attribute_specifier, - ACTIONS(6317), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6319), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, anon_sym_LPAREN2, + ACTIONS(11534), 1, anon_sym_STAR, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11538), 1, + anon_sym_AMP, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4723), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6127), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6966), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400586,51 +586400,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [177380] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8242), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121818] = 6, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7085), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177469] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2602), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(4569), 1, + sym_field_declaration_list, + STATE(4673), 1, sym_attribute_specifier, - ACTIONS(6334), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6336), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(9463), 1, + sym_virtual_specifier, + STATE(10317), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6828), 5, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(6826), 30, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400644,49 +586524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121880] = 6, + sym_identifier, + anon_sym_operator, + [177538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2610), 1, - sym_attribute_specifier, - ACTIONS(6276), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6278), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3638), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3636), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400700,49 +586566,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [121942] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2615), 1, - sym_attribute_specifier, - ACTIONS(6292), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6294), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3682), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3680), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400756,49 +586616,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [122004] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2589), 1, - sym_attribute_specifier, - ACTIONS(6346), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6348), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2954), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2949), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400812,49 +586666,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [122066] = 6, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - STATE(2609), 1, - sym_attribute_specifier, - ACTIONS(6313), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6315), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3730), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3728), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400864,293 +586712,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym__Nonnull, anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [122128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5486), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5488), 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, - [122184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5170), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5172), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5495), 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, - [122296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6725), 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(6727), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122352] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(8127), 1, anon_sym_enum, - ACTIONS(8129), 1, anon_sym_class, - ACTIONS(8131), 1, anon_sym_struct, - ACTIONS(8133), 1, anon_sym_union, - ACTIONS(8135), 1, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(8137), 1, anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4383), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, + anon_sym_template, + [177750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -401163,436 +586764,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6717), 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(6719), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6721), 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(6723), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6639), 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(6641), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6655), 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(6657), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(6504), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [122734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 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(6504), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [122790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6506), 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(6508), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [122846] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177803] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, + ACTIONS(11423), 1, sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8193), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(8195), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(8197), 1, + ACTIONS(11548), 1, anon_sym_AMP, - STATE(2975), 1, + STATE(4985), 1, sym_parameter_list, - STATE(3790), 1, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6054), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6516), 1, + STATE(8820), 1, sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, + ACTIONS(11425), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3893), 2, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6153), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4389), 2, + STATE(7066), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5693), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6459), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7063), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -401605,229 +586844,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 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(6699), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [122994] = 5, + [177892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8219), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8227), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6199), 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(6201), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_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, - [123054] = 3, + ACTIONS(4044), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(4042), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 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, + ACTIONS(3706), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(6645), 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, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177998] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, + ACTIONS(10924), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10928), 1, + anon_sym_AMP, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4243), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8312), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7003), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123110] = 26, + 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, + [178079] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11550), 1, sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(11556), 1, + anon_sym_AMP_AMP, + ACTIONS(11558), 1, + anon_sym_AMP, + ACTIONS(11562), 1, sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(1683), 1, + STATE(3482), 1, sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4176), 1, - sym_type_specifier, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(4898), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6133), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6855), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11560), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, @@ -401842,249 +587076,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123212] = 3, + [178168] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6631), 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(6633), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6575), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6577), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6553), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11568), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6555), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [123380] = 3, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3540), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10884), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6947), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 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, + ACTIONS(3878), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3876), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6695), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123436] = 3, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [178310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8579), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(6641), 29, + ACTIONS(8581), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -402093,62 +587223,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_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6663), 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(6665), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -402158,441 +587236,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6677), 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(6679), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [123604] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [178363] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6512), 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(6514), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6516), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11574), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6518), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(11576), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123716] = 3, + ACTIONS(11578), 1, + anon_sym_AMP, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4630), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11462), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6873), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178452] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(6711), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(11496), 1, anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123772] = 3, + ACTIONS(11568), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3491), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10884), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6934), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 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, + ACTIONS(3678), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3676), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123828] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [178594] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + ACTIONS(6997), 1, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6555), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, + ACTIONS(10924), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10928), 1, + anon_sym_AMP, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4243), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8309), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3954), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6995), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123884] = 3, + 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, + [178675] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11550), 1, sym_identifier, - ACTIONS(6665), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(11552), 1, anon_sym_LPAREN2, + ACTIONS(11554), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11556), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123940] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8125), 1, + ACTIONS(11558), 1, + anon_sym_AMP, + ACTIONS(11562), 1, sym_primitive_type, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8145), 1, - sym_identifier, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8149), 1, - anon_sym_enum, - ACTIONS(8151), 1, - anon_sym_class, - ACTIONS(8153), 1, - anon_sym_struct, - ACTIONS(8155), 1, - anon_sym_union, - ACTIONS(8157), 1, - anon_sym_typename, - STATE(1683), 1, + STATE(3482), 1, sym_alignas_qualifier, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4909), 1, - sym_type_specifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(6830), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(4719), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6150), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6881), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8123), 4, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11560), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, @@ -402607,101 +587562,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124042] = 3, + [178764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(6703), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(11496), 1, anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11526), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [124098] = 3, + ACTIONS(11528), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4667), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11121), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6142), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6839), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 16, + ACTIONS(8551), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 32, + ACTIONS(8553), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -402711,43 +587672,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124154] = 4, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [178906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(3886), 3, anon_sym_COLON_COLON, - ACTIONS(5668), 22, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3884), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [178959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8637), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - ACTIONS(5670), 25, + ACTIONS(8639), 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, @@ -402756,59 +587759,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124212] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [179012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 16, + ACTIONS(8555), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5204), 32, + ACTIONS(8557), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -402818,13 +587822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124268] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [179065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6655), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8637), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -402833,24 +587842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(6657), 29, + ACTIONS(8639), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -402862,59 +587860,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124324] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [179118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 16, + ACTIONS(8641), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6703), 32, + ACTIONS(8643), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -402922,91 +587920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124380] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6372), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [124473] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [179171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7587), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(5971), 10, + ACTIONS(8551), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -403014,13 +587941,14 @@ 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_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(4187), 34, + ACTIONS(8553), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -403032,11 +587960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -403048,68 +587973,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - [124534] = 22, + anon_sym_requires, + [179224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(8641), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8643), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [179277] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, + ACTIONS(11574), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4342), 1, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8771), 1, + STATE(4609), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11462), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6112), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6980), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403123,64 +588098,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124627] = 22, + [179366] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, + ACTIONS(11530), 1, sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, + ACTIONS(11532), 1, + anon_sym_LPAREN2, + ACTIONS(11534), 1, anon_sym_STAR, - ACTIONS(7364), 1, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - ACTIONS(7366), 1, + ACTIONS(11538), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6702), 1, - sym__declarator, - STATE(8527), 1, + STATE(4715), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6829), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403194,66 +588166,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124720] = 22, + [179455] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5701), 1, - anon_sym___attribute, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, anon_sym_STAR, - ACTIONS(8231), 1, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - ACTIONS(8233), 1, + ACTIONS(11568), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(3790), 1, + STATE(3598), 1, + sym__type_declarator, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6587), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, + STATE(10884), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, + ACTIONS(11504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4011), 2, + STATE(6109), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4469), 2, + STATE(6896), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403265,66 +588234,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124813] = 22, + [179544] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, + ACTIONS(7009), 1, anon_sym___attribute, - ACTIONS(7936), 1, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, + ACTIONS(10924), 1, anon_sym_STAR, - ACTIONS(8231), 1, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - ACTIONS(8233), 1, + ACTIONS(10928), 1, anon_sym_AMP, - STATE(1683), 1, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3299), 1, + STATE(4243), 1, sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6603), 1, + STATE(8313), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4471), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 7, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7007), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + [179625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2910), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(2905), 42, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403336,46 +588336,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124906] = 11, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(3008), 3, anon_sym_COLON_COLON, - ACTIONS(7098), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3003), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(7100), 1, anon_sym_decltype, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(2576), 1, - sym_decltype_auto, - STATE(3237), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7096), 4, + anon_sym_template, + [179731] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, + anon_sym_LPAREN2, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, + anon_sym_AMP, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4600), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11462), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7009), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11580), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4159), 5, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179820] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11550), 1, + sym_identifier, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(11556), 1, + anon_sym_AMP_AMP, + ACTIONS(11558), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4719), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6881), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(4167), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179909] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, anon_sym_LPAREN2, + ACTIONS(11534), 1, anon_sym_STAR, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11538), 1, + anon_sym_AMP, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4715), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6138), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6829), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3878), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(3876), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403389,71 +588642,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [180051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11584), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8585), 32, + 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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_asm, anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [124977] = 22, + [180106] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(7348), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(7350), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6497), 1, - sym__declarator, - STATE(8390), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8246), 1, + sym__type_declarator, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6148), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6951), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403467,64 +588771,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125070] = 22, + [180195] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(11530), 1, sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(11532), 1, + anon_sym_LPAREN2, + ACTIONS(11534), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(11538), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6673), 1, - sym__declarator, - STATE(8233), 1, + STATE(4899), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6825), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403538,64 +588839,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125163] = 22, + [180284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(3650), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3648), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_template, + [180337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11586), 1, + sym_ms_restrict_modifier, + STATE(6312), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11589), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11592), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6140), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6600), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6602), 32, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [180400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(4086), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [180453] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, anon_sym_STAR, - ACTIONS(7322), 1, + ACTIONS(11526), 1, anon_sym_AMP_AMP, - ACTIONS(7324), 1, + ACTIONS(11528), 1, anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6921), 1, - sym__declarator, - STATE(8512), 1, + STATE(4669), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11121), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6841), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403609,64 +589062,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125256] = 22, + [180542] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, anon_sym_STAR, - ACTIONS(7282), 1, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(11568), 1, anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6025), 1, - sym__scope_resolution, - STATE(6349), 1, - sym__declarator, - STATE(8325), 1, + STATE(3540), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10884), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6113), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6947), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403680,64 +589130,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125349] = 22, + [180631] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(11510), 1, sym_identifier, - ACTIONS(7310), 1, + ACTIONS(11512), 1, + anon_sym_LPAREN2, + ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(7312), 1, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(11518), 1, anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6410), 1, - sym__declarator, - STATE(8687), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8155), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6877), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403751,64 +589198,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125442] = 22, + [180720] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(11510), 1, sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, + ACTIONS(11512), 1, + anon_sym_LPAREN2, + ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(7348), 1, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(7350), 1, + ACTIONS(11518), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6561), 1, - sym__declarator, - STATE(8390), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8140), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6144), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6960), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403822,29 +589266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125535] = 3, + [180809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 18, + ACTIONS(8555), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5480), 29, + ACTIONS(8557), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -403855,137 +589293,84 @@ static const uint16_t ts_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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [125590] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3757), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8163), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 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(5663), 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125649] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [180862] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(11510), 1, sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(11512), 1, + anon_sym_LPAREN2, + ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(11518), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6691), 1, - sym__declarator, - STATE(8233), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8155), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6089), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6877), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -403999,64 +589384,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125742] = 22, + [180951] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(7364), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(7366), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6685), 1, - sym__declarator, - STATE(8527), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8279), 1, + sym__type_declarator, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6959), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -404070,64 +589452,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125835] = 22, + [181040] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, anon_sym_STAR, - ACTIONS(7348), 1, + ACTIONS(11526), 1, anon_sym_AMP_AMP, - ACTIONS(7350), 1, + ACTIONS(11528), 1, anon_sym_AMP, - STATE(4342), 1, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6534), 1, - sym__declarator, - STATE(8390), 1, + STATE(4669), 1, + sym__type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11121), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6092), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6841), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -404141,238 +589520,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125928] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(5090), 1, - sym_auto, - ACTIONS(5092), 1, - anon_sym_decltype, - ACTIONS(8235), 1, - anon_sym_LT, - STATE(2492), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2590), 1, - sym_template_argument_list, - STATE(2825), 1, - sym_decltype_auto, - ACTIONS(5082), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4167), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [125999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8237), 1, - anon_sym_LPAREN2, - STATE(4064), 1, - sym_new_declarator, - STATE(3926), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 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(6156), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [126064] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8237), 1, - anon_sym_LPAREN2, - STATE(4062), 1, - sym_new_declarator, - STATE(3952), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6150), 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(6152), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [126129] = 22, + [181129] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(11550), 1, + sym_identifier, + ACTIONS(11552), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, + ACTIONS(11554), 1, anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(11556), 1, + anon_sym_AMP_AMP, + ACTIONS(11558), 1, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(4342), 1, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6690), 1, - sym__declarator, - STATE(8771), 1, + STATE(4920), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10593), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6927), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -404386,29 +589588,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126222] = 7, + [181218] = 21, ACTIONS(3), 1, sym_comment, - STATE(4131), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, + anon_sym_LPAREN2, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, + anon_sym_AMP, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - ACTIONS(8242), 2, + STATE(4630), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11462), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4028), 2, + ACTIONS(11504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6132), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6873), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5101), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(8239), 13, + ACTIONS(11423), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -404422,138 +589656,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5099), 19, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [126285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5484), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [126340] = 22, + [181307] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7001), 1, + anon_sym___attribute, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, + ACTIONS(10924), 1, anon_sym_STAR, - ACTIONS(7276), 1, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - ACTIONS(7278), 1, + ACTIONS(10928), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6812), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(4243), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8310), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6107), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -404565,64 +589706,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126433] = 21, + ACTIONS(6999), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [181388] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, + ACTIONS(11423), 1, sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(8247), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(11548), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3014), 1, + STATE(4985), 1, sym_parameter_list, - STATE(3790), 1, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6606), 1, + STATE(8837), 1, sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, + ACTIONS(11425), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4040), 2, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5846), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4451), 2, + STATE(7067), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5693), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(6497), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404635,40 +589788,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126524] = 3, + [181477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 18, + ACTIONS(11595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11597), 1, + anon_sym_AMP_AMP, + ACTIONS(11599), 1, + anon_sym_or, + ACTIONS(11601), 1, + anon_sym_and, + ACTIONS(8959), 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_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5495), 29, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8961), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -404676,218 +589841,152 @@ 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, - [126579] = 22, + [181537] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(10200), 1, + anon_sym_DASH_GT, + ACTIONS(10206), 1, + anon_sym_requires, + STATE(6236), 1, + sym_trailing_return_type, + ACTIONS(10203), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_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_LBRACK, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6407), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126672] = 22, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [181601] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(10200), 1, + anon_sym_DASH_GT, + STATE(6213), 1, + sym_trailing_return_type, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6691), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [126765] = 22, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [181665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(5282), 1, anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 6, anon_sym_LPAREN2, - ACTIONS(2809), 1, anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, anon_sym_STAR, - ACTIONS(7330), 1, anon_sym_AMP_AMP, - ACTIONS(7332), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(6798), 34, anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6333), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -404900,66 +589999,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126858] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_template, - ACTIONS(1852), 1, anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + [181725] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6495), 1, + anon_sym___asm, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, + ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(7312), 1, + ACTIONS(11253), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(11255), 1, anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(4486), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8358), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -404971,89 +590067,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126951] = 30, + [181805] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(8246), 1, anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, + ACTIONS(8262), 1, anon_sym_LBRACK, - ACTIONS(5955), 1, + ACTIONS(8520), 1, anon_sym_STAR, - ACTIONS(8251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8255), 1, + ACTIONS(8522), 1, anon_sym_AMP_AMP, - ACTIONS(8257), 1, + ACTIONS(8524), 1, anon_sym_AMP, - ACTIONS(8259), 1, - anon_sym_EQ, - STATE(3333), 1, + STATE(2180), 1, sym_parameter_list, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, + STATE(6536), 1, sym__function_declarator_seq, - STATE(6446), 1, - sym__declarator, - STATE(6774), 1, + STATE(6755), 1, sym__abstract_declarator, - STATE(6988), 1, - sym_abstract_reference_declarator, - STATE(7680), 1, - sym_variadic_declarator, - STATE(7705), 1, - sym_variadic_reference_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8253), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6989), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 4, + STATE(6612), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [127060] = 3, + sym_abstract_reference_declarator, + ACTIONS(9074), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9072), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [181875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 18, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6234), 1, + sym_trailing_return_type, + ACTIONS(9648), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [181939] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10220), 1, + anon_sym_DASH_GT, + ACTIONS(10226), 1, + anon_sym_requires, + STATE(6221), 1, + sym_trailing_return_type, + ACTIONS(10223), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -405064,15 +590209,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8089), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [182003] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + ACTIONS(9766), 1, + anon_sym_requires, + STATE(6235), 1, + sym_trailing_return_type, + ACTIONS(9763), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5488), 29, + ACTIONS(7627), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -405083,64 +590274,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + [182067] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9751), 1, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + STATE(6263), 1, + sym_trailing_return_type, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [127115] = 8, + [182131] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8237), 1, + ACTIONS(8224), 1, anon_sym_LPAREN2, - STATE(4073), 1, - sym_new_declarator, - STATE(3989), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8240), 1, + anon_sym_LBRACK, + ACTIONS(8589), 1, + anon_sym_STAR, + ACTIONS(8591), 1, + anon_sym_AMP_AMP, + ACTIONS(8593), 1, + anon_sym_AMP, + STATE(2144), 1, + sym_parameter_list, + STATE(6497), 1, + sym__function_declarator_seq, + STATE(6652), 1, + sym__abstract_declarator, + STATE(6488), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9074), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9072), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [182201] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11603), 1, + anon_sym_DASH_GT, + ACTIONS(11609), 1, + anon_sym_requires, + STATE(6238), 1, + sym_trailing_return_type, + ACTIONS(11606), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6538), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(6113), 24, + ACTIONS(8543), 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, @@ -405151,72 +590445,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_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, - [127180] = 21, + [182265] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(6993), 1, + anon_sym___asm, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(8247), 1, + ACTIONS(11253), 1, anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(11255), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3014), 1, + STATE(4486), 1, sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6565), 1, + STATE(8350), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4436), 2, + STATE(6178), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 8, - anon_sym_RPAREN, + ACTIONS(6991), 12, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -405229,329 +590521,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127271] = 22, + [182345] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(11612), 1, + anon_sym_DASH_GT, + STATE(6227), 1, + sym_trailing_return_type, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6486), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6025), 1, - sym__scope_resolution, - STATE(6348), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127364] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8543), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6403), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127457] = 22, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [182409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, + ACTIONS(11612), 1, + anon_sym_DASH_GT, + ACTIONS(11618), 1, + anon_sym_requires, + STATE(6223), 1, + sym_trailing_return_type, + ACTIONS(11615), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6486), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6315), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127550] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8543), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6410), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127643] = 8, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [182473] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8237), 1, - anon_sym_LPAREN2, - STATE(4066), 1, - sym_new_declarator, - STATE(3943), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(10220), 1, + anon_sym_DASH_GT, + STATE(6265), 1, + sym_trailing_return_type, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [182537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9760), 1, + anon_sym_DASH_GT, + STATE(6209), 1, + sym_trailing_return_type, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(6080), 24, + ACTIONS(7627), 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, @@ -405562,484 +590728,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [127708] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_AMP_AMP, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6918), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127801] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_AMP_AMP, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6029), 1, - sym__scope_resolution, - STATE(6898), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127894] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6690), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127987] = 22, + [182601] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, - anon_sym_STAR, - ACTIONS(7364), 1, - anon_sym_AMP_AMP, - ACTIONS(7366), 1, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + STATE(6254), 1, + sym_trailing_return_type, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6686), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_LBRACK, - ACTIONS(5028), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5031), 7, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7544), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(5024), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [128141] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, anon_sym_STAR, - ACTIONS(7276), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7278), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6816), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [128234] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 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_GT2, + [182665] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7005), 1, + anon_sym___asm, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, + ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(7312), 1, + ACTIONS(11253), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(11255), 1, anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6407), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(4486), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8363), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7003), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406051,66 +590859,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128327] = 22, + [182745] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(7276), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(7278), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6814), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, + STATE(4601), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8875), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6174), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + ACTIONS(6459), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406122,145 +590926,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128420] = 30, + [182833] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5979), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8251), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8255), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8257), 1, + ACTIONS(6099), 1, anon_sym_AMP, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(3247), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(4601), 1, sym_parameter_list, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6452), 1, - sym__declarator, - STATE(6757), 1, + STATE(8877), 1, sym__abstract_declarator, - STATE(6950), 1, - sym_abstract_reference_declarator, - STATE(7680), 1, - sym_variadic_declarator, - STATE(7705), 1, - sym_variadic_reference_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8253), 2, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6497), 5, anon_sym_COMMA, anon_sym_RPAREN, - STATE(6989), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [128529] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6025), 1, - sym__scope_resolution, - STATE(6382), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3349), 13, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406272,20 +590993,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128622] = 7, + [182921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4107), 1, - sym_enumerator_list, - STATE(4232), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6225), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(9630), 1, + anon_sym_DASH_GT, + STATE(6194), 1, + sym_trailing_return_type, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406294,21 +591020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6227), 24, + ACTIONS(7544), 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, @@ -406321,22 +591036,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [128684] = 6, + [182985] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(4931), 12, + ACTIONS(9621), 1, + anon_sym_DASH_GT, + ACTIONS(9645), 1, + anon_sym_requires, + STATE(6215), 1, + sym_trailing_return_type, + ACTIONS(9642), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406345,11 +591075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4938), 31, + ACTIONS(7544), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -406361,8 +591090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -406375,70 +591102,109 @@ 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, + [183049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11597), 1, + anon_sym_AMP_AMP, + ACTIONS(11601), 1, + anon_sym_and, + ACTIONS(8939), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [128744] = 22, + anon_sym_requires, + ACTIONS(8941), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [183105] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, + ACTIONS(6997), 1, + anon_sym___asm, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(8215), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8266), 1, + ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(8268), 1, + ACTIONS(11253), 1, anon_sym_AMP_AMP, - ACTIONS(8270), 1, + ACTIONS(11255), 1, anon_sym_AMP, - STATE(3304), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4486), 1, + sym_parameter_list, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6639), 1, + STATE(8377), 1, sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4622), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 6, + ACTIONS(6995), 12, anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -406451,90 +591217,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128836] = 11, + [183185] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - ACTIONS(8274), 1, - sym_auto, - ACTIONS(8276), 1, - anon_sym_decltype, - STATE(1626), 1, - sym_template_argument_list, - STATE(4330), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4979), 1, - sym_decltype_auto, - ACTIONS(8272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, + ACTIONS(7001), 1, anon_sym___asm, - ACTIONS(4167), 29, - anon_sym_COMMA, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10922), 1, anon_sym_LPAREN2, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, anon_sym_STAR, + ACTIONS(11253), 1, anon_sym_AMP_AMP, + ACTIONS(11255), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4486), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8354), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6172), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6999), 12, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [128906] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4281), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8280), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -406547,84 +591280,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8278), 20, + [183265] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(11603), 1, + anon_sym_DASH_GT, + STATE(6224), 1, + sym_trailing_return_type, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6538), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [183329] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9751), 1, anon_sym_DASH_GT, + ACTIONS(9757), 1, + anon_sym_requires, + STATE(6219), 1, + sym_trailing_return_type, + ACTIONS(9754), 2, anon_sym_final, anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [128974] = 21, + [183393] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, + ACTIONS(7009), 1, + anon_sym___asm, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, + ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(8284), 1, + ACTIONS(11253), 1, anon_sym_AMP_AMP, - ACTIONS(8286), 1, + ACTIONS(11255), 1, anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4486), 1, + sym_parameter_list, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6736), 1, + STATE(8351), 1, sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4071), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4646), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5693), 7, + ACTIONS(7007), 12, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -406637,18 +591453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129064] = 6, + [183473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8237), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - STATE(3878), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6255), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406657,21 +591473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(6257), 25, + ACTIONS(9858), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -406682,73 +591488,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, - [129124] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [183532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(11623), 1, anon_sym_LPAREN2, - ACTIONS(5701), 1, - anon_sym___attribute, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, + ACTIONS(11625), 6, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8290), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(11621), 36, anon_sym_AMP, - STATE(3311), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [183585] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10012), 1, + anon_sym_const, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6659), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4070), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4582), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(6521), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -406761,18 +591585,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129216] = 6, + ACTIONS(6523), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [183646] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8237), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - STATE(3953), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406781,21 +591627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(6181), 25, + ACTIONS(9850), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -406806,33 +591642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, - [129276] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [183705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(8294), 1, - anon_sym_COLON, - STATE(1965), 1, - sym_attribute_specifier, - STATE(2395), 1, - sym__enum_base_clause, - STATE(2517), 1, - sym_enumerator_list, - ACTIONS(6565), 9, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406841,12 +591679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(6567), 30, + ACTIONS(9854), 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, @@ -406858,9 +591695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -406873,18 +591708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129344] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [183764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8237), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - STATE(3949), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6251), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9864), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406893,21 +591731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(6253), 25, + ACTIONS(9862), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -406918,74 +591746,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, - [129404] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [183823] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(5701), 1, - anon_sym___attribute, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8266), 1, + ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(8268), 1, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(8270), 1, + ACTIONS(11635), 1, anon_sym_AMP, - STATE(3304), 1, - sym_parameter_list, - STATE(4125), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(7436), 1, sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6726), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, + STATE(8539), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4058), 2, + STATE(6287), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4604), 2, + STATE(7351), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(2933), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8721), 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(2937), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406997,37 +591828,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129496] = 7, + [183908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - STATE(1626), 1, - sym_template_argument_list, - STATE(2492), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5082), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 12, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(6245), 27, + ACTIONS(9850), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -407035,10 +591861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -407051,25 +591879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [129558] = 10, + anon_sym_COLON_RBRACK, + [183967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(8294), 1, - anon_sym_COLON, - STATE(1946), 1, - sym_attribute_specifier, - STATE(2328), 1, - sym__enum_base_clause, - STATE(2418), 1, - sym_enumerator_list, - ACTIONS(6571), 9, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407078,12 +591900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(6573), 30, + ACTIONS(9854), 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, @@ -407095,9 +591917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -407110,202 +591931,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129626] = 22, + anon_sym_COLON_RBRACK, + [184026] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, - anon_sym_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_AMP, - STATE(3311), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6666), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4588), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129718] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, + ACTIONS(11423), 1, sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11637), 1, anon_sym_STAR, - ACTIONS(8284), 1, + ACTIONS(11639), 1, anon_sym_AMP_AMP, - ACTIONS(8286), 1, + ACTIONS(11641), 1, anon_sym_AMP, - STATE(3020), 1, + STATE(4923), 1, sym_parameter_list, - STATE(4125), 1, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6713), 1, + STATE(8907), 1, sym__abstract_declarator, - ACTIONS(8211), 2, + ACTIONS(11425), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, + STATE(6195), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4619), 2, + STATE(7335), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 7, + ACTIONS(6459), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129808] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8296), 1, - anon_sym_STAR, - ACTIONS(8298), 1, - anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6627), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4075), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4650), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5693), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -407318,18 +591998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129898] = 6, + [184113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8237), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - STATE(3900), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407338,21 +592018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6261), 25, + ACTIONS(9832), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -407363,28 +592034,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129958] = 7, + anon_sym_COLON_RBRACK, + [184172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(7808), 1, - anon_sym_decltype, - ACTIONS(8302), 1, - sym_auto, - STATE(4250), 1, - sym_decltype_auto, - ACTIONS(5661), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407393,21 +592073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5663), 25, + ACTIONS(7627), 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, @@ -407419,71 +592088,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130020] = 21, + [184231] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8296), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11637), 1, anon_sym_STAR, - ACTIONS(8298), 1, + ACTIONS(11639), 1, anon_sym_AMP_AMP, - ACTIONS(8300), 1, + ACTIONS(11641), 1, anon_sym_AMP, - STATE(3016), 1, + STATE(4923), 1, sym_parameter_list, - STATE(4125), 1, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6636), 1, + STATE(8891), 1, sym__abstract_declarator, - ACTIONS(8211), 2, + ACTIONS(11425), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3928), 2, + STATE(5846), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4513), 2, + STATE(7368), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + ACTIONS(6497), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -407496,20 +592168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130110] = 7, + [184318] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4097), 1, - sym_enumerator_list, - STATE(4253), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6173), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407518,22 +592188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6175), 24, + ACTIONS(9838), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -407544,159 +592204,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130172] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8308), 1, - anon_sym_STAR, - ACTIONS(8310), 1, - anon_sym_AMP_AMP, - ACTIONS(8312), 1, - anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6940), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4808), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130261] = 21, + anon_sym_COLON_RBRACK, + [184377] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8320), 1, - sym_identifier, - ACTIONS(8322), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(8326), 1, - anon_sym_AMP_AMP, - ACTIONS(8328), 1, - anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2892), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4705), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130350] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4273), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6292), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407705,22 +592240,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(9842), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [184436] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9848), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6294), 25, + ACTIONS(9846), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -407731,228 +592308,179 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130407] = 21, + anon_sym_COLON_RBRACK, + [184495] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11673), 1, + anon_sym_QMARK, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11643), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6153), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4791), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130496] = 21, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11647), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [184598] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8340), 1, + ACTIONS(5303), 1, anon_sym_STAR, - ACTIONS(8342), 1, + ACTIONS(5305), 1, anon_sym_AMP_AMP, - ACTIONS(8344), 1, + ACTIONS(5307), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, + ACTIONS(5311), 1, + anon_sym_LBRACK, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9072), 1, + anon_sym_RPAREN, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4601), 1, sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6775), 1, + STATE(8684), 1, + sym__declarator, + STATE(8876), 1, sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4828), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130585] = 21, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [184695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6147), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4080), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4788), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130674] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4249), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6313), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -407961,22 +592489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(6315), 25, + ACTIONS(9832), 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, @@ -407987,341 +592504,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_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, - [130731] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6134), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4793), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130820] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(8348), 1, - anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2210), 1, - sym__type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4786), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130909] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [184754] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8320), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, sym_identifier, - ACTIONS(8322), 1, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, + ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(11635), 1, anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2968), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4723), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130998] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, + STATE(7436), 1, sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6454), 1, - sym__type_declarator, - STATE(8351), 1, + STATE(8512), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4115), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4794), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131087] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(8348), 1, - anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2212), 1, - sym__type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4123), 2, + STATE(6207), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4831), 2, + STATE(7300), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -408335,313 +592586,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131176] = 21, + [184839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, - anon_sym_STAR, - ACTIONS(8310), 1, - anon_sym_AMP_AMP, - ACTIONS(8312), 1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6944), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4077), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4807), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131265] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(4931), 6, - anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(4938), 36, + anon_sym_DOT, + ACTIONS(9838), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [131324] = 3, + [184898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 13, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9842), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8169), 32, - anon_sym_AMP, - anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [131377] = 21, + [184957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, - anon_sym_STAR, - ACTIONS(8372), 1, - anon_sym_AMP_AMP, - ACTIONS(8374), 1, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2157), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9848), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3007), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8333), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4679), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131466] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8380), 1, - sym_identifier, - ACTIONS(8390), 1, - sym_primitive_type, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4258), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8387), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4124), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8385), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5122), 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9846), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5124), 11, - anon_sym_AMP, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(8382), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131535] = 5, + [185016] = 7, ACTIONS(3), 1, sym_comment, - STATE(4261), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6338), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -408649,23 +592761,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(6340), 25, + ACTIONS(9858), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -408676,69 +592778,74 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [131592] = 21, + anon_sym_COLON_RBRACK, + [185075] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8320), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, sym_identifier, - ACTIONS(8322), 1, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, + ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(11635), 1, anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2961), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(8955), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8531), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4078), 2, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6287), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4689), 2, + STATE(7295), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -408752,16 +592859,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131681] = 5, + [185160] = 10, ACTIONS(3), 1, sym_comment, - STATE(4259), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, anon_sym___attribute__, + ACTIONS(9588), 1, anon_sym___attribute, - ACTIONS(6276), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11685), 1, + anon_sym_COLON, + STATE(3974), 1, + sym_attribute_specifier, + STATE(4216), 1, + sym__enum_base_clause, + STATE(4280), 1, + sym_enumerator_list, + ACTIONS(7600), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -408770,21 +592885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6278), 25, + ACTIONS(7602), 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, @@ -408796,24 +592900,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [131738] = 5, + [185225] = 7, ACTIONS(3), 1, sym_comment, - STATE(4241), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6346), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -408822,21 +592937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6348), 25, + ACTIONS(8089), 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, @@ -408848,69 +592952,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [131795] = 21, + [185284] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11687), 1, + anon_sym_LT, + ACTIONS(11691), 1, + sym_auto, + ACTIONS(11693), 1, + anon_sym_decltype, + STATE(6613), 1, + sym_template_argument_list, + STATE(7043), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7532), 1, + sym_decltype_auto, + ACTIONS(5251), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(11689), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [185351] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8366), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, sym_identifier, - ACTIONS(8368), 1, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, + ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(8372), 1, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(8374), 1, + ACTIONS(11635), 1, anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3104), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(8333), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8531), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4105), 2, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6189), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4658), 2, + STATE(7295), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -408924,89 +593087,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131884] = 26, + [185436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(9645), 1, + anon_sym_requires, + ACTIONS(9642), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(7544), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5697), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5699), 1, - anon_sym_AMP, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(8251), 1, - anon_sym_DOT_DOT_DOT, - STATE(3081), 1, - sym_parameter_list, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6553), 1, - sym__declarator, - STATE(6763), 1, - sym__abstract_declarator, - STATE(7448), 1, - sym_variadic_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(8394), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(8392), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [131983] = 5, + [185495] = 7, ACTIONS(3), 1, sym_comment, - STATE(4265), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6342), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6538), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -409015,21 +593162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6344), 25, + ACTIONS(8543), 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, @@ -409041,137 +593177,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132040] = 21, + [185554] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(8398), 1, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(8400), 1, + ACTIONS(11701), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(6088), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8909), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4814), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132129] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8308), 1, - anon_sym_STAR, - ACTIONS(8310), 1, - anon_sym_AMP_AMP, - ACTIONS(8312), 1, - anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6940), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + ACTIONS(2939), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4104), 2, + STATE(6216), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4808), 2, + STATE(7374), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -409185,129 +593256,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132218] = 21, + [185639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8402), 1, - anon_sym_STAR, - ACTIONS(8404), 1, - anon_sym_AMP_AMP, - ACTIONS(8406), 1, + ACTIONS(9757), 1, + anon_sym_requires, + ACTIONS(9754), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6788), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4110), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4799), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 6, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7627), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132307] = 21, + [185698] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(8310), 1, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(8312), 1, + ACTIONS(11701), 1, anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(6985), 1, - sym__type_declarator, - STATE(8769), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8932), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3300), 2, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6287), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4809), 2, + STATE(7377), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -409321,61 +593373,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132396] = 21, + [185783] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(8372), 1, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(8374), 1, + ACTIONS(11701), 1, anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3005), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(8333), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8932), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3300), 2, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6218), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4675), 2, + STATE(7377), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -409389,61 +593438,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132485] = 21, + [185868] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(8372), 1, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(8374), 1, + ACTIONS(11701), 1, anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3005), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(3790), 1, + STATE(6570), 1, sym_ms_unaligned_ptr_modifier, - STATE(8333), 1, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8937), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, + ACTIONS(2935), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4092), 2, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6287), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4675), 2, + STATE(7286), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, + ACTIONS(2933), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8721), 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(2937), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -409457,39 +593503,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132574] = 5, + [185953] = 7, ACTIONS(3), 1, sym_comment, - STATE(4279), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6334), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10226), 1, + anon_sym_requires, + ACTIONS(10223), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 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(8089), 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, + [186012] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym___attribute__, + ACTIONS(9588), 1, + anon_sym___attribute, + ACTIONS(11685), 1, + anon_sym_COLON, + STATE(4024), 1, + sym_attribute_specifier, + STATE(4217), 1, + sym__enum_base_clause, + STATE(4284), 1, + sym_enumerator_list, + ACTIONS(7651), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(6336), 25, + ACTIONS(7653), 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, @@ -409501,48 +593596,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132631] = 11, + [186077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_attribute_specifier, - STATE(3093), 1, - sym_field_declaration_list, - STATE(7183), 1, - sym_virtual_specifier, - STATE(8138), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5682), 2, + ACTIONS(11618), 1, + anon_sym_requires, + ACTIONS(11615), 2, anon_sym_final, anon_sym_override, - ACTIONS(5674), 5, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6486), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 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(8543), 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, + [186136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11705), 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(5672), 30, + anon_sym_LBRACK_COLON, + ACTIONS(11703), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -409566,176 +593706,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, anon_sym_operator, - [132700] = 21, + [186187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8320), 1, - sym_identifier, - ACTIONS(8322), 1, + ACTIONS(11710), 1, + anon_sym_requires, + ACTIONS(11707), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6490), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 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(8561), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8324), 1, anon_sym_STAR, - ACTIONS(8326), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8328), 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_GT2, + [186246] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6539), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2892), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4086), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4705), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132789] = 21, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8561), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11451), 1, anon_sym_LBRACK, - ACTIONS(8402), 1, + STATE(1976), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9864), 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(9862), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, - ACTIONS(8404), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8406), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [186364] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(11713), 1, + anon_sym_COLON, + STATE(4204), 1, + sym__enum_base_clause, + STATE(4254), 1, + sym_enumerator_list, + STATE(4375), 1, + sym_attribute_specifier, + ACTIONS(7600), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6748), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4801), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 6, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7602), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, + [186429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7460), 1, anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132878] = 5, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6490), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 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(8561), 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, + [186488] = 7, ACTIONS(3), 1, sym_comment, - STATE(4285), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6354), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6604), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 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(6356), 25, + ACTIONS(7544), 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, @@ -409744,26 +594010,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [132935] = 5, + anon_sym_GT2, + [186547] = 7, ACTIONS(3), 1, sym_comment, - STATE(4277), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6272), 17, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409781,14 +594054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6274), 25, + ACTIONS(9832), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -409799,23 +594071,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, - [132992] = 5, + [186606] = 7, ACTIONS(3), 1, sym_comment, - STATE(4234), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6284), 17, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409833,14 +594106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6286), 25, + ACTIONS(9838), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -409851,23 +594123,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, - [133049] = 5, + [186665] = 7, ACTIONS(3), 1, sym_comment, - STATE(4224), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6288), 17, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409885,14 +594158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6290), 25, + ACTIONS(9842), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -409903,364 +594175,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, - [133106] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6470), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4795), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133195] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6470), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4119), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4795), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133284] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, - anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6083), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4128), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4785), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133373] = 21, + [186724] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(11451), 1, anon_sym_LBRACK, - ACTIONS(8340), 1, - anon_sym_STAR, - ACTIONS(8342), 1, - anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, + STATE(1970), 1, sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6054), 1, + STATE(5230), 1, sym__function_declarator_seq, - STATE(6765), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4081), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4825), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5693), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133462] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6461), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4796), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7808), 1, - anon_sym_decltype, - ACTIONS(8302), 1, - sym_auto, - STATE(4250), 1, - sym_decltype_auto, - ACTIONS(5661), 17, + ACTIONS(9848), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410278,14 +594210,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5663), 25, + ACTIONS(9846), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -410296,392 +594227,131 @@ 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, - [133610] = 21, + [186783] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, - anon_sym_AMP_AMP, - ACTIONS(8400), 1, + ACTIONS(9651), 1, + anon_sym_requires, + ACTIONS(9648), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6118), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4101), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4805), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133699] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4933), 1, - anon_sym_SEMI, - ACTIONS(4942), 1, - anon_sym_LBRACK, - ACTIONS(6762), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4050), 1, - sym_template_argument_list, - ACTIONS(4935), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4938), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(4931), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [133764] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(8348), 1, - anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2223), 1, - sym__type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4716), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133853] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8408), 1, - sym_identifier, - ACTIONS(8418), 1, - sym_primitive_type, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(4361), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8415), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8413), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5137), 9, + anon_sym_DOT, + ACTIONS(7544), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5139), 11, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8410), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133922] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186842] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8167), 13, + ACTIONS(9766), 1, + anon_sym_requires, + ACTIONS(9763), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6509), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 27, 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_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8165), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [133975] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(8348), 1, - anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2223), 1, - sym__type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4085), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4716), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134064] = 5, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186901] = 7, ACTIONS(3), 1, sym_comment, - STATE(4251), 1, - sym_attribute_specifier, - ACTIONS(6217), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6317), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10206), 1, + anon_sym_requires, + ACTIONS(10203), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6524), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -410690,21 +594360,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(8089), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186960] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11609), 1, + anon_sym_requires, + ACTIONS(11606), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6538), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(6319), 25, + ACTIONS(8543), 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, @@ -410716,165 +594427,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134121] = 21, + [187019] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6118), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4805), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134210] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10089), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6153), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8314), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4084), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4791), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7944), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134299] = 8, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 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, + [187118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(4166), 1, - sym_new_declarator, - STATE(3952), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6150), 10, + ACTIONS(11718), 1, + anon_sym_requires, + ACTIONS(11715), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6539), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -410883,12 +594536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(6152), 28, + ACTIONS(8561), 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, @@ -410899,9 +594551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -410914,119 +594565,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134361] = 3, + [187177] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 10, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(2571), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [134413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2735), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(10123), 2, + aux_sym_preproc_elif_token1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134465] = 8, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10125), 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, + [187276] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - STATE(4156), 1, - sym_new_declarator, - STATE(3943), 2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 10, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9344), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 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, + [187375] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7598), 1, + anon_sym_requires, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6389), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411035,12 +594732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(6080), 28, + ACTIONS(7544), 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, @@ -411051,9 +594747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -411066,155 +594761,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134527] = 3, + [187434] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2649), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10176), 2, + aux_sym_preproc_elif_token1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134579] = 21, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 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, + [187533] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(8426), 1, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11673), 1, + anon_sym_QMARK, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9436), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6825), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4912), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134667] = 3, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [187636] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 19, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___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(5840), 25, + ACTIONS(9284), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -411223,344 +594962,512 @@ 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, - [134719] = 3, + [187705] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3211), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134771] = 3, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 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, + [187800] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2751), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134823] = 3, + ACTIONS(9284), 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, + [187891] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2655), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134875] = 8, + ACTIONS(9284), 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, + [187980] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - STATE(4168), 1, - sym_new_declarator, - STATE(3926), 2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 10, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11663), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6156), 28, + ACTIONS(9282), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + sym_identifier, + ACTIONS(9284), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_QMARK, + [188065] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(11671), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 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(9284), 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, + [188148] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9282), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [134937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3196), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3191), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [134989] = 3, + ACTIONS(9284), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + [188227] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___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(5824), 25, + ACTIONS(9284), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, 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, - [135041] = 8, + [188302] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8032), 1, - anon_sym_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - STATE(4203), 1, - sym_new_declarator, - STATE(3989), 2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 10, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6113), 28, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9284), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -411569,344 +595476,423 @@ 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, - [135103] = 10, + [188373] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - STATE(4131), 1, - sym_alignas_qualifier, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4402), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4435), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8280), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8278), 18, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [135169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5878), 19, - aux_sym_preproc_elif_token1, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___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(5880), 25, + ACTIONS(9284), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, 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, - [135221] = 3, + [188446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(5116), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [135273] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6467), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 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(7627), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7944), 1, - sym_ms_restrict_modifier, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(3790), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6821), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7946), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7948), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4135), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4910), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5693), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3037), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [135413] = 3, + anon_sym_PERCENT, + anon_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, + [188505] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 19, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10184), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(10186), 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, + [188604] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11673), 1, + anon_sym_QMARK, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, anon_sym_or, + ACTIONS(11679), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(11681), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(11683), 1, anon_sym_not_eq, - anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10188), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(5860), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10190), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + [188707] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, anon_sym_AMP_AMP, + ACTIONS(11661), 1, anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11675), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10192), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(11671), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10194), 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, + [188806] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11653), 1, + anon_sym_SLASH, + ACTIONS(11655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11657), 1, + anon_sym_AMP_AMP, + ACTIONS(11661), 1, + anon_sym_CARET, + ACTIONS(11669), 1, + anon_sym_GT_EQ, + ACTIONS(11673), 1, anon_sym_QMARK, + ACTIONS(11675), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11677), 1, + anon_sym_or, + ACTIONS(11679), 1, + anon_sym_and, + ACTIONS(11681), 1, + anon_sym_xor, + ACTIONS(11683), 1, + anon_sym_not_eq, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135465] = 3, + ACTIONS(10196), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11649), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11651), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11659), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11663), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11671), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11667), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [188909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -411916,8 +595902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -411926,14 +595910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5927), 25, + ACTIONS(9850), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -411944,40 +595927,48 @@ 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, - [135517] = 6, + [188968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8235), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(5971), 12, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 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_GT_GT, - anon_sym___attribute, - 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(4187), 29, + sym_identifier, + ACTIONS(9854), 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, @@ -411985,29 +595976,27 @@ static const uint16_t ts_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_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [135575] = 3, + [189027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 19, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -412017,8 +596006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -412027,14 +596014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5892), 25, + ACTIONS(9858), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -412045,150 +596031,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, - [135627] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6929), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4995), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135712] = 20, + [189086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6894), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4153), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4939), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5661), 17, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9864), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -412206,14 +596066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5663), 25, + ACTIONS(9862), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -412224,39 +596083,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135850] = 6, + [189145] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(3949), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6251), 10, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6482), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8087), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6253), 29, + ACTIONS(8089), 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, @@ -412264,12 +596126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -412283,132 +596140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135907] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7009), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7011), 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, - [136006] = 20, + anon_sym_GT2, + [189204] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + ACTIONS(10012), 1, + anon_sym_const, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6901), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4220), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4931), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, + ACTIONS(6388), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10001), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412420,245 +596172,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136091] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4342), 1, - sym_alignas_qualifier, - ACTIONS(8475), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5099), 12, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - ACTIONS(5101), 13, + ACTIONS(6390), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(8472), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136150] = 29, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [189265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8480), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6986), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(7460), 1, + anon_sym_requires, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6331), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6486), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6988), 5, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8543), 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, - [136253] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8460), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - 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, - sym_identifier, - ACTIONS(6491), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - [136332] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [189324] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6210), 1, anon_sym_LBRACK, - ACTIONS(7986), 1, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(6335), 1, + sym_template_argument_list, + ACTIONS(6205), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6208), 3, anon_sym_STAR, - ACTIONS(7988), 1, anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6269), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4174), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 11, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, + ACTIONS(6201), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412670,116 +596293,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136411] = 15, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [189385] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(11713), 1, + anon_sym_COLON, + STATE(4180), 1, + sym__enum_base_clause, + STATE(4251), 1, + sym_enumerator_list, + STATE(4323), 1, + sym_attribute_specifier, + ACTIONS(7651), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 13, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6491), 13, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7653), 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_LBRACK, anon_sym_QMARK, - [136486] = 17, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [189450] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, + ACTIONS(11724), 1, + anon_sym_virtual, + ACTIONS(11730), 1, + anon_sym___attribute__, + ACTIONS(11733), 1, + anon_sym___attribute, + ACTIONS(11736), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11739), 1, + anon_sym___declspec, + ACTIONS(11742), 1, + anon_sym___inline, + ACTIONS(11745), 1, anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7938), 1, - anon_sym_STAR, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, + STATE(4238), 1, + sym_alignas_qualifier, + ACTIONS(9678), 2, anon_sym_AMP, - ACTIONS(7950), 1, anon_sym_LBRACK, - ACTIONS(8484), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6231), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, + ACTIONS(11748), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4178), 2, + ACTIONS(9680), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6268), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11727), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(11721), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412792,75 +596413,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136565] = 13, + [189524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(6307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 13, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6491), 16, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8727), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [136636] = 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [189578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(3878), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6255), 10, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412869,12 +596477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6257), 29, + sym_identifier, + ACTIONS(5253), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -412885,146 +596503,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [136693] = 10, + [189630] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7416), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8294), 1, + sym__declarator, + STATE(9749), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [189722] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7439), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8344), 1, + sym__declarator, + STATE(10110), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [189814] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7392), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8019), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9835), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [189906] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7444), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8251), 1, + sym__declarator, + STATE(9752), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [189998] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(8486), 1, - anon_sym_COLON, - STATE(2673), 1, - sym__enum_base_clause, - STATE(2699), 1, - sym_enumerator_list, - STATE(2790), 1, - sym_attribute_specifier, - ACTIONS(6565), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11757), 1, anon_sym_SLASH, + ACTIONS(11763), 1, anon_sym_PIPE, + ACTIONS(11767), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11773), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6567), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(11777), 1, + anon_sym_SEMI, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(11781), 1, anon_sym_QMARK, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11785), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11787), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + STATE(9106), 1, + aux_sym_field_declaration_repeat1, + STATE(10571), 1, + sym_attribute_specifier, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [136758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(3953), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 10, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6181), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11765), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11775), 2, 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, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [136815] = 10, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [190104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(8486), 1, - anon_sym_COLON, - STATE(2681), 1, - sym__enum_base_clause, - STATE(2723), 1, - sym_enumerator_list, - STATE(2810), 1, - sym_attribute_specifier, - ACTIONS(6571), 11, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(6307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413035,8 +596876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6573), 25, + ACTIONS(8481), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413048,7 +596890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -413061,263 +596902,67 @@ 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, - [136880] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8480), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6643), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6645), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [136983] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 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(6491), 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, - [137056] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6331), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4953), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137141] = 24, + anon_sym_requires, + [190158] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1924), 1, anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(5691), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(5695), 1, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(5697), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(5699), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - STATE(3081), 1, - sym_parameter_list, - STATE(5969), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7398), 1, + sym_ms_call_modifier, + STATE(7878), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6553), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8198), 1, sym__declarator, - STATE(6763), 1, - sym__abstract_declarator, - STATE(8390), 1, + STATE(9740), 1, + sym_init_declarator, + STATE(11190), 1, sym_ms_based_modifier, - ACTIONS(8394), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(9058), 3, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8392), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -413329,104 +596974,54 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [137234] = 17, + [190250] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - ACTIONS(8498), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11789), 1, + anon_sym_virtual, + ACTIONS(11793), 1, + anon_sym___declspec, + ACTIONS(11795), 1, + anon_sym___inline, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6175), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, + ACTIONS(9600), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137313] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(7336), 1, - sym_auto, - STATE(2563), 1, - sym_decltype_auto, - ACTIONS(5663), 5, + ACTIONS(9602), 3, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5661), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + STATE(6268), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11791), 8, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, + ACTIONS(10001), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -413438,186 +597033,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [137372] = 17, + [190324] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7986), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(7988), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7990), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6177), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4181), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137451] = 17, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7404), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(7984), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9749), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6184), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, + ACTIONS(11800), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4028), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 11, + ACTIONS(6527), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137530] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7938), 1, anon_sym_STAR, - ACTIONS(7940), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8498), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6254), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 11, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6525), 13, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, + ACTIONS(11797), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -413629,494 +597152,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137609] = 17, + [190474] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7938), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(7940), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6258), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4186), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137688] = 21, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7444), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8299), 1, + sym__declarator, + STATE(9752), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190566] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5301), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, + ACTIONS(5303), 1, anon_sym_STAR, - ACTIONS(5044), 1, + ACTIONS(5305), 1, anon_sym_AMP_AMP, - ACTIONS(5046), 1, + ACTIONS(5307), 1, anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(5311), 1, anon_sym_LBRACK, - STATE(3096), 1, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4601), 1, sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6863), 1, + STATE(8914), 1, + sym__declarator, + STATE(9179), 1, sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4199), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4935), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5693), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137775] = 17, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190660] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7986), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(7988), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7990), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6185), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137854] = 17, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7411), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(7991), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9582), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190752] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___asm, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - STATE(2933), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6186), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [137933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(5971), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(4187), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9818), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [137990] = 17, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7438), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8018), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(10012), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190844] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7938), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(7940), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(7950), 1, - anon_sym_LBRACK, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6263), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138069] = 27, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7419), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(7962), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9831), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [190936] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7013), 2, - aux_sym_preproc_elif_token1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7015), 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, - [138168] = 17, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7443), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8247), 1, + sym__declarator, + STATE(9805), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [191028] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + STATE(6570), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11806), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6287), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(11803), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6602), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7938), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7940), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6265), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6600), 24, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414128,177 +597606,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6673), 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(6675), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_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, - [138298] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7017), 2, - aux_sym_preproc_elif_token1, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7019), 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, - [138397] = 17, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [191086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11809), 1, + anon_sym_COLON, + STATE(4355), 1, + sym__enum_base_clause, + STATE(4592), 1, + sym_enumerator_list, + STATE(4746), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(7653), 5, anon_sym_LPAREN2, - ACTIONS(7938), 1, anon_sym_STAR, - ACTIONS(7940), 1, anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7950), 1, - anon_sym_LBRACK, - STATE(2866), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6266), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 11, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, + ACTIONS(7651), 30, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414310,168 +597661,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138476] = 19, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [191148] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8442), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8458), 1, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8462), 1, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(11781), 1, + anon_sym_QMARK, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + ACTIONS(11811), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9071), 1, + aux_sym_field_declaration_repeat1, + STATE(10520), 1, + sym_attribute_specifier, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, + ACTIONS(11759), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11765), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8456), 3, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 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(6491), 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, - [138559] = 17, + [191254] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7958), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(7960), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(7962), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___asm, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6216), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4195), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 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(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138638] = 8, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7394), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8292), 1, + sym__declarator, + STATE(10012), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [191346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4940), 1, + ACTIONS(6806), 6, + anon_sym_AMP, + anon_sym___attribute, + sym_ms_restrict_modifier, anon_sym_LBRACK, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(4324), 1, - sym_template_argument_list, - ACTIONS(4935), 2, + anon_sym_const, + anon_sym___asm, + ACTIONS(6808), 36, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4938), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(4931), 34, - anon_sym_AMP, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414485,183 +597848,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [138699] = 20, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [191396] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, + ACTIONS(1924), 1, anon_sym_operator, - ACTIONS(8430), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(8488), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(8490), 1, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(8492), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(8494), 1, + ACTIONS(9822), 1, anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6331), 1, - sym__field_declarator, - STATE(6546), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7407), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8249), 1, + sym__declarator, + STATE(9835), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - STATE(8639), 1, + [191488] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7444), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8152), 1, + sym__declarator, + STATE(9752), 1, + sym_init_declarator, + STATE(11190), 1, sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4953), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [138784] = 12, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [191580] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8440), 2, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 15, - aux_sym_preproc_elif_token1, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7425), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(7967), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9946), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [191672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(6307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 12, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6491), 16, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8514), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [138853] = 17, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [191726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, + ACTIONS(6720), 5, anon_sym_AMP, - ACTIONS(8498), 1, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym___asm, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6238), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 11, + ACTIONS(6722), 37, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414673,73 +598143,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138932] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, - anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___asm, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6239), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4204), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 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_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [139011] = 3, + [191776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(6301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414748,21 +598172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(5686), 26, + ACTIONS(8514), 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, @@ -414774,46 +598188,105 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139062] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [191830] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(4330), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 6, + ACTIONS(10012), 1, + anon_sym_const, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11789), 1, + anon_sym_virtual, + ACTIONS(11793), 1, + anon_sym___declspec, + ACTIONS(11795), 1, + anon_sym___inline, + STATE(4238), 1, + sym_alignas_qualifier, + ACTIONS(9654), 2, anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9656), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6268), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11791), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10001), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [191904] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11813), 1, + anon_sym___attribute__, + ACTIONS(11816), 1, anon_sym___attribute, - anon_sym_COLON, + STATE(6299), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6553), 4, + anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6245), 29, + ACTIONS(6555), 34, + 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_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -414832,65 +598305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [139123] = 21, + [191960] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11809), 1, + anon_sym_COLON, + STATE(4444), 1, + sym__enum_base_clause, + STATE(4573), 1, + sym_enumerator_list, + STATE(4866), 1, + sym_attribute_specifier, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7602), 5, anon_sym_LPAREN2, - ACTIONS(5042), 1, anon_sym_STAR, - ACTIONS(5044), 1, anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6868), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4942), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 4, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, + anon_sym_LBRACK_LBRACK, + ACTIONS(7600), 30, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414902,194 +598362,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139210] = 25, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [192022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(11819), 1, + anon_sym_LBRACK_LBRACK, + STATE(6301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, - sym_identifier, - ACTIONS(8456), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 8, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8700), 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_PIPE_PIPE, - anon_sym_QMARK, - [139305] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8460), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6489), 4, - aux_sym_preproc_elif_token1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_identifier, - ACTIONS(6491), 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, - [139396] = 17, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [192076] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, - anon_sym_AMP, - STATE(1683), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11793), 1, + anon_sym___declspec, + ACTIONS(11795), 1, + anon_sym___inline, + ACTIONS(11822), 1, + anon_sym_virtual, + STATE(4238), 1, sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6242), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(9707), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(9709), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6278), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 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(7288), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11791), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415102,107 +598474,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139475] = 6, + [192150] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(3900), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(43), 1, anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6261), 29, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11751), 1, 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, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(11779), 1, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(11781), 1, anon_sym_QMARK, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + ACTIONS(11824), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + STATE(9093), 1, + aux_sym_field_declaration_repeat1, + STATE(11202), 1, + sym_attribute_specifier, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11759), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(11761), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(11765), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [139532] = 17, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [192256] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(7958), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, anon_sym_STAR, - ACTIONS(7960), 1, + ACTIONS(11828), 1, anon_sym_AMP_AMP, - ACTIONS(7962), 1, + ACTIONS(11830), 1, anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___asm, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2903), 1, + STATE(4969), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6243), 1, + STATE(8964), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6306), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7440), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + ACTIONS(6459), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8504), 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(7288), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415215,56 +598614,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139611] = 17, + [192342] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(6791), 1, - anon_sym___asm, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, - anon_sym_AMP, - STATE(1683), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11793), 1, + anon_sym___declspec, + ACTIONS(11795), 1, + anon_sym___inline, + ACTIONS(11832), 1, + anon_sym_virtual, + STATE(4238), 1, sym_alignas_qualifier, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6245), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(9719), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + ACTIONS(9721), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6298), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 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(7288), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11791), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415277,60 +598673,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139690] = 21, + [192416] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, anon_sym_STAR, - ACTIONS(8510), 1, + ACTIONS(11828), 1, anon_sym_AMP_AMP, - ACTIONS(8512), 1, + ACTIONS(11830), 1, anon_sym_AMP, - ACTIONS(8516), 1, - sym_ms_restrict_modifier, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3544), 1, + STATE(4969), 1, sym_parameter_list, - STATE(5404), 1, + STATE(6080), 1, sym_ms_unaligned_ptr_modifier, - STATE(6273), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6896), 1, + STATE(8968), 1, sym__abstract_declarator, - ACTIONS(8518), 2, + ACTIONS(11425), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8520), 2, + ACTIONS(11427), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8522), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4208), 2, + STATE(5846), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4989), 2, + STATE(7441), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5693), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, + ACTIONS(6497), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415343,11 +598738,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139777] = 3, + [192502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11834), 1, + anon_sym_LBRACK_LBRACK, + STATE(6307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8700), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [192556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10249), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -415356,6 +598799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -415363,14 +598807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6699), 26, + sym_literal_suffix, + ACTIONS(10247), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -415382,70 +598823,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139828] = 21, + anon_sym_COLON_RBRACK, + [192606] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9818), 1, anon_sym_STAR, - ACTIONS(8510), 1, + ACTIONS(9820), 1, anon_sym_AMP_AMP, - ACTIONS(8512), 1, + ACTIONS(9822), 1, anon_sym_AMP, - ACTIONS(8516), 1, - sym_ms_restrict_modifier, - STATE(1731), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7429), 1, + sym_ms_call_modifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(7972), 1, + sym__declarator, + STATE(8089), 1, + sym_splice_specifier, + STATE(9805), 1, + sym_init_declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [192698] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11837), 1, + sym_identifier, + ACTIONS(11847), 1, + sym_primitive_type, + STATE(6485), 1, sym_alignas_qualifier, - STATE(3544), 1, - sym_parameter_list, - STATE(5404), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6908), 1, - sym__abstract_declarator, - ACTIONS(8518), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8520), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8522), 2, + STATE(6583), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11844), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4929), 2, + STATE(6316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5136), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(5707), 4, - anon_sym_COLON, + ACTIONS(11842), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6814), 7, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(6812), 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(11839), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415457,132 +598957,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139915] = 27, + [192764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, - anon_sym_AMP_AMP, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6956), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, + ACTIONS(6794), 5, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6958), 7, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6796), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [140014] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6379), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4193), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4961), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415594,130 +598992,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140099] = 25, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [192814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5997), 1, - anon_sym_STAR, - ACTIONS(5999), 1, - anon_sym_AMP_AMP, - ACTIONS(6001), 1, + ACTIONS(6900), 6, anon_sym_AMP, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - STATE(3247), 1, - sym_parameter_list, - STATE(6011), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6518), 1, - sym__declarator, - STATE(6757), 1, - sym__abstract_declarator, - STATE(8527), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8253), 2, + sym_ms_restrict_modifier, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6902), 36, anon_sym_COMMA, anon_sym_RPAREN, - STATE(6989), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140194] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, anon_sym_STAR, - ACTIONS(8492), 1, anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6342), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4974), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415729,152 +599042,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140279] = 22, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [192864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8450), 1, - anon_sym_CARET, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(6301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8452), 2, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 6, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(6491), 9, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8481), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [140368] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, anon_sym_AMP_AMP, - ACTIONS(8450), 1, anon_sym_CARET, - ACTIONS(8458), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8462), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, anon_sym_or, - ACTIONS(8466), 1, anon_sym_and, - ACTIONS(8468), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8470), 1, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8480), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6974), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6978), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [140471] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [192918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(6301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -415883,21 +599117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(6731), 26, + ACTIONS(8727), 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, @@ -415909,52 +599133,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140522] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [192972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8524), 1, - anon_sym_LT, - ACTIONS(8528), 1, - sym_auto, - ACTIONS(8530), 1, - anon_sym_decltype, - STATE(4430), 1, - sym_template_argument_list, - STATE(4663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5154), 1, - sym_decltype_auto, - ACTIONS(4159), 3, + ACTIONS(6786), 5, anon_sym_AMP, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 29, + anon_sym___asm, + ACTIONS(6788), 37, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_static, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -415969,496 +599186,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [140589] = 20, + [193022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11849), 1, + sym_identifier, + ACTIONS(11859), 1, + sym_primitive_type, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(6995), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11856), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11854), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6886), 7, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6884), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6389), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8458), 1, - anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8470), 1, - anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(11851), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8452), 2, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6489), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - sym_identifier, - ACTIONS(6491), 10, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5253), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [140674] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, - anon_sym_SLASH, - ACTIONS(8444), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, anon_sym_AMP_AMP, - ACTIONS(8450), 1, anon_sym_CARET, - ACTIONS(8458), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8462), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, - anon_sym_or, - ACTIONS(8466), 1, - anon_sym_and, - ACTIONS(8468), 1, - anon_sym_xor, - ACTIONS(8470), 1, - anon_sym_not_eq, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8480), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [193140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10249), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8532), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8456), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8534), 5, + anon_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(10247), 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, - [140777] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(3056), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6872), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4222), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4994), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5693), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140864] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, anon_sym_LPAREN2, - ACTIONS(8432), 1, anon_sym_STAR, - ACTIONS(8434), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6894), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4939), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3345), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [140949] = 27, + anon_sym_CARET, + anon_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, + [193190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11861), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11863), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8442), 1, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9864), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8444), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9862), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(8446), 1, anon_sym_AMP_AMP, - ACTIONS(8450), 1, anon_sym_CARET, - ACTIONS(8458), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8462), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8464), 1, anon_sym_or, - ACTIONS(8466), 1, anon_sym_and, - ACTIONS(8468), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8470), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6982), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8438), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8595), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8440), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8448), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8452), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8460), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8456), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 7, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8597), 29, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [141048] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(3056), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6878), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4958), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141135] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5111), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5109), 28, - anon_sym_AMP, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___attribute__, - anon_sym___attribute, anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [141189] = 3, + [193296] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9284), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [193365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8610), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5725), 25, + ACTIONS(8612), 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, @@ -416467,45 +599525,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141239] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [193414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8618), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5717), 25, + ACTIONS(8620), 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, @@ -416514,22 +599571,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141289] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [193463] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10194), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [193554] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9852), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -416538,22 +599677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5771), 25, + ACTIONS(9850), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -416564,19 +599691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141339] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193611] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9856), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -416585,22 +599727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5794), 25, + ACTIONS(9854), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -416611,19 +599741,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141389] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9860), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -416632,22 +599777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5663), 25, + ACTIONS(9858), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -416658,38 +599791,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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141439] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193725] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 5, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6505), 1, + sym_auto, + ACTIONS(6507), 1, + anon_sym_decltype, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + STATE(3014), 1, + sym_decltype_auto, + STATE(3464), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5251), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(6405), 37, - anon_sym_DOT_DOT_DOT, + ACTIONS(6503), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416703,121 +599858,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_requires, + [193790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11897), 2, + anon_sym_final, + anon_sym_override, + STATE(6329), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 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(8757), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [141489] = 31, + [193843] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(8551), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8571), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - anon_sym_QMARK, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7041), 1, - aux_sym_field_declaration_repeat1, - STATE(8196), 1, - sym_attribute_specifier, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [141595] = 4, + ACTIONS(10125), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [193934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7454), 2, + anon_sym_final, + anon_sym_override, + STATE(6329), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 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(4161), 24, + ACTIONS(8776), 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, @@ -416826,185 +600008,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_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, - [141647] = 3, + anon_sym_GT2, + anon_sym_requires, + [193987] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 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(5872), 25, + ACTIONS(9284), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_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_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, - [141697] = 4, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_COLON_RBRACK, + [194066] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8583), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8585), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8581), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [141749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5719), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9284), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5721), 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_COLON_RBRACK, + [194143] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, - [141799] = 9, + anon_sym_COLON_RBRACK, + [194234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8587), 1, - anon_sym_COLON, - STATE(2594), 1, - sym_attribute_specifier, - STATE(2842), 1, - sym__enum_base_clause, - STATE(3051), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6567), 5, + ACTIONS(6235), 1, + anon_sym_LBRACK, + ACTIONS(6230), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6233), 4, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6565), 30, + anon_sym_COLON_COLON, + ACTIONS(6226), 34, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym_static, @@ -417030,54 +600257,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_operator, - [141861] = 15, + [194287] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8589), 1, - anon_sym_virtual, - ACTIONS(8593), 1, - anon_sym___declspec, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(6799), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6801), 3, + ACTIONS(10922), 1, anon_sym_LPAREN2, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11381), 1, anon_sym_STAR, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - STATE(4284), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(11385), 1, + anon_sym_AMP, + STATE(4238), 1, + sym_alignas_qualifier, + STATE(4509), 1, + sym_parameter_list, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8591), 1, + sym__abstract_declarator, + ACTIONS(10014), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6370), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8591), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7288), 12, + aux_sym__type_definition_type_repeat1, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6999), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417090,212 +600319,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141935] = 3, + [194362] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5836), 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(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_or, + anon_sym_COLON_RBRACK, + [194451] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5780), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5782), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_COLON_RBRACK, + [194524] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 11, + 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [142035] = 15, + anon_sym_or, + anon_sym_and, + anon_sym_COLON_RBRACK, + [194611] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8593), 1, - anon_sym___declspec, - ACTIONS(8595), 1, - anon_sym_virtual, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(6733), 2, - anon_sym_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6735), 3, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7391), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8760), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [194700] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(4236), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8591), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [142109] = 21, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_COLON_RBRACK, + [194785] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8597), 1, + ACTIONS(11381), 1, anon_sym_STAR, - ACTIONS(8599), 1, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(8601), 1, + ACTIONS(11385), 1, anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4509), 1, + sym_parameter_list, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6984), 1, + STATE(8630), 1, sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4244), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5004), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5693), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, + ACTIONS(6995), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417308,34 +600697,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [142195] = 3, + [194860] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_COLON_RBRACK, + [194943] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7395), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8806), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [195032] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10198), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [195127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8606), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5749), 25, + ACTIONS(8608), 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, @@ -417344,45 +600922,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142245] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8651), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5816), 25, + ACTIONS(8653), 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, @@ -417391,45 +600968,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142295] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8655), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5820), 25, + ACTIONS(8657), 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, @@ -417438,110 +601014,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142345] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, - anon_sym_STAR, - ACTIONS(8599), 1, - anon_sym_AMP_AMP, - ACTIONS(8601), 1, - anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6949), 1, - sym__abstract_declarator, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5005), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [142431] = 3, + anon_sym_requires, + [195274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2803), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5856), 25, + ACTIONS(2801), 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, @@ -417550,113 +601060,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142481] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195323] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 6, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8603), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [142531] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, + ACTIONS(7784), 1, anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(11902), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(11904), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(11906), 1, anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___asm, - STATE(1683), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3082), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6302), 1, + STATE(9101), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(6459), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4254), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6371), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7487), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8482), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417669,34 +601143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [142609] = 3, + [195408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8622), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5864), 25, + ACTIONS(8624), 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, @@ -417705,45 +601170,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142659] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8614), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5812), 25, + ACTIONS(8616), 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, @@ -417752,45 +601216,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142709] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8665), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5767), 25, + ACTIONS(8667), 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, @@ -417799,147 +601262,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142759] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195555] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7406), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8801), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [195644] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5828), 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(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, - [142809] = 11, + anon_sym_COLON_RBRACK, + [195735] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8607), 1, - sym_identifier, - ACTIONS(8617), 1, - sym_primitive_type, - STATE(4417), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4563), 1, - sym_alignas_qualifier, - ACTIONS(8614), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4272), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8612), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5124), 7, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(5122), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, anon_sym_STAR, + ACTIONS(9896), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8609), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [142875] = 3, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7414), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8819), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [195824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8516), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5832), 25, + ACTIONS(8518), 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, @@ -417948,177 +601507,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142925] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8026), 1, - anon_sym_STAR, - ACTIONS(8028), 1, - anon_sym_AMP_AMP, - ACTIONS(8030), 1, - anon_sym_AMP, - ACTIONS(8498), 1, - anon_sym___asm, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3082), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6308), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143003] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8589), 1, - anon_sym_virtual, - ACTIONS(8593), 1, - anon_sym___declspec, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(6805), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6807), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(4284), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8591), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143077] = 4, + [195873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6247), 10, + ACTIONS(8629), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(6249), 30, + ACTIONS(8631), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -418127,211 +601568,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143129] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195922] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(11381), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(11385), 1, anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___asm, - STATE(1683), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3082), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6309), 1, + STATE(8583), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4267), 2, + STATE(6342), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143207] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5109), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5212), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6991), 10, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5215), 26, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [143263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 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(5904), 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, - [143313] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - anon_sym___inline, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8593), 1, - anon_sym___declspec, - ACTIONS(8621), 1, - anon_sym_virtual, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(6793), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6795), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(4255), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8591), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418344,149 +601631,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 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(5884), 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, - [143437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5886), 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(5888), 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, - [143487] = 17, + [195997] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(5709), 1, - anon_sym___asm, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(11381), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(11385), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3082), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6310), 1, + STATE(8616), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 10, - anon_sym_COMMA, + ACTIONS(6497), 10, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418499,34 +601690,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143565] = 3, + [196072] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 17, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7420), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8803), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [196161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5713), 25, + ACTIONS(8631), 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, @@ -418535,160 +601783,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_LBRACE, + 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, - [143615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 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(5900), 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, - [143665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 17, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196210] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 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(5908), 25, + ACTIONS(9284), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_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_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, - [143715] = 17, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [196281] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(11381), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(11385), 1, anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___asm, - STATE(1683), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3082), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6312), 1, + STATE(8547), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8504), 10, - anon_sym_COMMA, + ACTIONS(7007), 10, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418701,34 +601918,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143793] = 3, + [196356] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9834), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9832), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196413] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, anon_sym_DOT, - sym_identifier, - ACTIONS(5713), 25, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [196504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8631), 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, @@ -418737,46 +602062,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143843] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9840), 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(5713), 25, + ACTIONS(9838), 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, @@ -418784,66 +602114,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, 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, - [143893] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196610] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7428), 1, + sym_ms_call_modifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [196699] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(10012), 1, anon_sym_const, - ACTIONS(6791), 1, - anon_sym___asm, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(11381), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(11385), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(4238), 1, sym_alignas_qualifier, - STATE(3082), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6313), 1, + STATE(8620), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6789), 10, - anon_sym_COMMA, + ACTIONS(7003), 10, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(10001), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418856,99 +602256,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143971] = 5, + [196774] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8623), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6199), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6201), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11423), 1, + sym_ms_restrict_modifier, + ACTIONS(11429), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [144025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8625), 1, - sym_identifier, - ACTIONS(8635), 1, - sym_primitive_type, - STATE(4563), 1, + ACTIONS(11902), 1, + anon_sym_STAR, + ACTIONS(11904), 1, + anon_sym_AMP_AMP, + ACTIONS(11906), 1, + anon_sym_AMP, + STATE(2592), 1, sym_alignas_qualifier, - STATE(4670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8632), 2, + STATE(5441), 1, + sym_parameter_list, + STATE(6080), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9075), 1, + sym__abstract_declarator, + ACTIONS(6497), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4312), 2, + ACTIONS(11425), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11427), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5846), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7452), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8630), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5139), 7, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(5137), 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(8627), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -418960,35 +602320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [144091] = 3, + [196859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9844), 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(5923), 25, + ACTIONS(9842), 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, @@ -418996,122 +602353,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, 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, - [144141] = 31, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196916] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(8551), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8573), 1, - anon_sym_QMARK, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8637), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7062), 1, - aux_sym_field_declaration_repeat1, - STATE(8255), 1, - sym_attribute_specifier, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144247] = 3, + ACTIONS(9342), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [197007] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 18, - aux_sym_preproc_elif_token1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7449), 1, + sym_ms_call_modifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8939), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [197096] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9848), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(7039), 24, + ACTIONS(9846), 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, @@ -419119,120 +602536,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144297] = 31, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [197153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(6082), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(8551), 1, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9852), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8557), 1, anon_sym_PIPE, - ACTIONS(8561), 1, anon_sym_AMP, - ACTIONS(8567), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8573), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9850), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_QMARK, - ACTIONS(8575), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8579), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8639), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7009), 1, - aux_sym_field_declaration_repeat1, - STATE(8623), 1, - sym_attribute_specifier, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [197210] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9856), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 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(9854), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8555), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8559), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8565), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [144403] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [197267] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9860), 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(5868), 25, + ACTIONS(9858), 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, @@ -419240,98 +602686,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [144453] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [197324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8587), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(2876), 1, - sym__enum_base_clause, - STATE(3028), 1, - sym_enumerator_list, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6573), 5, + ACTIONS(11908), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6571), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [144515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2153), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9864), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9862), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [197381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11912), 2, + anon_sym_final, + anon_sym_override, + STATE(6380), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8755), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - sym_identifier, - ACTIONS(5844), 25, + ACTIONS(8757), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -419343,19 +602786,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144565] = 3, + anon_sym_requires, + [197434] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9834), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419364,22 +602821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5717), 25, + ACTIONS(9832), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -419390,229 +602835,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144615] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8643), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8641), 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, - [144675] = 3, + [197491] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6441), 37, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10190), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [144725] = 8, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [197586] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8280), 4, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8278), 20, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9840), 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(9838), 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___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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [144785] = 15, + [197643] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, - anon_sym_const, - ACTIONS(7865), 1, - anon_sym___inline, - ACTIONS(7868), 1, - anon_sym___attribute, - ACTIONS(8648), 1, - anon_sym_virtual, - ACTIONS(8654), 1, - anon_sym___attribute__, - ACTIONS(8657), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8660), 1, - anon_sym___declspec, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(6764), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(8663), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6766), 3, + ACTIONS(11861), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(4284), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8651), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(8645), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [144859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9844), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419621,22 +602990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5848), 25, + ACTIONS(9842), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -419647,19 +603004,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144909] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [197700] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2154), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9848), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419667,23 +603039,11 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DOT, - sym_identifier, - ACTIONS(5852), 25, + ACTIONS(9846), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -419694,42 +603054,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144959] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [197757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2795), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(5896), 25, + ACTIONS(2793), 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, @@ -419738,192 +603097,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6472), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6474), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [145059] = 21, + [197806] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8666), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8668), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7018), 1, - sym__abstract_declarator, - ACTIONS(5693), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4300), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5023), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145144] = 17, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9438), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [197901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(6791), 1, + ACTIONS(8599), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7936), 1, + anon_sym_DOT, + ACTIONS(8601), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, anon_sym_STAR, - ACTIONS(8083), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6474), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145221] = 3, + [197950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 16, + ACTIONS(7596), 2, + anon_sym_final, + anon_sym_override, + STATE(6380), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419932,18 +603249,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_literal_suffix, - ACTIONS(7039), 25, + ACTIONS(8776), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -419955,73 +603264,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145270] = 24, + anon_sym_requires, + [198003] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, + ACTIONS(1924), 1, anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(3047), 1, anon_sym_LPAREN2, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(5997), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, anon_sym_STAR, - ACTIONS(5999), 1, + ACTIONS(9896), 1, anon_sym_AMP_AMP, - ACTIONS(6001), 1, + ACTIONS(9898), 1, anon_sym_AMP, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - STATE(3247), 1, - sym_parameter_list, - STATE(6011), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7427), 1, + sym_ms_call_modifier, + STATE(7870), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6683), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8783), 1, sym__declarator, - STATE(6913), 1, - sym__abstract_declarator, - STATE(8527), 1, + STATE(10563), 1, sym_ms_based_modifier, - ACTIONS(8392), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8394), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(9058), 3, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8469), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -420033,103 +603345,88 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [145361] = 5, + [198092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8672), 1, - anon_sym_AMP_AMP, - ACTIONS(8674), 1, - anon_sym_and, - ACTIONS(6247), 16, - aux_sym_preproc_elif_token1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6249), 23, + ACTIONS(9284), 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_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, - [145414] = 17, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [198159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11687), 1, + anon_sym_LT, + STATE(6613), 1, + sym_template_argument_list, + ACTIONS(6201), 4, anon_sym_AMP, - ACTIONS(8498), 1, anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6409), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 9, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6208), 34, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -420141,10 +603438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145491] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 12, + ACTIONS(8633), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -420157,7 +603465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5208), 29, + ACTIONS(8635), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420187,26 +603495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [145540] = 3, + [198263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 12, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(6610), 1, + sym_new_declarator, + STATE(5871), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(5164), 29, + ACTIONS(8806), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -420214,9 +603529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420229,58 +603545,53 @@ 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, - [145589] = 17, + [198321] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(7005), 1, + anon_sym___attribute, + ACTIONS(11415), 1, anon_sym_STAR, - ACTIONS(8083), 1, + ACTIONS(11417), 1, anon_sym_AMP_AMP, - ACTIONS(8085), 1, + ACTIONS(11419), 1, anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6422), 1, + STATE(8691), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4310), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8500), 9, + ACTIONS(7003), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -420293,75 +603604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145666] = 6, + [198397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8680), 1, - anon_sym___attribute__, - ACTIONS(8683), 1, - anon_sym___attribute, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8678), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(8676), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11449), 1, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [145721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 12, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9844), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5204), 29, + ACTIONS(9842), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -420369,9 +603636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420384,104 +603653,54 @@ 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, - [145770] = 21, + [198453] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, - sym_ms_restrict_modifier, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8666), 1, - anon_sym_STAR, - ACTIONS(8668), 1, - anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4125), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7012), 1, - sym__abstract_declarator, - ACTIONS(5707), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8211), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8213), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3928), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5037), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 12, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, - anon_sym_DOT, - ACTIONS(1936), 29, + ACTIONS(9284), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420490,80 +603709,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [145904] = 3, + [198523] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11757), 1, anon_sym_SLASH, + ACTIONS(11763), 1, anon_sym_PIPE, + ACTIONS(11767), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11773), 1, anon_sym_GT_EQ, + ACTIONS(11781), 1, + anon_sym_QMARK, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + ACTIONS(11917), 1, + anon_sym___attribute, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11759), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11765), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5204), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(11915), 3, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [198619] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10176), 1, + anon_sym___attribute, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11765), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, + [198711] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(9282), 1, + anon_sym___attribute, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11785), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11787), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [145953] = 3, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11765), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [198799] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 12, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(6600), 1, + sym_new_declarator, + STATE(5875), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(5184), 29, + ACTIONS(8868), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -420571,9 +603944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420586,30 +603960,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [146002] = 3, + [198857] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 12, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9848), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5200), 29, + ACTIONS(9846), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -420617,9 +603992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420632,76 +604009,96 @@ 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, - [146051] = 3, + [198913] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11767), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11773), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11787), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 2, + anon_sym_PIPE, anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5192), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11765), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 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_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [146100] = 3, + [198997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 12, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(6449), 1, + sym_new_declarator, + STATE(5854), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8903), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(5176), 29, + ACTIONS(8905), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -420709,9 +604106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420724,59 +604122,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [199055] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(11415), 1, + anon_sym_STAR, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8678), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [146149] = 17, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199131] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(7009), 1, + anon_sym___attribute, + ACTIONS(11415), 1, anon_sym_STAR, - ACTIONS(8083), 1, + ACTIONS(11417), 1, anon_sym_AMP_AMP, - ACTIONS(8085), 1, + ACTIONS(11419), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6447), 1, + STATE(8679), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 9, + ACTIONS(7007), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199207] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11787), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 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, + [199289] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + STATE(7043), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7017), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(11689), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7019), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -420788,10 +604345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146226] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 12, + ACTIONS(5229), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -420802,9 +604366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5188), 29, + ACTIONS(5231), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420816,8 +604380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420834,19 +604397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [146275] = 7, + [199395] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8672), 1, - anon_sym_AMP_AMP, - ACTIONS(8674), 1, - anon_sym_and, - ACTIONS(8686), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8688), 1, - anon_sym_or, - ACTIONS(6199), 15, - aux_sym_preproc_elif_token1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + ACTIONS(11921), 1, + anon_sym_LBRACK, + STATE(6557), 1, + sym_new_declarator, + STATE(7157), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -420855,112 +604420,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6201), 22, + ACTIONS(8868), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [146332] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6450), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146409] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [199453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 12, + ACTIONS(5233), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1940), 29, + ACTIONS(5235), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420971,9 +604472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -420988,189 +604491,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [146458] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4563), 1, - sym_alignas_qualifier, - ACTIONS(8693), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4312), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5101), 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(5099), 13, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(8690), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146515] = 24, + [199501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(5705), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(5955), 1, - anon_sym_STAR, - ACTIONS(5957), 1, - anon_sym_AMP_AMP, - ACTIONS(5959), 1, - anon_sym_AMP, - STATE(3333), 1, - sym_parameter_list, - STATE(5969), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6553), 1, - sym__declarator, - STATE(6922), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(8392), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8394), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [146606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 15, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, anon_sym_PIPE, anon_sym_AMP, + anon_sym___attribute, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4161), 25, + ACTIONS(9284), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___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, - [146657] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [199579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 12, + ACTIONS(5229), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5172), 29, + ACTIONS(5231), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -421181,9 +604577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -421198,74 +604596,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [146706] = 3, + [199627] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 12, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 3, anon_sym_PIPE, anon_sym_AMP, + anon_sym___attribute, + ACTIONS(11771), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(5204), 29, + ACTIONS(9284), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [146755] = 3, + [199703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 12, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + ACTIONS(11921), 1, + anon_sym_LBRACK, + STATE(6540), 1, + sym_new_declarator, + STATE(7122), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(5160), 29, + ACTIONS(8843), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -421273,9 +604690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -421288,58 +604706,120 @@ 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, - [146804] = 17, + [199761] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8081), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(10184), 1, + anon_sym___attribute, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, + anon_sym_GT_EQ, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, anon_sym_STAR, - ACTIONS(8083), 1, + anon_sym_PERCENT, + ACTIONS(11759), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - ACTIONS(8484), 1, + anon_sym_and, + ACTIONS(11765), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11769), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10186), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199853] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3021), 1, + ACTIONS(11415), 1, + anon_sym_STAR, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6471), 1, + STATE(8667), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4294), 2, + STATE(6438), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8482), 9, + ACTIONS(6991), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -421352,26 +604832,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146881] = 3, + [199929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 12, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9840), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5180), 29, + ACTIONS(9838), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -421379,9 +604864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -421394,14 +604881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [146930] = 3, + [199985] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 12, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, + anon_sym_LPAREN2, + ACTIONS(11925), 1, + anon_sym_LBRACK, + STATE(6470), 1, + sym_new_declarator, + STATE(7134), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8866), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -421412,12 +604906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(5196), 29, + ACTIONS(8868), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -421426,8 +604918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -421440,117 +604930,61 @@ 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, - [146979] = 6, + [200043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8524), 1, - anon_sym_LT, - STATE(4430), 1, - sym_template_argument_list, - ACTIONS(4931), 4, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + ACTIONS(11921), 1, + anon_sym_LBRACK, + STATE(6577), 1, + sym_new_declarator, + STATE(7199), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8804), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4938), 34, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8806), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147034] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(5070), 1, - sym_auto, - ACTIONS(5072), 1, - anon_sym_decltype, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - STATE(1947), 1, - sym_decltype_auto, - STATE(2216), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4159), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5066), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [147099] = 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 12, + ACTIONS(5233), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -421561,9 +604995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5168), 29, + ACTIONS(5235), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -421575,8 +605009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -421593,983 +605026,702 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [147148] = 5, + [200149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5033), 1, - anon_sym_LBRACK, - ACTIONS(5028), 2, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5031), 4, + ACTIONS(11147), 1, + anon_sym_LBRACK, + STATE(6556), 1, + sym_new_declarator, + STATE(5914), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 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(8843), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5024), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [147201] = 24, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200207] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(5979), 1, - anon_sym_STAR, - ACTIONS(5981), 1, - anon_sym_AMP_AMP, - ACTIONS(5983), 1, - anon_sym_AMP, - STATE(3247), 1, - sym_parameter_list, - STATE(5969), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(11927), 1, + sym_identifier, + ACTIONS(11929), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11933), 1, + anon_sym_EQ, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(7769), 1, + sym_ms_declspec_modifier, + STATE(8579), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6553), 1, - sym__declarator, - STATE(6913), 1, - sym__abstract_declarator, - STATE(8390), 1, - sym_ms_based_modifier, - ACTIONS(8392), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8394), 2, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(9058), 3, - sym_decltype, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11931), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3712), 2, sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7705), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7320), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147292] = 25, + sym_splice_expression, + [200309] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6982), 1, + ACTIONS(10188), 1, anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11781), 1, + anon_sym_QMARK, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(10190), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [147384] = 29, + [200405] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(9436), 1, + anon_sym___attribute, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8698), 1, - anon_sym_COMMA, - ACTIONS(8704), 1, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8724), 1, - anon_sym_SEMI, - ACTIONS(8726), 1, - anon_sym_RBRACE, - ACTIONS(8728), 1, + ACTIONS(11781), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7577), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(9438), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [147484] = 12, + [200501] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10089), 1, anon_sym___attribute, - ACTIONS(6491), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [147550] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 6, + ACTIONS(10091), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [147640] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6058), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [147692] = 24, + anon_sym_QMARK, + [200593] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11935), 1, + anon_sym_COMMA, + ACTIONS(11937), 1, + anon_sym_SEMI, + ACTIONS(11939), 1, + anon_sym_RBRACE, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9927), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8555), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 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, - [147782] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6048), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [147834] = 23, + [200693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11451), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9852), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8557), 1, anon_sym_PIPE, - ACTIONS(8561), 1, anon_sym_AMP, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, - anon_sym_bitor, - ACTIONS(8579), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8559), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8565), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 9, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9850), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - [147922] = 21, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200749] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11449), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11451), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - ACTIONS(8561), 1, - anon_sym_AMP, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8579), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9856), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8559), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8565), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 10, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9854), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - [148006] = 10, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8738), 1, - anon_sym_COLON, - STATE(2594), 1, - sym_attribute_specifier, - STATE(3837), 1, - sym__enum_base_clause, - STATE(3959), 1, - sym_enumerator_list, - ACTIONS(6565), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6567), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11449), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [148068] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8738), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(3838), 1, - sym__enum_base_clause, - STATE(3963), 1, - sym_enumerator_list, - ACTIONS(6571), 4, - anon_sym_AMP, + ACTIONS(11451), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6573), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [148130] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 5, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9860), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6052), 30, + anon_sym_DOT, + ACTIONS(9858), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [148182] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - ACTIONS(8561), 1, - anon_sym_AMP, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8575), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8579), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200861] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9864), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8565), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 12, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9862), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [148264] = 18, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200917] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8551), 1, + ACTIONS(10192), 1, + anon_sym___attribute, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8567), 1, + ACTIONS(11763), 1, + anon_sym_PIPE, + ACTIONS(11767), 1, + anon_sym_AMP, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11785), 1, + anon_sym_bitor, + ACTIONS(11787), 1, + anon_sym_bitand, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8569), 2, + ACTIONS(11759), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11761), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11765), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6489), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8563), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 13, + ACTIONS(10194), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [148342] = 17, + [201009] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8551), 1, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 3, + ACTIONS(9282), 6, anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8565), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 16, + anon_sym___attribute, + ACTIONS(9284), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -422577,154 +605729,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___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, - [148418] = 15, + [201077] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11925), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(6481), 1, + sym_new_declarator, + STATE(7128), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + sym_initializer_list, + ACTIONS(8804), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6491), 17, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8806), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + 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, - [148490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2561), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(2571), 27, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148538] = 13, + [201135] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11921), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - STATE(2437), 1, + STATE(6588), 1, + sym_new_declarator, + STATE(7233), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + sym_initializer_list, + ACTIONS(8903), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6491), 20, + anon_sym_DOT, + ACTIONS(8905), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -422733,8 +605829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -422743,356 +605838,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [148606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5118), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5116), 27, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [148654] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4384), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6022), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [148706] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 1, - sym_identifier, - ACTIONS(5759), 1, - sym_primitive_type, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(4674), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8747), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4362), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8745), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5124), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5122), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(8742), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [148770] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [201193] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11781), 1, + anon_sym_QMARK, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11943), 1, + anon_sym___attribute, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7015), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [148860] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6491), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(11941), 3, 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, - [148930] = 26, + [201289] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(9282), 1, + anon_sym___attribute, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6978), 4, + ACTIONS(9284), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym_RBRACE, - [149024] = 8, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + [201379] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6997), 1, + anon_sym___attribute, + ACTIONS(11415), 1, + anon_sym_STAR, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8651), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6995), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201455] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, + ACTIONS(4562), 1, anon_sym_LBRACE, - ACTIONS(8750), 1, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(8752), 1, + ACTIONS(11925), 1, anon_sym_LBRACK, - STATE(4487), 1, + STATE(6595), 1, sym_new_declarator, - STATE(4863), 2, + STATE(7244), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6150), 11, + ACTIONS(8903), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -423104,7 +606062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6152), 23, + ACTIONS(8905), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -423128,268 +606086,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [149082] = 24, + [201513] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(10123), 1, + anon_sym___attribute, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 6, + ACTIONS(10125), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - [149172] = 21, + [201605] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5693), 1, - anon_sym_COLON, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8516), 1, - sym_ms_restrict_modifier, - ACTIONS(8754), 1, + ACTIONS(7001), 1, + anon_sym___attribute, + ACTIONS(11415), 1, anon_sym_STAR, - ACTIONS(8756), 1, + ACTIONS(11417), 1, anon_sym_AMP_AMP, - ACTIONS(8758), 1, + ACTIONS(11419), 1, anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(5404), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7128), 1, - sym__abstract_declarator, - ACTIONS(8518), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8520), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4385), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5117), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149256] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8193), 1, - anon_sym_STAR, - ACTIONS(8195), 1, - anon_sym_AMP_AMP, - ACTIONS(8197), 1, - anon_sym_AMP, - STATE(2975), 1, + ACTIONS(11431), 1, + anon_sym_const, + STATE(4823), 1, sym_parameter_list, - STATE(4131), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6054), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6485), 1, + STATE(8656), 1, sym__abstract_declarator, - ACTIONS(7078), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4380), 2, + STATE(6395), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8482), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149330] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4376), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8760), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5661), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 30, + ACTIONS(6999), 8, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [149382] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4388), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8762), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6068), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -423401,681 +606212,854 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [149434] = 24, + [201681] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(9344), 1, + anon_sym___attribute, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11787), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 6, + ACTIONS(9342), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - [149524] = 23, + [201773] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11925), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, + STATE(6599), 1, + sym_new_declarator, + STATE(7254), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8841), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8843), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8708), 2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [201831] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11449), 1, + anon_sym_LPAREN2, + ACTIONS(11451), 1, + anon_sym_LBRACK, + STATE(2152), 1, + sym_parameter_list, + STATE(5230), 1, + sym__function_declarator_seq, + ACTIONS(9834), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 8, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9832), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - [149612] = 27, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [201887] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(10196), 1, + anon_sym___attribute, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8551), 1, + ACTIONS(11757), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(8573), 1, + ACTIONS(11781), 1, anon_sym_QMARK, - ACTIONS(8575), 1, + ACTIONS(11783), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11785), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11787), 1, anon_sym_bitand, - ACTIONS(8766), 1, - anon_sym___attribute, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11753), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11755), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11759), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11761), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11765), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(10198), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11771), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [201983] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11755), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8764), 3, + anon_sym___attribute, + ACTIONS(9284), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, - [149708] = 16, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [202049] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8193), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11757), 1, + anon_sym_SLASH, + ACTIONS(11783), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11753), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11755), 2, anon_sym_STAR, - ACTIONS(8195), 1, - anon_sym_AMP_AMP, - ACTIONS(8197), 1, + anon_sym_PERCENT, + ACTIONS(11775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 6, + anon_sym_PIPE, anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6558), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(9284), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149782] = 26, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [202121] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(11983), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(9596), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [202218] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5857), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(8951), 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(8953), 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, - ACTIONS(8716), 3, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [202271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8606), 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(8608), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [202318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9093), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6645), 4, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9095), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [149876] = 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [202365] = 3, ACTIONS(3), 1, sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 5, + ACTIONS(8622), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6086), 30, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8624), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [149928] = 11, + [202412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - sym_identifier, - ACTIONS(5804), 1, - sym_primitive_type, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(2225), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8771), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5802), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5139), 6, + ACTIONS(8614), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8616), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5137), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(8768), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [149992] = 17, + [202459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(9097), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8718), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 17, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9099), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, - [150068] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202506] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7013), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(11987), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9772), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [150160] = 25, + [202603] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6956), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11989), 1, + anon_sym_COMMA, + ACTIONS(11991), 1, + anon_sym_RBRACE, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9773), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [150252] = 14, + [202700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9101), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9103), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -424084,90 +607068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [150322] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6974), 1, - anon_sym___attribute, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8551), 1, - anon_sym_SLASH, - ACTIONS(8557), 1, - anon_sym_PIPE, - ACTIONS(8561), 1, - anon_sym_AMP, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8573), 1, - anon_sym_QMARK, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, - anon_sym_bitor, - ACTIONS(8579), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8549), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8553), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8555), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8559), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6978), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8563), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8565), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [150418] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - ACTIONS(8752), 1, - anon_sym_LBRACK, - STATE(4457), 1, - sym_new_declarator, - STATE(4848), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6111), 11, + ACTIONS(9109), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -424179,9 +607091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6113), 23, + ACTIONS(9111), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -424190,6 +607103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -424202,218 +607116,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [150476] = 25, + anon_sym_requires, + [202794] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(7017), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8567), 1, - anon_sym_GT_EQ, - ACTIONS(8575), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + ACTIONS(11993), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(9778), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [150568] = 15, + [202891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(8665), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 18, + anon_sym_DOT, + ACTIONS(8667), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [150640] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(4663), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6243), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6245), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [150698] = 13, + [202938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(8516), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 21, + anon_sym_DOT, + ACTIONS(8518), 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, @@ -424422,8 +607260,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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -424432,274 +607270,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [150766] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8193), 1, - anon_sym_STAR, - ACTIONS(8195), 1, - anon_sym_AMP_AMP, - ACTIONS(8197), 1, - anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6530), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [150840] = 22, + [202985] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11997), 1, + anon_sym_COMMA, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(12023), 1, + anon_sym_RBRACK, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(10010), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8712), 2, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 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, - [150926] = 21, + [203082] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(8704), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8714), 1, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8734), 1, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12037), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9633), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8712), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 11, - 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, - anon_sym_bitor, - [151010] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6030), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6028), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151062] = 12, + [203179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 7, + ACTIONS(9093), 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(6491), 21, + anon_sym_DOT, + ACTIONS(9095), 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, @@ -424708,8 +607442,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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -424718,676 +607452,557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [151128] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [203226] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6986), 1, - anon_sym___attribute, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8551), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8573), 1, - anon_sym_QMARK, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12039), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9802), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6988), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151224] = 20, + [203323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(8704), 1, + ACTIONS(9097), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8714), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9099), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8730), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8734), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [203370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 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(8089), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9101), 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(6491), 13, + anon_sym_DOT, + ACTIONS(9103), 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_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [151306] = 16, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [203464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(9109), 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(9111), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8193), 1, anon_sym_STAR, - ACTIONS(8195), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8197), 1, - anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6531), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [151380] = 18, + [203511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(7241), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + sym_initializer_list, + ACTIONS(9086), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 14, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9088), 24, 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_SEMI, - anon_sym_RBRACE, + 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, - [151458] = 24, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [203564] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8704), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12041), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9870), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [151548] = 16, + [203661] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8193), 1, - anon_sym_STAR, - ACTIONS(8195), 1, - anon_sym_AMP_AMP, - ACTIONS(8197), 1, - anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6535), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4359), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 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, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [151622] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 5, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6158), 30, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12043), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151674] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5707), 1, - anon_sym_COLON, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8516), 1, - sym_ms_restrict_modifier, - ACTIONS(8754), 1, + ACTIONS(12045), 1, + anon_sym_RBRACE, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + STATE(9871), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8756), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(5404), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7099), 1, - sym__abstract_declarator, - ACTIONS(8518), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8520), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5110), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5136), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [151758] = 5, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203758] = 28, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8774), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6095), 30, - anon_sym_COMMA, + ACTIONS(10582), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151810] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4337), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8776), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11099), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6101), 30, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11947), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151862] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4223), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 5, + ACTIONS(11953), 1, + anon_sym_SLASH, + ACTIONS(11959), 1, + anon_sym_PIPE, + ACTIONS(11963), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6064), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151914] = 16, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, + anon_sym_bitand, + ACTIONS(12047), 1, + anon_sym_GT2, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + STATE(9877), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11949), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11951), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [203855] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8193), 1, + ACTIONS(11443), 1, anon_sym_STAR, - ACTIONS(8195), 1, + ACTIONS(11445), 1, anon_sym_AMP_AMP, - ACTIONS(8197), 1, + ACTIONS(11447), 1, anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(4131), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6054), 1, + STATE(4554), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6554), 1, + STATE(8732), 1, sym__abstract_declarator, - ACTIONS(7078), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4028), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 9, + ACTIONS(6497), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7063), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -425400,101 +608015,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [151988] = 25, + [203928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7009), 1, - anon_sym___attribute, - ACTIONS(8551), 1, + ACTIONS(8999), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8557), 1, anon_sym_PIPE, - ACTIONS(8561), 1, anon_sym_AMP, - ACTIONS(8567), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8575), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, - anon_sym_bitor, - ACTIONS(8579), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8549), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9001), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8555), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8559), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8563), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8565), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7011), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - [152080] = 5, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203975] = 5, ACTIONS(3), 1, sym_comment, - STATE(4376), 1, + STATE(6476), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8760), 4, + ACTIONS(12049), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5858), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5860), 30, + ACTIONS(6629), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6627), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -425508,27 +608099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [152132] = 8, + [204026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - ACTIONS(8752), 1, - anon_sym_LBRACK, - STATE(4418), 1, - sym_new_declarator, - STATE(4857), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6078), 11, + ACTIONS(9003), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -425540,9 +608120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6080), 23, + ACTIONS(9005), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -425551,6 +608132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -425563,22 +608145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [152190] = 8, + anon_sym_requires, + [204073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - ACTIONS(8752), 1, - anon_sym_LBRACK, - STATE(4414), 1, - sym_new_declarator, - STATE(4873), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6154), 11, + ACTIONS(9011), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -425590,9 +608164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6156), 23, + ACTIONS(9013), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -425601,6 +608176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -425613,637 +608189,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152248] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8498), 1, - anon_sym___attribute, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6501), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152324] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6502), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4397), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152400] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6506), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152476] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6503), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152552] = 17, + [204120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, + ACTIONS(9015), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6507), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 8, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9017), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152628] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, anon_sym_LPAREN2, - ACTIONS(8203), 1, anon_sym_STAR, - ACTIONS(8205), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(8484), 1, - anon_sym___attribute, - STATE(3083), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6500), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4394), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [152704] = 27, + [204167] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8551), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8557), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8561), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8567), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8573), 1, - anon_sym_QMARK, - ACTIONS(8575), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8579), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8780), 1, - anon_sym___attribute, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12052), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9906), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8555), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8559), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8569), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8563), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8565), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8778), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [152800] = 26, + [204264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + STATE(7258), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9119), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [204317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8541), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 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(8543), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6988), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [152894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - STATE(4131), 1, - sym_alignas_qualifier, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8643), 4, - anon_sym_AMP, - anon_sym___attribute, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8641), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [152952] = 27, + [204364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym___attribute, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8551), 1, + ACTIONS(12054), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8939), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8557), 1, anon_sym_PIPE, - ACTIONS(8561), 1, anon_sym_AMP, - ACTIONS(8567), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8573), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8941), 26, + 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, - ACTIONS(8575), 1, anon_sym_LT_EQ_GT, - ACTIONS(8577), 1, + anon_sym_or, anon_sym_bitor, - ACTIONS(8579), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8547), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8549), 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(9031), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8553), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8555), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8559), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8569), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6645), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8563), 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(8565), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153048] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - STATE(4131), 1, - sym_alignas_qualifier, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8280), 4, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(2758), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7063), 12, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2768), 28, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -426255,622 +608522,730 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8278), 18, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [204507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8559), 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(8561), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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_try, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [153106] = 28, + [204554] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8808), 1, - anon_sym_RBRACK, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12056), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7558), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9999), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153203] = 16, + [204651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8955), 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(8957), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8245), 1, anon_sym_STAR, - ACTIONS(8247), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8249), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3014), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6571), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4454), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + 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_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [153276] = 28, + [204698] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8856), 1, + ACTIONS(12058), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7733), 1, + STATE(10003), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153373] = 27, + [204795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(9037), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9039), 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(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8860), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8595), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8597), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8858), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [204889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 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, - [153468] = 28, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7544), 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, + [204936] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(8864), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(12060), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7559), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, + STATE(10050), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153565] = 28, + [205033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6718), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6389), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6716), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [205080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12054), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12062), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8959), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8961), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8862), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [205131] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8866), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(11953), 1, + anon_sym_SLASH, + ACTIONS(11959), 1, + anon_sym_PIPE, + ACTIONS(11963), 1, + anon_sym_AMP, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, + anon_sym_bitand, + ACTIONS(12064), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7429), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, + STATE(5761), 1, + sym_subscript_argument_list, + STATE(9545), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153662] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8245), 1, - anon_sym_STAR, - ACTIONS(8247), 1, - anon_sym_AMP_AMP, - ACTIONS(8249), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3014), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6570), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 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(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [153735] = 4, + [205228] = 3, ACTIONS(3), 1, sym_comment, - STATE(1258), 1, - sym__fold_operator, - ACTIONS(8870), 13, + ACTIONS(8992), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(8868), 25, + anon_sym_DOT, + ACTIONS(8994), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_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_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_STAR, - [153784] = 28, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [205275] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(12066), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7446), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, + STATE(9563), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153881] = 6, + [205372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - STATE(4885), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6179), 11, + ACTIONS(2803), 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(6181), 24, + ACTIONS(2801), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -426878,8 +609253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -426892,217 +609270,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [153934] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [205419] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8876), 1, + ACTIONS(12068), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7482), 1, + STATE(9579), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154031] = 28, + [205516] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8878), 1, + ACTIONS(12070), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7475), 1, + STATE(9586), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154128] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5109), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8880), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5212), 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(5215), 22, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154181] = 6, + [205613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - STATE(4859), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6251), 11, + ACTIONS(2795), 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(6253), 24, + ACTIONS(2793), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -427110,8 +609435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -427124,1072 +609452,965 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [154234] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [205660] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(8883), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(12072), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7644), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, + STATE(9606), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154331] = 28, + [205757] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8885), 1, - anon_sym_COMMA, - ACTIONS(8887), 1, - anon_sym_RBRACE, - STATE(2437), 1, + ACTIONS(12074), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7645), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + STATE(9617), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154428] = 28, + [205854] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8889), 1, - anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RBRACE, - STATE(2437), 1, + ACTIONS(12076), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7683), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + STATE(9627), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154525] = 28, + [205951] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8893), 1, + ACTIONS(12078), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7650), 1, + STATE(9635), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154622] = 28, + [206048] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8724), 1, - anon_sym_SEMI, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8895), 1, - anon_sym_COMMA, - ACTIONS(8898), 1, - anon_sym_RBRACE, - STATE(2437), 1, + ACTIONS(12080), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(9640), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154719] = 28, + [206145] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8900), 1, + ACTIONS(12082), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7539), 1, + STATE(9650), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154816] = 28, + [206242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(8087), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(8862), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8089), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8902), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7534), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154913] = 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_requires, + [206289] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8904), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12084), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7693), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9890), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155010] = 28, + [206386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8788), 1, + ACTIONS(10249), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8794), 1, anon_sym_PIPE, - ACTIONS(8798), 1, anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8816), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8906), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7573), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(10247), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155107] = 28, + 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, + [206433] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8908), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12086), 1, anon_sym_COMMA, - ACTIONS(8911), 1, - anon_sym_SEMI, - ACTIONS(8913), 1, + ACTIONS(12088), 1, anon_sym_RBRACE, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9892), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155204] = 3, + [206530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 4, + ACTIONS(8999), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5010), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9001), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [155251] = 3, + [206577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 4, + ACTIONS(9003), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5031), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9005), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [155298] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8245), 1, - anon_sym_STAR, - ACTIONS(8247), 1, - anon_sym_AMP_AMP, - ACTIONS(8249), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3014), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6615), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4411), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [155371] = 28, + [206624] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8915), 1, + ACTIONS(12090), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7575), 1, + STATE(9917), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155468] = 28, + [206721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(9011), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9013), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(8917), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7676), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [206768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9017), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155565] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [206815] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(6753), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6758), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8911), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(8716), 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(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155660] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [206870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8919), 1, - anon_sym___attribute__, - ACTIONS(8922), 1, - anon_sym___attribute, - STATE(4435), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8678), 4, + ACTIONS(6844), 4, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(8676), 31, + ACTIONS(6846), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -428204,60 +610425,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [155713] = 16, + [206917] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11997), 1, + anon_sym_COMMA, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12092), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + STATE(10061), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [207014] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(11443), 1, anon_sym_STAR, - ACTIONS(8247), 1, + ACTIONS(11445), 1, anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(11447), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3014), 1, + STATE(4554), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6568), 1, + STATE(8729), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6789), 8, + ACTIONS(7003), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -428270,34 +610558,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [155786] = 7, + [207087] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(8276), 1, - anon_sym_decltype, - ACTIONS(8925), 1, - sym_auto, - STATE(4926), 1, - sym_decltype_auto, - ACTIONS(5661), 6, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12094), 1, + anon_sym_RPAREN, + ACTIONS(12096), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [207184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 29, + ACTIONS(6272), 35, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -428312,159 +610662,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [155841] = 28, + [207231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(8541), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8726), 1, - anon_sym_RBRACE, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(8927), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8543), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7577), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155938] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8929), 1, - anon_sym_RPAREN, - ACTIONS(8931), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6242), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6244), 35, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156035] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [207325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 4, + ACTIONS(6246), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5022), 35, + ACTIONS(6248), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -428500,47 +610803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [156082] = 11, + [207372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 1, - sym_identifier, - ACTIONS(6311), 1, - sym_primitive_type, - STATE(2397), 1, - sym_alignas_qualifier, - STATE(4899), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8938), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4460), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8936), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5124), 6, + ACTIONS(6250), 4, anon_sym_AMP, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5122), 8, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6252), 35, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(8933), 13, - anon_sym___extension__, - anon_sym_const, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428552,15 +610836,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156145] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [207419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 4, + ACTIONS(6254), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(4998), 35, + ACTIONS(6256), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -428589,28 +610884,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [207466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9007), 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(9009), 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_try, anon_sym_requires, - [156192] = 6, + [207513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8524), 1, - anon_sym_LT, - STATE(4430), 1, - sym_template_argument_list, - ACTIONS(5971), 4, + ACTIONS(6258), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(4187), 32, + ACTIONS(6260), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -428620,6 +610953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -428638,22 +610972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_or, anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [156245] = 4, + [207560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 4, + ACTIONS(6262), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5629), 34, + ACTIONS(6264), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -428663,6 +610997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -428688,236 +611023,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [156294] = 28, + [207607] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, + anon_sym_bitand, + ACTIONS(12098), 1, + anon_sym_GT2, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + STATE(9645), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11949), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11951), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [207704] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8862), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, anon_sym_COMMA, - ACTIONS(8941), 1, + ACTIONS(12100), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7690), 1, + STATE(3786), 1, + sym_argument_list, + STATE(9604), 1, aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156391] = 28, + [207801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(9029), 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(9031), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7684), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(7698), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(5253), 21, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [207897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8832), 1, anon_sym_PIPE, - ACTIONS(8836), 1, anon_sym_AMP, - ACTIONS(8842), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8994), 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, - ACTIONS(8844), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8852), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8943), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207944] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12102), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7720), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(10026), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156488] = 28, + [208041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(8559), 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(8818), 1, + ACTIONS(8561), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [208088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9037), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8832), 1, anon_sym_PIPE, - ACTIONS(8836), 1, anon_sym_AMP, - ACTIONS(8842), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9039), 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, - ACTIONS(8844), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8852), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8945), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - STATE(7437), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [208135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + STATE(7198), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9107), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8854), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [208188] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1437), 1, + sym__fold_operator, + ACTIONS(12106), 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(12104), 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, - ACTIONS(8840), 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [208237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9078), 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, - [156585] = 4, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9080), 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, + [208284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5627), 4, + ACTIONS(9082), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5629), 34, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9084), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [208331] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11443), 1, + anon_sym_STAR, + ACTIONS(11445), 1, + anon_sym_AMP_AMP, + ACTIONS(11447), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(4554), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8711), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7007), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428929,52 +611688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [156634] = 12, + [208404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(8947), 1, - anon_sym_LBRACE, - STATE(4855), 1, - sym_field_declaration_list, - STATE(4951), 1, - sym_attribute_specifier, - STATE(7329), 1, - sym_virtual_specifier, - STATE(8102), 1, - sym_base_class_clause, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5672), 4, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11687), 1, + anon_sym_LT, + STATE(6613), 1, + sym_template_argument_list, + ACTIONS(7031), 4, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5674), 25, + ACTIONS(5272), 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_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -428989,124 +611728,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [156699] = 28, + [208457] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(8949), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7764), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [156796] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, + ACTIONS(7784), 1, anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(11443), 1, anon_sym_STAR, - ACTIONS(8247), 1, + ACTIONS(11445), 1, anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(11447), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3014), 1, + STATE(4554), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6565), 1, + STATE(8709), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 8, + ACTIONS(6995), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -429119,189 +611792,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156869] = 28, + [208530] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8951), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12108), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7617), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(10041), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156966] = 28, + [208627] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8953), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12110), 1, + anon_sym_COMMA, + ACTIONS(12112), 1, + anon_sym_RBRACE, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7772), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(10046), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [157063] = 16, + [208724] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(8790), 1, + sym_identifier, + ACTIONS(8800), 1, + sym_primitive_type, + STATE(3679), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6485), 1, + sym_alignas_qualifier, + ACTIONS(11844), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6586), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8795), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6814), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6812), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(11839), 13, + anon_sym___extension__, anon_sym_const, - ACTIONS(7936), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [208787] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(11443), 1, anon_sym_STAR, - ACTIONS(8247), 1, + ACTIONS(11445), 1, anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(11447), 1, anon_sym_AMP, - STATE(1683), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3014), 1, + STATE(4554), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6574), 1, + STATE(8731), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6521), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8504), 8, + ACTIONS(6999), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -429314,169 +612039,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [157136] = 28, + [208860] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8872), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(8955), 1, + ACTIONS(12114), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7394), 1, + STATE(3786), 1, + sym_argument_list, + STATE(9817), 1, aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157233] = 28, + [208957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6696), 1, + sym_auto, + ACTIONS(6698), 1, + anon_sym_decltype, + ACTIONS(12116), 1, + anon_sym_LT, + STATE(3914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3968), 1, + sym_template_argument_list, + STATE(4306), 1, + sym_decltype_auto, + ACTIONS(5251), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6688), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5258), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [209020] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8957), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, - anon_sym_RBRACE, - STATE(2437), 1, + ACTIONS(12118), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7396), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + STATE(10057), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [157330] = 6, + [209117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(8750), 1, - anon_sym_LPAREN2, - STATE(4872), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6259), 11, + ACTIONS(8599), 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(6261), 24, + ACTIONS(8601), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -429484,8 +612253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -429498,82 +612270,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157383] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(7546), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(7544), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(8961), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - STATE(7678), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, + anon_sym_LPAREN2, + STATE(5870), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9105), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9107), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157480] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [209264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 17, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + STATE(7232), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9086), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -429582,19 +612383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4161), 21, + ACTIONS(9088), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -429605,1336 +612397,1092 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157529] = 11, + [209317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 1, - sym_identifier, - ACTIONS(6325), 1, - sym_primitive_type, - STATE(2397), 1, - sym_alignas_qualifier, - STATE(2511), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8966), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2232), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6323), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5139), 6, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5137), 8, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(7627), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(8963), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [157592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5002), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [157639] = 28, + [209364] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8872), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(8969), 1, + ACTIONS(12120), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7459), 1, + STATE(3786), 1, + sym_argument_list, + STATE(9950), 1, aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157736] = 11, + [209461] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(5090), 1, - sym_auto, - ACTIONS(5092), 1, - anon_sym_decltype, - ACTIONS(8971), 1, - anon_sym_LT, - STATE(2492), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2590), 1, - sym_template_argument_list, - STATE(2825), 1, - sym_decltype_auto, - ACTIONS(4159), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5082), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4167), 25, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12122), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12124), 1, + anon_sym_RBRACE, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + STATE(9953), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [157799] = 28, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [209558] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8973), 1, + ACTIONS(12126), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7402), 1, + STATE(9964), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [157896] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6584), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4467), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [157971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5006), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [158018] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - ACTIONS(8498), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6595), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [158093] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6602), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4470), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [158168] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5709), 1, - anon_sym___attribute, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6603), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [158243] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6605), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [158318] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6616), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [158393] = 28, + [209655] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8975), 1, - anon_sym_COMMA, - ACTIONS(8977), 1, - anon_sym_RBRACE, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7470), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12128), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158490] = 28, + [209750] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8979), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12130), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7721), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9569), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158587] = 3, + [209847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 4, + ACTIONS(8618), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5014), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8620), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [158634] = 28, + [209894] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8981), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12132), 1, + anon_sym_COMMA, + ACTIONS(12134), 1, + anon_sym_RBRACE, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7662), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9834), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [158731] = 28, + [209991] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8872), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(8983), 1, + ACTIONS(12136), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7508), 1, + STATE(3786), 1, + sym_argument_list, + STATE(9655), 1, aux_sym_argument_list_repeat1, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158828] = 28, + [210088] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8862), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(8985), 1, + ACTIONS(12138), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7762), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9770), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158925] = 28, + [210185] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8987), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12140), 1, anon_sym_COMMA, - ACTIONS(8989), 1, + ACTIONS(12142), 1, anon_sym_RBRACE, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7510), 1, + STATE(3786), 1, + sym_argument_list, + STATE(9656), 1, aux_sym_initializer_list_repeat1, - ACTIONS(6395), 2, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159022] = 28, + [210282] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + STATE(7256), 1, + sym_ref_qualifier, + STATE(7917), 1, + sym_trailing_return_type, + STATE(7957), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7546), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [210371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6902), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6900), 29, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [210418] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(8991), 1, + ACTIONS(12153), 1, anon_sym_GT2, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - STATE(7700), 1, + STATE(9661), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [159119] = 3, + [210515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 4, + ACTIONS(8651), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5635), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8653), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [159166] = 28, + [210562] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12155), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + STATE(9978), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, anon_sym_LT_LT, - ACTIONS(8844), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [210659] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11997), 1, + anon_sym_COMMA, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(8993), 1, - anon_sym_GT2, - STATE(3694), 1, + ACTIONS(12157), 1, + anon_sym_RBRACK, + STATE(5762), 1, sym_argument_list, - STATE(3696), 1, + STATE(5765), 1, sym_subscript_argument_list, - STATE(7715), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(9550), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(12017), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [159263] = 3, + [210756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 18, + ACTIONS(8655), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -430943,20 +613491,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8657), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(7039), 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210803] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(1954), 1, + anon_sym_enum, + ACTIONS(1956), 1, + anon_sym_class, + ACTIONS(1958), 1, + anon_sym_struct, + ACTIONS(1960), 1, + anon_sym_union, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5313), 1, + anon_sym_typename, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(11929), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11933), 1, + anon_sym_EQ, + ACTIONS(12159), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4520), 1, + sym_template_type, + STATE(4521), 1, + sym_qualified_type_identifier, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + ACTIONS(11931), 2, anon_sym_COMMA, + anon_sym_GT2, + STATE(4790), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(11919), 1, anon_sym_LPAREN2, + STATE(7255), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 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(9119), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -430967,178 +613625,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159310] = 28, + [210953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, - anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(12161), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8939), 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(8818), 1, + ACTIONS(8941), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8826), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9007), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8832), 1, anon_sym_PIPE, - ACTIONS(8836), 1, anon_sym_AMP, - ACTIONS(8842), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9009), 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, - ACTIONS(8844), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8848), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8852), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8995), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - STATE(7503), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8633), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8635), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8854), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12161), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12163), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8959), 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(8961), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8840), 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8610), 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, - [159407] = 28, + anon_sym_DOT, + ACTIONS(8612), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211194] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6627), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(12049), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7081), 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(7084), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [211247] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8997), 1, - anon_sym_GT2, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12165), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - STATE(7515), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + STATE(10030), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [211344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9078), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9080), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(8830), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8854), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8840), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159504] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211391] = 11, ACTIONS(3), 1, sym_comment, - STATE(4485), 1, + ACTIONS(8911), 1, + sym_identifier, + ACTIONS(8921), 1, + sym_primitive_type, + STATE(3926), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8880), 4, + STATE(6485), 1, + sym_alignas_qualifier, + ACTIONS(11856), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8916), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5111), 10, + ACTIONS(6886), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6884), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(5109), 24, - anon_sym_AMP, + ACTIONS(11851), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -431151,81 +614074,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159555] = 3, + [211454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 4, + ACTIONS(9082), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5018), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9084), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [159602] = 6, + [211501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, + ACTIONS(4127), 1, anon_sym_LBRACE, - ACTIONS(8750), 1, + ACTIONS(11919), 1, anon_sym_LPAREN2, - STATE(4883), 2, + STATE(7263), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6255), 11, + ACTIONS(8951), 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(6257), 24, + ACTIONS(8953), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -431235,8 +614148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -431249,208 +614165,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159655] = 26, + [211554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(8935), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8794), 1, anon_sym_PIPE, - ACTIONS(8798), 1, anon_sym_AMP, - ACTIONS(8804), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8937), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8810), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8812), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8816), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8935), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 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(8937), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8800), 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(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159747] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [211648] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12170), 1, + anon_sym_requires, + STATE(7249), 1, + sym_ref_qualifier, + STATE(7926), 1, + sym_trailing_return_type, + STATE(7948), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12167), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7542), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [211737] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(12173), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9695), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [159833] = 22, + [211834] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12177), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9011), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9015), 3, + ACTIONS(12175), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [159917] = 6, + [211929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, - anon_sym_LPAREN2, - ACTIONS(5935), 1, - anon_sym_LBRACK, - ACTIONS(4169), 9, + ACTIONS(8629), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431460,9 +614468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4161), 26, + ACTIONS(8631), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -431473,8 +614482,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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -431487,541 +614496,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159969] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9029), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(7282), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + sym_initializer_list, + ACTIONS(8951), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160063] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, anon_sym_SLASH, - ACTIONS(9013), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9027), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9017), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 9, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8953), 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_COLON, + 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, - [160145] = 26, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [212029] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11939), 1, + anon_sym_RBRACE, + ACTIONS(12179), 1, + anon_sym_COMMA, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + STATE(9927), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160237] = 20, + [212126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(8629), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9013), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9019), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8631), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(9023), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(9027), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [212173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9017), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 11, + anon_sym_DOT, + ACTIONS(8631), 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_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [160317] = 18, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [212220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(11923), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(7115), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + sym_initializer_list, + ACTIONS(9105), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9017), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 12, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9107), 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_COLON, + 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, - [160393] = 17, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [212273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, + STATE(5876), 2, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + sym_initializer_list, + ACTIONS(9086), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9017), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 15, + anon_sym_DOT, + ACTIONS(9088), 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_COLON, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160467] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [212326] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(3694), 1, + ACTIONS(12181), 1, + anon_sym_GT2, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(9935), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9033), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160559] = 15, + [212423] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6751), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6748), 2, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + anon_sym_COLON_COLON, + ACTIONS(6753), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 16, + anon_sym_DOT, + ACTIONS(6758), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160629] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [212478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(11687), 1, + anon_sym_LT, + STATE(7019), 1, + sym_template_argument_list, + ACTIONS(6746), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6751), 32, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6389), 1, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7627), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -432030,232 +614997,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160695] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6951), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(6949), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6951), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212676] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11443), 1, + anon_sym_STAR, + ACTIONS(11445), 1, + anon_sym_AMP_AMP, + ACTIONS(11447), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(4554), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8712), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6546), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6991), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [212749] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(6988), 2, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11937), 1, + anon_sym_SEMI, + ACTIONS(12183), 1, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7700), 2, + ACTIONS(12186), 1, + anon_sym_RBRACE, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160787] = 27, + [212846] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9039), 1, - anon_sym_COLON, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12128), 1, + anon_sym_SEMI, + ACTIONS(12188), 1, + anon_sym_COMMA, + ACTIONS(12191), 1, + anon_sym_RBRACE, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160881] = 27, + [212943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(11145), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + STATE(5863), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9117), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(9009), 1, anon_sym_PIPE, - ACTIONS(9013), 1, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - ACTIONS(9035), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9119), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9043), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [160975] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [212996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8276), 1, - anon_sym_decltype, - ACTIONS(8925), 1, - sym_auto, - STATE(4926), 1, - sym_decltype_auto, - ACTIONS(5661), 5, + ACTIONS(6967), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 30, + ACTIONS(6969), 35, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -432270,58 +615372,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [161027] = 14, + [213043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(8955), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 17, + anon_sym_DOT, + ACTIONS(8957), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -432330,715 +615418,638 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [161095] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [213090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6226), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6233), 35, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6808), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6806), 29, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [213184] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9045), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12193), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161189] = 27, + [213278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12221), 1, + anon_sym_COLON, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9047), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161283] = 20, + [213372] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8836), 1, - anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8852), 1, - anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 11, + ACTIONS(9284), 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_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_GT2, - [161363] = 26, + anon_sym_bitand, + anon_sym_not_eq, + [213440] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7001), 1, + anon_sym___attribute, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, + anon_sym_STAR, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8805), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6672), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6999), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213514] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9049), 2, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8716), 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_RBRACK, + anon_sym_QMARK, + 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(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161455] = 27, + [213582] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9051), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161549] = 27, + ACTIONS(10186), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [213670] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8911), 1, - anon_sym_COLON, - ACTIONS(9005), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, + ACTIONS(12261), 1, anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(10190), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [161643] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(2216), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5066), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6243), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6245), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [161699] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8296), 1, - anon_sym_STAR, - ACTIONS(8298), 1, - anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6642), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [161771] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8266), 1, - anon_sym_STAR, - ACTIONS(8268), 1, - anon_sym_AMP_AMP, - ACTIONS(8270), 1, - anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___attribute, - STATE(3304), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6664), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4537), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [161845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5033), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12251), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5026), 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, - [161893] = 26, + [213762] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12259), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9053), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8800), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161985] = 16, + ACTIONS(10194), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [213850] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8296), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8298), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8300), 1, + ACTIONS(11478), 1, anon_sym_AMP, - STATE(3016), 1, + STATE(4725), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6730), 1, + STATE(8754), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8504), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7007), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -433051,238 +616062,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [162057] = 27, + [213922] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9055), 1, - anon_sym_COMMA, - ACTIONS(9057), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12263), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162151] = 24, + [214016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12259), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12261), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(10198), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [162239] = 26, + [214108] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6645), 2, + ACTIONS(10198), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162331] = 12, + [214200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8786), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 7, + ACTIONS(9286), 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(6491), 19, + ACTIONS(9288), 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, @@ -433300,1783 +616308,1736 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [162395] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [214258] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8792), 2, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 6, + ACTIONS(10091), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - [162481] = 22, + [214346] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8796), 2, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 8, + ACTIONS(10194), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [162565] = 21, + [214434] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(8788), 1, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8798), 1, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8816), 1, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8796), 2, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12265), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [162647] = 20, + [214526] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(8788), 1, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8798), 1, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8816), 1, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - [162727] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12265), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [162803] = 17, + [214618] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(6993), 1, + anon_sym___attribute, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6489), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, 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, - [162877] = 15, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8776), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6758), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6991), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [214692] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8812), 1, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11647), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 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, - [162947] = 13, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214784] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 5, + ACTIONS(11959), 1, anon_sym_PIPE, + ACTIONS(11963), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(11969), 1, anon_sym_LT_LT, + ACTIONS(11971), 1, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11977), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11979), 1, anon_sym_bitand, - anon_sym_not_eq, - [163013] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6489), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11961), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [163081] = 24, + ACTIONS(10178), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [214872] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6958), 4, + ACTIONS(10186), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, anon_sym_QMARK, - [163169] = 24, + anon_sym_GT2, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [214960] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12267), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6958), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [163257] = 26, + [215054] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6978), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8077), 2, + ACTIONS(11951), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(9282), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8790), 2, + 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(9284), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163349] = 24, + anon_sym_GT2, + [215118] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(9252), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(9254), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_GT2, + [215178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(12116), 1, anon_sym_LT, - ACTIONS(6984), 4, + STATE(3968), 1, + sym_template_argument_list, + ACTIONS(6201), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6208), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [163437] = 26, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [215230] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6988), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [163529] = 26, + [215322] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6978), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7659), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12269), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [163621] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8266), 1, - anon_sym_STAR, - ACTIONS(8268), 1, - anon_sym_AMP_AMP, - ACTIONS(8270), 1, - anon_sym_AMP, - ACTIONS(8498), 1, - anon_sym___attribute, - STATE(3304), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6696), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [163695] = 26, + [215414] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8898), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(10125), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [163787] = 27, + [215502] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9059), 1, - anon_sym_COMMA, - ACTIONS(9061), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9244), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9246), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163881] = 24, + [215562] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 4, + ACTIONS(9284), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, - [163969] = 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [215644] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, - anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7011), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164057] = 24, + ACTIONS(9284), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_GT2, + [215724] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8812), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 4, + ACTIONS(9284), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, - [164145] = 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_GT2, + [215800] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, - anon_sym_PIPE, - ACTIONS(9013), 1, - anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6984), 4, + ACTIONS(9284), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, - [164233] = 27, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [215874] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9063), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12271), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164327] = 26, + [215968] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12273), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8534), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164419] = 26, + [216062] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, - anon_sym_PIPE, - ACTIONS(9013), 1, - anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6988), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7659), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 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(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164511] = 26, + anon_sym_GT2, + [216134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9852), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8794), 1, anon_sym_PIPE, - ACTIONS(8798), 1, anon_sym_AMP, - ACTIONS(8804), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8810), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9850), 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, - ACTIONS(8812), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8816), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [216188] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9856), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 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(9854), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9065), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164603] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [216242] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9252), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9254), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [164695] = 27, + [216302] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9069), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12275), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164789] = 10, + [216396] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7005), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8785), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7003), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216470] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10977), 1, anon_sym_DOT, - STATE(3694), 1, + STATE(5762), 1, sym_argument_list, - STATE(3696), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8854), 2, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6451), 10, + ACTIONS(9270), 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(9272), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [216530] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9834), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -435087,7 +618048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6453), 19, + anon_sym_DOT, + ACTIONS(9832), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -435106,51 +618068,112 @@ 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, - [164849] = 16, + [216584] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8296), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8298), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8300), 1, + ACTIONS(11478), 1, anon_sym_AMP, - STATE(3016), 1, + STATE(4725), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6650), 1, + STATE(8740), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8496), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6995), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216656] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7001), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8784), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6655), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6999), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -435163,417 +618186,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164921] = 27, + [216730] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11953), 1, + anon_sym_SLASH, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11949), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11951), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 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(9284), 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, + [216796] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9071), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12277), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165015] = 24, + [216890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(12279), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7019), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8840), 4, + ACTIONS(12215), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [165103] = 26, + [216984] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, - anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, - anon_sym_bitor, - ACTIONS(8852), 1, - anon_sym_bitand, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9073), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8838), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(9282), 6, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [165195] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8266), 1, - anon_sym_STAR, - ACTIONS(8268), 1, - anon_sym_AMP_AMP, - ACTIONS(8270), 1, - anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(3304), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6700), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4611), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 6, + ACTIONS(9284), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165269] = 27, + [217054] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9075), 1, - anon_sym_COLON, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165363] = 27, + ACTIONS(10125), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [217142] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9077), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165457] = 5, + ACTIONS(10178), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [217230] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8752), 1, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, - STATE(4680), 1, - sym_new_declarator, - ACTIONS(6280), 11, + ACTIONS(10977), 1, + anon_sym_DOT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6282), 25, + ACTIONS(9292), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -435581,8 +618591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -435593,253 +618605,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [165507] = 16, + [217288] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8296), 1, - anon_sym_STAR, - ACTIONS(8298), 1, - anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6651), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4517), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 7, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11182), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165579] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9079), 1, - anon_sym_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - STATE(4747), 1, - sym__enum_base_clause, - STATE(4854), 1, - sym_enumerator_list, - STATE(4941), 1, - sym_attribute_specifier, - ACTIONS(6565), 4, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6567), 27, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12281), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [165639] = 17, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(8288), 1, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8290), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_AMP, - ACTIONS(8498), 1, - anon_sym___attribute, - STATE(3311), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6738), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 6, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12283), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165713] = 17, + anon_sym_RBRACK, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217474] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8288), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(11478), 1, anon_sym_AMP, - ACTIONS(8502), 1, - anon_sym___attribute, - STATE(3311), 1, + STATE(4725), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6739), 1, + STATE(8741), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4584), 2, + STATE(6791), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 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_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [165787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2561), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6999), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2571), 28, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -435851,233 +618794,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [165833] = 24, + [217546] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - ACTIONS(8826), 1, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9840), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8832), 1, anon_sym_PIPE, - ACTIONS(8836), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, - anon_sym_bitor, - ACTIONS(8852), 1, - anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8822), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8824), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8828), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6958), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8840), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [165921] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(9838), 23, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9083), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [166015] = 27, + 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, + [217600] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9085), 1, - anon_sym_COMMA, - ACTIONS(9087), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12285), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166109] = 3, + [217694] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 5, - anon_sym_AMP, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7005), 1, anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(7784), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5659), 33, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, anon_sym_STAR, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8813), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7003), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -436089,43 +618965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [166155] = 9, + [217768] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6399), 8, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9844), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6401), 23, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9842), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -436135,10 +618998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -436149,102 +619009,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [166213] = 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [217822] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8931), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12287), 1, + anon_sym_COMMA, + ACTIONS(12289), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166307] = 10, + [217916] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12291), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6415), 8, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [218010] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11908), 1, + anon_sym_LPAREN2, + ACTIONS(11910), 1, + anon_sym_LBRACK, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9848), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6417), 21, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9846), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -436254,10 +619179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -436266,198 +619188,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [166367] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218064] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8836), 1, + ACTIONS(11959), 1, + anon_sym_PIPE, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8852), 1, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(10198), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8834), 2, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_GT2, - [166449] = 10, + [218156] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(6993), 1, + anon_sym___attribute, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6419), 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(6421), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11480), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [166509] = 24, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8799), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6727), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6991), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218230] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(10190), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [166597] = 9, + [218322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11861), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11863), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 8, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9840), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -436466,7 +619402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6425), 23, + anon_sym_DOT, + ACTIONS(9838), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -436479,7 +619416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -436490,108 +619427,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [166655] = 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [218376] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(9089), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12096), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166749] = 12, + [218470] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11861), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11863), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6489), 7, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9844), 9, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 19, + anon_sym_DOT, + ACTIONS(9842), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -436600,7 +619530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -436609,72 +619539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [166813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8971), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(4931), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4938), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [166865] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [218524] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6489), 10, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9864), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -436685,7 +619565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6491), 19, + anon_sym_DOT, + ACTIONS(9862), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -436704,253 +619585,187 @@ 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, - [166925] = 27, + [218578] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9091), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167019] = 27, + ACTIONS(9342), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [218666] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9093), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12293), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167113] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9009), 1, - anon_sym_PIPE, - ACTIONS(9013), 1, - anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9095), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167207] = 17, + [218760] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5709), 1, + ACTIONS(7009), 1, anon_sym___attribute, - ACTIONS(8215), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8288), 1, + ACTIONS(11480), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(11484), 1, anon_sym_AMP, - STATE(3311), 1, - sym_parameter_list, - STATE(4342), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6666), 1, + STATE(8797), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 6, + ACTIONS(7007), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -436963,205 +619778,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167281] = 18, + [218834] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(6489), 2, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(7700), 2, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12295), 1, + anon_sym_COMMA, + ACTIONS(12297), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_GT2, - [167357] = 17, + [218928] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8288), 1, - anon_sym_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(3311), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6681), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 6, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12299), 1, anon_sym_COMMA, + ACTIONS(12301), 1, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167431] = 27, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [219022] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9097), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167525] = 9, + [219114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11925), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6423), 10, + STATE(6819), 1, + sym_new_declarator, + ACTIONS(9173), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -437172,9 +619996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6425), 21, + anon_sym_DOT, + ACTIONS(9175), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -437183,6 +620009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -437193,681 +620020,709 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [167583] = 26, + [219164] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9282), 7, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9099), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167675] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(6791), 1, - anon_sym___attribute, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, - anon_sym_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_AMP, - STATE(3311), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6669), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [167749] = 27, + [219228] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9101), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12303), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167843] = 26, + [219322] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7828), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167935] = 27, + [219414] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9103), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12305), 1, + anon_sym_COMMA, + ACTIONS(12307), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168029] = 24, + [219508] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12259), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12261), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12309), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [168117] = 26, + [219600] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, - anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12311), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6645), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [168209] = 27, + [219694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11908), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11910), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + STATE(2144), 1, + sym_parameter_list, + STATE(6543), 1, + sym__function_declarator_seq, + ACTIONS(9860), 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(7706), 1, + ACTIONS(9858), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8478), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219748] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9105), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12313), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168303] = 26, + [219840] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [219900] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9033), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168395] = 17, + ACTIONS(9284), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [219986] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(6489), 2, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(7700), 2, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12315), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8840), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [168469] = 10, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(11861), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11863), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6415), 10, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9864), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6417), 19, + anon_sym_DOT, + ACTIONS(9862), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -437877,7 +620732,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, @@ -437886,95 +620744,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [168529] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [220134] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5629), 35, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(11429), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168575] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, + ACTIONS(11431), 1, anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(11478), 1, anon_sym_AMP, - ACTIONS(8484), 1, - anon_sym___attribute, - STATE(3311), 1, + STATE(4725), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6731), 1, + STATE(8816), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4561), 2, + STATE(6658), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8482), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(6991), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -437987,37 +620804,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168649] = 10, + [220206] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12317), 1, + anon_sym_COMMA, + ACTIONS(12319), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220300] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12321), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8854), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6419), 10, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220394] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9860), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6421), 19, + anon_sym_DOT, + ACTIONS(9858), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -438027,7 +620969,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, @@ -438036,295 +620981,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [168709] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [220448] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9107), 1, + ACTIONS(12323), 1, anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220542] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12325), 1, + anon_sym_COLON, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168803] = 26, + [220636] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9033), 2, + ACTIONS(12313), 2, anon_sym_COMMA, anon_sym_GT2, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11967), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [168895] = 27, + [220728] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12327), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168989] = 17, + [220822] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5709), 1, + ACTIONS(6495), 1, anon_sym___attribute, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8266), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, anon_sym_STAR, - ACTIONS(8268), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(8270), 1, + ACTIONS(11465), 1, anon_sym_AMP, - STATE(3304), 1, + STATE(5216), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6639), 1, + STATE(8768), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 6, + ACTIONS(6497), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169063] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9079), 1, - anon_sym_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - STATE(4761), 1, - sym__enum_base_clause, - STATE(4862), 1, - sym_enumerator_list, - STATE(4968), 1, - sym_attribute_specifier, - ACTIONS(6571), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6573), 27, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -438336,34 +621309,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [169123] = 10, + [220896] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12329), 1, + anon_sym_COMMA, + ACTIONS(12331), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6489), 8, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6515), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8835), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_LBRACK, + ACTIONS(5260), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -438372,7 +621394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 21, + anon_sym_DOT, + ACTIONS(5253), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -438385,7 +621408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -438394,228 +621418,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [169183] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [221042] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(9111), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12333), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169277] = 10, + [221134] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10977), 1, anon_sym_DOT, - STATE(2437), 1, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6451), 8, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6453), 21, + ACTIONS(9284), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [169337] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8282), 1, - anon_sym_STAR, - ACTIONS(8284), 1, - anon_sym_AMP_AMP, - ACTIONS(8286), 1, - anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6630), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169409] = 16, + [221218] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, - anon_sym_SLASH, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8824), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6489), 6, + ACTIONS(9282), 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(6491), 15, + anon_sym_GT_GT, + ACTIONS(9284), 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, @@ -438623,91 +621600,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [169481] = 17, + [221278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8266), 1, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12335), 1, + anon_sym_COLON, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, anon_sym_STAR, - ACTIONS(8268), 1, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, - ACTIONS(8270), 1, - anon_sym_AMP, - ACTIONS(8506), 1, - anon_sym___attribute, - STATE(3304), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6704), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169555] = 13, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [221372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, - anon_sym_SLASH, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8824), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6489), 7, + ACTIONS(9244), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -438715,9 +621697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6491), 17, + ACTIONS(9246), 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, @@ -438733,616 +621717,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [169621] = 23, + [221432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(4326), 1, - anon_sym_STAR, - ACTIONS(4328), 1, - anon_sym_AMP_AMP, - ACTIONS(4330), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(6003), 1, + ACTIONS(6233), 2, anon_sym_COLON_COLON, - ACTIONS(8392), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(6011), 1, - sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6715), 1, - sym__declarator, - STATE(6926), 1, - sym__abstract_declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [169707] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + anon_sym_LBRACE, + ACTIONS(6235), 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(6228), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8282), 1, anon_sym_STAR, - ACTIONS(8284), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8286), 1, - anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6631), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4649), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 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_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169779] = 27, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [221480] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9113), 1, - anon_sym_COMMA, - ACTIONS(9115), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10190), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169873] = 27, + [221572] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9117), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12337), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169967] = 23, + [221664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(8844), 1, + ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(3694), 1, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8830), 2, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6491), 6, + ACTIONS(9342), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_QMARK, - anon_sym_or, anon_sym_GT2, - [170053] = 22, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [221752] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8832), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, - anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(3694), 1, + STATE(5762), 1, sym_argument_list, - STATE(3696), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8834), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(12017), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 8, + ACTIONS(9284), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, - anon_sym_GT2, - [170137] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8282), 1, - anon_sym_STAR, - ACTIONS(8284), 1, - anon_sym_AMP_AMP, - ACTIONS(8286), 1, - anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6675), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170209] = 24, + anon_sym_bitor, + [221834] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(9005), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11979), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7011), 4, + ACTIONS(9284), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_PIPE_PIPE, anon_sym_QMARK, - [170297] = 27, + anon_sym_or, + anon_sym_GT2, + [221920] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9119), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11244), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170391] = 17, + [222012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6233), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6235), 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(6228), 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, + [222060] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(6791), 1, + ACTIONS(6997), 1, anon_sym___attribute, - ACTIONS(8215), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8266), 1, + ACTIONS(11480), 1, anon_sym_STAR, - ACTIONS(8268), 1, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(8270), 1, + ACTIONS(11484), 1, anon_sym_AMP, - STATE(3304), 1, - sym_parameter_list, - STATE(4342), 1, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6656), 1, + STATE(8804), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6789), 6, + ACTIONS(6995), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -439355,30 +622248,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170465] = 3, + [222134] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5116), 28, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12243), 1, + anon_sym_PIPE, + ACTIONS(12247), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(12253), 1, + anon_sym_GT_EQ, + ACTIONS(12255), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12257), 1, + anon_sym_bitor, + ACTIONS(12259), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12233), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12251), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [222222] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(6503), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(7017), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, + ACTIONS(7019), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -439392,751 +622357,942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [170511] = 16, + [222278] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12243), 1, + anon_sym_PIPE, + ACTIONS(12247), 1, + anon_sym_AMP, + ACTIONS(12253), 1, + anon_sym_GT_EQ, + ACTIONS(12255), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12257), 1, + anon_sym_bitor, + ACTIONS(12259), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12233), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12241), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12251), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10125), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [222366] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12243), 1, + anon_sym_PIPE, + ACTIONS(12247), 1, + anon_sym_AMP, + ACTIONS(12253), 1, + anon_sym_GT_EQ, + ACTIONS(12255), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12257), 1, + anon_sym_bitor, + ACTIONS(12259), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12233), 2, anon_sym_STAR, - ACTIONS(8284), 1, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12241), 2, anon_sym_AMP_AMP, - ACTIONS(8286), 1, + anon_sym_and, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12251), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9342), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [222454] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6699), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4609), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170583] = 26, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10178), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [222542] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8818), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8848), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6978), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9438), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7700), 2, + anon_sym_COLON, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(12215), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [170675] = 26, + [222634] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9282), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + anon_sym_not_eq, + [222698] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9282), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8913), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8716), 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(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [170767] = 27, + [222758] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9121), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170861] = 27, + ACTIONS(9284), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [222844] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9123), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170955] = 26, + ACTIONS(9284), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [222928] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8858), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171047] = 27, + ACTIONS(9284), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [223010] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9125), 1, - anon_sym_COMMA, - ACTIONS(9127), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8722), 2, + [223090] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171141] = 9, + ACTIONS(9284), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [223166] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6399), 10, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12215), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6401), 21, + ACTIONS(9284), 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_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_GT2, - [171199] = 26, + [223240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8999), 2, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8800), 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_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171291] = 24, + [223310] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8832), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, - anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, - anon_sym_bitor, - ACTIONS(8852), 1, - anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8830), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8834), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6984), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8840), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [171379] = 26, + 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, + [223376] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6645), 2, - anon_sym_COMMA, + ACTIONS(12339), 1, anon_sym_COLON, - ACTIONS(7659), 2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171471] = 15, + [223470] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6489), 6, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6491), 16, + ACTIONS(9284), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -440144,6 +623300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -440152,698 +623310,868 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [171541] = 27, + [223538] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12128), 1, + anon_sym_COLON, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8724), 1, - anon_sym_SEMI, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171635] = 27, + [223632] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9129), 1, - anon_sym_COMMA, - ACTIONS(9131), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9270), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9272), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 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(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171729] = 27, + [223692] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9133), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171823] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8296), 1, - anon_sym_STAR, - ACTIONS(8298), 1, - anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6695), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4551), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 7, + ACTIONS(10186), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [171895] = 27, + anon_sym_COLON, + anon_sym_QMARK, + [223780] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9035), 1, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10190), 2, anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9135), 1, anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171989] = 24, + [223872] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8842), 1, - anon_sym_LT_LT, - ACTIONS(8844), 1, - anon_sym_GT_GT, - ACTIONS(8848), 1, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8838), 3, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7015), 4, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10194), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8840), 4, + [223960] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9848), 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, - [172077] = 26, + anon_sym_DOT, + ACTIONS(9846), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [224014] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10198), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9033), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172169] = 27, + [224106] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9137), 1, - anon_sym_COMMA, - ACTIONS(9139), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(11937), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172263] = 27, + [224200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(11861), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11863), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9852), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9850), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8734), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(9141), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [224254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9856), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9854), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8722), 2, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [224308] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7009), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8769), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7007), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [224382] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9282), 1, + anon_sym_PIPE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172357] = 27, + ACTIONS(9284), 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, + [224462] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6997), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8782), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6995), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [224536] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(9143), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12341), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172451] = 16, + [224630] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8284), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8286), 1, + ACTIONS(11478), 1, anon_sym_AMP, - STATE(3020), 1, + STATE(4725), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6713), 1, + STATE(8753), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5707), 7, + ACTIONS(6497), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -440851,7 +624179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(8209), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -440864,345 +624192,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [172523] = 27, + [224702] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(7706), 1, - anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9145), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12343), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172617] = 26, + [224796] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8818), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8826), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8832), 1, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(9282), 2, anon_sym_PIPE, - ACTIONS(8836), 1, anon_sym_AMP, - ACTIONS(8842), 1, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12021), 2, anon_sym_LT_LT, - ACTIONS(8844), 1, anon_sym_GT_GT, - ACTIONS(8846), 1, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 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, - ACTIONS(8848), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [224872] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8850), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8852), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(3694), 1, - sym_argument_list, - STATE(3696), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12345), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8822), 2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8824), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8828), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8830), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8834), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9049), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8838), 3, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8840), 4, + ACTIONS(11883), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [172709] = 16, + [224966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, - anon_sym_STAR, - ACTIONS(8284), 1, - anon_sym_AMP_AMP, - ACTIONS(8286), 1, + ACTIONS(11101), 1, + anon_sym_DOT, + ACTIONS(11945), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11953), 1, + anon_sym_SLASH, + ACTIONS(11959), 1, + anon_sym_PIPE, + ACTIONS(11963), 1, anon_sym_AMP, - STATE(3020), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6641), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172781] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8296), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, + anon_sym_QMARK, + ACTIONS(11975), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, + anon_sym_bitand, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11949), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11951), 2, anon_sym_STAR, - ACTIONS(8298), 1, + anon_sym_PERCENT, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6636), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 7, + anon_sym_and, + ACTIONS(11961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12347), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172853] = 27, + anon_sym_GT2, + ACTIONS(11965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [225058] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(7706), 1, + ACTIONS(11182), 1, anon_sym_COMMA, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9147), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12349), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172947] = 12, + [225152] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(7684), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(7698), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8826), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - STATE(3694), 1, + ACTIONS(11959), 1, + anon_sym_PIPE, + ACTIONS(11963), 1, + anon_sym_AMP, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11977), 1, + anon_sym_bitor, + ACTIONS(11979), 1, + anon_sym_bitand, + STATE(5759), 1, sym_argument_list, - STATE(3696), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8824), 2, + ACTIONS(11949), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11951), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11955), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11957), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11961), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10194), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(11967), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [225240] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11861), 1, + anon_sym_LPAREN2, + ACTIONS(11863), 1, + anon_sym_LBRACK, + STATE(2180), 1, + sym_parameter_list, + STATE(6587), 1, + sym__function_declarator_seq, + ACTIONS(9834), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9832), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + 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(6489), 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [225294] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + ACTIONS(11099), 1, + anon_sym_LBRACK, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(5759), 1, + sym_argument_list, + STATE(5761), 1, + sym_subscript_argument_list, + ACTIONS(11103), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9286), 10, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -441210,9 +624655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6491), 17, + ACTIONS(9288), 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, @@ -441227,1420 +624674,737 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_GT2, - [173011] = 26, + [225352] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11945), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11973), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(9149), 1, - anon_sym_COMMA, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12269), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [173102] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - ACTIONS(9155), 1, - anon_sym_LBRACE, - STATE(5051), 1, - sym_field_declaration_list, - STATE(5100), 1, - sym_attribute_specifier, - STATE(7170), 1, - sym_virtual_specifier, - STATE(7927), 1, - sym_base_class_clause, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173165] = 26, + [225444] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9157), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12351), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5668), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5670), 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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173303] = 26, + [225538] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12175), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173394] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, - anon_sym_LPAREN2, - ACTIONS(8370), 1, - anon_sym_STAR, - ACTIONS(8372), 1, - anon_sym_AMP_AMP, - ACTIONS(8374), 1, - anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3005), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(8333), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [173467] = 26, + [225630] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9159), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173558] = 26, + ACTIONS(10186), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [225718] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(9161), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11955), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11957), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(10091), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [173649] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4662), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5661), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9163), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173698] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6030), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6028), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173747] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6060), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6058), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173796] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4666), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6097), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9167), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6095), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173845] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4667), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6103), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9169), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6101), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173894] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6050), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6048), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173943] = 5, + [225806] = 9, ACTIONS(3), 1, sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6054), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6052), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173992] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4672), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6024), 3, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9286), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9171), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6022), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9288), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174041] = 5, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [225864] = 24, ACTIONS(3), 1, sym_comment, - STATE(4673), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6070), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6068), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174090] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6088), 3, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6086), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174139] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4662), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5858), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9163), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5860), 29, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10091), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174188] = 5, + anon_sym_COLON, + anon_sym_QMARK, + [225952] = 10, ACTIONS(3), 1, sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6160), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6158), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174237] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4485), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6066), 3, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9244), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(9165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6064), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174286] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1727), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5109), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(5457), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5212), 9, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9246), 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_SEMI, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(5215), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [174337] = 17, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [226012] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, - anon_sym_STAR, - ACTIONS(8372), 1, - anon_sym_AMP_AMP, - ACTIONS(8374), 1, - anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3007), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(8333), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174410] = 26, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9252), 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(9254), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [226072] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(9009), 1, - anon_sym_PIPE, - ACTIONS(9013), 1, - anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9175), 1, - anon_sym_COLON, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + 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, - ACTIONS(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [174501] = 26, + [226146] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8788), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9177), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9179), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174592] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9183), 1, - anon_sym___attribute__, - ACTIONS(9186), 1, - anon_sym___attribute, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(4999), 1, - sym_ref_qualifier, - STATE(5791), 1, - sym_trailing_return_type, - STATE(5862), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5352), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 7, + ACTIONS(10125), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [174679] = 17, + anon_sym_QMARK, + [226234] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8366), 1, - sym_identifier, - ACTIONS(8368), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9290), 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(9292), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(8372), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8374), 1, - anon_sym_AMP, - ACTIONS(8378), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3008), 1, - sym__type_declarator, - STATE(3477), 1, - sym_pointer_type_declarator, - STATE(8333), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3474), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174752] = 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_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, + [226292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 11, + ACTIONS(11921), 1, + anon_sym_LBRACK, + STATE(7035), 1, + sym_new_declarator, + ACTIONS(9173), 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(6449), 26, + ACTIONS(9175), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -442651,9 +625415,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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -442666,567 +625432,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [174797] = 26, + [226342] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9200), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174888] = 26, + ACTIONS(9342), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [226430] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11953), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11969), 1, + anon_sym_LT_LT, + ACTIONS(11971), 1, + anon_sym_GT_GT, + ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11977), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11979), 1, anon_sym_bitand, - ACTIONS(9202), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11949), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11951), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11961), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11981), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11967), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [174979] = 26, + ACTIONS(9284), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [226514] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9204), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12353), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175070] = 26, + [226608] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 5, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 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, - ACTIONS(8728), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [226678] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6495), 1, + anon_sym___attribute, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, + anon_sym_STAR, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8796), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6497), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [226752] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9206), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175161] = 26, + [226844] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9208), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175252] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5424), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6117), 1, - sym__declarator, - STATE(7654), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [175333] = 26, + ACTIONS(10178), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [226932] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9210), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12355), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175424] = 26, + [227026] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9212), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11981), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(9270), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(9272), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175515] = 17, + anon_sym_GT2, + [227086] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8320), 1, - sym_identifier, - ACTIONS(8322), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(11478), 1, anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, + STATE(4725), 1, + sym_parameter_list, + STATE(6485), 1, sym_alignas_qualifier, - STATE(2892), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8750), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7003), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443238,851 +626040,766 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175588] = 26, + [227158] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175679] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(4938), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(4931), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [175730] = 26, + [227224] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9214), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12357), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175821] = 26, + [227318] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9216), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12261), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175912] = 26, + [227410] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9218), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12359), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176003] = 26, + [227504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(11099), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(11101), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, + STATE(5759), 1, sym_argument_list, - STATE(2476), 1, + STATE(5761), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(11103), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(9290), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(9292), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176094] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [227562] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12361), 1, + anon_sym_COMMA, + ACTIONS(12363), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176185] = 26, + [227656] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(9438), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176276] = 26, + [227748] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, - anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(9282), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176367] = 26, + [227812] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12365), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176458] = 26, + [227906] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9220), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12245), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176549] = 26, + ACTIONS(9284), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [227992] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12257), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9222), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176640] = 26, + ACTIONS(9284), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [228076] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(9282), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9224), 1, - anon_sym_RBRACE, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176731] = 4, + ACTIONS(9284), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [228158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6403), 5, + ACTIONS(6949), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(6405), 30, + ACTIONS(6951), 35, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -444097,1264 +626814,1280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [176778] = 26, + [228204] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9229), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12367), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176869] = 17, + [228296] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8320), 1, - sym_identifier, - ACTIONS(8322), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12369), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8326), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8328), 1, - anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(2968), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [176942] = 26, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [228390] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(9282), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(12259), 1, anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9231), 1, - anon_sym_COLON, - STATE(2437), 1, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, sym_argument_list, - STATE(2476), 1, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12233), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12251), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [228470] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(12235), 1, + anon_sym_SLASH, + ACTIONS(12253), 1, + anon_sym_GT_EQ, + ACTIONS(12255), 1, + anon_sym_LT_EQ_GT, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(12237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(12249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(12251), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177033] = 26, + ACTIONS(9284), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [228546] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12371), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177124] = 26, + [228640] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12253), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9233), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(9282), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12251), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177215] = 26, + [228714] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11182), 1, + anon_sym_COMMA, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9235), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12373), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177306] = 26, + [228808] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12255), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9237), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12237), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177397] = 26, + [228878] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12235), 1, anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9239), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12231), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12233), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(9282), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9284), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [177488] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5365), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6078), 1, - sym__declarator, - STATE(7713), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [177569] = 26, + [228944] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9241), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12375), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177660] = 26, + [229036] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9243), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12186), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177751] = 26, + [229128] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9245), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12377), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177842] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(8348), 1, - anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2210), 1, - sym__type_declarator, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177915] = 26, + [229222] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12195), 1, + anon_sym_COMMA, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9247), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12379), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178006] = 26, + [229316] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9249), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12381), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178097] = 26, + [229407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(9358), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9251), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9360), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 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(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178188] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [229452] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12387), 1, + anon_sym_enum, + ACTIONS(12389), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, + sym_template_type, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(5198), 1, + sym_type_specifier, + STATE(7340), 1, + sym_argument_list, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12385), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [229545] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9253), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12391), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178279] = 26, + [229636] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7414), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7416), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [229685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12229), 1, anon_sym_bitand, - ACTIONS(9255), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12395), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178370] = 26, + [229776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10969), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12201), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12207), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12211), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12217), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12223), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12225), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12227), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12229), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12397), 1, + anon_sym_COLON, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(12197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12203), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12205), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12209), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12215), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178461] = 17, + [229867] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8320), 1, + ACTIONS(11530), 1, sym_identifier, - ACTIONS(8322), 1, + ACTIONS(11532), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, + ACTIONS(11534), 1, anon_sym_STAR, - ACTIONS(8326), 1, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(11538), 1, anon_sym_AMP, - ACTIONS(8332), 1, + ACTIONS(11542), 1, sym_primitive_type, - STATE(1683), 1, + STATE(3482), 1, sym_alignas_qualifier, - STATE(2965), 1, + STATE(4696), 1, sym__type_declarator, - STATE(3316), 1, + STATE(5607), 1, sym_pointer_type_declarator, - STATE(8955), 1, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(69), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8330), 4, + ACTIONS(11540), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3308), 5, + STATE(5533), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -445374,1487 +628107,1386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178534] = 26, + [229940] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12399), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178625] = 26, + [230031] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12401), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178716] = 26, + [230122] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12403), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178807] = 26, + [230213] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, + anon_sym_LPAREN2, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(11536), 1, + anon_sym_AMP_AMP, + ACTIONS(11538), 1, + anon_sym_AMP, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4899), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [230286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(5752), 1, anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178898] = 5, + [230377] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9257), 1, - anon_sym_LBRACK_LBRACK, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6267), 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(2039), 24, - anon_sym_virtual, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_private, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - anon_sym_try, - anon_sym_public, - anon_sym_protected, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [178947] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(12383), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, - anon_sym_SLASH, - ACTIONS(9009), 1, - anon_sym_PIPE, - ACTIONS(9013), 1, - anon_sym_AMP, - ACTIONS(9019), 1, - anon_sym_GT_EQ, - ACTIONS(9023), 1, - anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, - anon_sym_bitor, - ACTIONS(9027), 1, - anon_sym_bitand, - ACTIONS(9041), 1, - anon_sym_QMARK, - ACTIONS(9260), 1, - anon_sym_COLON, - STATE(2437), 1, + ACTIONS(12407), 1, + anon_sym_enum, + ACTIONS(12409), 1, + anon_sym_typename, + STATE(3627), 1, + sym_template_type, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(6415), 1, + sym_type_specifier, + STATE(7372), 1, sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(7659), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9003), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(9021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179038] = 26, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230470] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9262), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12411), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179129] = 26, + [230561] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9264), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12413), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179220] = 26, + [230652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(10249), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8710), 1, anon_sym_PIPE, - ACTIONS(8714), 1, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9266), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179311] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, anon_sym_DOT, - ACTIONS(8478), 1, + sym_literal_suffix, + ACTIONS(10247), 21, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9268), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179402] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5365), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6096), 1, - sym__declarator, - STATE(7713), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179483] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, - anon_sym_AMP, - ACTIONS(8720), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(8730), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9270), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [179574] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [230697] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9272), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12415), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179665] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5373), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6085), 1, - sym__declarator, - STATE(7485), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179746] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5421), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6121), 1, - sym__declarator, - STATE(7471), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [179827] = 26, + [230788] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9274), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12417), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179918] = 26, + [230879] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9276), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12419), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180009] = 21, + [230970] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - STATE(5365), 1, - sym_ms_call_modifier, - STATE(6003), 1, - sym__declarator, - STATE(6025), 1, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12423), 1, + anon_sym_enum, + ACTIONS(12425), 1, + anon_sym_typename, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(4710), 1, + sym_type_specifier, + STATE(7313), 1, + sym_argument_list, + STATE(8604), 1, sym__scope_resolution, - STATE(7713), 1, - sym_init_declarator, - STATE(8325), 1, - sym_ms_based_modifier, - STATE(9058), 3, + STATE(2973), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [180090] = 26, + sym_splice_expression, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [231063] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(11526), 1, + anon_sym_AMP_AMP, + ACTIONS(11528), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4669), 1, + sym__type_declarator, + STATE(11121), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231136] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9278), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12427), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180181] = 26, + [231227] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, - anon_sym_SLASH, - ACTIONS(8794), 1, - anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(11526), 1, + anon_sym_AMP_AMP, + ACTIONS(11528), 1, anon_sym_AMP, - ACTIONS(8804), 1, - anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, - anon_sym_bitor, - ACTIONS(8816), 1, - anon_sym_bitand, - ACTIONS(9280), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8786), 2, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4671), 1, + sym__type_declarator, + STATE(11121), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231300] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(7436), 1, + sym_alignas_qualifier, + ACTIONS(12432), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6525), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(6527), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8790), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8792), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8796), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8806), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8800), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8802), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [180272] = 26, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(12429), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231353] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(11526), 1, + anon_sym_AMP_AMP, + ACTIONS(11528), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4675), 1, + sym__type_declarator, + STATE(11121), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231426] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5919), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9282), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180363] = 26, + [231517] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(6422), 1, + sym_type_specifier, + STATE(7366), 1, + sym_argument_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [231610] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5771), 1, anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180454] = 26, + [231701] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12441), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180545] = 8, + [231792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9081), 1, - anon_sym_LBRACE, - STATE(4864), 1, - sym_enumerator_list, - STATE(4973), 1, - sym_attribute_specifier, - ACTIONS(6225), 4, + STATE(7040), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7253), 3, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_const, - anon_sym___asm, - ACTIONS(6227), 28, + ACTIONS(12443), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7255), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -446869,2458 +629501,2781 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [180600] = 3, + [231841] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 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(7039), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(12383), 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_LBRACK, - anon_sym_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, - [180645] = 26, + ACTIONS(12407), 1, + anon_sym_enum, + ACTIONS(12409), 1, + anon_sym_typename, + STATE(3627), 1, + sym_template_type, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(6410), 1, + sym_type_specifier, + STATE(7326), 1, + sym_argument_list, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [231934] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7657), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9005), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(9009), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(9013), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(9019), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(9023), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(9025), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(9027), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9041), 1, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(9284), 1, - anon_sym_COLON, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(12445), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(7659), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9001), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9003), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9007), 2, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(9011), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9021), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9037), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9015), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9017), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180736] = 26, + [232025] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9286), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12447), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180827] = 26, + [232116] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5813), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9288), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180918] = 26, + [232207] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9290), 1, - anon_sym_SEMI, - STATE(2437), 1, + ACTIONS(12449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12451), 1, + anon_sym_RBRACK, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181009] = 26, + [232298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - ACTIONS(6389), 1, - anon_sym_LBRACK, - ACTIONS(6393), 1, - anon_sym_DOT, - ACTIONS(8478), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, - anon_sym_SLASH, - ACTIONS(8710), 1, - anon_sym_PIPE, - ACTIONS(8714), 1, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7383), 3, anon_sym_AMP, - ACTIONS(8720), 1, - anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, - anon_sym_bitor, - ACTIONS(8734), 1, - anon_sym_bitand, - ACTIONS(9292), 1, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7385), 29, anon_sym_COMMA, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, - sym_subscript_argument_list, - ACTIONS(6395), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8702), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8706), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8708), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8712), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181100] = 21, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [232347] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(11550), 1, sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, anon_sym_STAR, - ACTIONS(7330), 1, + ACTIONS(11556), 1, anon_sym_AMP_AMP, - ACTIONS(7332), 1, + ACTIONS(11558), 1, anon_sym_AMP, - STATE(5383), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6075), 1, - sym__declarator, - STATE(7465), 1, - sym_init_declarator, - STATE(8400), 1, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4719), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(10593), 1, sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [181181] = 26, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [232420] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5880), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9294), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181272] = 26, + [232511] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5994), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9296), 1, - anon_sym_COMMA, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181363] = 26, + [232602] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9298), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12453), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181454] = 26, + [232693] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9300), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12455), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181545] = 26, + [232784] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9302), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12177), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181636] = 26, + [232875] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9304), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12457), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181727] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9081), 1, - anon_sym_LBRACE, - STATE(4869), 1, - sym_enumerator_list, - STATE(4922), 1, - sym_attribute_specifier, - ACTIONS(6173), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6175), 28, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181782] = 26, + [232966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9306), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12459), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181873] = 26, + [233057] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9308), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12461), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181964] = 26, + [233148] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9310), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12463), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182055] = 26, + [233239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9312), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12465), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182146] = 26, + [233330] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(6401), 1, + sym_type_specifier, + STATE(7364), 1, + sym_argument_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [233423] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9314), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12467), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182237] = 26, + [233514] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, + sym_identifier, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12471), 1, + anon_sym_enum, + ACTIONS(12473), 1, + anon_sym_typename, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(4599), 1, + sym_type_specifier, + STATE(7307), 1, + sym_argument_list, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [233607] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9316), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182328] = 26, + [233698] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5998), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9318), 1, - anon_sym_RBRACK, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182419] = 26, + [233789] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7395), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7397), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [233838] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9320), 1, - anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12475), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182510] = 26, + [233929] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, + anon_sym_LPAREN2, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, + anon_sym_AMP, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4600), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(11462), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234002] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9322), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182601] = 26, + [234093] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, + anon_sym_STAR, + ACTIONS(11546), 1, + anon_sym_AMP_AMP, + ACTIONS(11548), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8851), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6995), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234164] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, + anon_sym_STAR, + ACTIONS(11546), 1, + anon_sym_AMP_AMP, + ACTIONS(11548), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8852), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6924), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6999), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234235] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11510), 1, + sym_identifier, + ACTIONS(11512), 1, + anon_sym_LPAREN2, + ACTIONS(11514), 1, + anon_sym_STAR, + ACTIONS(11516), 1, + anon_sym_AMP_AMP, + ACTIONS(11518), 1, + anon_sym_AMP, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8240), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234308] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9324), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12477), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182692] = 26, + [234399] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9326), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12479), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182783] = 26, + [234490] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9328), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12481), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182874] = 26, + [234581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11550), 1, + sym_identifier, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(11556), 1, + anon_sym_AMP_AMP, + ACTIONS(11558), 1, + anon_sym_AMP, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4920), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234654] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5901), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9330), 1, - anon_sym_SEMI, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182965] = 26, + [234745] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9332), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12483), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183056] = 26, + [234836] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12487), 1, + anon_sym_enum, + ACTIONS(12489), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_type_specifier, + STATE(7305), 1, + sym_argument_list, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [234929] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9334), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12491), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183147] = 22, + [235020] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4324), 1, - anon_sym_LPAREN2, - ACTIONS(4326), 1, - anon_sym_STAR, - ACTIONS(4328), 1, - anon_sym_AMP_AMP, - ACTIONS(4330), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_LBRACK, - ACTIONS(6003), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - STATE(3096), 1, - sym_parameter_list, - STATE(6011), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, + sym_identifier, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12487), 1, + anon_sym_enum, + ACTIONS(12489), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3405), 1, + sym_type_specifier, + STATE(7315), 1, + sym_argument_list, + STATE(8593), 1, sym__scope_resolution, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6917), 1, - sym__declarator, - STATE(7078), 1, - sym__abstract_declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, + STATE(2063), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [183230] = 26, + sym_splice_expression, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [235113] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9336), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12493), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [235204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8145), 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, - [183321] = 26, + anon_sym_DOT, + ACTIONS(8140), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [235249] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9338), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12495), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183412] = 26, + [235340] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5905), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9340), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183503] = 26, + [235431] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9342), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12497), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183594] = 26, + [235522] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5913), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9344), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183685] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5425), 1, - sym_ms_call_modifier, - STATE(5661), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7471), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [183766] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5382), 1, - sym_ms_call_modifier, - STATE(5786), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7654), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [183847] = 17, + [235613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(8398), 1, - anon_sym_AMP_AMP, - ACTIONS(8400), 1, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7199), 3, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6118), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12393), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183920] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(7201), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, anon_sym_STAR, - ACTIONS(8348), 1, anon_sym_AMP_AMP, - ACTIONS(8350), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2242), 1, - sym__type_declarator, - STATE(8231), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449332,289 +632287,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183993] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235662] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12499), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184084] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6153), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184157] = 26, + [235753] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12501), 1, + anon_sym_RPAREN, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184248] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5428), 1, - sym_ms_call_modifier, - STATE(5969), 1, - sym__scope_resolution, - STATE(6145), 1, - sym__declarator, - STATE(7820), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [184329] = 17, + [235844] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, + ACTIONS(11508), 1, sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11564), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11568), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6134), 1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3540), 1, sym__type_declarator, - STATE(8595), 1, + STATE(10884), 1, sym_ms_based_modifier, - ACTIONS(69), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -449634,1456 +632480,1469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184402] = 26, + [235917] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9346), 1, - anon_sym_RBRACK, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12503), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184493] = 17, + [236008] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6141), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184566] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12505), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8358), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6470), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184639] = 17, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236099] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6461), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184712] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12507), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8358), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6404), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184785] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8402), 1, - anon_sym_STAR, - ACTIONS(8404), 1, - anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6756), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 6, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184856] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8402), 1, - anon_sym_STAR, - ACTIONS(8404), 1, - anon_sym_AMP_AMP, - ACTIONS(8406), 1, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6758), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4800), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 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(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184927] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8402), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12509), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8404), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6748), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184998] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236281] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8402), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12511), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8404), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6759), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185069] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236372] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8402), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12513), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8404), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6751), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185140] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236463] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8402), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12515), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8404), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6745), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4797), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8482), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185211] = 21, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236554] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - ACTIONS(5703), 1, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5369), 1, - sym_ms_call_modifier, - STATE(5747), 1, - sym__declarator, - STATE(5969), 1, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12423), 1, + anon_sym_enum, + ACTIONS(12425), 1, + anon_sym_typename, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(4698), 1, + sym_type_specifier, + STATE(7287), 1, + sym_argument_list, + STATE(8604), 1, sym__scope_resolution, - STATE(7485), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, + STATE(2973), 2, sym_decltype, - sym_template_type, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [185292] = 26, + sym_splice_expression, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [236647] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(5992), 1, anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185383] = 17, + [236738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(5260), 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(5253), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, anon_sym_STAR, - ACTIONS(8398), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6088), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185456] = 26, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [236785] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(11893), 1, anon_sym_bitand, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12517), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185547] = 17, + [236876] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12519), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8310), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8312), 1, - anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6940), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185620] = 17, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236967] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12521), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8310), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8312), 1, - anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6985), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185693] = 17, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237058] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(6004), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8310), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8312), 1, - anon_sym_AMP, - ACTIONS(8318), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6977), 1, - sym__type_declarator, - STATE(8769), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185766] = 26, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237149] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6006), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9348), 1, - anon_sym_RPAREN, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237240] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12170), 1, + anon_sym_requires, + STATE(7415), 1, + sym_ref_qualifier, + STATE(7926), 1, + sym_trailing_return_type, + STATE(8243), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12167), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7601), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [237327] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185857] = 21, + [237418] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6017), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(7328), 1, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(7330), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5377), 1, - sym_ms_call_modifier, - STATE(5730), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7465), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [185938] = 21, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237509] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7328), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12523), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(7330), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5386), 1, - sym_ms_call_modifier, - STATE(5669), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7593), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [186019] = 21, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237600] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7328), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12525), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(7330), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5389), 1, - sym_ms_call_modifier, - STATE(5646), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7706), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [186100] = 17, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237691] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(5844), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8364), 1, - sym_primitive_type, - ACTIONS(8396), 1, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8398), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8400), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(6068), 1, - sym__type_declarator, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(8718), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186173] = 21, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237782] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(7328), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12527), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(7330), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5395), 1, - sym_ms_call_modifier, - STATE(5694), 1, - sym__declarator, - STATE(5969), 1, - sym__scope_resolution, - STATE(7433), 1, - sym_init_declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [186254] = 24, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237873] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9999), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7124), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9183), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9186), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9189), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(4996), 1, + ACTIONS(12532), 1, + anon_sym___asm, + STATE(7432), 1, sym_ref_qualifier, - STATE(5748), 1, + STATE(7917), 1, sym_trailing_return_type, - STATE(5843), 1, + STATE(8006), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(12529), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - STATE(5422), 3, + STATE(7600), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9181), 7, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -451091,161 +633950,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [186341] = 8, + [237960] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(2492), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6243), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5082), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6245), 26, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12535), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238051] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12537), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [186396] = 26, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(5835), 1, anon_sym_RBRACK, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8788), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8794), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8798), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8804), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8810), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8812), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8814), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8816), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238233] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12539), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8784), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8786), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8790), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8792), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8796), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8806), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8800), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8802), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186487] = 16, + [238324] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8340), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(8342), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(8344), 1, + ACTIONS(11548), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6054), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6777), 1, + STATE(8853), 1, sym__abstract_declarator, - ACTIONS(7295), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4820), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8482), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7003), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -451258,105 +634265,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186558] = 16, + [238395] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8340), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12541), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8342), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6790), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8496), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186629] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238486] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8340), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12543), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238577] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11550), 1, + sym_identifier, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, anon_sym_STAR, - ACTIONS(8342), 1, + ACTIONS(11556), 1, anon_sym_AMP_AMP, - ACTIONS(8344), 1, + ACTIONS(11558), 1, anon_sym_AMP, - STATE(1683), 1, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6766), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, + STATE(4664), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4827), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6047), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -451368,576 +634451,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186700] = 26, + [238650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(8860), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12545), 1, + anon_sym_SEMI, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186791] = 4, + [238741] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7980), 1, - sym_literal_suffix, - ACTIONS(4169), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4161), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12547), 1, + anon_sym_RBRACE, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [186838] = 26, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238832] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9350), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(12549), 1, + anon_sym_RBRACK, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186929] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8340), 1, - anon_sym_STAR, - ACTIONS(8342), 1, - anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6775), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5707), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187000] = 26, + [238923] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9352), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12551), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187091] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8340), 1, - anon_sym_STAR, - ACTIONS(8342), 1, - anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6787), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8504), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187162] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8340), 1, - anon_sym_STAR, - ACTIONS(8342), 1, - anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6753), 1, - sym__abstract_declarator, - ACTIONS(7295), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6789), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7288), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187233] = 26, + [239014] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9354), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12553), 1, anon_sym_SEMI, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187324] = 26, + [239105] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9356), 1, - anon_sym_RPAREN, - STATE(2437), 1, + ACTIONS(12555), 1, + anon_sym_RBRACK, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187415] = 17, + [239196] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, + ACTIONS(11508), 1, sym_primitive_type, - ACTIONS(8346), 1, + ACTIONS(11564), 1, anon_sym_STAR, - ACTIONS(8348), 1, + ACTIONS(11566), 1, anon_sym_AMP_AMP, - ACTIONS(8350), 1, + ACTIONS(11568), 1, anon_sym_AMP, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(1911), 1, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(2223), 1, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3490), 1, sym__type_declarator, - STATE(8231), 1, + STATE(10884), 1, sym_ms_based_modifier, - ACTIONS(69), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -451957,554 +634897,831 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187488] = 26, + [239269] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9358), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12557), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187579] = 26, + [239360] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9360), 1, - anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12559), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187670] = 26, + [239451] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12561), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [239542] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9362), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12563), 1, anon_sym_COMMA, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187761] = 26, + [239633] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5925), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9364), 1, - anon_sym_COMMA, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [239724] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6015), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187852] = 26, + [239815] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5933), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - ACTIONS(9366), 1, - anon_sym_COMMA, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [239906] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12565), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187943] = 26, + [239997] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(11869), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, - anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(11891), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(11893), 1, anon_sym_bitand, - ACTIONS(9368), 1, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12567), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_argument_list, - STATE(2476), 1, + STATE(3784), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(11865), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(11873), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(11877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188034] = 25, + [240088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(6389), 1, + ACTIONS(10973), 1, anon_sym_LBRACK, - ACTIONS(6393), 1, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(8478), 1, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8704), 1, + ACTIONS(12003), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(8714), 1, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(8720), 1, + ACTIONS(12019), 1, anon_sym_GT_EQ, - ACTIONS(8728), 1, + ACTIONS(12025), 1, anon_sym_QMARK, - ACTIONS(8730), 1, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(8732), 1, + ACTIONS(12029), 1, anon_sym_bitor, - ACTIONS(8734), 1, + ACTIONS(12031), 1, anon_sym_bitand, - STATE(2437), 1, + STATE(5762), 1, sym_argument_list, - STATE(2476), 1, + STATE(5765), 1, sym_subscript_argument_list, - ACTIONS(6395), 2, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8077), 2, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8700), 2, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240179] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5830), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8702), 2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8706), 2, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8708), 2, + ACTIONS(12007), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8712), 2, + ACTIONS(12011), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8722), 2, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8716), 3, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8718), 3, + ACTIONS(12017), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188122] = 24, + [240270] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(5870), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5013), 1, - sym_ref_qualifier, - STATE(5616), 1, - sym_trailing_return_type, - STATE(5854), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5446), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [188208] = 11, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240361] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(8274), 1, - sym_auto, - ACTIONS(8276), 1, - anon_sym_decltype, - STATE(1626), 1, - sym_template_argument_list, - STATE(4330), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4979), 1, - sym_decltype_auto, - ACTIONS(4159), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(11566), 1, + anon_sym_AMP_AMP, + ACTIONS(11568), 1, anon_sym_AMP, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8272), 4, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(3491), 1, + sym__type_declarator, + STATE(10884), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4167), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452516,220 +635733,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [188268] = 10, + [240434] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - ACTIONS(9379), 1, - anon_sym_COLON, - ACTIONS(9381), 1, - anon_sym_LBRACE, - STATE(5003), 1, - sym__enum_base_clause, - STATE(5021), 1, - sym_enumerator_list, - STATE(5144), 1, - sym_attribute_specifier, - ACTIONS(6565), 2, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(6567), 27, - anon_sym_COMMA, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12569), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [188326] = 6, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240525] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8971), 1, - anon_sym_LT, - STATE(2590), 1, - sym_template_argument_list, - ACTIONS(5971), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4187), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5968), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [188376] = 10, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240616] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - ACTIONS(9379), 1, - anon_sym_COLON, - ACTIONS(9381), 1, - anon_sym_LBRACE, - STATE(5002), 1, - sym__enum_base_clause, - STATE(5035), 1, - sym_enumerator_list, - STATE(5153), 1, - sym_attribute_specifier, - ACTIONS(6571), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6573), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [188434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4940), 1, - sym_attribute_specifier, - ACTIONS(6338), 4, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6340), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [188484] = 6, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12571), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240707] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4946), 1, - sym_attribute_specifier, - ACTIONS(6342), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6344), 29, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8279), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452741,435 +635984,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [188534] = 24, + [240780] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(5053), 1, - sym_ref_qualifier, - STATE(5791), 1, - sym_trailing_return_type, - STATE(6168), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5434), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, + ACTIONS(5970), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [188620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6701), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6703), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240871] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12573), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6693), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6695), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240962] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12575), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6631), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6633), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241053] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12577), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6705), 11, + ACTIONS(11999), 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(6707), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241144] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12579), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6713), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6715), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241235] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12581), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188840] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4967), 1, - sym_attribute_specifier, - ACTIONS(6354), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6356), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [188890] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241326] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6645), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12583), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [188934] = 6, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241417] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4972), 1, - sym_attribute_specifier, - ACTIONS(6272), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6274), 29, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8242), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [188984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4978), 1, - sym_attribute_specifier, - ACTIONS(6284), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6286), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453181,39 +636495,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189034] = 6, + [241490] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4980), 1, - sym_attribute_specifier, - ACTIONS(6288), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6290), 29, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11510), 1, + sym_identifier, + ACTIONS(11512), 1, anon_sym_LPAREN2, + ACTIONS(11514), 1, anon_sym_STAR, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11518), 1, + anon_sym_AMP, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8155), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453225,317 +636551,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189084] = 3, + [241563] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6669), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12585), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [189128] = 7, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241654] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_SEMI, - ACTIONS(5064), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5929), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5935), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(4169), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4161), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12587), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6545), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6547), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241745] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12589), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189224] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(7340), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5362), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6648), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [189302] = 20, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241836] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - STATE(5364), 1, - sym_ms_call_modifier, - STATE(6011), 1, - sym__scope_resolution, - STATE(6887), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [189380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4921), 1, - sym_attribute_specifier, - ACTIONS(6317), 4, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6319), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189430] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 11, + ACTIONS(11322), 1, + sym_literal_suffix, + ACTIONS(5260), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6559), 25, + ACTIONS(5253), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453546,134 +636843,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189474] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4924), 1, - sym_attribute_specifier, - ACTIONS(6334), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6336), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189524] = 6, + [241974] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4925), 1, - sym_attribute_specifier, - ACTIONS(6276), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6278), 29, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, anon_sym_LPAREN2, + ACTIONS(11534), 1, anon_sym_STAR, + ACTIONS(11536), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4927), 1, - sym_attribute_specifier, - ACTIONS(6292), 4, + ACTIONS(11538), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6294), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11542), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4715), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453685,166 +636910,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189624] = 3, + [242047] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5980), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2763), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242138] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12593), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [189668] = 4, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242229] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9383), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6247), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12595), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [242320] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5966), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(6249), 23, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242411] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12597), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189714] = 6, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242502] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4932), 1, - sym_attribute_specifier, - ACTIONS(6346), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6348), 29, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12599), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [189764] = 6, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242593] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - STATE(4933), 1, - sym_attribute_specifier, - ACTIONS(6313), 4, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + STATE(3914), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7017), 3, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_const, - anon_sym___asm, - ACTIONS(6315), 29, + ACTIONS(6688), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7019), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453858,1081 +637343,1305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [189814] = 24, + [242648] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5011), 1, - sym_ref_qualifier, - STATE(5587), 1, - sym_trailing_return_type, - STATE(5804), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5431), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, + ACTIONS(5850), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [189900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6607), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6609), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6617), 11, + ACTIONS(11999), 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(6619), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242739] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6541), 11, + ACTIONS(11999), 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(6543), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242830] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5899), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9388), 1, - anon_sym_COMMA, - ACTIONS(9390), 1, - anon_sym_RBRACK, - ACTIONS(4169), 9, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4161), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12021), 2, 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, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190080] = 3, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242921] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6581), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12601), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243012] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12603), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6585), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6587), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243103] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6729), 11, + ACTIONS(11999), 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(6731), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [190212] = 20, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243194] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(11570), 1, sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(11572), 1, + anon_sym_LPAREN2, + ACTIONS(11574), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(11576), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(11578), 1, anon_sym_AMP, - STATE(5401), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6633), 1, - sym__declarator, - STATE(8233), 1, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4630), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(11462), 1, sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [190290] = 3, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243267] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6000), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6591), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243358] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5852), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [190334] = 24, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243449] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5030), 1, - sym_ref_qualifier, - STATE(5791), 1, - sym_trailing_return_type, - STATE(5911), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5447), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [190420] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5052), 1, - sym_ref_qualifier, - STATE(5748), 1, - sym_trailing_return_type, - STATE(5905), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5430), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [190506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6621), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6623), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12605), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243540] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5854), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [190550] = 5, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243631] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_SEMI, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4169), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12201), 1, anon_sym_SLASH, + ACTIONS(12207), 1, anon_sym_PIPE, + ACTIONS(12211), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12607), 1, + anon_sym_COLON, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12209), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243722] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5848), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(4161), 19, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [190598] = 3, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243813] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5917), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6727), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243904] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12609), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6673), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6675), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243995] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5866), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6717), 11, + ACTIONS(11999), 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(6719), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244086] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12611), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6721), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6723), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244177] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12613), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6639), 11, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 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(6641), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244268] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [190818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6655), 11, + ACTIONS(11999), 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(6657), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [190862] = 20, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244359] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5371), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6728), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [190940] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, + ACTIONS(9997), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9999), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7370), 1, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9189), 1, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5014), 1, + ACTIONS(12170), 1, + anon_sym_requires, + ACTIONS(12532), 1, + anon_sym___asm, + STATE(7422), 1, sym_ref_qualifier, - STATE(5748), 1, + STATE(7926), 1, sym_trailing_return_type, - STATE(6158), 1, + STATE(8012), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(12529), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - STATE(5429), 3, + STATE(7586), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9181), 6, + ACTIONS(7544), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [191026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 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(6504), 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, - [191070] = 3, + [244446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 11, + ACTIONS(11306), 1, + sym_literal_suffix, + ACTIONS(5260), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454943,165 +638652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6508), 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, - [191114] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5380), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6658), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [191192] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5387), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6655), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [191270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6553), 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(6555), 25, + ACTIONS(5253), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455116,103 +638674,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [191314] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5390), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6626), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [191392] = 6, + [244493] = 5, ACTIONS(3), 1, sym_comment, - STATE(2314), 1, + STATE(6476), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5109), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6358), 4, + ACTIONS(7249), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12393), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5212), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(7251), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5215), 21, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455228,11 +638720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [191442] = 3, + [244542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 11, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(5260), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455244,7 +638740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6665), 25, + ACTIONS(5253), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455270,590 +638766,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [191486] = 3, + [244589] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5954), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6679), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [191530] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5396), 1, - sym_ms_call_modifier, - STATE(5997), 1, - sym__scope_resolution, - STATE(6688), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [191608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6512), 11, + ACTIONS(11999), 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(6514), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12011), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [191652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6516), 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(6518), 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, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [191696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6575), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12017), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6577), 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, - [191740] = 16, + [244680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, + ACTIONS(12615), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6720), 5, anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6852), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4908), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8482), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191810] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(1971), 1, - sym_attribute_specifier, - STATE(5412), 1, - sym_field_declaration_list, - STATE(7326), 1, - sym_virtual_specifier, - STATE(8090), 1, - sym_base_class_clause, - ACTIONS(43), 2, - anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5674), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5672), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [191870] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6823), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8496), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191940] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6824), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4911), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192010] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6825), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192080] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, anon_sym_const, - ACTIONS(7936), 1, + anon_sym___asm, + ACTIONS(6722), 30, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6826), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8504), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192150] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7076), 1, - anon_sym_const, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(4131), 1, - sym_alignas_qualifier, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6828), 1, - sym__abstract_declarator, - ACTIONS(7078), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6789), 5, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7063), 12, - anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455865,51 +638863,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192220] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [244727] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5744), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4161), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244818] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12618), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [192264] = 3, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [244909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 11, + ACTIONS(8145), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455921,7 +639019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6563), 25, + ACTIONS(8140), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455933,6 +639031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -455947,94 +639046,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [192308] = 5, + [244954] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9383), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9393), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6199), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5371), 1, + sym_type_specifier, + STATE(7319), 1, + sym_argument_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [245047] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6019), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, anon_sym_SLASH, + ACTIONS(12009), 1, anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12019), 1, anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [245138] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(6201), 21, + ACTIONS(11645), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12620), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245229] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12622), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [192356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 11, + ACTIONS(11999), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [245320] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(3909), 25, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245411] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11891), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11893), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12624), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [192400] = 3, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 11, + ACTIONS(10249), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -456045,8 +639451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6711), 25, + sym_literal_suffix, + ACTIONS(10247), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456061,44 +639474,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [192444] = 7, + [245547] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(8530), 1, - anon_sym_decltype, - ACTIONS(9395), 1, - sym_auto, - STATE(5072), 1, - sym_decltype_auto, - ACTIONS(5661), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5663), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(11572), 1, anon_sym_LPAREN2, + ACTIONS(11574), 1, anon_sym_STAR, + ACTIONS(11576), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11578), 1, + anon_sym_AMP, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(4626), 1, + sym__type_declarator, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(11462), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5356), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456110,272 +639535,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [192496] = 3, + [245620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11885), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6699), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12626), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(11871), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245711] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, anon_sym_QMARK, + ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12029), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12031), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [192540] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9397), 1, - sym_identifier, - ACTIONS(9399), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9403), 1, - anon_sym_EQ, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5735), 1, - sym_ms_declspec_modifier, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9401), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5279), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [192631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5828), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5832), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192717] = 16, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245802] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11510), 1, + sym_identifier, + ACTIONS(11512), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(8510), 1, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(8512), 1, + ACTIONS(11518), 1, anon_sym_AMP, - STATE(1731), 1, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(3482), 1, sym_alignas_qualifier, - STATE(3544), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6909), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, + STATE(8147), 1, + sym__type_declarator, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1701), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8504), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(11520), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8383), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5844), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456387,321 +639721,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192829] = 3, + [245875] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5904), 30, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5765), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5767), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12628), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192915] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [245966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5923), 30, - anon_sym_COMMA, + ACTIONS(10542), 1, anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12630), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [192958] = 3, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246057] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5896), 30, - anon_sym_COMMA, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193001] = 16, + ACTIONS(12634), 1, + anon_sym_enum, + ACTIONS(12636), 1, + anon_sym_typename, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(5387), 1, + sym_type_specifier, + STATE(7298), 1, + sym_argument_list, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [246150] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12638), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8510), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8512), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3544), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6911), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6789), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193070] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246241] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, - anon_sym_STAR, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6861), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8504), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193139] = 16, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12640), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(6208), 4, anon_sym_LPAREN2, - ACTIONS(8432), 1, anon_sym_STAR, - ACTIONS(8434), 1, anon_sym_AMP_AMP, - ACTIONS(8436), 1, + anon_sym_LBRACE, + ACTIONS(6201), 30, anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6894), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -456714,26 +640084,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193208] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [246383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 5, + ACTIONS(6762), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5749), 30, + ACTIONS(6764), 33, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -456748,32 +640127,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [193251] = 3, + [246428] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 5, - anon_sym_AMP, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12387), 1, + anon_sym_enum, + ACTIONS(12389), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, + sym_template_type, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(5241), 1, + sym_type_specifier, + STATE(7303), 1, + sym_argument_list, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12385), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [246521] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(12646), 1, + anon_sym_LBRACE, + STATE(7481), 1, + sym_field_declaration_list, + STATE(7524), 1, + sym_attribute_specifier, + STATE(9451), 1, + sym_virtual_specifier, + STATE(10426), 1, + sym_base_class_clause, + ACTIONS(6826), 2, + anon_sym_AMP, anon_sym_const, - anon_sym___asm, - ACTIONS(5812), 30, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6828), 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -456788,436 +640248,701 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [193294] = 16, + [246584] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12648), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8510), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8512), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3544), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6853), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4963), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8482), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193363] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246675] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12650), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(5044), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246766] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6868), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 4, - anon_sym_COMMA, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12652), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193432] = 3, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246857] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5880), 30, - anon_sym_COMMA, + ACTIONS(5815), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193475] = 24, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [246948] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9999), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7433), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5086), 1, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + STATE(7431), 1, sym_ref_qualifier, - STATE(6174), 1, + STATE(7917), 1, sym_trailing_return_type, - STATE(6321), 1, + STATE(8300), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - STATE(5457), 3, + STATE(7597), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, + ACTIONS(7544), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - [193560] = 6, + anon_sym_EQ, + anon_sym_try, + [247035] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8530), 1, - anon_sym_decltype, - ACTIONS(9395), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, sym_auto, - STATE(5072), 1, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12634), 1, + anon_sym_enum, + ACTIONS(12636), 1, + anon_sym_typename, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(4041), 1, sym_decltype_auto, - ACTIONS(5661), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5663), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5371), 1, + sym_type_specifier, + STATE(7317), 1, + sym_argument_list, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [247128] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [193609] = 16, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247219] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(8432), 1, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12654), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, - ACTIONS(8434), 1, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6929), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [193678] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247310] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5884), 30, - anon_sym_COMMA, + ACTIONS(5939), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193721] = 3, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247401] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5888), 30, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12656), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [193764] = 16, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247492] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(5044), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(5046), 1, + ACTIONS(11548), 1, anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3096), 1, + STATE(4985), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6937), 1, + STATE(8850), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6875), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6789), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, + ACTIONS(6991), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -457230,26 +640955,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193833] = 3, + [247563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 5, + ACTIONS(6746), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5892), 30, + ACTIONS(6751), 33, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457264,32 +640990,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [193876] = 3, + [247608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 5, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(7185), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5713), 30, + ACTIONS(7183), 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, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457304,93 +641033,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [193919] = 24, + [247655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9358), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5128), 1, - sym_ref_qualifier, - STATE(5587), 1, - sym_trailing_return_type, - STATE(6109), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5474), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9360), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194004] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [247700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 5, + STATE(7040), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6798), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5900), 30, + ACTIONS(12443), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6800), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457405,276 +641121,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194047] = 24, + [247749] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5063), 1, - sym_ref_qualifier, - STATE(5844), 1, - sym_trailing_return_type, - STATE(5982), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5482), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [194132] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5066), 1, - sym_ref_qualifier, - STATE(6095), 1, - sym_trailing_return_type, - STATE(6161), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5478), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12658), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194217] = 24, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247840] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5073), 1, - sym_ref_qualifier, - STATE(5822), 1, - sym_trailing_return_type, - STATE(5989), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5465), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [194302] = 24, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12662), 1, + anon_sym_enum, + ACTIONS(12664), 1, + anon_sym_typename, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(4670), 1, + sym_type_specifier, + STATE(7382), 1, + sym_argument_list, + STATE(8624), 1, + sym__scope_resolution, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [247933] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9417), 1, - anon_sym_requires, - STATE(5076), 1, - sym_ref_qualifier, - STATE(6087), 1, - sym_trailing_return_type, - STATE(6165), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5470), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [194387] = 3, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5387), 1, + sym_type_specifier, + STATE(7333), 1, + sym_argument_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [248026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 5, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5908), 30, + ACTIONS(12393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7389), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457689,32 +641362,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194430] = 3, + [248075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 5, + STATE(6854), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7213), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5794), 30, + ACTIONS(12666), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7215), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457729,85 +641406,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194473] = 16, + [248124] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, + ACTIONS(5876), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, - ACTIONS(8492), 1, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6342), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194542] = 3, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 5, + STATE(6476), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7391), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5663), 30, + ACTIONS(12393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7393), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457822,32 +641515,818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194585] = 3, + [248264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 5, + ACTIONS(5996), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248355] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12670), 1, + anon_sym_enum, + ACTIONS(12672), 1, + anon_sym_typename, + STATE(3683), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6443), 1, + sym_type_specifier, + STATE(7387), 1, + sym_argument_list, + STATE(8549), 1, + sym__scope_resolution, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [248448] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12674), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248539] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12676), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248630] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248721] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12678), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248812] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248903] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5784), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248994] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12682), 1, + anon_sym_enum, + ACTIONS(12684), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3395), 1, + sym_type_specifier, + STATE(7328), 1, + sym_argument_list, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249087] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12686), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249178] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12688), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249269] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, anon_sym_LBRACK, + ACTIONS(10977), 1, + anon_sym_DOT, + ACTIONS(11995), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + ACTIONS(12690), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12005), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249360] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6822), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7402), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - anon_sym___asm, - ACTIONS(5713), 30, + ACTIONS(12692), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7404), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457862,32 +642341,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194628] = 3, + [249409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 5, + STATE(6893), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5713), 30, + ACTIONS(12694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7410), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -457902,309 +642385,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [194671] = 24, + [249458] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12670), 1, + anon_sym_enum, + ACTIONS(12672), 1, + anon_sym_typename, + STATE(3683), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6419), 1, + sym_type_specifier, + STATE(7302), 1, + sym_argument_list, + STATE(8549), 1, + sym__scope_resolution, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249551] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12696), 1, + anon_sym_COLON, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, anon_sym_AMP_AMP, - ACTIONS(7061), 1, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249642] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12698), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249733] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5084), 1, - sym_ref_qualifier, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6190), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5480), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12700), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249824] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12662), 1, + anon_sym_enum, + ACTIONS(12664), 1, + anon_sym_typename, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(4832), 1, + sym_type_specifier, + STATE(7327), 1, + sym_argument_list, + STATE(8624), 1, + sym__scope_resolution, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249917] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12702), 1, anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250008] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12201), 1, + anon_sym_SLASH, + ACTIONS(12207), 1, + anon_sym_PIPE, + ACTIONS(12211), 1, + anon_sym_AMP, + ACTIONS(12217), 1, + anon_sym_GT_EQ, + ACTIONS(12223), 1, + anon_sym_QMARK, + ACTIONS(12225), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12227), 1, + anon_sym_bitor, + ACTIONS(12229), 1, + anon_sym_bitand, + ACTIONS(12704), 1, + anon_sym_COLON, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(10971), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12197), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12199), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12203), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12205), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12209), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12213), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12215), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250099] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, + sym_identifier, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(12383), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [194756] = 16, + ACTIONS(12471), 1, + anon_sym_enum, + ACTIONS(12473), 1, + anon_sym_typename, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(4636), 1, + sym_type_specifier, + STATE(7375), 1, + sym_argument_list, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [250192] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(8538), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, + ACTIONS(11548), 1, anon_sym_AMP, - STATE(3056), 1, + STATE(4985), 1, sym_parameter_list, - STATE(4342), 1, + STATE(6485), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6874), 1, + STATE(8837), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6789), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(4931), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4938), 28, + ACTIONS(6497), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [194874] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5123), 1, - sym_ref_qualifier, - STATE(6095), 1, - sym_trailing_return_type, - STATE(6345), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5475), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [194959] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6331), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(4187), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5971), 28, - anon_sym_AMP, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -458216,53 +642968,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - [195077] = 16, + [250263] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11544), 1, anon_sym_STAR, - ACTIONS(8510), 1, + ACTIONS(11546), 1, anon_sym_AMP_AMP, - ACTIONS(8512), 1, + ACTIONS(11548), 1, anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3544), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6273), 1, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6882), 1, + STATE(8838), 1, sym__abstract_declarator, - ACTIONS(8522), 2, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1701), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8496), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(7007), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11421), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -458275,387 +643023,1072 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195146] = 4, + [250334] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_SEMI, - ACTIONS(4169), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, anon_sym_SLASH, + ACTIONS(11875), 1, anon_sym_PIPE, + ACTIONS(11879), 1, anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12706), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [250425] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 1, + anon_sym_RBRACK, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + ACTIONS(10973), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, anon_sym_DOT, - ACTIONS(4161), 25, + ACTIONS(11995), 1, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + ACTIONS(12003), 1, + anon_sym_SLASH, + ACTIONS(12009), 1, + anon_sym_PIPE, + ACTIONS(12013), 1, + anon_sym_AMP, + ACTIONS(12019), 1, + anon_sym_GT_EQ, + ACTIONS(12025), 1, + anon_sym_QMARK, + ACTIONS(12027), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12029), 1, + anon_sym_bitor, + ACTIONS(12031), 1, + anon_sym_bitand, + STATE(5762), 1, + sym_argument_list, + STATE(5765), 1, + sym_subscript_argument_list, + ACTIONS(10979), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11999), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12005), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12007), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12011), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12021), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12033), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12017), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250516] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12708), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250607] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12710), 1, + anon_sym_RPAREN, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(11877), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250698] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12712), 1, + anon_sym_COLON_RBRACK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250789] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12714), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [195191] = 3, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250880] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5836), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12716), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195234] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250971] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(12682), 1, + anon_sym_enum, + ACTIONS(12684), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3405), 1, + sym_type_specifier, + STATE(7380), 1, + sym_argument_list, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [251064] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5927), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12718), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195277] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251155] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5848), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12720), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195320] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251246] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5852), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12722), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195363] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251337] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5782), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12724), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195406] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251428] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5816), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12726), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195449] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251519] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5860), 30, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12728), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251610] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12730), 1, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195492] = 3, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251701] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5868), 30, - anon_sym_COMMA, + ACTIONS(8808), 1, anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + ACTIONS(12732), 1, + anon_sym_SEMI, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195535] = 3, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 5, + STATE(6871), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7239), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(5872), 30, + ACTIONS(12734), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7241), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -458670,52 +644103,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [195578] = 16, + [251841] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8488), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8490), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8492), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8494), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(4342), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3482), 1, sym_alignas_qualifier, - STATE(6364), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, + STATE(8291), 1, + sym__type_declarator, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(3351), 2, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(3090), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -458729,27 +644164,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195647] = 3, + [251914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 5, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2848), 1, + sym_template_argument_list, + ACTIONS(6746), 4, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, - ACTIONS(5820), 30, + ACTIONS(6751), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -458763,153 +644203,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [195690] = 3, + [251964] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5840), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2998), 1, + sym__class_declaration, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym_ms_declspec_modifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7711), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7342), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252056] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3002), 1, + sym__class_declaration, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym_ms_declspec_modifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195733] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7711), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7342), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252148] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5717), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4379), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252240] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195776] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4379), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252332] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5721), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4379), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252424] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3003), 1, + sym__class_declaration, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym_ms_declspec_modifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195819] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7711), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7342), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 5, + ACTIONS(9452), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5856), 30, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9454), 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, + [252560] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8859), 1, + sym__abstract_declarator, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7150), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6991), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -458921,95 +644693,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [252630] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7727), 1, + sym_ms_declspec_modifier, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7743), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7369), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252722] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7727), 1, + sym_ms_declspec_modifier, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195862] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7743), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7369), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252814] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5725), 30, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7727), 1, + sym_ms_declspec_modifier, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7743), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7369), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252906] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2998), 1, + sym__class_declaration, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(7728), 1, + sym_ms_declspec_modifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [195905] = 16, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7688), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7363), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252998] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8510), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8512), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(1731), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3544), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6895), 1, + STATE(8861), 1, sym__abstract_declarator, - ACTIONS(8522), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4923), 2, + STATE(7239), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 4, + ACTIONS(6999), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -459022,1137 +645007,1636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195974] = 3, + [253068] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(5717), 30, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + STATE(7917), 1, + sym_trailing_return_type, + STATE(7957), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7546), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [253148] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(7476), 1, + sym_ref_qualifier, + STATE(8437), 1, + sym__function_attributes_end, + STATE(8438), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7618), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___extension__, + anon_sym_COLON, + anon_sym_LBRACE, + [253234] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4370), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253326] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4386), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253418] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196017] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4386), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253510] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 5, - anon_sym_AMP, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4386), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9480), 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(9482), 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_const, - anon_sym___asm, - ACTIONS(5864), 30, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9554), 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(9556), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253690] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196060] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5042), 1, - anon_sym_STAR, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6859), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196129] = 24, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4387), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253782] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - STATE(5105), 1, - sym_ref_qualifier, - STATE(5844), 1, - sym_trailing_return_type, - STATE(6275), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4387), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5481), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [196214] = 24, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253874] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5140), 1, - sym_ref_qualifier, - STATE(5616), 1, - sym_trailing_return_type, - STATE(6092), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4387), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5454), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [196299] = 3, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 5, + ACTIONS(9503), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5771), 30, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9505), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [254010] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3002), 1, + sym__class_declaration, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(7728), 1, + sym_ms_declspec_modifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196342] = 16, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7688), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7363), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [254102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(8208), 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(3888), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5042), 1, anon_sym_STAR, - ACTIONS(5044), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6881), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4992), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8482), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196411] = 16, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [254146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(9375), 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(9377), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8508), 1, anon_sym_STAR, - ACTIONS(8510), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8512), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3544), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6908), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196480] = 24, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [254190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9527), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(5122), 1, - sym_ref_qualifier, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6351), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5473), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9529), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [196565] = 24, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, + [254234] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9417), 1, - anon_sym_requires, - STATE(5139), 1, - sym_ref_qualifier, - STATE(6087), 1, - sym_trailing_return_type, - STATE(6384), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3003), 1, + sym__class_declaration, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(7728), 1, + sym_ms_declspec_modifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7688), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5455), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [196650] = 16, + STATE(7363), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [254326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(9507), 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(9509), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5042), 1, anon_sym_STAR, - ACTIONS(5044), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 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_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6865), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8496), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196719] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [254370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 5, + ACTIONS(9546), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5824), 30, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9548), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [254414] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [196762] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(3056), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6878), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196831] = 16, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [254506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, + ACTIONS(9436), 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(9438), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8432), 1, anon_sym_STAR, - ACTIONS(8434), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6855), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(3351), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6598), 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(3349), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196900] = 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_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, + [254550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(9425), 1, - anon_sym___attribute__, - ACTIONS(9428), 1, - anon_sym___attribute, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5731), 1, - sym_trailing_return_type, - STATE(5845), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5423), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 7, + ACTIONS(9436), 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(9438), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [196978] = 16, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, + [254594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(9444), 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(9446), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, anon_sym_STAR, - ACTIONS(8599), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8601), 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_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, + [254638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9507), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6953), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8496), 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9509), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197046] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, anon_sym_STAR, - ACTIONS(8599), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8601), 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_GT2, + [254682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9511), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6960), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9513), 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, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197114] = 21, + [254726] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9425), 1, - anon_sym___attribute__, - ACTIONS(9428), 1, - anon_sym___attribute, - ACTIONS(9431), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - STATE(5863), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4395), 1, + sym__class_declaration, + STATE(4400), 1, + sym__class_declaration_item, + STATE(7130), 1, + sym_splice_specifier, + STATE(7697), 1, + sym_ms_declspec_modifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7699), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5366), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [197192] = 25, + STATE(7304), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [254818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1874), 1, - anon_sym_enum, - ACTIONS(1876), 1, - anon_sym_class, - ACTIONS(1878), 1, - anon_sym_struct, - ACTIONS(1880), 1, - anon_sym_union, - ACTIONS(1882), 1, - anon_sym_typename, - ACTIONS(2829), 1, - sym_primitive_type, - ACTIONS(5048), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9399), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9403), 1, - anon_sym_EQ, - ACTIONS(9442), 1, + ACTIONS(12750), 1, sym_identifier, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2471), 1, - sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2915), 1, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4400), 1, + sym__class_declaration_item, + STATE(4408), 1, + sym__class_declaration, + STATE(7130), 1, + sym_splice_specifier, + STATE(7697), 1, + sym_ms_declspec_modifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3858), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2970), 1, + STATE(4170), 2, sym_template_type, - STATE(6840), 1, - sym__scope_resolution, - STATE(9058), 1, + sym_splice_type_specifier, + STATE(7699), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7304), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(9401), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [197278] = 24, + sym_splice_expression, + [254910] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9444), 1, - anon_sym_requires, - STATE(5220), 1, - sym_ref_qualifier, - STATE(6428), 1, - sym_trailing_return_type, - STATE(6459), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4400), 1, + sym__class_declaration_item, + STATE(4411), 1, + sym__class_declaration, + STATE(7130), 1, + sym_splice_specifier, + STATE(7697), 1, + sym_ms_declspec_modifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7699), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5495), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [197362] = 8, + STATE(7304), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - ACTIONS(9381), 1, - anon_sym_LBRACE, - STATE(5018), 1, - sym_enumerator_list, - STATE(5078), 1, - sym_attribute_specifier, - ACTIONS(6173), 2, + ACTIONS(9531), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6175), 27, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9533), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [197414] = 8, + [255046] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9153), 1, anon_sym___attribute, - ACTIONS(9381), 1, - anon_sym_LBRACE, - STATE(5026), 1, - sym_enumerator_list, - STATE(5096), 1, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4370), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, sym_attribute_specifier, - ACTIONS(6225), 2, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(12116), 1, + anon_sym_LT, + STATE(4211), 1, + sym_template_argument_list, + ACTIONS(6746), 4, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(6227), 27, + ACTIONS(6751), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -460166,381 +646650,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [197466] = 16, + [255188] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, - anon_sym_STAR, - ACTIONS(8599), 1, - anon_sym_AMP_AMP, - ACTIONS(8601), 1, - anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6949), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2998), 1, + sym__class_declaration, + STATE(3001), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(7750), 1, + sym_ms_declspec_modifier, + STATE(8564), 1, + sym__scope_resolution, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5707), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197534] = 16, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7338), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255280] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, - anon_sym_STAR, - ACTIONS(8599), 1, - anon_sym_AMP_AMP, - ACTIONS(8601), 1, - anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6957), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3002), 1, + sym__class_declaration, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(7750), 1, + sym_ms_declspec_modifier, + STATE(8564), 1, + sym__scope_resolution, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6789), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197602] = 21, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7338), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255372] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9183), 1, - anon_sym___attribute__, - ACTIONS(9186), 1, - anon_sym___attribute, - ACTIONS(9189), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(5791), 1, - sym_trailing_return_type, - STATE(5862), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3001), 1, + sym__class_declaration_item, + STATE(3003), 1, + sym__class_declaration, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(7750), 1, + sym_ms_declspec_modifier, + STATE(8564), 1, + sym__scope_resolution, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5352), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [197680] = 16, + STATE(7338), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(9432), 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(9434), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, anon_sym_STAR, - ACTIONS(8599), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8601), 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_GT2, + [255508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9511), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6964), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4997), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8482), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9513), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197748] = 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [255552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(9183), 1, - anon_sym___attribute__, - ACTIONS(9186), 1, - anon_sym___attribute, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5748), 1, - sym_trailing_return_type, - STATE(5843), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5422), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 7, + ACTIONS(9558), 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(9560), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [197826] = 24, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [255596] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5216), 1, - sym_ref_qualifier, - STATE(6420), 1, - sym_trailing_return_type, - STATE(6466), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4370), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5490), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [197910] = 16, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255688] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8599), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8601), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6978), 1, + STATE(8877), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8504), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(6497), 5, anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -460553,661 +647093,602 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197978] = 21, + [255758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - STATE(5870), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5432), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, + ACTIONS(9554), 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(9556), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [198055] = 21, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [255802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5587), 1, - sym_trailing_return_type, - STATE(5804), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5431), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, + ACTIONS(9391), 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(9393), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [198132] = 21, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [255846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(9434), 1, + ACTIONS(9523), 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(9525), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(9447), 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, + [255890] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5624), 1, - sym_trailing_return_type, - STATE(5855), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4313), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5440), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [198209] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255982] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5731), 1, - sym_trailing_return_type, - STATE(6133), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4313), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5442), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [198286] = 9, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256074] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, - STATE(1946), 1, - sym_attribute_specifier, - STATE(5257), 1, - sym__enum_base_clause, - STATE(5415), 1, - sym_enumerator_list, - ACTIONS(43), 2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6573), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6571), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [198339] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, - anon_sym_STAR, - ACTIONS(8668), 1, - anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7056), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8496), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198406] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, - anon_sym_STAR, - ACTIONS(8668), 1, - anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4313), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7060), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8500), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(5024), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198473] = 6, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5095), 1, - sym_attribute_specifier, - ACTIONS(6346), 2, + ACTIONS(9546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6348), 28, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9548), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [198520] = 24, + [256210] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9444), 1, - anon_sym_requires, - STATE(5337), 1, - sym_ref_qualifier, - STATE(6327), 1, - sym__function_attributes_end, - STATE(6428), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4314), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5526), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [198603] = 11, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256302] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_LT, - ACTIONS(9463), 1, - sym_auto, - ACTIONS(9465), 1, + ACTIONS(2062), 1, anon_sym_decltype, - STATE(1626), 1, - sym_template_argument_list, - STATE(1947), 1, - sym_decltype_auto, - STATE(5325), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4167), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(9461), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4159), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - [198660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9151), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9153), 1, anon_sym___attribute, - STATE(5092), 1, - sym_attribute_specifier, - ACTIONS(6272), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6274), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [198707] = 24, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4314), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256394] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(5343), 1, - sym_ref_qualifier, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6371), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4314), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5521), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [198790] = 16, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256486] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8668), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8670), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(7012), 1, + STATE(8868), 1, sym__abstract_declarator, - ACTIONS(5707), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8217), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4159), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + ACTIONS(7007), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -461220,45 +647701,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198857] = 16, + [256556] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8668), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8670), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(6273), 1, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, sym__function_declarator_seq, - STATE(7008), 1, + STATE(8879), 1, sym__abstract_declarator, - ACTIONS(8217), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8504), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4159), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + ACTIONS(6995), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8209), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -461271,3370 +647755,3655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198924] = 6, + [256626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5109), 1, - sym_attribute_specifier, - ACTIONS(6313), 2, + ACTIONS(9428), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6315), 28, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9430), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [198971] = 6, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [256670] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5091), 1, - sym_attribute_specifier, - ACTIONS(6334), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6336), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4395), 1, + sym__class_declaration, + STATE(4400), 1, + sym__class_declaration_item, + STATE(7712), 1, + sym_ms_declspec_modifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [199018] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9408), 1, anon_sym___attribute, - STATE(5315), 1, - sym_ref_qualifier, - STATE(6174), 1, - sym_trailing_return_type, - STATE(6334), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5523), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [199101] = 7, + STATE(7323), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256762] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - STATE(5325), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6245), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(6243), 25, - anon_sym_AMP, - anon_sym___extension__, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4400), 1, + sym__class_declaration_item, + STATE(4408), 1, + sym__class_declaration, + STATE(7712), 1, + sym_ms_declspec_modifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [199150] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5791), 1, - sym_trailing_return_type, - STATE(5911), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5447), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [199227] = 21, + STATE(7323), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256854] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5734), 1, - sym_trailing_return_type, - STATE(5912), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(9436), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4400), 1, + sym__class_declaration_item, + STATE(4411), 1, + sym__class_declaration, + STATE(7712), 1, + sym_ms_declspec_modifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5438), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, + STATE(7323), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 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(5253), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [199304] = 24, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [256990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9562), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - STATE(5294), 1, - sym_ref_qualifier, - STATE(5616), 1, - sym_trailing_return_type, - STATE(6464), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9564), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5518), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [199387] = 6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, + [257034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(5971), 4, + ACTIONS(9432), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4187), 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9434), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [199434] = 9, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [257078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(9459), 1, - anon_sym_COLON, - STATE(1965), 1, - sym_attribute_specifier, - STATE(5256), 1, - sym__enum_base_clause, - STATE(5411), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6567), 3, + ACTIONS(9566), 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(9568), 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, - ACTIONS(6565), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [199487] = 24, + 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, + [257122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9375), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5310), 1, - sym_ref_qualifier, - STATE(6318), 1, - sym__function_attributes_end, - STATE(6420), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9377), 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, - STATE(5498), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [199570] = 6, + [257166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5075), 1, - sym_attribute_specifier, - ACTIONS(6317), 2, + ACTIONS(9558), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6319), 28, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9560), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [199617] = 24, + [257210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(9519), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5305), 1, - sym_ref_qualifier, - STATE(5587), 1, - sym_trailing_return_type, - STATE(6483), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5509), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [199700] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9521), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, anon_sym_STAR, - ACTIONS(8668), 1, - anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7022), 1, - sym__abstract_declarator, - ACTIONS(6789), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199767] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5313), 1, - sym_ref_qualifier, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6173), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5530), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [199850] = 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [257254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(9467), 1, - anon_sym_COLON, - STATE(1965), 1, - sym_attribute_specifier, - STATE(2395), 1, - sym__enum_base_clause, - STATE(2517), 1, - sym_enumerator_list, - ACTIONS(6565), 2, + ACTIONS(9538), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6567), 24, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9540), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [199905] = 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [257298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 1, - anon_sym___attribute__, - ACTIONS(6217), 1, - anon_sym___attribute, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(9467), 1, - anon_sym_COLON, - STATE(1946), 1, - sym_attribute_specifier, - STATE(2328), 1, - sym__enum_base_clause, - STATE(2418), 1, - sym_enumerator_list, - ACTIONS(6571), 2, + ACTIONS(9420), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6573), 24, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9422), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [199960] = 6, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [257342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5152), 1, - sym_attribute_specifier, - ACTIONS(6354), 2, + ACTIONS(9480), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6356), 28, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9482), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200007] = 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [257386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym___attribute__, - ACTIONS(6595), 1, - anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(9469), 1, - anon_sym_COLON, - STATE(2681), 1, - sym__enum_base_clause, - STATE(2723), 1, - sym_enumerator_list, - STATE(2810), 1, - sym_attribute_specifier, - ACTIONS(6571), 2, + ACTIONS(9379), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6573), 24, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9381), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [200062] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [257430] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5616), 1, - sym_trailing_return_type, - STATE(5854), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4330), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5446), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [200139] = 6, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257522] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9153), 1, anon_sym___attribute, - STATE(5089), 1, - sym_attribute_specifier, - ACTIONS(6338), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6340), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200186] = 21, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4330), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257614] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5748), 1, - sym_trailing_return_type, - STATE(6158), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4330), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5429), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [200263] = 11, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257706] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - ACTIONS(9477), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5297), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6463), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5056), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5122), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257798] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(5124), 4, - anon_sym_AMP, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, - ACTIONS(9474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6458), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [200320] = 10, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(6595), 1, anon_sym___attribute, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(9469), 1, - anon_sym_COLON, - STATE(2673), 1, - sym__enum_base_clause, - STATE(2699), 1, - sym_enumerator_list, - STATE(2790), 1, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, sym_attribute_specifier, - ACTIONS(6565), 2, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9416), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6567), 24, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9418), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [200375] = 16, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [258026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_const, - ACTIONS(5040), 1, + ACTIONS(9412), 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(9414), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, anon_sym_STAR, - ACTIONS(8668), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8670), 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_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, + [258070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9542), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(4342), 1, - sym_alignas_qualifier, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7040), 1, - sym__abstract_declarator, - ACTIONS(8217), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8482), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(5016), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8209), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [200442] = 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9544), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [258114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5125), 1, - sym_attribute_specifier, - ACTIONS(6276), 2, + ACTIONS(9379), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6278), 28, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9381), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [258158] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + ACTIONS(9236), 1, + anon_sym_LBRACK, + ACTIONS(9240), 1, + anon_sym_DOT, + ACTIONS(11645), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11869), 1, + anon_sym_SLASH, + ACTIONS(11875), 1, + anon_sym_PIPE, + ACTIONS(11879), 1, + anon_sym_AMP, + ACTIONS(11885), 1, + anon_sym_GT_EQ, + ACTIONS(11889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11891), 1, + anon_sym_bitor, + ACTIONS(11893), 1, + anon_sym_bitand, + ACTIONS(11900), 1, + anon_sym_QMARK, + STATE(3784), 1, + sym_subscript_argument_list, + STATE(3786), 1, + sym_argument_list, + ACTIONS(9242), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11359), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11865), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11867), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(11871), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11873), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11881), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [258246] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200489] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(7354), 1, anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(5791), 1, - sym_trailing_return_type, - STATE(6168), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4346), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5434), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [200566] = 6, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258338] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5108), 1, - sym_attribute_specifier, - ACTIONS(6284), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6286), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200613] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(7354), 1, anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5731), 1, - sym_trailing_return_type, - STATE(5907), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4346), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5436), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [200690] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258430] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - STATE(6142), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4346), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5439), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [200767] = 6, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, - anon_sym___attribute__, - ACTIONS(9153), 1, - anon_sym___attribute, - STATE(5080), 1, - sym_attribute_specifier, - ACTIONS(6292), 2, + ACTIONS(9566), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(6294), 28, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9568), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200814] = 6, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [258566] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9153), 1, anon_sym___attribute, - STATE(5116), 1, - sym_attribute_specifier, - ACTIONS(6288), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6290), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200861] = 11, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4347), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258658] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - ACTIONS(9486), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(5285), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6369), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5137), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4347), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258750] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(5139), 4, - anon_sym_AMP, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, - ACTIONS(9483), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6364), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [200918] = 6, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4347), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258842] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9151), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2097), 1, + sym__class_declaration, + STATE(2134), 1, + sym__class_declaration_item, + STATE(7751), 1, + sym_ms_declspec_modifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - ACTIONS(9153), 1, anon_sym___attribute, - STATE(5094), 1, - sym_attribute_specifier, - ACTIONS(6342), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6344), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200965] = 4, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7691), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7293), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258934] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(5661), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5663), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2107), 1, + sym__class_declaration, + STATE(2134), 1, + sym__class_declaration_item, + STATE(7751), 1, + sym_ms_declspec_modifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201008] = 21, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7691), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7293), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259026] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5748), 1, - sym_trailing_return_type, - STATE(5905), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2108), 1, + sym__class_declaration, + STATE(2134), 1, + sym__class_declaration_item, + STATE(7751), 1, + sym_ms_declspec_modifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7691), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5430), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [201085] = 3, + STATE(7293), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 3, + ACTIONS(9562), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5686), 30, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9564), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201126] = 24, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [259162] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5303), 1, - sym_ref_qualifier, - STATE(5844), 1, - sym_trailing_return_type, - STATE(6221), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4352), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5501), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [201209] = 24, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259254] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9489), 1, - sym_identifier, - ACTIONS(9491), 1, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(9495), 1, - sym_primitive_type, - ACTIONS(9497), 1, - anon_sym_enum, - ACTIONS(9499), 1, - anon_sym_class, - ACTIONS(9501), 1, - anon_sym_struct, - ACTIONS(9503), 1, - anon_sym_union, - ACTIONS(9505), 1, - sym_auto, - ACTIONS(9507), 1, - anon_sym_decltype, - ACTIONS(9509), 1, - anon_sym_typename, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2848), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, sym_template_type, - STATE(2893), 1, + sym_splice_type_specifier, + STATE(4352), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2996), 1, - sym_type_specifier, - STATE(3178), 1, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(3245), 1, - sym_decltype_auto, - STATE(5317), 1, - sym_argument_list, - STATE(6809), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3248), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201291] = 21, + sym_splice_expression, + [259346] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5846), 1, - sym_trailing_return_type, - STATE(5983), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4352), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5472), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [201367] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259438] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(6095), 1, - sym_trailing_return_type, - STATE(6161), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4353), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5478), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [201443] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259530] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6174), 1, - sym_trailing_return_type, - STATE(6321), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4353), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5457), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [201519] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259622] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - STATE(6082), 1, - sym_trailing_return_type, - STATE(6162), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5479), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [201595] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4353), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 3, + ACTIONS(9570), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5820), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9572), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201635] = 24, + [259758] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9517), 1, - anon_sym_requires, - STATE(5359), 1, - sym_ref_qualifier, - STATE(6526), 1, - sym__function_attributes_end, - STATE(6716), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(9194), 2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8193), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3380), 1, + sym__class_declaration, + STATE(3381), 1, + sym__class_declaration_item, + STATE(7760), 1, + sym_ms_declspec_modifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7767), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5536), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [201717] = 24, + STATE(7343), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259850] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8193), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4045), 1, - sym_type_specifier, - STATE(5283), 1, - sym_argument_list, - STATE(6834), 1, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3381), 1, + sym__class_declaration_item, + STATE(3382), 1, + sym__class_declaration, + STATE(7760), 1, + sym_ms_declspec_modifier, + STATE(8588), 1, sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [201799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5862), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5864), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201839] = 21, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7767), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7343), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [259942] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - STATE(5989), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8193), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3381), 1, + sym__class_declaration_item, + STATE(3386), 1, + sym__class_declaration, + STATE(7760), 1, + sym_ms_declspec_modifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7767), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5465), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, + STATE(7343), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9527), 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(9529), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [201915] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [260078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 3, + ACTIONS(9531), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5767), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9533), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201955] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [260122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - STATE(5990), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9436), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4359), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5466), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [202031] = 21, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260214] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9417), 1, - anon_sym_requires, - STATE(6087), 1, - sym_trailing_return_type, - STATE(6165), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4359), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5470), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [202107] = 3, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260306] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5828), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202147] = 21, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4359), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - ACTIONS(9542), 1, - anon_sym_requires, - STATE(6084), 1, - sym_trailing_return_type, - STATE(6166), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4360), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5471), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [202223] = 24, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260490] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, sym_template_type, - STATE(2315), 1, + sym_splice_type_specifier, + STATE(4360), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(4039), 1, - sym_type_specifier, - STATE(5286), 1, - sym_argument_list, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [202305] = 3, + sym_splice_expression, + [260582] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5832), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202345] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4360), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [260674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 3, + ACTIONS(9420), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5880), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9422), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202385] = 3, + [260718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 3, + ACTIONS(8208), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5923), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3888), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202425] = 3, + [260762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 3, + ACTIONS(9416), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5840), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9418), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202465] = 3, + [260806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 3, + ACTIONS(9542), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5713), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9544), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202505] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9489), 1, - sym_identifier, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9495), 1, - sym_primitive_type, - ACTIONS(9497), 1, - anon_sym_enum, - ACTIONS(9499), 1, - anon_sym_class, - ACTIONS(9501), 1, - anon_sym_struct, - ACTIONS(9503), 1, - anon_sym_union, - ACTIONS(9505), 1, - sym_auto, - ACTIONS(9507), 1, - anon_sym_decltype, - ACTIONS(9509), 1, - anon_sym_typename, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2848), 1, - sym_template_type, - STATE(2893), 1, - sym_qualified_type_identifier, - STATE(2924), 1, - sym_type_specifier, - STATE(3178), 1, - sym_decltype, - STATE(3245), 1, - sym_decltype_auto, - STATE(5300), 1, - sym_argument_list, - STATE(6809), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3248), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [202587] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - STATE(6256), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5461), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [202663] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [260850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 3, + ACTIONS(9515), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5896), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9517), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 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, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6180), 1, - sym_trailing_return_type, - STATE(6299), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5463), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [202779] = 3, + [260894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 3, + ACTIONS(9391), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5860), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9393), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202819] = 24, + [260938] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9545), 1, - sym_identifier, - ACTIONS(9547), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(9551), 1, - sym_primitive_type, - ACTIONS(9553), 1, - anon_sym_enum, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9565), 1, - anon_sym_typename, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, + ACTIONS(12760), 1, + sym_identifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3967), 1, + sym__class_declaration_item, + STATE(3992), 1, + sym__class_declaration, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(7718), 1, + sym_ms_declspec_modifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3624), 2, sym_template_type, - STATE(2208), 1, + sym_splice_type_specifier, + STATE(3851), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2224), 1, - sym_type_specifier, - STATE(2286), 1, + STATE(7702), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7347), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(5347), 1, - sym_argument_list, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [202901] = 3, + sym_splice_expression, + [261030] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5884), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3967), 1, + sym__class_declaration_item, + STATE(4014), 1, + sym__class_declaration, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(7718), 1, + sym_ms_declspec_modifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [202941] = 21, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7702), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7347), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6095), 1, - sym_trailing_return_type, - STATE(6345), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3946), 1, + sym__class_declaration, + STATE(3967), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(7718), 1, + sym_ms_declspec_modifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5475), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [203017] = 3, + STATE(7347), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 3, + ACTIONS(5260), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5844), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5253), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203057] = 3, + [261258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 3, + ACTIONS(9499), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5868), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9501), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203097] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5384), 1, - sym_ref_qualifier, - STATE(6522), 1, - sym__function_attributes_end, - STATE(6678), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5553), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [203179] = 3, + anon_sym_GT2, + [261302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 3, + ACTIONS(9412), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5900), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9414), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203219] = 3, + [261346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(11693), 1, + anon_sym_decltype, + ACTIONS(12762), 1, + sym_auto, + STATE(7536), 1, + sym_decltype_auto, + ACTIONS(6798), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5749), 29, + ACTIONS(6800), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -464664,252 +651433,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [203259] = 3, + [261398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5872), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3083), 1, + sym__class_declaration, + STATE(3113), 1, + sym__class_declaration_item, + STATE(7738), 1, + sym_ms_declspec_modifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203299] = 24, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7717), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7344), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261490] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4143), 1, - sym_type_specifier, - STATE(5323), 1, - sym_argument_list, - STATE(6834), 1, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3113), 1, + sym__class_declaration_item, + STATE(3136), 1, + sym__class_declaration, + STATE(7738), 1, + sym_ms_declspec_modifier, + STATE(8604), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7717), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7344), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203381] = 3, + sym_splice_expression, + [261582] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5892), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3022), 1, + sym__class_declaration, + STATE(3113), 1, + sym__class_declaration_item, + STATE(7738), 1, + sym_ms_declspec_modifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203421] = 24, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7717), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7344), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261674] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8115), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9567), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12766), 1, sym_identifier, - ACTIONS(9569), 1, + ACTIONS(12768), 1, anon_sym_COLON_COLON, - ACTIONS(9573), 1, - anon_sym_enum, - ACTIONS(9575), 1, - anon_sym_class, - ACTIONS(9577), 1, - anon_sym_struct, - ACTIONS(9579), 1, - anon_sym_union, - ACTIONS(9581), 1, - anon_sym_typename, - STATE(2298), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2572), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7771), 1, + sym_ms_declspec_modifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, sym_template_type, - STATE(2619), 1, + sym_splice_type_specifier, + STATE(7772), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2742), 1, + STATE(7321), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4392), 1, - sym_type_specifier, - STATE(5322), 1, - sym_argument_list, - STATE(6808), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203503] = 3, + sym_splice_expression, + [261766] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5908), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4680), 1, + sym__class_declaration, + STATE(4691), 1, + sym_splice_specifier, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7771), 1, + sym_ms_declspec_modifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7772), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7321), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261858] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4684), 1, + sym__class_declaration, + STATE(4691), 1, + sym_splice_specifier, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7771), 1, + sym_ms_declspec_modifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203543] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7772), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7321), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [261950] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 3, - anon_sym_AMP, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9027), 1, + anon_sym_LBRACE, + STATE(3082), 1, + sym_attribute_specifier, + STATE(7611), 1, + sym_field_declaration_list, + STATE(9373), 1, + sym_virtual_specifier, + STATE(10347), 1, + sym_base_class_clause, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - ACTIONS(5717), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6828), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6826), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464923,1013 +651870,750 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203583] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9583), 1, - sym_identifier, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9589), 1, sym_primitive_type, - ACTIONS(9591), 1, - anon_sym_enum, - ACTIONS(9593), 1, - anon_sym_class, - ACTIONS(9595), 1, - anon_sym_struct, - ACTIONS(9597), 1, - anon_sym_union, - ACTIONS(9599), 1, - sym_auto, - ACTIONS(9601), 1, - anon_sym_decltype, - ACTIONS(9603), 1, - anon_sym_typename, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2929), 1, - sym_template_type, - STATE(3040), 1, - sym_qualified_type_identifier, - STATE(3041), 1, - sym_type_specifier, - STATE(3265), 1, - sym_decltype, - STATE(3429), 1, - sym_decltype_auto, - STATE(5274), 1, - sym_argument_list, - STATE(6848), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203665] = 24, + sym_identifier, + [262010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(10236), 1, + sym_literal_suffix, + ACTIONS(5260), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5357), 1, - sym_ref_qualifier, - STATE(6174), 1, - sym_trailing_return_type, - STATE(6599), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9181), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_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(5253), 19, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5554), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [203747] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7059), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(5356), 1, - sym_ref_qualifier, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6610), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5538), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [203829] = 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [262058] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7428), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(7470), 1, + ACTIONS(10478), 1, anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - STATE(5846), 1, - sym_trailing_return_type, - STATE(6178), 1, + STATE(7486), 1, + sym_ref_qualifier, + STATE(8454), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8456), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - STATE(5456), 3, + STATE(7616), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9423), 5, + ACTIONS(7544), 6, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [203905] = 24, + [262144] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9547), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9605), 1, + ACTIONS(12646), 1, + anon_sym_LBRACE, + ACTIONS(12770), 1, sym_identifier, - ACTIONS(9609), 1, - sym_primitive_type, - ACTIONS(9611), 1, - anon_sym_enum, - ACTIONS(9613), 1, - anon_sym_typename, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7521), 1, + sym__class_declaration, + STATE(7526), 1, + sym__class_declaration_item, + STATE(7788), 1, + sym_ms_declspec_modifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7021), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2224), 1, - sym_type_specifier, - STATE(2286), 1, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7740), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7378), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(5341), 1, - sym_argument_list, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [203987] = 24, + sym_splice_expression, + [262236] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9583), 1, - sym_identifier, - ACTIONS(9585), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(9589), 1, - sym_primitive_type, - ACTIONS(9591), 1, - anon_sym_enum, - ACTIONS(9593), 1, - anon_sym_class, - ACTIONS(9595), 1, - anon_sym_struct, - ACTIONS(9597), 1, - anon_sym_union, - ACTIONS(9599), 1, - sym_auto, - ACTIONS(9601), 1, - anon_sym_decltype, - ACTIONS(9603), 1, - anon_sym_typename, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2929), 1, - sym_template_type, - STATE(3040), 1, + ACTIONS(12646), 1, + anon_sym_LBRACE, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7526), 1, + sym__class_declaration_item, + STATE(7528), 1, + sym__class_declaration, + STATE(7788), 1, + sym_ms_declspec_modifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7021), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3046), 1, - sym_type_specifier, - STATE(3265), 1, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7740), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7378), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(3429), 1, - sym_decltype_auto, - STATE(5288), 1, - sym_argument_list, - STATE(6848), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204069] = 3, + sym_splice_expression, + [262328] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5721), 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__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12646), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7526), 1, + sym__class_declaration_item, + STATE(7529), 1, + sym__class_declaration, + STATE(7788), 1, + sym_ms_declspec_modifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [204109] = 3, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7740), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7378), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [262420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 3, + ACTIONS(9344), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5812), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9342), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [204149] = 16, + [262464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(9550), 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(9552), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8754), 1, anon_sym_STAR, - ACTIONS(8756), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7122), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204215] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9545), 1, - sym_identifier, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9551), 1, - sym_primitive_type, - ACTIONS(9553), 1, - anon_sym_enum, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9565), 1, - anon_sym_typename, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2231), 1, - sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(5262), 1, - sym_argument_list, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204297] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [262508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 3, + ACTIONS(9574), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5816), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9576), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [204337] = 24, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [262552] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9547), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9605), 1, + ACTIONS(12772), 1, sym_identifier, - ACTIONS(9609), 1, - sym_primitive_type, - ACTIONS(9611), 1, - anon_sym_enum, - ACTIONS(9613), 1, - anon_sym_typename, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2231), 1, - sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(5267), 1, - sym_argument_list, - STATE(6803), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(2995), 1, + sym__class_declaration, + STATE(2996), 1, + sym__class_declaration_item, + STATE(7733), 1, + sym_ms_declspec_modifier, + STATE(8624), 1, sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204419] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9621), 1, - sym_primitive_type, - ACTIONS(9623), 1, - anon_sym_enum, - ACTIONS(9625), 1, - anon_sym_class, - ACTIONS(9627), 1, - anon_sym_struct, - ACTIONS(9629), 1, - anon_sym_union, - ACTIONS(9631), 1, - sym_auto, - ACTIONS(9633), 1, - anon_sym_decltype, - ACTIONS(9635), 1, - anon_sym_typename, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3139), 1, - sym_template_type, - STATE(3194), 1, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2408), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3255), 1, - sym_type_specifier, - STATE(3576), 1, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7288), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(3739), 1, - sym_decltype_auto, - STATE(5306), 1, - sym_argument_list, - STATE(6829), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3742), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [204501] = 3, + sym_splice_expression, + [262644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 3, + ACTIONS(9523), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5794), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9525), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [204541] = 3, + [262688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 3, + ACTIONS(9464), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5725), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9466), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [204581] = 16, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [262732] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5707), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8754), 1, - anon_sym_STAR, - ACTIONS(8756), 1, - anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7099), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204647] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5587), 1, - sym_trailing_return_type, - STATE(6109), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(2996), 1, + sym__class_declaration_item, + STATE(2999), 1, + sym__class_declaration, + STATE(7733), 1, + sym_ms_declspec_modifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2408), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5474), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [204723] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8482), 1, - anon_sym_COLON, - ACTIONS(8754), 1, - anon_sym_STAR, - ACTIONS(8756), 1, - anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, + STATE(7288), 3, + sym_attribute_specifier, sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7103), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5145), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204789] = 21, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [262824] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6351), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(2996), 1, + sym__class_declaration_item, + STATE(3004), 1, + sym__class_declaration, + STATE(7733), 1, + sym_ms_declspec_modifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2408), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5473), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [204865] = 16, + STATE(7288), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [262916] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8504), 1, - anon_sym_COLON, - ACTIONS(8754), 1, + ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(8756), 1, + ACTIONS(6097), 1, anon_sym_AMP_AMP, - ACTIONS(8758), 1, + ACTIONS(6099), 1, anon_sym_AMP, - STATE(1731), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(2592), 1, sym_alignas_qualifier, - STATE(3502), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(7133), 1, + STATE(8871), 1, sym__abstract_declarator, - ACTIONS(8522), 2, + ACTIONS(7786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1701), 2, + STATE(2399), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6295), 5, + ACTIONS(7003), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8514), 12, + ACTIONS(7778), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -465942,469 +652626,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204931] = 21, + [262986] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6202), 1, - sym_trailing_return_type, - STATE(6357), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2945), 1, + sym__class_declaration, + STATE(2950), 1, + sym__class_declaration_item, + STATE(7766), 1, + sym_ms_declspec_modifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2310), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7787), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5484), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, + STATE(7373), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9550), 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(9552), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [205007] = 21, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + [263122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6082), 1, - sym_trailing_return_type, - STATE(6301), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2950), 1, + sym__class_declaration_item, + STATE(2953), 1, + sym__class_declaration, + STATE(7766), 1, + sym_ms_declspec_modifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2310), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7787), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5485), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [205083] = 21, + STATE(7373), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263214] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6190), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2950), 1, + sym__class_declaration_item, + STATE(2954), 1, + sym__class_declaration, + STATE(7766), 1, + sym_ms_declspec_modifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2310), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7787), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5480), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [205159] = 3, + STATE(7373), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 3, + ACTIONS(9574), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5904), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9576), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [205199] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9417), 1, - anon_sym_requires, - STATE(6087), 1, - sym_trailing_return_type, - STATE(6384), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5455), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [205275] = 3, + anon_sym_GT2, + [263350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 3, + ACTIONS(9570), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5713), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9572), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [205315] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [263394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9456), 1, - anon_sym_requires, - ACTIONS(9511), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(5597), 1, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12170), 1, + anon_sym_requires, + STATE(7926), 1, sym_trailing_return_type, - STATE(6111), 1, + STATE(7948), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9436), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - STATE(5449), 3, + STATE(7542), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [205391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5717), 29, + ACTIONS(7544), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [205431] = 24, + [263474] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4133), 1, - sym_type_specifier, - STATE(5332), 1, - sym_argument_list, - STATE(6834), 1, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(3967), 1, + sym__class_declaration_item, + STATE(3992), 1, + sym__class_declaration, + STATE(7784), 1, + sym_ms_declspec_modifier, + STATE(8631), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7731), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7324), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205513] = 3, + sym_splice_expression, + [263566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 3, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(12116), 1, + anon_sym_LT, + STATE(3968), 1, + sym_template_argument_list, + ACTIONS(7031), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(5713), 29, + ACTIONS(5272), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466418,587 +653106,469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [205553] = 21, + [263616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - STATE(5844), 1, + ACTIONS(12790), 1, + anon_sym_requires, + STATE(7927), 1, sym_trailing_return_type, - STATE(6275), 1, + STATE(7949), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(12787), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - STATE(5481), 3, + STATE(7543), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9181), 5, + ACTIONS(7627), 9, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [205629] = 24, + [263696] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_primitive_type, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9650), 1, - anon_sym_class, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - ACTIONS(9656), 1, - sym_auto, - ACTIONS(9658), 1, - anon_sym_decltype, - ACTIONS(9660), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4045), 1, - sym_type_specifier, - STATE(4074), 1, - sym_template_type, - STATE(4120), 1, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(3967), 1, + sym__class_declaration_item, + STATE(4014), 1, + sym__class_declaration, + STATE(7784), 1, + sym_ms_declspec_modifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(4155), 1, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7731), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7324), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(4227), 1, - sym_decltype_auto, - STATE(5328), 1, - sym_argument_list, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4228), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205711] = 21, + sym_splice_expression, + [263788] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5616), 1, - sym_trailing_return_type, - STATE(6092), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(3946), 1, + sym__class_declaration, + STATE(3967), 1, + sym__class_declaration_item, + STATE(7784), 1, + sym_ms_declspec_modifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7731), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5454), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [205787] = 24, + STATE(7324), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263880] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_primitive_type, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9650), 1, - anon_sym_class, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - ACTIONS(9656), 1, - sym_auto, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, ACTIONS(9658), 1, - anon_sym_decltype, - ACTIONS(9660), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4039), 1, - sym_type_specifier, - STATE(4074), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, + sym_ms_declspec_modifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7884), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3712), 2, sym_template_type, - STATE(4120), 1, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(4155), 1, + STATE(7747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7371), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10976), 3, sym_decltype, - STATE(4227), 1, - sym_decltype_auto, - STATE(5330), 1, - sym_argument_list, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4228), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [205869] = 8, + sym_splice_expression, + [263972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9662), 1, - sym_ms_restrict_modifier, - STATE(5404), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(7834), 2, + ACTIONS(4570), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(9665), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9668), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5136), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(7836), 22, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4568), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [205919] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [264016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 3, + ACTIONS(9444), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5771), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9446), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [205959] = 24, + [264060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8420), 1, + ACTIONS(9408), 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(9410), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9615), 1, - sym_identifier, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9621), 1, - sym_primitive_type, - ACTIONS(9623), 1, - anon_sym_enum, - ACTIONS(9625), 1, - anon_sym_class, - ACTIONS(9627), 1, - anon_sym_struct, - ACTIONS(9629), 1, - anon_sym_union, - ACTIONS(9631), 1, - sym_auto, - ACTIONS(9633), 1, - anon_sym_decltype, - ACTIONS(9635), 1, - anon_sym_typename, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3139), 1, - sym_template_type, - STATE(3194), 1, - sym_qualified_type_identifier, - STATE(3276), 1, - sym_type_specifier, - STATE(3576), 1, - sym_decltype, - STATE(3739), 1, - sym_decltype_auto, - STATE(5271), 1, - sym_argument_list, - STATE(6829), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3742), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206041] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(9542), 1, - anon_sym_requires, - STATE(6084), 1, - sym_trailing_return_type, - STATE(6354), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5448), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [206117] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [264104] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7360), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - STATE(5624), 1, - sym_trailing_return_type, - STATE(6101), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5464), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [206193] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, + ACTIONS(12781), 1, anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7059), 1, - anon_sym_AMP_AMP, - ACTIONS(7061), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(5393), 1, - sym_ref_qualifier, - STATE(6573), 1, - sym__function_attributes_end, - STATE(6785), 1, + STATE(7938), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(7958), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - STATE(5533), 3, + STATE(7548), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [206275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5836), 29, + ACTIONS(7627), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [206315] = 3, + [264184] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 3, - anon_sym_AMP, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, + ACTIONS(12793), 1, + anon_sym_COLON, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(7433), 1, + sym__enum_base_clause, + STATE(7456), 1, + sym_enumerator_list, + STATE(7506), 1, + sym_attribute_specifier, + ACTIONS(7651), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5663), 29, + ACTIONS(7653), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -467006,8 +653576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, @@ -467028,428 +653596,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [206355] = 3, + [264242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 3, + ACTIONS(9408), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5888), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9410), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206395] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8496), 1, - anon_sym_COLON, - ACTIONS(8754), 1, - anon_sym_STAR, - ACTIONS(8756), 1, - anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7075), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206461] = 3, + [264286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 3, + ACTIONS(9344), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5824), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9342), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206501] = 16, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [264330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(9428), 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(9430), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5753), 1, - anon_sym_const, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8500), 1, - anon_sym_COLON, - ACTIONS(8754), 1, anon_sym_STAR, - ACTIONS(8756), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(1731), 1, - sym_alignas_qualifier, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7080), 1, - sym__abstract_declarator, - ACTIONS(8522), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5121), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8514), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206567] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [264374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 3, + ACTIONS(9464), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5659), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9466), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206607] = 3, + [264418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 3, + ACTIONS(9538), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5927), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9540), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206647] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [264462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5844), 1, - sym_trailing_return_type, - STATE(5982), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5482), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 5, + ACTIONS(9484), 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(9486), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [206723] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [264506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 3, + ACTIONS(9452), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5782), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9454), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206763] = 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, + [264550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 3, + ACTIONS(9515), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5848), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9517), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206803] = 3, + [264594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 3, + ACTIONS(9503), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5852), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9505), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [206843] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [264638] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 3, - anon_sym_AMP, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, + ACTIONS(12793), 1, + anon_sym_COLON, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(7402), 1, + sym__enum_base_clause, + STATE(7469), 1, + sym_enumerator_list, + STATE(7505), 1, + sym_attribute_specifier, + ACTIONS(7600), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5856), 29, + ACTIONS(7602), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -467457,8 +653993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, @@ -467479,3605 +654013,3955 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [206883] = 24, + [264696] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8115), 1, - sym_primitive_type, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(9567), 1, - sym_identifier, - ACTIONS(9569), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9573), 1, - anon_sym_enum, - ACTIONS(9575), 1, - anon_sym_class, - ACTIONS(9577), 1, - anon_sym_struct, - ACTIONS(9579), 1, - anon_sym_union, - ACTIONS(9581), 1, - anon_sym_typename, - STATE(2298), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4368), 1, - sym_type_specifier, - STATE(5326), 1, - sym_argument_list, - STATE(6808), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206965] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12797), 1, sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_field_declaration_list, + STATE(5944), 1, sym__class_declaration, - STATE(2595), 1, + STATE(5947), 1, sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5743), 1, + STATE(7722), 1, sym_ms_declspec_modifier, - STATE(6815), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9424), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10362), 1, sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5744), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5335), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207046] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2843), 2, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7724), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(7310), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207127] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207208] = 24, + sym_splice_expression, + [264788] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12797), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(5947), 1, + sym__class_declaration_item, + STATE(5956), 1, + sym__class_declaration, + STATE(7722), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9424), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10362), 1, sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207289] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7724), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(7310), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207370] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3283), 1, - sym__class_declaration, - STATE(3284), 1, - sym__class_declaration_item, - STATE(5773), 1, - sym_ms_declspec_modifier, - STATE(6809), 1, - sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5775), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5292), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207451] = 24, + sym_splice_expression, + [264880] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3284), 1, - sym__class_declaration_item, - STATE(3286), 1, - sym__class_declaration, - STATE(5773), 1, - sym_ms_declspec_modifier, - STATE(6809), 1, - sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5775), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5292), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207532] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(12797), 1, sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, sym_field_declaration_list, - STATE(3284), 1, + STATE(5947), 1, sym__class_declaration_item, - STATE(3287), 1, + STATE(5959), 1, sym__class_declaration, - STATE(5773), 1, + STATE(7722), 1, sym_ms_declspec_modifier, - STATE(6809), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(7249), 1, + STATE(9424), 1, sym_virtual_specifier, - STATE(7838), 1, + STATE(10362), 1, sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5775), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5292), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207613] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1939), 1, - sym__class_declaration, - STATE(5407), 1, - sym_field_declaration_list, - STATE(5698), 1, - sym_ms_declspec_modifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, - STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4907), 2, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5702), 2, + STATE(7724), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5324), 3, + STATE(7310), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207694] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1934), 1, - sym__class_declaration, - STATE(5407), 1, - sym_field_declaration_list, - STATE(5698), 1, - sym_ms_declspec_modifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, - STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5702), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5324), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207775] = 24, + sym_splice_expression, + [264972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(5680), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, - sym_field_declaration_list, - STATE(2379), 1, - sym__class_declaration_item, - STATE(2409), 1, - sym__class_declaration, - STATE(5656), 1, - sym_ms_declspec_modifier, - STATE(6803), 1, - sym__scope_resolution, - STATE(7200), 1, - sym_virtual_specifier, - STATE(7886), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(1886), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5657), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5342), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207856] = 24, + ACTIONS(12799), 1, + anon_sym_COMMA, + ACTIONS(12801), 1, + anon_sym_RBRACK, + ACTIONS(5260), 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(5253), 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, + [265020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(6515), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(5680), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, - sym_field_declaration_list, - STATE(2335), 1, - sym__class_declaration, - STATE(2379), 1, - sym__class_declaration_item, - STATE(5656), 1, - sym_ms_declspec_modifier, - STATE(6803), 1, - sym__scope_resolution, - STATE(7200), 1, - sym_virtual_specifier, - STATE(7886), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(1886), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5657), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5342), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207937] = 24, + ACTIONS(8835), 1, + anon_sym_LPAREN2, + ACTIONS(8838), 1, + anon_sym_LBRACK, + ACTIONS(5260), 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(5253), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [265072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(5680), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, + ACTIONS(9578), 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(9580), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [265116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, - sym_field_declaration_list, - STATE(2348), 1, - sym__class_declaration, - STATE(2379), 1, - sym__class_declaration_item, - STATE(5656), 1, - sym_ms_declspec_modifier, - STATE(6803), 1, - sym__scope_resolution, - STATE(7200), 1, - sym_virtual_specifier, - STATE(7886), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(1886), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5657), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5342), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208018] = 24, + ACTIONS(5260), 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(5253), 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, + [265164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(4570), 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(4568), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [265208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9499), 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(9501), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [265252] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6219), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, + ACTIONS(12804), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1935), 1, - sym__class_declaration, - STATE(5407), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5698), 1, + STATE(4859), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(7769), 1, sym_ms_declspec_modifier, - STATE(6793), 1, + STATE(8579), 1, sym__scope_resolution, - STATE(7325), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(8089), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4907), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5702), 2, + STATE(7705), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5324), 3, + STATE(7320), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208099] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265344] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6219), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(12804), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1939), 1, - sym__class_declaration, - STATE(2540), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5728), 1, + STATE(4680), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(7769), 1, sym_ms_declspec_modifier, - STATE(6795), 1, + STATE(8579), 1, sym__scope_resolution, - STATE(7259), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5737), 2, + STATE(7705), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5289), 3, + STATE(7320), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208180] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265436] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6219), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(12804), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1934), 1, - sym__class_declaration, - STATE(2540), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5728), 1, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(7769), 1, sym_ms_declspec_modifier, - STATE(6795), 1, + STATE(8579), 1, sym__scope_resolution, - STATE(7259), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5737), 2, + STATE(7705), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5289), 3, + STATE(7320), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208261] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(9519), 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(9521), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [265572] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6219), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(12738), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1935), 1, - sym__class_declaration, - STATE(2540), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5728), 1, + STATE(4684), 1, + sym__class_declaration, + STATE(4867), 1, + sym__class_declaration_item, + STATE(7723), 1, sym_ms_declspec_modifier, - STATE(6795), 1, + STATE(8638), 1, sym__scope_resolution, - STATE(7259), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5737), 2, + STATE(7747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5289), 3, + STATE(7371), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208342] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(9484), 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(9486), 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, + [265708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9578), 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(9580), 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, + [265752] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, + anon_sym_class, + ACTIONS(79), 1, + anon_sym_struct, + ACTIONS(81), 1, + anon_sym_union, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5102), 1, + anon_sym_typename, + ACTIONS(5572), 1, sym_identifier, - ACTIONS(9673), 1, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4350), 1, + sym_splice_specifier, + STATE(4479), 1, + sym_splice_type_specifier, + STATE(4520), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5743), 1, - sym_ms_declspec_modifier, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, + STATE(4521), 1, sym_qualified_type_identifier, - STATE(5744), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(4790), 1, sym_decltype, + STATE(8638), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5335), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208423] = 24, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [265841] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12806), 1, sym_identifier, - ACTIONS(9673), 1, + ACTIONS(12808), 1, anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5743), 1, - sym_ms_declspec_modifier, - STATE(6815), 1, + ACTIONS(12812), 1, + sym_primitive_type, + ACTIONS(12814), 1, + anon_sym_enum, + ACTIONS(12816), 1, + anon_sym_class, + ACTIONS(12818), 1, + anon_sym_struct, + ACTIONS(12820), 1, + anon_sym_union, + ACTIONS(12822), 1, + anon_sym_typename, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(7573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8606), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, + STATE(9062), 1, + sym_template_type, + STATE(9246), 1, sym_qualified_type_identifier, - STATE(5744), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4790), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5335), 3, - sym_attribute_specifier, + sym_splice_expression, + ACTIONS(12810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [265928] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, + anon_sym_STAR, + ACTIONS(11699), 1, + anon_sym_AMP_AMP, + ACTIONS(11701), 1, + anon_sym_AMP, + STATE(7436), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208504] = 24, + STATE(8938), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [265997] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(12423), 1, + anon_sym_enum, + ACTIONS(12425), 1, + anon_sym_typename, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2817), 1, - sym__class_declaration, - STATE(2819), 1, - sym__class_declaration_item, - STATE(5676), 1, - sym_ms_declspec_modifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(2699), 1, sym_qualified_type_identifier, - STATE(5677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3138), 1, + sym_decltype_auto, + STATE(4727), 1, + sym_type_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(2973), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5264), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208585] = 24, + sym_splice_expression, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266084] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6597), 1, + ACTIONS(8007), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(12772), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, sym_field_declaration_list, - STATE(2819), 1, + STATE(3033), 1, sym__class_declaration_item, - STATE(2823), 1, - sym__class_declaration, - STATE(5676), 1, + STATE(7741), 1, sym_ms_declspec_modifier, - STATE(6801), 1, + STATE(8624), 1, sym__scope_resolution, - STATE(7250), 1, + STATE(9380), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(10305), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, + STATE(2408), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5677), 2, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7790), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5264), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208666] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [266173] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2949), 1, + sym_decltype, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3424), 1, + sym_splice_type_specifier, + STATE(3561), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2819), 1, - sym__class_declaration_item, - STATE(2824), 1, - sym__class_declaration, - STATE(5676), 1, - sym_ms_declspec_modifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5677), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5264), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208747] = 24, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(5260), 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(5253), 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, + [266307] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12806), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2817), 1, - sym__class_declaration, - STATE(2819), 1, - sym__class_declaration_item, - STATE(5688), 1, - sym_ms_declspec_modifier, - STATE(6808), 1, + ACTIONS(12808), 1, + anon_sym_COLON_COLON, + ACTIONS(12812), 1, + sym_primitive_type, + ACTIONS(12814), 1, + anon_sym_enum, + ACTIONS(12816), 1, + anon_sym_class, + ACTIONS(12818), 1, + anon_sym_struct, + ACTIONS(12820), 1, + anon_sym_union, + ACTIONS(12822), 1, + anon_sym_typename, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4706), 1, + sym_decltype_auto, + STATE(7573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8606), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(9062), 1, + sym_template_type, + STATE(9246), 1, sym_qualified_type_identifier, - STATE(5689), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10221), 1, + sym_type_specifier, + STATE(4790), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5350), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208828] = 24, + sym_splice_expression, + ACTIONS(12810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266394] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2819), 1, - sym__class_declaration_item, - STATE(2823), 1, - sym__class_declaration, - STATE(5688), 1, - sym_ms_declspec_modifier, - STATE(6808), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(12824), 1, + anon_sym_requires, + STATE(7522), 1, + sym_ref_qualifier, + STATE(8314), 1, + sym_trailing_return_type, + STATE(8335), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5689), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5350), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208909] = 24, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7643), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [266479] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(12756), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, sym_field_declaration_list, - STATE(2819), 1, + STATE(2085), 1, sym__class_declaration_item, - STATE(2824), 1, - sym__class_declaration, - STATE(5688), 1, + STATE(7703), 1, sym_ms_declspec_modifier, - STATE(6808), 1, + STATE(8593), 1, sym__scope_resolution, - STATE(7250), 1, + STATE(9311), 1, sym_virtual_specifier, - STATE(7843), 1, + STATE(10472), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, + STATE(1966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5689), 2, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7694), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5350), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [208990] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [266568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(11693), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, - sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3754), 1, - sym__class_declaration, - STATE(3756), 1, - sym__class_declaration_item, - STATE(5696), 1, - sym_ms_declspec_modifier, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, + ACTIONS(12762), 1, + sym_auto, + STATE(7536), 1, + sym_decltype_auto, + ACTIONS(6798), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(5521), 2, + anon_sym_const, + ACTIONS(6800), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5697), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5336), 3, - sym_attribute_specifier, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [266617] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, + anon_sym_AMP, + STATE(7436), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209071] = 24, + STATE(8539), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [266686] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(1954), 1, + anon_sym_enum, + ACTIONS(1956), 1, + anon_sym_class, + ACTIONS(1958), 1, + anon_sym_struct, + ACTIONS(1960), 1, + anon_sym_union, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5313), 1, + anon_sym_typename, + ACTIONS(6091), 1, sym_identifier, - STATE(2911), 1, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4520), 1, sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3756), 1, - sym__class_declaration_item, - STATE(3759), 1, - sym__class_declaration, - STATE(5696), 1, - sym_ms_declspec_modifier, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, + STATE(4521), 1, sym_qualified_type_identifier, - STATE(5697), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(4790), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5336), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209152] = 24, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(2911), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2949), 1, + sym_decltype, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3561), 1, sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3756), 1, - sym__class_declaration_item, - STATE(3760), 1, - sym__class_declaration, - STATE(5696), 1, - sym_ms_declspec_modifier, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5697), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, + STATE(3688), 1, + sym_splice_specifier, + STATE(4561), 1, + sym_splice_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5336), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209233] = 24, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266862] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12634), 1, + anon_sym_enum, + ACTIONS(12636), 1, + anon_sym_typename, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4965), 1, - sym__class_declaration, - STATE(4969), 1, - sym__class_declaration_item, - STATE(5798), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5799), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4041), 1, + sym_decltype_auto, + STATE(5332), 1, + sym_type_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5316), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209314] = 24, + sym_splice_expression, + ACTIONS(12632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, + ACTIONS(6748), 1, anon_sym_COLON_COLON, - ACTIONS(8947), 1, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2848), 1, + sym_template_argument_list, + ACTIONS(6751), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4969), 1, - sym__class_declaration_item, - STATE(4970), 1, - sym__class_declaration, - STATE(5798), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6746), 28, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5799), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5316), 3, - sym_attribute_specifier, + [266998] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, + anon_sym_AMP, + STATE(7436), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209395] = 24, + STATE(8531), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [267067] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3197), 1, + anon_sym_enum, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(10682), 1, + anon_sym_typename, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4969), 1, - sym__class_declaration_item, - STATE(4975), 1, - sym__class_declaration, - STATE(5798), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, sym_qualified_type_identifier, - STATE(5799), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(2925), 1, + sym_decltype_auto, + STATE(2956), 1, + sym_type_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5316), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209476] = 24, + sym_splice_expression, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267154] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, sym_identifier, - STATE(2791), 1, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12670), 1, + anon_sym_enum, + ACTIONS(12672), 1, + anon_sym_typename, + STATE(3683), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3438), 1, - sym__class_declaration, - STATE(3439), 1, - sym__class_declaration_item, - STATE(5707), 1, - sym_ms_declspec_modifier, - STATE(6848), 1, - sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(5708), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6439), 1, + sym_type_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(4252), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5263), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209557] = 24, + sym_splice_expression, + ACTIONS(12668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267241] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, sym_identifier, - STATE(2791), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(12387), 1, + anon_sym_enum, + ACTIONS(12389), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3439), 1, - sym__class_declaration_item, - STATE(3441), 1, - sym__class_declaration, - STATE(5707), 1, - sym_ms_declspec_modifier, - STATE(6848), 1, - sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, sym_qualified_type_identifier, - STATE(5708), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3453), 1, + sym_decltype_auto, + STATE(5292), 1, + sym_type_specifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5263), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209638] = 24, + sym_splice_expression, + ACTIONS(12385), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267328] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(12750), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, sym_field_declaration_list, - STATE(3439), 1, + STATE(4406), 1, sym__class_declaration_item, - STATE(3442), 1, - sym__class_declaration, - STATE(5707), 1, + STATE(7130), 1, + sym_splice_specifier, + STATE(7781), 1, sym_ms_declspec_modifier, - STATE(6848), 1, + STATE(8634), 1, sym__scope_resolution, - STATE(7150), 1, + STATE(9428), 1, sym_virtual_specifier, - STATE(8015), 1, + STATE(10315), 1, sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5708), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5263), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209719] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, + STATE(3858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7777), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [209800] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [267417] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(12487), 1, + anon_sym_enum, + ACTIONS(12489), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5666), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5667), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3383), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5349), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209881] = 24, + sym_splice_expression, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267504] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3073), 1, + anon_sym_enum, + ACTIONS(3075), 1, + anon_sym_class, + ACTIONS(3077), 1, + anon_sym_struct, + ACTIONS(3079), 1, + anon_sym_union, + ACTIONS(3081), 1, + anon_sym_typename, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5572), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4350), 1, + sym_splice_specifier, + STATE(4520), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5666), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, + STATE(4521), 1, sym_qualified_type_identifier, - STATE(5667), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(4790), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5349), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [209962] = 24, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267591] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(12471), 1, + anon_sym_enum, + ACTIONS(12473), 1, + anon_sym_typename, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5666), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, sym_qualified_type_identifier, - STATE(5667), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(2925), 1, + sym_decltype_auto, + STATE(4653), 1, + sym_type_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5349), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210043] = 24, + sym_splice_expression, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267678] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, sym_identifier, - STATE(4656), 1, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5142), 1, - sym__class_declaration, - STATE(5151), 1, - sym__class_declaration_item, - STATE(5715), 1, - sym_ms_declspec_modifier, - STATE(6851), 1, - sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2063), 1, sym_decltype, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(2129), 1, + sym_splice_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5265), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210124] = 24, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267767] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3341), 1, + anon_sym_enum, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, sym_identifier, - STATE(4656), 1, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(10745), 1, + anon_sym_typename, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3424), 1, + sym_splice_type_specifier, + STATE(3627), 1, sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5112), 1, - sym__class_declaration, - STATE(5151), 1, - sym__class_declaration_item, - STATE(5715), 1, - sym_ms_declspec_modifier, - STATE(6851), 1, - sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5716), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3887), 1, sym_decltype, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(8631), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5265), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210205] = 24, + sym_splice_expression, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267856] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(12797), 1, sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5057), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, sym_field_declaration_list, - STATE(5067), 1, - sym__class_declaration, - STATE(5151), 1, + STATE(5941), 1, sym__class_declaration_item, - STATE(5715), 1, + STATE(7763), 1, sym_ms_declspec_modifier, - STATE(6851), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(7163), 1, + STATE(9424), 1, sym_virtual_specifier, - STATE(7883), 1, + STATE(10362), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5716), 2, + STATE(7762), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5265), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [210286] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [267945] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(12682), 1, + anon_sym_enum, + ACTIONS(12684), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4237), 1, - sym__class_declaration, - STATE(4238), 1, - sym__class_declaration_item, - STATE(5720), 1, - sym_ms_declspec_modifier, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5721), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5270), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210367] = 24, + sym_splice_expression, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268032] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2949), 1, + sym_decltype, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3561), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4238), 1, - sym__class_declaration_item, - STATE(4242), 1, - sym__class_declaration, - STATE(5720), 1, - sym_ms_declspec_modifier, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5721), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, + STATE(7086), 1, + sym_splice_specifier, + STATE(7818), 1, + sym_splice_type_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5270), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210448] = 24, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268121] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(12423), 1, + anon_sym_enum, + ACTIONS(12425), 1, + anon_sym_typename, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4238), 1, - sym__class_declaration_item, - STATE(4243), 1, - sym__class_declaration, - STATE(5720), 1, - sym_ms_declspec_modifier, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(2699), 1, sym_qualified_type_identifier, - STATE(5721), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3138), 1, + sym_decltype_auto, + STATE(4733), 1, + sym_type_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(2973), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5270), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210529] = 24, + sym_splice_expression, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268208] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(3397), 1, + anon_sym_enum, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10723), 1, + anon_sym_typename, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4965), 1, - sym__class_declaration, - STATE(4969), 1, - sym__class_declaration_item, - STATE(5681), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5682), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5273), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210610] = 24, + sym_splice_expression, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268295] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(12487), 1, + anon_sym_enum, + ACTIONS(12489), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4969), 1, - sym__class_declaration_item, - STATE(4970), 1, - sym__class_declaration, - STATE(5681), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5682), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3472), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5273), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210691] = 24, + sym_splice_expression, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268382] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(12407), 1, + anon_sym_enum, + ACTIONS(12409), 1, + anon_sym_typename, + STATE(3627), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4969), 1, - sym__class_declaration_item, - STATE(4975), 1, - sym__class_declaration, - STATE(5681), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5682), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5273), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210772] = 24, + sym_splice_expression, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268469] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12634), 1, + anon_sym_enum, + ACTIONS(12636), 1, + anon_sym_typename, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5735), 1, - sym_ms_declspec_modifier, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4041), 1, + sym_decltype_auto, + STATE(5197), 1, + sym_type_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5279), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210853] = 24, + sym_splice_expression, + ACTIONS(12632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268556] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, + ACTIONS(1954), 1, + anon_sym_enum, + ACTIONS(1956), 1, + anon_sym_class, + ACTIONS(1958), 1, + anon_sym_struct, + ACTIONS(1960), 1, + anon_sym_union, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5313), 1, + anon_sym_typename, + ACTIONS(6091), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4479), 1, + sym_splice_type_specifier, + STATE(4520), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5735), 1, - sym_ms_declspec_modifier, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, + STATE(4521), 1, sym_qualified_type_identifier, - STATE(5736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(4790), 1, sym_decltype, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5279), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210934] = 24, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268645] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5735), 1, - sym_ms_declspec_modifier, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5736), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3688), 1, + sym_splice_specifier, + STATE(5197), 1, + sym_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5279), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211015] = 24, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268732] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12804), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(4874), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(7742), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8579), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2879), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7725), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [211096] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [268821] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12766), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4874), 1, sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, + STATE(7765), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8626), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10397), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2879), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7752), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [211177] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [268910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(5272), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7031), 28, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(2879), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211258] = 24, + [268959] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(4406), 1, + sym__class_declaration_item, + STATE(7739), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8549), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9428), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10315), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2863), 2, + STATE(3858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7782), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [211339] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [269048] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(4012), 1, + sym__class_declaration_item, + STATE(7695), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8631), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9498), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10434), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2863), 2, + STATE(3486), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7690), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [211420] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [269137] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3965), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2865), 2, - sym__class_name, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4252), 1, sym_decltype, + STATE(4376), 1, + sym_type_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(4616), 1, + sym_splice_type_specifier, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211501] = 24, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269226] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(12407), 1, + anon_sym_enum, + ACTIONS(12409), 1, + anon_sym_typename, + STATE(3627), 1, sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1935), 1, - sym__class_declaration, - STATE(2540), 1, - sym_field_declaration_list, - STATE(5665), 1, - sym_ms_declspec_modifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(6435), 1, + sym_type_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5308), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211582] = 24, + sym_splice_expression, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269313] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(12662), 1, + anon_sym_enum, + ACTIONS(12664), 1, + anon_sym_typename, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(4736), 1, + sym_type_specifier, + STATE(8624), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2865), 2, - sym__class_name, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269400] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(12682), 1, + anon_sym_enum, + ACTIONS(12684), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3383), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211663] = 24, + sym_splice_expression, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269487] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(10676), 1, + sym_identifier, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(12471), 1, + anon_sym_enum, + ACTIONS(12473), 1, + anon_sym_typename, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(2956), 1, + sym_type_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269574] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(3397), 1, + anon_sym_enum, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, + sym_identifier, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10723), 1, + anon_sym_typename, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, + sym_template_type, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(3887), 1, + sym_decltype, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(4649), 1, + sym_splice_type_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269663] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3455), 1, + anon_sym_enum, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(10715), 1, + anon_sym_typename, + STATE(2240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, + sym_qualified_type_identifier, + STATE(3262), 1, + sym_decltype, + STATE(3387), 1, + sym_type_specifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(3478), 1, + sym_splice_type_specifier, + STATE(8588), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2863), 2, - sym__class_name, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269752] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3544), 1, + anon_sym_enum, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(10707), 1, + anon_sym_typename, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4252), 1, sym_decltype, + STATE(4376), 1, + sym_type_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(4616), 1, + sym_splice_type_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211744] = 21, + sym_splice_expression, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269841] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6420), 1, - sym_trailing_return_type, - STATE(6466), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5490), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [211819] = 21, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5332), 1, + sym_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269928] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6430), 1, - sym_trailing_return_type, - STATE(6477), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5493), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9423), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [211894] = 10, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, + sym_identifier, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12634), 1, + anon_sym_enum, + ACTIONS(12636), 1, + anon_sym_typename, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, + sym_template_type, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, + sym_qualified_type_identifier, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12632), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270015] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9081), 1, - anon_sym_LBRACE, - ACTIONS(9703), 1, - anon_sym_COLON, - STATE(4747), 1, - sym__enum_base_clause, - STATE(4854), 1, - sym_enumerator_list, - STATE(4941), 1, - sym_attribute_specifier, - ACTIONS(6565), 3, - anon_sym_AMP, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, anon_sym_LBRACK, + ACTIONS(11431), 1, anon_sym_const, - ACTIONS(6567), 21, - anon_sym_LPAREN2, + ACTIONS(11637), 1, anon_sym_STAR, + ACTIONS(11639), 1, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(11641), 1, + anon_sym_AMP, + STATE(4923), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8891), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211947] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(9081), 1, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6497), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9703), 1, - anon_sym_COLON, - STATE(4761), 1, - sym__enum_base_clause, - STATE(4862), 1, - sym_enumerator_list, - STATE(4968), 1, - sym_attribute_specifier, - ACTIONS(6571), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6573), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_try, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471089,1001 +657973,1018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [212000] = 21, + [270084] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9444), 1, - anon_sym_requires, - STATE(6428), 1, - sym_trailing_return_type, - STATE(6459), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5495), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [212075] = 21, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3243), 1, + anon_sym_enum, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, + sym_identifier, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(10731), 1, + anon_sym_typename, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(3039), 1, + sym_type_specifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(8604), 1, + sym__scope_resolution, + STATE(2973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270171] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7589), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(12824), 1, anon_sym_requires, - STATE(6434), 1, + STATE(7535), 1, + sym_ref_qualifier, + STATE(8314), 1, sym_trailing_return_type, - STATE(6460), 1, + STATE(8478), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - STATE(5496), 3, + STATE(7672), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9423), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7544), 5, anon_sym_LPAREN2, - anon_sym_GT2, - [212150] = 24, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [270256] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12752), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3087), 1, sym__class_declaration_item, - STATE(3956), 1, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, sym_field_declaration_list, - STATE(5757), 1, + STATE(7710), 1, sym_ms_declspec_modifier, - STATE(6830), 1, + STATE(8564), 1, sym__scope_resolution, - STATE(7347), 1, + STATE(9372), 1, sym_virtual_specifier, - STATE(8125), 1, + STATE(10346), 1, sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5763), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5278), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212231] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5757), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5763), 2, + STATE(7768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5278), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [212312] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5757), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5763), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5278), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212393] = 24, + sym_splice_expression, + [270345] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3197), 1, + anon_sym_enum, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, + sym_primitive_type, + ACTIONS(10682), 1, + anon_sym_typename, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2868), 2, - sym__class_name, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(2832), 1, sym_decltype, + STATE(2914), 1, + sym_splice_type_specifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(2956), 1, + sym_type_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212474] = 24, + sym_splice_expression, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270434] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(12387), 1, + anon_sym_enum, + ACTIONS(12389), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2868), 2, - sym__class_name, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3453), 1, + sym_decltype_auto, + STATE(5266), 1, + sym_type_specifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212555] = 24, + sym_splice_expression, + ACTIONS(12385), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270521] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3561), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2868), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212636] = 24, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270608] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3087), 1, sym__class_declaration_item, - STATE(3039), 1, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(7720), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8621), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9411), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10180), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2872), 2, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7729), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [212717] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [270697] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(8193), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(3418), 1, + sym__class_declaration_item, + STATE(7778), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8588), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9319), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10067), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2872), 2, + STATE(2537), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7776), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [212798] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [270786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7866), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(3018), 1, + sym__class_declaration_item, + STATE(7758), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8604), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9467), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10241), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2872), 2, + STATE(2331), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7692), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [212879] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [270875] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3512), 1, + anon_sym_enum, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10739), 1, + anon_sym_typename, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2883), 2, - sym__class_name, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(2982), 1, + sym_decltype_auto, + STATE(3005), 1, + sym_type_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(2856), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212960] = 24, + sym_splice_expression, + ACTIONS(3508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270962] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2883), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213041] = 24, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271049] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4012), 1, sym__class_declaration_item, - STATE(3039), 1, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(7719), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8571), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9494), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10393), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2883), 2, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7753), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [213122] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [271138] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3341), 1, + anon_sym_enum, + ACTIONS(3343), 1, + anon_sym_class, + ACTIONS(3345), 1, + anon_sym_struct, + ACTIONS(3347), 1, + anon_sym_union, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(10741), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(10745), 1, + anon_sym_typename, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3627), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2847), 2, - sym__class_name, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3947), 1, + sym_type_specifier, + STATE(4041), 1, + sym_decltype_auto, + STATE(8631), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213203] = 24, + sym_splice_expression, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271225] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(3273), 1, + anon_sym_enum, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10749), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2847), 2, - sym__class_name, + STATE(1988), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213284] = 24, + sym_splice_expression, + ACTIONS(3269), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271312] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(12387), 1, + anon_sym_enum, + ACTIONS(12389), 1, + anon_sym_typename, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2847), 2, - sym__class_name, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3387), 1, + sym_type_specifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213365] = 9, + sym_splice_expression, + ACTIONS(12385), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271399] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(9708), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, anon_sym_LPAREN2, - STATE(2419), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3670), 1, - sym_argument_list, - STATE(4914), 1, - sym_initializer_list, - ACTIONS(5661), 2, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, anon_sym_AMP, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8526), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, + anon_sym___extension__, anon_sym_const, - ACTIONS(6615), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 20, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [271468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(6201), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6208), 28, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -472098,1114 +658999,1351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_GT2, - [213416] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [271517] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2823), 1, + anon_sym_enum, + ACTIONS(2825), 1, + anon_sym_class, + ACTIONS(2827), 1, + anon_sym_struct, + ACTIONS(2829), 1, + anon_sym_union, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10701), 1, + anon_sym_typename, + STATE(3965), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2859), 2, - sym__class_name, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4376), 1, + sym_type_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(4252), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213497] = 24, + sym_splice_expression, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271604] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(12487), 1, + anon_sym_enum, + ACTIONS(12489), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2859), 2, - sym__class_name, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213578] = 24, + sym_splice_expression, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271691] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3544), 1, + anon_sym_enum, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(10707), 1, + anon_sym_typename, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2859), 2, - sym__class_name, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4376), 1, + sym_type_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(8549), 1, + sym__scope_resolution, + STATE(4252), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213659] = 24, + sym_splice_expression, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271778] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(12423), 1, + anon_sym_enum, + ACTIONS(12425), 1, + anon_sym_typename, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, + STATE(2699), 1, + sym_qualified_type_identifier, STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, + sym_type_specifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(8604), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2860), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(2973), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213740] = 24, + sym_splice_expression, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271865] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(10594), 1, + sym_primitive_type, + ACTIONS(10596), 1, + anon_sym_enum, + ACTIONS(10598), 1, + anon_sym_class, + ACTIONS(10600), 1, + anon_sym_struct, + ACTIONS(10602), 1, + anon_sym_union, + ACTIONS(10604), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(7299), 1, + sym_splice_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7577), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2860), 2, - sym__class_name, + STATE(7603), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8564), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213821] = 24, + sym_splice_expression, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271952] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(3273), 1, + anon_sym_enum, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10747), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10749), 1, + anon_sym_typename, + STATE(1963), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2860), 2, - sym__class_name, + STATE(1988), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2063), 1, sym_decltype, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(2129), 1, + sym_splice_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213902] = 24, + sym_splice_expression, + ACTIONS(3269), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272041] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, + anon_sym_class, + ACTIONS(79), 1, + anon_sym_struct, + ACTIONS(81), 1, + anon_sym_union, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5102), 1, + anon_sym_typename, + ACTIONS(5572), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4350), 1, + sym_splice_specifier, + STATE(4520), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2874), 2, - sym__class_name, + STATE(4521), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(4790), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [213983] = 24, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3512), 1, + anon_sym_enum, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(10739), 1, + anon_sym_typename, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2856), 1, + sym_decltype, + STATE(2982), 1, + sym_decltype_auto, + STATE(3005), 1, + sym_type_specifier, + STATE(3071), 1, + sym_splice_type_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272217] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(12662), 1, + anon_sym_enum, + ACTIONS(12664), 1, + anon_sym_typename, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(3005), 1, + sym_type_specifier, + STATE(8624), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2874), 2, - sym__class_name, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272304] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3173), 1, + anon_sym_enum, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(10690), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1994), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(2082), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214064] = 24, + sym_splice_expression, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272391] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3087), 1, sym__class_declaration_item, - STATE(3039), 1, + STATE(3837), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(7086), 1, + sym_splice_specifier, + STATE(7693), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8605), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9411), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10180), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7735), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [214145] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [272480] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2875), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3688), 1, + sym_splice_specifier, + STATE(6404), 1, + sym_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214226] = 24, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272567] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10619), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(10625), 1, + sym_primitive_type, + ACTIONS(10627), 1, + anon_sym_enum, + ACTIONS(10629), 1, + anon_sym_class, + ACTIONS(10631), 1, + anon_sym_struct, + ACTIONS(10633), 1, + anon_sym_union, + ACTIONS(10635), 1, + anon_sym_typename, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(6310), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7218), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2875), 2, - sym__class_name, + STATE(7294), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(7496), 1, + sym_decltype_auto, + STATE(7530), 1, + sym_type_specifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(7484), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214307] = 24, + sym_splice_expression, + ACTIONS(10623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7497), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272654] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12437), 1, + anon_sym_enum, + ACTIONS(12439), 1, + anon_sym_typename, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3561), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2875), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3688), 1, + sym_splice_specifier, + STATE(6394), 1, + sym_type_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214388] = 24, + sym_splice_expression, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272741] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3455), 1, + anon_sym_enum, + ACTIONS(3457), 1, + anon_sym_class, + ACTIONS(3459), 1, + anon_sym_struct, + ACTIONS(3461), 1, + anon_sym_union, + ACTIONS(3465), 1, + sym_auto, + ACTIONS(3467), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10709), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10713), 1, + sym_primitive_type, + ACTIONS(10715), 1, + anon_sym_typename, + STATE(2240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2814), 1, sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2887), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3387), 1, + sym_type_specifier, + STATE(3453), 1, + sym_decltype_auto, + STATE(8588), 1, + sym__scope_resolution, + STATE(3262), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214469] = 24, + sym_splice_expression, + ACTIONS(3451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3460), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [272828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11637), 1, + anon_sym_STAR, + ACTIONS(11639), 1, + anon_sym_AMP_AMP, + ACTIONS(11641), 1, + anon_sym_AMP, + STATE(4923), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8926), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2845), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214550] = 24, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7007), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [272897] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12738), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(4874), 1, + sym__class_declaration_item, + STATE(7714), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8614), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2845), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7789), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [214631] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [272986] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1886), 1, + anon_sym_enum, + ACTIONS(1888), 1, + anon_sym_class, + ACTIONS(1890), 1, + anon_sym_struct, + ACTIONS(1892), 1, + anon_sym_union, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10289), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10297), 1, + anon_sym_typename, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3561), 1, sym_template_type, - STATE(2586), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2845), 2, - sym__class_name, + STATE(3623), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(2949), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214712] = 24, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [273073] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(12738), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2580), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(4874), 1, + sym__class_declaration_item, + STATE(7756), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8638), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2846), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7773), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [214793] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [273162] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(3361), 1, + sym_auto, + ACTIONS(3363), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(3399), 1, + anon_sym_class, + ACTIONS(3401), 1, + anon_sym_struct, + ACTIONS(3403), 1, + anon_sym_union, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10717), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, + sym_primitive_type, + ACTIONS(12407), 1, + anon_sym_enum, + ACTIONS(12409), 1, + anon_sym_typename, + STATE(3627), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2846), 2, - sym__class_name, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3658), 1, sym_qualified_type_identifier, - STATE(5662), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4041), 1, + sym_decltype_auto, + STATE(4072), 1, + sym_splice_specifier, + STATE(6420), 1, + sym_type_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3887), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [214874] = 24, + sym_splice_expression, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4042), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [273249] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7819), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7882), 1, + anon_sym___declspec, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2586), 1, - sym__class_declaration, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, sym_field_declaration_list, - STATE(5655), 1, + STATE(2878), 1, + sym__class_declaration_item, + STATE(7730), 1, sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(8639), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9457), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10302), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2846), 2, + STATE(2310), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7707), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [214955] = 7, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [273338] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LBRACE, - STATE(1951), 1, - sym_attribute_specifier, - STATE(5416), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6227), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(6225), 23, + ACTIONS(11701), 1, anon_sym_AMP, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8932), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -473218,34 +660356,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [273407] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3199), 1, + anon_sym_class, + ACTIONS(3201), 1, + anon_sym_struct, + ACTIONS(3203), 1, + anon_sym_union, + ACTIONS(3207), 1, + sym_auto, + ACTIONS(3209), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10676), 1, + sym_identifier, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(10680), 1, sym_primitive_type, + ACTIONS(12471), 1, + anon_sym_enum, + ACTIONS(12473), 1, + anon_sym_typename, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2509), 1, + sym_template_type, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2568), 1, + sym_qualified_type_identifier, + STATE(2925), 1, + sym_decltype_auto, + STATE(4639), 1, + sym_type_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2832), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2926), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [273494] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3243), 1, + anon_sym_enum, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_struct, + ACTIONS(3249), 1, + anon_sym_union, + ACTIONS(3255), 1, + sym_auto, + ACTIONS(3257), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10725), 1, sym_identifier, - [215002] = 7, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + sym_primitive_type, + ACTIONS(10731), 1, + anon_sym_typename, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2591), 1, + sym_template_type, + STATE(2699), 1, + sym_qualified_type_identifier, + STATE(2973), 1, + sym_decltype, + STATE(3039), 1, + sym_type_specifier, + STATE(3074), 1, + sym_splice_type_specifier, + STATE(3138), 1, + sym_decltype_auto, + STATE(8604), 1, + sym__scope_resolution, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3140), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [273583] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LBRACE, - STATE(1938), 1, - sym_attribute_specifier, - STATE(5419), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6175), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(6173), 23, + ACTIONS(11701), 1, anon_sym_AMP, + STATE(7436), 1, + sym_alignas_qualifier, + STATE(8937), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + ACTIONS(2939), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6842), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8721), 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(2937), 13, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -473258,228 +660534,620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [215049] = 24, + [273652] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, + ACTIONS(7882), 1, anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(12646), 1, + anon_sym_LBRACE, + ACTIONS(12770), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1939), 1, - sym__class_declaration, - STATE(2540), 1, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, sym_field_declaration_list, - STATE(5665), 1, + STATE(7491), 1, + sym__class_declaration_item, + STATE(7698), 1, sym_ms_declspec_modifier, - STATE(6834), 1, + STATE(8612), 1, sym__scope_resolution, - STATE(7259), 1, + STATE(9510), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(10405), 1, sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7876), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(7884), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, + STATE(7021), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5670), 2, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5308), 3, + STATE(8282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [215130] = 24, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [273741] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1921), 1, - sym__class_declaration_item, - STATE(1934), 1, - sym__class_declaration, - STATE(2540), 1, - sym_field_declaration_list, - STATE(5665), 1, - sym_ms_declspec_modifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(12144), 1, anon_sym___attribute__, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + STATE(7504), 1, + sym_ref_qualifier, + STATE(8259), 1, + sym_trailing_return_type, + STATE(8330), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5670), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [273826] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3175), 1, + anon_sym_class, + ACTIONS(3177), 1, + anon_sym_struct, + ACTIONS(3179), 1, + anon_sym_union, + ACTIONS(3185), 1, + sym_auto, + ACTIONS(3187), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10684), 1, + sym_identifier, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + sym_primitive_type, + ACTIONS(12682), 1, + anon_sym_enum, + ACTIONS(12684), 1, + anon_sym_typename, + STATE(1963), 1, + sym_template_type, + STATE(1994), 1, + sym_qualified_type_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2070), 1, + sym_decltype_auto, + STATE(3472), 1, + sym_type_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2063), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - STATE(5308), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [215211] = 24, + sym_splice_expression, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2089), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [273913] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(1954), 1, + anon_sym_enum, + ACTIONS(1956), 1, + anon_sym_class, + ACTIONS(1958), 1, + anon_sym_struct, + ACTIONS(1960), 1, + anon_sym_union, + ACTIONS(3071), 1, + sym_primitive_type, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(5313), 1, + anon_sym_typename, + ACTIONS(6091), 1, + sym_identifier, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4520), 1, + sym_template_type, + STATE(4521), 1, + sym_qualified_type_identifier, + STATE(4706), 1, + sym_decltype_auto, + STATE(4739), 1, + sym_type_specifier, + STATE(4790), 1, + sym_decltype, + STATE(5044), 1, + sym_splice_specifier, + STATE(5838), 1, + sym_splice_type_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274002] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3514), 1, + anon_sym_class, + ACTIONS(3516), 1, + anon_sym_struct, + ACTIONS(3518), 1, + anon_sym_union, + ACTIONS(3524), 1, + sym_auto, + ACTIONS(3526), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10733), 1, + sym_identifier, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10737), 1, + sym_primitive_type, + ACTIONS(12662), 1, + anon_sym_enum, + ACTIONS(12664), 1, + anon_sym_typename, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2580), 1, + sym_template_type, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2641), 1, + sym_qualified_type_identifier, + STATE(2982), 1, + sym_decltype_auto, + STATE(4824), 1, + sym_type_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(2856), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2983), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274089] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12806), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(12808), 1, + anon_sym_COLON_COLON, + ACTIONS(12812), 1, + sym_primitive_type, + ACTIONS(12814), 1, + anon_sym_enum, + ACTIONS(12816), 1, + anon_sym_class, + ACTIONS(12818), 1, + anon_sym_struct, + ACTIONS(12820), 1, + anon_sym_union, + ACTIONS(12822), 1, + anon_sym_typename, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4706), 1, + sym_decltype_auto, + STATE(7573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8606), 1, + sym__scope_resolution, + STATE(9062), 1, sym_template_type, - STATE(2585), 1, - sym__class_declaration, - STATE(2595), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5655), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, + STATE(9246), 1, + sym_qualified_type_identifier, + STATE(10451), 1, + sym_type_specifier, + STATE(4790), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4714), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274176] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2855), 1, + sym_auto, + ACTIONS(2857), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, + sym_primitive_type, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12670), 1, + anon_sym_enum, + ACTIONS(12672), 1, + anon_sym_typename, + STATE(3683), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3965), 1, + sym_template_type, + STATE(4048), 1, + sym_qualified_type_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4376), 1, + sym_type_specifier, + STATE(4401), 1, + sym_decltype_auto, + STATE(8549), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4402), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274263] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + sym_auto, + ACTIONS(1920), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3291), 1, + anon_sym_enum, + ACTIONS(3293), 1, + anon_sym_class, + ACTIONS(3295), 1, + anon_sym_struct, + ACTIONS(3297), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10295), 1, + sym_primitive_type, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(10653), 1, + anon_sym_typename, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(2949), 1, + sym_decltype, + STATE(3012), 1, + sym_type_specifier, + STATE(3100), 1, + sym_decltype_auto, + STATE(3424), 1, + sym_splice_type_specifier, + STATE(3561), 1, + sym_template_type, + STATE(3623), 1, + sym_qualified_type_identifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(10976), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3118), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274352] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(7494), 1, + sym_ref_qualifier, + STATE(8259), 1, + sym_trailing_return_type, + STATE(8487), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(2865), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5662), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [215292] = 22, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7659), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [274437] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2901), 1, + ACTIONS(2855), 1, sym_auto, - ACTIONS(2903), 1, + ACTIONS(2857), 1, anon_sym_decltype, - ACTIONS(8115), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3546), 1, + anon_sym_class, + ACTIONS(3548), 1, + anon_sym_struct, + ACTIONS(3550), 1, + anon_sym_union, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10699), 1, sym_primitive_type, - ACTIONS(9567), 1, + ACTIONS(10703), 1, sym_identifier, - ACTIONS(9569), 1, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9573), 1, + ACTIONS(12670), 1, anon_sym_enum, - ACTIONS(9575), 1, - anon_sym_class, - ACTIONS(9577), 1, - anon_sym_struct, - ACTIONS(9579), 1, - anon_sym_union, - ACTIONS(9581), 1, + ACTIONS(12672), 1, anon_sym_typename, - STATE(2298), 1, + STATE(3683), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2572), 1, + STATE(3965), 1, sym_template_type, - STATE(2619), 1, + STATE(4048), 1, sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2761), 1, - sym_type_specifier, - STATE(2779), 1, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4401), 1, sym_decltype_auto, - STATE(6808), 1, + STATE(6434), 1, + sym_type_specifier, + STATE(8549), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(4252), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(9571), 4, + sym_splice_expression, + ACTIONS(12668), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2781), 7, + STATE(4402), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473487,53 +661155,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215368] = 22, + [274524] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9545), 1, + ACTIONS(4772), 1, sym_identifier, - ACTIONS(9547), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9551), 1, + ACTIONS(4784), 1, sym_primitive_type, - ACTIONS(9553), 1, + ACTIONS(4786), 1, anon_sym_enum, - ACTIONS(9555), 1, + ACTIONS(4788), 1, anon_sym_class, - ACTIONS(9557), 1, + ACTIONS(4790), 1, anon_sym_struct, - ACTIONS(9559), 1, + ACTIONS(4792), 1, anon_sym_union, - ACTIONS(9561), 1, + ACTIONS(4794), 1, + anon_sym_typename, + ACTIONS(4796), 1, sym_auto, - ACTIONS(9563), 1, + ACTIONS(4798), 1, anon_sym_decltype, - ACTIONS(9565), 1, - anon_sym_typename, - STATE(1637), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5264), 1, sym_template_type, - STATE(2208), 1, + STATE(5495), 1, sym_qualified_type_identifier, - STATE(2240), 1, + STATE(5970), 1, sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, + STATE(6020), 1, sym_decltype_auto, - STATE(6803), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(5891), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10976), 2, sym_dependent_type_identifier, - ACTIONS(9549), 4, + sym_splice_expression, + ACTIONS(4782), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2359), 7, + STATE(5975), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473541,311 +661217,446 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215444] = 23, + [274611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3473), 1, - sym__class_declaration_item, - STATE(5710), 1, - sym_ms_declspec_modifier, - STATE(6848), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5709), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8934), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [215522] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [274689] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2803), 1, - sym__class_declaration_item, - STATE(5679), 1, - sym_ms_declspec_modifier, - STATE(6801), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8894), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [215600] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [274767] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5131), 1, - sym__class_declaration_item, - STATE(5718), 1, - sym_ms_declspec_modifier, - STATE(6851), 1, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5717), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8777), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [215678] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [274845] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9615), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9617), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9621), 1, - sym_primitive_type, - ACTIONS(9623), 1, - anon_sym_enum, - ACTIONS(9625), 1, - anon_sym_class, - ACTIONS(9627), 1, - anon_sym_struct, - ACTIONS(9629), 1, - anon_sym_union, - ACTIONS(9631), 1, - sym_auto, - ACTIONS(9633), 1, - anon_sym_decltype, - ACTIONS(9635), 1, - anon_sym_typename, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3139), 1, - sym_template_type, - STATE(3194), 1, - sym_qualified_type_identifier, - STATE(3576), 1, - sym_decltype, - STATE(3739), 1, - sym_decltype_auto, - STATE(3800), 1, - sym_type_specifier, - STATE(6829), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8274), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3742), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [215754] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [274923] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9547), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, + ACTIONS(9912), 1, + anon_sym_STAR, + ACTIONS(9914), 1, + anon_sym_AMP_AMP, + ACTIONS(9916), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8842), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275001] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9605), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9609), 1, - sym_primitive_type, - ACTIONS(9611), 1, - anon_sym_enum, - ACTIONS(9613), 1, - anon_sym_typename, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2240), 1, - sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(6803), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8622), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [215830] = 11, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275079] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(6994), 1, - sym_primitive_type, - STATE(1683), 1, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8814), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275157] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, sym_alignas_qualifier, - STATE(5459), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8987), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5124), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(5298), 2, + STATE(6280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5122), 3, + ACTIONS(6995), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(9711), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -473857,29 +661668,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [215884] = 7, + [275225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(9465), 1, - anon_sym_decltype, - ACTIONS(9713), 1, - sym_auto, - STATE(1917), 1, - sym_decltype_auto, - ACTIONS(5663), 3, + ACTIONS(6718), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5661), 23, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6716), 24, anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -473894,611 +661703,1119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [215930] = 23, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [275267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - STATE(4002), 1, - sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4269), 1, - sym__class_declaration_item, - STATE(5725), 1, - sym_ms_declspec_modifier, - STATE(6849), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5723), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8546), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275345] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [216008] = 22, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9031), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7445), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6999), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [275413] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9615), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9617), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9621), 1, - sym_primitive_type, - ACTIONS(9623), 1, - anon_sym_enum, - ACTIONS(9625), 1, - anon_sym_class, - ACTIONS(9627), 1, - anon_sym_struct, - ACTIONS(9629), 1, - anon_sym_union, - ACTIONS(9631), 1, - sym_auto, - ACTIONS(9633), 1, - anon_sym_decltype, - ACTIONS(9635), 1, - anon_sym_typename, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3139), 1, - sym_template_type, - STATE(3194), 1, - sym_qualified_type_identifier, - STATE(3369), 1, - sym_type_specifier, - STATE(3576), 1, - sym_decltype, - STATE(3739), 1, - sym_decltype_auto, - STATE(6829), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8951), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3742), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216084] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275491] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(9520), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9522), 1, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8684), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(1949), 1, - sym_type_specifier, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216160] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4956), 1, - sym__class_declaration_item, - STATE(5684), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(12642), 1, anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(7461), 1, + sym_enumerator_list, + STATE(7509), 1, + sym_attribute_specifier, + ACTIONS(6985), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6987), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5683), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [275621] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8944), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [216238] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9583), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9585), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9589), 1, - sym_primitive_type, - ACTIONS(9591), 1, - anon_sym_enum, - ACTIONS(9593), 1, - anon_sym_class, - ACTIONS(9595), 1, - anon_sym_struct, - ACTIONS(9597), 1, - anon_sym_union, - ACTIONS(9599), 1, - sym_auto, - ACTIONS(9601), 1, - anon_sym_decltype, - ACTIONS(9603), 1, - anon_sym_typename, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2929), 1, - sym_template_type, - STATE(3040), 1, - sym_qualified_type_identifier, - STATE(3050), 1, - sym_type_specifier, - STATE(3265), 1, - sym_decltype, - STATE(3429), 1, - sym_decltype_auto, - STATE(6848), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8267), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216314] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9545), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9547), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9551), 1, - sym_primitive_type, - ACTIONS(9553), 1, - anon_sym_enum, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9565), 1, - anon_sym_typename, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(2398), 1, - sym_type_specifier, - STATE(6803), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8925), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216390] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275855] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1816), 1, - anon_sym_enum, - ACTIONS(1818), 1, - anon_sym_class, - ACTIONS(1820), 1, - anon_sym_struct, - ACTIONS(1822), 1, - anon_sym_union, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [275933] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1850), 1, - anon_sym_typename, - ACTIONS(8047), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(8051), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(8053), 1, - sym_primitive_type, - STATE(1882), 1, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8560), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(1949), 1, - sym_type_specifier, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6795), 1, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276011] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10812), 1, + anon_sym_requires, + STATE(7547), 1, + sym_ref_qualifier, + STATE(8586), 1, + sym__function_attributes_end, + STATE(8596), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7721), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [276095] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8388), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216466] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276173] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12170), 1, + anon_sym_requires, + STATE(7926), 1, + sym_trailing_return_type, + STATE(8243), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12167), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7601), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [276251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1268), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1874), 1, - anon_sym_enum, - ACTIONS(1876), 1, - anon_sym_class, - ACTIONS(1878), 1, - anon_sym_struct, - ACTIONS(1880), 1, - anon_sym_union, - ACTIONS(1882), 1, - anon_sym_typename, - ACTIONS(2829), 1, - sym_primitive_type, - ACTIONS(5038), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(5048), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2471), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8287), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2915), 1, - sym_qualified_type_identifier, - STATE(2970), 1, sym_template_type, - STATE(6840), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216542] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276329] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, + ACTIONS(12170), 1, + anon_sym_requires, + ACTIONS(12532), 1, + anon_sym___asm, + STATE(7926), 1, + sym_trailing_return_type, + STATE(8012), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(12167), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12529), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7586), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2581), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5653), 1, - sym_ms_declspec_modifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + anon_sym_EQ, + anon_sym_try, + [276407] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12532), 1, + anon_sym___asm, + STATE(7917), 1, + sym_trailing_return_type, + STATE(8006), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5651), 2, + ACTIONS(12529), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [216620] = 23, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7600), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [276485] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2581), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5739), 1, - sym_ms_declspec_modifier, - STATE(6840), 1, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8744), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276563] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12784), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12790), 1, + anon_sym_requires, + STATE(7927), 1, + sym_trailing_return_type, + STATE(8255), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5738), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [216698] = 5, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7584), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [276641] = 21, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6048), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9888), 1, anon_sym_STAR, + ACTIONS(9890), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9715), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6050), 21, + ACTIONS(9892), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [216740] = 5, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8563), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276719] = 16, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6052), 4, + ACTIONS(6093), 1, anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, anon_sym_STAR, + ACTIONS(11828), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6054), 21, + ACTIONS(11830), 1, anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9021), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7396), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6991), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -474510,647 +662827,887 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [216782] = 5, + [276787] = 21, ACTIONS(3), 1, sym_comment, - STATE(5318), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6022), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_COLON_COLON, + ACTIONS(9912), 1, anon_sym_STAR, + ACTIONS(9914), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9721), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6024), 21, + ACTIONS(9916), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [216824] = 22, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8684), 1, + sym__declarator, + STATE(10776), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276865] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(9520), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9522), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8303), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4026), 1, - sym_type_specifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216900] = 5, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [276943] = 21, ACTIONS(3), 1, sym_comment, - STATE(5319), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6068), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, anon_sym_STAR, + ACTIONS(9896), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9724), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6070), 21, + ACTIONS(9898), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [216942] = 5, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8807), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277021] = 21, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6086), 4, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9727), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6088), 21, + ACTIONS(3053), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [216984] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(9520), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9522), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8684), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4025), 1, - sym_type_specifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217060] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277099] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(6174), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12784), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12790), 1, + anon_sym_requires, + ACTIONS(12830), 1, + anon_sym___asm, + STATE(7927), 1, sym_trailing_return_type, - STATE(6334), 1, + STATE(8013), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + ACTIONS(12827), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5523), 3, + STATE(7590), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [217134] = 22, + ACTIONS(7627), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277177] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9583), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(9585), 1, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(9589), 1, - sym_primitive_type, - ACTIONS(9591), 1, - anon_sym_enum, - ACTIONS(9593), 1, - anon_sym_class, - ACTIONS(9595), 1, - anon_sym_struct, - ACTIONS(9597), 1, - anon_sym_union, - ACTIONS(9599), 1, - sym_auto, - ACTIONS(9601), 1, - anon_sym_decltype, - ACTIONS(9603), 1, - anon_sym_typename, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2929), 1, - sym_template_type, - STATE(3040), 1, - sym_qualified_type_identifier, - STATE(3052), 1, - sym_type_specifier, - STATE(3265), 1, - sym_decltype, - STATE(3429), 1, - sym_decltype_auto, - STATE(6848), 1, + ACTIONS(9900), 1, + anon_sym_STAR, + ACTIONS(9902), 1, + anon_sym_AMP_AMP, + ACTIONS(9904), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7878), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8689), 1, + sym__declarator, + STATE(10656), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217210] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277255] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1973), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(5750), 1, - sym_ms_declspec_modifier, - STATE(6795), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5740), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8935), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [217288] = 4, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277333] = 21, ACTIONS(3), 1, sym_comment, - STATE(5348), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5860), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, anon_sym_STAR, + ACTIONS(9878), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5858), 25, + ACTIONS(9880), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8298), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277411] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - [217328] = 5, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8893), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277489] = 21, ACTIONS(3), 1, sym_comment, - STATE(5280), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6095), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, anon_sym_STAR, + ACTIONS(9896), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9730), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6097), 21, + ACTIONS(9898), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8802), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277567] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - [217370] = 23, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + ACTIONS(9894), 1, + anon_sym_STAR, + ACTIONS(9896), 1, + anon_sym_AMP_AMP, + ACTIONS(9898), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8751), 1, + sym__declarator, + STATE(10563), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277645] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - STATE(2731), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8273), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3279), 1, - sym__class_declaration_item, - STATE(5782), 1, - sym_ms_declspec_modifier, - STATE(6809), 1, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277723] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(9906), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + anon_sym_AMP_AMP, + ACTIONS(9910), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5781), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8689), 1, + sym__declarator, + STATE(10827), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [217448] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [277801] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(7830), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - STATE(5616), 1, + STATE(7938), 1, sym_trailing_return_type, - STATE(6464), 1, + STATE(8256), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5518), 3, + STATE(7615), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [217522] = 21, + ACTIONS(7627), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(7830), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - STATE(5624), 1, + ACTIONS(12830), 1, + anon_sym___asm, + STATE(7938), 1, sym_trailing_return_type, - STATE(6473), 1, + STATE(8007), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(12827), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5524), 3, + STATE(7604), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [217596] = 5, + ACTIONS(7627), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277957] = 8, ACTIONS(3), 1, sym_comment, - STATE(5281), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6101), 4, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, + anon_sym___attribute, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(7479), 1, + sym_enumerator_list, + STATE(7498), 1, + sym_attribute_specifier, + ACTIONS(7011), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7013), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9733), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6103), 21, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475164,84 +663721,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [217638] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [278009] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2871), 1, - anon_sym_enum, - ACTIONS(2873), 1, - anon_sym_class, - ACTIONS(2875), 1, - anon_sym_struct, - ACTIONS(2877), 1, - anon_sym_union, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(2905), 1, - anon_sym_typename, - ACTIONS(8111), 1, - sym_identifier, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(8115), 1, - sym_primitive_type, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2761), 1, - sym_type_specifier, - STATE(2779), 1, - sym_decltype_auto, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217714] = 5, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(12833), 1, + anon_sym_requires, + STATE(7545), 1, + sym_ref_qualifier, + STATE(8567), 1, + sym__function_attributes_end, + STATE(8568), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7715), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [278093] = 3, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5212), 4, + ACTIONS(9924), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(9926), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9736), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5215), 21, - anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, + 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, @@ -475255,39 +663825,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [217756] = 11, + [278135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, - sym_identifier, - ACTIONS(7007), 1, - sym_primitive_type, - STATE(1683), 1, - sym_alignas_qualifier, - STATE(3341), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5139), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5137), 3, + ACTIONS(2758), 10, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(7005), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, + anon_sym_LBRACK_COLON, + ACTIONS(2768), 24, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -475300,1047 +663858,876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217810] = 22, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [278177] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9605), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9609), 1, - sym_primitive_type, - ACTIONS(9611), 1, - anon_sym_enum, - ACTIONS(9613), 1, - anon_sym_typename, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(2398), 1, - sym_type_specifier, - STATE(6803), 1, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8941), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217886] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278255] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9489), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9491), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9495), 1, - sym_primitive_type, - ACTIONS(9497), 1, - anon_sym_enum, - ACTIONS(9499), 1, - anon_sym_class, - ACTIONS(9501), 1, - anon_sym_struct, - ACTIONS(9503), 1, - anon_sym_union, - ACTIONS(9505), 1, - sym_auto, - ACTIONS(9507), 1, - anon_sym_decltype, - ACTIONS(9509), 1, - anon_sym_typename, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2848), 1, - sym_template_type, - STATE(2893), 1, - sym_qualified_type_identifier, - STATE(2917), 1, - sym_type_specifier, - STATE(3178), 1, - sym_decltype, - STATE(3245), 1, - sym_decltype_auto, - STATE(6809), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8250), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3248), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217962] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278333] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8145), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(8147), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(8149), 1, - anon_sym_enum, - ACTIONS(8151), 1, - anon_sym_class, - ACTIONS(8153), 1, - anon_sym_struct, - ACTIONS(8155), 1, - anon_sym_union, - ACTIONS(8157), 1, - anon_sym_typename, - STATE(2471), 1, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8643), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4437), 1, sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(4983), 1, - sym_type_specifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [218038] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278411] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5844), 1, - sym_trailing_return_type, - STATE(6221), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8968), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6497), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5501), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218112] = 21, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [278479] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - STATE(5846), 1, - sym_trailing_return_type, - STATE(6222), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8970), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7007), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5502), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218186] = 21, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [278547] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7830), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5587), 1, + STATE(7917), 1, sym_trailing_return_type, - STATE(6483), 1, + STATE(8300), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5509), 3, + STATE(7597), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [218260] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - STATE(6437), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7544), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - STATE(5510), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218334] = 22, + anon_sym_try, + [278625] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9615), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9617), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9621), 1, - sym_primitive_type, - ACTIONS(9623), 1, - anon_sym_enum, - ACTIONS(9625), 1, - anon_sym_class, - ACTIONS(9627), 1, - anon_sym_struct, - ACTIONS(9629), 1, - anon_sym_union, - ACTIONS(9631), 1, - sym_auto, - ACTIONS(9633), 1, - anon_sym_decltype, - ACTIONS(9635), 1, - anon_sym_typename, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3139), 1, - sym_template_type, - STATE(3194), 1, - sym_qualified_type_identifier, - STATE(3326), 1, - sym_type_specifier, - STATE(3576), 1, - sym_decltype, - STATE(3739), 1, - sym_decltype_auto, - STATE(6829), 1, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8595), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3742), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [218410] = 22, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278703] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(9583), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(9585), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9589), 1, - sym_primitive_type, - ACTIONS(9591), 1, - anon_sym_enum, - ACTIONS(9593), 1, - anon_sym_class, - ACTIONS(9595), 1, - anon_sym_struct, - ACTIONS(9597), 1, - anon_sym_union, - ACTIONS(9599), 1, - sym_auto, - ACTIONS(9601), 1, - anon_sym_decltype, - ACTIONS(9603), 1, - anon_sym_typename, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2929), 1, - sym_template_type, - STATE(3040), 1, - sym_qualified_type_identifier, - STATE(3265), 1, - sym_decltype, - STATE(3429), 1, - sym_decltype_auto, - STATE(3445), 1, - sym_type_specifier, - STATE(6848), 1, + ACTIONS(9888), 1, + anon_sym_STAR, + ACTIONS(9890), 1, + anon_sym_AMP_AMP, + ACTIONS(9892), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, sym__scope_resolution, - STATE(9058), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8602), 1, + sym__declarator, + STATE(10719), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [218486] = 23, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278781] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11431), 1, + anon_sym_const, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, + sym_parameter_list, + STATE(6485), 1, + sym_alignas_qualifier, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9027), 1, + sym__abstract_declarator, + ACTIONS(11433), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6280), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7003), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11421), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [278849] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9874), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1973), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(5713), 1, - sym_ms_declspec_modifier, - STATE(6834), 1, + ACTIONS(9876), 1, + anon_sym_STAR, + ACTIONS(9878), 1, + anon_sym_AMP_AMP, + ACTIONS(9880), 1, + anon_sym_AMP, + ACTIONS(9882), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7870), 1, sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5705), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8388), 1, + sym__declarator, + STATE(11345), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [218564] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [278927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(9975), 5, + anon_sym_AMP, anon_sym___attribute, - STATE(6318), 1, - sym__function_attributes_end, - STATE(6420), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5498), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218638] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - STATE(6319), 1, - sym__function_attributes_end, - STATE(6430), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_COMMA, + anon_sym___inline, + anon_sym_const, + ACTIONS(9977), 29, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5519), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218712] = 22, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [278969] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1268), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8195), 1, sym_identifier, - ACTIONS(8175), 1, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(9742), 1, - anon_sym_enum, - ACTIONS(9744), 1, - anon_sym_typename, - STATE(2471), 1, + ACTIONS(9818), 1, + anon_sym_STAR, + ACTIONS(9820), 1, + anon_sym_AMP_AMP, + ACTIONS(9822), 1, + anon_sym_AMP, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7878), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8388), 1, + sym__declarator, + STATE(11190), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(3484), 1, sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(5268), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(9740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [218788] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [279047] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6173), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3047), 1, anon_sym_LPAREN2, - STATE(5530), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218862] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - STATE(6226), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5513), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [218936] = 22, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8914), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [279125] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(1268), 1, + ACTIONS(3047), 1, + anon_sym_LPAREN2, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3051), 1, + anon_sym_STAR, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_LBRACK, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7868), 1, sym_identifier, - ACTIONS(8175), 1, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(8177), 1, - anon_sym_enum, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(8185), 1, - anon_sym_typename, - STATE(2471), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7869), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(8913), 1, + sym__declarator, + STATE(11063), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, sym_dependent_type_identifier, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219012] = 21, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8469), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [279203] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7525), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(7812), 1, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(6180), 1, - sym_trailing_return_type, - STATE(6336), 1, + STATE(7580), 1, + sym_ref_qualifier, + STATE(8484), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8596), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7544), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5512), 3, + anon_sym_GT2, + STATE(7855), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [219086] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4956), 1, - sym__class_declaration_item, - STATE(5649), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5648), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [219164] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9489), 1, - sym_identifier, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9495), 1, - sym_primitive_type, - ACTIONS(9497), 1, - anon_sym_enum, - ACTIONS(9499), 1, - anon_sym_class, - ACTIONS(9501), 1, - anon_sym_struct, - ACTIONS(9503), 1, - anon_sym_union, - ACTIONS(9505), 1, - sym_auto, - ACTIONS(9507), 1, - anon_sym_decltype, - ACTIONS(9509), 1, - anon_sym_typename, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2848), 1, - sym_template_type, - STATE(2893), 1, - sym_qualified_type_identifier, - STATE(2990), 1, - sym_type_specifier, - STATE(3178), 1, - sym_decltype, - STATE(3245), 1, - sym_decltype_auto, - STATE(6809), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3248), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219240] = 5, + [279286] = 16, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6158), 4, + ACTIONS(6093), 1, anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11902), 1, anon_sym_STAR, + ACTIONS(11904), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9746), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6160), 21, + ACTIONS(11906), 1, anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9137), 1, + sym__abstract_declarator, + ACTIONS(7007), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476352,32 +664739,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [219282] = 5, + [279353] = 6, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6064), 4, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, + anon_sym___attribute, + STATE(7517), 1, + sym_attribute_specifier, + ACTIONS(7065), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7067), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6066), 21, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476391,301 +664775,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [219324] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [279400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(7031), 4, + anon_sym_AMP, + anon_sym___attribute, anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2581), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5800), 1, - sym_ms_declspec_modifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + anon_sym_const, + ACTIONS(5272), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5789), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [219402] = 21, + anon_sym_requires, + [279447] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7846), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(9444), 1, + ACTIONS(12833), 1, anon_sym_requires, - STATE(6327), 1, + STATE(7553), 1, + sym_ref_qualifier, + STATE(8490), 1, sym__function_attributes_end, - STATE(6428), 1, + STATE(8568), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7544), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(5526), 3, + STATE(7828), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [219476] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(8115), 1, - sym_primitive_type, - ACTIONS(9567), 1, - sym_identifier, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9573), 1, - anon_sym_enum, - ACTIONS(9575), 1, - anon_sym_class, - ACTIONS(9577), 1, - anon_sym_struct, - ACTIONS(9579), 1, - anon_sym_union, - ACTIONS(9581), 1, - anon_sym_typename, - STATE(2298), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4350), 1, - sym_type_specifier, - STATE(6808), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219552] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4140), 1, - sym_type_specifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219628] = 23, + [279530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1973), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(5704), 1, - sym_ms_declspec_modifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, - STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(12642), 1, anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, + STATE(7537), 1, sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [219706] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6058), 4, + ACTIONS(7091), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7093), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9752), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6060), 21, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476699,1217 +664916,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [219748] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2901), 1, - sym_auto, - ACTIONS(2903), 1, - anon_sym_decltype, - ACTIONS(8115), 1, - sym_primitive_type, - ACTIONS(9567), 1, - sym_identifier, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9573), 1, - anon_sym_enum, - ACTIONS(9575), 1, - anon_sym_class, - ACTIONS(9577), 1, - anon_sym_struct, - ACTIONS(9579), 1, - anon_sym_union, - ACTIONS(9581), 1, - anon_sym_typename, - STATE(2298), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2572), 1, - sym_template_type, - STATE(2619), 1, - sym_qualified_type_identifier, - STATE(2742), 1, - sym_decltype, - STATE(2779), 1, - sym_decltype_auto, - STATE(4393), 1, - sym_type_specifier, - STATE(6808), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2781), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219824] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8119), 1, - sym_identifier, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8125), 1, - sym_primitive_type, - ACTIONS(8127), 1, - anon_sym_enum, - ACTIONS(8129), 1, - anon_sym_class, - ACTIONS(8131), 1, - anon_sym_struct, - ACTIONS(8133), 1, - anon_sym_union, - ACTIONS(8135), 1, - sym_auto, - ACTIONS(8137), 1, - anon_sym_decltype, - ACTIONS(8139), 1, - anon_sym_typename, - STATE(2471), 1, - sym_decltype, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4437), 1, - sym_template_type, - STATE(4504), 1, - sym_qualified_type_identifier, - STATE(4952), 1, - sym_decltype_auto, - STATE(4983), 1, - sym_type_specifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4954), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219900] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_primitive_type, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9650), 1, - anon_sym_class, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - ACTIONS(9656), 1, - sym_auto, - ACTIONS(9658), 1, - anon_sym_decltype, - ACTIONS(9660), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4026), 1, - sym_type_specifier, - STATE(4074), 1, - sym_template_type, - STATE(4120), 1, - sym_qualified_type_identifier, - STATE(4155), 1, - sym_decltype, - STATE(4227), 1, - sym_decltype_auto, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4228), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [219976] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2829), 1, - sym_primitive_type, - ACTIONS(2831), 1, - anon_sym_enum, - ACTIONS(2833), 1, - anon_sym_class, - ACTIONS(2835), 1, - anon_sym_struct, - ACTIONS(2837), 1, - anon_sym_union, - ACTIONS(2839), 1, - anon_sym_typename, - ACTIONS(4573), 1, - sym_identifier, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2471), 1, - sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2915), 1, - sym_qualified_type_identifier, - STATE(2970), 1, - sym_template_type, - STATE(6842), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220052] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_primitive_type, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9650), 1, - anon_sym_class, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - ACTIONS(9656), 1, - sym_auto, - ACTIONS(9658), 1, - anon_sym_decltype, - ACTIONS(9660), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4025), 1, - sym_type_specifier, - STATE(4074), 1, - sym_template_type, - STATE(4120), 1, - sym_qualified_type_identifier, - STATE(4155), 1, - sym_decltype, - STATE(4227), 1, - sym_decltype_auto, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4228), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220128] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(9742), 1, - anon_sym_enum, - ACTIONS(9744), 1, - anon_sym_typename, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(5268), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6850), 1, - sym__scope_resolution, - STATE(7949), 1, - sym_type_specifier, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220204] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8053), 1, - sym_primitive_type, - ACTIONS(9520), 1, - sym_identifier, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9526), 1, - anon_sym_enum, - ACTIONS(9528), 1, - anon_sym_class, - ACTIONS(9530), 1, - anon_sym_struct, - ACTIONS(9532), 1, - anon_sym_union, - ACTIONS(9534), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_template_type, - STATE(2315), 1, - sym_qualified_type_identifier, - STATE(4130), 1, - sym_type_specifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220280] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1846), 1, - sym_auto, - ACTIONS(1848), 1, - anon_sym_decltype, - ACTIONS(8093), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(8099), 1, - sym_primitive_type, - ACTIONS(8101), 1, - anon_sym_enum, - ACTIONS(8103), 1, - anon_sym_class, - ACTIONS(8105), 1, - anon_sym_struct, - ACTIONS(8107), 1, - anon_sym_union, - ACTIONS(8109), 1, - anon_sym_typename, - STATE(1882), 1, - sym_decltype, - STATE(1924), 1, - sym_decltype_auto, - STATE(1949), 1, - sym_type_specifier, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5269), 1, - sym_template_type, - STATE(5355), 1, - sym_qualified_type_identifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1929), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220356] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(3931), 1, - anon_sym_enum, - ACTIONS(3933), 1, - anon_sym_class, - ACTIONS(3935), 1, - anon_sym_struct, - ACTIONS(3937), 1, - anon_sym_union, - ACTIONS(3939), 1, - anon_sym_typename, - STATE(2471), 1, - sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220432] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2581), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(5755), 1, - sym_ms_declspec_modifier, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5521), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5754), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [220510] = 23, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [279577] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, - sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3736), 1, - sym__class_declaration_item, - STATE(5700), 1, - sym_ms_declspec_modifier, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5513), 2, - anon_sym___attribute__, + ACTIONS(8907), 1, anon_sym___attribute, - ACTIONS(5521), 2, + ACTIONS(9025), 1, + anon_sym___attribute__, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(12836), 1, + anon_sym_COLON, + STATE(3021), 1, + sym_attribute_specifier, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3793), 1, + sym_enumerator_list, + ACTIONS(7651), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7653), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5699), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [220588] = 21, + anon_sym_requires, + [279632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9705), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(10478), 1, anon_sym_requires, - STATE(6328), 1, + STATE(8454), 1, sym__function_attributes_end, - STATE(6434), 1, + STATE(8456), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5508), 3, + STATE(7616), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [220662] = 22, + ACTIONS(7544), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [279709] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - anon_sym_enum, - ACTIONS(75), 1, - anon_sym_class, - ACTIONS(77), 1, - anon_sym_struct, - ACTIONS(79), 1, - anon_sym_union, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(131), 1, - anon_sym_typename, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(2829), 1, - sym_primitive_type, - ACTIONS(4573), 1, + ACTIONS(12838), 1, sym_identifier, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - STATE(2385), 1, + ACTIONS(12844), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7556), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2471), 1, - sym_decltype, - STATE(2564), 1, - sym_type_specifier, - STATE(2569), 1, - sym_decltype_auto, - STATE(2915), 1, - sym_qualified_type_identifier, - STATE(2970), 1, - sym_template_type, - STATE(6842), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(9322), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7475), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6812), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(6814), 4, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + ACTIONS(12841), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220738] = 21, + ACTIONS(9317), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [279766] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(11902), 1, + anon_sym_STAR, + ACTIONS(11904), 1, + anon_sym_AMP_AMP, + ACTIONS(11906), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9139), 1, + sym__abstract_declarator, + ACTIONS(6995), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [279833] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12642), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6371), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, + STATE(7515), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7095), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7097), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5521), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [220812] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9489), 1, - sym_identifier, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9495), 1, - sym_primitive_type, - ACTIONS(9497), 1, - anon_sym_enum, - ACTIONS(9499), 1, - anon_sym_class, - ACTIONS(9501), 1, - anon_sym_struct, - ACTIONS(9503), 1, - anon_sym_union, - ACTIONS(9505), 1, - sym_auto, - ACTIONS(9507), 1, - anon_sym_decltype, - ACTIONS(9509), 1, - anon_sym_typename, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2848), 1, - sym_template_type, - STATE(2893), 1, - sym_qualified_type_identifier, - STATE(3178), 1, - sym_decltype, - STATE(3245), 1, - sym_decltype_auto, - STATE(3315), 1, - sym_type_specifier, - STATE(6809), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3248), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220888] = 22, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [279880] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9605), 1, - sym_identifier, - ACTIONS(9609), 1, - sym_primitive_type, - ACTIONS(9611), 1, - anon_sym_enum, - ACTIONS(9613), 1, - anon_sym_typename, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2238), 1, - sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220964] = 23, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11902), 1, + anon_sym_STAR, + ACTIONS(11904), 1, + anon_sym_AMP_AMP, + ACTIONS(11906), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9140), 1, + sym__abstract_declarator, + ACTIONS(6999), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7466), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [279947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(5680), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, - sym_field_declaration_list, - STATE(2383), 1, - sym__class_declaration_item, - STATE(5659), 1, - sym_ms_declspec_modifier, - STATE(6803), 1, - sym__scope_resolution, - STATE(7200), 1, - sym_virtual_specifier, - STATE(7886), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(12642), 1, anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(5521), 2, + STATE(7503), 1, + sym_attribute_specifier, + ACTIONS(7087), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7089), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5658), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [221042] = 21, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [279994] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7812), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(9637), 1, + ACTIONS(12747), 1, anon_sym_requires, - STATE(6202), 1, + STATE(7560), 1, + sym_ref_qualifier, + STATE(8438), 1, sym_trailing_return_type, - STATE(6374), 1, + STATE(8502), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7544), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5522), 3, + STATE(7809), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [221116] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8055), 1, - sym_identifier, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(8061), 1, - sym_primitive_type, - ACTIONS(8063), 1, - anon_sym_enum, - ACTIONS(8065), 1, - anon_sym_class, - ACTIONS(8067), 1, - anon_sym_struct, - ACTIONS(8069), 1, - anon_sym_union, - ACTIONS(8071), 1, - sym_auto, - ACTIONS(8073), 1, - anon_sym_decltype, - ACTIONS(8075), 1, - anon_sym_typename, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4918), 1, - sym_template_type, - STATE(4938), 1, - sym_qualified_type_identifier, - STATE(5058), 1, - sym_decltype, - STATE(5070), 1, - sym_type_specifier, - STATE(5115), 1, - sym_decltype_auto, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5143), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [221192] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3929), 1, - sym_primitive_type, - ACTIONS(8173), 1, - sym_identifier, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(8179), 1, - anon_sym_class, - ACTIONS(8181), 1, - anon_sym_struct, - ACTIONS(8183), 1, - anon_sym_union, - ACTIONS(9742), 1, - anon_sym_enum, - ACTIONS(9744), 1, - anon_sym_typename, - STATE(2471), 1, - sym_decltype, - STATE(2569), 1, - sym_decltype_auto, - STATE(3484), 1, - sym_template_type, - STATE(3590), 1, - sym_qualified_type_identifier, - STATE(5268), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6850), 1, - sym__scope_resolution, - STATE(7960), 1, - sym_type_specifier, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2553), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [221268] = 22, + [280077] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9646), 1, - sym_primitive_type, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9650), 1, - anon_sym_class, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - ACTIONS(9656), 1, - sym_auto, - ACTIONS(9658), 1, - anon_sym_decltype, - ACTIONS(9660), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4074), 1, - sym_template_type, - STATE(4120), 1, - sym_qualified_type_identifier, - STATE(4155), 1, - sym_decltype, - STATE(4227), 1, - sym_decltype_auto, - STATE(4248), 1, - sym_type_specifier, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4228), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [221344] = 22, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(12847), 1, + anon_sym_COLON, + STATE(4204), 1, + sym__enum_base_clause, + STATE(4254), 1, + sym_enumerator_list, + STATE(4375), 1, + sym_attribute_specifier, + ACTIONS(7600), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7602), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [280132] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9545), 1, - sym_identifier, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9551), 1, - sym_primitive_type, - ACTIONS(9553), 1, - anon_sym_enum, - ACTIONS(9555), 1, - anon_sym_class, - ACTIONS(9557), 1, - anon_sym_struct, - ACTIONS(9559), 1, - anon_sym_union, - ACTIONS(9561), 1, - sym_auto, - ACTIONS(9563), 1, - anon_sym_decltype, - ACTIONS(9565), 1, - anon_sym_typename, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_template_type, - STATE(2208), 1, - sym_qualified_type_identifier, - STATE(2238), 1, - sym_type_specifier, - STATE(2286), 1, - sym_decltype, - STATE(2356), 1, - sym_decltype_auto, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_dependent_type_identifier, - ACTIONS(9549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2359), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [221420] = 5, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11902), 1, + anon_sym_STAR, + ACTIONS(11904), 1, + anon_sym_AMP_AMP, + ACTIONS(11906), 1, + anon_sym_AMP, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9059), 1, + sym__abstract_declarator, + ACTIONS(7003), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [280199] = 9, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6028), 4, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(12849), 1, + anon_sym_COLON, + STATE(3021), 1, + sym_attribute_specifier, + STATE(7544), 1, + sym__enum_base_clause, + STATE(7614), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7653), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9755), 4, + ACTIONS(7651), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6030), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -477926,339 +665451,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [221462] = 23, + [280252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2581), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(5672), 1, - sym_ms_declspec_modifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(12642), 1, anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(5521), 2, + STATE(7520), 1, + sym_attribute_specifier, + ACTIONS(7099), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7101), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5671), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [221540] = 23, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5519), 1, - anon_sym___declspec, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2803), 1, - sym__class_declaration_item, - STATE(5691), 1, - sym_ms_declspec_modifier, - STATE(6808), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5513), 2, + ACTIONS(12642), 1, anon_sym___attribute__, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(5521), 2, + STATE(7508), 1, + sym_attribute_specifier, + ACTIONS(7057), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7059), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5690), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [221618] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, + anon_sym___attribute, + STATE(7499), 1, + sym_attribute_specifier, + ACTIONS(7133), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7135), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6888), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [221685] = 18, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(9425), 1, + ACTIONS(12642), 1, anon_sym___attribute__, - ACTIONS(9428), 1, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - STATE(5863), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, + STATE(7501), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 7, + ACTIONS(7053), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7055), 28, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [221752] = 21, + anon_sym_requires, + [280440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(12642), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6610), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, + STATE(7519), 1, + sym_attribute_specifier, + ACTIONS(7187), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7189), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9414), 2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5538), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [221825] = 21, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(12642), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12644), 1, anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + STATE(7531), 1, + sym_attribute_specifier, + ACTIONS(7103), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7105), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6174), 1, - sym_trailing_return_type, - STATE(6599), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5554), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [221898] = 6, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280534] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9465), 1, - anon_sym_decltype, - ACTIONS(9713), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11895), 1, + anon_sym_LT, + ACTIONS(12853), 1, sym_auto, - STATE(1917), 1, + ACTIONS(12855), 1, + anon_sym_decltype, + STATE(3014), 1, sym_decltype_auto, - ACTIONS(5663), 3, + STATE(3601), 1, + sym_template_argument_list, + STATE(7567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5258), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5661), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + ACTIONS(12851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5251), 19, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -478275,633 +665743,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [221941] = 21, + [280591] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(12857), 1, + sym_identifier, + ACTIONS(12863), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7551), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9335), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6884), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(6886), 4, + anon_sym_AMP, anon_sym___attribute__, - ACTIONS(7354), 1, anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6202), 1, - sym_trailing_return_type, - STATE(6612), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5547), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [222014] = 21, + anon_sym___based, + ACTIONS(12860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9330), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [280648] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6180), 1, - sym_trailing_return_type, - STATE(6600), 1, + ACTIONS(12869), 1, + anon_sym_requires, + STATE(8440), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - STATE(5539), 3, + STATE(7619), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [222087] = 21, + ACTIONS(7627), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [280725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(7107), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9517), 1, - anon_sym_requires, - STATE(6526), 1, - sym__function_attributes_end, - STATE(6716), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, + anon_sym_const, + ACTIONS(7109), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9194), 2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5536), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [222160] = 21, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280766] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9758), 1, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, anon_sym_requires, - STATE(6527), 1, + STATE(8437), 1, sym__function_attributes_end, - STATE(6717), 1, + STATE(8438), 1, sym_trailing_return_type, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9436), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - STATE(5540), 3, + STATE(7618), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [222233] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7544), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7328), 1, - anon_sym_STAR, - ACTIONS(7330), 1, - anon_sym_AMP_AMP, - ACTIONS(7332), 1, - anon_sym_AMP, - STATE(5969), 1, - sym__scope_resolution, - STATE(6341), 1, - sym__declarator, - STATE(8400), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222300] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [280843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, + anon_sym___attribute, + STATE(7495), 1, + sym_attribute_specifier, + ACTIONS(7123), 2, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6715), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222367] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_const, + ACTIONS(7125), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6674), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222434] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280890] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, + ACTIONS(11902), 1, anon_sym_STAR, - ACTIONS(7312), 1, + ACTIONS(11904), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(11906), 1, anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6468), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222501] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9057), 1, + sym__abstract_declarator, + ACTIONS(6991), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7460), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [280957] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12642), 1, + anon_sym___attribute__, + ACTIONS(12644), 1, + anon_sym___attribute, + STATE(7538), 1, + sym_attribute_specifier, + ACTIONS(7061), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7063), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6917), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222568] = 18, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281004] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(12849), 1, + anon_sym_COLON, + STATE(3078), 1, + sym_attribute_specifier, + STATE(7539), 1, + sym__enum_base_clause, + STATE(7609), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7602), 3, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(7600), 23, anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6433), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222635] = 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [281057] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7084), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, + anon_sym_AMP_AMP, + ACTIONS(9999), 1, + anon_sym_AMP, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(9763), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9766), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9777), 1, - anon_sym_requires, - STATE(5752), 1, + STATE(7571), 1, + sym_ref_qualifier, + STATE(8456), 1, sym_trailing_return_type, - STATE(5865), 1, + STATE(8543), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9774), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(7544), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [222702] = 18, + STATE(7805), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [281140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6891), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222769] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9782), 3, + ACTIONS(6798), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6800), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9780), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -478913,624 +666207,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [222814] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6065), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222881] = 18, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281183] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(9592), 1, + anon_sym___attribute__, + ACTIONS(9594), 1, + anon_sym___attribute, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(12847), 1, + anon_sym_COLON, + STATE(4180), 1, + sym__enum_base_clause, + STATE(4251), 1, + sym_enumerator_list, + STATE(4323), 1, + sym_attribute_specifier, + ACTIONS(7651), 2, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6897), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222948] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_const, + ACTIONS(7653), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6687), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223015] = 21, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [281238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7433), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, + ACTIONS(10478), 1, anon_sym_requires, - STATE(6573), 1, + STATE(8390), 1, sym__function_attributes_end, - STATE(6785), 1, + STATE(8392), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - STATE(5533), 3, + STATE(7617), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [223088] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7627), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, - anon_sym_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6393), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223155] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [281315] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(7784), 1, + anon_sym_const, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(11902), 1, anon_sym_STAR, - ACTIONS(7340), 1, + ACTIONS(11904), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(11906), 1, anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6715), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223222] = 18, + STATE(2592), 1, + sym_alignas_qualifier, + STATE(5441), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9075), 1, + sym__abstract_declarator, + ACTIONS(6497), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(7786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7778), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [281382] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, + ACTIONS(8907), 1, + anon_sym___attribute, + ACTIONS(9025), 1, + anon_sym___attribute__, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(12836), 1, + anon_sym_COLON, + STATE(3078), 1, + sym_attribute_specifier, + STATE(3687), 1, + sym__enum_base_clause, + STATE(3797), 1, + sym_enumerator_list, + ACTIONS(7600), 2, anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6885), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223289] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + anon_sym_const, + ACTIONS(7602), 24, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6903), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223356] = 18, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [281437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6100), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223423] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + STATE(7567), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7019), 4, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, anon_sym_STAR, - ACTIONS(7276), 1, anon_sym_AMP_AMP, - ACTIONS(7278), 1, + anon_sym_LBRACE, + ACTIONS(7017), 25, anon_sym_AMP, - STATE(5969), 1, - sym__scope_resolution, - STATE(6782), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223490] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, - anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6907), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223557] = 18, + [281486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7195), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7197), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6711), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223624] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(5409), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9786), 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7225), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9784), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -479542,774 +666520,567 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [223669] = 18, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7359), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7361), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6097), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223736] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6790), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6792), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6445), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223803] = 21, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7952), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(7954), 1, + ACTIONS(10753), 1, anon_sym_requires, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6523), 1, - sym__function_attributes_end, - STATE(6679), 1, + STATE(8276), 1, sym_trailing_return_type, - STATE(6959), 1, + STATE(8498), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - STATE(5549), 3, + STATE(7636), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [223876] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7627), 5, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7280), 1, - anon_sym_STAR, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7286), 1, - anon_sym_COLON_COLON, - STATE(6025), 1, - sym__scope_resolution, - STATE(6368), 1, - sym__declarator, - STATE(8325), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223943] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [281722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7375), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7377), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6093), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224010] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7191), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7193), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6692), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224077] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(6798), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6800), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6468), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224144] = 18, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7341), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7343), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6064), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224211] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7379), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7381), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6635), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224278] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7259), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7261), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6927), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224345] = 18, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7263), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7265), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2811), 1, anon_sym_STAR, - ACTIONS(2813), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6914), 1, - sym__declarator, - STATE(8771), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224412] = 21, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9637), 1, + ACTIONS(10753), 1, anon_sym_requires, - STATE(6619), 1, - sym__function_attributes_end, - STATE(6767), 1, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + STATE(8259), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8330), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - STATE(5548), 3, + STATE(7661), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [224485] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7544), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7274), 1, - anon_sym_STAR, - ACTIONS(7276), 1, - anon_sym_AMP_AMP, - ACTIONS(7278), 1, - anon_sym_AMP, - STATE(5969), 1, - sym__scope_resolution, - STATE(6811), 1, - sym__declarator, - STATE(8495), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224552] = 18, + anon_sym_EQ, + anon_sym_GT2, + [282078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7205), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7207), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, anon_sym_STAR, - ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6074), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224619] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282118] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, - anon_sym_STAR, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6703), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224686] = 9, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + STATE(8276), 1, + sym_trailing_return_type, + STATE(8331), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7670), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7611), 1, - anon_sym_LPAREN2, - STATE(2209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3500), 1, - sym_argument_list, - STATE(3501), 1, - sym_initializer_list, - ACTIONS(5661), 2, + ACTIONS(7209), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(6062), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 18, + ACTIONS(7211), 29, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480323,318 +667094,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [224735] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7267), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7269), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, anon_sym_STAR, - ACTIONS(7322), 1, anon_sym_AMP_AMP, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(6029), 1, - sym__scope_resolution, - STATE(6930), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224802] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7253), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7255), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7346), 1, anon_sym_STAR, - ACTIONS(7348), 1, anon_sym_AMP_AMP, - ACTIONS(7350), 1, - anon_sym_AMP, - STATE(5969), 1, - sym__scope_resolution, - STATE(6553), 1, - sym__declarator, - STATE(8390), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224869] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7271), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7273), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7362), 1, anon_sym_STAR, - ACTIONS(7364), 1, anon_sym_AMP_AMP, - ACTIONS(7366), 1, - anon_sym_AMP, - STATE(6011), 1, - sym__scope_resolution, - STATE(6683), 1, - sym__declarator, - STATE(8527), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [224936] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7275), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7277), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - ACTIONS(7338), 1, anon_sym_STAR, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_AMP, - STATE(5997), 1, - sym__scope_resolution, - STATE(6724), 1, - sym__declarator, - STATE(8233), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [225003] = 18, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(9183), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9186), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9189), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5748), 1, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8259), 1, sym_trailing_return_type, - STATE(5843), 1, + STATE(8487), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, - anon_sym_COMMA, + STATE(7659), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [225070] = 18, + [282470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7283), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7285), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, anon_sym_STAR, - ACTIONS(7322), 1, anon_sym_AMP_AMP, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, - STATE(6029), 1, - sym__scope_resolution, - STATE(6876), 1, - sym__declarator, - STATE(8512), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [225137] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8165), 3, + ACTIONS(7287), 3, anon_sym_AMP, - sym_ms_restrict_modifier, + anon_sym___attribute, anon_sym_const, - ACTIONS(8167), 26, + ACTIONS(7289), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480650,25 +667373,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [225174] = 3, + [282550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8169), 3, + ACTIONS(7333), 3, anon_sym_AMP, - sym_ms_restrict_modifier, + anon_sym___attribute, anon_sym_const, - ACTIONS(8171), 26, + ACTIONS(7335), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_COLON, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480684,28 +667410,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [225211] = 5, + [282590] = 3, ACTIONS(3), 1, sym_comment, - STATE(1964), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7219), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6340), 3, + anon_sym_const, + ACTIONS(7221), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6338), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480719,29 +667445,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225252] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282630] = 3, ACTIONS(3), 1, sym_comment, - STATE(1968), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7345), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6344), 3, + anon_sym_const, + ACTIONS(7347), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6342), 23, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7223), 3, anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7225), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7299), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, + ACTIONS(7301), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480755,87 +667556,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225293] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282750] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7089), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(7352), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, + ACTIONS(12824), 1, anon_sym_requires, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6522), 1, - sym__function_attributes_end, - STATE(6678), 1, + STATE(8314), 1, sym_trailing_return_type, - STATE(6959), 1, + STATE(8335), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - STATE(5553), 3, + STATE(7643), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [225366] = 7, + ACTIONS(7544), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282826] = 3, ACTIONS(3), 1, sym_comment, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1662), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9790), 3, + ACTIONS(7227), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7229), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9788), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480847,27 +667646,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [225411] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282866] = 3, ACTIONS(3), 1, sym_comment, - STATE(1942), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7351), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6356), 3, + anon_sym_const, + ACTIONS(7353), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6354), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480881,29 +667685,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225452] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282906] = 3, ACTIONS(3), 1, sym_comment, - STATE(1950), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7279), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6274), 3, + anon_sym_const, + ACTIONS(7281), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6272), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480917,29 +667722,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225493] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [282946] = 21, ACTIONS(3), 1, sym_comment, - STATE(1902), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12872), 1, + anon_sym_requires, + STATE(8315), 1, + sym_trailing_return_type, + STATE(8337), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12866), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, - ACTIONS(43), 2, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7646), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [283022] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(12824), 1, + anon_sym_requires, + STATE(8314), 1, + sym_trailing_return_type, + STATE(8478), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7672), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [283098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6286), 3, + anon_sym_const, + ACTIONS(7233), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6284), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480953,29 +667869,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225534] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283138] = 3, ACTIONS(3), 1, sym_comment, - STATE(1903), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7287), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6290), 3, + anon_sym_const, + ACTIONS(7289), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6288), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -480989,35 +667906,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225575] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283178] = 3, ACTIONS(3), 1, sym_comment, - STATE(1683), 1, - sym_alignas_qualifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5368), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9794), 3, + ACTIONS(7421), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7423), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9792), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481029,27 +667941,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [225620] = 5, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283218] = 3, ACTIONS(3), 1, sym_comment, - STATE(1937), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7303), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6319), 3, + anon_sym_const, + ACTIONS(7305), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6317), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481063,29 +667980,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225661] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283258] = 3, ACTIONS(3), 1, sym_comment, - STATE(1941), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7325), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6336), 3, + anon_sym_const, + ACTIONS(7327), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6334), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481099,29 +668017,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225702] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283298] = 3, ACTIONS(3), 1, sym_comment, - STATE(1970), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7329), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6278), 3, + anon_sym_const, + ACTIONS(7331), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6276), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481135,29 +668054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225743] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283338] = 3, ACTIONS(3), 1, sym_comment, - STATE(1977), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7235), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6294), 3, + anon_sym_const, + ACTIONS(7237), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6292), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481171,29 +668091,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225784] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283378] = 3, ACTIONS(3), 1, sym_comment, - STATE(1914), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7355), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6348), 3, + anon_sym_const, + ACTIONS(7357), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6346), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481207,29 +668128,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225825] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283418] = 3, ACTIONS(3), 1, sym_comment, - STATE(1932), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, + ACTIONS(7245), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6315), 3, + anon_sym_const, + ACTIONS(7247), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6313), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481243,280 +668165,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [225866] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283458] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, - anon_sym_STAR, - ACTIONS(7268), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(9997), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(9999), 1, anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6399), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [225933] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(9425), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9428), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9431), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5731), 1, - sym_trailing_return_type, - STATE(5845), 1, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(7608), 1, + sym_ref_qualifier, + STATE(8734), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8823), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 7, - anon_sym_COMMA, + ACTIONS(7544), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [226000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(9763), 1, - anon_sym___attribute__, - ACTIONS(9766), 1, - anon_sym___attribute, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(5771), 1, - sym_trailing_return_type, - STATE(5848), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [226067] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, - anon_sym_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6458), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [226134] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, - anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_AMP, - ACTIONS(7316), 1, - anon_sym_COLON_COLON, - STATE(5997), 1, - sym__scope_resolution, - STATE(6071), 1, - sym__declarator, - STATE(8687), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [226201] = 9, + STATE(7881), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [283540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(6809), 1, - anon_sym_LPAREN2, - STATE(2209), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2535), 1, - sym_argument_list, - STATE(3929), 1, - sym_initializer_list, - ACTIONS(5661), 2, + ACTIONS(7223), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(6062), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5663), 18, + ACTIONS(7225), 29, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -481530,1117 +668260,799 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [226250] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283580] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(9183), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9186), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9189), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(12872), 1, anon_sym_requires, - STATE(5791), 1, + STATE(8315), 1, sym_trailing_return_type, - STATE(5862), 1, + STATE(8536), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, - anon_sym_COMMA, + STATE(7681), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [226317] = 18, + [283656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2807), 1, + ACTIONS(7295), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7297), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5505), 1, - sym_identifier, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(7266), 1, anon_sym_STAR, - ACTIONS(7268), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_LBRACK, - STATE(6011), 1, - sym__scope_resolution, - STATE(6513), 1, - sym__declarator, - STATE(8453), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6229), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [226384] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(5731), 1, - sym_trailing_return_type, - STATE(6133), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [226450] = 18, + anon_sym_requires, + [283696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(7337), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5731), 1, - sym_trailing_return_type, - STATE(5907), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, + anon_sym_const, + ACTIONS(7339), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [226516] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - STATE(5870), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9436), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [226582] = 18, + anon_sym_requires, + [283736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7291), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9802), 1, - anon_sym___asm, - ACTIONS(9805), 1, - anon_sym_requires, - STATE(5607), 1, - sym_trailing_return_type, - STATE(5871), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9799), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, + anon_sym_const, + ACTIONS(7293), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [226648] = 18, + anon_sym_requires, + [283776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, + ACTIONS(9162), 1, + anon_sym_LBRACE, + STATE(3061), 1, + sym_attribute_specifier, + STATE(7588), 1, + sym_enumerator_list, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(7354), 1, anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5791), 1, - sym_trailing_return_type, - STATE(5911), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_COMMA, + ACTIONS(6987), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [226714] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6985), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [283823] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - STATE(6142), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [226780] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(7360), 1, + ACTIONS(12833), 1, anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5616), 1, - sym_trailing_return_type, - STATE(5854), 1, + STATE(8567), 1, sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [226846] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9802), 1, - anon_sym___asm, - STATE(5771), 1, + STATE(8568), 1, sym_trailing_return_type, - STATE(5909), 1, - sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9799), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [226912] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5748), 1, - sym_trailing_return_type, - STATE(6158), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [226978] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9777), 1, - anon_sym_requires, - ACTIONS(9802), 1, - anon_sym___asm, - STATE(5752), 1, - sym_trailing_return_type, - STATE(5913), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9799), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 6, + STATE(7715), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [227044] = 18, + anon_sym_GT2, + [283898] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9769), 1, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9777), 1, + ACTIONS(12170), 1, anon_sym_requires, - STATE(5752), 1, + STATE(7926), 1, sym_trailing_return_type, - STATE(6172), 1, + STATE(7948), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [227110] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9802), 1, - anon_sym___asm, - STATE(5626), 1, - sym_trailing_return_type, - STATE(5856), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - ACTIONS(9799), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 6, + ACTIONS(7544), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [227176] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5092), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(6760), 1, - sym_auto, - STATE(2766), 1, - sym_decltype_auto, - ACTIONS(5661), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5663), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_EQ, anon_sym_GT2, - [227222] = 18, + anon_sym_try, + [283967] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12781), 1, anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9769), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(5771), 1, + ACTIONS(12790), 1, + anon_sym_requires, + STATE(7927), 1, sym_trailing_return_type, - STATE(6149), 1, + STATE(7949), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + ACTIONS(12787), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 6, + ACTIONS(7627), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [227288] = 18, + [284036] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + ACTIONS(12881), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9385), 1, + ACTIONS(12887), 1, anon_sym_requires, - STATE(5587), 1, + STATE(7928), 1, sym_trailing_return_type, - STATE(5804), 1, + STATE(7950), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(12884), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(8089), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [227354] = 18, + [284105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7352), 1, + ACTIONS(9162), 1, + anon_sym_LBRACE, + STATE(2997), 1, + sym_attribute_specifier, + STATE(7610), 1, + sym_enumerator_list, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(7354), 1, anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9376), 1, + ACTIONS(7013), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7011), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [284152] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - STATE(5748), 1, - sym_trailing_return_type, - STATE(5905), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(12890), 1, + anon_sym_requires, + STATE(8569), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8570), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + ACTIONS(12866), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + STATE(7737), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - [227420] = 18, + anon_sym_GT2, + [284227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12781), 1, anon_sym___attribute, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(5791), 1, + STATE(7938), 1, sym_trailing_return_type, - STATE(6168), 1, + STATE(7958), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(7627), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [227486] = 18, + [284296] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7303), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(7360), 1, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5624), 1, + STATE(8553), 1, sym_trailing_return_type, - STATE(5855), 1, + STATE(8632), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 6, + STATE(7700), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7627), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [227552] = 18, + anon_sym_GT2, + [284371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(12875), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(12878), 1, anon_sym___attribute, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(12881), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - ACTIONS(9453), 1, - anon_sym___asm, - STATE(5734), 1, + STATE(7944), 1, sym_trailing_return_type, - STATE(5912), 1, + STATE(7946), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5605), 2, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 6, + ACTIONS(8089), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [227618] = 18, + anon_sym_GT2, + anon_sym_try, + [284440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7445), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9811), 1, + ACTIONS(10812), 1, anon_sym_requires, - STATE(6081), 1, - sym_trailing_return_type, - STATE(6358), 1, + STATE(8586), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8596), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9808), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + STATE(7721), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [227683] = 18, + anon_sym_GT2, + [284515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9805), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9814), 1, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9817), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(5607), 1, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + STATE(7917), 1, sym_trailing_return_type, - STATE(6113), 1, + STATE(7957), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9774), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7544), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [227748] = 5, + anon_sym_try, + [284584] = 5, ACTIONS(3), 1, sym_comment, - STATE(5348), 1, + STATE(4035), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5663), 3, + ACTIONS(7251), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9820), 4, + anon_sym_LBRACE, + ACTIONS(12893), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5661), 19, + ACTIONS(7249), 21, anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -482658,122 +669070,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [227787] = 18, + [284626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7385), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7383), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [284668] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9420), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12890), 1, anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - STATE(6351), 1, + STATE(8491), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8570), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7627), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [227852] = 18, + anon_sym_GT2, + STATE(7861), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [284742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - STATE(5844), 1, - sym_trailing_return_type, - STATE(6275), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_RPAREN, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7397), 4, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_try, - [227917] = 7, + ACTIONS(12899), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7395), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [284784] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5670), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + ACTIONS(12902), 1, + anon_sym_LPAREN2, + ACTIONS(12904), 1, anon_sym_LBRACE, - ACTIONS(6760), 1, - sym_auto, - STATE(2766), 1, - sym_decltype_auto, - ACTIONS(5661), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5663), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12908), 1, + anon_sym_requires, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(5025), 1, + sym_requirement_seq, + STATE(7914), 1, + sym_lambda_capture_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(10253), 1, + sym_requires_parameter_list, + ACTIONS(12906), 2, + sym_true, + sym_false, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5028), 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, + [284856] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7081), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12910), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7084), 21, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482787,261 +669284,586 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_GT2, - [227960] = 18, + sym_primitive_type, + sym_identifier, + [284898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(5624), 1, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(8438), 1, sym_trailing_return_type, - STATE(6101), 1, + STATE(8502), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7544), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, + STATE(7809), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [284972] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12914), 1, + sym_identifier, + ACTIONS(12918), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(8843), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6886), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6884), 3, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_GT2, - [228025] = 18, + ACTIONS(12916), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [285026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(7565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7255), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7253), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285066] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9542), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12869), 1, anon_sym_requires, - STATE(6084), 1, + STATE(8441), 1, sym_trailing_return_type, - STATE(6354), 1, + STATE(8503), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7627), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [228090] = 18, + STATE(7827), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [285140] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - STATE(5847), 1, - sym_trailing_return_type, - STATE(6260), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_RPAREN, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + ACTIONS(12920), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12922), 1, anon_sym_LBRACE, - anon_sym_try, - [228155] = 18, + ACTIONS(12926), 1, + anon_sym_requires, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(5018), 1, + sym_requirement_seq, + STATE(7908), 1, + sym_lambda_capture_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(10101), 1, + sym_requires_parameter_list, + ACTIONS(12924), 2, + sym_true, + sym_false, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5033), 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, + [285212] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + ACTIONS(12928), 1, + anon_sym_LPAREN2, + ACTIONS(12930), 1, + anon_sym_LBRACE, + ACTIONS(12934), 1, anon_sym_requires, - ACTIONS(9434), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(5508), 1, + sym_requirement_seq, + STATE(7894), 1, + sym_lambda_capture_specifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(10135), 1, + sym_requires_parameter_list, + ACTIONS(12932), 2, + sym_true, + sym_false, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5455), 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, + [285284] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6180), 1, - sym_trailing_return_type, - STATE(6299), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + ACTIONS(12936), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12938), 1, anon_sym_LBRACE, - [228220] = 18, + ACTIONS(12942), 1, + anon_sym_requires, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(5062), 1, + sym_requirement_seq, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(10113), 1, + sym_requires_parameter_list, + ACTIONS(12940), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6077), 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, + [285356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7416), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12944), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7414), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285398] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7389), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7387), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285440] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9411), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12833), 1, anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6190), 1, + STATE(8490), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8568), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_RPAREN, + ACTIONS(7544), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [228285] = 6, + anon_sym_GT2, + STATE(7828), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [285514] = 5, ACTIONS(3), 1, sym_comment, - STATE(2193), 1, + STATE(4035), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5215), 2, + ACTIONS(7393), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12950), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7391), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5212), 3, - anon_sym_COMMA, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285556] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + ACTIONS(12953), 1, + anon_sym_LPAREN2, + ACTIONS(12955), 1, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(6015), 4, + ACTIONS(12959), 1, + anon_sym_requires, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(6580), 1, + sym_requirement_seq, + STATE(7903), 1, + sym_lambda_capture_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(10091), 1, + sym_requires_parameter_list, + ACTIONS(12957), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6581), 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, + [285628] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7554), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7241), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12961), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5109), 17, + ACTIONS(7239), 21, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -483058,1344 +669880,1765 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [228326] = 18, + [285670] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - STATE(5844), 1, - sym_trailing_return_type, - STATE(5982), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9373), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + ACTIONS(12964), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12966), 1, anon_sym_LBRACE, - anon_sym_try, - [228391] = 18, + ACTIONS(12970), 1, + anon_sym_requires, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(3575), 1, + sym_requirement_seq, + STATE(7936), 1, + sym_lambda_capture_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(10414), 1, + sym_requires_parameter_list, + ACTIONS(12968), 2, + sym_true, + sym_false, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3592), 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, + [285742] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9823), 1, + ACTIONS(10478), 1, anon_sym_requires, - STATE(5824), 1, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + STATE(8392), 1, sym_trailing_return_type, - STATE(6182), 1, + STATE(8544), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9774), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7627), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [228456] = 18, + STATE(7822), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [285816] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6174), 1, - sym_trailing_return_type, - STATE(6321), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + ACTIONS(12936), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12938), 1, anon_sym_LBRACE, - [228521] = 18, + ACTIONS(12942), 1, + anon_sym_requires, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(5062), 1, + sym_requirement_seq, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(10113), 1, + sym_requires_parameter_list, + ACTIONS(12972), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6154), 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, + [285888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(12974), 1, + sym_identifier, + ACTIONS(12978), 1, + sym_primitive_type, + STATE(3482), 1, + sym_alignas_qualifier, + STATE(7635), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6814), 2, anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(6259), 1, - sym_trailing_return_type, - STATE(6339), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, + anon_sym___attribute, + STATE(7558), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6812), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(12976), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [285942] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7201), 4, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12980), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7199), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285984] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7552), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7215), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - [228586] = 18, + ACTIONS(12983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7213), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286026] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9814), 1, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9817), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(5626), 1, + STATE(8456), 1, sym_trailing_return_type, - STATE(6106), 1, + STATE(8543), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7544), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [228651] = 18, + STATE(7805), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286100] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, - anon_sym___asm, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - STATE(5990), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9450), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(12855), 1, + anon_sym_decltype, + ACTIONS(12986), 1, + sym_auto, + STATE(3030), 1, + sym_decltype_auto, + ACTIONS(6800), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [228716] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6798), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, + STATE(7564), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7404), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12988), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7402), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286188] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9802), 1, - anon_sym___asm, - ACTIONS(9823), 1, - anon_sym_requires, - STATE(5824), 1, - sym_trailing_return_type, - STATE(5991), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9799), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + ACTIONS(12991), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(12993), 1, anon_sym_LBRACE, - anon_sym_try, - [228781] = 18, + ACTIONS(12997), 1, + anon_sym_requires, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(6393), 1, + sym_requirement_seq, + STATE(7886), 1, + sym_lambda_capture_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(10395), 1, + sym_requires_parameter_list, + ACTIONS(12995), 2, + sym_true, + sym_false, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6495), 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, + [286260] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(9405), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12781), 1, anon_sym___attribute, - STATE(5587), 1, - sym_trailing_return_type, - STATE(6109), 1, + STATE(8485), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8553), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9194), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7627), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, anon_sym_GT2, - [228846] = 18, + STATE(7857), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + STATE(7574), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7410), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(12999), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7408), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286376] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(9417), 1, - anon_sym_requires, - STATE(6087), 1, - sym_trailing_return_type, - STATE(6165), 1, + STATE(8484), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8596), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7544), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, anon_sym_GT2, - [228911] = 18, + STATE(7855), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(5616), 1, - sym_trailing_return_type, - STATE(6092), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + ACTIONS(13002), 1, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [228976] = 18, + ACTIONS(13004), 1, + anon_sym_LBRACE, + ACTIONS(13008), 1, + anon_sym_requires, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(4755), 1, + sym_requirement_seq, + STATE(7906), 1, + sym_lambda_capture_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(10313), 1, + sym_requires_parameter_list, + ACTIONS(13006), 2, + sym_true, + sym_false, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4757), 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, + [286522] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9542), 1, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12881), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12887), 1, anon_sym_requires, - STATE(6084), 1, + STATE(7928), 1, sym_trailing_return_type, - STATE(6166), 1, + STATE(8264), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12884), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, + ACTIONS(8089), 7, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [229041] = 18, + anon_sym_try, + [286589] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9811), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9814), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - STATE(6081), 1, - sym_trailing_return_type, - STATE(6167), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [229106] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9796), 1, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9802), 1, + ACTIONS(12532), 1, anon_sym___asm, - STATE(5847), 1, + STATE(7917), 1, sym_trailing_return_type, - STATE(5984), 1, + STATE(8006), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(9799), 2, + ACTIONS(12529), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [229171] = 18, + [286656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7433), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9637), 1, + ACTIONS(12784), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12790), 1, anon_sym_requires, - STATE(6202), 1, + ACTIONS(12830), 1, + anon_sym___asm, + STATE(7927), 1, sym_trailing_return_type, - STATE(6357), 1, + STATE(8013), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + ACTIONS(12827), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7627), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - [229236] = 18, + anon_sym_EQ, + anon_sym_try, + [286723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9456), 1, - anon_sym_requires, - ACTIONS(9511), 1, + STATE(3482), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7591), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13012), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13010), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [286768] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3009), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(9514), 1, anon_sym___attribute, - STATE(5597), 1, - sym_trailing_return_type, - STATE(6111), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7097), 3, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [229301] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7095), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(3020), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7101), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7099), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [286850] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7445), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(7494), 1, + ACTIONS(12881), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12887), 1, anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6082), 1, + ACTIONS(13017), 1, + anon_sym___asm, + STATE(7928), 1, sym_trailing_return_type, - STATE(6301), 1, + STATE(8014), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(12884), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + ACTIONS(13014), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(8089), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [229366] = 18, + [286917] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - STATE(6095), 1, - sym_trailing_return_type, - STATE(6161), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3482), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13022), 3, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [229431] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13020), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [286962] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(3483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5523), 1, + sym_argument_list, + STATE(5524), 1, + sym_initializer_list, + ACTIONS(6798), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6800), 18, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [287011] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7445), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9417), 1, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12170), 1, anon_sym_requires, - STATE(6087), 1, + STATE(7926), 1, sym_trailing_return_type, - STATE(6384), 1, + STATE(8243), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7544), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [229496] = 18, + [287078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9511), 1, - anon_sym___attribute__, - ACTIONS(9514), 1, - anon_sym___attribute, - STATE(6082), 1, - sym_trailing_return_type, - STATE(6162), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3482), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13026), 3, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [229561] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13024), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [287123] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + STATE(3482), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3090), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13030), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13028), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [287168] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9817), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(6127), 1, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, + anon_sym_LBRACK_LBRACK, + STATE(7917), 1, sym_trailing_return_type, - STATE(6163), 1, + STATE(8300), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, + ACTIONS(7544), 7, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [229626] = 18, + anon_sym_try, + [287235] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7428), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, + STATE(7938), 1, sym_trailing_return_type, - STATE(6256), 1, + STATE(8256), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9436), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7627), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [229691] = 18, + [287302] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7428), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(7470), 1, + ACTIONS(12747), 1, anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - STATE(5846), 1, - sym_trailing_return_type, - STATE(6178), 1, + STATE(8734), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8823), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(7544), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [229756] = 18, + STATE(7881), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [287375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, + STATE(3035), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(7470), 1, + anon_sym___attribute, + ACTIONS(7105), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7103), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287416] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(7511), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9447), 1, + ACTIONS(12784), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9453), 1, + ACTIONS(12830), 1, anon_sym___asm, - STATE(5846), 1, + STATE(7938), 1, sym_trailing_return_type, - STATE(5983), 1, + STATE(8007), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(9450), 2, + ACTIONS(12827), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7627), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [229821] = 18, + [287483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7445), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(7494), 1, + ACTIONS(12784), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12790), 1, anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6095), 1, + STATE(7927), 1, sym_trailing_return_type, - STATE(6345), 1, + STATE(8255), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7627), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [229886] = 18, + [287550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9826), 1, - anon_sym_requires, - STATE(6235), 1, - sym_trailing_return_type, - STATE(6359), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, + STATE(3077), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7089), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [229951] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7087), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(12855), 1, + anon_sym_decltype, + ACTIONS(12986), 1, + sym_auto, + STATE(3030), 1, + sym_decltype_auto, + ACTIONS(6800), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6798), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287634] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(5517), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12881), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(13017), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(6127), 1, + STATE(7944), 1, sym_trailing_return_type, - STATE(6381), 1, + STATE(8009), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + ACTIONS(13014), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(8089), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [230016] = 18, + [287701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + STATE(3081), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(7189), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7187), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287742] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7511), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(12150), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9376), 1, - anon_sym___asm, - ACTIONS(9411), 1, + ACTIONS(12170), 1, anon_sym_requires, - STATE(5822), 1, + ACTIONS(12532), 1, + anon_sym___asm, + STATE(7926), 1, sym_trailing_return_type, - STATE(5989), 1, + STATE(8012), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(9194), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - ACTIONS(9373), 2, + ACTIONS(12529), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [230081] = 18, + [287809] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3112), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7055), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7053), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287850] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7589), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(7591), 1, + ACTIONS(12869), 1, anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6420), 1, - sym_trailing_return_type, - STATE(6466), 1, + STATE(8717), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8835), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(7627), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [230145] = 8, + STATE(7876), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [287923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_decltype, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_auto, - STATE(1917), 1, - sym_decltype_auto, - ACTIONS(5661), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5663), 19, - anon_sym_RPAREN, + STATE(3058), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7059), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + ACTIONS(7057), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK, + 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, @@ -484409,663 +671652,618 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [230189] = 15, + sym_primitive_type, + sym_identifier, + [287964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + STATE(3128), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7125), 3, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, anon_sym_STAR, - ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(7123), 23, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(5987), 1, - sym_ms_call_modifier, - STATE(6951), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [230247] = 18, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6430), 1, - sym_trailing_return_type, - STATE(6477), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, + STATE(3102), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7063), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [230311] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7061), 23, + anon_sym_AMP, + anon_sym___extension__, anon_sym___based, - ACTIONS(8304), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(8306), 1, + [288046] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3114), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7135), 3, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, anon_sym_STAR, - ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(7133), 23, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6044), 1, - sym_ms_call_modifier, - STATE(6956), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [230369] = 15, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + STATE(3135), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7067), 3, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, anon_sym_STAR, - ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(7065), 23, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(5971), 1, - sym_ms_call_modifier, - STATE(6954), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [230427] = 18, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(6436), 1, - sym_trailing_return_type, - STATE(6481), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, + STATE(2994), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7093), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [230491] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7091), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9444), 1, + ACTIONS(10022), 1, anon_sym_requires, - STATE(6428), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12881), 1, + anon_sym_LBRACK_LBRACK, + STATE(7944), 1, sym_trailing_return_type, - STATE(6459), 1, + STATE(8321), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8089), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [230555] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288236] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7589), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(10478), 1, anon_sym_requires, - STATE(6434), 1, - sym_trailing_return_type, - STATE(6460), 1, + STATE(8390), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8392), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(7627), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [230619] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [288302] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7589), 1, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9829), 1, + ACTIONS(10478), 1, anon_sym_requires, - STATE(6435), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(6462), 1, + STATE(8399), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9808), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(8089), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [230683] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(5999), 1, - sym_ms_call_modifier, - STATE(6947), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [230741] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [288368] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(6319), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12869), 1, + anon_sym_requires, + STATE(8440), 1, sym__function_attributes_end, - STATE(6430), 1, + STATE(8441), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7627), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [230804] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_STAR, - ACTIONS(7960), 1, - anon_sym_AMP_AMP, - ACTIONS(7962), 1, - anon_sym_AMP, - ACTIONS(8394), 1, - anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6296), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 11, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [230855] = 18, + [288434] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(5844), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8443), 1, sym_trailing_return_type, - STATE(6221), 1, + STATE(8444), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(8089), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [230918] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [288500] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(5846), 1, - sym_trailing_return_type, - STATE(6222), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(8437), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8438), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7544), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [230981] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [288566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9814), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9817), 1, + ACTIONS(10256), 1, anon_sym___attribute, - STATE(5847), 1, - sym_trailing_return_type, - STATE(6223), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(10478), 1, + anon_sym_requires, + STATE(8454), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8456), 1, + sym_trailing_return_type, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(7544), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [231044] = 17, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [288632] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(3063), 1, + anon_sym_COLON_COLON, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13038), 1, + sym_identifier, + ACTIONS(13040), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7622), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(9375), 1, + sym_operator_cast, + STATE(9516), 1, + sym_qualified_operator_cast_identifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [288713] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(9832), 1, - anon_sym_LPAREN2, - ACTIONS(9834), 1, - anon_sym_LBRACE, - ACTIONS(9838), 1, + ACTIONS(12970), 1, anon_sym_requires, - STATE(2731), 1, - sym_template_type, - STATE(3554), 1, - sym_requirement_seq, - STATE(5571), 1, + ACTIONS(13042), 1, + anon_sym_LPAREN2, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(7936), 1, sym_lambda_capture_specifier, - STATE(6809), 1, + STATE(8593), 1, sym__scope_resolution, - STATE(8023), 1, - sym_requires_parameter_list, - ACTIONS(9836), 2, + ACTIONS(13044), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(3555), 8, + sym_splice_expression, + STATE(3500), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485074,42 +672272,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [231105] = 17, + [288776] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(9840), 1, + ACTIONS(13048), 1, anon_sym_LPAREN2, - ACTIONS(9842), 1, - anon_sym_LBRACE, - ACTIONS(9846), 1, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13054), 1, anon_sym_requires, - STATE(1885), 1, - sym_template_type, - STATE(3379), 1, - sym_requirement_seq, - STATE(5558), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, sym_lambda_capture_specifier, - STATE(6834), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(7815), 1, - sym_requires_parameter_list, - ACTIONS(9844), 2, + ACTIONS(13052), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(4271), 8, + sym_splice_expression, + STATE(2897), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485118,42 +672318,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [231166] = 17, + [288839] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9547), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12750), 1, sym_identifier, - ACTIONS(9848), 1, - anon_sym_LPAREN2, - ACTIONS(9850), 1, - anon_sym_LBRACE, - ACTIONS(9854), 1, + ACTIONS(12997), 1, anon_sym_requires, - STATE(2235), 1, - sym_template_type, - STATE(2473), 1, - sym_requirement_seq, - STATE(5574), 1, + ACTIONS(13056), 1, + anon_sym_LPAREN2, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(7886), 1, sym_lambda_capture_specifier, - STATE(6803), 1, + STATE(8634), 1, sym__scope_resolution, - STATE(7868), 1, - sym_requires_parameter_list, - ACTIONS(9852), 2, + ACTIONS(13058), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(2481), 8, + sym_splice_expression, + STATE(8618), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485162,42 +672364,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [231227] = 17, + [288902] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9585), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(12750), 1, sym_identifier, - ACTIONS(9856), 1, - anon_sym_LPAREN2, - ACTIONS(9858), 1, - anon_sym_LBRACE, - ACTIONS(9862), 1, + ACTIONS(12997), 1, anon_sym_requires, - STATE(2791), 1, - sym_template_type, - STATE(3632), 1, - sym_requirement_seq, - STATE(5577), 1, + ACTIONS(13056), 1, + anon_sym_LPAREN2, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(7886), 1, sym_lambda_capture_specifier, - STATE(6848), 1, + STATE(8634), 1, sym__scope_resolution, - STATE(7975), 1, - sym_requires_parameter_list, - ACTIONS(9860), 2, + ACTIONS(13060), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(3695), 8, + sym_splice_expression, + STATE(8582), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485206,480 +672410,494 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [231288] = 18, + [288965] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5587), 1, - sym_trailing_return_type, - STATE(6483), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12770), 1, + sym_identifier, + ACTIONS(13062), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [231351] = 18, + ACTIONS(13066), 1, + anon_sym_requires, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7922), 1, + sym_lambda_capture_specifier, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(13064), 2, + sym_true, + sym_false, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8263), 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, + [289028] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, - anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - ACTIONS(9829), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, anon_sym_requires, - STATE(6329), 1, - sym__function_attributes_end, - STATE(6435), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_COMMA, + ACTIONS(13068), 1, + sym_identifier, + ACTIONS(13070), 1, anon_sym_LPAREN2, - anon_sym_GT2, - [231414] = 18, + ACTIONS(13072), 1, + anon_sym_COLON_COLON, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8590), 1, + sym__scope_resolution, + ACTIONS(13074), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8446), 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, + [289091] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - STATE(6437), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12797), 1, + sym_identifier, + ACTIONS(13076), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [231477] = 18, + ACTIONS(13080), 1, + anon_sym_requires, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(7918), 1, + sym_lambda_capture_specifier, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(13078), 2, + sym_true, + sym_false, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7941), 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, + [289154] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9805), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + ACTIONS(12934), 1, anon_sym_requires, - STATE(5607), 1, - sym_trailing_return_type, - STATE(6386), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(13082), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [231540] = 12, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(7894), 1, + sym_lambda_capture_specifier, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(13084), 2, + sym_true, + sym_false, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5433), 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, + [289217] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7938), 1, - anon_sym_STAR, - ACTIONS(7940), 1, - anon_sym_AMP_AMP, - ACTIONS(7942), 1, - anon_sym_AMP, - ACTIONS(7950), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(8394), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6252), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + ACTIONS(12997), 1, anon_sym_requires, - [231591] = 18, + ACTIONS(13056), 1, + anon_sym_LPAREN2, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7130), 1, + sym_splice_specifier, + STATE(7886), 1, + sym_lambda_capture_specifier, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(13086), 2, + sym_true, + sym_false, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6352), 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, + [289280] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, - anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - STATE(6259), 1, - sym_trailing_return_type, - STATE(6338), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + ACTIONS(12934), 1, + anon_sym_requires, + ACTIONS(13082), 1, anon_sym_LPAREN2, - [231654] = 18, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(7894), 1, + sym_lambda_capture_specifier, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(13088), 2, + sym_true, + sym_false, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5434), 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, + [289343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9814), 1, - anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - ACTIONS(9823), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + ACTIONS(12926), 1, anon_sym_requires, - STATE(5824), 1, - sym_trailing_return_type, - STATE(6227), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13090), 1, anon_sym_LPAREN2, - [231717] = 12, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(7908), 1, + sym_lambda_capture_specifier, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(13092), 2, + sym_true, + sym_false, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5157), 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, + [289406] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(7986), 1, - anon_sym_STAR, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_AMP, - ACTIONS(8394), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6291), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12770), 1, + sym_identifier, + ACTIONS(13062), 1, + anon_sym_LPAREN2, + ACTIONS(13066), 1, anon_sym_requires, - [231768] = 18, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7922), 1, + sym_lambda_capture_specifier, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(13094), 2, + sym_true, + sym_false, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8271), 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, + [289469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9405), 1, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7084), 2, anon_sym___attribute__, - ACTIONS(9408), 1, anon_sym___attribute, - ACTIONS(9444), 1, - anon_sym_requires, - STATE(6327), 1, - sym__function_attributes_end, - STATE(6428), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7081), 3, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_GT2, - [231831] = 18, + ACTIONS(9771), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6627), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [289510] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - STATE(5616), 1, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8268), 1, sym_trailing_return_type, - STATE(6464), 1, + STATE(8516), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(5545), 2, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(8089), 5, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [231894] = 17, + anon_sym_try, + [289575] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9642), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(9840), 1, - anon_sym_LPAREN2, - ACTIONS(9842), 1, - anon_sym_LBRACE, - ACTIONS(9846), 1, + ACTIONS(12959), 1, anon_sym_requires, - STATE(3379), 1, - sym_requirement_seq, - STATE(4002), 1, - sym_template_type, - STATE(5558), 1, + ACTIONS(13096), 1, + anon_sym_LPAREN2, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(7903), 1, sym_lambda_capture_specifier, - STATE(6849), 1, + STATE(8571), 1, sym__scope_resolution, - STATE(7815), 1, - sym_requires_parameter_list, - ACTIONS(9864), 2, + ACTIONS(13098), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(4309), 8, + sym_splice_expression, + STATE(6578), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485688,357 +672906,553 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [231955] = 18, + [289638] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + ACTIONS(12959), 1, anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(13096), 1, + anon_sym_LPAREN2, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(7903), 1, + sym_lambda_capture_specifier, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(13100), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6453), 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, + [289701] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - STATE(5624), 1, - sym_trailing_return_type, - STATE(6473), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13070), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [232018] = 18, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(12972), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6154), 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, + [289764] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7591), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12770), 1, + sym_identifier, + ACTIONS(13062), 1, + anon_sym_LPAREN2, + ACTIONS(13066), 1, anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7922), 1, + sym_lambda_capture_specifier, + STATE(8612), 1, + sym__scope_resolution, + ACTIONS(13102), 2, + sym_true, + sym_false, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8265), 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, + [289827] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, - anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - STATE(6320), 1, - sym__function_attributes_end, - STATE(6436), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + ACTIONS(12908), 1, + anon_sym_requires, + ACTIONS(13104), 1, anon_sym_LPAREN2, - anon_sym_GT2, - [232081] = 18, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(7914), 1, + sym_lambda_capture_specifier, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(12906), 2, + sym_true, + sym_false, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5028), 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, + [289890] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(9420), 1, + ACTIONS(12824), 1, anon_sym_requires, - STATE(6292), 1, + STATE(8314), 1, sym_trailing_return_type, - STATE(6371), 1, + STATE(8335), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9414), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7544), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [232144] = 18, + anon_sym_EQ, + anon_sym_GT2, + [289955] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12781), 1, anon_sym___attribute, - ACTIONS(9637), 1, + ACTIONS(12872), 1, anon_sym_requires, - STATE(6202), 1, + STATE(8315), 1, sym_trailing_return_type, - STATE(6374), 1, + STATE(8337), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(7627), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [232207] = 18, + anon_sym_EQ, + anon_sym_GT2, + [290020] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9814), 1, - anon_sym___attribute__, - ACTIONS(9817), 1, - anon_sym___attribute, - ACTIONS(9826), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + ACTIONS(13008), 1, anon_sym_requires, - STATE(6235), 1, - sym_trailing_return_type, - STATE(6375), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13106), 1, anon_sym_LPAREN2, - [232270] = 18, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(7906), 1, + sym_lambda_capture_specifier, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(13108), 2, + sym_true, + sym_false, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4799), 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, + [290083] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7525), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + ACTIONS(13008), 1, anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(13106), 1, + anon_sym_LPAREN2, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(7906), 1, + sym_lambda_capture_specifier, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(13006), 2, + sym_true, + sym_false, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4757), 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, + [290146] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12875), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(12878), 1, anon_sym___attribute, - STATE(6180), 1, + ACTIONS(13110), 1, + anon_sym_requires, + STATE(8316), 1, sym_trailing_return_type, - STATE(6336), 1, + STATE(8338), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(8089), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [232333] = 18, + anon_sym_EQ, + anon_sym_GT2, + [290211] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, - anon_sym_LBRACK_LBRACK, - STATE(5626), 1, - sym_trailing_return_type, - STATE(6478), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13070), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [232396] = 17, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7920), 1, + sym_lambda_capture_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + ACTIONS(13113), 2, + sym_true, + sym_false, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9165), 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, + [290274] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13070), 1, + anon_sym_LPAREN2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7920), 1, + sym_lambda_capture_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + ACTIONS(13115), 2, + sym_true, + sym_false, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9154), 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, + [290337] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9569), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(12754), 1, sym_identifier, - ACTIONS(9866), 1, - anon_sym_LPAREN2, - ACTIONS(9868), 1, - anon_sym_LBRACE, - ACTIONS(9872), 1, + ACTIONS(12997), 1, anon_sym_requires, - STATE(2660), 1, - sym_template_type, - STATE(4320), 1, - sym_requirement_seq, - STATE(5575), 1, + ACTIONS(13056), 1, + anon_sym_LPAREN2, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7886), 1, sym_lambda_capture_specifier, - STATE(6808), 1, + STATE(8549), 1, sym__scope_resolution, - STATE(7948), 1, - sym_requires_parameter_list, - ACTIONS(9870), 2, + ACTIONS(12995), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(4915), 8, + sym_splice_expression, + STATE(6495), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -486047,87 +673461,226 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [232457] = 18, + [290400] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9705), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(12824), 1, anon_sym_requires, - STATE(6328), 1, - sym__function_attributes_end, - STATE(6434), 1, + STATE(8314), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8478), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9539), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_COMMA, + ACTIONS(7544), 5, anon_sym_LPAREN2, - anon_sym_GT2, - [232520] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [290465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + STATE(7565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6800), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6798), 19, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [290504] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5100), 1, + anon_sym_COLON_COLON, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13120), 1, + sym_identifier, + ACTIONS(13122), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7652), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(9375), 1, + sym_operator_cast, + STATE(9516), 1, + sym_qualified_operator_cast_identifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [290585] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9617), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12797), 1, sym_identifier, - ACTIONS(9874), 1, + ACTIONS(13076), 1, anon_sym_LPAREN2, - ACTIONS(9876), 1, - anon_sym_LBRACE, - ACTIONS(9880), 1, + ACTIONS(13080), 1, anon_sym_requires, - STATE(2911), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(7918), 1, + sym_lambda_capture_specifier, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(13124), 2, + sym_true, + sym_false, + STATE(5166), 2, sym_template_type, - STATE(3924), 1, - sym_requirement_seq, - STATE(5567), 1, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7930), 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, + [290648] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13048), 1, + anon_sym_LPAREN2, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13054), 1, + anon_sym_requires, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, sym_lambda_capture_specifier, - STATE(6829), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(7855), 1, - sym_requires_parameter_list, - ACTIONS(9878), 2, + ACTIONS(13126), 2, sym_true, sym_false, - STATE(9058), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(3983), 8, + sym_splice_expression, + STATE(8603), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -486136,8996 +673689,10942 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [232581] = 7, + [290711] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5670), 1, - anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_auto, - STATE(1917), 1, - sym_decltype_auto, - ACTIONS(5661), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5663), 19, - anon_sym_RPAREN, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12797), 1, + sym_identifier, + ACTIONS(13076), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(13080), 1, + anon_sym_requires, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(7918), 1, + sym_lambda_capture_specifier, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(13128), 2, + sym_true, + sym_false, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7896), 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, + [290774] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [232622] = 18, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13070), 1, + anon_sym_LPAREN2, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(13130), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6177), 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, + [290837] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9405), 1, - anon_sym___attribute__, - ACTIONS(9408), 1, - anon_sym___attribute, - ACTIONS(9411), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + ACTIONS(12934), 1, anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - STATE(6173), 1, - sym__function_attributes_end, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13082), 1, + anon_sym_LPAREN2, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(7894), 1, + sym_lambda_capture_specifier, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(12932), 2, + sym_true, + sym_false, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5455), 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, + [290900] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13070), 1, anon_sym_LPAREN2, - [232685] = 18, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(12940), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6077), 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, + [290963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9447), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9511), 1, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(9514), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(9536), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10606), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, anon_sym_requires, - STATE(5823), 1, + STATE(8276), 1, sym_trailing_return_type, - STATE(6226), 1, + STATE(8498), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9436), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7627), 5, anon_sym_LPAREN2, - [232748] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [291028] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(12144), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12147), 1, anon_sym___attribute, - STATE(6318), 1, - sym__function_attributes_end, - STATE(6420), 1, + STATE(8259), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8330), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7544), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_EQ, anon_sym_GT2, - [232811] = 18, + [291093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(9405), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(12778), 1, anon_sym___attribute__, - ACTIONS(9408), 1, + ACTIONS(12781), 1, anon_sym___attribute, - STATE(6174), 1, + STATE(8276), 1, sym_trailing_return_type, - STATE(6334), 1, + STATE(8331), 1, sym__function_attributes_end, - STATE(6941), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(7627), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [232874] = 18, + anon_sym_EQ, + anon_sym_GT2, + [291158] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9074), 1, anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6619), 1, - sym__function_attributes_end, - STATE(6767), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9423), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - [232936] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8026), 1, + ACTIONS(10924), 1, anon_sym_STAR, - ACTIONS(8028), 1, + ACTIONS(10926), 1, anon_sym_AMP_AMP, - ACTIONS(8030), 1, + ACTIONS(10928), 1, anon_sym_AMP, - ACTIONS(8394), 1, - anon_sym___asm, - STATE(3082), 1, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(4243), 1, sym_parameter_list, - STATE(6054), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(6307), 1, + STATE(8308), 1, sym__abstract_declarator, - STATE(6047), 5, + STATE(8180), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8392), 10, + ACTIONS(9072), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [232986] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6522), 1, - sym__function_attributes_end, - STATE(6678), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - [233048] = 18, + [291211] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9758), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + ACTIONS(12908), 1, anon_sym_requires, - STATE(6527), 1, - sym__function_attributes_end, - STATE(6717), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9423), 2, + ACTIONS(13104), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - [233110] = 18, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(7914), 1, + sym_lambda_capture_specifier, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(13132), 2, + sym_true, + sym_false, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4996), 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, + [291274] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6174), 1, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8259), 1, sym_trailing_return_type, - STATE(6599), 1, + STATE(8487), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - [233172] = 18, + ACTIONS(7544), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [291339] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9637), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + ACTIONS(12908), 1, anon_sym_requires, - STATE(6202), 1, - sym_trailing_return_type, - STATE(6612), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9423), 2, + ACTIONS(13104), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - [233234] = 18, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(7914), 1, + sym_lambda_capture_specifier, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(13134), 2, + sym_true, + sym_false, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5121), 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, + [291402] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7525), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + ACTIONS(12926), 1, anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(13090), 1, + anon_sym_LPAREN2, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(7908), 1, + sym_lambda_capture_specifier, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(13136), 2, + sym_true, + sym_false, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5118), 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, + [291465] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6259), 1, - sym_trailing_return_type, - STATE(6601), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9761), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(13048), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - [233296] = 18, + ACTIONS(13054), 1, + anon_sym_requires, + ACTIONS(13138), 1, + sym_identifier, + ACTIONS(13140), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, + anon_sym_LBRACK_COLON, + STATE(3235), 1, + sym_splice_specifier, + STATE(3556), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, + sym_lambda_capture_specifier, + STATE(8617), 1, + sym__scope_resolution, + ACTIONS(13142), 2, + sym_true, + sym_false, + STATE(3596), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3511), 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, + [291528] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9882), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + ACTIONS(12997), 1, anon_sym_requires, - STATE(6528), 1, - sym__function_attributes_end, - STATE(6718), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9761), 2, + ACTIONS(13056), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - [233358] = 24, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7886), 1, + sym_lambda_capture_specifier, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(13146), 2, + sym_true, + sym_false, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6483), 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, + [291591] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9887), 1, - anon_sym_SEMI, - ACTIONS(9889), 1, - anon_sym_COLON, - ACTIONS(9891), 1, - anon_sym_LBRACE, - ACTIONS(9893), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9895), 1, - anon_sym_EQ, - ACTIONS(9897), 1, - anon_sym_try, - STATE(1806), 1, - sym_compound_statement, - STATE(1807), 1, - sym_default_method_clause, - STATE(1808), 1, - sym_delete_method_clause, - STATE(1809), 1, - sym_pure_virtual_clause, - STATE(1810), 1, - sym_try_statement, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(7026), 1, - aux_sym_field_declaration_repeat1, - STATE(7057), 1, - sym_bitfield_clause, - STATE(7059), 1, - sym_initializer_list, - STATE(8594), 1, - sym_attribute_specifier, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [233432] = 18, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + ACTIONS(12926), 1, + anon_sym_requires, + ACTIONS(13090), 1, + anon_sym_LPAREN2, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(7908), 1, + sym_lambda_capture_specifier, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(12924), 2, + sym_true, + sym_false, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5033), 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, + [291654] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(8087), 1, anon_sym_LBRACK, - ACTIONS(9420), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, anon_sym_requires, - STATE(6573), 1, - sym__function_attributes_end, - STATE(6785), 1, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + STATE(8268), 1, sym_trailing_return_type, - STATE(6941), 1, + STATE(8332), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5620), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - [233494] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(6170), 1, - sym_ms_call_modifier, - STATE(6880), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - ACTIONS(1808), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(6598), 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, - [233548] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9901), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5635), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9899), 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, - [233590] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9905), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9903), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8089), 5, 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, - [233632] = 18, + [291719] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9189), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9192), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + ACTIONS(12970), 1, anon_sym_requires, - STATE(6526), 1, - sym__function_attributes_end, - STATE(6716), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9181), 2, + ACTIONS(13042), 1, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - [233694] = 18, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(7936), 1, + sym_lambda_capture_specifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(12968), 2, + sym_true, + sym_false, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3592), 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, + [291782] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9826), 1, + ACTIONS(12872), 1, anon_sym_requires, - STATE(6235), 1, + STATE(8315), 1, sym_trailing_return_type, - STATE(6613), 1, + STATE(8536), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9761), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9808), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - [233756] = 18, + ACTIONS(7627), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [291847] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9826), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(13048), 1, + anon_sym_LPAREN2, + ACTIONS(13054), 1, anon_sym_requires, - STATE(6566), 1, - sym__function_attributes_end, - STATE(6750), 1, - sym_trailing_return_type, - STATE(6941), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9761), 2, + ACTIONS(13138), 1, + sym_identifier, + ACTIONS(13140), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, + anon_sym_LBRACK_COLON, + STATE(3235), 1, + sym_splice_specifier, + STATE(3556), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, + sym_lambda_capture_specifier, + STATE(8617), 1, + sym__scope_resolution, + ACTIONS(13148), 2, + sym_true, + sym_false, + STATE(3596), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3532), 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, + [291910] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + ACTIONS(13008), 1, + anon_sym_requires, + ACTIONS(13106), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5545), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5620), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - [233818] = 18, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(7906), 1, + sym_lambda_capture_specifier, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(13150), 2, + sym_true, + sym_false, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4800), 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, + [291973] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13048), 1, + anon_sym_LPAREN2, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13054), 1, anon_sym_requires, - ACTIONS(9769), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9772), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, + sym_lambda_capture_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + ACTIONS(13152), 2, + sym_true, + sym_false, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8597), 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, + [292036] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13154), 1, + sym_identifier, + ACTIONS(13156), 1, + anon_sym_TILDE, + ACTIONS(13158), 1, + anon_sym_COLON_COLON, + ACTIONS(13160), 1, + anon_sym_template, + ACTIONS(13162), 1, + anon_sym_operator, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7676), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(9375), 1, + sym_operator_cast, + STATE(9516), 1, + sym_qualified_operator_cast_identifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [292117] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6524), 1, - sym__function_attributes_end, - STATE(6680), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9761), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + ACTIONS(12959), 1, + anon_sym_requires, + ACTIONS(13096), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - [233880] = 24, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(7903), 1, + sym_lambda_capture_specifier, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(12957), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6581), 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, + [292180] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(9885), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13070), 1, anon_sym_LPAREN2, - ACTIONS(9889), 1, - anon_sym_COLON, - ACTIONS(9893), 1, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(13164), 2, + sym_true, + sym_false, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5080), 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, + [292243] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - ACTIONS(9907), 1, - anon_sym_SEMI, - ACTIONS(9909), 1, - anon_sym_LBRACE, - ACTIONS(9911), 1, - anon_sym_EQ, - ACTIONS(9913), 1, - anon_sym_try, - STATE(1979), 1, - sym_delete_method_clause, - STATE(1980), 1, - sym_default_method_clause, - STATE(2049), 1, - sym_pure_virtual_clause, - STATE(2075), 1, - sym_try_statement, - STATE(2203), 1, - sym_compound_statement, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(7002), 1, - aux_sym_field_declaration_repeat1, - STATE(7032), 1, - sym_bitfield_clause, - STATE(7036), 1, - sym_initializer_list, - STATE(8183), 1, - sym_attribute_specifier, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [233954] = 18, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13070), 1, + anon_sym_LPAREN2, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(13166), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6049), 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, + [292306] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(13048), 1, + anon_sym_LPAREN2, + ACTIONS(13054), 1, + anon_sym_requires, + ACTIONS(13138), 1, + sym_identifier, + ACTIONS(13140), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, + anon_sym_LBRACK_COLON, + STATE(3235), 1, + sym_splice_specifier, + STATE(3556), 1, + sym__splice_specialization_specifier, + STATE(7912), 1, + sym_lambda_capture_specifier, + STATE(8617), 1, + sym__scope_resolution, + ACTIONS(13052), 2, + sym_true, + sym_false, + STATE(3596), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(2897), 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, + [292369] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(7352), 1, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, + ACTIONS(13110), 1, anon_sym_requires, - STATE(6292), 1, + STATE(8316), 1, sym_trailing_return_type, - STATE(6610), 1, + STATE(8538), 1, sym__function_attributes_end, - STATE(6959), 1, + STATE(8982), 1, sym_gnu_asm_expression, - ACTIONS(7080), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9181), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9414), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(5605), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5916), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - [234016] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(9885), 1, + ACTIONS(8089), 5, anon_sym_LPAREN2, - ACTIONS(9889), 1, - anon_sym_COLON, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(9915), 1, anon_sym_SEMI, - ACTIONS(9917), 1, anon_sym_LBRACE, - ACTIONS(9919), 1, anon_sym_EQ, - ACTIONS(9921), 1, anon_sym_try, - STATE(2140), 1, - sym_compound_statement, - STATE(2141), 1, - sym_default_method_clause, - STATE(2142), 1, - sym_delete_method_clause, - STATE(2146), 1, - sym_pure_virtual_clause, - STATE(2150), 1, - sym_try_statement, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(7047), 1, - sym_bitfield_clause, - STATE(7048), 1, - sym_initializer_list, - STATE(7049), 1, - aux_sym_field_declaration_repeat1, - STATE(8948), 1, - sym_attribute_specifier, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [234090] = 18, + [292434] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, anon_sym_requires, - ACTIONS(9431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9434), 1, + ACTIONS(13068), 1, + sym_identifier, + ACTIONS(13070), 1, + anon_sym_LPAREN2, + ACTIONS(13072), 1, + anon_sym_COLON_COLON, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8590), 1, + sym__scope_resolution, + ACTIONS(13168), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8387), 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, + [292497] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6523), 1, - sym__function_attributes_end, - STATE(6679), 1, - sym_trailing_return_type, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9423), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13068), 1, + sym_identifier, + ACTIONS(13070), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - [234152] = 18, + ACTIONS(13072), 1, + anon_sym_COLON_COLON, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(7086), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8590), 1, + sym__scope_resolution, + ACTIONS(13164), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5080), 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, + [292560] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7082), 1, - anon_sym___asm, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7525), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + ACTIONS(12942), 1, anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(13070), 1, + anon_sym_LPAREN2, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(7935), 1, + sym_lambda_capture_specifier, + STATE(8621), 1, + sym__scope_resolution, + ACTIONS(13164), 2, + sym_true, + sym_false, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5080), 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, + [292623] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_LBRACK, - STATE(6180), 1, - sym_trailing_return_type, - STATE(6600), 1, - sym__function_attributes_end, - STATE(6959), 1, - sym_gnu_asm_expression, - ACTIONS(7080), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9423), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12942), 1, + anon_sym_requires, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13070), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5605), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - [234214] = 17, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7920), 1, + sym_lambda_capture_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + ACTIONS(13164), 2, + sym_true, + sym_false, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5080), 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, + [292686] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + ACTIONS(12970), 1, + anon_sym_requires, + ACTIONS(13042), 1, anon_sym_LPAREN2, - ACTIONS(9923), 1, - anon_sym_LBRACE, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(7936), 1, + sym_lambda_capture_specifier, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(13170), 2, + sym_true, + sym_false, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3494), 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, + [292749] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + ACTIONS(12997), 1, anon_sym_requires, - STATE(3251), 1, - sym_compound_statement, - STATE(5797), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8126), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234273] = 17, + ACTIONS(13056), 1, + anon_sym_LPAREN2, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(7886), 1, + sym_lambda_capture_specifier, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(13086), 2, + sym_true, + sym_false, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6352), 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, + [292812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9931), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(4305), 1, - sym_compound_statement, - STATE(5652), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8105), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3086), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234332] = 12, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [292882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - ACTIONS(8394), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6438), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3111), 1, + sym__class_declaration_item, + STATE(8604), 1, + sym__scope_resolution, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [234381] = 17, + STATE(2331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [292952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9923), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - STATE(3186), 1, - sym_compound_statement, - STATE(5555), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7871), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(4038), 1, + sym__class_declaration_item, + STATE(8631), 1, + sym__scope_resolution, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234440] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293022] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9933), 1, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2084), 1, + sym__class_declaration_item, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293092] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, anon_sym_LBRACE, - STATE(3549), 1, - sym_compound_statement, - STATE(5663), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(7814), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3034), 1, + sym__class_declaration_item, + STATE(8604), 1, + sym__scope_resolution, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234499] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293162] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9935), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(2536), 1, - sym_compound_statement, - STATE(5764), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8024), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3069), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234558] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, anon_sym_LBRACE, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - STATE(1646), 1, - sym_compound_statement, - STATE(5578), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(8068), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2099), 1, + sym__class_declaration_item, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234617] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293302] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9937), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(3904), 1, - sym_compound_statement, - STATE(5673), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(7890), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(3942), 1, + sym__class_declaration_item, + STATE(8631), 1, + sym__scope_resolution, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293372] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12646), 1, + anon_sym_LBRACE, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7512), 1, + sym__class_declaration_item, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(7021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234676] = 3, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293442] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9941), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9939), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4394), 1, + sym__class_declaration_item, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [234707] = 17, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7777), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9943), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(5726), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(6114), 1, - sym_compound_statement, - STATE(7828), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7525), 1, + sym__class_declaration_item, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(7021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7701), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234766] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293582] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - STATE(3186), 1, - sym_compound_statement, - STATE(5566), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7903), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4404), 1, + sym__class_declaration_item, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234825] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293652] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(9929), 1, + ACTIONS(10812), 1, anon_sym_requires, - STATE(3251), 1, - sym_compound_statement, - STATE(5714), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(7938), 1, - sym_lambda_declarator, - STATE(8419), 1, + STATE(8550), 1, + sym__function_attributes_end, + STATE(8635), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234884] = 17, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [293716] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9937), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(3951), 1, - sym_compound_statement, - STATE(5562), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7858), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7492), 1, + sym__class_declaration_item, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(7021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [234943] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293786] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9943), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5564), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(6130), 1, - sym_compound_statement, - STATE(7817), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4010), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(8571), 1, + sym__scope_resolution, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235002] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293856] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9945), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(5573), 1, - sym_template_parameter_list, - STATE(5776), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7847), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2103), 1, + sym__class_declaration_item, + STATE(8593), 1, + sym__scope_resolution, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(1966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7761), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235061] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9947), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - STATE(3634), 1, - sym_compound_statement, - STATE(5685), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8020), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4301), 1, + sym__class_declaration_item, + STATE(8549), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235120] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293996] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9933), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3403), 1, - sym_compound_statement, - STATE(5559), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(8118), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(12804), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235179] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294066] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9949), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(1647), 1, - sym_compound_statement, - STATE(5695), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8119), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3036), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235238] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - ACTIONS(9945), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, anon_sym_LBRACE, - STATE(5706), 1, - sym_requires_clause, - STATE(5787), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7986), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2946), 1, + sym__class_declaration_item, + STATE(8639), 1, + sym__scope_resolution, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2310), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235297] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294206] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9935), 1, - anon_sym_LBRACE, - STATE(2525), 1, - sym_compound_statement, - STATE(5560), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7896), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235356] = 17, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8206), 1, + sym_ms_call_modifier, + STATE(9003), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [294264] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(9931), 1, - anon_sym_LBRACE, - STATE(4308), 1, - sym_compound_statement, - STATE(5556), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7970), 1, - sym_lambda_declarator, - STATE(8419), 1, + ACTIONS(12833), 1, + anon_sym_requires, + STATE(8567), 1, + sym__function_attributes_end, + STATE(8568), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235415] = 17, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [294328] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9949), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(1646), 1, - sym_compound_statement, - STATE(5572), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(8080), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3069), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(8564), 1, + sym__scope_resolution, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7757), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235474] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294398] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(3644), 1, - sym_compound_statement, - STATE(5570), 1, - sym_template_parameter_list, - STATE(6012), 1, - sym_parameter_list, - STATE(7984), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3086), 1, + sym__class_declaration_item, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235533] = 17, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294468] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9929), 1, - anon_sym_requires, - STATE(1647), 1, - sym_compound_statement, - STATE(5724), 1, - sym_requires_clause, - STATE(6012), 1, - sym_parameter_list, - STATE(8136), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4394), 1, + sym__class_declaration_item, + STATE(8549), 1, + sym__scope_resolution, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7782), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [235592] = 14, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(12776), 1, sym_identifier, - ACTIONS(9872), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2660), 1, - sym_template_type, - STATE(5575), 1, - sym_lambda_capture_specifier, - STATE(6801), 1, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(3953), 1, + sym__class_declaration_item, + STATE(8631), 1, sym__scope_resolution, - ACTIONS(9953), 2, - sym_true, - sym_false, - STATE(9058), 2, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(6415), 8, + sym_splice_expression, + [294608] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration_item, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [235644] = 7, + STATE(7786), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294678] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(12890), 1, anon_sym_requires, - ACTIONS(9194), 2, + STATE(8569), 1, + sym__function_attributes_end, + STATE(8570), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9192), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9181), 12, + ACTIONS(7627), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [235682] = 14, + [294742] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12804), 1, sym_identifier, - ACTIONS(9838), 1, - anon_sym_requires, - ACTIONS(9955), 1, - anon_sym_LPAREN2, - STATE(2731), 1, - sym_template_type, - STATE(5571), 1, - sym_lambda_capture_specifier, - STATE(6809), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4708), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, sym__scope_resolution, - ACTIONS(9957), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3410), 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, - [235734] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8203), 1, - anon_sym_STAR, - ACTIONS(8205), 1, - anon_sym_AMP_AMP, - ACTIONS(8207), 1, - anon_sym_AMP, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8394), 1, - anon_sym___attribute, - STATE(3083), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6505), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [235782] = 14, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(12764), 1, sym_identifier, - ACTIONS(9838), 1, - anon_sym_requires, - ACTIONS(9955), 1, - anon_sym_LPAREN2, - STATE(2731), 1, - sym_template_type, - STATE(5571), 1, - sym_lambda_capture_specifier, - STATE(6809), 1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3015), 1, + sym__class_declaration_item, + STATE(8604), 1, sym__scope_resolution, - ACTIONS(9959), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3416), 8, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2331), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [235834] = 14, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8147), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6830), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4043), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(8571), 1, sym__scope_resolution, - ACTIONS(9963), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6705), 8, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [235886] = 14, + STATE(7753), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9569), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(9872), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2660), 1, - sym_template_type, - STATE(5575), 1, - sym_lambda_capture_specifier, - STATE(6808), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3942), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(8571), 1, sym__scope_resolution, - ACTIONS(9967), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4317), 8, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [235938] = 14, + STATE(7732), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295022] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9585), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(12736), 1, sym_identifier, - ACTIONS(9862), 1, - anon_sym_requires, - ACTIONS(9969), 1, - anon_sym_LPAREN2, - STATE(2791), 1, - sym_template_type, - STATE(5577), 1, - sym_lambda_capture_specifier, - STATE(6848), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3069), 1, + sym__class_declaration_item, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(8621), 1, sym__scope_resolution, - ACTIONS(9971), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3659), 8, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [235990] = 7, + STATE(7779), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295092] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(9436), 2, + STATE(8553), 1, + sym_trailing_return_type, + STATE(8632), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9434), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9423), 12, + ACTIONS(7627), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [236028] = 14, + [295156] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9547), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11202), 1, + anon_sym_LBRACE, + ACTIONS(12797), 1, sym_identifier, - ACTIONS(9854), 1, - anon_sym_requires, - ACTIONS(9973), 1, - anon_sym_LPAREN2, - STATE(2235), 1, - sym_template_type, - STATE(5574), 1, - sym_lambda_capture_specifier, - STATE(6803), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_field_declaration_list, + STATE(5997), 1, + sym__class_declaration_item, + STATE(8584), 1, sym__scope_resolution, - ACTIONS(9975), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2513), 8, + STATE(9424), 1, + sym_virtual_specifier, + STATE(10362), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236080] = 14, + STATE(7762), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295226] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8147), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6830), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4773), 1, + sym__class_declaration_item, + STATE(8638), 1, sym__scope_resolution, - ACTIONS(9977), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6732), 8, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236132] = 14, + STATE(7773), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295296] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8147), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11202), 1, + anon_sym_LBRACE, + ACTIONS(12797), 1, sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6830), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_field_declaration_list, + STATE(5927), 1, + sym__class_declaration_item, + STATE(8584), 1, sym__scope_resolution, - ACTIONS(9979), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5760), 8, + STATE(9424), 1, + sym_virtual_specifier, + STATE(10362), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236184] = 14, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9522), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12804), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(1885), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6834), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4774), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, sym__scope_resolution, - ACTIONS(9983), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4256), 8, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236236] = 14, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295436] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - STATE(1885), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6834), 1, - sym__scope_resolution, - ACTIONS(9985), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3380), 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, - [236288] = 14, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8144), 1, + sym_ms_call_modifier, + STATE(8955), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [295494] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - ACTIONS(9987), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - ACTIONS(9989), 1, + ACTIONS(12740), 1, anon_sym_COLON_COLON, - STATE(1885), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6843), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4773), 1, + sym__class_declaration_item, + STATE(8614), 1, sym__scope_resolution, - ACTIONS(9991), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6276), 8, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236340] = 14, + STATE(7789), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295564] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3080), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, sym__scope_resolution, - ACTIONS(9995), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5875), 8, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236392] = 14, + STATE(7735), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295634] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12736), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3096), 1, + sym__class_declaration_item, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, + sym_field_declaration_list, + STATE(8621), 1, sym__scope_resolution, - ACTIONS(9999), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1639), 8, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236444] = 14, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295704] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9642), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(12774), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(4002), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6849), 1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2958), 1, + sym__class_declaration_item, + STATE(8639), 1, sym__scope_resolution, - ACTIONS(10001), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4293), 8, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2310), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236496] = 7, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7754), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295774] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9805), 1, - anon_sym_requires, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9761), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [236534] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8175), 1, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(12776), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6850), 1, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, + sym_field_declaration_list, + STATE(4010), 1, + sym__class_declaration_item, + STATE(8631), 1, sym__scope_resolution, - ACTIONS(10003), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5642), 8, + STATE(9498), 1, + sym_virtual_specifier, + STATE(10434), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236586] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9693), 1, - sym_identifier, - ACTIONS(10005), 1, - anon_sym_LPAREN2, - ACTIONS(10009), 1, - anon_sym_requires, - STATE(4656), 1, + STATE(3624), 2, sym_template_type, - STATE(5568), 1, - sym_lambda_capture_specifier, - STATE(6851), 1, - sym__scope_resolution, - ACTIONS(10007), 2, - sym_true, - sym_false, - STATE(9058), 2, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(6066), 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, - [236638] = 23, + sym_splice_expression, + [295844] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(3989), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10011), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(10013), 1, - anon_sym_template, - STATE(1890), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3953), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(8571), 1, + sym__scope_resolution, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3624), 2, sym_template_type, - STATE(1893), 1, + sym_splice_type_specifier, + STATE(3851), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5600), 1, - sym__scope_resolution, - STATE(7302), 1, - sym_operator_cast, - STATE(7309), 1, - sym_qualified_operator_cast_identifier, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 1, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, - [236708] = 14, + sym_dependent_type_identifier, + sym_splice_expression, + [295914] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9642), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(12772), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(4002), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6849), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(3027), 1, + sym__class_declaration_item, + STATE(8624), 1, sym__scope_resolution, - ACTIONS(9985), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3380), 8, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2408), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236760] = 14, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7790), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12772), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(3032), 1, + sym__class_declaration_item, + STATE(8624), 1, sym__scope_resolution, - ACTIONS(10015), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6443), 8, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2408), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236812] = 14, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296054] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8121), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6838), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3096), 1, + sym__class_declaration_item, + STATE(3837), 1, + sym_field_declaration_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, sym__scope_resolution, - ACTIONS(10017), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5729), 8, + STATE(9411), 1, + sym_virtual_specifier, + STATE(10180), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [236864] = 7, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296124] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9192), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9181), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [236902] = 8, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8137), 1, + sym_ms_call_modifier, + STATE(8958), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [296182] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9905), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4435), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9903), 13, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10810), 1, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [236942] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6838), 1, - sym__scope_resolution, - ACTIONS(10019), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5759), 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, - [236994] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10028), 1, + ACTIONS(13172), 1, anon_sym_requires, - ACTIONS(10025), 2, + STATE(8573), 1, + sym_trailing_return_type, + STATE(8574), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10023), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10021), 12, + ACTIONS(8089), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [237032] = 14, + [296246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - ACTIONS(9987), 1, - sym_identifier, - ACTIONS(9989), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - STATE(1885), 1, - sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6843), 1, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3139), 1, + sym__class_declaration_item, + STATE(8604), 1, sym__scope_resolution, - ACTIONS(10031), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6199), 8, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2331), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237084] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - ACTIONS(9987), 1, - sym_identifier, - ACTIONS(9989), 1, - anon_sym_COLON_COLON, - STATE(1885), 1, + STATE(2577), 2, sym_template_type, - STATE(5558), 1, - sym_lambda_capture_specifier, - STATE(6843), 1, - sym__scope_resolution, - ACTIONS(9985), 2, - sym_true, - sym_false, - STATE(9058), 2, + sym_splice_type_specifier, + STATE(7692), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(3380), 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, - [237136] = 14, + sym_splice_expression, + [296316] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - ACTIONS(10033), 1, - sym_identifier, - ACTIONS(10035), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - STATE(2249), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6818), 1, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4356), 1, + sym__class_declaration_item, + STATE(8549), 1, sym__scope_resolution, - ACTIONS(10037), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2255), 8, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237188] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - ACTIONS(9961), 1, - anon_sym_LPAREN2, - ACTIONS(9965), 1, - anon_sym_requires, - STATE(1933), 1, + STATE(4170), 2, sym_template_type, - STATE(5569), 1, - sym_lambda_capture_specifier, - STATE(6838), 1, - sym__scope_resolution, - ACTIONS(9979), 2, - sym_true, - sym_false, - STATE(9058), 2, + sym_splice_type_specifier, + STATE(7704), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5760), 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, - [237240] = 14, + sym_splice_expression, + [296386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12646), 1, + anon_sym_LBRACE, + ACTIONS(12770), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(1933), 1, - sym_template_type, - STATE(5565), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7534), 1, + sym__class_declaration_item, + STATE(8612), 1, sym__scope_resolution, - ACTIONS(10039), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7112), 8, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(7021), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - STATE(4728), 2, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9901), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9899), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [237326] = 14, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8057), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9693), 1, + ACTIONS(12772), 1, sym_identifier, - ACTIONS(10005), 1, - anon_sym_LPAREN2, - ACTIONS(10009), 1, - anon_sym_requires, - STATE(4656), 1, - sym_template_type, - STATE(5568), 1, - sym_lambda_capture_specifier, - STATE(6851), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(3053), 1, + sym__class_declaration_item, + STATE(8624), 1, sym__scope_resolution, - ACTIONS(10041), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6126), 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, - [237378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10045), 1, - anon_sym_LPAREN2, - STATE(5851), 1, - sym_preproc_argument_list, - ACTIONS(10047), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10043), 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, - [237412] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(6221), 2, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9434), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9423), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [237450] = 14, + STATE(2408), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7744), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296526] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12804), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, sym__scope_resolution, - ACTIONS(10049), 2, - sym_true, - sym_false, - STATE(9058), 2, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7716), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(5888), 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, - [237502] = 7, + sym_splice_expression, + [296596] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 1, - anon_sym_requires, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10053), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10051), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [237540] = 14, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym__class_declaration_item, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9585), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8007), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(12772), 1, sym_identifier, - ACTIONS(9862), 1, - anon_sym_requires, - ACTIONS(9969), 1, - anon_sym_LPAREN2, - STATE(2791), 1, - sym_template_type, - STATE(5577), 1, - sym_lambda_capture_specifier, - STATE(6848), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, + sym_field_declaration_list, + STATE(3070), 1, + sym__class_declaration_item, + STATE(8624), 1, sym__scope_resolution, - ACTIONS(10061), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3643), 8, + STATE(9380), 1, + sym_virtual_specifier, + STATE(10305), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2408), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237592] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - STATE(4728), 2, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9905), 3, - anon_sym___attribute, - anon_sym_LBRACK, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296736] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(9903), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10812), 1, + anon_sym_requires, + STATE(8586), 1, + sym__function_attributes_end, + STATE(8596), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [237626] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, - anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9901), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(4435), 2, + STATE(7838), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5820), 2, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9899), 13, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [237666] = 23, + anon_sym_GT2, + [296800] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1980), 1, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(10063), 1, - sym_identifier, - ACTIONS(10065), 1, + ACTIONS(3049), 1, anon_sym_TILDE, - ACTIONS(10067), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7878), 1, anon_sym_COLON_COLON, - ACTIONS(10069), 1, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13175), 1, + sym_identifier, + ACTIONS(13177), 1, anon_sym_template, - ACTIONS(10071), 1, - anon_sym_operator, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, sym_template_function, - STATE(2429), 1, + STATE(3876), 1, sym_destructor_name, - STATE(2432), 1, + STATE(3877), 1, sym_dependent_identifier, - STATE(2472), 1, + STATE(3878), 1, sym_qualified_identifier, - STATE(2480), 1, + STATE(3879), 1, sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5622), 1, + STATE(7746), 1, sym__scope_resolution, - STATE(7302), 1, + STATE(8089), 1, + sym_splice_specifier, + STATE(9375), 1, sym_operator_cast, - STATE(7309), 1, + STATE(9516), 1, sym_qualified_operator_cast_identifier, - STATE(8231), 1, + STATE(10974), 1, sym_ms_based_modifier, - STATE(9058), 1, + STATE(10976), 5, sym_decltype, - [237736] = 11, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [296874] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8193), 1, - anon_sym_STAR, - ACTIONS(8195), 1, - anon_sym_AMP_AMP, - ACTIONS(8197), 1, - anon_sym_AMP, - STATE(2975), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6519), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 9, - anon_sym_SEMI, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym__class_declaration_item, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [237782] = 7, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296944] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9761), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [237820] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(9872), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2660), 1, - sym_template_type, - STATE(5575), 1, - sym_lambda_capture_specifier, - STATE(6801), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3086), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(8564), 1, sym__scope_resolution, - ACTIONS(9967), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4317), 8, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237872] = 7, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297014] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10023), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10021), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [237910] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - ACTIONS(10033), 1, - sym_identifier, - ACTIONS(10035), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - STATE(2249), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6818), 1, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4301), 1, + sym__class_declaration_item, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, sym__scope_resolution, - ACTIONS(10073), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2273), 8, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [237962] = 14, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3080), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(8564), 1, sym__scope_resolution, - ACTIONS(10075), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6476), 8, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238014] = 14, + STATE(7768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297154] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2078), 1, + sym__class_declaration_item, + STATE(8593), 1, sym__scope_resolution, - ACTIONS(9999), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1639), 8, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(1966), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238066] = 7, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7694), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10053), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10051), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [238104] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - ACTIONS(10033), 1, + ACTIONS(12766), 1, sym_identifier, - ACTIONS(10035), 1, + ACTIONS(12768), 1, anon_sym_COLON_COLON, - STATE(2249), 1, - sym_template_type, - STATE(5576), 1, - sym_lambda_capture_specifier, - STATE(6818), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4774), 1, + sym__class_declaration_item, + STATE(8626), 1, sym__scope_resolution, - ACTIONS(9999), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1639), 8, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238156] = 14, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297294] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8175), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6850), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4038), 1, + sym__class_declaration_item, + STATE(4072), 1, + sym_splice_specifier, + STATE(4277), 1, + sym_field_declaration_list, + STATE(8571), 1, sym__scope_resolution, - ACTIONS(10077), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5638), 8, + STATE(9494), 1, + sym_virtual_specifier, + STATE(10393), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3851), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238208] = 14, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297364] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9569), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(12774), 1, sym_identifier, - ACTIONS(9872), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2660), 1, - sym_template_type, - STATE(5575), 1, - sym_lambda_capture_specifier, - STATE(6808), 1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2877), 1, + sym__class_declaration_item, + STATE(8639), 1, sym__scope_resolution, - ACTIONS(10079), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4868), 8, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2310), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238260] = 14, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297434] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9617), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(12754), 1, sym_identifier, - ACTIONS(9880), 1, - anon_sym_requires, - ACTIONS(10081), 1, - anon_sym_LPAREN2, - STATE(2911), 1, - sym_template_type, - STATE(5567), 1, - sym_lambda_capture_specifier, - STATE(6829), 1, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, + sym_field_declaration_list, + STATE(4404), 1, + sym__class_declaration_item, + STATE(8549), 1, sym__scope_resolution, - ACTIONS(10083), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3918), 8, + STATE(9428), 1, + sym_virtual_specifier, + STATE(10315), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3858), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238312] = 5, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297504] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10087), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10085), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration_item, + STATE(8638), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [238346] = 14, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7775), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9617), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(9880), 1, - anon_sym_requires, - ACTIONS(10081), 1, - anon_sym_LPAREN2, - STATE(2911), 1, - sym_template_type, - STATE(5567), 1, - sym_lambda_capture_specifier, - STATE(6829), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3036), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(8564), 1, sym__scope_resolution, - ACTIONS(10089), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3919), 8, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238398] = 14, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297644] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8175), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7866), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(12764), 1, sym_identifier, - ACTIONS(9993), 1, - anon_sym_LPAREN2, - ACTIONS(9997), 1, - anon_sym_requires, - STATE(1933), 1, - sym_template_type, - STATE(5561), 1, - sym_lambda_capture_specifier, - STATE(6850), 1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, + sym_field_declaration_list, + STATE(3041), 1, + sym__class_declaration_item, + STATE(8604), 1, sym__scope_resolution, - ACTIONS(9999), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1639), 8, + STATE(9467), 1, + sym_virtual_specifier, + STATE(10241), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2331), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238450] = 4, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7689), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10091), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6247), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6249), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4708), 1, + sym__class_declaration_item, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [238482] = 14, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8193), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12758), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(1933), 1, - sym_template_type, - STATE(5565), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3413), 1, + sym__class_declaration_item, + STATE(8588), 1, sym__scope_resolution, - ACTIONS(10093), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7143), 8, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2537), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238534] = 14, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7776), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(9846), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_LPAREN2, - STATE(1933), 1, - sym_template_type, - STATE(5565), 1, - sym_lambda_capture_specifier, - STATE(6813), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2069), 1, + sym_field_declaration_list, + STATE(2118), 1, + sym__class_declaration_item, + STATE(8593), 1, sym__scope_resolution, - ACTIONS(9985), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3380), 8, + STATE(9311), 1, + sym_virtual_specifier, + STATE(10472), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(1966), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238586] = 14, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8057), 1, + ACTIONS(4780), 1, anon_sym_COLON_COLON, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11202), 1, + anon_sym_LBRACE, + ACTIONS(12797), 1, sym_identifier, - ACTIONS(10005), 1, - anon_sym_LPAREN2, - ACTIONS(10009), 1, - anon_sym_requires, - STATE(4656), 1, - sym_template_type, - STATE(5568), 1, - sym_lambda_capture_specifier, - STATE(6851), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_field_declaration_list, + STATE(5948), 1, + sym__class_declaration_item, + STATE(8584), 1, sym__scope_resolution, - ACTIONS(10095), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6099), 8, + STATE(9424), 1, + sym_virtual_specifier, + STATE(10362), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238638] = 5, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [297994] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10091), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10097), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6199), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6201), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(11202), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(12797), 1, + sym_identifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_field_declaration_list, + STATE(5953), 1, + sym__class_declaration_item, + STATE(8584), 1, + sym__scope_resolution, + STATE(9424), 1, + sym_virtual_specifier, + STATE(10362), 1, + sym_base_class_clause, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [238672] = 23, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7780), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298064] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(2823), 1, - anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10099), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10101), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8199), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [298122] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - STATE(1890), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4786), 1, + sym__class_declaration_item, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, sym_template_type, - STATE(1893), 1, + sym_splice_type_specifier, + STATE(7759), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5643), 1, - sym__scope_resolution, - STATE(7302), 1, - sym_operator_cast, - STATE(7309), 1, - sym_qualified_operator_cast_identifier, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 1, + STATE(10976), 3, sym_decltype, - [238742] = 14, + sym_dependent_type_identifier, + sym_splice_expression, + [298192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(12774), 1, sym_identifier, - ACTIONS(9872), 1, - anon_sym_requires, - ACTIONS(9951), 1, - anon_sym_LPAREN2, - STATE(2660), 1, - sym_template_type, - STATE(5575), 1, - sym_lambda_capture_specifier, - STATE(6801), 1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, + sym_field_declaration_list, + STATE(2860), 1, + sym__class_declaration_item, + STATE(8639), 1, sym__scope_resolution, - ACTIONS(10103), 2, - sym_true, - sym_false, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6448), 8, + STATE(9457), 1, + sym_virtual_specifier, + STATE(10302), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2310), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238794] = 14, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7707), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2165), 1, - anon_sym_LBRACK, - ACTIONS(9547), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8193), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12758), 1, sym_identifier, - ACTIONS(9854), 1, - anon_sym_requires, - ACTIONS(9973), 1, - anon_sym_LPAREN2, - STATE(2235), 1, - sym_template_type, - STATE(5574), 1, - sym_lambda_capture_specifier, - STATE(6803), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3417), 1, + sym__class_declaration_item, + STATE(8588), 1, sym__scope_resolution, - ACTIONS(10105), 2, - sym_true, - sym_false, - STATE(9058), 2, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - STATE(2515), 8, + sym_splice_expression, + [298332] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3096), 1, + sym__class_declaration_item, + STATE(7299), 1, + sym_splice_specifier, + STATE(7605), 1, + sym_field_declaration_list, + STATE(8564), 1, + sym__scope_resolution, + STATE(9372), 1, + sym_virtual_specifier, + STATE(10346), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [238846] = 19, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298402] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9897), 1, - anon_sym_try, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10111), 1, - anon_sym_SEMI, - ACTIONS(10113), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - STATE(1781), 1, - sym_compound_statement, - STATE(1782), 1, - sym_try_statement, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7742), 1, - sym_gnu_asm_expression, - STATE(7743), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, + ACTIONS(12804), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4773), 1, + sym__class_declaration_item, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7725), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [238907] = 18, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2593), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3080), 1, sym__class_declaration_item, - STATE(3039), 1, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, sym_field_declaration_list, - STATE(6842), 1, + STATE(8621), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9411), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10180), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(7729), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [238966] = 18, + sym_splice_expression, + [298542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(12766), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4977), 1, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4773), 1, sym__class_declaration_item, - STATE(6838), 1, + STATE(8626), 1, sym__scope_resolution, - STATE(7318), 1, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, sym_virtual_specifier, - STATE(8074), 1, + STATE(10397), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7752), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8718), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298612] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(4829), 1, + sym__class_declaration_item, + STATE(8626), 1, + sym__scope_resolution, + STATE(9214), 1, + sym_field_declaration_list, + STATE(9433), 1, + sym_virtual_specifier, + STATE(10397), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239025] = 18, + sym_splice_expression, + [298682] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(8947), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(12738), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(4982), 1, + STATE(4774), 1, sym__class_declaration_item, - STATE(6838), 1, + STATE(8638), 1, sym__scope_resolution, - STATE(7318), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(8074), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5654), 2, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239084] = 15, + sym_splice_expression, + [298752] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8488), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8490), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8492), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8494), 1, + ACTIONS(11502), 1, anon_sym_AMP, - ACTIONS(10121), 1, - anon_sym_SEMI, - STATE(5541), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8478), 1, - sym_attribute_specifier, - STATE(8639), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8184), 1, + sym_ms_call_modifier, + STATE(8988), 1, + sym__type_declarator, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(6598), 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, - [239137] = 18, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [298810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12738), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2554), 1, - sym__class_declaration_item, - STATE(3956), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, sym_field_declaration_list, - STATE(6830), 1, + STATE(4708), 1, + sym__class_declaration_item, + STATE(8638), 1, sym__scope_resolution, - STATE(7347), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(8125), 1, + STATE(10297), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3904), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239196] = 15, + sym_splice_expression, + [298880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9931), 1, + ACTIONS(8193), 1, anon_sym_LBRACE, - STATE(4323), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7805), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, + sym_field_declaration_list, + STATE(3447), 1, + sym__class_declaration_item, + STATE(8588), 1, + sym__scope_resolution, + STATE(9319), 1, + sym_virtual_specifier, + STATE(10067), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [239249] = 18, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(8147), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(12750), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2561), 1, - sym__class_declaration_item, - STATE(3956), 1, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, sym_field_declaration_list, - STATE(6830), 1, + STATE(4344), 1, + sym__class_declaration_item, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, sym__scope_resolution, - STATE(7347), 1, + STATE(9428), 1, sym_virtual_specifier, - STATE(8125), 1, + STATE(10315), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, + STATE(3858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5675), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239308] = 18, + sym_splice_expression, + [299020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8193), 1, anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, sym_field_declaration_list, - STATE(4928), 1, + STATE(3451), 1, sym__class_declaration_item, - STATE(6838), 1, + STATE(8588), 1, sym__scope_resolution, - STATE(7318), 1, + STATE(9319), 1, sym_virtual_specifier, - STATE(8074), 1, + STATE(10067), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(2537), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7783), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239367] = 18, + sym_splice_expression, + [299090] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2603), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3036), 1, sym__class_declaration_item, - STATE(3039), 1, + STATE(3688), 1, + sym_splice_specifier, + STATE(3837), 1, sym_field_declaration_list, - STATE(6842), 1, + STATE(8621), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9411), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10180), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3534), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5789), 2, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239426] = 18, + sym_splice_expression, + [299160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12797), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, sym_field_declaration_list, - STATE(2374), 1, + STATE(5945), 1, sym__class_declaration_item, - STATE(6803), 1, + STATE(8584), 1, sym__scope_resolution, - STATE(7200), 1, + STATE(9424), 1, sym_virtual_specifier, - STATE(7886), 1, + STATE(10362), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5298), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5658), 2, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239485] = 18, + sym_splice_expression, + [299230] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12750), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, sym_field_declaration_list, - STATE(2382), 1, + STATE(4356), 1, sym__class_declaration_item, - STATE(6803), 1, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, sym__scope_resolution, - STATE(7200), 1, + STATE(9428), 1, sym_virtual_specifier, - STATE(7886), 1, + STATE(10315), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, + STATE(3858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7749), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239544] = 18, + sym_splice_expression, + [299300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12754), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4257), 1, sym_field_declaration_list, - STATE(2365), 1, + STATE(4344), 1, sym__class_declaration_item, - STATE(6803), 1, + STATE(8549), 1, sym__scope_resolution, - STATE(7200), 1, + STATE(9428), 1, sym_virtual_specifier, - STATE(7886), 1, + STATE(10315), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, + STATE(3858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239603] = 18, + sym_splice_expression, + [299370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, + ACTIONS(8193), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12758), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2842), 1, sym_field_declaration_list, - STATE(2329), 1, + STATE(3477), 1, sym__class_declaration_item, - STATE(6803), 1, + STATE(8588), 1, sym__scope_resolution, - STATE(7200), 1, + STATE(9319), 1, sym_virtual_specifier, - STATE(7886), 1, + STATE(10067), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, + STATE(2537), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5660), 2, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239662] = 18, + sym_splice_expression, + [299440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5680), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9547), 1, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(12776), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2310), 1, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3835), 1, sym_field_declaration_list, - STATE(2324), 1, + STATE(4043), 1, sym__class_declaration_item, - STATE(6803), 1, + STATE(8631), 1, sym__scope_resolution, - STATE(7200), 1, + STATE(9498), 1, sym_virtual_specifier, - STATE(7886), 1, + STATE(10434), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(1886), 2, + STATE(3486), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7690), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239721] = 19, + sym_splice_expression, + [299510] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(9074), 1, anon_sym___asm, - ACTIONS(1872), 1, - anon_sym_LBRACE, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(10936), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10123), 1, - anon_sym_SEMI, - ACTIONS(10125), 1, - anon_sym_try, - STATE(484), 1, - sym_compound_statement, - STATE(629), 1, - sym_try_statement, - STATE(2930), 1, + ACTIONS(11251), 1, + anon_sym_STAR, + ACTIONS(11253), 1, + anon_sym_AMP_AMP, + ACTIONS(11255), 1, + anon_sym_AMP, + STATE(4486), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8183), 1, sym__function_declarator_seq, - STATE(7468), 1, - sym_gnu_asm_expression, - STATE(7477), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + STATE(8359), 1, + sym__abstract_declarator, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [299562] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4708), 1, + sym__class_declaration_item, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [239782] = 18, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7819), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2613), 1, - sym__class_declaration_item, - STATE(3039), 1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2595), 1, sym_field_declaration_list, - STATE(6842), 1, + STATE(2876), 1, + sym__class_declaration_item, + STATE(8639), 1, sym__scope_resolution, - STATE(7172), 1, + STATE(9457), 1, sym_virtual_specifier, - STATE(7969), 1, + STATE(10302), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, + STATE(2310), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [239841] = 15, + sym_splice_expression, + [299702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9933), 1, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(3471), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7962), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, + ACTIONS(12770), 1, + sym_identifier, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7472), 1, + sym_field_declaration_list, + STATE(7516), 1, + sym__class_declaration_item, + STATE(8612), 1, + sym__scope_resolution, + STATE(9510), 1, + sym_virtual_specifier, + STATE(10405), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(7021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [239894] = 16, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(10129), 1, - anon_sym_RPAREN, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10137), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - STATE(7581), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [239949] = 18, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4546), 1, + sym_field_declaration_list, + STATE(4774), 1, + sym__class_declaration_item, + STATE(8614), 1, + sym__scope_resolution, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10297), 1, + sym_base_class_clause, + ACTIONS(6836), 2, + anon_sym_final, + anon_sym_override, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6098), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, + ACTIONS(8007), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(12772), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1900), 1, - sym__class_declaration_item, - STATE(2540), 1, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2644), 1, sym_field_declaration_list, - STATE(6834), 1, + STATE(3050), 1, + sym__class_declaration_item, + STATE(8624), 1, sym__scope_resolution, - STATE(7259), 1, + STATE(9380), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(10305), 1, sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - STATE(2263), 2, + STATE(2408), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5705), 2, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299912] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + anon_sym_TILDE, + ACTIONS(13183), 1, + anon_sym_COLON_COLON, + ACTIONS(13185), 1, + anon_sym_template, + ACTIONS(13187), 1, + anon_sym_operator, + STATE(2670), 1, + sym_template_type, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5276), 1, + sym_pointer_type_declarator, + STATE(5278), 1, + sym_template_function, + STATE(5280), 1, + sym_destructor_name, + STATE(5281), 1, + sym_dependent_identifier, + STATE(5282), 1, + sym_qualified_identifier, + STATE(5284), 1, + sym_operator_name, + STATE(7791), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [299987] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13189), 1, + sym_identifier, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13193), 1, + anon_sym_COLON_COLON, + ACTIONS(13195), 1, + anon_sym_template, + ACTIONS(13197), 1, + anon_sym_operator, + STATE(2670), 1, + sym_template_type, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7792), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [300062] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13207), 1, + anon_sym_RBRACK, + ACTIONS(13209), 1, + sym_this, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240008] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [300125] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13211), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300188] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13213), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300251] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(8512), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(6299), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7937), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8514), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(8121), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [300294] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13215), 1, + sym_identifier, + ACTIONS(13217), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(13219), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7797), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [300369] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13221), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, sym_template_type, - STATE(2603), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6838), 1, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300432] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13223), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300495] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13225), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300558] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12833), 1, + anon_sym_requires, + STATE(8490), 1, + sym__function_attributes_end, + STATE(8568), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(3285), 2, - sym__class_name, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [300621] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13227), 1, + sym_identifier, + ACTIONS(13229), 1, + anon_sym_COLON_COLON, + ACTIONS(13231), 1, + anon_sym_template, + STATE(1986), 1, + sym_template_type, + STATE(1987), 1, + sym_dependent_type_identifier, + STATE(1998), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7802), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [300696] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13233), 1, + sym_identifier, + ACTIONS(13235), 1, + anon_sym_COLON_COLON, + ACTIONS(13237), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7803), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [300771] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13243), 1, + anon_sym_COLON_COLON, + ACTIONS(13245), 1, + anon_sym_template, + ACTIONS(13247), 1, + anon_sym_operator, + STATE(2390), 1, + sym_template_type, + STATE(2391), 1, + sym_dependent_type_identifier, + STATE(2449), 1, sym_qualified_type_identifier, - STATE(5671), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_pointer_type_declarator, + STATE(5474), 1, + sym_template_function, + STATE(5481), 1, + sym_destructor_name, + STATE(5486), 1, + sym_dependent_identifier, + STATE(5489), 1, + sym_qualified_identifier, + STATE(5498), 1, + sym_operator_name, + STATE(7804), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [300846] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + STATE(8392), 1, + sym_trailing_return_type, + STATE(8544), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [300909] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(8438), 1, + sym_trailing_return_type, + STATE(8502), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [300972] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13249), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240067] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2613), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6838), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13251), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240126] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10137), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10155), 1, - anon_sym_RPAREN, - STATE(7798), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [240181] = 19, + sym_splice_type_specifier, + sym_splice_expression, + [301098] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(9913), 1, - anon_sym_try, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(7629), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10157), 1, - anon_sym_SEMI, - ACTIONS(10159), 1, - anon_sym_LBRACE, - STATE(2170), 1, - sym_compound_statement, - STATE(2171), 1, - sym_try_statement, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7631), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12869), 1, + anon_sym_requires, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8503), 1, + sym__function_attributes_end, + STATE(8982), 1, sym_gnu_asm_expression, - STATE(7632), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + ACTIONS(12866), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [240242] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [301161] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(13253), 1, + sym_identifier, + ACTIONS(13255), 1, + anon_sym_TILDE, + ACTIONS(13257), 1, anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(13259), 1, + anon_sym_template, + ACTIONS(13261), 1, + anon_sym_operator, + STATE(3411), 1, + sym_template_type, + STATE(3439), 1, + sym_dependent_type_identifier, + STATE(3539), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5667), 1, + sym_pointer_type_declarator, + STATE(5669), 1, + sym_template_function, + STATE(5670), 1, + sym_destructor_name, + STATE(5671), 1, + sym_dependent_identifier, + STATE(5672), 1, + sym_qualified_identifier, + STATE(5675), 1, + sym_operator_name, + STATE(7810), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11121), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301236] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13247), 1, + anon_sym_operator, + ACTIONS(13263), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(13265), 1, + anon_sym_COLON_COLON, + ACTIONS(13267), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(1972), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6834), 1, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_pointer_type_declarator, + STATE(5474), 1, + sym_template_function, + STATE(5481), 1, + sym_destructor_name, + STATE(5486), 1, + sym_dependent_identifier, + STATE(5489), 1, + sym_qualified_identifier, + STATE(5498), 1, + sym_operator_name, + STATE(7811), 1, sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13269), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240301] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301374] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2554), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6838), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13271), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240360] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2561), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6838), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13273), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5674), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240419] = 15, + sym_splice_type_specifier, + sym_splice_expression, + [301500] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(9937), 1, - anon_sym_LBRACE, - STATE(3902), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7915), 1, - sym_lambda_declarator, - STATE(8419), 1, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + STATE(8484), 1, + sym__function_attributes_end, + STATE(8596), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [240472] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [301563] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(13275), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(13277), 1, + anon_sym_TILDE, + ACTIONS(13279), 1, + anon_sym_COLON_COLON, + ACTIONS(13281), 1, + anon_sym_template, + ACTIONS(13283), 1, + anon_sym_operator, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3981), 1, sym_template_type, - STATE(2593), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6838), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, + STATE(3982), 1, + sym_dependent_type_identifier, + STATE(4151), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(5769), 1, + sym_pointer_type_declarator, + STATE(5770), 1, + sym_template_function, + STATE(5773), 1, + sym_destructor_name, + STATE(5775), 1, + sym_dependent_identifier, + STATE(5781), 1, + sym_qualified_identifier, + STATE(5789), 1, + sym_operator_name, + STATE(7816), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10900), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [240531] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301638] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2593), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6830), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13285), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240590] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, + ACTIONS(2592), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(9683), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2793), 1, - sym__class_declaration_item, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [240649] = 18, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(5546), 1, + sym_argument_list, + STATE(5578), 1, + sym_initializer_list, + ACTIONS(6798), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6800), 18, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [301744] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13227), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(13231), 1, + anon_sym_template, + ACTIONS(13287), 1, + anon_sym_COLON_COLON, + STATE(1986), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2802), 1, - sym__class_declaration_item, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(1987), 1, + sym_dependent_type_identifier, + STATE(1998), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7819), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10593), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [240708] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301819] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13289), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(13291), 1, + anon_sym_COLON_COLON, + ACTIONS(13293), 1, + anon_sym_template, + STATE(2670), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2821), 1, - sym__class_declaration_item, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7820), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10593), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [240767] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301894] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2837), 1, - sym__class_declaration_item, - STATE(6801), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13295), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5680), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [240826] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [301957] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2812), 1, - sym__class_declaration_item, - STATE(6801), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + STATE(8398), 1, + sym_trailing_return_type, + STATE(8479), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [240885] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [302020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(13297), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8700), 5, + anon_sym_LPAREN2, anon_sym_COLON_COLON, - ACTIONS(8947), 1, anon_sym_LBRACE, - ACTIONS(9697), 1, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(2101), 17, + anon_sym_virtual, + anon_sym_COLON, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4944), 1, - sym__class_declaration_item, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5683), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [240944] = 18, + anon_sym_private, + anon_sym_template, + anon_sym_public, + anon_sym_protected, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [302057] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4955), 1, - sym__class_declaration_item, - STATE(6830), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13300), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241003] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302120] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(13277), 1, + anon_sym_TILDE, + ACTIONS(13283), 1, + anon_sym_operator, + ACTIONS(13302), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(13304), 1, + anon_sym_COLON_COLON, + ACTIONS(13306), 1, + anon_sym_template, + STATE(2434), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4977), 1, - sym__class_declaration_item, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(2435), 1, + sym_dependent_type_identifier, + STATE(2549), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5769), 1, + sym_pointer_type_declarator, + STATE(5770), 1, + sym_template_function, + STATE(5773), 1, + sym_destructor_name, + STATE(5775), 1, + sym_dependent_identifier, + STATE(5781), 1, + sym_qualified_identifier, + STATE(5789), 1, + sym_operator_name, + STATE(7825), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10900), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [241062] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302195] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4982), 1, - sym__class_declaration_item, - STATE(6830), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13308), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5687), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241121] = 15, + sym_splice_type_specifier, + sym_splice_expression, + [302258] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, - anon_sym_LBRACE, - STATE(3668), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(8044), 1, - sym_lambda_declarator, - STATE(8419), 1, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8443), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8505), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [241174] = 7, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [302321] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9197), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + ACTIONS(12890), 1, anon_sym_requires, - ACTIONS(9194), 2, + STATE(8491), 1, + sym__function_attributes_end, + STATE(8570), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9192), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9181), 11, + ACTIONS(7627), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [241211] = 18, + anon_sym_GT2, + [302384] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8147), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5309), 1, anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13310), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(13312), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4928), 1, - sym__class_declaration_item, - STATE(6830), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7829), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [241270] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5564), 1, + anon_sym_RBRACK, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13314), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2793), 1, - sym__class_declaration_item, - STATE(6808), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5690), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241329] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302522] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6222), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13316), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(13318), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2802), 1, - sym__class_declaration_item, - STATE(6808), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7831), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [302597] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(13255), 1, + anon_sym_TILDE, + ACTIONS(13261), 1, + anon_sym_operator, + ACTIONS(13320), 1, + sym_identifier, + ACTIONS(13322), 1, + anon_sym_COLON_COLON, + ACTIONS(13324), 1, + anon_sym_template, + STATE(2425), 1, + sym_template_type, + STATE(2426), 1, sym_dependent_type_identifier, - [241388] = 18, + STATE(2548), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5667), 1, + sym_pointer_type_declarator, + STATE(5669), 1, + sym_template_function, + STATE(5670), 1, + sym_destructor_name, + STATE(5671), 1, + sym_dependent_identifier, + STATE(5672), 1, + sym_qualified_identifier, + STATE(5675), 1, + sym_operator_name, + STATE(7832), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11121), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [302672] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13326), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [302735] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13289), 1, sym_identifier, - STATE(2660), 1, + ACTIONS(13328), 1, + anon_sym_COLON_COLON, + ACTIONS(13330), 1, + anon_sym_template, + STATE(3411), 1, sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2821), 1, - sym__class_declaration_item, - STATE(6808), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, + STATE(3439), 1, + sym_dependent_type_identifier, + STATE(3539), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7834), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [241447] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302810] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2837), 1, - sym__class_declaration_item, - STATE(6808), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13332), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5692), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241506] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [302873] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2712), 1, - sym_field_declaration_list, - STATE(2812), 1, - sym__class_declaration_item, - STATE(6808), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13334), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7250), 1, - sym_virtual_specifier, - STATE(7843), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2452), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241565] = 11, + sym_splice_type_specifier, + sym_splice_expression, + [302936] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8245), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, anon_sym_STAR, - ACTIONS(8247), 1, - anon_sym_AMP_AMP, - ACTIONS(8249), 1, + ACTIONS(13203), 1, anon_sym_AMP, - STATE(3014), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6580), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 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, - [241610] = 19, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13336), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [302999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(8479), 2, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10107), 1, + STATE(6299), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7916), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8481), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10109), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10161), 1, anon_sym_SEMI, - ACTIONS(10163), 1, + anon_sym_COLON, anon_sym_LBRACE, - STATE(2115), 1, - sym_compound_statement, - STATE(2117), 1, - sym_try_statement, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7621), 1, - sym_gnu_asm_expression, - STATE(7622), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [241671] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, anon_sym_DASH_GT, - ACTIONS(9949), 1, - anon_sym_LBRACE, - STATE(1641), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(8141), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [241724] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, - sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3732), 1, - sym__class_declaration_item, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5682), 2, anon_sym_final, anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5699), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [241783] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [303042] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(13277), 1, + anon_sym_TILDE, + ACTIONS(13283), 1, + anon_sym_operator, + ACTIONS(13338), 1, sym_identifier, - STATE(2911), 1, + ACTIONS(13340), 1, + anon_sym_COLON_COLON, + ACTIONS(13342), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3735), 1, - sym__class_declaration_item, - STATE(6829), 1, - sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5769), 1, + sym_pointer_type_declarator, + STATE(5770), 1, + sym_template_function, + STATE(5773), 1, + sym_destructor_name, + STATE(5775), 1, + sym_dependent_identifier, + STATE(5781), 1, + sym_qualified_identifier, + STATE(5789), 1, + sym_operator_name, + STATE(7839), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10900), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [241842] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303117] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13181), 1, + anon_sym_TILDE, + ACTIONS(13187), 1, + anon_sym_operator, + ACTIONS(13344), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(13346), 1, + anon_sym_COLON_COLON, + ACTIONS(13348), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(1900), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(6793), 1, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5276), 1, + sym_pointer_type_declarator, + STATE(5278), 1, + sym_template_function, + STATE(5280), 1, + sym_destructor_name, + STATE(5281), 1, + sym_dependent_identifier, + STATE(5282), 1, + sym_qualified_identifier, + STATE(5284), 1, + sym_operator_name, + STATE(7840), 1, sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5703), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [241901] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303192] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3770), 1, - sym__class_declaration_item, - STATE(6829), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13350), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [241960] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303255] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3779), 1, - sym__class_declaration_item, - STATE(6829), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13352), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5701), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242019] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3231), 1, - sym_field_declaration_list, - STATE(3824), 1, - sym__class_declaration_item, - STATE(6829), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13354), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7285), 1, - sym_virtual_specifier, - STATE(7966), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2752), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242078] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1972), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(6793), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13356), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242137] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1901), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(6793), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13358), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242196] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1905), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(6793), 1, - sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, - STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12144), 1, + anon_sym___attribute__, + ACTIONS(12147), 1, + anon_sym___attribute, + STATE(8456), 1, + sym_trailing_return_type, + STATE(8543), 1, + sym__function_attributes_end, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5712), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [242255] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [303570] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1901), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6834), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13360), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242314] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9945), 1, - anon_sym_LBRACE, - STATE(5792), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(8117), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [242367] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303633] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3467), 1, - sym__class_declaration_item, - STATE(6848), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13362), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5709), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242426] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303696] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5564), 1, + anon_sym_RBRACK, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3472), 1, - sym__class_declaration_item, - STATE(6848), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242485] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303759] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(13277), 1, + anon_sym_TILDE, + ACTIONS(13283), 1, + anon_sym_operator, + ACTIONS(13364), 1, sym_identifier, - STATE(2791), 1, + ACTIONS(13366), 1, + anon_sym_COLON_COLON, + ACTIONS(13368), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3981), 1, sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3514), 1, - sym__class_declaration_item, - STATE(6848), 1, - sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, + STATE(3982), 1, + sym_dependent_type_identifier, + STATE(4151), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(5769), 1, + sym_pointer_type_declarator, + STATE(5770), 1, + sym_template_function, + STATE(5773), 1, + sym_destructor_name, + STATE(5775), 1, + sym_dependent_identifier, + STATE(5781), 1, + sym_qualified_identifier, + STATE(5789), 1, + sym_operator_name, + STATE(7850), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10900), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [242544] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303834] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3518), 1, - sym__class_declaration_item, - STATE(6848), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13370), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5711), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242603] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303897] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3058), 1, - sym_field_declaration_list, - STATE(3538), 1, - sym__class_declaration_item, - STATE(6848), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13372), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7150), 1, - sym_virtual_specifier, - STATE(8015), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2639), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242662] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [303960] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13247), 1, + anon_sym_operator, + ACTIONS(13374), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(13376), 1, + anon_sym_COLON_COLON, + ACTIONS(13378), 1, + anon_sym_template, + STATE(2670), 1, sym_template_type, - STATE(1967), 1, - sym__class_declaration_item, - STATE(5407), 1, - sym_field_declaration_list, - STATE(6793), 1, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_pointer_type_declarator, + STATE(5474), 1, + sym_template_function, + STATE(5481), 1, + sym_destructor_name, + STATE(5486), 1, + sym_dependent_identifier, + STATE(5489), 1, + sym_qualified_identifier, + STATE(5498), 1, + sym_operator_name, + STATE(7853), 1, sym__scope_resolution, - STATE(7325), 1, - sym_virtual_specifier, STATE(8089), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4907), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [242721] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1905), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6834), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13380), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5745), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242780] = 15, + sym_splice_type_specifier, + sym_splice_expression, + [304098] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(11140), 1, anon_sym_DASH_GT, - STATE(3185), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(7968), 1, - sym_lambda_declarator, - STATE(8419), 1, + ACTIONS(12778), 1, + anon_sym___attribute__, + ACTIONS(12781), 1, + anon_sym___attribute, + STATE(8485), 1, + sym__function_attributes_end, + STATE(8553), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [242833] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [304161] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13215), 1, sym_identifier, - STATE(4656), 1, + ACTIONS(13219), 1, + anon_sym_template, + ACTIONS(13382), 1, + anon_sym_COLON_COLON, + STATE(3646), 1, sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5082), 1, - sym__class_declaration_item, - STATE(6851), 1, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7856), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10593), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [304236] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + STATE(8486), 1, + sym__function_attributes_end, + STATE(8635), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10476), 2, anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5717), 2, + anon_sym_override, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [242892] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [304299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5127), 1, - sym__class_declaration_item, - STATE(6851), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13384), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [242951] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304362] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5101), 1, - sym__class_declaration_item, - STATE(6851), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13386), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [243010] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304425] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13289), 1, sym_identifier, - STATE(4656), 1, + ACTIONS(13293), 1, + anon_sym_template, + ACTIONS(13388), 1, + anon_sym_COLON_COLON, + STATE(2670), 1, sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5129), 1, - sym__class_declaration_item, - STATE(6851), 1, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7860), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [304500] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12875), 1, + anon_sym___attribute__, + ACTIONS(12878), 1, + anon_sym___attribute, + ACTIONS(13172), 1, + anon_sym_requires, + STATE(8492), 1, + sym__function_attributes_end, + STATE(8573), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5719), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [243069] = 18, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [304563] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9155), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_EQ, + ACTIONS(13199), 1, sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5057), 1, - sym_field_declaration_list, - STATE(5085), 1, - sym__class_declaration_item, - STATE(6851), 1, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13203), 1, + anon_sym_AMP, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13209), 1, + sym_this, + ACTIONS(13390), 1, + anon_sym_RBRACK, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(7163), 1, - sym_virtual_specifier, - STATE(7883), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4654), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10128), 1, + sym_lambda_default_capture, + STATE(9644), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [243128] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304626] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13156), 1, + anon_sym_TILDE, + ACTIONS(13392), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(13394), 1, + anon_sym_COLON_COLON, + ACTIONS(13396), 1, + anon_sym_template, + ACTIONS(13398), 1, + anon_sym_operator, + STATE(3646), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4264), 1, - sym__class_declaration_item, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(5723), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7863), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [243187] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304701] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11524), 1, + anon_sym_STAR, + ACTIONS(13255), 1, + anon_sym_TILDE, + ACTIONS(13261), 1, + anon_sym_operator, + ACTIONS(13400), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(13402), 1, + anon_sym_COLON_COLON, + ACTIONS(13404), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4268), 1, - sym__class_declaration_item, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5667), 1, + sym_pointer_type_declarator, + STATE(5669), 1, + sym_template_function, + STATE(5670), 1, + sym_destructor_name, + STATE(5671), 1, + sym_dependent_identifier, + STATE(5672), 1, + sym_qualified_identifier, + STATE(5675), 1, + sym_operator_name, + STATE(7864), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11121), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [243246] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304776] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13247), 1, + anon_sym_operator, + ACTIONS(13406), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(13408), 1, + anon_sym_COLON_COLON, + ACTIONS(13410), 1, + anon_sym_template, + STATE(2588), 1, sym_template_type, - STATE(1967), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6795), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, + STATE(2593), 1, + sym_dependent_type_identifier, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_pointer_type_declarator, + STATE(5474), 1, + sym_template_function, + STATE(5481), 1, + sym_destructor_name, + STATE(5486), 1, + sym_dependent_identifier, + STATE(5489), 1, + sym_qualified_identifier, + STATE(5498), 1, + sym_operator_name, + STATE(7865), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [243305] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304851] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13412), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(13414), 1, + anon_sym_COLON_COLON, + ACTIONS(13416), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4280), 1, - sym__class_declaration_item, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3741), 1, + sym_pointer_type_declarator, + STATE(3742), 1, + sym_template_function, + STATE(3749), 1, + sym_destructor_name, + STATE(3757), 1, + sym_dependent_identifier, + STATE(3782), 1, + sym_qualified_identifier, + STATE(3789), 1, + sym_operator_name, + STATE(7866), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10884), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [243364] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - STATE(1641), 1, - sym_compound_statement, - STATE(6012), 1, - sym_parameter_list, - STATE(8167), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [243417] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [304926] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11574), 1, + anon_sym_STAR, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13247), 1, + anon_sym_operator, + ACTIONS(13418), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(13420), 1, + anon_sym_COLON_COLON, + ACTIONS(13422), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4225), 1, - sym__class_declaration_item, - STATE(6849), 1, - sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(5727), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_pointer_type_declarator, + STATE(5474), 1, + sym_template_function, + STATE(5481), 1, + sym_destructor_name, + STATE(5486), 1, + sym_dependent_identifier, + STATE(5489), 1, + sym_qualified_identifier, + STATE(5498), 1, + sym_operator_name, + STATE(7867), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(11462), 1, + sym_ms_based_modifier, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [243476] = 15, + sym_splice_type_specifier, + sym_splice_expression, + [305001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(9943), 1, + ACTIONS(2592), 1, anon_sym_LBRACE, - STATE(6012), 1, - sym_parameter_list, - STATE(6128), 1, - sym_compound_statement, - STATE(7834), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8167), 1, + anon_sym_LPAREN2, + STATE(5523), 1, + sym_argument_list, + STATE(5524), 1, + sym_initializer_list, + ACTIONS(6798), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6800), 18, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, + anon_sym_constinit, anon_sym_consteval, - [243529] = 18, + anon_sym_alignas, + anon_sym__Alignas, + [305044] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(7996), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8360), 1, anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13175), 1, sym_identifier, - STATE(4002), 1, - sym_template_type, - STATE(4100), 1, - sym_field_declaration_list, - STATE(4287), 1, - sym__class_declaration_item, - STATE(6849), 1, + ACTIONS(13177), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7869), 1, sym__scope_resolution, - STATE(7180), 1, - sym_virtual_specifier, - STATE(8051), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3559), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [243588] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [305112] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9882), 1, anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13424), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1900), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6795), 1, + ACTIONS(13426), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7870), 1, sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5740), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [243647] = 5, + sym_splice_type_specifier, + sym_splice_expression, + [305180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10165), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(10167), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6199), 3, + ACTIONS(13428), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2101), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6201), 14, + ACTIONS(8700), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243680] = 19, + [305216] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13431), 1, + sym_identifier, + ACTIONS(13433), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [305284] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(10107), 1, + ACTIONS(11751), 1, anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10169), 1, + ACTIONS(13437), 1, anon_sym_SEMI, - ACTIONS(10171), 1, + ACTIONS(13439), 1, + anon_sym_COLON, + ACTIONS(13441), 1, anon_sym_LBRACE, - ACTIONS(10173), 1, + ACTIONS(13443), 1, + anon_sym_LBRACK, + ACTIONS(13445), 1, + anon_sym_EQ, + ACTIONS(13447), 1, anon_sym_try, - STATE(814), 1, + STATE(2649), 1, sym_compound_statement, - STATE(815), 1, + STATE(2650), 1, + sym_default_method_clause, + STATE(2652), 1, + sym_delete_method_clause, + STATE(2656), 1, + sym_pure_virtual_clause, + STATE(2657), 1, sym_try_statement, - STATE(2930), 1, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(7491), 1, - sym_gnu_asm_expression, - STATE(7492), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, + STATE(9121), 1, + sym_bitfield_clause, + STATE(9122), 1, + sym_initializer_list, + STATE(9123), 1, + aux_sym_field_declaration_repeat1, + STATE(10751), 1, + sym_attribute_specifier, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [243741] = 7, + [305358] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(6129), 1, anon_sym___asm, - ACTIONS(9761), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [243778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10177), 3, - anon_sym___attribute, + ACTIONS(7546), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10175), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10254), 1, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [243807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10181), 3, + ACTIONS(10256), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10179), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(10437), 1, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [243836] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9777), 1, + ACTIONS(12747), 1, anon_sym_requires, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9761), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(8734), 1, + sym__function_attributes_end, + STATE(8823), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [243873] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2603), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5738), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [243932] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(7544), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2613), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [243991] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1972), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6795), 1, - sym__scope_resolution, - STATE(7259), 1, + STATE(8297), 2, sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244050] = 18, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + [305420] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11695), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2554), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244109] = 18, + ACTIONS(11697), 1, + anon_sym_STAR, + ACTIONS(11699), 1, + anon_sym_AMP_AMP, + ACTIONS(11701), 1, + anon_sym_AMP, + STATE(8360), 1, + sym_ms_call_modifier, + STATE(8900), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + ACTIONS(1880), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8721), 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, + [305474] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8725), 1, + sym__function_attributes_end, + STATE(8836), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8089), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2561), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5742), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244168] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1901), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6795), 1, - sym__scope_resolution, - STATE(7259), 1, + STATE(8297), 2, sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244227] = 4, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + [305536] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10185), 1, - anon_sym_LPAREN2, - ACTIONS(10187), 3, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10183), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(11779), 1, anon_sym___attribute__, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13439), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(13443), 1, + anon_sym_LBRACK, + ACTIONS(13449), 1, + anon_sym_SEMI, + ACTIONS(13451), 1, anon_sym_LBRACE, + ACTIONS(13453), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(13455), 1, anon_sym_try, - anon_sym_requires, - [244258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2593), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + STATE(3212), 1, + sym_compound_statement, + STATE(3213), 1, + sym_default_method_clause, + STATE(3215), 1, + sym_delete_method_clause, + STATE(3220), 1, + sym_pure_virtual_clause, + STATE(3222), 1, + sym_try_statement, + STATE(4234), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(9065), 1, + sym_bitfield_clause, + STATE(9066), 1, + sym_initializer_list, + STATE(9067), 1, + aux_sym_field_declaration_repeat1, + STATE(11068), 1, + sym_attribute_specifier, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244317] = 18, + [305610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8203), 1, anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2603), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5754), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244376] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(11514), 1, + anon_sym_STAR, + ACTIONS(13457), 1, sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2613), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6815), 1, + ACTIONS(13459), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7878), 1, sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8427), 1, + sym_pointer_type_declarator, + STATE(8430), 1, + sym_template_function, + STATE(8432), 1, + sym_destructor_name, + STATE(8433), 1, + sym_dependent_identifier, + STATE(8434), 1, + sym_qualified_identifier, + STATE(8436), 1, + sym_operator_name, + STATE(10589), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [244435] = 18, + sym_splice_type_specifier, + sym_splice_expression, + [305678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(3049), 1, + anon_sym_TILDE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(13461), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1967), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6834), 1, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(13465), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3871), 1, + sym_pointer_type_declarator, + STATE(3872), 1, + sym_template_function, + STATE(3876), 1, + sym_destructor_name, + STATE(3877), 1, + sym_dependent_identifier, + STATE(3878), 1, + sym_qualified_identifier, + STATE(3879), 1, + sym_operator_name, + STATE(7879), 1, sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10974), 1, + sym_ms_based_modifier, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [244494] = 3, + sym_splice_type_specifier, + sym_splice_expression, + [305746] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 3, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(1940), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [244523] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(10107), 1, + ACTIONS(11751), 1, anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13439), 1, + anon_sym_COLON, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10189), 1, + ACTIONS(13467), 1, anon_sym_SEMI, - ACTIONS(10191), 1, + ACTIONS(13469), 1, anon_sym_LBRACE, - ACTIONS(10193), 1, + ACTIONS(13471), 1, + anon_sym_EQ, + ACTIONS(13473), 1, anon_sym_try, - STATE(296), 1, - sym_try_statement, - STATE(443), 1, + STATE(3288), 1, sym_compound_statement, - STATE(2930), 1, + STATE(3289), 1, + sym_default_method_clause, + STATE(3299), 1, + sym_delete_method_clause, + STATE(3304), 1, + sym_pure_virtual_clause, + STATE(3305), 1, + sym_try_statement, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(7586), 1, - sym_gnu_asm_expression, - STATE(7592), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, + STATE(9083), 1, + sym_bitfield_clause, + STATE(9087), 1, + sym_initializer_list, + STATE(9116), 1, + aux_sym_field_declaration_repeat1, + STATE(10770), 1, + sym_attribute_specifier, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [244584] = 7, + [305820] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, + ACTIONS(6129), 1, + anon_sym___asm, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12869), 1, anon_sym_requires, - ACTIONS(6221), 2, + STATE(8717), 1, + sym__function_attributes_end, + STATE(8835), 1, + sym_trailing_return_type, + STATE(8982), 1, + sym_gnu_asm_expression, + ACTIONS(6154), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7627), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(7838), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9434), 3, + [305882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8479), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9423), 11, + ACTIONS(8481), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [244621] = 5, + anon_sym_requires, + [305917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10199), 2, - anon_sym_final, - anon_sym_override, - STATE(5749), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10197), 3, + ACTIONS(8633), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10195), 14, + ACTIONS(8635), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244654] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6219), 1, - anon_sym_LBRACE, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(1905), 1, - sym__class_declaration_item, - STATE(2540), 1, - sym_field_declaration_list, - STATE(6795), 1, - sym__scope_resolution, - STATE(7259), 1, - sym_virtual_specifier, - STATE(7872), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2263), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5722), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244713] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10204), 1, - anon_sym_RPAREN, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10214), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5765), 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, - [244756] = 7, + [305948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10218), 1, - anon_sym_requires, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10023), 3, + ACTIONS(8610), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10021), 11, + ACTIONS(8612), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [244793] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - ACTIONS(10221), 1, - anon_sym_SEMI, - STATE(5552), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8631), 1, - sym_attribute_specifier, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(6598), 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, - [244846] = 18, + anon_sym_requires, + [305979] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13475), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2554), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + STATE(6347), 1, + sym_compound_statement, + STATE(8008), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10165), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244905] = 18, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306038] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13475), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2561), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5767), 2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + STATE(6322), 1, + sym_compound_statement, + STATE(7885), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10356), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [244964] = 3, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10225), 3, + ACTIONS(8629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10223), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8631), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244993] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2603), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6830), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5651), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [245052] = 3, + [306128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 3, + ACTIONS(8629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5180), 18, + ACTIONS(8631), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -495141,22 +684640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245081] = 4, + [306159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10167), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6247), 3, + ACTIONS(8599), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6249), 16, + ACTIONS(8601), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, @@ -495164,21 +684663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245112] = 3, + [306190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 3, + ACTIONS(8618), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5160), 18, + ACTIONS(8620), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -495194,196 +684696,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245141] = 12, + [306221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8229), 1, - anon_sym_STAR, - ACTIONS(8231), 1, - anon_sym_AMP_AMP, - ACTIONS(8233), 1, - anon_sym_AMP, - ACTIONS(8394), 1, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8156), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8559), 3, anon_sym___attribute, - STATE(3299), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6623), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 7, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8561), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [245188] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [306260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10229), 3, + ACTIONS(8651), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10227), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8653), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245217] = 18, + [306291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + ACTIONS(8655), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8657), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(6741), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2613), 1, - sym__class_declaration_item, - STATE(3956), 1, - sym_field_declaration_list, - STATE(6830), 1, - sym__scope_resolution, - STATE(7347), 1, - sym_virtual_specifier, - STATE(8125), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(3285), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [245276] = 15, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [306322] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9927), 1, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(9935), 1, + ACTIONS(13483), 1, anon_sym_LBRACE, - STATE(2451), 1, + STATE(5459), 1, sym_compound_statement, - STATE(6012), 1, + STATE(7897), 1, + sym_template_parameter_list, + STATE(8127), 1, sym_parameter_list, - STATE(8097), 1, + STATE(10167), 1, sym_lambda_declarator, - STATE(8419), 1, + STATE(10515), 1, sym_trailing_return_type, - STATE(6051), 2, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, + STATE(8343), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, + STATE(9051), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9925), 4, + ACTIONS(13477), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [245329] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10137), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10231), 1, - anon_sym_RPAREN, - STATE(7729), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [245384] = 3, + [306381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 3, + ACTIONS(8622), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(1936), 18, + ACTIONS(8624), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -495399,799 +684854,1207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245413] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(2593), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6815), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4108), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [245472] = 7, + [306412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10233), 1, - anon_sym_requires, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10053), 3, + ACTIONS(13485), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8939), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10051), 11, + ACTIONS(8941), 18, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [245509] = 7, + anon_sym_requires, + [306445] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, + ACTIONS(13483), 1, + anon_sym_LBRACE, + STATE(5618), 1, + sym_compound_statement, + STATE(8015), 1, sym_requires_clause, - ACTIONS(9192), 3, + STATE(8127), 1, + sym_parameter_list, + STATE(10084), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8665), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9181), 11, + ACTIONS(8667), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [245546] = 5, + anon_sym_requires, + [306535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5749), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10238), 3, + ACTIONS(8516), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10236), 14, + ACTIONS(8518), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245579] = 7, + [306566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10023), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10021), 11, + ACTIONS(9540), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [245616] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(9538), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [306597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10242), 3, + ACTIONS(8595), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10240), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8597), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245645] = 18, + [306628] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(13046), 1, sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3242), 1, - sym__class_declaration_item, - STATE(6809), 1, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13487), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8472), 1, + sym_access_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5781), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7929), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(9728), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [245704] = 3, + sym_splice_expression, + [306687] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5196), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13491), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, + STATE(6582), 1, + sym_compound_statement, + STATE(7904), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10154), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306746] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, anon_sym_requires, - [245733] = 18, + ACTIONS(13491), 1, + anon_sym_LBRACE, + STATE(6572), 1, + sym_compound_statement, + STATE(7963), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10254), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306805] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(13046), 1, sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3278), 1, - sym__class_declaration_item, - STATE(6809), 1, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13493), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8416), 1, + sym_access_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9346), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4728), 2, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [306864] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13495), 1, + anon_sym_LBRACE, + STATE(4780), 1, + sym_compound_statement, + STATE(7910), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10354), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306923] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13497), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8403), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7905), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, + STATE(9366), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - [245792] = 3, + sym_splice_expression, + [306982] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5188), 18, - anon_sym_COMMA, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13499), 1, + anon_sym_LBRACE, + STATE(5068), 1, + sym_compound_statement, + STATE(7909), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10122), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307041] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13499), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, + STATE(5144), 1, + sym_compound_statement, + STATE(7970), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10203), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307100] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, anon_sym_requires, - [245821] = 15, + ACTIONS(13495), 1, + anon_sym_LBRACE, + STATE(4726), 1, + sym_compound_statement, + STATE(7980), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10370), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307159] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - ACTIONS(10244), 1, - anon_sym_SEMI, - STATE(5550), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8624), 1, - sym_attribute_specifier, - STATE(8639), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(6598), 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, - [245874] = 3, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13501), 1, + anon_sym_LBRACE, + STATE(5160), 1, + sym_compound_statement, + STATE(8017), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10412), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307218] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13503), 1, + anon_sym_LBRACE, + STATE(2895), 1, + sym_compound_statement, + STATE(7913), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10440), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307277] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13503), 1, + anon_sym_LBRACE, + STATE(2951), 1, + sym_compound_statement, + STATE(7975), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10112), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307336] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5204), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13505), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, + STATE(5032), 1, + sym_compound_statement, + STATE(7915), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10272), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, anon_sym_requires, - [245903] = 3, + ACTIONS(13505), 1, + anon_sym_LBRACE, + STATE(5107), 1, + sym_compound_statement, + STATE(7979), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10328), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 3, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8512), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5204), 18, + ACTIONS(8514), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245932] = 3, + [307489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 3, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5204), 18, + ACTIONS(7627), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [245961] = 18, + [307528] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13507), 1, anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3298), 1, - sym__class_declaration_item, - STATE(6809), 1, - sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + STATE(7884), 1, + sym_compound_statement, + STATE(7919), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10416), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246020] = 18, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307587] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13507), 1, anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3312), 1, - sym__class_declaration_item, - STATE(6809), 1, - sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5783), 2, + STATE(7892), 1, + sym_compound_statement, + STATE(7985), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10433), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246079] = 18, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307646] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6758), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2978), 1, - sym_field_declaration_list, - STATE(3221), 1, - sym__class_declaration_item, - STATE(6809), 1, - sym__scope_resolution, - STATE(7249), 1, - sym_virtual_specifier, - STATE(7838), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2568), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + STATE(5036), 1, + sym_compound_statement, + STATE(7921), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10102), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246138] = 3, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307705] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5164), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, anon_sym_requires, - [246167] = 3, + STATE(5160), 1, + sym_compound_statement, + STATE(7988), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10192), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307764] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5184), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13509), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [246196] = 19, + STATE(7923), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(8296), 1, + sym_compound_statement, + STATE(10118), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307823] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10246), 1, - anon_sym_SEMI, - ACTIONS(10248), 1, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13509), 1, anon_sym_LBRACE, - ACTIONS(10250), 1, - anon_sym_try, - STATE(723), 1, - sym_compound_statement, - STATE(724), 1, - sym_try_statement, - STATE(2930), 1, + STATE(7992), 1, + sym_requires_clause, + STATE(8127), 1, sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7357), 1, - sym_gnu_asm_expression, - STATE(7358), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, + STATE(8278), 1, + sym_compound_statement, + STATE(10216), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [246257] = 3, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307882] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5192), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(12170), 1, + anon_sym_requires, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [246286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5198), 3, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5200), 18, + ACTIONS(7544), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [246315] = 18, + [307921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(9525), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - ACTIONS(9671), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9523), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2554), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246374] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [307952] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 3, + ACTIONS(12790), 1, + anon_sym_requires, + ACTIONS(12787), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5208), 18, + ACTIONS(7627), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [246403] = 7, + [307991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9439), 1, + ACTIONS(12887), 1, anon_sym_requires, - ACTIONS(9436), 2, + ACTIONS(12884), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9434), 3, + ACTIONS(8087), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9423), 11, + ACTIONS(8089), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -496201,138 +686064,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [246440] = 3, + [308030] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5168), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(13514), 1, + anon_sym_requires, + ACTIONS(13511), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [246469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5174), 3, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8208), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8541), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5176), 18, + ACTIONS(8543), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [246498] = 10, + [308069] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10252), 1, - anon_sym_RPAREN, - ACTIONS(10254), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5664), 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, - [246541] = 3, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(13517), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8461), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9996), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [308128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, + ACTIONS(13485), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13519), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8959), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5172), 18, + ACTIONS(8961), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246570] = 7, + [308163] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, + ACTIONS(13524), 1, anon_sym_requires, - ACTIONS(6221), 2, + ACTIONS(13521), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6055), 2, + STATE(8156), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10053), 3, + ACTIONS(8559), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10051), 11, + ACTIONS(8561), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -496342,1039 +686200,727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [246607] = 15, + [308202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, + ACTIONS(10922), 1, anon_sym_LPAREN2, - ACTIONS(9923), 1, - anon_sym_LBRACE, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - STATE(3185), 1, - sym_compound_statement, - STATE(6012), 1, + ACTIONS(10936), 1, + anon_sym_LBRACK, + ACTIONS(11381), 1, + anon_sym_STAR, + ACTIONS(11383), 1, + anon_sym_AMP_AMP, + ACTIONS(11385), 1, + anon_sym_AMP, + STATE(4509), 1, sym_parameter_list, - STATE(8011), 1, - sym_lambda_declarator, - STATE(8419), 1, - sym_trailing_return_type, - STATE(6051), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6136), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7052), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [246660] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4944), 1, - sym__class_declaration_item, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5648), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246719] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, + STATE(8183), 1, + sym__function_declarator_seq, + STATE(8623), 1, + sym__abstract_declarator, + STATE(8180), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 10, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4845), 1, - sym_field_declaration_list, - STATE(4955), 1, - sym__class_declaration_item, - STATE(6838), 1, - sym__scope_resolution, - STATE(7318), 1, - sym_virtual_specifier, - STATE(8074), 1, - sym_base_class_clause, - ACTIONS(5682), 2, - anon_sym_final, - anon_sym_override, - STATE(4449), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246778] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6739), 1, - anon_sym_COLON, - ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2561), 1, - sym__class_declaration_item, - STATE(3039), 1, - sym_field_declaration_list, - STATE(6842), 1, - sym__scope_resolution, - STATE(7172), 1, - sym_virtual_specifier, - STATE(7969), 1, - sym_base_class_clause, - ACTIONS(5682), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(2558), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5647), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [246837] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5515), 1, - anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10256), 1, - sym_identifier, - ACTIONS(10258), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5801), 1, - sym__scope_resolution, - STATE(7302), 1, - sym_operator_cast, - STATE(7309), 1, - sym_qualified_operator_cast_identifier, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [246900] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10260), 1, - anon_sym_RPAREN, - ACTIONS(10262), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5668), 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, - [246943] = 5, - ACTIONS(10043), 1, - anon_sym_LF, - ACTIONS(10264), 1, - anon_sym_LPAREN2, - ACTIONS(10266), 1, - sym_comment, - STATE(5972), 1, - sym_preproc_argument_list, - ACTIONS(10047), 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, - [246976] = 9, + anon_sym_try, + anon_sym_requires, + [308249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - ACTIONS(9434), 2, + ACTIONS(8416), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 9, + ACTIONS(8418), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [247016] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10276), 1, - anon_sym_RBRACK, - ACTIONS(10278), 1, - sym_this, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [247068] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10280), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [247114] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10282), 1, - anon_sym_PIPE, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10280), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [247160] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6645), 1, - sym__type_declarator, - STATE(7097), 1, - sym__type_definition_declarators, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [247210] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(10284), 1, - sym_identifier, - ACTIONS(10286), 1, - anon_sym_TILDE, - ACTIONS(10288), 1, - anon_sym_COLON_COLON, - ACTIONS(10290), 1, - anon_sym_template, - ACTIONS(10292), 1, - anon_sym_operator, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(3452), 1, - sym_pointer_type_declarator, - STATE(3455), 1, - sym_template_function, - STATE(3457), 1, - sym_destructor_name, - STATE(3459), 1, - sym_dependent_identifier, - STATE(3470), 1, - sym_qualified_identifier, - STATE(3476), 1, - sym_operator_name, - STATE(5809), 1, - sym__scope_resolution, - STATE(8955), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [247274] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10282), 1, - anon_sym_PIPE, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10280), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [247318] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8370), 1, - anon_sym_STAR, - ACTIONS(10294), 1, - sym_identifier, - ACTIONS(10296), 1, - anon_sym_TILDE, - ACTIONS(10298), 1, - anon_sym_COLON_COLON, - ACTIONS(10300), 1, - anon_sym_template, - ACTIONS(10302), 1, - anon_sym_operator, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(3646), 1, - sym_pointer_type_declarator, - STATE(3656), 1, - sym_template_function, - STATE(3657), 1, - sym_destructor_name, - STATE(3658), 1, - sym_dependent_identifier, - STATE(3660), 1, - sym_qualified_identifier, - STATE(3662), 1, - sym_operator_name, - STATE(5811), 1, - sym__scope_resolution, - STATE(8333), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [247382] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10280), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [247424] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10304), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5978), 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, - [247464] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(10306), 1, - sym_identifier, - ACTIONS(10308), 1, - anon_sym_TILDE, - ACTIONS(10310), 1, - anon_sym_COLON_COLON, - ACTIONS(10312), 1, - anon_sym_template, - ACTIONS(10314), 1, - anon_sym_operator, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2528), 1, - sym_pointer_type_declarator, - STATE(2529), 1, - sym_template_function, - STATE(2530), 1, - sym_destructor_name, - STATE(2532), 1, - sym_dependent_identifier, - STATE(2534), 1, - sym_qualified_identifier, - STATE(2538), 1, - sym_operator_name, - STATE(5814), 1, - sym__scope_resolution, - STATE(8231), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [247528] = 15, + 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, + [308280] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7546), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7544), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10316), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [247580] = 21, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [308319] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(4332), 1, - anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10318), 1, - sym_identifier, - ACTIONS(10320), 1, - anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5816), 1, - sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [247644] = 9, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13501), 1, + anon_sym_LBRACE, + STATE(5036), 1, + sym_compound_statement, + STATE(7911), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10423), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308378] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, - sym_identifier, - ACTIONS(10324), 1, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, - anon_sym_defined, - ACTIONS(10332), 1, - sym_number_literal, - ACTIONS(10328), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10330), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10334), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6008), 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, - [247684] = 7, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13527), 1, + anon_sym_LBRACE, + STATE(3508), 1, + sym_compound_statement, + STATE(7939), 1, + sym_template_parameter_list, + STATE(8127), 1, + sym_parameter_list, + STATE(10078), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308437] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8725), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8727), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9411), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9194), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9192), 3, + ACTIONS(8087), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9181), 10, + ACTIONS(8089), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [247720] = 9, + [308511] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10280), 7, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13481), 1, + anon_sym_requires, + ACTIONS(13527), 1, + anon_sym_LBRACE, + STATE(3567), 1, + sym_compound_statement, + STATE(8026), 1, + sym_requires_clause, + STATE(8127), 1, + sym_parameter_list, + STATE(10224), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8606), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8608), 20, 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, - [247760] = 5, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10087), 3, + ACTIONS(8614), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10085), 14, + ACTIONS(8616), 20, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247792] = 12, + [308632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(2803), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(8266), 1, - anon_sym_STAR, - ACTIONS(8268), 1, + anon_sym___asm, + ACTIONS(2801), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8270), 1, - anon_sym_AMP, - ACTIONS(8394), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 3, anon_sym___attribute, - STATE(3304), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6727), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 6, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(2793), 20, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [247838] = 7, + [308694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9536), 1, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9436), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9434), 3, + ACTIONS(8541), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8543), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [308733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9423), 10, + ACTIONS(8631), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [247874] = 7, + anon_sym_requires, + [308764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9823), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9774), 2, + STATE(7891), 1, + sym_trailing_return_type, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + ACTIONS(8541), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9761), 10, + ACTIONS(8543), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [247910] = 7, + [308806] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10336), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12170), 1, anon_sym_requires, - ACTIONS(10025), 2, + STATE(7926), 1, + sym_trailing_return_type, + ACTIONS(7546), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10023), 3, + ACTIONS(7544), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [308848] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12790), 1, + anon_sym_requires, + STATE(7927), 1, + sym_trailing_return_type, + ACTIONS(7629), 2, anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10021), 10, + ACTIONS(12787), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [247946] = 7, + [308890] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10339), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(12887), 1, anon_sym_requires, - ACTIONS(10055), 2, + STATE(7928), 1, + sym_trailing_return_type, + ACTIONS(8087), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(12884), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6055), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10053), 3, + ACTIONS(8089), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [308932] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(13514), 1, + anon_sym_requires, + STATE(7931), 1, + sym_trailing_return_type, + ACTIONS(8541), 2, anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10051), 10, + ACTIONS(13511), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8208), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [247982] = 7, + [308974] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10282), 4, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13529), 1, + anon_sym_AMP, + ACTIONS(13531), 1, + sym_this, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(9818), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309028] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13199), 1, + sym_identifier, + ACTIONS(13201), 1, + anon_sym_STAR, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(13529), 1, + anon_sym_AMP, + ACTIONS(13533), 1, + sym_this, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10374), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13537), 1, + anon_sym_LPAREN2, + STATE(8114), 1, + sym_preproc_argument_list, + ACTIONS(13539), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10280), 9, + ACTIONS(13535), 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, @@ -497382,199 +686928,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [248018] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [309116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9556), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9554), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - ACTIONS(10206), 1, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [309146] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10342), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6040), 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, - [248058] = 15, + ACTIONS(9074), 1, + anon_sym___attribute, + ACTIONS(11415), 1, + anon_sym_STAR, + ACTIONS(11417), 1, + anon_sym_AMP_AMP, + ACTIONS(11419), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(4823), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8675), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [309194] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, + anon_sym_requires, + STATE(7917), 1, + sym_trailing_return_type, + ACTIONS(7546), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10268), 1, + anon_sym_GT2, + anon_sym_try, + [309236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, + anon_sym_requires, + STATE(7938), 1, + sym_trailing_return_type, + ACTIONS(7629), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [309278] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10016), 1, + anon_sym_DASH_GT, + ACTIONS(10022), 1, + anon_sym_requires, + STATE(7944), 1, + sym_trailing_return_type, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8087), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8239), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [309320] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(13541), 1, sym_identifier, - ACTIONS(10270), 1, + ACTIONS(13543), 1, + sym_primitive_type, + STATE(2272), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(2818), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309371] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11443), 1, anon_sym_STAR, - ACTIONS(10272), 1, + ACTIONS(11445), 1, + anon_sym_AMP_AMP, + ACTIONS(11447), 1, anon_sym_AMP, - ACTIONS(10274), 1, + STATE(4554), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8710), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [309416] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5574), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10344), 1, - anon_sym_RBRACK, - STATE(6056), 1, + ACTIONS(13545), 1, + sym_identifier, + ACTIONS(13547), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8638), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(4593), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [248110] = 14, + sym_splice_type_specifier, + sym_splice_expression, + [309467] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13447), 1, + anon_sym_try, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13553), 1, + anon_sym_SEMI, + ACTIONS(13555), 1, + anon_sym_LBRACE, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + STATE(2727), 1, + sym_compound_statement, + STATE(2729), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9857), 1, + sym_gnu_asm_expression, + STATE(9858), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [309528] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13491), 1, + anon_sym_LBRACE, + STATE(6460), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10126), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [309581] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11635), 1, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6645), 1, - sym__type_declarator, - STATE(7123), 1, - sym__type_definition_declarators, - STATE(8595), 1, + ACTIONS(13563), 1, + anon_sym_SEMI, + STATE(7880), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11359), 1, + sym_attribute_specifier, + STATE(11372), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8721), 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, + [309634] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(13565), 1, + sym_identifier, + ACTIONS(13567), 1, + sym_primitive_type, + STATE(3270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(3843), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12632), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [248160] = 6, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309685] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10282), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10280), 11, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(13569), 1, + sym_identifier, + ACTIONS(13571), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6549), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(4329), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(2819), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309736] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13455), 1, + anon_sym_try, + ACTIONS(13549), 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_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [248194] = 15, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13573), 1, + anon_sym_SEMI, + ACTIONS(13575), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_compound_statement, + STATE(3183), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9979), 1, + sym_gnu_asm_expression, + STATE(9980), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [309797] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(13577), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, + ACTIONS(13579), 1, + sym_primitive_type, + STATE(2024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2093), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309848] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10346), 1, - anon_sym_RBRACK, - STATE(6056), 1, + ACTIONS(13581), 1, + sym_identifier, + ACTIONS(13583), 1, + sym_primitive_type, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(3054), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [248246] = 9, + sym_splice_type_specifier, + sym_splice_expression, + [309899] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13499), 1, + anon_sym_LBRACE, + STATE(5021), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10283), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [309952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13585), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8585), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [309983] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13587), 1, + anon_sym_SEMI, + ACTIONS(13589), 1, + anon_sym_LBRACE, + ACTIONS(13591), 1, + anon_sym_try, + STATE(784), 1, + sym_compound_statement, + STATE(785), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9948), 1, + sym_gnu_asm_expression, + STATE(9954), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [310044] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(13571), 1, + sym_primitive_type, + ACTIONS(13593), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3683), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(4329), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310095] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13597), 1, + anon_sym_RPAREN, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10348), 1, + ACTIONS(13607), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6032), 7, + STATE(7981), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -497582,163 +687685,324 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [248286] = 3, + [310138] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10352), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10350), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13503), 1, + anon_sym_LBRACE, + STATE(2976), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10161), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310191] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(13611), 1, + sym_identifier, + ACTIONS(13613), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7459), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8564), 1, + sym__scope_resolution, + STATE(3054), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(10592), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310242] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11631), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11633), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [248314] = 14, + ACTIONS(11635), 1, + anon_sym_AMP, + ACTIONS(13615), 1, + anon_sym_SEMI, + STATE(7873), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + STATE(11409), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8721), 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, + [310295] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(13571), 1, + sym_primitive_type, + ACTIONS(13593), 1, + sym_identifier, + STATE(3378), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(4329), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310346] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13505), 1, + anon_sym_LBRACE, + STATE(5130), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10365), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310399] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13495), 1, + anon_sym_LBRACE, + STATE(4838), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10453), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310452] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(13619), 1, + anon_sym_RPAREN, + ACTIONS(13625), 1, anon_sym_SLASH, - ACTIONS(10137), 1, + ACTIONS(13627), 1, anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, + ACTIONS(13629), 1, anon_sym_AMP_AMP, - ACTIONS(10141), 1, + ACTIONS(13631), 1, anon_sym_PIPE, - ACTIONS(10143), 1, + ACTIONS(13633), 1, anon_sym_CARET, - ACTIONS(10145), 1, + ACTIONS(13635), 1, anon_sym_AMP, - ACTIONS(10131), 2, + STATE(9558), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10133), 2, + ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10147), 2, + ACTIONS(13637), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10149), 2, + ACTIONS(13639), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10151), 2, + ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10153), 2, + ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10354), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [248364] = 14, + [310507] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(13645), 1, sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, + ACTIONS(13647), 1, sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6645), 1, - sym__type_declarator, - STATE(7134), 1, - sym__type_definition_declarators, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, + STATE(2336), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(3120), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12385), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [248414] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10356), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [248466] = 9, + sym_splice_type_specifier, + sym_splice_expression, + [310558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - STATE(5748), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(13649), 2, anon_sym_final, anon_sym_override, - ACTIONS(9192), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, + STATE(7983), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 9, + ACTIONS(8755), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8757), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -497746,861 +688010,1337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [248506] = 7, + anon_sym_requires, + [310591] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9192), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9181), 10, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13551), 1, anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13652), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(13654), 1, anon_sym_LBRACE, + ACTIONS(13656), 1, + anon_sym_try, + STATE(899), 1, + sym_compound_statement, + STATE(900), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9826), 1, + sym_gnu_asm_expression, + STATE(9827), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [248542] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10358), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5868), 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, - [248582] = 9, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [310652] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, - sym_identifier, - ACTIONS(10324), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, - anon_sym_defined, - ACTIONS(10360), 1, - sym_number_literal, - ACTIONS(10328), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10330), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10334), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6063), 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, - [248622] = 21, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13507), 1, + anon_sym_LBRACE, + STATE(7898), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10449), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(10065), 1, - anon_sym_TILDE, - ACTIONS(10362), 1, - sym_identifier, - ACTIONS(10364), 1, - anon_sym_COLON_COLON, - ACTIONS(10366), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(10368), 1, - anon_sym_operator, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5841), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(13645), 1, + sym_identifier, + ACTIONS(13647), 1, + sym_primitive_type, + STATE(2240), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8588), 1, sym__scope_resolution, - STATE(8231), 1, - sym_ms_based_modifier, - STATE(9058), 1, + STATE(3120), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, sym_decltype, - [248686] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(10308), 1, - anon_sym_TILDE, - ACTIONS(10314), 1, - anon_sym_operator, - ACTIONS(10370), 1, - sym_identifier, - ACTIONS(10372), 1, - anon_sym_COLON_COLON, - ACTIONS(10374), 1, - anon_sym_template, - STATE(1890), 1, sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, sym_dependent_type_identifier, - STATE(2528), 1, - sym_pointer_type_declarator, - STATE(2529), 1, - sym_template_function, - STATE(2530), 1, - sym_destructor_name, - STATE(2532), 1, - sym_dependent_identifier, - STATE(2534), 1, - sym_qualified_identifier, - STATE(2538), 1, - sym_operator_name, - STATE(5842), 1, - sym__scope_resolution, - STATE(8231), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [248750] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - STATE(5731), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9434), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [248790] = 7, + sym_splice_type_specifier, + sym_splice_expression, + [310756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9434), 3, + ACTIONS(8637), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9423), 10, + ACTIONS(8639), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [248826] = 9, + anon_sym_requires, + [310785] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - STATE(5771), 1, + STATE(5123), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10234), 1, + sym_lambda_declarator, + STATE(10515), 1, sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9772), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [248866] = 7, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9772), 3, + ACTIONS(8641), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9761), 10, + ACTIONS(8643), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [248902] = 7, + anon_sym_requires, + [310867] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10023), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(13565), 1, + sym_identifier, + ACTIONS(13567), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3843), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12405), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310918] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10021), 10, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13551), 1, anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13658), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(13660), 1, anon_sym_LBRACE, + STATE(3240), 1, + sym_compound_statement, + STATE(3241), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9621), 1, + sym_gnu_asm_expression, + STATE(9622), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [248938] = 9, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [310979] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(7124), 1, - anon_sym_requires, - STATE(5796), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10023), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13509), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [248978] = 7, + STATE(8127), 1, + sym_parameter_list, + STATE(8248), 1, + sym_compound_statement, + STATE(10278), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [311032] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10053), 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(13565), 1, + sym_identifier, + ACTIONS(13567), 1, + sym_primitive_type, + STATE(3403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(3843), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311083] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(13662), 1, + sym_identifier, + ACTIONS(13664), 1, + sym_primitive_type, + STATE(2269), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(2806), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311134] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(13662), 1, + sym_identifier, + ACTIONS(13664), 1, + sym_primitive_type, + STATE(2169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(2806), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311185] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(13666), 1, + sym_identifier, + ACTIONS(13668), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6310), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(7507), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(10623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8579), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10051), 10, + ACTIONS(8581), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [249014] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8296), 1, - anon_sym_STAR, - ACTIONS(8298), 1, - anon_sym_AMP_AMP, - ACTIONS(8300), 1, - anon_sym_AMP, - STATE(3016), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6629), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [249058] = 3, + [311265] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10378), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10376), 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, - [249086] = 3, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(13541), 1, + sym_identifier, + ACTIONS(13543), 1, + sym_primitive_type, + STATE(2162), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(2818), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311316] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10380), 15, - anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13670), 1, + sym_identifier, + ACTIONS(13672), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8584), 1, + sym__scope_resolution, + STATE(5928), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(4782), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311367] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(13541), 1, + sym_identifier, + ACTIONS(13543), 1, + sym_primitive_type, + STATE(1988), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2093), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3269), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311418] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(13583), 1, + sym_primitive_type, + ACTIONS(13674), 1, + sym_identifier, + STATE(3123), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(3054), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12435), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311469] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13676), 1, anon_sym_RPAREN, + ACTIONS(13678), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 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, - [249114] = 9, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8029), 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, + [311512] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(13680), 1, + sym_identifier, + ACTIONS(13682), 1, + sym_primitive_type, + STATE(2250), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2768), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12469), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311563] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(13545), 1, + sym_identifier, + ACTIONS(13547), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3709), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(4593), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311614] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10022), 1, anon_sym_requires, - STATE(5616), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(7917), 1, sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9192), 2, + ACTIONS(7546), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 9, + ACTIONS(7544), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [249154] = 9, + [311655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, + ACTIONS(10022), 1, anon_sym_requires, - STATE(5624), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(7938), 1, sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9434), 2, + ACTIONS(7629), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 9, + ACTIONS(7627), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [249194] = 9, + [311696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(7360), 1, + ACTIONS(10022), 1, anon_sym_requires, - STATE(5626), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(7944), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(9772), 2, + ACTIONS(8087), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 9, + ACTIONS(8089), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [249234] = 9, + [311737] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13475), 1, + anon_sym_LBRACE, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(7360), 1, + STATE(6353), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10390), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [311790] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10022), 1, anon_sym_requires, - STATE(5630), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + STATE(7891), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(10023), 2, + ACTIONS(8541), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249274] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(10286), 1, - anon_sym_TILDE, - ACTIONS(10292), 1, - anon_sym_operator, - ACTIONS(10384), 1, - sym_identifier, - ACTIONS(10386), 1, - anon_sym_COLON_COLON, - ACTIONS(10388), 1, - anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(3452), 1, - sym_pointer_type_declarator, - STATE(3455), 1, - sym_template_function, - STATE(3457), 1, - sym_destructor_name, - STATE(3459), 1, - sym_dependent_identifier, - STATE(3470), 1, - sym_qualified_identifier, - STATE(3476), 1, - sym_operator_name, - STATE(5857), 1, - sym__scope_resolution, - STATE(8955), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [249338] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10390), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [249390] = 5, + aux_sym__function_postfix_repeat1, + STATE(8208), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [311831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10392), 1, - anon_sym_LBRACK_LBRACK, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2039), 3, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(7983), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(8774), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6267), 14, + ACTIONS(8776), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [249422] = 15, + [311864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4565), 1, - anon_sym_RBRACK, - ACTIONS(4567), 1, + ACTIONS(10264), 1, + anon_sym_DASH_GT, + ACTIONS(12170), 1, + anon_sym_requires, + STATE(7926), 1, + sym_trailing_return_type, + ACTIONS(7546), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(12167), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8170), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10395), 1, - sym_identifier, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [249474] = 9, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [311905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9197), 1, + ACTIONS(12790), 1, anon_sym_requires, - STATE(5791), 1, + STATE(7927), 1, sym_trailing_return_type, - ACTIONS(9192), 2, - anon_sym___attribute, + ACTIONS(7629), 2, anon_sym_LBRACK, - ACTIONS(9194), 2, + anon_sym___asm, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 9, + ACTIONS(7627), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [249514] = 9, + [311946] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9439), 1, + ACTIONS(12887), 1, anon_sym_requires, - STATE(5734), 1, + STATE(7928), 1, sym_trailing_return_type, - ACTIONS(9434), 2, - anon_sym___attribute, + ACTIONS(8087), 2, anon_sym_LBRACK, - ACTIONS(9436), 2, + anon_sym___asm, + ACTIONS(12884), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 9, + ACTIONS(8089), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [249554] = 9, + [311987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, + ACTIONS(10264), 1, anon_sym_DASH_GT, - ACTIONS(9777), 1, + ACTIONS(13514), 1, anon_sym_requires, - STATE(5752), 1, + STATE(7931), 1, sym_trailing_return_type, - ACTIONS(9772), 2, - anon_sym___attribute, + ACTIONS(8541), 2, anon_sym_LBRACK, - ACTIONS(9774), 2, + anon_sym___asm, + ACTIONS(13511), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 9, + ACTIONS(8543), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [312028] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13483), 1, + anon_sym_LBRACE, + STATE(5514), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10251), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312081] = 5, + ACTIONS(13535), 1, + anon_sym_LF, + ACTIONS(13684), 1, + anon_sym_LPAREN2, + ACTIONS(13686), 1, + sym_comment, + STATE(8207), 1, + sym_preproc_argument_list, + ACTIONS(13539), 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, + [312114] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13501), 1, + anon_sym_LBRACE, + STATE(5123), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10223), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312167] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(1952), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13688), 1, + anon_sym_SEMI, + ACTIONS(13690), 1, + anon_sym_try, + STATE(745), 1, + sym_compound_statement, + STATE(746), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9732), 1, + sym_gnu_asm_expression, + STATE(9734), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [312228] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13692), 1, + anon_sym_SEMI, + ACTIONS(13694), 1, + anon_sym_LBRACE, + ACTIONS(13696), 1, anon_sym_try, - [249594] = 9, + STATE(413), 1, + sym_compound_statement, + STATE(414), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9905), 1, + sym_gnu_asm_expression, + STATE(9907), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [312289] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(13565), 1, + sym_identifier, + ACTIONS(13567), 1, + sym_primitive_type, + STATE(2838), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(3843), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312340] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10397), 1, + ACTIONS(13698), 1, + anon_sym_RPAREN, + ACTIONS(13700), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6053), 7, + STATE(8027), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -498608,29 +689348,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249634] = 9, + [312383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, - anon_sym_DASH_GT, - ACTIONS(10218), 1, - anon_sym_requires, - STATE(5768), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, + ACTIONS(8551), 3, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, + anon_sym___asm, + ACTIONS(8553), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -498638,25 +689366,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [249674] = 5, + anon_sym_requires, + [312412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9901), 3, + ACTIONS(8555), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9899), 14, + ACTIONS(8557), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, @@ -498664,175 +689397,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [249706] = 3, + [312441] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12808), 1, + anon_sym_COLON_COLON, + ACTIONS(13702), 1, + sym_identifier, + ACTIONS(13704), 1, + sym_primitive_type, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7573), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8089), 1, + sym_splice_specifier, + STATE(8606), 1, + sym__scope_resolution, + STATE(4593), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312492] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, + anon_sym_AMP, + ACTIONS(13706), 1, + anon_sym_SEMI, + STATE(7877), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(10968), 1, + sym_attribute_specifier, + STATE(11372), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8721), 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, + [312545] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13527), 1, + anon_sym_LBRACE, + STATE(3498), 1, + sym_compound_statement, + STATE(8127), 1, + sym_parameter_list, + STATE(10322), 1, + sym_lambda_declarator, + STATE(10515), 1, + sym_trailing_return_type, + STATE(8139), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8343), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9051), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312598] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10401), 5, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(13625), 1, anon_sym_SLASH, + ACTIONS(13627), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13629), 1, + anon_sym_AMP_AMP, + ACTIONS(13631), 1, anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10399), 15, - anon_sym_COMMA, + ACTIONS(13708), 1, anon_sym_RPAREN, + STATE(9984), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13637), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [249734] = 3, + [312653] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(13241), 1, + anon_sym_TILDE, + ACTIONS(13247), 1, + anon_sym_operator, + ACTIONS(13710), 1, + sym_identifier, + ACTIONS(13712), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13717), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5071), 1, + sym_splice_specifier, + STATE(5326), 1, + sym_splice_expression, + STATE(5351), 1, + sym_operator_name, + STATE(8275), 1, + sym__scope_resolution, + STATE(5570), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [312708] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10405), 5, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(13625), 1, anon_sym_SLASH, + ACTIONS(13627), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13629), 1, + anon_sym_AMP_AMP, + ACTIONS(13631), 1, anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10403), 15, - anon_sym_COMMA, + ACTIONS(13719), 1, anon_sym_RPAREN, + STATE(9646), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13637), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [249762] = 9, + [312763] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5587), 1, - sym_trailing_return_type, - ACTIONS(9192), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249802] = 9, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(13577), 1, + sym_identifier, + ACTIONS(13579), 1, + sym_primitive_type, + STATE(1965), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2093), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3169), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(9805), 1, - anon_sym_requires, - STATE(5607), 1, - sym_trailing_return_type, - ACTIONS(9772), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249842] = 9, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(13583), 1, + sym_primitive_type, + ACTIONS(13674), 1, + sym_identifier, + STATE(2634), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(3054), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(1882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312865] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, - anon_sym_DASH_GT, - ACTIONS(10028), 1, - anon_sym_requires, - STATE(5618), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249882] = 9, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(13680), 1, + sym_identifier, + ACTIONS(13682), 1, + sym_primitive_type, + STATE(2119), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(2768), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3193), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312916] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(13541), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13543), 1, + sym_primitive_type, + STATE(2113), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(2093), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12485), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312967] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13721), 1, + sym_identifier, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10407), 1, + ACTIONS(13731), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5952), 7, + STATE(8228), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -498840,30 +689809,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249922] = 9, + [313007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10409), 1, + ACTIONS(13735), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5975), 7, + STATE(8138), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -498871,30 +689840,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249962] = 9, + [313047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10411), 1, + ACTIONS(13737), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5967), 7, + STATE(8117), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -498902,56 +689871,102 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250002] = 4, + [313087] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10413), 2, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6247), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6249), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8800), 1, + sym__type_declarator, + STATE(9241), 1, + sym__type_definition_declarators, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [313137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_or, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [250032] = 9, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8800), 1, + sym__type_declarator, + STATE(9221), 1, + sym__type_definition_declarators, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [313187] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10415), 1, + ACTIONS(13739), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6023), 7, + STATE(8222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -498959,221 +689974,165 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250072] = 21, + [313227] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(10286), 1, - anon_sym_TILDE, - ACTIONS(10292), 1, - anon_sym_operator, - ACTIONS(10417), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10419), 1, - anon_sym_COLON_COLON, - ACTIONS(10421), 1, - anon_sym_template, - STATE(1843), 1, - sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(3452), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(3455), 1, - sym_template_function, - STATE(3457), 1, - sym_destructor_name, - STATE(3459), 1, - sym_dependent_identifier, - STATE(3470), 1, - sym_qualified_identifier, - STATE(3476), 1, - sym_operator_name, - STATE(5877), 1, - sym__scope_resolution, - STATE(8955), 1, + STATE(8800), 1, + sym__type_declarator, + STATE(9278), 1, + sym__type_definition_declarators, + STATE(10974), 1, sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [250136] = 15, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [313277] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10423), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250188] = 15, + ACTIONS(13723), 1, + anon_sym_LPAREN2, + ACTIONS(13725), 1, + anon_sym_defined, + ACTIONS(13741), 1, + sym_number_literal, + ACTIONS(13727), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13729), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13733), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8223), 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, + [313317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10425), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250240] = 15, + ACTIONS(13723), 1, + anon_sym_LPAREN2, + ACTIONS(13725), 1, + anon_sym_defined, + ACTIONS(13743), 1, + sym_number_literal, + ACTIONS(13727), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13729), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13733), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8224), 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, + [313357] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13191), 1, + anon_sym_TILDE, + ACTIONS(13197), 1, + anon_sym_operator, + ACTIONS(13745), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, + ACTIONS(13747), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10427), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250292] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(13749), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10429), 1, - anon_sym_RBRACK, - STATE(6056), 1, + STATE(3608), 1, + sym_splice_specifier, + STATE(3673), 1, + sym_splice_expression, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3722), 1, + sym_operator_name, + STATE(8289), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(3770), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250344] = 9, + sym_splice_type_specifier, + [313409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10431), 1, + ACTIONS(13751), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6024), 7, + STATE(8225), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499181,67 +690140,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250384] = 15, + [313449] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4565), 1, - anon_sym_RBRACK, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250436] = 9, + ACTIONS(13723), 1, + anon_sym_LPAREN2, + ACTIONS(13725), 1, + anon_sym_defined, + ACTIONS(13753), 1, + sym_number_literal, + ACTIONS(13727), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13729), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13733), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8226), 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, + [313489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10433), 1, + ACTIONS(13755), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5957), 7, + STATE(8227), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499249,101 +690202,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250476] = 12, + [313529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, - anon_sym_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(13759), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8394), 1, - anon_sym___attribute, - STATE(3311), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6661), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 6, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13757), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [250522] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10435), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250574] = 9, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [313557] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10437), 1, + ACTIONS(13761), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5976), 7, + STATE(8066), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499351,57 +690258,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10413), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10439), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6199), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6201), 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_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [250646] = 9, + [313597] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10441), 1, + ACTIONS(13763), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5970), 7, + STATE(8215), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499409,30 +690289,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250686] = 9, + [313637] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10443), 1, + ACTIONS(13765), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6005), 7, + STATE(8229), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499440,67 +690320,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250726] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10445), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250778] = 9, + [313677] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10447), 1, + ACTIONS(13767), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5960), 7, + STATE(8231), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499508,30 +690351,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250818] = 9, + [313717] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10449), 1, + ACTIONS(13769), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6058), 7, + STATE(8217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499539,89 +690382,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250858] = 14, + [313757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6645), 1, - sym__type_declarator, - STATE(7121), 1, - sym__type_definition_declarators, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [250908] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10451), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [250960] = 3, + ACTIONS(13725), 1, + anon_sym_defined, + ACTIONS(13771), 1, + sym_number_literal, + ACTIONS(13727), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13729), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13733), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8232), 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, + [313797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10455), 5, + ACTIONS(13775), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10453), 15, + ACTIONS(13773), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -499637,165 +690438,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [250988] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6645), 1, - sym__type_declarator, - STATE(7111), 1, - sym__type_definition_declarators, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [251038] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10457), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [251090] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(5748), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9192), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251130] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10459), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5806), 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, - [251170] = 9, + [313825] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10461), 1, + ACTIONS(13777), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5807), 7, + STATE(8068), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499803,32 +690469,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251210] = 11, + [313865] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(8282), 1, + ACTIONS(11474), 1, anon_sym_STAR, - ACTIONS(8284), 1, + ACTIONS(11476), 1, anon_sym_AMP_AMP, - ACTIONS(8286), 1, + ACTIONS(11478), 1, anon_sym_AMP, - STATE(3020), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6737), 1, + STATE(8749), 1, sym__abstract_declarator, - STATE(6295), 5, + STATE(8389), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8392), 7, + ACTIONS(9072), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -499836,30 +690502,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [251254] = 9, + [313909] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(9074), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11480), 1, + anon_sym_STAR, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_AMP, + STATE(5221), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8792), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [313955] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10463), 1, + ACTIONS(13779), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6022), 7, + STATE(8132), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499867,30 +690567,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251294] = 9, + [313995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13783), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13781), 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, + [314023] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10465), 1, + ACTIONS(13785), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6036), 7, + STATE(8069), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499898,61 +690623,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251334] = 9, + [314063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(5731), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9434), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 9, + ACTIONS(13789), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13787), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251374] = 9, + 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, + [314091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10467), 1, + ACTIONS(13791), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5810), 7, + STATE(8233), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -499960,61 +690679,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251414] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(5771), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9772), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251454] = 9, + [314131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10469), 1, + ACTIONS(13793), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5812), 7, + STATE(8221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -500022,185 +690710,113 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251494] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - STATE(5796), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10023), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251534] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9197), 1, - anon_sym_requires, - STATE(5791), 1, - sym_trailing_return_type, - ACTIONS(9192), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251574] = 9, + [314171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - ACTIONS(9434), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 9, + ACTIONS(13797), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13795), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251614] = 9, + 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, + [314199] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(9777), 1, - anon_sym_requires, - STATE(5752), 1, - sym_trailing_return_type, - ACTIONS(9772), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 9, - anon_sym_COMMA, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251654] = 9, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13799), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8071), 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, + [314239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_DASH_GT, - ACTIONS(10218), 1, - anon_sym_requires, - STATE(5768), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 9, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13803), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13801), 13, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [251694] = 9, + 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, + [314271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10471), 1, + ACTIONS(13805), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5819), 7, + STATE(8077), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -500208,30 +690824,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251734] = 9, + [314311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13803), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13801), 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, + [314339] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13629), 1, + anon_sym_AMP_AMP, + ACTIONS(13631), 1, + anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, + anon_sym_AMP, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13801), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [314387] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10473), 1, + ACTIONS(13807), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5834), 7, + STATE(8134), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -500239,203 +690915,274 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251774] = 5, + [314427] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9905), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9903), 14, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13631), 1, + anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, + anon_sym_AMP, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13801), 4, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [251806] = 15, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [314473] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10270), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(10272), 1, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10475), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [251858] = 14, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8800), 1, + sym__type_declarator, + STATE(9148), 1, + sym__type_definition_declarators, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314523] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7139), 1, + STATE(9164), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [251908] = 14, + [314573] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7079), 1, + STATE(9206), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [251958] = 15, + [314623] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13255), 1, + anon_sym_TILDE, + ACTIONS(13261), 1, + anon_sym_operator, + ACTIONS(13809), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, + ACTIONS(13811), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10477), 1, - anon_sym_RBRACK, - STATE(6056), 1, + ACTIONS(13813), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5248), 1, + sym_splice_specifier, + STATE(5554), 1, + sym_splice_expression, + STATE(5555), 1, + sym_operator_name, + STATE(8301), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(5713), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [252010] = 9, + sym_splice_type_specifier, + [314675] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13815), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8079), 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, + [314715] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, + anon_sym_AMP, + ACTIONS(13803), 1, + anon_sym_PIPE, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13801), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [314761] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10479), 1, + ACTIONS(13817), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6020), 7, + STATE(8187), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -500443,125 +691190,259 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252050] = 14, + [314801] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13635), 1, + anon_sym_AMP, + ACTIONS(13803), 1, + anon_sym_PIPE, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13801), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [314845] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7070), 1, + STATE(9223), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252100] = 14, + [314895] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13277), 1, + anon_sym_TILDE, + ACTIONS(13283), 1, + anon_sym_operator, + ACTIONS(13819), 1, + sym_identifier, + ACTIONS(13821), 1, + anon_sym_COLON_COLON, + ACTIONS(13823), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5227), 1, + sym_splice_specifier, + STATE(5447), 1, + sym_splice_expression, + STATE(5451), 1, + sym_operator_name, + STATE(8285), 1, + sym__scope_resolution, + STATE(5648), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [314947] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13803), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13801), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [314989] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7124), 1, + STATE(9201), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252150] = 9, + [315039] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, - sym_identifier, - ACTIONS(10324), 1, - anon_sym_LPAREN2, - ACTIONS(10326), 1, - anon_sym_defined, - ACTIONS(10481), 1, - sym_number_literal, - ACTIONS(10328), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6052), 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, - [252190] = 3, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13803), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(13801), 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, + [315079] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 5, + ACTIONS(13625), 1, anon_sym_SLASH, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13803), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7039), 15, + ACTIONS(13801), 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, + [315115] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13803), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13801), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -500571,116 +691452,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [252218] = 21, + [315149] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(10483), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10485), 1, - anon_sym_TILDE, - ACTIONS(10487), 1, - anon_sym_COLON_COLON, - ACTIONS(10489), 1, - anon_sym_template, - ACTIONS(10491), 1, - anon_sym_operator, - STATE(1843), 1, - sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(3216), 1, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(3217), 1, - sym_template_function, - STATE(3219), 1, - sym_destructor_name, - STATE(3224), 1, - sym_dependent_identifier, - STATE(3226), 1, - sym_qualified_identifier, - STATE(3229), 1, - sym_operator_name, - STATE(5926), 1, - sym__scope_resolution, - STATE(8955), 1, + STATE(8800), 1, + sym__type_declarator, + STATE(9244), 1, + sym__type_definition_declarators, + STATE(10974), 1, sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [252282] = 21, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315199] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8346), 1, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(10308), 1, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8800), 1, + sym__type_declarator, + STATE(9265), 1, + sym__type_definition_declarators, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6751), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [315281] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(13241), 1, anon_sym_TILDE, - ACTIONS(10314), 1, + ACTIONS(13247), 1, anon_sym_operator, - ACTIONS(10493), 1, + ACTIONS(13710), 1, sym_identifier, - ACTIONS(10495), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(10497), 1, + ACTIONS(13717), 1, anon_sym_template, - STATE(1843), 1, - sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(2528), 1, - sym_pointer_type_declarator, - STATE(2529), 1, - sym_template_function, - STATE(2530), 1, - sym_destructor_name, - STATE(2532), 1, - sym_dependent_identifier, - STATE(2534), 1, - sym_qualified_identifier, - STATE(2538), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5071), 1, + sym_splice_specifier, + STATE(5326), 1, + sym_splice_expression, + STATE(5351), 1, sym_operator_name, - STATE(5927), 1, + STATE(8275), 1, sym__scope_resolution, - STATE(8231), 1, - sym_ms_based_modifier, - STATE(9058), 1, + STATE(5570), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, sym_decltype, - [252346] = 9, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [315333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10206), 1, + ACTIONS(13599), 1, anon_sym_LPAREN2, - ACTIONS(10208), 1, + ACTIONS(13601), 1, anon_sym_defined, - ACTIONS(10499), 1, + ACTIONS(13825), 1, sym_number_literal, - ACTIONS(10210), 2, + ACTIONS(13603), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10212), 2, + ACTIONS(13605), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10216), 5, + ACTIONS(13609), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5826), 7, + STATE(8084), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -500688,448 +691619,450 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252386] = 14, + [315373] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7135), 1, + STATE(9156), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - sym_reference_type_declarator, - [252436] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10501), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [252488] = 14, + sym_reference_type_declarator, + [315423] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7085), 1, + STATE(9189), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252538] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10503), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [252590] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - sym_identifier, - ACTIONS(10206), 1, - anon_sym_LPAREN2, - ACTIONS(10208), 1, - anon_sym_defined, - ACTIONS(10505), 1, - sym_number_literal, - ACTIONS(10210), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10212), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10216), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5830), 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, - [252630] = 3, + [315473] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10509), 5, + ACTIONS(13625), 1, anon_sym_SLASH, + ACTIONS(13627), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13629), 1, + anon_sym_AMP_AMP, + ACTIONS(13631), 1, anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10507), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13637), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [252658] = 14, + ACTIONS(13827), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [315523] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7084), 1, + STATE(9169), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252708] = 14, + [315573] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7108), 1, + STATE(9251), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252758] = 14, + [315623] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7115), 1, + STATE(9243), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252808] = 14, + [315673] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7145), 1, + STATE(9276), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252858] = 14, + [315723] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13829), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8085), 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, + [315763] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7095), 1, + STATE(9219), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252908] = 14, + [315813] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13831), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8086), 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, + [315853] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(8800), 1, sym__type_declarator, - STATE(7131), 1, + STATE(9252), 1, sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [252958] = 9, + [315903] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(9074), 1, + anon_sym___attribute, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11461), 1, + anon_sym_STAR, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_AMP, + STATE(5216), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8767), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [315949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10511), 1, + ACTIONS(13833), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5974), 7, + STATE(8194), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501137,129 +692070,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10515), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10513), 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, - [253026] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10517), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253078] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10519), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253130] = 9, + [315989] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10521), 1, + ACTIONS(13835), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5993), 7, + STATE(8130), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501267,110 +692101,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253170] = 21, + [316029] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8346), 1, - anon_sym_STAR, - ACTIONS(10308), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13191), 1, anon_sym_TILDE, - ACTIONS(10314), 1, + ACTIONS(13197), 1, anon_sym_operator, - ACTIONS(10523), 1, + ACTIONS(13745), 1, sym_identifier, - ACTIONS(10525), 1, + ACTIONS(13837), 1, anon_sym_COLON_COLON, - ACTIONS(10527), 1, + ACTIONS(13839), 1, anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2528), 1, - sym_pointer_type_declarator, - STATE(2529), 1, - sym_template_function, - STATE(2530), 1, - sym_destructor_name, - STATE(2532), 1, - sym_dependent_identifier, - STATE(2534), 1, - sym_qualified_identifier, - STATE(2538), 1, + STATE(3608), 1, + sym_splice_specifier, + STATE(3673), 1, + sym_splice_expression, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5587), 1, sym_operator_name, - STATE(5946), 1, - sym__scope_resolution, - STATE(8231), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [253234] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10529), 1, - anon_sym_RBRACK, - STATE(6056), 1, + STATE(8288), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, + STATE(3770), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253286] = 9, + sym_splice_type_specifier, + [316081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10531), 1, + ACTIONS(13841), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6060), 7, + STATE(8145), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501378,30 +692169,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253326] = 9, + [316121] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10533), 1, + ACTIONS(13843), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6033), 7, + STATE(8204), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501409,30 +692200,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253366] = 9, + [316161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10535), 1, + ACTIONS(13845), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6026), 7, + STATE(8188), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501440,137 +692231,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253406] = 21, + [316201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5056), 1, - anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10537), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10539), 1, - anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5951), 1, - sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 1, - sym_decltype, - [253470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10282), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10280), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13723), 1, + anon_sym_LPAREN2, + ACTIONS(13725), 1, + anon_sym_defined, + ACTIONS(13847), 1, + sym_number_literal, + ACTIONS(13727), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13729), 2, 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, - [253502] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10541), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253554] = 9, + ACTIONS(13733), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8179), 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, + [316241] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10543), 1, + ACTIONS(13849), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6050), 7, + STATE(8185), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501578,30 +692293,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253594] = 9, + [316281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10545), 1, + ACTIONS(13851), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5973), 7, + STATE(8196), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501609,30 +692324,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253634] = 9, + [316321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(13721), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(13723), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, + ACTIONS(13725), 1, anon_sym_defined, - ACTIONS(10547), 1, + ACTIONS(13853), 1, sym_number_literal, - ACTIONS(10328), 2, + ACTIONS(13727), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10330), 2, + ACTIONS(13729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10334), 5, + ACTIONS(13733), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5995), 7, + STATE(8241), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -501640,16 +692355,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253674] = 3, + [316361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10282), 5, + ACTIONS(13857), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10280), 15, + ACTIONS(13855), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -501665,633 +692380,989 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [253702] = 15, + [316389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, + ACTIONS(13861), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10549), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253754] = 15, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13859), 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, + [316417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(13595), 1, sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10272), 1, - anon_sym_AMP, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10551), 1, - anon_sym_RBRACK, - STATE(6056), 1, - sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [253806] = 13, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13863), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8094), 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, + [316457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, + ACTIONS(13867), 5, anon_sym_SLASH, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, anon_sym_AMP, - ACTIONS(10131), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13865), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10133), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10149), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [316485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10249), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10151), 2, + ACTIONS(10247), 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, - ACTIONS(10153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10280), 3, + [316513] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13595), 1, + sym_identifier, + ACTIONS(13599), 1, + anon_sym_LPAREN2, + ACTIONS(13601), 1, + anon_sym_defined, + ACTIONS(13869), 1, + sym_number_literal, + ACTIONS(13603), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13605), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13609), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8082), 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, + [316553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9093), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9095), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [253854] = 21, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [316580] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(10485), 1, - anon_sym_TILDE, - ACTIONS(10491), 1, - anon_sym_operator, - ACTIONS(10553), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12766), 1, sym_identifier, - ACTIONS(10555), 1, + ACTIONS(12768), 1, anon_sym_COLON_COLON, - ACTIONS(10557), 1, - anon_sym_template, - STATE(1890), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(9213), 1, + sym_enumerator_list, + ACTIONS(13871), 2, + anon_sym_class, + anon_sym_struct, + STATE(3712), 2, sym_template_type, - STATE(1893), 1, + sym_splice_type_specifier, + STATE(8863), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(1895), 1, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(3216), 1, - sym_pointer_type_declarator, - STATE(3217), 1, - sym_template_function, - STATE(3219), 1, - sym_destructor_name, - STATE(3224), 1, - sym_dependent_identifier, - STATE(3226), 1, - sym_qualified_identifier, - STATE(3229), 1, - sym_operator_name, - STATE(5961), 1, + sym_splice_expression, + [316631] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(12770), 1, + sym_identifier, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7463), 1, + sym_enumerator_list, + STATE(8612), 1, sym__scope_resolution, - STATE(8955), 1, - sym_ms_based_modifier, - STATE(9058), 1, + ACTIONS(13873), 2, + anon_sym_class, + anon_sym_struct, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7267), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, sym_decltype, - [253918] = 21, + sym_dependent_type_identifier, + sym_splice_expression, + [316682] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8370), 1, - anon_sym_STAR, - ACTIONS(10296), 1, - anon_sym_TILDE, - ACTIONS(10302), 1, - anon_sym_operator, - ACTIONS(10559), 1, - sym_identifier, - ACTIONS(10561), 1, - anon_sym_COLON_COLON, - ACTIONS(10563), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - STATE(2555), 1, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2643), 1, + sym_enumerator_list, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(13875), 2, + anon_sym_class, + anon_sym_struct, + STATE(2598), 2, sym_template_type, - STATE(2557), 1, - sym_dependent_type_identifier, - STATE(2641), 1, + sym_splice_type_specifier, + STATE(4413), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3646), 1, - sym_pointer_type_declarator, - STATE(3656), 1, - sym_template_function, - STATE(3657), 1, - sym_destructor_name, - STATE(3658), 1, - sym_dependent_identifier, - STATE(3660), 1, - sym_qualified_identifier, - STATE(3662), 1, - sym_operator_name, - STATE(5962), 1, - sym__scope_resolution, - STATE(8333), 1, - sym_ms_based_modifier, - STATE(9058), 1, + STATE(10976), 3, sym_decltype, - [253982] = 15, + sym_dependent_type_identifier, + sym_splice_expression, + [316733] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13877), 1, + anon_sym_LBRACE, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + STATE(9873), 1, + sym_trailing_return_type, + STATE(10694), 1, + sym_requires_clause, + STATE(8728), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(8885), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8887), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [316780] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3818), 1, + sym_enumerator_list, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(13883), 2, + anon_sym_class, + anon_sym_struct, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5917), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [316831] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(7992), 1, + anon_sym_LBRACE, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, sym_identifier, - ACTIONS(10270), 1, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2594), 1, + sym_enumerator_list, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(13885), 2, + anon_sym_class, + anon_sym_struct, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4278), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [316882] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(13887), 1, + anon_sym_LBRACE, + STATE(9815), 1, + sym_trailing_return_type, + STATE(10488), 1, + sym_requires_clause, + STATE(8186), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(8901), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8895), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [316929] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13773), 1, + anon_sym_LF, + ACTIONS(13775), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10272), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(10274), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [316956] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10565), 1, - anon_sym_RBRACK, - STATE(6056), 1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12804), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4533), 1, + sym_enumerator_list, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, + ACTIONS(13889), 2, + anon_sym_class, + anon_sym_struct, + STATE(3712), 2, sym_template_type, + sym_splice_type_specifier, + STATE(5384), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [254034] = 15, + sym_splice_expression, + [317007] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13891), 1, + anon_sym_LF, + ACTIONS(13897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, + anon_sym_AMP_AMP, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [317052] = 3, + ACTIONS(10247), 1, + anon_sym_LF, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(10249), 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, + [317079] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_EQ, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13627), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13629), 1, + anon_sym_AMP_AMP, + ACTIONS(13631), 1, + anon_sym_PIPE, + ACTIONS(13633), 1, + anon_sym_CARET, + ACTIONS(13635), 1, + anon_sym_AMP, + ACTIONS(13913), 1, + anon_sym_RPAREN, + ACTIONS(13621), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13623), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [317128] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13859), 1, + anon_sym_LF, + ACTIONS(13861), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10272), 1, + 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, + [317155] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13865), 1, + anon_sym_LF, + ACTIONS(13867), 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, - ACTIONS(10274), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [317182] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + ACTIONS(12740), 1, anon_sym_COLON_COLON, - ACTIONS(10278), 1, - sym_this, - ACTIONS(10567), 1, - anon_sym_RBRACK, - STATE(6056), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4533), 1, + sym_enumerator_list, + STATE(8614), 1, sym__scope_resolution, - STATE(8098), 1, - sym_lambda_default_capture, - STATE(9058), 3, - sym_decltype, + ACTIONS(13915), 2, + anon_sym_class, + anon_sym_struct, + STATE(3712), 2, sym_template_type, + sym_splice_type_specifier, + STATE(6300), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(7726), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [254086] = 9, + sym_splice_expression, + [317233] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10324), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(10326), 1, - anon_sym_defined, - ACTIONS(10569), 1, - sym_number_literal, - ACTIONS(10328), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10330), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10334), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(5998), 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, - [254126] = 14, + ACTIONS(11508), 1, + sym_primitive_type, + ACTIONS(11564), 1, + anon_sym_STAR, + ACTIONS(11566), 1, + anon_sym_AMP_AMP, + ACTIONS(11568), 1, + anon_sym_AMP, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__type_declarator, + STATE(10884), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317280] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6645), 1, + STATE(9001), 1, sym__type_declarator, - STATE(7107), 1, - sym__type_definition_declarators, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [254176] = 12, - ACTIONS(10266), 1, + [317327] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(10571), 1, - anon_sym_LF, - ACTIONS(10577), 1, + ACTIONS(13625), 1, + anon_sym_SLASH, + ACTIONS(13627), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13629), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13631), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13633), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13635), 1, anon_sym_AMP, - ACTIONS(10573), 2, + ACTIONS(13917), 1, + anon_sym_RPAREN, + ACTIONS(13621), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13623), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13637), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13639), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [254221] = 3, + ACTIONS(13643), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [317376] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10595), 3, - anon_sym___attribute, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13919), 1, + anon_sym_LBRACE, + STATE(8197), 1, + sym_parameter_list, + STATE(10537), 1, + sym_trailing_return_type, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8370), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9133), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [317423] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13921), 1, anon_sym_LBRACK, + STATE(8413), 1, + sym_parameter_list, + ACTIONS(9127), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(10593), 16, + STATE(8257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9129), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [254248] = 18, + [317460] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(5703), 1, - anon_sym_COLON_COLON, - ACTIONS(8396), 1, - anon_sym_STAR, - ACTIONS(10597), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(10599), 1, - anon_sym_template, - STATE(5969), 1, - sym__scope_resolution, - STATE(6284), 1, - sym_pointer_type_declarator, - STATE(6285), 1, - sym_template_function, - STATE(6286), 1, - sym_destructor_name, - STATE(6287), 1, - sym_dependent_identifier, - STATE(6288), 1, - sym_qualified_identifier, - STATE(6289), 1, - sym_operator_name, - STATE(8718), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [254305] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10280), 1, - anon_sym_LF, - ACTIONS(10575), 3, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10282), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11502), 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, - [254334] = 13, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8302), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317507] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11570), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11572), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, + ACTIONS(11574), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11576), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11578), 1, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6945), 1, + ACTIONS(11582), 1, + sym_primitive_type, + STATE(4627), 1, sym__type_declarator, - STATE(8595), 1, + STATE(5362), 1, + sym_pointer_type_declarator, + STATE(11462), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11580), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(5356), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [254381] = 3, - ACTIONS(10266), 1, + [317554] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(10376), 1, - anon_sym_LF, - ACTIONS(10378), 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, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [254408] = 12, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10577), 1, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(6208), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10601), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [254453] = 12, - ACTIONS(10266), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [317585] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10577), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(11502), 1, anon_sym_AMP, - ACTIONS(10603), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [254498] = 12, - ACTIONS(10266), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(8978), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317632] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10605), 1, + ACTIONS(13923), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [254543] = 5, - ACTIONS(10266), 1, + [317677] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13795), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13797), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10282), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -502305,538 +693376,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [254574] = 13, + [317704] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6770), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [254621] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10137), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10607), 1, - anon_sym_RPAREN, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [254670] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10609), 1, - sym_identifier, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(10613), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5979), 1, - sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [254727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9192), 3, - anon_sym___attribute, + ACTIONS(13921), 1, anon_sym_LBRACK, + STATE(8413), 1, + sym_parameter_list, + ACTIONS(8923), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9181), 16, + STATE(8257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8925), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [254754] = 9, + [317741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(5844), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9192), 2, + ACTIONS(9097), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 8, + ACTIONS(9099), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [254793] = 9, + anon_sym_requires, + [317768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(5846), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9434), 2, + ACTIONS(9101), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 8, + ACTIONS(9103), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [254832] = 9, + anon_sym_requires, + [317795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(5847), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9772), 2, + ACTIONS(9109), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 8, + ACTIONS(9111), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [254871] = 9, + anon_sym_requires, + [317822] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - STATE(5849), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10023), 2, - anon_sym_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8521), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9996), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [317871] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 8, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, anon_sym_COMMA, + ACTIONS(13551), 1, anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13925), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(13927), 1, + anon_sym_COLON, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9715), 1, + sym_gnu_asm_expression, + STATE(9716), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [254910] = 3, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [317926] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 3, - anon_sym___attribute, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8488), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9346), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [317975] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4281), 1, + sym_enumerator_list, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + ACTIONS(13929), 2, + anon_sym_class, + anon_sym_struct, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7465), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318026] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13921), 1, anon_sym_LBRACK, + STATE(8413), 1, + sym_parameter_list, + ACTIONS(9033), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9423), 16, + STATE(8257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9035), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [254937] = 6, + [318063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(4940), 4, + ACTIONS(9037), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4933), 12, + ACTIONS(9039), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [254970] = 13, + anon_sym_requires, + [318090] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11530), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11532), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, + ACTIONS(11534), 1, + anon_sym_STAR, + ACTIONS(11536), 1, + anon_sym_AMP_AMP, + ACTIONS(11538), 1, + anon_sym_AMP, + ACTIONS(11542), 1, sym_primitive_type, - ACTIONS(8334), 1, + STATE(4747), 1, + sym__type_declarator, + STATE(5607), 1, + sym_pointer_type_declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(11540), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5533), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [318137] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8336), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8338), 1, + ACTIONS(11502), 1, anon_sym_AMP, - STATE(1911), 1, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6991), 1, + STATE(8847), 1, sym__type_declarator, - STATE(8595), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [255017] = 9, + [318184] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - ACTIONS(9192), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4533), 1, + sym_enumerator_list, + STATE(8638), 1, + sym__scope_resolution, + ACTIONS(13931), 2, + anon_sym_class, + anon_sym_struct, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4501), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 8, + ACTIONS(7544), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [255056] = 9, + anon_sym_requires, + [318262] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13757), 1, + anon_sym_LF, + ACTIONS(13759), 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, + [318289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - ACTIONS(9434), 2, + ACTIONS(8999), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 8, + ACTIONS(9001), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [255095] = 9, + anon_sym_requires, + [318316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_requires, - STATE(5824), 1, - sym_trailing_return_type, - ACTIONS(9772), 2, + ACTIONS(9003), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 8, + ACTIONS(9005), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [255134] = 9, + anon_sym_requires, + [318343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, - anon_sym_DASH_GT, - ACTIONS(10336), 1, - anon_sym_requires, - STATE(5825), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, + ACTIONS(9011), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 8, + ACTIONS(9013), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [255173] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8352), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_LPAREN2, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(8358), 1, - anon_sym_AMP_AMP, - ACTIONS(8360), 1, - anon_sym_AMP, - ACTIONS(8364), 1, - sym_primitive_type, - STATE(6261), 1, - sym_pointer_type_declarator, - STATE(6467), 1, - sym__type_declarator, - STATE(8351), 1, - sym_ms_based_modifier, - ACTIONS(8362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6212), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [255220] = 12, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10577), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, - anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10615), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [255265] = 3, + anon_sym_requires, + [318370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10619), 3, + ACTIONS(9015), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10617), 16, + ACTIONS(9017), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -502853,219 +693922,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255292] = 12, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10577), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, - anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10621), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [255337] = 3, + [318397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10625), 3, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(8362), 1, + sym_template_argument_list, + ACTIONS(6210), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10623), 16, + ACTIONS(6203), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [255364] = 18, + [318430] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7316), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10627), 1, + ACTIONS(12736), 1, sym_identifier, - ACTIONS(10629), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(5997), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(3832), 1, + sym_enumerator_list, + STATE(8621), 1, sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, + ACTIONS(13933), 2, + anon_sym_class, + anon_sym_struct, + STATE(2874), 2, sym_template_type, + sym_splice_type_specifier, + STATE(6025), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - [255421] = 6, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10280), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10282), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [255454] = 13, + sym_splice_expression, + [318481] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6986), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [255501] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10507), 1, - anon_sym_LF, - ACTIONS(10509), 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, - [255528] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10380), 1, - anon_sym_LF, - ACTIONS(10382), 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, - [255555] = 3, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7602), 1, + sym_enumerator_list, + STATE(8564), 1, + sym__scope_resolution, + ACTIONS(13935), 2, + anon_sym_class, + anon_sym_struct, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7482), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10633), 3, + ACTIONS(9029), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10631), 16, + ACTIONS(9031), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503082,52 +694045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255582] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10635), 1, - anon_sym_SEMI, - ACTIONS(10637), 1, - anon_sym_COLON, - STATE(2921), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7381), 1, - sym_gnu_asm_expression, - STATE(7382), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [255637] = 3, + [318559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 3, + ACTIONS(7629), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10021), 16, + ACTIONS(7627), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503144,47 +694069,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255664] = 12, - ACTIONS(10266), 1, + [318586] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(10280), 1, - anon_sym_LF, - ACTIONS(10282), 1, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11544), 1, + anon_sym_STAR, + ACTIONS(11546), 1, + anon_sym_AMP_AMP, + ACTIONS(11548), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8855), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9072), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [318629] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(7992), 1, + anon_sym_LBRACE, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2594), 1, + sym_enumerator_list, + STATE(8639), 1, + sym__scope_resolution, + ACTIONS(13937), 2, + anon_sym_class, + anon_sym_struct, + STATE(2400), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318680] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2042), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(13939), 2, + anon_sym_class, + anon_sym_struct, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(2254), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318731] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2922), 1, + sym_enumerator_list, + STATE(8588), 1, + sym__scope_resolution, + ACTIONS(13941), 2, + anon_sym_class, + anon_sym_struct, + STATE(2606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318782] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_COLON_COLON, + ACTIONS(12760), 1, + sym_identifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(4276), 1, + sym_enumerator_list, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(13943), 2, + anon_sym_class, + anon_sym_struct, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4020), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318833] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2642), 1, + sym_enumerator_list, + STATE(8604), 1, + sym__scope_resolution, + ACTIONS(13945), 2, + anon_sym_class, + anon_sym_struct, + STATE(2467), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2643), 1, + sym_enumerator_list, + STATE(8624), 1, + sym__scope_resolution, + ACTIONS(13947), 2, + anon_sym_class, + anon_sym_struct, + STATE(2469), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318935] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3818), 1, + sym_enumerator_list, + STATE(8631), 1, + sym__scope_resolution, + ACTIONS(13949), 2, + anon_sym_class, + anon_sym_struct, + STATE(3529), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318986] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10573), 2, + ACTIONS(13951), 1, + anon_sym_LF, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [255709] = 3, + [319031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10641), 3, + ACTIONS(8955), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10639), 16, + ACTIONS(8957), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503201,14 +694410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255736] = 3, + [319058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10645), 3, + ACTIONS(9007), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10643), 16, + ACTIONS(9009), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503225,266 +694434,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255763] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10403), 1, - anon_sym_LF, - ACTIONS(10405), 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, - [255790] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10453), 1, - anon_sym_LF, - ACTIONS(10455), 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, - [255817] = 13, + [319085] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8352), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8354), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8364), 1, + ACTIONS(11508), 1, sym_primitive_type, - ACTIONS(8396), 1, + ACTIONS(11524), 1, anon_sym_STAR, - ACTIONS(8398), 1, + ACTIONS(11526), 1, anon_sym_AMP_AMP, - ACTIONS(8400), 1, + ACTIONS(11528), 1, anon_sym_AMP, - STATE(6116), 1, - sym__type_declarator, - STATE(6261), 1, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(8718), 1, + STATE(4668), 1, + sym__type_declarator, + STATE(11121), 1, sym_ms_based_modifier, - ACTIONS(8362), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6212), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [255864] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10256), 1, - sym_identifier, - ACTIONS(10258), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(6011), 1, - sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [255921] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(10647), 1, - anon_sym_LBRACE, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - STATE(7747), 1, - sym_trailing_return_type, - STATE(8849), 1, - sym_requires_clause, - STATE(6048), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6905), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [255968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10655), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10653), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [255995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10657), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6374), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6376), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [256024] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10399), 1, - anon_sym_LF, - ACTIONS(10401), 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, - [256051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9761), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256078] = 3, + [319132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10661), 3, + ACTIONS(8992), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10659), 16, + ACTIONS(8994), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503501,451 +694492,720 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10663), 1, - anon_sym_LBRACK_LBRACK, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2039), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6267), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_using, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [256136] = 13, + [319159] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8308), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8310), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8312), 1, + ACTIONS(11502), 1, anon_sym_AMP, - ACTIONS(8318), 1, + ACTIONS(11508), 1, sym_primitive_type, - STATE(1911), 1, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(6958), 1, + STATE(9002), 1, sym__type_declarator, - STATE(8769), 1, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [256183] = 8, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10280), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10282), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [256220] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10513), 1, - anon_sym_LF, - ACTIONS(10515), 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, - [256247] = 12, - ACTIONS(10266), 1, + [319206] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10666), 1, + ACTIONS(13953), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256292] = 12, - ACTIONS(10266), 1, + [319251] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(13955), 1, + anon_sym_LBRACE, + STATE(9570), 1, + sym_trailing_return_type, + STATE(11423), 1, + sym_requires_clause, + STATE(8728), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(8902), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8908), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [319298] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10668), 1, + ACTIONS(13957), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256337] = 12, - ACTIONS(10266), 1, + [319343] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10670), 1, + ACTIONS(13959), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256382] = 18, + [319388] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7286), 1, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(8356), 1, - anon_sym_STAR, - ACTIONS(10597), 1, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4281), 1, + sym_enumerator_list, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(13961), 2, + anon_sym_class, + anon_sym_struct, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6226), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319439] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13921), 1, + anon_sym_LBRACK, + STATE(8413), 1, + sym_parameter_list, + ACTIONS(8947), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8949), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [319476] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(10599), 1, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8541), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9431), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319525] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, anon_sym_template, - STATE(6025), 1, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3832), 1, + sym_enumerator_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, sym__scope_resolution, - STATE(6284), 1, - sym_pointer_type_declarator, - STATE(6285), 1, - sym_template_function, - STATE(6286), 1, - sym_destructor_name, - STATE(6287), 1, - sym_dependent_identifier, - STATE(6288), 1, - sym_qualified_identifier, - STATE(6289), 1, - sym_operator_name, - STATE(8351), 1, - sym_ms_based_modifier, - STATE(9058), 3, + ACTIONS(13963), 2, + anon_sym_class, + anon_sym_struct, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7488), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319576] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2042), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(13965), 2, + anon_sym_class, + anon_sym_struct, + STATE(2067), 2, sym_template_type, + sym_splice_type_specifier, + STATE(3927), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - [256439] = 12, - ACTIONS(10266), 1, + sym_splice_expression, + [319627] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10672), 1, + ACTIONS(13967), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256484] = 3, - ACTIONS(10266), 1, + [319672] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10350), 1, - anon_sym_LF, - ACTIONS(10352), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8087), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8089), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [319699] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, anon_sym_AMP_AMP, + ACTIONS(13901), 1, anon_sym_PIPE, + ACTIONS(13903), 1, anon_sym_CARET, + ACTIONS(13905), 1, anon_sym_AMP, + ACTIONS(13969), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [256511] = 13, + [319744] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(13971), 1, + anon_sym_LBRACE, + STATE(9594), 1, + sym_trailing_return_type, + STATE(11038), 1, + sym_requires_clause, + STATE(8124), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(8930), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8928), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [319791] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13927), 1, + anon_sym_COLON, + ACTIONS(13973), 1, + anon_sym_SEMI, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9760), 1, + sym_gnu_asm_expression, + STATE(9761), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [319846] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8366), 1, + ACTIONS(11494), 1, sym_identifier, - ACTIONS(8368), 1, + ACTIONS(11496), 1, anon_sym_LPAREN2, - ACTIONS(8370), 1, + ACTIONS(11498), 1, anon_sym_STAR, - ACTIONS(8372), 1, + ACTIONS(11500), 1, anon_sym_AMP_AMP, - ACTIONS(8374), 1, + ACTIONS(11502), 1, anon_sym_AMP, - ACTIONS(8378), 1, + ACTIONS(11508), 1, sym_primitive_type, - STATE(3107), 1, - sym__type_declarator, - STATE(3477), 1, + STATE(3117), 1, sym_pointer_type_declarator, - STATE(8333), 1, + STATE(8981), 1, + sym__type_declarator, + STATE(10974), 1, sym_ms_based_modifier, - ACTIONS(8376), 4, + ACTIONS(11506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3474), 5, + STATE(3115), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [256558] = 18, + [319893] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(11550), 1, + sym_identifier, + ACTIONS(11552), 1, + anon_sym_LPAREN2, + ACTIONS(11554), 1, + anon_sym_STAR, + ACTIONS(11556), 1, + anon_sym_AMP_AMP, + ACTIONS(11558), 1, + anon_sym_AMP, + ACTIONS(11562), 1, + sym_primitive_type, + STATE(4918), 1, + sym__type_declarator, + STATE(5606), 1, + sym_pointer_type_declarator, + STATE(10593), 1, + sym_ms_based_modifier, + ACTIONS(11560), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5602), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [319940] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(7326), 1, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(8308), 1, - anon_sym_STAR, - ACTIONS(10256), 1, + ACTIONS(12758), 1, sym_identifier, - ACTIONS(10258), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(6029), 1, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2922), 1, + sym_enumerator_list, + STATE(8588), 1, sym__scope_resolution, - STATE(8769), 1, - sym_ms_based_modifier, - STATE(9058), 3, + ACTIONS(13975), 2, + anon_sym_class, + anon_sym_struct, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4564), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319991] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2042), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(13977), 2, + anon_sym_class, + anon_sym_struct, + STATE(2067), 2, sym_template_type, + sym_splice_type_specifier, + STATE(2184), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - [256615] = 13, + sym_splice_expression, + [320042] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(11510), 1, sym_identifier, - ACTIONS(8306), 1, + ACTIONS(11512), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8346), 1, + ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(8348), 1, + ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(8350), 1, + ACTIONS(11518), 1, anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(2230), 1, + ACTIONS(11522), 1, + sym_primitive_type, + STATE(8190), 1, sym__type_declarator, - STATE(8231), 1, + STATE(8475), 1, + sym_pointer_type_declarator, + STATE(10589), 1, sym_ms_based_modifier, - ACTIONS(8316), 4, + ACTIONS(11520), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1907), 5, + STATE(8383), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [256662] = 3, - ACTIONS(7039), 1, - anon_sym_LF, - ACTIONS(10266), 1, + [320089] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(7037), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, anon_sym_AMP_AMP, + ACTIONS(13901), 1, anon_sym_PIPE, + ACTIONS(13903), 1, anon_sym_CARET, + ACTIONS(13905), 1, anon_sym_AMP, + ACTIONS(13979), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [256689] = 3, - ACTIONS(10266), 1, + [320134] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13787), 1, anon_sym_LF, - ACTIONS(10282), 18, + ACTIONS(13789), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503964,27 +695224,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [256716] = 7, - ACTIONS(10266), 1, + [320161] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11494), 1, + sym_identifier, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + ACTIONS(11498), 1, + anon_sym_STAR, + ACTIONS(11500), 1, + anon_sym_AMP_AMP, + ACTIONS(11502), 1, + anon_sym_AMP, + ACTIONS(11508), 1, + sym_primitive_type, + STATE(3117), 1, + sym_pointer_type_declarator, + STATE(9024), 1, + sym__type_declarator, + STATE(10974), 1, + sym_ms_based_modifier, + ACTIONS(11506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3115), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [320208] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13855), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13857), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10282), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -503992,41 +695276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [256751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(8696), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - ACTIONS(4931), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(4938), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [256784] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10676), 3, + ACTIONS(8559), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10674), 16, + ACTIONS(8561), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504043,52 +695306,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256811] = 12, - ACTIONS(10266), 1, + [320262] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(10577), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, - anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10678), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [256856] = 6, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2042), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + ACTIONS(13981), 2, + anon_sym_class, + anon_sym_struct, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3937), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(8696), 1, + ACTIONS(11895), 1, anon_sym_LT, - STATE(2655), 1, + STATE(2525), 1, sym_template_argument_list, - ACTIONS(5971), 2, + ACTIONS(7031), 2, anon_sym___attribute, anon_sym_COLON, - ACTIONS(4187), 14, + ACTIONS(5272), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504103,504 +695369,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [256889] = 11, + [320346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, - anon_sym_LBRACK, - ACTIONS(8340), 1, - anon_sym_STAR, - ACTIONS(8342), 1, - anon_sym_AMP_AMP, - ACTIONS(8344), 1, - anon_sym_AMP, - STATE(3387), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6761), 1, - sym__abstract_declarator, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 6, - anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [256932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(8079), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5064), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [256965] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 1, - anon_sym_SLASH, - ACTIONS(10137), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10139), 1, - anon_sym_AMP_AMP, - ACTIONS(10141), 1, - anon_sym_PIPE, - ACTIONS(10143), 1, - anon_sym_CARET, - ACTIONS(10145), 1, - anon_sym_AMP, - ACTIONS(10680), 1, - anon_sym_RPAREN, - ACTIONS(10131), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10133), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10147), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10149), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10151), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10153), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [257014] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8402), 1, - anon_sym_STAR, - ACTIONS(8404), 1, - anon_sym_AMP_AMP, - ACTIONS(8406), 1, - anon_sym_AMP, - STATE(3156), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6747), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8392), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [257057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10684), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10682), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10053), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10051), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257111] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, - sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6946), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [257158] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8304), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(8306), 1, - anon_sym_LPAREN2, - ACTIONS(8318), 1, - sym_primitive_type, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(8336), 1, - anon_sym_AMP_AMP, - ACTIONS(8338), 1, - anon_sym_AMP, - STATE(1911), 1, - sym_pointer_type_declarator, - STATE(6154), 1, - sym__type_declarator, - STATE(8595), 1, - sym_ms_based_modifier, - ACTIONS(8316), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1907), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [257205] = 3, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(4276), 1, + sym_enumerator_list, + STATE(8571), 1, + sym__scope_resolution, + ACTIONS(13983), 2, + anon_sym_class, + anon_sym_struct, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6208), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10688), 3, + ACTIONS(13985), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9308), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10686), 16, + ACTIONS(9310), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [257232] = 3, + [320426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10692), 3, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(8362), 1, + sym_template_argument_list, + ACTIONS(11399), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10690), 16, + ACTIONS(6515), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257259] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10694), 1, - anon_sym_LBRACE, - STATE(7613), 1, - sym_trailing_return_type, - STATE(8398), 1, - sym_requires_clause, - STATE(6620), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6931), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6925), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [257306] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10696), 1, - anon_sym_LBRACE, - STATE(7639), 1, - sym_trailing_return_type, - STATE(8486), 1, - sym_requires_clause, - STATE(6062), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6935), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6933), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [257353] = 12, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10577), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, - anon_sym_AMP_AMP, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10698), 1, - anon_sym_LF, - ACTIONS(10573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10589), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [257398] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(10700), 1, - anon_sym_LBRACE, - STATE(6049), 1, - sym_parameter_list, - STATE(8915), 1, - sym_trailing_return_type, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6171), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7050), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [257445] = 11, - ACTIONS(10266), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [320459] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13781), 1, anon_sym_LF, - ACTIONS(10581), 1, - anon_sym_PIPE, - ACTIONS(10583), 1, - anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10282), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10573), 2, + ACTIONS(13783), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10591), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 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, - [257488] = 12, - ACTIONS(10266), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320486] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13897), 1, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, + ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10702), 1, + ACTIONS(13987), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [257533] = 3, + [320531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10706), 3, + ACTIONS(8935), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10704), 16, + ACTIONS(8937), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504617,475 +695538,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [257560] = 3, + [320558] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, + anon_sym_AMP_AMP, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13989), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320603] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10710), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10708), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257587] = 18, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8537), 1, + sym_access_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9729), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13489), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320652] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(2809), 1, - anon_sym_TILDE, - ACTIONS(8334), 1, - anon_sym_STAR, - ACTIONS(10274), 1, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_COLON_COLON, - ACTIONS(10712), 1, + ACTIONS(12736), 1, sym_identifier, - ACTIONS(10714), 1, - anon_sym_template, - STATE(2425), 1, - sym_template_function, - STATE(2429), 1, - sym_destructor_name, - STATE(2432), 1, - sym_dependent_identifier, - STATE(2472), 1, - sym_qualified_identifier, - STATE(2480), 1, - sym_operator_name, - STATE(2509), 1, - sym_pointer_type_declarator, - STATE(6056), 1, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(3832), 1, + sym_enumerator_list, + STATE(8621), 1, sym__scope_resolution, - STATE(8595), 1, - sym_ms_based_modifier, - STATE(9058), 3, - sym_decltype, + ACTIONS(13991), 2, + anon_sym_class, + anon_sym_struct, + STATE(2874), 2, sym_template_type, + sym_splice_type_specifier, + STATE(3612), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - [257644] = 13, + sym_splice_expression, + [320703] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8320), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, sym_identifier, - ACTIONS(8322), 1, - anon_sym_LPAREN2, - ACTIONS(8324), 1, - anon_sym_STAR, - ACTIONS(8326), 1, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4281), 1, + sym_enumerator_list, + STATE(8549), 1, + sym__scope_resolution, + ACTIONS(13993), 2, + anon_sym_class, + anon_sym_struct, + STATE(4031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320754] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(8328), 1, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(8332), 1, - sym_primitive_type, - STATE(2980), 1, - sym__type_declarator, - STATE(3316), 1, - sym_pointer_type_declarator, - STATE(8955), 1, - sym_ms_based_modifier, - ACTIONS(8330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3308), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [257691] = 9, - ACTIONS(10266), 1, + ACTIONS(13995), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320799] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13801), 1, anon_sym_LF, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10573), 2, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13803), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + 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(10591), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + [320828] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13803), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10282), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(10589), 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, - [257730] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320855] = 12, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10718), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10716), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257757] = 10, - ACTIONS(10266), 1, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13803), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, + anon_sym_AMP_AMP, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320900] = 11, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320943] = 10, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(13801), 1, anon_sym_LF, - ACTIONS(10583), 1, + ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(10585), 1, + ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10282), 3, + ACTIONS(13803), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [257798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10722), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10720), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257825] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10724), 1, - anon_sym_LBRACE, - STATE(7361), 1, - sym_trailing_return_type, - STATE(8501), 1, - sym_requires_clause, - STATE(6620), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6920), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6864), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [257872] = 12, - ACTIONS(10266), 1, + [320984] = 9, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10577), 1, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13803), 4, anon_sym_PIPE_PIPE, - ACTIONS(10579), 1, anon_sym_AMP_AMP, - ACTIONS(10581), 1, anon_sym_PIPE, - ACTIONS(10583), 1, anon_sym_CARET, - ACTIONS(10585), 1, - anon_sym_AMP, - ACTIONS(10726), 1, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321023] = 8, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13801), 1, anon_sym_LF, - ACTIONS(10573), 2, + ACTIONS(13893), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10587), 2, + ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10591), 2, + ACTIONS(13911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10575), 3, + ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10589), 4, + ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [257917] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9897), 1, - anon_sym_try, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10728), 1, - anon_sym_SEMI, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_compound_statement, - STATE(1794), 1, - sym_try_statement, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7775), 1, - sym_gnu_asm_expression, - STATE(7776), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [257971] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10193), 1, - anon_sym_try, - ACTIONS(10732), 1, - anon_sym_SEMI, - STATE(297), 1, - sym_compound_statement, - STATE(299), 1, - sym_try_statement, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7711), 1, - sym_gnu_asm_expression, - STATE(7714), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [258025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6247), 1, - anon_sym___attribute, - ACTIONS(10734), 2, + ACTIONS(13803), 5, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [321060] = 7, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(13803), 7, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [258053] = 14, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [321095] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9697), 1, + ACTIONS(12764), 1, sym_identifier, - ACTIONS(10736), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6707), 1, - sym_access_specifier, - STATE(6813), 1, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2642), 1, + sym_enumerator_list, + STATE(8604), 1, sym__scope_resolution, - STATE(6089), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7449), 2, + ACTIONS(13997), 2, + anon_sym_class, + anon_sym_struct, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4425), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(10976), 3, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [258101] = 8, - ACTIONS(3), 1, + sym_splice_expression, + [321146] = 6, + ACTIONS(13686), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - ACTIONS(6162), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6144), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6164), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [258137] = 7, - ACTIONS(3), 1, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13803), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321179] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10053), 1, - anon_sym___attribute, - ACTIONS(10745), 1, - anon_sym_requires, - ACTIONS(10742), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6200), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [258171] = 3, + ACTIONS(13801), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13803), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [321210] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, + anon_sym_AMP_AMP, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(13999), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 3, + ACTIONS(9078), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3983), 15, + ACTIONS(9080), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -505095,270 +696084,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258197] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10125), 1, - anon_sym_try, - ACTIONS(10748), 1, - anon_sym_SEMI, - STATE(500), 1, - sym_compound_statement, - STATE(501), 1, - sym_try_statement, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7397), 1, - sym_gnu_asm_expression, - STATE(7422), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [258251] = 3, + [321282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 3, + ACTIONS(9082), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6376), 15, + ACTIONS(9084), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [258277] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(10053), 1, - anon_sym___attribute, - ACTIONS(7492), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6200), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [258311] = 17, + anon_sym_requires, + [321309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10107), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(5272), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10750), 1, - anon_sym_SEMI, - ACTIONS(10752), 1, - anon_sym_LBRACE, - STATE(2151), 1, - sym_compound_statement, - STATE(2153), 1, - sym_try_statement, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7367), 1, - sym_gnu_asm_expression, - STATE(7374), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [258365] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10169), 1, - anon_sym_SEMI, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7491), 1, - sym_gnu_asm_expression, - STATE(7492), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [258417] = 3, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [321340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 3, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + ACTIONS(6201), 2, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6661), 15, + anon_sym_COLON, + ACTIONS(6208), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [258443] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, - anon_sym_LPAREN2, - ACTIONS(7950), 1, anon_sym_LBRACK, - ACTIONS(8422), 1, - anon_sym_STAR, - ACTIONS(8424), 1, - anon_sym_AMP_AMP, - ACTIONS(8426), 1, - anon_sym_AMP, - STATE(3505), 1, - sym_parameter_list, - STATE(6054), 1, - sym__function_declarator_seq, - STATE(6822), 1, - sym__abstract_declarator, - ACTIONS(8392), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6047), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258485] = 16, + [321373] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11294), 1, anon_sym_LBRACE, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10635), 1, - anon_sym_SEMI, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7381), 1, - sym_gnu_asm_expression, - STATE(7382), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [258537] = 3, + ACTIONS(12797), 1, + sym_identifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5847), 1, + sym_enumerator_list, + STATE(8584), 1, + sym__scope_resolution, + ACTIONS(14001), 2, + anon_sym_class, + anon_sym_struct, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5615), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 3, + ACTIONS(8541), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3955), 15, + ACTIONS(8543), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -505368,547 +696221,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [258563] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10238), 1, - anon_sym___attribute, - ACTIONS(7492), 2, anon_sym_final, anon_sym_override, - STATE(6102), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10236), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258593] = 7, + [321451] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym___attribute, - ACTIONS(10757), 1, - anon_sym_requires, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(13921), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [258627] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9772), 1, + STATE(8413), 1, + sym_parameter_list, + ACTIONS(8931), 2, anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 10, + anon_sym___asm, + STATE(8257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8933), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [258661] = 8, + [321488] = 12, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13899), 1, + anon_sym_AMP_AMP, + ACTIONS(13901), 1, + anon_sym_PIPE, + ACTIONS(13903), 1, + anon_sym_CARET, + ACTIONS(13905), 1, + anon_sym_AMP, + ACTIONS(14003), 1, + anon_sym_LF, + ACTIONS(13893), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13907), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(13909), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321533] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, + STATE(3121), 1, sym_parameter_list, - ACTIONS(6044), 2, + ACTIONS(8931), 2, anon_sym___attribute, anon_sym___asm, - STATE(6144), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6046), 10, + ACTIONS(8933), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [258697] = 7, + [321569] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(9811), 1, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12790), 1, anon_sym_requires, - ACTIONS(9808), 2, + STATE(7927), 1, + sym_trailing_return_type, + ACTIONS(12787), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8195), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 10, - anon_sym_COMMA, + ACTIONS(7627), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [258731] = 16, + [321607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(10107), 1, + ACTIONS(8606), 1, + anon_sym___attribute, + ACTIONS(8608), 17, anon_sym_COMMA, - ACTIONS(10109), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10115), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10117), 1, anon_sym_EQ, - ACTIONS(10189), 1, - anon_sym_SEMI, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7586), 1, - sym_gnu_asm_expression, - STATE(7592), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [258783] = 5, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [321633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7318), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(6495), 3, + ACTIONS(9440), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6497), 13, + ACTIONS(9442), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [258813] = 7, + [321659] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, - anon_sym___attribute, - ACTIONS(9542), 1, - anon_sym_requires, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(8929), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [258847] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, + STATE(3121), 1, sym_parameter_list, - ACTIONS(6034), 2, + ACTIONS(9127), 2, anon_sym___attribute, anon_sym___asm, - STATE(6144), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6036), 10, + ACTIONS(9129), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [258883] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9697), 1, - sym_identifier, - ACTIONS(10760), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6643), 1, - sym_access_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7461), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [258931] = 9, + [321695] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - STATE(5616), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9192), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [258969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym___attribute, - ACTIONS(1936), 17, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13551), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [258995] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - STATE(5624), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9434), 2, - anon_sym___attribute, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(13559), 1, anon_sym_EQ, - anon_sym_GT2, - [259033] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9913), 1, - anon_sym_try, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10762), 1, - anon_sym_SEMI, - ACTIONS(10764), 1, - anon_sym_LBRACE, - STATE(2185), 1, - sym_compound_statement, - STATE(2186), 1, - sym_try_statement, - STATE(3080), 1, + ACTIONS(13587), 1, + anon_sym_SEMI, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7655), 1, + STATE(9948), 1, sym_gnu_asm_expression, - STATE(7656), 1, + STATE(9954), 1, aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [259087] = 7, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [321747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9192), 1, + ACTIONS(8665), 1, anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 10, + ACTIONS(8667), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [259121] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym___attribute, - ACTIONS(7492), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [259155] = 17, + anon_sym_requires, + [321773] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(3633), 1, + ACTIONS(4127), 1, anon_sym_LBRACE, - ACTIONS(10107), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(13551), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10635), 1, - anon_sym_SEMI, - ACTIONS(10766), 1, + ACTIONS(13559), 1, anon_sym_EQ, - STATE(2930), 1, + ACTIONS(13692), 1, + anon_sym_SEMI, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7381), 1, + STATE(9905), 1, sym_gnu_asm_expression, - STATE(7382), 1, + STATE(9907), 1, aux_sym_declaration_repeat1, - STATE(7604), 1, - sym_initializer_list, - STATE(7862), 1, - sym_argument_list, - ACTIONS(10119), 2, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [259209] = 17, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [321825] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10250), 1, + ACTIONS(13690), 1, anon_sym_try, - ACTIONS(10768), 1, + ACTIONS(14005), 1, anon_sym_SEMI, - STATE(754), 1, - sym_try_statement, - STATE(817), 1, + STATE(646), 1, sym_compound_statement, - STATE(3080), 1, + STATE(650), 1, + sym_try_statement, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7542), 1, + STATE(9833), 1, sym_gnu_asm_expression, - STATE(7544), 1, + STATE(9839), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [321879] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13925), 1, + anon_sym_SEMI, + ACTIONS(14007), 1, + anon_sym_EQ, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9715), 1, + sym_gnu_asm_expression, + STATE(9716), 1, aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + STATE(9754), 1, + sym_initializer_list, + STATE(10081), 1, + sym_argument_list, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [259263] = 3, + [321933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(8516), 1, anon_sym___attribute, - ACTIONS(5196), 17, + ACTIONS(8518), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505926,128 +696611,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259289] = 5, + [321959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(8362), 1, + sym_template_argument_list, + ACTIONS(9225), 3, anon_sym___attribute, - ACTIONS(10734), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10770), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6201), 13, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9227), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8599), 1, + anon_sym___attribute, + ACTIONS(8601), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259319] = 17, + [322015] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + ACTIONS(12887), 1, + anon_sym_requires, + STATE(7928), 1, + sym_trailing_return_type, + ACTIONS(12884), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8239), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(1024), 1, anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10173), 1, + anon_sym_EQ, anon_sym_try, - ACTIONS(10772), 1, - anon_sym_SEMI, - STATE(690), 1, - sym_compound_statement, - STATE(691), 1, - sym_try_statement, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7520), 1, - sym_gnu_asm_expression, - STATE(7521), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [259373] = 9, + [322053] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(8087), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(7424), 1, + ACTIONS(10266), 1, anon_sym_DASH_GT, - STATE(5626), 1, + STATE(7944), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - ACTIONS(9772), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8239), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(8089), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [322091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9213), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [259411] = 5, + anon_sym_try, + [322121] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14009), 1, + sym_identifier, + ACTIONS(14011), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8290), 1, + sym__scope_resolution, + STATE(10070), 1, + sym_field_initializer, + STATE(10170), 1, + sym_operator_name, + STATE(9412), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10197), 1, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(10774), 2, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6102), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(10195), 13, - anon_sym_DOT_DOT_DOT, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [259441] = 3, + [322203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(8618), 1, anon_sym___attribute, - ACTIONS(5204), 17, + ACTIONS(8620), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506065,12 +696826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259467] = 3, + [322229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(8622), 1, anon_sym___attribute, - ACTIONS(5204), 17, + ACTIONS(8624), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506088,64 +696849,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259493] = 3, + [322255] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14009), 1, + sym_identifier, + ACTIONS(14011), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8290), 1, + sym__scope_resolution, + STATE(9756), 1, + sym_field_initializer, + STATE(10170), 1, + sym_operator_name, + STATE(9412), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322303] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(8959), 1, anon_sym___attribute, - ACTIONS(5204), 17, + ACTIONS(14013), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(14015), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8961), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259519] = 9, + [322333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7424), 1, + ACTIONS(8541), 1, + anon_sym_LBRACK, + ACTIONS(10266), 1, anon_sym_DASH_GT, - STATE(5630), 1, + ACTIONS(13514), 1, + anon_sym_requires, + STATE(7931), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(13511), 2, anon_sym_final, anon_sym_override, - ACTIONS(10023), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 7, - anon_sym_COMMA, + ACTIONS(8543), 8, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [259557] = 3, + anon_sym_try, + [322371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, + ACTIONS(8614), 1, anon_sym___attribute, - ACTIONS(5164), 17, + ACTIONS(8616), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506163,122 +696960,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259583] = 9, + [322397] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10266), 1, anon_sym_DASH_GT, - ACTIONS(9385), 1, + ACTIONS(12170), 1, anon_sym_requires, - STATE(5587), 1, + STATE(7926), 1, sym_trailing_return_type, - ACTIONS(9192), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9194), 2, + ACTIONS(12167), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, - anon_sym_COMMA, + ACTIONS(7544), 8, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [259621] = 9, + anon_sym_try, + [322435] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9456), 1, - anon_sym_requires, - STATE(5597), 1, - sym_trailing_return_type, - ACTIONS(9434), 2, - anon_sym___attribute, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(1162), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(9436), 2, + ACTIONS(13656), 1, + anon_sym_try, + ACTIONS(14017), 1, + anon_sym_SEMI, + STATE(780), 1, + sym_compound_statement, + STATE(782), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9929), 1, + sym_gnu_asm_expression, + STATE(9933), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322489] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8541), 1, + anon_sym___attribute, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 7, + ACTIONS(8543), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [259659] = 3, + anon_sym_try, + [322523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(7546), 1, anon_sym___attribute, - ACTIONS(5184), 17, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [259685] = 9, + [322557] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9805), 1, - anon_sym_requires, - STATE(5607), 1, - sym_trailing_return_type, - ACTIONS(9772), 2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13205), 1, + anon_sym_COLON_COLON, + ACTIONS(14019), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + ACTIONS(5594), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10386), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8939), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(14015), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8941), 15, 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_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [259723] = 3, + anon_sym_try, + anon_sym_requires, + [322631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, + ACTIONS(8629), 1, anon_sym___attribute, - ACTIONS(5172), 17, + ACTIONS(8631), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506296,64 +697160,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259749] = 9, + [322657] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(10028), 1, - anon_sym_requires, - STATE(5618), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, - anon_sym___attribute, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13591), 1, + anon_sym_try, + ACTIONS(14021), 1, + anon_sym_SEMI, + STATE(831), 1, + sym_compound_statement, + STATE(832), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9542), 1, + sym_gnu_asm_expression, + STATE(9543), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322711] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(305), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10025), 2, + ACTIONS(13696), 1, + anon_sym_try, + ACTIONS(14023), 1, + anon_sym_SEMI, + STATE(435), 1, + sym_compound_statement, + STATE(436), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9973), 1, + sym_gnu_asm_expression, + STATE(9974), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322765] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(14025), 1, + sym_identifier, + ACTIONS(14027), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5527), 1, + sym_template_method, + STATE(5536), 1, + sym_dependent_field_identifier, + STATE(5537), 1, + sym_qualified_field_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8275), 1, + sym__scope_resolution, + STATE(10202), 1, + sym_operator_name, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322815] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym___attribute, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 7, + ACTIONS(8089), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [259787] = 3, + anon_sym_try, + [322849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, + ACTIONS(9308), 3, anon_sym___attribute, - ACTIONS(5192), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9310), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [259813] = 3, + [322875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, + ACTIONS(8651), 1, anon_sym___attribute, - ACTIONS(5200), 17, + ACTIONS(8653), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506371,104 +697342,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259839] = 8, + [322901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, + STATE(3121), 1, sym_parameter_list, - ACTIONS(6107), 2, + ACTIONS(9033), 2, anon_sym___attribute, anon_sym___asm, - STATE(6144), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6109), 10, + ACTIONS(9035), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [259875] = 16, + [322937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10246), 1, - anon_sym_SEMI, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7357), 1, - sym_gnu_asm_expression, - STATE(7358), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [259927] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - ACTIONS(6074), 2, + ACTIONS(8655), 1, anon_sym___attribute, - anon_sym___asm, - STATE(6144), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6076), 10, + ACTIONS(8657), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [259963] = 3, + anon_sym_requires, + [322963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(8629), 1, anon_sym___attribute, - ACTIONS(1940), 17, + ACTIONS(8631), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506486,223 +697416,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259989] = 7, + [322989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9192), 1, + ACTIONS(14031), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(9417), 1, + ACTIONS(14036), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(8282), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(14034), 4, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(14029), 7, + anon_sym_COLON, + anon_sym___declspec, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [323021] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8876), 1, + sym__abstract_declarator, + ACTIONS(9072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [323063] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, anon_sym_requires, - ACTIONS(9414), 2, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + STATE(7917), 1, + sym_trailing_return_type, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8170), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 10, + ACTIONS(7544), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [323101] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13821), 1, + anon_sym_COLON_COLON, + ACTIONS(14039), 1, + sym_identifier, + ACTIONS(14041), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5802), 1, + sym_template_method, + STATE(5805), 1, + sym_dependent_field_identifier, + STATE(5811), 1, + sym_qualified_field_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8285), 1, + sym__scope_resolution, + STATE(10431), 1, + sym_operator_name, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [323151] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14045), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14043), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [260023] = 16, + [323181] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(3633), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - ACTIONS(10123), 1, + ACTIONS(14047), 1, anon_sym_SEMI, - STATE(2930), 1, + STATE(3242), 1, + sym_compound_statement, + STATE(3249), 1, + sym_try_statement, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7468), 1, + STATE(9665), 1, sym_gnu_asm_expression, - STATE(7477), 1, + STATE(9666), 1, aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [260075] = 14, + [323235] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13837), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9697), 1, + ACTIONS(14049), 1, sym_identifier, - ACTIONS(10777), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6706), 1, - sym_access_specifier, - STATE(6813), 1, + ACTIONS(14051), 1, + anon_sym_template, + STATE(3667), 1, + sym_template_method, + STATE(3677), 1, + sym_dependent_field_identifier, + STATE(3680), 1, + sym_qualified_field_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8288), 1, sym__scope_resolution, - STATE(6123), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7297), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(10235), 1, + sym_operator_name, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [260123] = 14, + sym_splice_type_specifier, + sym_splice_expression, + [323285] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13747), 1, anon_sym_COLON_COLON, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9697), 1, + ACTIONS(14049), 1, sym_identifier, - ACTIONS(10779), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6733), 1, - sym_access_specifier, - STATE(6813), 1, + ACTIONS(14053), 1, + anon_sym_template, + STATE(3667), 1, + sym_template_method, + STATE(3677), 1, + sym_dependent_field_identifier, + STATE(3680), 1, + sym_qualified_field_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8289), 1, sym__scope_resolution, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(10292), 1, + sym_operator_name, + STATE(10976), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [260171] = 3, + sym_splice_type_specifier, + sym_splice_expression, + [323335] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - anon_sym___attribute, - ACTIONS(5180), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [260197] = 3, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14011), 1, + anon_sym_COLON_COLON, + ACTIONS(14055), 1, + sym_identifier, + ACTIONS(14057), 1, + anon_sym_template, + STATE(3667), 1, + sym_template_method, + STATE(3677), 1, + sym_dependent_field_identifier, + STATE(3680), 1, + sym_qualified_field_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8290), 1, + sym__scope_resolution, + STATE(10170), 1, + sym_operator_name, + STATE(10976), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [323385] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(3121), 1, + sym_parameter_list, + ACTIONS(8923), 2, anon_sym___attribute, - ACTIONS(5208), 17, + anon_sym___asm, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8925), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [260223] = 3, + [323421] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, - anon_sym___attribute, - ACTIONS(5160), 17, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13551), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(13557), 1, anon_sym_LBRACK, + ACTIONS(13559), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [260249] = 7, + ACTIONS(13688), 1, + anon_sym_SEMI, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9732), 1, + sym_gnu_asm_expression, + STATE(9734), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [323473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(10023), 1, + ACTIONS(8559), 1, anon_sym___attribute, - ACTIONS(7492), 2, + ACTIONS(10753), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8410), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 10, + ACTIONS(8561), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506713,35 +697795,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [260283] = 3, + [323507] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym___attribute, - ACTIONS(5168), 17, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13551), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(13557), 1, anon_sym_LBRACK, + ACTIONS(13559), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [260309] = 3, + ACTIONS(13652), 1, + anon_sym_SEMI, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9826), 1, + sym_gnu_asm_expression, + STATE(9827), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [323559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(8633), 1, anon_sym___attribute, - ACTIONS(5176), 17, + ACTIONS(8635), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506759,12 +697854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260335] = 3, + [323585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(8610), 1, anon_sym___attribute, - ACTIONS(5188), 17, + ACTIONS(8612), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506782,746 +697877,700 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260361] = 6, + [323611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10783), 2, - anon_sym___attribute__, + ACTIONS(8774), 1, anon_sym___attribute, - ACTIONS(10788), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10786), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - STATE(6131), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - ACTIONS(10781), 7, - anon_sym_COLON, - anon_sym___declspec, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [260392] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8508), 1, - anon_sym_STAR, - ACTIONS(8510), 1, - anon_sym_AMP_AMP, - ACTIONS(8512), 1, - anon_sym_AMP, - STATE(3544), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6902), 1, - sym__abstract_declarator, - ACTIONS(8392), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [260433] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(5771), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8304), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(8776), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [260470] = 8, + anon_sym_requires, + [323641] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10271), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - ACTIONS(6034), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6036), 9, + ACTIONS(13455), 1, + anon_sym_try, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14059), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, + STATE(3146), 1, + sym_compound_statement, + STATE(3151), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(10006), 1, + sym_gnu_asm_expression, + STATE(10007), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [260505] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10791), 1, - sym_identifier, - ACTIONS(5419), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6137), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10793), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10795), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260536] = 11, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [323695] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, - anon_sym_noexcept, - ACTIONS(7091), 1, - anon_sym_throw, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(10700), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(8915), 1, - sym_trailing_return_type, - STATE(6620), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(7042), 2, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, + anon_sym_EQ, + ACTIONS(13925), 1, + anon_sym_SEMI, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9715), 1, + sym_gnu_asm_expression, + STATE(9716), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7050), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9925), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [260577] = 6, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [323747] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10797), 1, - sym_identifier, - ACTIONS(5431), 3, - anon_sym_COMMA, + ACTIONS(7629), 1, + anon_sym_LBRACK, + ACTIONS(10022), 1, + anon_sym_requires, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + STATE(7938), 1, + sym_trailing_return_type, + ACTIONS(7821), 2, + anon_sym_final, + anon_sym_override, + STATE(8010), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8195), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 8, anon_sym_RPAREN, - anon_sym_COLON, - STATE(6137), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10800), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10803), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260608] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, - anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(6267), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - STATE(6598), 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, - [260651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(10806), 1, - anon_sym_AMP, - ACTIONS(10808), 1, - sym_this, - STATE(6056), 1, - sym__scope_resolution, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(7389), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [260694] = 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [323785] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4559), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10268), 1, - sym_identifier, - ACTIONS(10270), 1, - anon_sym_STAR, - ACTIONS(10274), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13811), 1, anon_sym_COLON_COLON, - ACTIONS(10806), 1, - anon_sym_AMP, - ACTIONS(10810), 1, - sym_this, - STATE(6056), 1, + ACTIONS(14061), 1, + sym_identifier, + ACTIONS(14063), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(5665), 1, + sym_template_method, + STATE(5697), 1, + sym_dependent_field_identifier, + STATE(5700), 1, + sym_qualified_field_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8301), 1, sym__scope_resolution, - STATE(9058), 3, + STATE(10446), 1, + sym_operator_name, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(8121), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - [260737] = 8, + sym_splice_type_specifier, + sym_splice_expression, + [323835] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, + ACTIONS(8929), 1, anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(1975), 1, + STATE(3121), 1, sym_parameter_list, - ACTIONS(6162), 2, + ACTIONS(8947), 2, anon_sym___attribute, anon_sym___asm, - STATE(6278), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6164), 9, + ACTIONS(8949), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [260772] = 9, + [323871] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13447), 1, + anon_sym_try, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(9777), 1, - anon_sym_requires, - STATE(5752), 1, - sym_trailing_return_type, - ACTIONS(9774), 2, + ACTIONS(14065), 1, + anon_sym_SEMI, + STATE(2752), 1, + sym_compound_statement, + STATE(2753), 1, + sym_try_statement, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9882), 1, + sym_gnu_asm_expression, + STATE(9883), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [323925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8755), 1, + anon_sym___attribute, + ACTIONS(14067), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8304), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(8757), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [323955] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9834), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4243), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9832), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [260809] = 9, + anon_sym_requires, + [323989] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(12824), 1, anon_sym_requires, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5748), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, + ACTIONS(7544), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [324023] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9852), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4243), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9850), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [260846] = 5, + anon_sym_requires, + [324057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6211), 3, + ACTIONS(9856), 1, anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14070), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6213), 11, + STATE(4243), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9854), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [260875] = 14, + anon_sym_requires, + [324091] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9840), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4243), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9838), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(3633), 1, anon_sym_LBRACE, - ACTIONS(10109), 1, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [324125] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9844), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, - anon_sym_EQ, - STATE(2930), 1, + STATE(4243), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8235), 1, sym__function_declarator_seq, - STATE(7850), 1, - sym_gnu_asm_expression, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10812), 2, + ACTIONS(9842), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7862), 2, - sym_argument_list, - sym_initializer_list, - [260922] = 7, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [324159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, - sym_identifier, - ACTIONS(10816), 2, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4243), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9858), 13, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7324), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [260955] = 8, + 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, + [324193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(9848), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(1975), 1, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4243), 1, sym_parameter_list, - ACTIONS(6044), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6046), 9, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9846), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [260990] = 11, + anon_sym_requires, + [324227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, - anon_sym_STAR, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - STATE(3096), 1, + STATE(4243), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8235), 1, sym__function_declarator_seq, - STATE(6926), 1, - sym__abstract_declarator, - ACTIONS(8392), 4, + ACTIONS(9862), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [261031] = 9, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [324261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, + ACTIONS(7629), 1, + anon_sym___attribute, + ACTIONS(12872), 1, anon_sym_requires, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_LBRACK, - STATE(5796), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 7, + ACTIONS(7627), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [261068] = 12, + [324295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, - sym_identifier, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(6916), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - STATE(6598), 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, - [261111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 4, + ACTIONS(8087), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5026), 12, + ACTIONS(13110), 1, + anon_sym_requires, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [261138] = 3, + [324329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 3, + ACTIONS(8541), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5985), 14, + ACTIONS(14075), 1, + anon_sym_requires, + ACTIONS(14072), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [261163] = 8, + [324363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - ACTIONS(6074), 2, + ACTIONS(8559), 1, anon_sym___attribute, - anon_sym___asm, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6076), 9, + ACTIONS(14081), 1, + anon_sym_requires, + ACTIONS(14078), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [261198] = 8, + [324397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - ACTIONS(6107), 2, + ACTIONS(2795), 1, anon_sym___attribute, - anon_sym___asm, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6109), 9, + ACTIONS(2793), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [261233] = 5, + anon_sym_requires, + [324423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10820), 3, + ACTIONS(8595), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10818), 11, + ACTIONS(8597), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [261262] = 12, + anon_sym_requires, + [324449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8430), 1, + ACTIONS(2803), 1, + anon_sym___attribute, + ACTIONS(2801), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8488), 1, - sym_identifier, - ACTIONS(8490), 1, - anon_sym_STAR, - ACTIONS(8492), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8494), 1, - anon_sym_AMP, - STATE(6298), 1, - sym__field_declarator, - STATE(6546), 1, - sym_operator_name, - STATE(8639), 1, - sym_ms_based_modifier, - STATE(6598), 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, - [261305] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [324475] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(8541), 1, anon_sym_LBRACK, - ACTIONS(9197), 1, + ACTIONS(10022), 1, anon_sym_requires, - STATE(5791), 1, + ACTIONS(10266), 1, + anon_sym_DASH_GT, + STATE(7891), 1, sym_trailing_return_type, - ACTIONS(9194), 2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8010), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5985), 2, + STATE(8208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, + ACTIONS(8543), 8, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -507529,85 +698578,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [261342] = 9, + [324513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 1, - anon_sym_requires, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5731), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 7, + ACTIONS(8629), 1, + anon_sym___attribute, + ACTIONS(8631), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [261379] = 11, + anon_sym_requires, + [324539] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(7992), 1, + anon_sym_LBRACE, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2600), 1, + sym_enumerator_list, + STATE(8639), 1, + sym__scope_resolution, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4271), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [324586] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3774), 1, + sym_enumerator_list, + STATE(8631), 1, + sym__scope_resolution, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5992), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [324633] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2659), 1, + sym_enumerator_list, + STATE(8624), 1, + sym__scope_resolution, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4294), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [324680] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, + sym_identifier, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2033), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3998), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [324727] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(8538), 1, + ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(8540), 1, + ACTIONS(11701), 1, anon_sym_AMP, - STATE(3056), 1, + STATE(8910), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + STATE(8721), 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, + [324770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9852), 1, + anon_sym___asm, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4486), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8235), 1, sym__function_declarator_seq, - STATE(6884), 1, - sym__abstract_declarator, - ACTIONS(8392), 4, + ACTIONS(9850), 12, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [261420] = 9, + anon_sym_requires, + [324803] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym___attribute, - STATE(6095), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8259), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507615,27 +698818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261457] = 9, + [324840] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym___attribute, - STATE(6082), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8276), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 7, + ACTIONS(7627), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507643,27 +698846,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261494] = 9, + [324877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(8087), 1, anon_sym___attribute, - STATE(6127), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8268), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(8089), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507671,27 +698874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261531] = 9, + [324914] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 1, - anon_sym_requires, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(8541), 1, anon_sym___attribute, - STATE(6073), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8293), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 7, + ACTIONS(8543), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507699,27 +698902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261568] = 9, + [324951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym___attribute, - ACTIONS(9417), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12824), 1, anon_sym_requires, - STATE(6087), 1, + STATE(8314), 1, sym_trailing_return_type, - ACTIONS(9414), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 7, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507727,27 +698930,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261605] = 9, + [324988] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_enumerator_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3613), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325035] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(9542), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(12872), 1, anon_sym_requires, - STATE(6084), 1, + STATE(8315), 1, sym_trailing_return_type, - ACTIONS(9539), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 7, + ACTIONS(7627), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507755,27 +698991,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261642] = 9, + [325072] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4250), 1, + sym_enumerator_list, + STATE(8549), 1, + sym__scope_resolution, + STATE(4032), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325119] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, anon_sym___attribute, - ACTIONS(9811), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(13110), 1, anon_sym_requires, - STATE(6081), 1, + STATE(8316), 1, sym_trailing_return_type, - ACTIONS(9808), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 7, + ACTIONS(8089), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507783,27 +699052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261679] = 9, + [325156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(8541), 1, anon_sym___attribute, - ACTIONS(10757), 1, + ACTIONS(10751), 1, + anon_sym_DASH_GT, + ACTIONS(14075), 1, anon_sym_requires, - STATE(6069), 1, + STATE(8317), 1, sym_trailing_return_type, - ACTIONS(10754), 2, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 7, + ACTIONS(8543), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -507811,214 +699080,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [261716] = 9, + [325193] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9439), 1, - anon_sym_requires, - STATE(5734), 1, - sym_trailing_return_type, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9162), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [261753] = 6, + ACTIONS(10293), 1, + anon_sym_COLON_COLON, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12742), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3728), 1, + sym_enumerator_list, + STATE(7086), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7457), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325240] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2732), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8100), 1, + anon_sym_LBRACE, + ACTIONS(10735), 1, + anon_sym_COLON_COLON, + ACTIONS(12772), 1, + sym_identifier, + STATE(2530), 1, + sym_splice_specifier, + STATE(2597), 1, + sym__splice_specialization_specifier, + STATE(2659), 1, + sym_enumerator_list, + STATE(8624), 1, + sym__scope_resolution, + STATE(2470), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2598), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10822), 1, + ACTIONS(14084), 1, sym_identifier, - ACTIONS(5453), 3, + ACTIONS(8125), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(6135), 3, + STATE(8352), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(10793), 5, + ACTIONS(14086), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10795), 5, + ACTIONS(14088), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [261784] = 12, + [325318] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(8428), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, + anon_sym_COLON_COLON, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(8430), 1, - anon_sym_LPAREN2, - ACTIONS(8432), 1, - anon_sym_STAR, - ACTIONS(8434), 1, - anon_sym_AMP_AMP, - ACTIONS(8436), 1, - anon_sym_AMP, - STATE(6877), 1, - sym__field_declarator, - STATE(7000), 1, - sym_operator_name, - STATE(8876), 1, - sym_ms_based_modifier, - STATE(6598), 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, - [261827] = 11, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2033), 1, + sym_enumerator_list, + STATE(8593), 1, + sym__scope_resolution, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(2213), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325365] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7089), 1, + ACTIONS(10018), 1, anon_sym_noexcept, - ACTIONS(7091), 1, + ACTIONS(10020), 1, anon_sym_throw, - ACTIONS(9927), 1, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(10824), 1, + ACTIONS(13919), 1, anon_sym_LBRACE, - STATE(8439), 1, + STATE(10537), 1, sym_trailing_return_type, - STATE(6620), 2, + STATE(8728), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(7066), 2, + STATE(9036), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7019), 3, + STATE(9133), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9925), 4, + ACTIONS(13477), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [261868] = 9, + [325406] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_LBRACK, - ACTIONS(10218), 1, - anon_sym_requires, - STATE(5768), 1, - sym_trailing_return_type, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4127), 1, anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13551), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13559), 1, anon_sym_EQ, - anon_sym_try, - [261905] = 9, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(10410), 1, + sym_gnu_asm_expression, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14090), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10081), 2, + sym_argument_list, + sym_initializer_list, + [325453] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - ACTIONS(9434), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [261941] = 7, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, + anon_sym_AMP, + STATE(8532), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + STATE(8721), 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, + [325496] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 8, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2843), 1, + sym_enumerator_list, + STATE(8588), 1, + sym__scope_resolution, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4632), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325543] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11294), 1, + anon_sym_LBRACE, + ACTIONS(12797), 1, + sym_identifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(5263), 1, + sym__splice_specialization_specifier, + STATE(5882), 1, + sym_enumerator_list, + STATE(8584), 1, + sym__scope_resolution, + STATE(5166), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5460), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325590] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9162), 1, + anon_sym_LBRACE, + ACTIONS(10590), 1, + anon_sym_COLON_COLON, + ACTIONS(12752), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(7299), 1, + sym_splice_specifier, + STATE(7607), 1, + sym_enumerator_list, + STATE(8564), 1, + sym__scope_resolution, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7467), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14092), 1, + sym_identifier, + ACTIONS(8045), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [261973] = 7, + STATE(8349), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(14095), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14098), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [325668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9834), 1, + anon_sym___asm, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10830), 1, - anon_sym___asm, - STATE(2933), 1, + STATE(4486), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10826), 11, + ACTIONS(9832), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -508029,42 +699446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262005] = 3, + [325701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5910), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(9864), 1, anon_sym___asm, - ACTIONS(5912), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [262029] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym___asm, - STATE(2933), 1, + STATE(4486), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10832), 11, + ACTIONS(9862), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -508075,171 +699472,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_requires, - [262061] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(5847), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [262097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(9761), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262121] = 7, + [325734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 8, + ACTIONS(14101), 1, + sym_identifier, + ACTIONS(8116), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [262153] = 11, + STATE(8349), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(14086), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14088), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [325765] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(5048), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(10836), 1, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(10838), 1, - sym_primitive_type, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6840), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2033), 1, + sym_enumerator_list, + STATE(8593), 1, sym__scope_resolution, - STATE(2575), 2, - sym_sized_type_specifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3928), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262193] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_LBRACK, - ACTIONS(10336), 1, - anon_sym_requires, - STATE(5825), 1, - sym_trailing_return_type, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [262229] = 3, + sym_splice_expression, + [325812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(9844), 1, anon_sym___asm, - ACTIONS(10840), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [262253] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10846), 1, - anon_sym___asm, - STATE(2933), 1, + STATE(4486), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10844), 11, + ACTIONS(9842), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -508250,21 +699556,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262285] = 7, + [325845] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, + anon_sym_LBRACE, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + sym_identifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4250), 1, + sym_enumerator_list, + STATE(7130), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7485), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325892] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10743), 1, + anon_sym_COLON_COLON, + ACTIONS(12776), 1, + sym_identifier, + STATE(3634), 1, + sym_splice_specifier, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(3774), 1, + sym_enumerator_list, + STATE(8631), 1, + sym__scope_resolution, + STATE(3530), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325939] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2745), 1, + sym_enumerator_list, + STATE(8604), 1, + sym__scope_resolution, + STATE(2577), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4371), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9860), 1, + anon_sym___asm, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10850), 1, - anon_sym___asm, - STATE(2933), 1, + STATE(4486), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10848), 11, + ACTIONS(9858), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -508275,21 +699681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262317] = 7, + [326019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9856), 1, + anon_sym___asm, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10854), 1, - anon_sym___asm, - STATE(2933), 1, + STATE(4486), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10852), 11, + ACTIONS(9854), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -508300,71 +699707,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [262349] = 3, + [326052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10633), 1, - anon_sym___attribute, - ACTIONS(10631), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11629), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262373] = 11, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, + anon_sym_STAR, + ACTIONS(11699), 1, + anon_sym_AMP_AMP, + ACTIONS(11701), 1, + anon_sym_AMP, + STATE(8936), 1, + sym__field_declarator, + STATE(9063), 1, + sym_operator_name, + STATE(11009), 1, + sym_ms_based_modifier, + STATE(8721), 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, + [326095] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9617), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(10856), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(10858), 1, - sym_primitive_type, - STATE(1685), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6829), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(4279), 1, + sym_enumerator_list, + STATE(8571), 1, sym__scope_resolution, - STATE(3417), 2, - sym_sized_type_specifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4021), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(9619), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262413] = 3, + sym_splice_expression, + [326142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10862), 3, + ACTIONS(6233), 1, + anon_sym_COLON_COLON, + ACTIONS(6235), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10860), 13, + ACTIONS(6228), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -508372,324 +699796,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [262437] = 9, + [326169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9536), 1, - anon_sym_requires, - STATE(5823), 1, - sym_trailing_return_type, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_RPAREN, + ACTIONS(9848), 1, + anon_sym___asm, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4486), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9846), 12, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [262473] = 11, + anon_sym_requires, + [326202] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(11627), 1, + sym_identifier, + ACTIONS(11629), 1, + anon_sym_LPAREN2, + ACTIONS(11631), 1, + anon_sym_STAR, + ACTIONS(11633), 1, + anon_sym_AMP_AMP, + ACTIONS(11635), 1, + anon_sym_AMP, + STATE(8463), 1, + sym__field_declarator, + STATE(8661), 1, + sym_operator_name, + STATE(11372), 1, + sym_ms_based_modifier, + STATE(8721), 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, + [326245] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8057), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6101), 1, anon_sym_COLON_COLON, - ACTIONS(10864), 1, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12804), 1, sym_identifier, - ACTIONS(10866), 1, - sym_primitive_type, - STATE(4252), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6851), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4648), 1, + sym_enumerator_list, + STATE(5044), 1, + sym_splice_specifier, + STATE(8579), 1, sym__scope_resolution, - STATE(5087), 2, - sym_sized_type_specifier, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5386), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(8059), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262513] = 3, + sym_splice_expression, + [326292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10870), 3, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9211), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10868), 13, + ACTIONS(9213), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [262537] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [262569] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_try, - [262605] = 11, + [326321] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8175), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10299), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, anon_sym_COLON_COLON, - ACTIONS(10872), 1, + ACTIONS(12770), 1, sym_identifier, - ACTIONS(10874), 1, - sym_primitive_type, - STATE(5268), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6850), 1, + ACTIONS(12795), 1, + anon_sym_LBRACE, + STATE(6603), 1, + sym_splice_specifier, + STATE(7033), 1, + sym__splice_specialization_specifier, + STATE(7471), 1, + sym_enumerator_list, + STATE(8612), 1, sym__scope_resolution, - STATE(2575), 2, - sym_sized_type_specifier, + STATE(7034), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7257), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(9740), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262645] = 3, + sym_splice_expression, + [326368] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10641), 1, - anon_sym___attribute, - ACTIONS(10639), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10645), 1, - anon_sym___attribute, - ACTIONS(10643), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2875), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9806), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262693] = 3, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + ACTIONS(12754), 1, + sym_identifier, + STATE(4067), 1, + sym_splice_specifier, + STATE(4189), 1, + sym__splice_specialization_specifier, + STATE(4250), 1, + sym_enumerator_list, + STATE(8549), 1, + sym__scope_resolution, + STATE(4170), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6267), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326415] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10655), 1, - anon_sym___attribute, - ACTIONS(10653), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10145), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262717] = 4, + ACTIONS(12766), 1, + sym_identifier, + ACTIONS(12768), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4691), 1, + sym_splice_specifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(9217), 1, + sym_enumerator_list, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8867), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326462] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym___attribute, - ACTIONS(10876), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10018), 1, + anon_sym_noexcept, + ACTIONS(10020), 1, + anon_sym_throw, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(14103), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [262743] = 3, + STATE(10995), 1, + sym_trailing_return_type, + STATE(8728), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9074), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13477), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [326503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10710), 1, - anon_sym___attribute, - ACTIONS(10708), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(14105), 1, + sym_identifier, + ACTIONS(14107), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [262767] = 3, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9515), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [326536] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5786), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(1938), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(7992), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [262791] = 7, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(12774), 1, + sym_identifier, + STATE(2431), 1, + sym_splice_specifier, + STATE(2514), 1, + sym__splice_specialization_specifier, + STATE(2600), 1, + sym_enumerator_list, + STATE(8639), 1, + sym__scope_resolution, + STATE(2401), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2534), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326583] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(9826), 1, - anon_sym_requires, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2242), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9162), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [262823] = 3, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(12736), 1, + sym_identifier, + STATE(2855), 1, + sym__splice_specialization_specifier, + STATE(3688), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_enumerator_list, + STATE(8621), 1, + sym__scope_resolution, + STATE(2874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6021), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 3, + ACTIONS(8831), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5798), 13, + ACTIONS(8829), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -508698,169 +700147,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [262847] = 11, + [326655] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(10878), 1, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(12738), 1, sym_identifier, - ACTIONS(10880), 1, - sym_primitive_type, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6834), 1, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4648), 1, + sym_enumerator_list, + STATE(8614), 1, sym__scope_resolution, - STATE(1948), 2, - sym_sized_type_specifier, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6288), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(9524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262887] = 11, + sym_splice_expression, + [326702] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9491), 1, + ACTIONS(2078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(6989), 1, + anon_sym_LBRACE, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(10882), 1, + ACTIONS(12756), 1, sym_identifier, - ACTIONS(10884), 1, - sym_primitive_type, - STATE(1656), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6809), 1, + STATE(1997), 1, + sym_splice_specifier, + STATE(2026), 1, + sym__splice_specialization_specifier, + STATE(2033), 1, + sym_enumerator_list, + STATE(8593), 1, sym__scope_resolution, - STATE(3017), 2, - sym_sized_type_specifier, + STATE(2067), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(2255), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(9493), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262927] = 3, + sym_splice_expression, + [326749] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10625), 1, - anon_sym___attribute, - ACTIONS(10623), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9840), 1, + anon_sym___asm, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4486), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9838), 12, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262951] = 3, + [326782] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10888), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10886), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6093), 1, anon_sym_LPAREN2, + ACTIONS(11429), 1, + anon_sym_LBRACK, + ACTIONS(11637), 1, + anon_sym_STAR, + ACTIONS(11639), 1, + anon_sym_AMP_AMP, + ACTIONS(11641), 1, + anon_sym_AMP, + STATE(4923), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(8915), 1, + sym__abstract_declarator, + ACTIONS(9072), 4, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [262975] = 11, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [326823] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2744), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(8272), 1, + anon_sym_LBRACE, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(12758), 1, + sym_identifier, + STATE(2677), 1, + sym_splice_specifier, + STATE(2837), 1, + sym__splice_specialization_specifier, + STATE(2843), 1, + sym_enumerator_list, + STATE(8588), 1, + sym__scope_resolution, + STATE(2607), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2802), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326870] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8121), 1, + ACTIONS(3443), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(9021), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - ACTIONS(10890), 1, + ACTIONS(12760), 1, sym_identifier, - ACTIONS(10892), 1, - sym_primitive_type, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6838), 1, + STATE(3640), 1, + sym__splice_specialization_specifier, + STATE(4072), 1, + sym_splice_specifier, + STATE(4279), 1, + sym_enumerator_list, + STATE(8571), 1, sym__scope_resolution, - STATE(4971), 2, - sym_sized_type_specifier, + STATE(3624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6220), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(9058), 3, + STATE(10976), 3, sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326917] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(2648), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(8096), 1, + anon_sym_LBRACE, + ACTIONS(10727), 1, + anon_sym_COLON_COLON, + ACTIONS(12764), 1, + sym_identifier, + STATE(2519), 1, + sym_splice_specifier, + STATE(2567), 1, + sym__splice_specialization_specifier, + STATE(2745), 1, + sym_enumerator_list, + STATE(8604), 1, + sym__scope_resolution, + STATE(2468), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2577), 2, sym_template_type, + sym_splice_type_specifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263015] = 3, + sym_splice_expression, + [326964] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10684), 1, - anon_sym___attribute, - ACTIONS(10682), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(3091), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(10145), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [263039] = 3, + ACTIONS(12738), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_splice_specifier, + STATE(4648), 1, + sym_enumerator_list, + STATE(8638), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4502), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [327011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10896), 3, + ACTIONS(8709), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10894), 13, + ACTIONS(8711), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -508874,35 +700428,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [263063] = 3, + [327035] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 3, - anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, anon_sym_LBRACK, + ACTIONS(14111), 1, anon_sym___asm, - ACTIONS(5876), 13, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14109), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [263087] = 3, + [327071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 3, + ACTIONS(14115), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5729), 13, + ACTIONS(14113), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -508916,14 +700476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [263111] = 3, + [327095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 3, + ACTIONS(14119), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10898), 13, + ACTIONS(14117), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -508937,79 +700497,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [263135] = 3, + [327119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10688), 1, + ACTIONS(8939), 1, anon_sym___attribute, - ACTIONS(10686), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(14121), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8941), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_or, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [263159] = 3, + [327145] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5737), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [263183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10904), 1, + ACTIONS(14125), 1, anon_sym___asm, - STATE(2903), 1, + STATE(4505), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10902), 11, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14123), 8, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [263215] = 3, + [327181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10676), 1, + ACTIONS(8955), 1, anon_sym___attribute, - ACTIONS(10674), 15, + ACTIONS(8957), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509025,399 +700567,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263239] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(10906), 1, - sym_identifier, - ACTIONS(10908), 1, - sym_primitive_type, - STATE(1637), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6803), 1, - sym__scope_resolution, - STATE(2357), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9549), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263279] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(10910), 1, - sym_identifier, - ACTIONS(10912), 1, - sym_primitive_type, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6849), 1, - sym__scope_resolution, - STATE(4149), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263319] = 9, + [327205] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - STATE(5844), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9192), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263355] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7470), 1, + ACTIONS(10478), 1, anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - STATE(5846), 1, + STATE(8398), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - ACTIONS(9434), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(8089), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263391] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - STATE(5847), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9772), 2, - anon_sym___attribute, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263427] = 9, + [327239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - STATE(5849), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10023), 2, + ACTIONS(8087), 1, anon_sym___attribute, - anon_sym_LBRACK, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 5, + ACTIONS(8089), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263463] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9411), 1, - anon_sym_requires, - STATE(5822), 1, - sym_trailing_return_type, - ACTIONS(9192), 2, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9194), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263499] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(10872), 1, - sym_identifier, - ACTIONS(10874), 1, - sym_primitive_type, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6813), 1, - sym__scope_resolution, - STATE(2575), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263539] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(5824), 1, - sym_trailing_return_type, - ACTIONS(9772), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263575] = 9, + [327263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, - anon_sym_DASH_GT, - ACTIONS(10336), 1, - anon_sym_requires, - STATE(5825), 1, - sym_trailing_return_type, - ACTIONS(10023), 2, + ACTIONS(8087), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(10025), 2, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [263611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10916), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10914), 13, + ACTIONS(8089), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [263635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8079), 3, - anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5064), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [263659] = 3, + [327295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 3, + ACTIONS(8992), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5733), 13, + ACTIONS(8994), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [263683] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, anon_sym_LBRACK, - ACTIONS(10904), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10902), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [263715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5743), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5745), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [263739] = 3, + anon_sym_requires, + [327319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 3, + ACTIONS(14129), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5808), 13, + ACTIONS(14127), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -509431,169 +700681,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [263763] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10920), 1, - anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 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, - [263795] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10023), 1, - anon_sym___attribute, - ACTIONS(10922), 1, - anon_sym_requires, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [263827] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5844), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [263863] = 11, + [327343] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13205), 1, anon_sym_COLON_COLON, - ACTIONS(10836), 1, + ACTIONS(14019), 1, sym_identifier, - ACTIONS(10838), 1, - sym_primitive_type, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6842), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7872), 1, sym__scope_resolution, - STATE(2575), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10386), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10976), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263903] = 7, + sym_splice_type_specifier, + sym_splice_expression, + [327385] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(10830), 1, - anon_sym___asm, - STATE(2903), 1, + ACTIONS(11826), 1, + anon_sym_STAR, + ACTIONS(11828), 1, + anon_sym_AMP_AMP, + ACTIONS(11830), 1, + anon_sym_AMP, + STATE(4969), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10826), 11, + STATE(8967), 1, + sym__abstract_declarator, + ACTIONS(9072), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [263935] = 7, + anon_sym_GT2, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [327425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 11, + ACTIONS(8541), 1, + anon_sym___attribute, + ACTIONS(8543), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263967] = 3, + [327449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10718), 1, + ACTIONS(8541), 1, anon_sym___attribute, - ACTIONS(10716), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -509602,20 +700786,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + [327481] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(10478), 1, + anon_sym_requires, + STATE(8409), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [263991] = 3, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [327515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10927), 3, + ACTIONS(8671), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10925), 13, + ACTIONS(8673), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -509629,73 +700833,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264015] = 7, + [327539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8693), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10846), 1, anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 11, + ACTIONS(8695), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264047] = 7, + [327563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8675), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10850), 1, anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 11, + ACTIONS(8677), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264079] = 7, + [327587] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(14131), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9346), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [327631] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14133), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10337), 1, + sym_splice_type_specifier, + STATE(11398), 1, + sym_qualified_identifier, + ACTIONS(14135), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [327675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8935), 1, anon_sym___attribute, - ACTIONS(10929), 1, - anon_sym_requires, - ACTIONS(10742), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6200), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 8, + ACTIONS(8937), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -509704,37 +700952,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [264111] = 7, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [327699] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14137), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10125), 1, + sym_splice_type_specifier, + STATE(10660), 1, + sym_qualified_identifier, + ACTIONS(14139), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [327743] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10854), 1, + ACTIONS(14143), 1, anon_sym___asm, - STATE(2903), 1, + STATE(4505), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10852), 11, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14141), 8, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [264143] = 3, + [327779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10722), 1, + ACTIONS(8559), 1, anon_sym___attribute, - ACTIONS(10720), 15, + ACTIONS(8561), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509750,12 +701037,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [264167] = 3, + [327803] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8559), 1, + anon_sym___attribute, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [327835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10595), 1, + ACTIONS(9037), 1, anon_sym___attribute, - ACTIONS(10593), 15, + ACTIONS(9039), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509771,43 +701083,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [264191] = 11, + [327859] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10890), 1, + ACTIONS(14145), 1, sym_identifier, - ACTIONS(10892), 1, - sym_primitive_type, - STATE(4093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6830), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(4971), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10243), 1, + sym_splice_type_specifier, + STATE(10700), 1, + sym_qualified_identifier, + ACTIONS(14147), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8123), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [264231] = 3, + sym_splice_expression, + [327903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 3, + ACTIONS(14151), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5763), 13, + ACTIONS(14149), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -509821,198 +701135,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264255] = 7, + [327927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9192), 1, + ACTIONS(8721), 3, anon_sym___attribute, - ACTIONS(9420), 1, - anon_sym_requires, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [264287] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, anon_sym_LBRACK, - ACTIONS(10920), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 11, + anon_sym___asm, + ACTIONS(8723), 13, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264319] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 11, - anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264351] = 11, + [327951] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8113), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10936), 1, + ACTIONS(14153), 1, sym_identifier, - ACTIONS(10938), 1, - sym_primitive_type, - STATE(4441), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6801), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(2813), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10159), 1, + sym_splice_type_specifier, + STATE(10822), 1, + sym_qualified_identifier, + ACTIONS(14155), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [264391] = 7, + sym_splice_expression, + [327995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10830), 1, - anon_sym___attribute, - STATE(2866), 1, + ACTIONS(14159), 1, + anon_sym___asm, + STATE(4505), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10826), 11, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14157), 8, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [264423] = 12, + [328031] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(10286), 1, - anon_sym_TILDE, - ACTIONS(10292), 1, - anon_sym_operator, - ACTIONS(10940), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(10942), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10945), 1, + ACTIONS(13050), 1, anon_sym_COLON_COLON, - ACTIONS(10947), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(6496), 1, + ACTIONS(14161), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(9058), 3, - sym_decltype, + STATE(3712), 2, sym_template_type, + sym_splice_type_specifier, + STATE(9431), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(3529), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [264465] = 9, + sym_splice_expression, + [328075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9823), 1, - anon_sym_requires, - STATE(5824), 1, - sym_trailing_return_type, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, + ACTIONS(9093), 1, + anon_sym___attribute, + ACTIONS(9095), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [264501] = 3, + anon_sym_requires, + [328099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(9097), 1, anon_sym___attribute, - ACTIONS(10021), 15, + ACTIONS(9099), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510028,269 +701287,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [264525] = 7, + [328123] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10834), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14163), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10146), 1, + sym_splice_type_specifier, + STATE(10759), 1, + sym_qualified_identifier, + ACTIONS(14165), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328167] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14167), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10406), 1, + sym_splice_type_specifier, + STATE(11327), 1, + sym_qualified_identifier, + ACTIONS(14169), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9101), 1, anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 11, + ACTIONS(9103), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [264557] = 7, + [328235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, anon_sym_requires, - ACTIONS(10023), 1, - anon_sym___attribute, - ACTIONS(7492), 2, + STATE(8438), 1, + sym_trailing_return_type, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 8, + ACTIONS(7544), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [264589] = 9, + [328269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_DASH_GT, - ACTIONS(7470), 1, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(12747), 1, anon_sym_requires, - ACTIONS(10023), 1, - anon_sym_LBRACK, - STATE(5849), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6043), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 6, + ACTIONS(7544), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [264625] = 3, + anon_sym_LBRACK, + [328301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 3, + ACTIONS(9109), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5741), 13, + ACTIONS(9111), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [264649] = 3, + anon_sym_requires, + [328325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9192), 1, + ACTIONS(14173), 3, anon_sym___attribute, - ACTIONS(9181), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14171), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264673] = 7, + [328349] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10846), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14175), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10106), 1, + sym_splice_type_specifier, + STATE(10737), 1, + sym_qualified_identifier, + ACTIONS(14177), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 3, anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9406), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264705] = 11, + [328417] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8175), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10872), 1, + ACTIONS(14179), 1, sym_identifier, - ACTIONS(10874), 1, - sym_primitive_type, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6850), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(2575), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10384), 1, + sym_splice_type_specifier, + STATE(10618), 1, + sym_qualified_identifier, + ACTIONS(14181), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3927), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [264745] = 7, + sym_splice_expression, + [328461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10850), 1, + ACTIONS(9456), 3, anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9458), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264777] = 7, + [328485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10854), 1, + ACTIONS(9404), 3, anon_sym___attribute, - STATE(2866), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10852), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9406), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264809] = 14, + [328509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9889), 1, - anon_sym_COLON, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(10951), 1, + ACTIONS(9082), 1, anon_sym___attribute, - ACTIONS(10953), 1, - anon_sym_EQ, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(7310), 1, - sym_bitfield_clause, - STATE(7311), 1, - sym_initializer_list, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10949), 3, + ACTIONS(9084), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [264855] = 3, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [328533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6613), 3, + ACTIONS(9404), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6611), 13, + ACTIONS(9406), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -510304,199 +701630,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264879] = 7, + [328557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(9404), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10904), 1, anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10902), 11, + ACTIONS(9406), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [264911] = 3, + anon_sym_GT2, + anon_sym_try, + [328581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10619), 1, + ACTIONS(9404), 3, anon_sym___attribute, - ACTIONS(10617), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9406), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264935] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, - anon_sym_STAR, - ACTIONS(8599), 1, - anon_sym_AMP_AMP, - ACTIONS(8601), 1, - anon_sym_AMP, - STATE(3154), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6948), 1, - sym__abstract_declarator, - ACTIONS(8392), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [264975] = 11, + [328605] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8051), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10880), 1, - sym_primitive_type, - ACTIONS(10955), 1, + ACTIONS(14183), 1, sym_identifier, - STATE(4346), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6795), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(1948), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10211), 1, + sym_splice_type_specifier, + STATE(10907), 1, + sym_qualified_identifier, + ACTIONS(14185), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [265015] = 3, + sym_splice_expression, + [328649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10706), 1, + ACTIONS(9404), 3, anon_sym___attribute, - ACTIONS(10704), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9406), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [265039] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(10957), 1, - sym_identifier, - ACTIONS(10959), 1, - sym_primitive_type, - STATE(1673), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6848), 1, - sym__scope_resolution, - STATE(3159), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9587), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [265079] = 9, + [328673] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(7470), 1, + ACTIONS(12869), 1, anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5846), 1, + STATE(8441), 1, sym_trailing_return_type, - ACTIONS(6221), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 6, + ACTIONS(7627), 7, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [265115] = 5, + anon_sym_LBRACK, + [328707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(10876), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10961), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6201), 11, + ACTIONS(12869), 1, + anon_sym_requires, + ACTIONS(12866), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -510505,375 +701775,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265143] = 11, + [328739] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9547), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10963), 1, + ACTIONS(14187), 1, sym_identifier, - ACTIONS(10965), 1, - sym_primitive_type, - STATE(1633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6803), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(2357), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10282), 1, + sym_splice_type_specifier, + STATE(11024), 1, + sym_qualified_identifier, + ACTIONS(14189), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [265183] = 5, + sym_splice_expression, + [328783] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6211), 3, - anon_sym___attribute, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8443), 1, + sym_trailing_return_type, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6213), 10, + [328817] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym___attribute, + ACTIONS(13035), 1, + anon_sym_requires, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [265211] = 11, + anon_sym_LBRACK, + [328849] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8095), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10967), 1, + ACTIONS(14191), 1, sym_identifier, - ACTIONS(10969), 1, - sym_primitive_type, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6793), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(1948), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10435), 1, + sym_splice_type_specifier, + STATE(10670), 1, + sym_qualified_identifier, + ACTIONS(14193), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8097), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [265251] = 3, + sym_splice_expression, + [328893] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10973), 3, + ACTIONS(8541), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10971), 13, + ACTIONS(14195), 1, + anon_sym_requires, + ACTIONS(14072), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265275] = 3, + anon_sym_LBRACK, + [328925] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10661), 1, - anon_sym___attribute, - ACTIONS(10659), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(14195), 1, + anon_sym_requires, + STATE(8447), 1, + sym_trailing_return_type, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [265299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9434), 1, - anon_sym___attribute, - ACTIONS(9423), 15, - anon_sym_DOT_DOT_DOT, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [265323] = 11, + [328959] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(9569), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(10938), 1, - sym_primitive_type, - ACTIONS(10975), 1, + ACTIONS(14198), 1, sym_identifier, - STATE(2298), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6808), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(2813), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10144), 1, + sym_splice_type_specifier, + STATE(10796), 1, + sym_qualified_identifier, + ACTIONS(14200), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [265363] = 3, + sym_splice_expression, + [329003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(8959), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(14121), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14202), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8961), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265387] = 3, + anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [329031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(8559), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(14204), 1, + anon_sym_requires, + ACTIONS(14078), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265411] = 3, + anon_sym_LBRACK, + [329063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(8999), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(9001), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265435] = 3, + anon_sym_requires, + [329087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(9003), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(9005), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265459] = 3, + anon_sym_requires, + [329111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(9011), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(9013), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265483] = 3, + anon_sym_requires, + [329135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 3, + ACTIONS(9015), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 13, + ACTIONS(9017), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [265507] = 7, + anon_sym_requires, + [329159] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10920), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 11, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(10478), 1, + anon_sym_requires, + STATE(8456), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 7, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265539] = 7, + anon_sym_LBRACK, + [329193] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14207), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10080), 1, + sym_splice_type_specifier, + STATE(10581), 1, + sym_qualified_identifier, + ACTIONS(14209), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329237] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10437), 1, + anon_sym_DASH_GT, + ACTIONS(10478), 1, + anon_sym_requires, + STATE(8392), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10828), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym___asm, - STATE(2933), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 11, + [329271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, + anon_sym___attribute, + ACTIONS(7627), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [265571] = 7, + [329295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(9637), 1, + ACTIONS(10478), 1, anon_sym_requires, - ACTIONS(9539), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 8, + ACTIONS(7627), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -510882,12 +702231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [265603] = 3, + [329327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(7546), 1, anon_sym___attribute, - ACTIONS(10051), 15, + ACTIONS(7544), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510903,23 +702252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [265627] = 7, + [329351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(7546), 1, anon_sym___attribute, - ACTIONS(7492), 2, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6200), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 8, + ACTIONS(7544), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -510928,1739 +702277,1666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [265659] = 3, + [329383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10692), 1, + ACTIONS(14213), 3, anon_sym___attribute, - ACTIONS(10690), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14211), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [265683] = 7, + [329407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14217), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10934), 1, anon_sym___asm, - STATE(2903), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 11, + ACTIONS(14215), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [265715] = 6, + [329431] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7771), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [265744] = 9, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(14219), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9729), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [329475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(10979), 1, + ACTIONS(9029), 1, anon_sym___attribute, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10977), 7, + ACTIONS(9031), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - [265779] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, - anon_sym_requires, - STATE(6259), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [265812] = 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [329499] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - STATE(6095), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4127), 1, anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13439), 1, + anon_sym_COLON, + ACTIONS(13443), 1, anon_sym_LBRACK, + ACTIONS(14223), 1, + anon_sym___attribute, + ACTIONS(14225), 1, anon_sym_EQ, - anon_sym_try, - [265845] = 8, + STATE(4234), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(9406), 1, + sym_bitfield_clause, + STATE(9418), 1, + sym_initializer_list, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14221), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [329545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - STATE(6127), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, + ACTIONS(8689), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8691), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [265878] = 7, + [329569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8705), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10904), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10902), 10, + ACTIONS(8707), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9007), 1, + anon_sym___attribute, + ACTIONS(9009), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [265909] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10308), 1, - anon_sym_TILDE, - ACTIONS(10314), 1, - anon_sym_operator, - ACTIONS(10981), 1, - sym_identifier, - ACTIONS(10983), 1, - anon_sym_COLON_COLON, - ACTIONS(10985), 1, - anon_sym_template, - STATE(2430), 1, - sym_operator_name, - STATE(6533), 1, - sym__scope_resolution, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(2428), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [265948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10814), 1, - sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7623), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [265977] = 7, + [329617] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10920), 1, + ACTIONS(14229), 1, anon_sym___asm, - STATE(3082), 1, + STATE(4505), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10918), 10, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14227), 8, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [266008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10814), 1, - sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7649), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [266037] = 7, + [329653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8731), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10934), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 10, + ACTIONS(8733), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266068] = 7, + [329677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(11399), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10830), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10826), 10, + ACTIONS(6515), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266099] = 7, + [329701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14233), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10834), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 10, + ACTIONS(14231), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266130] = 7, + [329725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14237), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10846), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 10, + ACTIONS(14235), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266161] = 6, + [329749] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7679), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [266190] = 7, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + ACTIONS(14239), 1, + anon_sym_virtual, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9996), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [329793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8685), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10850), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 10, + ACTIONS(8687), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266221] = 7, + [329817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(8713), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10854), 1, anon_sym___asm, - STATE(3082), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10852), 10, + ACTIONS(8715), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [266252] = 9, + [329841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(8717), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10989), 1, anon_sym___asm, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 7, + ACTIONS(8719), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [266287] = 9, + [329865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10993), 1, - anon_sym___asm, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 7, + ACTIONS(9078), 1, + anon_sym___attribute, + ACTIONS(9080), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [266322] = 9, + anon_sym_requires, + [329889] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(7846), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14241), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10289), 1, + sym_splice_type_specifier, + STATE(11099), 1, + sym_qualified_identifier, + ACTIONS(14243), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329933] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym___attribute, - STATE(6420), 1, + ACTIONS(12872), 1, + anon_sym_requires, + STATE(8315), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, + ACTIONS(7627), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [266357] = 6, + anon_sym_EQ, + anon_sym_try, + [329966] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2607), 1, - sym_template_argument_list, - ACTIONS(4940), 4, + ACTIONS(8541), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 8, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + STATE(8409), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [266386] = 9, + anon_sym_LBRACK, + [330001] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14247), 1, + aux_sym_preproc_if_token2, + ACTIONS(14249), 1, + aux_sym_preproc_else_token1, + ACTIONS(14251), 1, + aux_sym_preproc_elif_token1, + STATE(8747), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8748), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8986), 1, + sym_enumerator, + ACTIONS(14253), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10611), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10612), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [330040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9893), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9963), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(7846), 1, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym___attribute, - STATE(6430), 1, + STATE(8596), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7544), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266421] = 9, + [330133] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(7629), 1, + anon_sym___attribute, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(7846), 1, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym___attribute, - STATE(6436), 1, + STATE(8553), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7627), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266456] = 9, + [330168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(8087), 1, + anon_sym___attribute, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(7846), 1, + ACTIONS(11140), 1, anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym___attribute, - STATE(6440), 1, + STATE(8635), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 5, + ACTIONS(8089), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266491] = 8, + [330203] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(7525), 1, + ACTIONS(8541), 1, + anon_sym___attribute, + ACTIONS(10812), 1, anon_sym_requires, - STATE(6180), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + STATE(8555), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 6, + ACTIONS(8543), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - [266524] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10814), 1, - sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7732), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [266553] = 8, + anon_sym_GT2, + [330238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(7525), 1, + ACTIONS(10753), 1, anon_sym_requires, - STATE(6174), 1, + STATE(8276), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7627), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [266586] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2607), 1, - sym_template_argument_list, - ACTIONS(8079), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5064), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [266615] = 11, + anon_sym_EQ, + anon_sym_try, + [330271] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(10997), 1, - aux_sym_preproc_if_token2, - ACTIONS(10999), 1, - aux_sym_preproc_else_token1, - ACTIONS(11001), 1, - aux_sym_preproc_elif_token1, - STATE(6709), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6710), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6938), 1, - sym_enumerator, - ACTIONS(11003), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8757), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(8758), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [266654] = 9, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9431), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [330312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(7546), 1, anon_sym___attribute, - ACTIONS(9444), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12833), 1, anon_sym_requires, - STATE(6428), 1, + STATE(8568), 1, sym_trailing_return_type, - ACTIONS(9414), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7544), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266689] = 9, + [330347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(9705), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(12890), 1, anon_sym_requires, - STATE(6434), 1, + STATE(8570), 1, sym_trailing_return_type, - ACTIONS(9539), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, + ACTIONS(7627), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266724] = 9, + [330382] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(8087), 1, anon_sym___attribute, - ACTIONS(9829), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(13172), 1, anon_sym_requires, - STATE(6435), 1, + STATE(8573), 1, sym_trailing_return_type, - ACTIONS(9808), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(8089), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266759] = 9, + [330417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(8541), 1, anon_sym___attribute, - ACTIONS(11005), 1, + ACTIONS(11140), 1, + anon_sym_DASH_GT, + ACTIONS(14255), 1, anon_sym_requires, - STATE(6484), 1, + STATE(8575), 1, sym_trailing_return_type, - ACTIONS(10754), 2, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 5, + ACTIONS(8543), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [266794] = 9, + [330452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9930), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9668), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330510] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym___attribute, - STATE(6174), 1, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8259), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [266829] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(7544), 6, anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11010), 1, - anon_sym___attribute, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11008), 7, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [266864] = 11, + [330543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14105), 1, sym_identifier, - ACTIONS(10999), 1, - aux_sym_preproc_else_token1, - ACTIONS(11001), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11012), 1, - aux_sym_preproc_if_token2, - STATE(6662), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6663), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6938), 1, - sym_enumerator, - ACTIONS(11003), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8496), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(8497), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [266903] = 9, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9925), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330572] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - ACTIONS(11016), 1, - anon_sym___asm, - STATE(2930), 1, + ACTIONS(11902), 1, + anon_sym_STAR, + ACTIONS(11904), 1, + anon_sym_AMP_AMP, + ACTIONS(11906), 1, + anon_sym_AMP, + STATE(5441), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8393), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 7, - anon_sym_COMMA, - anon_sym_SEMI, + STATE(9131), 1, + sym__abstract_declarator, + ACTIONS(9072), 2, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [266938] = 9, + anon_sym_requires, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [330611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym___attribute, - STATE(6180), 1, + ACTIONS(10753), 1, + anon_sym_requires, + STATE(8268), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8089), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [266973] = 6, + anon_sym_EQ, + anon_sym_try, + [330644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7523), 2, + STATE(9813), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267002] = 9, + [330673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9915), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330702] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, anon_sym___attribute, - STATE(6259), 1, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(8438), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7544), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [267037] = 8, + [330737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(7629), 1, + anon_sym___attribute, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(9420), 1, + ACTIONS(12869), 1, anon_sym_requires, - STATE(6292), 1, + STATE(8441), 1, sym_trailing_return_type, - ACTIONS(9414), 2, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(7627), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - [267070] = 9, + [330772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(8087), 1, anon_sym___attribute, - STATE(6294), 1, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8443), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 5, + ACTIONS(8089), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [267105] = 8, + [330807] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9612), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(8541), 1, + anon_sym___attribute, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(7525), 1, + ACTIONS(14195), 1, anon_sym_requires, - STATE(6294), 1, + STATE(8447), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 6, + ACTIONS(8543), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [267138] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10308), 1, - anon_sym_TILDE, - ACTIONS(10314), 1, - anon_sym_operator, - ACTIONS(10981), 1, - sym_identifier, - ACTIONS(11018), 1, - anon_sym_COLON_COLON, - ACTIONS(11020), 1, - anon_sym_template, - STATE(3497), 1, - sym_operator_name, - STATE(6552), 1, - sym__scope_resolution, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(2428), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [267177] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11024), 1, - anon_sym___asm, - STATE(2930), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [267212] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11028), 1, - anon_sym___attribute, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11026), 7, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [267247] = 6, + anon_sym_LBRACK, + [330871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7473), 2, + STATE(9660), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267276] = 6, + [330900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(8956), 2, + STATE(9919), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267305] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(7494), 1, - anon_sym_requires, - STATE(6082), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [267338] = 6, + [330929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7502), 2, + STATE(9758), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267367] = 6, + [330958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7373), 2, + STATE(9777), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267396] = 9, + [330987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(14258), 1, + anon_sym_LT, + STATE(3966), 1, + sym_template_argument_list, + ACTIONS(11399), 4, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(11016), 1, anon_sym___asm, - STATE(2921), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 7, + ACTIONS(6515), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [267431] = 9, + [331016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9643), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331045] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(10993), 1, - anon_sym___asm, - STATE(2921), 1, + ACTIONS(14262), 1, + anon_sym___attribute, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(6543), 2, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 7, + ACTIONS(14260), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [267466] = 11, + anon_sym_try, + [331080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10286), 1, - anon_sym_TILDE, - ACTIONS(10292), 1, - anon_sym_operator, - ACTIONS(10940), 1, + ACTIONS(14105), 1, sym_identifier, - ACTIONS(10945), 1, - anon_sym_COLON_COLON, - ACTIONS(10947), 1, - anon_sym_template, - STATE(3377), 1, - sym_operator_name, - STATE(6496), 1, - sym__scope_resolution, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3529), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [267505] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6202), 1, - sym_trailing_return_type, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [267538] = 6, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9876), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7401), 2, + STATE(9967), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267567] = 6, + [331138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7571), 2, + STATE(10002), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267596] = 8, + [331167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(10753), 1, anon_sym_requires, - STATE(6081), 1, + STATE(8293), 1, sym_trailing_return_type, - ACTIONS(9808), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 6, + ACTIONS(8543), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [267629] = 6, + [331200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7692), 2, + STATE(10682), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267658] = 11, + [331229] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14245), 1, sym_identifier, - ACTIONS(10999), 1, + ACTIONS(14249), 1, aux_sym_preproc_else_token1, - ACTIONS(11001), 1, + ACTIONS(14251), 1, aux_sym_preproc_elif_token1, - ACTIONS(11030), 1, + ACTIONS(14264), 1, aux_sym_preproc_if_token2, - STATE(6697), 1, + STATE(8755), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6698), 1, + STATE(8757), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6938), 1, + STATE(8986), 1, sym_enumerator, - ACTIONS(11003), 2, + ACTIONS(14253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8984), 3, + STATE(10691), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(8991), 3, + STATE(11537), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [267697] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9826), 1, - anon_sym_requires, - STATE(6235), 1, - sym_trailing_return_type, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [267730] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(10757), 1, - anon_sym_requires, - STATE(6069), 1, - sym_trailing_return_type, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [267763] = 8, + [331268] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(10922), 1, - anon_sym_requires, - STATE(6244), 1, - sym_trailing_return_type, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [267796] = 6, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(14266), 1, + sym_identifier, + ACTIONS(14268), 1, + anon_sym_COLON_COLON, + ACTIONS(14270), 1, + anon_sym_LBRACK_COLON, + STATE(3893), 1, + sym_splice_specifier, + STATE(3932), 1, + sym_splice_type_specifier, + STATE(4045), 1, + sym_template_type, + STATE(4139), 1, + sym__splice_specialization_specifier, + STATE(8636), 1, + sym__scope_resolution, + STATE(4162), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [331311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7487), 2, + STATE(9676), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267825] = 6, + [331340] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9729), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [331381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(9048), 2, + STATE(9903), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267854] = 6, + [331410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(8295), 2, + STATE(11503), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267883] = 6, + [331439] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14249), 1, + aux_sym_preproc_else_token1, + ACTIONS(14251), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14272), 1, + aux_sym_preproc_if_token2, + STATE(8811), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8812), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8986), 1, + sym_enumerator, + ACTIONS(14253), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10989), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10990), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [331478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(8370), 2, + STATE(10505), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267912] = 9, + [331507] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9893), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(11034), 1, + ACTIONS(14276), 1, anon_sym___attribute, - STATE(2886), 1, + STATE(4234), 1, sym_parameter_list, - STATE(6611), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(6559), 2, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11032), 7, + ACTIONS(14274), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -512668,1970 +703944,1912 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267947] = 6, + [331542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(8433), 2, + STATE(10629), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267976] = 6, + [331571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(8489), 2, + STATE(10708), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268005] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10989), 1, - anon_sym___asm, - STATE(2921), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [268040] = 9, + [331600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11024), 1, - anon_sym___asm, - STATE(2921), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [268075] = 6, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10765), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, + ACTIONS(14105), 1, sym_identifier, - STATE(6385), 2, + STATE(8533), 2, sym_string_literal, sym_raw_string_literal, - STATE(7514), 2, + STATE(10819), 2, sym__string, sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268104] = 9, + [331658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym___attribute, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(13443), 1, anon_sym_LBRACK, - [268139] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, + ACTIONS(14280), 1, anon_sym___attribute, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6202), 1, - sym_trailing_return_type, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, + STATE(4234), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14278), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - [268174] = 9, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [331693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(11038), 1, - anon_sym___asm, - STATE(2930), 1, + ACTIONS(14284), 1, + anon_sym___attribute, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 7, + ACTIONS(14282), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [268209] = 6, + [331728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, - sym_identifier, - STATE(6385), 2, + STATE(8341), 2, sym_string_literal, sym_raw_string_literal, - STATE(7786), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, + ACTIONS(8739), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(14086), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(159), 5, + ACTIONS(14088), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268238] = 9, + [331755] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(9826), 1, + ACTIONS(12824), 1, anon_sym_requires, - STATE(6235), 1, + STATE(8314), 1, sym_trailing_return_type, - ACTIONS(9808), 2, + ACTIONS(12744), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7544), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [268273] = 9, + anon_sym_EQ, + anon_sym_try, + [331788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(14258), 1, + anon_sym_LT, + STATE(3966), 1, + sym_template_argument_list, + ACTIONS(6210), 4, anon_sym___attribute, - ACTIONS(10922), 1, - anon_sym_requires, - STATE(6244), 1, - sym_trailing_return_type, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 5, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6203), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - [268308] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10814), 1, - sym_identifier, - STATE(6385), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(8612), 2, - sym__string, - sym_concatenated_string, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [268337] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [331817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(9417), 1, + ACTIONS(13110), 1, anon_sym_requires, - STATE(6087), 1, + STATE(8316), 1, sym_trailing_return_type, - ACTIONS(9414), 2, + ACTIONS(13032), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(8089), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [268370] = 11, + [331850] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(10296), 1, - anon_sym_TILDE, - ACTIONS(10302), 1, - anon_sym_operator, - ACTIONS(11040), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, sym_identifier, - ACTIONS(11042), 1, + ACTIONS(13050), 1, anon_sym_COLON_COLON, - ACTIONS(11044), 1, - anon_sym_template, - STATE(3503), 1, - sym_operator_name, - STATE(6491), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, sym__scope_resolution, - STATE(9058), 3, - sym_decltype, + STATE(3712), 2, sym_template_type, + sym_splice_type_specifier, + STATE(9574), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, sym_dependent_type_identifier, - STATE(3692), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [268409] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11048), 1, - anon_sym___attribute, - STATE(2886), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11046), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [268444] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, - anon_sym_STAR, - ACTIONS(8668), 1, - anon_sym_AMP_AMP, - ACTIONS(8670), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7030), 1, - sym__abstract_declarator, - ACTIONS(8392), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [268483] = 8, + sym_splice_expression, + [331891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(10606), 1, anon_sym_DASH_GT, - ACTIONS(7494), 1, + ACTIONS(14075), 1, anon_sym_requires, - STATE(6073), 1, + STATE(8317), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 6, + ACTIONS(8543), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [268516] = 9, + [331924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(11038), 1, - anon_sym___asm, - STATE(2921), 1, + ACTIONS(14288), 1, + anon_sym___attribute, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(6543), 2, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 7, + ACTIONS(14286), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [268551] = 11, + anon_sym_try, + [331959] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14245), 1, sym_identifier, - ACTIONS(10999), 1, + ACTIONS(14249), 1, aux_sym_preproc_else_token1, - ACTIONS(11001), 1, + ACTIONS(14251), 1, aux_sym_preproc_elif_token1, - ACTIONS(11050), 1, + ACTIONS(14290), 1, aux_sym_preproc_if_token2, - STATE(6671), 1, + STATE(8735), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6708), 1, + STATE(8759), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(6938), 1, + STATE(8986), 1, sym_enumerator, - ACTIONS(11003), 2, + ACTIONS(14253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8308), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(8568), 3, + STATE(10843), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [268590] = 8, + STATE(11332), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [331998] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13046), 1, + sym_identifier, + ACTIONS(13050), 1, + anon_sym_COLON_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(3712), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9384), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10976), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [332039] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, anon_sym_DASH_GT, - ACTIONS(9542), 1, + STATE(8456), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [332074] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, + anon_sym___attribute, + ACTIONS(10478), 1, anon_sym_requires, - STATE(6084), 1, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + STATE(8392), 1, sym_trailing_return_type, - ACTIONS(9539), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 6, + ACTIONS(7627), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [268623] = 5, + [332109] = 9, ACTIONS(3), 1, sym_comment, - STATE(6169), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5790), 3, + ACTIONS(8087), 1, + anon_sym___attribute, + ACTIONS(10478), 1, + anon_sym_requires, + ACTIONS(11171), 1, + anon_sym_DASH_GT, + STATE(8398), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(10793), 5, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [332144] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14105), 1, + sym_identifier, + STATE(8533), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9851), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10795), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268650] = 9, + [332173] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10028), 1, - anon_sym_requires, - STATE(5618), 1, - sym_trailing_return_type, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 4, + ACTIONS(14292), 1, + anon_sym_SEMI, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9781), 1, + sym_gnu_asm_expression, + STATE(9782), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [332215] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, + anon_sym_LBRACK, + STATE(4509), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9862), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [268684] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(2518), 1, - sym_enumerator_list, - STATE(6795), 1, - sym__scope_resolution, - ACTIONS(11052), 2, - anon_sym_class, - anon_sym_struct, - STATE(5039), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [268724] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3027), 1, - sym_enumerator_list, - STATE(6840), 1, - sym__scope_resolution, - ACTIONS(11054), 2, - anon_sym_class, - anon_sym_struct, - STATE(3541), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [268764] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [332243] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(10232), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11056), 1, + ACTIONS(14294), 1, anon_sym_SEMI, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11060), 1, + ACTIONS(14298), 1, anon_sym_EQ, - ACTIONS(11062), 1, + ACTIONS(14300), 1, anon_sym_try, - STATE(694), 1, + STATE(2705), 1, sym_compound_statement, - STATE(8050), 1, + STATE(10142), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(695), 4, + STATE(2706), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [268802] = 12, + [332281] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(9569), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9685), 1, + ACTIONS(14302), 1, sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2748), 1, - sym_enumerator_list, - STATE(6808), 1, - sym__scope_resolution, - ACTIONS(11064), 2, - anon_sym_class, - anon_sym_struct, - STATE(4167), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [268842] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(14304), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3981), 1, sym_template_type, - STATE(6789), 1, - sym_access_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(7225), 2, - sym__class_name, + STATE(3982), 1, + sym_dependent_type_identifier, + STATE(4151), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8549), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [268880] = 12, + sym_splice_type_specifier, + sym_splice_expression, + [332323] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(5406), 1, - sym_enumerator_list, - STATE(6793), 1, - sym__scope_resolution, - ACTIONS(11066), 2, - anon_sym_class, - anon_sym_struct, - STATE(5033), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [268920] = 13, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10812), 1, + anon_sym_requires, + STATE(8555), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [332355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(14258), 1, + anon_sym_LT, + STATE(3966), 1, + sym_template_argument_list, + ACTIONS(9225), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10107), 1, + ACTIONS(9227), 9, anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10732), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7711), 1, - sym_gnu_asm_expression, - STATE(7714), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268962] = 12, + [332381] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3955), 1, - sym_enumerator_list, - STATE(6830), 1, - sym__scope_resolution, - ACTIONS(11068), 2, - anon_sym_class, - anon_sym_struct, - STATE(3806), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [269002] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(9547), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(14241), 1, sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2308), 1, - sym_enumerator_list, - STATE(6803), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - ACTIONS(11070), 2, - anon_sym_class, - anon_sym_struct, - STATE(2442), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10289), 1, + sym_splice_type_specifier, + STATE(11099), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [269042] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10730), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11072), 1, - anon_sym_SEMI, - ACTIONS(11074), 1, - anon_sym_EQ, - ACTIONS(11076), 1, - anon_sym_try, - STATE(1784), 1, - sym_compound_statement, - STATE(8021), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1785), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [269080] = 3, + sym_splice_expression, + [332421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - sym_identifier, - ACTIONS(5488), 13, + ACTIONS(8087), 1, + anon_sym___attribute, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 6, + anon_sym_DOT_DOT_DOT, 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, - [269102] = 11, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [332451] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11078), 1, + ACTIONS(14306), 1, anon_sym_SEMI, - ACTIONS(11080), 1, + ACTIONS(14308), 1, anon_sym_EQ, - ACTIONS(11082), 1, + ACTIONS(14310), 1, anon_sym_try, - STATE(747), 1, + STATE(726), 1, sym_compound_statement, - STATE(7857), 1, + STATE(10306), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(748), 4, + STATE(743), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [269140] = 13, + [332489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10107), 1, + ACTIONS(8559), 1, + anon_sym___attribute, + ACTIONS(10812), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(10115), 1, + anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(10748), 1, - anon_sym_SEMI, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(7397), 1, - sym_gnu_asm_expression, - STATE(7422), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [269182] = 11, + anon_sym_GT2, + [332519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10752), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14312), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10268), 1, + sym_splice_type_specifier, + STATE(10921), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [332559] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(11058), 1, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11084), 1, + ACTIONS(14314), 1, anon_sym_SEMI, - ACTIONS(11086), 1, + ACTIONS(14316), 1, anon_sym_EQ, - ACTIONS(11088), 1, + ACTIONS(14318), 1, anon_sym_try, - STATE(2081), 1, + STATE(885), 1, sym_compound_statement, - STATE(8079), 1, + STATE(10329), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2082), 4, + STATE(888), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [269220] = 12, + [332597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(4575), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, + ACTIONS(14320), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3027), 1, - sym_enumerator_list, - STATE(6842), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - ACTIONS(11090), 2, - anon_sym_class, - anon_sym_struct, - STATE(2952), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10325), 1, + sym_splice_type_specifier, + STATE(11040), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [269260] = 11, + sym_splice_expression, + [332637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10730), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11074), 1, - anon_sym_EQ, - ACTIONS(11076), 1, - anon_sym_try, - ACTIONS(11092), 1, - anon_sym_SEMI, - STATE(1813), 1, - sym_compound_statement, - STATE(7980), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1748), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [269298] = 9, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14187), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10282), 1, + sym_splice_type_specifier, + STATE(11024), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [332677] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(11038), 1, - anon_sym___asm, - STATE(3080), 1, + ACTIONS(14023), 1, + anon_sym_SEMI, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(9973), 1, + sym_gnu_asm_expression, + STATE(9974), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 6, + [332719] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(12833), 1, + anon_sym_requires, + STATE(8568), 1, + sym_trailing_return_type, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [269332] = 8, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [332751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 1, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(12833), 1, + anon_sym_requires, + ACTIONS(12744), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [332781] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - STATE(6512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6164), 7, + ACTIONS(13549), 1, anon_sym_COMMA, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14017), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9929), 1, + sym_gnu_asm_expression, + STATE(9933), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - [269364] = 12, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [332823] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8057), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10590), 1, anon_sym_COLON_COLON, - ACTIONS(9381), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, + ACTIONS(14322), 1, sym_identifier, - STATE(4656), 1, + ACTIONS(14324), 1, + anon_sym_template, + STATE(2670), 1, sym_template_type, - STATE(5044), 1, - sym_enumerator_list, - STATE(6851), 1, - sym__scope_resolution, - ACTIONS(11094), 2, - anon_sym_class, - anon_sym_struct, - STATE(4841), 2, - sym__class_name, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8564), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [269404] = 11, + sym_splice_type_specifier, + sym_splice_expression, + [332865] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10764), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11096), 1, - anon_sym_SEMI, - ACTIONS(11098), 1, - anon_sym_EQ, - ACTIONS(11100), 1, - anon_sym_try, - STATE(2068), 1, - sym_compound_statement, - STATE(8106), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2069), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [269442] = 9, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14326), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10139), 1, + sym_splice_type_specifier, + STATE(11071), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [332905] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11016), 1, - anon_sym___asm, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [269476] = 7, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14207), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10080), 1, + sym_splice_type_specifier, + STATE(10581), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [332945] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(12890), 1, anon_sym_requires, - ACTIONS(9192), 1, - anon_sym___attribute, - ACTIONS(7492), 2, + STATE(8570), 1, + sym_trailing_return_type, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(7627), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [269506] = 7, + [332977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10830), 1, + ACTIONS(7629), 1, anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10826), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(12890), 1, + anon_sym_requires, + ACTIONS(12866), 2, anon_sym_final, anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_GT2, - anon_sym_requires, - [269536] = 9, + [333007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(13172), 1, + anon_sym_requires, + STATE(8573), 1, + sym_trailing_return_type, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10115), 1, anon_sym_LBRACK, - ACTIONS(10993), 1, - anon_sym___asm, - STATE(3080), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [269570] = 5, + anon_sym_GT2, + [333039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2607), 1, - sym_template_argument_list, - ACTIONS(6495), 3, + ACTIONS(8087), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6497), 9, + ACTIONS(13172), 1, + anon_sym_requires, + ACTIONS(13032), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8397), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8089), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [269596] = 12, + anon_sym_LBRACK, + anon_sym_GT2, + [333069] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10719), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + ACTIONS(14328), 1, + sym_identifier, + ACTIONS(14330), 1, + anon_sym_template, + STATE(3411), 1, sym_template_type, - STATE(3027), 1, - sym_enumerator_list, - STATE(6815), 1, - sym__scope_resolution, - ACTIONS(11102), 2, - anon_sym_class, - anon_sym_struct, - STATE(4235), 2, - sym__class_name, + STATE(3439), 1, + sym_dependent_type_identifier, + STATE(3539), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8571), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [269636] = 12, + sym_splice_type_specifier, + sym_splice_expression, + [333111] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(6893), 1, - anon_sym_LBRACE, - ACTIONS(9491), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(9675), 1, + ACTIONS(14198), 1, sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2973), 1, - sym_enumerator_list, - STATE(6809), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - ACTIONS(11104), 2, - anon_sym_class, - anon_sym_struct, - STATE(2738), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10144), 1, + sym_splice_type_specifier, + STATE(10796), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [269676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 1, - sym_identifier, - ACTIONS(5484), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [269698] = 4, + sym_splice_expression, + [333151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6247), 1, + ACTIONS(8541), 1, anon_sym___attribute, - ACTIONS(11106), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 11, + ACTIONS(14255), 1, + anon_sym_requires, + ACTIONS(14072), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_or, + anon_sym_GT2, + [333181] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(14255), 1, + anon_sym_requires, + STATE(8575), 1, + sym_trailing_return_type, + ACTIONS(14072), 2, anon_sym_final, anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8408), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8543), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, + [333213] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8559), 1, + anon_sym___attribute, + ACTIONS(14332), 1, anon_sym_requires, - [269722] = 12, + ACTIONS(14078), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333243] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13050), 1, anon_sym_COLON_COLON, - ACTIONS(9689), 1, + ACTIONS(14335), 1, sym_identifier, - STATE(1933), 1, + STATE(3646), 1, sym_template_type, - STATE(3955), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - ACTIONS(11108), 2, - anon_sym_class, - anon_sym_struct, - STATE(4335), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8576), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [269762] = 11, + sym_splice_type_specifier, + sym_splice_expression, + [333285] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10764), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11098), 1, - anon_sym_EQ, - ACTIONS(11100), 1, - anon_sym_try, - ACTIONS(11110), 1, - anon_sym_SEMI, - STATE(2024), 1, - sym_compound_statement, - STATE(7951), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2025), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [269800] = 11, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14337), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10286), 1, + sym_splice_type_specifier, + STATE(11096), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [333325] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(10271), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11112), 1, + ACTIONS(14339), 1, anon_sym_SEMI, - ACTIONS(11114), 1, + ACTIONS(14341), 1, anon_sym_EQ, - ACTIONS(11116), 1, + ACTIONS(14343), 1, anon_sym_try, - STATE(302), 1, + STATE(3219), 1, sym_compound_statement, - STATE(8027), 1, + STATE(10108), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(316), 4, + STATE(3281), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [269838] = 11, + [333363] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6101), 1, + anon_sym_COLON_COLON, + ACTIONS(14345), 1, + sym_identifier, + ACTIONS(14347), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8579), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333405] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14349), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10247), 1, + sym_splice_type_specifier, + STATE(10720), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [333445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14353), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11058), 1, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14351), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(11060), 1, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(11062), 1, anon_sym_try, - ACTIONS(11118), 1, - anon_sym_SEMI, - STATE(727), 1, - sym_compound_statement, - STATE(7818), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(728), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [269876] = 7, + [333471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(9434), 1, + ACTIONS(8959), 1, anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, + ACTIONS(14355), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(14357), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8961), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [269906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 1, - sym_identifier, - ACTIONS(5480), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [269928] = 7, + anon_sym_requires, + [333497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym___attribute, - STATE(3021), 1, + STATE(4509), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10832), 9, - anon_sym_COMMA, + ACTIONS(9832), 10, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [269958] = 11, + [333525] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14359), 1, + sym_identifier, + ACTIONS(14361), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4490), 1, + sym_qualified_type_identifier, + STATE(4814), 1, + sym_template_type, + STATE(4822), 1, + sym_dependent_type_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8584), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333567] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11080), 1, + ACTIONS(14363), 1, + anon_sym_SEMI, + ACTIONS(14365), 1, anon_sym_EQ, - ACTIONS(11082), 1, + ACTIONS(14367), 1, anon_sym_try, - ACTIONS(11120), 1, - anon_sym_SEMI, - STATE(777), 1, + STATE(518), 1, sym_compound_statement, - STATE(7892), 1, + STATE(10455), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(778), 4, + STATE(519), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [269996] = 7, + [333605] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9192), 1, - anon_sym___attribute, - ACTIONS(9444), 1, + ACTIONS(10810), 1, + anon_sym_DASH_GT, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(9414), 2, + STATE(8553), 1, + sym_trailing_return_type, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 6, + ACTIONS(7627), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [270026] = 12, + [333637] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6177), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9547), 1, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14316), 1, + anon_sym_EQ, + ACTIONS(14318), 1, + anon_sym_try, + ACTIONS(14369), 1, + anon_sym_SEMI, + STATE(789), 1, + sym_compound_statement, + STATE(10381), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(790), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333675] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(9679), 1, + ACTIONS(14371), 1, sym_identifier, - STATE(2235), 1, + ACTIONS(14373), 1, + anon_sym_template, + STATE(2588), 1, sym_template_type, - STATE(2308), 1, - sym_enumerator_list, - STATE(6803), 1, - sym__scope_resolution, - ACTIONS(11122), 2, - anon_sym_class, - anon_sym_struct, - STATE(2623), 2, - sym__class_name, + STATE(2593), 1, + sym_dependent_type_identifier, + STATE(2703), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8588), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [270066] = 12, + sym_splice_type_specifier, + sym_splice_expression, + [333717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(8446), 1, + sym_identifier, + ACTIONS(8448), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [333739] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(7374), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13072), 1, anon_sym_COLON_COLON, - ACTIONS(9687), 1, + ACTIONS(14375), 1, sym_identifier, - STATE(2911), 1, + ACTIONS(14377), 1, + anon_sym_template, + STATE(2670), 1, sym_template_type, - STATE(3215), 1, - sym_enumerator_list, - STATE(6829), 1, - sym__scope_resolution, - ACTIONS(11124), 2, - anon_sym_class, - anon_sym_struct, - STATE(2991), 2, - sym__class_name, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8590), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [270106] = 9, + sym_splice_type_specifier, + sym_splice_expression, + [333781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10989), 1, - anon_sym___asm, - STATE(3080), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8235), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 6, - anon_sym_COMMA, + ACTIONS(9842), 10, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [270140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9434), 1, - anon_sym___attribute, - ACTIONS(9705), 1, - anon_sym_requires, - ACTIONS(9539), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [270170] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2748), 1, - sym_enumerator_list, - STATE(6801), 1, - sym__scope_resolution, - ACTIONS(11126), 2, - anon_sym_class, - anon_sym_struct, - STATE(5047), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [270210] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, + anon_sym_try, anon_sym_requires, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [270240] = 11, + [333809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11128), 1, + ACTIONS(14379), 1, anon_sym_SEMI, - ACTIONS(11130), 1, + ACTIONS(14381), 1, anon_sym_EQ, - ACTIONS(11132), 1, + ACTIONS(14383), 1, anon_sym_try, - STATE(587), 1, + STATE(870), 1, sym_compound_statement, - STATE(8075), 1, + STATE(10152), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(605), 4, + STATE(874), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [270278] = 11, + [333847] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10686), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(14385), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(14387), 1, + anon_sym_template, + STATE(1986), 1, sym_template_type, - STATE(6768), 1, - sym_access_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(7461), 2, - sym__class_name, + STATE(1987), 1, + sym_dependent_type_identifier, + STATE(1998), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8593), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333889] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14389), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10400), 1, + sym_splice_type_specifier, + STATE(11313), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [270316] = 13, + sym_splice_expression, + [333929] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(11134), 1, + ACTIONS(14021), 1, anon_sym_SEMI, - STATE(3080), 1, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7408), 1, + STATE(9542), 1, sym_gnu_asm_expression, - STATE(7409), 1, + STATE(9543), 1, aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [270358] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 1, - anon_sym___attribute, - ACTIONS(9829), 1, - anon_sym_requires, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [270388] = 7, + [333971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(7629), 1, anon_sym___attribute, - ACTIONS(11005), 1, - anon_sym_requires, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [270418] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(10023), 1, - anon_sym___attribute, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10021), 6, + ACTIONS(7627), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [270448] = 9, + [334001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9805), 1, - anon_sym_requires, - STATE(5607), 1, - sym_trailing_return_type, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 4, + ACTIONS(14391), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8941), 12, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - [270482] = 7, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [334023] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(1162), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14381), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [270512] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(14383), 1, + anon_sym_try, + ACTIONS(14393), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_compound_statement, + STATE(10095), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10920), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [270542] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, - anon_sym_requires, - ACTIONS(10053), 1, - anon_sym___attribute, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6200), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [270572] = 11, + STATE(766), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [334061] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(10752), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - ACTIONS(11058), 1, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11086), 1, + ACTIONS(14395), 1, + anon_sym_SEMI, + ACTIONS(14397), 1, anon_sym_EQ, - ACTIONS(11088), 1, + ACTIONS(14399), 1, anon_sym_try, - ACTIONS(11136), 1, - anon_sym_SEMI, - STATE(2120), 1, + STATE(3193), 1, sym_compound_statement, - STATE(8120), 1, + STATE(10228), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2121), 4, + STATE(3195), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [270610] = 3, + [334099] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14153), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10159), 1, + sym_splice_type_specifier, + STATE(10822), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [334139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(8382), 1, sym_identifier, - ACTIONS(5495), 13, + ACTIONS(8384), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -514645,1464 +705863,1284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11138), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11140), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6201), 10, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [270656] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3955), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - ACTIONS(11142), 2, - anon_sym_class, - anon_sym_struct, - STATE(6832), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [270696] = 13, + [334161] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10772), 1, + ACTIONS(14401), 1, anon_sym_SEMI, - STATE(3080), 1, + STATE(4505), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7520), 1, + STATE(9969), 1, sym_gnu_asm_expression, - STATE(7521), 1, + STATE(9971), 1, aux_sym_declaration_repeat1, - ACTIONS(10119), 2, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [270738] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11146), 1, - anon_sym_EQ, - STATE(3010), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(11144), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6979), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [270778] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10846), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [270808] = 5, + [334203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym___attribute, - ACTIONS(11106), 2, + ACTIONS(14391), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11148), 2, + ACTIONS(14403), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6201), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8961), 10, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [270834] = 11, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [334227] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10727), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(14405), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(14407), 1, + anon_sym_template, + STATE(2434), 1, sym_template_type, - STATE(6786), 1, - sym_access_specifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(7670), 2, - sym__class_name, + STATE(2435), 1, + sym_dependent_type_identifier, + STATE(2549), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8604), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [270872] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10850), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [270902] = 12, + sym_splice_type_specifier, + sym_splice_expression, + [334269] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(9522), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10293), 1, anon_sym_COLON_COLON, - ACTIONS(9701), 1, + ACTIONS(14409), 1, sym_identifier, - STATE(1885), 1, + ACTIONS(14411), 1, + anon_sym_template, + STATE(2670), 1, sym_template_type, - STATE(2518), 1, - sym_enumerator_list, - STATE(6834), 1, - sym__scope_resolution, - ACTIONS(11150), 2, - anon_sym_class, - anon_sym_struct, - STATE(4065), 2, - sym__class_name, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8605), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [270942] = 12, + sym_splice_type_specifier, + sym_splice_expression, + [334311] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11152), 1, - anon_sym_EQ, - STATE(3010), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(11144), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6979), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [270982] = 11, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12808), 1, + anon_sym_COLON_COLON, + ACTIONS(14359), 1, + sym_identifier, + ACTIONS(14413), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8606), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334353] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(10271), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11114), 1, + ACTIONS(14341), 1, anon_sym_EQ, - ACTIONS(11116), 1, + ACTIONS(14343), 1, anon_sym_try, - ACTIONS(11154), 1, + ACTIONS(14415), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(3329), 1, sym_compound_statement, - STATE(7873), 1, + STATE(10205), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(418), 4, + STATE(3330), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [271020] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6044), 1, - anon_sym___asm, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - STATE(6512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6046), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [271052] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(5616), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [271086] = 8, + [334391] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(7591), 1, + ACTIONS(10812), 1, anon_sym_requires, - STATE(6420), 1, + STATE(8596), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 5, + ACTIONS(7544), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [271118] = 8, + [334423] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9444), 1, - anon_sym_requires, - STATE(6428), 1, - sym_trailing_return_type, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14417), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, + sym__scope_resolution, + STATE(8089), 1, + sym_splice_specifier, + STATE(10075), 1, + sym_splice_type_specifier, + STATE(10659), 1, + sym_qualified_identifier, + STATE(10976), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [334463] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, anon_sym_LBRACK, - anon_sym_GT2, - [271150] = 13, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14397), 1, + anon_sym_EQ, + ACTIONS(14399), 1, + anon_sym_try, + ACTIONS(14419), 1, + anon_sym_SEMI, + STATE(3321), 1, + sym_compound_statement, + STATE(10169), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3323), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [334501] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10768), 1, - anon_sym_SEMI, - STATE(3080), 1, + ACTIONS(14423), 1, + anon_sym_EQ, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(7542), 1, - sym_gnu_asm_expression, - STATE(7544), 1, - aux_sym_declaration_repeat1, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6155), 2, + ACTIONS(14421), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271192] = 8, + STATE(8984), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [334541] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9705), 1, - anon_sym_requires, - STATE(6434), 1, - sym_trailing_return_type, - ACTIONS(9539), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10621), 1, + anon_sym_COLON_COLON, + ACTIONS(14425), 1, + sym_identifier, + ACTIONS(14427), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(6605), 1, + sym_template_type, + STATE(6606), 1, + sym_dependent_type_identifier, + STATE(6804), 1, + sym_qualified_type_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8612), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, anon_sym_LBRACK, - anon_sym_GT2, - [271224] = 8, + STATE(4509), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9850), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [334611] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(9829), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12740), 1, + anon_sym_COLON_COLON, + ACTIONS(14429), 1, + sym_identifier, + ACTIONS(14431), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4490), 1, + sym_qualified_type_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8614), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334653] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 1, + anon_sym___attribute, + ACTIONS(10812), 1, anon_sym_requires, - STATE(6435), 1, - sym_trailing_return_type, - ACTIONS(9808), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 5, + ACTIONS(7544), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [271256] = 8, + [334683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6034), 1, - anon_sym___asm, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - STATE(6176), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6036), 7, - anon_sym_COMMA, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9858), 10, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [271288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(11005), 1, - anon_sym_requires, - STATE(6484), 1, - sym_trailing_return_type, - ACTIONS(10754), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [271320] = 12, + anon_sym_try, + anon_sym_requires, + [334711] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8121), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13140), 1, anon_sym_COLON_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, + ACTIONS(14433), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(14435), 1, + anon_sym_template, + STATE(3579), 1, sym_template_type, - STATE(4844), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - ACTIONS(11156), 2, - anon_sym_class, - anon_sym_struct, - STATE(4560), 2, - sym__class_name, + STATE(3583), 1, + sym_dependent_type_identifier, + STATE(3585), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8617), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [271360] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(5624), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [271394] = 11, + sym_splice_type_specifier, + sym_splice_expression, + [334753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8754), 1, - anon_sym_STAR, - ACTIONS(8756), 1, + ACTIONS(8939), 1, + anon_sym___attribute, + ACTIONS(14357), 2, anon_sym_AMP_AMP, - ACTIONS(8758), 1, - anon_sym_AMP, - STATE(3502), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7089), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [271432] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - STATE(6430), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 5, + anon_sym_and, + ACTIONS(8941), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [271464] = 8, + anon_sym_requires, + [334777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 1, - anon_sym___asm, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - STATE(6512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6109), 7, + ACTIONS(8454), 1, + sym_identifier, + ACTIONS(8456), 13, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [271496] = 9, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [334799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(11024), 1, - anon_sym___asm, - STATE(3080), 1, + STATE(4509), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8235), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 6, - anon_sym_COMMA, + ACTIONS(9846), 10, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_try, - [271530] = 11, + anon_sym_requires, + [334827] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11130), 1, - anon_sym_EQ, - ACTIONS(11132), 1, - anon_sym_try, - ACTIONS(11158), 1, - anon_sym_SEMI, - STATE(635), 1, - sym_compound_statement, - STATE(7965), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(638), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [271568] = 8, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10651), 1, + anon_sym_COLON_COLON, + ACTIONS(14411), 1, + anon_sym_template, + ACTIONS(14437), 1, + sym_identifier, + STATE(2670), 1, + sym_template_type, + STATE(2672), 1, + sym_dependent_type_identifier, + STATE(2797), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8621), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334869] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(7970), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10740), 1, - anon_sym_LBRACK, - STATE(6176), 1, - sym_parameter_list, - STATE(6512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6076), 7, + ACTIONS(13549), 1, anon_sym_COMMA, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14005), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(9833), 1, + sym_gnu_asm_expression, + STATE(9839), 1, + aux_sym_declaration_repeat1, + ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - [271600] = 7, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14070), 1, anon_sym_LBRACK, - ACTIONS(10904), 1, - anon_sym___attribute, - STATE(3021), 1, + STATE(4509), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8235), 1, sym__function_declarator_seq, - ACTIONS(10902), 9, - anon_sym_COMMA, + ACTIONS(9854), 10, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [271630] = 12, + [334939] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(9642), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10735), 1, anon_sym_COLON_COLON, - ACTIONS(9695), 1, + ACTIONS(14439), 1, sym_identifier, - STATE(4002), 1, + ACTIONS(14441), 1, + anon_sym_template, + STATE(2425), 1, sym_template_type, - STATE(4094), 1, - sym_enumerator_list, - STATE(6849), 1, - sym__scope_resolution, - ACTIONS(11160), 2, - anon_sym_class, - anon_sym_struct, - STATE(3901), 2, - sym__class_name, + STATE(2426), 1, + sym_dependent_type_identifier, + STATE(2548), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8624), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [271670] = 9, + sym_splice_type_specifier, + sym_splice_expression, + [334981] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(5626), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, anon_sym_LBRACE, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14308), 1, anon_sym_EQ, - [271704] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(14310), 1, + anon_sym_try, + ACTIONS(14443), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_compound_statement, + STATE(10240), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10854), 1, - anon_sym___attribute, - STATE(3021), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10852), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271734] = 12, + STATE(754), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335019] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12768), 1, anon_sym_COLON_COLON, - ACTIONS(9691), 1, + ACTIONS(14359), 1, sym_identifier, - STATE(2791), 1, + ACTIONS(14413), 1, + anon_sym_template, + STATE(3646), 1, sym_template_type, - STATE(3110), 1, - sym_enumerator_list, - STATE(6848), 1, - sym__scope_resolution, - ACTIONS(11162), 2, - anon_sym_class, - anon_sym_struct, - STATE(2807), 2, - sym__class_name, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4490), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(8626), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [271774] = 3, + sym_splice_type_specifier, + sym_splice_expression, + [335061] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11140), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 12, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LBRACK, + ACTIONS(305), 1, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [271796] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - STATE(6436), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [271828] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_requires, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - STATE(5630), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 4, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14365), 1, + anon_sym_EQ, + ACTIONS(14367), 1, + anon_sym_try, + ACTIONS(14445), 1, + anon_sym_SEMI, + STATE(416), 1, + sym_compound_statement, + STATE(10227), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [271862] = 11, + STATE(417), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335099] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(4800), 1, + anon_sym_template, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(14163), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(6784), 1, - sym_access_specifier, - STATE(6813), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(7245), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, + STATE(8089), 1, + sym_splice_specifier, + STATE(10146), 1, + sym_splice_type_specifier, + STATE(10759), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(10738), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [271900] = 9, + sym_splice_expression, + [335139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(9385), 1, - anon_sym_requires, - STATE(5587), 1, - sym_trailing_return_type, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 4, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14298), 1, + anon_sym_EQ, + ACTIONS(14300), 1, + anon_sym_try, + ACTIONS(14447), 1, + anon_sym_SEMI, + STATE(2734), 1, + sym_compound_statement, + STATE(10260), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [271934] = 8, + STATE(2735), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_DASH_GT, - ACTIONS(7591), 1, - anon_sym_requires, - STATE(6440), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(14070), 1, anon_sym_LBRACK, - anon_sym_GT2, - [271966] = 12, + STATE(4509), 1, + sym_parameter_list, + STATE(8235), 1, + sym__function_declarator_seq, + ACTIONS(9838), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [335205] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10743), 1, anon_sym_COLON_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, + ACTIONS(14449), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(14451), 1, + anon_sym_template, + STATE(3411), 1, sym_template_type, - STATE(4844), 1, - sym_enumerator_list, - STATE(6830), 1, - sym__scope_resolution, - ACTIONS(11164), 2, - anon_sym_class, - anon_sym_struct, - STATE(5217), 2, - sym__class_name, + STATE(3439), 1, + sym_dependent_type_identifier, + STATE(3539), 1, sym_qualified_type_identifier, - STATE(9058), 2, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8631), 1, + sym__scope_resolution, + STATE(10976), 3, sym_decltype, - sym_dependent_type_identifier, - [272006] = 9, + sym_splice_type_specifier, + sym_splice_expression, + [335247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, + ACTIONS(10810), 1, anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9456), 1, + ACTIONS(10812), 1, anon_sym_requires, - STATE(5597), 1, + STATE(8635), 1, sym_trailing_return_type, - ACTIONS(9436), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 4, + ACTIONS(8089), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [335279] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14453), 1, anon_sym_EQ, - [272040] = 7, + STATE(4234), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + ACTIONS(14421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8984), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [335319] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10697), 1, + anon_sym_COLON_COLON, + ACTIONS(14304), 1, + anon_sym_template, + ACTIONS(14455), 1, + sym_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(3981), 1, + sym_template_type, + STATE(3982), 1, + sym_dependent_type_identifier, + STATE(4151), 1, + sym_qualified_type_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8634), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335361] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8541), 1, anon_sym___attribute, - ACTIONS(11166), 1, + ACTIONS(10812), 1, anon_sym_requires, - ACTIONS(10742), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6200), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 6, + ACTIONS(8543), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [272070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(2975), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10902), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [272097] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11171), 1, - aux_sym_preproc_if_token1, - ACTIONS(11175), 1, - anon_sym_RBRACE, - ACTIONS(11173), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7861), 2, - sym_preproc_call, - sym_enumerator, - STATE(8394), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [272130] = 11, + [335391] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(11177), 1, - sym_identifier, - ACTIONS(11179), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14268), 1, anon_sym_COLON_COLON, - STATE(6521), 1, - sym__scope_resolution, - STATE(7964), 1, - sym_operator_name, - STATE(7978), 1, - sym_field_initializer, - STATE(7282), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9058), 3, - sym_decltype, + ACTIONS(14457), 1, + sym_identifier, + ACTIONS(14459), 1, + anon_sym_template, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(4082), 1, sym_template_type, + STATE(4106), 1, sym_dependent_type_identifier, - [272167] = 10, + STATE(4137), 1, + sym_qualified_type_identifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8636), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(8400), 1, + sym_identifier, + ACTIONS(8402), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(11114), 1, - anon_sym_EQ, - ACTIONS(11116), 1, - anon_sym_try, - STATE(302), 1, - sym_compound_statement, - STATE(8027), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(316), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [272202] = 9, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [335455] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, + ACTIONS(14429), 1, sym_identifier, - ACTIONS(11171), 1, - aux_sym_preproc_if_token1, - ACTIONS(11181), 1, - anon_sym_RBRACE, - ACTIONS(11173), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8095), 2, - sym_preproc_call, - sym_enumerator, - STATE(8806), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [272235] = 9, + ACTIONS(14431), 1, + anon_sym_template, + STATE(3646), 1, + sym_template_type, + STATE(3649), 1, + sym_dependent_type_identifier, + STATE(3650), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8638), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335497] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(2062), 1, + anon_sym_decltype, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10678), 1, + anon_sym_COLON_COLON, + ACTIONS(14461), 1, sym_identifier, - ACTIONS(11171), 1, - aux_sym_preproc_if_token1, - ACTIONS(11183), 1, - anon_sym_RBRACE, - ACTIONS(11173), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8064), 2, - sym_preproc_call, - sym_enumerator, - STATE(8621), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [272268] = 12, + ACTIONS(14463), 1, + anon_sym_template, + STATE(2390), 1, + sym_template_type, + STATE(2391), 1, + sym_dependent_type_identifier, + STATE(2449), 1, + sym_qualified_type_identifier, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(8089), 1, + sym_splice_specifier, + STATE(8639), 1, + sym__scope_resolution, + STATE(10976), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, + ACTIONS(2062), 1, anon_sym_decltype, - ACTIONS(11042), 1, - anon_sym_COLON_COLON, - ACTIONS(11044), 1, + ACTIONS(4800), 1, anon_sym_template, - ACTIONS(11185), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13463), 1, + anon_sym_COLON_COLON, + ACTIONS(14137), 1, sym_identifier, - STATE(3596), 1, - sym_template_method, - STATE(3600), 1, - sym_dependent_field_identifier, - STATE(3617), 1, - sym_qualified_field_identifier, - STATE(6491), 1, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(7879), 1, sym__scope_resolution, - STATE(8094), 1, - sym_operator_name, - STATE(9058), 3, + STATE(8089), 1, + sym_splice_specifier, + STATE(10125), 1, + sym_splice_type_specifier, + STATE(10660), 1, + sym_qualified_identifier, + STATE(10976), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [272307] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - anon_sym_LBRACK, - ACTIONS(8536), 1, - anon_sym_STAR, - ACTIONS(8538), 1, - anon_sym_AMP_AMP, - ACTIONS(8540), 1, - anon_sym_AMP, - STATE(3056), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(6915), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [272342] = 9, + sym_splice_expression, + [335579] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11187), 1, + ACTIONS(14471), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7923), 2, + STATE(10351), 2, sym_preproc_call, sym_enumerator, - STATE(8170), 2, + STATE(11092), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6495), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [272375] = 9, + [335612] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11189), 1, + ACTIONS(14473), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8114), 2, + STATE(10066), 2, sym_preproc_call, sym_enumerator, - STATE(8929), 2, + STATE(10564), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6486), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [272408] = 9, + [335645] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11171), 1, - aux_sym_preproc_if_token1, - ACTIONS(11191), 1, - anon_sym_RBRACE, - ACTIONS(11173), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7954), 2, - sym_preproc_call, - sym_enumerator, - STATE(8276), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [272441] = 12, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + STATE(4505), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(10476), 1, + sym_gnu_asm_expression, + ACTIONS(13561), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14475), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [335682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10945), 1, - anon_sym_COLON_COLON, - ACTIONS(10947), 1, - anon_sym_template, - ACTIONS(11193), 1, - sym_identifier, - STATE(3447), 1, - sym_template_method, - STATE(3448), 1, - sym_dependent_field_identifier, - STATE(3449), 1, - sym_qualified_field_identifier, - STATE(6496), 1, - sym__scope_resolution, - STATE(7994), 1, - sym_operator_name, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [272480] = 9, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14141), 6, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [335713] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14316), 1, + anon_sym_EQ, + ACTIONS(14318), 1, + anon_sym_try, + STATE(789), 1, + sym_compound_statement, + STATE(10381), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + STATE(790), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335748] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10993), 1, + ACTIONS(14159), 1, anon_sym___attribute, - STATE(3010), 1, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 5, + ACTIONS(14157), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [272513] = 9, + [335781] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11171), 1, - aux_sym_preproc_if_token1, - ACTIONS(11195), 1, - anon_sym_RBRACE, - ACTIONS(11173), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7869), 2, - sym_preproc_call, - sym_enumerator, - STATE(8464), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6532), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [272546] = 9, + ACTIONS(305), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14365), 1, + anon_sym_EQ, + ACTIONS(14367), 1, + anon_sym_try, + STATE(518), 1, + sym_compound_statement, + STATE(10455), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(519), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(7017), 1, + anon_sym___attribute, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + STATE(8849), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7019), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14477), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [335847] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11197), 1, + ACTIONS(14479), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8086), 2, + STATE(10333), 2, sym_preproc_call, sym_enumerator, - STATE(8717), 2, + STATE(11399), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6508), 3, + STATE(8662), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [272579] = 7, + [335880] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10904), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(1162), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10902), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14381), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272608] = 7, + ACTIONS(14383), 1, + anon_sym_try, + STATE(765), 1, + sym_compound_statement, + STATE(10095), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(766), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10830), 1, + ACTIONS(9840), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3083), 1, + STATE(4823), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 8, + ACTIONS(9838), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -516111,86 +707149,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [272637] = 7, + [335944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10834), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3083), 1, + ACTIONS(14143), 1, + anon_sym___attribute, + STATE(4234), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10832), 8, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14141), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [272666] = 7, + [335977] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14483), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10430), 2, + sym_preproc_call, + sym_enumerator, + STATE(11390), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8756), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [336010] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10850), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(3083), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10848), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272695] = 7, + STATE(9196), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336045] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10920), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(3083), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10918), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272724] = 7, + STATE(9159), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10934), 1, + ACTIONS(9844), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3083), 1, + STATE(4823), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 8, + ACTIONS(9842), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -516199,1947 +707269,1322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [272753] = 7, + [336109] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10846), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14485), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10157), 2, + sym_preproc_call, + sym_enumerator, + STATE(10722), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8653), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [336142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14489), 1, + anon_sym_LT, + STATE(8713), 1, + sym_template_argument_list, + ACTIONS(14491), 2, anon_sym___attribute, - ACTIONS(11199), 1, anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 8, + ACTIONS(14487), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272782] = 7, + anon_sym_try, + [336167] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14493), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10371), 2, + sym_preproc_call, + sym_enumerator, + STATE(11308), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8681), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [336200] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14308), 1, + anon_sym_EQ, + ACTIONS(14310), 1, + anon_sym_try, + STATE(753), 1, + sym_compound_statement, + STATE(10240), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, anon_sym_LPAREN2, - ACTIONS(10854), 1, + anon_sym_LBRACK_LBRACK, + STATE(754), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14489), 1, + anon_sym_LT, + STATE(8722), 1, + sym_template_argument_list, + ACTIONS(14497), 2, anon_sym___attribute, - ACTIONS(11199), 1, anon_sym_LBRACK, - STATE(3083), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10852), 8, + ACTIONS(14495), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [272811] = 9, + anon_sym_try, + [336260] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11201), 1, + ACTIONS(14499), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8144), 2, + STATE(10171), 2, sym_preproc_call, sym_enumerator, - STATE(8977), 2, + STATE(10761), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [272844] = 9, + [336293] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11203), 1, + ACTIONS(14501), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8004), 2, + STATE(10208), 2, sym_preproc_call, sym_enumerator, - STATE(8397), 2, + STATE(11008), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6517), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [272877] = 10, + [336326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(11367), 6, anon_sym_LPAREN2, - ACTIONS(5042), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5044), 1, anon_sym_AMP_AMP, - ACTIONS(5046), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11365), 7, anon_sym_AMP, - ACTIONS(8215), 1, + anon_sym___based, anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6273), 1, - sym__function_declarator_seq, - STATE(7078), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [272912] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, + sym_identifier, + anon_sym_decltype, anon_sym_template, - ACTIONS(1852), 1, anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(11177), 1, - sym_identifier, - ACTIONS(11179), 1, - anon_sym_COLON_COLON, - STATE(6521), 1, - sym__scope_resolution, - STATE(7567), 1, - sym_field_initializer, - STATE(7964), 1, - sym_operator_name, - STATE(7282), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [272949] = 5, + [336347] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6211), 2, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, anon_sym_LBRACK, - anon_sym___asm, - STATE(5859), 2, + STATE(4234), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + ACTIONS(14421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6213), 8, - anon_sym_COMMA, + STATE(8984), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [336384] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [272974] = 11, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9176), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336419] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9885), 1, + ACTIONS(9834), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3080), 1, + STATE(4823), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(7981), 1, - sym_gnu_asm_expression, - ACTIONS(10119), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(11205), 2, + ACTIONS(9832), 8, anon_sym_COMMA, - anon_sym_SEMI, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273011] = 9, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [336448] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + ACTIONS(14503), 1, + sym_auto, + ACTIONS(14505), 1, + anon_sym_decltype, + STATE(3601), 1, + sym_template_argument_list, + STATE(4767), 1, + sym_decltype_auto, + STATE(8849), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5258), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(14477), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [336483] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11207), 1, + ACTIONS(14507), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7921), 2, + STATE(10369), 2, sym_preproc_call, sym_enumerator, - STATE(8190), 2, + STATE(10554), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6489), 3, + STATE(8671), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273044] = 9, + [336516] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11209), 1, + ACTIONS(14509), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8137), 2, + STATE(10148), 2, sym_preproc_call, sym_enumerator, - STATE(8939), 2, + STATE(10704), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8680), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273077] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(2975), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [273104] = 9, + [336549] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11211), 1, + ACTIONS(14511), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8031), 2, + STATE(10314), 2, sym_preproc_call, sym_enumerator, - STATE(8483), 2, + STATE(11028), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273137] = 11, + [336582] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(3294), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(11144), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6979), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [273174] = 6, + STATE(9270), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336617] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9852), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(2975), 1, + STATE(4823), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9850), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [273201] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - STATE(6678), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273234] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(11179), 1, - anon_sym_COLON_COLON, - ACTIONS(11213), 1, - sym_identifier, - ACTIONS(11215), 1, - anon_sym_template, - STATE(2378), 1, - sym_template_method, - STATE(2386), 1, - sym_dependent_field_identifier, - STATE(2388), 1, - sym_qualified_field_identifier, - STATE(6521), 1, - sym__scope_resolution, - STATE(7964), 1, - sym_operator_name, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [273273] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9434), 1, - anon_sym_LBRACK, - STATE(6679), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273306] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - STATE(6680), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273339] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(10023), 1, - anon_sym_LBRACK, - STATE(6740), 1, - sym_trailing_return_type, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273372] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9517), 1, - anon_sym_requires, - STATE(6716), 1, - sym_trailing_return_type, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273405] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9758), 1, - anon_sym_requires, - STATE(6717), 1, - sym_trailing_return_type, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273438] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9882), 1, - anon_sym_requires, - STATE(6718), 1, - sym_trailing_return_type, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273471] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_LBRACK, - ACTIONS(11217), 1, + anon_sym_GT2, anon_sym_requires, - STATE(6720), 1, - sym_trailing_return_type, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [273504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(4940), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4933), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [273531] = 6, + [336646] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(2975), 1, + STATE(4601), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10852), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [273558] = 6, + STATE(9193), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9856), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(2975), 1, + STATE(4823), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9854), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [273585] = 9, + [336710] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11220), 1, + ACTIONS(14513), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7905), 2, + STATE(10231), 2, sym_preproc_call, sym_enumerator, - STATE(8761), 2, + STATE(11022), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273618] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10983), 1, - anon_sym_COLON_COLON, - ACTIONS(10985), 1, - anon_sym_template, - ACTIONS(11222), 1, - sym_identifier, - STATE(2378), 1, - sym_template_method, - STATE(2386), 1, - sym_dependent_field_identifier, - STATE(2388), 1, - sym_qualified_field_identifier, - STATE(6533), 1, - sym__scope_resolution, - STATE(8113), 1, - sym_operator_name, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [273657] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11016), 1, - anon_sym___attribute, - STATE(3010), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [273690] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(2975), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [273717] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11060), 1, - anon_sym_EQ, - ACTIONS(11062), 1, - anon_sym_try, - STATE(694), 1, - sym_compound_statement, - STATE(8050), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(695), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [273752] = 9, + [336743] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11224), 1, + ACTIONS(14515), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8100), 2, + STATE(10424), 2, sym_preproc_call, sym_enumerator, - STATE(8741), 2, + STATE(11371), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6540), 3, + STATE(8683), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273785] = 10, + [336776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11114), 1, + STATE(4823), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9858), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(11116), 1, - anon_sym_try, - STATE(416), 1, - sym_compound_statement, - STATE(7873), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(418), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [273820] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [336805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(5042), 1, - anon_sym_STAR, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3096), 1, + STATE(4823), 1, sym_parameter_list, - STATE(6273), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(7119), 1, - sym__abstract_declarator, - STATE(6295), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [273855] = 9, + ACTIONS(9862), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [336834] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11226), 1, + ACTIONS(14517), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8133), 2, + STATE(10281), 2, sym_preproc_call, sym_enumerator, - STATE(8932), 2, + STATE(10960), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [273888] = 6, + [336867] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(8079), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5064), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [273915] = 10, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14519), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10429), 2, + sym_preproc_call, + sym_enumerator, + STATE(10924), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8756), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [336900] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11130), 1, + ACTIONS(14308), 1, anon_sym_EQ, - ACTIONS(11132), 1, + ACTIONS(14310), 1, anon_sym_try, - STATE(587), 1, + STATE(726), 1, sym_compound_statement, - STATE(8075), 1, + STATE(10306), 1, sym_field_initializer_list, - ACTIONS(5064), 2, + ACTIONS(6515), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(605), 4, + STATE(743), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [273950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10820), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10818), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [273975] = 9, + [336935] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11228), 1, + ACTIONS(14521), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7931), 2, + STATE(10441), 2, sym_preproc_call, sym_enumerator, - STATE(8211), 2, + STATE(11417), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6490), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [274008] = 5, + [336968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11232), 1, - anon_sym_LT, - STATE(6562), 1, - sym_template_argument_list, - ACTIONS(11234), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11230), 9, - anon_sym_COMMA, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14123), 6, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [274033] = 5, + [336999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11232), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(14258), 1, anon_sym_LT, - STATE(6590), 1, + STATE(8362), 1, sym_template_argument_list, - ACTIONS(11238), 2, - anon_sym___attribute, + ACTIONS(11399), 2, anon_sym_LBRACK, - ACTIONS(11236), 9, + anon_sym___asm, + ACTIONS(6515), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [274058] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11080), 1, - anon_sym_EQ, - ACTIONS(11082), 1, - anon_sym_try, - STATE(747), 1, - sym_compound_statement, - STATE(7857), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(748), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [274093] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11060), 1, - anon_sym_EQ, - ACTIONS(11062), 1, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - STATE(727), 1, - sym_compound_statement, - STATE(7818), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(728), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [274128] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4599), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10274), 1, - anon_sym_COLON_COLON, - ACTIONS(11240), 1, - sym_identifier, - STATE(6056), 1, - sym__scope_resolution, - ACTIONS(4601), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(8033), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [274163] = 9, + [337026] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10989), 1, + ACTIONS(14111), 1, anon_sym___attribute, - STATE(3010), 1, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 5, + ACTIONS(14109), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [274196] = 10, + [337059] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11080), 1, - anon_sym_EQ, - ACTIONS(11082), 1, - anon_sym_try, - STATE(777), 1, - sym_compound_statement, - STATE(7892), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(778), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [274231] = 12, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14523), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10300), 2, + sym_preproc_call, + sym_enumerator, + STATE(11003), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8641), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337092] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(11018), 1, - anon_sym_COLON_COLON, - ACTIONS(11020), 1, - anon_sym_template, - ACTIONS(11222), 1, - sym_identifier, - STATE(2378), 1, - sym_template_method, - STATE(2386), 1, - sym_dependent_field_identifier, - STATE(2388), 1, - sym_qualified_field_identifier, - STATE(6552), 1, - sym__scope_resolution, - STATE(7842), 1, - sym_operator_name, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [274270] = 9, + ACTIONS(6093), 1, + anon_sym_LPAREN2, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, + anon_sym_LBRACK, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9179), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(11024), 1, + ACTIONS(14125), 1, anon_sym___attribute, - STATE(3010), 1, + STATE(4234), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 5, + ACTIONS(14123), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [274303] = 6, + [337160] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(2975), 1, + STATE(4601), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10844), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274330] = 10, + STATE(9281), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, + ACTIONS(9848), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11058), 1, - anon_sym_COLON, - ACTIONS(11130), 1, + STATE(4823), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9846), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(11132), 1, - anon_sym_try, - STATE(635), 1, - sym_compound_statement, - STATE(7965), 1, - sym_field_initializer_list, - ACTIONS(5064), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(638), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [274365] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [337224] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11242), 1, + ACTIONS(14525), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8047), 2, + STATE(10151), 2, sym_preproc_call, sym_enumerator, - STATE(8537), 2, + STATE(10577), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6515), 3, + STATE(8642), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [274398] = 9, + [337257] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11244), 1, + ACTIONS(14527), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7901), 2, + STATE(10134), 2, sym_preproc_call, sym_enumerator, - STATE(8793), 2, + STATE(10684), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6560), 3, + STATE(8756), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [274431] = 6, + [337290] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(2975), 1, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10848), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274458] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11248), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5859), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11246), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(14157), 6, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [274483] = 9, + [337321] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11171), 1, + ACTIONS(14467), 1, aux_sym_preproc_if_token1, - ACTIONS(11250), 1, + ACTIONS(14529), 1, anon_sym_RBRACE, - ACTIONS(11173), 2, + ACTIONS(14469), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8048), 2, + STATE(10158), 2, sym_preproc_call, sym_enumerator, - STATE(8555), 2, + STATE(10831), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6722), 3, + STATE(8676), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [274516] = 9, + [337354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11038), 1, - anon_sym___attribute, - STATE(3010), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [274549] = 3, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14531), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10083), 2, + sym_preproc_call, + sym_enumerator, + STATE(10592), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8693), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6350), 2, - anon_sym___attribute, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(14258), 1, + anon_sym_LT, + STATE(8362), 1, + sym_template_argument_list, + ACTIONS(6210), 2, anon_sym_LBRACK, - ACTIONS(6352), 10, + anon_sym___asm, + ACTIONS(6203), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [274569] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2313), 1, - sym_enumerator_list, - STATE(6803), 1, - sym__scope_resolution, - STATE(2443), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [274605] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(9683), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2747), 1, - sym_enumerator_list, - STATE(6801), 1, - sym__scope_resolution, - STATE(5042), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [274641] = 6, + [337414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(3014), 1, + STATE(4601), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10844), 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, - [274667] = 8, + STATE(9254), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337449] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(10922), 1, - anon_sym_requires, - STATE(6781), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - [274697] = 11, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9152), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6380), 1, - anon_sym_LBRACE, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(9681), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14465), 1, sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(2514), 1, - sym_enumerator_list, - STATE(6795), 1, - sym__scope_resolution, - STATE(5040), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [274733] = 6, + ACTIONS(14467), 1, + aux_sym_preproc_if_token1, + ACTIONS(14533), 1, + anon_sym_RBRACE, + ACTIONS(14469), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10481), 2, + sym_preproc_call, + sym_enumerator, + STATE(10507), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8663), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3014), 1, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10852), 8, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14227), 6, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [274759] = 5, + [337548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(6151), 1, - sym_template_argument_list, - ACTIONS(6495), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6497), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [274783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3014), 1, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10826), 8, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14109), 6, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [274809] = 6, + [337579] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6093), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(11429), 1, anon_sym_LBRACK, - STATE(3014), 1, + ACTIONS(11637), 1, + anon_sym_STAR, + ACTIONS(11639), 1, + anon_sym_AMP_AMP, + ACTIONS(11641), 1, + anon_sym_AMP, + STATE(4923), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8393), 1, sym__function_declarator_seq, - ACTIONS(10832), 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, - [274835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11254), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11252), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [274855] = 8, + STATE(8912), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337614] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9637), 1, - anon_sym_requires, - STATE(6767), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(6093), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(6095), 1, + anon_sym_STAR, + ACTIONS(6097), 1, + anon_sym_AMP_AMP, + ACTIONS(6099), 1, + anon_sym_AMP, + ACTIONS(11429), 1, anon_sym_LBRACK, - [274885] = 6, + STATE(4601), 1, + sym_parameter_list, + STATE(8393), 1, + sym__function_declarator_seq, + STATE(9234), 1, + sym__abstract_declarator, + STATE(8389), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337649] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3014), 1, + ACTIONS(14229), 1, + anon_sym___attribute, + STATE(4234), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10848), 8, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14227), 5, + anon_sym_COMMA, 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, - [274911] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, - anon_sym_COLON_COLON, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(9699), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3044), 1, - sym_enumerator_list, - STATE(6840), 1, - sym__scope_resolution, - STATE(3543), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [274947] = 11, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [337682] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6380), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(9701), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(2514), 1, - sym_enumerator_list, - STATE(6834), 1, - sym__scope_resolution, - STATE(4069), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [274983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11258), 2, - anon_sym___attribute, + ACTIONS(11399), 1, anon_sym_LBRACK, - ACTIONS(11256), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(14296), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(14381), 1, anon_sym_EQ, + ACTIONS(14383), 1, anon_sym_try, - [275003] = 11, + STATE(870), 1, + sym_compound_statement, + STATE(10152), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(874), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337717] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(7023), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3044), 1, - sym_enumerator_list, - STATE(6842), 1, - sym__scope_resolution, - STATE(2914), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275039] = 11, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14365), 1, + anon_sym_EQ, + ACTIONS(14367), 1, + anon_sym_try, + STATE(416), 1, + sym_compound_statement, + STATE(10227), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(417), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337752] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6893), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(9675), 1, - sym_identifier, - STATE(2731), 1, - sym_template_type, - STATE(2940), 1, - sym_enumerator_list, - STATE(6809), 1, - sym__scope_resolution, - STATE(2697), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275075] = 6, + ACTIONS(11399), 1, + anon_sym_LBRACK, + ACTIONS(14296), 1, + anon_sym_COLON, + ACTIONS(14316), 1, + anon_sym_EQ, + ACTIONS(14318), 1, + anon_sym_try, + STATE(885), 1, + sym_compound_statement, + STATE(10329), 1, + sym_field_initializer_list, + ACTIONS(6515), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(888), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3014), 1, + STATE(4554), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 8, + ACTIONS(9838), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [275101] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7374), 1, - anon_sym_LBRACE, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(9687), 1, - sym_identifier, - STATE(2911), 1, - sym_template_type, - STATE(3280), 1, - sym_enumerator_list, - STATE(6829), 1, - sym__scope_resolution, - STATE(2997), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275137] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6881), 1, - anon_sym_LBRACE, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(9685), 1, - sym_identifier, - STATE(2660), 1, - sym_template_type, - STATE(2747), 1, - sym_enumerator_list, - STATE(6808), 1, - sym__scope_resolution, - STATE(4169), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275173] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6177), 1, - anon_sym_LBRACE, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(9679), 1, - sym_identifier, - STATE(2235), 1, - sym_template_type, - STATE(2313), 1, - sym_enumerator_list, - STATE(6803), 1, - sym__scope_resolution, - STATE(2631), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275209] = 7, + [337813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10904), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(4554), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 7, + ACTIONS(9854), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [275237] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(6169), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10793), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10795), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [275259] = 8, + [337839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_DASH_GT, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6785), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(14481), 1, anon_sym_LBRACK, - [275289] = 7, + STATE(4554), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9862), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [337865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10920), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(4554), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 7, + ACTIONS(9832), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [275317] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4852), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - STATE(4605), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275353] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9081), 1, - anon_sym_LBRACE, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(4852), 1, - sym_enumerator_list, - STATE(6830), 1, - sym__scope_resolution, - STATE(5218), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275389] = 3, + [337891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 2, + ACTIONS(9142), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6478), 10, + ACTIONS(9144), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -518150,13 +708595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [275409] = 3, + [337911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11262), 2, + ACTIONS(14537), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11260), 10, + ACTIONS(14535), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -518167,13 +708612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [275429] = 3, + [337931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 2, + ACTIONS(14541), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11264), 10, + ACTIONS(14539), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -518184,13 +708629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [275449] = 3, + [337951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 2, + ACTIONS(14545), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11268), 10, + ACTIONS(14543), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -518201,383 +708646,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [275469] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6998), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - anon_sym_COLON_COLON, - ACTIONS(9691), 1, - sym_identifier, - STATE(2791), 1, - sym_template_type, - STATE(3063), 1, - sym_enumerator_list, - STATE(6848), 1, - sym__scope_resolution, - STATE(2786), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275505] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10830), 1, - anon_sym___attribute, - STATE(3299), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10826), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275533] = 8, + [337971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7972), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - STATE(6174), 1, + ACTIONS(13035), 1, + anon_sym_requires, + STATE(8836), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6282), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(8089), 3, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [275563] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(6380), 1, anon_sym_LBRACE, - ACTIONS(8095), 1, - anon_sym_COLON_COLON, - ACTIONS(9677), 1, - sym_identifier, - STATE(1885), 1, - sym_template_type, - STATE(5410), 1, - sym_enumerator_list, - STATE(6793), 1, - sym__scope_resolution, - STATE(5015), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275599] = 3, + anon_sym_LBRACK, + [338001] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11238), 2, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(11236), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(7817), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(9658), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [275619] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - STATE(6180), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4673), 1, + sym_attribute_specifier, + STATE(9287), 1, + sym_field_declaration_list, + STATE(9456), 1, + sym_virtual_specifier, + STATE(10408), 1, + sym_base_class_clause, + ACTIONS(6828), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7821), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [275649] = 8, + [338037] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7972), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - STATE(6259), 1, + ACTIONS(12747), 1, + anon_sym_requires, + STATE(8823), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8455), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(7544), 3, anon_sym_LPAREN2, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - [275679] = 8, + [338067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_requires, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - STATE(6294), 1, - sym_trailing_return_type, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [275709] = 7, + STATE(8341), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(14086), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14088), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [338089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10834), 1, + ACTIONS(14497), 2, anon_sym___attribute, - STATE(3299), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 7, + anon_sym_LBRACK, + ACTIONS(14495), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275737] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [338109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10846), 1, + ACTIONS(9304), 2, anon_sym___attribute, - STATE(3299), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 7, + anon_sym_LBRACK, + ACTIONS(9306), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275765] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7023), 1, anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3958), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - STATE(6836), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275801] = 7, + anon_sym_EQ, + anon_sym_try, + [338129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - ACTIONS(10850), 1, + ACTIONS(14549), 2, anon_sym___attribute, - STATE(3299), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 7, + anon_sym_LBRACK, + ACTIONS(14547), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3014), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 8, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [275855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9420), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - ACTIONS(9414), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK, - [275885] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(9689), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3958), 1, - sym_enumerator_list, - STATE(6838), 1, - sym__scope_resolution, - STATE(4336), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [275921] = 3, + [338149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11274), 2, - anon_sym___attribute, + ACTIONS(14258), 1, + anon_sym_LT, + STATE(8362), 1, + sym_template_argument_list, + ACTIONS(9225), 2, anon_sym_LBRACK, - ACTIONS(11272), 10, + anon_sym___asm, + ACTIONS(9227), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [275941] = 8, + [338173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9637), 1, + ACTIONS(14195), 1, anon_sym_requires, - STATE(6202), 1, + STATE(8825), 1, sym_trailing_return_type, - ACTIONS(9539), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6179), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(8543), 3, anon_sym_LPAREN2, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - [275971] = 3, + [338203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11278), 2, + ACTIONS(14553), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11276), 10, + ACTIONS(14551), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -518588,407 +708842,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [275991] = 8, + [338223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, - anon_sym_DASH_GT, - ACTIONS(9826), 1, - anon_sym_requires, - STATE(6235), 1, - sym_trailing_return_type, - ACTIONS(9808), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(14481), 1, anon_sym_LBRACK, - [276021] = 8, + STATE(4554), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9850), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [338249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, + STATE(8728), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(14557), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + ACTIONS(14555), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(10922), 1, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - STATE(6244), 1, - sym_trailing_return_type, - ACTIONS(10754), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, + [338271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(14481), 1, anon_sym_LBRACK, - [276051] = 11, + STATE(4554), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9846), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [338297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7023), 1, + ACTIONS(14562), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(14560), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_template_type, - STATE(3044), 1, - sym_enumerator_list, - STATE(6815), 1, - sym__scope_resolution, - STATE(4278), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [276087] = 6, + anon_sym_EQ, + anon_sym_try, + [338317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3014), 1, + STATE(4554), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 8, + ACTIONS(9842), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [276113] = 7, + [338343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10854), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(4554), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 7, + ACTIONS(9858), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [276141] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(9381), 1, - anon_sym_LBRACE, - ACTIONS(9693), 1, - sym_identifier, - STATE(4656), 1, - sym_template_type, - STATE(5041), 1, - sym_enumerator_list, - STATE(6851), 1, - sym__scope_resolution, - STATE(4843), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [276177] = 11, + [338369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(7023), 1, + ACTIONS(14566), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(14564), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8147), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(3958), 1, - sym_enumerator_list, - STATE(6830), 1, - sym__scope_resolution, - STATE(3809), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [276213] = 8, + anon_sym_EQ, + anon_sym_try, + [338389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10437), 1, anon_sym_DASH_GT, - ACTIONS(9826), 1, + ACTIONS(12869), 1, anon_sym_requires, - STATE(6750), 1, + STATE(8835), 1, sym_trailing_return_type, - ACTIONS(7492), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(6080), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6257), 2, + STATE(8391), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(7627), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [276243] = 4, + [338419] = 8, ACTIONS(3), 1, sym_comment, - STATE(6620), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - ACTIONS(11282), 4, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14568), 1, + aux_sym_preproc_if_token2, + ACTIONS(14570), 1, + aux_sym_preproc_else_token1, + ACTIONS(14572), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14574), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8927), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10809), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [338448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(11413), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [338471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14576), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - ACTIONS(11280), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - anon_sym_requires, - [276265] = 11, + [338488] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8201), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(9695), 1, - sym_identifier, - STATE(4002), 1, - sym_template_type, - STATE(4111), 1, - sym_enumerator_list, - STATE(6849), 1, - sym__scope_resolution, - STATE(3913), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [276301] = 3, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13656), 1, + anon_sym_try, + STATE(815), 1, + sym_compound_statement, + STATE(816), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [338523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 6, - anon_sym_AMP, + ACTIONS(11486), 1, + anon_sym_delete, + ACTIONS(11488), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(8191), 6, + [338546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(14481), 1, anon_sym_LBRACK, - [276321] = 7, + STATE(4725), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9838), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [338571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10934), 1, - anon_sym___attribute, - STATE(3299), 1, + STATE(4725), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(9842), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [276349] = 8, + [338596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14578), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [338613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9920), 1, + anon_sym_delete, + ACTIONS(9922), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - ACTIONS(11285), 1, - aux_sym_preproc_if_token2, - ACTIONS(11287), 1, - aux_sym_preproc_else_token1, - ACTIONS(11289), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11291), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6710), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8758), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [276378] = 8, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [338636] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10215), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3047), 1, + STATE(3178), 1, + sym_compound_statement, + STATE(3186), 1, + sym_try_statement, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [276407] = 11, + [338671] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10271), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9897), 1, + ACTIONS(13455), 1, anon_sym_try, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1795), 1, + STATE(3165), 1, sym_compound_statement, - STATE(1796), 1, + STATE(3167), 1, sym_try_statement, - STATE(3047), 1, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276442] = 6, + [338706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9850), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [276467] = 9, + [338731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11293), 1, + ACTIONS(14465), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8304), 1, - sym_qualified_identifier, - ACTIONS(11295), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276498] = 6, + ACTIONS(14580), 1, + aux_sym_preproc_if_token2, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11048), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [338762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3016), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [276523] = 6, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14570), 1, + aux_sym_preproc_else_token1, + ACTIONS(14572), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14588), 1, + aux_sym_preproc_if_token2, + ACTIONS(14574), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8927), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11060), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [338791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 7, + ACTIONS(9854), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -518996,18 +709292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [276548] = 6, + [338816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10832), 7, + ACTIONS(9846), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -519015,143 +709311,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [276573] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11297), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8465), 1, - sym_qualified_identifier, - ACTIONS(11299), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276604] = 11, + [338841] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, + ACTIONS(10271), 1, anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10250), 1, + ACTIONS(13455), 1, anon_sym_try, - STATE(758), 1, + ACTIONS(13557), 1, + anon_sym_LBRACK, + STATE(3258), 1, sym_compound_statement, - STATE(759), 1, + STATE(3261), 1, sym_try_statement, - STATE(3047), 1, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276639] = 9, + [338876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, + ACTIONS(11401), 1, + anon_sym_delete, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11301), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8724), 1, - sym_qualified_identifier, - ACTIONS(11303), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276670] = 11, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [338899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9897), 1, - anon_sym_try, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_compound_statement, - STATE(1747), 1, - sym_try_statement, - STATE(3047), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [276705] = 6, + ACTIONS(9858), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [338924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9862), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [276730] = 9, + [338949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14590), 1, + aux_sym_preproc_if_token2, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11474), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [338980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14592), 1, + sym_identifier, + ACTIONS(14595), 1, + aux_sym_preproc_if_token1, + ACTIONS(14601), 1, + sym_preproc_directive, + ACTIONS(14604), 1, + anon_sym_RBRACE, + ACTIONS(14598), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10631), 2, + sym_preproc_call, + sym_enumerator, + STATE(8756), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [339009] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14570), 1, + aux_sym_preproc_else_token1, + ACTIONS(14572), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14606), 1, + aux_sym_preproc_if_token2, + ACTIONS(14574), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8927), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11478), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [339038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9812), 1, + anon_sym_delete, + ACTIONS(9814), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11305), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8206), 1, - sym_qualified_identifier, - ACTIONS(11307), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276761] = 2, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339061] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14608), 1, + aux_sym_preproc_if_token2, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10798), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [339092] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13690), 1, + anon_sym_try, + STATE(727), 1, + sym_compound_statement, + STATE(731), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339127] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14290), 1, + aux_sym_preproc_if_token2, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + STATE(8759), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10843), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [339158] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14570), 1, + aux_sym_preproc_else_token1, + ACTIONS(14572), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14610), 1, + aux_sym_preproc_if_token2, + ACTIONS(14574), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8735), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11332), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [339187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11309), 11, + ACTIONS(14612), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -519163,116 +709577,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [276778] = 7, + [339204] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14264), 1, + aux_sym_preproc_if_token2, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + STATE(8755), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10691), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [339235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(6270), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6272), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10846), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339254] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9852), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(5216), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 6, + ACTIONS(9850), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [276805] = 9, + [339281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11311), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8410), 1, - sym_qualified_identifier, - ACTIONS(11313), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276836] = 6, + ACTIONS(9856), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5216), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9854), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(5216), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9858), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [276861] = 6, + [339335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(5216), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 7, + ACTIONS(9862), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [276886] = 10, + [339362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(11453), 1, + anon_sym_delete, + ACTIONS(11455), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, anon_sym_decltype, - ACTIONS(3925), 1, + anon_sym_template, + anon_sym_operator, + [339385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9598), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - ACTIONS(11315), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7670), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [276919] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 2, + ACTIONS(6242), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4998), 9, + ACTIONS(6244), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -519282,28404 +709747,31236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [276938] = 10, + [339427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, + ACTIONS(6246), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(6248), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11317), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9460), 1, + anon_sym_delete, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6250), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6252), 9, anon_sym_COMMA, - ACTIONS(11321), 1, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339488] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9834), 1, anon_sym___attribute, - STATE(1975), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5216), 1, sym_parameter_list, - STATE(7142), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(11319), 2, - anon_sym_SEMI, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9832), 6, + anon_sym_COMMA, anon_sym___attribute__, - STATE(6278), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339515] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13690), 1, + anon_sym_try, + STATE(631), 1, + sym_compound_statement, + STATE(632), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276971] = 9, + [339550] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11323), 1, + ACTIONS(14614), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8740), 1, - sym_qualified_identifier, - ACTIONS(11325), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277002] = 9, + ACTIONS(14616), 1, + anon_sym_COLON, + ACTIONS(14618), 1, + sym_system_lib_string, + STATE(9825), 1, + sym_string_literal, + STATE(9836), 1, + sym_module_name, + STATE(9850), 1, + sym_module_partition, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [339579] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4599), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10274), 1, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(14570), 1, + aux_sym_preproc_else_token1, + ACTIONS(14572), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14620), 1, + aux_sym_preproc_if_token2, + ACTIONS(14574), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8757), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11537), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [339608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9934), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11240), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - STATE(6056), 1, - sym__scope_resolution, - STATE(8033), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277033] = 11, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(14614), 1, + sym_identifier, + ACTIONS(14616), 1, + anon_sym_COLON, + ACTIONS(14622), 1, + sym_system_lib_string, + STATE(10047), 1, + sym_string_literal, + STATE(10048), 1, + sym_module_name, + STATE(10058), 1, + sym_module_partition, + ACTIONS(9928), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [339660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9840), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5216), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9838), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339687] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10125), 1, + ACTIONS(13591), 1, anon_sym_try, - STATE(502), 1, + STATE(835), 1, sym_compound_statement, - STATE(503), 1, + STATE(836), 1, sym_try_statement, - STATE(3047), 1, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277068] = 9, + [339722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(9844), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5216), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9842), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9848), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5216), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9846), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11361), 1, + anon_sym_delete, + ACTIONS(11363), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, anon_sym_decltype, - ACTIONS(10611), 1, + anon_sym_template, + anon_sym_operator, + [339799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6254), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6256), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6258), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6260), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6262), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6264), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [339873] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9852), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5221), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9850), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339900] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9856), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5221), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9854), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10051), 1, + anon_sym_delete, + ACTIONS(10053), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11327), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8282), 1, - sym_qualified_identifier, - ACTIONS(11329), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277099] = 6, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339950] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(14582), 1, + aux_sym_preproc_else_token1, + ACTIONS(14584), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14624), 1, + aux_sym_preproc_if_token2, + STATE(8811), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14586), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10989), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [339981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9959), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(7031), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(5272), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [340006] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5221), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9858), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [340033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(5221), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 7, + ACTIONS(9862), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [277124] = 6, + [340060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9348), 1, + anon_sym_delete, + ACTIONS(9350), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340083] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9834), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(5221), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10832), 7, + ACTIONS(9832), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [277149] = 9, + [340110] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11331), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8378), 1, - sym_qualified_identifier, - ACTIONS(11333), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277180] = 2, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14626), 1, + anon_sym_COMMA, + ACTIONS(14630), 1, + anon_sym___attribute, + STATE(3121), 1, + sym_parameter_list, + STATE(9268), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(14628), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340143] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11335), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(1162), 1, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [277197] = 9, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13656), 1, + anon_sym_try, + STATE(783), 1, + sym_compound_statement, + STATE(821), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340178] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11337), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8194), 1, - sym_qualified_identifier, - ACTIONS(11339), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277228] = 11, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13591), 1, + anon_sym_try, + STATE(868), 1, + sym_compound_statement, + STATE(869), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340213] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9913), 1, + ACTIONS(13447), 1, anon_sym_try, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10764), 1, - anon_sym_LBRACE, - STATE(2190), 1, + STATE(2755), 1, sym_compound_statement, - STATE(2192), 1, + STATE(2756), 1, sym_try_statement, - STATE(3047), 1, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277263] = 7, + [340248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10854), 1, + ACTIONS(9840), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(5221), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 6, + ACTIONS(9838), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [277290] = 9, + [340275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11341), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8664), 1, - sym_qualified_identifier, - ACTIONS(11343), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277321] = 11, + ACTIONS(9844), 1, + anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(5221), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9842), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [340302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1024), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10173), 1, + ACTIONS(13696), 1, anon_sym_try, - STATE(693), 1, + STATE(438), 1, sym_compound_statement, - STATE(698), 1, + STATE(439), 1, sym_try_statement, - STATE(3047), 1, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277356] = 7, + [340337] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10920), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13447), 1, + anon_sym_try, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3311), 1, + STATE(2781), 1, + sym_compound_statement, + STATE(2783), 1, + sym_try_statement, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10918), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [277383] = 9, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(9787), 1, + anon_sym_delete, + ACTIONS(9789), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, + sym_identifier, anon_sym_decltype, - ACTIONS(10611), 1, + anon_sym_template, + anon_sym_operator, + [340395] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11457), 1, + anon_sym_delete, + ACTIONS(11459), 1, + anon_sym_new, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11345), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8726), 1, - sym_qualified_identifier, - ACTIONS(11347), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277414] = 7, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14632), 11, anon_sym_LPAREN2, - ACTIONS(10934), 1, - anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3311), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [277441] = 9, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [340435] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11349), 1, - aux_sym_preproc_if_token2, - ACTIONS(11351), 1, + ACTIONS(14582), 1, aux_sym_preproc_else_token1, - ACTIONS(11353), 1, + ACTIONS(14584), 1, aux_sym_preproc_elif_token1, - STATE(6871), 1, + ACTIONS(14634), 1, + aux_sym_preproc_if_token2, + STATE(8924), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, + STATE(11049), 1, sym_enumerator, - ACTIONS(11355), 2, + ACTIONS(14586), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8765), 3, + STATE(11443), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [277472] = 8, + [340466] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14245), 1, sym_identifier, - ACTIONS(11287), 1, + ACTIONS(14570), 1, aux_sym_preproc_else_token1, - ACTIONS(11289), 1, + ACTIONS(14572), 1, aux_sym_preproc_elif_token1, - ACTIONS(11357), 1, + ACTIONS(14636), 1, aux_sym_preproc_if_token2, - ACTIONS(11291), 2, + ACTIONS(14574), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(6857), 2, + STATE(8927), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8780), 3, + STATE(10940), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [277501] = 7, + [340495] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10904), 1, + ACTIONS(9848), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(5221), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 6, + ACTIONS(9846), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [277528] = 9, + [340522] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11012), 1, - aux_sym_preproc_if_token2, - ACTIONS(11169), 1, + ACTIONS(305), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(13696), 1, + anon_sym_try, + STATE(457), 1, + sym_compound_statement, + STATE(458), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340557] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11351), 1, + ACTIONS(14582), 1, aux_sym_preproc_else_token1, - ACTIONS(11353), 1, + ACTIONS(14584), 1, aux_sym_preproc_elif_token1, - STATE(6662), 1, + ACTIONS(14638), 1, + aux_sym_preproc_if_token2, + STATE(8747), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, + STATE(11049), 1, sym_enumerator, - ACTIONS(11355), 2, + ACTIONS(14586), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8496), 3, + STATE(10611), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [277559] = 7, + [340588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10846), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3311), 1, + STATE(4725), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(9832), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [277586] = 8, + [340613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(9462), 1, + anon_sym_new, + ACTIONS(9950), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - ACTIONS(11287), 1, - aux_sym_preproc_else_token1, - ACTIONS(11289), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11359), 1, - aux_sym_preproc_if_token2, - ACTIONS(11291), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6663), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8497), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [277615] = 9, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, + ACTIONS(11403), 1, + anon_sym_new, + ACTIONS(11467), 1, + anon_sym_delete, + ACTIONS(9346), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9340), 5, + anon_sym___based, sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11361), 1, - aux_sym_preproc_if_token2, - STATE(6697), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8984), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [277646] = 7, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340659] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(13557), 1, + anon_sym_LBRACK, + STATE(3200), 1, + sym_compound_statement, + STATE(3216), 1, + sym_try_statement, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10854), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3311), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 6, + ACTIONS(9850), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [277673] = 3, + [340718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 2, + ACTIONS(7414), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(5006), 9, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7416), 4, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14642), 10, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [277692] = 8, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [340756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, - sym_identifier, - ACTIONS(11287), 1, - aux_sym_preproc_else_token1, - ACTIONS(11289), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11363), 1, - aux_sym_preproc_if_token2, - ACTIONS(11291), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6857), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8237), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [277721] = 9, + ACTIONS(12869), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8391), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7627), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [340780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11365), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8187), 1, - sym_qualified_identifier, - ACTIONS(11367), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277752] = 8, + ACTIONS(7199), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7201), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(14204), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8410), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8561), 3, anon_sym_LPAREN2, - ACTIONS(10115), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 4, - anon_sym_RPAREN, - anon_sym_SEMI, + [340826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7385), 4, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_try, - [277781] = 11, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(7395), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7397), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7213), 1, + anon_sym___attribute, + STATE(8826), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7215), 4, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(9885), 1, + anon_sym_GT2, + ACTIONS(14644), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340892] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10125), 1, - anon_sym_try, - STATE(538), 1, - sym_compound_statement, - STATE(546), 1, - sym_try_statement, - STATE(3047), 1, + STATE(5256), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [277816] = 6, + ACTIONS(14421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8985), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [340922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 1, + anon_sym___attribute, + STATE(8827), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7241), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [340944] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9852), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4820), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 7, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9850), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [277841] = 7, + anon_sym_GT2, + [340970] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [277868] = 9, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9858), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [340996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10989), 1, - anon_sym___attribute, - STATE(3294), 1, + STATE(4820), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10987), 3, + ACTIONS(9862), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [277899] = 7, + anon_sym_EQ, + anon_sym_GT2, + [341022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(9434), 1, + ACTIONS(14650), 1, anon_sym_LBRACK, - ACTIONS(6221), 2, + STATE(9452), 1, + sym_gnu_asm_output_operand, + STATE(10905), 1, + sym_string_literal, + ACTIONS(14648), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341046] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13035), 1, + anon_sym_requires, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6016), 2, + STATE(8397), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9423), 3, + ACTIONS(8089), 3, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [277926] = 7, + anon_sym_LBRACE, + anon_sym_LBRACK, + [341070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, + ACTIONS(14195), 1, anon_sym_requires, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(6221), 2, + ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(5770), 2, + STATE(8297), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6004), 2, + STATE(8408), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(8543), 3, anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [277953] = 7, + anon_sym_LBRACE, + anon_sym_LBRACK, + [341094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(10023), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(6221), 2, + STATE(4985), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9858), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [277980] = 7, + anon_sym_GT2, + anon_sym_requires, + [341118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10850), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3311), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 6, + ACTIONS(9862), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [278007] = 2, + [341142] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11369), 11, + ACTIONS(9856), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4820), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9854), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [341168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7402), 1, + anon_sym___attribute, + STATE(8821), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7404), 4, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [278024] = 9, + anon_sym_GT2, + ACTIONS(14652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7408), 1, + anon_sym___attribute, + STATE(8824), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7410), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14654), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341212] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(11024), 1, - anon_sym___attribute, - STATE(3294), 1, + ACTIONS(14656), 1, + anon_sym_EQ, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(11370), 1, + sym_initializer_list, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 3, + [341244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7249), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7251), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - [278055] = 8, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341266] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11371), 1, - sym_identifier, - ACTIONS(11373), 1, - anon_sym_COLON, - ACTIONS(11375), 1, - sym_system_lib_string, - STATE(7369), 1, + ACTIONS(14660), 1, + anon_sym_LBRACK, + STATE(9503), 1, + sym_gnu_asm_input_operand, + STATE(11416), 1, sym_string_literal, - STATE(7414), 1, - sym_module_name, - STATE(7481), 1, - sym_module_partition, - ACTIONS(6848), 5, + ACTIONS(14658), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [278084] = 9, + [341290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(7253), 1, + anon_sym___attribute, + STATE(8848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7255), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14662), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341312] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11038), 1, - anon_sym___attribute, - STATE(3294), 1, + STATE(5185), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11036), 3, + ACTIONS(14421), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [278115] = 9, + anon_sym_GT2, + STATE(8985), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [341342] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11016), 1, + ACTIONS(14666), 1, anon_sym___attribute, - STATE(3294), 1, + STATE(3121), 1, sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 3, + ACTIONS(14664), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, - [278146] = 11, + [341370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, + ACTIONS(7387), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7389), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7391), 1, + anon_sym___attribute, + STATE(4035), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7393), 4, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(9885), 1, + anon_sym_GT2, + ACTIONS(14640), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10193), 1, - anon_sym_try, - STATE(373), 1, - sym_compound_statement, - STATE(374), 1, - sym_try_statement, - STATE(3047), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278181] = 11, + ACTIONS(9832), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10115), 1, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4985), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9838), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4985), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9842), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341486] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10752), 1, + STATE(4985), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9846), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12747), 1, + anon_sym_requires, + ACTIONS(10476), 2, + anon_sym_final, + anon_sym_override, + STATE(8297), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7544), 3, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(2157), 1, - sym_compound_statement, - STATE(2158), 1, - sym_try_statement, - STATE(3047), 1, + anon_sym_LBRACK, + [341534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4985), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, + ACTIONS(9854), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14670), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(14668), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [341575] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7021), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14672), 1, + sym_identifier, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + STATE(913), 1, + sym_declaration_list, + STATE(8962), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278216] = 3, + STATE(10103), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341606] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 2, - anon_sym___attribute, + ACTIONS(7015), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14678), 1, + sym_identifier, + STATE(475), 1, + sym_declaration_list, + STATE(8966), 1, + sym_attribute_declaration, + STATE(10140), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(5010), 9, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9832), 5, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [278235] = 8, + [341660] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7015), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14680), 1, + sym_identifier, + STATE(517), 1, + sym_declaration_list, + STATE(9033), 1, + sym_attribute_declaration, + STATE(10402), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3047), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11014), 4, + ACTIONS(9842), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [278264] = 8, + [341714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(14682), 1, + sym_identifier, + ACTIONS(14686), 1, + sym_system_lib_string, + STATE(11542), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(14684), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341735] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(14688), 1, + anon_sym_COLON, + STATE(4866), 1, + sym_attribute_specifier, + STATE(8994), 1, + sym__enum_base_clause, + STATE(9218), 1, + sym_enumerator_list, + ACTIONS(7602), 2, + anon_sym_COMMA, + anon_sym_GT2, + [341764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14690), 1, + sym_identifier, + ACTIONS(14692), 1, + sym_system_lib_string, + STATE(11404), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(14684), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341785] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7021), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14694), 1, + sym_identifier, + STATE(827), 1, + sym_declaration_list, + STATE(9014), 1, + sym_attribute_declaration, + STATE(10376), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341816] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7023), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14696), 1, + sym_identifier, + STATE(623), 1, + sym_declaration_list, + STATE(8990), 1, + sym_attribute_declaration, + STATE(10432), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341847] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(14688), 1, + anon_sym_COLON, + STATE(4746), 1, + sym_attribute_specifier, + STATE(8996), 1, + sym__enum_base_clause, + STATE(9224), 1, + sym_enumerator_list, + ACTIONS(7653), 2, + anon_sym_COMMA, + anon_sym_GT2, + [341876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3047), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 4, + ACTIONS(9862), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_try, - [278293] = 11, + [341899] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7023), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14698), 1, + sym_identifier, + STATE(670), 1, + sym_declaration_list, + STATE(9028), 1, + sym_attribute_declaration, + STATE(10368), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [341930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14700), 1, + sym_identifier, + ACTIONS(14702), 1, + sym_system_lib_string, + STATE(10551), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(14684), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9913), 1, - anon_sym_try, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10764), 1, - anon_sym_LBRACE, - STATE(2201), 1, - sym_compound_statement, - STATE(2202), 1, - sym_try_statement, - STATE(3047), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278328] = 8, + ACTIONS(9846), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [341974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11371), 1, + ACTIONS(14704), 1, sym_identifier, - ACTIONS(11373), 1, - anon_sym_COLON, - ACTIONS(11377), 1, + ACTIONS(14706), 1, sym_system_lib_string, - STATE(7624), 1, + STATE(11087), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(7628), 1, - sym_module_name, - STATE(7629), 1, - sym_module_partition, - ACTIONS(6848), 5, + ACTIONS(14684), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [278357] = 9, + [341995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, + ACTIONS(14710), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(14708), 5, + anon_sym___based, + sym_identifier, anon_sym_decltype, - ACTIONS(10611), 1, + anon_sym_template, + anon_sym_operator, + [342012] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6983), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11379), 1, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14712), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8681), 1, - sym_qualified_identifier, - ACTIONS(11381), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [278388] = 6, + STATE(883), 1, + sym_declaration_list, + STATE(9005), 1, + sym_attribute_declaration, + STATE(10295), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [342043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 7, + ACTIONS(9850), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [278413] = 7, + [342066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10830), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 6, + ACTIONS(9854), 5, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [278440] = 9, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11383), 1, - aux_sym_preproc_if_token2, - STATE(6871), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8475), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [278471] = 8, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9858), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342112] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(6983), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14714), 1, sym_identifier, - ACTIONS(11287), 1, - aux_sym_preproc_else_token1, - ACTIONS(11289), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11385), 1, - aux_sym_preproc_if_token2, - ACTIONS(11291), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6857), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8481), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [278500] = 6, + STATE(915), 1, + sym_declaration_list, + STATE(9004), 1, + sym_attribute_declaration, + STATE(10121), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [342143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 7, + ACTIONS(9838), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [278525] = 7, + [342166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10834), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14716), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5810), 1, + sym_template_method, + STATE(10418), 1, + sym_splice_specifier, + STATE(10446), 1, + sym_operator_name, + [342194] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9856), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(5185), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10832), 6, + ACTIONS(9854), 3, anon_sym_COMMA, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [278552] = 2, + [342218] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4347), 11, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_LT, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14718), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342244] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, + ACTIONS(13879), 1, anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [278569] = 9, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14720), 1, + anon_sym_LBRACE, + STATE(9613), 1, + sym_trailing_return_type, + STATE(10981), 1, + sym_requires_clause, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10993), 1, - anon_sym___attribute, - STATE(3294), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14722), 1, + anon_sym_LBRACE, + STATE(9552), 1, + sym_trailing_return_type, + STATE(11216), 1, + sym_requires_clause, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10991), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [278600] = 11, + [342296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10752), 1, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14724), 1, anon_sym_LBRACE, - STATE(2187), 1, - sym_compound_statement, - STATE(2188), 1, - sym_try_statement, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, + STATE(9812), 1, + sym_trailing_return_type, + STATE(10671), 1, + sym_requires_clause, + STATE(7823), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [278635] = 7, + [342322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10850), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3304), 1, + ACTIONS(14726), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10848), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [278662] = 5, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342348] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, - anon_sym_LBRACK, - ACTIONS(11387), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11389), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6201), 6, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, anon_sym_requires, - [278685] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - ACTIONS(11391), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [278718] = 10, + ACTIONS(14724), 1, + anon_sym_LBRACE, + STATE(9812), 1, + sym_trailing_return_type, + STATE(10671), 1, + sym_requires_clause, + STATE(8884), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342374] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14728), 1, sym_identifier, - ACTIONS(11393), 1, - anon_sym_virtual, - STATE(1933), 1, + STATE(3617), 1, sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7461), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [278751] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11395), 1, - aux_sym_preproc_if_token2, - STATE(6871), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8663), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [278782] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11397), 1, - aux_sym_preproc_if_token2, - STATE(6871), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8962), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [278813] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10995), 1, - sym_identifier, - ACTIONS(11287), 1, - aux_sym_preproc_else_token1, - ACTIONS(11289), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11399), 1, - aux_sym_preproc_if_token2, - ACTIONS(11291), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(6857), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8963), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [278842] = 11, + STATE(3675), 1, + sym_template_method, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10292), 1, + sym_operator_name, + STATE(10418), 1, + sym_splice_specifier, + [342402] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1024), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(9864), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(10173), 1, - anon_sym_try, - STATE(736), 1, - sym_compound_statement, - STATE(739), 1, - sym_try_statement, - STATE(3047), 1, + STATE(5256), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278877] = 9, + ACTIONS(9862), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [342426] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10997), 1, - aux_sym_preproc_if_token2, - ACTIONS(11169), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14730), 1, sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - STATE(6709), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8757), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [278908] = 6, + STATE(3617), 1, + sym_template_type, + STATE(5517), 1, + sym__splice_specialization_specifier, + STATE(5622), 1, + sym_template_method, + STATE(10431), 1, + sym_operator_name, + STATE(10450), 1, + sym_splice_specifier, + [342454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4923), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 7, + ACTIONS(9858), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [278933] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9192), 1, - anon_sym_LBRACK, - ACTIONS(9517), 1, - anon_sym_requires, - ACTIONS(9194), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5985), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [278960] = 8, + [342476] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3047), 1, + ACTIONS(14732), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11022), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [278989] = 7, + [342502] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, - anon_sym_LBRACK, - ACTIONS(9758), 1, - anon_sym_requires, - ACTIONS(9436), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6016), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - [279016] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 1, - anon_sym_LBRACK, - ACTIONS(9882), 1, - anon_sym_requires, - ACTIONS(9774), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6004), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, + ACTIONS(13435), 1, anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14734), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [279043] = 7, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym_LBRACK, - ACTIONS(11217), 1, - anon_sym_requires, - ACTIONS(10025), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6043), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - [279070] = 2, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14736), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342554] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11401), 11, - anon_sym_LPAREN2, - anon_sym_LT, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, + ACTIONS(13879), 1, anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [279087] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(11403), 1, + ACTIONS(13881), 1, anon_sym_requires, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, + ACTIONS(13955), 1, + anon_sym_LBRACE, + STATE(9570), 1, + sym_trailing_return_type, + STATE(11423), 1, sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [279114] = 3, + STATE(8902), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342580] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14728), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3675), 1, + sym_template_method, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10235), 1, + sym_operator_name, + STATE(10418), 1, + sym_splice_specifier, + [342608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 2, + ACTIONS(9852), 1, anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(5014), 9, + STATE(5256), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9850), 3, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [279133] = 8, + [342632] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11406), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14730), 1, sym_identifier, - ACTIONS(11409), 1, - aux_sym_preproc_if_token1, - ACTIONS(11415), 1, - sym_preproc_directive, - ACTIONS(11418), 1, - anon_sym_RBRACE, - ACTIONS(11412), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8597), 2, - sym_preproc_call, - sym_enumerator, - STATE(6722), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [279162] = 3, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5622), 1, + sym_template_method, + STATE(10418), 1, + sym_splice_specifier, + STATE(10431), 1, + sym_operator_name, + [342660] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(5022), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [279181] = 11, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14728), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3661), 1, + sym__splice_specialization_specifier, + STATE(3675), 1, + sym_template_method, + STATE(10096), 1, + sym_splice_specifier, + STATE(10292), 1, + sym_operator_name, + [342688] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - ACTIONS(10250), 1, - anon_sym_try, - STATE(790), 1, - sym_compound_statement, - STATE(791), 1, - sym_try_statement, - STATE(3047), 1, + ACTIONS(14738), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8715), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279216] = 9, + [342714] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11351), 1, - aux_sym_preproc_else_token1, - ACTIONS(11353), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11420), 1, - aux_sym_preproc_if_token2, - STATE(6708), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11355), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8568), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [279247] = 7, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(13955), 1, + anon_sym_LBRACE, + STATE(9570), 1, + sym_trailing_return_type, + STATE(11423), 1, + sym_requires_clause, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342740] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10920), 1, - anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3304), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, anon_sym_requires, - [279274] = 7, + ACTIONS(14740), 1, + anon_sym_LBRACE, + STATE(9866), 1, + sym_trailing_return_type, + STATE(10637), 1, + sym_requires_clause, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342766] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10934), 1, + ACTIONS(9856), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3304), 1, + STATE(5256), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 6, + ACTIONS(9854), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [279301] = 11, + [342790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - ACTIONS(10193), 1, - anon_sym_try, - STATE(304), 1, - sym_compound_statement, - STATE(310), 1, - sym_try_statement, - STATE(3047), 1, + ACTIONS(14742), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8470), 1, sym__function_declarator_seq, - STATE(6155), 2, + STATE(8286), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279336] = 3, + [342816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(5002), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(14746), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14748), 1, anon_sym_EQ, - anon_sym_try, - [279355] = 6, + ACTIONS(14744), 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, + [342834] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14750), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3675), 1, + sym_template_method, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10170), 1, + sym_operator_name, + STATE(10418), 1, + sym_splice_specifier, + [342862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3016), 1, + STATE(4923), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9850), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_try, + [342884] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, anon_sym_requires, - [279380] = 7, + ACTIONS(14740), 1, + anon_sym_LBRACE, + STATE(9866), 1, + sym_trailing_return_type, + STATE(10637), 1, + sym_requires_clause, + STATE(8883), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10904), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - STATE(3311), 1, + ACTIONS(14260), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8715), 1, sym__function_declarator_seq, - ACTIONS(10902), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [279407] = 4, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6247), 1, - anon_sym_LBRACK, - ACTIONS(11389), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 8, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [279428] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, - sym_identifier, - ACTIONS(11422), 1, - anon_sym_virtual, - STATE(1933), 1, - sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7245), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [279461] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8579), 1, - sym_qualified_identifier, - ACTIONS(11426), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [279492] = 3, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13443), 1, + anon_sym_LBRACK, + ACTIONS(14282), 1, + anon_sym_RPAREN, + STATE(4494), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [342962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 2, + ACTIONS(9852), 1, anon_sym___attribute, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(5018), 9, + STATE(5185), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9850), 3, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [279511] = 6, + anon_sym_GT2, + [342986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3020), 1, + STATE(4923), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 7, + ACTIONS(14752), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [279536] = 6, + [343008] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3020), 1, + ACTIONS(14754), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10932), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [279561] = 7, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343034] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10830), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3311), 1, + ACTIONS(14756), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10826), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [279588] = 7, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10834), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3311), 1, + STATE(4923), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10832), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [279615] = 7, + ACTIONS(9854), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [343082] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7954), 1, - anon_sym_requires, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(6221), 2, - anon_sym_final, - anon_sym_override, - STATE(5770), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6055), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_COLON, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - [279642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11432), 1, - anon_sym_delete, - ACTIONS(11434), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [279664] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9420), 1, - anon_sym_requires, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6282), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9181), 3, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(13557), 1, anon_sym_LBRACK, - [279688] = 5, + ACTIONS(14758), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11436), 1, - anon_sym_delete, - ACTIONS(11438), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [279710] = 5, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14760), 1, + anon_sym_SEMI, + ACTIONS(14762), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343134] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11440), 1, - anon_sym_delete, - ACTIONS(11442), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, + ACTIONS(8983), 1, + anon_sym_COMMA, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14764), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14766), 1, + anon_sym_RBRACK, + ACTIONS(14769), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(10037), 1, + aux_sym_structured_binding_declarator_repeat1, + [343162] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, anon_sym_operator, - [279732] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14728), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3661), 1, + sym__splice_specialization_specifier, + STATE(3675), 1, + sym_template_method, + STATE(10096), 1, + sym_splice_specifier, + STATE(10235), 1, + sym_operator_name, + [343190] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3156), 1, + ACTIONS(14771), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10902), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [279756] = 7, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10854), 1, + ACTIONS(14773), 1, + anon_sym___attribute__, + ACTIONS(14776), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3081), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10852), 5, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6555), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_SEMI, anon_sym_GT2, - [279782] = 6, + [343236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3156), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [279806] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14779), 1, + anon_sym_SEMI, + ACTIONS(14781), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343262] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(9860), 1, + anon_sym___attribute, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3156), 1, + STATE(5185), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(9858), 3, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, anon_sym_GT2, - anon_sym_requires, - [279830] = 5, + [343286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11444), 1, - anon_sym_delete, - ACTIONS(11446), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, + ACTIONS(14783), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [279852] = 6, + ACTIONS(14788), 1, + aux_sym_preproc_elif_token1, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + ACTIONS(14786), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [343308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10922), 1, - anon_sym_requires, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10021), 3, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(13557), 1, anon_sym_LBRACK, - [279876] = 6, + ACTIONS(14790), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3156), 1, + STATE(4923), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [279900] = 5, + ACTIONS(9862), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [343356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_delete, - ACTIONS(11450), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, + ACTIONS(14792), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [279922] = 6, + ACTIONS(14797), 1, + aux_sym_preproc_elif_token1, + STATE(8927), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(14795), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [343376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3387), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10852), 6, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13877), 1, + anon_sym_LBRACE, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, + anon_sym_requires, + STATE(9873), 1, + sym_trailing_return_type, + STATE(10694), 1, + sym_requires_clause, + STATE(8885), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343402] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14799), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5604), 1, + sym_template_method, + STATE(10202), 1, + sym_operator_name, + STATE(10418), 1, + sym_splice_specifier, + [343430] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(13877), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(13879), 1, + anon_sym_DASH_GT, + ACTIONS(13881), 1, anon_sym_requires, - [279946] = 7, + STATE(9873), 1, + sym_trailing_return_type, + STATE(10694), 1, + sym_requires_clause, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10920), 1, + ACTIONS(9864), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3081), 1, + STATE(5185), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 5, + ACTIONS(9862), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_EQ, anon_sym_GT2, - [279972] = 6, + [343480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13443), 1, anon_sym_LBRACK, - STATE(7279), 1, - sym_gnu_asm_input_operand, - STATE(8261), 1, - sym_string_literal, - ACTIONS(11452), 2, + ACTIONS(14278), 1, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [279996] = 6, + STATE(4494), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343506] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14801), 1, + anon_sym_SEMI, + ACTIONS(14803), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343532] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3156), 1, + ACTIONS(14805), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10826), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [280020] = 9, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3247), 1, + ACTIONS(14807), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(11144), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6961), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [280050] = 6, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343584] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - STATE(3156), 1, + ACTIONS(14809), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8715), 1, sym__function_declarator_seq, - ACTIONS(10832), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [280074] = 6, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343610] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13443), 1, anon_sym_LBRACK, - STATE(3156), 1, + ACTIONS(14286), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8715), 1, sym__function_declarator_seq, - ACTIONS(10848), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [280098] = 5, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, - anon_sym_new, - ACTIONS(11456), 1, - anon_sym_delete, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280120] = 6, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13443), 1, + anon_sym_LBRACK, + ACTIONS(14274), 1, + anon_sym_RPAREN, + STATE(4494), 1, + sym_parameter_list, + STATE(8715), 1, + sym__function_declarator_seq, + STATE(8581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3387), 1, + ACTIONS(14811), 1, + anon_sym_RPAREN, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10932), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280144] = 5, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343688] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - anon_sym_delete, - ACTIONS(11460), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280166] = 7, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14813), 1, + anon_sym_SEMI, + ACTIONS(14815), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9401), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343714] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10934), 1, + ACTIONS(13557), 1, + anon_sym_LBRACK, + ACTIONS(14817), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343740] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9860), 1, anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3081), 1, + STATE(5256), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 5, + ACTIONS(9858), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [280192] = 5, + [343764] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11462), 1, - anon_sym_delete, - ACTIONS(11464), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280214] = 6, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14819), 1, + anon_sym_SEMI, + ACTIONS(14821), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9426), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3387), 1, + ACTIONS(14823), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10918), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280238] = 6, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14650), 1, anon_sym_LBRACK, - STATE(3387), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280262] = 6, + STATE(9853), 1, + sym_gnu_asm_output_operand, + STATE(10905), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [343836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_requires, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6257), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9761), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(14660), 1, anon_sym_LBRACK, - [280286] = 9, + STATE(9614), 1, + sym_gnu_asm_input_operand, + STATE(11416), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [343856] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14716), 1, sym_identifier, - STATE(1933), 1, + STATE(3617), 1, sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7670), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [280316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11464), 1, - anon_sym_new, - ACTIONS(11466), 1, - anon_sym_delete, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280338] = 8, + STATE(5612), 1, + sym__splice_specialization_specifier, + STATE(5810), 1, + sym_template_method, + STATE(10277), 1, + sym_splice_specifier, + STATE(10446), 1, + sym_operator_name, + [343884] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11470), 1, - anon_sym___attribute, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14825), 1, + anon_sym_SEMI, + ACTIONS(14827), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9388), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(11468), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [280366] = 9, + [343910] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(11472), 1, + ACTIONS(1924), 1, + anon_sym_operator, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14799), 1, sym_identifier, - ACTIONS(11474), 1, - anon_sym_COLON_COLON, - STATE(2746), 1, + STATE(3617), 1, sym_template_type, - STATE(6831), 1, - sym__scope_resolution, - STATE(2729), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [280396] = 2, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5604), 1, + sym_template_method, + STATE(10116), 1, + sym_splice_specifier, + STATE(10202), 1, + sym_operator_name, + [343938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11476), 10, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [280412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11480), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(7317), 1, - sym_gnu_asm_output_operand, - STATE(8671), 1, - sym_string_literal, - ACTIONS(11478), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [280436] = 9, + ACTIONS(14829), 1, + anon_sym_SEMI, + STATE(4494), 1, + sym_parameter_list, + STATE(8470), 1, + sym__function_declarator_seq, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3333), 1, + ACTIONS(14831), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(11144), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6961), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [280466] = 6, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14833), 1, + anon_sym_SEMI, + ACTIONS(14835), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + STATE(9420), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344016] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3387), 1, + ACTIONS(14837), 1, + anon_sym_SEMI, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10844), 6, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14839), 1, + anon_sym_LPAREN2, + STATE(9015), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [344059] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280490] = 5, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14843), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11482), 1, - anon_sym_delete, - ACTIONS(11484), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280512] = 6, + STATE(8848), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6800), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(14662), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [344099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(13557), 1, anon_sym_LBRACK, - STATE(3387), 1, + STATE(4494), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8470), 1, sym__function_declarator_seq, - ACTIONS(10902), 6, + STATE(8286), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344122] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280536] = 5, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14845), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11464), 1, - anon_sym_new, - ACTIONS(11486), 1, - anon_sym_delete, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280558] = 5, + STATE(991), 1, + sym_template_parameter_list, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [344170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11484), 1, - anon_sym_new, - ACTIONS(11488), 1, - anon_sym_delete, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14849), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280580] = 7, + STATE(11021), 1, + sym__namespace_specifier, + STATE(10977), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [344193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10846), 1, + ACTIONS(8955), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3081), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 5, + ACTIONS(14851), 1, + anon_sym_EQ, + ACTIONS(8957), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [280606] = 6, + anon_sym_LBRACK, + [344210] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10929), 1, - anon_sym_requires, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6200), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, + ACTIONS(7021), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [280630] = 10, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14694), 1, + sym_identifier, + STATE(827), 1, + sym_declaration_list, + STATE(10376), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [344235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(6123), 1, + anon_sym___attribute, + ACTIONS(6125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11490), 1, - anon_sym_EQ, - STATE(3288), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(9046), 1, - sym_initializer_list, - STATE(6155), 2, + ACTIONS(6150), 1, + anon_sym___attribute__, + STATE(2839), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(3141), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280662] = 5, + [344256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11492), 1, - anon_sym_delete, - ACTIONS(11494), 1, - anon_sym_new, - ACTIONS(11430), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11428), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280684] = 9, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4969), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9850), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [344277] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - STATE(1933), 1, + STATE(992), 1, + sym_template_parameter_list, + STATE(3617), 1, sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7256), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [280714] = 6, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [344302] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9637), 1, - anon_sym_requires, - ACTIONS(7492), 2, - anon_sym_final, - anon_sym_override, - STATE(6080), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6179), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9423), 3, - anon_sym_LPAREN2, + ACTIONS(7015), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [280738] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14853), 1, sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7740), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [280768] = 6, + STATE(428), 1, + sym_declaration_list, + STATE(10276), 1, + sym_nested_namespace_specifier, + STATE(11021), 1, + sym__namespace_specifier, + [344327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3387), 1, + STATE(4969), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280792] = 6, + ACTIONS(9854), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [344348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3156), 1, + STATE(4969), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 6, + ACTIONS(9858), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [280816] = 9, + [344369] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(9697), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - STATE(1933), 1, + STATE(996), 1, + sym_template_parameter_list, + STATE(3617), 1, sym_template_type, - STATE(6813), 1, - sym__scope_resolution, - STATE(7245), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9058), 2, - sym_decltype, - sym_dependent_type_identifier, - [280846] = 6, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [344394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3387), 1, + STATE(4969), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9862), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [344415] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14855), 1, + anon_sym_LBRACK, + ACTIONS(14858), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [280870] = 8, + ACTIONS(14860), 1, + anon_sym_DOT, + STATE(8971), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [344434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11496), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8978), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [280897] = 8, + ACTIONS(6410), 1, + anon_sym___attribute__, + ACTIONS(6412), 1, + anon_sym___attribute, + ACTIONS(6414), 1, + anon_sym_LBRACK_LBRACK, + STATE(4244), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4745), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344455] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11311), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8410), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, + STATE(995), 1, + sym_template_parameter_list, + STATE(3617), 1, sym_template_type, - sym_dependent_type_identifier, - [280924] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [344480] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8095), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11498), 1, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14863), 1, sym_identifier, - ACTIONS(11500), 1, - anon_sym_template, - STATE(1843), 1, - sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(6793), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [280955] = 8, + STATE(11021), 1, + sym__namespace_specifier, + STATE(10852), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [344503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11379), 1, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14865), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8681), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [280982] = 10, + STATE(11021), 1, + sym__namespace_specifier, + STATE(10933), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [344526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8051), 1, - anon_sym_COLON_COLON, - ACTIONS(11502), 1, - sym_identifier, - ACTIONS(11504), 1, - anon_sym_template, - STATE(1843), 1, - sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(6795), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281013] = 8, + ACTIONS(7497), 1, + anon_sym___attribute__, + ACTIONS(7499), 1, + anon_sym___attribute, + ACTIONS(7501), 1, + anon_sym_LBRACK_LBRACK, + STATE(6081), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6297), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11365), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8187), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281040] = 8, + ACTIONS(14867), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14869), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [344564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11337), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8194), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281067] = 8, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14872), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11331), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8378), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281094] = 10, + ACTIONS(14874), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [344604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(6282), 1, + anon_sym___attribute__, + ACTIONS(6284), 1, + anon_sym___attribute, + ACTIONS(6286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11506), 1, - sym_identifier, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - STATE(692), 1, - sym_declaration_list, - STATE(6943), 1, + STATE(4002), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4363), 2, sym_attribute_declaration, - STATE(7982), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [281125] = 8, + aux_sym_attributed_declarator_repeat1, + [344625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11512), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14876), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 1, + anon_sym___attribute__, + ACTIONS(10256), 1, + anon_sym___attribute, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + STATE(7796), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7916), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344669] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8531), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, + STATE(997), 1, + sym_template_parameter_list, + STATE(3617), 1, sym_template_type, - sym_dependent_type_identifier, - [281152] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [344694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8113), 1, - anon_sym_COLON_COLON, - ACTIONS(11514), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(14878), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [344713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(14878), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [344732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14882), 1, + anon_sym_COMMA, + ACTIONS(14884), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14880), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - ACTIONS(11516), 1, - anon_sym_template, - STATE(2555), 1, - sym_template_type, - STATE(2557), 1, - sym_dependent_type_identifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(6801), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281183] = 10, + [344749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4969), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9838), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [344770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14886), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344793] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14888), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7023), 1, + anon_sym_LBRACE, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11518), 1, + ACTIONS(14890), 1, sym_identifier, - STATE(413), 1, + STATE(613), 1, sym_declaration_list, - STATE(6980), 1, - sym_attribute_declaration, - STATE(7863), 1, + STATE(10109), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [281214] = 10, + [344841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9547), 1, - anon_sym_COLON_COLON, - ACTIONS(11520), 1, - sym_identifier, - ACTIONS(11522), 1, - anon_sym_template, - STATE(1954), 1, - sym_template_type, - STATE(1955), 1, - sym_dependent_type_identifier, - STATE(2039), 1, - sym_qualified_type_identifier, - STATE(6803), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281245] = 8, + ACTIONS(14892), 1, + anon_sym_LPAREN2, + STATE(8993), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [344858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11345), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8726), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281272] = 8, + ACTIONS(6859), 1, + anon_sym___attribute, + ACTIONS(6861), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6906), 1, + anon_sym___attribute__, + STATE(4372), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4623), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11524), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8959), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281299] = 8, + ACTIONS(14894), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [344896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11526), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8747), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281326] = 8, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4750), 1, + sym_attribute_specifier, + STATE(9225), 1, + sym_enumerator_list, + ACTIONS(6987), 2, + anon_sym_COMMA, + anon_sym_GT2, + [344919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11528), 1, - sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8299), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [281353] = 10, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7443), 1, + anon_sym___attribute, + ACTIONS(7445), 1, + anon_sym_LBRACK_LBRACK, + STATE(6060), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6295), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344940] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9569), 1, - anon_sym_COLON_COLON, - ACTIONS(11516), 1, - anon_sym_template, - ACTIONS(11530), 1, - sym_identifier, - STATE(2555), 1, - sym_template_type, - STATE(2557), 1, - sym_dependent_type_identifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(6808), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281384] = 10, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10145), 1, + anon_sym_LBRACE, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4810), 1, + sym_attribute_specifier, + STATE(9231), 1, + sym_enumerator_list, + ACTIONS(7013), 2, + anon_sym_COMMA, + anon_sym_GT2, + [344963] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9491), 1, - anon_sym_COLON_COLON, - ACTIONS(11532), 1, - sym_identifier, - ACTIONS(11534), 1, - anon_sym_template, - STATE(2625), 1, - sym_template_type, - STATE(2626), 1, - sym_dependent_type_identifier, - STATE(2689), 1, - sym_qualified_type_identifier, - STATE(6809), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281415] = 8, + ACTIONS(6326), 1, + anon_sym___attribute__, + ACTIONS(6328), 1, + anon_sym___attribute, + ACTIONS(6330), 1, + anon_sym_LBRACK_LBRACK, + STATE(4078), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4504), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344984] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - STATE(3288), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(10987), 2, - anon_sym_LBRACE, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14764), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14896), 1, anon_sym_EQ, - STATE(6155), 2, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [345007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6361), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym___attribute, + ACTIONS(6365), 1, + anon_sym_LBRACK_LBRACK, + STATE(4160), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4480), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281442] = 8, + [345028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(8955), 1, + anon_sym___attribute, + ACTIONS(14898), 1, + anon_sym_EQ, + ACTIONS(8957), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10115), 1, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(3288), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(11022), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [281469] = 8, + anon_sym_GT2, + [345045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - STATE(3288), 1, + ACTIONS(14900), 1, + anon_sym_RPAREN, + STATE(3121), 1, sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(11036), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(6155), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281496] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(11536), 1, - sym_identifier, - STATE(1890), 1, - sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(6813), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281527] = 8, + [345068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - STATE(3288), 1, + ACTIONS(14902), 1, + anon_sym_RPAREN, + STATE(3121), 1, sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(11014), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(6155), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281554] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9673), 1, - anon_sym_COLON_COLON, - ACTIONS(11538), 1, - sym_identifier, - ACTIONS(11540), 1, - anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2881), 1, - sym_qualified_type_identifier, - STATE(6815), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281585] = 8, + [345091] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - STATE(3288), 1, + ACTIONS(14904), 1, + anon_sym_RPAREN, + STATE(3121), 1, sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - ACTIONS(10991), 2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(6155), 2, + STATE(8366), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281612] = 10, + [345114] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(6983), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11542), 1, + ACTIONS(14906), 1, sym_identifier, - STATE(708), 1, + STATE(808), 1, sym_declaration_list, - STATE(6967), 1, - sym_attribute_declaration, - STATE(7998), 1, + STATE(10425), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [281643] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10035), 1, - anon_sym_COLON_COLON, - ACTIONS(11544), 1, - sym_identifier, - ACTIONS(11546), 1, - anon_sym_template, - STATE(2252), 1, - sym_qualified_type_identifier, - STATE(2257), 1, - sym_template_type, - STATE(2258), 1, - sym_dependent_type_identifier, - STATE(6818), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11548), 1, - sym_identifier, - ACTIONS(11552), 1, - sym_system_lib_string, - STATE(8214), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11550), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [281695] = 10, + [345139] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(6983), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11554), 1, + ACTIONS(14714), 1, sym_identifier, - STATE(434), 1, + STATE(915), 1, sym_declaration_list, - STATE(6966), 1, - sym_attribute_declaration, - STATE(7930), 1, + STATE(10121), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [281726] = 6, + [345164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14908), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10918), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281749] = 6, + STATE(9007), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14910), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10932), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281772] = 6, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14912), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10826), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281795] = 6, + STATE(9009), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14914), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10832), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281818] = 6, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14916), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10844), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281841] = 6, + STATE(9011), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(14918), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_parameter_list, - STATE(5996), 1, - sym__function_declarator_seq, - ACTIONS(10848), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281864] = 10, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14920), 1, + anon_sym_LPAREN2, + STATE(9013), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14922), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(7021), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11556), 1, + ACTIONS(14924), 1, sym_identifier, - STATE(809), 1, + STATE(845), 1, sym_declaration_list, - STATE(6993), 1, - sym_attribute_declaration, - STATE(7929), 1, + STATE(10420), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [281895] = 6, + [345325] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14926), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14928), 1, + anon_sym_LPAREN2, + STATE(9017), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14930), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14932), 1, + anon_sym_LPAREN2, + STATE(9019), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14934), 1, + anon_sym_LPAREN2, + STATE(8977), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345410] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, + sym_identifier, + STATE(994), 1, + sym_template_parameter_list, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [345435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3505), 1, + STATE(4969), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281918] = 10, + ACTIONS(9832), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345456] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9617), 1, - anon_sym_COLON_COLON, - ACTIONS(11558), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - ACTIONS(11560), 1, - anon_sym_template, - STATE(2775), 1, + STATE(993), 1, + sym_template_parameter_list, + STATE(3617), 1, sym_template_type, - STATE(2785), 1, - sym_dependent_type_identifier, - STATE(2852), 1, - sym_qualified_type_identifier, - STATE(6829), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281949] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [345481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11536), 1, - sym_identifier, - STATE(1890), 1, - sym_template_type, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2881), 1, - sym_qualified_type_identifier, - STATE(6830), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [281980] = 10, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(14764), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14769), 1, + anon_sym_EQ, + STATE(3601), 1, + sym_template_argument_list, + ACTIONS(9146), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [345504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(11474), 1, - anon_sym_COLON_COLON, - ACTIONS(11562), 1, - sym_identifier, - ACTIONS(11564), 1, - anon_sym_template, - STATE(2706), 1, - sym_template_type, - STATE(2707), 1, - sym_dependent_type_identifier, - STATE(2735), 1, - sym_qualified_type_identifier, - STATE(6831), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282011] = 9, + ACTIONS(8929), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14936), 1, + anon_sym_RPAREN, + STATE(3121), 1, + sym_parameter_list, + STATE(8366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(11566), 1, - anon_sym_COLON, - STATE(2594), 1, + STATE(8921), 2, sym_attribute_specifier, - STATE(3837), 1, - sym__enum_base_clause, - STATE(3959), 1, - sym_enumerator_list, - ACTIONS(6567), 2, + aux_sym_type_definition_repeat1, + ACTIONS(14938), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [345546] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(14940), 1, + sym_identifier, + STATE(11021), 1, + sym__namespace_specifier, + STATE(11005), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [345569] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4969), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9846), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [282040] = 10, + [345590] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(7023), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11568), 1, + ACTIONS(14696), 1, sym_identifier, - STATE(571), 1, + STATE(623), 1, sym_declaration_list, - STATE(6942), 1, - sym_attribute_declaration, - STATE(8045), 1, + STATE(10432), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [282071] = 10, + [345615] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9522), 1, - anon_sym_COLON_COLON, - ACTIONS(11504), 1, - anon_sym_template, - ACTIONS(11570), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6220), 1, + anon_sym_LT, + ACTIONS(14847), 1, sym_identifier, - STATE(1843), 1, + STATE(3617), 1, sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(6834), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282102] = 5, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(9257), 1, + sym_template_parameter_list, + STATE(10418), 1, + sym_splice_specifier, + [345640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11572), 1, - sym_identifier, - ACTIONS(11574), 1, - sym_system_lib_string, - STATE(9077), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11550), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [282123] = 9, + ACTIONS(14942), 1, + anon_sym_LBRACK, + ACTIONS(14944), 1, + anon_sym_EQ, + ACTIONS(14946), 1, + anon_sym_DOT, + STATE(8971), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [345659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11566), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_attribute_specifier, - STATE(3838), 1, - sym__enum_base_clause, - STATE(3963), 1, - sym_enumerator_list, - ACTIONS(6573), 2, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + STATE(4969), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + ACTIONS(9842), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [282152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11576), 1, - sym_identifier, - ACTIONS(11578), 1, - sym_system_lib_string, - STATE(8303), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11550), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [282173] = 10, + [345680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8121), 1, - anon_sym_COLON_COLON, - ACTIONS(11580), 1, - sym_identifier, - ACTIONS(11582), 1, - anon_sym_template, - STATE(1890), 1, - sym_template_type, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(2881), 1, - sym_qualified_type_identifier, - STATE(6838), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282204] = 10, + ACTIONS(14948), 1, + anon_sym_LPAREN2, + STATE(8979), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(14841), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345697] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(7015), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, + ACTIONS(14674), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, + ACTIONS(14676), 1, anon_sym_inline, - ACTIONS(11584), 1, + ACTIONS(14678), 1, sym_identifier, - STATE(716), 1, + STATE(475), 1, sym_declaration_list, - STATE(6990), 1, - sym_attribute_declaration, - STATE(8041), 1, + STATE(10140), 1, sym_nested_namespace_specifier, - STATE(8449), 1, + STATE(11021), 1, sym__namespace_specifier, - [282235] = 10, + [345722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(5048), 1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(11586), 1, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(3605), 1, + sym_template_argument_list, + STATE(10031), 2, + sym_argument_list, + sym_initializer_list, + [345745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14788), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14786), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - ACTIONS(11588), 1, - anon_sym_template, - STATE(1890), 1, + [345759] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(14103), 1, + anon_sym_LBRACE, + STATE(10995), 1, + sym_trailing_return_type, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345779] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14950), 1, + sym_identifier, + STATE(3617), 1, sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(6840), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282266] = 8, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(8429), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [345801] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11297), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14952), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8465), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, + STATE(2447), 1, sym_template_type, - sym_dependent_type_identifier, - [282293] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5722), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [345823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(4575), 1, - anon_sym_COLON_COLON, - ACTIONS(11538), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14954), 1, sym_identifier, - ACTIONS(11540), 1, - anon_sym_template, - STATE(1890), 1, + STATE(3617), 1, sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(6842), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282324] = 10, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [345845] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9989), 1, - anon_sym_COLON_COLON, - ACTIONS(11590), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14956), 1, sym_identifier, - ACTIONS(11592), 1, - anon_sym_template, - STATE(1843), 1, + STATE(3617), 1, sym_template_type, - STATE(1844), 1, - sym_dependent_type_identifier, - STATE(1873), 1, - sym_qualified_type_identifier, - STATE(6843), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282355] = 8, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [345867] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11594), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14958), 1, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8200), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, + STATE(2441), 1, sym_template_type, - sym_dependent_type_identifier, - [282382] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5695), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [345889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11596), 1, - sym_identifier, - STATE(525), 1, - sym_declaration_list, - STATE(6982), 1, - sym_attribute_declaration, - STATE(7823), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [282413] = 5, + ACTIONS(13696), 1, + anon_sym_try, + ACTIONS(14960), 1, + anon_sym_SEMI, + ACTIONS(14962), 1, + anon_sym_EQ, + STATE(419), 2, + sym_compound_statement, + sym_try_statement, + [345909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11598), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14964), 1, sym_identifier, - ACTIONS(11600), 1, - sym_system_lib_string, - STATE(8358), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11550), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [282434] = 8, + ACTIONS(14966), 1, + anon_sym_for, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [345931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(10611), 1, - anon_sym_COLON_COLON, - ACTIONS(11602), 1, + ACTIONS(14968), 2, + anon_sym_RBRACE, sym_identifier, - STATE(5979), 1, - sym__scope_resolution, - STATE(8645), 1, - sym_qualified_identifier, - STATE(9058), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [282461] = 10, + ACTIONS(14970), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [345945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9585), 1, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(14972), 1, + anon_sym_LBRACE, + STATE(11027), 1, + sym_trailing_return_type, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(13690), 1, + anon_sym_try, + ACTIONS(14974), 1, + anon_sym_SEMI, + ACTIONS(14976), 1, + anon_sym_EQ, + STATE(756), 2, + sym_compound_statement, + sym_try_statement, + [345985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14980), 2, anon_sym_COLON_COLON, - ACTIONS(11604), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14978), 4, + anon_sym_virtual, sym_identifier, - ACTIONS(11606), 1, + anon_sym_decltype, anon_sym_template, - STATE(2675), 1, - sym_dependent_type_identifier, - STATE(2686), 1, - sym_template_type, - STATE(2728), 1, - sym_qualified_type_identifier, - STATE(6848), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282492] = 10, + [345999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(9642), 1, - anon_sym_COLON_COLON, - ACTIONS(11608), 1, + ACTIONS(10215), 1, + anon_sym_LBRACE, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(14982), 1, + anon_sym_SEMI, + ACTIONS(14984), 1, + anon_sym_EQ, + STATE(3325), 2, + sym_compound_statement, + sym_try_statement, + [346019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 1, + anon_sym_LBRACE, + ACTIONS(13656), 1, + anon_sym_try, + ACTIONS(14986), 1, + anon_sym_SEMI, + ACTIONS(14988), 1, + anon_sym_EQ, + STATE(877), 2, + sym_compound_statement, + sym_try_statement, + [346039] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(13447), 1, + anon_sym_try, + ACTIONS(14990), 1, + anon_sym_SEMI, + ACTIONS(14992), 1, + anon_sym_EQ, + STATE(2713), 2, + sym_compound_statement, + sym_try_statement, + [346059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(13919), 1, + anon_sym_LBRACE, + STATE(10537), 1, + sym_trailing_return_type, + STATE(9036), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14994), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(11610), 1, - anon_sym_template, - STATE(3577), 1, + ACTIONS(14996), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14998), 1, + sym_identifier, + STATE(3456), 1, sym_template_type, - STATE(3607), 1, - sym_dependent_type_identifier, - STATE(3746), 1, - sym_qualified_type_identifier, - STATE(6849), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282523] = 10, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8175), 1, - anon_sym_COLON_COLON, - ACTIONS(11580), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15000), 1, sym_identifier, - ACTIONS(11582), 1, - anon_sym_template, - STATE(1890), 1, + STATE(2608), 1, sym_template_type, - STATE(1893), 1, - sym_qualified_type_identifier, - STATE(1895), 1, - sym_dependent_type_identifier, - STATE(6850), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282554] = 10, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5548), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [346137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_decltype, - ACTIONS(8057), 1, - anon_sym_COLON_COLON, - ACTIONS(11612), 1, + ACTIONS(15002), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(11614), 1, - anon_sym_template, - STATE(4444), 1, + ACTIONS(15004), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346151] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15006), 1, + sym_identifier, + STATE(2392), 1, sym_template_type, - STATE(4448), 1, - sym_dependent_type_identifier, - STATE(4598), 1, - sym_qualified_type_identifier, - STATE(6851), 1, - sym__scope_resolution, - STATE(9058), 1, - sym_decltype, - [282585] = 6, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5548), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [346173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10828), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3505), 1, + STATE(5441), 1, sym_parameter_list, - STATE(5996), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, + ACTIONS(9832), 2, + anon_sym_LBRACE, anon_sym_requires, - [282608] = 6, + [346193] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15008), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5177), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [346215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3544), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(9846), 2, + anon_sym_LBRACE, anon_sym_requires, - [282630] = 8, + [346235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11616), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(13690), 1, + anon_sym_try, + ACTIONS(15010), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282656] = 8, + ACTIONS(15012), 1, + anon_sym_EQ, + STATE(761), 2, + sym_compound_statement, + sym_try_statement, + [346255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, + ACTIONS(14258), 1, + anon_sym_LT, + ACTIONS(14491), 1, anon_sym_LBRACK, - ACTIONS(11032), 1, + STATE(8713), 1, + sym_template_argument_list, + ACTIONS(14487), 3, anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282682] = 7, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [346273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10846), 1, - anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3333), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14505), 1, + anon_sym_decltype, + ACTIONS(15014), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 2, anon_sym_COMMA, - anon_sym___attribute__, anon_sym_GT2, - [282706] = 5, + [346293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11618), 1, - sym_identifier, - ACTIONS(11623), 1, - aux_sym_preproc_elif_token1, - STATE(6857), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(11621), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [282726] = 8, + ACTIONS(14258), 1, + anon_sym_LT, + ACTIONS(14497), 1, + anon_sym_LBRACK, + STATE(8722), 1, + sym_template_argument_list, + ACTIONS(14495), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [346311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11625), 1, + ACTIONS(10271), 1, + anon_sym_LBRACE, + ACTIONS(13455), 1, + anon_sym_try, + ACTIONS(15016), 1, anon_sym_SEMI, - ACTIONS(11627), 1, + ACTIONS(15018), 1, anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7344), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282752] = 6, + STATE(3194), 2, + sym_compound_statement, + sym_try_statement, + [346331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10832), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15020), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [282774] = 8, + STATE(9084), 1, + aux_sym_field_declaration_repeat1, + STATE(11141), 1, + sym_attribute_specifier, + [346353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11629), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15022), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282800] = 6, + STATE(9086), 1, + aux_sym_field_declaration_repeat1, + STATE(11150), 1, + sym_attribute_specifier, + [346375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10848), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15024), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [282822] = 8, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11161), 1, + sym_attribute_specifier, + [346397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11631), 1, - anon_sym_SEMI, - ACTIONS(11633), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282848] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15026), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346419] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 4, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15028), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346441] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(11394), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [346455] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15030), 1, anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11000), 1, + sym_attribute_specifier, + [346477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(15032), 1, anon_sym_LBRACE, - [282870] = 8, + STATE(10718), 1, + sym_trailing_return_type, + STATE(7823), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14968), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(14970), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11635), 1, + ACTIONS(15032), 1, anon_sym_LBRACE, - STATE(7605), 1, + STATE(10718), 1, sym_trailing_return_type, - STATE(8373), 1, - sym_requires_clause, - STATE(6934), 2, + STATE(9045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [282896] = 6, + [346531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3096), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 4, + ACTIONS(9858), 2, + anon_sym_LBRACE, + anon_sym_requires, + [346551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(305), 1, + anon_sym_LBRACE, + ACTIONS(13696), 1, + anon_sym_try, + ACTIONS(15034), 1, + anon_sym_SEMI, + ACTIONS(15036), 1, + anon_sym_EQ, + STATE(522), 2, + sym_compound_statement, + sym_try_statement, + [346571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14604), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15038), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346585] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15040), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [282918] = 7, + STATE(9107), 1, + aux_sym_field_declaration_repeat1, + STATE(10578), 1, + sym_attribute_specifier, + [346607] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15042), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346629] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15044), 1, + anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10587), 1, + sym_attribute_specifier, + [346651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10854), 1, + ACTIONS(15046), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15048), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346665] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3247), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10852), 3, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, anon_sym___attribute__, - [282942] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11637), 1, + ACTIONS(15050), 1, anon_sym_SEMI, - ACTIONS(11639), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7340), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282968] = 6, + STATE(9095), 1, + aux_sym_field_declaration_repeat1, + STATE(11207), 1, + sym_attribute_specifier, + [346687] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15052), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [282990] = 7, + STATE(9112), 1, + aux_sym_field_declaration_repeat1, + STATE(11344), 1, + sym_attribute_specifier, + [346709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10920), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3333), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 3, + ACTIONS(11751), 1, anon_sym_COMMA, + ACTIONS(11779), 1, anon_sym___attribute__, - anon_sym_GT2, - [283014] = 3, + ACTIONS(15054), 1, + anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11222), 1, + sym_attribute_specifier, + [346731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11643), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11641), 5, - anon_sym___based, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15056), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [283030] = 6, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11645), 1, - sym_identifier, - ACTIONS(11650), 1, - aux_sym_preproc_elif_token1, - STATE(6871), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - ACTIONS(11648), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [283052] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15058), 1, + anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11232), 1, + sym_attribute_specifier, + [346775] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3056), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15060), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283074] = 8, + STATE(9114), 1, + aux_sym_field_declaration_repeat1, + STATE(11351), 1, + sym_attribute_specifier, + [346797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11652), 1, - anon_sym_SEMI, - ACTIONS(11654), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7342), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283100] = 6, + ACTIONS(15062), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15064), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346811] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3056), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10852), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15066), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283122] = 7, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10591), 1, + sym_attribute_specifier, + [346833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10920), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3247), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 3, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, anon_sym___attribute__, - [283146] = 8, + ACTIONS(15068), 1, + anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11029), 1, + sym_attribute_specifier, + [346855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11656), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283172] = 8, + ACTIONS(15070), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15072), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346869] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11658), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283198] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15074), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5177), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [346891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3056), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15076), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283220] = 4, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11303), 1, + sym_attribute_specifier, + [346913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11662), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11664), 1, + ACTIONS(1162), 1, + anon_sym_LBRACE, + ACTIONS(13656), 1, + anon_sym_try, + ACTIONS(15078), 1, + anon_sym_SEMI, + ACTIONS(15080), 1, anon_sym_EQ, - ACTIONS(11660), 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, - [283238] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11666), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283264] = 6, + STATE(768), 2, + sym_compound_statement, + sym_try_statement, + [346933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10902), 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15082), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [283286] = 6, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11304), 1, + sym_attribute_specifier, + [346955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10826), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283308] = 8, + ACTIONS(15062), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15064), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11668), 1, - anon_sym_LBRACE, - STATE(7603), 1, - sym_trailing_return_type, - STATE(8360), 1, - sym_requires_clause, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283334] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15084), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [346991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3056), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283356] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15086), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5548), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347013] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11670), 1, - anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283382] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15088), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347035] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10987), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283408] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6266), 1, + anon_sym_for, + ACTIONS(14964), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [347057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11672), 1, - anon_sym_RPAREN, - STATE(3047), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283434] = 8, + ACTIONS(9850), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11674), 1, - anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283460] = 5, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15090), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - anon_sym_LBRACK, - STATE(7765), 1, - sym_gnu_asm_input_operand, - STATE(8261), 1, + STATE(11083), 1, sym_string_literal, - ACTIONS(119), 5, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [283480] = 8, + [347113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11676), 1, - anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283506] = 8, + ACTIONS(15092), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15094), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11678), 1, + ACTIONS(10232), 1, + anon_sym_LBRACE, + ACTIONS(13447), 1, + anon_sym_try, + ACTIONS(15096), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283532] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6124), 1, - anon_sym_COMMA, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11680), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11682), 1, - anon_sym_RBRACK, - ACTIONS(11685), 1, + ACTIONS(15098), 1, anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7387), 1, - aux_sym_structured_binding_declarator_repeat1, - [283560] = 8, + STATE(2738), 2, + sym_compound_statement, + sym_try_statement, + [347147] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11687), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15100), 1, anon_sym_SEMI, - ACTIONS(11689), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7346), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283586] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11008), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10832), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283634] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283656] = 8, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10678), 1, + sym_attribute_specifier, + [347169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11691), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15102), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283682] = 8, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10688), 1, + sym_attribute_specifier, + [347191] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(10991), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283708] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15104), 1, + sym_identifier, + STATE(3989), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5695), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347213] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11693), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15106), 1, anon_sym_SEMI, - ACTIONS(11695), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283734] = 8, + STATE(9090), 1, + aux_sym_field_declaration_repeat1, + STATE(10553), 1, + sym_attribute_specifier, + [347235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11697), 1, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(13591), 1, + anon_sym_try, + ACTIONS(15108), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283760] = 8, + ACTIONS(15110), 1, + anon_sym_EQ, + STATE(895), 2, + sym_compound_statement, + sym_try_statement, + [347255] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(11046), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283786] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15112), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5548), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347277] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283808] = 8, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15114), 1, + anon_sym_SEMI, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10783), 1, + sym_attribute_specifier, + [347299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11699), 1, - anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283834] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15116), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11701), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15118), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283860] = 8, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(10980), 1, + sym_attribute_specifier, + [347343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10694), 1, + ACTIONS(10271), 1, anon_sym_LBRACE, - STATE(7613), 1, - sym_trailing_return_type, - STATE(8398), 1, - sym_requires_clause, - STATE(6931), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283886] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11703), 1, + ACTIONS(13455), 1, + anon_sym_try, + ACTIONS(15120), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283912] = 8, + ACTIONS(15122), 1, + anon_sym_EQ, + STATE(3355), 2, + sym_compound_statement, + sym_try_statement, + [347363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11705), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15124), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283938] = 6, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11360), 1, + sym_attribute_specifier, + [347385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283960] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15126), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5548), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10848), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [283982] = 8, + ACTIONS(894), 1, + anon_sym_LBRACE, + ACTIONS(13591), 1, + anon_sym_try, + ACTIONS(15128), 1, + anon_sym_SEMI, + ACTIONS(15130), 1, + anon_sym_EQ, + STATE(793), 2, + sym_compound_statement, + sym_try_statement, + [347427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10694), 1, - anon_sym_LBRACE, - STATE(7613), 1, - sym_trailing_return_type, - STATE(8398), 1, - sym_requires_clause, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284008] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14998), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10852), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [284030] = 5, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15132), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11480), 1, - anon_sym_LBRACK, - STATE(7708), 1, - sym_gnu_asm_output_operand, - STATE(8671), 1, - sym_string_literal, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [284050] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15134), 1, + anon_sym_SEMI, + STATE(9080), 1, + aux_sym_field_declaration_repeat1, + STATE(11374), 1, + sym_attribute_specifier, + [347493] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10934), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3247), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 3, + ACTIONS(11751), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11779), 1, anon_sym___attribute__, - [284074] = 8, + ACTIONS(15136), 1, + anon_sym_SEMI, + STATE(9089), 1, + aux_sym_field_declaration_repeat1, + STATE(11464), 1, + sym_attribute_specifier, + [347515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11707), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11751), 1, + anon_sym_COMMA, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15138), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284100] = 6, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + STATE(11480), 1, + sym_attribute_specifier, + [347537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(9225), 1, anon_sym_LBRACK, - STATE(3056), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(11709), 4, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(9227), 3, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284122] = 8, + anon_sym_LBRACK_LBRACK, + [347555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(9893), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6611), 1, - sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284148] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15140), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11711), 1, - anon_sym_RPAREN, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284174] = 8, + ACTIONS(15142), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15144), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11014), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284200] = 7, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15146), 1, + sym_identifier, + STATE(3456), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5722), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10846), 1, - anon_sym___attribute, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3247), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [284224] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6268), 1, + anon_sym_for, + ACTIONS(14964), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [347635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(9225), 1, + anon_sym_LBRACK, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(5936), 1, + sym_template_argument_list, + ACTIONS(9227), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11635), 1, - anon_sym_LBRACE, - STATE(7605), 1, - sym_trailing_return_type, - STATE(8373), 1, - sym_requires_clause, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284250] = 8, + [347653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11036), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284276] = 7, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6224), 1, + anon_sym_for, + ACTIONS(14964), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [347675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10934), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3333), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [284300] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11713), 1, - anon_sym_SEMI, - ACTIONS(11715), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - STATE(7307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284326] = 3, + ACTIONS(9854), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11717), 5, - anon_sym___based, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15148), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [284342] = 8, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5722), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(7880), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, + ACTIONS(13479), 1, anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11721), 1, + ACTIONS(14103), 1, anon_sym_LBRACE, - STATE(7606), 1, + STATE(10995), 1, sym_trailing_return_type, - STATE(8430), 1, - sym_requires_clause, - STATE(6883), 2, + STATE(9072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [284368] = 6, + [347737] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14964), 1, + sym_identifier, + ACTIONS(15150), 1, + anon_sym_for, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [347759] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6240), 1, + anon_sym_for, + ACTIONS(14964), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [347781] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15152), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3096), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(9862), 2, anon_sym_LBRACE, - [284390] = 8, + anon_sym_requires, + [347823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11723), 1, - anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284416] = 7, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15154), 1, + sym_identifier, + STATE(1990), 1, + sym_template_type, + STATE(3776), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10854), 1, - anon_sym___attribute, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3333), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [284440] = 8, + ACTIONS(9838), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(9893), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11026), 1, - anon_sym_RPAREN, - STATE(3047), 1, + STATE(5441), 1, sym_parameter_list, - STATE(6611), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6996), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284466] = 8, + ACTIONS(9842), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11022), 1, - anon_sym_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284492] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15156), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5695), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11721), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - STATE(7606), 1, - sym_trailing_return_type, - STATE(8430), 1, - sym_requires_clause, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284518] = 8, + ACTIONS(13473), 1, + anon_sym_try, + ACTIONS(15158), 1, + anon_sym_SEMI, + ACTIONS(15160), 1, + anon_sym_EQ, + STATE(3202), 2, + sym_compound_statement, + sym_try_statement, + [347927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10115), 1, - anon_sym_LBRACK, - ACTIONS(11725), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15162), 1, + sym_identifier, + STATE(3989), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(5695), 1, + sym_template_function, + STATE(10418), 1, + sym_splice_specifier, + [347949] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15164), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3900), 1, + sym_template_function, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [347971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15166), 1, anon_sym_SEMI, - STATE(3047), 1, - sym_parameter_list, - STATE(6213), 1, - sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284544] = 8, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [347988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10724), 1, - anon_sym_LBRACE, - STATE(7361), 1, - sym_trailing_return_type, - STATE(8501), 1, - sym_requires_clause, - STATE(6920), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284570] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15168), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11727), 1, - anon_sym_LBRACE, - STATE(7728), 1, - sym_trailing_return_type, - STATE(8744), 1, - sym_requires_clause, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284596] = 8, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15170), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15172), 1, + anon_sym_SEMI, + STATE(9242), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10649), 1, - anon_sym_DASH_GT, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10724), 1, - anon_sym_LBRACE, - STATE(7361), 1, - sym_trailing_return_type, - STATE(8501), 1, - sym_requires_clause, - STATE(4728), 2, + ACTIONS(14616), 1, + anon_sym_COLON, + ACTIONS(15174), 1, + anon_sym_SEMI, + STATE(9699), 1, + sym_module_partition, + STATE(11365), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284622] = 8, + [348060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9743), 1, + sym_attribute, + STATE(9746), 1, + sym_annotation, + [348079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(11729), 1, - anon_sym_SEMI, - STATE(3047), 1, + ACTIONS(15182), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284648] = 6, + [348098] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3096), 1, + ACTIONS(15184), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [284670] = 4, + [348117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 1, - anon_sym_COMMA, - ACTIONS(11735), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11731), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [284687] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15186), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11737), 1, - anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [284704] = 7, + ACTIONS(8961), 1, + anon_sym_LBRACE, + ACTIONS(15188), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(15190), 2, + anon_sym_AMP_AMP, + anon_sym_and, + [348149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6076), 1, + ACTIONS(15194), 1, + anon_sym_DOT, + STATE(9258), 1, + aux_sym_module_name_repeat1, + ACTIONS(15192), 3, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7970), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - STATE(7034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284727] = 6, + [348164] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - STATE(5544), 2, + ACTIONS(15196), 1, + anon_sym_SEMI, + STATE(9190), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284748] = 8, + [348181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(4562), 1, anon_sym_LBRACE, - ACTIONS(11508), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11596), 1, - sym_identifier, - STATE(525), 1, - sym_declaration_list, - STATE(7823), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [284773] = 8, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5660), 1, + sym_argument_list, + STATE(7265), 1, + sym_initializer_list, + [348200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11542), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15198), 1, sym_identifier, - STATE(708), 1, - sym_declaration_list, - STATE(7998), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [284798] = 7, + STATE(1990), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6046), 1, - anon_sym_COLON, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - STATE(7034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284821] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11741), 1, + ACTIONS(15200), 1, anon_sym_RPAREN, - STATE(1975), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284844] = 7, + STATE(8431), 1, + sym__function_declarator_seq, + [348238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11743), 1, - anon_sym_RPAREN, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284867] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15202), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11745), 1, - anon_sym_RPAREN, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284890] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3154), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10932), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(2061), 1, + sym_template_argument_list, + ACTIONS(6203), 2, anon_sym_COMMA, - anon_sym_GT2, - [284911] = 6, + anon_sym_RBRACK, + [348291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3154), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10844), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [284932] = 4, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9720), 1, + sym_attribute, + STATE(9721), 1, + sym_annotation, + [348310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10692), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11747), 1, - anon_sym_EQ, - ACTIONS(10690), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11779), 1, anon_sym___attribute__, - anon_sym_LBRACK, - [284949] = 7, + ACTIONS(15204), 1, + anon_sym_SEMI, + STATE(9208), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, + ACTIONS(15190), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8941), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [348340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15206), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348359] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15208), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9225), 1, anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(5816), 1, + sym_template_argument_list, + ACTIONS(9227), 2, anon_sym_LPAREN2, - ACTIONS(11749), 1, - anon_sym_RPAREN, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [284972] = 7, + anon_sym_LBRACK_LBRACK, + [348393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15210), 1, + anon_sym_SEMI, + STATE(9255), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + ACTIONS(15214), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11680), 1, + STATE(10115), 1, + sym_argument_list, + ACTIONS(15212), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [348427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11929), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11685), 1, + ACTIONS(11933), 1, anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(6238), 2, + ACTIONS(15216), 1, + sym_identifier, + ACTIONS(11931), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [284995] = 6, + anon_sym_GT2, + [348444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9562), 1, + sym_attribute, + STATE(9566), 1, + sym_annotation, + [348463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10131), 1, + sym_splice_specifier, + [348482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5517), 1, + sym__splice_specialization_specifier, + STATE(10450), 1, + sym_splice_specifier, + [348501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(6888), 1, + sym__splice_specialization_specifier, + STATE(10131), 1, + sym_splice_specifier, + [348520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3154), 1, + ACTIONS(15218), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10826), 3, - anon_sym_DOT_DOT_DOT, + [348539] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15220), 1, anon_sym_COMMA, - anon_sym_GT2, - [285016] = 7, + ACTIONS(15225), 1, + anon_sym___attribute, + STATE(9177), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15223), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [348556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5913), 1, + sym__splice_specialization_specifier, + STATE(10187), 1, + sym_splice_specifier, + [348575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11751), 1, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15227), 1, anon_sym_RPAREN, - STATE(1975), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285039] = 4, + STATE(8431), 1, + sym__function_declarator_seq, + [348594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285056] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11755), 1, + ACTIONS(15229), 1, anon_sym_RPAREN, - STATE(1975), 1, + STATE(4601), 1, sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285079] = 6, + STATE(8431), 1, + sym__function_declarator_seq, + [348613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9726), 1, + sym_attribute, + STATE(9727), 1, + sym_annotation, + [348632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3154), 1, + ACTIONS(15231), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [285100] = 7, + [348651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_COLON, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - STATE(7034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285123] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15233), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym___attribute__, - ACTIONS(7354), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - STATE(5621), 2, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15235), 1, + anon_sym_SEMI, + STATE(8921), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5866), 2, + [348687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15237), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8700), 2, + anon_sym_using, + anon_sym_EQ, + STATE(9185), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [285144] = 6, + [348702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3154), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10832), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [285165] = 5, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + [348721] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5650), 1, + sym_initializer_list, + STATE(5801), 1, + sym_argument_list, + [348740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5612), 1, + sym__splice_specialization_specifier, + STATE(10277), 1, + sym_splice_specifier, + [348759] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - STATE(4298), 2, + ACTIONS(15240), 1, + anon_sym_SEMI, + STATE(9229), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(11757), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [285184] = 5, + [348776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - anon_sym_LBRACK, - ACTIONS(11762), 1, - anon_sym_EQ, - ACTIONS(11764), 1, - anon_sym_DOT, - STATE(6962), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [285203] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15242), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, + ACTIONS(15244), 5, anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11769), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [285220] = 6, + [348804] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9819), 1, + sym_attribute, + STATE(9820), 1, + sym_annotation, + [348823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3154), 1, + ACTIONS(15246), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10902), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [285241] = 5, + [348842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11772), 1, - anon_sym_LBRACK, - ACTIONS(11774), 1, - anon_sym_EQ, - ACTIONS(11776), 1, - anon_sym_DOT, - STATE(6962), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [285260] = 8, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15248), 1, + sym_identifier, + STATE(3989), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [348861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11778), 1, + ACTIONS(15176), 1, sym_identifier, - STATE(375), 1, - sym_declaration_list, - STATE(8063), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285285] = 8, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9931), 1, + sym_attribute, + STATE(9932), 1, + sym_annotation, + [348880] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15250), 1, + anon_sym_RPAREN, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + [348899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(4127), 1, anon_sym_LBRACE, - ACTIONS(11508), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11780), 1, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5801), 1, + sym_argument_list, + STATE(7210), 1, + sym_initializer_list, + [348918] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15176), 1, sym_identifier, - STATE(741), 1, - sym_declaration_list, - STATE(7856), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285310] = 4, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(10035), 1, + sym_attribute, + STATE(10036), 1, + sym_annotation, + [348937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285327] = 4, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15252), 1, + anon_sym_RPAREN, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + [348956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11784), 1, - anon_sym_LPAREN2, - STATE(6970), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285344] = 4, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(3661), 1, + sym__splice_specialization_specifier, + STATE(10096), 1, + sym_splice_specifier, + [348975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285361] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15254), 1, + anon_sym_SEMI, + STATE(9145), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [348992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11788), 1, - anon_sym_LPAREN2, - STATE(6972), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285378] = 4, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9530), 1, + sym_attribute, + STATE(9531), 1, + sym_annotation, + [349011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 1, - anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285395] = 4, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9554), 1, + sym_attribute, + STATE(9555), 1, + sym_annotation, + [349030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, - anon_sym_LPAREN2, - STATE(6974), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285412] = 4, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9571), 1, + sym_attribute, + STATE(9572), 1, + sym_annotation, + [349049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11794), 1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8808), 1, anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285429] = 4, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + [349068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11796), 1, - anon_sym_LPAREN2, - STATE(6976), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285446] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15256), 1, + anon_sym_SEMI, + STATE(9238), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11798), 1, - anon_sym_LPAREN2, - STATE(6963), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15206), 1, + sym_identifier, + STATE(4869), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15258), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285463] = 7, + ACTIONS(15260), 1, + sym_identifier, + STATE(9765), 1, + sym__namespace_specifier, + STATE(10209), 1, + sym_nested_namespace_specifier, + [349140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_COLON, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(1975), 1, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15262), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(7034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285486] = 6, + STATE(8431), 1, + sym__function_declarator_seq, + [349159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3154), 1, + ACTIONS(15264), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [285507] = 5, + [349178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14245), 1, + sym_identifier, + ACTIONS(15266), 1, + aux_sym_preproc_if_token2, + STATE(8986), 1, + sym_enumerator, + STATE(9332), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9340), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [349197] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - STATE(4298), 2, + STATE(4900), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(11757), 3, + ACTIONS(7089), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_GT2, - [285526] = 8, + [349214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11554), 1, - sym_identifier, - STATE(434), 1, - sym_declaration_list, - STATE(7930), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285551] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4816), 1, + sym_attribute_specifier, + ACTIONS(7189), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(8420), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(2312), 1, - sym_template_argument_list, - STATE(7501), 2, + ACTIONS(15270), 1, + anon_sym_COLON_COLON, + STATE(10255), 1, sym_argument_list, - sym_initializer_list, - [285574] = 8, + ACTIONS(15268), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [349248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_LBRACE, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11800), 1, - sym_identifier, - STATE(668), 1, - sym_declaration_list, - STATE(7825), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285599] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15272), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11680), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11802), 1, - anon_sym_EQ, - STATE(1626), 1, - sym_template_argument_list, - ACTIONS(6229), 2, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4743), 1, + sym_attribute_specifier, + ACTIONS(7055), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [285622] = 6, + anon_sym_GT2, + [349282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3154), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10918), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4748), 1, + sym_attribute_specifier, + ACTIONS(7059), 2, anon_sym_COMMA, anon_sym_GT2, - [285643] = 7, + [349299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6036), 1, - anon_sym_COLON, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(1975), 1, - sym_parameter_list, - STATE(7034), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285666] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15274), 1, + anon_sym_SEMI, + STATE(9253), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11804), 1, - anon_sym_RPAREN, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285689] = 4, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15276), 1, + sym_identifier, + STATE(3593), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11806), 1, - anon_sym_LPAREN2, - STATE(6955), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285706] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15278), 1, + anon_sym_SEMI, + STATE(9216), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10692), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11808), 1, - anon_sym_EQ, - ACTIONS(10690), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11779), 1, anon_sym___attribute__, - anon_sym_LBRACK, + STATE(4781), 1, + sym_attribute_specifier, + ACTIONS(7067), 2, + anon_sym_COMMA, anon_sym_GT2, - [285723] = 5, + [349369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - STATE(4298), 2, + ACTIONS(15280), 1, + anon_sym_SEMI, + STATE(9230), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(11810), 3, + [349386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4809), 1, + sym_attribute_specifier, + ACTIONS(7093), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_GT2, - [285742] = 8, + [349403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11812), 1, - sym_identifier, - STATE(682), 1, - sym_declaration_list, - STATE(8132), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285767] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4813), 1, + sym_attribute_specifier, + ACTIONS(7097), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11814), 1, - anon_sym_RPAREN, - STATE(1975), 1, - sym_parameter_list, - STATE(6278), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285790] = 4, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4815), 1, + sym_attribute_specifier, + ACTIONS(7101), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11816), 1, - anon_sym_LPAREN2, - STATE(6939), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285807] = 8, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4704), 1, + sym_attribute_specifier, + ACTIONS(7105), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(2608), 1, anon_sym_LBRACE, - ACTIONS(11508), 1, + ACTIONS(6802), 1, anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11584), 1, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5660), 1, + sym_argument_list, + STATE(5664), 1, + sym_initializer_list, + [349473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15282), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349490] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15284), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349507] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4870), 1, + sym_attribute_specifier, + ACTIONS(7125), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + STATE(4901), 1, + sym_attribute_specifier, + ACTIONS(7135), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349541] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15286), 1, sym_identifier, - STATE(716), 1, - sym_declaration_list, - STATE(8041), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [285832] = 7, + STATE(2681), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(10115), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(2966), 1, + ACTIONS(15288), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6213), 1, + STATE(8431), 1, sym__function_declarator_seq, - STATE(6155), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11818), 1, - anon_sym_LPAREN2, - STATE(6968), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11739), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [285872] = 5, + [349579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11248), 1, - anon_sym_LBRACK, - ACTIONS(11246), 2, - anon_sym_RPAREN, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(10347), 1, anon_sym_LPAREN2, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285890] = 6, + STATE(5523), 1, + sym_argument_list, + STATE(5932), 1, + sym_initializer_list, + [349598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10125), 1, - anon_sym_try, - ACTIONS(11820), 1, - anon_sym_SEMI, - ACTIONS(11822), 1, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, anon_sym_EQ, - STATE(626), 2, - sym_compound_statement, - sym_try_statement, - [285910] = 6, + STATE(9733), 1, + sym_attribute, + STATE(9744), 1, + sym_annotation, + [349617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(11824), 1, - anon_sym_LBRACE, - STATE(8404), 1, - sym_trailing_return_type, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285930] = 7, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9808), 1, + sym_attribute, + STATE(9809), 1, + sym_annotation, + [349636] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11826), 1, + ACTIONS(15290), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8837), 1, + STATE(8921), 2, sym_attribute_specifier, - [285952] = 5, + aux_sym_type_definition_repeat1, + [349653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11238), 1, - anon_sym_LBRACK, - STATE(6590), 1, - sym_template_argument_list, - ACTIONS(11236), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [285970] = 5, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15292), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(11234), 1, - anon_sym_LBRACK, - STATE(6562), 1, - sym_template_argument_list, - ACTIONS(11230), 3, - anon_sym_RPAREN, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(10347), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [285988] = 7, + STATE(5523), 1, + sym_argument_list, + STATE(5524), 1, + sym_initializer_list, + [349691] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11828), 1, + ACTIONS(15294), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8936), 1, + STATE(9286), 2, sym_attribute_specifier, - [286010] = 7, + aux_sym_type_definition_repeat1, + [349708] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11830), 1, + ACTIONS(15296), 1, anon_sym_SEMI, - STATE(7011), 1, - aux_sym_field_declaration_repeat1, - STATE(8629), 1, + STATE(8921), 2, sym_attribute_specifier, - [286032] = 6, + aux_sym_type_definition_repeat1, + [349725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9913), 1, - anon_sym_try, - ACTIONS(10764), 1, - anon_sym_LBRACE, - ACTIONS(11832), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15298), 1, anon_sym_SEMI, - ACTIONS(11834), 1, - anon_sym_EQ, - STATE(2038), 2, - sym_compound_statement, - sym_try_statement, - [286052] = 6, + STATE(9279), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9897), 1, - anon_sym_try, - ACTIONS(10730), 1, - anon_sym_LBRACE, - ACTIONS(11836), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15300), 1, anon_sym_SEMI, - ACTIONS(11838), 1, - anon_sym_EQ, - STATE(1787), 2, - sym_compound_statement, - sym_try_statement, - [286072] = 6, + STATE(9167), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(10193), 1, - anon_sym_try, - ACTIONS(11840), 1, - anon_sym_SEMI, - ACTIONS(11842), 1, - anon_sym_EQ, - STATE(328), 2, - sym_compound_statement, - sym_try_statement, - [286092] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15302), 1, + sym_identifier, + STATE(2608), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(10250), 1, - anon_sym_try, - ACTIONS(11844), 1, - anon_sym_SEMI, - ACTIONS(11846), 1, - anon_sym_EQ, - STATE(730), 2, - sym_compound_statement, - sym_try_statement, - [286112] = 6, + ACTIONS(14505), 1, + anon_sym_decltype, + ACTIONS(15014), 1, + sym_auto, + STATE(4817), 1, + sym_decltype_auto, + ACTIONS(6800), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(15304), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10848), 2, - anon_sym_LBRACE, - anon_sym_requires, - [286132] = 7, + [349814] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10116), 1, + sym_splice_specifier, + [349833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15194), 1, + anon_sym_DOT, + STATE(9155), 1, + aux_sym_module_name_repeat1, + ACTIONS(15306), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [349848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14616), 1, + anon_sym_COLON, + ACTIONS(15308), 1, + anon_sym_SEMI, + STATE(9539), 1, + sym_module_partition, + STATE(11056), 1, + sym_attribute_declaration, + [349867] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11848), 1, + ACTIONS(15310), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8901), 1, + STATE(9147), 2, sym_attribute_specifier, - [286154] = 3, + aux_sym_type_definition_repeat1, + [349884] = 5, ACTIONS(3), 1, sym_comment, - STATE(8925), 1, - sym_string_literal, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [286168] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15312), 1, + anon_sym_SEMI, + STATE(9259), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349901] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11850), 1, + ACTIONS(15314), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8908), 1, + STATE(8921), 2, sym_attribute_specifier, - [286190] = 6, + aux_sym_type_definition_repeat1, + [349918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(15316), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10844), 2, - anon_sym_LBRACE, - anon_sym_requires, - [286210] = 3, + [349937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11852), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11854), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286224] = 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15318), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11856), 2, - anon_sym_RBRACE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15320), 1, sym_identifier, - ACTIONS(11858), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286238] = 6, + STATE(4063), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [349973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(10250), 1, - anon_sym_try, - ACTIONS(11860), 1, + ACTIONS(15322), 2, + anon_sym_class, + anon_sym_typename, + STATE(10233), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [349986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15326), 1, + anon_sym_DOT, + STATE(9258), 1, + aux_sym_module_name_repeat1, + ACTIONS(15324), 3, anon_sym_SEMI, - ACTIONS(11862), 1, - anon_sym_EQ, - STATE(670), 2, - sym_compound_statement, - sym_try_statement, - [286258] = 3, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [350001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11864), 2, - anon_sym_RBRACE, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15329), 1, + anon_sym_SEMI, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350018] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15331), 1, sym_identifier, - ACTIONS(11866), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286272] = 6, + STATE(3456), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9913), 1, - anon_sym_try, - ACTIONS(10764), 1, - anon_sym_LBRACE, - ACTIONS(11868), 1, - anon_sym_SEMI, - ACTIONS(11870), 1, - anon_sym_EQ, - STATE(2071), 2, - sym_compound_statement, - sym_try_statement, - [286292] = 6, + ACTIONS(14674), 1, + anon_sym_COLON_COLON, + ACTIONS(14676), 1, + anon_sym_inline, + ACTIONS(15260), 1, + sym_identifier, + STATE(9682), 1, + sym__namespace_specifier, + STATE(10210), 1, + sym_nested_namespace_specifier, + [350056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(15333), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10918), 2, - anon_sym_LBRACE, - anon_sym_requires, - [286312] = 6, + [350075] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15335), 1, + sym_identifier, + STATE(2681), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350094] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15337), 1, + anon_sym_RPAREN, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + [350113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15339), 1, + anon_sym_SEMI, + STATE(9160), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(11872), 1, - anon_sym_LBRACE, - STATE(8571), 1, - sym_trailing_return_type, - STATE(6998), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286332] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15341), 1, + sym_identifier, + STATE(2441), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9897), 1, - anon_sym_try, - ACTIONS(10730), 1, + ACTIONS(2036), 1, anon_sym_LBRACE, - ACTIONS(11874), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(3811), 1, + sym_initializer_list, + [350168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14626), 1, + anon_sym_COMMA, + ACTIONS(15345), 1, + anon_sym___attribute, + STATE(9177), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15343), 2, anon_sym_SEMI, - ACTIONS(11876), 1, - anon_sym_EQ, - STATE(1757), 2, - sym_compound_statement, - sym_try_statement, - [286352] = 6, + anon_sym___attribute__, + [350185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - ACTIONS(10193), 1, - anon_sym_try, - ACTIONS(11878), 1, + ACTIONS(15347), 1, + anon_sym_COMMA, + ACTIONS(15352), 1, + anon_sym___attribute, + STATE(9269), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(15350), 2, anon_sym_SEMI, - ACTIONS(11880), 1, - anon_sym_EQ, - STATE(422), 2, - sym_compound_statement, - sym_try_statement, - [286372] = 6, + anon_sym___attribute__, + [350202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(15354), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10852), 2, - anon_sym_LBRACE, - anon_sym_requires, - [286392] = 5, + [350221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + ACTIONS(14481), 1, + anon_sym_LBRACK, + ACTIONS(15356), 1, + anon_sym_RPAREN, + STATE(4601), 1, + sym_parameter_list, + STATE(8431), 1, + sym__function_declarator_seq, + [350240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15358), 1, + sym_identifier, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(6611), 1, + sym_template_type, + STATE(10418), 1, + sym_splice_specifier, + [350259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9225), 1, anon_sym_LBRACK, - ACTIONS(7318), 1, + ACTIONS(9959), 1, anon_sym_LT, - STATE(4050), 1, + STATE(6335), 1, sym_template_argument_list, - ACTIONS(6497), 3, - anon_sym_RPAREN, + ACTIONS(9227), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [286410] = 3, + [350276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11882), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11884), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286424] = 3, + ACTIONS(11365), 1, + anon_sym_AMP, + ACTIONS(11367), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + [350289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11886), 2, - anon_sym_RBRACE, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15360), 1, sym_identifier, - ACTIONS(11888), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286438] = 7, + STATE(2447), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350308] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11890), 1, + ACTIONS(15362), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(9061), 1, + STATE(9153), 2, sym_attribute_specifier, - [286460] = 7, + aux_sym_type_definition_repeat1, + [350325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15364), 1, + sym_identifier, + STATE(2392), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350344] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11892), 1, + ACTIONS(15366), 1, anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8772), 1, + STATE(9184), 2, sym_attribute_specifier, - [286482] = 6, + aux_sym_type_definition_repeat1, + [350361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10752), 1, - anon_sym_LBRACE, - ACTIONS(11894), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym___attribute__, + ACTIONS(15368), 1, anon_sym_SEMI, - ACTIONS(11896), 1, - anon_sym_EQ, - STATE(2123), 2, - sym_compound_statement, - sym_try_statement, - [286502] = 5, + STATE(8921), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_LBRACK, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(4050), 1, - sym_template_argument_list, - ACTIONS(6497), 3, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [286520] = 6, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(7001), 1, + sym__splice_specialization_specifier, + STATE(10201), 1, + sym_splice_specifier, + [350397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, + ACTIONS(14481), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(15370), 1, + anon_sym_RPAREN, + STATE(4601), 1, sym_parameter_list, - STATE(6206), 1, + STATE(8431), 1, sym__function_declarator_seq, - ACTIONS(10932), 2, + [350416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14847), 1, + sym_identifier, + STATE(3617), 1, + sym_template_type, + STATE(5678), 1, + sym__splice_specialization_specifier, + STATE(10404), 1, + sym_splice_specifier, + [350435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15372), 1, + sym_identifier, + STATE(3456), 1, + sym_template_type, + STATE(5162), 1, + sym__splice_specialization_specifier, + STATE(10418), 1, + sym_splice_specifier, + [350454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3605), 1, + sym_template_argument_list, + ACTIONS(9137), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - anon_sym_requires, - [286540] = 3, + [350471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11898), 2, - anon_sym_RBRACE, + ACTIONS(15176), 1, sym_identifier, - ACTIONS(11900), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286554] = 7, + ACTIONS(15178), 1, + anon_sym_using, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(9653), 1, + sym_attribute, + STATE(9678), 1, + sym_annotation, + [350490] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11902), 1, + ACTIONS(15374), 1, anon_sym_SEMI, - STATE(7051), 1, - aux_sym_field_declaration_repeat1, - STATE(8802), 1, + STATE(8921), 2, sym_attribute_specifier, - [286576] = 7, + aux_sym_type_definition_repeat1, + [350507] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7290), 1, + ACTIONS(11779), 1, anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11904), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8374), 1, + STATE(4775), 1, sym_attribute_specifier, - [286598] = 5, + ACTIONS(7063), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350524] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15376), 1, + anon_sym_DQUOTE, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [350540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6211), 1, - anon_sym_LBRACK, - ACTIONS(7970), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6213), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286616] = 7, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9318), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [350556] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15382), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15384), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [350570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11906), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15387), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8349), 1, - sym_attribute_specifier, - [286638] = 7, + STATE(3601), 1, + sym_template_argument_list, + [350586] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15389), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [350600] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15393), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [350616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(11908), 1, - anon_sym_SEMI, - STATE(7038), 1, - aux_sym_field_declaration_repeat1, - STATE(8857), 1, - sym_attribute_specifier, - [286660] = 6, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15397), 1, + anon_sym_GT2, + STATE(9546), 1, + aux_sym_template_argument_list_repeat1, + [350632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(10173), 1, - anon_sym_try, - ACTIONS(11910), 1, - anon_sym_SEMI, - ACTIONS(11912), 1, - anon_sym_EQ, - STATE(780), 2, - sym_compound_statement, - sym_try_statement, - [286680] = 7, + STATE(4260), 1, + sym_field_declaration_list, + STATE(10463), 1, + sym_base_class_clause, + [350648] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15399), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [350664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10065), 1, + sym_argument_list, + ACTIONS(15401), 2, anon_sym_COMMA, - ACTIONS(11914), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(9086), 1, - sym_attribute_specifier, - [286702] = 3, + anon_sym_RBRACK_RBRACK, + [350678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11916), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11918), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286716] = 6, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9841), 1, + sym_compound_statement, + STATE(10141), 1, + sym_field_initializer_list, + [350694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(12922), 1, + anon_sym_LBRACE, + ACTIONS(15403), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10902), 2, + STATE(5018), 1, + sym_requirement_seq, + STATE(10101), 1, + sym_requires_parameter_list, + [350710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 1, anon_sym_LBRACE, - anon_sym_requires, - [286736] = 7, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(3811), 1, + sym_initializer_list, + [350726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, + ACTIONS(12993), 1, + anon_sym_LBRACE, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + STATE(6393), 1, + sym_requirement_seq, + STATE(10395), 1, + sym_requires_parameter_list, + [350742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(11920), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8321), 1, - sym_attribute_specifier, - [286758] = 6, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15405), 1, + anon_sym_GT2, + STATE(9662), 1, + aux_sym_template_argument_list_repeat1, + [350758] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15407), 1, + aux_sym_preproc_include_token2, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15411), 1, + sym_preproc_arg, + STATE(10129), 1, + sym_preproc_params, + [350774] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15413), 1, + aux_sym_preproc_include_token2, + ACTIONS(15415), 1, + sym_preproc_arg, + STATE(10155), 1, + sym_preproc_params, + [350790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(10824), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15417), 1, + anon_sym_GT2, + STATE(9587), 1, + aux_sym_template_argument_list_repeat1, + [350806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 1, anon_sym_LBRACE, - STATE(8439), 1, - sym_trailing_return_type, - STATE(4728), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286778] = 6, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5660), 1, + sym_argument_list, + STATE(7265), 1, + sym_initializer_list, + [350822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2608), 1, anon_sym_LBRACE, - ACTIONS(10125), 1, - anon_sym_try, - ACTIONS(11922), 1, - anon_sym_SEMI, - ACTIONS(11924), 1, - anon_sym_EQ, - STATE(650), 2, - sym_compound_statement, - sym_try_statement, - [286798] = 3, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5649), 1, + sym_initializer_list, + STATE(5662), 1, + sym_argument_list, + [350838] = 4, ACTIONS(3), 1, sym_comment, - STATE(8976), 1, - sym_string_literal, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, + ACTIONS(15419), 1, + anon_sym___except, + ACTIONS(15421), 1, + anon_sym___finally, + STATE(405), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [350852] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15423), 1, anon_sym_DQUOTE, - [286812] = 3, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [350868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11650), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11648), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [286826] = 3, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9317), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [350884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11926), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11928), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [286840] = 7, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, + anon_sym_COLON, + STATE(2036), 1, + sym_field_declaration_list, + STATE(10355), 1, + sym_base_class_clause, + [350900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11930), 1, - anon_sym_SEMI, - STATE(7035), 1, - aux_sym_field_declaration_repeat1, - STATE(8611), 1, - sym_attribute_specifier, - [286862] = 7, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + ACTIONS(15425), 1, + anon_sym_LBRACE, + STATE(7883), 1, + sym_requirement_seq, + STATE(10413), 1, + sym_requires_parameter_list, + [350916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11932), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15427), 1, anon_sym_SEMI, - STATE(7053), 1, - aux_sym_field_declaration_repeat1, - STATE(8580), 1, - sym_attribute_specifier, - [286884] = 7, + STATE(3601), 1, + sym_template_argument_list, + [350932] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15429), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [350946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11934), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15431), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8205), 1, - sym_attribute_specifier, - [286906] = 6, + STATE(3601), 1, + sym_template_argument_list, + [350962] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15433), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [350978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(10824), 1, + ACTIONS(4536), 1, anon_sym_LBRACE, - STATE(8439), 1, - sym_trailing_return_type, - STATE(7066), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286926] = 7, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_argument_list, + STATE(5901), 1, + sym_initializer_list, + [350994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11936), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8673), 1, - sym_attribute_specifier, - [286948] = 6, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5707), 1, + sym_argument_list, + STATE(7118), 1, + sym_initializer_list, + [351010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(10700), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8193), 1, anon_sym_LBRACE, - STATE(8915), 1, - sym_trailing_return_type, - STATE(7042), 2, + STATE(2853), 1, + sym_field_declaration_list, + STATE(10175), 1, + sym_base_class_clause, + [351026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15435), 1, + anon_sym_EQ, + STATE(9185), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [286968] = 7, - ACTIONS(3), 1, + [351040] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11938), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8420), 1, - sym_attribute_specifier, - [286990] = 7, + ACTIONS(15437), 1, + anon_sym_DQUOTE, + ACTIONS(15439), 1, + aux_sym_string_literal_token1, + ACTIONS(15441), 1, + sym_escape_sequence, + STATE(9288), 1, + aux_sym_string_literal_repeat1, + [351056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11940), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15443), 1, anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8173), 1, - sym_attribute_specifier, - [287012] = 6, + STATE(3601), 1, + sym_template_argument_list, + [351072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9921), 1, - anon_sym_try, - ACTIONS(10752), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - ACTIONS(11942), 1, - anon_sym_SEMI, - ACTIONS(11944), 1, - anon_sym_EQ, - STATE(2088), 2, - sym_compound_statement, - sym_try_statement, - [287032] = 6, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5684), 1, + sym_initializer_list, + STATE(5707), 1, + sym_argument_list, + [351088] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15445), 1, + anon_sym_DQUOTE, + ACTIONS(15447), 1, + aux_sym_string_literal_token1, + ACTIONS(15449), 1, + sym_escape_sequence, + STATE(9344), 1, + aux_sym_string_literal_repeat1, + [351104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10826), 2, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9027), 1, anon_sym_LBRACE, - anon_sym_requires, - [287052] = 7, + STATE(3726), 1, + sym_field_declaration_list, + STATE(10456), 1, + sym_base_class_clause, + [351120] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15451), 1, + anon_sym_DQUOTE, + ACTIONS(15453), 1, + aux_sym_string_literal_token1, + ACTIONS(15455), 1, + sym_escape_sequence, + STATE(9395), 1, + aux_sym_string_literal_repeat1, + [351136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11946), 1, - anon_sym_SEMI, - STATE(7054), 1, - aux_sym_field_declaration_repeat1, - STATE(8960), 1, - sym_attribute_specifier, - [287074] = 7, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15457), 1, + anon_sym_using, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [351150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11948), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8429), 1, - sym_attribute_specifier, - [287096] = 7, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9481), 1, + sym_splice_specifier, + STATE(9482), 1, + sym_splice_type_specifier, + [351166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, + ACTIONS(15459), 1, anon_sym_COMMA, - ACTIONS(11950), 1, - anon_sym_SEMI, - STATE(7058), 1, - aux_sym_field_declaration_repeat1, - STATE(8968), 1, - sym_attribute_specifier, - [287118] = 6, + STATE(9329), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15462), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [351180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - ACTIONS(10832), 2, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(11202), 1, anon_sym_LBRACE, - anon_sym_requires, - [287138] = 3, + STATE(5868), 1, + sym_field_declaration_list, + STATE(10288), 1, + sym_base_class_clause, + [351196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11898), 2, - anon_sym_RBRACE, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9757), 1, + sym_compound_statement, + STATE(10177), 1, + sym_field_initializer_list, + [351212] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14465), 1, sym_identifier, - ACTIONS(11900), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [287152] = 7, + ACTIONS(15464), 1, + aux_sym_preproc_if_token2, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + [351228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(11952), 1, - anon_sym_SEMI, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - STATE(8674), 1, - sym_attribute_specifier, - [287174] = 6, + ACTIONS(2608), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5660), 1, + sym_argument_list, + STATE(5664), 1, + sym_initializer_list, + [351244] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15466), 1, + anon_sym___except, + ACTIONS(15468), 1, + anon_sym___finally, + STATE(602), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [351258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(7866), 1, anon_sym_LBRACE, - ACTIONS(10173), 1, - anon_sym_try, - ACTIONS(11954), 1, - anon_sym_SEMI, - ACTIONS(11956), 1, - anon_sym_EQ, - STATE(753), 2, - sym_compound_statement, - sym_try_statement, - [287194] = 3, + STATE(2674), 1, + sym_field_declaration_list, + STATE(10353), 1, + sym_base_class_clause, + [351274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11864), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11866), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [287208] = 7, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9725), 1, + sym_compound_statement, + STATE(10092), 1, + sym_field_initializer_list, + [351290] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15470), 1, + anon_sym_DQUOTE, + ACTIONS(15472), 1, + aux_sym_string_literal_token1, + ACTIONS(15474), 1, + sym_escape_sequence, + STATE(9309), 1, + aux_sym_string_literal_repeat1, + [351306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(8545), 1, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10266), 1, + sym_argument_list, + ACTIONS(15476), 2, anon_sym_COMMA, - ACTIONS(11958), 1, - anon_sym_SEMI, - STATE(6999), 1, - aux_sym_field_declaration_repeat1, - STATE(8510), 1, - sym_attribute_specifier, - [287230] = 6, + anon_sym_RBRACK_RBRACK, + [351320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(11872), 1, - anon_sym_LBRACE, - STATE(8571), 1, - sym_trailing_return_type, - STATE(4728), 2, + ACTIONS(15478), 1, + anon_sym_EQ, + STATE(9414), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [287250] = 3, + [351334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 2, - anon_sym_RBRACE, + ACTIONS(14245), 1, sym_identifier, - ACTIONS(11960), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [287264] = 5, + ACTIONS(15480), 1, + aux_sym_preproc_if_token2, + STATE(8927), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [351348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9399), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9403), 1, - anon_sym_EQ, - ACTIONS(11962), 1, - sym_identifier, - ACTIONS(9401), 2, + ACTIONS(11947), 1, anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15482), 1, anon_sym_GT2, - [287281] = 5, - ACTIONS(3), 1, + STATE(10004), 1, + aux_sym_template_argument_list_repeat1, + [351364] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11964), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287298] = 5, + ACTIONS(15484), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [351378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11966), 1, - anon_sym_SEMI, - STATE(7126), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287315] = 6, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9632), 1, + sym_compound_statement, + STATE(10174), 1, + sym_field_initializer_list, + [351394] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15486), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [351410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(11968), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2345), 1, - sym_template_method, - STATE(8113), 1, - sym_operator_name, - [287334] = 3, + ACTIONS(7021), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(15490), 1, + anon_sym_EQ, + STATE(894), 1, + sym_declaration_list, + [351426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11970), 2, - anon_sym_class, - anon_sym_typename, - STATE(7884), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [287347] = 5, + ACTIONS(15492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15496), 1, + anon_sym_LBRACE, + STATE(9724), 1, + aux_sym_base_class_clause_repeat1, + [351442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11972), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287364] = 5, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5546), 1, + sym_argument_list, + STATE(5578), 1, + sym_initializer_list, + [351458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11974), 1, - anon_sym_COMMA, - ACTIONS(11979), 1, - anon_sym___attribute, - STATE(7074), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(11977), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [287381] = 6, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5523), 1, + sym_argument_list, + STATE(5932), 1, + sym_initializer_list, + [351474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(2036), 1, + anon_sym_LBRACE, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(10826), 1, - anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287400] = 6, + STATE(3723), 1, + sym_argument_list, + STATE(3825), 1, + sym_initializer_list, + [351490] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15498), 1, + anon_sym_DQUOTE, + ACTIONS(15500), 1, + aux_sym_string_literal_token1, + ACTIONS(15503), 1, + sym_escape_sequence, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [351506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11373), 1, - anon_sym_COLON, - ACTIONS(11981), 1, - anon_sym_SEMI, - STATE(7689), 1, - sym_module_partition, - STATE(8637), 1, - sym_attribute_declaration, - [287419] = 5, + ACTIONS(14465), 1, + sym_identifier, + ACTIONS(15266), 1, + aux_sym_preproc_if_token2, + STATE(9332), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11049), 1, + sym_enumerator, + [351522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, + ACTIONS(9672), 1, anon_sym_LT, - STATE(2312), 1, + ACTIONS(15506), 1, + anon_sym_SEMI, + STATE(3601), 1, sym_template_argument_list, - ACTIONS(6329), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [287436] = 6, + [351538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - ACTIONS(11983), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287455] = 5, + ACTIONS(6834), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, + anon_sym_COLON, + STATE(2047), 1, + sym_field_declaration_list, + STATE(10199), 1, + sym_base_class_clause, + [351554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11985), 1, - anon_sym_SEMI, - STATE(7114), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287472] = 6, + ACTIONS(15508), 1, + anon_sym___except, + ACTIONS(15510), 1, + anon_sym___finally, + STATE(602), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [351568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(4536), 1, + anon_sym_LBRACE, + ACTIONS(8808), 1, anon_sym_LPAREN2, - ACTIONS(10832), 1, - anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287491] = 6, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + [351584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(11987), 1, - sym_identifier, - STATE(8449), 1, - sym__namespace_specifier, - STATE(9042), 1, - sym_nested_namespace_specifier, - [287510] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15512), 1, + anon_sym_GT2, + STATE(9965), 1, + aux_sym_template_argument_list_repeat1, + [351600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11991), 1, - anon_sym_DOT, - STATE(7082), 1, - aux_sym_module_name_repeat1, - ACTIONS(11989), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [287525] = 5, - ACTIONS(3), 1, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + ACTIONS(15514), 1, + anon_sym_LBRACE, + STATE(2917), 1, + sym_requirement_seq, + STATE(10421), 1, + sym_requires_parameter_list, + [351616] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11994), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287542] = 5, + ACTIONS(15516), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [351630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11996), 1, - anon_sym_SEMI, - STATE(7069), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287559] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15518), 1, + anon_sym_GT2, + STATE(9564), 1, + aux_sym_template_argument_list_repeat1, + [351646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(11998), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(6203), 1, anon_sym_SEMI, - STATE(7138), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287576] = 6, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(2655), 1, + sym_template_argument_list, + [351662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, + ACTIONS(14245), 1, sym_identifier, - ACTIONS(12000), 1, + ACTIONS(15520), 1, aux_sym_preproc_if_token2, - STATE(6938), 1, + STATE(9340), 2, sym_enumerator, - STATE(7235), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7236), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [287595] = 5, + [351676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(11943), 1, anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12002), 1, + ACTIONS(11941), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287612] = 6, + anon_sym___attribute__, + [351688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(12004), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3675), 1, - sym_template_method, - STATE(8094), 1, - sym_operator_name, - [287631] = 6, + ACTIONS(2738), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5546), 1, + sym_argument_list, + STATE(5981), 1, + sym_initializer_list, + [351704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10932), 1, + ACTIONS(15522), 1, + anon_sym_COMMA, + STATE(9446), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15524), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287650] = 5, + [351718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12006), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287667] = 5, + ACTIONS(2592), 1, + anon_sym_LBRACE, + ACTIONS(10347), 1, + anon_sym_LPAREN2, + STATE(5523), 1, + sym_argument_list, + STATE(5524), 1, + sym_initializer_list, + [351734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12008), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287684] = 5, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15526), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15528), 1, + anon_sym_LBRACE, + STATE(10032), 1, + aux_sym_base_class_clause_repeat1, + [351750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9347), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [351766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9349), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [351782] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15530), 1, + anon_sym_DQUOTE, + ACTIONS(15532), 1, + aux_sym_string_literal_token1, + ACTIONS(15534), 1, + sym_escape_sequence, + STATE(9441), 1, + aux_sym_string_literal_repeat1, + [351798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - ACTIONS(12012), 1, - anon_sym_COLON_COLON, - STATE(7833), 1, - sym_argument_list, - ACTIONS(12010), 2, + ACTIONS(11947), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [287701] = 5, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15536), 1, + anon_sym_GT2, + STATE(9597), 1, + aux_sym_template_argument_list_repeat1, + [351814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12014), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15538), 1, + anon_sym_using, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [351828] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9027), 1, + anon_sym_LBRACE, + STATE(7613), 1, + sym_field_declaration_list, + STATE(10348), 1, + sym_base_class_clause, + [351844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9027), 1, + anon_sym_LBRACE, + STATE(7589), 1, + sym_field_declaration_list, + STATE(10350), 1, + sym_base_class_clause, + [351860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15540), 1, + sym_identifier, + ACTIONS(15542), 1, anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287718] = 6, + ACTIONS(15544), 1, + anon_sym_COLON, + STATE(9250), 1, + sym_module_name, + [351876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - ACTIONS(12016), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287737] = 5, + ACTIONS(15546), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [351886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12018), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15548), 1, anon_sym_SEMI, - STATE(7073), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287754] = 5, + STATE(3601), 1, + sym_template_argument_list, + [351902] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15550), 1, + anon_sym_DQUOTE, + ACTIONS(15552), 1, + aux_sym_string_literal_token1, + ACTIONS(15554), 1, + sym_escape_sequence, + STATE(9521), 1, + aux_sym_string_literal_repeat1, + [351918] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15556), 1, + anon_sym_DQUOTE, + ACTIONS(15558), 1, + aux_sym_string_literal_token1, + ACTIONS(15560), 1, + sym_escape_sequence, + STATE(9389), 1, + aux_sym_string_literal_repeat1, + [351934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, + ACTIONS(9672), 1, anon_sym_LT, - STATE(1635), 1, + ACTIONS(15562), 1, + anon_sym_SEMI, + STATE(3601), 1, sym_template_argument_list, - ACTIONS(4933), 2, + [351950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8007), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_field_declaration_list, + STATE(10310), 1, + sym_base_class_clause, + [351966] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15564), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [351980] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15566), 1, + anon_sym_DQUOTE, + ACTIONS(15568), 1, + aux_sym_string_literal_token1, + ACTIONS(15570), 1, + sym_escape_sequence, + STATE(9383), 1, + aux_sym_string_literal_repeat1, + [351996] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15572), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15494), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [287771] = 5, + ACTIONS(15574), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15576), 1, + anon_sym_LBRACE, + STATE(9718), 1, + aux_sym_base_class_clause_repeat1, + [352028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12020), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15578), 1, anon_sym_SEMI, - STATE(7113), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287788] = 5, + STATE(3601), 1, + sym_template_argument_list, + [352044] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15580), 1, + anon_sym_DQUOTE, + ACTIONS(15582), 1, + aux_sym_string_literal_token1, + ACTIONS(15584), 1, + sym_escape_sequence, + STATE(9448), 1, + aux_sym_string_literal_repeat1, + [352060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_LBRACK, - ACTIONS(6762), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, anon_sym_LT, - STATE(3724), 1, + ACTIONS(15586), 1, + anon_sym_SEMI, + STATE(3601), 1, sym_template_argument_list, - ACTIONS(6497), 2, - anon_sym_LPAREN2, + [352076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [287805] = 6, + ACTIONS(15588), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352090] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15590), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15592), 1, + anon_sym_using, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352120] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15594), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14762), 1, + anon_sym_EQ, + STATE(9320), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9307), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [352164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15596), 1, + anon_sym_GT2, + STATE(9664), 1, + aux_sym_template_argument_list_repeat1, + [352180] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15598), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287824] = 4, + STATE(9914), 1, + sym_compound_statement, + STATE(10363), 1, + sym_field_initializer_list, + [352212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12024), 1, - anon_sym_DOT, - STATE(7104), 1, - aux_sym_module_name_repeat1, - ACTIONS(12022), 3, - anon_sym_SEMI, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15600), 1, + anon_sym_GT2, + STATE(9607), 1, + aux_sym_template_argument_list_repeat1, + [352228] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15602), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352242] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_field_declaration_list, + STATE(10100), 1, + sym_base_class_clause, + [352258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [287839] = 5, + ACTIONS(15604), 1, + anon_sym_EQ, + STATE(9407), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_LBRACK, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(4324), 1, - sym_template_argument_list, - ACTIONS(6497), 2, - anon_sym_LPAREN2, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [287856] = 5, + ACTIONS(15606), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12026), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287873] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14827), 1, + anon_sym_EQ, + STATE(9388), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10902), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [287892] = 4, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(4287), 1, + sym_field_declaration_list, + STATE(10138), 1, + sym_base_class_clause, + [352316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12024), 1, - anon_sym_DOT, - STATE(7082), 1, - aux_sym_module_name_repeat1, - ACTIONS(12028), 3, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15608), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [287907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(12030), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2345), 1, - sym_template_method, - STATE(7964), 1, - sym_operator_name, - [287926] = 2, + STATE(3601), 1, + sym_template_argument_list, + [352332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12032), 5, + ACTIONS(12904), 1, + anon_sym_LBRACE, + ACTIONS(15403), 1, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [287937] = 5, + STATE(5025), 1, + sym_requirement_seq, + STATE(10253), 1, + sym_requires_parameter_list, + [352348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(15612), 1, anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12034), 1, + ACTIONS(15610), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(7147), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, anon_sym___attribute__, - ACTIONS(12036), 1, - anon_sym_SEMI, - STATE(7109), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287971] = 5, + [352360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12038), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287988] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15614), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(12040), 1, - sym_identifier, - STATE(8449), 1, - sym__namespace_specifier, - STATE(9015), 1, - sym_nested_namespace_specifier, - [288007] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14815), 1, + anon_sym_EQ, + STATE(9401), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12042), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15616), 1, anon_sym_SEMI, - STATE(7091), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288024] = 4, + STATE(3601), 1, + sym_template_argument_list, + [352404] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15618), 1, + anon_sym_DQUOTE, + ACTIONS(15620), 1, + aux_sym_string_literal_token1, + ACTIONS(15622), 1, + sym_escape_sequence, + STATE(9525), 1, + aux_sym_string_literal_repeat1, + [352420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6201), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(12044), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12046), 2, - anon_sym_AMP_AMP, - anon_sym_and, - [288039] = 5, + STATE(3778), 1, + sym_field_declaration_list, + STATE(10196), 1, + sym_base_class_clause, + [352436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12048), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288056] = 5, - ACTIONS(3), 1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10034), 2, + sym_argument_list, + sym_initializer_list, + [352450] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12050), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288073] = 5, + ACTIONS(15624), 1, + anon_sym_DQUOTE, + ACTIONS(15626), 1, + aux_sym_string_literal_token1, + ACTIONS(15628), 1, + sym_escape_sequence, + STATE(9432), 1, + aux_sym_string_literal_repeat1, + [352466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12052), 1, - anon_sym_SEMI, - STATE(7146), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288090] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15630), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12054), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288107] = 3, - ACTIONS(3), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14835), 1, + anon_sym_EQ, + STATE(9420), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352494] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12058), 1, - anon_sym_COLON_COLON, - ACTIONS(12056), 4, - anon_sym_virtual, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - [288120] = 5, + ACTIONS(15632), 1, + anon_sym_DQUOTE, + ACTIONS(15634), 1, + aux_sym_string_literal_token1, + ACTIONS(15636), 1, + sym_escape_sequence, + STATE(9293), 1, + aux_sym_string_literal_repeat1, + [352510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12060), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12065), 1, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15638), 1, + anon_sym_GT2, + STATE(9878), 1, + aux_sym_template_argument_list_repeat1, + [352526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15642), 1, anon_sym___attribute, - STATE(7118), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(12063), 2, + ACTIONS(15640), 3, + anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [288137] = 6, + [352538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(2692), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - ACTIONS(12067), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [288156] = 6, + STATE(5650), 1, + sym_initializer_list, + STATE(5801), 1, + sym_argument_list, + [352554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(12069), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3461), 1, - sym_template_method, - STATE(7994), 1, - sym_operator_name, - [288175] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15644), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12071), 1, - anon_sym_SEMI, - STATE(7140), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288192] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14821), 1, + anon_sym_EQ, + STATE(9426), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10852), 1, + ACTIONS(15324), 4, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [288211] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [352592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12073), 1, - anon_sym_SEMI, - STATE(7116), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288228] = 5, + ACTIONS(15646), 1, + anon_sym_COMMA, + STATE(9329), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15648), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12075), 1, - anon_sym_SEMI, - STATE(7137), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288245] = 6, - ACTIONS(3), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(11202), 1, + anon_sym_LBRACE, + STATE(5828), 1, + sym_field_declaration_list, + STATE(10163), 1, + sym_base_class_clause, + [352622] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(12077), 1, - sym_identifier, - STATE(7560), 1, - sym__namespace_specifier, - STATE(7870), 1, - sym_nested_namespace_specifier, - [288264] = 5, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15650), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12079), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288281] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15652), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(12081), 1, - sym_identifier, - STATE(8449), 1, - sym__namespace_specifier, - STATE(8670), 1, - sym_nested_namespace_specifier, - [288300] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14781), 1, + anon_sym_EQ, + STATE(9430), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10918), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [288319] = 5, + ACTIONS(9596), 1, + anon_sym_LBRACE, + STATE(4285), 1, + sym_field_declaration_list, + STATE(10071), 1, + sym_base_class_clause, + [352682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(12955), 1, + anon_sym_LBRACE, + ACTIONS(15403), 1, anon_sym_LPAREN2, - ACTIONS(12085), 1, - anon_sym_COLON_COLON, - STATE(8115), 1, - sym_argument_list, - ACTIONS(12083), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [288336] = 6, + STATE(6580), 1, + sym_requirement_seq, + STATE(10091), 1, + sym_requires_parameter_list, + [352698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(11199), 1, - anon_sym_LBRACK, - ACTIONS(12087), 1, - anon_sym_RPAREN, - STATE(3096), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [288355] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15654), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12089), 1, - anon_sym_SEMI, - STATE(7102), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288372] = 6, - ACTIONS(3), 1, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15656), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15658), 1, + anon_sym_LBRACE, + STATE(9994), 1, + aux_sym_base_class_clause_repeat1, + [352728] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(12077), 1, - sym_identifier, - STATE(7417), 1, - sym__namespace_specifier, - STATE(8104), 1, - sym_nested_namespace_specifier, - [288391] = 6, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15660), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - ACTIONS(10848), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(11199), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_parameter_list, - STATE(6206), 1, - sym__function_declarator_seq, - [288410] = 5, - ACTIONS(3), 1, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(9222), 1, + sym_field_declaration_list, + STATE(10409), 1, + sym_base_class_clause, + [352760] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12091), 1, - anon_sym_SEMI, - STATE(7083), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288427] = 5, + ACTIONS(15662), 1, + anon_sym_DQUOTE, + ACTIONS(15664), 1, + aux_sym_string_literal_token1, + ACTIONS(15666), 1, + sym_escape_sequence, + STATE(9316), 1, + aux_sym_string_literal_repeat1, + [352776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12093), 1, - anon_sym_SEMI, - STATE(7087), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288444] = 6, - ACTIONS(3), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15668), 1, + anon_sym_EQ, + STATE(9185), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352790] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(1852), 1, - anon_sym_operator, - ACTIONS(11968), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2345), 1, - sym_template_method, - STATE(7842), 1, - sym_operator_name, - [288463] = 5, + ACTIONS(15670), 1, + anon_sym_DQUOTE, + ACTIONS(15672), 1, + aux_sym_string_literal_token1, + ACTIONS(15674), 1, + sym_escape_sequence, + STATE(9465), 1, + aux_sym_string_literal_repeat1, + [352806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12095), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288480] = 5, - ACTIONS(3), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9968), 1, + sym_compound_statement, + STATE(10375), 1, + sym_field_initializer_list, + [352822] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12097), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288497] = 5, + ACTIONS(15676), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12099), 1, - anon_sym_SEMI, - STATE(7093), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288514] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15678), 1, + anon_sym_GT2, + STATE(9618), 1, + aux_sym_template_argument_list_repeat1, + [352852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12101), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15680), 1, anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288531] = 6, - ACTIONS(3), 1, + STATE(3601), 1, + sym_template_argument_list, + [352868] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11373), 1, - anon_sym_COLON, - ACTIONS(12103), 1, - anon_sym_SEMI, - STATE(7748), 1, - sym_module_partition, - STATE(8789), 1, - sym_attribute_declaration, - [288550] = 5, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15682), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352884] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15684), 1, + anon_sym_DQUOTE, + ACTIONS(15686), 1, + aux_sym_string_literal_token1, + ACTIONS(15688), 1, + sym_escape_sequence, + STATE(9447), 1, + aux_sym_string_literal_repeat1, + [352900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11317), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12107), 1, - anon_sym___attribute, - STATE(7118), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(12105), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [288567] = 3, - ACTIONS(3), 1, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15690), 1, + anon_sym_GT2, + STATE(9828), 1, + aux_sym_template_argument_list_repeat1, + [352916] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12046), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6249), 3, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, - anon_sym_or, - [288580] = 6, + ACTIONS(15692), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_COLON_COLON, - ACTIONS(11510), 1, - anon_sym_inline, - ACTIONS(12109), 1, - sym_identifier, - STATE(8302), 1, - sym_nested_namespace_specifier, - STATE(8449), 1, - sym__namespace_specifier, - [288599] = 5, + ACTIONS(15694), 1, + anon_sym___except, + ACTIONS(15696), 1, + anon_sym___finally, + STATE(1128), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [352944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12111), 1, - anon_sym_SEMI, - STATE(7090), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288616] = 5, + ACTIONS(15698), 1, + anon_sym_COMMA, + STATE(9446), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15701), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352958] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15703), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352974] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15705), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [352990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12113), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288633] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15707), 1, + anon_sym_GT2, + STATE(9628), 1, + aux_sym_template_argument_list_repeat1, + [353006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7290), 1, - anon_sym___attribute__, - ACTIONS(12115), 1, - anon_sym_SEMI, - STATE(4298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288650] = 5, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8193), 1, + anon_sym_LBRACE, + STATE(2900), 1, + sym_field_declaration_list, + STATE(10236), 1, + sym_base_class_clause, + [353022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(7996), 1, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(4096), 1, + STATE(7468), 1, sym_field_declaration_list, - STATE(8145), 1, + STATE(10442), 1, sym_base_class_clause, - [288666] = 5, - ACTIONS(10266), 1, + [353038] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 1, + ACTIONS(15709), 1, + anon_sym_COMMA, + STATE(9496), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15711), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [353052] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15713), 1, anon_sym_DQUOTE, - ACTIONS(12119), 1, + ACTIONS(15715), 1, aux_sym_string_literal_token1, - ACTIONS(12121), 1, + ACTIONS(15717), 1, sym_escape_sequence, - STATE(7152), 1, + STATE(9459), 1, aux_sym_string_literal_repeat1, - [288682] = 5, + [353068] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15719), 1, + aux_sym_preproc_include_token2, + ACTIONS(15721), 1, + sym_preproc_arg, + STATE(10273), 1, + sym_preproc_params, + [353084] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15723), 1, + aux_sym_preproc_include_token2, + ACTIONS(15725), 1, + sym_preproc_arg, + STATE(10387), 1, + sym_preproc_params, + [353100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(6840), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3067), 1, + STATE(9226), 1, sym_field_declaration_list, - STATE(7926), 1, + STATE(10411), 1, sym_base_class_clause, - [288698] = 4, - ACTIONS(10266), 1, + [353116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(7819), 1, + anon_sym_LBRACE, + STATE(2603), 1, + sym_field_declaration_list, + STATE(10248), 1, + sym_base_class_clause, + [353132] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12123), 1, + ACTIONS(15727), 1, anon_sym_SQUOTE, - STATE(7267), 1, + STATE(9290), 1, aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, + ACTIONS(15391), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [288712] = 5, - ACTIONS(10266), 1, + [353146] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15729), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [353162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(15731), 1, + anon_sym_SEMI, + ACTIONS(15733), 1, + anon_sym_noexcept, + STATE(11498), 1, + sym_trailing_return_type, + [353178] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, + anon_sym_LT, + ACTIONS(15735), 1, + anon_sym_SEMI, + STATE(3601), 1, + sym_template_argument_list, + [353194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15737), 1, + anon_sym_GT2, + STATE(9636), 1, + aux_sym_template_argument_list_repeat1, + [353210] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(4613), 1, + sym_field_declaration_list, + STATE(10394), 1, + sym_base_class_clause, + [353226] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15739), 1, anon_sym_DQUOTE, - ACTIONS(12129), 1, + ACTIONS(15741), 1, + aux_sym_string_literal_token1, + ACTIONS(15743), 1, + sym_escape_sequence, + STATE(9468), 1, + aux_sym_string_literal_repeat1, + [353242] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, aux_sym_string_literal_token1, - ACTIONS(12131), 1, + ACTIONS(15380), 1, sym_escape_sequence, - STATE(7269), 1, + ACTIONS(15745), 1, + anon_sym_DQUOTE, + STATE(9350), 1, aux_sym_string_literal_repeat1, - [288728] = 5, + [353258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, + ACTIONS(13004), 1, anon_sym_LBRACE, - ACTIONS(12133), 1, + ACTIONS(15403), 1, anon_sym_LPAREN2, - STATE(3632), 1, + STATE(4755), 1, sym_requirement_seq, - STATE(7975), 1, + STATE(10313), 1, sym_requires_parameter_list, - [288744] = 5, + [353274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(6840), 1, + ACTIONS(7866), 1, anon_sym_LBRACE, - STATE(3087), 1, + STATE(2708), 1, + sym_field_declaration_list, + STATE(10304), 1, + sym_base_class_clause, + [353290] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15747), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [353306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15749), 1, + anon_sym___except, + ACTIONS(15751), 1, + anon_sym___finally, + STATE(504), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8007), 1, + anon_sym_LBRACE, + STATE(2684), 1, sym_field_declaration_list, - STATE(8055), 1, + STATE(10212), 1, sym_base_class_clause, - [288760] = 5, + [353336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15753), 1, + anon_sym_COMMA, + STATE(9471), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15756), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [353350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(10542), 1, + anon_sym_LPAREN2, + STATE(5801), 1, + sym_argument_list, + STATE(7210), 1, + sym_initializer_list, + [353366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3783), 1, + sym_argument_list, + STATE(5860), 1, + sym_initializer_list, + [353382] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15758), 1, + aux_sym_preproc_include_token2, + ACTIONS(15760), 1, + sym_preproc_arg, + STATE(10377), 1, + sym_preproc_params, + [353398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(15395), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12137), 1, + ACTIONS(15762), 1, anon_sym_GT2, - STATE(7739), 1, + STATE(9641), 1, aux_sym_template_argument_list_repeat1, - [288776] = 5, + [353414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(859), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [288792] = 4, - ACTIONS(10266), 1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9363), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [353430] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12141), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, + ACTIONS(15764), 1, + anon_sym_DQUOTE, + ACTIONS(15766), 1, + aux_sym_string_literal_token1, + ACTIONS(15768), 1, sym_escape_sequence, - [288806] = 2, + STATE(9483), 1, + aux_sym_string_literal_repeat1, + [353446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11989), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [288816] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15770), 1, + anon_sym_GT2, + STATE(9779), 1, + aux_sym_template_argument_list_repeat1, + [353462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7015), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(15772), 1, + anon_sym_EQ, + STATE(411), 1, + sym_declaration_list, + [353478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15774), 1, + anon_sym___except, + ACTIONS(15776), 1, + anon_sym___finally, + STATE(752), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(6751), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [353506] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 1, + anon_sym_LBRACE, + ACTIONS(10582), 1, + anon_sym_LPAREN2, + STATE(5662), 1, + sym_argument_list, + STATE(7145), 1, + sym_initializer_list, + [353522] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12129), 1, + ACTIONS(15378), 1, aux_sym_string_literal_token1, - ACTIONS(12131), 1, + ACTIONS(15380), 1, sym_escape_sequence, - ACTIONS(12143), 1, + ACTIONS(15778), 1, anon_sym_DQUOTE, - STATE(7269), 1, + STATE(9350), 1, aux_sym_string_literal_repeat1, - [288832] = 5, - ACTIONS(10266), 1, + [353538] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12145), 1, + ACTIONS(15780), 1, anon_sym_DQUOTE, - ACTIONS(12147), 1, + ACTIONS(15782), 1, aux_sym_string_literal_token1, - ACTIONS(12149), 1, + ACTIONS(15784), 1, sym_escape_sequence, - STATE(7165), 1, + STATE(9514), 1, aux_sym_string_literal_repeat1, - [288848] = 5, + [353554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(4933), 1, - anon_sym_SEMI, - ACTIONS(6762), 1, + ACTIONS(9672), 1, anon_sym_LT, - STATE(1740), 1, + STATE(2061), 1, sym_template_argument_list, - [288864] = 3, + ACTIONS(9227), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [353568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15786), 1, + anon_sym_GT2, + STATE(9651), 1, + aux_sym_template_argument_list_repeat1, + [353584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + ACTIONS(8808), 1, + anon_sym_LPAREN2, + STATE(3723), 1, + sym_argument_list, + STATE(5901), 1, + sym_initializer_list, + [353600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12151), 1, + ACTIONS(15788), 1, sym_identifier, - ACTIONS(12153), 3, + ACTIONS(15790), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [288876] = 5, + [353612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(9155), 1, + ACTIONS(7023), 1, anon_sym_LBRACE, - STATE(5055), 1, - sym_field_declaration_list, - STATE(7928), 1, - sym_base_class_clause, - [288892] = 4, - ACTIONS(10266), 1, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(15792), 1, + anon_sym_EQ, + STATE(738), 1, + sym_declaration_list, + [353628] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12155), 1, + ACTIONS(15794), 1, + anon_sym_DQUOTE, + ACTIONS(15796), 1, + aux_sym_string_literal_token1, + ACTIONS(15798), 1, + sym_escape_sequence, + STATE(9505), 1, + aux_sym_string_literal_repeat1, + [353644] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15800), 1, anon_sym_SQUOTE, - STATE(7267), 1, + STATE(9290), 1, aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, + ACTIONS(15391), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [288906] = 5, - ACTIONS(10266), 1, + [353658] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12157), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [288922] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15802), 1, + anon_sym_GT2, + STATE(9580), 1, + aux_sym_template_argument_list_repeat1, + [353674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 1, + ACTIONS(12966), 1, + anon_sym_LBRACE, + ACTIONS(15403), 1, anon_sym_LPAREN2, - ACTIONS(12159), 1, + STATE(3575), 1, + sym_requirement_seq, + STATE(10414), 1, + sym_requires_parameter_list, + [353690] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(4283), 1, + sym_field_declaration_list, + STATE(10086), 1, + sym_base_class_clause, + [353706] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12930), 1, anon_sym_LBRACE, - STATE(6098), 1, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + STATE(5508), 1, sym_requirement_seq, - STATE(7895), 1, + STATE(10135), 1, sym_requires_parameter_list, - [288938] = 4, + [353722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15709), 1, + anon_sym_COMMA, + STATE(9471), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15804), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [353736] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12161), 1, - anon_sym_using, - STATE(6018), 2, + ACTIONS(14803), 1, + anon_sym_EQ, + STATE(9435), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [288952] = 5, + [353750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(8909), 1, anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(12165), 1, - anon_sym_EQ, - STATE(608), 1, - sym_declaration_list, - [288968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12167), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [288984] = 5, + STATE(3739), 1, + sym_field_declaration_list, + STATE(10437), 1, + sym_base_class_clause, + [353766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(9155), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5049), 1, + STATE(3762), 1, sym_field_declaration_list, - STATE(7957), 1, + STATE(10438), 1, sym_base_class_clause, - [289000] = 5, + [353782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(15395), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12169), 1, + ACTIONS(15806), 1, anon_sym_GT2, - STATE(7730), 1, + STATE(9947), 1, aux_sym_template_argument_list_repeat1, - [289016] = 5, + [353798] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15808), 1, + aux_sym_preproc_include_token2, + ACTIONS(15810), 1, + sym_preproc_arg, + STATE(10194), 1, + sym_preproc_params, + [353814] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15812), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15646), 1, + anon_sym_COMMA, + STATE(9423), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15814), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6741), 1, + [353842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12938), 1, anon_sym_LBRACE, - STATE(3094), 1, - sym_field_declaration_list, - STATE(7851), 1, - sym_base_class_clause, - [289032] = 5, - ACTIONS(10266), 1, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + STATE(5062), 1, + sym_requirement_seq, + STATE(10113), 1, + sym_requires_parameter_list, + [353858] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12171), 1, - anon_sym_DQUOTE, - ACTIONS(12173), 1, + ACTIONS(15378), 1, aux_sym_string_literal_token1, - ACTIONS(12175), 1, + ACTIONS(15380), 1, sym_escape_sequence, - STATE(7271), 1, + ACTIONS(15816), 1, + anon_sym_DQUOTE, + STATE(9350), 1, aux_sym_string_literal_repeat1, - [289048] = 4, + [353874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, + ACTIONS(9672), 1, anon_sym_LT, - STATE(1635), 1, + ACTIONS(15818), 1, + anon_sym_SEMI, + STATE(3601), 1, sym_template_argument_list, - ACTIONS(6497), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [289062] = 4, + [353890] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15409), 1, + anon_sym_LPAREN, + ACTIONS(15820), 1, + aux_sym_preproc_include_token2, + ACTIONS(15822), 1, + sym_preproc_arg, + STATE(10089), 1, + sym_preproc_params, + [353906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12177), 1, - anon_sym___except, - ACTIONS(12179), 1, - anon_sym___finally, - STATE(666), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [289076] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15824), 1, + anon_sym_GT2, + STATE(9922), 1, + aux_sym_template_argument_list_repeat1, + [353922] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15826), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 1, - anon_sym___except, - ACTIONS(12183), 1, - anon_sym___finally, - STATE(387), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [289090] = 5, - ACTIONS(10266), 1, + ACTIONS(7817), 1, + anon_sym_COLON, + ACTIONS(12646), 1, + anon_sym_LBRACE, + STATE(7453), 1, + sym_field_declaration_list, + STATE(10427), 1, + sym_base_class_clause, + [353952] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15828), 1, + anon_sym_SQUOTE, + STATE(9290), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353966] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12185), 1, + ACTIONS(15830), 1, anon_sym_DQUOTE, - ACTIONS(12187), 1, + ACTIONS(15832), 1, aux_sym_string_literal_token1, - ACTIONS(12189), 1, + ACTIONS(15834), 1, sym_escape_sequence, - STATE(7182), 1, + STATE(9296), 1, aux_sym_string_literal_repeat1, - [289106] = 5, - ACTIONS(10266), 1, + [353982] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12191), 1, + ACTIONS(15836), 1, anon_sym_DQUOTE, - ACTIONS(12193), 1, + ACTIONS(15838), 1, aux_sym_string_literal_token1, - ACTIONS(12195), 1, + ACTIONS(15840), 1, sym_escape_sequence, - STATE(7206), 1, + STATE(9522), 1, aux_sym_string_literal_repeat1, - [289122] = 4, - ACTIONS(3), 1, + [353998] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12197), 1, - anon_sym_EQ, - STATE(7336), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [289136] = 5, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15842), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [354014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15522), 1, + anon_sym_COMMA, + STATE(9364), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15844), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7996), 1, + [354028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15546), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4114), 1, - sym_field_declaration_list, - STATE(8112), 1, - sym_base_class_clause, - [289152] = 4, - ACTIONS(10266), 1, + anon_sym_EQ, + anon_sym_try, + [354038] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9481), 1, + sym_splice_specifier, + STATE(9487), 1, + sym_splice_type_specifier, + [354054] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15846), 1, + anon_sym_DQUOTE, + ACTIONS(15848), 1, + aux_sym_string_literal_token1, + ACTIONS(15850), 1, sym_escape_sequence, - [289166] = 5, - ACTIONS(10266), 1, + STATE(9425), 1, + aux_sym_string_literal_repeat1, + [354070] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15852), 1, + anon_sym_GT2, + STATE(10051), 1, + aux_sym_template_argument_list_repeat1, + [354086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_LBRACK_COLON, + STATE(3682), 1, + sym__splice_specialization_specifier, + STATE(9323), 1, + sym_splice_type_specifier, + STATE(9481), 1, + sym_splice_specifier, + [354102] = 5, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12129), 1, + ACTIONS(15378), 1, aux_sym_string_literal_token1, - ACTIONS(12131), 1, + ACTIONS(15380), 1, sym_escape_sequence, - ACTIONS(12201), 1, + ACTIONS(15854), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [354118] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15856), 1, anon_sym_DQUOTE, - STATE(7269), 1, + STATE(9350), 1, aux_sym_string_literal_repeat1, - [289182] = 5, + [354134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(7817), 1, anon_sym_COLON, - ACTIONS(6741), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3042), 1, + STATE(4570), 1, sym_field_declaration_list, - STATE(7824), 1, + STATE(10359), 1, sym_base_class_clause, - [289198] = 5, + [354150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15403), 1, + anon_sym_LPAREN2, + ACTIONS(15858), 1, + anon_sym_LBRACE, + STATE(8295), 1, + sym_requirement_seq, + STATE(10098), 1, + sym_requires_parameter_list, + [354166] = 5, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(15378), 1, + aux_sym_string_literal_token1, + ACTIONS(15380), 1, + sym_escape_sequence, + ACTIONS(15860), 1, + anon_sym_DQUOTE, + STATE(9350), 1, + aux_sym_string_literal_repeat1, + [354182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6983), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(15862), 1, + anon_sym_EQ, + STATE(777), 1, + sym_declaration_list, + [354198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14296), 1, + anon_sym_COLON, + STATE(9764), 1, + sym_compound_statement, + STATE(10206), 1, + sym_field_initializer_list, + [354214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12203), 1, + ACTIONS(15864), 1, anon_sym_GT2, - STATE(7440), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [289214] = 5, - ACTIONS(10266), 1, + [354227] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12205), 1, - aux_sym_preproc_include_token2, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12209), 1, - sym_preproc_arg, - STATE(7990), 1, - sym_preproc_params, - [289230] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15866), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(862), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [289246] = 5, - ACTIONS(10266), 1, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15870), 1, + anon_sym_RBRACK_RBRACK, + STATE(9535), 1, + aux_sym_attribute_declaration_repeat1, + [354253] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12211), 1, - anon_sym_DQUOTE, - ACTIONS(12213), 1, - aux_sym_string_literal_token1, - ACTIONS(12215), 1, - sym_escape_sequence, - STATE(7189), 1, - aux_sym_string_literal_repeat1, - [289262] = 4, - ACTIONS(10266), 1, + ACTIONS(15870), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(15872), 1, + anon_sym_COMMA, + STATE(9536), 1, + aux_sym_attribute_declaration_repeat2, + [354266] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12217), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [289276] = 5, - ACTIONS(10266), 1, + ACTIONS(15874), 1, + anon_sym_RPAREN, + ACTIONS(15876), 1, + anon_sym_COLON, + STATE(9556), 1, + sym_gnu_asm_clobber_list, + [354279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11939), 1, + anon_sym_RBRACE, + ACTIONS(12179), 1, + anon_sym_COMMA, + STATE(9927), 1, + aux_sym_initializer_list_repeat1, + [354292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15878), 1, + anon_sym_RPAREN, + ACTIONS(15880), 1, + anon_sym_COLON, + STATE(9557), 1, + sym_gnu_asm_input_operand_list, + [354305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15882), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [354318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15882), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [354331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15884), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [354344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(15888), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [354357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15890), 1, + anon_sym_SEMI, + STATE(10539), 1, + sym_attribute_declaration, + [354370] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15892), 1, + anon_sym_default, + ACTIONS(15894), 1, + anon_sym_delete, + ACTIONS(15896), 1, + aux_sym_pure_virtual_clause_token1, + [354383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15898), 1, + anon_sym_GT2, + STATE(9547), 1, + aux_sym_template_argument_list_repeat1, + [354396] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15900), 1, + anon_sym_SEMI, + STATE(9591), 1, + aux_sym_declaration_repeat1, + [354409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15902), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [354422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15904), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [354435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15906), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15908), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15910), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(15914), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [354487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15916), 1, + anon_sym_catch, + STATE(536), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [354498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11997), 1, + anon_sym_COMMA, + ACTIONS(15918), 1, + anon_sym_RBRACK, + STATE(9849), 1, + aux_sym_subscript_argument_list_repeat1, + [354511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15920), 1, + anon_sym_EQ, + ACTIONS(14744), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [354522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(15922), 1, + anon_sym_LBRACE, + STATE(10771), 1, + sym_requires_clause, + [354535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(15924), 1, + anon_sym_RPAREN, + STATE(9592), 1, + aux_sym_throw_specifier_repeat1, + [354548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15926), 1, + anon_sym_RBRACK_RBRACK, + STATE(9559), 1, + aux_sym_attribute_declaration_repeat1, + [354561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15926), 1, + anon_sym_RBRACK_RBRACK, + STATE(9560), 1, + aux_sym_attribute_declaration_repeat2, + [354574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15928), 1, + anon_sym_RPAREN, + ACTIONS(15930), 1, + anon_sym_COLON, + STATE(10941), 1, + sym_gnu_asm_goto_list, + [354587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(15932), 1, + anon_sym_RPAREN, + STATE(9567), 1, + sym_gnu_asm_clobber_list, + [354600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(15934), 1, + anon_sym_RPAREN, + STATE(9899), 1, + aux_sym_preproc_argument_list_repeat1, + [354613] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12219), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289292] = 5, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15936), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [354626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(12221), 1, - anon_sym_SEMI, - ACTIONS(12223), 1, - anon_sym_noexcept, - STATE(8335), 1, - sym_trailing_return_type, - [289308] = 5, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15936), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [354639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12225), 1, + ACTIONS(15938), 1, anon_sym_GT2, - STATE(7486), 1, + STATE(9565), 1, aux_sym_template_argument_list_repeat1, - [289324] = 5, + [354652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - STATE(3670), 1, - sym_argument_list, - STATE(4914), 1, - sym_initializer_list, - [289340] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12227), 1, - anon_sym_DQUOTE, - ACTIONS(12229), 1, - aux_sym_string_literal_token1, - ACTIONS(12231), 1, - sym_escape_sequence, - STATE(7195), 1, - aux_sym_string_literal_repeat1, - [289356] = 4, - ACTIONS(10266), 1, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15940), 1, + anon_sym_RBRACK_RBRACK, + STATE(9599), 1, + aux_sym_attribute_declaration_repeat1, + [354665] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12233), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [289370] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15942), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354678] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12235), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289386] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15944), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12237), 1, + ACTIONS(15946), 1, anon_sym_GT2, - STATE(7545), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [289402] = 5, + [354704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15940), 1, + anon_sym_RBRACK_RBRACK, + STATE(9600), 1, + aux_sym_attribute_declaration_repeat2, + [354717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15930), 1, anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(2505), 1, - sym_field_declaration_list, - STATE(7877), 1, - sym_base_class_clause, - [289418] = 5, - ACTIONS(10266), 1, + ACTIONS(15948), 1, + anon_sym_RPAREN, + STATE(11329), 1, + sym_gnu_asm_goto_list, + [354730] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12239), 1, - anon_sym_DQUOTE, - ACTIONS(12241), 1, - aux_sym_string_literal_token1, - ACTIONS(12243), 1, - sym_escape_sequence, - STATE(7199), 1, - aux_sym_string_literal_repeat1, - [289434] = 5, - ACTIONS(10266), 1, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(15950), 1, + anon_sym_RPAREN, + STATE(9856), 1, + aux_sym_throw_specifier_repeat1, + [354743] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12245), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289450] = 5, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(15952), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [354756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(5680), 1, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14740), 1, anon_sym_LBRACE, - STATE(2293), 1, - sym_field_declaration_list, - STATE(8062), 1, - sym_base_class_clause, - [289466] = 5, + STATE(10637), 1, + sym_requires_clause, + [354769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12247), 1, - anon_sym_GT2, - STATE(7578), 1, - aux_sym_template_argument_list_repeat1, - [289482] = 5, - ACTIONS(10266), 1, + ACTIONS(15954), 1, + anon_sym_RBRACK_RBRACK, + STATE(9575), 1, + aux_sym_attribute_declaration_repeat1, + [354782] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - anon_sym_DQUOTE, - ACTIONS(12251), 1, - aux_sym_string_literal_token1, - ACTIONS(12253), 1, - sym_escape_sequence, - STATE(7203), 1, - aux_sym_string_literal_repeat1, - [289498] = 5, - ACTIONS(10266), 1, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15954), 1, + anon_sym_RBRACK_RBRACK, + STATE(9576), 1, + aux_sym_attribute_declaration_repeat2, + [354795] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12255), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289514] = 5, + ACTIONS(15956), 1, + anon_sym_catch, + STATE(1017), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [354806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(15958), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12257), 1, - anon_sym_GT2, - STATE(7619), 1, - aux_sym_template_argument_list_repeat1, - [289530] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12259), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [289544] = 5, - ACTIONS(10266), 1, + ACTIONS(15960), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [354817] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12261), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289560] = 5, - ACTIONS(10266), 1, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15962), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [354830] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12263), 1, - anon_sym_DQUOTE, - ACTIONS(12265), 1, - aux_sym_string_literal_token1, - ACTIONS(12267), 1, - sym_escape_sequence, - STATE(7208), 1, - aux_sym_string_literal_repeat1, - [289576] = 5, - ACTIONS(10266), 1, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(15962), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [354843] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12269), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289592] = 5, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15964), 1, + anon_sym_LBRACE, + STATE(9730), 1, + aux_sym_base_class_clause_repeat1, + [354856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12271), 1, + ACTIONS(15966), 1, anon_sym_GT2, - STATE(7674), 1, + STATE(9581), 1, aux_sym_template_argument_list_repeat1, - [289608] = 5, + [354869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(12273), 1, - anon_sym_EQ, - STATE(807), 1, - sym_declaration_list, - [289624] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15968), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12275), 1, + ACTIONS(15970), 1, anon_sym_GT2, - STATE(7504), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [289640] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12277), 1, - anon_sym_DQUOTE, - ACTIONS(12279), 1, - aux_sym_string_literal_token1, - ACTIONS(12281), 1, - sym_escape_sequence, - STATE(7213), 1, - aux_sym_string_literal_repeat1, - [289656] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12283), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289672] = 5, + [354895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12285), 1, + ACTIONS(15972), 1, anon_sym_GT2, - STATE(7701), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [289688] = 5, + [354908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 1, - anon_sym_LBRACE, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - STATE(4320), 1, - sym_requirement_seq, - STATE(7948), 1, - sym_requires_parameter_list, - [289704] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12287), 1, - anon_sym_DQUOTE, - ACTIONS(12289), 1, - aux_sym_string_literal_token1, - ACTIONS(12291), 1, - sym_escape_sequence, - STATE(7218), 1, - aux_sym_string_literal_repeat1, - [289720] = 5, - ACTIONS(10266), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15974), 1, + anon_sym_SEMI, + STATE(9623), 1, + aux_sym_declaration_repeat1, + [354921] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12293), 1, - aux_sym_preproc_include_token2, - ACTIONS(12295), 1, - sym_preproc_arg, - STATE(7959), 1, - sym_preproc_params, - [289736] = 5, - ACTIONS(10266), 1, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(15976), 1, + anon_sym_RPAREN, + STATE(9610), 1, + sym_gnu_asm_clobber_list, + [354934] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12297), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289752] = 5, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(15978), 1, + anon_sym_RPAREN, + STATE(9611), 1, + sym_gnu_asm_input_operand_list, + [354947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12299), 1, + ACTIONS(15980), 1, anon_sym_GT2, - STATE(7734), 1, + STATE(9588), 1, aux_sym_template_argument_list_repeat1, - [289768] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12301), 1, - anon_sym_DQUOTE, - ACTIONS(12303), 1, - aux_sym_string_literal_token1, - ACTIONS(12305), 1, - sym_escape_sequence, - STATE(7221), 1, - aux_sym_string_literal_repeat1, - [289784] = 5, - ACTIONS(10266), 1, + [354960] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289800] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15982), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354973] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_DQUOTE, - ACTIONS(12311), 1, - aux_sym_string_literal_token1, - ACTIONS(12313), 1, - sym_escape_sequence, - STATE(7223), 1, - aux_sym_string_literal_repeat1, - [289816] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15984), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354986] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12315), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [289832] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15986), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [354999] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12317), 1, - anon_sym_DQUOTE, - ACTIONS(12319), 1, - aux_sym_string_literal_token1, - ACTIONS(12321), 1, - sym_escape_sequence, - STATE(7159), 1, - aux_sym_string_literal_repeat1, - [289848] = 5, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(15988), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [355012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12323), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12325), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(12327), 1, - anon_sym_LBRACE, - STATE(7439), 1, - aux_sym_base_class_clause_repeat1, - [289864] = 5, + ACTIONS(15988), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [355025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12329), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(15990), 1, anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [289880] = 4, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [355038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, - anon_sym___except, - ACTIONS(12333), 1, - anon_sym___finally, - STATE(559), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [289894] = 5, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(15992), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [355051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7392), 1, - sym_compound_statement, - STATE(8099), 1, - sym_field_initializer_list, - [289910] = 5, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12114), 1, + anon_sym_RPAREN, + STATE(9817), 1, + aux_sym_argument_list_repeat1, + [355064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(5680), 1, + ACTIONS(13877), 1, anon_sym_LBRACE, - STATE(2289), 1, - sym_field_declaration_list, - STATE(8140), 1, - sym_base_class_clause, - [289926] = 5, + ACTIONS(13881), 1, + anon_sym_requires, + STATE(10694), 1, + sym_requires_clause, + [355077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12335), 1, + ACTIONS(15994), 1, anon_sym_GT2, - STATE(7403), 1, + STATE(9598), 1, aux_sym_template_argument_list_repeat1, - [289942] = 4, + [355090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12337), 1, - anon_sym___except, - ACTIONS(12339), 1, - anon_sym___finally, - STATE(666), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [289956] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15996), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(858), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [289972] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(15998), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9842), 1, - anon_sym_LBRACE, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - STATE(3379), 1, - sym_requirement_seq, - STATE(7815), 1, - sym_requires_parameter_list, - [289988] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16000), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11639), 1, - anon_sym_EQ, - STATE(7340), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [290002] = 5, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16002), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [355142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(12341), 1, - aux_sym_preproc_if_token2, - STATE(6871), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - [290018] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16002), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [355155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, - sym_identifier, - ACTIONS(12343), 1, - aux_sym_preproc_if_token2, - STATE(6857), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [290032] = 5, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12136), 1, + anon_sym_RPAREN, + STATE(9655), 1, + aux_sym_argument_list_repeat1, + [355168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(7021), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12345), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290048] = 5, + STATE(910), 1, + sym_declaration_list, + [355181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_LBRACE, - ACTIONS(6082), 1, - anon_sym_LPAREN2, - STATE(2441), 1, - sym_initializer_list, - STATE(2535), 1, - sym_argument_list, - [290064] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12347), 1, - anon_sym_DQUOTE, - ACTIONS(12349), 1, - aux_sym_string_literal_token1, - ACTIONS(12351), 1, - sym_escape_sequence, - STATE(7254), 1, - aux_sym_string_literal_repeat1, - [290080] = 5, + ACTIONS(12140), 1, + anon_sym_COMMA, + ACTIONS(12142), 1, + anon_sym_RBRACE, + STATE(9656), 1, + aux_sym_initializer_list_repeat1, + [355194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(12000), 1, - aux_sym_preproc_if_token2, - STATE(7235), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8710), 1, - sym_enumerator, - [290096] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12353), 1, - aux_sym_preproc_include_token2, - ACTIONS(12355), 1, - sym_preproc_arg, - STATE(7908), 1, - sym_preproc_params, - [290112] = 5, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(16004), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [355207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 1, - sym_identifier, - ACTIONS(12359), 1, - anon_sym_SEMI, - ACTIONS(12361), 1, - anon_sym_COLON, - STATE(7076), 1, - sym_module_name, - [290128] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16006), 1, + anon_sym_GT2, + STATE(9608), 1, + aux_sym_template_argument_list_repeat1, + [355220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - STATE(3500), 1, - sym_argument_list, - STATE(3501), 1, - sym_initializer_list, - [290144] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12363), 1, - anon_sym_DQUOTE, - ACTIONS(12365), 1, - aux_sym_string_literal_token1, - ACTIONS(12367), 1, - sym_escape_sequence, - STATE(7252), 1, - aux_sym_string_literal_repeat1, - [290160] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16008), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12369), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12371), 1, - anon_sym_LBRACE, - STATE(7458), 1, - aux_sym_base_class_clause_repeat1, - [290176] = 5, - ACTIONS(10266), 1, + ACTIONS(16010), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355246] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12373), 1, - aux_sym_preproc_include_token2, - ACTIONS(12375), 1, - sym_preproc_arg, - STATE(7859), 1, - sym_preproc_params, - [290192] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16012), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10995), 1, - sym_identifier, - ACTIONS(12377), 1, - aux_sym_preproc_if_token2, - STATE(7236), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [290206] = 5, + ACTIONS(16014), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [355268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LBRACE, - ACTIONS(7466), 1, - anon_sym_LPAREN2, - STATE(3616), 1, - sym_initializer_list, - STATE(3670), 1, - sym_argument_list, - [290222] = 5, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16016), 1, + anon_sym_RPAREN, + STATE(10625), 1, + sym_gnu_asm_goto_list, + [355281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - STATE(2969), 1, - sym_field_declaration_list, - STATE(7941), 1, - sym_base_class_clause, - [290238] = 5, + ACTIONS(16018), 1, + anon_sym_RPAREN, + STATE(9631), 1, + sym_gnu_asm_clobber_list, + [355294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(16020), 1, + anon_sym_RPAREN, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(6597), 1, + STATE(9659), 1, + sym_gnu_asm_output_operand_list, + [355307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(16024), 1, anon_sym_LBRACE, - STATE(2715), 1, - sym_field_declaration_list, - STATE(7876), 1, - sym_base_class_clause, - [290254] = 4, - ACTIONS(10266), 1, + STATE(11212), 1, + sym_requires_clause, + [355320] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12379), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290268] = 5, - ACTIONS(10266), 1, + ACTIONS(16026), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [355329] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12381), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [290284] = 4, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16028), 1, + anon_sym_GT2, + STATE(9663), 1, + aux_sym_template_argument_list_repeat1, + [355342] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290298] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16030), 1, + anon_sym_GT2, + STATE(9619), 1, + aux_sym_template_argument_list_repeat1, + [355355] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12385), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [290314] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16032), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - ACTIONS(12387), 1, - anon_sym_LBRACE, - STATE(1648), 1, - sym_requirement_seq, - STATE(8078), 1, - sym_requires_parameter_list, - [290330] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16034), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12389), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12391), 1, - anon_sym_LBRACE, - STATE(7667), 1, - aux_sym_base_class_clause_repeat1, - [290346] = 5, + ACTIONS(16036), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(12393), 1, - anon_sym_EQ, - STATE(300), 1, - sym_declaration_list, - [290362] = 5, + ACTIONS(12132), 1, + anon_sym_COMMA, + ACTIONS(12134), 1, + anon_sym_RBRACE, + STATE(9834), 1, + aux_sym_initializer_list_repeat1, + [355407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12395), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16038), 1, anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290378] = 5, + STATE(9667), 1, + aux_sym_declaration_repeat1, + [355420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym_field_declaration_list, - STATE(7866), 1, - sym_base_class_clause, - [290394] = 5, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16040), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [355433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(7072), 1, - sym_template_parameter_list, - [290410] = 5, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16042), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [355446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9850), 1, - anon_sym_LBRACE, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - STATE(2473), 1, - sym_requirement_seq, - STATE(7868), 1, - sym_requires_parameter_list, - [290426] = 5, + ACTIONS(16044), 1, + anon_sym_COMMA, + ACTIONS(16046), 1, + anon_sym_RPAREN, + STATE(9687), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [355459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6597), 1, - anon_sym_LBRACE, - STATE(2740), 1, - sym_field_declaration_list, - STATE(7907), 1, - sym_base_class_clause, - [290442] = 5, + ACTIONS(16048), 1, + anon_sym_catch, + STATE(468), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [355470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12397), 1, + ACTIONS(16050), 1, anon_sym_GT2, - STATE(7516), 1, + STATE(9629), 1, aux_sym_template_argument_list_repeat1, - [290458] = 5, + [355483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7607), 1, - sym_compound_statement, - STATE(7914), 1, - sym_field_initializer_list, - [290474] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16052), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(860), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [290490] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16054), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12399), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290506] = 4, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16056), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355522] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12403), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290520] = 4, - ACTIONS(10266), 1, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16058), 1, + anon_sym_RPAREN, + STATE(9669), 1, + aux_sym_parameter_list_repeat1, + [355535] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12406), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290534] = 5, - ACTIONS(10266), 1, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16060), 1, + anon_sym_RPAREN, + STATE(10698), 1, + sym_gnu_asm_goto_list, + [355548] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12408), 1, - anon_sym_DQUOTE, - ACTIONS(12410), 1, - aux_sym_string_literal_token1, - ACTIONS(12413), 1, - sym_escape_sequence, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [290550] = 5, + ACTIONS(16062), 1, + anon_sym_catch, + STATE(2488), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [355559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12416), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290566] = 5, - ACTIONS(10266), 1, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(16064), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [355572] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12418), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [290582] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16066), 1, + anon_sym_GT2, + STATE(9637), 1, + aux_sym_template_argument_list_repeat1, + [355585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12420), 1, + ACTIONS(16068), 1, anon_sym_GT2, - STATE(7496), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [290598] = 4, + [355598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12422), 1, - anon_sym___except, - ACTIONS(12424), 1, - anon_sym___finally, - STATE(278), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [290612] = 5, - ACTIONS(10266), 1, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16070), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355611] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12426), 1, - anon_sym_DQUOTE, - ACTIONS(12428), 1, - aux_sym_string_literal_token1, - ACTIONS(12430), 1, - sym_escape_sequence, - STATE(7287), 1, - aux_sym_string_literal_repeat1, - [290628] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16072), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_field_declaration_list, - STATE(8066), 1, - sym_base_class_clause, - [290644] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12432), 1, - aux_sym_preproc_include_token2, - ACTIONS(12434), 1, - sym_preproc_arg, - STATE(7989), 1, - sym_preproc_params, - [290660] = 4, + ACTIONS(16074), 1, + anon_sym_RPAREN, + STATE(9766), 1, + sym_gnu_asm_input_operand_list, + [355637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - STATE(7322), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12438), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [290674] = 5, + ACTIONS(16076), 1, + anon_sym_GT2, + STATE(9642), 1, + aux_sym_template_argument_list_repeat1, + [355650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7385), 1, - sym_compound_statement, - STATE(7955), 1, - sym_field_initializer_list, - [290690] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16078), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12440), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - STATE(7323), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12442), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [290704] = 5, + ACTIONS(16080), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(857), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [290720] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16082), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - ACTIONS(7144), 1, - anon_sym_LPAREN2, - STATE(3500), 1, - sym_argument_list, - STATE(3922), 1, - sym_initializer_list, - [290736] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16084), 1, + anon_sym_RPAREN, + STATE(9767), 1, + sym_gnu_asm_output_operand_list, + [355702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(7354), 2, - sym_argument_list, - sym_initializer_list, - [290750] = 5, + ACTIONS(16086), 1, + anon_sym_COMMA, + ACTIONS(16088), 1, + anon_sym_RBRACK, + STATE(10038), 1, + aux_sym_lambda_capture_specifier_repeat1, + [355715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12444), 1, + ACTIONS(16090), 1, anon_sym_GT2, - STATE(7695), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [290766] = 5, + [355728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12446), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290782] = 5, + ACTIONS(13617), 1, + anon_sym_COMMA, + ACTIONS(16092), 1, + anon_sym_RPAREN, + STATE(9899), 1, + aux_sym_preproc_argument_list_repeat1, + [355741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - STATE(3293), 1, - sym_field_declaration_list, - STATE(8010), 1, - sym_base_class_clause, - [290798] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12448), 1, - anon_sym_SQUOTE, - STATE(7267), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290812] = 5, - ACTIONS(10266), 1, + ACTIONS(9379), 1, + anon_sym___attribute, + ACTIONS(9381), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355752] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, - sym_escape_sequence, - ACTIONS(12450), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [290828] = 5, + ACTIONS(9542), 1, + anon_sym___attribute, + ACTIONS(9544), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(12452), 1, - anon_sym_EQ, - STATE(719), 1, - sym_declaration_list, - [290844] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16094), 1, + anon_sym_GT2, + STATE(9652), 1, + aux_sym_template_argument_list_repeat1, + [355776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 1, - anon_sym_LBRACE, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - STATE(3924), 1, - sym_requirement_seq, - STATE(7855), 1, - sym_requires_parameter_list, - [290860] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16096), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7494), 1, - sym_compound_statement, - STATE(7988), 1, - sym_field_initializer_list, - [290876] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16098), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(861), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [290892] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16100), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(7913), 1, - sym_argument_list, - ACTIONS(12454), 2, + ACTIONS(15868), 1, anon_sym_COMMA, + ACTIONS(16102), 1, anon_sym_RBRACK_RBRACK, - [290906] = 5, + STATE(9589), 1, + aux_sym_attribute_declaration_repeat1, + [355828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12456), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [290922] = 5, + ACTIONS(16104), 1, + anon_sym_COMMA, + ACTIONS(16106), 1, + anon_sym_RPAREN, + STATE(9916), 1, + aux_sym_preproc_params_repeat1, + [355841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7590), 1, - sym_compound_statement, - STATE(7979), 1, - sym_field_initializer_list, - [290938] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12458), 1, - aux_sym_preproc_include_token2, - ACTIONS(12460), 1, - sym_preproc_arg, - STATE(7867), 1, - sym_preproc_params, - [290954] = 5, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(16108), 1, + anon_sym_RPAREN, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [355854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7636), 1, - sym_compound_statement, - STATE(8014), 1, - sym_field_initializer_list, - [290970] = 5, + ACTIONS(5386), 1, + anon_sym_RBRACE, + ACTIONS(16110), 1, + anon_sym_COMMA, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [355867] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16112), 1, + aux_sym_preproc_include_token2, + ACTIONS(16114), 1, + anon_sym_LPAREN2, + STATE(11388), 1, + sym_preproc_argument_list, + [355880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(16116), 1, anon_sym_COMMA, - ACTIONS(12462), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12464), 1, - anon_sym_LBRACE, - STATE(7424), 1, - aux_sym_base_class_clause_repeat1, - [290986] = 5, + ACTIONS(16118), 1, + anon_sym_GT2, + STATE(9748), 1, + aux_sym_template_parameter_list_repeat1, + [355893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_LBRACE, - STATE(3310), 1, - sym_field_declaration_list, - STATE(8032), 1, - sym_base_class_clause, - [291002] = 5, + ACTIONS(16120), 1, + anon_sym_RPAREN, + STATE(9683), 1, + sym_gnu_asm_input_operand_list, + [355906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_LT, - ACTIONS(12139), 1, - sym_identifier, - STATE(856), 1, - sym_template_parameter_list, - STATE(1891), 1, - sym_template_type, - [291018] = 5, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16122), 1, + anon_sym_RPAREN, + STATE(9684), 1, + sym_gnu_asm_output_operand_list, + [355919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12466), 1, + ACTIONS(16124), 1, anon_sym_GT2, - STATE(7651), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [291034] = 5, + [355932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, - anon_sym_LBRACE, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - STATE(3554), 1, - sym_requirement_seq, - STATE(8023), 1, - sym_requires_parameter_list, - [291050] = 2, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16126), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12468), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [291060] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16128), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8101), 1, - sym_argument_list, - ACTIONS(12470), 2, + ACTIONS(11947), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [291074] = 5, + ACTIONS(16130), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [355971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11058), 1, - anon_sym_COLON, - STATE(7751), 1, - sym_compound_statement, - STATE(8030), 1, - sym_field_initializer_list, - [291090] = 5, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16132), 1, + anon_sym_SEMI, + STATE(9685), 1, + aux_sym_declaration_repeat1, + [355984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12472), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16134), 1, anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291106] = 5, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [355997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12474), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16136), 1, anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291122] = 4, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [356010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12476), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291136] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16138), 1, + anon_sym_RPAREN, + STATE(9909), 1, + sym_gnu_asm_output_operand_list, + [356023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12478), 1, - anon_sym_using, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291150] = 2, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16140), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [356036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12468), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [291160] = 3, + ACTIONS(16062), 1, + anon_sym_catch, + STATE(2493), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12482), 1, - anon_sym___attribute, - ACTIONS(12480), 3, + ACTIONS(15886), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [291172] = 3, + ACTIONS(16142), 1, + anon_sym_RPAREN, + STATE(9686), 1, + aux_sym_throw_specifier_repeat1, + [356060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12486), 1, - anon_sym___attribute, - ACTIONS(12484), 3, + ACTIONS(16144), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [291184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12488), 1, - anon_sym_EQ, - STATE(7338), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291198] = 5, + ACTIONS(16147), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [356073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12490), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291214] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12492), 1, - anon_sym_DQUOTE, - ACTIONS(12494), 1, - aux_sym_string_literal_token1, - ACTIONS(12496), 1, - sym_escape_sequence, - STATE(7320), 1, - aux_sym_string_literal_repeat1, - [291230] = 5, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12207), 1, - anon_sym_LPAREN, - ACTIONS(12498), 1, - aux_sym_preproc_include_token2, - ACTIONS(12500), 1, - sym_preproc_arg, - STATE(8084), 1, - sym_preproc_params, - [291246] = 5, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16149), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [356086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_LBRACE, - ACTIONS(6082), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(2535), 1, - sym_argument_list, - STATE(3929), 1, - sym_initializer_list, - [291262] = 4, + ACTIONS(16153), 1, + anon_sym_constexpr, + STATE(204), 1, + sym_condition_clause, + [356099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 1, + ACTIONS(16155), 3, anon_sym_COMMA, - STATE(7277), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12502), 2, anon_sym_RPAREN, anon_sym_COLON, - [291276] = 5, + [356108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(16157), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8947), 1, - anon_sym_LBRACE, - STATE(4856), 1, - sym_field_declaration_list, - STATE(8103), 1, - sym_base_class_clause, - [291292] = 4, - ACTIONS(10266), 1, + [356117] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12504), 1, - anon_sym_SQUOTE, - STATE(7267), 1, + STATE(9358), 1, aux_sym_char_literal_repeat1, - ACTIONS(12125), 2, + ACTIONS(16159), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [291306] = 5, - ACTIONS(10266), 1, + [356128] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 1, - aux_sym_string_literal_token1, - ACTIONS(12131), 1, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16102), 1, + anon_sym_RBRACK_RBRACK, + STATE(9590), 1, + aux_sym_attribute_declaration_repeat2, + [356141] = 3, + ACTIONS(13686), 1, + sym_comment, + STATE(9398), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16161), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - ACTIONS(12506), 1, - anon_sym_DQUOTE, - STATE(7269), 1, - aux_sym_string_literal_repeat1, - [291322] = 5, + [356152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 1, - anon_sym_LPAREN2, - ACTIONS(12508), 1, + ACTIONS(15488), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(5774), 1, - sym_requirement_seq, - STATE(7813), 1, - sym_requires_parameter_list, - [291338] = 4, + [356161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12510), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - STATE(7322), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12513), 2, + ACTIONS(16163), 1, + anon_sym_GT2, + STATE(9528), 1, + aux_sym_template_argument_list_repeat1, + [356174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_COLON_COLON, + ACTIONS(16165), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [356185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16169), 1, anon_sym_RPAREN, + STATE(9688), 1, + sym_gnu_asm_clobber_list, + [356198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15880), 1, anon_sym_COLON, - [291352] = 4, + ACTIONS(16171), 1, + anon_sym_RPAREN, + STATE(9691), 1, + sym_gnu_asm_input_operand_list, + [356211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16173), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [356224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12440), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - STATE(7349), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12515), 2, + ACTIONS(16175), 1, anon_sym_RPAREN, - anon_sym_COLON, - [291366] = 4, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [356237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12517), 1, + ACTIONS(16044), 1, anon_sym_COMMA, - STATE(7350), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12519), 2, + ACTIONS(16177), 1, anon_sym_RPAREN, - anon_sym_COLON, - [291380] = 5, + STATE(9710), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [356250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(15930), 1, anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(5413), 1, - sym_field_declaration_list, - STATE(8091), 1, - sym_base_class_clause, - [291396] = 5, + ACTIONS(16179), 1, + anon_sym_RPAREN, + STATE(11424), 1, + sym_gnu_asm_goto_list, + [356263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(5417), 1, - sym_field_declaration_list, - STATE(8092), 1, - sym_base_class_clause, - [291412] = 5, + ACTIONS(9507), 1, + anon_sym___attribute, + ACTIONS(9509), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [356274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12521), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291428] = 5, + ACTIONS(9511), 1, + anon_sym___attribute, + ACTIONS(9513), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [356285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12523), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291444] = 5, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16181), 1, + anon_sym_RPAREN, + STATE(9694), 1, + sym_gnu_asm_clobber_list, + [356298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(8947), 1, + ACTIONS(16183), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(4865), 1, - sym_field_declaration_list, - STATE(8135), 1, - sym_base_class_clause, - [291460] = 4, + [356307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12525), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291474] = 4, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + ACTIONS(16185), 1, + anon_sym_constexpr, + STATE(199), 1, + sym_condition_clause, + [356320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12527), 1, - anon_sym_using, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291488] = 4, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16187), 1, + anon_sym_RPAREN, + STATE(11459), 1, + sym_gnu_asm_goto_list, + [356333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11715), 1, - anon_sym_EQ, - STATE(7307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291502] = 5, + ACTIONS(12035), 1, + anon_sym_COMMA, + ACTIONS(16189), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [356346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(16193), 1, + anon_sym_RPAREN, + ACTIONS(16191), 2, anon_sym_DOT_DOT_DOT, - ACTIONS(12529), 1, - anon_sym_GT2, - STATE(7773), 1, - aux_sym_template_argument_list_repeat1, - [291518] = 4, + sym_identifier, + [356357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9375), 1, + anon_sym___attribute, + ACTIONS(9377), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(12531), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291532] = 4, + [356368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9558), 1, + anon_sym___attribute, + ACTIONS(9560), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(11633), 1, - anon_sym_EQ, - STATE(7330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291546] = 4, + [356379] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12533), 1, - anon_sym_EQ, - STATE(6018), 2, + ACTIONS(16195), 1, + anon_sym_SEMI, + STATE(10994), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291560] = 4, + [356392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9420), 1, + anon_sym___attribute, + ACTIONS(9422), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(11695), 1, - anon_sym_EQ, - STATE(7334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291574] = 4, + [356403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9416), 1, + anon_sym___attribute, + ACTIONS(9418), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(12535), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291588] = 4, + [356414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11654), 1, - anon_sym_EQ, - STATE(7342), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291602] = 4, + ACTIONS(16197), 1, + anon_sym_default, + ACTIONS(16199), 1, + anon_sym_delete, + ACTIONS(16201), 1, + aux_sym_pure_virtual_clause_token1, + [356427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9412), 1, + anon_sym___attribute, + ACTIONS(9414), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(12537), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291616] = 3, + [356438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8766), 1, - anon_sym___attribute, - ACTIONS(8764), 3, + ACTIONS(12337), 1, + anon_sym_RPAREN, + ACTIONS(16203), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [291628] = 4, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [356451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12539), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291642] = 4, + ACTIONS(16086), 1, + anon_sym_COMMA, + ACTIONS(16206), 1, + anon_sym_RBRACK, + STATE(9822), 1, + aux_sym_lambda_capture_specifier_repeat1, + [356464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11627), 1, - anon_sym_EQ, - STATE(7344), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291656] = 4, + ACTIONS(16208), 1, + anon_sym_COMMA, + ACTIONS(16210), 1, + anon_sym_RPAREN, + STATE(9798), 1, + aux_sym_requires_parameter_list_repeat1, + [356477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12541), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291670] = 4, + ACTIONS(9041), 1, + anon_sym_COMMA, + ACTIONS(16212), 1, + anon_sym_RBRACK, + STATE(10037), 1, + aux_sym_structured_binding_declarator_repeat1, + [356490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11689), 1, + ACTIONS(16214), 3, + anon_sym_LBRACK, anon_sym_EQ, - STATE(7346), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291684] = 4, + anon_sym_DOT, + [356499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12543), 1, - anon_sym_EQ, - STATE(6018), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [291698] = 5, + ACTIONS(9227), 1, + anon_sym_SEMI, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(2655), 1, + sym_template_argument_list, + [356512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_COLON, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3962), 1, - sym_field_declaration_list, - STATE(8128), 1, - sym_base_class_clause, - [291714] = 5, + ACTIONS(16216), 1, + anon_sym_COMMA, + ACTIONS(16219), 1, + anon_sym_RPAREN, + STATE(9710), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [356525] = 4, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16114), 1, + anon_sym_LPAREN2, + ACTIONS(16221), 1, + aux_sym_preproc_include_token2, + STATE(11388), 1, + sym_preproc_argument_list, + [356538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, + ACTIONS(16223), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6741), 1, + [356547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16225), 1, + sym_identifier, + ACTIONS(16227), 2, + anon_sym_COMMA, + anon_sym_GT2, + [356558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12191), 1, + anon_sym_RBRACE, + ACTIONS(16229), 1, + anon_sym_COMMA, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [356571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16232), 1, + anon_sym_SEMI, + STATE(9972), 1, + aux_sym_declaration_repeat1, + [356584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16234), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [356597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16236), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [356610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(16238), 1, anon_sym_LBRACE, - STATE(3965), 1, - sym_field_declaration_list, - STATE(8129), 1, - sym_base_class_clause, - [291730] = 4, + STATE(9730), 1, + aux_sym_base_class_clause_repeat1, + [356623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12545), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - STATE(7349), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12548), 2, + ACTIONS(16240), 1, anon_sym_RPAREN, - anon_sym_COLON, - [291744] = 4, + STATE(9985), 1, + aux_sym_parameter_list_repeat1, + [356636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12517), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - STATE(7352), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12550), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [291758] = 5, + ACTIONS(16242), 1, + anon_sym_RBRACK_RBRACK, + STATE(9791), 1, + aux_sym_attribute_declaration_repeat1, + [356649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_LT, - ACTIONS(12552), 1, - anon_sym_SEMI, - STATE(1626), 1, - sym_template_argument_list, - [291774] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16242), 1, + anon_sym_RBRACK_RBRACK, + STATE(9792), 1, + aux_sym_attribute_declaration_repeat2, + [356662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(16244), 3, anon_sym_COMMA, - STATE(7352), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12557), 2, anon_sym_RPAREN, anon_sym_COLON, - [291788] = 4, + [356671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 1, - anon_sym___except, - ACTIONS(12561), 1, - anon_sym___finally, - STATE(932), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [291802] = 3, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15658), 1, + anon_sym_LBRACE, + STATE(9994), 1, + aux_sym_base_class_clause_repeat1, + [356684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12563), 1, + ACTIONS(15494), 1, + anon_sym_COMMA, + ACTIONS(15658), 1, + anon_sym_LBRACE, + STATE(9730), 1, + aux_sym_base_class_clause_repeat1, + [356697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16246), 1, + anon_sym_catch, + STATE(2805), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16248), 1, + anon_sym_RBRACK_RBRACK, + STATE(9750), 1, + aux_sym_attribute_declaration_repeat1, + [356721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16248), 1, + anon_sym_RBRACK_RBRACK, + STATE(9751), 1, + aux_sym_attribute_declaration_repeat2, + [356734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12565), 2, + ACTIONS(16252), 2, anon_sym_COMMA, anon_sym_LBRACE, - [291813] = 3, + [356745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6516), 1, - anon_sym___attribute, - ACTIONS(6518), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [291824] = 4, + ACTIONS(16254), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16256), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [356756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12567), 1, + ACTIONS(16252), 1, + anon_sym_LBRACE, + ACTIONS(16258), 1, anon_sym_COMMA, - ACTIONS(12569), 1, - anon_sym_GT2, - STATE(7362), 1, - aux_sym_template_parameter_list_repeat1, - [291837] = 4, + STATE(9730), 1, + aux_sym_base_class_clause_repeat1, + [356769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(12571), 1, - anon_sym_SEMI, - STATE(7547), 1, - aux_sym_declaration_repeat1, - [291850] = 4, + ACTIONS(12023), 1, + anon_sym_RBRACK, + STATE(10010), 1, + aux_sym_subscript_argument_list_repeat1, + [356782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12573), 1, + ACTIONS(16261), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9921), 1, aux_sym_declaration_repeat1, - [291863] = 4, + [356795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12577), 1, + ACTIONS(16263), 1, anon_sym_RBRACK_RBRACK, - STATE(7669), 1, + STATE(9865), 1, aux_sym_attribute_declaration_repeat1, - [291876] = 4, + [356808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(8955), 1, - anon_sym_RPAREN, - STATE(7394), 1, - aux_sym_argument_list_repeat1, - [291889] = 4, + ACTIONS(16265), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [356821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11635), 1, - anon_sym_LBRACE, - STATE(8373), 1, - sym_requires_clause, - [291902] = 4, + ACTIONS(16062), 1, + anon_sym_catch, + STATE(2454), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 1, + ACTIONS(16267), 3, anon_sym_COMMA, - ACTIONS(12582), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(7362), 1, - aux_sym_template_parameter_list_repeat1, - [291915] = 4, + [356841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(681), 1, - sym_declaration_list, - [291928] = 4, + ACTIONS(16246), 1, + anon_sym_catch, + STATE(2812), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12584), 1, + ACTIONS(16269), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [291941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8957), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, - anon_sym_RBRACE, - STATE(7396), 1, - aux_sym_initializer_list_repeat1, - [291954] = 4, + [356865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12586), 1, - anon_sym_default, - ACTIONS(12588), 1, - anon_sym_delete, - ACTIONS(12590), 1, - aux_sym_pure_virtual_clause_token1, - [291967] = 4, + ACTIONS(16271), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [356874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12592), 1, + ACTIONS(16273), 1, anon_sym_SEMI, - STATE(7380), 1, + STATE(9762), 1, aux_sym_declaration_repeat1, - [291980] = 4, + [356887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12594), 1, + ACTIONS(16267), 3, anon_sym_COMMA, - ACTIONS(12596), 1, anon_sym_RPAREN, - STATE(7456), 1, - aux_sym_requires_parameter_list_repeat1, - [291993] = 4, + anon_sym_GT2, + [356896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12598), 1, - anon_sym_SEMI, - STATE(8691), 1, - sym_attribute_declaration, - [292006] = 4, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16275), 1, + anon_sym_RPAREN, + STATE(9942), 1, + aux_sym_parameter_list_repeat1, + [356909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10354), 1, - anon_sym_RPAREN, - ACTIONS(12600), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - STATE(7370), 1, - aux_sym_preproc_argument_list_repeat1, - [292019] = 4, + ACTIONS(16277), 1, + anon_sym_RBRACK_RBRACK, + STATE(9854), 1, + aux_sym_attribute_declaration_repeat1, + [356922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12603), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [292032] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16263), 1, + anon_sym_RBRACK_RBRACK, + STATE(9888), 1, + aux_sym_attribute_declaration_repeat2, + [356935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12605), 1, + ACTIONS(16279), 1, anon_sym_COMMA, - ACTIONS(12608), 1, - anon_sym_RPAREN, - STATE(7372), 1, - aux_sym_preproc_params_repeat1, - [292045] = 4, + ACTIONS(16282), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [356948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12610), 1, - anon_sym_RPAREN, - ACTIONS(12612), 1, - anon_sym_COLON, - STATE(7400), 1, - sym_gnu_asm_output_operand_list, - [292058] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16277), 1, + anon_sym_RBRACK_RBRACK, + STATE(9855), 1, + aux_sym_attribute_declaration_repeat2, + [356961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16284), 1, anon_sym_COMMA, - ACTIONS(12614), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292071] = 4, + ACTIONS(16287), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [356974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(16116), 1, anon_sym_COMMA, - ACTIONS(12616), 1, + ACTIONS(16289), 1, anon_sym_GT2, - STATE(7404), 1, - aux_sym_template_argument_list_repeat1, - [292084] = 4, + STATE(9806), 1, + aux_sym_template_parameter_list_repeat1, + [356987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12618), 1, + ACTIONS(16291), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9829), 1, aux_sym_declaration_repeat1, - [292097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12620), 1, - anon_sym_catch, - STATE(1877), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [292108] = 4, + [357000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12594), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12622), 1, - anon_sym_RPAREN, - STATE(7368), 1, - aux_sym_requires_parameter_list_repeat1, - [292121] = 2, + ACTIONS(16293), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [357013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12624), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [292130] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16293), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [357026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12626), 1, + ACTIONS(16295), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9717), 1, aux_sym_declaration_repeat1, - [292143] = 4, + [357039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12628), 1, - anon_sym_SEMI, - STATE(7410), 1, - aux_sym_declaration_repeat1, - [292156] = 4, + ACTIONS(11987), 1, + anon_sym_RPAREN, + STATE(9772), 1, + aux_sym_argument_list_repeat1, + [357052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16299), 1, + anon_sym_RPAREN, + ACTIONS(16297), 2, anon_sym_COMMA, - ACTIONS(12630), 1, anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292169] = 4, + [357063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11989), 1, anon_sym_COMMA, - ACTIONS(12632), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292182] = 4, + ACTIONS(11991), 1, + anon_sym_RBRACE, + STATE(9773), 1, + aux_sym_initializer_list_repeat1, + [357076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(16301), 1, anon_sym_COMMA, - ACTIONS(12636), 1, - anon_sym_RPAREN, - STATE(7412), 1, - aux_sym_parameter_list_repeat1, - [292195] = 3, + ACTIONS(16303), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_field_initializer_list_repeat1, + [357089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 1, + ACTIONS(16305), 1, anon_sym_catch, - STATE(1867), 2, + STATE(476), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [292206] = 4, + [357100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, - anon_sym_COMMA, - ACTIONS(12640), 1, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16307), 1, anon_sym_RPAREN, - STATE(7549), 1, - aux_sym_parameter_list_repeat1, - [292219] = 4, + STATE(9776), 1, + sym_gnu_asm_output_operand_list, + [357113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12642), 1, - anon_sym_RBRACK, - STATE(7582), 1, - aux_sym_structured_binding_declarator_repeat1, - [292232] = 4, + ACTIONS(16309), 1, + anon_sym_GT2, + STATE(9780), 1, + aux_sym_template_argument_list_repeat1, + [357126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12644), 1, - anon_sym_RBRACK_RBRACK, - STATE(7532), 1, - aux_sym_attribute_declaration_repeat1, - [292245] = 4, + ACTIONS(16311), 1, + anon_sym_SEMI, + STATE(9783), 1, + aux_sym_declaration_repeat1, + [357139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12648), 1, - anon_sym_RBRACK, - STATE(7780), 1, - aux_sym_lambda_capture_specifier_repeat1, - [292258] = 4, + ACTIONS(16313), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [357152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12650), 1, - anon_sym_RBRACK, - STATE(7407), 1, - aux_sym_lambda_capture_specifier_repeat1, - [292271] = 4, + ACTIONS(16315), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [357165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, - anon_sym_RBRACE, - ACTIONS(12652), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - STATE(7391), 1, - aux_sym_initializer_list_repeat1, - [292284] = 3, + ACTIONS(16317), 1, + anon_sym_RPAREN, + STATE(9785), 1, + aux_sym_parameter_list_repeat1, + [357178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12655), 1, + ACTIONS(16319), 1, anon_sym_catch, - STATE(448), 2, + STATE(2841), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [292295] = 4, + [357189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7388), 1, - sym_attribute, - [292308] = 4, + ACTIONS(16167), 1, + anon_sym_COLON_COLON, + ACTIONS(16321), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [357200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(12661), 1, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16323), 1, anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [292321] = 4, + STATE(10052), 1, + sym_gnu_asm_clobber_list, + [357213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(711), 1, - sym_declaration_list, - [292334] = 4, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16325), 1, + anon_sym_RPAREN, + STATE(10054), 1, + sym_gnu_asm_input_operand_list, + [357226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, - anon_sym_RBRACE, - ACTIONS(12663), 1, + ACTIONS(15395), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16327), 2, anon_sym_COMMA, - STATE(7391), 1, - aux_sym_initializer_list_repeat1, - [292347] = 4, + anon_sym_GT2, + [357237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16329), 1, anon_sym_COMMA, - ACTIONS(12665), 1, - anon_sym_SEMI, - STATE(7474), 1, - aux_sym_declaration_repeat1, - [292360] = 4, + ACTIONS(16332), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [357250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(16334), 1, + anon_sym_RPAREN, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [357263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(12667), 1, + ACTIONS(12092), 1, anon_sym_RBRACK, - STATE(7387), 1, - aux_sym_structured_binding_declarator_repeat1, - [292373] = 4, + STATE(10061), 1, + aux_sym_subscript_argument_list_repeat1, + [357276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12327), 1, - anon_sym_LBRACE, - STATE(7439), 1, - aux_sym_base_class_clause_repeat1, - [292386] = 4, + ACTIONS(16336), 1, + anon_sym_RPAREN, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [357289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12669), 1, + ACTIONS(5398), 1, + anon_sym_RBRACE, + ACTIONS(16338), 1, + anon_sym_COMMA, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [357302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16340), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(12671), 1, + anon_sym_GT2, + [357311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + ACTIONS(16342), 1, + anon_sym_constexpr, + STATE(166), 1, + sym_condition_clause, + [357324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15880), 1, anon_sym_COLON, - STATE(7419), 1, + ACTIONS(16344), 1, + anon_sym_RPAREN, + STATE(9793), 1, sym_gnu_asm_input_operand_list, - [292399] = 4, + [357337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(12673), 1, + ACTIONS(16346), 1, anon_sym_RPAREN, - STATE(7420), 1, + STATE(9794), 1, sym_gnu_asm_output_operand_list, - [292412] = 4, + [357350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12675), 1, + ACTIONS(16348), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [292425] = 4, + [357363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12677), 1, + ACTIONS(16350), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [292438] = 4, + [357376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12679), 1, + ACTIONS(16352), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [292451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12681), 1, - anon_sym_RPAREN, - ACTIONS(12683), 1, - anon_sym_COLON, - STATE(7518), 1, - sym_gnu_asm_clobber_list, - [292464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12163), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [292473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12685), 1, - anon_sym_COMMA, - ACTIONS(12688), 1, - anon_sym_RBRACK, - STATE(7407), 1, - aux_sym_lambda_capture_specifier_repeat1, - [292486] = 4, + [357389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12690), 1, + ACTIONS(16354), 1, anon_sym_SEMI, - STATE(7423), 1, + STATE(9795), 1, aux_sym_declaration_repeat1, - [292499] = 4, + [357402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12692), 1, + ACTIONS(16356), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [292512] = 4, + [357415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12694), 1, + ACTIONS(16358), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [292525] = 4, + [357428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - ACTIONS(12698), 1, - anon_sym_constexpr, - STATE(188), 1, - sym_condition_clause, - [292538] = 4, + ACTIONS(15916), 1, + anon_sym_catch, + STATE(503), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(12700), 1, + ACTIONS(16360), 1, anon_sym_RPAREN, - STATE(7598), 1, + STATE(9837), 1, aux_sym_parameter_list_repeat1, - [292551] = 3, + [357452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 1, + ACTIONS(16319), 1, anon_sym_catch, - STATE(1871), 2, + STATE(2822), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [292562] = 4, + [357463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12702), 1, - anon_sym_SEMI, - STATE(8914), 1, - sym_attribute_declaration, - [292575] = 4, - ACTIONS(3), 1, + ACTIONS(16362), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [357472] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12704), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3259), 1, - sym_template_function, - [292588] = 4, + ACTIONS(16114), 1, + anon_sym_LPAREN2, + ACTIONS(16364), 1, + aux_sym_preproc_include_token2, + STATE(11388), 1, + sym_preproc_argument_list, + [357485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(8808), 1, - anon_sym_RBRACK, - STATE(7558), 1, - aux_sym_subscript_argument_list_repeat1, - [292601] = 3, + ACTIONS(16366), 1, + anon_sym_RPAREN, + STATE(9796), 1, + aux_sym_throw_specifier_repeat1, + [357498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12708), 1, - anon_sym_COLON_COLON, - ACTIONS(12706), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [292612] = 4, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + ACTIONS(16368), 1, + anon_sym_constexpr, + STATE(181), 1, + sym_condition_clause, + [357511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(667), 1, - sym_declaration_list, - [292625] = 4, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16370), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [357524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16370), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [357537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(12710), 1, + ACTIONS(16372), 1, anon_sym_RPAREN, - STATE(7426), 1, + STATE(9799), 1, sym_gnu_asm_clobber_list, - [292638] = 4, + [357550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(12712), 1, + ACTIONS(16374), 1, anon_sym_RPAREN, - STATE(7427), 1, + STATE(9800), 1, sym_gnu_asm_input_operand_list, - [292651] = 4, + [357563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12714), 1, - anon_sym_COMMA, - ACTIONS(12716), 1, - anon_sym_RPAREN, - STATE(7519), 1, - aux_sym_preproc_params_repeat1, - [292664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12718), 1, + ACTIONS(16376), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [292677] = 4, + [357576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(12720), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292690] = 4, + ACTIONS(16378), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [357589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12327), 1, - anon_sym_LBRACE, - STATE(7463), 1, - aux_sym_base_class_clause_repeat1, - [292703] = 4, + ACTIONS(12084), 1, + anon_sym_RPAREN, + STATE(9890), 1, + aux_sym_argument_list_repeat1, + [357602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(519), 1, - sym_declaration_list, - [292716] = 4, + ACTIONS(16208), 1, + anon_sym_COMMA, + ACTIONS(16380), 1, + anon_sym_RPAREN, + STATE(9821), 1, + aux_sym_requires_parameter_list_repeat1, + [357615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12722), 1, - anon_sym_RPAREN, - ACTIONS(12724), 1, + ACTIONS(15930), 1, anon_sym_COLON, - STATE(8317), 1, + ACTIONS(16382), 1, + anon_sym_RPAREN, + STATE(11238), 1, sym_gnu_asm_goto_list, - [292729] = 4, + [357628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(12726), 1, + ACTIONS(16384), 1, anon_sym_RPAREN, - STATE(7428), 1, + STATE(9801), 1, sym_gnu_asm_clobber_list, - [292742] = 4, + [357641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(15930), 1, anon_sym_COLON, - ACTIONS(12728), 1, + ACTIONS(16386), 1, anon_sym_RPAREN, - STATE(8329), 1, + STATE(11309), 1, sym_gnu_asm_goto_list, - [292755] = 4, + [357654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, + ACTIONS(12035), 1, anon_sym_COMMA, - ACTIONS(12730), 1, + ACTIONS(16388), 1, anon_sym_RPAREN, - STATE(7782), 1, + STATE(9672), 1, aux_sym_generic_expression_repeat1, - [292768] = 4, + [357667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8975), 1, - anon_sym_COMMA, - ACTIONS(8977), 1, - anon_sym_RBRACE, - STATE(7470), 1, - aux_sym_initializer_list_repeat1, - [292781] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12732), 1, - aux_sym_preproc_include_token2, - ACTIONS(12734), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(8992), 1, - sym_preproc_argument_list, - [292794] = 3, - ACTIONS(3), 1, + ACTIONS(16390), 1, + anon_sym_constexpr, + STATE(180), 1, + sym_condition_clause, + [357680] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12738), 1, - anon_sym_RPAREN, - ACTIONS(12736), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [292805] = 4, + STATE(9444), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16392), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [357691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12740), 1, + ACTIONS(16394), 1, anon_sym_SEMI, - STATE(7625), 1, + STATE(9955), 1, aux_sym_declaration_repeat1, - [292818] = 4, + [357704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16396), 1, anon_sym_COMMA, - ACTIONS(12742), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292831] = 4, + ACTIONS(16399), 1, + anon_sym_GT2, + STATE(9806), 1, + aux_sym_template_parameter_list_repeat1, + [357717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12744), 1, + ACTIONS(12086), 1, anon_sym_COMMA, - ACTIONS(12747), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [292844] = 4, + ACTIONS(12088), 1, + anon_sym_RBRACE, + STATE(9892), 1, + aux_sym_initializer_list_repeat1, + [357730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12749), 1, - anon_sym_GT2, - STATE(7442), 1, - aux_sym_template_argument_list_repeat1, - [292857] = 4, + ACTIONS(16401), 1, + anon_sym_RBRACK_RBRACK, + STATE(9867), 1, + aux_sym_attribute_declaration_repeat1, + [357743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(12751), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [292870] = 4, + ACTIONS(16401), 1, + anon_sym_RBRACK_RBRACK, + STATE(9869), 1, + aux_sym_attribute_declaration_repeat2, + [357756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(15494), 1, anon_sym_COMMA, - ACTIONS(12371), 1, + ACTIONS(16238), 1, anon_sym_LBRACE, - STATE(7458), 1, + STATE(9577), 1, aux_sym_base_class_clause_repeat1, - [292883] = 4, + [357769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_COMMA, - ACTIONS(12371), 1, + ACTIONS(16403), 1, + anon_sym_default, + ACTIONS(16405), 1, + anon_sym_delete, + ACTIONS(16407), 1, + aux_sym_pure_virtual_clause_token1, + [357782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14722), 1, anon_sym_LBRACE, - STATE(7463), 1, - aux_sym_base_class_clause_repeat1, - [292896] = 4, + STATE(11216), 1, + sym_requires_clause, + [357795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12753), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [292909] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16409), 1, + anon_sym_RPAREN, + STATE(9913), 1, + sym_gnu_asm_output_operand_list, + [357808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(16411), 1, anon_sym_COMMA, - ACTIONS(12755), 1, - anon_sym_RBRACK_RBRACK, - STATE(7541), 1, - aux_sym_attribute_declaration_repeat1, - [292922] = 4, + ACTIONS(16414), 1, + anon_sym_RBRACK, + STATE(9814), 1, + aux_sym_structured_binding_declarator_repeat1, + [357821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12757), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [292935] = 4, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(13955), 1, + anon_sym_LBRACE, + STATE(11423), 1, + sym_requires_clause, + [357834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12759), 1, - anon_sym_RBRACK_RBRACK, - STATE(7719), 1, - aux_sym_attribute_declaration_repeat1, - [292948] = 4, + ACTIONS(16416), 1, + anon_sym_GT2, + STATE(9923), 1, + aux_sym_template_argument_list_repeat1, + [357847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12761), 1, + ACTIONS(16418), 1, anon_sym_RPAREN, - STATE(7598), 1, - aux_sym_parameter_list_repeat1, - [292961] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12734), 1, - anon_sym_LPAREN2, - ACTIONS(12763), 1, - aux_sym_preproc_include_token2, - STATE(8992), 1, - sym_preproc_argument_list, - [292974] = 4, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [357860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(16086), 1, anon_sym_COMMA, - ACTIONS(12765), 1, - anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [292987] = 4, + ACTIONS(16420), 1, + anon_sym_RBRACK, + STATE(9705), 1, + aux_sym_lambda_capture_specifier_repeat1, + [357873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12767), 1, + ACTIONS(16422), 1, anon_sym_RBRACK_RBRACK, - STATE(7479), 1, + STATE(9843), 1, aux_sym_attribute_declaration_repeat1, - [293000] = 2, + [357886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12769), 3, + ACTIONS(15872), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [293009] = 3, + ACTIONS(16422), 1, + anon_sym_RBRACK_RBRACK, + STATE(9845), 1, + aux_sym_attribute_declaration_repeat2, + [357899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12771), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12773), 2, + ACTIONS(16424), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [293020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7993), 1, - sym_attribute, - [293033] = 4, + ACTIONS(16427), 1, + anon_sym_RPAREN, + STATE(9821), 1, + aux_sym_requires_parameter_list_repeat1, + [357912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8726), 1, - anon_sym_RBRACE, - ACTIONS(8927), 1, + ACTIONS(16429), 1, anon_sym_COMMA, - STATE(7577), 1, - aux_sym_initializer_list_repeat1, - [293046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12775), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [293055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym___attribute, - ACTIONS(6641), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [293066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12777), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(6268), 1, - sym_template_function, - [293079] = 3, + ACTIONS(16432), 1, + anon_sym_RBRACK, + STATE(9822), 1, + aux_sym_lambda_capture_specifier_repeat1, + [357925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 1, + ACTIONS(16434), 1, anon_sym_catch, - STATE(1876), 2, + STATE(306), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [293090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12779), 1, - anon_sym_COMMA, - ACTIONS(12782), 1, - anon_sym_RPAREN, - STATE(7456), 1, - aux_sym_requires_parameter_list_repeat1, - [293103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12784), 1, - sym_identifier, - ACTIONS(12786), 2, - anon_sym_COMMA, - anon_sym_GT2, - [293114] = 4, + [357936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_COMMA, - ACTIONS(12391), 1, + ACTIONS(7021), 1, anon_sym_LBRACE, - STATE(7463), 1, - aux_sym_base_class_clause_repeat1, - [293127] = 4, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(867), 1, + sym_declaration_list, + [357949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(12788), 1, - anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [293140] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16436), 1, + anon_sym_SEMI, + STATE(11320), 1, + sym_attribute_declaration, + [357962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12391), 1, - anon_sym_LBRACE, - STATE(7667), 1, - aux_sym_base_class_clause_repeat1, - [293153] = 3, + ACTIONS(16438), 1, + anon_sym_SEMI, + STATE(9934), 1, + aux_sym_declaration_repeat1, + [357975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12790), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12792), 2, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [293164] = 4, + ACTIONS(16440), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [357988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(775), 1, - sym_declaration_list, - [293177] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16442), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [358001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12773), 1, - anon_sym_LBRACE, - ACTIONS(12794), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - STATE(7463), 1, - aux_sym_base_class_clause_repeat1, - [293190] = 4, + ACTIONS(16444), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [358014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12797), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - STATE(3389), 1, - sym_template_function, - [293203] = 4, + ACTIONS(16319), 1, + anon_sym_catch, + STATE(2821), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12799), 1, + ACTIONS(16446), 1, anon_sym_SEMI, - STATE(7493), 1, + STATE(9859), 1, aux_sym_declaration_repeat1, - [293216] = 4, + [358038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(12801), 1, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16448), 1, anon_sym_RPAREN, - STATE(7704), 1, - sym_gnu_asm_input_operand_list, - [293229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12803), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [293238] = 4, + STATE(9937), 1, + aux_sym_parameter_list_repeat1, + [358051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12805), 1, + ACTIONS(16450), 1, anon_sym_SEMI, - STATE(7434), 1, + STATE(10063), 1, aux_sym_declaration_repeat1, - [293251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12807), 1, - anon_sym_catch, - STATE(227), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [293262] = 4, + [358064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(5432), 1, anon_sym_RBRACE, - ACTIONS(12809), 1, + ACTIONS(16452), 1, anon_sym_COMMA, - STATE(7391), 1, + STATE(9714), 1, aux_sym_initializer_list_repeat1, - [293275] = 4, + [358077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12811), 1, + ACTIONS(16454), 1, anon_sym_SEMI, - STATE(7484), 1, + STATE(9908), 1, aux_sym_declaration_repeat1, - [293288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12813), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [293301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(12815), 1, - anon_sym_RPAREN, - STATE(7709), 1, - sym_gnu_asm_output_operand_list, - [293314] = 4, + [358090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(12817), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16456), 1, anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [293327] = 4, + STATE(10620), 1, + sym_attribute_declaration, + [358103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(16458), 1, anon_sym_COMMA, - ACTIONS(12819), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293340] = 4, + ACTIONS(16461), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [358116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - ACTIONS(12821), 1, + ACTIONS(16463), 1, anon_sym_constexpr, - STATE(206), 1, + STATE(200), 1, sym_condition_clause, - [293353] = 4, + [358129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12823), 1, + ACTIONS(16465), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [293366] = 4, + [358142] = 3, + ACTIONS(13686), 1, + sym_comment, + STATE(9391), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16467), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [358153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12825), 1, - anon_sym_GT2, - STATE(7488), 1, - aux_sym_template_argument_list_repeat1, - [293379] = 4, + ACTIONS(16048), 1, + anon_sym_catch, + STATE(535), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(7023), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(605), 1, + sym_declaration_list, + [358177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12827), 1, + ACTIONS(16469), 1, anon_sym_RBRACK_RBRACK, - STATE(7669), 1, + STATE(9745), 1, aux_sym_attribute_declaration_repeat1, - [293392] = 4, + [358190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(16471), 1, anon_sym_COMMA, - ACTIONS(8983), 1, - anon_sym_RPAREN, - STATE(7508), 1, - aux_sym_argument_list_repeat1, - [293405] = 4, + ACTIONS(16474), 1, + anon_sym_LBRACE, + STATE(9844), 1, + aux_sym_field_initializer_list_repeat1, + [358203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12829), 1, - anon_sym_SEMI, - STATE(8990), 1, - sym_attribute_declaration, - [293418] = 4, + ACTIONS(15872), 1, + anon_sym_COMMA, + ACTIONS(16469), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [358216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12831), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293431] = 4, + ACTIONS(12041), 1, + anon_sym_RPAREN, + STATE(9870), 1, + aux_sym_argument_list_repeat1, + [358229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8987), 1, + ACTIONS(16476), 1, + anon_sym_default, + ACTIONS(16478), 1, + anon_sym_delete, + ACTIONS(16480), 1, + aux_sym_pure_virtual_clause_token1, + [358242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12043), 1, anon_sym_COMMA, - ACTIONS(8989), 1, + ACTIONS(12045), 1, anon_sym_RBRACE, - STATE(7510), 1, + STATE(9871), 1, aux_sym_initializer_list_repeat1, - [293444] = 4, + [358255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(12283), 1, + anon_sym_RBRACK, + ACTIONS(16482), 1, anon_sym_COMMA, - ACTIONS(12833), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [293457] = 4, + STATE(9849), 1, + aux_sym_subscript_argument_list_repeat1, + [358268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(12835), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16485), 1, anon_sym_SEMI, - STATE(7594), 1, - aux_sym_declaration_repeat1, - [293470] = 4, + STATE(10758), 1, + sym_attribute_declaration, + [358281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16487), 1, + anon_sym_RPAREN, + STATE(9875), 1, + sym_gnu_asm_output_operand_list, + [358294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12837), 1, + ACTIONS(16489), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9880), 1, aux_sym_template_argument_list_repeat1, - [293483] = 4, + [358307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(12839), 1, + ACTIONS(16491), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7513), 1, - sym_gnu_asm_output_operand_list, - [293496] = 4, + anon_sym_COLON, + [358316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12841), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293509] = 4, + ACTIONS(16493), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [358329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(12843), 1, - anon_sym_GT2, - STATE(7517), 1, - aux_sym_template_argument_list_repeat1, - [293522] = 4, + ACTIONS(16493), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [358342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_while, - ACTIONS(12845), 1, - anon_sym_else, - STATE(287), 1, - sym_else_clause, - [293535] = 4, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(16495), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [358355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12847), 1, + ACTIONS(16497), 1, anon_sym_SEMI, - STATE(7522), 1, + STATE(9884), 1, aux_sym_declaration_repeat1, - [293548] = 4, + [358368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12849), 1, + ACTIONS(16499), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [293561] = 4, + [358381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12851), 1, + ACTIONS(16501), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [293574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12853), 1, - anon_sym_catch, - STATE(456), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [293585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7441), 1, - sym_attribute, - [293598] = 4, + [358394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(12855), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - ACTIONS(12857), 1, - anon_sym_constexpr, - STATE(223), 1, - sym_condition_clause, - [293624] = 4, + ACTIONS(16503), 1, + anon_sym_RPAREN, + STATE(9886), 1, + aux_sym_parameter_list_repeat1, + [358407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(12859), 1, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12108), 1, anon_sym_RPAREN, - STATE(7685), 1, - sym_gnu_asm_input_operand_list, - [293637] = 3, - ACTIONS(10266), 1, + STATE(10041), 1, + aux_sym_argument_list_repeat1, + [358420] = 3, + ACTIONS(13686), 1, sym_comment, - STATE(7253), 1, + STATE(9314), 1, aux_sym_char_literal_repeat1, - ACTIONS(12861), 2, + ACTIONS(16505), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [293648] = 4, + [358431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, - anon_sym_COMMA, - ACTIONS(12863), 1, - anon_sym_RPAREN, - STATE(7444), 1, - aux_sym_parameter_list_repeat1, - [293661] = 3, + ACTIONS(15176), 1, + sym_identifier, + ACTIONS(15178), 1, + anon_sym_using, + STATE(10119), 1, + sym_attribute, + [358444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12867), 2, - anon_sym_COMMA, + ACTIONS(6983), 1, anon_sym_LBRACE, - [293672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(12869), 1, - anon_sym_RPAREN, - STATE(7687), 1, - sym_gnu_asm_output_operand_list, - [293685] = 4, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(807), 1, + sym_declaration_list, + [358457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(12871), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293698] = 4, + ACTIONS(16507), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [358470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12873), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293711] = 4, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14720), 1, + anon_sym_LBRACE, + STATE(10981), 1, + sym_requires_clause, + [358483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12875), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2539), 1, - sym_template_function, - [293724] = 4, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16509), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [358496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12877), 1, - anon_sym_COMMA, - ACTIONS(12879), 1, - anon_sym_LBRACE, - STATE(7756), 1, - aux_sym_field_initializer_list_repeat1, - [293737] = 4, + ACTIONS(16511), 1, + anon_sym_default, + ACTIONS(16513), 1, + anon_sym_delete, + ACTIONS(16515), 1, + aux_sym_pure_virtual_clause_token1, + [358509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(12881), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293750] = 4, + ACTIONS(16509), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [358522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(12883), 1, + ACTIONS(16517), 1, anon_sym_RPAREN, - STATE(7722), 1, + STATE(9704), 1, aux_sym_argument_list_repeat1, - [293763] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12734), 1, - anon_sym_LPAREN2, - ACTIONS(12885), 1, - aux_sym_preproc_include_token2, - STATE(8992), 1, - sym_preproc_argument_list, - [293776] = 4, + [358535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 1, + ACTIONS(5416), 1, anon_sym_RBRACE, - ACTIONS(12887), 1, + ACTIONS(16519), 1, anon_sym_COMMA, - STATE(7391), 1, + STATE(9714), 1, aux_sym_initializer_list_repeat1, - [293789] = 4, + [358548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12889), 1, - anon_sym_default, - ACTIONS(12891), 1, - anon_sym_delete, - ACTIONS(12893), 1, - aux_sym_pure_virtual_clause_token1, - [293802] = 3, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12120), 1, + anon_sym_RPAREN, + STATE(9950), 1, + aux_sym_argument_list_repeat1, + [358561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6655), 1, - anon_sym___attribute, - ACTIONS(6657), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [293813] = 4, + ACTIONS(13881), 1, + anon_sym_requires, + ACTIONS(14724), 1, + anon_sym_LBRACE, + STATE(10671), 1, + sym_requires_clause, + [358574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7015), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(427), 1, + sym_declaration_list, + [358587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(12895), 1, + ACTIONS(16521), 1, anon_sym_RPAREN, - STATE(7527), 1, + STATE(9895), 1, sym_gnu_asm_input_operand_list, - [293826] = 4, + [358600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(12897), 1, + ACTIONS(16523), 1, anon_sym_RPAREN, - STATE(7528), 1, + STATE(9896), 1, sym_gnu_asm_output_operand_list, - [293839] = 4, + [358613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12899), 1, + ACTIONS(16525), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [293852] = 4, + [358626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12901), 1, + ACTIONS(16527), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [293865] = 4, + [358639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(12122), 1, anon_sym_COMMA, - ACTIONS(12903), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [293878] = 4, + ACTIONS(12124), 1, + anon_sym_RBRACE, + STATE(9953), 1, + aux_sym_initializer_list_repeat1, + [358652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(12905), 1, - anon_sym_RPAREN, - STATE(8229), 1, - sym_gnu_asm_goto_list, - [293891] = 4, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16529), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [358665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12714), 1, + ACTIONS(12110), 1, anon_sym_COMMA, - ACTIONS(12907), 1, - anon_sym_RPAREN, - STATE(7372), 1, - aux_sym_preproc_params_repeat1, - [293904] = 4, + ACTIONS(12112), 1, + anon_sym_RBRACE, + STATE(10046), 1, + aux_sym_initializer_list_repeat1, + [358678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12909), 1, + ACTIONS(16531), 1, anon_sym_SEMI, - STATE(7529), 1, + STATE(9897), 1, aux_sym_declaration_repeat1, - [293917] = 4, + [358691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12911), 1, + ACTIONS(16533), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [293930] = 4, + [358704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12913), 1, + ACTIONS(16535), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [293943] = 4, + [358717] = 3, + ACTIONS(13686), 1, + sym_comment, + STATE(9438), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16537), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [358728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(12915), 1, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16539), 1, anon_sym_RPAREN, - STATE(7466), 1, - sym_gnu_asm_output_operand_list, - [293956] = 3, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [358741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12853), 1, - anon_sym_catch, - STATE(445), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [293967] = 4, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(16541), 1, + anon_sym_RPAREN, + STATE(9898), 1, + aux_sym_throw_specifier_repeat1, + [358754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(12917), 1, + ACTIONS(16507), 1, anon_sym_RBRACK_RBRACK, - STATE(7359), 1, - aux_sym_attribute_declaration_repeat1, - [293980] = 3, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [358767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12919), 1, - anon_sym_EQ, - ACTIONS(11660), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [293991] = 4, + ACTIONS(16543), 1, + anon_sym_default, + ACTIONS(16545), 1, + anon_sym_delete, + ACTIONS(16547), 1, + aux_sym_pure_virtual_clause_token1, + [358780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(12921), 1, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(16549), 1, anon_sym_RPAREN, - STATE(7530), 1, - sym_gnu_asm_clobber_list, - [294004] = 4, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [358793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(12923), 1, - anon_sym_RPAREN, - STATE(7531), 1, - sym_gnu_asm_input_operand_list, - [294017] = 4, + ACTIONS(16551), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [358802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(5546), 1, + anon_sym_RBRACE, + ACTIONS(16553), 1, anon_sym_COMMA, - ACTIONS(12925), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [294030] = 4, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [358815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(12927), 1, + ACTIONS(16555), 1, anon_sym_RPAREN, - STATE(8174), 1, - sym_gnu_asm_goto_list, - [294043] = 4, + STATE(9962), 1, + sym_gnu_asm_output_operand_list, + [358828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11947), 1, + anon_sym_COMMA, + ACTIONS(16557), 1, + anon_sym_GT2, + STATE(9966), 1, + aux_sym_template_argument_list_repeat1, + [358841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(12929), 1, + ACTIONS(16559), 1, anon_sym_RPAREN, - STATE(7533), 1, + STATE(9900), 1, sym_gnu_asm_clobber_list, - [294056] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12575), 1, - anon_sym_COMMA, - ACTIONS(12931), 1, - anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [294069] = 4, + [358854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(12933), 1, + ACTIONS(16561), 1, anon_sym_RPAREN, - STATE(8178), 1, - sym_gnu_asm_goto_list, - [294082] = 4, + STATE(9901), 1, + sym_gnu_asm_input_operand_list, + [358867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12935), 1, - anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [294095] = 4, + ACTIONS(16563), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [358880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(12937), 1, - anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [294108] = 4, + ACTIONS(16565), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [358893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12939), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - STATE(2539), 1, - sym_template_function, - [294121] = 2, + ACTIONS(13827), 1, + anon_sym_RPAREN, + ACTIONS(16567), 1, + anon_sym_COMMA, + STATE(9899), 1, + aux_sym_preproc_argument_list_repeat1, + [358906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12941), 3, - anon_sym_COMMA, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16570), 1, anon_sym_RPAREN, - anon_sym_GT2, - [294130] = 4, + STATE(10777), 1, + sym_gnu_asm_goto_list, + [358919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12943), 1, - anon_sym_GT2, - STATE(7556), 1, - aux_sym_template_argument_list_repeat1, - [294143] = 4, - ACTIONS(3), 1, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16572), 1, + anon_sym_RPAREN, + STATE(9904), 1, + sym_gnu_asm_clobber_list, + [358932] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12945), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [294156] = 4, + STATE(9491), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16574), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [358943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12947), 1, - anon_sym_GT2, - STATE(7640), 1, - aux_sym_template_argument_list_repeat1, - [294169] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16576), 1, + anon_sym_RPAREN, + STATE(9584), 1, + sym_gnu_asm_output_operand_list, + [358956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, - anon_sym_COMMA, - ACTIONS(12949), 1, - anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [294182] = 4, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16578), 1, + anon_sym_RPAREN, + STATE(10782), 1, + sym_gnu_asm_goto_list, + [358969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12951), 1, + ACTIONS(16580), 1, anon_sym_SEMI, - STATE(7707), 1, + STATE(9975), 1, aux_sym_declaration_repeat1, - [294195] = 4, + [358982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(12035), 1, anon_sym_COMMA, - ACTIONS(8961), 1, + ACTIONS(16582), 1, anon_sym_RPAREN, - STATE(7678), 1, - aux_sym_argument_list_repeat1, - [294208] = 4, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [358995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12953), 1, + ACTIONS(16584), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [294221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(12955), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [294234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(372), 1, - sym_declaration_list, - [294247] = 4, + [359008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12957), 1, + ACTIONS(16586), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [294260] = 4, + [359021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 1, - anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_RBRACE, - STATE(7683), 1, - aux_sym_initializer_list_repeat1, - [294273] = 4, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16588), 1, + anon_sym_RPAREN, + STATE(9532), 1, + sym_gnu_asm_input_operand_list, + [359034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(12959), 1, + ACTIONS(16590), 1, anon_sym_RPAREN, - STATE(7598), 1, + STATE(9976), 1, aux_sym_parameter_list_repeat1, - [294286] = 4, + [359047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7525), 1, - sym_attribute, - [294299] = 4, + ACTIONS(16592), 1, + anon_sym_default, + ACTIONS(16594), 1, + anon_sym_delete, + ACTIONS(16596), 1, + aux_sym_pure_virtual_clause_token1, + [359060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12961), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [294312] = 4, + ACTIONS(3614), 1, + anon_sym_while, + ACTIONS(16598), 1, + anon_sym_else, + STATE(433), 1, + sym_else_clause, + [359073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - ACTIONS(12963), 1, - anon_sym_constexpr, - STATE(203), 1, - sym_condition_clause, - [294325] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7205), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12965), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [294336] = 3, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16600), 1, + anon_sym_RPAREN, + STATE(9986), 1, + sym_gnu_asm_input_operand_list, + [359086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12967), 1, + ACTIONS(16434), 1, anon_sym_catch, - STATE(346), 2, + STATE(349), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [294347] = 3, + [359097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12655), 1, - anon_sym_catch, - STATE(451), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [294358] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16602), 1, + anon_sym_RPAREN, + STATE(9987), 1, + sym_gnu_asm_output_operand_list, + [359110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(16604), 1, anon_sym_COMMA, - ACTIONS(12969), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [294371] = 4, + ACTIONS(16607), 1, + anon_sym_RPAREN, + STATE(9916), 1, + aux_sym_preproc_params_repeat1, + [359123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12567), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12971), 1, + ACTIONS(16609), 1, anon_sym_GT2, - STATE(7356), 1, - aux_sym_template_parameter_list_repeat1, - [294384] = 4, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [359136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(12973), 1, + ACTIONS(12155), 1, anon_sym_RBRACK, - STATE(7768), 1, + STATE(9978), 1, aux_sym_subscript_argument_list_repeat1, - [294397] = 4, + [359149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(12975), 1, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16611), 1, anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [294410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12708), 1, - anon_sym_COLON_COLON, - ACTIONS(12977), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [294421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12967), 1, - anon_sym_catch, - STATE(232), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [294432] = 4, - ACTIONS(3), 1, + STATE(10062), 1, + sym_gnu_asm_output_operand_list, + [359162] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12979), 1, - anon_sym_default, - ACTIONS(12981), 1, - anon_sym_delete, - ACTIONS(12983), 1, - aux_sym_pure_virtual_clause_token1, - [294445] = 4, + STATE(9502), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16613), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(12985), 1, - anon_sym_RBRACK_RBRACK, - STATE(7535), 1, - aux_sym_attribute_declaration_repeat1, - [294458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12987), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [294471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12655), 1, - anon_sym_catch, - STATE(386), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [294482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6502), 1, - anon_sym___attribute, - ACTIONS(6504), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294493] = 4, + ACTIONS(16615), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12877), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12989), 1, - anon_sym_LBRACE, - STATE(7506), 1, - aux_sym_field_initializer_list_repeat1, - [294506] = 4, + ACTIONS(16617), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [359199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12991), 1, + ACTIONS(16619), 1, anon_sym_GT2, - STATE(7749), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [294519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(12993), 1, - anon_sym_RPAREN, - STATE(8731), 1, - sym_gnu_asm_goto_list, - [294532] = 4, + [359212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(12995), 1, + ACTIONS(16621), 1, anon_sym_GT2, - STATE(7580), 1, + STATE(9529), 1, aux_sym_template_argument_list_repeat1, - [294545] = 4, + [359225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(12997), 1, + ACTIONS(16623), 1, anon_sym_RPAREN, - STATE(7691), 1, + STATE(9534), 1, sym_gnu_asm_output_operand_list, - [294558] = 4, + [359238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(12999), 1, - anon_sym_RPAREN, - STATE(7725), 1, - sym_gnu_asm_clobber_list, - [294571] = 4, + ACTIONS(16625), 1, + anon_sym_COMMA, + ACTIONS(16628), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(5348), 1, + anon_sym_RBRACE, + ACTIONS(16630), 1, anon_sym_COMMA, - ACTIONS(13001), 1, - anon_sym_RBRACK, - STATE(7768), 1, - aux_sym_subscript_argument_list_repeat1, - [294584] = 4, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [359264] = 3, + ACTIONS(13686), 1, + sym_comment, + STATE(9509), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16632), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13003), 1, - anon_sym_RBRACK_RBRACK, - STATE(7608), 1, - aux_sym_attribute_declaration_repeat1, - [294597] = 4, + ACTIONS(16634), 1, + anon_sym_SEMI, + STATE(9988), 1, + aux_sym_declaration_repeat1, + [359288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13005), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [294610] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16636), 1, + anon_sym_RPAREN, + STATE(9638), 1, + sym_gnu_asm_output_operand_list, + [359301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(13007), 1, - anon_sym_GT2, - STATE(7696), 1, - aux_sym_template_argument_list_repeat1, - [294623] = 4, + ACTIONS(16638), 1, + anon_sym_RBRACK_RBRACK, + STATE(9959), 1, + aux_sym_attribute_declaration_repeat1, + [359314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 1, - anon_sym_RBRACE, - ACTIONS(13009), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - STATE(7391), 1, - aux_sym_initializer_list_repeat1, - [294636] = 4, + ACTIONS(16638), 1, + anon_sym_RBRACK_RBRACK, + STATE(9960), 1, + aux_sym_attribute_declaration_repeat2, + [359327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13011), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [294649] = 3, + ACTIONS(16640), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7504), 1, - anon_sym_EQ, - ACTIONS(7502), 2, + ACTIONS(13549), 1, anon_sym_COMMA, - anon_sym_GT2, - [294660] = 4, + ACTIONS(16642), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13013), 1, + ACTIONS(16644), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [294673] = 4, - ACTIONS(3), 1, + [359366] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(13015), 1, - anon_sym_RPAREN, - STATE(7370), 1, - aux_sym_preproc_argument_list_repeat1, - [294686] = 4, + STATE(9511), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16646), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13017), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(13020), 1, - anon_sym_RBRACK, - STATE(7582), 1, - aux_sym_structured_binding_declarator_repeat1, - [294699] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2627), 1, - anon_sym_while, - ACTIONS(12845), 1, - anon_sym_else, - STATE(294), 1, - sym_else_clause, - [294712] = 3, + ACTIONS(16648), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [359390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13022), 1, + ACTIONS(16048), 1, anon_sym_catch, - STATE(897), 2, + STATE(537), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [294723] = 4, + [359401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13024), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3389), 1, - sym_template_function, - [294736] = 4, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(12138), 1, + anon_sym_RPAREN, + STATE(9770), 1, + aux_sym_argument_list_repeat1, + [359414] = 3, + ACTIONS(13686), 1, + sym_comment, + STATE(9381), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16650), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(13026), 1, - anon_sym_SEMI, - STATE(7716), 1, - aux_sym_declaration_repeat1, - [294749] = 4, + ACTIONS(16652), 1, + anon_sym_RPAREN, + STATE(9991), 1, + aux_sym_throw_specifier_repeat1, + [359438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7447), 1, - sym_attribute, - [294762] = 3, - ACTIONS(10266), 1, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16654), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [359451] = 3, + ACTIONS(13686), 1, sym_comment, - STATE(7251), 1, + STATE(9342), 1, aux_sym_char_literal_repeat1, - ACTIONS(13028), 2, + ACTIONS(16656), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [294773] = 3, - ACTIONS(10266), 1, + [359462] = 3, + ACTIONS(13686), 1, sym_comment, - STATE(7157), 1, + STATE(9458), 1, aux_sym_char_literal_repeat1, - ACTIONS(13030), 2, + ACTIONS(16658), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [294784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12967), 1, - anon_sym_catch, - STATE(309), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [294795] = 4, - ACTIONS(3), 1, + [359473] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(9927), 1, - anon_sym_DASH_GT, - ACTIONS(13032), 1, - anon_sym_SEMI, - STATE(8738), 1, - sym_trailing_return_type, - [294808] = 4, + STATE(9292), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16660), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13034), 1, + ACTIONS(16662), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9982), 1, aux_sym_declaration_repeat1, - [294821] = 4, + [359497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13036), 1, - anon_sym_SEMI, - STATE(7634), 1, - aux_sym_declaration_repeat1, - [294834] = 4, + ACTIONS(16664), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [359510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13038), 1, + ACTIONS(16666), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9544), 1, aux_sym_declaration_repeat1, - [294847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13040), 1, - anon_sym_default, - ACTIONS(13042), 1, - anon_sym_delete, - ACTIONS(13044), 1, - aux_sym_pure_virtual_clause_token1, - [294860] = 4, + [359523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(16104), 1, anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(16668), 1, anon_sym_RPAREN, - STATE(7446), 1, - aux_sym_argument_list_repeat1, - [294873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6713), 1, - anon_sym___attribute, - ACTIONS(6715), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294884] = 4, + STATE(9654), 1, + aux_sym_preproc_params_repeat1, + [359536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13046), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(13049), 1, + ACTIONS(16670), 1, anon_sym_RPAREN, - STATE(7598), 1, - aux_sym_parameter_list_repeat1, - [294897] = 4, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [359549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13051), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2539), 1, - sym_template_function, - [294910] = 4, - ACTIONS(3), 1, + ACTIONS(7015), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(451), 1, + sym_declaration_list, + [359562] = 4, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13053), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [294923] = 4, + ACTIONS(16114), 1, + anon_sym_LPAREN2, + ACTIONS(16672), 1, + aux_sym_preproc_include_token2, + STATE(11388), 1, + sym_preproc_argument_list, + [359575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(5544), 1, + anon_sym_RBRACE, + ACTIONS(16674), 1, anon_sym_COMMA, - ACTIONS(13055), 1, - anon_sym_RPAREN, - STATE(7717), 1, - aux_sym_parameter_list_repeat1, - [294936] = 4, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [359588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13057), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13060), 1, - anon_sym_RPAREN, - STATE(7602), 1, - aux_sym_throw_specifier_repeat1, - [294949] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(13062), 1, - anon_sym_LBRACE, - STATE(8742), 1, - sym_requires_clause, - [294962] = 3, + ACTIONS(16676), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13066), 1, - anon_sym_RPAREN, - ACTIONS(13064), 2, + ACTIONS(13549), 1, anon_sym_COMMA, + ACTIONS(16678), 1, anon_sym_SEMI, - [294973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11727), 1, - anon_sym_LBRACE, - STATE(8744), 1, - sym_requires_clause, - [294986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11668), 1, - anon_sym_LBRACE, - STATE(8360), 1, - sym_requires_clause, - [294999] = 3, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12807), 1, + ACTIONS(16305), 1, anon_sym_catch, - STATE(229), 2, + STATE(331), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [295010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12575), 1, - anon_sym_COMMA, - ACTIONS(13068), 1, - anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [295023] = 4, + [359625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(8883), 1, + ACTIONS(16680), 1, anon_sym_RPAREN, - STATE(7644), 1, - aux_sym_argument_list_repeat1, - [295036] = 4, + STATE(9548), 1, + aux_sym_parameter_list_repeat1, + [359638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13070), 1, + ACTIONS(16682), 1, anon_sym_COMMA, - ACTIONS(13072), 1, + ACTIONS(16685), 1, anon_sym_RPAREN, - STATE(7788), 1, + STATE(9958), 1, aux_sym_throw_specifier_repeat1, - [295049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7574), 1, - sym_attribute, - [295062] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7286), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13074), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(11721), 1, - anon_sym_LBRACE, - STATE(8430), 1, - sym_requires_clause, - [295086] = 4, + [359651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13076), 1, - anon_sym_default, - ACTIONS(13078), 1, - anon_sym_delete, - ACTIONS(13080), 1, - aux_sym_pure_virtual_clause_token1, - [295099] = 4, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16687), 1, + anon_sym_RBRACK_RBRACK, + STATE(9745), 1, + aux_sym_attribute_declaration_repeat1, + [359664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(8887), 1, - anon_sym_RBRACE, - STATE(7645), 1, - aux_sym_initializer_list_repeat1, - [295112] = 4, + ACTIONS(16687), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [359677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11985), 1, anon_sym_COMMA, - ACTIONS(13082), 1, - anon_sym_GT2, - STATE(7620), 1, - aux_sym_template_argument_list_repeat1, - [295125] = 4, + ACTIONS(12056), 1, + anon_sym_RPAREN, + STATE(9999), 1, + aux_sym_argument_list_repeat1, + [359690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13084), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295138] = 4, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16689), 1, + anon_sym_RPAREN, + STATE(9992), 1, + sym_gnu_asm_input_operand_list, + [359703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13086), 1, - anon_sym_default, - ACTIONS(13088), 1, - anon_sym_delete, - ACTIONS(13090), 1, - aux_sym_pure_virtual_clause_token1, - [295151] = 4, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16691), 1, + anon_sym_RPAREN, + STATE(9993), 1, + sym_gnu_asm_output_operand_list, + [359716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13092), 1, + ACTIONS(16693), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [295164] = 4, + [359729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13094), 1, + ACTIONS(16695), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [295177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13096), 1, - anon_sym_SEMI, - STATE(7376), 1, - aux_sym_declaration_repeat1, - [295190] = 4, + [359742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13098), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [295203] = 4, + ACTIONS(16697), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [359755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(16022), 1, anon_sym_COLON, - ACTIONS(13100), 1, + ACTIONS(16699), 1, anon_sym_RPAREN, - STATE(7648), 1, + STATE(10001), 1, sym_gnu_asm_output_operand_list, - [295216] = 4, + [359768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13102), 1, - anon_sym_SEMI, - STATE(8907), 1, - sym_attribute_declaration, - [295229] = 4, + ACTIONS(15916), 1, + anon_sym_catch, + STATE(534), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13104), 1, + ACTIONS(16701), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9537), 1, aux_sym_declaration_repeat1, - [295242] = 4, + [359792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13106), 1, + ACTIONS(16703), 1, anon_sym_GT2, - STATE(7652), 1, + STATE(10005), 1, aux_sym_template_argument_list_repeat1, - [295255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13108), 1, - anon_sym_RPAREN, - STATE(8503), 1, - sym_gnu_asm_goto_list, - [295268] = 4, + [359805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13110), 1, - anon_sym_SEMI, - STATE(8916), 1, - sym_attribute_declaration, - [295281] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13112), 1, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16705), 1, anon_sym_SEMI, - STATE(8234), 1, - sym_attribute_declaration, - [295294] = 4, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(8979), 1, - anon_sym_RBRACK, - STATE(7721), 1, - aux_sym_subscript_argument_list_repeat1, - [295307] = 4, + ACTIONS(16707), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13114), 1, + ACTIONS(16709), 1, anon_sym_SEMI, - STATE(7657), 1, + STATE(9997), 1, aux_sym_declaration_repeat1, - [295320] = 4, + [359844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13116), 1, + ACTIONS(16711), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [295333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13118), 1, - sym_identifier, - STATE(2559), 1, - sym_template_type, - STATE(3665), 1, - sym_template_function, - [295346] = 4, + [359857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13120), 1, + ACTIONS(16713), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [295359] = 3, + [359870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12853), 1, - anon_sym_catch, - STATE(430), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [295370] = 3, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16715), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [359883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 1, + ACTIONS(16434), 1, anon_sym_catch, - STATE(1709), 2, + STATE(347), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [295381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7698), 1, - sym_attribute, - [295394] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7319), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13124), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295405] = 4, + [359894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10724), 1, - anon_sym_LBRACE, - STATE(8501), 1, - sym_requires_clause, - [295418] = 4, + ACTIONS(11997), 1, + anon_sym_COMMA, + ACTIONS(16717), 1, + anon_sym_RBRACK, + STATE(9849), 1, + aux_sym_subscript_argument_list_repeat1, + [359907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13126), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295431] = 4, + ACTIONS(16719), 1, + anon_sym_SEMI, + STATE(10008), 1, + aux_sym_declaration_repeat1, + [359920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13128), 1, - anon_sym_default, - ACTIONS(13130), 1, - anon_sym_delete, - ACTIONS(13132), 1, - aux_sym_pure_virtual_clause_token1, - [295444] = 4, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16721), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(13134), 1, - anon_sym_GT2, - STATE(7738), 1, - aux_sym_template_argument_list_repeat1, - [295457] = 2, + ACTIONS(16723), 1, + anon_sym_RPAREN, + STATE(10000), 1, + aux_sym_throw_specifier_repeat1, + [359946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13136), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [295466] = 4, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16725), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [359959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(15912), 1, anon_sym_COMMA, - ACTIONS(13138), 1, + ACTIONS(16727), 1, anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [295479] = 4, + STATE(10009), 1, + aux_sym_parameter_list_repeat1, + [359972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_RBRACE, - ACTIONS(13140), 1, + ACTIONS(13617), 1, anon_sym_COMMA, - STATE(7391), 1, - aux_sym_initializer_list_repeat1, - [295492] = 4, + ACTIONS(16729), 1, + anon_sym_RPAREN, + STATE(9899), 1, + aux_sym_preproc_argument_list_repeat1, + [359985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7563), 1, - sym_attribute, - [295505] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7151), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13142), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295516] = 4, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16731), 1, + anon_sym_RPAREN, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [359998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(13144), 1, + ACTIONS(16733), 1, anon_sym_RPAREN, - STATE(7665), 1, - sym_gnu_asm_input_operand_list, - [295529] = 4, + STATE(10013), 1, + sym_gnu_asm_clobber_list, + [360011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(13146), 1, + ACTIONS(16735), 1, anon_sym_RPAREN, - STATE(7666), 1, - sym_gnu_asm_output_operand_list, - [295542] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13148), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13150), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13152), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295581] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7164), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13154), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13156), 1, - anon_sym_SEMI, - STATE(7364), 1, - aux_sym_declaration_repeat1, - [295605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13158), 1, - anon_sym_SEMI, - STATE(7668), 1, - aux_sym_declaration_repeat1, - [295618] = 4, + STATE(10014), 1, + sym_gnu_asm_input_operand_list, + [360024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13160), 1, + ACTIONS(16737), 1, anon_sym_SEMI, - STATE(7435), 1, + STATE(9926), 1, aux_sym_declaration_repeat1, - [295631] = 4, + [360037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(13162), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [295644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13122), 1, - anon_sym_catch, - STATE(1710), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [295655] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7181), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13164), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295666] = 4, + ACTIONS(12157), 1, + anon_sym_RBRACK, + STATE(9550), 1, + aux_sym_subscript_argument_list_repeat1, + [360050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13166), 1, + ACTIONS(16739), 1, anon_sym_GT2, - STATE(7677), 1, + STATE(9673), 1, aux_sym_template_argument_list_repeat1, - [295679] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7188), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13168), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295690] = 4, + [360063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(13170), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295703] = 3, - ACTIONS(10266), 1, - sym_comment, - STATE(7194), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13172), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [295714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8911), 3, + ACTIONS(16741), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [295723] = 4, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [360076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(13174), 1, + ACTIONS(16743), 1, anon_sym_RPAREN, - STATE(7671), 1, + STATE(10019), 1, sym_gnu_asm_clobber_list, - [295736] = 4, + [360089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(13176), 1, + ACTIONS(16745), 1, anon_sym_RPAREN, - STATE(7673), 1, + STATE(10020), 1, sym_gnu_asm_input_operand_list, - [295749] = 4, + [360102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(15494), 1, anon_sym_COMMA, - ACTIONS(13178), 1, + ACTIONS(15576), 1, anon_sym_LBRACE, - STATE(7463), 1, + STATE(9730), 1, aux_sym_base_class_clause_repeat1, - [295762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13180), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [295775] = 4, + [360115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13182), 1, + ACTIONS(15494), 1, anon_sym_COMMA, - ACTIONS(13185), 1, - anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [295788] = 3, + ACTIONS(15576), 1, + anon_sym_LBRACE, + STATE(9718), 1, + aux_sym_base_class_clause_repeat1, + [360128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13187), 1, + ACTIONS(16747), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13189), 2, + ACTIONS(16749), 2, anon_sym_COMMA, anon_sym_LBRACE, - [295799] = 4, + [360139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13191), 1, - anon_sym_RPAREN, - STATE(8596), 1, - sym_gnu_asm_goto_list, - [295812] = 4, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16751), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [360152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_COMMA, - ACTIONS(13178), 1, - anon_sym_LBRACE, - STATE(7741), 1, - aux_sym_base_class_clause_repeat1, - [295825] = 4, + ACTIONS(16246), 1, + anon_sym_catch, + STATE(2831), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [360163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13193), 1, + ACTIONS(11985), 1, + anon_sym_COMMA, + ACTIONS(16753), 1, anon_sym_RPAREN, - STATE(7675), 1, - sym_gnu_asm_clobber_list, - [295838] = 4, + STATE(9704), 1, + aux_sym_argument_list_repeat1, + [360176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(13195), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [295851] = 4, + ACTIONS(16755), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [360189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(15880), 1, anon_sym_COLON, - ACTIONS(13197), 1, + ACTIONS(16757), 1, anon_sym_RPAREN, - STATE(8601), 1, - sym_gnu_asm_goto_list, - [295864] = 4, + STATE(10015), 1, + sym_gnu_asm_input_operand_list, + [360202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(13199), 1, + ACTIONS(16022), 1, + anon_sym_COLON, + ACTIONS(16759), 1, anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [295877] = 4, + STATE(10016), 1, + sym_gnu_asm_output_operand_list, + [360215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13201), 1, + ACTIONS(16761), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [295890] = 4, + [360228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13203), 1, - anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [295903] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(13205), 1, - anon_sym_RPAREN, - STATE(7498), 1, - sym_gnu_asm_output_operand_list, - [295916] = 2, + ACTIONS(16763), 1, + anon_sym_GT2, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [360241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13207), 3, + ACTIONS(11947), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(16765), 1, anon_sym_GT2, - [295925] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(335), 1, - sym_declaration_list, - [295938] = 3, + STATE(9769), 1, + aux_sym_template_argument_list_repeat1, + [360254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 1, - anon_sym___attribute, - ACTIONS(6665), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [295949] = 4, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16767), 1, + anon_sym_SEMI, + STATE(10017), 1, + aux_sym_declaration_repeat1, + [360267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 1, - anon_sym_RBRACE, - ACTIONS(13209), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - STATE(7391), 1, - aux_sym_initializer_list_repeat1, - [295962] = 3, + ACTIONS(16769), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [360280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym___attribute, - ACTIONS(6679), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [295973] = 4, + ACTIONS(13549), 1, + anon_sym_COMMA, + ACTIONS(16771), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [360293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13211), 1, + ACTIONS(15912), 1, + anon_sym_COMMA, + ACTIONS(16773), 1, anon_sym_RPAREN, - STATE(7800), 1, - sym_gnu_asm_clobber_list, - [295986] = 4, + STATE(9837), 1, + aux_sym_parameter_list_repeat1, + [360306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(11997), 1, anon_sym_COMMA, - ACTIONS(8906), 1, + ACTIONS(16775), 1, anon_sym_RBRACK, - STATE(7573), 1, + STATE(9849), 1, aux_sym_subscript_argument_list_repeat1, - [295999] = 4, + [360319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(13213), 1, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(16777), 1, anon_sym_RPAREN, - STATE(7801), 1, - sym_gnu_asm_input_operand_list, - [296012] = 4, + STATE(10018), 1, + aux_sym_throw_specifier_repeat1, + [360332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13215), 1, - anon_sym_GT2, - STATE(7507), 1, - aux_sym_template_argument_list_repeat1, - [296025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13217), 1, + ACTIONS(16779), 1, anon_sym_SEMI, - STATE(8830), 1, - sym_attribute_declaration, - [296038] = 4, + STATE(9738), 1, + aux_sym_declaration_repeat1, + [360345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(13219), 1, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16781), 1, anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [296051] = 4, + STATE(11165), 1, + sym_gnu_asm_goto_list, + [360358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(13221), 1, + ACTIONS(16783), 1, anon_sym_RPAREN, - STATE(7783), 1, - sym_gnu_asm_input_operand_list, - [296064] = 4, + STATE(10025), 1, + sym_gnu_asm_clobber_list, + [360371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(13223), 1, + ACTIONS(16785), 1, anon_sym_RPAREN, - STATE(7791), 1, - sym_gnu_asm_output_operand_list, - [296077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13225), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296090] = 4, + STATE(10022), 1, + sym_gnu_asm_clobber_list, + [360384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13227), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [296103] = 4, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16787), 1, + anon_sym_RPAREN, + STATE(10023), 1, + sym_gnu_asm_input_operand_list, + [360397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13229), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296116] = 4, + ACTIONS(16789), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [360410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15886), 1, anon_sym_COMMA, - ACTIONS(13231), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296129] = 4, + ACTIONS(16791), 1, + anon_sym_RPAREN, + STATE(9958), 1, + aux_sym_throw_specifier_repeat1, + [360423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, + ACTIONS(15930), 1, anon_sym_COLON, - ACTIONS(13233), 1, + ACTIONS(16793), 1, anon_sym_RPAREN, - STATE(8530), 1, + STATE(11297), 1, sym_gnu_asm_goto_list, - [296142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12575), 1, - anon_sym_COMMA, - ACTIONS(13235), 1, - anon_sym_RBRACK_RBRACK, - STATE(7723), 1, - aux_sym_attribute_declaration_repeat1, - [296155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13237), 1, - anon_sym_GT2, - STATE(7702), 1, - aux_sym_template_argument_list_repeat1, - [296168] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13239), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296181] = 4, + [360436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13241), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296194] = 4, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16795), 1, + anon_sym_RPAREN, + STATE(10029), 1, + sym_gnu_asm_clobber_list, + [360449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13243), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296207] = 3, + ACTIONS(9566), 1, + anon_sym___attribute, + ACTIONS(9568), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [360460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 1, - anon_sym_catch, - STATE(1711), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [296218] = 4, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16797), 1, + anon_sym_RPAREN, + STATE(11180), 1, + sym_gnu_asm_goto_list, + [360473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, + ACTIONS(15876), 1, anon_sym_COLON, - ACTIONS(13245), 1, + ACTIONS(16799), 1, anon_sym_RPAREN, - STATE(7569), 1, + STATE(10024), 1, sym_gnu_asm_clobber_list, - [296231] = 2, + [360486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13207), 3, - anon_sym_COMMA, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16801), 1, anon_sym_RPAREN, - anon_sym_GT2, - [296240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13247), 1, - anon_sym_SEMI, - STATE(7746), 1, - aux_sym_declaration_repeat1, - [296253] = 4, + STATE(11187), 1, + sym_gnu_asm_goto_list, + [360499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13249), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [296266] = 2, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16803), 1, + anon_sym_RPAREN, + STATE(11213), 1, + sym_gnu_asm_goto_list, + [360512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13251), 3, + ACTIONS(12035), 1, anon_sym_COMMA, + ACTIONS(16805), 1, anon_sym_RPAREN, - anon_sym_COLON, - [296275] = 4, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [360525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(13253), 1, + ACTIONS(15886), 1, + anon_sym_COMMA, + ACTIONS(16807), 1, anon_sym_RPAREN, - STATE(7572), 1, - sym_gnu_asm_input_operand_list, - [296288] = 4, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12734), 1, - anon_sym_LPAREN2, - ACTIONS(13255), 1, - aux_sym_preproc_include_token2, - STATE(8992), 1, - sym_preproc_argument_list, - [296301] = 4, + STATE(9538), 1, + aux_sym_throw_specifier_repeat1, + [360538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(15494), 1, anon_sym_COMMA, - ACTIONS(13257), 1, - anon_sym_SEMI, - STATE(7799), 1, - aux_sym_declaration_repeat1, - [296314] = 4, + ACTIONS(15496), 1, + anon_sym_LBRACE, + STATE(9724), 1, + aux_sym_base_class_clause_repeat1, + [360551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13259), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [296327] = 4, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16809), 1, + anon_sym_RPAREN, + STATE(11306), 1, + sym_gnu_asm_goto_list, + [360564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(12035), 1, anon_sym_COMMA, - ACTIONS(13261), 1, - anon_sym_SEMI, - STATE(7383), 1, - aux_sym_declaration_repeat1, - [296340] = 4, + ACTIONS(16811), 1, + anon_sym_RPAREN, + STATE(9672), 1, + aux_sym_generic_expression_repeat1, + [360577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16813), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16815), 2, anon_sym_COMMA, - ACTIONS(13263), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [296353] = 4, + anon_sym_LBRACE, + [360588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(15494), 1, anon_sym_COMMA, - ACTIONS(13265), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296366] = 4, + ACTIONS(15496), 1, + anon_sym_LBRACE, + STATE(9730), 1, + aux_sym_base_class_clause_repeat1, + [360601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16301), 1, anon_sym_COMMA, - ACTIONS(13267), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [296379] = 4, + ACTIONS(16817), 1, + anon_sym_LBRACE, + STATE(9844), 1, + aux_sym_field_initializer_list_repeat1, + [360614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12634), 1, + ACTIONS(16819), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16821), 2, anon_sym_COMMA, - ACTIONS(13269), 1, - anon_sym_RPAREN, - STATE(7598), 1, - aux_sym_parameter_list_repeat1, - [296392] = 3, + anon_sym_LBRACE, + [360625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12807), 1, - anon_sym_catch, - STATE(231), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [296403] = 4, + ACTIONS(15868), 1, + anon_sym_COMMA, + ACTIONS(16823), 1, + anon_sym_RBRACK_RBRACK, + STATE(10042), 1, + aux_sym_attribute_declaration_repeat1, + [360638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(13271), 1, + ACTIONS(16823), 1, anon_sym_RBRACK_RBRACK, - STATE(7669), 1, - aux_sym_attribute_declaration_repeat1, - [296416] = 4, + STATE(10043), 1, + aux_sym_attribute_declaration_repeat2, + [360651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(9041), 1, anon_sym_COMMA, - ACTIONS(13273), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296429] = 4, + ACTIONS(16825), 1, + anon_sym_RBRACK, + STATE(9814), 1, + aux_sym_structured_binding_declarator_repeat1, + [360664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(16086), 1, anon_sym_COMMA, - ACTIONS(13275), 1, + ACTIONS(16827), 1, anon_sym_RBRACK, - STATE(7768), 1, - aux_sym_subscript_argument_list_repeat1, - [296442] = 4, + STATE(9822), 1, + aux_sym_lambda_capture_specifier_repeat1, + [360677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7023), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(644), 1, + sym_declaration_list, + [360690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(15930), 1, + anon_sym_COLON, + ACTIONS(16829), 1, anon_sym_RPAREN, - ACTIONS(13277), 1, + STATE(10721), 1, + sym_gnu_asm_goto_list, + [360703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11985), 1, anon_sym_COMMA, - STATE(7722), 1, + ACTIONS(16831), 1, + anon_sym_RPAREN, + STATE(9704), 1, aux_sym_argument_list_repeat1, - [296455] = 4, + [360716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12575), 1, + ACTIONS(15868), 1, anon_sym_COMMA, - ACTIONS(13280), 1, + ACTIONS(16833), 1, anon_sym_RBRACK_RBRACK, - STATE(7669), 1, + STATE(9745), 1, aux_sym_attribute_declaration_repeat1, - [296468] = 4, + [360729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(15872), 1, anon_sym_COMMA, - ACTIONS(8949), 1, - anon_sym_RPAREN, - STATE(7764), 1, - aux_sym_argument_list_repeat1, - [296481] = 4, + ACTIONS(16833), 1, + anon_sym_RBRACK_RBRACK, + STATE(9747), 1, + aux_sym_attribute_declaration_repeat2, + [360742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13282), 1, - anon_sym_RPAREN, - STATE(8943), 1, - sym_gnu_asm_goto_list, - [296494] = 4, + ACTIONS(6983), 1, + anon_sym_LBRACE, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + STATE(851), 1, + sym_declaration_list, + [360755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13284), 1, - anon_sym_RBRACK, - STATE(7390), 1, - aux_sym_lambda_capture_specifier_repeat1, - [296507] = 4, + ACTIONS(16835), 1, + anon_sym_GT2, + STATE(10053), 1, + aux_sym_template_argument_list_repeat1, + [360768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13286), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3389), 1, - sym_template_function, - [296520] = 4, + ACTIONS(5404), 1, + anon_sym_RBRACE, + ACTIONS(16837), 1, + anon_sym_COMMA, + STATE(9714), 1, + aux_sym_initializer_list_repeat1, + [360781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(13288), 1, - anon_sym_LBRACE, - STATE(8961), 1, - sym_requires_clause, - [296533] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16839), 1, + anon_sym_SEMI, + STATE(10491), 1, + sym_attribute_declaration, + [360794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(13290), 1, - anon_sym_RPAREN, - STATE(7370), 1, - aux_sym_preproc_argument_list_repeat1, - [296546] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16841), 1, + anon_sym_SEMI, + STATE(10514), 1, + sym_attribute_declaration, + [360807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16305), 1, + anon_sym_catch, + STATE(489), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [360818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13292), 1, + ACTIONS(16843), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [296559] = 4, + [360831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13294), 1, + ACTIONS(16845), 1, anon_sym_GT2, - STATE(7735), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [296572] = 4, + [360844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, + ACTIONS(15930), 1, anon_sym_COLON, - ACTIONS(13296), 1, + ACTIONS(16847), 1, anon_sym_RPAREN, - STATE(7769), 1, - sym_gnu_asm_output_operand_list, - [296585] = 4, + STATE(11347), 1, + sym_gnu_asm_goto_list, + [360857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13298), 1, + ACTIONS(16849), 1, anon_sym_GT2, - STATE(7781), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [296598] = 4, + [360870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13300), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296611] = 4, + ACTIONS(15876), 1, + anon_sym_COLON, + ACTIONS(16851), 1, + anon_sym_RPAREN, + STATE(10040), 1, + sym_gnu_asm_clobber_list, + [360883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(10510), 1, + anon_sym_EQ, + ACTIONS(10508), 2, anon_sym_COMMA, - ACTIONS(13302), 1, anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296624] = 4, + [360894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12128), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [360903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(11947), 1, anon_sym_COMMA, - ACTIONS(13304), 1, + ACTIONS(16853), 1, anon_sym_GT2, - STATE(7774), 1, + STATE(9769), 1, aux_sym_template_argument_list_repeat1, - [296637] = 3, + [360916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13306), 2, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16855), 1, + anon_sym_SEMI, + STATE(10519), 1, + sym_attribute_declaration, + [360929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_while, + ACTIONS(16598), 1, + anon_sym_else, + STATE(481), 1, + sym_else_clause, + [360942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13479), 1, + anon_sym_DASH_GT, + ACTIONS(16857), 1, + anon_sym_SEMI, + STATE(10651), 1, + sym_trailing_return_type, + [360955] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11997), 1, anon_sym_COMMA, - anon_sym_GT2, - [296648] = 4, + ACTIONS(16859), 1, + anon_sym_RBRACK, + STATE(9849), 1, + aux_sym_subscript_argument_list_repeat1, + [360968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15880), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_RPAREN, + STATE(9583), 1, + sym_gnu_asm_input_operand_list, + [360981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13549), 1, anon_sym_COMMA, - ACTIONS(13308), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296661] = 4, + ACTIONS(16863), 1, + anon_sym_SEMI, + STATE(9926), 1, + aux_sym_declaration_repeat1, + [360994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16865), 1, + anon_sym_LPAREN2, + ACTIONS(16867), 1, + sym_raw_string_delimiter, + [361004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(16869), 2, anon_sym_COMMA, - ACTIONS(13310), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296674] = 3, + anon_sym_RBRACK_RBRACK, + [361012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13314), 2, + ACTIONS(16871), 1, anon_sym_COMMA, + ACTIONS(16873), 1, + anon_sym_RBRACE, + [361022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8193), 1, anon_sym_LBRACE, - [296685] = 4, + STATE(2853), 1, + sym_field_declaration_list, + [361032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, + ACTIONS(16875), 2, anon_sym_COMMA, - ACTIONS(13316), 1, anon_sym_LBRACE, - STATE(7463), 1, - aux_sym_base_class_clause_repeat1, - [296698] = 4, + [361040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13318), 1, - anon_sym_SEMI, - STATE(7777), 1, - aux_sym_declaration_repeat1, - [296711] = 4, + ACTIONS(9596), 1, + anon_sym_LBRACE, + STATE(4260), 1, + sym_field_declaration_list, + [361050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16474), 2, anon_sym_COMMA, - ACTIONS(13320), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [296724] = 4, + anon_sym_LBRACE, + [361058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13322), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [296737] = 4, + ACTIONS(9596), 1, + anon_sym_LBRACE, + STATE(4266), 1, + sym_field_declaration_list, + [361068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(16877), 2, anon_sym_COMMA, - ACTIONS(8969), 1, - anon_sym_RPAREN, - STATE(7459), 1, - aux_sym_argument_list_repeat1, - [296750] = 4, + anon_sym_LBRACE, + [361076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13324), 1, + ACTIONS(4127), 1, + anon_sym_LBRACE, + STATE(5860), 1, + sym_initializer_list, + [361086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10498), 1, + sym_argument_list, + [361096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15443), 1, anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [296763] = 4, + [361106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_requires, - ACTIONS(10694), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(8398), 1, - sym_requires_clause, - [296776] = 4, + STATE(9480), 1, + sym_compound_statement, + [361116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13326), 1, - anon_sym_SEMI, - STATE(8843), 1, - sym_attribute_declaration, - [296789] = 4, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(184), 1, + sym_condition_clause, + [361126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13527), 1, + anon_sym_LBRACE, + STATE(3568), 1, + sym_compound_statement, + [361136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(12283), 2, anon_sym_COMMA, - ACTIONS(13328), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [296802] = 4, + anon_sym_RBRACK, + [361144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13330), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(3665), 1, - sym_template_function, - [296815] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15578), 1, + anon_sym_SEMI, + [361154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12620), 1, - anon_sym_catch, - STATE(1870), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [296826] = 4, + ACTIONS(16297), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [361162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13332), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2539), 1, - sym_template_function, - [296839] = 4, + ACTIONS(1796), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym_compound_statement, + [361172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13334), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [296852] = 4, + ACTIONS(14527), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [361182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13336), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - STATE(2461), 1, - sym_template_function, - [296865] = 4, + ACTIONS(13483), 1, + anon_sym_LBRACE, + STATE(5516), 1, + sym_compound_statement, + [361192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - sym_identifier, - ACTIONS(12659), 1, - anon_sym_using, - STATE(7443), 1, - sym_attribute, - [296878] = 4, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(4287), 1, + sym_field_declaration_list, + [361202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13338), 1, - anon_sym_COMMA, - ACTIONS(13341), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(7756), 1, - aux_sym_field_initializer_list_repeat1, - [296891] = 4, + STATE(4288), 1, + sym_field_declaration_list, + [361212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - ACTIONS(13343), 1, - anon_sym_constexpr, - STATE(179), 1, - sym_condition_clause, - [296904] = 3, - ACTIONS(10266), 1, + STATE(10643), 1, + sym_parenthesized_expression, + [361222] = 3, + ACTIONS(3), 1, sym_comment, - STATE(7268), 1, - aux_sym_char_literal_repeat1, - ACTIONS(13345), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [296915] = 4, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10285), 1, + sym_parameter_list, + [361232] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16881), 1, + aux_sym_preproc_include_token2, + ACTIONS(16883), 1, + sym_preproc_arg, + [361242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(16885), 1, anon_sym_SEMI, - ACTIONS(6762), 1, + [361252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12955), 1, + anon_sym_LBRACE, + STATE(6564), 1, + sym_requirement_seq, + [361262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9998), 1, + sym_compound_statement, + [361272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACE, + STATE(7210), 1, + sym_initializer_list, + [361282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9672), 1, anon_sym_LT, - STATE(1740), 1, + STATE(4203), 1, sym_template_argument_list, - [296928] = 4, + [361292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13347), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - STATE(3259), 1, - sym_template_function, - [296941] = 4, + ACTIONS(1162), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_compound_statement, + [361302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16887), 1, + anon_sym_LT, + STATE(2030), 1, + sym_template_argument_list, + [361312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16879), 1, anon_sym_LPAREN2, - ACTIONS(13349), 1, - anon_sym_constexpr, - STATE(177), 1, - sym_condition_clause, - [296954] = 4, + STATE(10308), 1, + sym_parenthesized_expression, + [361322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(13351), 1, - anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [296967] = 2, + ACTIONS(15858), 1, + anon_sym_LBRACE, + STATE(8260), 1, + sym_requirement_seq, + [361332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13353), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [296976] = 4, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(10396), 1, + sym_condition_clause, + [361342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(13355), 1, - anon_sym_RPAREN, - STATE(7722), 1, - aux_sym_argument_list_repeat1, - [296989] = 2, + ACTIONS(7819), 1, + anon_sym_LBRACE, + STATE(2586), 1, + sym_field_declaration_list, + [361352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13357), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [296998] = 4, + ACTIONS(12922), 1, + anon_sym_LBRACE, + STATE(5097), 1, + sym_requirement_seq, + [361362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(4940), 1, + sym_compound_statement, + [361372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(7021), 1, anon_sym_LBRACE, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - STATE(740), 1, + STATE(896), 1, sym_declaration_list, - [297011] = 3, + [361382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - anon_sym___attribute, - ACTIONS(6587), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [297022] = 4, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + [361392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9065), 1, - anon_sym_RBRACK, - ACTIONS(13359), 1, - anon_sym_COMMA, - STATE(7768), 1, - aux_sym_subscript_argument_list_repeat1, - [297035] = 4, + ACTIONS(16889), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + [361402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(13362), 1, - anon_sym_RPAREN, - STATE(7784), 1, - sym_gnu_asm_input_operand_list, - [297048] = 4, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14760), 1, + anon_sym_SEMI, + [361412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13364), 1, - anon_sym_COMMA, - ACTIONS(13366), 1, - anon_sym_RPAREN, - STATE(7790), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [297061] = 4, + ACTIONS(9590), 1, + anon_sym_LT, + STATE(4107), 1, + sym_template_argument_list, + [361422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12612), 1, - anon_sym_COLON, - ACTIONS(13368), 1, - anon_sym_RPAREN, - STATE(7787), 1, - sym_gnu_asm_output_operand_list, - [297074] = 4, + ACTIONS(10271), 1, + anon_sym_LBRACE, + STATE(3294), 1, + sym_compound_statement, + [361432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13370), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [297087] = 4, + ACTIONS(7023), 1, + anon_sym_LBRACE, + STATE(606), 1, + sym_declaration_list, + [361442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(14090), 2, anon_sym_COMMA, - ACTIONS(13372), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [297100] = 4, + anon_sym_SEMI, + [361450] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16891), 1, + aux_sym_preproc_include_token2, + ACTIONS(16893), 1, + sym_preproc_arg, + [361460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(13374), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [297113] = 4, + ACTIONS(13503), 1, + anon_sym_LBRACE, + STATE(2845), 1, + sym_compound_statement, + [361470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13376), 1, - anon_sym_SEMI, - STATE(7789), 1, - aux_sym_declaration_repeat1, - [297126] = 4, + ACTIONS(12938), 1, + anon_sym_LBRACE, + STATE(5152), 1, + sym_requirement_seq, + [361480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13378), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [297139] = 4, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(10480), 1, + sym_condition_clause, + [361490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, + ACTIONS(16895), 2, anon_sym_COMMA, - ACTIONS(13380), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [297152] = 3, + anon_sym_RBRACK_RBRACK, + [361498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym___attribute, - ACTIONS(6591), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [297163] = 3, + ACTIONS(16897), 1, + anon_sym_LT, + STATE(2510), 1, + sym_template_argument_list, + [361508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12620), 1, - anon_sym_catch, - STATE(1879), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [297174] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym_compound_statement, + [361518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, - anon_sym_COMMA, - ACTIONS(13382), 1, - anon_sym_RBRACK, - STATE(7407), 1, - aux_sym_lambda_capture_specifier_repeat1, - [297187] = 4, + ACTIONS(13509), 1, + anon_sym_LBRACE, + STATE(8280), 1, + sym_compound_statement, + [361528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13384), 1, + ACTIONS(16282), 2, anon_sym_COMMA, - ACTIONS(13387), 1, - anon_sym_GT2, - STATE(7781), 1, - aux_sym_template_argument_list_repeat1, - [297200] = 4, + anon_sym_RBRACK_RBRACK, + [361536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13389), 1, - anon_sym_COMMA, - ACTIONS(13392), 1, - anon_sym_RPAREN, - STATE(7782), 1, - aux_sym_generic_expression_repeat1, - [297213] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9334), 1, + sym_compound_statement, + [361546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13394), 1, - anon_sym_RPAREN, - STATE(7697), 1, - sym_gnu_asm_clobber_list, - [297226] = 4, + ACTIONS(6983), 1, + anon_sym_LBRACE, + STATE(809), 1, + sym_declaration_list, + [361556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13396), 1, - anon_sym_RPAREN, - STATE(7792), 1, - sym_gnu_asm_clobber_list, - [297239] = 2, + ACTIONS(13499), 1, + anon_sym_LBRACE, + STATE(5146), 1, + sym_compound_statement, + [361566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13398), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [297248] = 2, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(11080), 1, + sym_argument_list, + [361576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [297257] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9445), 1, + sym_compound_statement, + [361586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(13402), 1, - anon_sym_RPAREN, - STATE(7795), 1, - sym_gnu_asm_input_operand_list, - [297270] = 4, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15387), 1, + anon_sym_SEMI, + [361596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13070), 1, - anon_sym_COMMA, - ACTIONS(13404), 1, - anon_sym_RPAREN, - STATE(7602), 1, - aux_sym_throw_specifier_repeat1, - [297283] = 4, + ACTIONS(13491), 1, + anon_sym_LBRACE, + STATE(6491), 1, + sym_compound_statement, + [361606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13406), 1, - anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [297296] = 4, + ACTIONS(15180), 1, + anon_sym_EQ, + STATE(10133), 1, + sym_annotation, + [361616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13364), 1, + ACTIONS(16088), 1, + anon_sym_RBRACK, + ACTIONS(16899), 1, anon_sym_COMMA, - ACTIONS(13408), 1, - anon_sym_RPAREN, - STATE(7793), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [297309] = 4, + [361626] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16901), 1, + aux_sym_preproc_include_token2, + ACTIONS(16903), 1, + sym_preproc_arg, + [361636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 1, - anon_sym_COLON, - ACTIONS(13410), 1, - anon_sym_RPAREN, - STATE(7405), 1, - sym_gnu_asm_input_operand_list, - [297322] = 4, + ACTIONS(10277), 1, + anon_sym_LT, + STATE(4203), 1, + sym_template_argument_list, + [361646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13412), 1, - anon_sym_RPAREN, - STATE(9012), 1, - sym_gnu_asm_goto_list, - [297335] = 4, + ACTIONS(16889), 1, + anon_sym_LT, + STATE(3619), 1, + sym_template_argument_list, + [361656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13414), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10183), 1, + sym_parameter_list, + [361666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16287), 2, anon_sym_COMMA, - ACTIONS(13417), 1, - anon_sym_RPAREN, - STATE(7793), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [297348] = 2, + anon_sym_RBRACK_RBRACK, + [361674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13419), 3, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [297357] = 4, + ACTIONS(16905), 1, + anon_sym_RBRACE, + [361684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13421), 1, - anon_sym_RPAREN, - STATE(7797), 1, - sym_gnu_asm_clobber_list, - [297370] = 2, + ACTIONS(12930), 1, + anon_sym_LBRACE, + STATE(5500), 1, + sym_requirement_seq, + [361694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13423), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [297379] = 4, + ACTIONS(16879), 1, + anon_sym_LPAREN2, + STATE(10794), 1, + sym_parenthesized_expression, + [361704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13425), 1, - anon_sym_RPAREN, - STATE(9016), 1, - sym_gnu_asm_goto_list, - [297392] = 4, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10220), 1, + sym_parameter_list, + [361714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(13427), 1, - anon_sym_RPAREN, - STATE(7370), 1, - aux_sym_preproc_argument_list_repeat1, - [297405] = 4, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(4290), 1, + sym_field_declaration_list, + [361724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10107), 1, - anon_sym_COMMA, - ACTIONS(13429), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15818), 1, anon_sym_SEMI, - STATE(7435), 1, - aux_sym_declaration_repeat1, - [297418] = 4, + [361734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12724), 1, - anon_sym_COLON, - ACTIONS(13431), 1, - anon_sym_RPAREN, - STATE(8254), 1, - sym_gnu_asm_goto_list, - [297431] = 4, + ACTIONS(7015), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_declaration_list, + [361744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12683), 1, - anon_sym_COLON, - ACTIONS(13433), 1, - anon_sym_RPAREN, - STATE(7627), 1, - sym_gnu_asm_clobber_list, - [297444] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9938), 1, + sym_compound_statement, + [361754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 1, - anon_sym___attribute, - ACTIONS(6508), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [297455] = 3, + ACTIONS(10232), 1, + anon_sym_LBRACE, + STATE(2731), 1, + sym_compound_statement, + [361764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(16907), 1, anon_sym_LPAREN2, - STATE(8819), 1, + ACTIONS(16909), 1, + sym_raw_string_delimiter, + [361774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15431), 1, + anon_sym_SEMI, + [361784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16879), 1, + anon_sym_LPAREN2, + STATE(10327), 1, sym_parenthesized_expression, - [297465] = 3, + [361794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13437), 1, - anon_sym_LT, - STATE(3419), 1, - sym_template_argument_list, - [297475] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15586), 1, + anon_sym_SEMI, + [361804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9931), 1, - anon_sym_LBRACE, - STATE(4315), 1, - sym_compound_statement, - [297485] = 3, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(10185), 1, + sym_condition_clause, + [361814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13439), 1, - sym_identifier, - STATE(1913), 1, - sym_template_type, - [297495] = 3, + ACTIONS(14517), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [361824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(189), 1, + STATE(206), 1, sym_condition_clause, - [297505] = 3, + [361834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1626), 1, - sym_template_argument_list, - [297515] = 2, + ACTIONS(10271), 1, + anon_sym_LBRACE, + STATE(3025), 1, + sym_compound_statement, + [361844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13020), 2, + ACTIONS(14473), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [297523] = 3, + [361854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - STATE(274), 1, + STATE(764), 1, sym_compound_statement, - [297533] = 3, + [361864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13441), 1, - sym_identifier, - STATE(3620), 1, - sym_template_type, - [297543] = 3, - ACTIONS(10266), 1, + ACTIONS(12094), 1, + anon_sym_RPAREN, + ACTIONS(12096), 1, + anon_sym_SEMI, + [361874] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13443), 1, + ACTIONS(13491), 1, + anon_sym_LBRACE, + STATE(6575), 1, + sym_compound_statement, + [361884] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16911), 1, aux_sym_preproc_include_token2, - ACTIONS(13445), 1, + ACTIONS(16913), 1, sym_preproc_arg, - [297553] = 3, + [361894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12508), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5785), 1, - sym_requirement_seq, - [297563] = 3, + STATE(9573), 1, + sym_compound_statement, + [361904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [361914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14513), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [361924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15548), 1, + anon_sym_SEMI, + [361934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(11019), 1, + sym_argument_list, + [361944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9933), 1, + ACTIONS(13503), 1, anon_sym_LBRACE, - STATE(3498), 1, + STATE(2889), 1, sym_compound_statement, - [297573] = 3, + [361954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9842), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - STATE(3296), 1, - sym_requirement_seq, - [297583] = 3, + STATE(5868), 1, + sym_field_declaration_list, + [361964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - STATE(2441), 1, - sym_initializer_list, - [297593] = 3, + STATE(5869), 1, + sym_field_declaration_list, + [361974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9943), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6115), 1, + STATE(9956), 1, sym_compound_statement, - [297603] = 3, + [361984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(13475), 1, anon_sym_LBRACE, - STATE(765), 1, + STATE(6357), 1, sym_compound_statement, - [297613] = 3, + [361994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8696), 1, + ACTIONS(16887), 1, anon_sym_LT, - STATE(2655), 1, + STATE(1995), 1, sym_template_argument_list, - [297623] = 2, + [362004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10812), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [297631] = 3, + ACTIONS(13483), 1, + anon_sym_LBRACE, + STATE(5538), 1, + sym_compound_statement, + [362014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13447), 1, - sym_identifier, - STATE(2627), 1, - sym_template_type, - [297641] = 2, + ACTIONS(1162), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_compound_statement, + [362024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LBRACE, + STATE(3181), 1, + sym_compound_statement, + [362034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9672), 1, + anon_sym_LT, + STATE(3698), 1, + sym_template_argument_list, + [362044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8858), 2, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_SEMI, - [297649] = 3, + ACTIONS(16915), 1, + anon_sym_RBRACE, + [362054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_declaration_list, - [297659] = 3, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10082), 1, + sym_parameter_list, + [362064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, + ACTIONS(8193), 1, anon_sym_LBRACE, - STATE(3049), 1, + STATE(2900), 1, sym_field_declaration_list, - [297669] = 3, + [362074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(520), 1, - sym_declaration_list, - [297679] = 3, - ACTIONS(10266), 1, + STATE(9670), 1, + sym_compound_statement, + [362084] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13449), 1, - aux_sym_preproc_include_token2, - ACTIONS(13451), 1, - sym_preproc_arg, - [297689] = 3, - ACTIONS(10266), 1, + ACTIONS(8193), 1, + anon_sym_LBRACE, + STATE(2901), 1, + sym_field_declaration_list, + [362094] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13453), 1, - aux_sym_preproc_include_token2, - ACTIONS(13455), 1, - sym_preproc_arg, - [297699] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9784), 1, + sym_compound_statement, + [362104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9943), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6129), 1, + STATE(10049), 1, sym_compound_statement, - [297709] = 3, + [362114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - STATE(7956), 1, + STATE(10181), 1, sym_parenthesized_expression, - [297719] = 3, + [362124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LBRACE, - STATE(3922), 1, - sym_initializer_list, - [297729] = 3, + ACTIONS(16889), 1, + anon_sym_LT, + STATE(4000), 1, + sym_template_argument_list, + [362134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13457), 1, - sym_identifier, - STATE(2559), 1, - sym_template_type, - [297739] = 3, + ACTIONS(9027), 1, + anon_sym_LBRACE, + STATE(3778), 1, + sym_field_declaration_list, + [362144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(199), 1, - sym_condition_clause, - [297749] = 2, + ACTIONS(1796), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_compound_statement, + [362154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 2, + ACTIONS(16607), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [297757] = 3, + anon_sym_RPAREN, + [362162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9943), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6112), 1, + STATE(363), 1, sym_compound_statement, - [297767] = 2, + [362172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13461), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [297775] = 3, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(183), 1, + sym_condition_clause, + [362182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_compound_statement, + [362192] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(376), 1, + STATE(9735), 1, sym_compound_statement, - [297785] = 3, + [362202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13463), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - [297795] = 3, + ACTIONS(16917), 1, + anon_sym_LT, + STATE(2840), 1, + sym_template_argument_list, + [362212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, + ACTIONS(4536), 1, anon_sym_LBRACE, - STATE(2969), 1, - sym_field_declaration_list, - [297805] = 3, + STATE(5860), 1, + sym_initializer_list, + [362222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5973), 1, + ACTIONS(16919), 1, anon_sym_LT, - STATE(1626), 1, + STATE(2487), 1, sym_template_argument_list, - [297815] = 3, + [362232] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16921), 1, + aux_sym_preproc_include_token2, + ACTIONS(16923), 1, + sym_preproc_arg, + [362242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(191), 1, - sym_condition_clause, - [297825] = 2, + STATE(10791), 1, + sym_argument_list, + [362252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [297833] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(5010), 1, + sym_compound_statement, + [362262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13465), 1, - anon_sym_LT, - STATE(2391), 1, - sym_template_argument_list, - [297843] = 3, - ACTIONS(3), 1, + ACTIONS(16925), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [362270] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(6597), 1, - anon_sym_LBRACE, - STATE(2715), 1, - sym_field_declaration_list, - [297853] = 3, + ACTIONS(16927), 1, + aux_sym_preproc_include_token2, + ACTIONS(16929), 1, + sym_preproc_arg, + [362280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(275), 1, - sym_compound_statement, - [297863] = 3, + STATE(3726), 1, + sym_field_declaration_list, + [362290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(939), 1, - sym_compound_statement, - [297873] = 3, + STATE(3822), 1, + sym_field_declaration_list, + [362300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 1, + ACTIONS(15488), 1, anon_sym_COLON_COLON, - ACTIONS(13467), 1, + ACTIONS(16931), 1, anon_sym_SEMI, - [297883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9945), 1, - anon_sym_LBRACE, - STATE(5788), 1, - sym_compound_statement, - [297893] = 3, + [362310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8971), 1, + ACTIONS(16897), 1, anon_sym_LT, - STATE(2590), 1, + STATE(2405), 1, sym_template_argument_list, - [297903] = 3, + [362320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(518), 1, - sym_compound_statement, - [297913] = 2, + STATE(2055), 1, + sym_field_declaration_list, + [362330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11205), 2, + ACTIONS(12175), 2, anon_sym_COMMA, anon_sym_SEMI, - [297921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3045), 1, - sym_field_declaration_list, - [297931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13469), 1, - sym_identifier, - STATE(2680), 1, - sym_template_type, - [297941] = 3, + [362338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13437), 1, + ACTIONS(12116), 1, anon_sym_LT, - STATE(2651), 1, + STATE(4211), 1, sym_template_argument_list, - [297951] = 2, + [362348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12792), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [297959] = 3, + ACTIONS(16897), 1, + anon_sym_LT, + STATE(5573), 1, + sym_template_argument_list, + [362358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 1, + ACTIONS(13499), 1, anon_sym_LBRACE, - STATE(3882), 1, - sym_requirement_seq, - [297969] = 3, + STATE(5022), 1, + sym_compound_statement, + [362368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(776), 1, - sym_declaration_list, - [297979] = 3, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10250), 1, + sym_parameter_list, + [362378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(10271), 1, anon_sym_LBRACE, - STATE(774), 1, + STATE(3229), 1, sym_compound_statement, - [297989] = 3, + [362388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9937), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3912), 1, + STATE(9786), 1, sym_compound_statement, - [297999] = 3, - ACTIONS(10266), 1, + [362398] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13471), 1, + ACTIONS(16933), 1, aux_sym_preproc_include_token2, - ACTIONS(13473), 1, + ACTIONS(16935), 1, sym_preproc_arg, - [298009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13475), 1, - anon_sym_LT, - STATE(2628), 1, - sym_template_argument_list, - [298019] = 3, + [362408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, + ACTIONS(16871), 1, anon_sym_COMMA, - ACTIONS(13479), 1, + ACTIONS(16937), 1, anon_sym_RBRACE, - [298029] = 2, + [362418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13064), 2, - anon_sym_COMMA, + ACTIONS(16321), 2, anon_sym_SEMI, - [298037] = 3, + anon_sym_LBRACE, + [362426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(16165), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(351), 1, - sym_declaration_list, - [298047] = 3, + [362434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_LBRACE, - STATE(3501), 1, - sym_initializer_list, - [298057] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14819), 1, + anon_sym_SEMI, + [362444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(8007), 1, anon_sym_LBRACE, - STATE(2505), 1, + STATE(2697), 1, sym_field_declaration_list, - [298067] = 3, + [362454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(16939), 2, + anon_sym_COMMA, + anon_sym_GT2, + [362462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2482), 1, - sym_field_declaration_list, - [298077] = 3, - ACTIONS(10266), 1, + STATE(9830), 1, + sym_compound_statement, + [362472] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13481), 1, - aux_sym_preproc_include_token2, - ACTIONS(13483), 1, - sym_preproc_arg, - [298087] = 3, + ACTIONS(1162), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_compound_statement, + [362482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9850), 1, + ACTIONS(13509), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_requirement_seq, - [298097] = 3, + STATE(8252), 1, + sym_compound_statement, + [362492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11220), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(11338), 1, + sym_argument_list, + [362502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16941), 2, anon_sym_COMMA, - [298107] = 2, + anon_sym_GT2, + [362510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12977), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [298115] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10565), 1, + sym_argument_list, + [362520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - STATE(3252), 1, + STATE(3038), 1, sym_compound_statement, - [298125] = 3, + [362530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym_field_declaration_list, - [298135] = 3, + ACTIONS(16943), 2, + anon_sym_COMMA, + anon_sym_GT2, + [362538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10150), 1, + sym_parameter_list, + [362548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(13501), 1, anon_sym_LBRACE, - STATE(301), 1, + STATE(4977), 1, sym_compound_statement, - [298145] = 2, + [362558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [298153] = 3, + ACTIONS(13527), 1, + anon_sym_LBRACE, + STATE(3499), 1, + sym_compound_statement, + [362568] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16945), 1, + aux_sym_preproc_include_token2, + ACTIONS(16947), 1, + sym_preproc_arg, + [362578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(2740), 1, - sym_field_declaration_list, - [298163] = 3, + STATE(547), 1, + sym_compound_statement, + [362588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(2749), 1, - sym_field_declaration_list, - [298173] = 3, + STATE(445), 1, + sym_compound_statement, + [362598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - STATE(2455), 1, - sym_field_declaration_list, - [298183] = 3, - ACTIONS(3), 1, + STATE(3319), 1, + sym_compound_statement, + [362608] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(214), 1, - sym_condition_clause, - [298193] = 3, + ACTIONS(16949), 1, + aux_sym_preproc_include_token2, + ACTIONS(16951), 1, + sym_preproc_arg, + [362618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(208), 1, - sym_condition_clause, - [298203] = 3, + STATE(10978), 1, + sym_argument_list, + [362628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_LT, - STATE(4430), 1, - sym_template_argument_list, - [298213] = 3, + ACTIONS(16871), 1, + anon_sym_COMMA, + ACTIONS(16953), 1, + anon_sym_RBRACE, + [362638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, + ACTIONS(9959), 1, anon_sym_LT, - STATE(1626), 1, + STATE(3601), 1, sym_template_argument_list, - [298223] = 2, + [362648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13485), 2, + ACTIONS(16955), 2, anon_sym_COMMA, anon_sym_GT2, - [298231] = 3, + [362656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(4977), 1, + sym_compound_statement, + [362666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16957), 1, + anon_sym_LT, + STATE(3698), 1, + sym_template_argument_list, + [362676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9155), 1, + ACTIONS(8193), 1, anon_sym_LBRACE, - STATE(5055), 1, + STATE(2947), 1, sym_field_declaration_list, - [298241] = 2, + [362686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13487), 2, - anon_sym_COMMA, - anon_sym_GT2, - [298249] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10575), 1, + sym_argument_list, + [362696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(11361), 1, + sym_argument_list, + [362706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(167), 1, + sym_condition_clause, + [362716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(609), 1, + STATE(571), 1, sym_compound_statement, - [298259] = 3, + [362726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5680), 1, + ACTIONS(7866), 1, anon_sym_LBRACE, - STATE(2293), 1, + STATE(2708), 1, sym_field_declaration_list, - [298269] = 3, + [362736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(7844), 1, - sym_condition_clause, - [298279] = 3, + ACTIONS(16959), 1, + anon_sym_LT, + STATE(5429), 1, + sym_template_argument_list, + [362746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14813), 1, + anon_sym_SEMI, + [362756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(518), 1, + STATE(9469), 1, sym_compound_statement, - [298289] = 3, + [362766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(197), 1, - sym_condition_clause, - [298299] = 3, + STATE(11034), 1, + sym_argument_list, + [362776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9937), 1, + ACTIONS(7819), 1, anon_sym_LBRACE, - STATE(3903), 1, - sym_compound_statement, - [298309] = 3, + STATE(2624), 1, + sym_field_declaration_list, + [362786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15735), 1, + anon_sym_SEMI, + [362796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7819), 1, anon_sym_LBRACE, - STATE(7469), 1, - sym_compound_statement, - [298319] = 3, + STATE(2625), 1, + sym_field_declaration_list, + [362806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10854), 1, + sym_argument_list, + [362816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(10232), 1, anon_sym_LBRACE, - STATE(804), 1, + STATE(2609), 1, sym_compound_statement, - [298329] = 3, + [362826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(13483), 1, anon_sym_LBRACE, - STATE(548), 1, + STATE(5475), 1, sym_compound_statement, - [298339] = 3, + [362836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13489), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - [298349] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10584), 1, + sym_argument_list, + [362846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12159), 1, + ACTIONS(12904), 1, anon_sym_LBRACE, - STATE(6110), 1, + STATE(5084), 1, sym_requirement_seq, - [298359] = 3, + [362856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9935), 1, + ACTIONS(13491), 1, anon_sym_LBRACE, - STATE(2537), 1, + STATE(6461), 1, sym_compound_statement, - [298369] = 3, + [362866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16961), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [362874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(7836), 1, - sym_condition_clause, - [298379] = 3, + STATE(10828), 1, + sym_argument_list, + [362884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16963), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [362892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15540), 1, + sym_identifier, + STATE(9149), 1, + sym_module_name, + [362902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(8185), 1, + STATE(11033), 1, sym_argument_list, - [298389] = 3, + [362912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10232), 1, anon_sym_LBRACE, - STATE(7273), 1, + STATE(2763), 1, sym_compound_statement, - [298399] = 3, + [362922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(198), 1, - sym_condition_clause, - [298409] = 3, + STATE(11349), 1, + sym_argument_list, + [362932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [298419] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10530), 1, + sym_argument_list, + [362942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, - anon_sym_LBRACE, - STATE(563), 1, - sym_compound_statement, - [298429] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10599), 1, + sym_argument_list, + [362952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(3252), 1, - sym_compound_statement, - [298439] = 3, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(159), 1, + sym_condition_clause, + [362962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13491), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - [298449] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10705), 1, + sym_argument_list, + [362972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, + ACTIONS(16965), 2, anon_sym_COMMA, - ACTIONS(13493), 1, - anon_sym_RBRACE, - [298459] = 3, + anon_sym_RBRACK_RBRACK, + [362980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(12383), 1, anon_sym_LPAREN2, - STATE(8799), 1, + STATE(10764), 1, sym_argument_list, - [298469] = 3, + [362990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, - anon_sym_LBRACE, - STATE(2754), 1, - sym_field_declaration_list, - [298479] = 3, - ACTIONS(10266), 1, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15608), 1, + anon_sym_SEMI, + [363000] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13495), 1, + ACTIONS(16967), 1, aux_sym_preproc_include_token2, - ACTIONS(13497), 1, + ACTIONS(16969), 1, sym_preproc_arg, - [298489] = 3, + [363010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13499), 1, - anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - [298499] = 3, + ACTIONS(2036), 1, + anon_sym_LBRACE, + STATE(3811), 1, + sym_initializer_list, + [363020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10764), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1974), 1, + STATE(508), 1, sym_compound_statement, - [298509] = 3, + [363030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8640), 1, - sym_parenthesized_expression, - [298519] = 3, - ACTIONS(3), 1, + ACTIONS(13505), 1, + anon_sym_LBRACE, + STATE(5111), 1, + sym_compound_statement, + [363040] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8071), 1, - sym_parameter_list, - [298529] = 2, + ACTIONS(16971), 1, + aux_sym_preproc_include_token2, + ACTIONS(16973), 1, + sym_preproc_arg, + [363050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [298537] = 3, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(161), 1, + sym_condition_clause, + [363060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7718), 1, - sym_compound_statement, - [298547] = 3, + ACTIONS(8749), 1, + anon_sym_LT, + STATE(3582), 1, + sym_template_argument_list, + [363070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9937), 1, + ACTIONS(7015), 1, anon_sym_LBRACE, - STATE(3970), 1, - sym_compound_statement, - [298557] = 3, + STATE(452), 1, + sym_declaration_list, + [363080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, + ACTIONS(16959), 1, anon_sym_LT, - STATE(2701), 1, + STATE(2612), 1, sym_template_argument_list, - [298567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8123), 1, - sym_parenthesized_expression, - [298577] = 3, + [363090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(13509), 1, anon_sym_LBRACE, - STATE(465), 1, + STATE(8319), 1, sym_compound_statement, - [298587] = 3, + [363100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(9354), 1, sym_compound_statement, - [298597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(13503), 1, - anon_sym_SEMI, - [298607] = 3, + [363110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11181), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, + ACTIONS(12337), 2, anon_sym_COMMA, - [298617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13505), 1, - anon_sym_LPAREN2, - ACTIONS(13507), 1, - sym_raw_string_delimiter, - [298627] = 3, + anon_sym_RPAREN, + [363118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11191), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, + ACTIONS(16871), 1, anon_sym_COMMA, - [298637] = 2, + ACTIONS(16975), 1, + anon_sym_RBRACE, + [363128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13509), 2, - anon_sym_COMMA, - anon_sym_GT2, - [298645] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15427), 1, + anon_sym_SEMI, + [363138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(13499), 1, anon_sym_LBRACE, - STATE(3087), 1, - sym_field_declaration_list, - [298655] = 3, + STATE(5072), 1, + sym_compound_statement, + [363148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, - anon_sym_LBRACE, - STATE(3089), 1, - sym_field_declaration_list, - [298665] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10800), 1, + sym_argument_list, + [363158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9155), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - STATE(5049), 1, - sym_field_declaration_list, - [298675] = 3, + STATE(541), 1, + sym_compound_statement, + [363168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9155), 1, - anon_sym_LBRACE, - STATE(5054), 1, - sym_field_declaration_list, - [298685] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15680), 1, + anon_sym_SEMI, + [363178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - STATE(808), 1, - sym_declaration_list, - [298695] = 3, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(16977), 1, + anon_sym_SEMI, + [363188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - STATE(392), 1, - sym_declaration_list, - [298705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11183), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [298715] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13511), 1, - aux_sym_preproc_include_token2, - ACTIONS(13513), 1, - sym_preproc_arg, - [298725] = 3, + STATE(5862), 1, + sym_field_declaration_list, + [363198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13515), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - [298735] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15616), 1, + anon_sym_SEMI, + [363208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(11687), 1, anon_sym_LT, - STATE(1626), 1, + STATE(6613), 1, sym_template_argument_list, - [298745] = 3, + [363218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - STATE(7893), 1, - sym_condition_clause, - [298755] = 3, + STATE(10307), 1, + sym_parenthesized_expression, + [363228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(204), 1, - sym_condition_clause, - [298765] = 3, + ACTIONS(16887), 1, + anon_sym_LT, + STATE(3698), 1, + sym_template_argument_list, + [363238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(7635), 1, + STATE(604), 1, sym_compound_statement, - [298775] = 3, + [363248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2738), 1, anon_sym_LBRACE, - STATE(3187), 1, - sym_compound_statement, - [298785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13517), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - [298795] = 3, + STATE(5932), 1, + sym_initializer_list, + [363258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, + ACTIONS(6983), 1, anon_sym_LBRACE, - STATE(2922), 1, - sym_field_declaration_list, - [298805] = 3, + STATE(779), 1, + sym_declaration_list, + [363268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2927), 1, - sym_field_declaration_list, - [298815] = 3, + STATE(9625), 1, + sym_compound_statement, + [363278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3616), 1, - sym_initializer_list, - [298825] = 3, + STATE(4570), 1, + sym_field_declaration_list, + [363288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - STATE(8450), 1, - sym_argument_list, - [298835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [298843] = 3, + STATE(11123), 1, + sym_parenthesized_expression, + [363298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(7227), 1, + STATE(354), 1, sym_compound_statement, - [298853] = 3, + [363308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(207), 1, - sym_condition_clause, - [298863] = 3, + ACTIONS(14471), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [363318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13519), 1, - sym_identifier, - STATE(2261), 1, - sym_template_type, - [298873] = 3, + ACTIONS(15488), 1, + anon_sym_COLON_COLON, + ACTIONS(16979), 1, + anon_sym_SEMI, + [363328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 1, + ACTIONS(7819), 1, anon_sym_LBRACE, - STATE(4303), 1, - sym_requirement_seq, - [298883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13521), 2, - anon_sym_COMMA, - anon_sym_GT2, - [298891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13523), 1, - sym_identifier, - ACTIONS(13525), 1, - anon_sym_LPAREN2, - [298901] = 3, + STATE(2603), 1, + sym_field_declaration_list, + [363338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10764), 1, + ACTIONS(7866), 1, anon_sym_LBRACE, - STATE(2067), 1, - sym_compound_statement, - [298911] = 3, + STATE(2674), 1, + sym_field_declaration_list, + [363348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8967), 1, - sym_parenthesized_expression, - [298921] = 3, + ACTIONS(7866), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_field_declaration_list, + [363358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8148), 1, - sym_parameter_list, - [298931] = 3, + ACTIONS(8007), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_field_declaration_list, + [363368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13527), 1, - anon_sym_RBRACE, - [298941] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_compound_statement, + [363378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(7413), 1, + STATE(640), 1, sym_compound_statement, - [298951] = 3, + [363388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(370), 1, sym_compound_statement, - [298961] = 3, + [363398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9155), 1, + ACTIONS(8007), 1, anon_sym_LBRACE, - STATE(5025), 1, + STATE(2684), 1, sym_field_declaration_list, - [298971] = 3, + [363408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(7810), 1, - sym_parenthesized_expression, - [298981] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13529), 1, - aux_sym_preproc_include_token2, - ACTIONS(13531), 1, - sym_preproc_arg, - [298991] = 2, + ACTIONS(8007), 1, + anon_sym_LBRACE, + STATE(2685), 1, + sym_field_declaration_list, + [363418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13533), 2, + ACTIONS(16981), 2, anon_sym_COMMA, - anon_sym_GT2, - [298999] = 3, + anon_sym_RPAREN, + [363426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, - anon_sym_LT, - STATE(3246), 1, - sym_template_argument_list, - [299009] = 3, + ACTIONS(2592), 1, + anon_sym_LBRACE, + STATE(5524), 1, + sym_initializer_list, + [363436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9933), 1, + ACTIONS(13004), 1, anon_sym_LBRACE, - STATE(3388), 1, - sym_compound_statement, - [299019] = 2, + STATE(4676), 1, + sym_requirement_seq, + [363446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12582), 2, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_GT2, - [299027] = 3, + ACTIONS(16983), 1, + anon_sym_RBRACE, + [363456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, - anon_sym_LT, - STATE(2391), 1, - sym_template_argument_list, - [299037] = 3, + ACTIONS(9596), 1, + anon_sym_LBRACE, + STATE(4285), 1, + sym_field_declaration_list, + [363466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(508), 1, - sym_compound_statement, - [299047] = 3, + ACTIONS(16985), 2, + anon_sym_COMMA, + anon_sym_GT2, + [363474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3293), 1, + STATE(4613), 1, sym_field_declaration_list, - [299057] = 3, + [363484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13535), 1, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(10366), 1, + sym_condition_clause, + [363494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9672), 1, anon_sym_LT, - STATE(2312), 1, + STATE(3605), 1, sym_template_argument_list, - [299067] = 3, + [363504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(3320), 1, - sym_compound_statement, - [299077] = 3, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(212), 1, + sym_condition_clause, + [363514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3094), 1, - sym_field_declaration_list, - [299087] = 3, + ACTIONS(16399), 2, + anon_sym_COMMA, + anon_sym_GT2, + [363522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9931), 1, + ACTIONS(13527), 1, anon_sym_LBRACE, - STATE(4304), 1, + STATE(3547), 1, sym_compound_statement, - [299097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_RPAREN, - ACTIONS(8931), 1, - anon_sym_SEMI, - [299107] = 3, + [363532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(7845), 1, - sym_condition_clause, - [299117] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_compound_statement, + [363542] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7455), 1, + STATE(9823), 1, sym_compound_statement, - [299127] = 3, + [363552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8407), 1, - sym_argument_list, - [299137] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15506), 1, + anon_sym_SEMI, + [363562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, - anon_sym_LBRACE, - STATE(3709), 1, - sym_requirement_seq, - [299147] = 3, + ACTIONS(16987), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [363570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1162), 1, anon_sym_LBRACE, - STATE(7353), 1, + STATE(565), 1, sym_compound_statement, - [299157] = 2, + [363580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13537), 2, - anon_sym_COMMA, + ACTIONS(13505), 1, anon_sym_LBRACE, - [299165] = 2, + STATE(5131), 1, + sym_compound_statement, + [363590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13341), 2, - anon_sym_COMMA, + ACTIONS(894), 1, anon_sym_LBRACE, - [299173] = 3, + STATE(788), 1, + sym_compound_statement, + [363600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7554), 1, + STATE(509), 1, sym_compound_statement, - [299183] = 3, + [363610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1783), 1, - sym_compound_statement, - [299193] = 2, + ACTIONS(12186), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [363618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13539), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [299201] = 3, + ACTIONS(16989), 1, + sym_identifier, + ACTIONS(16991), 1, + anon_sym_LPAREN2, + [363628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - anon_sym_LBRACE, - STATE(720), 1, - sym_declaration_list, - [299211] = 3, - ACTIONS(10266), 1, + ACTIONS(14499), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [363638] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13541), 1, - aux_sym_preproc_include_token2, - ACTIONS(13543), 1, - sym_preproc_arg, - [299221] = 3, + ACTIONS(12383), 1, + anon_sym_LPAREN2, + STATE(10655), 1, + sym_argument_list, + [363648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3635), 1, + STATE(9308), 1, sym_compound_statement, - [299231] = 3, + [363658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(7910), 1, - sym_parameter_list, - [299241] = 3, + STATE(189), 1, + sym_condition_clause, + [363668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9945), 1, - anon_sym_LBRACE, - STATE(5793), 1, - sym_compound_statement, - [299251] = 2, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14825), 1, + anon_sym_SEMI, + [363678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 2, + ACTIONS(16993), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [299259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7524), 1, - sym_compound_statement, - [299269] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13545), 1, - aux_sym_preproc_include_token2, - ACTIONS(13547), 1, - sym_preproc_arg, - [299279] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13549), 1, - aux_sym_preproc_include_token2, - ACTIONS(13551), 1, - sym_preproc_arg, - [299289] = 3, + [363686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - STATE(7919), 1, + STATE(11507), 1, sym_parenthesized_expression, - [299299] = 3, + [363696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13535), 1, - anon_sym_LT, - STATE(1918), 1, - sym_template_argument_list, - [299309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13185), 2, + ACTIONS(16414), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [299317] = 3, + anon_sym_RBRACK, + [363704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(16897), 1, anon_sym_LT, - STATE(3451), 1, + STATE(5379), 1, sym_template_argument_list, - [299327] = 3, + [363714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(12191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [363722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(7885), 1, - sym_condition_clause, - [299337] = 2, + STATE(10226), 1, + sym_parameter_list, + [363732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13553), 2, + ACTIONS(16749), 2, anon_sym_COMMA, anon_sym_LBRACE, - [299345] = 3, + [363740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(180), 1, + STATE(158), 1, sym_condition_clause, - [299355] = 3, + [363750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(742), 1, - sym_declaration_list, - [299365] = 3, + STATE(7613), 1, + sym_field_declaration_list, + [363760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(7584), 1, - sym_compound_statement, - [299375] = 3, + STATE(7589), 1, + sym_field_declaration_list, + [363770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(7565), 1, - sym_compound_statement, - [299385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8523), 1, - sym_argument_list, - [299395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8376), 1, - sym_argument_list, - [299405] = 3, + STATE(7599), 1, + sym_field_declaration_list, + [363780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 1, + ACTIONS(15540), 1, sym_identifier, - STATE(7141), 1, + STATE(10193), 1, sym_module_name, - [299415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11211), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [299425] = 3, + [363790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(3929), 1, - sym_initializer_list, - [299435] = 2, + STATE(7612), 1, + sym_field_declaration_list, + [363800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9065), 2, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [299443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13555), 1, - sym_identifier, - STATE(1846), 1, - sym_template_type, - [299453] = 3, + ACTIONS(16995), 1, + anon_sym_RBRACE, + [363810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(3310), 1, + STATE(2047), 1, sym_field_declaration_list, - [299463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13557), 1, - sym_identifier, - STATE(1891), 1, - sym_template_type, - [299473] = 3, + [363820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(7866), 1, anon_sym_LBRACE, - STATE(3374), 1, + STATE(2743), 1, sym_field_declaration_list, - [299483] = 3, + [363830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 1, + ACTIONS(13495), 1, anon_sym_LBRACE, - STATE(3320), 1, + STATE(4760), 1, sym_compound_statement, - [299493] = 3, + [363840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8039), 1, - sym_parameter_list, - [299503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8082), 1, - sym_parameter_list, - [299513] = 3, + ACTIONS(6834), 1, + anon_sym_LBRACE, + STATE(2048), 1, + sym_field_declaration_list, + [363850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13475), 1, anon_sym_LBRACE, - STATE(7658), 1, + STATE(6348), 1, sym_compound_statement, - [299523] = 3, + [363860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - STATE(3067), 1, - sym_field_declaration_list, - [299533] = 3, + STATE(5650), 1, + sym_initializer_list, + [363870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(16879), 1, anon_sym_LPAREN2, - STATE(8049), 1, + STATE(10988), 1, sym_parenthesized_expression, - [299543] = 3, + [363880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 1, - sym_identifier, - STATE(8070), 1, - sym_module_name, - [299553] = 3, - ACTIONS(3), 1, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_field_declaration_list, + [363890] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8964), 1, - sym_argument_list, - [299563] = 3, + ACTIONS(16997), 1, + aux_sym_preproc_include_token2, + ACTIONS(16999), 1, + sym_preproc_arg, + [363900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7703), 1, - sym_compound_statement, - [299573] = 3, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(10299), 1, + sym_parameter_list, + [363910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(11202), 1, anon_sym_LBRACE, - STATE(3669), 1, - sym_compound_statement, - [299583] = 3, + STATE(5828), 1, + sym_field_declaration_list, + [363920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10730), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1841), 1, + STATE(9977), 1, sym_compound_statement, - [299593] = 3, + [363930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(8722), 1, - sym_argument_list, - [299603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(3423), 1, - sym_requirement_seq, - [299613] = 3, + STATE(170), 1, + sym_condition_clause, + [363940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9935), 1, + ACTIONS(13505), 1, anon_sym_LBRACE, - STATE(2484), 1, + STATE(5133), 1, sym_compound_statement, - [299623] = 3, + [363950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(7176), 1, + STATE(384), 1, sym_compound_statement, - [299633] = 3, + [363960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7561), 1, - sym_compound_statement, - [299643] = 3, + ACTIONS(11354), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [363968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(7023), 1, anon_sym_LBRACE, - STATE(321), 1, - sym_compound_statement, - [299653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8139), 1, - sym_parameter_list, - [299663] = 3, + STATE(740), 1, + sym_declaration_list, + [363978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_compound_statement, - [299673] = 3, + ACTIONS(14511), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [363988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13495), 1, anon_sym_LBRACE, - STATE(7779), 1, + STATE(4839), 1, sym_compound_statement, - [299683] = 3, + [363998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13559), 1, + ACTIONS(14519), 1, anon_sym_RBRACE, - [299693] = 3, + ACTIONS(16871), 1, + anon_sym_COMMA, + [364008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, - anon_sym_LBRACE, - STATE(3190), 1, - sym_field_declaration_list, - [299703] = 2, + ACTIONS(16879), 1, + anon_sym_LPAREN2, + STATE(10330), 1, + sym_parenthesized_expression, + [364018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(12367), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [299711] = 3, + anon_sym_RBRACE, + [364026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(183), 1, - sym_condition_clause, - [299721] = 3, + ACTIONS(16432), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [364034] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7377), 1, + STATE(9549), 1, sym_compound_statement, - [299731] = 3, + [364044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13561), 1, - sym_identifier, - STATE(4480), 1, - sym_template_type, - [299741] = 3, - ACTIONS(3), 1, + ACTIONS(7021), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_declaration_list, + [364054] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8462), 1, - sym_argument_list, - [299751] = 3, + ACTIONS(17001), 1, + aux_sym_preproc_include_token2, + ACTIONS(17003), 1, + sym_preproc_arg, + [364064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(8067), 1, - sym_parameter_list, - [299761] = 3, + ACTIONS(16427), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [364072] = 3, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17005), 1, + aux_sym_preproc_include_token2, + ACTIONS(17007), 1, + sym_preproc_arg, + [364082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(913), 1, + STATE(394), 1, sym_compound_statement, - [299771] = 3, + [364092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(894), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(842), 1, sym_compound_statement, - [299781] = 3, + [364102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(2608), 1, anon_sym_LBRACE, - STATE(684), 1, - sym_declaration_list, - [299791] = 3, + STATE(5664), 1, + sym_initializer_list, + [364112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8420), 1, + ACTIONS(16151), 1, anon_sym_LPAREN2, - STATE(8937), 1, - sym_argument_list, - [299801] = 2, + STATE(203), 1, + sym_condition_clause, + [364122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13563), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [299809] = 3, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14833), 1, + anon_sym_SEMI, + [364132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, - anon_sym_LBRACE, - STATE(3597), 1, - sym_compound_statement, - [299819] = 3, + ACTIONS(16919), 1, + anon_sym_LT, + STATE(5480), 1, + sym_template_argument_list, + [364142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - anon_sym_LBRACE, - STATE(610), 1, - sym_declaration_list, - [299829] = 3, - ACTIONS(3), 1, + ACTIONS(9217), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [364150] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(8420), 1, - anon_sym_LPAREN2, - STATE(8677), 1, - sym_argument_list, - [299839] = 3, + ACTIONS(17009), 1, + aux_sym_preproc_include_token2, + ACTIONS(17011), 1, + sym_preproc_arg, + [364160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11209), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [299849] = 3, - ACTIONS(3), 1, + ACTIONS(16959), 1, + anon_sym_LT, + STATE(2491), 1, + sym_template_argument_list, + [364170] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13565), 1, - anon_sym_RBRACE, - [299859] = 3, + ACTIONS(17013), 1, + aux_sym_preproc_include_token2, + ACTIONS(17015), 1, + sym_preproc_arg, + [364180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(13475), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(6320), 1, sym_compound_statement, - [299869] = 3, + [364190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_compound_statement, - [299879] = 3, + ACTIONS(16879), 1, + anon_sym_LPAREN2, + STATE(10323), 1, + sym_parenthesized_expression, + [364200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(17017), 1, + anon_sym_LPAREN2, + ACTIONS(17019), 1, + sym_raw_string_delimiter, + [364210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(4114), 1, + STATE(4283), 1, sym_field_declaration_list, - [299889] = 2, + [364220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13189), 2, - anon_sym_COMMA, + ACTIONS(9658), 1, anon_sym_LBRACE, - [299897] = 3, + STATE(4531), 1, + sym_field_declaration_list, + [364230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12993), 1, anon_sym_LBRACE, - STATE(7231), 1, - sym_compound_statement, - [299907] = 3, + STATE(6323), 1, + sym_requirement_seq, + [364240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7175), 1, + STATE(493), 1, sym_compound_statement, - [299917] = 3, + [364250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6840), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(3102), 1, + STATE(9222), 1, sym_field_declaration_list, - [299927] = 3, + [364260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5680), 1, + ACTIONS(16256), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2289), 1, - sym_field_declaration_list, - [299937] = 3, + [364268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13567), 1, - sym_identifier, - STATE(2726), 1, - sym_template_type, - [299947] = 3, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(3601), 1, + sym_template_argument_list, + [364278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12696), 1, - anon_sym_LPAREN2, - STATE(196), 1, - sym_condition_clause, - [299957] = 2, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(15562), 1, + anon_sym_SEMI, + [364288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12608), 2, + ACTIONS(17021), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [299965] = 3, - ACTIONS(10266), 1, + anon_sym_RBRACK, + [364296] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13569), 1, - aux_sym_preproc_include_token2, - ACTIONS(13571), 1, - sym_preproc_arg, - [299975] = 3, + ACTIONS(7015), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_declaration_list, + [364306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1796), 1, anon_sym_LBRACE, - STATE(398), 1, + STATE(1123), 1, sym_compound_statement, - [299985] = 3, + [364316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2848), 1, + sym_template_argument_list, + [364326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5680), 1, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(2295), 1, + STATE(7453), 1, sym_field_declaration_list, - [299995] = 3, + [364336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14801), 1, + anon_sym_SEMI, + [364346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(17023), 1, + sym_identifier, + ACTIONS(17025), 1, + anon_sym_RPAREN, + [364356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, - [300005] = 3, + STATE(9226), 1, + sym_field_declaration_list, + [364366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13573), 1, - anon_sym_RBRACE, - [300015] = 3, - ACTIONS(10266), 1, + ACTIONS(9658), 1, + anon_sym_LBRACE, + STATE(9227), 1, + sym_field_declaration_list, + [364376] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13575), 1, - aux_sym_preproc_include_token2, - ACTIONS(13577), 1, - sym_preproc_arg, - [300025] = 3, + ACTIONS(14475), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [364384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, + ACTIONS(9658), 1, anon_sym_LBRACE, - STATE(2946), 1, + STATE(9232), 1, sym_field_declaration_list, - [300035] = 3, + [364394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10752), 1, + ACTIONS(13501), 1, anon_sym_LBRACE, - STATE(1904), 1, + STATE(5010), 1, sym_compound_statement, - [300045] = 3, + [364404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(15425), 1, anon_sym_LBRACE, - STATE(1649), 1, - sym_compound_statement, - [300055] = 3, + STATE(7890), 1, + sym_requirement_seq, + [364414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13579), 1, - sym_identifier, - STATE(2799), 1, - sym_template_type, - [300065] = 2, + ACTIONS(12966), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_requirement_seq, + [364424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13581), 2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [300073] = 3, + ACTIONS(11895), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + [364434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(13507), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(7893), 1, sym_compound_statement, - [300083] = 3, + [364444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(13583), 1, - anon_sym_SEMI, - [300093] = 3, + ACTIONS(16917), 1, + anon_sym_LT, + STATE(2525), 1, + sym_template_argument_list, + [364454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6814), 1, + ACTIONS(9672), 1, anon_sym_LT, - STATE(2720), 1, + STATE(1956), 1, sym_template_argument_list, - [300103] = 3, + [364464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17027), 1, + sym_identifier, + ACTIONS(17029), 1, + anon_sym_LPAREN2, + [364474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8947), 1, + ACTIONS(7021), 1, anon_sym_LBRACE, - STATE(4856), 1, - sym_field_declaration_list, - [300113] = 3, + STATE(889), 1, + sym_declaration_list, + [364484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15514), 1, + anon_sym_LBRACE, + STATE(2903), 1, + sym_requirement_seq, + [364494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(630), 1, + STATE(604), 1, sym_compound_statement, - [300123] = 2, + [364504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8898), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [300131] = 3, + ACTIONS(13501), 1, + anon_sym_LBRACE, + STATE(4940), 1, + sym_compound_statement, + [364514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8572), 1, - sym_parenthesized_expression, - [300141] = 3, + ACTIONS(14521), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [364524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12387), 1, + ACTIONS(6983), 1, anon_sym_LBRACE, - STATE(1645), 1, - sym_requirement_seq, - [300151] = 3, + STATE(852), 1, + sym_declaration_list, + [364534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10752), 1, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(2118), 1, - sym_compound_statement, - [300161] = 3, + STATE(7468), 1, + sym_field_declaration_list, + [364544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9949), 1, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(1649), 1, - sym_compound_statement, - [300171] = 3, + STATE(7473), 1, + sym_field_declaration_list, + [364554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - STATE(7918), 1, - sym_parameter_list, - [300181] = 3, + ACTIONS(5594), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [364562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(281), 1, - sym_compound_statement, - [300191] = 2, + ACTIONS(16871), 1, + anon_sym_COMMA, + ACTIONS(17031), 1, + anon_sym_RBRACE, + [364572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 2, + ACTIONS(16871), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [300199] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13585), 1, - aux_sym_preproc_include_token2, - ACTIONS(13587), 1, - sym_preproc_arg, - [300209] = 3, + ACTIONS(17033), 1, + anon_sym_RBRACE, + [364582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(16919), 1, anon_sym_LT, - STATE(2701), 1, + STATE(5715), 1, sym_template_argument_list, - [300219] = 3, + [364592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11201), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [300229] = 3, + ACTIONS(7023), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_declaration_list, + [364602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13589), 1, - sym_identifier, - ACTIONS(13591), 1, - anon_sym_LPAREN2, - [300239] = 3, + ACTIONS(13507), 1, + anon_sym_LBRACE, + STATE(7899), 1, + sym_compound_statement, + [364612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8952), 1, - sym_parenthesized_expression, - [300249] = 3, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(3739), 1, + sym_field_declaration_list, + [364622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + ACTIONS(14779), 1, + anon_sym_SEMI, + [364632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5413), 1, + STATE(3762), 1, sym_field_declaration_list, - [300259] = 3, + [364642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5417), 1, + STATE(3834), 1, sym_field_declaration_list, - [300269] = 3, + [364652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5418), 1, + STATE(3731), 1, sym_field_declaration_list, - [300279] = 3, + [364662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17035), 1, + anon_sym_LPAREN2, + ACTIONS(17037), 1, + sym_raw_string_delimiter, + [364672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13503), 1, + anon_sym_LBRACE, + STATE(2960), 1, + sym_compound_statement, + [364682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16871), 1, + anon_sym_COMMA, + ACTIONS(17039), 1, + anon_sym_RBRACE, + [364692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, + ACTIONS(12646), 1, anon_sym_LBRACE, - STATE(5420), 1, + STATE(7470), 1, sym_field_declaration_list, - [300289] = 3, + [364702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13593), 1, - sym_identifier, - ACTIONS(13595), 1, - anon_sym_RPAREN, - [300299] = 3, + ACTIONS(17041), 1, + anon_sym_LPAREN2, + ACTIONS(17043), 1, + sym_raw_string_delimiter, + [364712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13437), 1, - anon_sym_LT, - STATE(3573), 1, - sym_template_argument_list, - [300309] = 3, + ACTIONS(15960), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [364720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, + ACTIONS(16461), 2, anon_sym_COMMA, - ACTIONS(13597), 1, - anon_sym_RBRACE, - [300319] = 3, + anon_sym_RPAREN, + [364728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 1, + ACTIONS(16957), 1, anon_sym_LT, - STATE(2312), 1, + STATE(5733), 1, sym_template_argument_list, - [300329] = 3, + [364738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9935), 1, - anon_sym_LBRACE, - STATE(2483), 1, - sym_compound_statement, - [300339] = 3, + ACTIONS(12116), 1, + anon_sym_LT, + STATE(3968), 1, + sym_template_argument_list, + [364748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13284), 1, - anon_sym_RBRACK, - ACTIONS(13599), 1, - anon_sym_COMMA, - [300349] = 3, + ACTIONS(17045), 1, + anon_sym_LPAREN2, + ACTIONS(17047), 1, + sym_raw_string_delimiter, + [364758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13507), 1, anon_sym_LBRACE, - STATE(7555), 1, + STATE(7901), 1, sym_compound_statement, - [300359] = 3, + [364768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11226), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [300369] = 2, + ACTIONS(16919), 1, + anon_sym_LT, + STATE(2570), 1, + sym_template_argument_list, + [364778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 2, + ACTIONS(17049), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [300377] = 3, + anon_sym_GT2, + [364786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8947), 1, - anon_sym_LBRACE, - STATE(4865), 1, - sym_field_declaration_list, - [300387] = 3, + ACTIONS(17051), 1, + anon_sym_LPAREN2, + ACTIONS(17053), 1, + sym_raw_string_delimiter, + [364796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8947), 1, + ACTIONS(13495), 1, anon_sym_LBRACE, - STATE(4866), 1, - sym_field_declaration_list, - [300397] = 2, + STATE(4756), 1, + sym_compound_statement, + [364806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12706), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [300405] = 3, + ACTIONS(17055), 1, + anon_sym_LPAREN2, + ACTIONS(17057), 1, + sym_raw_string_delimiter, + [364816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9931), 1, + ACTIONS(305), 1, anon_sym_LBRACE, - STATE(4306), 1, + STATE(415), 1, sym_compound_statement, - [300415] = 3, + [364826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10764), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym_compound_statement, - [300425] = 3, - ACTIONS(10266), 1, + STATE(3833), 1, + sym_field_declaration_list, + [364836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17059), 1, + anon_sym_LPAREN2, + ACTIONS(17061), 1, + sym_raw_string_delimiter, + [364846] = 3, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13603), 1, + ACTIONS(17063), 1, aux_sym_preproc_include_token2, - ACTIONS(13605), 1, + ACTIONS(17065), 1, sym_preproc_arg, - [300435] = 2, + [364856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13314), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [300443] = 2, + ACTIONS(17067), 1, + anon_sym_LPAREN2, + ACTIONS(17069), 1, + sym_raw_string_delimiter, + [364866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13607), 2, - anon_sym_COMMA, - anon_sym_GT2, - [300451] = 2, + ACTIONS(17071), 1, + anon_sym_LPAREN2, + ACTIONS(17073), 1, + sym_raw_string_delimiter, + [364876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [300459] = 3, + ACTIONS(17075), 1, + anon_sym_LPAREN2, + ACTIONS(17077), 1, + sym_raw_string_delimiter, + [364886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17079), 1, + anon_sym_LPAREN2, + ACTIONS(17081), 1, + sym_raw_string_delimiter, + [364896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(9596), 1, anon_sym_LBRACE, - STATE(4096), 1, + STATE(4263), 1, sym_field_declaration_list, - [300469] = 3, + [364906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17083), 1, + anon_sym_LPAREN2, + ACTIONS(17085), 1, + sym_raw_string_delimiter, + [364916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17087), 1, + anon_sym_LPAREN2, + ACTIONS(17089), 1, + sym_raw_string_delimiter, + [364926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17091), 1, + anon_sym_LPAREN2, + ACTIONS(17093), 1, + sym_raw_string_delimiter, + [364936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17095), 1, + anon_sym_LPAREN2, + ACTIONS(17097), 1, + sym_raw_string_delimiter, + [364946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17099), 1, + anon_sym_LPAREN2, + ACTIONS(17101), 1, + sym_raw_string_delimiter, + [364956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17103), 1, + anon_sym_LPAREN2, + ACTIONS(17105), 1, + sym_raw_string_delimiter, + [364966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17107), 1, + anon_sym_LPAREN2, + ACTIONS(17109), 1, + sym_raw_string_delimiter, + [364976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17111), 1, + anon_sym_LPAREN2, + ACTIONS(17113), 1, + sym_raw_string_delimiter, + [364986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(4079), 1, + STATE(2036), 1, sym_field_declaration_list, - [300479] = 3, + [364996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13535), 1, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(10215), 1, + sym_condition_clause, + [365006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11895), 1, anon_sym_LT, - STATE(2391), 1, + STATE(2525), 1, sym_template_argument_list, - [300489] = 3, + [365016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11175), 1, - anon_sym_RBRACE, - ACTIONS(13477), 1, - anon_sym_COMMA, - [300499] = 2, + ACTIONS(16151), 1, + anon_sym_LPAREN2, + STATE(201), 1, + sym_condition_clause, + [365026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13609), 2, + ACTIONS(17115), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [300507] = 3, + anon_sym_SEMI, + [365034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(8040), 1, - sym_parenthesized_expression, - [300517] = 3, + ACTIONS(16685), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [365042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9945), 1, + ACTIONS(4562), 1, anon_sym_LBRACE, - STATE(5795), 1, - sym_compound_statement, - [300527] = 3, + STATE(7265), 1, + sym_initializer_list, + [365052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9933), 1, - anon_sym_LBRACE, - STATE(3552), 1, - sym_compound_statement, - [300537] = 3, + ACTIONS(16887), 1, + anon_sym_LT, + STATE(3605), 1, + sym_template_argument_list, + [365062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9949), 1, + ACTIONS(1796), 1, anon_sym_LBRACE, - STATE(1643), 1, + STATE(1143), 1, sym_compound_statement, - [300547] = 3, + [365072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10752), 1, - anon_sym_LBRACE, - STATE(2172), 1, - sym_compound_statement, - [300557] = 2, + ACTIONS(14501), 1, + anon_sym_RBRACE, + ACTIONS(16871), 1, + anon_sym_COMMA, + [365082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12688), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [300565] = 3, + ACTIONS(17117), 1, + anon_sym_DQUOTE, + [365089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13611), 1, - anon_sym_LPAREN2, - ACTIONS(13613), 1, + ACTIONS(17119), 1, + anon_sym_RPAREN, + [365096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17121), 1, + anon_sym_SEMI, + [365103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17123), 1, sym_raw_string_delimiter, - [300575] = 3, + [365110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_compound_statement, - [300585] = 3, - ACTIONS(10266), 1, + ACTIONS(17125), 1, + anon_sym_RPAREN, + [365117] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13615), 1, - aux_sym_preproc_include_token2, - ACTIONS(13617), 1, - sym_preproc_arg, - [300595] = 3, + ACTIONS(17127), 1, + anon_sym_SEMI, + [365124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, + ACTIONS(13955), 1, anon_sym_LBRACE, - STATE(3962), 1, - sym_field_declaration_list, - [300605] = 3, + [365131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym_compound_statement, - [300615] = 3, + ACTIONS(17129), 1, + anon_sym_GT_GT, + [365138] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17131), 1, + aux_sym_preproc_include_token2, + [365145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3965), 1, - sym_field_declaration_list, - [300625] = 3, + ACTIONS(17133), 1, + anon_sym_SEMI, + [365152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3966), 1, - sym_field_declaration_list, - [300635] = 3, + ACTIONS(12285), 1, + anon_sym_SEMI, + [365159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3968), 1, - sym_field_declaration_list, - [300645] = 3, + ACTIONS(17135), 1, + anon_sym_SEMI, + [365166] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17137), 1, + aux_sym_preproc_include_token2, + [365173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - STATE(4914), 1, - sym_initializer_list, - [300655] = 3, + ACTIONS(17139), 1, + sym_identifier, + [365180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, - anon_sym_LBRACE, - STATE(252), 1, - sym_compound_statement, - [300665] = 3, + ACTIONS(17141), 1, + anon_sym_RPAREN, + [365187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_LBRACE, - STATE(712), 1, - sym_declaration_list, - [300675] = 3, + ACTIONS(17143), 1, + anon_sym_while, + [365194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13619), 1, - anon_sym_RBRACE, - [300685] = 2, + ACTIONS(17145), 1, + anon_sym_RPAREN, + [365201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [300693] = 3, + ACTIONS(17147), 1, + sym_identifier, + [365208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8947), 1, - anon_sym_LBRACE, - STATE(4870), 1, - sym_field_declaration_list, - [300703] = 3, + ACTIONS(17149), 1, + anon_sym_SEMI, + [365215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17151), 1, anon_sym_LBRACE, - STATE(1643), 1, - sym_compound_statement, - [300713] = 3, + [365222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13621), 1, - anon_sym_RBRACE, - [300723] = 3, + ACTIONS(10129), 1, + anon_sym_SEMI, + [365229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(3042), 1, - sym_field_declaration_list, - [300733] = 3, + ACTIONS(17153), 1, + anon_sym_RBRACE, + [365236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10730), 1, - anon_sym_LBRACE, - STATE(1736), 1, - sym_compound_statement, - [300743] = 3, + ACTIONS(17155), 1, + anon_sym_RPAREN, + [365243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5680), 1, - anon_sym_LBRACE, - STATE(2299), 1, - sym_field_declaration_list, - [300753] = 3, + ACTIONS(17157), 1, + anon_sym_RPAREN, + [365250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9949), 1, - anon_sym_LBRACE, - STATE(1642), 1, - sym_compound_statement, - [300763] = 2, + ACTIONS(17159), 1, + sym_raw_string_delimiter, + [365257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13623), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [300771] = 3, + ACTIONS(14501), 1, + anon_sym_RBRACE, + [365264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12139), 1, + ACTIONS(10829), 1, sym_identifier, - STATE(1891), 1, - sym_template_type, - [300781] = 3, + [365271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, - anon_sym_COMMA, - ACTIONS(13625), 1, - anon_sym_RBRACE, - [300791] = 3, + ACTIONS(17161), 1, + anon_sym_DQUOTE, + [365278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_LBRACE, - STATE(4083), 1, - sym_field_declaration_list, - [300801] = 3, + ACTIONS(12345), 1, + anon_sym_SEMI, + [365285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13627), 1, - anon_sym_LPAREN2, - ACTIONS(13629), 1, - sym_raw_string_delimiter, - [300811] = 2, + ACTIONS(17163), 1, + aux_sym_preproc_if_token2, + [365292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13631), 2, - anon_sym_COMMA, + ACTIONS(17165), 1, + sym_raw_string_content, + [365299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17167), 1, anon_sym_RPAREN, - [300819] = 3, + [365306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17169), 1, + anon_sym_SEMI, + [365313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, + ACTIONS(13919), 1, anon_sym_LBRACE, - STATE(476), 1, - sym_compound_statement, - [300829] = 3, + [365320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 1, - anon_sym_COLON_COLON, - ACTIONS(13633), 1, + ACTIONS(17171), 1, anon_sym_SEMI, - [300839] = 3, + [365327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13635), 1, - anon_sym_LPAREN2, - ACTIONS(13637), 1, - sym_raw_string_delimiter, - [300849] = 2, + ACTIONS(17129), 1, + anon_sym_EQ, + [365334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12782), 2, - anon_sym_COMMA, + ACTIONS(17173), 1, anon_sym_RPAREN, - [300857] = 3, + [365341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13639), 1, - anon_sym_LPAREN2, - ACTIONS(13641), 1, - sym_raw_string_delimiter, - [300867] = 3, + ACTIONS(17175), 1, + anon_sym_SEMI, + [365348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13643), 1, - anon_sym_LPAREN2, - ACTIONS(13645), 1, - sym_raw_string_delimiter, - [300877] = 2, - ACTIONS(3), 1, + ACTIONS(17177), 1, + anon_sym_SEMI, + [365355] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13647), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [300885] = 3, + ACTIONS(17179), 1, + aux_sym_preproc_include_token2, + [365362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13649), 1, - anon_sym_LPAREN2, - ACTIONS(13651), 1, - sym_raw_string_delimiter, - [300895] = 3, + ACTIONS(17181), 1, + anon_sym_LBRACE, + [365369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13653), 1, - anon_sym_LPAREN2, - ACTIONS(13655), 1, - sym_raw_string_delimiter, - [300905] = 3, + ACTIONS(12267), 1, + anon_sym_SEMI, + [365376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13657), 1, + ACTIONS(17183), 1, anon_sym_LPAREN2, - ACTIONS(13659), 1, - sym_raw_string_delimiter, - [300915] = 3, + [365383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13661), 1, - anon_sym_LPAREN2, - ACTIONS(13663), 1, - sym_raw_string_delimiter, - [300925] = 3, + ACTIONS(11324), 1, + sym_identifier, + [365390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13665), 1, - anon_sym_LPAREN2, - ACTIONS(13667), 1, - sym_raw_string_delimiter, - [300935] = 3, + ACTIONS(17185), 1, + anon_sym_RPAREN, + [365397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13669), 1, - anon_sym_LPAREN2, - ACTIONS(13671), 1, - sym_raw_string_delimiter, - [300945] = 3, + ACTIONS(17187), 1, + sym_identifier, + [365404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13673), 1, - anon_sym_LPAREN2, - ACTIONS(13675), 1, - sym_raw_string_delimiter, - [300955] = 3, + ACTIONS(17189), 1, + anon_sym_RPAREN, + [365411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13677), 1, - anon_sym_LPAREN2, - ACTIONS(13679), 1, - sym_raw_string_delimiter, - [300965] = 3, + ACTIONS(17191), 1, + sym_identifier, + [365418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13681), 1, - anon_sym_LPAREN2, - ACTIONS(13683), 1, - sym_raw_string_delimiter, - [300975] = 3, + ACTIONS(17193), 1, + anon_sym_RPAREN, + [365425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13685), 1, - anon_sym_LPAREN2, - ACTIONS(13687), 1, - sym_raw_string_delimiter, - [300985] = 3, + ACTIONS(17195), 1, + anon_sym_SEMI, + [365432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13689), 1, - anon_sym_LPAREN2, - ACTIONS(13691), 1, - sym_raw_string_delimiter, - [300995] = 3, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13693), 1, - aux_sym_preproc_include_token2, - ACTIONS(13695), 1, - sym_preproc_arg, - [301005] = 3, + ACTIONS(17197), 1, + aux_sym_preproc_if_token2, + [365439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(1642), 1, - sym_compound_statement, - [301015] = 3, + ACTIONS(12638), 1, + anon_sym_RPAREN, + [365446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8696), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - [301025] = 2, + ACTIONS(17129), 1, + anon_sym_CARET, + [365453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13697), 1, - anon_sym_EQ, - [301032] = 2, + ACTIONS(17199), 1, + anon_sym_RPAREN, + [365460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11191), 1, - anon_sym_RBRACE, - [301039] = 2, + ACTIONS(17201), 1, + sym_identifier, + [365467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13699), 1, - anon_sym_SEMI, - [301046] = 2, + ACTIONS(14103), 1, + anon_sym_LBRACE, + [365474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13701), 1, - anon_sym_DQUOTE, - [301053] = 2, + ACTIONS(17203), 1, + anon_sym_RPAREN, + [365481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13703), 1, + ACTIONS(17205), 1, anon_sym_SEMI, - [301060] = 2, + [365488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13705), 1, + ACTIONS(17207), 1, anon_sym_RPAREN, - [301067] = 2, + [365495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 1, + ACTIONS(12403), 1, anon_sym_RPAREN, - [301074] = 2, + [365502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13707), 1, - sym_identifier, - [301081] = 2, + ACTIONS(12134), 1, + anon_sym_RBRACE, + [365509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13709), 1, - sym_identifier, - [301088] = 2, + ACTIONS(17209), 1, + anon_sym_RPAREN, + [365516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13711), 1, + ACTIONS(17211), 1, anon_sym_RPAREN, - [301095] = 2, + [365523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13713), 1, - anon_sym_SEMI, - [301102] = 2, + ACTIONS(17213), 1, + sym_identifier, + [365530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_COMMA, - [301109] = 2, + ACTIONS(17215), 1, + sym_identifier, + [365537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13717), 1, - anon_sym_DQUOTE, - [301116] = 2, + ACTIONS(17129), 1, + anon_sym_PIPE_PIPE, + [365544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13719), 1, - anon_sym_LPAREN2, - [301123] = 2, + ACTIONS(17217), 1, + sym_identifier, + [365551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(17219), 1, anon_sym_SEMI, - [301130] = 2, + [365558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13723), 1, - anon_sym_RPAREN, - [301137] = 2, - ACTIONS(3), 1, + ACTIONS(17221), 1, + anon_sym_SEMI, + [365565] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(13725), 1, - anon_sym_RPAREN, - [301144] = 2, + ACTIONS(16221), 1, + aux_sym_preproc_include_token2, + [365572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13727), 1, - anon_sym_DQUOTE, - [301151] = 2, + ACTIONS(17223), 1, + anon_sym_RPAREN, + [365579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12416), 1, + ACTIONS(17225), 1, anon_sym_SEMI, - [301158] = 2, + [365586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13729), 1, - anon_sym_DQUOTE, - [301165] = 2, + ACTIONS(14511), 1, + anon_sym_RBRACE, + [365593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13731), 1, - anon_sym_RPAREN, - [301172] = 2, + ACTIONS(17227), 1, + anon_sym_DQUOTE, + [365600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11181), 1, - anon_sym_RBRACE, - [301179] = 2, + ACTIONS(17229), 1, + sym_identifier, + [365607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12058), 1, - anon_sym_COLON, - [301186] = 2, + ACTIONS(17231), 1, + anon_sym_DQUOTE, + [365614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_GT_EQ, - [301193] = 2, + ACTIONS(17233), 1, + anon_sym_SEMI, + [365621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13733), 1, + ACTIONS(9312), 1, sym_identifier, - [301200] = 2, + [365628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(17235), 1, anon_sym_SEMI, - [301207] = 2, + [365635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13735), 1, + ACTIONS(17237), 1, anon_sym_RPAREN, - [301214] = 2, + [365642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13737), 1, - anon_sym_SEMI, - [301221] = 2, + ACTIONS(12379), 1, + anon_sym_COLON, + [365649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13739), 1, - anon_sym_SEMI, - [301228] = 2, + ACTIONS(17239), 1, + anon_sym_STAR, + [365656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13741), 1, - anon_sym_DQUOTE, - [301235] = 2, + ACTIONS(16873), 1, + anon_sym_RBRACE, + [365663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13743), 1, + ACTIONS(17241), 1, anon_sym_RPAREN, - [301242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12345), 1, - anon_sym_SEMI, - [301249] = 2, + [365670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_LT_EQ, - [301256] = 2, + ACTIONS(17243), 1, + anon_sym_RPAREN, + [365677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(17245), 1, anon_sym_RPAREN, - [301263] = 2, + [365684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8891), 1, - anon_sym_RBRACE, - [301270] = 2, + ACTIONS(17247), 1, + anon_sym_RPAREN, + [365691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10657), 1, + ACTIONS(17249), 1, sym_identifier, - [301277] = 2, + [365698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13745), 1, - anon_sym_SEMI, - [301284] = 2, + ACTIONS(17251), 1, + anon_sym_RPAREN, + [365705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11652), 1, + ACTIONS(17253), 1, anon_sym_SEMI, - [301291] = 2, + [365712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PIPE_PIPE, - [301298] = 2, + ACTIONS(17255), 1, + aux_sym_preproc_if_token2, + [365719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, - anon_sym_EQ, - [301305] = 2, + ACTIONS(17257), 1, + sym_auto, + [365726] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17259), 1, + aux_sym_preproc_include_token2, + [365733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9145), 1, + ACTIONS(17261), 1, anon_sym_RPAREN, - [301312] = 2, + [365740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9091), 1, - anon_sym_SEMI, - [301319] = 2, + ACTIONS(17263), 1, + sym_identifier, + [365747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11183), 1, + ACTIONS(14473), 1, anon_sym_RBRACE, - [301326] = 2, + [365754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9348), 1, - anon_sym_RPAREN, - [301333] = 2, + ACTIONS(17265), 1, + anon_sym_SEMI, + [365761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13747), 1, + ACTIONS(17267), 1, anon_sym_SEMI, - [301340] = 2, - ACTIONS(10266), 1, + [365768] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13255), 1, - aux_sym_preproc_include_token2, - [301347] = 2, + ACTIONS(17269), 1, + anon_sym_RPAREN, + [365775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13749), 1, - aux_sym_preproc_if_token2, - [301354] = 2, + ACTIONS(15578), 1, + anon_sym_SEMI, + [365782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13751), 1, - sym_identifier, - [301361] = 2, + ACTIONS(12515), 1, + anon_sym_RPAREN, + [365789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13753), 1, - sym_identifier, - [301368] = 2, + ACTIONS(12045), 1, + anon_sym_RBRACE, + [365796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_LT, - [301375] = 2, + ACTIONS(17271), 1, + anon_sym_RPAREN, + [365803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(17273), 1, anon_sym_RPAREN, - [301382] = 2, + [365810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_LT_LT, - [301389] = 2, + ACTIONS(17275), 1, + anon_sym_RPAREN, + [365817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_DASH, - [301396] = 2, + ACTIONS(17277), 1, + anon_sym_SEMI, + [365824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13755), 1, + ACTIONS(10482), 1, anon_sym_RPAREN, - [301403] = 2, + [365831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13757), 1, - anon_sym_DQUOTE, - [301410] = 2, + ACTIONS(17279), 1, + anon_sym_STAR, + [365838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13759), 1, - anon_sym_SEMI, - [301417] = 2, + ACTIONS(17281), 1, + anon_sym_LPAREN2, + [365845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13761), 1, - anon_sym_COLON, - [301424] = 2, + ACTIONS(17283), 1, + anon_sym_SEMI, + [365852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_AMP_AMP, - [301431] = 2, + ACTIONS(14527), 1, + anon_sym_RBRACE, + [365859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13763), 1, - sym_identifier, - [301438] = 2, + ACTIONS(17285), 1, + anon_sym_STAR, + [365866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13765), 1, + ACTIONS(17287), 1, anon_sym_RPAREN, - [301445] = 2, + [365873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13767), 1, + ACTIONS(10518), 1, anon_sym_RPAREN, - [301452] = 2, + [365880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13769), 1, + ACTIONS(17289), 1, sym_identifier, - [301459] = 2, + [365887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13771), 1, - anon_sym_STAR, - [301466] = 2, - ACTIONS(3), 1, + ACTIONS(17291), 1, + anon_sym_RPAREN, + [365894] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(9069), 1, - anon_sym_SEMI, - [301473] = 2, + ACTIONS(17293), 1, + aux_sym_preproc_include_token2, + [365901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13773), 1, - anon_sym_STAR, - [301480] = 2, + ACTIONS(17295), 1, + anon_sym_RPAREN, + [365908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13775), 1, - anon_sym_SEMI, - [301487] = 2, + ACTIONS(17297), 1, + anon_sym_RPAREN, + [365915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13777), 1, - anon_sym_DQUOTE, - [301494] = 2, + ACTIONS(17299), 1, + anon_sym_RPAREN, + [365922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13779), 1, + ACTIONS(17301), 1, sym_identifier, - [301501] = 2, + [365929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13781), 1, - aux_sym_preproc_if_token2, - [301508] = 2, + ACTIONS(17303), 1, + anon_sym_RPAREN, + [365936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13783), 1, - anon_sym_RBRACK, - [301515] = 2, + ACTIONS(17305), 1, + sym_auto, + [365943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13785), 1, - anon_sym_DQUOTE, - [301522] = 2, + ACTIONS(17307), 1, + anon_sym_RPAREN, + [365950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13787), 1, - sym_identifier, - [301529] = 2, + ACTIONS(17309), 1, + anon_sym_RPAREN, + [365957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13789), 1, - anon_sym_DQUOTE, - [301536] = 2, + ACTIONS(17311), 1, + anon_sym_RPAREN, + [365964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(17313), 1, sym_identifier, - [301543] = 2, + [365971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13791), 1, - anon_sym_COLON, - [301550] = 2, + ACTIONS(17315), 1, + anon_sym_RPAREN, + [365978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13793), 1, - anon_sym_RPAREN, - [301557] = 2, + ACTIONS(17317), 1, + aux_sym_preproc_if_token2, + [365985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PIPE, - [301564] = 2, + ACTIONS(17319), 1, + aux_sym_preproc_if_token2, + [365992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - [301571] = 2, + ACTIONS(17321), 1, + aux_sym_preproc_if_token2, + [365999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13797), 1, - sym_identifier, - [301578] = 2, - ACTIONS(10266), 1, + ACTIONS(17323), 1, + anon_sym_RPAREN, + [366006] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13799), 1, + ACTIONS(17129), 1, + anon_sym_PIPE, + [366013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12221), 1, + anon_sym_COLON, + [366020] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17325), 1, aux_sym_preproc_include_token2, - [301585] = 2, + [366027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13801), 1, - aux_sym_preproc_if_token2, - [301592] = 2, + ACTIONS(17327), 1, + anon_sym_RPAREN, + [366034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13803), 1, - sym_identifier, - [301599] = 2, + ACTIONS(14833), 1, + anon_sym_SEMI, + [366041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13805), 1, - sym_identifier, - [301606] = 2, + ACTIONS(17329), 1, + anon_sym_RPAREN, + [366048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_bitand, - [301613] = 2, + ACTIONS(17331), 1, + anon_sym_SEMI, + [366055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13807), 1, + ACTIONS(17333), 1, anon_sym_RPAREN, - [301620] = 2, + [366062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13809), 1, + ACTIONS(12652), 1, anon_sym_RPAREN, - [301627] = 2, + [366069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13811), 1, - anon_sym_SEMI, - [301634] = 2, + ACTIONS(17335), 1, + sym_identifier, + [366076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_bitor, - [301641] = 2, + ACTIONS(17337), 1, + anon_sym_RPAREN, + [366083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13813), 1, + ACTIONS(17339), 1, anon_sym_RPAREN, - [301648] = 2, + [366090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13815), 1, + ACTIONS(17341), 1, + sym_identifier, + [366097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17343), 1, anon_sym_RPAREN, - [301655] = 2, + [366104] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17345), 1, + aux_sym_preproc_include_token2, + [366111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13817), 1, + ACTIONS(17347), 1, anon_sym_RPAREN, - [301662] = 2, + [366118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9119), 1, - anon_sym_SEMI, - [301669] = 2, + ACTIONS(17349), 1, + sym_raw_string_delimiter, + [366125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13819), 1, - anon_sym_LPAREN2, - [301676] = 2, + ACTIONS(16871), 1, + anon_sym_COMMA, + [366132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13821), 1, + ACTIONS(17351), 1, + sym_identifier, + [366139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12591), 1, anon_sym_RPAREN, - [301683] = 2, + [366146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13823), 1, + ACTIONS(17353), 1, anon_sym_RPAREN, - [301690] = 2, + [366153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_CARET, - [301697] = 2, + ACTIONS(10164), 1, + anon_sym_SEMI, + [366160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13825), 1, + ACTIONS(17355), 1, anon_sym_LPAREN2, - [301704] = 2, + [366167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13827), 1, - anon_sym_RPAREN, - [301711] = 2, + ACTIONS(14720), 1, + anon_sym_LBRACE, + [366174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13829), 1, + ACTIONS(17357), 1, anon_sym_RPAREN, - [301718] = 2, + [366181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13831), 1, - sym_identifier, - [301725] = 2, + ACTIONS(12273), 1, + anon_sym_COLON, + [366188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13833), 1, - anon_sym_RPAREN, - [301732] = 2, + ACTIONS(17359), 1, + anon_sym_COLON, + [366195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13835), 1, - sym_auto, - [301739] = 2, + ACTIONS(17361), 1, + anon_sym_SEMI, + [366202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13837), 1, - anon_sym_SEMI, - [301746] = 2, + ACTIONS(17363), 1, + anon_sym_RPAREN, + [366209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, + ACTIONS(17365), 1, anon_sym_SEMI, - [301753] = 2, + [366216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13841), 1, + ACTIONS(17367), 1, sym_identifier, - [301760] = 2, + [366223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13843), 1, - anon_sym_SEMI, - [301767] = 2, + ACTIONS(17369), 1, + anon_sym_RPAREN, + [366230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13845), 1, + ACTIONS(17371), 1, anon_sym_RPAREN, - [301774] = 2, + [366237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13527), 1, - anon_sym_RBRACE, - [301781] = 2, + ACTIONS(17373), 1, + sym_identifier, + [366244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13847), 1, + ACTIONS(17375), 1, anon_sym_RPAREN, - [301788] = 2, + [366251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(17377), 1, anon_sym_RPAREN, - [301795] = 2, + [366258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13851), 1, - anon_sym_COLON, - [301802] = 2, + ACTIONS(17379), 1, + sym_identifier, + [366265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_AMP, - [301809] = 2, + ACTIONS(17381), 1, + anon_sym_SEMI, + [366272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9083), 1, + ACTIONS(12311), 1, anon_sym_SEMI, - [301816] = 2, + [366279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11625), 1, - anon_sym_SEMI, - [301823] = 2, + ACTIONS(17383), 1, + anon_sym_DQUOTE, + [366286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, - aux_sym_preproc_if_token2, - [301830] = 2, + ACTIONS(17385), 1, + sym_identifier, + [366293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, - anon_sym_SEMI, - [301837] = 2, + ACTIONS(17387), 1, + anon_sym_RPAREN, + [366300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13857), 1, - anon_sym_LPAREN2, - [301844] = 2, + ACTIONS(17389), 1, + anon_sym_STAR, + [366307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, - sym_identifier, - [301851] = 2, + ACTIONS(17391), 1, + anon_sym_RPAREN, + [366314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13861), 1, + ACTIONS(17393), 1, anon_sym_DQUOTE, - [301858] = 2, + [366321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8931), 1, + ACTIONS(15443), 1, anon_sym_SEMI, - [301865] = 2, + [366328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13863), 1, - sym_identifier, - [301872] = 2, + ACTIONS(15387), 1, + anon_sym_SEMI, + [366335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13865), 1, - anon_sym_DQUOTE, - [301879] = 2, + ACTIONS(12700), 1, + anon_sym_RPAREN, + [366342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13867), 1, - ts_builtin_sym_end, - [301886] = 2, + ACTIONS(17395), 1, + anon_sym_RPAREN, + [366349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, - anon_sym_RPAREN, - [301893] = 2, + ACTIONS(12112), 1, + anon_sym_RBRACE, + [366356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9071), 1, + ACTIONS(17397), 1, anon_sym_SEMI, - [301900] = 2, + [366363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, - anon_sym_DQUOTE, - [301907] = 2, + ACTIONS(17399), 1, + sym_identifier, + [366370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, - anon_sym_RPAREN, - [301914] = 2, + ACTIONS(6013), 1, + anon_sym_SEMI, + [366377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, - sym_raw_string_delimiter, - [301921] = 2, + ACTIONS(17401), 1, + anon_sym_SEMI, + [366384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, - anon_sym_DQUOTE, - [301928] = 2, + ACTIONS(17129), 1, + anon_sym_AMP, + [366391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13879), 1, - anon_sym_SEMI, - [301935] = 2, + ACTIONS(17403), 1, + anon_sym_LPAREN2, + [366398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12446), 1, + ACTIONS(14779), 1, anon_sym_SEMI, - [301942] = 2, + [366405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - sym_identifier, - [301949] = 2, + ACTIONS(14722), 1, + anon_sym_LBRACE, + [366412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, + ACTIONS(17405), 1, anon_sym_SEMI, - [301956] = 2, + [366419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13883), 1, + ACTIONS(17407), 1, anon_sym_SEMI, - [301963] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(12885), 1, - aux_sym_preproc_include_token2, - [301970] = 2, + [366426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11693), 1, - anon_sym_SEMI, - [301977] = 2, + ACTIONS(17409), 1, + anon_sym_LPAREN2, + [366433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13885), 1, - anon_sym_while, - [301984] = 2, + ACTIONS(5982), 1, + anon_sym_SEMI, + [366440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PLUS, - [301991] = 2, + ACTIONS(17411), 1, + anon_sym_COMMA, + [366447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13887), 1, + ACTIONS(17413), 1, anon_sym_RPAREN, - [301998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13889), 1, - aux_sym_preproc_if_token2, - [302005] = 2, + [366454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13891), 1, - aux_sym_preproc_if_token2, - [302012] = 2, + ACTIONS(17415), 1, + anon_sym_SEMI, + [366461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13893), 1, - anon_sym_RPAREN, - [302019] = 2, + ACTIONS(17417), 1, + anon_sym_SEMI, + [366468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(17419), 1, sym_identifier, - [302026] = 2, + [366475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13895), 1, - anon_sym_RPAREN, - [302033] = 2, + ACTIONS(12277), 1, + anon_sym_SEMI, + [366482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9133), 1, - anon_sym_COLON, - [302040] = 2, + ACTIONS(17421), 1, + anon_sym_RPAREN, + [366489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(17423), 1, sym_identifier, - [302047] = 2, + [366496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13899), 1, - sym_identifier, - [302054] = 2, + ACTIONS(16905), 1, + anon_sym_RBRACE, + [366503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13901), 1, - anon_sym_SEMI, - [302061] = 2, + ACTIONS(17425), 1, + sym_auto, + [366510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13903), 1, - anon_sym_RPAREN, - [302068] = 2, - ACTIONS(10266), 1, + ACTIONS(17427), 1, + sym_raw_string_delimiter, + [366517] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13905), 1, - aux_sym_preproc_include_token2, - [302075] = 2, + ACTIONS(17429), 1, + sym_identifier, + [366524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13907), 1, + ACTIONS(17431), 1, anon_sym_SEMI, - [302082] = 2, + [366531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, - sym_identifier, - [302089] = 2, + ACTIONS(17433), 1, + anon_sym_RPAREN, + [366538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13911), 1, - anon_sym_SEMI, - [302096] = 2, + ACTIONS(17435), 1, + anon_sym_RPAREN, + [366545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_and, - [302103] = 2, + ACTIONS(17437), 1, + aux_sym_preproc_if_token2, + [366552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13913), 1, + ACTIONS(17439), 1, anon_sym_SEMI, - [302110] = 2, + [366559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13915), 1, - sym_auto, - [302117] = 2, + ACTIONS(17441), 1, + anon_sym_DQUOTE, + [366566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_STAR, - [302124] = 2, + ACTIONS(14724), 1, + anon_sym_LBRACE, + [366573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13919), 1, - anon_sym_DQUOTE, - [302131] = 2, + ACTIONS(17443), 1, + anon_sym_LPAREN2, + [366580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13921), 1, + ACTIONS(12327), 1, anon_sym_SEMI, - [302138] = 2, + [366587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13923), 1, - anon_sym_DQUOTE, - [302145] = 2, + ACTIONS(12461), 1, + anon_sym_RPAREN, + [366594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13925), 1, + ACTIONS(17445), 1, anon_sym_RPAREN, - [302152] = 2, + [366601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13927), 1, - anon_sym_LPAREN2, - [302159] = 2, + ACTIONS(12124), 1, + anon_sym_RBRACE, + [366608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13929), 1, + ACTIONS(14813), 1, anon_sym_SEMI, - [302166] = 2, + [366615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13931), 1, + ACTIONS(17447), 1, anon_sym_SEMI, - [302173] = 2, + [366622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13933), 1, - anon_sym_STAR, - [302180] = 2, + ACTIONS(17449), 1, + sym_raw_string_content, + [366629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13935), 1, + ACTIONS(17451), 1, sym_identifier, - [302187] = 2, + [366636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13032), 1, - anon_sym_SEMI, - [302194] = 2, + ACTIONS(14517), 1, + anon_sym_RBRACE, + [366643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - sym_identifier, - [302201] = 2, + ACTIONS(17453), 1, + anon_sym_RPAREN, + [366650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13939), 1, - anon_sym_SEMI, - [302208] = 2, + ACTIONS(17455), 1, + sym_identifier, + [366657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13941), 1, - anon_sym_LPAREN2, - [302215] = 2, + ACTIONS(17457), 1, + anon_sym_DQUOTE, + [366664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13943), 1, - aux_sym_preproc_if_token2, - [302222] = 2, + ACTIONS(17459), 1, + anon_sym_RPAREN, + [366671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13945), 1, - anon_sym_DQUOTE, - [302229] = 2, + ACTIONS(17461), 1, + sym_raw_string_delimiter, + [366678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13947), 1, - anon_sym_SEMI, - [302236] = 2, - ACTIONS(10266), 1, + ACTIONS(17463), 1, + aux_sym_preproc_if_token2, + [366685] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13949), 1, - aux_sym_preproc_include_token2, - [302243] = 2, + ACTIONS(17465), 1, + sym_identifier, + [366692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 1, + ACTIONS(12525), 1, anon_sym_RPAREN, - [302250] = 2, + [366699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13951), 1, - anon_sym_SEMI, - [302257] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13953), 1, - aux_sym_preproc_include_token2, - [302264] = 2, - ACTIONS(10266), 1, + ACTIONS(17467), 1, + sym_identifier, + [366706] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13955), 1, - aux_sym_preproc_include_token2, - [302271] = 2, - ACTIONS(10266), 1, + ACTIONS(17469), 1, + aux_sym_preproc_if_token2, + [366713] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13957), 1, - aux_sym_preproc_include_token2, - [302278] = 2, + ACTIONS(12323), 1, + anon_sym_COLON, + [366720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13959), 1, - sym_identifier, - [302285] = 2, + ACTIONS(12656), 1, + anon_sym_RPAREN, + [366727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13961), 1, - anon_sym_SEMI, - [302292] = 2, + ACTIONS(17471), 1, + anon_sym_COLON, + [366734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13963), 1, - sym_auto, - [302299] = 2, + ACTIONS(14972), 1, + anon_sym_LBRACE, + [366741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13965), 1, + ACTIONS(17473), 1, anon_sym_STAR, - [302306] = 2, + [366748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - sym_identifier, - [302313] = 2, + ACTIONS(15735), 1, + anon_sym_SEMI, + [366755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13967), 1, + ACTIONS(17475), 1, anon_sym_RPAREN, - [302320] = 2, + [366762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13969), 1, - anon_sym_RPAREN, - [302327] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13971), 1, - aux_sym_preproc_include_token2, - [302334] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13973), 1, - aux_sym_preproc_include_token2, - [302341] = 2, + ACTIONS(14483), 1, + anon_sym_RBRACE, + [366769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13975), 1, - anon_sym_RPAREN, - [302348] = 2, - ACTIONS(10266), 1, + ACTIONS(17477), 1, + anon_sym_DQUOTE, + [366776] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12732), 1, - aux_sym_preproc_include_token2, - [302355] = 2, + ACTIONS(10162), 1, + anon_sym_SEMI, + [366783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13977), 1, - anon_sym_RPAREN, - [302362] = 2, + ACTIONS(11317), 1, + sym_identifier, + [366790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13062), 1, - anon_sym_LBRACE, - [302369] = 2, + ACTIONS(12353), 1, + anon_sym_SEMI, + [366797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13979), 1, + ACTIONS(12321), 1, anon_sym_COLON, - [302376] = 2, + [366804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13981), 1, - anon_sym_DQUOTE, - [302383] = 2, + ACTIONS(17129), 1, + anon_sym_CARET_EQ, + [366811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13983), 1, + ACTIONS(17479), 1, anon_sym_RPAREN, - [302390] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(13985), 1, - aux_sym_preproc_include_token2, - [302397] = 2, + [366818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13987), 1, + ACTIONS(11242), 1, sym_identifier, - [302404] = 2, + [366825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_RPAREN, - [302411] = 2, + ACTIONS(17129), 1, + anon_sym_not_eq, + [366832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13989), 1, - anon_sym_COLON, - [302418] = 2, + ACTIONS(17129), 1, + anon_sym_GT_EQ, + [366839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13991), 1, - aux_sym_preproc_if_token2, - [302425] = 2, + ACTIONS(17481), 1, + anon_sym_SEMI, + [366846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13993), 1, - anon_sym_SEMI, - [302432] = 2, + ACTIONS(17483), 1, + sym_identifier, + [366853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13995), 1, - anon_sym_RPAREN, - [302439] = 2, + ACTIONS(17485), 1, + anon_sym_LPAREN2, + [366860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13997), 1, - sym_raw_string_delimiter, - [302446] = 2, + ACTIONS(17487), 1, + anon_sym_DQUOTE, + [366867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13999), 1, + ACTIONS(14760), 1, anon_sym_SEMI, - [302453] = 2, + [366874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 1, - anon_sym_LBRACE, - [302460] = 2, + ACTIONS(17489), 1, + anon_sym_RPAREN, + [366881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14001), 1, - anon_sym_SEMI, - [302467] = 2, + ACTIONS(17491), 1, + anon_sym_RPAREN, + [366888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14003), 1, - anon_sym_SEMI, - [302474] = 2, + ACTIONS(17493), 1, + anon_sym_DQUOTE, + [366895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14005), 1, + ACTIONS(17495), 1, anon_sym_RPAREN, - [302481] = 2, + [366902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_not_eq, - [302488] = 2, + ACTIONS(17497), 1, + sym_identifier, + [366909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12456), 1, - anon_sym_SEMI, - [302495] = 2, + ACTIONS(17499), 1, + aux_sym_preproc_if_token2, + [366916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14007), 1, - sym_identifier, - [302502] = 2, + ACTIONS(17501), 1, + sym_auto, + [366923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_GT_GT, - [302509] = 2, + ACTIONS(17129), 1, + anon_sym_AMP_AMP, + [366930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14009), 1, + ACTIONS(17503), 1, anon_sym_RPAREN, - [302516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13715), 1, - anon_sym_EQ, - [302523] = 2, + [366937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14011), 1, - sym_identifier, - [302530] = 2, + ACTIONS(12315), 1, + anon_sym_RPAREN, + [366944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14013), 1, - sym_identifier, - [302537] = 2, + ACTIONS(17505), 1, + anon_sym_RPAREN, + [366951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14015), 1, - anon_sym_EQ, - [302544] = 2, + ACTIONS(17507), 1, + anon_sym_SEMI, + [366958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14017), 1, - aux_sym_preproc_if_token2, - [302551] = 2, + ACTIONS(17509), 1, + anon_sym_COLON, + [366965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14019), 1, + ACTIONS(17511), 1, anon_sym_SEMI, - [302558] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(14021), 1, - aux_sym_preproc_include_token2, - [302565] = 2, + [366972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14023), 1, - anon_sym_DQUOTE, - [302572] = 2, + ACTIONS(17513), 1, + anon_sym_RPAREN, + [366979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14025), 1, - anon_sym_STAR, - [302579] = 2, + ACTIONS(17515), 1, + anon_sym_LPAREN2, + [366986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(17517), 1, anon_sym_RPAREN, - [302586] = 2, + [366993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8887), 1, - anon_sym_RBRACE, - [302593] = 2, + ACTIONS(17129), 1, + anon_sym_STAR_EQ, + [367000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14027), 1, + ACTIONS(17129), 1, + anon_sym_DOT_STAR, + [367007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17519), 1, anon_sym_RPAREN, - [302600] = 2, + [367014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13479), 1, - anon_sym_RBRACE, - [302607] = 2, + ACTIONS(17521), 1, + anon_sym_SEMI, + [367021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 1, + ACTIONS(15586), 1, anon_sym_SEMI, - [302614] = 2, + [367028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14029), 1, + ACTIONS(17523), 1, sym_identifier, - [302621] = 2, + [367035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11211), 1, + ACTIONS(16915), 1, anon_sym_RBRACE, - [302628] = 2, - ACTIONS(3), 1, + [367042] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(11721), 1, - anon_sym_LBRACE, - [302635] = 2, + ACTIONS(13757), 1, + aux_sym_preproc_include_token2, + [367049] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17525), 1, + aux_sym_preproc_include_token2, + [367056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PIPE_EQ, - [302642] = 2, + ACTIONS(17527), 1, + anon_sym_RPAREN, + [367063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14031), 1, - anon_sym_STAR, - [302649] = 2, + ACTIONS(17529), 1, + anon_sym_RPAREN, + [367070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_EQ_EQ, - [302656] = 2, + ACTIONS(17531), 1, + sym_raw_string_delimiter, + [367077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_BANG_EQ, - [302663] = 2, + ACTIONS(17533), 1, + anon_sym_RPAREN, + [367084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14033), 1, + ACTIONS(17535), 1, sym_identifier, - [302670] = 2, + [367091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14035), 1, - anon_sym_LBRACE, - [302677] = 2, + ACTIONS(17537), 1, + anon_sym_SEMI, + [367098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14037), 1, - anon_sym_EQ, - [302684] = 2, + ACTIONS(17539), 1, + anon_sym_SEMI, + [367105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9077), 1, - anon_sym_RPAREN, - [302691] = 2, + ACTIONS(17541), 1, + anon_sym_LBRACE, + [367112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14039), 1, + ACTIONS(12674), 1, anon_sym_RPAREN, - [302698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14041), 1, - aux_sym_preproc_if_token2, - [302705] = 2, - ACTIONS(3), 1, + [367119] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(9123), 1, - anon_sym_SEMI, - [302712] = 2, + ACTIONS(17543), 1, + aux_sym_preproc_include_token2, + [367126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12395), 1, - anon_sym_SEMI, - [302719] = 2, + ACTIONS(17129), 1, + anon_sym_LT_LT, + [367133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14043), 1, - sym_identifier, - [302726] = 2, + ACTIONS(17545), 1, + anon_sym_RPAREN, + [367140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14045), 1, - anon_sym_SEMI, - [302733] = 2, + ACTIONS(17547), 1, + anon_sym_STAR, + [367147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14047), 1, - sym_auto, - [302740] = 2, + ACTIONS(17549), 1, + anon_sym_RPAREN, + [367154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9342), 1, + ACTIONS(17551), 1, anon_sym_RPAREN, - [302747] = 2, + [367161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14049), 1, - anon_sym_RPAREN, - [302754] = 2, + ACTIONS(17553), 1, + anon_sym_RBRACE, + [367168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14051), 1, - anon_sym_RPAREN, - [302761] = 2, + ACTIONS(17555), 1, + aux_sym_preproc_if_token2, + [367175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14053), 1, - anon_sym_RPAREN, - [302768] = 2, + ACTIONS(17129), 1, + anon_sym_LT, + [367182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14055), 1, + ACTIONS(17557), 1, anon_sym_RPAREN, - [302775] = 2, + [367189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10700), 1, - anon_sym_LBRACE, - [302782] = 2, + ACTIONS(17559), 1, + anon_sym_SEMI, + [367196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14057), 1, + ACTIONS(17561), 1, anon_sym_SEMI, - [302789] = 2, + [367203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14059), 1, - sym_raw_string_content, - [302796] = 2, + ACTIONS(17563), 1, + ts_builtin_sym_end, + [367210] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17565), 1, + aux_sym_preproc_include_token2, + [367217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7368), 1, - anon_sym_RPAREN, - [302803] = 2, + ACTIONS(12293), 1, + anon_sym_SEMI, + [367224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14061), 1, - anon_sym_RPAREN, - [302810] = 2, + ACTIONS(17567), 1, + anon_sym_DQUOTE, + [367231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14063), 1, - aux_sym_preproc_if_token2, - [302817] = 2, + ACTIONS(17569), 1, + anon_sym_DQUOTE, + [367238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14065), 1, - anon_sym_RPAREN, - [302824] = 2, + ACTIONS(17129), 1, + anon_sym_SLASH_EQ, + [367245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 1, + ACTIONS(17571), 1, anon_sym_RPAREN, - [302831] = 2, + [367252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_DOT_STAR, - [302838] = 2, + ACTIONS(17573), 1, + anon_sym_LPAREN2, + [367259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14067), 1, + ACTIONS(17575), 1, sym_identifier, - [302845] = 2, + [367266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14069), 1, + ACTIONS(17577), 1, anon_sym_SEMI, - [302852] = 2, + [367273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11668), 1, - anon_sym_LBRACE, - [302859] = 2, + ACTIONS(17579), 1, + anon_sym_RPAREN, + [367280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14071), 1, - sym_raw_string_content, - [302866] = 2, + ACTIONS(15431), 1, + anon_sym_SEMI, + [367287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14073), 1, - anon_sym_COLON, - [302873] = 2, + ACTIONS(17581), 1, + sym_identifier, + [367294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14075), 1, - anon_sym_RPAREN, - [302880] = 2, + ACTIONS(17583), 1, + aux_sym_preproc_if_token2, + [367301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14077), 1, - sym_raw_string_delimiter, - [302887] = 2, + ACTIONS(17585), 1, + sym_auto, + [367308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 1, + ACTIONS(17587), 1, anon_sym_RPAREN, - [302894] = 2, + [367315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7376), 1, - anon_sym_RPAREN, - [302901] = 2, + ACTIONS(17589), 1, + anon_sym_SEMI, + [367322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14079), 1, - anon_sym_RPAREN, - [302908] = 2, + ACTIONS(17591), 1, + anon_sym_SEMI, + [367329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9103), 1, + ACTIONS(17593), 1, anon_sym_RPAREN, - [302915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11872), 1, - anon_sym_LBRACE, - [302922] = 2, + [367336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14081), 1, + ACTIONS(17595), 1, anon_sym_SEMI, - [302929] = 2, + [367343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, - anon_sym_SEMI, - [302936] = 2, - ACTIONS(3), 1, + ACTIONS(17597), 1, + anon_sym_RPAREN, + [367350] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(14083), 1, - anon_sym_SEMI, - [302943] = 2, + ACTIONS(13795), 1, + aux_sym_preproc_include_token2, + [367357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_DASH_GT_STAR, - [302950] = 2, + ACTIONS(17599), 1, + anon_sym_RPAREN, + [367364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - anon_sym_SEMI, - [302957] = 2, + ACTIONS(17601), 1, + anon_sym_RBRACE, + [367371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 1, - anon_sym_COLON, - [302964] = 2, + ACTIONS(17603), 1, + aux_sym_preproc_if_token2, + [367378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14087), 1, - sym_identifier, - [302971] = 2, + ACTIONS(17605), 1, + anon_sym_RPAREN, + [367385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9159), 1, + ACTIONS(17607), 1, anon_sym_RPAREN, - [302978] = 2, + [367392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - anon_sym_COLON, - [302985] = 2, + ACTIONS(17609), 1, + aux_sym_preproc_if_token2, + [367399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12708), 1, - anon_sym_COLON_COLON, - [302992] = 2, + ACTIONS(17611), 1, + anon_sym_RPAREN, + [367406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14089), 1, - anon_sym_RPAREN, - [302999] = 2, + ACTIONS(17613), 1, + sym_identifier, + [367413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14091), 1, + ACTIONS(17615), 1, aux_sym_preproc_if_token2, - [303006] = 2, + [367420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14093), 1, - anon_sym_DQUOTE, - [303013] = 2, + ACTIONS(17617), 1, + anon_sym_COLON, + [367427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14095), 1, - anon_sym_STAR, - [303020] = 2, + ACTIONS(17619), 1, + aux_sym_preproc_if_token2, + [367434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9368), 1, + ACTIONS(17621), 1, anon_sym_RPAREN, - [303027] = 2, - ACTIONS(10266), 1, + [367441] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14097), 1, - aux_sym_preproc_include_token2, - [303034] = 2, + ACTIONS(17623), 1, + anon_sym_RPAREN, + [367448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14099), 1, - sym_identifier, - [303041] = 2, + ACTIONS(17625), 1, + sym_raw_string_delimiter, + [367455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 1, - anon_sym_RBRACE, - [303048] = 2, + ACTIONS(17627), 1, + anon_sym_RPAREN, + [367462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14101), 1, - sym_identifier, - [303055] = 2, + ACTIONS(15548), 1, + anon_sym_SEMI, + [367469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14103), 1, + ACTIONS(12445), 1, anon_sym_RPAREN, - [303062] = 2, + [367476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_STAR_EQ, - [303069] = 2, + ACTIONS(11991), 1, + anon_sym_RBRACE, + [367483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(17629), 1, anon_sym_SEMI, - [303076] = 2, + [367490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17631), 1, + anon_sym_DQUOTE, + [367497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17633), 1, + anon_sym_STAR, + [367504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14107), 1, + ACTIONS(17635), 1, anon_sym_RPAREN, - [303083] = 2, + [367511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14109), 1, + ACTIONS(12688), 1, anon_sym_RPAREN, - [303090] = 2, + [367518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12325), 1, + anon_sym_COLON, + [367525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11220), 1, + ACTIONS(14513), 1, anon_sym_RBRACE, - [303097] = 2, + [367532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12329), 1, - anon_sym_SEMI, - [303104] = 2, + ACTIONS(17637), 1, + sym_this, + [367539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(17639), 1, + sym_identifier, + [367546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17641), 1, anon_sym_SEMI, - [303111] = 2, + [367553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14113), 1, + ACTIONS(12605), 1, anon_sym_RPAREN, - [303118] = 2, + [367560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14115), 1, + ACTIONS(17643), 1, anon_sym_RPAREN, - [303125] = 2, + [367567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14117), 1, - anon_sym_SEMI, - [303132] = 2, + ACTIONS(17645), 1, + anon_sym_LPAREN2, + [367574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14119), 1, - anon_sym_RBRACE, - [303139] = 2, + ACTIONS(17647), 1, + anon_sym_RPAREN, + [367581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14121), 1, - aux_sym_preproc_if_token2, - [303146] = 2, + ACTIONS(17649), 1, + anon_sym_LPAREN2, + [367588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17651), 1, + sym_identifier, + [367595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14123), 1, + ACTIONS(17653), 1, + anon_sym_RPAREN, + [367602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17655), 1, sym_auto, - [303153] = 2, + [367609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14125), 1, + ACTIONS(17657), 1, aux_sym_preproc_if_token2, - [303160] = 2, + [367616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14127), 1, + ACTIONS(17659), 1, anon_sym_RPAREN, - [303167] = 2, + [367623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14129), 1, - aux_sym_preproc_if_token2, - [303174] = 2, + ACTIONS(17661), 1, + anon_sym_RPAREN, + [367630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14131), 1, + ACTIONS(17663), 1, anon_sym_RPAREN, - [303181] = 2, - ACTIONS(10266), 1, + [367637] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14133), 1, + ACTIONS(12193), 1, + anon_sym_RPAREN, + [367644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17665), 1, + sym_identifier, + [367651] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17667), 1, aux_sym_preproc_include_token2, - [303188] = 2, + [367658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14135), 1, - anon_sym_SEMI, - [303195] = 2, + ACTIONS(17669), 1, + sym_raw_string_delimiter, + [367665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14137), 1, + ACTIONS(17671), 1, + anon_sym_DQUOTE, + [367672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17673), 1, anon_sym_SEMI, - [303202] = 2, + [367679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14139), 1, - anon_sym_RBRACE, - [303209] = 2, + ACTIONS(12371), 1, + anon_sym_RPAREN, + [367686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14141), 1, - aux_sym_preproc_if_token2, - [303216] = 2, + ACTIONS(17675), 1, + anon_sym_RPAREN, + [367693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14143), 1, - sym_identifier, - [303223] = 2, + ACTIONS(17677), 1, + anon_sym_DQUOTE, + [367700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13559), 1, - anon_sym_RBRACE, - [303230] = 2, + ACTIONS(17679), 1, + anon_sym_DQUOTE, + [367707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14145), 1, - aux_sym_preproc_if_token2, - [303237] = 2, + ACTIONS(17681), 1, + anon_sym_RPAREN, + [367714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14147), 1, + ACTIONS(17683), 1, anon_sym_SEMI, - [303244] = 2, + [367721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10724), 1, - anon_sym_LBRACE, - [303251] = 2, - ACTIONS(3), 1, + ACTIONS(17685), 1, + anon_sym_SEMI, + [367728] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(14149), 1, - sym_identifier, - [303258] = 2, + ACTIONS(17687), 1, + aux_sym_preproc_include_token2, + [367735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14151), 1, - aux_sym_preproc_if_token2, - [303265] = 2, + ACTIONS(17689), 1, + anon_sym_LPAREN2, + [367742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14153), 1, - anon_sym_RPAREN, - [303272] = 2, + ACTIONS(17691), 1, + anon_sym_SEMI, + [367749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14155), 1, - sym_raw_string_delimiter, - [303279] = 2, + ACTIONS(17693), 1, + aux_sym_preproc_if_token2, + [367756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14157), 1, - anon_sym_RPAREN, - [303286] = 2, + ACTIONS(17695), 1, + aux_sym_preproc_if_token2, + [367763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_GT, - [303293] = 2, + ACTIONS(17697), 1, + sym_auto, + [367770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14159), 1, + ACTIONS(17699), 1, anon_sym_RPAREN, - [303300] = 2, + [367777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14161), 1, - sym_identifier, - [303307] = 2, + ACTIONS(17701), 1, + anon_sym_SEMI, + [367784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14163), 1, - anon_sym_STAR, - [303314] = 2, + ACTIONS(13985), 1, + sym_identifier, + [367791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14165), 1, + ACTIONS(17703), 1, aux_sym_preproc_if_token2, - [303321] = 2, + [367798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14167), 1, - aux_sym_preproc_if_token2, - [303328] = 2, + ACTIONS(17705), 1, + sym_raw_string_delimiter, + [367805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14169), 1, + ACTIONS(12341), 1, anon_sym_SEMI, - [303335] = 2, + [367812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_or, - [303342] = 2, + ACTIONS(17707), 1, + anon_sym_SEMI, + [367819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9208), 1, + ACTIONS(17709), 1, anon_sym_RPAREN, - [303349] = 2, + [367826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11635), 1, - anon_sym_LBRACE, - [303356] = 2, + ACTIONS(17129), 1, + anon_sym_LT_EQ, + [367833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14171), 1, - anon_sym_LPAREN2, - [303363] = 2, - ACTIONS(3), 1, + ACTIONS(17711), 1, + anon_sym_DQUOTE, + [367840] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(14173), 1, - anon_sym_RPAREN, - [303370] = 2, + ACTIONS(17713), 1, + aux_sym_preproc_include_token2, + [367847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14175), 1, + ACTIONS(17715), 1, sym_auto, - [303377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14177), 1, - aux_sym_preproc_if_token2, - [303384] = 2, + [367854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14179), 1, + ACTIONS(17717), 1, anon_sym_RPAREN, - [303391] = 2, + [367861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14181), 1, - anon_sym_RBRACE, - [303398] = 2, + ACTIONS(17719), 1, + anon_sym_RPAREN, + [367868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14183), 1, - anon_sym_SEMI, - [303405] = 2, + ACTIONS(17721), 1, + anon_sym_COLON, + [367875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14185), 1, + ACTIONS(17723), 1, sym_raw_string_delimiter, - [303412] = 2, + [367882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14187), 1, - anon_sym_SEMI, - [303419] = 2, + ACTIONS(17725), 1, + sym_identifier, + [367889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14189), 1, - anon_sym_SEMI, - [303426] = 2, + ACTIONS(17727), 1, + anon_sym_DQUOTE, + [367896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14191), 1, + ACTIONS(17729), 1, anon_sym_STAR, - [303433] = 2, + [367903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14193), 1, - anon_sym_DQUOTE, - [303440] = 2, + ACTIONS(17731), 1, + anon_sym_RPAREN, + [367910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8977), 1, - anon_sym_RBRACE, - [303447] = 2, + ACTIONS(12094), 1, + anon_sym_RPAREN, + [367917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14195), 1, - anon_sym_RPAREN, - [303454] = 2, + ACTIONS(17733), 1, + anon_sym_DOT_DOT_DOT, + [367924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14197), 1, - anon_sym_RPAREN, - [303461] = 2, + ACTIONS(17736), 1, + sym_auto, + [367931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14199), 1, - anon_sym_RBRACE, - [303468] = 2, + ACTIONS(17738), 1, + anon_sym_RPAREN, + [367938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14201), 1, - anon_sym_SLASH, - [303475] = 2, + ACTIONS(17740), 1, + sym_raw_string_delimiter, + [367945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9272), 1, + ACTIONS(17742), 1, anon_sym_RPAREN, - [303482] = 2, + [367952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14203), 1, + ACTIONS(17744), 1, anon_sym_SEMI, - [303489] = 2, + [367959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14205), 1, - sym_auto, - [303496] = 2, + ACTIONS(17746), 1, + anon_sym_DOT_DOT_DOT, + [367966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14207), 1, + ACTIONS(17748), 1, anon_sym_RPAREN, - [303503] = 2, + [367973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17750), 1, + sym_identifier, + [367980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14209), 1, + ACTIONS(17752), 1, anon_sym_RPAREN, - [303510] = 2, + [367987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14211), 1, + ACTIONS(17754), 1, sym_raw_string_delimiter, - [303517] = 2, + [367994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8959), 1, - anon_sym_RBRACE, - [303524] = 2, + ACTIONS(17756), 1, + anon_sym_LPAREN2, + [368001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14213), 1, - anon_sym_LBRACE, - [303531] = 2, + ACTIONS(17758), 1, + anon_sym_RPAREN, + [368008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14215), 1, + ACTIONS(17760), 1, anon_sym_STAR, - [303538] = 2, + [368015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14217), 1, - anon_sym_COMMA, - [303545] = 2, + ACTIONS(17129), 1, + anon_sym_DASH_GT_STAR, + [368022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14219), 1, - sym_identifier, - [303552] = 2, + ACTIONS(12702), 1, + anon_sym_RPAREN, + [368029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14221), 1, + ACTIONS(17762), 1, anon_sym_RPAREN, - [303559] = 2, + [368036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12472), 1, - anon_sym_SEMI, - [303566] = 2, + ACTIONS(17764), 1, + sym_raw_string_delimiter, + [368043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14223), 1, - aux_sym_preproc_if_token2, - [303573] = 2, + ACTIONS(17766), 1, + anon_sym_LPAREN2, + [368050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14225), 1, - sym_auto, - [303580] = 2, + ACTIONS(17768), 1, + anon_sym_RPAREN, + [368057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14819), 1, + anon_sym_SEMI, + [368064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17770), 1, + aux_sym_preproc_if_token2, + [368071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14227), 1, + ACTIONS(17772), 1, anon_sym_RPAREN, - [303587] = 2, + [368078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14229), 1, + ACTIONS(17774), 1, sym_raw_string_delimiter, - [303594] = 2, + [368085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14231), 1, + ACTIONS(12581), 1, anon_sym_RPAREN, - [303601] = 2, + [368092] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17776), 1, + aux_sym_preproc_include_token2, + [368099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11209), 1, - anon_sym_RBRACE, - [303608] = 2, + ACTIONS(17778), 1, + anon_sym_SEMI, + [368106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14233), 1, + ACTIONS(17780), 1, anon_sym_RPAREN, - [303615] = 2, + [368113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14235), 1, + ACTIONS(17782), 1, sym_raw_string_delimiter, - [303622] = 2, + [368120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9229), 1, + ACTIONS(5943), 1, + anon_sym_SEMI, + [368127] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13787), 1, + aux_sym_preproc_include_token2, + [368134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17784), 1, anon_sym_RPAREN, - [303629] = 2, + [368141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17786), 1, + sym_raw_string_delimiter, + [368148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7114), 1, + ACTIONS(17788), 1, anon_sym_SEMI, - [303636] = 2, + [368155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14237), 1, + ACTIONS(15608), 1, + anon_sym_SEMI, + [368162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17790), 1, anon_sym_RPAREN, - [303643] = 2, + [368169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14239), 1, + ACTIONS(17792), 1, sym_raw_string_delimiter, - [303650] = 2, + [368176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14241), 1, - anon_sym_RPAREN, - [303657] = 2, + ACTIONS(17031), 1, + anon_sym_RBRACE, + [368183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14243), 1, - sym_raw_string_delimiter, - [303664] = 2, + ACTIONS(17794), 1, + anon_sym_RPAREN, + [368190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(17796), 1, anon_sym_RPAREN, - [303671] = 2, + [368197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, + ACTIONS(17798), 1, sym_raw_string_delimiter, - [303678] = 2, + [368204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14249), 1, + ACTIONS(12343), 1, + anon_sym_COLON, + [368211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17800), 1, + anon_sym_COLON, + [368218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17802), 1, anon_sym_RPAREN, - [303685] = 2, + [368225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14251), 1, + ACTIONS(17804), 1, sym_raw_string_delimiter, - [303692] = 2, + [368232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17806), 1, + anon_sym_SEMI, + [368239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17808), 1, + anon_sym_SEMI, + [368246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14253), 1, + ACTIONS(17810), 1, anon_sym_RPAREN, - [303699] = 2, + [368253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(17812), 1, sym_raw_string_delimiter, - [303706] = 2, + [368260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17814), 1, + anon_sym_SEMI, + [368267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14257), 1, + ACTIONS(17816), 1, anon_sym_RPAREN, - [303713] = 2, + [368274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14259), 1, + ACTIONS(17818), 1, sym_raw_string_delimiter, - [303720] = 2, + [368281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_SLASH_EQ, - [303727] = 2, + ACTIONS(17820), 1, + aux_sym_preproc_if_token2, + [368288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13565), 1, - anon_sym_RBRACE, - [303734] = 2, + ACTIONS(17822), 1, + aux_sym_preproc_if_token2, + [368295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14261), 1, - anon_sym_SEMI, - [303741] = 2, + ACTIONS(17824), 1, + anon_sym_RPAREN, + [368302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12708), 1, + anon_sym_RPAREN, + [368309] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17826), 1, + aux_sym_preproc_include_token2, + [368316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14263), 1, + ACTIONS(17828), 1, anon_sym_LPAREN2, - [303748] = 2, + [368323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - anon_sym_SEMI, - [303755] = 2, + ACTIONS(17129), 1, + anon_sym_PERCENT_EQ, + [368330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14265), 1, + ACTIONS(17830), 1, anon_sym_LPAREN2, - [303762] = 2, + [368337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14267), 1, + ACTIONS(17832), 1, anon_sym_LPAREN2, - [303769] = 2, + [368344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14269), 1, + ACTIONS(17834), 1, anon_sym_LPAREN2, - [303776] = 2, - ACTIONS(10266), 1, + [368351] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14271), 1, - aux_sym_preproc_include_token2, - [303783] = 2, + ACTIONS(17836), 1, + anon_sym_LPAREN2, + [368358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 1, - anon_sym_SEMI, - [303790] = 2, + ACTIONS(17838), 1, + sym_identifier, + [368365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14273), 1, + ACTIONS(17840), 1, anon_sym_LPAREN2, - [303797] = 2, - ACTIONS(5495), 1, - aux_sym_preproc_include_token2, - ACTIONS(10266), 1, + [368372] = 2, + ACTIONS(3), 1, sym_comment, - [303804] = 2, + ACTIONS(12303), 1, + anon_sym_SEMI, + [368379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14275), 1, - anon_sym_LPAREN2, - [303811] = 2, + ACTIONS(17842), 1, + anon_sym_SEMI, + [368386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14277), 1, - anon_sym_RPAREN, - [303818] = 2, + ACTIONS(17844), 1, + aux_sym_preproc_if_token2, + [368393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14279), 1, + ACTIONS(17846), 1, aux_sym_preproc_if_token2, - [303825] = 2, + [368400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, - anon_sym_DOT_DOT_DOT, - [303832] = 2, + ACTIONS(12275), 1, + anon_sym_SEMI, + [368407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14281), 1, + ACTIONS(12369), 1, + anon_sym_SEMI, + [368414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17848), 1, anon_sym_RPAREN, - [303839] = 2, + [368421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11824), 1, - anon_sym_LBRACE, - [303846] = 2, + ACTIONS(17850), 1, + anon_sym_while, + [368428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14283), 1, - anon_sym_SEMI, - [303853] = 2, + ACTIONS(16975), 1, + anon_sym_RBRACE, + [368435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14285), 1, - sym_identifier, - [303860] = 2, + ACTIONS(17852), 1, + anon_sym_LPAREN2, + [368442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PERCENT_EQ, - [303867] = 2, + ACTIONS(17854), 1, + anon_sym_RPAREN, + [368449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_DOT_DOT_DOT, - [303874] = 2, + ACTIONS(17856), 1, + anon_sym_RBRACK, + [368456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14287), 1, - sym_identifier, - [303881] = 2, + ACTIONS(17858), 1, + anon_sym_LPAREN2, + [368463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, - anon_sym_DOT_DOT_DOT, - [303888] = 2, + ACTIONS(17860), 1, + anon_sym_LPAREN2, + [368470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14289), 1, - sym_identifier, - [303895] = 2, + ACTIONS(17862), 1, + anon_sym_RPAREN, + [368477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11637), 1, + ACTIONS(17864), 1, anon_sym_SEMI, - [303902] = 2, + [368484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14291), 1, + ACTIONS(17866), 1, anon_sym_SEMI, - [303909] = 2, + [368491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14293), 1, - anon_sym_SEMI, - [303916] = 2, + ACTIONS(17868), 1, + anon_sym_EQ, + [368498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14295), 1, - anon_sym_while, - [303923] = 2, + ACTIONS(17870), 1, + sym_raw_string_content, + [368505] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17872), 1, + aux_sym_preproc_include_token2, + [368512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14297), 1, - aux_sym_preproc_if_token2, - [303930] = 2, + ACTIONS(17874), 1, + sym_identifier, + [368519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14299), 1, - anon_sym_LPAREN2, - [303937] = 2, + ACTIONS(12710), 1, + anon_sym_RPAREN, + [368526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14301), 1, - aux_sym_preproc_if_token2, - [303944] = 2, + ACTIONS(17876), 1, + anon_sym_STAR, + [368533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14303), 1, - anon_sym_SEMI, - [303951] = 2, + ACTIONS(17878), 1, + sym_identifier, + [368540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14305), 1, - anon_sym_LPAREN2, - [303958] = 2, + ACTIONS(6802), 1, + anon_sym_COLON_COLON, + [368547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14307), 1, - anon_sym_DQUOTE, - [303965] = 2, + ACTIONS(17880), 1, + anon_sym_SEMI, + [368554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14309), 1, - aux_sym_preproc_if_token2, - [303972] = 2, + ACTIONS(17882), 1, + anon_sym_RPAREN, + [368561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14311), 1, - anon_sym_LPAREN2, - [303979] = 2, + ACTIONS(17884), 1, + anon_sym_SEMI, + [368568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14313), 1, - aux_sym_preproc_if_token2, - [303986] = 2, + ACTIONS(17886), 1, + anon_sym_SEMI, + [368575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14315), 1, - sym_raw_string_content, - [303993] = 2, + ACTIONS(16024), 1, + anon_sym_LBRACE, + [368582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14317), 1, + ACTIONS(14980), 1, anon_sym_COLON, - [304000] = 2, + [368589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17888), 1, + sym_identifier, + [368596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14319), 1, + ACTIONS(17890), 1, anon_sym_SEMI, - [304007] = 2, + [368603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14321), 1, - anon_sym_STAR, - [304014] = 2, + ACTIONS(17892), 1, + anon_sym_SEMI, + [368610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14323), 1, - anon_sym_RPAREN, - [304021] = 2, + ACTIONS(17894), 1, + sym_identifier, + [368617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13477), 1, + ACTIONS(17896), 1, anon_sym_COMMA, - [304028] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(10507), 1, - aux_sym_preproc_include_token2, - [304035] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(14325), 1, - aux_sym_preproc_include_token2, - [304042] = 2, + [368624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14327), 1, + ACTIONS(17898), 1, anon_sym_SEMI, - [304049] = 2, + [368631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14329), 1, - anon_sym_RPAREN, - [304056] = 2, + ACTIONS(17900), 1, + aux_sym_preproc_if_token2, + [368638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PLUS_EQ, - [304063] = 2, + ACTIONS(17902), 1, + aux_sym_preproc_if_token2, + [368645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17904), 1, + anon_sym_RPAREN, + [368652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14331), 1, + ACTIONS(17906), 1, anon_sym_SEMI, - [304070] = 2, + [368659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14333), 1, - sym_identifier, - [304077] = 2, + ACTIONS(17908), 1, + anon_sym_LPAREN2, + [368666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14335), 1, - anon_sym_DOT_DOT_DOT, - [304084] = 2, + ACTIONS(17910), 1, + anon_sym_SEMI, + [368673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14338), 1, - sym_identifier, - [304091] = 2, + ACTIONS(15032), 1, + anon_sym_LBRACE, + [368680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14340), 1, - sym_identifier, - [304098] = 2, + ACTIONS(17912), 1, + anon_sym_LPAREN2, + [368687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14342), 1, - anon_sym_RPAREN, - [304105] = 2, + ACTIONS(17914), 1, + anon_sym_LPAREN2, + [368694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14344), 1, - anon_sym_COMMA, - [304112] = 2, + ACTIONS(12417), 1, + anon_sym_RPAREN, + [368701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14346), 1, - anon_sym_SEMI, - [304119] = 2, + ACTIONS(17916), 1, + anon_sym_RPAREN, + [368708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14348), 1, + ACTIONS(17918), 1, anon_sym_SEMI, - [304126] = 2, + [368715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14350), 1, - anon_sym_RPAREN, - [304133] = 2, + ACTIONS(12339), 1, + anon_sym_COLON, + [368722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9111), 1, - anon_sym_COLON, - [304140] = 2, + ACTIONS(17920), 1, + anon_sym_LPAREN2, + [368729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14352), 1, - anon_sym_SEMI, - [304147] = 2, + ACTIONS(14471), 1, + anon_sym_RBRACE, + [368736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14354), 1, + ACTIONS(17922), 1, sym_identifier, - [304154] = 2, + [368743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14356), 1, - anon_sym_RPAREN, - [304161] = 2, + ACTIONS(17924), 1, + anon_sym_SEMI, + [368750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_DASH_EQ, - [304168] = 2, + ACTIONS(17926), 1, + anon_sym_DQUOTE, + [368757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8724), 1, + ACTIONS(17928), 1, anon_sym_SEMI, - [304175] = 2, + [368764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14358), 1, - anon_sym_LBRACE, - [304182] = 2, + ACTIONS(16937), 1, + anon_sym_RBRACE, + [368771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14360), 1, - anon_sym_RPAREN, - [304189] = 2, + ACTIONS(17930), 1, + anon_sym_STAR, + [368778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13573), 1, - anon_sym_RBRACE, - [304196] = 2, + ACTIONS(17932), 1, + anon_sym_SEMI, + [368785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_DOT_DOT_DOT, - [304203] = 2, + ACTIONS(17129), 1, + anon_sym_PLUS_EQ, + [368792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17934), 1, + anon_sym_RPAREN, + [368799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14362), 1, + ACTIONS(17936), 1, anon_sym_SEMI, - [304210] = 2, + [368806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14364), 1, + ACTIONS(17938), 1, anon_sym_SEMI, - [304217] = 2, + [368813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14366), 1, - anon_sym_RPAREN, - [304224] = 2, + ACTIONS(17940), 1, + anon_sym_DQUOTE, + [368820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_LT_LT_EQ, - [304231] = 2, + ACTIONS(17942), 1, + sym_identifier, + [368827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14368), 1, - anon_sym_SEMI, - [304238] = 2, + ACTIONS(17944), 1, + anon_sym_RPAREN, + [368834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14370), 1, - sym_identifier, - [304245] = 2, + ACTIONS(17946), 1, + anon_sym_DQUOTE, + [368841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14372), 1, - anon_sym_SEMI, - [304252] = 2, + ACTIONS(17948), 1, + anon_sym_RPAREN, + [368848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14374), 1, - anon_sym_COLON, - [304259] = 2, + ACTIONS(17950), 1, + anon_sym_RPAREN, + [368855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14376), 1, - anon_sym_SEMI, - [304266] = 2, + ACTIONS(16167), 1, + anon_sym_COLON_COLON, + [368862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14378), 1, - anon_sym_RPAREN, - [304273] = 2, + ACTIONS(16953), 1, + anon_sym_RBRACE, + [368869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9143), 1, + ACTIONS(17952), 1, anon_sym_COLON, - [304280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - anon_sym_DOT_DOT_DOT, - [304287] = 2, + [368876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, - anon_sym_DOT_DOT_DOT, - [304294] = 2, + ACTIONS(15427), 1, + anon_sym_SEMI, + [368883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14380), 1, - anon_sym_DQUOTE, - [304301] = 2, + ACTIONS(17129), 1, + anon_sym_DASH_EQ, + [368890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14382), 1, + ACTIONS(17954), 1, anon_sym_SEMI, - [304308] = 2, + [368897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14384), 1, - anon_sym_RPAREN, - [304315] = 2, + ACTIONS(17956), 1, + anon_sym_LBRACE, + [368904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14386), 1, - anon_sym_STAR, - [304322] = 2, + ACTIONS(16983), 1, + anon_sym_RBRACE, + [368911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14388), 1, + ACTIONS(17958), 1, anon_sym_SEMI, - [304329] = 2, + [368918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14390), 1, - aux_sym_preproc_if_token2, - [304336] = 2, + ACTIONS(17960), 1, + anon_sym_LPAREN2, + [368925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 1, - anon_sym_SEMI, - [304343] = 2, + ACTIONS(17129), 1, + anon_sym_LT_LT_EQ, + [368932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14392), 1, - anon_sym_RPAREN, - [304350] = 2, + ACTIONS(17962), 1, + anon_sym_RBRACE, + [368939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 1, - anon_sym_SEMI, - [304357] = 2, + ACTIONS(17964), 1, + anon_sym_RPAREN, + [368946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12490), 1, - anon_sym_SEMI, - [304364] = 2, + ACTIONS(17966), 1, + anon_sym_RPAREN, + [368953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14396), 1, + ACTIONS(17968), 1, anon_sym_RPAREN, - [304371] = 2, + [368960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 1, - anon_sym_DOT_DOT_DOT, - [304378] = 2, + ACTIONS(17970), 1, + anon_sym_COLON, + [368967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14398), 1, - anon_sym_DQUOTE, - [304385] = 2, + ACTIONS(12618), 1, + anon_sym_RPAREN, + [368974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14400), 1, - anon_sym_LPAREN2, - [304392] = 2, + ACTIONS(13877), 1, + anon_sym_LBRACE, + [368981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14402), 1, - anon_sym_DQUOTE, - [304399] = 2, - ACTIONS(10266), 1, - sym_comment, - ACTIONS(14404), 1, - aux_sym_preproc_include_token2, - [304406] = 2, + ACTIONS(17972), 1, + sym_identifier, + [368988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, + ACTIONS(15506), 1, anon_sym_SEMI, - [304413] = 2, + [368995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14406), 1, - sym_identifier, - [304420] = 2, + ACTIONS(17974), 1, + anon_sym_SEMI, + [369002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14408), 1, - anon_sym_RPAREN, - [304427] = 2, + ACTIONS(17129), 1, + anon_sym_PIPE_EQ, + [369009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14410), 1, - anon_sym_RPAREN, - [304434] = 2, + ACTIONS(17976), 1, + anon_sym_SEMI, + [369016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14412), 1, - anon_sym_RPAREN, - [304441] = 2, + ACTIONS(17978), 1, + aux_sym_preproc_if_token2, + [369023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14414), 1, - anon_sym_RPAREN, - [304448] = 2, + ACTIONS(17980), 1, + anon_sym_SEMI, + [369030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14416), 1, - anon_sym_RPAREN, - [304455] = 2, + ACTIONS(12351), 1, + anon_sym_COLON, + [369037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 1, - anon_sym_DOT_DOT_DOT, - [304462] = 2, + ACTIONS(17982), 1, + sym_identifier, + [369044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14418), 1, - anon_sym_RPAREN, - [304469] = 2, + ACTIONS(17984), 1, + aux_sym_preproc_if_token2, + [369051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14420), 1, - anon_sym_COLON, - [304476] = 2, + ACTIONS(14882), 1, + anon_sym_COMMA, + [369058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14422), 1, + ACTIONS(17986), 1, sym_identifier, - [304483] = 2, + [369065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14424), 1, - aux_sym_preproc_if_token2, - [304490] = 2, + ACTIONS(17988), 1, + anon_sym_RBRACE, + [369072] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(17990), 1, + aux_sym_preproc_include_token2, + [369079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11687), 1, + ACTIONS(10135), 1, anon_sym_SEMI, - [304497] = 2, + [369086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, - anon_sym_DOT_DOT_DOT, - [304504] = 2, + ACTIONS(17992), 1, + sym_identifier, + [369093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14426), 1, + ACTIONS(17994), 1, sym_identifier, - [304511] = 2, + [369100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14428), 1, - sym_identifier, - [304518] = 2, + ACTIONS(17996), 1, + anon_sym_SEMI, + [369107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, - anon_sym_DOT_DOT_DOT, - [304525] = 2, + ACTIONS(17998), 1, + anon_sym_RPAREN, + [369114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14430), 1, + ACTIONS(18000), 1, sym_identifier, - [304532] = 2, + [369121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14432), 1, + ACTIONS(18002), 1, anon_sym_SEMI, - [304539] = 2, + [369128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14434), 1, - anon_sym_LPAREN2, - [304546] = 2, + ACTIONS(18004), 1, + aux_sym_preproc_if_token2, + [369135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14436), 1, - sym_this, - [304553] = 2, + ACTIONS(18006), 1, + anon_sym_DQUOTE, + [369142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14438), 1, + ACTIONS(18008), 1, anon_sym_SEMI, - [304560] = 2, + [369149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14440), 1, - anon_sym_SEMI, - [304567] = 2, + ACTIONS(18010), 1, + anon_sym_STAR, + [369156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8726), 1, - anon_sym_RBRACE, - [304574] = 2, + ACTIONS(18012), 1, + aux_sym_preproc_if_token2, + [369163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14442), 1, + ACTIONS(12349), 1, anon_sym_RPAREN, - [304581] = 2, + [369170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14444), 1, - anon_sym_RPAREN, - [304588] = 2, + ACTIONS(10085), 1, + anon_sym_SEMI, + [369177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14446), 1, + ACTIONS(18014), 1, anon_sym_RPAREN, - [304595] = 2, + [369184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14448), 1, + ACTIONS(18016), 1, anon_sym_SEMI, - [304602] = 2, + [369191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14450), 1, - sym_raw_string_delimiter, - [304609] = 2, + ACTIONS(18018), 1, + anon_sym_DQUOTE, + [369198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12474), 1, + ACTIONS(10802), 1, + sym_identifier, + [369205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15818), 1, anon_sym_SEMI, - [304616] = 2, + [369212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12271), 1, + anon_sym_COLON, + [369219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18020), 1, + anon_sym_RPAREN, + [369226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14452), 1, + ACTIONS(18022), 1, anon_sym_DQUOTE, - [304623] = 2, + [369233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14454), 1, - anon_sym_LPAREN2, - [304630] = 2, + ACTIONS(18024), 1, + anon_sym_DQUOTE, + [369240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9075), 1, - anon_sym_COLON, - [304637] = 2, + ACTIONS(18026), 1, + anon_sym_EQ, + [369247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14456), 1, + ACTIONS(18028), 1, anon_sym_SEMI, - [304644] = 2, - ACTIONS(10266), 1, + [369254] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14458), 1, - aux_sym_preproc_include_token2, - [304651] = 2, + ACTIONS(18030), 1, + anon_sym_COLON, + [369261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14460), 1, - anon_sym_STAR, - [304658] = 2, + ACTIONS(12335), 1, + anon_sym_COLON, + [369268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14462), 1, + ACTIONS(18032), 1, anon_sym_RPAREN, - [304665] = 2, + [369275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14464), 1, + ACTIONS(18034), 1, anon_sym_RPAREN, - [304672] = 2, + [369282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9141), 1, - anon_sym_RPAREN, - [304679] = 2, + ACTIONS(18036), 1, + anon_sym_DQUOTE, + [369289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14466), 1, - anon_sym_SEMI, - [304686] = 2, + ACTIONS(18038), 1, + anon_sym_LPAREN2, + [369296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 1, - anon_sym_RPAREN, - [304693] = 2, + ACTIONS(18040), 1, + anon_sym_SEMI, + [369303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_STAR, - [304700] = 2, + ACTIONS(18042), 1, + anon_sym_SEMI, + [369310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14468), 1, + ACTIONS(18044), 1, anon_sym_RPAREN, - [304707] = 2, - ACTIONS(3), 1, + [369317] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(14470), 1, - sym_identifier, - [304714] = 2, + ACTIONS(16364), 1, + aux_sym_preproc_include_token2, + [369324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14472), 1, + ACTIONS(18046), 1, anon_sym_RPAREN, - [304721] = 2, + [369331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, - anon_sym_DOT_DOT_DOT, - [304728] = 2, + ACTIONS(18048), 1, + anon_sym_DQUOTE, + [369338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14474), 1, - aux_sym_preproc_if_token2, - [304735] = 2, - ACTIONS(5488), 1, - aux_sym_preproc_include_token2, - ACTIONS(10266), 1, - sym_comment, - [304742] = 2, + ACTIONS(12279), 1, + anon_sym_COLON, + [369345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14476), 1, - anon_sym_RBRACK, - [304749] = 2, + ACTIONS(17129), 1, + anon_sym_GT, + [369352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14478), 1, - sym_auto, - [304756] = 2, + ACTIONS(16995), 1, + anon_sym_RBRACE, + [369359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14480), 1, - anon_sym_COLON, - [304763] = 2, + ACTIONS(18050), 1, + anon_sym_SEMI, + [369366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14482), 1, - anon_sym_RPAREN, - [304770] = 2, + ACTIONS(17129), 1, + anon_sym_GT_GT_EQ, + [369373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14484), 1, + ACTIONS(18052), 1, anon_sym_RPAREN, - [304777] = 2, + [369380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9340), 1, - anon_sym_RPAREN, - [304784] = 2, - ACTIONS(10266), 1, + ACTIONS(15680), 1, + anon_sym_SEMI, + [369387] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14486), 1, - aux_sym_preproc_include_token2, - [304791] = 2, + ACTIONS(18054), 1, + anon_sym_DQUOTE, + [369394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14488), 1, - sym_identifier, - [304798] = 2, + ACTIONS(18056), 1, + anon_sym_DQUOTE, + [369401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14490), 1, + ACTIONS(15616), 1, anon_sym_SEMI, - [304805] = 2, + [369408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18058), 1, + anon_sym_DQUOTE, + [369415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14492), 1, + ACTIONS(18060), 1, sym_identifier, - [304812] = 2, + [369422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 1, - anon_sym_COMMA, - [304819] = 2, + ACTIONS(18062), 1, + anon_sym_LPAREN2, + [369429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_GT_GT_EQ, - [304826] = 2, + ACTIONS(18064), 1, + anon_sym_LPAREN2, + [369436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14494), 1, - anon_sym_SEMI, - [304833] = 2, + ACTIONS(18066), 1, + anon_sym_LPAREN2, + [369443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14496), 1, - anon_sym_private, - [304840] = 2, + ACTIONS(18068), 1, + anon_sym_LPAREN2, + [369450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14498), 1, - anon_sym_RPAREN, - [304847] = 2, + ACTIONS(18070), 1, + anon_sym_LPAREN2, + [369457] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(18072), 1, + aux_sym_preproc_include_token2, + [369464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_DOT_DOT_DOT, - [304854] = 2, + ACTIONS(18074), 1, + anon_sym_LPAREN2, + [369471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14500), 1, - sym_identifier, - [304861] = 2, + ACTIONS(18076), 1, + anon_sym_COLON, + [369478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11201), 1, - anon_sym_RBRACE, - [304868] = 2, + ACTIONS(18078), 1, + aux_sym_preproc_if_token2, + [369485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14502), 1, - anon_sym_STAR, - [304875] = 2, + ACTIONS(18080), 1, + anon_sym_while, + [369492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14504), 1, - anon_sym_RPAREN, - [304882] = 2, + ACTIONS(18082), 1, + aux_sym_preproc_if_token2, + [369499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14506), 1, - anon_sym_RPAREN, - [304889] = 2, + ACTIONS(18084), 1, + anon_sym_LPAREN2, + [369506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14508), 1, - anon_sym_SEMI, - [304896] = 2, + ACTIONS(18086), 1, + aux_sym_preproc_if_token2, + [369513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14510), 1, - anon_sym_RPAREN, - [304903] = 2, + ACTIONS(18088), 1, + aux_sym_preproc_if_token2, + [369520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9332), 1, - anon_sym_RPAREN, - [304910] = 2, + ACTIONS(18090), 1, + anon_sym_LPAREN2, + [369527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11713), 1, - anon_sym_SEMI, - [304917] = 2, + ACTIONS(18092), 1, + anon_sym_LPAREN2, + [369534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14512), 1, - anon_sym_RPAREN, - [304924] = 2, + ACTIONS(18094), 1, + aux_sym_preproc_if_token2, + [369541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12521), 1, - anon_sym_SEMI, - [304931] = 2, + ACTIONS(18096), 1, + anon_sym_EQ, + [369548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14514), 1, - anon_sym_SEMI, - [304938] = 2, + ACTIONS(18098), 1, + sym_raw_string_content, + [369555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14516), 1, - anon_sym_DOT_DOT_DOT, - [304945] = 2, + ACTIONS(18100), 1, + anon_sym_STAR, + [369562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14518), 1, - anon_sym_SEMI, - [304952] = 2, + ACTIONS(18102), 1, + aux_sym_preproc_if_token2, + [369569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_PERCENT, - [304959] = 2, + ACTIONS(18104), 1, + anon_sym_SEMI, + [369576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14520), 1, - anon_sym_RPAREN, - [304966] = 2, + ACTIONS(18106), 1, + aux_sym_preproc_if_token2, + [369583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_SEMI, - [304973] = 2, + ACTIONS(18108), 1, + anon_sym_COMMA, + [369590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14522), 1, + ACTIONS(12096), 1, anon_sym_SEMI, - [304980] = 2, + [369597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_SEMI, - [304987] = 2, + ACTIONS(14896), 1, + anon_sym_EQ, + [369604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14524), 1, + ACTIONS(10345), 1, anon_sym_RPAREN, - [304994] = 2, + [369611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_AMP_EQ, - [305001] = 2, + ACTIONS(18110), 1, + anon_sym_RPAREN, + [369618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, + ACTIONS(18112), 1, anon_sym_COLON, - [305008] = 2, + [369625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14526), 1, + ACTIONS(18114), 1, + anon_sym_LPAREN2, + [369632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18116), 1, anon_sym_SEMI, - [305015] = 2, + [369639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, - anon_sym_RPAREN, - [305022] = 2, + ACTIONS(18118), 1, + anon_sym_LPAREN2, + [369646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11631), 1, - anon_sym_SEMI, - [305029] = 2, + ACTIONS(18120), 1, + anon_sym_LPAREN2, + [369653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11226), 1, - anon_sym_RBRACE, - [305036] = 2, + ACTIONS(18122), 1, + anon_sym_LPAREN2, + [369660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_LBRACE, - [305043] = 2, + ACTIONS(18124), 1, + anon_sym_RPAREN, + [369667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14530), 1, - anon_sym_DQUOTE, - [305050] = 2, + ACTIONS(18126), 1, + anon_sym_LPAREN2, + [369674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13288), 1, - anon_sym_LBRACE, - [305057] = 2, + ACTIONS(18128), 1, + anon_sym_SEMI, + [369681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14532), 1, + ACTIONS(18130), 1, anon_sym_RPAREN, - [305064] = 2, + [369688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14534), 1, - sym_identifier, - [305071] = 2, + ACTIONS(18132), 1, + anon_sym_while, + [369695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12523), 1, + ACTIONS(18134), 1, anon_sym_SEMI, - [305078] = 2, + [369702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14536), 1, - anon_sym_RPAREN, - [305085] = 2, + ACTIONS(18136), 1, + anon_sym_LPAREN2, + [369709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14538), 1, - anon_sym_LPAREN2, - [305092] = 2, + ACTIONS(18138), 1, + anon_sym_DQUOTE, + [369716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14540), 1, + ACTIONS(18140), 1, anon_sym_LPAREN2, - [305099] = 2, + [369723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14542), 1, - anon_sym_LPAREN2, - [305106] = 2, + ACTIONS(18142), 1, + anon_sym_SEMI, + [369730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14544), 1, - anon_sym_LPAREN2, - [305113] = 2, + ACTIONS(18144), 1, + anon_sym_EQ, + [369737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9135), 1, - anon_sym_COLON, - [305120] = 2, + ACTIONS(18146), 1, + sym_raw_string_content, + [369744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14546), 1, - anon_sym_LPAREN2, - [305127] = 2, + ACTIONS(18148), 1, + anon_sym_SEMI, + [369751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14548), 1, - anon_sym_RBRACE, - [305134] = 2, + ACTIONS(18150), 1, + anon_sym_COMMA, + [369758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14550), 1, - anon_sym_RPAREN, - [305141] = 2, + ACTIONS(18152), 1, + anon_sym_SEMI, + [369765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14552), 1, - aux_sym_preproc_if_token2, - [305148] = 2, + ACTIONS(18154), 1, + sym_identifier, + [369772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14554), 1, - aux_sym_preproc_if_token2, - [305155] = 2, + ACTIONS(10149), 1, + anon_sym_SEMI, + [369779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14556), 1, + ACTIONS(18156), 1, anon_sym_RPAREN, - [305162] = 2, + [369786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14558), 1, - anon_sym_while, - [305169] = 2, + ACTIONS(18158), 1, + anon_sym_COLON, + [369793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13493), 1, - anon_sym_RBRACE, - [305176] = 2, + ACTIONS(18160), 1, + anon_sym_LBRACE, + [369800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14560), 1, + ACTIONS(18162), 1, anon_sym_LPAREN2, - [305183] = 2, + [369807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14562), 1, + ACTIONS(18164), 1, anon_sym_LPAREN2, - [305190] = 2, + [369814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(18166), 1, anon_sym_LPAREN2, - [305197] = 2, + [369821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14566), 1, - aux_sym_preproc_if_token2, - [305204] = 2, + ACTIONS(18168), 1, + sym_identifier, + [369828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14568), 1, + ACTIONS(18170), 1, + anon_sym_LPAREN2, + [369835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18172), 1, + anon_sym_SEMI, + [369842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18174), 1, anon_sym_RPAREN, - [305211] = 2, + [369849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14570), 1, - anon_sym_EQ, - [305218] = 2, + ACTIONS(18176), 1, + anon_sym_while, + [369856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14572), 1, - sym_raw_string_content, - [305225] = 2, + ACTIONS(18178), 1, + anon_sym_LPAREN2, + [369863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14574), 1, - anon_sym_STAR, - [305232] = 2, + ACTIONS(18180), 1, + anon_sym_RPAREN, + [369870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14576), 1, - anon_sym_SEMI, - [305239] = 2, + ACTIONS(18182), 1, + anon_sym_LPAREN2, + [369877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14578), 1, - anon_sym_STAR, - [305246] = 2, + ACTIONS(18184), 1, + anon_sym_LPAREN2, + [369884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14580), 1, - anon_sym_SEMI, - [305253] = 2, + ACTIONS(18186), 1, + anon_sym_EQ, + [369891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14582), 1, + ACTIONS(18188), 1, + sym_raw_string_content, + [369898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12491), 1, anon_sym_RPAREN, - [305260] = 2, + [369905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14584), 1, + ACTIONS(18190), 1, anon_sym_COMMA, - [305267] = 2, - ACTIONS(10266), 1, + [369912] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14586), 1, - aux_sym_preproc_include_token2, - [305274] = 2, + ACTIONS(18192), 1, + anon_sym_LPAREN2, + [369919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14588), 1, - aux_sym_preproc_if_token2, - [305281] = 2, + ACTIONS(10141), 1, + anon_sym_SEMI, + [369926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14590), 1, + ACTIONS(18194), 1, anon_sym_RPAREN, - [305288] = 2, + [369933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14592), 1, + ACTIONS(18196), 1, anon_sym_COLON, - [305295] = 2, + [369940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14594), 1, - anon_sym_RPAREN, - [305302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14596), 1, - aux_sym_preproc_if_token2, - [305309] = 2, + ACTIONS(18198), 1, + anon_sym_DQUOTE, + [369947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(18200), 1, anon_sym_LPAREN2, - [305316] = 2, + [369954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14600), 1, + ACTIONS(18202), 1, anon_sym_LPAREN2, - [305323] = 2, + [369961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14602), 1, + ACTIONS(18204), 1, anon_sym_LPAREN2, - [305330] = 2, + [369968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14604), 1, - sym_identifier, - [305337] = 2, + ACTIONS(18206), 1, + anon_sym_RPAREN, + [369975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14606), 1, + ACTIONS(18208), 1, anon_sym_LPAREN2, - [305344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14608), 1, - anon_sym_RPAREN, - [305351] = 2, + [369982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 1, + ACTIONS(18210), 1, anon_sym_SEMI, - [305358] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14610), 1, - anon_sym_while, - [305365] = 2, + [369989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14612), 1, - anon_sym_SEMI, - [305372] = 2, + ACTIONS(18212), 1, + anon_sym_DQUOTE, + [369996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14614), 1, + ACTIONS(18214), 1, anon_sym_LPAREN2, - [305379] = 2, - ACTIONS(10266), 1, + [370003] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14616), 1, - aux_sym_preproc_include_token2, - [305386] = 2, + ACTIONS(12142), 1, + anon_sym_RBRACE, + [370010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14618), 1, + ACTIONS(18216), 1, anon_sym_LPAREN2, - [305393] = 2, + [370017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_RBRACE, - [305400] = 2, + ACTIONS(18218), 1, + anon_sym_RPAREN, + [370024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14620), 1, + ACTIONS(18220), 1, anon_sym_EQ, - [305407] = 2, + [370031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14622), 1, + ACTIONS(18222), 1, sym_raw_string_content, - [305414] = 2, + [370038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9039), 1, - anon_sym_COLON, - [305421] = 2, + ACTIONS(18224), 1, + anon_sym_STAR, + [370045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14624), 1, + ACTIONS(18226), 1, anon_sym_COMMA, - [305428] = 2, + [370052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14626), 1, - aux_sym_preproc_if_token2, - [305435] = 2, - ACTIONS(3), 1, + ACTIONS(18228), 1, + anon_sym_RBRACE, + [370059] = 2, + ACTIONS(13686), 1, sym_comment, - ACTIONS(14628), 1, - anon_sym_STAR, - [305442] = 2, + ACTIONS(18230), 1, + aux_sym_preproc_include_token2, + [370066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14630), 1, + ACTIONS(18232), 1, anon_sym_RPAREN, - [305449] = 2, + [370073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(18234), 1, anon_sym_COLON, - [305456] = 2, + [370080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14634), 1, - anon_sym_SEMI, - [305463] = 2, + ACTIONS(18236), 1, + aux_sym_preproc_if_token2, + [370087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14636), 1, + ACTIONS(18238), 1, anon_sym_LPAREN2, - [305470] = 2, + [370094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14638), 1, + ACTIONS(18240), 1, anon_sym_LPAREN2, - [305477] = 2, + [370101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14640), 1, + ACTIONS(18242), 1, anon_sym_LPAREN2, - [305484] = 2, + [370108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13597), 1, - anon_sym_RBRACE, - [305491] = 2, + ACTIONS(18244), 1, + anon_sym_RPAREN, + [370115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14642), 1, + ACTIONS(18246), 1, anon_sym_LPAREN2, - [305498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14644), 1, - aux_sym_preproc_if_token2, - [305505] = 2, + [370122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14646), 1, - anon_sym_RPAREN, - [305512] = 2, + ACTIONS(18248), 1, + anon_sym_SEMI, + [370129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14648), 1, - anon_sym_while, - [305519] = 2, + ACTIONS(18250), 1, + aux_sym_preproc_if_token2, + [370136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14650), 1, + ACTIONS(18252), 1, anon_sym_LPAREN2, - [305526] = 2, + [370143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14652), 1, + ACTIONS(12573), 1, anon_sym_RPAREN, - [305533] = 2, + [370150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14654), 1, + ACTIONS(18254), 1, anon_sym_LPAREN2, - [305540] = 2, + [370157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14656), 1, - aux_sym_preproc_if_token2, - [305547] = 2, + ACTIONS(18256), 1, + anon_sym_SEMI, + [370164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14658), 1, + ACTIONS(18258), 1, anon_sym_EQ, - [305554] = 2, + [370171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, + ACTIONS(18260), 1, sym_raw_string_content, - [305561] = 2, + [370178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14662), 1, - anon_sym_RPAREN, - [305568] = 2, + ACTIONS(18262), 1, + aux_sym_preproc_if_token2, + [370185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14664), 1, + ACTIONS(18264), 1, anon_sym_COMMA, - [305575] = 2, + [370192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - anon_sym_SEMI, - [305582] = 2, + ACTIONS(18266), 1, + anon_sym_LBRACE, + [370199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14668), 1, + ACTIONS(18268), 1, anon_sym_RPAREN, - [305589] = 2, + [370206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14670), 1, + ACTIONS(18270), 1, anon_sym_RPAREN, - [305596] = 2, + [370213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14672), 1, + ACTIONS(18272), 1, anon_sym_COLON, - [305603] = 2, + [370220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14674), 1, - sym_identifier, - [305610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14676), 1, - anon_sym_LPAREN2, - [305617] = 2, + ACTIONS(15922), 1, + anon_sym_LBRACE, + [370227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14678), 1, + ACTIONS(18274), 1, anon_sym_LPAREN2, - [305624] = 2, + [370234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14680), 1, + ACTIONS(18276), 1, anon_sym_LPAREN2, - [305631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14682), 1, - aux_sym_preproc_if_token2, - [305638] = 2, + [370241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14684), 1, + ACTIONS(18278), 1, anon_sym_LPAREN2, - [305645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14686), 1, - aux_sym_preproc_if_token2, - [305652] = 2, + [370248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14688), 1, + ACTIONS(18280), 1, anon_sym_SEMI, - [305659] = 2, + [370255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14690), 1, + ACTIONS(18282), 1, anon_sym_LPAREN2, - [305666] = 2, + [370262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, + ACTIONS(18284), 1, anon_sym_SEMI, - [305673] = 2, + [370269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14694), 1, + ACTIONS(18286), 1, anon_sym_LPAREN2, - [305680] = 2, + [370276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, - anon_sym_SEMI, - [305687] = 2, + ACTIONS(18288), 1, + anon_sym_DQUOTE, + [370283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14696), 1, - anon_sym_EQ, - [305694] = 2, + ACTIONS(18290), 1, + anon_sym_LPAREN2, + [370290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14698), 1, + ACTIONS(18292), 1, sym_raw_string_content, - [305701] = 2, + [370297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14700), 1, - anon_sym_SEMI, - [305708] = 2, + ACTIONS(18294), 1, + anon_sym_RPAREN, + [370304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14702), 1, + ACTIONS(18296), 1, anon_sym_COMMA, - [305715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14704), 1, - anon_sym_SEMI, - [305722] = 2, + [370311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14706), 1, - anon_sym_SEMI, - [305729] = 2, + ACTIONS(18298), 1, + anon_sym_LPAREN2, + [370318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14708), 1, + ACTIONS(18300), 1, anon_sym_RPAREN, - [305736] = 2, + [370325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(18302), 1, anon_sym_COLON, - [305743] = 2, + [370332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14712), 1, + ACTIONS(18304), 1, anon_sym_SEMI, - [305750] = 2, + [370339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14714), 1, + ACTIONS(18306), 1, anon_sym_LPAREN2, - [305757] = 2, + [370346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14716), 1, + ACTIONS(18308), 1, anon_sym_LPAREN2, - [305764] = 2, + [370353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14718), 1, - aux_sym_preproc_if_token2, - [305771] = 2, + ACTIONS(18310), 1, + sym_auto, + [370360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14720), 1, + ACTIONS(18312), 1, anon_sym_LPAREN2, - [305778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9095), 1, - anon_sym_COLON, - [305785] = 2, + [370367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10694), 1, - anon_sym_LBRACE, - [305792] = 2, + ACTIONS(18314), 1, + aux_sym_preproc_if_token2, + [370374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14722), 1, - aux_sym_preproc_if_token2, - [305799] = 2, + ACTIONS(18316), 1, + anon_sym_RPAREN, + [370381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14724), 1, + ACTIONS(18318), 1, anon_sym_LPAREN2, - [305806] = 2, + [370388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14726), 1, - anon_sym_SEMI, - [305813] = 2, + ACTIONS(18320), 1, + sym_raw_string_content, + [370395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14728), 1, - anon_sym_EQ, - [305820] = 2, + ACTIONS(18322), 1, + sym_identifier, + [370402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14730), 1, - sym_raw_string_content, - [305827] = 2, + ACTIONS(18324), 1, + anon_sym_RPAREN, + [370409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14732), 1, - anon_sym_SEMI, - [305834] = 2, + ACTIONS(18326), 1, + anon_sym_LPAREN2, + [370416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14734), 1, - anon_sym_SEMI, - [305841] = 2, + ACTIONS(18328), 1, + anon_sym_LPAREN2, + [370423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14736), 1, - anon_sym_SEMI, - [305848] = 2, + ACTIONS(18330), 1, + anon_sym_LPAREN2, + [370430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RPAREN, - [305855] = 2, + ACTIONS(18332), 1, + anon_sym_LPAREN2, + [370437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14740), 1, - anon_sym_DQUOTE, - [305862] = 2, + ACTIONS(18334), 1, + sym_raw_string_content, + [370444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14742), 1, - anon_sym_LPAREN2, - [305869] = 2, + ACTIONS(18336), 1, + anon_sym_RPAREN, + [370451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14744), 1, + ACTIONS(18338), 1, anon_sym_LPAREN2, - [305876] = 2, + [370458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14746), 1, + ACTIONS(18340), 1, anon_sym_LPAREN2, - [305883] = 2, + [370465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14748), 1, - sym_identifier, - [305890] = 2, + ACTIONS(18342), 1, + anon_sym_LPAREN2, + [370472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14750), 1, + ACTIONS(18344), 1, anon_sym_LPAREN2, - [305897] = 2, + [370479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14752), 1, + ACTIONS(18346), 1, sym_raw_string_content, - [305904] = 2, + [370486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14754), 1, + ACTIONS(18348), 1, anon_sym_RPAREN, - [305911] = 2, + [370493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14756), 1, - sym_identifier, - [305918] = 2, + ACTIONS(18350), 1, + anon_sym_LPAREN2, + [370500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14758), 1, - anon_sym_RPAREN, - [305925] = 2, - ACTIONS(10266), 1, + ACTIONS(18352), 1, + anon_sym_LPAREN2, + [370507] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14760), 1, - aux_sym_preproc_include_token2, - [305932] = 2, + ACTIONS(18354), 1, + sym_raw_string_content, + [370514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14762), 1, - anon_sym_LPAREN2, - [305939] = 2, + ACTIONS(18356), 1, + anon_sym_RPAREN, + [370521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14764), 1, + ACTIONS(18358), 1, anon_sym_LPAREN2, - [305946] = 2, + [370528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14766), 1, + ACTIONS(18360), 1, anon_sym_LPAREN2, - [305953] = 2, + [370535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14768), 1, - anon_sym_SEMI, - [305960] = 2, + ACTIONS(18362), 1, + sym_raw_string_content, + [370542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18364), 1, + anon_sym_RPAREN, + [370549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14770), 1, + ACTIONS(18366), 1, anon_sym_LPAREN2, - [305967] = 2, + [370556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14772), 1, - sym_raw_string_content, - [305974] = 2, + ACTIONS(18368), 1, + anon_sym_LPAREN2, + [370563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14774), 1, - anon_sym_STAR, - [305981] = 2, + ACTIONS(18370), 1, + sym_raw_string_content, + [370570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14776), 1, + ACTIONS(18372), 1, anon_sym_RPAREN, - [305988] = 2, + [370577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14778), 1, + ACTIONS(18374), 1, anon_sym_LPAREN2, - [305995] = 2, + [370584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14780), 1, + ACTIONS(18376), 1, anon_sym_LPAREN2, - [306002] = 2, + [370591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18378), 1, + sym_raw_string_content, + [370598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14782), 1, + ACTIONS(18380), 1, + anon_sym_RPAREN, + [370605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18382), 1, anon_sym_LPAREN2, - [306009] = 2, + [370612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14784), 1, + ACTIONS(18384), 1, anon_sym_LPAREN2, - [306016] = 2, + [370619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14786), 1, + ACTIONS(18386), 1, sym_raw_string_content, - [306023] = 2, + [370626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14788), 1, + ACTIONS(18388), 1, anon_sym_RPAREN, - [306030] = 2, + [370633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14790), 1, + ACTIONS(18390), 1, anon_sym_LPAREN2, - [306037] = 2, + [370640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14792), 1, + ACTIONS(18392), 1, + anon_sym_LPAREN2, + [370647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18394), 1, sym_raw_string_content, - [306044] = 2, + [370654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14794), 1, + ACTIONS(18396), 1, anon_sym_RPAREN, - [306051] = 2, + [370661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18398), 1, + anon_sym_LPAREN2, + [370668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14796), 1, + ACTIONS(18400), 1, anon_sym_LPAREN2, - [306058] = 2, + [370675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14798), 1, + ACTIONS(18402), 1, sym_raw_string_content, - [306065] = 2, + [370682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14800), 1, + ACTIONS(18404), 1, anon_sym_RPAREN, - [306072] = 2, + [370689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14802), 1, - sym_raw_string_content, - [306079] = 2, + ACTIONS(18406), 1, + anon_sym_LPAREN2, + [370696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14804), 1, - anon_sym_RPAREN, - [306086] = 2, + ACTIONS(18408), 1, + anon_sym_LPAREN2, + [370703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(18410), 1, sym_raw_string_content, - [306093] = 2, + [370710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14808), 1, + ACTIONS(18412), 1, anon_sym_RPAREN, - [306100] = 2, + [370717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14810), 1, - sym_raw_string_content, - [306107] = 2, + ACTIONS(18414), 1, + anon_sym_LPAREN2, + [370724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14812), 1, - anon_sym_RPAREN, - [306114] = 2, + ACTIONS(18416), 1, + anon_sym_LPAREN2, + [370731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14814), 1, + ACTIONS(18418), 1, sym_raw_string_content, - [306121] = 2, + [370738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14816), 1, + ACTIONS(18420), 1, anon_sym_RPAREN, - [306128] = 2, + [370745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14818), 1, + ACTIONS(18422), 1, + anon_sym_LPAREN2, + [370752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18424), 1, sym_raw_string_content, - [306135] = 2, + [370759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(18426), 1, anon_sym_RPAREN, - [306142] = 2, + [370766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_CARET_EQ, - [306149] = 2, + ACTIONS(18428), 1, + anon_sym_LPAREN2, + [370773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14822), 1, - anon_sym_SEMI, - [306156] = 2, + ACTIONS(18430), 1, + anon_sym_LPAREN2, + [370780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14824), 1, + ACTIONS(18432), 1, anon_sym_LPAREN2, - [306163] = 2, + [370787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14826), 1, - anon_sym_LPAREN2, - [306170] = 2, + ACTIONS(18434), 1, + anon_sym_RPAREN, + [370794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14828), 1, + ACTIONS(18436), 1, sym_identifier, - [306177] = 2, + [370801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14830), 1, - anon_sym_DQUOTE, - [306184] = 2, + ACTIONS(18438), 1, + anon_sym_LPAREN2, + [370808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14832), 1, - anon_sym_SEMI, - [306191] = 2, + ACTIONS(18440), 1, + anon_sym_LPAREN2, + [370815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18442), 1, + sym_identifier, + [370822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18444), 1, + anon_sym_RPAREN, + [370829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14834), 1, + ACTIONS(18446), 1, anon_sym_SEMI, - [306198] = 2, + [370836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14836), 1, + ACTIONS(18448), 1, anon_sym_SEMI, - [306205] = 2, - ACTIONS(10266), 1, + [370843] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14838), 1, - aux_sym_preproc_include_token2, - [306212] = 2, + ACTIONS(18450), 1, + anon_sym_RPAREN, + [370850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14840), 1, + ACTIONS(18452), 1, anon_sym_RPAREN, - [306219] = 2, + [370857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14842), 1, + ACTIONS(18454), 1, anon_sym_RPAREN, - [306226] = 2, + [370864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(14519), 1, + anon_sym_RBRACE, + [370871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18456), 1, anon_sym_RPAREN, - [306233] = 2, + [370878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5682), 1, + anon_sym_DOT_DOT_DOT, + [370885] = 2, + ACTIONS(8384), 1, + aux_sym_preproc_include_token2, + ACTIONS(13686), 1, + sym_comment, + [370892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14846), 1, + ACTIONS(18458), 1, aux_sym_preproc_if_token2, - [306240] = 2, + [370899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14848), 1, + ACTIONS(15562), 1, anon_sym_SEMI, - [306247] = 2, + [370906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10824), 1, - anon_sym_LBRACE, - [306254] = 2, + ACTIONS(18460), 1, + anon_sym_RPAREN, + [370913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14850), 1, - anon_sym_SEMI, - [306261] = 2, + ACTIONS(18462), 1, + anon_sym_RPAREN, + [370920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_SEMI, - [306268] = 2, + ACTIONS(18464), 1, + anon_sym_LPAREN2, + [370927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14854), 1, - sym_identifier, - [306275] = 2, + ACTIONS(18466), 1, + anon_sym_RPAREN, + [370934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14856), 1, - anon_sym_SEMI, - [306282] = 2, + ACTIONS(18468), 1, + anon_sym_RPAREN, + [370941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14858), 1, - sym_identifier, - [306289] = 2, + ACTIONS(18470), 1, + anon_sym_RPAREN, + [370948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14860), 1, - sym_raw_string_content, - [306296] = 2, + ACTIONS(18472), 1, + anon_sym_SEMI, + [370955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14862), 1, - sym_auto, - [306303] = 2, + ACTIONS(18474), 1, + anon_sym_RPAREN, + [370962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7102), 1, - anon_sym_SEMI, - [306310] = 2, + ACTIONS(18476), 1, + anon_sym_RPAREN, + [370969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(18478), 1, + sym_identifier, + [370976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10457), 1, anon_sym_RPAREN, - [306317] = 2, + [370983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14866), 1, - anon_sym_LPAREN2, - [306324] = 2, + ACTIONS(18480), 1, + sym_identifier, + [370990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17129), 1, + anon_sym_or, + [370997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14868), 1, + ACTIONS(14801), 1, anon_sym_SEMI, - [306331] = 2, + [371004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14870), 1, - sym_identifier, - [306338] = 2, + ACTIONS(11937), 1, + anon_sym_SEMI, + [371011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14872), 1, - anon_sym_DQUOTE, - [306345] = 2, + ACTIONS(18482), 1, + anon_sym_RPAREN, + [371018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11175), 1, - anon_sym_RBRACE, - [306352] = 2, + ACTIONS(18484), 1, + aux_sym_preproc_if_token2, + [371025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14874), 1, + ACTIONS(18486), 1, aux_sym_preproc_if_token2, - [306359] = 2, + [371032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14876), 1, - anon_sym_RPAREN, - [306366] = 2, + ACTIONS(18488), 1, + aux_sym_preproc_if_token2, + [371039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13619), 1, - anon_sym_RBRACE, - [306373] = 2, + ACTIONS(17129), 1, + anon_sym_EQ_EQ, + [371046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14878), 1, + ACTIONS(18490), 1, + anon_sym_SEMI, + [371053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18492), 1, anon_sym_RPAREN, - [306380] = 2, + [371060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14880), 1, - anon_sym_SEMI, - [306387] = 2, - ACTIONS(10266), 1, + ACTIONS(18494), 1, + sym_identifier, + [371067] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10453), 1, - aux_sym_preproc_include_token2, - [306394] = 2, + ACTIONS(18496), 1, + anon_sym_private, + [371074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14882), 1, - anon_sym_SEMI, - [306401] = 2, + ACTIONS(18498), 1, + anon_sym_STAR, + [371081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14884), 1, + ACTIONS(18500), 1, + sym_identifier, + [371088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18502), 1, anon_sym_RPAREN, - [306408] = 2, + [371095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14886), 1, - anon_sym_SEMI, - [306415] = 2, + ACTIONS(18504), 1, + sym_identifier, + [371102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13621), 1, - anon_sym_RBRACE, - [306422] = 2, + ACTIONS(18506), 1, + sym_raw_string_content, + [371109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, - anon_sym_xor, - [306429] = 2, + ACTIONS(5673), 1, + anon_sym_DOT_DOT_DOT, + [371116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14888), 1, + ACTIONS(18508), 1, anon_sym_SEMI, - [306436] = 2, + [371123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14890), 1, - anon_sym_LPAREN2, - [306443] = 2, + ACTIONS(18510), 1, + anon_sym_STAR, + [371130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(18512), 1, anon_sym_RPAREN, - [306450] = 2, + [371137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14894), 1, + ACTIONS(18514), 1, anon_sym_RPAREN, - [306457] = 2, + [371144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14896), 1, - anon_sym_SEMI, - [306464] = 2, + ACTIONS(12391), 1, + anon_sym_RPAREN, + [371151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14898), 1, + ACTIONS(18516), 1, anon_sym_RPAREN, - [306471] = 2, + [371158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_SEMI, - [306478] = 2, + ACTIONS(18518), 1, + aux_sym_preproc_if_token2, + [371165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14902), 1, + ACTIONS(18520), 1, anon_sym_SEMI, - [306485] = 2, + [371172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14904), 1, - anon_sym_DQUOTE, - [306492] = 2, + ACTIONS(17129), 1, + anon_sym_and, + [371179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(18522), 1, anon_sym_SEMI, - [306499] = 2, + [371186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14908), 1, + ACTIONS(5658), 1, + anon_sym_DOT_DOT_DOT, + [371193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18524), 1, anon_sym_RPAREN, - [306506] = 2, + [371200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14910), 1, - anon_sym_SEMI, - [306513] = 2, + ACTIONS(5637), 1, + anon_sym_DOT_DOT_DOT, + [371207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9107), 1, - anon_sym_COLON, - [306520] = 2, + ACTIONS(17129), 1, + anon_sym_bitor, + [371214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14912), 1, - sym_identifier, - [306527] = 2, + ACTIONS(18526), 1, + anon_sym_RPAREN, + [371221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14914), 1, - anon_sym_STAR, - [306534] = 2, + ACTIONS(18528), 1, + anon_sym_SEMI, + [371228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14916), 1, + ACTIONS(18530), 1, + anon_sym_SEMI, + [371235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18532), 1, anon_sym_RPAREN, - [306541] = 2, + [371242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9089), 1, - anon_sym_COLON, - [306548] = 2, + ACTIONS(5643), 1, + anon_sym_DOT_DOT_DOT, + [371249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14918), 1, - sym_raw_string_delimiter, - [306555] = 2, + ACTIONS(5652), 1, + anon_sym_DOT_DOT_DOT, + [371256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12552), 1, - anon_sym_SEMI, - [306562] = 2, + ACTIONS(18534), 1, + sym_identifier, + [371263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14920), 1, + ACTIONS(18536), 1, anon_sym_SEMI, - [306569] = 2, + [371270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 1, - anon_sym_LBRACE, - [306576] = 2, + ACTIONS(5649), 1, + anon_sym_DOT_DOT_DOT, + [371277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14924), 1, - aux_sym_preproc_if_token2, - [306583] = 2, + ACTIONS(12088), 1, + anon_sym_RBRACE, + [371284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14926), 1, - aux_sym_preproc_if_token2, - [306590] = 2, + ACTIONS(12501), 1, + anon_sym_RPAREN, + [371291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14928), 1, + ACTIONS(18538), 1, + anon_sym_EQ, + [371298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16299), 1, anon_sym_RPAREN, - [306597] = 2, + [371305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 1, - aux_sym_preproc_if_token2, - [306604] = 2, + ACTIONS(14521), 1, + anon_sym_RBRACE, + [371312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14932), 1, + ACTIONS(18540), 1, + anon_sym_STAR, + [371319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12355), 1, anon_sym_RPAREN, - [306611] = 2, + [371326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 1, + ACTIONS(18542), 1, anon_sym_SEMI, - [306618] = 2, + [371333] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(18544), 1, + aux_sym_preproc_include_token2, + [371340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14936), 1, + ACTIONS(12620), 1, + anon_sym_RPAREN, + [371347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12373), 1, anon_sym_SEMI, - [306625] = 2, + [371354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(18546), 1, anon_sym_RPAREN, - [306632] = 2, + [371361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14940), 1, - anon_sym_COLON, - [306639] = 2, + ACTIONS(18548), 1, + aux_sym_preproc_if_token2, + [371368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14942), 1, - anon_sym_SEMI, - [306646] = 2, + ACTIONS(12357), 1, + anon_sym_RPAREN, + [371375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(17129), 1, + anon_sym_BANG_EQ, + [371382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12658), 1, anon_sym_RPAREN, - [306653] = 2, + [371389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, - anon_sym_SEMI, - [306660] = 2, + ACTIONS(5640), 1, + anon_sym_DOT_DOT_DOT, + [371396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14946), 1, - anon_sym_LPAREN2, - [306667] = 2, + ACTIONS(12359), 1, + anon_sym_RPAREN, + [371403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14948), 1, + ACTIONS(18550), 1, anon_sym_RPAREN, - [306674] = 2, + [371410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14950), 1, - anon_sym_LPAREN2, - [306681] = 2, + ACTIONS(18552), 1, + sym_identifier, + [371417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(17129), 1, + anon_sym_xor, + [371424] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(13855), 1, + aux_sym_preproc_include_token2, + [371431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18554), 1, + anon_sym_RPAREN, + [371438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17033), 1, anon_sym_RBRACE, - [306688] = 2, + [371445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12399), 1, - anon_sym_SEMI, - [306695] = 2, + ACTIONS(5655), 1, + anon_sym_DOT_DOT_DOT, + [371452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14952), 1, - aux_sym_preproc_if_token2, - [306702] = 2, + ACTIONS(18556), 1, + anon_sym_RBRACK, + [371459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14954), 1, - aux_sym_preproc_if_token2, - [306709] = 2, + ACTIONS(12263), 1, + anon_sym_COLON, + [371466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14956), 1, + ACTIONS(18558), 1, + anon_sym_LPAREN2, + [371473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_DOT_DOT_DOT, + [371480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12365), 1, anon_sym_COLON, - [306716] = 2, + [371487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14958), 1, + ACTIONS(18560), 1, sym_identifier, - [306723] = 2, + [371494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9121), 1, - anon_sym_COLON, - [306730] = 2, + ACTIONS(14825), 1, + anon_sym_SEMI, + [371501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14960), 1, - aux_sym_preproc_if_token2, - [306737] = 2, + ACTIONS(14499), 1, + anon_sym_RBRACE, + [371508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14962), 1, - sym_identifier, - [306744] = 2, + ACTIONS(18562), 1, + anon_sym_DQUOTE, + [371515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14964), 1, + ACTIONS(18564), 1, + anon_sym_RPAREN, + [371522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5668), 1, + anon_sym_DOT_DOT_DOT, + [371529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18566), 1, + anon_sym_SEMI, + [371536] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16112), 1, + aux_sym_preproc_include_token2, + [371543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18568), 1, anon_sym_LPAREN2, - [306751] = 2, + [371550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(18570), 1, anon_sym_LPAREN2, - [306758] = 2, + [371557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14968), 1, + ACTIONS(18572), 1, sym_identifier, - [306765] = 2, + [371564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14970), 1, - anon_sym_RBRACE, - [306772] = 2, + ACTIONS(18574), 1, + anon_sym_SEMI, + [371571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14972), 1, + ACTIONS(18576), 1, anon_sym_SEMI, - [306779] = 2, + [371578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14974), 1, - aux_sym_preproc_if_token2, - [306786] = 2, - ACTIONS(10266), 1, + ACTIONS(18578), 1, + anon_sym_SEMI, + [371585] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10376), 1, - aux_sym_preproc_include_token2, - [306793] = 2, + ACTIONS(18580), 1, + anon_sym_LPAREN2, + [371592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14976), 1, + ACTIONS(18582), 1, sym_identifier, - [306800] = 2, + [371599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14978), 1, - sym_raw_string_content, - [306807] = 2, - ACTIONS(10266), 1, + ACTIONS(18584), 1, + sym_identifier, + [371606] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10350), 1, - aux_sym_preproc_include_token2, - [306814] = 2, + ACTIONS(18586), 1, + sym_raw_string_content, + [371613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9117), 1, + ACTIONS(18588), 1, anon_sym_SEMI, - [306821] = 2, + [371620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14980), 1, + ACTIONS(18590), 1, anon_sym_LPAREN2, - [306828] = 2, + [371627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14982), 1, - anon_sym_RPAREN, - [306835] = 2, + ACTIONS(17039), 1, + anon_sym_RBRACE, + [371634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14984), 1, + ACTIONS(18592), 1, + anon_sym_SEMI, + [371641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18594), 1, anon_sym_LPAREN2, - [306842] = 2, + [371648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14986), 1, + ACTIONS(18596), 1, anon_sym_LPAREN2, - [306849] = 2, + [371655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14988), 1, + ACTIONS(18598), 1, sym_identifier, - [306856] = 2, + [371662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14990), 1, + ACTIONS(18600), 1, + anon_sym_DQUOTE, + [371669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14740), 1, + anon_sym_LBRACE, + [371676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18602), 1, anon_sym_RPAREN, - [306863] = 2, + [371683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14992), 1, - anon_sym_DQUOTE, - [306870] = 2, + ACTIONS(18604), 1, + anon_sym_LPAREN2, + [371690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14994), 1, + ACTIONS(18606), 1, sym_identifier, - [306877] = 2, + [371697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14996), 1, + ACTIONS(18608), 1, sym_raw_string_content, - [306884] = 2, + [371704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14998), 1, - anon_sym_SEMI, - [306891] = 2, + ACTIONS(18610), 1, + sym_identifier, + [371711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15000), 1, + ACTIONS(12281), 1, anon_sym_SEMI, - [306898] = 2, + [371718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15002), 1, + ACTIONS(18612), 1, anon_sym_DQUOTE, - [306905] = 2, + [371725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15004), 1, + ACTIONS(18614), 1, anon_sym_LPAREN2, - [306912] = 2, + [371732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15006), 1, + ACTIONS(18616), 1, sym_identifier, - [306919] = 2, + [371739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15008), 1, - anon_sym_SEMI, - [306926] = 2, + ACTIONS(18618), 1, + anon_sym_LPAREN2, + [371746] = 2, + ACTIONS(8402), 1, + aux_sym_preproc_include_token2, + ACTIONS(13686), 1, + sym_comment, + [371753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15010), 1, - anon_sym_RPAREN, - [306933] = 2, + ACTIONS(17129), 1, + anon_sym_AMP_EQ, + [371760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15012), 1, + ACTIONS(18620), 1, sym_identifier, - [306940] = 2, + [371767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15014), 1, + ACTIONS(18622), 1, sym_raw_string_content, - [306947] = 2, + [371774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15016), 1, - anon_sym_SEMI, - [306954] = 2, + ACTIONS(17129), 1, + anon_sym_COMMA, + [371781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15018), 1, - anon_sym_RPAREN, - [306961] = 2, + ACTIONS(5646), 1, + anon_sym_DOT_DOT_DOT, + [371788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15020), 1, + ACTIONS(18624), 1, anon_sym_LPAREN2, - [306968] = 2, + [371795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15022), 1, + ACTIONS(18626), 1, sym_identifier, - [306975] = 2, + [371802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15024), 1, - anon_sym_RPAREN, - [306982] = 2, + ACTIONS(18628), 1, + anon_sym_SEMI, + [371809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15026), 1, - anon_sym_SEMI, - [306989] = 2, + ACTIONS(18630), 1, + aux_sym_preproc_if_token2, + [371816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15028), 1, + ACTIONS(18632), 1, + anon_sym_DQUOTE, + [371823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18634), 1, sym_identifier, - [306996] = 2, + [371830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15030), 1, + ACTIONS(18636), 1, sym_raw_string_content, - [307003] = 2, + [371837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15032), 1, - anon_sym_RPAREN, - [307010] = 2, + ACTIONS(17129), 1, + anon_sym_bitand, + [371844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15034), 1, + ACTIONS(18638), 1, anon_sym_LPAREN2, - [307017] = 2, + [371851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15036), 1, + ACTIONS(18640), 1, sym_identifier, - [307024] = 2, + [371858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15038), 1, - sym_identifier, - [307031] = 2, + ACTIONS(18642), 1, + anon_sym_DQUOTE, + [371865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15040), 1, + ACTIONS(12551), 1, + anon_sym_RPAREN, + [371872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18644), 1, sym_identifier, - [307038] = 2, + [371879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15042), 1, + ACTIONS(18646), 1, sym_raw_string_content, - [307045] = 2, + [371886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_SEMI, - [307052] = 2, + ACTIONS(18648), 1, + anon_sym_RPAREN, + [371893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15044), 1, + ACTIONS(18650), 1, sym_identifier, - [307059] = 2, + [371900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15046), 1, - sym_raw_string_content, - [307066] = 2, + ACTIONS(17129), 1, + anon_sym_DASH, + [371907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15048), 1, - anon_sym_LBRACE, - [307073] = 2, + ACTIONS(18652), 1, + sym_identifier, + [371914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15050), 1, + ACTIONS(18654), 1, sym_raw_string_content, - [307080] = 2, + [371921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15052), 1, + ACTIONS(18656), 1, anon_sym_RPAREN, - [307087] = 2, + [371928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15054), 1, + ACTIONS(18658), 1, + anon_sym_RPAREN, + [371935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18660), 1, sym_raw_string_content, - [307094] = 2, + [371942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15056), 1, + ACTIONS(18662), 1, + anon_sym_STAR, + [371949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18664), 1, + sym_raw_string_content, + [371956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18666), 1, + anon_sym_SEMI, + [371963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18668), 1, + sym_raw_string_content, + [371970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18670), 1, anon_sym_RPAREN, - [307101] = 2, + [371977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15058), 1, + ACTIONS(18672), 1, sym_raw_string_content, - [307108] = 2, + [371984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9336), 1, + ACTIONS(18674), 1, anon_sym_RPAREN, - [307115] = 2, + [371991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15060), 1, + ACTIONS(18676), 1, sym_raw_string_content, - [307122] = 2, + [371998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, + ACTIONS(18678), 1, sym_identifier, - [307129] = 2, + [372005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15062), 1, + ACTIONS(18680), 1, sym_raw_string_content, - [307136] = 2, + [372012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15064), 1, - anon_sym_SEMI, - [307143] = 2, + ACTIONS(18682), 1, + anon_sym_RPAREN, + [372019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15066), 1, + ACTIONS(18684), 1, sym_raw_string_content, - [307150] = 2, + [372026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15068), 1, - anon_sym_DQUOTE, - [307157] = 2, + ACTIONS(18686), 1, + aux_sym_preproc_if_token2, + [372033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15070), 1, + ACTIONS(18688), 1, sym_raw_string_content, - [307164] = 2, + [372040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13066), 1, + ACTIONS(18690), 1, + sym_auto, + [372047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18692), 1, + sym_raw_string_content, + [372054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18694), 1, + aux_sym_preproc_if_token2, + [372061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18696), 1, + sym_raw_string_content, + [372068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18698), 1, + anon_sym_SEMI, + [372075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18700), 1, + sym_raw_string_content, + [372082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18702), 1, anon_sym_RPAREN, - [307171] = 2, + [372089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15072), 1, + ACTIONS(18704), 1, sym_raw_string_content, - [307178] = 2, + [372096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15074), 1, + ACTIONS(18706), 1, anon_sym_RPAREN, - [307185] = 2, + [372103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(18708), 1, sym_raw_string_content, - [307192] = 2, + [372110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15078), 1, + ACTIONS(17129), 1, + anon_sym_PLUS, + [372117] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(18710), 1, + aux_sym_preproc_include_token2, + [372124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18712), 1, + anon_sym_SEMI, + [372131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18714), 1, + anon_sym_SEMI, + [372138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18716), 1, anon_sym_LPAREN2, - [307199] = 2, + [372145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(18718), 1, + anon_sym_DQUOTE, + [372152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18720), 1, + anon_sym_RPAREN, + [372159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17129), 1, + anon_sym_STAR, + [372166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18722), 1, + anon_sym_RPAREN, + [372173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18724), 1, + anon_sym_SLASH, + [372180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18726), 1, + anon_sym_RPAREN, + [372187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18728), 1, + anon_sym_COLON, + [372194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16857), 1, + anon_sym_SEMI, + [372201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18730), 1, anon_sym_LPAREN2, - [307206] = 2, + [372208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 1, - sym_raw_string_delimiter, - [307213] = 2, + ACTIONS(18732), 1, + anon_sym_SEMI, + [372215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15084), 1, + ACTIONS(18734), 1, + anon_sym_SEMI, + [372222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17129), 1, + anon_sym_PERCENT, + [372229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18736), 1, + anon_sym_RPAREN, + [372236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12377), 1, + anon_sym_COLON, + [372243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18738), 1, anon_sym_LPAREN2, - [307220] = 2, + [372250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15086), 1, + ACTIONS(18740), 1, anon_sym_LPAREN2, - [307227] = 2, + [372257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(18742), 1, anon_sym_SEMI, - [307234] = 2, + [372264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15088), 1, + ACTIONS(18744), 1, anon_sym_LPAREN2, - [307241] = 2, + [372271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15090), 1, + ACTIONS(18746), 1, anon_sym_LPAREN2, - [307248] = 2, + [372278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_COLON_COLON, - [307255] = 2, + ACTIONS(18748), 1, + anon_sym_RPAREN, + [372285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(18750), 1, anon_sym_LPAREN2, - [307262] = 2, + [372292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15094), 1, + ACTIONS(18752), 1, anon_sym_LPAREN2, - [307269] = 2, + [372299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15096), 1, - anon_sym_SEMI, - [307276] = 2, + ACTIONS(18754), 1, + anon_sym_DQUOTE, + [372306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15098), 1, + ACTIONS(18756), 1, anon_sym_LPAREN2, - [307283] = 2, + [372313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(18758), 1, anon_sym_LPAREN2, - [307290] = 2, + [372320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15102), 1, - anon_sym_DQUOTE, - [307297] = 2, + ACTIONS(12597), 1, + anon_sym_RPAREN, + [372327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15104), 1, + ACTIONS(18760), 1, anon_sym_LPAREN2, - [307304] = 2, + [372334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15106), 1, + ACTIONS(18762), 1, anon_sym_LPAREN2, - [307311] = 2, + [372341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15108), 1, + ACTIONS(18764), 1, + sym_identifier, + [372348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18766), 1, anon_sym_LPAREN2, - [307318] = 2, + [372355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15110), 1, + ACTIONS(18768), 1, anon_sym_LPAREN2, - [307325] = 2, + [372362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15112), 1, + ACTIONS(11939), 1, + anon_sym_RBRACE, + [372369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18770), 1, anon_sym_LPAREN2, - [307332] = 2, + [372376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15114), 1, + ACTIONS(18772), 1, anon_sym_LPAREN2, - [307339] = 2, + [372383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15116), 1, + ACTIONS(18774), 1, anon_sym_LPAREN2, - [307346] = 2, + [372390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15118), 1, + ACTIONS(18776), 1, anon_sym_LPAREN2, - [307353] = 2, + [372397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15120), 1, + ACTIONS(18778), 1, anon_sym_LPAREN2, - [307360] = 2, + [372404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15122), 1, + ACTIONS(18780), 1, anon_sym_LPAREN2, - [307367] = 2, + [372411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15124), 1, + ACTIONS(18782), 1, anon_sym_LPAREN2, - [307374] = 2, + [372418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9051), 1, - anon_sym_SEMI, - [307381] = 2, - ACTIONS(10266), 1, + ACTIONS(18784), 1, + anon_sym_LPAREN2, + [372425] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12763), 1, - aux_sym_preproc_include_token2, - [307388] = 2, + ACTIONS(18786), 1, + anon_sym_LPAREN2, + [372432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15126), 1, + ACTIONS(18788), 1, + anon_sym_LPAREN2, + [372439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18790), 1, + anon_sym_LPAREN2, + [372446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18792), 1, + anon_sym_LPAREN2, + [372453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18794), 1, + anon_sym_LPAREN2, + [372460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18796), 1, anon_sym_RPAREN, - [307395] = 2, + [372467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15128), 1, + ACTIONS(18798), 1, aux_sym_preproc_if_token2, - [307402] = 2, + [372474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15130), 1, + ACTIONS(18800), 1, + anon_sym_COLON, + [372481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12291), 1, + anon_sym_COLON, + [372488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18802), 1, anon_sym_SEMI, - [307409] = 2, + [372495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15132), 1, + ACTIONS(18804), 1, + anon_sym_SEMI, + [372502] = 2, + ACTIONS(13686), 1, + sym_comment, + ACTIONS(16672), 1, + aux_sym_preproc_include_token2, + [372509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18806), 1, anon_sym_LPAREN2, - [307416] = 2, + [372516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15134), 1, + ACTIONS(18808), 1, anon_sym_LPAREN2, - [307423] = 2, + [372523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15136), 1, + ACTIONS(18810), 1, anon_sym_LPAREN2, - [307430] = 2, + [372530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15138), 1, + ACTIONS(18812), 1, anon_sym_LPAREN2, - [307437] = 2, + [372537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15140), 1, + ACTIONS(18814), 1, anon_sym_LPAREN2, - [307444] = 2, + [372544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15142), 1, - anon_sym_SEMI, + ACTIONS(18816), 1, + anon_sym_LPAREN2, + [372551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18818), 1, + anon_sym_LPAREN2, + [372558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18820), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2317)] = 0, - [SMALL_STATE(2318)] = 87, - [SMALL_STATE(2319)] = 158, - [SMALL_STATE(2320)] = 229, - [SMALL_STATE(2321)] = 300, - [SMALL_STATE(2322)] = 371, - [SMALL_STATE(2323)] = 442, - [SMALL_STATE(2324)] = 513, - [SMALL_STATE(2325)] = 584, - [SMALL_STATE(2326)] = 657, - [SMALL_STATE(2327)] = 728, - [SMALL_STATE(2328)] = 799, - [SMALL_STATE(2329)] = 880, - [SMALL_STATE(2330)] = 951, - [SMALL_STATE(2331)] = 1022, - [SMALL_STATE(2332)] = 1097, - [SMALL_STATE(2333)] = 1168, - [SMALL_STATE(2334)] = 1239, - [SMALL_STATE(2335)] = 1324, - [SMALL_STATE(2336)] = 1395, - [SMALL_STATE(2337)] = 1470, - [SMALL_STATE(2338)] = 1541, - [SMALL_STATE(2339)] = 1624, - [SMALL_STATE(2340)] = 1695, - [SMALL_STATE(2341)] = 1770, - [SMALL_STATE(2342)] = 1845, - [SMALL_STATE(2343)] = 1916, - [SMALL_STATE(2344)] = 1987, - [SMALL_STATE(2345)] = 2062, - [SMALL_STATE(2346)] = 2133, - [SMALL_STATE(2347)] = 2218, - [SMALL_STATE(2348)] = 2303, - [SMALL_STATE(2349)] = 2374, - [SMALL_STATE(2350)] = 2445, - [SMALL_STATE(2351)] = 2528, - [SMALL_STATE(2352)] = 2599, - [SMALL_STATE(2353)] = 2674, - [SMALL_STATE(2354)] = 2749, - [SMALL_STATE(2355)] = 2820, - [SMALL_STATE(2356)] = 2895, - [SMALL_STATE(2357)] = 2966, - [SMALL_STATE(2358)] = 3037, - [SMALL_STATE(2359)] = 3108, - [SMALL_STATE(2360)] = 3179, - [SMALL_STATE(2361)] = 3250, - [SMALL_STATE(2362)] = 3325, - [SMALL_STATE(2363)] = 3400, - [SMALL_STATE(2364)] = 3479, - [SMALL_STATE(2365)] = 3554, - [SMALL_STATE(2366)] = 3625, - [SMALL_STATE(2367)] = 3700, - [SMALL_STATE(2368)] = 3771, - [SMALL_STATE(2369)] = 3842, - [SMALL_STATE(2370)] = 3917, - [SMALL_STATE(2371)] = 3988, - [SMALL_STATE(2372)] = 4059, - [SMALL_STATE(2373)] = 4130, - [SMALL_STATE(2374)] = 4201, - [SMALL_STATE(2375)] = 4272, - [SMALL_STATE(2376)] = 4343, - [SMALL_STATE(2377)] = 4414, - [SMALL_STATE(2378)] = 4485, - [SMALL_STATE(2379)] = 4556, - [SMALL_STATE(2380)] = 4627, - [SMALL_STATE(2381)] = 4698, - [SMALL_STATE(2382)] = 4783, - [SMALL_STATE(2383)] = 4854, - [SMALL_STATE(2384)] = 4925, - [SMALL_STATE(2385)] = 4996, - [SMALL_STATE(2386)] = 5083, - [SMALL_STATE(2387)] = 5154, - [SMALL_STATE(2388)] = 5225, - [SMALL_STATE(2389)] = 5296, - [SMALL_STATE(2390)] = 5367, - [SMALL_STATE(2391)] = 5438, - [SMALL_STATE(2392)] = 5509, - [SMALL_STATE(2393)] = 5580, - [SMALL_STATE(2394)] = 5651, - [SMALL_STATE(2395)] = 5730, - [SMALL_STATE(2396)] = 5811, - [SMALL_STATE(2397)] = 5882, - [SMALL_STATE(2398)] = 5953, - [SMALL_STATE(2399)] = 6024, - [SMALL_STATE(2400)] = 6109, - [SMALL_STATE(2401)] = 6180, - [SMALL_STATE(2402)] = 6251, - [SMALL_STATE(2403)] = 6322, - [SMALL_STATE(2404)] = 6401, - [SMALL_STATE(2405)] = 6472, - [SMALL_STATE(2406)] = 6549, - [SMALL_STATE(2407)] = 6620, - [SMALL_STATE(2408)] = 6695, - [SMALL_STATE(2409)] = 6766, - [SMALL_STATE(2410)] = 6837, - [SMALL_STATE(2411)] = 6913, - [SMALL_STATE(2412)] = 6983, - [SMALL_STATE(2413)] = 7053, - [SMALL_STATE(2414)] = 7123, - [SMALL_STATE(2415)] = 7193, - [SMALL_STATE(2416)] = 7263, - [SMALL_STATE(2417)] = 7333, - [SMALL_STATE(2418)] = 7403, - [SMALL_STATE(2419)] = 7479, - [SMALL_STATE(2420)] = 7553, - [SMALL_STATE(2421)] = 7623, - [SMALL_STATE(2422)] = 7693, - [SMALL_STATE(2423)] = 7767, - [SMALL_STATE(2424)] = 7837, - [SMALL_STATE(2425)] = 7911, - [SMALL_STATE(2426)] = 7981, - [SMALL_STATE(2427)] = 8055, - [SMALL_STATE(2428)] = 8129, - [SMALL_STATE(2429)] = 8199, - [SMALL_STATE(2430)] = 8269, - [SMALL_STATE(2431)] = 8343, - [SMALL_STATE(2432)] = 8417, - [SMALL_STATE(2433)] = 8487, - [SMALL_STATE(2434)] = 8561, - [SMALL_STATE(2435)] = 8631, - [SMALL_STATE(2436)] = 8701, - [SMALL_STATE(2437)] = 8771, - [SMALL_STATE(2438)] = 8841, - [SMALL_STATE(2439)] = 8911, - [SMALL_STATE(2440)] = 8985, - [SMALL_STATE(2441)] = 9055, - [SMALL_STATE(2442)] = 9125, - [SMALL_STATE(2443)] = 9207, - [SMALL_STATE(2444)] = 9289, - [SMALL_STATE(2445)] = 9359, - [SMALL_STATE(2446)] = 9429, - [SMALL_STATE(2447)] = 9499, - [SMALL_STATE(2448)] = 9569, - [SMALL_STATE(2449)] = 9643, - [SMALL_STATE(2450)] = 9713, - [SMALL_STATE(2451)] = 9783, - [SMALL_STATE(2452)] = 9853, - [SMALL_STATE(2453)] = 9941, - [SMALL_STATE(2454)] = 10011, - [SMALL_STATE(2455)] = 10081, - [SMALL_STATE(2456)] = 10157, - [SMALL_STATE(2457)] = 10233, - [SMALL_STATE(2458)] = 10309, - [SMALL_STATE(2459)] = 10379, - [SMALL_STATE(2460)] = 10453, - [SMALL_STATE(2461)] = 10523, - [SMALL_STATE(2462)] = 10593, - [SMALL_STATE(2463)] = 10667, - [SMALL_STATE(2464)] = 10741, - [SMALL_STATE(2465)] = 10815, - [SMALL_STATE(2466)] = 10885, - [SMALL_STATE(2467)] = 10955, - [SMALL_STATE(2468)] = 11029, - [SMALL_STATE(2469)] = 11099, - [SMALL_STATE(2470)] = 11169, - [SMALL_STATE(2471)] = 11239, - [SMALL_STATE(2472)] = 11311, - [SMALL_STATE(2473)] = 11381, - [SMALL_STATE(2474)] = 11451, - [SMALL_STATE(2475)] = 11521, - [SMALL_STATE(2476)] = 11591, - [SMALL_STATE(2477)] = 11661, - [SMALL_STATE(2478)] = 11735, - [SMALL_STATE(2479)] = 11805, - [SMALL_STATE(2480)] = 11875, - [SMALL_STATE(2481)] = 11945, - [SMALL_STATE(2482)] = 12023, - [SMALL_STATE(2483)] = 12099, - [SMALL_STATE(2484)] = 12169, - [SMALL_STATE(2485)] = 12239, - [SMALL_STATE(2486)] = 12309, - [SMALL_STATE(2487)] = 12383, - [SMALL_STATE(2488)] = 12453, - [SMALL_STATE(2489)] = 12523, - [SMALL_STATE(2490)] = 12593, - [SMALL_STATE(2491)] = 12667, - [SMALL_STATE(2492)] = 12737, - [SMALL_STATE(2493)] = 12811, - [SMALL_STATE(2494)] = 12881, - [SMALL_STATE(2495)] = 12951, - [SMALL_STATE(2496)] = 13021, - [SMALL_STATE(2497)] = 13091, - [SMALL_STATE(2498)] = 13165, - [SMALL_STATE(2499)] = 13235, - [SMALL_STATE(2500)] = 13305, - [SMALL_STATE(2501)] = 13375, - [SMALL_STATE(2502)] = 13449, - [SMALL_STATE(2503)] = 13519, - [SMALL_STATE(2504)] = 13593, - [SMALL_STATE(2505)] = 13679, - [SMALL_STATE(2506)] = 13755, - [SMALL_STATE(2507)] = 13829, - [SMALL_STATE(2508)] = 13899, - [SMALL_STATE(2509)] = 13969, - [SMALL_STATE(2510)] = 14039, - [SMALL_STATE(2511)] = 14109, - [SMALL_STATE(2512)] = 14183, - [SMALL_STATE(2513)] = 14257, - [SMALL_STATE(2514)] = 14331, - [SMALL_STATE(2515)] = 14407, - [SMALL_STATE(2516)] = 14477, - [SMALL_STATE(2517)] = 14547, - [SMALL_STATE(2518)] = 14623, - [SMALL_STATE(2519)] = 14699, - [SMALL_STATE(2520)] = 14769, - [SMALL_STATE(2521)] = 14843, - [SMALL_STATE(2522)] = 14913, - [SMALL_STATE(2523)] = 14983, - [SMALL_STATE(2524)] = 15053, - [SMALL_STATE(2525)] = 15129, - [SMALL_STATE(2526)] = 15199, - [SMALL_STATE(2527)] = 15269, - [SMALL_STATE(2528)] = 15339, - [SMALL_STATE(2529)] = 15409, - [SMALL_STATE(2530)] = 15479, - [SMALL_STATE(2531)] = 15549, - [SMALL_STATE(2532)] = 15619, - [SMALL_STATE(2533)] = 15689, - [SMALL_STATE(2534)] = 15763, - [SMALL_STATE(2535)] = 15833, - [SMALL_STATE(2536)] = 15903, - [SMALL_STATE(2537)] = 15973, - [SMALL_STATE(2538)] = 16043, - [SMALL_STATE(2539)] = 16113, - [SMALL_STATE(2540)] = 16183, - [SMALL_STATE(2541)] = 16259, - [SMALL_STATE(2542)] = 16329, - [SMALL_STATE(2543)] = 16399, - [SMALL_STATE(2544)] = 16469, - [SMALL_STATE(2545)] = 16539, - [SMALL_STATE(2546)] = 16608, - [SMALL_STATE(2547)] = 16695, - [SMALL_STATE(2548)] = 16772, - [SMALL_STATE(2549)] = 16841, - [SMALL_STATE(2550)] = 16910, - [SMALL_STATE(2551)] = 16979, - [SMALL_STATE(2552)] = 17048, - [SMALL_STATE(2553)] = 17117, - [SMALL_STATE(2554)] = 17186, - [SMALL_STATE(2555)] = 17255, - [SMALL_STATE(2556)] = 17326, - [SMALL_STATE(2557)] = 17395, - [SMALL_STATE(2558)] = 17466, - [SMALL_STATE(2559)] = 17551, - [SMALL_STATE(2560)] = 17620, - [SMALL_STATE(2561)] = 17689, - [SMALL_STATE(2562)] = 17758, - [SMALL_STATE(2563)] = 17833, - [SMALL_STATE(2564)] = 17902, - [SMALL_STATE(2565)] = 17971, - [SMALL_STATE(2566)] = 18040, - [SMALL_STATE(2567)] = 18109, - [SMALL_STATE(2568)] = 18194, - [SMALL_STATE(2569)] = 18281, - [SMALL_STATE(2570)] = 18350, - [SMALL_STATE(2571)] = 18423, - [SMALL_STATE(2572)] = 18492, - [SMALL_STATE(2573)] = 18569, - [SMALL_STATE(2574)] = 18638, - [SMALL_STATE(2575)] = 18713, - [SMALL_STATE(2576)] = 18782, - [SMALL_STATE(2577)] = 18851, - [SMALL_STATE(2578)] = 18920, - [SMALL_STATE(2579)] = 18999, - [SMALL_STATE(2580)] = 19086, - [SMALL_STATE(2581)] = 19155, - [SMALL_STATE(2582)] = 19224, - [SMALL_STATE(2583)] = 19293, - [SMALL_STATE(2584)] = 19362, - [SMALL_STATE(2585)] = 19437, - [SMALL_STATE(2586)] = 19506, - [SMALL_STATE(2587)] = 19575, - [SMALL_STATE(2588)] = 19644, - [SMALL_STATE(2589)] = 19713, - [SMALL_STATE(2590)] = 19782, - [SMALL_STATE(2591)] = 19851, - [SMALL_STATE(2592)] = 19920, - [SMALL_STATE(2593)] = 19989, - [SMALL_STATE(2594)] = 20058, - [SMALL_STATE(2595)] = 20127, - [SMALL_STATE(2596)] = 20196, - [SMALL_STATE(2597)] = 20265, - [SMALL_STATE(2598)] = 20334, - [SMALL_STATE(2599)] = 20403, - [SMALL_STATE(2600)] = 20472, - [SMALL_STATE(2601)] = 20541, - [SMALL_STATE(2602)] = 20610, - [SMALL_STATE(2603)] = 20679, - [SMALL_STATE(2604)] = 20748, - [SMALL_STATE(2605)] = 20867, - [SMALL_STATE(2606)] = 20986, - [SMALL_STATE(2607)] = 21055, - [SMALL_STATE(2608)] = 21126, - [SMALL_STATE(2609)] = 21213, - [SMALL_STATE(2610)] = 21282, - [SMALL_STATE(2611)] = 21351, - [SMALL_STATE(2612)] = 21420, - [SMALL_STATE(2613)] = 21489, - [SMALL_STATE(2614)] = 21558, - [SMALL_STATE(2615)] = 21645, - [SMALL_STATE(2616)] = 21714, - [SMALL_STATE(2617)] = 21801, - [SMALL_STATE(2618)] = 21875, - [SMALL_STATE(2619)] = 21955, - [SMALL_STATE(2620)] = 22029, - [SMALL_STATE(2621)] = 22103, - [SMALL_STATE(2622)] = 22179, - [SMALL_STATE(2623)] = 22255, - [SMALL_STATE(2624)] = 22337, - [SMALL_STATE(2625)] = 22413, - [SMALL_STATE(2626)] = 22483, - [SMALL_STATE(2627)] = 22553, - [SMALL_STATE(2628)] = 22621, - [SMALL_STATE(2629)] = 22689, - [SMALL_STATE(2630)] = 22757, - [SMALL_STATE(2631)] = 22825, - [SMALL_STATE(2632)] = 22907, - [SMALL_STATE(2633)] = 22975, - [SMALL_STATE(2634)] = 23049, - [SMALL_STATE(2635)] = 23117, - [SMALL_STATE(2636)] = 23185, - [SMALL_STATE(2637)] = 23253, - [SMALL_STATE(2638)] = 23321, - [SMALL_STATE(2639)] = 23389, - [SMALL_STATE(2640)] = 23475, - [SMALL_STATE(2641)] = 23549, - [SMALL_STATE(2642)] = 23617, - [SMALL_STATE(2643)] = 23693, - [SMALL_STATE(2644)] = 23761, - [SMALL_STATE(2645)] = 23829, - [SMALL_STATE(2646)] = 23897, - [SMALL_STATE(2647)] = 23968, - [SMALL_STATE(2648)] = 24039, - [SMALL_STATE(2649)] = 24112, - [SMALL_STATE(2650)] = 24185, - [SMALL_STATE(2651)] = 24302, - [SMALL_STATE(2652)] = 24369, - [SMALL_STATE(2653)] = 24440, - [SMALL_STATE(2654)] = 24511, - [SMALL_STATE(2655)] = 24578, - [SMALL_STATE(2656)] = 24645, - [SMALL_STATE(2657)] = 24716, - [SMALL_STATE(2658)] = 24789, - [SMALL_STATE(2659)] = 24860, - [SMALL_STATE(2660)] = 24977, - [SMALL_STATE(2661)] = 25046, - [SMALL_STATE(2662)] = 25129, - [SMALL_STATE(2663)] = 25200, - [SMALL_STATE(2664)] = 25271, - [SMALL_STATE(2665)] = 25344, - [SMALL_STATE(2666)] = 25415, - [SMALL_STATE(2667)] = 25498, - [SMALL_STATE(2668)] = 25569, - [SMALL_STATE(2669)] = 25640, - [SMALL_STATE(2670)] = 25711, - [SMALL_STATE(2671)] = 25782, - [SMALL_STATE(2672)] = 25853, - [SMALL_STATE(2673)] = 25924, - [SMALL_STATE(2674)] = 26001, - [SMALL_STATE(2675)] = 26072, - [SMALL_STATE(2676)] = 26141, - [SMALL_STATE(2677)] = 26258, - [SMALL_STATE(2678)] = 26329, - [SMALL_STATE(2679)] = 26400, - [SMALL_STATE(2680)] = 26467, - [SMALL_STATE(2681)] = 26534, - [SMALL_STATE(2682)] = 26611, - [SMALL_STATE(2683)] = 26678, - [SMALL_STATE(2684)] = 26751, - [SMALL_STATE(2685)] = 26822, - [SMALL_STATE(2686)] = 26893, - [SMALL_STATE(2687)] = 26962, - [SMALL_STATE(2688)] = 27029, - [SMALL_STATE(2689)] = 27146, - [SMALL_STATE(2690)] = 27213, - [SMALL_STATE(2691)] = 27284, - [SMALL_STATE(2692)] = 27355, - [SMALL_STATE(2693)] = 27426, - [SMALL_STATE(2694)] = 27543, - [SMALL_STATE(2695)] = 27614, - [SMALL_STATE(2696)] = 27685, - [SMALL_STATE(2697)] = 27802, - [SMALL_STATE(2698)] = 27882, - [SMALL_STATE(2699)] = 27952, - [SMALL_STATE(2700)] = 28024, - [SMALL_STATE(2701)] = 28094, - [SMALL_STATE(2702)] = 28160, - [SMALL_STATE(2703)] = 28230, - [SMALL_STATE(2704)] = 28296, - [SMALL_STATE(2705)] = 28362, - [SMALL_STATE(2706)] = 28428, - [SMALL_STATE(2707)] = 28496, - [SMALL_STATE(2708)] = 28564, - [SMALL_STATE(2709)] = 28638, - [SMALL_STATE(2710)] = 28704, - [SMALL_STATE(2711)] = 28774, - [SMALL_STATE(2712)] = 28844, - [SMALL_STATE(2713)] = 28916, - [SMALL_STATE(2714)] = 28986, - [SMALL_STATE(2715)] = 29058, - [SMALL_STATE(2716)] = 29130, - [SMALL_STATE(2717)] = 29200, - [SMALL_STATE(2718)] = 29266, - [SMALL_STATE(2719)] = 29338, - [SMALL_STATE(2720)] = 29404, - [SMALL_STATE(2721)] = 29470, - [SMALL_STATE(2722)] = 29540, - [SMALL_STATE(2723)] = 29612, - [SMALL_STATE(2724)] = 29684, - [SMALL_STATE(2725)] = 29750, - [SMALL_STATE(2726)] = 29820, - [SMALL_STATE(2727)] = 29886, - [SMALL_STATE(2728)] = 29952, - [SMALL_STATE(2729)] = 30018, - [SMALL_STATE(2730)] = 30084, - [SMALL_STATE(2731)] = 30156, - [SMALL_STATE(2732)] = 30224, - [SMALL_STATE(2733)] = 30296, - [SMALL_STATE(2734)] = 30362, - [SMALL_STATE(2735)] = 30428, - [SMALL_STATE(2736)] = 30494, - [SMALL_STATE(2737)] = 30560, - [SMALL_STATE(2738)] = 30626, - [SMALL_STATE(2739)] = 30706, - [SMALL_STATE(2740)] = 30772, - [SMALL_STATE(2741)] = 30844, - [SMALL_STATE(2742)] = 30910, - [SMALL_STATE(2743)] = 30978, - [SMALL_STATE(2744)] = 31048, - [SMALL_STATE(2745)] = 31118, - [SMALL_STATE(2746)] = 31188, - [SMALL_STATE(2747)] = 31256, - [SMALL_STATE(2748)] = 31328, - [SMALL_STATE(2749)] = 31400, - [SMALL_STATE(2750)] = 31472, - [SMALL_STATE(2751)] = 31542, - [SMALL_STATE(2752)] = 31608, - [SMALL_STATE(2753)] = 31692, - [SMALL_STATE(2754)] = 31758, - [SMALL_STATE(2755)] = 31830, - [SMALL_STATE(2756)] = 31902, - [SMALL_STATE(2757)] = 31968, - [SMALL_STATE(2758)] = 32033, - [SMALL_STATE(2759)] = 32128, - [SMALL_STATE(2760)] = 32219, - [SMALL_STATE(2761)] = 32306, - [SMALL_STATE(2762)] = 32371, - [SMALL_STATE(2763)] = 32480, - [SMALL_STATE(2764)] = 32593, - [SMALL_STATE(2765)] = 32702, - [SMALL_STATE(2766)] = 32815, - [SMALL_STATE(2767)] = 32880, - [SMALL_STATE(2768)] = 32945, - [SMALL_STATE(2769)] = 33010, - [SMALL_STATE(2770)] = 33075, - [SMALL_STATE(2771)] = 33140, - [SMALL_STATE(2772)] = 33205, - [SMALL_STATE(2773)] = 33270, - [SMALL_STATE(2774)] = 33335, - [SMALL_STATE(2775)] = 33400, - [SMALL_STATE(2776)] = 33467, - [SMALL_STATE(2777)] = 33548, - [SMALL_STATE(2778)] = 33631, - [SMALL_STATE(2779)] = 33716, - [SMALL_STATE(2780)] = 33781, - [SMALL_STATE(2781)] = 33846, - [SMALL_STATE(2782)] = 33911, - [SMALL_STATE(2783)] = 33992, - [SMALL_STATE(2784)] = 34057, - [SMALL_STATE(2785)] = 34122, - [SMALL_STATE(2786)] = 34189, - [SMALL_STATE(2787)] = 34268, - [SMALL_STATE(2788)] = 34353, - [SMALL_STATE(2789)] = 34418, - [SMALL_STATE(2790)] = 34483, - [SMALL_STATE(2791)] = 34548, - [SMALL_STATE(2792)] = 34615, - [SMALL_STATE(2793)] = 34680, - [SMALL_STATE(2794)] = 34745, - [SMALL_STATE(2795)] = 34810, - [SMALL_STATE(2796)] = 34881, - [SMALL_STATE(2797)] = 34946, - [SMALL_STATE(2798)] = 35011, - [SMALL_STATE(2799)] = 35076, - [SMALL_STATE(2800)] = 35141, - [SMALL_STATE(2801)] = 35222, - [SMALL_STATE(2802)] = 35287, - [SMALL_STATE(2803)] = 35352, - [SMALL_STATE(2804)] = 35417, - [SMALL_STATE(2805)] = 35486, - [SMALL_STATE(2806)] = 35551, - [SMALL_STATE(2807)] = 35616, - [SMALL_STATE(2808)] = 35695, - [SMALL_STATE(2809)] = 35760, - [SMALL_STATE(2810)] = 35825, - [SMALL_STATE(2811)] = 35890, - [SMALL_STATE(2812)] = 35955, - [SMALL_STATE(2813)] = 36020, - [SMALL_STATE(2814)] = 36085, - [SMALL_STATE(2815)] = 36150, - [SMALL_STATE(2816)] = 36215, - [SMALL_STATE(2817)] = 36280, - [SMALL_STATE(2818)] = 36345, - [SMALL_STATE(2819)] = 36410, - [SMALL_STATE(2820)] = 36475, - [SMALL_STATE(2821)] = 36540, - [SMALL_STATE(2822)] = 36605, - [SMALL_STATE(2823)] = 36670, - [SMALL_STATE(2824)] = 36735, - [SMALL_STATE(2825)] = 36800, - [SMALL_STATE(2826)] = 36865, - [SMALL_STATE(2827)] = 36948, - [SMALL_STATE(2828)] = 37057, - [SMALL_STATE(2829)] = 37170, - [SMALL_STATE(2830)] = 37235, - [SMALL_STATE(2831)] = 37300, - [SMALL_STATE(2832)] = 37409, - [SMALL_STATE(2833)] = 37518, - [SMALL_STATE(2834)] = 37583, - [SMALL_STATE(2835)] = 37648, - [SMALL_STATE(2836)] = 37753, - [SMALL_STATE(2837)] = 37854, - [SMALL_STATE(2838)] = 37919, - [SMALL_STATE(2839)] = 38018, - [SMALL_STATE(2840)] = 38115, - [SMALL_STATE(2841)] = 38180, - [SMALL_STATE(2842)] = 38248, - [SMALL_STATE(2843)] = 38320, - [SMALL_STATE(2844)] = 38402, - [SMALL_STATE(2845)] = 38486, - [SMALL_STATE(2846)] = 38568, - [SMALL_STATE(2847)] = 38650, - [SMALL_STATE(2848)] = 38732, - [SMALL_STATE(2849)] = 38804, - [SMALL_STATE(2850)] = 38872, - [SMALL_STATE(2851)] = 38936, - [SMALL_STATE(2852)] = 39006, - [SMALL_STATE(2853)] = 39070, - [SMALL_STATE(2854)] = 39136, - [SMALL_STATE(2855)] = 39204, - [SMALL_STATE(2856)] = 39272, - [SMALL_STATE(2857)] = 39346, - [SMALL_STATE(2858)] = 39414, - [SMALL_STATE(2859)] = 39482, - [SMALL_STATE(2860)] = 39564, - [SMALL_STATE(2861)] = 39646, - [SMALL_STATE(2862)] = 39714, - [SMALL_STATE(2863)] = 39782, - [SMALL_STATE(2864)] = 39864, - [SMALL_STATE(2865)] = 39932, - [SMALL_STATE(2866)] = 40014, - [SMALL_STATE(2867)] = 40132, - [SMALL_STATE(2868)] = 40212, - [SMALL_STATE(2869)] = 40294, - [SMALL_STATE(2870)] = 40406, - [SMALL_STATE(2871)] = 40476, - [SMALL_STATE(2872)] = 40560, - [SMALL_STATE(2873)] = 40642, - [SMALL_STATE(2874)] = 40754, - [SMALL_STATE(2875)] = 40836, - [SMALL_STATE(2876)] = 40918, - [SMALL_STATE(2877)] = 40990, - [SMALL_STATE(2878)] = 41058, - [SMALL_STATE(2879)] = 41132, - [SMALL_STATE(2880)] = 41214, - [SMALL_STATE(2881)] = 41282, - [SMALL_STATE(2882)] = 41346, - [SMALL_STATE(2883)] = 41430, - [SMALL_STATE(2884)] = 41512, - [SMALL_STATE(2885)] = 41596, - [SMALL_STATE(2886)] = 41680, - [SMALL_STATE(2887)] = 41798, - [SMALL_STATE(2888)] = 41882, - [SMALL_STATE(2889)] = 41950, - [SMALL_STATE(2890)] = 42034, - [SMALL_STATE(2891)] = 42102, - [SMALL_STATE(2892)] = 42172, - [SMALL_STATE(2893)] = 42245, - [SMALL_STATE(2894)] = 42314, - [SMALL_STATE(2895)] = 42377, - [SMALL_STATE(2896)] = 42538, - [SMALL_STATE(2897)] = 42651, - [SMALL_STATE(2898)] = 42760, - [SMALL_STATE(2899)] = 42869, - [SMALL_STATE(2900)] = 42978, - [SMALL_STATE(2901)] = 43087, - [SMALL_STATE(2902)] = 43196, - [SMALL_STATE(2903)] = 43305, - [SMALL_STATE(2904)] = 43422, - [SMALL_STATE(2905)] = 43491, - [SMALL_STATE(2906)] = 43600, - [SMALL_STATE(2907)] = 43671, - [SMALL_STATE(2908)] = 43750, - [SMALL_STATE(2909)] = 43859, - [SMALL_STATE(2910)] = 43930, - [SMALL_STATE(2911)] = 44039, - [SMALL_STATE(2912)] = 44104, - [SMALL_STATE(2913)] = 44213, - [SMALL_STATE(2914)] = 44322, - [SMALL_STATE(2915)] = 44397, - [SMALL_STATE(2916)] = 44466, - [SMALL_STATE(2917)] = 44575, - [SMALL_STATE(2918)] = 44648, - [SMALL_STATE(2919)] = 44757, - [SMALL_STATE(2920)] = 44866, - [SMALL_STATE(2921)] = 44975, - [SMALL_STATE(2922)] = 45092, - [SMALL_STATE(2923)] = 45161, - [SMALL_STATE(2924)] = 45270, - [SMALL_STATE(2925)] = 45343, - [SMALL_STATE(2926)] = 45452, - [SMALL_STATE(2927)] = 45561, - [SMALL_STATE(2928)] = 45630, - [SMALL_STATE(2929)] = 45739, - [SMALL_STATE(2930)] = 45810, - [SMALL_STATE(2931)] = 45927, - [SMALL_STATE(2932)] = 45996, - [SMALL_STATE(2933)] = 46069, - [SMALL_STATE(2934)] = 46186, - [SMALL_STATE(2935)] = 46251, - [SMALL_STATE(2936)] = 46364, - [SMALL_STATE(2937)] = 46473, - [SMALL_STATE(2938)] = 46546, - [SMALL_STATE(2939)] = 46619, - [SMALL_STATE(2940)] = 46686, - [SMALL_STATE(2941)] = 46755, - [SMALL_STATE(2942)] = 46864, - [SMALL_STATE(2943)] = 46937, - [SMALL_STATE(2944)] = 47008, - [SMALL_STATE(2945)] = 47117, - [SMALL_STATE(2946)] = 47226, - [SMALL_STATE(2947)] = 47295, - [SMALL_STATE(2948)] = 47404, - [SMALL_STATE(2949)] = 47513, - [SMALL_STATE(2950)] = 47622, - [SMALL_STATE(2951)] = 47731, - [SMALL_STATE(2952)] = 47800, - [SMALL_STATE(2953)] = 47875, - [SMALL_STATE(2954)] = 47984, - [SMALL_STATE(2955)] = 48145, - [SMALL_STATE(2956)] = 48254, - [SMALL_STATE(2957)] = 48333, - [SMALL_STATE(2958)] = 48442, - [SMALL_STATE(2959)] = 48511, - [SMALL_STATE(2960)] = 48616, - [SMALL_STATE(2961)] = 48717, - [SMALL_STATE(2962)] = 48790, - [SMALL_STATE(2963)] = 48899, - [SMALL_STATE(2964)] = 48996, - [SMALL_STATE(2965)] = 49105, - [SMALL_STATE(2966)] = 49178, - [SMALL_STATE(2967)] = 49295, - [SMALL_STATE(2968)] = 49364, - [SMALL_STATE(2969)] = 49437, - [SMALL_STATE(2970)] = 49506, - [SMALL_STATE(2971)] = 49577, - [SMALL_STATE(2972)] = 49648, - [SMALL_STATE(2973)] = 49757, - [SMALL_STATE(2974)] = 49826, - [SMALL_STATE(2975)] = 49921, - [SMALL_STATE(2976)] = 50038, - [SMALL_STATE(2977)] = 50129, - [SMALL_STATE(2978)] = 50238, - [SMALL_STATE(2979)] = 50307, - [SMALL_STATE(2980)] = 50416, - [SMALL_STATE(2981)] = 50489, - [SMALL_STATE(2982)] = 50598, - [SMALL_STATE(2983)] = 50711, - [SMALL_STATE(2984)] = 50820, - [SMALL_STATE(2985)] = 50909, - [SMALL_STATE(2986)] = 50994, - [SMALL_STATE(2987)] = 51075, - [SMALL_STATE(2988)] = 51184, - [SMALL_STATE(2989)] = 51267, - [SMALL_STATE(2990)] = 51376, - [SMALL_STATE(2991)] = 51449, - [SMALL_STATE(2992)] = 51526, - [SMALL_STATE(2993)] = 51635, - [SMALL_STATE(2994)] = 51796, - [SMALL_STATE(2995)] = 51905, - [SMALL_STATE(2996)] = 52014, - [SMALL_STATE(2997)] = 52087, - [SMALL_STATE(2998)] = 52164, - [SMALL_STATE(2999)] = 52273, - [SMALL_STATE(3000)] = 52382, - [SMALL_STATE(3001)] = 52491, - [SMALL_STATE(3002)] = 52603, - [SMALL_STATE(3003)] = 52671, - [SMALL_STATE(3004)] = 52733, - [SMALL_STATE(3005)] = 52795, - [SMALL_STATE(3006)] = 52867, - [SMALL_STATE(3007)] = 52931, - [SMALL_STATE(3008)] = 53003, - [SMALL_STATE(3009)] = 53075, - [SMALL_STATE(3010)] = 53141, - [SMALL_STATE(3011)] = 53257, - [SMALL_STATE(3012)] = 53325, - [SMALL_STATE(3013)] = 53395, - [SMALL_STATE(3014)] = 53459, - [SMALL_STATE(3015)] = 53575, - [SMALL_STATE(3016)] = 53637, - [SMALL_STATE(3017)] = 53753, - [SMALL_STATE(3018)] = 53815, - [SMALL_STATE(3019)] = 53877, - [SMALL_STATE(3020)] = 53939, - [SMALL_STATE(3021)] = 54055, - [SMALL_STATE(3022)] = 54171, - [SMALL_STATE(3023)] = 54233, - [SMALL_STATE(3024)] = 54299, - [SMALL_STATE(3025)] = 54365, - [SMALL_STATE(3026)] = 54447, - [SMALL_STATE(3027)] = 54515, - [SMALL_STATE(3028)] = 54581, - [SMALL_STATE(3029)] = 54647, - [SMALL_STATE(3030)] = 54755, - [SMALL_STATE(3031)] = 54817, - [SMALL_STATE(3032)] = 54925, - [SMALL_STATE(3033)] = 55003, - [SMALL_STATE(3034)] = 55083, - [SMALL_STATE(3035)] = 55165, - [SMALL_STATE(3036)] = 55231, - [SMALL_STATE(3037)] = 55299, - [SMALL_STATE(3038)] = 55365, - [SMALL_STATE(3039)] = 55431, - [SMALL_STATE(3040)] = 55497, - [SMALL_STATE(3041)] = 55565, - [SMALL_STATE(3042)] = 55637, - [SMALL_STATE(3043)] = 55703, - [SMALL_STATE(3044)] = 55773, - [SMALL_STATE(3045)] = 55839, - [SMALL_STATE(3046)] = 55905, - [SMALL_STATE(3047)] = 55977, - [SMALL_STATE(3048)] = 56093, - [SMALL_STATE(3049)] = 56159, - [SMALL_STATE(3050)] = 56225, - [SMALL_STATE(3051)] = 56297, - [SMALL_STATE(3052)] = 56363, - [SMALL_STATE(3053)] = 56435, - [SMALL_STATE(3054)] = 56501, - [SMALL_STATE(3055)] = 56567, - [SMALL_STATE(3056)] = 56631, - [SMALL_STATE(3057)] = 56747, - [SMALL_STATE(3058)] = 56811, - [SMALL_STATE(3059)] = 56879, - [SMALL_STATE(3060)] = 56941, - [SMALL_STATE(3061)] = 57005, - [SMALL_STATE(3062)] = 57073, - [SMALL_STATE(3063)] = 57181, - [SMALL_STATE(3064)] = 57249, - [SMALL_STATE(3065)] = 57317, - [SMALL_STATE(3066)] = 57381, - [SMALL_STATE(3067)] = 57449, - [SMALL_STATE(3068)] = 57517, - [SMALL_STATE(3069)] = 57629, - [SMALL_STATE(3070)] = 57691, - [SMALL_STATE(3071)] = 57773, - [SMALL_STATE(3072)] = 57877, - [SMALL_STATE(3073)] = 57977, - [SMALL_STATE(3074)] = 58073, - [SMALL_STATE(3075)] = 58167, - [SMALL_STATE(3076)] = 58257, - [SMALL_STATE(3077)] = 58345, - [SMALL_STATE(3078)] = 58429, - [SMALL_STATE(3079)] = 58493, - [SMALL_STATE(3080)] = 58559, - [SMALL_STATE(3081)] = 58675, - [SMALL_STATE(3082)] = 58791, - [SMALL_STATE(3083)] = 58907, - [SMALL_STATE(3084)] = 59023, - [SMALL_STATE(3085)] = 59091, - [SMALL_STATE(3086)] = 59155, - [SMALL_STATE(3087)] = 59223, - [SMALL_STATE(3088)] = 59291, - [SMALL_STATE(3089)] = 59355, - [SMALL_STATE(3090)] = 59423, - [SMALL_STATE(3091)] = 59487, - [SMALL_STATE(3092)] = 59595, - [SMALL_STATE(3093)] = 59659, - [SMALL_STATE(3094)] = 59725, - [SMALL_STATE(3095)] = 59791, - [SMALL_STATE(3096)] = 59857, - [SMALL_STATE(3097)] = 59973, - [SMALL_STATE(3098)] = 60085, - [SMALL_STATE(3099)] = 60149, - [SMALL_STATE(3100)] = 60257, - [SMALL_STATE(3101)] = 60321, - [SMALL_STATE(3102)] = 60389, - [SMALL_STATE(3103)] = 60457, - [SMALL_STATE(3104)] = 60521, - [SMALL_STATE(3105)] = 60593, - [SMALL_STATE(3106)] = 60661, - [SMALL_STATE(3107)] = 60727, - [SMALL_STATE(3108)] = 60799, - [SMALL_STATE(3109)] = 60863, - [SMALL_STATE(3110)] = 60925, - [SMALL_STATE(3111)] = 60993, - [SMALL_STATE(3112)] = 61092, - [SMALL_STATE(3113)] = 61157, - [SMALL_STATE(3114)] = 61224, - [SMALL_STATE(3115)] = 61297, - [SMALL_STATE(3116)] = 61386, - [SMALL_STATE(3117)] = 61461, - [SMALL_STATE(3118)] = 61568, - [SMALL_STATE(3119)] = 61679, - [SMALL_STATE(3120)] = 61746, - [SMALL_STATE(3121)] = 61811, - [SMALL_STATE(3122)] = 61898, - [SMALL_STATE(3123)] = 61981, - [SMALL_STATE(3124)] = 62060, - [SMALL_STATE(3125)] = 62141, - [SMALL_STATE(3126)] = 62208, - [SMALL_STATE(3127)] = 62273, - [SMALL_STATE(3128)] = 62380, - [SMALL_STATE(3129)] = 62447, - [SMALL_STATE(3130)] = 62522, - [SMALL_STATE(3131)] = 62597, - [SMALL_STATE(3132)] = 62660, - [SMALL_STATE(3133)] = 62735, - [SMALL_STATE(3134)] = 62842, - [SMALL_STATE(3135)] = 62915, - [SMALL_STATE(3136)] = 62980, - [SMALL_STATE(3137)] = 63041, - [SMALL_STATE(3138)] = 63106, - [SMALL_STATE(3139)] = 63173, - [SMALL_STATE(3140)] = 63242, - [SMALL_STATE(3141)] = 63353, - [SMALL_STATE(3142)] = 63420, - [SMALL_STATE(3143)] = 63487, - [SMALL_STATE(3144)] = 63554, - [SMALL_STATE(3145)] = 63615, - [SMALL_STATE(3146)] = 63676, - [SMALL_STATE(3147)] = 63739, - [SMALL_STATE(3148)] = 63808, - [SMALL_STATE(3149)] = 63873, - [SMALL_STATE(3150)] = 63934, - [SMALL_STATE(3151)] = 63997, - [SMALL_STATE(3152)] = 64058, - [SMALL_STATE(3153)] = 64135, - [SMALL_STATE(3154)] = 64204, - [SMALL_STATE(3155)] = 64319, - [SMALL_STATE(3156)] = 64390, - [SMALL_STATE(3157)] = 64505, - [SMALL_STATE(3158)] = 64570, - [SMALL_STATE(3159)] = 64631, - [SMALL_STATE(3160)] = 64692, - [SMALL_STATE(3161)] = 64753, - [SMALL_STATE(3162)] = 64830, - [SMALL_STATE(3163)] = 64897, - [SMALL_STATE(3164)] = 65004, - [SMALL_STATE(3165)] = 65079, - [SMALL_STATE(3166)] = 65152, - [SMALL_STATE(3167)] = 65255, - [SMALL_STATE(3168)] = 65316, - [SMALL_STATE(3169)] = 65427, - [SMALL_STATE(3170)] = 65488, - [SMALL_STATE(3171)] = 65583, - [SMALL_STATE(3172)] = 65690, - [SMALL_STATE(3173)] = 65759, - [SMALL_STATE(3174)] = 65852, - [SMALL_STATE(3175)] = 65917, - [SMALL_STATE(3176)] = 65986, - [SMALL_STATE(3177)] = 66049, - [SMALL_STATE(3178)] = 66120, - [SMALL_STATE(3179)] = 66183, - [SMALL_STATE(3180)] = 66289, - [SMALL_STATE(3181)] = 66353, - [SMALL_STATE(3182)] = 66417, - [SMALL_STATE(3183)] = 66477, - [SMALL_STATE(3184)] = 66581, - [SMALL_STATE(3185)] = 66641, - [SMALL_STATE(3186)] = 66701, - [SMALL_STATE(3187)] = 66761, - [SMALL_STATE(3188)] = 66821, - [SMALL_STATE(3189)] = 66881, - [SMALL_STATE(3190)] = 66989, - [SMALL_STATE(3191)] = 67055, - [SMALL_STATE(3192)] = 67115, - [SMALL_STATE(3193)] = 67175, - [SMALL_STATE(3194)] = 67235, - [SMALL_STATE(3195)] = 67301, - [SMALL_STATE(3196)] = 67415, - [SMALL_STATE(3197)] = 67491, - [SMALL_STATE(3198)] = 67565, - [SMALL_STATE(3199)] = 67665, - [SMALL_STATE(3200)] = 67761, - [SMALL_STATE(3201)] = 67853, - [SMALL_STATE(3202)] = 67943, - [SMALL_STATE(3203)] = 68029, - [SMALL_STATE(3204)] = 68113, - [SMALL_STATE(3205)] = 68269, - [SMALL_STATE(3206)] = 68351, - [SMALL_STATE(3207)] = 68429, - [SMALL_STATE(3208)] = 68509, - [SMALL_STATE(3209)] = 68569, - [SMALL_STATE(3210)] = 68629, - [SMALL_STATE(3211)] = 68689, - [SMALL_STATE(3212)] = 68749, - [SMALL_STATE(3213)] = 68823, - [SMALL_STATE(3214)] = 68883, - [SMALL_STATE(3215)] = 68943, - [SMALL_STATE(3216)] = 69009, - [SMALL_STATE(3217)] = 69069, - [SMALL_STATE(3218)] = 69129, - [SMALL_STATE(3219)] = 69189, - [SMALL_STATE(3220)] = 69249, - [SMALL_STATE(3221)] = 69353, - [SMALL_STATE(3222)] = 69413, - [SMALL_STATE(3223)] = 69569, - [SMALL_STATE(3224)] = 69629, - [SMALL_STATE(3225)] = 69689, - [SMALL_STATE(3226)] = 69749, - [SMALL_STATE(3227)] = 69809, - [SMALL_STATE(3228)] = 69917, - [SMALL_STATE(3229)] = 69981, - [SMALL_STATE(3230)] = 70041, - [SMALL_STATE(3231)] = 70145, - [SMALL_STATE(3232)] = 70211, - [SMALL_STATE(3233)] = 70271, - [SMALL_STATE(3234)] = 70335, - [SMALL_STATE(3235)] = 70491, - [SMALL_STATE(3236)] = 70551, - [SMALL_STATE(3237)] = 70659, - [SMALL_STATE(3238)] = 70723, - [SMALL_STATE(3239)] = 70879, - [SMALL_STATE(3240)] = 71035, - [SMALL_STATE(3241)] = 71095, - [SMALL_STATE(3242)] = 71171, - [SMALL_STATE(3243)] = 71231, - [SMALL_STATE(3244)] = 71387, - [SMALL_STATE(3245)] = 71447, - [SMALL_STATE(3246)] = 71507, - [SMALL_STATE(3247)] = 71569, - [SMALL_STATE(3248)] = 71683, - [SMALL_STATE(3249)] = 71743, - [SMALL_STATE(3250)] = 71899, - [SMALL_STATE(3251)] = 72055, - [SMALL_STATE(3252)] = 72115, - [SMALL_STATE(3253)] = 72175, - [SMALL_STATE(3254)] = 72239, - [SMALL_STATE(3255)] = 72303, - [SMALL_STATE(3256)] = 72373, - [SMALL_STATE(3257)] = 72443, - [SMALL_STATE(3258)] = 72503, - [SMALL_STATE(3259)] = 72563, - [SMALL_STATE(3260)] = 72623, - [SMALL_STATE(3261)] = 72683, - [SMALL_STATE(3262)] = 72743, - [SMALL_STATE(3263)] = 72817, - [SMALL_STATE(3264)] = 72881, - [SMALL_STATE(3265)] = 72941, - [SMALL_STATE(3266)] = 73003, - [SMALL_STATE(3267)] = 73063, - [SMALL_STATE(3268)] = 73127, - [SMALL_STATE(3269)] = 73187, - [SMALL_STATE(3270)] = 73253, - [SMALL_STATE(3271)] = 73317, - [SMALL_STATE(3272)] = 73429, - [SMALL_STATE(3273)] = 73489, - [SMALL_STATE(3274)] = 73549, - [SMALL_STATE(3275)] = 73609, - [SMALL_STATE(3276)] = 73669, - [SMALL_STATE(3277)] = 73739, - [SMALL_STATE(3278)] = 73799, - [SMALL_STATE(3279)] = 73859, - [SMALL_STATE(3280)] = 73919, - [SMALL_STATE(3281)] = 73985, - [SMALL_STATE(3282)] = 74045, - [SMALL_STATE(3283)] = 74111, - [SMALL_STATE(3284)] = 74171, - [SMALL_STATE(3285)] = 74231, - [SMALL_STATE(3286)] = 74309, - [SMALL_STATE(3287)] = 74369, - [SMALL_STATE(3288)] = 74429, - [SMALL_STATE(3289)] = 74543, - [SMALL_STATE(3290)] = 74615, - [SMALL_STATE(3291)] = 74719, - [SMALL_STATE(3292)] = 74785, - [SMALL_STATE(3293)] = 74845, - [SMALL_STATE(3294)] = 74911, - [SMALL_STATE(3295)] = 75025, - [SMALL_STATE(3296)] = 75085, - [SMALL_STATE(3297)] = 75145, - [SMALL_STATE(3298)] = 75211, - [SMALL_STATE(3299)] = 75271, - [SMALL_STATE(3300)] = 75385, - [SMALL_STATE(3301)] = 75453, - [SMALL_STATE(3302)] = 75515, - [SMALL_STATE(3303)] = 75575, - [SMALL_STATE(3304)] = 75635, - [SMALL_STATE(3305)] = 75749, - [SMALL_STATE(3306)] = 75809, - [SMALL_STATE(3307)] = 75873, - [SMALL_STATE(3308)] = 75933, - [SMALL_STATE(3309)] = 75993, - [SMALL_STATE(3310)] = 76053, - [SMALL_STATE(3311)] = 76119, - [SMALL_STATE(3312)] = 76233, - [SMALL_STATE(3313)] = 76293, - [SMALL_STATE(3314)] = 76355, - [SMALL_STATE(3315)] = 76415, - [SMALL_STATE(3316)] = 76475, - [SMALL_STATE(3317)] = 76535, - [SMALL_STATE(3318)] = 76595, - [SMALL_STATE(3319)] = 76657, - [SMALL_STATE(3320)] = 76717, - [SMALL_STATE(3321)] = 76777, - [SMALL_STATE(3322)] = 76851, - [SMALL_STATE(3323)] = 77007, - [SMALL_STATE(3324)] = 77081, - [SMALL_STATE(3325)] = 77141, - [SMALL_STATE(3326)] = 77201, - [SMALL_STATE(3327)] = 77271, - [SMALL_STATE(3328)] = 77337, - [SMALL_STATE(3329)] = 77397, - [SMALL_STATE(3330)] = 77501, - [SMALL_STATE(3331)] = 77573, - [SMALL_STATE(3332)] = 77633, - [SMALL_STATE(3333)] = 77697, - [SMALL_STATE(3334)] = 77811, - [SMALL_STATE(3335)] = 77875, - [SMALL_STATE(3336)] = 77941, - [SMALL_STATE(3337)] = 78007, - [SMALL_STATE(3338)] = 78071, - [SMALL_STATE(3339)] = 78135, - [SMALL_STATE(3340)] = 78199, - [SMALL_STATE(3341)] = 78263, - [SMALL_STATE(3342)] = 78327, - [SMALL_STATE(3343)] = 78405, - [SMALL_STATE(3344)] = 78477, - [SMALL_STATE(3345)] = 78583, - [SMALL_STATE(3346)] = 78657, - [SMALL_STATE(3347)] = 78731, - [SMALL_STATE(3348)] = 78837, - [SMALL_STATE(3349)] = 78909, - [SMALL_STATE(3350)] = 79015, - [SMALL_STATE(3351)] = 79125, - [SMALL_STATE(3352)] = 79201, - [SMALL_STATE(3353)] = 79275, - [SMALL_STATE(3354)] = 79377, - [SMALL_STATE(3355)] = 79475, - [SMALL_STATE(3356)] = 79569, - [SMALL_STATE(3357)] = 79661, - [SMALL_STATE(3358)] = 79749, - [SMALL_STATE(3359)] = 79835, - [SMALL_STATE(3360)] = 79917, - [SMALL_STATE(3361)] = 79995, - [SMALL_STATE(3362)] = 80075, - [SMALL_STATE(3363)] = 80149, - [SMALL_STATE(3364)] = 80255, - [SMALL_STATE(3365)] = 80365, - [SMALL_STATE(3366)] = 80431, - [SMALL_STATE(3367)] = 80541, - [SMALL_STATE(3368)] = 80601, - [SMALL_STATE(3369)] = 80661, - [SMALL_STATE(3370)] = 80731, - [SMALL_STATE(3371)] = 80791, - [SMALL_STATE(3372)] = 80865, - [SMALL_STATE(3373)] = 80931, - [SMALL_STATE(3374)] = 80991, - [SMALL_STATE(3375)] = 81057, - [SMALL_STATE(3376)] = 81117, - [SMALL_STATE(3377)] = 81177, - [SMALL_STATE(3378)] = 81241, - [SMALL_STATE(3379)] = 81301, - [SMALL_STATE(3380)] = 81361, - [SMALL_STATE(3381)] = 81421, - [SMALL_STATE(3382)] = 81481, - [SMALL_STATE(3383)] = 81547, - [SMALL_STATE(3384)] = 81613, - [SMALL_STATE(3385)] = 81677, - [SMALL_STATE(3386)] = 81757, - [SMALL_STATE(3387)] = 81823, - [SMALL_STATE(3388)] = 81937, - [SMALL_STATE(3389)] = 81996, - [SMALL_STATE(3390)] = 82055, - [SMALL_STATE(3391)] = 82114, - [SMALL_STATE(3392)] = 82173, - [SMALL_STATE(3393)] = 82236, - [SMALL_STATE(3394)] = 82295, - [SMALL_STATE(3395)] = 82354, - [SMALL_STATE(3396)] = 82413, - [SMALL_STATE(3397)] = 82472, - [SMALL_STATE(3398)] = 82531, - [SMALL_STATE(3399)] = 82590, - [SMALL_STATE(3400)] = 82649, - [SMALL_STATE(3401)] = 82708, - [SMALL_STATE(3402)] = 82767, - [SMALL_STATE(3403)] = 82830, - [SMALL_STATE(3404)] = 82889, - [SMALL_STATE(3405)] = 82948, - [SMALL_STATE(3406)] = 83013, - [SMALL_STATE(3407)] = 83080, - [SMALL_STATE(3408)] = 83139, - [SMALL_STATE(3409)] = 83198, - [SMALL_STATE(3410)] = 83257, - [SMALL_STATE(3411)] = 83320, - [SMALL_STATE(3412)] = 83379, - [SMALL_STATE(3413)] = 83438, - [SMALL_STATE(3414)] = 83551, - [SMALL_STATE(3415)] = 83610, - [SMALL_STATE(3416)] = 83669, - [SMALL_STATE(3417)] = 83728, - [SMALL_STATE(3418)] = 83787, - [SMALL_STATE(3419)] = 83846, - [SMALL_STATE(3420)] = 83907, - [SMALL_STATE(3421)] = 83966, - [SMALL_STATE(3422)] = 84025, - [SMALL_STATE(3423)] = 84084, - [SMALL_STATE(3424)] = 84143, - [SMALL_STATE(3425)] = 84202, - [SMALL_STATE(3426)] = 84261, - [SMALL_STATE(3427)] = 84320, - [SMALL_STATE(3428)] = 84381, - [SMALL_STATE(3429)] = 84440, - [SMALL_STATE(3430)] = 84499, - [SMALL_STATE(3431)] = 84558, - [SMALL_STATE(3432)] = 84625, - [SMALL_STATE(3433)] = 84690, - [SMALL_STATE(3434)] = 84757, - [SMALL_STATE(3435)] = 84816, - [SMALL_STATE(3436)] = 84875, - [SMALL_STATE(3437)] = 84934, - [SMALL_STATE(3438)] = 84993, - [SMALL_STATE(3439)] = 85052, - [SMALL_STATE(3440)] = 85111, - [SMALL_STATE(3441)] = 85176, - [SMALL_STATE(3442)] = 85235, - [SMALL_STATE(3443)] = 85294, - [SMALL_STATE(3444)] = 85353, - [SMALL_STATE(3445)] = 85412, - [SMALL_STATE(3446)] = 85471, - [SMALL_STATE(3447)] = 85530, - [SMALL_STATE(3448)] = 85589, - [SMALL_STATE(3449)] = 85648, - [SMALL_STATE(3450)] = 85707, - [SMALL_STATE(3451)] = 85766, - [SMALL_STATE(3452)] = 85825, - [SMALL_STATE(3453)] = 85884, - [SMALL_STATE(3454)] = 85943, - [SMALL_STATE(3455)] = 86012, - [SMALL_STATE(3456)] = 86071, - [SMALL_STATE(3457)] = 86130, - [SMALL_STATE(3458)] = 86189, - [SMALL_STATE(3459)] = 86248, - [SMALL_STATE(3460)] = 86307, - [SMALL_STATE(3461)] = 86366, - [SMALL_STATE(3462)] = 86425, - [SMALL_STATE(3463)] = 86484, - [SMALL_STATE(3464)] = 86543, - [SMALL_STATE(3465)] = 86602, - [SMALL_STATE(3466)] = 86667, - [SMALL_STATE(3467)] = 86764, - [SMALL_STATE(3468)] = 86823, - [SMALL_STATE(3469)] = 86882, - [SMALL_STATE(3470)] = 86941, - [SMALL_STATE(3471)] = 87000, - [SMALL_STATE(3472)] = 87059, - [SMALL_STATE(3473)] = 87118, - [SMALL_STATE(3474)] = 87177, - [SMALL_STATE(3475)] = 87236, - [SMALL_STATE(3476)] = 87295, - [SMALL_STATE(3477)] = 87354, - [SMALL_STATE(3478)] = 87413, - [SMALL_STATE(3479)] = 87510, - [SMALL_STATE(3480)] = 87579, - [SMALL_STATE(3481)] = 87638, - [SMALL_STATE(3482)] = 87697, - [SMALL_STATE(3483)] = 87810, - [SMALL_STATE(3484)] = 87869, - [SMALL_STATE(3485)] = 87936, - [SMALL_STATE(3486)] = 87995, - [SMALL_STATE(3487)] = 88092, - [SMALL_STATE(3488)] = 88151, - [SMALL_STATE(3489)] = 88210, - [SMALL_STATE(3490)] = 88307, - [SMALL_STATE(3491)] = 88366, - [SMALL_STATE(3492)] = 88425, - [SMALL_STATE(3493)] = 88488, - [SMALL_STATE(3494)] = 88547, - [SMALL_STATE(3495)] = 88606, - [SMALL_STATE(3496)] = 88665, - [SMALL_STATE(3497)] = 88724, - [SMALL_STATE(3498)] = 88787, - [SMALL_STATE(3499)] = 88846, - [SMALL_STATE(3500)] = 88911, - [SMALL_STATE(3501)] = 88970, - [SMALL_STATE(3502)] = 89029, - [SMALL_STATE(3503)] = 89142, - [SMALL_STATE(3504)] = 89205, - [SMALL_STATE(3505)] = 89264, - [SMALL_STATE(3506)] = 89377, - [SMALL_STATE(3507)] = 89436, - [SMALL_STATE(3508)] = 89495, - [SMALL_STATE(3509)] = 89554, - [SMALL_STATE(3510)] = 89613, - [SMALL_STATE(3511)] = 89672, - [SMALL_STATE(3512)] = 89731, - [SMALL_STATE(3513)] = 89790, - [SMALL_STATE(3514)] = 89849, - [SMALL_STATE(3515)] = 89908, - [SMALL_STATE(3516)] = 89967, - [SMALL_STATE(3517)] = 90026, - [SMALL_STATE(3518)] = 90087, - [SMALL_STATE(3519)] = 90146, - [SMALL_STATE(3520)] = 90205, - [SMALL_STATE(3521)] = 90264, - [SMALL_STATE(3522)] = 90323, - [SMALL_STATE(3523)] = 90382, - [SMALL_STATE(3524)] = 90443, - [SMALL_STATE(3525)] = 90502, - [SMALL_STATE(3526)] = 90561, - [SMALL_STATE(3527)] = 90620, - [SMALL_STATE(3528)] = 90679, - [SMALL_STATE(3529)] = 90738, - [SMALL_STATE(3530)] = 90797, - [SMALL_STATE(3531)] = 90856, - [SMALL_STATE(3532)] = 90915, - [SMALL_STATE(3533)] = 90974, - [SMALL_STATE(3534)] = 91033, - [SMALL_STATE(3535)] = 91092, - [SMALL_STATE(3536)] = 91151, - [SMALL_STATE(3537)] = 91210, - [SMALL_STATE(3538)] = 91269, - [SMALL_STATE(3539)] = 91328, - [SMALL_STATE(3540)] = 91409, - [SMALL_STATE(3541)] = 91468, - [SMALL_STATE(3542)] = 91539, - [SMALL_STATE(3543)] = 91598, - [SMALL_STATE(3544)] = 91669, - [SMALL_STATE(3545)] = 91782, - [SMALL_STATE(3546)] = 91841, - [SMALL_STATE(3547)] = 91900, - [SMALL_STATE(3548)] = 91959, - [SMALL_STATE(3549)] = 92026, - [SMALL_STATE(3550)] = 92085, - [SMALL_STATE(3551)] = 92182, - [SMALL_STATE(3552)] = 92279, - [SMALL_STATE(3553)] = 92338, - [SMALL_STATE(3554)] = 92397, - [SMALL_STATE(3555)] = 92456, - [SMALL_STATE(3556)] = 92523, - [SMALL_STATE(3557)] = 92588, - [SMALL_STATE(3558)] = 92647, - [SMALL_STATE(3559)] = 92706, - [SMALL_STATE(3560)] = 92781, - [SMALL_STATE(3561)] = 92840, - [SMALL_STATE(3562)] = 92899, - [SMALL_STATE(3563)] = 92958, - [SMALL_STATE(3564)] = 93017, - [SMALL_STATE(3565)] = 93076, - [SMALL_STATE(3566)] = 93135, - [SMALL_STATE(3567)] = 93194, - [SMALL_STATE(3568)] = 93253, - [SMALL_STATE(3569)] = 93312, - [SMALL_STATE(3570)] = 93370, - [SMALL_STATE(3571)] = 93428, - [SMALL_STATE(3572)] = 93506, - [SMALL_STATE(3573)] = 93612, - [SMALL_STATE(3574)] = 93670, - [SMALL_STATE(3575)] = 93776, - [SMALL_STATE(3576)] = 93834, - [SMALL_STATE(3577)] = 93894, - [SMALL_STATE(3578)] = 93954, - [SMALL_STATE(3579)] = 94012, - [SMALL_STATE(3580)] = 94108, - [SMALL_STATE(3581)] = 94178, - [SMALL_STATE(3582)] = 94236, - [SMALL_STATE(3583)] = 94298, - [SMALL_STATE(3584)] = 94394, - [SMALL_STATE(3585)] = 94452, - [SMALL_STATE(3586)] = 94510, - [SMALL_STATE(3587)] = 94568, - [SMALL_STATE(3588)] = 94626, - [SMALL_STATE(3589)] = 94684, - [SMALL_STATE(3590)] = 94742, - [SMALL_STATE(3591)] = 94806, - [SMALL_STATE(3592)] = 94868, - [SMALL_STATE(3593)] = 94926, - [SMALL_STATE(3594)] = 94984, - [SMALL_STATE(3595)] = 95042, - [SMALL_STATE(3596)] = 95100, - [SMALL_STATE(3597)] = 95158, - [SMALL_STATE(3598)] = 95216, - [SMALL_STATE(3599)] = 95274, - [SMALL_STATE(3600)] = 95336, - [SMALL_STATE(3601)] = 95394, - [SMALL_STATE(3602)] = 95452, - [SMALL_STATE(3603)] = 95510, - [SMALL_STATE(3604)] = 95568, - [SMALL_STATE(3605)] = 95626, - [SMALL_STATE(3606)] = 95686, - [SMALL_STATE(3607)] = 95744, - [SMALL_STATE(3608)] = 95804, - [SMALL_STATE(3609)] = 95906, - [SMALL_STATE(3610)] = 95964, - [SMALL_STATE(3611)] = 96022, - [SMALL_STATE(3612)] = 96080, - [SMALL_STATE(3613)] = 96138, - [SMALL_STATE(3614)] = 96196, - [SMALL_STATE(3615)] = 96268, - [SMALL_STATE(3616)] = 96338, - [SMALL_STATE(3617)] = 96396, - [SMALL_STATE(3618)] = 96454, - [SMALL_STATE(3619)] = 96512, - [SMALL_STATE(3620)] = 96614, - [SMALL_STATE(3621)] = 96672, - [SMALL_STATE(3622)] = 96730, - [SMALL_STATE(3623)] = 96788, - [SMALL_STATE(3624)] = 96846, - [SMALL_STATE(3625)] = 96916, - [SMALL_STATE(3626)] = 96974, - [SMALL_STATE(3627)] = 97058, - [SMALL_STATE(3628)] = 97138, - [SMALL_STATE(3629)] = 97196, - [SMALL_STATE(3630)] = 97254, - [SMALL_STATE(3631)] = 97312, - [SMALL_STATE(3632)] = 97370, - [SMALL_STATE(3633)] = 97428, - [SMALL_STATE(3634)] = 97486, - [SMALL_STATE(3635)] = 97544, - [SMALL_STATE(3636)] = 97602, - [SMALL_STATE(3637)] = 97660, - [SMALL_STATE(3638)] = 97718, - [SMALL_STATE(3639)] = 97776, - [SMALL_STATE(3640)] = 97834, - [SMALL_STATE(3641)] = 97892, - [SMALL_STATE(3642)] = 97950, - [SMALL_STATE(3643)] = 98008, - [SMALL_STATE(3644)] = 98070, - [SMALL_STATE(3645)] = 98128, - [SMALL_STATE(3646)] = 98186, - [SMALL_STATE(3647)] = 98244, - [SMALL_STATE(3648)] = 98302, - [SMALL_STATE(3649)] = 98360, - [SMALL_STATE(3650)] = 98418, - [SMALL_STATE(3651)] = 98476, - [SMALL_STATE(3652)] = 98534, - [SMALL_STATE(3653)] = 98600, - [SMALL_STATE(3654)] = 98658, - [SMALL_STATE(3655)] = 98716, - [SMALL_STATE(3656)] = 98776, - [SMALL_STATE(3657)] = 98834, - [SMALL_STATE(3658)] = 98892, - [SMALL_STATE(3659)] = 98950, - [SMALL_STATE(3660)] = 99008, - [SMALL_STATE(3661)] = 99066, - [SMALL_STATE(3662)] = 99132, - [SMALL_STATE(3663)] = 99190, - [SMALL_STATE(3664)] = 99296, - [SMALL_STATE(3665)] = 99372, - [SMALL_STATE(3666)] = 99430, - [SMALL_STATE(3667)] = 99492, - [SMALL_STATE(3668)] = 99550, - [SMALL_STATE(3669)] = 99608, - [SMALL_STATE(3670)] = 99666, - [SMALL_STATE(3671)] = 99724, - [SMALL_STATE(3672)] = 99782, - [SMALL_STATE(3673)] = 99840, - [SMALL_STATE(3674)] = 99898, - [SMALL_STATE(3675)] = 99956, - [SMALL_STATE(3676)] = 100014, - [SMALL_STATE(3677)] = 100072, - [SMALL_STATE(3678)] = 100130, - [SMALL_STATE(3679)] = 100202, - [SMALL_STATE(3680)] = 100260, - [SMALL_STATE(3681)] = 100318, - [SMALL_STATE(3682)] = 100376, - [SMALL_STATE(3683)] = 100434, - [SMALL_STATE(3684)] = 100506, - [SMALL_STATE(3685)] = 100564, - [SMALL_STATE(3686)] = 100622, - [SMALL_STATE(3687)] = 100680, - [SMALL_STATE(3688)] = 100738, - [SMALL_STATE(3689)] = 100796, - [SMALL_STATE(3690)] = 100898, - [SMALL_STATE(3691)] = 100956, - [SMALL_STATE(3692)] = 101024, - [SMALL_STATE(3693)] = 101082, - [SMALL_STATE(3694)] = 101140, - [SMALL_STATE(3695)] = 101198, - [SMALL_STATE(3696)] = 101264, - [SMALL_STATE(3697)] = 101322, - [SMALL_STATE(3698)] = 101384, - [SMALL_STATE(3699)] = 101442, - [SMALL_STATE(3700)] = 101504, - [SMALL_STATE(3701)] = 101578, - [SMALL_STATE(3702)] = 101636, - [SMALL_STATE(3703)] = 101694, - [SMALL_STATE(3704)] = 101796, - [SMALL_STATE(3705)] = 101868, - [SMALL_STATE(3706)] = 101934, - [SMALL_STATE(3707)] = 101996, - [SMALL_STATE(3708)] = 102096, - [SMALL_STATE(3709)] = 102154, - [SMALL_STATE(3710)] = 102212, - [SMALL_STATE(3711)] = 102310, - [SMALL_STATE(3712)] = 102404, - [SMALL_STATE(3713)] = 102494, - [SMALL_STATE(3714)] = 102602, - [SMALL_STATE(3715)] = 102664, - [SMALL_STATE(3716)] = 102750, - [SMALL_STATE(3717)] = 102852, - [SMALL_STATE(3718)] = 102957, - [SMALL_STATE(3719)] = 103014, - [SMALL_STATE(3720)] = 103071, - [SMALL_STATE(3721)] = 103142, - [SMALL_STATE(3722)] = 103199, - [SMALL_STATE(3723)] = 103276, - [SMALL_STATE(3724)] = 103333, - [SMALL_STATE(3725)] = 103394, - [SMALL_STATE(3726)] = 103451, - [SMALL_STATE(3727)] = 103556, - [SMALL_STATE(3728)] = 103661, - [SMALL_STATE(3729)] = 103756, - [SMALL_STATE(3730)] = 103851, - [SMALL_STATE(3731)] = 103908, - [SMALL_STATE(3732)] = 103965, - [SMALL_STATE(3733)] = 104022, - [SMALL_STATE(3734)] = 104079, - [SMALL_STATE(3735)] = 104136, - [SMALL_STATE(3736)] = 104193, - [SMALL_STATE(3737)] = 104250, - [SMALL_STATE(3738)] = 104355, - [SMALL_STATE(3739)] = 104460, - [SMALL_STATE(3740)] = 104517, - [SMALL_STATE(3741)] = 104588, - [SMALL_STATE(3742)] = 104693, - [SMALL_STATE(3743)] = 104750, - [SMALL_STATE(3744)] = 104819, - [SMALL_STATE(3745)] = 104882, - [SMALL_STATE(3746)] = 104941, - [SMALL_STATE(3747)] = 104998, - [SMALL_STATE(3748)] = 105103, - [SMALL_STATE(3749)] = 105166, - [SMALL_STATE(3750)] = 105227, - [SMALL_STATE(3751)] = 105332, - [SMALL_STATE(3752)] = 105437, - [SMALL_STATE(3753)] = 105508, - [SMALL_STATE(3754)] = 105613, - [SMALL_STATE(3755)] = 105670, - [SMALL_STATE(3756)] = 105775, - [SMALL_STATE(3757)] = 105832, - [SMALL_STATE(3758)] = 105893, - [SMALL_STATE(3759)] = 105954, - [SMALL_STATE(3760)] = 106011, - [SMALL_STATE(3761)] = 106068, - [SMALL_STATE(3762)] = 106173, - [SMALL_STATE(3763)] = 106230, - [SMALL_STATE(3764)] = 106287, - [SMALL_STATE(3765)] = 106392, - [SMALL_STATE(3766)] = 106453, - [SMALL_STATE(3767)] = 106514, - [SMALL_STATE(3768)] = 106571, - [SMALL_STATE(3769)] = 106628, - [SMALL_STATE(3770)] = 106733, - [SMALL_STATE(3771)] = 106790, - [SMALL_STATE(3772)] = 106847, - [SMALL_STATE(3773)] = 106952, - [SMALL_STATE(3774)] = 107057, - [SMALL_STATE(3775)] = 107114, - [SMALL_STATE(3776)] = 107219, - [SMALL_STATE(3777)] = 107324, - [SMALL_STATE(3778)] = 107385, - [SMALL_STATE(3779)] = 107490, - [SMALL_STATE(3780)] = 107547, - [SMALL_STATE(3781)] = 107608, - [SMALL_STATE(3782)] = 107669, - [SMALL_STATE(3783)] = 107730, - [SMALL_STATE(3784)] = 107791, - [SMALL_STATE(3785)] = 107848, - [SMALL_STATE(3786)] = 107909, - [SMALL_STATE(3787)] = 107966, - [SMALL_STATE(3788)] = 108071, - [SMALL_STATE(3789)] = 108132, - [SMALL_STATE(3790)] = 108195, - [SMALL_STATE(3791)] = 108252, - [SMALL_STATE(3792)] = 108357, - [SMALL_STATE(3793)] = 108418, - [SMALL_STATE(3794)] = 108475, - [SMALL_STATE(3795)] = 108580, - [SMALL_STATE(3796)] = 108637, - [SMALL_STATE(3797)] = 108700, - [SMALL_STATE(3798)] = 108805, - [SMALL_STATE(3799)] = 108862, - [SMALL_STATE(3800)] = 108967, - [SMALL_STATE(3801)] = 109024, - [SMALL_STATE(3802)] = 109129, - [SMALL_STATE(3803)] = 109186, - [SMALL_STATE(3804)] = 109243, - [SMALL_STATE(3805)] = 109348, - [SMALL_STATE(3806)] = 109405, - [SMALL_STATE(3807)] = 109476, - [SMALL_STATE(3808)] = 109581, - [SMALL_STATE(3809)] = 109686, - [SMALL_STATE(3810)] = 109757, - [SMALL_STATE(3811)] = 109862, - [SMALL_STATE(3812)] = 109967, - [SMALL_STATE(3813)] = 110072, - [SMALL_STATE(3814)] = 110141, - [SMALL_STATE(3815)] = 110246, - [SMALL_STATE(3816)] = 110351, - [SMALL_STATE(3817)] = 110456, - [SMALL_STATE(3818)] = 110561, - [SMALL_STATE(3819)] = 110666, - [SMALL_STATE(3820)] = 110771, - [SMALL_STATE(3821)] = 110876, - [SMALL_STATE(3822)] = 110933, - [SMALL_STATE(3823)] = 111038, - [SMALL_STATE(3824)] = 111095, - [SMALL_STATE(3825)] = 111152, - [SMALL_STATE(3826)] = 111257, - [SMALL_STATE(3827)] = 111362, - [SMALL_STATE(3828)] = 111467, - [SMALL_STATE(3829)] = 111572, - [SMALL_STATE(3830)] = 111677, - [SMALL_STATE(3831)] = 111782, - [SMALL_STATE(3832)] = 111887, - [SMALL_STATE(3833)] = 111992, - [SMALL_STATE(3834)] = 112049, - [SMALL_STATE(3835)] = 112154, - [SMALL_STATE(3836)] = 112211, - [SMALL_STATE(3837)] = 112316, - [SMALL_STATE(3838)] = 112383, - [SMALL_STATE(3839)] = 112450, - [SMALL_STATE(3840)] = 112507, - [SMALL_STATE(3841)] = 112564, - [SMALL_STATE(3842)] = 112621, - [SMALL_STATE(3843)] = 112726, - [SMALL_STATE(3844)] = 112831, - [SMALL_STATE(3845)] = 112888, - [SMALL_STATE(3846)] = 112993, - [SMALL_STATE(3847)] = 113098, - [SMALL_STATE(3848)] = 113203, - [SMALL_STATE(3849)] = 113308, - [SMALL_STATE(3850)] = 113413, - [SMALL_STATE(3851)] = 113518, - [SMALL_STATE(3852)] = 113623, - [SMALL_STATE(3853)] = 113728, - [SMALL_STATE(3854)] = 113833, - [SMALL_STATE(3855)] = 113938, - [SMALL_STATE(3856)] = 114043, - [SMALL_STATE(3857)] = 114148, - [SMALL_STATE(3858)] = 114253, - [SMALL_STATE(3859)] = 114358, - [SMALL_STATE(3860)] = 114415, - [SMALL_STATE(3861)] = 114520, - [SMALL_STATE(3862)] = 114577, - [SMALL_STATE(3863)] = 114682, - [SMALL_STATE(3864)] = 114739, - [SMALL_STATE(3865)] = 114844, - [SMALL_STATE(3866)] = 114949, - [SMALL_STATE(3867)] = 115020, - [SMALL_STATE(3868)] = 115125, - [SMALL_STATE(3869)] = 115230, - [SMALL_STATE(3870)] = 115335, - [SMALL_STATE(3871)] = 115440, - [SMALL_STATE(3872)] = 115545, - [SMALL_STATE(3873)] = 115650, - [SMALL_STATE(3874)] = 115706, - [SMALL_STATE(3875)] = 115762, - [SMALL_STATE(3876)] = 115818, - [SMALL_STATE(3877)] = 115920, - [SMALL_STATE(3878)] = 115976, - [SMALL_STATE(3879)] = 116032, - [SMALL_STATE(3880)] = 116088, - [SMALL_STATE(3881)] = 116144, - [SMALL_STATE(3882)] = 116200, - [SMALL_STATE(3883)] = 116256, - [SMALL_STATE(3884)] = 116312, - [SMALL_STATE(3885)] = 116368, - [SMALL_STATE(3886)] = 116424, - [SMALL_STATE(3887)] = 116526, - [SMALL_STATE(3888)] = 116628, - [SMALL_STATE(3889)] = 116684, - [SMALL_STATE(3890)] = 116740, - [SMALL_STATE(3891)] = 116796, - [SMALL_STATE(3892)] = 116898, - [SMALL_STATE(3893)] = 117000, - [SMALL_STATE(3894)] = 117092, - [SMALL_STATE(3895)] = 117148, - [SMALL_STATE(3896)] = 117250, - [SMALL_STATE(3897)] = 117352, - [SMALL_STATE(3898)] = 117408, - [SMALL_STATE(3899)] = 117464, - [SMALL_STATE(3900)] = 117566, - [SMALL_STATE(3901)] = 117622, - [SMALL_STATE(3902)] = 117690, - [SMALL_STATE(3903)] = 117746, - [SMALL_STATE(3904)] = 117802, - [SMALL_STATE(3905)] = 117858, - [SMALL_STATE(3906)] = 117960, - [SMALL_STATE(3907)] = 118016, - [SMALL_STATE(3908)] = 118072, - [SMALL_STATE(3909)] = 118174, - [SMALL_STATE(3910)] = 118230, - [SMALL_STATE(3911)] = 118324, - [SMALL_STATE(3912)] = 118418, - [SMALL_STATE(3913)] = 118474, - [SMALL_STATE(3914)] = 118542, - [SMALL_STATE(3915)] = 118598, - [SMALL_STATE(3916)] = 118700, - [SMALL_STATE(3917)] = 118756, - [SMALL_STATE(3918)] = 118812, - [SMALL_STATE(3919)] = 118870, - [SMALL_STATE(3920)] = 118926, - [SMALL_STATE(3921)] = 118982, - [SMALL_STATE(3922)] = 119084, - [SMALL_STATE(3923)] = 119140, - [SMALL_STATE(3924)] = 119242, - [SMALL_STATE(3925)] = 119298, - [SMALL_STATE(3926)] = 119400, - [SMALL_STATE(3927)] = 119456, - [SMALL_STATE(3928)] = 119512, - [SMALL_STATE(3929)] = 119576, - [SMALL_STATE(3930)] = 119632, - [SMALL_STATE(3931)] = 119734, - [SMALL_STATE(3932)] = 119836, - [SMALL_STATE(3933)] = 119892, - [SMALL_STATE(3934)] = 119958, - [SMALL_STATE(3935)] = 120014, - [SMALL_STATE(3936)] = 120070, - [SMALL_STATE(3937)] = 120126, - [SMALL_STATE(3938)] = 120228, - [SMALL_STATE(3939)] = 120284, - [SMALL_STATE(3940)] = 120386, - [SMALL_STATE(3941)] = 120442, - [SMALL_STATE(3942)] = 120498, - [SMALL_STATE(3943)] = 120600, - [SMALL_STATE(3944)] = 120656, - [SMALL_STATE(3945)] = 120712, - [SMALL_STATE(3946)] = 120768, - [SMALL_STATE(3947)] = 120824, - [SMALL_STATE(3948)] = 120880, - [SMALL_STATE(3949)] = 120936, - [SMALL_STATE(3950)] = 120992, - [SMALL_STATE(3951)] = 121048, - [SMALL_STATE(3952)] = 121104, - [SMALL_STATE(3953)] = 121160, - [SMALL_STATE(3954)] = 121216, - [SMALL_STATE(3955)] = 121272, - [SMALL_STATE(3956)] = 121334, - [SMALL_STATE(3957)] = 121396, - [SMALL_STATE(3958)] = 121452, - [SMALL_STATE(3959)] = 121514, - [SMALL_STATE(3960)] = 121576, - [SMALL_STATE(3961)] = 121632, - [SMALL_STATE(3962)] = 121694, - [SMALL_STATE(3963)] = 121756, - [SMALL_STATE(3964)] = 121818, - [SMALL_STATE(3965)] = 121880, - [SMALL_STATE(3966)] = 121942, - [SMALL_STATE(3967)] = 122004, - [SMALL_STATE(3968)] = 122066, - [SMALL_STATE(3969)] = 122128, - [SMALL_STATE(3970)] = 122184, - [SMALL_STATE(3971)] = 122240, - [SMALL_STATE(3972)] = 122296, - [SMALL_STATE(3973)] = 122352, - [SMALL_STATE(3974)] = 122454, - [SMALL_STATE(3975)] = 122510, - [SMALL_STATE(3976)] = 122566, - [SMALL_STATE(3977)] = 122622, - [SMALL_STATE(3978)] = 122678, - [SMALL_STATE(3979)] = 122734, - [SMALL_STATE(3980)] = 122790, - [SMALL_STATE(3981)] = 122846, - [SMALL_STATE(3982)] = 122938, - [SMALL_STATE(3983)] = 122994, - [SMALL_STATE(3984)] = 123054, - [SMALL_STATE(3985)] = 123110, - [SMALL_STATE(3986)] = 123212, - [SMALL_STATE(3987)] = 123268, - [SMALL_STATE(3988)] = 123324, - [SMALL_STATE(3989)] = 123380, - [SMALL_STATE(3990)] = 123436, - [SMALL_STATE(3991)] = 123492, - [SMALL_STATE(3992)] = 123548, - [SMALL_STATE(3993)] = 123604, - [SMALL_STATE(3994)] = 123660, - [SMALL_STATE(3995)] = 123716, - [SMALL_STATE(3996)] = 123772, - [SMALL_STATE(3997)] = 123828, - [SMALL_STATE(3998)] = 123884, - [SMALL_STATE(3999)] = 123940, - [SMALL_STATE(4000)] = 124042, - [SMALL_STATE(4001)] = 124098, - [SMALL_STATE(4002)] = 124154, - [SMALL_STATE(4003)] = 124212, - [SMALL_STATE(4004)] = 124268, - [SMALL_STATE(4005)] = 124324, - [SMALL_STATE(4006)] = 124380, - [SMALL_STATE(4007)] = 124473, - [SMALL_STATE(4008)] = 124534, - [SMALL_STATE(4009)] = 124627, - [SMALL_STATE(4010)] = 124720, - [SMALL_STATE(4011)] = 124813, - [SMALL_STATE(4012)] = 124906, - [SMALL_STATE(4013)] = 124977, - [SMALL_STATE(4014)] = 125070, - [SMALL_STATE(4015)] = 125163, - [SMALL_STATE(4016)] = 125256, - [SMALL_STATE(4017)] = 125349, - [SMALL_STATE(4018)] = 125442, - [SMALL_STATE(4019)] = 125535, - [SMALL_STATE(4020)] = 125590, - [SMALL_STATE(4021)] = 125649, - [SMALL_STATE(4022)] = 125742, - [SMALL_STATE(4023)] = 125835, - [SMALL_STATE(4024)] = 125928, - [SMALL_STATE(4025)] = 125999, - [SMALL_STATE(4026)] = 126064, - [SMALL_STATE(4027)] = 126129, - [SMALL_STATE(4028)] = 126222, - [SMALL_STATE(4029)] = 126285, - [SMALL_STATE(4030)] = 126340, - [SMALL_STATE(4031)] = 126433, - [SMALL_STATE(4032)] = 126524, - [SMALL_STATE(4033)] = 126579, - [SMALL_STATE(4034)] = 126672, - [SMALL_STATE(4035)] = 126765, - [SMALL_STATE(4036)] = 126858, - [SMALL_STATE(4037)] = 126951, - [SMALL_STATE(4038)] = 127060, - [SMALL_STATE(4039)] = 127115, - [SMALL_STATE(4040)] = 127180, - [SMALL_STATE(4041)] = 127271, - [SMALL_STATE(4042)] = 127364, - [SMALL_STATE(4043)] = 127457, - [SMALL_STATE(4044)] = 127550, - [SMALL_STATE(4045)] = 127643, - [SMALL_STATE(4046)] = 127708, - [SMALL_STATE(4047)] = 127801, - [SMALL_STATE(4048)] = 127894, - [SMALL_STATE(4049)] = 127987, - [SMALL_STATE(4050)] = 128080, - [SMALL_STATE(4051)] = 128141, - [SMALL_STATE(4052)] = 128234, - [SMALL_STATE(4053)] = 128327, - [SMALL_STATE(4054)] = 128420, - [SMALL_STATE(4055)] = 128529, - [SMALL_STATE(4056)] = 128622, - [SMALL_STATE(4057)] = 128684, - [SMALL_STATE(4058)] = 128744, - [SMALL_STATE(4059)] = 128836, - [SMALL_STATE(4060)] = 128906, - [SMALL_STATE(4061)] = 128974, - [SMALL_STATE(4062)] = 129064, - [SMALL_STATE(4063)] = 129124, - [SMALL_STATE(4064)] = 129216, - [SMALL_STATE(4065)] = 129276, - [SMALL_STATE(4066)] = 129344, - [SMALL_STATE(4067)] = 129404, - [SMALL_STATE(4068)] = 129496, - [SMALL_STATE(4069)] = 129558, - [SMALL_STATE(4070)] = 129626, - [SMALL_STATE(4071)] = 129718, - [SMALL_STATE(4072)] = 129808, - [SMALL_STATE(4073)] = 129898, - [SMALL_STATE(4074)] = 129958, - [SMALL_STATE(4075)] = 130020, - [SMALL_STATE(4076)] = 130110, - [SMALL_STATE(4077)] = 130172, - [SMALL_STATE(4078)] = 130261, - [SMALL_STATE(4079)] = 130350, - [SMALL_STATE(4080)] = 130407, - [SMALL_STATE(4081)] = 130496, - [SMALL_STATE(4082)] = 130585, - [SMALL_STATE(4083)] = 130674, - [SMALL_STATE(4084)] = 130731, - [SMALL_STATE(4085)] = 130820, - [SMALL_STATE(4086)] = 130909, - [SMALL_STATE(4087)] = 130998, - [SMALL_STATE(4088)] = 131087, - [SMALL_STATE(4089)] = 131176, - [SMALL_STATE(4090)] = 131265, - [SMALL_STATE(4091)] = 131324, - [SMALL_STATE(4092)] = 131377, - [SMALL_STATE(4093)] = 131466, - [SMALL_STATE(4094)] = 131535, - [SMALL_STATE(4095)] = 131592, - [SMALL_STATE(4096)] = 131681, - [SMALL_STATE(4097)] = 131738, - [SMALL_STATE(4098)] = 131795, - [SMALL_STATE(4099)] = 131884, - [SMALL_STATE(4100)] = 131983, - [SMALL_STATE(4101)] = 132040, - [SMALL_STATE(4102)] = 132129, - [SMALL_STATE(4103)] = 132218, - [SMALL_STATE(4104)] = 132307, - [SMALL_STATE(4105)] = 132396, - [SMALL_STATE(4106)] = 132485, - [SMALL_STATE(4107)] = 132574, - [SMALL_STATE(4108)] = 132631, - [SMALL_STATE(4109)] = 132700, - [SMALL_STATE(4110)] = 132789, - [SMALL_STATE(4111)] = 132878, - [SMALL_STATE(4112)] = 132935, - [SMALL_STATE(4113)] = 132992, - [SMALL_STATE(4114)] = 133049, - [SMALL_STATE(4115)] = 133106, - [SMALL_STATE(4116)] = 133195, - [SMALL_STATE(4117)] = 133284, - [SMALL_STATE(4118)] = 133373, - [SMALL_STATE(4119)] = 133462, - [SMALL_STATE(4120)] = 133551, - [SMALL_STATE(4121)] = 133610, - [SMALL_STATE(4122)] = 133699, - [SMALL_STATE(4123)] = 133764, - [SMALL_STATE(4124)] = 133853, - [SMALL_STATE(4125)] = 133922, - [SMALL_STATE(4126)] = 133975, - [SMALL_STATE(4127)] = 134064, - [SMALL_STATE(4128)] = 134121, - [SMALL_STATE(4129)] = 134210, - [SMALL_STATE(4130)] = 134299, - [SMALL_STATE(4131)] = 134361, - [SMALL_STATE(4132)] = 134413, - [SMALL_STATE(4133)] = 134465, - [SMALL_STATE(4134)] = 134527, - [SMALL_STATE(4135)] = 134579, - [SMALL_STATE(4136)] = 134667, - [SMALL_STATE(4137)] = 134719, - [SMALL_STATE(4138)] = 134771, - [SMALL_STATE(4139)] = 134823, - [SMALL_STATE(4140)] = 134875, - [SMALL_STATE(4141)] = 134937, - [SMALL_STATE(4142)] = 134989, - [SMALL_STATE(4143)] = 135041, - [SMALL_STATE(4144)] = 135103, - [SMALL_STATE(4145)] = 135169, - [SMALL_STATE(4146)] = 135221, - [SMALL_STATE(4147)] = 135273, - [SMALL_STATE(4148)] = 135361, - [SMALL_STATE(4149)] = 135413, - [SMALL_STATE(4150)] = 135465, - [SMALL_STATE(4151)] = 135517, - [SMALL_STATE(4152)] = 135575, - [SMALL_STATE(4153)] = 135627, - [SMALL_STATE(4154)] = 135712, - [SMALL_STATE(4155)] = 135797, - [SMALL_STATE(4156)] = 135850, - [SMALL_STATE(4157)] = 135907, - [SMALL_STATE(4158)] = 136006, - [SMALL_STATE(4159)] = 136091, - [SMALL_STATE(4160)] = 136150, - [SMALL_STATE(4161)] = 136253, - [SMALL_STATE(4162)] = 136332, - [SMALL_STATE(4163)] = 136411, - [SMALL_STATE(4164)] = 136486, - [SMALL_STATE(4165)] = 136565, - [SMALL_STATE(4166)] = 136636, - [SMALL_STATE(4167)] = 136693, - [SMALL_STATE(4168)] = 136758, - [SMALL_STATE(4169)] = 136815, - [SMALL_STATE(4170)] = 136880, - [SMALL_STATE(4171)] = 136983, - [SMALL_STATE(4172)] = 137056, - [SMALL_STATE(4173)] = 137141, - [SMALL_STATE(4174)] = 137234, - [SMALL_STATE(4175)] = 137313, - [SMALL_STATE(4176)] = 137372, - [SMALL_STATE(4177)] = 137451, - [SMALL_STATE(4178)] = 137530, - [SMALL_STATE(4179)] = 137609, - [SMALL_STATE(4180)] = 137688, - [SMALL_STATE(4181)] = 137775, - [SMALL_STATE(4182)] = 137854, - [SMALL_STATE(4183)] = 137933, - [SMALL_STATE(4184)] = 137990, - [SMALL_STATE(4185)] = 138069, - [SMALL_STATE(4186)] = 138168, - [SMALL_STATE(4187)] = 138247, - [SMALL_STATE(4188)] = 138298, - [SMALL_STATE(4189)] = 138397, - [SMALL_STATE(4190)] = 138476, - [SMALL_STATE(4191)] = 138559, - [SMALL_STATE(4192)] = 138638, - [SMALL_STATE(4193)] = 138699, - [SMALL_STATE(4194)] = 138784, - [SMALL_STATE(4195)] = 138853, - [SMALL_STATE(4196)] = 138932, - [SMALL_STATE(4197)] = 139011, - [SMALL_STATE(4198)] = 139062, - [SMALL_STATE(4199)] = 139123, - [SMALL_STATE(4200)] = 139210, - [SMALL_STATE(4201)] = 139305, - [SMALL_STATE(4202)] = 139396, - [SMALL_STATE(4203)] = 139475, - [SMALL_STATE(4204)] = 139532, - [SMALL_STATE(4205)] = 139611, - [SMALL_STATE(4206)] = 139690, - [SMALL_STATE(4207)] = 139777, - [SMALL_STATE(4208)] = 139828, - [SMALL_STATE(4209)] = 139915, - [SMALL_STATE(4210)] = 140014, - [SMALL_STATE(4211)] = 140099, - [SMALL_STATE(4212)] = 140194, - [SMALL_STATE(4213)] = 140279, - [SMALL_STATE(4214)] = 140368, - [SMALL_STATE(4215)] = 140471, - [SMALL_STATE(4216)] = 140522, - [SMALL_STATE(4217)] = 140589, - [SMALL_STATE(4218)] = 140674, - [SMALL_STATE(4219)] = 140777, - [SMALL_STATE(4220)] = 140864, - [SMALL_STATE(4221)] = 140949, - [SMALL_STATE(4222)] = 141048, - [SMALL_STATE(4223)] = 141135, - [SMALL_STATE(4224)] = 141189, - [SMALL_STATE(4225)] = 141239, - [SMALL_STATE(4226)] = 141289, - [SMALL_STATE(4227)] = 141339, - [SMALL_STATE(4228)] = 141389, - [SMALL_STATE(4229)] = 141439, - [SMALL_STATE(4230)] = 141489, - [SMALL_STATE(4231)] = 141595, - [SMALL_STATE(4232)] = 141647, - [SMALL_STATE(4233)] = 141697, - [SMALL_STATE(4234)] = 141749, - [SMALL_STATE(4235)] = 141799, - [SMALL_STATE(4236)] = 141861, - [SMALL_STATE(4237)] = 141935, - [SMALL_STATE(4238)] = 141985, - [SMALL_STATE(4239)] = 142035, - [SMALL_STATE(4240)] = 142109, - [SMALL_STATE(4241)] = 142195, - [SMALL_STATE(4242)] = 142245, - [SMALL_STATE(4243)] = 142295, - [SMALL_STATE(4244)] = 142345, - [SMALL_STATE(4245)] = 142431, - [SMALL_STATE(4246)] = 142481, - [SMALL_STATE(4247)] = 142531, - [SMALL_STATE(4248)] = 142609, - [SMALL_STATE(4249)] = 142659, - [SMALL_STATE(4250)] = 142709, - [SMALL_STATE(4251)] = 142759, - [SMALL_STATE(4252)] = 142809, - [SMALL_STATE(4253)] = 142875, - [SMALL_STATE(4254)] = 142925, - [SMALL_STATE(4255)] = 143003, - [SMALL_STATE(4256)] = 143077, - [SMALL_STATE(4257)] = 143129, - [SMALL_STATE(4258)] = 143207, - [SMALL_STATE(4259)] = 143263, - [SMALL_STATE(4260)] = 143313, - [SMALL_STATE(4261)] = 143387, - [SMALL_STATE(4262)] = 143437, - [SMALL_STATE(4263)] = 143487, - [SMALL_STATE(4264)] = 143565, - [SMALL_STATE(4265)] = 143615, - [SMALL_STATE(4266)] = 143665, - [SMALL_STATE(4267)] = 143715, - [SMALL_STATE(4268)] = 143793, - [SMALL_STATE(4269)] = 143843, - [SMALL_STATE(4270)] = 143893, - [SMALL_STATE(4271)] = 143971, - [SMALL_STATE(4272)] = 144025, - [SMALL_STATE(4273)] = 144091, - [SMALL_STATE(4274)] = 144141, - [SMALL_STATE(4275)] = 144247, - [SMALL_STATE(4276)] = 144297, - [SMALL_STATE(4277)] = 144403, - [SMALL_STATE(4278)] = 144453, - [SMALL_STATE(4279)] = 144515, - [SMALL_STATE(4280)] = 144565, - [SMALL_STATE(4281)] = 144615, - [SMALL_STATE(4282)] = 144675, - [SMALL_STATE(4283)] = 144725, - [SMALL_STATE(4284)] = 144785, - [SMALL_STATE(4285)] = 144859, - [SMALL_STATE(4286)] = 144909, - [SMALL_STATE(4287)] = 144959, - [SMALL_STATE(4288)] = 145009, - [SMALL_STATE(4289)] = 145059, - [SMALL_STATE(4290)] = 145144, - [SMALL_STATE(4291)] = 145221, - [SMALL_STATE(4292)] = 145270, - [SMALL_STATE(4293)] = 145361, - [SMALL_STATE(4294)] = 145414, - [SMALL_STATE(4295)] = 145491, - [SMALL_STATE(4296)] = 145540, - [SMALL_STATE(4297)] = 145589, - [SMALL_STATE(4298)] = 145666, - [SMALL_STATE(4299)] = 145721, - [SMALL_STATE(4300)] = 145770, - [SMALL_STATE(4301)] = 145855, - [SMALL_STATE(4302)] = 145904, - [SMALL_STATE(4303)] = 145953, - [SMALL_STATE(4304)] = 146002, - [SMALL_STATE(4305)] = 146051, - [SMALL_STATE(4306)] = 146100, - [SMALL_STATE(4307)] = 146149, - [SMALL_STATE(4308)] = 146226, - [SMALL_STATE(4309)] = 146275, - [SMALL_STATE(4310)] = 146332, - [SMALL_STATE(4311)] = 146409, - [SMALL_STATE(4312)] = 146458, - [SMALL_STATE(4313)] = 146515, - [SMALL_STATE(4314)] = 146606, - [SMALL_STATE(4315)] = 146657, - [SMALL_STATE(4316)] = 146706, - [SMALL_STATE(4317)] = 146755, - [SMALL_STATE(4318)] = 146804, - [SMALL_STATE(4319)] = 146881, - [SMALL_STATE(4320)] = 146930, - [SMALL_STATE(4321)] = 146979, - [SMALL_STATE(4322)] = 147034, - [SMALL_STATE(4323)] = 147099, - [SMALL_STATE(4324)] = 147148, - [SMALL_STATE(4325)] = 147201, - [SMALL_STATE(4326)] = 147292, - [SMALL_STATE(4327)] = 147384, - [SMALL_STATE(4328)] = 147484, - [SMALL_STATE(4329)] = 147550, - [SMALL_STATE(4330)] = 147640, - [SMALL_STATE(4331)] = 147692, - [SMALL_STATE(4332)] = 147782, - [SMALL_STATE(4333)] = 147834, - [SMALL_STATE(4334)] = 147922, - [SMALL_STATE(4335)] = 148006, - [SMALL_STATE(4336)] = 148068, - [SMALL_STATE(4337)] = 148130, - [SMALL_STATE(4338)] = 148182, - [SMALL_STATE(4339)] = 148264, - [SMALL_STATE(4340)] = 148342, - [SMALL_STATE(4341)] = 148418, - [SMALL_STATE(4342)] = 148490, - [SMALL_STATE(4343)] = 148538, - [SMALL_STATE(4344)] = 148606, - [SMALL_STATE(4345)] = 148654, - [SMALL_STATE(4346)] = 148706, - [SMALL_STATE(4347)] = 148770, - [SMALL_STATE(4348)] = 148860, - [SMALL_STATE(4349)] = 148930, - [SMALL_STATE(4350)] = 149024, - [SMALL_STATE(4351)] = 149082, - [SMALL_STATE(4352)] = 149172, - [SMALL_STATE(4353)] = 149256, - [SMALL_STATE(4354)] = 149330, - [SMALL_STATE(4355)] = 149382, - [SMALL_STATE(4356)] = 149434, - [SMALL_STATE(4357)] = 149524, - [SMALL_STATE(4358)] = 149612, - [SMALL_STATE(4359)] = 149708, - [SMALL_STATE(4360)] = 149782, - [SMALL_STATE(4361)] = 149876, - [SMALL_STATE(4362)] = 149928, - [SMALL_STATE(4363)] = 149992, - [SMALL_STATE(4364)] = 150068, - [SMALL_STATE(4365)] = 150160, - [SMALL_STATE(4366)] = 150252, - [SMALL_STATE(4367)] = 150322, - [SMALL_STATE(4368)] = 150418, - [SMALL_STATE(4369)] = 150476, - [SMALL_STATE(4370)] = 150568, - [SMALL_STATE(4371)] = 150640, - [SMALL_STATE(4372)] = 150698, - [SMALL_STATE(4373)] = 150766, - [SMALL_STATE(4374)] = 150840, - [SMALL_STATE(4375)] = 150926, - [SMALL_STATE(4376)] = 151010, - [SMALL_STATE(4377)] = 151062, - [SMALL_STATE(4378)] = 151128, - [SMALL_STATE(4379)] = 151224, - [SMALL_STATE(4380)] = 151306, - [SMALL_STATE(4381)] = 151380, - [SMALL_STATE(4382)] = 151458, - [SMALL_STATE(4383)] = 151548, - [SMALL_STATE(4384)] = 151622, - [SMALL_STATE(4385)] = 151674, - [SMALL_STATE(4386)] = 151758, - [SMALL_STATE(4387)] = 151810, - [SMALL_STATE(4388)] = 151862, - [SMALL_STATE(4389)] = 151914, - [SMALL_STATE(4390)] = 151988, - [SMALL_STATE(4391)] = 152080, - [SMALL_STATE(4392)] = 152132, - [SMALL_STATE(4393)] = 152190, - [SMALL_STATE(4394)] = 152248, - [SMALL_STATE(4395)] = 152324, - [SMALL_STATE(4396)] = 152400, - [SMALL_STATE(4397)] = 152476, - [SMALL_STATE(4398)] = 152552, - [SMALL_STATE(4399)] = 152628, - [SMALL_STATE(4400)] = 152704, - [SMALL_STATE(4401)] = 152800, - [SMALL_STATE(4402)] = 152894, - [SMALL_STATE(4403)] = 152952, - [SMALL_STATE(4404)] = 153048, - [SMALL_STATE(4405)] = 153106, - [SMALL_STATE(4406)] = 153203, - [SMALL_STATE(4407)] = 153276, - [SMALL_STATE(4408)] = 153373, - [SMALL_STATE(4409)] = 153468, - [SMALL_STATE(4410)] = 153565, - [SMALL_STATE(4411)] = 153662, - [SMALL_STATE(4412)] = 153735, - [SMALL_STATE(4413)] = 153784, - [SMALL_STATE(4414)] = 153881, - [SMALL_STATE(4415)] = 153934, - [SMALL_STATE(4416)] = 154031, - [SMALL_STATE(4417)] = 154128, - [SMALL_STATE(4418)] = 154181, - [SMALL_STATE(4419)] = 154234, - [SMALL_STATE(4420)] = 154331, - [SMALL_STATE(4421)] = 154428, - [SMALL_STATE(4422)] = 154525, - [SMALL_STATE(4423)] = 154622, - [SMALL_STATE(4424)] = 154719, - [SMALL_STATE(4425)] = 154816, - [SMALL_STATE(4426)] = 154913, - [SMALL_STATE(4427)] = 155010, - [SMALL_STATE(4428)] = 155107, - [SMALL_STATE(4429)] = 155204, - [SMALL_STATE(4430)] = 155251, - [SMALL_STATE(4431)] = 155298, - [SMALL_STATE(4432)] = 155371, - [SMALL_STATE(4433)] = 155468, - [SMALL_STATE(4434)] = 155565, - [SMALL_STATE(4435)] = 155660, - [SMALL_STATE(4436)] = 155713, - [SMALL_STATE(4437)] = 155786, - [SMALL_STATE(4438)] = 155841, - [SMALL_STATE(4439)] = 155938, - [SMALL_STATE(4440)] = 156035, - [SMALL_STATE(4441)] = 156082, - [SMALL_STATE(4442)] = 156145, - [SMALL_STATE(4443)] = 156192, - [SMALL_STATE(4444)] = 156245, - [SMALL_STATE(4445)] = 156294, - [SMALL_STATE(4446)] = 156391, - [SMALL_STATE(4447)] = 156488, - [SMALL_STATE(4448)] = 156585, - [SMALL_STATE(4449)] = 156634, - [SMALL_STATE(4450)] = 156699, - [SMALL_STATE(4451)] = 156796, - [SMALL_STATE(4452)] = 156869, - [SMALL_STATE(4453)] = 156966, - [SMALL_STATE(4454)] = 157063, - [SMALL_STATE(4455)] = 157136, - [SMALL_STATE(4456)] = 157233, - [SMALL_STATE(4457)] = 157330, - [SMALL_STATE(4458)] = 157383, - [SMALL_STATE(4459)] = 157480, - [SMALL_STATE(4460)] = 157529, - [SMALL_STATE(4461)] = 157592, - [SMALL_STATE(4462)] = 157639, - [SMALL_STATE(4463)] = 157736, - [SMALL_STATE(4464)] = 157799, - [SMALL_STATE(4465)] = 157896, - [SMALL_STATE(4466)] = 157971, - [SMALL_STATE(4467)] = 158018, - [SMALL_STATE(4468)] = 158093, - [SMALL_STATE(4469)] = 158168, - [SMALL_STATE(4470)] = 158243, - [SMALL_STATE(4471)] = 158318, - [SMALL_STATE(4472)] = 158393, - [SMALL_STATE(4473)] = 158490, - [SMALL_STATE(4474)] = 158587, - [SMALL_STATE(4475)] = 158634, - [SMALL_STATE(4476)] = 158731, - [SMALL_STATE(4477)] = 158828, - [SMALL_STATE(4478)] = 158925, - [SMALL_STATE(4479)] = 159022, - [SMALL_STATE(4480)] = 159119, - [SMALL_STATE(4481)] = 159166, - [SMALL_STATE(4482)] = 159263, - [SMALL_STATE(4483)] = 159310, - [SMALL_STATE(4484)] = 159407, - [SMALL_STATE(4485)] = 159504, - [SMALL_STATE(4486)] = 159555, - [SMALL_STATE(4487)] = 159602, - [SMALL_STATE(4488)] = 159655, - [SMALL_STATE(4489)] = 159747, - [SMALL_STATE(4490)] = 159833, - [SMALL_STATE(4491)] = 159917, - [SMALL_STATE(4492)] = 159969, - [SMALL_STATE(4493)] = 160063, - [SMALL_STATE(4494)] = 160145, - [SMALL_STATE(4495)] = 160237, - [SMALL_STATE(4496)] = 160317, - [SMALL_STATE(4497)] = 160393, - [SMALL_STATE(4498)] = 160467, - [SMALL_STATE(4499)] = 160559, - [SMALL_STATE(4500)] = 160629, - [SMALL_STATE(4501)] = 160695, - [SMALL_STATE(4502)] = 160787, - [SMALL_STATE(4503)] = 160881, - [SMALL_STATE(4504)] = 160975, - [SMALL_STATE(4505)] = 161027, - [SMALL_STATE(4506)] = 161095, - [SMALL_STATE(4507)] = 161189, - [SMALL_STATE(4508)] = 161283, - [SMALL_STATE(4509)] = 161363, - [SMALL_STATE(4510)] = 161455, - [SMALL_STATE(4511)] = 161549, - [SMALL_STATE(4512)] = 161643, - [SMALL_STATE(4513)] = 161699, - [SMALL_STATE(4514)] = 161771, - [SMALL_STATE(4515)] = 161845, - [SMALL_STATE(4516)] = 161893, - [SMALL_STATE(4517)] = 161985, - [SMALL_STATE(4518)] = 162057, - [SMALL_STATE(4519)] = 162151, - [SMALL_STATE(4520)] = 162239, - [SMALL_STATE(4521)] = 162331, - [SMALL_STATE(4522)] = 162395, - [SMALL_STATE(4523)] = 162481, - [SMALL_STATE(4524)] = 162565, - [SMALL_STATE(4525)] = 162647, - [SMALL_STATE(4526)] = 162727, - [SMALL_STATE(4527)] = 162803, - [SMALL_STATE(4528)] = 162877, - [SMALL_STATE(4529)] = 162947, - [SMALL_STATE(4530)] = 163013, - [SMALL_STATE(4531)] = 163081, - [SMALL_STATE(4532)] = 163169, - [SMALL_STATE(4533)] = 163257, - [SMALL_STATE(4534)] = 163349, - [SMALL_STATE(4535)] = 163437, - [SMALL_STATE(4536)] = 163529, - [SMALL_STATE(4537)] = 163621, - [SMALL_STATE(4538)] = 163695, - [SMALL_STATE(4539)] = 163787, - [SMALL_STATE(4540)] = 163881, - [SMALL_STATE(4541)] = 163969, - [SMALL_STATE(4542)] = 164057, - [SMALL_STATE(4543)] = 164145, - [SMALL_STATE(4544)] = 164233, - [SMALL_STATE(4545)] = 164327, - [SMALL_STATE(4546)] = 164419, - [SMALL_STATE(4547)] = 164511, - [SMALL_STATE(4548)] = 164603, - [SMALL_STATE(4549)] = 164695, - [SMALL_STATE(4550)] = 164789, - [SMALL_STATE(4551)] = 164849, - [SMALL_STATE(4552)] = 164921, - [SMALL_STATE(4553)] = 165015, - [SMALL_STATE(4554)] = 165103, - [SMALL_STATE(4555)] = 165195, - [SMALL_STATE(4556)] = 165269, - [SMALL_STATE(4557)] = 165363, - [SMALL_STATE(4558)] = 165457, - [SMALL_STATE(4559)] = 165507, - [SMALL_STATE(4560)] = 165579, - [SMALL_STATE(4561)] = 165639, - [SMALL_STATE(4562)] = 165713, - [SMALL_STATE(4563)] = 165787, - [SMALL_STATE(4564)] = 165833, - [SMALL_STATE(4565)] = 165921, - [SMALL_STATE(4566)] = 166015, - [SMALL_STATE(4567)] = 166109, - [SMALL_STATE(4568)] = 166155, - [SMALL_STATE(4569)] = 166213, - [SMALL_STATE(4570)] = 166307, - [SMALL_STATE(4571)] = 166367, - [SMALL_STATE(4572)] = 166449, - [SMALL_STATE(4573)] = 166509, - [SMALL_STATE(4574)] = 166597, - [SMALL_STATE(4575)] = 166655, - [SMALL_STATE(4576)] = 166749, - [SMALL_STATE(4577)] = 166813, - [SMALL_STATE(4578)] = 166865, - [SMALL_STATE(4579)] = 166925, - [SMALL_STATE(4580)] = 167019, - [SMALL_STATE(4581)] = 167113, - [SMALL_STATE(4582)] = 167207, - [SMALL_STATE(4583)] = 167281, - [SMALL_STATE(4584)] = 167357, - [SMALL_STATE(4585)] = 167431, - [SMALL_STATE(4586)] = 167525, - [SMALL_STATE(4587)] = 167583, - [SMALL_STATE(4588)] = 167675, - [SMALL_STATE(4589)] = 167749, - [SMALL_STATE(4590)] = 167843, - [SMALL_STATE(4591)] = 167935, - [SMALL_STATE(4592)] = 168029, - [SMALL_STATE(4593)] = 168117, - [SMALL_STATE(4594)] = 168209, - [SMALL_STATE(4595)] = 168303, - [SMALL_STATE(4596)] = 168395, - [SMALL_STATE(4597)] = 168469, - [SMALL_STATE(4598)] = 168529, - [SMALL_STATE(4599)] = 168575, - [SMALL_STATE(4600)] = 168649, - [SMALL_STATE(4601)] = 168709, - [SMALL_STATE(4602)] = 168803, - [SMALL_STATE(4603)] = 168895, - [SMALL_STATE(4604)] = 168989, - [SMALL_STATE(4605)] = 169063, - [SMALL_STATE(4606)] = 169123, - [SMALL_STATE(4607)] = 169183, - [SMALL_STATE(4608)] = 169277, - [SMALL_STATE(4609)] = 169337, - [SMALL_STATE(4610)] = 169409, - [SMALL_STATE(4611)] = 169481, - [SMALL_STATE(4612)] = 169555, - [SMALL_STATE(4613)] = 169621, - [SMALL_STATE(4614)] = 169707, - [SMALL_STATE(4615)] = 169779, - [SMALL_STATE(4616)] = 169873, - [SMALL_STATE(4617)] = 169967, - [SMALL_STATE(4618)] = 170053, - [SMALL_STATE(4619)] = 170137, - [SMALL_STATE(4620)] = 170209, - [SMALL_STATE(4621)] = 170297, - [SMALL_STATE(4622)] = 170391, - [SMALL_STATE(4623)] = 170465, - [SMALL_STATE(4624)] = 170511, - [SMALL_STATE(4625)] = 170583, - [SMALL_STATE(4626)] = 170675, - [SMALL_STATE(4627)] = 170767, - [SMALL_STATE(4628)] = 170861, - [SMALL_STATE(4629)] = 170955, - [SMALL_STATE(4630)] = 171047, - [SMALL_STATE(4631)] = 171141, - [SMALL_STATE(4632)] = 171199, - [SMALL_STATE(4633)] = 171291, - [SMALL_STATE(4634)] = 171379, - [SMALL_STATE(4635)] = 171471, - [SMALL_STATE(4636)] = 171541, - [SMALL_STATE(4637)] = 171635, - [SMALL_STATE(4638)] = 171729, - [SMALL_STATE(4639)] = 171823, - [SMALL_STATE(4640)] = 171895, - [SMALL_STATE(4641)] = 171989, - [SMALL_STATE(4642)] = 172077, - [SMALL_STATE(4643)] = 172169, - [SMALL_STATE(4644)] = 172263, - [SMALL_STATE(4645)] = 172357, - [SMALL_STATE(4646)] = 172451, - [SMALL_STATE(4647)] = 172523, - [SMALL_STATE(4648)] = 172617, - [SMALL_STATE(4649)] = 172709, - [SMALL_STATE(4650)] = 172781, - [SMALL_STATE(4651)] = 172853, - [SMALL_STATE(4652)] = 172947, - [SMALL_STATE(4653)] = 173011, - [SMALL_STATE(4654)] = 173102, - [SMALL_STATE(4655)] = 173165, - [SMALL_STATE(4656)] = 173256, - [SMALL_STATE(4657)] = 173303, - [SMALL_STATE(4658)] = 173394, - [SMALL_STATE(4659)] = 173467, - [SMALL_STATE(4660)] = 173558, - [SMALL_STATE(4661)] = 173649, - [SMALL_STATE(4662)] = 173698, - [SMALL_STATE(4663)] = 173747, - [SMALL_STATE(4664)] = 173796, - [SMALL_STATE(4665)] = 173845, - [SMALL_STATE(4666)] = 173894, - [SMALL_STATE(4667)] = 173943, - [SMALL_STATE(4668)] = 173992, - [SMALL_STATE(4669)] = 174041, - [SMALL_STATE(4670)] = 174090, - [SMALL_STATE(4671)] = 174139, - [SMALL_STATE(4672)] = 174188, - [SMALL_STATE(4673)] = 174237, - [SMALL_STATE(4674)] = 174286, - [SMALL_STATE(4675)] = 174337, - [SMALL_STATE(4676)] = 174410, - [SMALL_STATE(4677)] = 174501, - [SMALL_STATE(4678)] = 174592, - [SMALL_STATE(4679)] = 174679, - [SMALL_STATE(4680)] = 174752, - [SMALL_STATE(4681)] = 174797, - [SMALL_STATE(4682)] = 174888, - [SMALL_STATE(4683)] = 174979, - [SMALL_STATE(4684)] = 175070, - [SMALL_STATE(4685)] = 175161, - [SMALL_STATE(4686)] = 175252, - [SMALL_STATE(4687)] = 175333, - [SMALL_STATE(4688)] = 175424, - [SMALL_STATE(4689)] = 175515, - [SMALL_STATE(4690)] = 175588, - [SMALL_STATE(4691)] = 175679, - [SMALL_STATE(4692)] = 175730, - [SMALL_STATE(4693)] = 175821, - [SMALL_STATE(4694)] = 175912, - [SMALL_STATE(4695)] = 176003, - [SMALL_STATE(4696)] = 176094, - [SMALL_STATE(4697)] = 176185, - [SMALL_STATE(4698)] = 176276, - [SMALL_STATE(4699)] = 176367, - [SMALL_STATE(4700)] = 176458, - [SMALL_STATE(4701)] = 176549, - [SMALL_STATE(4702)] = 176640, - [SMALL_STATE(4703)] = 176731, - [SMALL_STATE(4704)] = 176778, - [SMALL_STATE(4705)] = 176869, - [SMALL_STATE(4706)] = 176942, - [SMALL_STATE(4707)] = 177033, - [SMALL_STATE(4708)] = 177124, - [SMALL_STATE(4709)] = 177215, - [SMALL_STATE(4710)] = 177306, - [SMALL_STATE(4711)] = 177397, - [SMALL_STATE(4712)] = 177488, - [SMALL_STATE(4713)] = 177569, - [SMALL_STATE(4714)] = 177660, - [SMALL_STATE(4715)] = 177751, - [SMALL_STATE(4716)] = 177842, - [SMALL_STATE(4717)] = 177915, - [SMALL_STATE(4718)] = 178006, - [SMALL_STATE(4719)] = 178097, - [SMALL_STATE(4720)] = 178188, - [SMALL_STATE(4721)] = 178279, - [SMALL_STATE(4722)] = 178370, - [SMALL_STATE(4723)] = 178461, - [SMALL_STATE(4724)] = 178534, - [SMALL_STATE(4725)] = 178625, - [SMALL_STATE(4726)] = 178716, - [SMALL_STATE(4727)] = 178807, - [SMALL_STATE(4728)] = 178898, - [SMALL_STATE(4729)] = 178947, - [SMALL_STATE(4730)] = 179038, - [SMALL_STATE(4731)] = 179129, - [SMALL_STATE(4732)] = 179220, - [SMALL_STATE(4733)] = 179311, - [SMALL_STATE(4734)] = 179402, - [SMALL_STATE(4735)] = 179483, - [SMALL_STATE(4736)] = 179574, - [SMALL_STATE(4737)] = 179665, - [SMALL_STATE(4738)] = 179746, - [SMALL_STATE(4739)] = 179827, - [SMALL_STATE(4740)] = 179918, - [SMALL_STATE(4741)] = 180009, - [SMALL_STATE(4742)] = 180090, - [SMALL_STATE(4743)] = 180181, - [SMALL_STATE(4744)] = 180272, - [SMALL_STATE(4745)] = 180363, - [SMALL_STATE(4746)] = 180454, - [SMALL_STATE(4747)] = 180545, - [SMALL_STATE(4748)] = 180600, - [SMALL_STATE(4749)] = 180645, - [SMALL_STATE(4750)] = 180736, - [SMALL_STATE(4751)] = 180827, - [SMALL_STATE(4752)] = 180918, - [SMALL_STATE(4753)] = 181009, - [SMALL_STATE(4754)] = 181100, - [SMALL_STATE(4755)] = 181181, - [SMALL_STATE(4756)] = 181272, - [SMALL_STATE(4757)] = 181363, - [SMALL_STATE(4758)] = 181454, - [SMALL_STATE(4759)] = 181545, - [SMALL_STATE(4760)] = 181636, - [SMALL_STATE(4761)] = 181727, - [SMALL_STATE(4762)] = 181782, - [SMALL_STATE(4763)] = 181873, - [SMALL_STATE(4764)] = 181964, - [SMALL_STATE(4765)] = 182055, - [SMALL_STATE(4766)] = 182146, - [SMALL_STATE(4767)] = 182237, - [SMALL_STATE(4768)] = 182328, - [SMALL_STATE(4769)] = 182419, - [SMALL_STATE(4770)] = 182510, - [SMALL_STATE(4771)] = 182601, - [SMALL_STATE(4772)] = 182692, - [SMALL_STATE(4773)] = 182783, - [SMALL_STATE(4774)] = 182874, - [SMALL_STATE(4775)] = 182965, - [SMALL_STATE(4776)] = 183056, - [SMALL_STATE(4777)] = 183147, - [SMALL_STATE(4778)] = 183230, - [SMALL_STATE(4779)] = 183321, - [SMALL_STATE(4780)] = 183412, - [SMALL_STATE(4781)] = 183503, - [SMALL_STATE(4782)] = 183594, - [SMALL_STATE(4783)] = 183685, - [SMALL_STATE(4784)] = 183766, - [SMALL_STATE(4785)] = 183847, - [SMALL_STATE(4786)] = 183920, - [SMALL_STATE(4787)] = 183993, - [SMALL_STATE(4788)] = 184084, - [SMALL_STATE(4789)] = 184157, - [SMALL_STATE(4790)] = 184248, - [SMALL_STATE(4791)] = 184329, - [SMALL_STATE(4792)] = 184402, - [SMALL_STATE(4793)] = 184493, - [SMALL_STATE(4794)] = 184566, - [SMALL_STATE(4795)] = 184639, - [SMALL_STATE(4796)] = 184712, - [SMALL_STATE(4797)] = 184785, - [SMALL_STATE(4798)] = 184856, - [SMALL_STATE(4799)] = 184927, - [SMALL_STATE(4800)] = 184998, - [SMALL_STATE(4801)] = 185069, - [SMALL_STATE(4802)] = 185140, - [SMALL_STATE(4803)] = 185211, - [SMALL_STATE(4804)] = 185292, - [SMALL_STATE(4805)] = 185383, - [SMALL_STATE(4806)] = 185456, - [SMALL_STATE(4807)] = 185547, - [SMALL_STATE(4808)] = 185620, - [SMALL_STATE(4809)] = 185693, - [SMALL_STATE(4810)] = 185766, - [SMALL_STATE(4811)] = 185857, - [SMALL_STATE(4812)] = 185938, - [SMALL_STATE(4813)] = 186019, - [SMALL_STATE(4814)] = 186100, - [SMALL_STATE(4815)] = 186173, - [SMALL_STATE(4816)] = 186254, - [SMALL_STATE(4817)] = 186341, - [SMALL_STATE(4818)] = 186396, - [SMALL_STATE(4819)] = 186487, - [SMALL_STATE(4820)] = 186558, - [SMALL_STATE(4821)] = 186629, - [SMALL_STATE(4822)] = 186700, - [SMALL_STATE(4823)] = 186791, - [SMALL_STATE(4824)] = 186838, - [SMALL_STATE(4825)] = 186929, - [SMALL_STATE(4826)] = 187000, - [SMALL_STATE(4827)] = 187091, - [SMALL_STATE(4828)] = 187162, - [SMALL_STATE(4829)] = 187233, - [SMALL_STATE(4830)] = 187324, - [SMALL_STATE(4831)] = 187415, - [SMALL_STATE(4832)] = 187488, - [SMALL_STATE(4833)] = 187579, - [SMALL_STATE(4834)] = 187670, - [SMALL_STATE(4835)] = 187761, - [SMALL_STATE(4836)] = 187852, - [SMALL_STATE(4837)] = 187943, - [SMALL_STATE(4838)] = 188034, - [SMALL_STATE(4839)] = 188122, - [SMALL_STATE(4840)] = 188208, - [SMALL_STATE(4841)] = 188268, - [SMALL_STATE(4842)] = 188326, - [SMALL_STATE(4843)] = 188376, - [SMALL_STATE(4844)] = 188434, - [SMALL_STATE(4845)] = 188484, - [SMALL_STATE(4846)] = 188534, - [SMALL_STATE(4847)] = 188620, - [SMALL_STATE(4848)] = 188664, - [SMALL_STATE(4849)] = 188708, - [SMALL_STATE(4850)] = 188752, - [SMALL_STATE(4851)] = 188796, - [SMALL_STATE(4852)] = 188840, - [SMALL_STATE(4853)] = 188890, - [SMALL_STATE(4854)] = 188934, - [SMALL_STATE(4855)] = 188984, - [SMALL_STATE(4856)] = 189034, - [SMALL_STATE(4857)] = 189084, - [SMALL_STATE(4858)] = 189128, - [SMALL_STATE(4859)] = 189180, - [SMALL_STATE(4860)] = 189224, - [SMALL_STATE(4861)] = 189302, - [SMALL_STATE(4862)] = 189380, - [SMALL_STATE(4863)] = 189430, - [SMALL_STATE(4864)] = 189474, - [SMALL_STATE(4865)] = 189524, - [SMALL_STATE(4866)] = 189574, - [SMALL_STATE(4867)] = 189624, - [SMALL_STATE(4868)] = 189668, - [SMALL_STATE(4869)] = 189714, - [SMALL_STATE(4870)] = 189764, - [SMALL_STATE(4871)] = 189814, - [SMALL_STATE(4872)] = 189900, - [SMALL_STATE(4873)] = 189944, - [SMALL_STATE(4874)] = 189988, - [SMALL_STATE(4875)] = 190032, - [SMALL_STATE(4876)] = 190080, - [SMALL_STATE(4877)] = 190124, - [SMALL_STATE(4878)] = 190168, - [SMALL_STATE(4879)] = 190212, - [SMALL_STATE(4880)] = 190290, - [SMALL_STATE(4881)] = 190334, - [SMALL_STATE(4882)] = 190420, - [SMALL_STATE(4883)] = 190506, - [SMALL_STATE(4884)] = 190550, - [SMALL_STATE(4885)] = 190598, - [SMALL_STATE(4886)] = 190642, - [SMALL_STATE(4887)] = 190686, - [SMALL_STATE(4888)] = 190730, - [SMALL_STATE(4889)] = 190774, - [SMALL_STATE(4890)] = 190818, - [SMALL_STATE(4891)] = 190862, - [SMALL_STATE(4892)] = 190940, - [SMALL_STATE(4893)] = 191026, - [SMALL_STATE(4894)] = 191070, - [SMALL_STATE(4895)] = 191114, - [SMALL_STATE(4896)] = 191192, - [SMALL_STATE(4897)] = 191270, - [SMALL_STATE(4898)] = 191314, - [SMALL_STATE(4899)] = 191392, - [SMALL_STATE(4900)] = 191442, - [SMALL_STATE(4901)] = 191486, - [SMALL_STATE(4902)] = 191530, - [SMALL_STATE(4903)] = 191608, - [SMALL_STATE(4904)] = 191652, - [SMALL_STATE(4905)] = 191696, - [SMALL_STATE(4906)] = 191740, - [SMALL_STATE(4907)] = 191810, - [SMALL_STATE(4908)] = 191870, - [SMALL_STATE(4909)] = 191940, - [SMALL_STATE(4910)] = 192010, - [SMALL_STATE(4911)] = 192080, - [SMALL_STATE(4912)] = 192150, - [SMALL_STATE(4913)] = 192220, - [SMALL_STATE(4914)] = 192264, - [SMALL_STATE(4915)] = 192308, - [SMALL_STATE(4916)] = 192356, - [SMALL_STATE(4917)] = 192400, - [SMALL_STATE(4918)] = 192444, - [SMALL_STATE(4919)] = 192496, - [SMALL_STATE(4920)] = 192540, - [SMALL_STATE(4921)] = 192631, - [SMALL_STATE(4922)] = 192674, - [SMALL_STATE(4923)] = 192717, - [SMALL_STATE(4924)] = 192786, - [SMALL_STATE(4925)] = 192829, - [SMALL_STATE(4926)] = 192872, - [SMALL_STATE(4927)] = 192915, - [SMALL_STATE(4928)] = 192958, - [SMALL_STATE(4929)] = 193001, - [SMALL_STATE(4930)] = 193070, - [SMALL_STATE(4931)] = 193139, - [SMALL_STATE(4932)] = 193208, - [SMALL_STATE(4933)] = 193251, - [SMALL_STATE(4934)] = 193294, - [SMALL_STATE(4935)] = 193363, - [SMALL_STATE(4936)] = 193432, - [SMALL_STATE(4937)] = 193475, - [SMALL_STATE(4938)] = 193560, - [SMALL_STATE(4939)] = 193609, - [SMALL_STATE(4940)] = 193678, - [SMALL_STATE(4941)] = 193721, - [SMALL_STATE(4942)] = 193764, - [SMALL_STATE(4943)] = 193833, - [SMALL_STATE(4944)] = 193876, - [SMALL_STATE(4945)] = 193919, - [SMALL_STATE(4946)] = 194004, - [SMALL_STATE(4947)] = 194047, - [SMALL_STATE(4948)] = 194132, - [SMALL_STATE(4949)] = 194217, - [SMALL_STATE(4950)] = 194302, - [SMALL_STATE(4951)] = 194387, - [SMALL_STATE(4952)] = 194430, - [SMALL_STATE(4953)] = 194473, - [SMALL_STATE(4954)] = 194542, - [SMALL_STATE(4955)] = 194585, - [SMALL_STATE(4956)] = 194628, - [SMALL_STATE(4957)] = 194671, - [SMALL_STATE(4958)] = 194756, - [SMALL_STATE(4959)] = 194825, - [SMALL_STATE(4960)] = 194874, - [SMALL_STATE(4961)] = 194959, - [SMALL_STATE(4962)] = 195028, - [SMALL_STATE(4963)] = 195077, - [SMALL_STATE(4964)] = 195146, - [SMALL_STATE(4965)] = 195191, - [SMALL_STATE(4966)] = 195234, - [SMALL_STATE(4967)] = 195277, - [SMALL_STATE(4968)] = 195320, - [SMALL_STATE(4969)] = 195363, - [SMALL_STATE(4970)] = 195406, - [SMALL_STATE(4971)] = 195449, - [SMALL_STATE(4972)] = 195492, - [SMALL_STATE(4973)] = 195535, - [SMALL_STATE(4974)] = 195578, - [SMALL_STATE(4975)] = 195647, - [SMALL_STATE(4976)] = 195690, - [SMALL_STATE(4977)] = 195733, - [SMALL_STATE(4978)] = 195776, - [SMALL_STATE(4979)] = 195819, - [SMALL_STATE(4980)] = 195862, - [SMALL_STATE(4981)] = 195905, - [SMALL_STATE(4982)] = 195974, - [SMALL_STATE(4983)] = 196017, - [SMALL_STATE(4984)] = 196060, - [SMALL_STATE(4985)] = 196129, - [SMALL_STATE(4986)] = 196214, - [SMALL_STATE(4987)] = 196299, - [SMALL_STATE(4988)] = 196342, - [SMALL_STATE(4989)] = 196411, - [SMALL_STATE(4990)] = 196480, - [SMALL_STATE(4991)] = 196565, - [SMALL_STATE(4992)] = 196650, - [SMALL_STATE(4993)] = 196719, - [SMALL_STATE(4994)] = 196762, - [SMALL_STATE(4995)] = 196831, - [SMALL_STATE(4996)] = 196900, - [SMALL_STATE(4997)] = 196978, - [SMALL_STATE(4998)] = 197046, - [SMALL_STATE(4999)] = 197114, - [SMALL_STATE(5000)] = 197192, - [SMALL_STATE(5001)] = 197278, - [SMALL_STATE(5002)] = 197362, - [SMALL_STATE(5003)] = 197414, - [SMALL_STATE(5004)] = 197466, - [SMALL_STATE(5005)] = 197534, - [SMALL_STATE(5006)] = 197602, - [SMALL_STATE(5007)] = 197680, - [SMALL_STATE(5008)] = 197748, - [SMALL_STATE(5009)] = 197826, - [SMALL_STATE(5010)] = 197910, - [SMALL_STATE(5011)] = 197978, - [SMALL_STATE(5012)] = 198055, - [SMALL_STATE(5013)] = 198132, - [SMALL_STATE(5014)] = 198209, - [SMALL_STATE(5015)] = 198286, - [SMALL_STATE(5016)] = 198339, - [SMALL_STATE(5017)] = 198406, - [SMALL_STATE(5018)] = 198473, - [SMALL_STATE(5019)] = 198520, - [SMALL_STATE(5020)] = 198603, - [SMALL_STATE(5021)] = 198660, - [SMALL_STATE(5022)] = 198707, - [SMALL_STATE(5023)] = 198790, - [SMALL_STATE(5024)] = 198857, - [SMALL_STATE(5025)] = 198924, - [SMALL_STATE(5026)] = 198971, - [SMALL_STATE(5027)] = 199018, - [SMALL_STATE(5028)] = 199101, - [SMALL_STATE(5029)] = 199150, - [SMALL_STATE(5030)] = 199227, - [SMALL_STATE(5031)] = 199304, - [SMALL_STATE(5032)] = 199387, - [SMALL_STATE(5033)] = 199434, - [SMALL_STATE(5034)] = 199487, - [SMALL_STATE(5035)] = 199570, - [SMALL_STATE(5036)] = 199617, - [SMALL_STATE(5037)] = 199700, - [SMALL_STATE(5038)] = 199767, - [SMALL_STATE(5039)] = 199850, - [SMALL_STATE(5040)] = 199905, - [SMALL_STATE(5041)] = 199960, - [SMALL_STATE(5042)] = 200007, - [SMALL_STATE(5043)] = 200062, - [SMALL_STATE(5044)] = 200139, - [SMALL_STATE(5045)] = 200186, - [SMALL_STATE(5046)] = 200263, - [SMALL_STATE(5047)] = 200320, - [SMALL_STATE(5048)] = 200375, - [SMALL_STATE(5049)] = 200442, - [SMALL_STATE(5050)] = 200489, - [SMALL_STATE(5051)] = 200566, - [SMALL_STATE(5052)] = 200613, - [SMALL_STATE(5053)] = 200690, - [SMALL_STATE(5054)] = 200767, - [SMALL_STATE(5055)] = 200814, - [SMALL_STATE(5056)] = 200861, - [SMALL_STATE(5057)] = 200918, - [SMALL_STATE(5058)] = 200965, - [SMALL_STATE(5059)] = 201008, - [SMALL_STATE(5060)] = 201085, - [SMALL_STATE(5061)] = 201126, - [SMALL_STATE(5062)] = 201209, - [SMALL_STATE(5063)] = 201291, - [SMALL_STATE(5064)] = 201367, - [SMALL_STATE(5065)] = 201443, - [SMALL_STATE(5066)] = 201519, - [SMALL_STATE(5067)] = 201595, - [SMALL_STATE(5068)] = 201635, - [SMALL_STATE(5069)] = 201717, - [SMALL_STATE(5070)] = 201799, - [SMALL_STATE(5071)] = 201839, - [SMALL_STATE(5072)] = 201915, - [SMALL_STATE(5073)] = 201955, - [SMALL_STATE(5074)] = 202031, - [SMALL_STATE(5075)] = 202107, - [SMALL_STATE(5076)] = 202147, - [SMALL_STATE(5077)] = 202223, - [SMALL_STATE(5078)] = 202305, - [SMALL_STATE(5079)] = 202345, - [SMALL_STATE(5080)] = 202385, - [SMALL_STATE(5081)] = 202425, - [SMALL_STATE(5082)] = 202465, - [SMALL_STATE(5083)] = 202505, - [SMALL_STATE(5084)] = 202587, - [SMALL_STATE(5085)] = 202663, - [SMALL_STATE(5086)] = 202703, - [SMALL_STATE(5087)] = 202779, - [SMALL_STATE(5088)] = 202819, - [SMALL_STATE(5089)] = 202901, - [SMALL_STATE(5090)] = 202941, - [SMALL_STATE(5091)] = 203017, - [SMALL_STATE(5092)] = 203057, - [SMALL_STATE(5093)] = 203097, - [SMALL_STATE(5094)] = 203179, - [SMALL_STATE(5095)] = 203219, - [SMALL_STATE(5096)] = 203259, - [SMALL_STATE(5097)] = 203299, - [SMALL_STATE(5098)] = 203381, - [SMALL_STATE(5099)] = 203421, - [SMALL_STATE(5100)] = 203503, - [SMALL_STATE(5101)] = 203543, - [SMALL_STATE(5102)] = 203583, - [SMALL_STATE(5103)] = 203665, - [SMALL_STATE(5104)] = 203747, - [SMALL_STATE(5105)] = 203829, - [SMALL_STATE(5106)] = 203905, - [SMALL_STATE(5107)] = 203987, - [SMALL_STATE(5108)] = 204069, - [SMALL_STATE(5109)] = 204109, - [SMALL_STATE(5110)] = 204149, - [SMALL_STATE(5111)] = 204215, - [SMALL_STATE(5112)] = 204297, - [SMALL_STATE(5113)] = 204337, - [SMALL_STATE(5114)] = 204419, - [SMALL_STATE(5115)] = 204501, - [SMALL_STATE(5116)] = 204541, - [SMALL_STATE(5117)] = 204581, - [SMALL_STATE(5118)] = 204647, - [SMALL_STATE(5119)] = 204723, - [SMALL_STATE(5120)] = 204789, - [SMALL_STATE(5121)] = 204865, - [SMALL_STATE(5122)] = 204931, - [SMALL_STATE(5123)] = 205007, - [SMALL_STATE(5124)] = 205083, - [SMALL_STATE(5125)] = 205159, - [SMALL_STATE(5126)] = 205199, - [SMALL_STATE(5127)] = 205275, - [SMALL_STATE(5128)] = 205315, - [SMALL_STATE(5129)] = 205391, - [SMALL_STATE(5130)] = 205431, - [SMALL_STATE(5131)] = 205513, - [SMALL_STATE(5132)] = 205553, - [SMALL_STATE(5133)] = 205629, - [SMALL_STATE(5134)] = 205711, - [SMALL_STATE(5135)] = 205787, - [SMALL_STATE(5136)] = 205869, - [SMALL_STATE(5137)] = 205919, - [SMALL_STATE(5138)] = 205959, - [SMALL_STATE(5139)] = 206041, - [SMALL_STATE(5140)] = 206117, - [SMALL_STATE(5141)] = 206193, - [SMALL_STATE(5142)] = 206275, - [SMALL_STATE(5143)] = 206315, - [SMALL_STATE(5144)] = 206355, - [SMALL_STATE(5145)] = 206395, - [SMALL_STATE(5146)] = 206461, - [SMALL_STATE(5147)] = 206501, - [SMALL_STATE(5148)] = 206567, - [SMALL_STATE(5149)] = 206607, - [SMALL_STATE(5150)] = 206647, - [SMALL_STATE(5151)] = 206723, - [SMALL_STATE(5152)] = 206763, - [SMALL_STATE(5153)] = 206803, - [SMALL_STATE(5154)] = 206843, - [SMALL_STATE(5155)] = 206883, - [SMALL_STATE(5156)] = 206965, - [SMALL_STATE(5157)] = 207046, - [SMALL_STATE(5158)] = 207127, - [SMALL_STATE(5159)] = 207208, - [SMALL_STATE(5160)] = 207289, - [SMALL_STATE(5161)] = 207370, - [SMALL_STATE(5162)] = 207451, - [SMALL_STATE(5163)] = 207532, - [SMALL_STATE(5164)] = 207613, - [SMALL_STATE(5165)] = 207694, - [SMALL_STATE(5166)] = 207775, - [SMALL_STATE(5167)] = 207856, - [SMALL_STATE(5168)] = 207937, - [SMALL_STATE(5169)] = 208018, - [SMALL_STATE(5170)] = 208099, - [SMALL_STATE(5171)] = 208180, - [SMALL_STATE(5172)] = 208261, - [SMALL_STATE(5173)] = 208342, - [SMALL_STATE(5174)] = 208423, - [SMALL_STATE(5175)] = 208504, - [SMALL_STATE(5176)] = 208585, - [SMALL_STATE(5177)] = 208666, - [SMALL_STATE(5178)] = 208747, - [SMALL_STATE(5179)] = 208828, - [SMALL_STATE(5180)] = 208909, - [SMALL_STATE(5181)] = 208990, - [SMALL_STATE(5182)] = 209071, - [SMALL_STATE(5183)] = 209152, - [SMALL_STATE(5184)] = 209233, - [SMALL_STATE(5185)] = 209314, - [SMALL_STATE(5186)] = 209395, - [SMALL_STATE(5187)] = 209476, - [SMALL_STATE(5188)] = 209557, - [SMALL_STATE(5189)] = 209638, - [SMALL_STATE(5190)] = 209719, - [SMALL_STATE(5191)] = 209800, - [SMALL_STATE(5192)] = 209881, - [SMALL_STATE(5193)] = 209962, - [SMALL_STATE(5194)] = 210043, - [SMALL_STATE(5195)] = 210124, - [SMALL_STATE(5196)] = 210205, - [SMALL_STATE(5197)] = 210286, - [SMALL_STATE(5198)] = 210367, - [SMALL_STATE(5199)] = 210448, - [SMALL_STATE(5200)] = 210529, - [SMALL_STATE(5201)] = 210610, - [SMALL_STATE(5202)] = 210691, - [SMALL_STATE(5203)] = 210772, - [SMALL_STATE(5204)] = 210853, - [SMALL_STATE(5205)] = 210934, - [SMALL_STATE(5206)] = 211015, - [SMALL_STATE(5207)] = 211096, - [SMALL_STATE(5208)] = 211177, - [SMALL_STATE(5209)] = 211258, - [SMALL_STATE(5210)] = 211339, - [SMALL_STATE(5211)] = 211420, - [SMALL_STATE(5212)] = 211501, - [SMALL_STATE(5213)] = 211582, - [SMALL_STATE(5214)] = 211663, - [SMALL_STATE(5215)] = 211744, - [SMALL_STATE(5216)] = 211819, - [SMALL_STATE(5217)] = 211894, - [SMALL_STATE(5218)] = 211947, - [SMALL_STATE(5219)] = 212000, - [SMALL_STATE(5220)] = 212075, - [SMALL_STATE(5221)] = 212150, - [SMALL_STATE(5222)] = 212231, - [SMALL_STATE(5223)] = 212312, - [SMALL_STATE(5224)] = 212393, - [SMALL_STATE(5225)] = 212474, - [SMALL_STATE(5226)] = 212555, - [SMALL_STATE(5227)] = 212636, - [SMALL_STATE(5228)] = 212717, - [SMALL_STATE(5229)] = 212798, - [SMALL_STATE(5230)] = 212879, - [SMALL_STATE(5231)] = 212960, - [SMALL_STATE(5232)] = 213041, - [SMALL_STATE(5233)] = 213122, - [SMALL_STATE(5234)] = 213203, - [SMALL_STATE(5235)] = 213284, - [SMALL_STATE(5236)] = 213365, - [SMALL_STATE(5237)] = 213416, - [SMALL_STATE(5238)] = 213497, - [SMALL_STATE(5239)] = 213578, - [SMALL_STATE(5240)] = 213659, - [SMALL_STATE(5241)] = 213740, - [SMALL_STATE(5242)] = 213821, - [SMALL_STATE(5243)] = 213902, - [SMALL_STATE(5244)] = 213983, - [SMALL_STATE(5245)] = 214064, - [SMALL_STATE(5246)] = 214145, - [SMALL_STATE(5247)] = 214226, - [SMALL_STATE(5248)] = 214307, - [SMALL_STATE(5249)] = 214388, - [SMALL_STATE(5250)] = 214469, - [SMALL_STATE(5251)] = 214550, - [SMALL_STATE(5252)] = 214631, - [SMALL_STATE(5253)] = 214712, - [SMALL_STATE(5254)] = 214793, - [SMALL_STATE(5255)] = 214874, - [SMALL_STATE(5256)] = 214955, - [SMALL_STATE(5257)] = 215002, - [SMALL_STATE(5258)] = 215049, - [SMALL_STATE(5259)] = 215130, - [SMALL_STATE(5260)] = 215211, - [SMALL_STATE(5261)] = 215292, - [SMALL_STATE(5262)] = 215368, - [SMALL_STATE(5263)] = 215444, - [SMALL_STATE(5264)] = 215522, - [SMALL_STATE(5265)] = 215600, - [SMALL_STATE(5266)] = 215678, - [SMALL_STATE(5267)] = 215754, - [SMALL_STATE(5268)] = 215830, - [SMALL_STATE(5269)] = 215884, - [SMALL_STATE(5270)] = 215930, - [SMALL_STATE(5271)] = 216008, - [SMALL_STATE(5272)] = 216084, - [SMALL_STATE(5273)] = 216160, - [SMALL_STATE(5274)] = 216238, - [SMALL_STATE(5275)] = 216314, - [SMALL_STATE(5276)] = 216390, - [SMALL_STATE(5277)] = 216466, - [SMALL_STATE(5278)] = 216542, - [SMALL_STATE(5279)] = 216620, - [SMALL_STATE(5280)] = 216698, - [SMALL_STATE(5281)] = 216740, - [SMALL_STATE(5282)] = 216782, - [SMALL_STATE(5283)] = 216824, - [SMALL_STATE(5284)] = 216900, - [SMALL_STATE(5285)] = 216942, - [SMALL_STATE(5286)] = 216984, - [SMALL_STATE(5287)] = 217060, - [SMALL_STATE(5288)] = 217134, - [SMALL_STATE(5289)] = 217210, - [SMALL_STATE(5290)] = 217288, - [SMALL_STATE(5291)] = 217328, - [SMALL_STATE(5292)] = 217370, - [SMALL_STATE(5293)] = 217448, - [SMALL_STATE(5294)] = 217522, - [SMALL_STATE(5295)] = 217596, - [SMALL_STATE(5296)] = 217638, - [SMALL_STATE(5297)] = 217714, - [SMALL_STATE(5298)] = 217756, - [SMALL_STATE(5299)] = 217810, - [SMALL_STATE(5300)] = 217886, - [SMALL_STATE(5301)] = 217962, - [SMALL_STATE(5302)] = 218038, - [SMALL_STATE(5303)] = 218112, - [SMALL_STATE(5304)] = 218186, - [SMALL_STATE(5305)] = 218260, - [SMALL_STATE(5306)] = 218334, - [SMALL_STATE(5307)] = 218410, - [SMALL_STATE(5308)] = 218486, - [SMALL_STATE(5309)] = 218564, - [SMALL_STATE(5310)] = 218638, - [SMALL_STATE(5311)] = 218712, - [SMALL_STATE(5312)] = 218788, - [SMALL_STATE(5313)] = 218862, - [SMALL_STATE(5314)] = 218936, - [SMALL_STATE(5315)] = 219012, - [SMALL_STATE(5316)] = 219086, - [SMALL_STATE(5317)] = 219164, - [SMALL_STATE(5318)] = 219240, - [SMALL_STATE(5319)] = 219282, - [SMALL_STATE(5320)] = 219324, - [SMALL_STATE(5321)] = 219402, - [SMALL_STATE(5322)] = 219476, - [SMALL_STATE(5323)] = 219552, - [SMALL_STATE(5324)] = 219628, - [SMALL_STATE(5325)] = 219706, - [SMALL_STATE(5326)] = 219748, - [SMALL_STATE(5327)] = 219824, - [SMALL_STATE(5328)] = 219900, - [SMALL_STATE(5329)] = 219976, - [SMALL_STATE(5330)] = 220052, - [SMALL_STATE(5331)] = 220128, - [SMALL_STATE(5332)] = 220204, - [SMALL_STATE(5333)] = 220280, - [SMALL_STATE(5334)] = 220356, - [SMALL_STATE(5335)] = 220432, - [SMALL_STATE(5336)] = 220510, - [SMALL_STATE(5337)] = 220588, - [SMALL_STATE(5338)] = 220662, - [SMALL_STATE(5339)] = 220738, - [SMALL_STATE(5340)] = 220812, - [SMALL_STATE(5341)] = 220888, - [SMALL_STATE(5342)] = 220964, - [SMALL_STATE(5343)] = 221042, - [SMALL_STATE(5344)] = 221116, - [SMALL_STATE(5345)] = 221192, - [SMALL_STATE(5346)] = 221268, - [SMALL_STATE(5347)] = 221344, - [SMALL_STATE(5348)] = 221420, - [SMALL_STATE(5349)] = 221462, - [SMALL_STATE(5350)] = 221540, - [SMALL_STATE(5351)] = 221618, - [SMALL_STATE(5352)] = 221685, - [SMALL_STATE(5353)] = 221752, - [SMALL_STATE(5354)] = 221825, - [SMALL_STATE(5355)] = 221898, - [SMALL_STATE(5356)] = 221941, - [SMALL_STATE(5357)] = 222014, - [SMALL_STATE(5358)] = 222087, - [SMALL_STATE(5359)] = 222160, - [SMALL_STATE(5360)] = 222233, - [SMALL_STATE(5361)] = 222300, - [SMALL_STATE(5362)] = 222367, - [SMALL_STATE(5363)] = 222434, - [SMALL_STATE(5364)] = 222501, - [SMALL_STATE(5365)] = 222568, - [SMALL_STATE(5366)] = 222635, - [SMALL_STATE(5367)] = 222702, - [SMALL_STATE(5368)] = 222769, - [SMALL_STATE(5369)] = 222814, - [SMALL_STATE(5370)] = 222881, - [SMALL_STATE(5371)] = 222948, - [SMALL_STATE(5372)] = 223015, - [SMALL_STATE(5373)] = 223088, - [SMALL_STATE(5374)] = 223155, - [SMALL_STATE(5375)] = 223222, - [SMALL_STATE(5376)] = 223289, - [SMALL_STATE(5377)] = 223356, - [SMALL_STATE(5378)] = 223423, - [SMALL_STATE(5379)] = 223490, - [SMALL_STATE(5380)] = 223557, - [SMALL_STATE(5381)] = 223624, - [SMALL_STATE(5382)] = 223669, - [SMALL_STATE(5383)] = 223736, - [SMALL_STATE(5384)] = 223803, - [SMALL_STATE(5385)] = 223876, - [SMALL_STATE(5386)] = 223943, - [SMALL_STATE(5387)] = 224010, - [SMALL_STATE(5388)] = 224077, - [SMALL_STATE(5389)] = 224144, - [SMALL_STATE(5390)] = 224211, - [SMALL_STATE(5391)] = 224278, - [SMALL_STATE(5392)] = 224345, - [SMALL_STATE(5393)] = 224412, - [SMALL_STATE(5394)] = 224485, - [SMALL_STATE(5395)] = 224552, - [SMALL_STATE(5396)] = 224619, - [SMALL_STATE(5397)] = 224686, - [SMALL_STATE(5398)] = 224735, - [SMALL_STATE(5399)] = 224802, - [SMALL_STATE(5400)] = 224869, - [SMALL_STATE(5401)] = 224936, - [SMALL_STATE(5402)] = 225003, - [SMALL_STATE(5403)] = 225070, - [SMALL_STATE(5404)] = 225137, - [SMALL_STATE(5405)] = 225174, - [SMALL_STATE(5406)] = 225211, - [SMALL_STATE(5407)] = 225252, - [SMALL_STATE(5408)] = 225293, - [SMALL_STATE(5409)] = 225366, - [SMALL_STATE(5410)] = 225411, - [SMALL_STATE(5411)] = 225452, - [SMALL_STATE(5412)] = 225493, - [SMALL_STATE(5413)] = 225534, - [SMALL_STATE(5414)] = 225575, - [SMALL_STATE(5415)] = 225620, - [SMALL_STATE(5416)] = 225661, - [SMALL_STATE(5417)] = 225702, - [SMALL_STATE(5418)] = 225743, - [SMALL_STATE(5419)] = 225784, - [SMALL_STATE(5420)] = 225825, - [SMALL_STATE(5421)] = 225866, - [SMALL_STATE(5422)] = 225933, - [SMALL_STATE(5423)] = 226000, - [SMALL_STATE(5424)] = 226067, - [SMALL_STATE(5425)] = 226134, - [SMALL_STATE(5426)] = 226201, - [SMALL_STATE(5427)] = 226250, - [SMALL_STATE(5428)] = 226317, - [SMALL_STATE(5429)] = 226384, - [SMALL_STATE(5430)] = 226450, - [SMALL_STATE(5431)] = 226516, - [SMALL_STATE(5432)] = 226582, - [SMALL_STATE(5433)] = 226648, - [SMALL_STATE(5434)] = 226714, - [SMALL_STATE(5435)] = 226780, - [SMALL_STATE(5436)] = 226846, - [SMALL_STATE(5437)] = 226912, - [SMALL_STATE(5438)] = 226978, - [SMALL_STATE(5439)] = 227044, - [SMALL_STATE(5440)] = 227110, - [SMALL_STATE(5441)] = 227176, - [SMALL_STATE(5442)] = 227222, - [SMALL_STATE(5443)] = 227288, - [SMALL_STATE(5444)] = 227354, - [SMALL_STATE(5445)] = 227420, - [SMALL_STATE(5446)] = 227486, - [SMALL_STATE(5447)] = 227552, - [SMALL_STATE(5448)] = 227618, - [SMALL_STATE(5449)] = 227683, - [SMALL_STATE(5450)] = 227748, - [SMALL_STATE(5451)] = 227787, - [SMALL_STATE(5452)] = 227852, - [SMALL_STATE(5453)] = 227917, - [SMALL_STATE(5454)] = 227960, - [SMALL_STATE(5455)] = 228025, - [SMALL_STATE(5456)] = 228090, - [SMALL_STATE(5457)] = 228155, - [SMALL_STATE(5458)] = 228220, - [SMALL_STATE(5459)] = 228285, - [SMALL_STATE(5460)] = 228326, - [SMALL_STATE(5461)] = 228391, - [SMALL_STATE(5462)] = 228456, - [SMALL_STATE(5463)] = 228521, - [SMALL_STATE(5464)] = 228586, - [SMALL_STATE(5465)] = 228651, - [SMALL_STATE(5466)] = 228716, - [SMALL_STATE(5467)] = 228781, - [SMALL_STATE(5468)] = 228846, - [SMALL_STATE(5469)] = 228911, - [SMALL_STATE(5470)] = 228976, - [SMALL_STATE(5471)] = 229041, - [SMALL_STATE(5472)] = 229106, - [SMALL_STATE(5473)] = 229171, - [SMALL_STATE(5474)] = 229236, - [SMALL_STATE(5475)] = 229301, - [SMALL_STATE(5476)] = 229366, - [SMALL_STATE(5477)] = 229431, - [SMALL_STATE(5478)] = 229496, - [SMALL_STATE(5479)] = 229561, - [SMALL_STATE(5480)] = 229626, - [SMALL_STATE(5481)] = 229691, - [SMALL_STATE(5482)] = 229756, - [SMALL_STATE(5483)] = 229821, - [SMALL_STATE(5484)] = 229886, - [SMALL_STATE(5485)] = 229951, - [SMALL_STATE(5486)] = 230016, - [SMALL_STATE(5487)] = 230081, - [SMALL_STATE(5488)] = 230145, - [SMALL_STATE(5489)] = 230189, - [SMALL_STATE(5490)] = 230247, - [SMALL_STATE(5491)] = 230311, - [SMALL_STATE(5492)] = 230369, - [SMALL_STATE(5493)] = 230427, - [SMALL_STATE(5494)] = 230491, - [SMALL_STATE(5495)] = 230555, - [SMALL_STATE(5496)] = 230619, - [SMALL_STATE(5497)] = 230683, - [SMALL_STATE(5498)] = 230741, - [SMALL_STATE(5499)] = 230804, - [SMALL_STATE(5500)] = 230855, - [SMALL_STATE(5501)] = 230918, - [SMALL_STATE(5502)] = 230981, - [SMALL_STATE(5503)] = 231044, - [SMALL_STATE(5504)] = 231105, - [SMALL_STATE(5505)] = 231166, - [SMALL_STATE(5506)] = 231227, - [SMALL_STATE(5507)] = 231288, - [SMALL_STATE(5508)] = 231351, - [SMALL_STATE(5509)] = 231414, - [SMALL_STATE(5510)] = 231477, - [SMALL_STATE(5511)] = 231540, - [SMALL_STATE(5512)] = 231591, - [SMALL_STATE(5513)] = 231654, - [SMALL_STATE(5514)] = 231717, - [SMALL_STATE(5515)] = 231768, - [SMALL_STATE(5516)] = 231831, - [SMALL_STATE(5517)] = 231894, - [SMALL_STATE(5518)] = 231955, - [SMALL_STATE(5519)] = 232018, - [SMALL_STATE(5520)] = 232081, - [SMALL_STATE(5521)] = 232144, - [SMALL_STATE(5522)] = 232207, - [SMALL_STATE(5523)] = 232270, - [SMALL_STATE(5524)] = 232333, - [SMALL_STATE(5525)] = 232396, - [SMALL_STATE(5526)] = 232457, - [SMALL_STATE(5527)] = 232520, - [SMALL_STATE(5528)] = 232581, - [SMALL_STATE(5529)] = 232622, - [SMALL_STATE(5530)] = 232685, - [SMALL_STATE(5531)] = 232748, - [SMALL_STATE(5532)] = 232811, - [SMALL_STATE(5533)] = 232874, - [SMALL_STATE(5534)] = 232936, - [SMALL_STATE(5535)] = 232986, - [SMALL_STATE(5536)] = 233048, - [SMALL_STATE(5537)] = 233110, - [SMALL_STATE(5538)] = 233172, - [SMALL_STATE(5539)] = 233234, - [SMALL_STATE(5540)] = 233296, - [SMALL_STATE(5541)] = 233358, - [SMALL_STATE(5542)] = 233432, - [SMALL_STATE(5543)] = 233494, - [SMALL_STATE(5544)] = 233548, - [SMALL_STATE(5545)] = 233590, - [SMALL_STATE(5546)] = 233632, - [SMALL_STATE(5547)] = 233694, - [SMALL_STATE(5548)] = 233756, - [SMALL_STATE(5549)] = 233818, - [SMALL_STATE(5550)] = 233880, - [SMALL_STATE(5551)] = 233954, - [SMALL_STATE(5552)] = 234016, - [SMALL_STATE(5553)] = 234090, - [SMALL_STATE(5554)] = 234152, - [SMALL_STATE(5555)] = 234214, - [SMALL_STATE(5556)] = 234273, - [SMALL_STATE(5557)] = 234332, - [SMALL_STATE(5558)] = 234381, - [SMALL_STATE(5559)] = 234440, - [SMALL_STATE(5560)] = 234499, - [SMALL_STATE(5561)] = 234558, - [SMALL_STATE(5562)] = 234617, - [SMALL_STATE(5563)] = 234676, - [SMALL_STATE(5564)] = 234707, - [SMALL_STATE(5565)] = 234766, - [SMALL_STATE(5566)] = 234825, - [SMALL_STATE(5567)] = 234884, - [SMALL_STATE(5568)] = 234943, - [SMALL_STATE(5569)] = 235002, - [SMALL_STATE(5570)] = 235061, - [SMALL_STATE(5571)] = 235120, - [SMALL_STATE(5572)] = 235179, - [SMALL_STATE(5573)] = 235238, - [SMALL_STATE(5574)] = 235297, - [SMALL_STATE(5575)] = 235356, - [SMALL_STATE(5576)] = 235415, - [SMALL_STATE(5577)] = 235474, - [SMALL_STATE(5578)] = 235533, - [SMALL_STATE(5579)] = 235592, - [SMALL_STATE(5580)] = 235644, - [SMALL_STATE(5581)] = 235682, - [SMALL_STATE(5582)] = 235734, - [SMALL_STATE(5583)] = 235782, - [SMALL_STATE(5584)] = 235834, - [SMALL_STATE(5585)] = 235886, - [SMALL_STATE(5586)] = 235938, - [SMALL_STATE(5587)] = 235990, - [SMALL_STATE(5588)] = 236028, - [SMALL_STATE(5589)] = 236080, - [SMALL_STATE(5590)] = 236132, - [SMALL_STATE(5591)] = 236184, - [SMALL_STATE(5592)] = 236236, - [SMALL_STATE(5593)] = 236288, - [SMALL_STATE(5594)] = 236340, - [SMALL_STATE(5595)] = 236392, - [SMALL_STATE(5596)] = 236444, - [SMALL_STATE(5597)] = 236496, - [SMALL_STATE(5598)] = 236534, - [SMALL_STATE(5599)] = 236586, - [SMALL_STATE(5600)] = 236638, - [SMALL_STATE(5601)] = 236708, - [SMALL_STATE(5602)] = 236760, - [SMALL_STATE(5603)] = 236812, - [SMALL_STATE(5604)] = 236864, - [SMALL_STATE(5605)] = 236902, - [SMALL_STATE(5606)] = 236942, - [SMALL_STATE(5607)] = 236994, - [SMALL_STATE(5608)] = 237032, - [SMALL_STATE(5609)] = 237084, - [SMALL_STATE(5610)] = 237136, - [SMALL_STATE(5611)] = 237188, - [SMALL_STATE(5612)] = 237240, - [SMALL_STATE(5613)] = 237292, - [SMALL_STATE(5614)] = 237326, - [SMALL_STATE(5615)] = 237378, - [SMALL_STATE(5616)] = 237412, - [SMALL_STATE(5617)] = 237450, - [SMALL_STATE(5618)] = 237502, - [SMALL_STATE(5619)] = 237540, - [SMALL_STATE(5620)] = 237592, - [SMALL_STATE(5621)] = 237626, - [SMALL_STATE(5622)] = 237666, - [SMALL_STATE(5623)] = 237736, - [SMALL_STATE(5624)] = 237782, - [SMALL_STATE(5625)] = 237820, - [SMALL_STATE(5626)] = 237872, - [SMALL_STATE(5627)] = 237910, - [SMALL_STATE(5628)] = 237962, - [SMALL_STATE(5629)] = 238014, - [SMALL_STATE(5630)] = 238066, - [SMALL_STATE(5631)] = 238104, - [SMALL_STATE(5632)] = 238156, - [SMALL_STATE(5633)] = 238208, - [SMALL_STATE(5634)] = 238260, - [SMALL_STATE(5635)] = 238312, - [SMALL_STATE(5636)] = 238346, - [SMALL_STATE(5637)] = 238398, - [SMALL_STATE(5638)] = 238450, - [SMALL_STATE(5639)] = 238482, - [SMALL_STATE(5640)] = 238534, - [SMALL_STATE(5641)] = 238586, - [SMALL_STATE(5642)] = 238638, - [SMALL_STATE(5643)] = 238672, - [SMALL_STATE(5644)] = 238742, - [SMALL_STATE(5645)] = 238794, - [SMALL_STATE(5646)] = 238846, - [SMALL_STATE(5647)] = 238907, - [SMALL_STATE(5648)] = 238966, - [SMALL_STATE(5649)] = 239025, - [SMALL_STATE(5650)] = 239084, - [SMALL_STATE(5651)] = 239137, - [SMALL_STATE(5652)] = 239196, - [SMALL_STATE(5653)] = 239249, - [SMALL_STATE(5654)] = 239308, - [SMALL_STATE(5655)] = 239367, - [SMALL_STATE(5656)] = 239426, - [SMALL_STATE(5657)] = 239485, - [SMALL_STATE(5658)] = 239544, - [SMALL_STATE(5659)] = 239603, - [SMALL_STATE(5660)] = 239662, - [SMALL_STATE(5661)] = 239721, - [SMALL_STATE(5662)] = 239782, - [SMALL_STATE(5663)] = 239841, - [SMALL_STATE(5664)] = 239894, - [SMALL_STATE(5665)] = 239949, - [SMALL_STATE(5666)] = 240008, - [SMALL_STATE(5667)] = 240067, - [SMALL_STATE(5668)] = 240126, - [SMALL_STATE(5669)] = 240181, - [SMALL_STATE(5670)] = 240242, - [SMALL_STATE(5671)] = 240301, - [SMALL_STATE(5672)] = 240360, - [SMALL_STATE(5673)] = 240419, - [SMALL_STATE(5674)] = 240472, - [SMALL_STATE(5675)] = 240531, - [SMALL_STATE(5676)] = 240590, - [SMALL_STATE(5677)] = 240649, - [SMALL_STATE(5678)] = 240708, - [SMALL_STATE(5679)] = 240767, - [SMALL_STATE(5680)] = 240826, - [SMALL_STATE(5681)] = 240885, - [SMALL_STATE(5682)] = 240944, - [SMALL_STATE(5683)] = 241003, - [SMALL_STATE(5684)] = 241062, - [SMALL_STATE(5685)] = 241121, - [SMALL_STATE(5686)] = 241174, - [SMALL_STATE(5687)] = 241211, - [SMALL_STATE(5688)] = 241270, - [SMALL_STATE(5689)] = 241329, - [SMALL_STATE(5690)] = 241388, - [SMALL_STATE(5691)] = 241447, - [SMALL_STATE(5692)] = 241506, - [SMALL_STATE(5693)] = 241565, - [SMALL_STATE(5694)] = 241610, - [SMALL_STATE(5695)] = 241671, - [SMALL_STATE(5696)] = 241724, - [SMALL_STATE(5697)] = 241783, - [SMALL_STATE(5698)] = 241842, - [SMALL_STATE(5699)] = 241901, - [SMALL_STATE(5700)] = 241960, - [SMALL_STATE(5701)] = 242019, - [SMALL_STATE(5702)] = 242078, - [SMALL_STATE(5703)] = 242137, - [SMALL_STATE(5704)] = 242196, - [SMALL_STATE(5705)] = 242255, - [SMALL_STATE(5706)] = 242314, - [SMALL_STATE(5707)] = 242367, - [SMALL_STATE(5708)] = 242426, - [SMALL_STATE(5709)] = 242485, - [SMALL_STATE(5710)] = 242544, - [SMALL_STATE(5711)] = 242603, - [SMALL_STATE(5712)] = 242662, - [SMALL_STATE(5713)] = 242721, - [SMALL_STATE(5714)] = 242780, - [SMALL_STATE(5715)] = 242833, - [SMALL_STATE(5716)] = 242892, - [SMALL_STATE(5717)] = 242951, - [SMALL_STATE(5718)] = 243010, - [SMALL_STATE(5719)] = 243069, - [SMALL_STATE(5720)] = 243128, - [SMALL_STATE(5721)] = 243187, - [SMALL_STATE(5722)] = 243246, - [SMALL_STATE(5723)] = 243305, - [SMALL_STATE(5724)] = 243364, - [SMALL_STATE(5725)] = 243417, - [SMALL_STATE(5726)] = 243476, - [SMALL_STATE(5727)] = 243529, - [SMALL_STATE(5728)] = 243588, - [SMALL_STATE(5729)] = 243647, - [SMALL_STATE(5730)] = 243680, - [SMALL_STATE(5731)] = 243741, - [SMALL_STATE(5732)] = 243778, - [SMALL_STATE(5733)] = 243807, - [SMALL_STATE(5734)] = 243836, - [SMALL_STATE(5735)] = 243873, - [SMALL_STATE(5736)] = 243932, - [SMALL_STATE(5737)] = 243991, - [SMALL_STATE(5738)] = 244050, - [SMALL_STATE(5739)] = 244109, - [SMALL_STATE(5740)] = 244168, - [SMALL_STATE(5741)] = 244227, - [SMALL_STATE(5742)] = 244258, - [SMALL_STATE(5743)] = 244317, - [SMALL_STATE(5744)] = 244376, - [SMALL_STATE(5745)] = 244435, - [SMALL_STATE(5746)] = 244494, - [SMALL_STATE(5747)] = 244523, - [SMALL_STATE(5748)] = 244584, - [SMALL_STATE(5749)] = 244621, - [SMALL_STATE(5750)] = 244654, - [SMALL_STATE(5751)] = 244713, - [SMALL_STATE(5752)] = 244756, - [SMALL_STATE(5753)] = 244793, - [SMALL_STATE(5754)] = 244846, - [SMALL_STATE(5755)] = 244905, - [SMALL_STATE(5756)] = 244964, - [SMALL_STATE(5757)] = 244993, - [SMALL_STATE(5758)] = 245052, - [SMALL_STATE(5759)] = 245081, - [SMALL_STATE(5760)] = 245112, - [SMALL_STATE(5761)] = 245141, - [SMALL_STATE(5762)] = 245188, - [SMALL_STATE(5763)] = 245217, - [SMALL_STATE(5764)] = 245276, - [SMALL_STATE(5765)] = 245329, - [SMALL_STATE(5766)] = 245384, - [SMALL_STATE(5767)] = 245413, - [SMALL_STATE(5768)] = 245472, - [SMALL_STATE(5769)] = 245509, - [SMALL_STATE(5770)] = 245546, - [SMALL_STATE(5771)] = 245579, - [SMALL_STATE(5772)] = 245616, - [SMALL_STATE(5773)] = 245645, - [SMALL_STATE(5774)] = 245704, - [SMALL_STATE(5775)] = 245733, - [SMALL_STATE(5776)] = 245792, - [SMALL_STATE(5777)] = 245821, - [SMALL_STATE(5778)] = 245874, - [SMALL_STATE(5779)] = 245903, - [SMALL_STATE(5780)] = 245932, - [SMALL_STATE(5781)] = 245961, - [SMALL_STATE(5782)] = 246020, - [SMALL_STATE(5783)] = 246079, - [SMALL_STATE(5784)] = 246138, - [SMALL_STATE(5785)] = 246167, - [SMALL_STATE(5786)] = 246196, - [SMALL_STATE(5787)] = 246257, - [SMALL_STATE(5788)] = 246286, - [SMALL_STATE(5789)] = 246315, - [SMALL_STATE(5790)] = 246374, - [SMALL_STATE(5791)] = 246403, - [SMALL_STATE(5792)] = 246440, - [SMALL_STATE(5793)] = 246469, - [SMALL_STATE(5794)] = 246498, - [SMALL_STATE(5795)] = 246541, - [SMALL_STATE(5796)] = 246570, - [SMALL_STATE(5797)] = 246607, - [SMALL_STATE(5798)] = 246660, - [SMALL_STATE(5799)] = 246719, - [SMALL_STATE(5800)] = 246778, - [SMALL_STATE(5801)] = 246837, - [SMALL_STATE(5802)] = 246900, - [SMALL_STATE(5803)] = 246943, - [SMALL_STATE(5804)] = 246976, - [SMALL_STATE(5805)] = 247016, - [SMALL_STATE(5806)] = 247068, - [SMALL_STATE(5807)] = 247114, - [SMALL_STATE(5808)] = 247160, - [SMALL_STATE(5809)] = 247210, - [SMALL_STATE(5810)] = 247274, - [SMALL_STATE(5811)] = 247318, - [SMALL_STATE(5812)] = 247382, - [SMALL_STATE(5813)] = 247424, - [SMALL_STATE(5814)] = 247464, - [SMALL_STATE(5815)] = 247528, - [SMALL_STATE(5816)] = 247580, - [SMALL_STATE(5817)] = 247644, - [SMALL_STATE(5818)] = 247684, - [SMALL_STATE(5819)] = 247720, - [SMALL_STATE(5820)] = 247760, - [SMALL_STATE(5821)] = 247792, - [SMALL_STATE(5822)] = 247838, - [SMALL_STATE(5823)] = 247874, - [SMALL_STATE(5824)] = 247910, - [SMALL_STATE(5825)] = 247946, - [SMALL_STATE(5826)] = 247982, - [SMALL_STATE(5827)] = 248018, - [SMALL_STATE(5828)] = 248058, - [SMALL_STATE(5829)] = 248110, - [SMALL_STATE(5830)] = 248160, - [SMALL_STATE(5831)] = 248194, - [SMALL_STATE(5832)] = 248246, - [SMALL_STATE(5833)] = 248286, - [SMALL_STATE(5834)] = 248314, - [SMALL_STATE(5835)] = 248364, - [SMALL_STATE(5836)] = 248414, - [SMALL_STATE(5837)] = 248466, - [SMALL_STATE(5838)] = 248506, - [SMALL_STATE(5839)] = 248542, - [SMALL_STATE(5840)] = 248582, - [SMALL_STATE(5841)] = 248622, - [SMALL_STATE(5842)] = 248686, - [SMALL_STATE(5843)] = 248750, - [SMALL_STATE(5844)] = 248790, - [SMALL_STATE(5845)] = 248826, - [SMALL_STATE(5846)] = 248866, - [SMALL_STATE(5847)] = 248902, - [SMALL_STATE(5848)] = 248938, - [SMALL_STATE(5849)] = 248978, - [SMALL_STATE(5850)] = 249014, - [SMALL_STATE(5851)] = 249058, - [SMALL_STATE(5852)] = 249086, - [SMALL_STATE(5853)] = 249114, - [SMALL_STATE(5854)] = 249154, - [SMALL_STATE(5855)] = 249194, - [SMALL_STATE(5856)] = 249234, - [SMALL_STATE(5857)] = 249274, - [SMALL_STATE(5858)] = 249338, - [SMALL_STATE(5859)] = 249390, - [SMALL_STATE(5860)] = 249422, - [SMALL_STATE(5861)] = 249474, - [SMALL_STATE(5862)] = 249514, - [SMALL_STATE(5863)] = 249554, - [SMALL_STATE(5864)] = 249594, - [SMALL_STATE(5865)] = 249634, - [SMALL_STATE(5866)] = 249674, - [SMALL_STATE(5867)] = 249706, - [SMALL_STATE(5868)] = 249734, - [SMALL_STATE(5869)] = 249762, - [SMALL_STATE(5870)] = 249802, - [SMALL_STATE(5871)] = 249842, - [SMALL_STATE(5872)] = 249882, - [SMALL_STATE(5873)] = 249922, - [SMALL_STATE(5874)] = 249962, - [SMALL_STATE(5875)] = 250002, - [SMALL_STATE(5876)] = 250032, - [SMALL_STATE(5877)] = 250072, - [SMALL_STATE(5878)] = 250136, - [SMALL_STATE(5879)] = 250188, - [SMALL_STATE(5880)] = 250240, - [SMALL_STATE(5881)] = 250292, - [SMALL_STATE(5882)] = 250344, - [SMALL_STATE(5883)] = 250384, - [SMALL_STATE(5884)] = 250436, - [SMALL_STATE(5885)] = 250476, - [SMALL_STATE(5886)] = 250522, - [SMALL_STATE(5887)] = 250574, - [SMALL_STATE(5888)] = 250614, - [SMALL_STATE(5889)] = 250646, - [SMALL_STATE(5890)] = 250686, - [SMALL_STATE(5891)] = 250726, - [SMALL_STATE(5892)] = 250778, - [SMALL_STATE(5893)] = 250818, - [SMALL_STATE(5894)] = 250858, - [SMALL_STATE(5895)] = 250908, - [SMALL_STATE(5896)] = 250960, - [SMALL_STATE(5897)] = 250988, - [SMALL_STATE(5898)] = 251038, - [SMALL_STATE(5899)] = 251090, - [SMALL_STATE(5900)] = 251130, - [SMALL_STATE(5901)] = 251170, - [SMALL_STATE(5902)] = 251210, - [SMALL_STATE(5903)] = 251254, - [SMALL_STATE(5904)] = 251294, - [SMALL_STATE(5905)] = 251334, - [SMALL_STATE(5906)] = 251374, - [SMALL_STATE(5907)] = 251414, - [SMALL_STATE(5908)] = 251454, - [SMALL_STATE(5909)] = 251494, - [SMALL_STATE(5910)] = 251534, - [SMALL_STATE(5911)] = 251574, - [SMALL_STATE(5912)] = 251614, - [SMALL_STATE(5913)] = 251654, - [SMALL_STATE(5914)] = 251694, - [SMALL_STATE(5915)] = 251734, - [SMALL_STATE(5916)] = 251774, - [SMALL_STATE(5917)] = 251806, - [SMALL_STATE(5918)] = 251858, - [SMALL_STATE(5919)] = 251908, - [SMALL_STATE(5920)] = 251958, - [SMALL_STATE(5921)] = 252010, - [SMALL_STATE(5922)] = 252050, - [SMALL_STATE(5923)] = 252100, - [SMALL_STATE(5924)] = 252150, - [SMALL_STATE(5925)] = 252190, - [SMALL_STATE(5926)] = 252218, - [SMALL_STATE(5927)] = 252282, - [SMALL_STATE(5928)] = 252346, - [SMALL_STATE(5929)] = 252386, - [SMALL_STATE(5930)] = 252436, - [SMALL_STATE(5931)] = 252488, - [SMALL_STATE(5932)] = 252538, - [SMALL_STATE(5933)] = 252590, - [SMALL_STATE(5934)] = 252630, - [SMALL_STATE(5935)] = 252658, - [SMALL_STATE(5936)] = 252708, - [SMALL_STATE(5937)] = 252758, - [SMALL_STATE(5938)] = 252808, - [SMALL_STATE(5939)] = 252858, - [SMALL_STATE(5940)] = 252908, - [SMALL_STATE(5941)] = 252958, - [SMALL_STATE(5942)] = 252998, - [SMALL_STATE(5943)] = 253026, - [SMALL_STATE(5944)] = 253078, - [SMALL_STATE(5945)] = 253130, - [SMALL_STATE(5946)] = 253170, - [SMALL_STATE(5947)] = 253234, - [SMALL_STATE(5948)] = 253286, - [SMALL_STATE(5949)] = 253326, - [SMALL_STATE(5950)] = 253366, - [SMALL_STATE(5951)] = 253406, - [SMALL_STATE(5952)] = 253470, - [SMALL_STATE(5953)] = 253502, - [SMALL_STATE(5954)] = 253554, - [SMALL_STATE(5955)] = 253594, - [SMALL_STATE(5956)] = 253634, - [SMALL_STATE(5957)] = 253674, - [SMALL_STATE(5958)] = 253702, - [SMALL_STATE(5959)] = 253754, - [SMALL_STATE(5960)] = 253806, - [SMALL_STATE(5961)] = 253854, - [SMALL_STATE(5962)] = 253918, - [SMALL_STATE(5963)] = 253982, - [SMALL_STATE(5964)] = 254034, - [SMALL_STATE(5965)] = 254086, - [SMALL_STATE(5966)] = 254126, - [SMALL_STATE(5967)] = 254176, - [SMALL_STATE(5968)] = 254221, - [SMALL_STATE(5969)] = 254248, - [SMALL_STATE(5970)] = 254305, - [SMALL_STATE(5971)] = 254334, - [SMALL_STATE(5972)] = 254381, - [SMALL_STATE(5973)] = 254408, - [SMALL_STATE(5974)] = 254453, - [SMALL_STATE(5975)] = 254498, - [SMALL_STATE(5976)] = 254543, - [SMALL_STATE(5977)] = 254574, - [SMALL_STATE(5978)] = 254621, - [SMALL_STATE(5979)] = 254670, - [SMALL_STATE(5980)] = 254727, - [SMALL_STATE(5981)] = 254754, - [SMALL_STATE(5982)] = 254793, - [SMALL_STATE(5983)] = 254832, - [SMALL_STATE(5984)] = 254871, - [SMALL_STATE(5985)] = 254910, - [SMALL_STATE(5986)] = 254937, - [SMALL_STATE(5987)] = 254970, - [SMALL_STATE(5988)] = 255017, - [SMALL_STATE(5989)] = 255056, - [SMALL_STATE(5990)] = 255095, - [SMALL_STATE(5991)] = 255134, - [SMALL_STATE(5992)] = 255173, - [SMALL_STATE(5993)] = 255220, - [SMALL_STATE(5994)] = 255265, - [SMALL_STATE(5995)] = 255292, - [SMALL_STATE(5996)] = 255337, - [SMALL_STATE(5997)] = 255364, - [SMALL_STATE(5998)] = 255421, - [SMALL_STATE(5999)] = 255454, - [SMALL_STATE(6000)] = 255501, - [SMALL_STATE(6001)] = 255528, - [SMALL_STATE(6002)] = 255555, - [SMALL_STATE(6003)] = 255582, - [SMALL_STATE(6004)] = 255637, - [SMALL_STATE(6005)] = 255664, - [SMALL_STATE(6006)] = 255709, - [SMALL_STATE(6007)] = 255736, - [SMALL_STATE(6008)] = 255763, - [SMALL_STATE(6009)] = 255790, - [SMALL_STATE(6010)] = 255817, - [SMALL_STATE(6011)] = 255864, - [SMALL_STATE(6012)] = 255921, - [SMALL_STATE(6013)] = 255968, - [SMALL_STATE(6014)] = 255995, - [SMALL_STATE(6015)] = 256024, - [SMALL_STATE(6016)] = 256051, - [SMALL_STATE(6017)] = 256078, - [SMALL_STATE(6018)] = 256105, - [SMALL_STATE(6019)] = 256136, - [SMALL_STATE(6020)] = 256183, - [SMALL_STATE(6021)] = 256220, - [SMALL_STATE(6022)] = 256247, - [SMALL_STATE(6023)] = 256292, - [SMALL_STATE(6024)] = 256337, - [SMALL_STATE(6025)] = 256382, - [SMALL_STATE(6026)] = 256439, - [SMALL_STATE(6027)] = 256484, - [SMALL_STATE(6028)] = 256511, - [SMALL_STATE(6029)] = 256558, - [SMALL_STATE(6030)] = 256615, - [SMALL_STATE(6031)] = 256662, - [SMALL_STATE(6032)] = 256689, - [SMALL_STATE(6033)] = 256716, - [SMALL_STATE(6034)] = 256751, - [SMALL_STATE(6035)] = 256784, - [SMALL_STATE(6036)] = 256811, - [SMALL_STATE(6037)] = 256856, - [SMALL_STATE(6038)] = 256889, - [SMALL_STATE(6039)] = 256932, - [SMALL_STATE(6040)] = 256965, - [SMALL_STATE(6041)] = 257014, - [SMALL_STATE(6042)] = 257057, - [SMALL_STATE(6043)] = 257084, - [SMALL_STATE(6044)] = 257111, - [SMALL_STATE(6045)] = 257158, - [SMALL_STATE(6046)] = 257205, - [SMALL_STATE(6047)] = 257232, - [SMALL_STATE(6048)] = 257259, - [SMALL_STATE(6049)] = 257306, - [SMALL_STATE(6050)] = 257353, - [SMALL_STATE(6051)] = 257398, - [SMALL_STATE(6052)] = 257445, - [SMALL_STATE(6053)] = 257488, - [SMALL_STATE(6054)] = 257533, - [SMALL_STATE(6055)] = 257560, - [SMALL_STATE(6056)] = 257587, - [SMALL_STATE(6057)] = 257644, - [SMALL_STATE(6058)] = 257691, - [SMALL_STATE(6059)] = 257730, - [SMALL_STATE(6060)] = 257757, - [SMALL_STATE(6061)] = 257798, - [SMALL_STATE(6062)] = 257825, - [SMALL_STATE(6063)] = 257872, - [SMALL_STATE(6064)] = 257917, - [SMALL_STATE(6065)] = 257971, - [SMALL_STATE(6066)] = 258025, - [SMALL_STATE(6067)] = 258053, - [SMALL_STATE(6068)] = 258101, - [SMALL_STATE(6069)] = 258137, - [SMALL_STATE(6070)] = 258171, - [SMALL_STATE(6071)] = 258197, - [SMALL_STATE(6072)] = 258251, - [SMALL_STATE(6073)] = 258277, - [SMALL_STATE(6074)] = 258311, - [SMALL_STATE(6075)] = 258365, - [SMALL_STATE(6076)] = 258417, - [SMALL_STATE(6077)] = 258443, - [SMALL_STATE(6078)] = 258485, - [SMALL_STATE(6079)] = 258537, - [SMALL_STATE(6080)] = 258563, - [SMALL_STATE(6081)] = 258593, - [SMALL_STATE(6082)] = 258627, - [SMALL_STATE(6083)] = 258661, - [SMALL_STATE(6084)] = 258697, - [SMALL_STATE(6085)] = 258731, - [SMALL_STATE(6086)] = 258783, - [SMALL_STATE(6087)] = 258813, - [SMALL_STATE(6088)] = 258847, - [SMALL_STATE(6089)] = 258883, - [SMALL_STATE(6090)] = 258931, - [SMALL_STATE(6091)] = 258969, - [SMALL_STATE(6092)] = 258995, - [SMALL_STATE(6093)] = 259033, - [SMALL_STATE(6094)] = 259087, - [SMALL_STATE(6095)] = 259121, - [SMALL_STATE(6096)] = 259155, - [SMALL_STATE(6097)] = 259209, - [SMALL_STATE(6098)] = 259263, - [SMALL_STATE(6099)] = 259289, - [SMALL_STATE(6100)] = 259319, - [SMALL_STATE(6101)] = 259373, - [SMALL_STATE(6102)] = 259411, - [SMALL_STATE(6103)] = 259441, - [SMALL_STATE(6104)] = 259467, - [SMALL_STATE(6105)] = 259493, - [SMALL_STATE(6106)] = 259519, - [SMALL_STATE(6107)] = 259557, - [SMALL_STATE(6108)] = 259583, - [SMALL_STATE(6109)] = 259621, - [SMALL_STATE(6110)] = 259659, - [SMALL_STATE(6111)] = 259685, - [SMALL_STATE(6112)] = 259723, - [SMALL_STATE(6113)] = 259749, - [SMALL_STATE(6114)] = 259787, - [SMALL_STATE(6115)] = 259813, - [SMALL_STATE(6116)] = 259839, - [SMALL_STATE(6117)] = 259875, - [SMALL_STATE(6118)] = 259927, - [SMALL_STATE(6119)] = 259963, - [SMALL_STATE(6120)] = 259989, - [SMALL_STATE(6121)] = 260023, - [SMALL_STATE(6122)] = 260075, - [SMALL_STATE(6123)] = 260123, - [SMALL_STATE(6124)] = 260171, - [SMALL_STATE(6125)] = 260197, - [SMALL_STATE(6126)] = 260223, - [SMALL_STATE(6127)] = 260249, - [SMALL_STATE(6128)] = 260283, - [SMALL_STATE(6129)] = 260309, - [SMALL_STATE(6130)] = 260335, - [SMALL_STATE(6131)] = 260361, - [SMALL_STATE(6132)] = 260392, - [SMALL_STATE(6133)] = 260433, - [SMALL_STATE(6134)] = 260470, - [SMALL_STATE(6135)] = 260505, - [SMALL_STATE(6136)] = 260536, - [SMALL_STATE(6137)] = 260577, - [SMALL_STATE(6138)] = 260608, - [SMALL_STATE(6139)] = 260651, - [SMALL_STATE(6140)] = 260694, - [SMALL_STATE(6141)] = 260737, - [SMALL_STATE(6142)] = 260772, - [SMALL_STATE(6143)] = 260809, - [SMALL_STATE(6144)] = 260846, - [SMALL_STATE(6145)] = 260875, - [SMALL_STATE(6146)] = 260922, - [SMALL_STATE(6147)] = 260955, - [SMALL_STATE(6148)] = 260990, - [SMALL_STATE(6149)] = 261031, - [SMALL_STATE(6150)] = 261068, - [SMALL_STATE(6151)] = 261111, - [SMALL_STATE(6152)] = 261138, - [SMALL_STATE(6153)] = 261163, - [SMALL_STATE(6154)] = 261198, - [SMALL_STATE(6155)] = 261233, - [SMALL_STATE(6156)] = 261262, - [SMALL_STATE(6157)] = 261305, - [SMALL_STATE(6158)] = 261342, - [SMALL_STATE(6159)] = 261379, - [SMALL_STATE(6160)] = 261420, - [SMALL_STATE(6161)] = 261457, - [SMALL_STATE(6162)] = 261494, - [SMALL_STATE(6163)] = 261531, - [SMALL_STATE(6164)] = 261568, - [SMALL_STATE(6165)] = 261605, - [SMALL_STATE(6166)] = 261642, - [SMALL_STATE(6167)] = 261679, - [SMALL_STATE(6168)] = 261716, - [SMALL_STATE(6169)] = 261753, - [SMALL_STATE(6170)] = 261784, - [SMALL_STATE(6171)] = 261827, - [SMALL_STATE(6172)] = 261868, - [SMALL_STATE(6173)] = 261905, - [SMALL_STATE(6174)] = 261941, - [SMALL_STATE(6175)] = 261973, - [SMALL_STATE(6176)] = 262005, - [SMALL_STATE(6177)] = 262029, - [SMALL_STATE(6178)] = 262061, - [SMALL_STATE(6179)] = 262097, - [SMALL_STATE(6180)] = 262121, - [SMALL_STATE(6181)] = 262153, - [SMALL_STATE(6182)] = 262193, - [SMALL_STATE(6183)] = 262229, - [SMALL_STATE(6184)] = 262253, - [SMALL_STATE(6185)] = 262285, - [SMALL_STATE(6186)] = 262317, - [SMALL_STATE(6187)] = 262349, - [SMALL_STATE(6188)] = 262373, - [SMALL_STATE(6189)] = 262413, - [SMALL_STATE(6190)] = 262437, - [SMALL_STATE(6191)] = 262473, - [SMALL_STATE(6192)] = 262513, - [SMALL_STATE(6193)] = 262537, - [SMALL_STATE(6194)] = 262569, - [SMALL_STATE(6195)] = 262605, - [SMALL_STATE(6196)] = 262645, - [SMALL_STATE(6197)] = 262669, - [SMALL_STATE(6198)] = 262693, - [SMALL_STATE(6199)] = 262717, - [SMALL_STATE(6200)] = 262743, - [SMALL_STATE(6201)] = 262767, - [SMALL_STATE(6202)] = 262791, - [SMALL_STATE(6203)] = 262823, - [SMALL_STATE(6204)] = 262847, - [SMALL_STATE(6205)] = 262887, - [SMALL_STATE(6206)] = 262927, - [SMALL_STATE(6207)] = 262951, - [SMALL_STATE(6208)] = 262975, - [SMALL_STATE(6209)] = 263015, - [SMALL_STATE(6210)] = 263039, - [SMALL_STATE(6211)] = 263063, - [SMALL_STATE(6212)] = 263087, - [SMALL_STATE(6213)] = 263111, - [SMALL_STATE(6214)] = 263135, - [SMALL_STATE(6215)] = 263159, - [SMALL_STATE(6216)] = 263183, - [SMALL_STATE(6217)] = 263215, - [SMALL_STATE(6218)] = 263239, - [SMALL_STATE(6219)] = 263279, - [SMALL_STATE(6220)] = 263319, - [SMALL_STATE(6221)] = 263355, - [SMALL_STATE(6222)] = 263391, - [SMALL_STATE(6223)] = 263427, - [SMALL_STATE(6224)] = 263463, - [SMALL_STATE(6225)] = 263499, - [SMALL_STATE(6226)] = 263539, - [SMALL_STATE(6227)] = 263575, - [SMALL_STATE(6228)] = 263611, - [SMALL_STATE(6229)] = 263635, - [SMALL_STATE(6230)] = 263659, - [SMALL_STATE(6231)] = 263683, - [SMALL_STATE(6232)] = 263715, - [SMALL_STATE(6233)] = 263739, - [SMALL_STATE(6234)] = 263763, - [SMALL_STATE(6235)] = 263795, - [SMALL_STATE(6236)] = 263827, - [SMALL_STATE(6237)] = 263863, - [SMALL_STATE(6238)] = 263903, - [SMALL_STATE(6239)] = 263935, - [SMALL_STATE(6240)] = 263967, - [SMALL_STATE(6241)] = 263991, - [SMALL_STATE(6242)] = 264015, - [SMALL_STATE(6243)] = 264047, - [SMALL_STATE(6244)] = 264079, - [SMALL_STATE(6245)] = 264111, - [SMALL_STATE(6246)] = 264143, - [SMALL_STATE(6247)] = 264167, - [SMALL_STATE(6248)] = 264191, - [SMALL_STATE(6249)] = 264231, - [SMALL_STATE(6250)] = 264255, - [SMALL_STATE(6251)] = 264287, - [SMALL_STATE(6252)] = 264319, - [SMALL_STATE(6253)] = 264351, - [SMALL_STATE(6254)] = 264391, - [SMALL_STATE(6255)] = 264423, - [SMALL_STATE(6256)] = 264465, - [SMALL_STATE(6257)] = 264501, - [SMALL_STATE(6258)] = 264525, - [SMALL_STATE(6259)] = 264557, - [SMALL_STATE(6260)] = 264589, - [SMALL_STATE(6261)] = 264625, - [SMALL_STATE(6262)] = 264649, - [SMALL_STATE(6263)] = 264673, - [SMALL_STATE(6264)] = 264705, - [SMALL_STATE(6265)] = 264745, - [SMALL_STATE(6266)] = 264777, - [SMALL_STATE(6267)] = 264809, - [SMALL_STATE(6268)] = 264855, - [SMALL_STATE(6269)] = 264879, - [SMALL_STATE(6270)] = 264911, - [SMALL_STATE(6271)] = 264935, - [SMALL_STATE(6272)] = 264975, - [SMALL_STATE(6273)] = 265015, - [SMALL_STATE(6274)] = 265039, - [SMALL_STATE(6275)] = 265079, - [SMALL_STATE(6276)] = 265115, - [SMALL_STATE(6277)] = 265143, - [SMALL_STATE(6278)] = 265183, - [SMALL_STATE(6279)] = 265211, - [SMALL_STATE(6280)] = 265251, - [SMALL_STATE(6281)] = 265275, - [SMALL_STATE(6282)] = 265299, - [SMALL_STATE(6283)] = 265323, - [SMALL_STATE(6284)] = 265363, - [SMALL_STATE(6285)] = 265387, - [SMALL_STATE(6286)] = 265411, - [SMALL_STATE(6287)] = 265435, - [SMALL_STATE(6288)] = 265459, - [SMALL_STATE(6289)] = 265483, - [SMALL_STATE(6290)] = 265507, - [SMALL_STATE(6291)] = 265539, - [SMALL_STATE(6292)] = 265571, - [SMALL_STATE(6293)] = 265603, - [SMALL_STATE(6294)] = 265627, - [SMALL_STATE(6295)] = 265659, - [SMALL_STATE(6296)] = 265683, - [SMALL_STATE(6297)] = 265715, - [SMALL_STATE(6298)] = 265744, - [SMALL_STATE(6299)] = 265779, - [SMALL_STATE(6300)] = 265812, - [SMALL_STATE(6301)] = 265845, - [SMALL_STATE(6302)] = 265878, - [SMALL_STATE(6303)] = 265909, - [SMALL_STATE(6304)] = 265948, - [SMALL_STATE(6305)] = 265977, - [SMALL_STATE(6306)] = 266008, - [SMALL_STATE(6307)] = 266037, - [SMALL_STATE(6308)] = 266068, - [SMALL_STATE(6309)] = 266099, - [SMALL_STATE(6310)] = 266130, - [SMALL_STATE(6311)] = 266161, - [SMALL_STATE(6312)] = 266190, - [SMALL_STATE(6313)] = 266221, - [SMALL_STATE(6314)] = 266252, - [SMALL_STATE(6315)] = 266287, - [SMALL_STATE(6316)] = 266322, - [SMALL_STATE(6317)] = 266357, - [SMALL_STATE(6318)] = 266386, - [SMALL_STATE(6319)] = 266421, - [SMALL_STATE(6320)] = 266456, - [SMALL_STATE(6321)] = 266491, - [SMALL_STATE(6322)] = 266524, - [SMALL_STATE(6323)] = 266553, - [SMALL_STATE(6324)] = 266586, - [SMALL_STATE(6325)] = 266615, - [SMALL_STATE(6326)] = 266654, - [SMALL_STATE(6327)] = 266689, - [SMALL_STATE(6328)] = 266724, - [SMALL_STATE(6329)] = 266759, - [SMALL_STATE(6330)] = 266794, - [SMALL_STATE(6331)] = 266829, - [SMALL_STATE(6332)] = 266864, - [SMALL_STATE(6333)] = 266903, - [SMALL_STATE(6334)] = 266938, - [SMALL_STATE(6335)] = 266973, - [SMALL_STATE(6336)] = 267002, - [SMALL_STATE(6337)] = 267037, - [SMALL_STATE(6338)] = 267070, - [SMALL_STATE(6339)] = 267105, - [SMALL_STATE(6340)] = 267138, - [SMALL_STATE(6341)] = 267177, - [SMALL_STATE(6342)] = 267212, - [SMALL_STATE(6343)] = 267247, - [SMALL_STATE(6344)] = 267276, - [SMALL_STATE(6345)] = 267305, - [SMALL_STATE(6346)] = 267338, - [SMALL_STATE(6347)] = 267367, - [SMALL_STATE(6348)] = 267396, - [SMALL_STATE(6349)] = 267431, - [SMALL_STATE(6350)] = 267466, - [SMALL_STATE(6351)] = 267505, - [SMALL_STATE(6352)] = 267538, - [SMALL_STATE(6353)] = 267567, - [SMALL_STATE(6354)] = 267596, - [SMALL_STATE(6355)] = 267629, - [SMALL_STATE(6356)] = 267658, - [SMALL_STATE(6357)] = 267697, - [SMALL_STATE(6358)] = 267730, - [SMALL_STATE(6359)] = 267763, - [SMALL_STATE(6360)] = 267796, - [SMALL_STATE(6361)] = 267825, - [SMALL_STATE(6362)] = 267854, - [SMALL_STATE(6363)] = 267883, - [SMALL_STATE(6364)] = 267912, - [SMALL_STATE(6365)] = 267947, - [SMALL_STATE(6366)] = 267976, - [SMALL_STATE(6367)] = 268005, - [SMALL_STATE(6368)] = 268040, - [SMALL_STATE(6369)] = 268075, - [SMALL_STATE(6370)] = 268104, - [SMALL_STATE(6371)] = 268139, - [SMALL_STATE(6372)] = 268174, - [SMALL_STATE(6373)] = 268209, - [SMALL_STATE(6374)] = 268238, - [SMALL_STATE(6375)] = 268273, - [SMALL_STATE(6376)] = 268308, - [SMALL_STATE(6377)] = 268337, - [SMALL_STATE(6378)] = 268370, - [SMALL_STATE(6379)] = 268409, - [SMALL_STATE(6380)] = 268444, - [SMALL_STATE(6381)] = 268483, - [SMALL_STATE(6382)] = 268516, - [SMALL_STATE(6383)] = 268551, - [SMALL_STATE(6384)] = 268590, - [SMALL_STATE(6385)] = 268623, - [SMALL_STATE(6386)] = 268650, - [SMALL_STATE(6387)] = 268684, - [SMALL_STATE(6388)] = 268724, - [SMALL_STATE(6389)] = 268764, - [SMALL_STATE(6390)] = 268802, - [SMALL_STATE(6391)] = 268842, - [SMALL_STATE(6392)] = 268880, - [SMALL_STATE(6393)] = 268920, - [SMALL_STATE(6394)] = 268962, - [SMALL_STATE(6395)] = 269002, - [SMALL_STATE(6396)] = 269042, - [SMALL_STATE(6397)] = 269080, - [SMALL_STATE(6398)] = 269102, - [SMALL_STATE(6399)] = 269140, - [SMALL_STATE(6400)] = 269182, - [SMALL_STATE(6401)] = 269220, - [SMALL_STATE(6402)] = 269260, - [SMALL_STATE(6403)] = 269298, - [SMALL_STATE(6404)] = 269332, - [SMALL_STATE(6405)] = 269364, - [SMALL_STATE(6406)] = 269404, - [SMALL_STATE(6407)] = 269442, - [SMALL_STATE(6408)] = 269476, - [SMALL_STATE(6409)] = 269506, - [SMALL_STATE(6410)] = 269536, - [SMALL_STATE(6411)] = 269570, - [SMALL_STATE(6412)] = 269596, - [SMALL_STATE(6413)] = 269636, - [SMALL_STATE(6414)] = 269676, - [SMALL_STATE(6415)] = 269698, - [SMALL_STATE(6416)] = 269722, - [SMALL_STATE(6417)] = 269762, - [SMALL_STATE(6418)] = 269800, - [SMALL_STATE(6419)] = 269838, - [SMALL_STATE(6420)] = 269876, - [SMALL_STATE(6421)] = 269906, - [SMALL_STATE(6422)] = 269928, - [SMALL_STATE(6423)] = 269958, - [SMALL_STATE(6424)] = 269996, - [SMALL_STATE(6425)] = 270026, - [SMALL_STATE(6426)] = 270066, - [SMALL_STATE(6427)] = 270106, - [SMALL_STATE(6428)] = 270140, - [SMALL_STATE(6429)] = 270170, - [SMALL_STATE(6430)] = 270210, - [SMALL_STATE(6431)] = 270240, - [SMALL_STATE(6432)] = 270278, - [SMALL_STATE(6433)] = 270316, - [SMALL_STATE(6434)] = 270358, - [SMALL_STATE(6435)] = 270388, - [SMALL_STATE(6436)] = 270418, - [SMALL_STATE(6437)] = 270448, - [SMALL_STATE(6438)] = 270482, - [SMALL_STATE(6439)] = 270512, - [SMALL_STATE(6440)] = 270542, - [SMALL_STATE(6441)] = 270572, - [SMALL_STATE(6442)] = 270610, - [SMALL_STATE(6443)] = 270632, - [SMALL_STATE(6444)] = 270656, - [SMALL_STATE(6445)] = 270696, - [SMALL_STATE(6446)] = 270738, - [SMALL_STATE(6447)] = 270778, - [SMALL_STATE(6448)] = 270808, - [SMALL_STATE(6449)] = 270834, - [SMALL_STATE(6450)] = 270872, - [SMALL_STATE(6451)] = 270902, - [SMALL_STATE(6452)] = 270942, - [SMALL_STATE(6453)] = 270982, - [SMALL_STATE(6454)] = 271020, - [SMALL_STATE(6455)] = 271052, - [SMALL_STATE(6456)] = 271086, - [SMALL_STATE(6457)] = 271118, - [SMALL_STATE(6458)] = 271150, - [SMALL_STATE(6459)] = 271192, - [SMALL_STATE(6460)] = 271224, - [SMALL_STATE(6461)] = 271256, - [SMALL_STATE(6462)] = 271288, - [SMALL_STATE(6463)] = 271320, - [SMALL_STATE(6464)] = 271360, - [SMALL_STATE(6465)] = 271394, - [SMALL_STATE(6466)] = 271432, - [SMALL_STATE(6467)] = 271464, - [SMALL_STATE(6468)] = 271496, - [SMALL_STATE(6469)] = 271530, - [SMALL_STATE(6470)] = 271568, - [SMALL_STATE(6471)] = 271600, - [SMALL_STATE(6472)] = 271630, - [SMALL_STATE(6473)] = 271670, - [SMALL_STATE(6474)] = 271704, - [SMALL_STATE(6475)] = 271734, - [SMALL_STATE(6476)] = 271774, - [SMALL_STATE(6477)] = 271796, - [SMALL_STATE(6478)] = 271828, - [SMALL_STATE(6479)] = 271862, - [SMALL_STATE(6480)] = 271900, - [SMALL_STATE(6481)] = 271934, - [SMALL_STATE(6482)] = 271966, - [SMALL_STATE(6483)] = 272006, - [SMALL_STATE(6484)] = 272040, - [SMALL_STATE(6485)] = 272070, - [SMALL_STATE(6486)] = 272097, - [SMALL_STATE(6487)] = 272130, - [SMALL_STATE(6488)] = 272167, - [SMALL_STATE(6489)] = 272202, - [SMALL_STATE(6490)] = 272235, - [SMALL_STATE(6491)] = 272268, - [SMALL_STATE(6492)] = 272307, - [SMALL_STATE(6493)] = 272342, - [SMALL_STATE(6494)] = 272375, - [SMALL_STATE(6495)] = 272408, - [SMALL_STATE(6496)] = 272441, - [SMALL_STATE(6497)] = 272480, - [SMALL_STATE(6498)] = 272513, - [SMALL_STATE(6499)] = 272546, - [SMALL_STATE(6500)] = 272579, - [SMALL_STATE(6501)] = 272608, - [SMALL_STATE(6502)] = 272637, - [SMALL_STATE(6503)] = 272666, - [SMALL_STATE(6504)] = 272695, - [SMALL_STATE(6505)] = 272724, - [SMALL_STATE(6506)] = 272753, - [SMALL_STATE(6507)] = 272782, - [SMALL_STATE(6508)] = 272811, - [SMALL_STATE(6509)] = 272844, - [SMALL_STATE(6510)] = 272877, - [SMALL_STATE(6511)] = 272912, - [SMALL_STATE(6512)] = 272949, - [SMALL_STATE(6513)] = 272974, - [SMALL_STATE(6514)] = 273011, - [SMALL_STATE(6515)] = 273044, - [SMALL_STATE(6516)] = 273077, - [SMALL_STATE(6517)] = 273104, - [SMALL_STATE(6518)] = 273137, - [SMALL_STATE(6519)] = 273174, - [SMALL_STATE(6520)] = 273201, - [SMALL_STATE(6521)] = 273234, - [SMALL_STATE(6522)] = 273273, - [SMALL_STATE(6523)] = 273306, - [SMALL_STATE(6524)] = 273339, - [SMALL_STATE(6525)] = 273372, - [SMALL_STATE(6526)] = 273405, - [SMALL_STATE(6527)] = 273438, - [SMALL_STATE(6528)] = 273471, - [SMALL_STATE(6529)] = 273504, - [SMALL_STATE(6530)] = 273531, - [SMALL_STATE(6531)] = 273558, - [SMALL_STATE(6532)] = 273585, - [SMALL_STATE(6533)] = 273618, - [SMALL_STATE(6534)] = 273657, - [SMALL_STATE(6535)] = 273690, - [SMALL_STATE(6536)] = 273717, - [SMALL_STATE(6537)] = 273752, - [SMALL_STATE(6538)] = 273785, - [SMALL_STATE(6539)] = 273820, - [SMALL_STATE(6540)] = 273855, - [SMALL_STATE(6541)] = 273888, - [SMALL_STATE(6542)] = 273915, - [SMALL_STATE(6543)] = 273950, - [SMALL_STATE(6544)] = 273975, - [SMALL_STATE(6545)] = 274008, - [SMALL_STATE(6546)] = 274033, - [SMALL_STATE(6547)] = 274058, - [SMALL_STATE(6548)] = 274093, - [SMALL_STATE(6549)] = 274128, - [SMALL_STATE(6550)] = 274163, - [SMALL_STATE(6551)] = 274196, - [SMALL_STATE(6552)] = 274231, - [SMALL_STATE(6553)] = 274270, - [SMALL_STATE(6554)] = 274303, - [SMALL_STATE(6555)] = 274330, - [SMALL_STATE(6556)] = 274365, - [SMALL_STATE(6557)] = 274398, - [SMALL_STATE(6558)] = 274431, - [SMALL_STATE(6559)] = 274458, - [SMALL_STATE(6560)] = 274483, - [SMALL_STATE(6561)] = 274516, - [SMALL_STATE(6562)] = 274549, - [SMALL_STATE(6563)] = 274569, - [SMALL_STATE(6564)] = 274605, - [SMALL_STATE(6565)] = 274641, - [SMALL_STATE(6566)] = 274667, - [SMALL_STATE(6567)] = 274697, - [SMALL_STATE(6568)] = 274733, - [SMALL_STATE(6569)] = 274759, - [SMALL_STATE(6570)] = 274783, - [SMALL_STATE(6571)] = 274809, - [SMALL_STATE(6572)] = 274835, - [SMALL_STATE(6573)] = 274855, - [SMALL_STATE(6574)] = 274885, - [SMALL_STATE(6575)] = 274911, - [SMALL_STATE(6576)] = 274947, - [SMALL_STATE(6577)] = 274983, - [SMALL_STATE(6578)] = 275003, - [SMALL_STATE(6579)] = 275039, - [SMALL_STATE(6580)] = 275075, - [SMALL_STATE(6581)] = 275101, - [SMALL_STATE(6582)] = 275137, - [SMALL_STATE(6583)] = 275173, - [SMALL_STATE(6584)] = 275209, - [SMALL_STATE(6585)] = 275237, - [SMALL_STATE(6586)] = 275259, - [SMALL_STATE(6587)] = 275289, - [SMALL_STATE(6588)] = 275317, - [SMALL_STATE(6589)] = 275353, - [SMALL_STATE(6590)] = 275389, - [SMALL_STATE(6591)] = 275409, - [SMALL_STATE(6592)] = 275429, - [SMALL_STATE(6593)] = 275449, - [SMALL_STATE(6594)] = 275469, - [SMALL_STATE(6595)] = 275505, - [SMALL_STATE(6596)] = 275533, - [SMALL_STATE(6597)] = 275563, - [SMALL_STATE(6598)] = 275599, - [SMALL_STATE(6599)] = 275619, - [SMALL_STATE(6600)] = 275649, - [SMALL_STATE(6601)] = 275679, - [SMALL_STATE(6602)] = 275709, - [SMALL_STATE(6603)] = 275737, - [SMALL_STATE(6604)] = 275765, - [SMALL_STATE(6605)] = 275801, - [SMALL_STATE(6606)] = 275829, - [SMALL_STATE(6607)] = 275855, - [SMALL_STATE(6608)] = 275885, - [SMALL_STATE(6609)] = 275921, - [SMALL_STATE(6610)] = 275941, - [SMALL_STATE(6611)] = 275971, - [SMALL_STATE(6612)] = 275991, - [SMALL_STATE(6613)] = 276021, - [SMALL_STATE(6614)] = 276051, - [SMALL_STATE(6615)] = 276087, - [SMALL_STATE(6616)] = 276113, - [SMALL_STATE(6617)] = 276141, - [SMALL_STATE(6618)] = 276177, - [SMALL_STATE(6619)] = 276213, - [SMALL_STATE(6620)] = 276243, - [SMALL_STATE(6621)] = 276265, - [SMALL_STATE(6622)] = 276301, - [SMALL_STATE(6623)] = 276321, - [SMALL_STATE(6624)] = 276349, - [SMALL_STATE(6625)] = 276378, - [SMALL_STATE(6626)] = 276407, - [SMALL_STATE(6627)] = 276442, - [SMALL_STATE(6628)] = 276467, - [SMALL_STATE(6629)] = 276498, - [SMALL_STATE(6630)] = 276523, - [SMALL_STATE(6631)] = 276548, - [SMALL_STATE(6632)] = 276573, - [SMALL_STATE(6633)] = 276604, - [SMALL_STATE(6634)] = 276639, - [SMALL_STATE(6635)] = 276670, - [SMALL_STATE(6636)] = 276705, - [SMALL_STATE(6637)] = 276730, - [SMALL_STATE(6638)] = 276761, - [SMALL_STATE(6639)] = 276778, - [SMALL_STATE(6640)] = 276805, - [SMALL_STATE(6641)] = 276836, - [SMALL_STATE(6642)] = 276861, - [SMALL_STATE(6643)] = 276886, - [SMALL_STATE(6644)] = 276919, - [SMALL_STATE(6645)] = 276938, - [SMALL_STATE(6646)] = 276971, - [SMALL_STATE(6647)] = 277002, - [SMALL_STATE(6648)] = 277033, - [SMALL_STATE(6649)] = 277068, - [SMALL_STATE(6650)] = 277099, - [SMALL_STATE(6651)] = 277124, - [SMALL_STATE(6652)] = 277149, - [SMALL_STATE(6653)] = 277180, - [SMALL_STATE(6654)] = 277197, - [SMALL_STATE(6655)] = 277228, - [SMALL_STATE(6656)] = 277263, - [SMALL_STATE(6657)] = 277290, - [SMALL_STATE(6658)] = 277321, - [SMALL_STATE(6659)] = 277356, - [SMALL_STATE(6660)] = 277383, - [SMALL_STATE(6661)] = 277414, - [SMALL_STATE(6662)] = 277441, - [SMALL_STATE(6663)] = 277472, - [SMALL_STATE(6664)] = 277501, - [SMALL_STATE(6665)] = 277528, - [SMALL_STATE(6666)] = 277559, - [SMALL_STATE(6667)] = 277586, - [SMALL_STATE(6668)] = 277615, - [SMALL_STATE(6669)] = 277646, - [SMALL_STATE(6670)] = 277673, - [SMALL_STATE(6671)] = 277692, - [SMALL_STATE(6672)] = 277721, - [SMALL_STATE(6673)] = 277752, - [SMALL_STATE(6674)] = 277781, - [SMALL_STATE(6675)] = 277816, - [SMALL_STATE(6676)] = 277841, - [SMALL_STATE(6677)] = 277868, - [SMALL_STATE(6678)] = 277899, - [SMALL_STATE(6679)] = 277926, - [SMALL_STATE(6680)] = 277953, - [SMALL_STATE(6681)] = 277980, - [SMALL_STATE(6682)] = 278007, - [SMALL_STATE(6683)] = 278024, - [SMALL_STATE(6684)] = 278055, - [SMALL_STATE(6685)] = 278084, - [SMALL_STATE(6686)] = 278115, - [SMALL_STATE(6687)] = 278146, - [SMALL_STATE(6688)] = 278181, - [SMALL_STATE(6689)] = 278216, - [SMALL_STATE(6690)] = 278235, - [SMALL_STATE(6691)] = 278264, - [SMALL_STATE(6692)] = 278293, - [SMALL_STATE(6693)] = 278328, - [SMALL_STATE(6694)] = 278357, - [SMALL_STATE(6695)] = 278388, - [SMALL_STATE(6696)] = 278413, - [SMALL_STATE(6697)] = 278440, - [SMALL_STATE(6698)] = 278471, - [SMALL_STATE(6699)] = 278500, - [SMALL_STATE(6700)] = 278525, - [SMALL_STATE(6701)] = 278552, - [SMALL_STATE(6702)] = 278569, - [SMALL_STATE(6703)] = 278600, - [SMALL_STATE(6704)] = 278635, - [SMALL_STATE(6705)] = 278662, - [SMALL_STATE(6706)] = 278685, - [SMALL_STATE(6707)] = 278718, - [SMALL_STATE(6708)] = 278751, - [SMALL_STATE(6709)] = 278782, - [SMALL_STATE(6710)] = 278813, - [SMALL_STATE(6711)] = 278842, - [SMALL_STATE(6712)] = 278877, - [SMALL_STATE(6713)] = 278908, - [SMALL_STATE(6714)] = 278933, - [SMALL_STATE(6715)] = 278960, - [SMALL_STATE(6716)] = 278989, - [SMALL_STATE(6717)] = 279016, - [SMALL_STATE(6718)] = 279043, - [SMALL_STATE(6719)] = 279070, - [SMALL_STATE(6720)] = 279087, - [SMALL_STATE(6721)] = 279114, - [SMALL_STATE(6722)] = 279133, - [SMALL_STATE(6723)] = 279162, - [SMALL_STATE(6724)] = 279181, - [SMALL_STATE(6725)] = 279216, - [SMALL_STATE(6726)] = 279247, - [SMALL_STATE(6727)] = 279274, - [SMALL_STATE(6728)] = 279301, - [SMALL_STATE(6729)] = 279336, - [SMALL_STATE(6730)] = 279355, - [SMALL_STATE(6731)] = 279380, - [SMALL_STATE(6732)] = 279407, - [SMALL_STATE(6733)] = 279428, - [SMALL_STATE(6734)] = 279461, - [SMALL_STATE(6735)] = 279492, - [SMALL_STATE(6736)] = 279511, - [SMALL_STATE(6737)] = 279536, - [SMALL_STATE(6738)] = 279561, - [SMALL_STATE(6739)] = 279588, - [SMALL_STATE(6740)] = 279615, - [SMALL_STATE(6741)] = 279642, - [SMALL_STATE(6742)] = 279664, - [SMALL_STATE(6743)] = 279688, - [SMALL_STATE(6744)] = 279710, - [SMALL_STATE(6745)] = 279732, - [SMALL_STATE(6746)] = 279756, - [SMALL_STATE(6747)] = 279782, - [SMALL_STATE(6748)] = 279806, - [SMALL_STATE(6749)] = 279830, - [SMALL_STATE(6750)] = 279852, - [SMALL_STATE(6751)] = 279876, - [SMALL_STATE(6752)] = 279900, - [SMALL_STATE(6753)] = 279922, - [SMALL_STATE(6754)] = 279946, - [SMALL_STATE(6755)] = 279972, - [SMALL_STATE(6756)] = 279996, - [SMALL_STATE(6757)] = 280020, - [SMALL_STATE(6758)] = 280050, - [SMALL_STATE(6759)] = 280074, - [SMALL_STATE(6760)] = 280098, - [SMALL_STATE(6761)] = 280120, - [SMALL_STATE(6762)] = 280144, - [SMALL_STATE(6763)] = 280166, - [SMALL_STATE(6764)] = 280192, - [SMALL_STATE(6765)] = 280214, - [SMALL_STATE(6766)] = 280238, - [SMALL_STATE(6767)] = 280262, - [SMALL_STATE(6768)] = 280286, - [SMALL_STATE(6769)] = 280316, - [SMALL_STATE(6770)] = 280338, - [SMALL_STATE(6771)] = 280366, - [SMALL_STATE(6772)] = 280396, - [SMALL_STATE(6773)] = 280412, - [SMALL_STATE(6774)] = 280436, - [SMALL_STATE(6775)] = 280466, - [SMALL_STATE(6776)] = 280490, - [SMALL_STATE(6777)] = 280512, - [SMALL_STATE(6778)] = 280536, - [SMALL_STATE(6779)] = 280558, - [SMALL_STATE(6780)] = 280580, - [SMALL_STATE(6781)] = 280606, - [SMALL_STATE(6782)] = 280630, - [SMALL_STATE(6783)] = 280662, - [SMALL_STATE(6784)] = 280684, - [SMALL_STATE(6785)] = 280714, - [SMALL_STATE(6786)] = 280738, - [SMALL_STATE(6787)] = 280768, - [SMALL_STATE(6788)] = 280792, - [SMALL_STATE(6789)] = 280816, - [SMALL_STATE(6790)] = 280846, - [SMALL_STATE(6791)] = 280870, - [SMALL_STATE(6792)] = 280897, - [SMALL_STATE(6793)] = 280924, - [SMALL_STATE(6794)] = 280955, - [SMALL_STATE(6795)] = 280982, - [SMALL_STATE(6796)] = 281013, - [SMALL_STATE(6797)] = 281040, - [SMALL_STATE(6798)] = 281067, - [SMALL_STATE(6799)] = 281094, - [SMALL_STATE(6800)] = 281125, - [SMALL_STATE(6801)] = 281152, - [SMALL_STATE(6802)] = 281183, - [SMALL_STATE(6803)] = 281214, - [SMALL_STATE(6804)] = 281245, - [SMALL_STATE(6805)] = 281272, - [SMALL_STATE(6806)] = 281299, - [SMALL_STATE(6807)] = 281326, - [SMALL_STATE(6808)] = 281353, - [SMALL_STATE(6809)] = 281384, - [SMALL_STATE(6810)] = 281415, - [SMALL_STATE(6811)] = 281442, - [SMALL_STATE(6812)] = 281469, - [SMALL_STATE(6813)] = 281496, - [SMALL_STATE(6814)] = 281527, - [SMALL_STATE(6815)] = 281554, - [SMALL_STATE(6816)] = 281585, - [SMALL_STATE(6817)] = 281612, - [SMALL_STATE(6818)] = 281643, - [SMALL_STATE(6819)] = 281674, - [SMALL_STATE(6820)] = 281695, - [SMALL_STATE(6821)] = 281726, - [SMALL_STATE(6822)] = 281749, - [SMALL_STATE(6823)] = 281772, - [SMALL_STATE(6824)] = 281795, - [SMALL_STATE(6825)] = 281818, - [SMALL_STATE(6826)] = 281841, - [SMALL_STATE(6827)] = 281864, - [SMALL_STATE(6828)] = 281895, - [SMALL_STATE(6829)] = 281918, - [SMALL_STATE(6830)] = 281949, - [SMALL_STATE(6831)] = 281980, - [SMALL_STATE(6832)] = 282011, - [SMALL_STATE(6833)] = 282040, - [SMALL_STATE(6834)] = 282071, - [SMALL_STATE(6835)] = 282102, - [SMALL_STATE(6836)] = 282123, - [SMALL_STATE(6837)] = 282152, - [SMALL_STATE(6838)] = 282173, - [SMALL_STATE(6839)] = 282204, - [SMALL_STATE(6840)] = 282235, - [SMALL_STATE(6841)] = 282266, - [SMALL_STATE(6842)] = 282293, - [SMALL_STATE(6843)] = 282324, - [SMALL_STATE(6844)] = 282355, - [SMALL_STATE(6845)] = 282382, - [SMALL_STATE(6846)] = 282413, - [SMALL_STATE(6847)] = 282434, - [SMALL_STATE(6848)] = 282461, - [SMALL_STATE(6849)] = 282492, - [SMALL_STATE(6850)] = 282523, - [SMALL_STATE(6851)] = 282554, - [SMALL_STATE(6852)] = 282585, - [SMALL_STATE(6853)] = 282608, - [SMALL_STATE(6854)] = 282630, - [SMALL_STATE(6855)] = 282656, - [SMALL_STATE(6856)] = 282682, - [SMALL_STATE(6857)] = 282706, - [SMALL_STATE(6858)] = 282726, - [SMALL_STATE(6859)] = 282752, - [SMALL_STATE(6860)] = 282774, - [SMALL_STATE(6861)] = 282800, - [SMALL_STATE(6862)] = 282822, - [SMALL_STATE(6863)] = 282848, - [SMALL_STATE(6864)] = 282870, - [SMALL_STATE(6865)] = 282896, - [SMALL_STATE(6866)] = 282918, - [SMALL_STATE(6867)] = 282942, - [SMALL_STATE(6868)] = 282968, - [SMALL_STATE(6869)] = 282990, - [SMALL_STATE(6870)] = 283014, - [SMALL_STATE(6871)] = 283030, - [SMALL_STATE(6872)] = 283052, - [SMALL_STATE(6873)] = 283074, - [SMALL_STATE(6874)] = 283100, - [SMALL_STATE(6875)] = 283122, - [SMALL_STATE(6876)] = 283146, - [SMALL_STATE(6877)] = 283172, - [SMALL_STATE(6878)] = 283198, - [SMALL_STATE(6879)] = 283220, - [SMALL_STATE(6880)] = 283238, - [SMALL_STATE(6881)] = 283264, - [SMALL_STATE(6882)] = 283286, - [SMALL_STATE(6883)] = 283308, - [SMALL_STATE(6884)] = 283334, - [SMALL_STATE(6885)] = 283356, - [SMALL_STATE(6886)] = 283382, - [SMALL_STATE(6887)] = 283408, - [SMALL_STATE(6888)] = 283434, - [SMALL_STATE(6889)] = 283460, - [SMALL_STATE(6890)] = 283480, - [SMALL_STATE(6891)] = 283506, - [SMALL_STATE(6892)] = 283532, - [SMALL_STATE(6893)] = 283560, - [SMALL_STATE(6894)] = 283586, - [SMALL_STATE(6895)] = 283612, - [SMALL_STATE(6896)] = 283634, - [SMALL_STATE(6897)] = 283656, - [SMALL_STATE(6898)] = 283682, - [SMALL_STATE(6899)] = 283708, - [SMALL_STATE(6900)] = 283734, - [SMALL_STATE(6901)] = 283760, - [SMALL_STATE(6902)] = 283786, - [SMALL_STATE(6903)] = 283808, - [SMALL_STATE(6904)] = 283834, - [SMALL_STATE(6905)] = 283860, - [SMALL_STATE(6906)] = 283886, - [SMALL_STATE(6907)] = 283912, - [SMALL_STATE(6908)] = 283938, - [SMALL_STATE(6909)] = 283960, - [SMALL_STATE(6910)] = 283982, - [SMALL_STATE(6911)] = 284008, - [SMALL_STATE(6912)] = 284030, - [SMALL_STATE(6913)] = 284050, - [SMALL_STATE(6914)] = 284074, - [SMALL_STATE(6915)] = 284100, - [SMALL_STATE(6916)] = 284122, - [SMALL_STATE(6917)] = 284148, - [SMALL_STATE(6918)] = 284174, - [SMALL_STATE(6919)] = 284200, - [SMALL_STATE(6920)] = 284224, - [SMALL_STATE(6921)] = 284250, - [SMALL_STATE(6922)] = 284276, - [SMALL_STATE(6923)] = 284300, - [SMALL_STATE(6924)] = 284326, - [SMALL_STATE(6925)] = 284342, - [SMALL_STATE(6926)] = 284368, - [SMALL_STATE(6927)] = 284390, - [SMALL_STATE(6928)] = 284416, - [SMALL_STATE(6929)] = 284440, - [SMALL_STATE(6930)] = 284466, - [SMALL_STATE(6931)] = 284492, - [SMALL_STATE(6932)] = 284518, - [SMALL_STATE(6933)] = 284544, - [SMALL_STATE(6934)] = 284570, - [SMALL_STATE(6935)] = 284596, - [SMALL_STATE(6936)] = 284622, - [SMALL_STATE(6937)] = 284648, - [SMALL_STATE(6938)] = 284670, - [SMALL_STATE(6939)] = 284687, - [SMALL_STATE(6940)] = 284704, - [SMALL_STATE(6941)] = 284727, - [SMALL_STATE(6942)] = 284748, - [SMALL_STATE(6943)] = 284773, - [SMALL_STATE(6944)] = 284798, - [SMALL_STATE(6945)] = 284821, - [SMALL_STATE(6946)] = 284844, - [SMALL_STATE(6947)] = 284867, - [SMALL_STATE(6948)] = 284890, - [SMALL_STATE(6949)] = 284911, - [SMALL_STATE(6950)] = 284932, - [SMALL_STATE(6951)] = 284949, - [SMALL_STATE(6952)] = 284972, - [SMALL_STATE(6953)] = 284995, - [SMALL_STATE(6954)] = 285016, - [SMALL_STATE(6955)] = 285039, - [SMALL_STATE(6956)] = 285056, - [SMALL_STATE(6957)] = 285079, - [SMALL_STATE(6958)] = 285100, - [SMALL_STATE(6959)] = 285123, - [SMALL_STATE(6960)] = 285144, - [SMALL_STATE(6961)] = 285165, - [SMALL_STATE(6962)] = 285184, - [SMALL_STATE(6963)] = 285203, - [SMALL_STATE(6964)] = 285220, - [SMALL_STATE(6965)] = 285241, - [SMALL_STATE(6966)] = 285260, - [SMALL_STATE(6967)] = 285285, - [SMALL_STATE(6968)] = 285310, - [SMALL_STATE(6969)] = 285327, - [SMALL_STATE(6970)] = 285344, - [SMALL_STATE(6971)] = 285361, - [SMALL_STATE(6972)] = 285378, - [SMALL_STATE(6973)] = 285395, - [SMALL_STATE(6974)] = 285412, - [SMALL_STATE(6975)] = 285429, - [SMALL_STATE(6976)] = 285446, - [SMALL_STATE(6977)] = 285463, - [SMALL_STATE(6978)] = 285486, - [SMALL_STATE(6979)] = 285507, - [SMALL_STATE(6980)] = 285526, - [SMALL_STATE(6981)] = 285551, - [SMALL_STATE(6982)] = 285574, - [SMALL_STATE(6983)] = 285599, - [SMALL_STATE(6984)] = 285622, - [SMALL_STATE(6985)] = 285643, - [SMALL_STATE(6986)] = 285666, - [SMALL_STATE(6987)] = 285689, - [SMALL_STATE(6988)] = 285706, - [SMALL_STATE(6989)] = 285723, - [SMALL_STATE(6990)] = 285742, - [SMALL_STATE(6991)] = 285767, - [SMALL_STATE(6992)] = 285790, - [SMALL_STATE(6993)] = 285807, - [SMALL_STATE(6994)] = 285832, - [SMALL_STATE(6995)] = 285855, - [SMALL_STATE(6996)] = 285872, - [SMALL_STATE(6997)] = 285890, - [SMALL_STATE(6998)] = 285910, - [SMALL_STATE(6999)] = 285930, - [SMALL_STATE(7000)] = 285952, - [SMALL_STATE(7001)] = 285970, - [SMALL_STATE(7002)] = 285988, - [SMALL_STATE(7003)] = 286010, - [SMALL_STATE(7004)] = 286032, - [SMALL_STATE(7005)] = 286052, - [SMALL_STATE(7006)] = 286072, - [SMALL_STATE(7007)] = 286092, - [SMALL_STATE(7008)] = 286112, - [SMALL_STATE(7009)] = 286132, - [SMALL_STATE(7010)] = 286154, - [SMALL_STATE(7011)] = 286168, - [SMALL_STATE(7012)] = 286190, - [SMALL_STATE(7013)] = 286210, - [SMALL_STATE(7014)] = 286224, - [SMALL_STATE(7015)] = 286238, - [SMALL_STATE(7016)] = 286258, - [SMALL_STATE(7017)] = 286272, - [SMALL_STATE(7018)] = 286292, - [SMALL_STATE(7019)] = 286312, - [SMALL_STATE(7020)] = 286332, - [SMALL_STATE(7021)] = 286352, - [SMALL_STATE(7022)] = 286372, - [SMALL_STATE(7023)] = 286392, - [SMALL_STATE(7024)] = 286410, - [SMALL_STATE(7025)] = 286424, - [SMALL_STATE(7026)] = 286438, - [SMALL_STATE(7027)] = 286460, - [SMALL_STATE(7028)] = 286482, - [SMALL_STATE(7029)] = 286502, - [SMALL_STATE(7030)] = 286520, - [SMALL_STATE(7031)] = 286540, - [SMALL_STATE(7032)] = 286554, - [SMALL_STATE(7033)] = 286576, - [SMALL_STATE(7034)] = 286598, - [SMALL_STATE(7035)] = 286616, - [SMALL_STATE(7036)] = 286638, - [SMALL_STATE(7037)] = 286660, - [SMALL_STATE(7038)] = 286680, - [SMALL_STATE(7039)] = 286702, - [SMALL_STATE(7040)] = 286716, - [SMALL_STATE(7041)] = 286736, - [SMALL_STATE(7042)] = 286758, - [SMALL_STATE(7043)] = 286778, - [SMALL_STATE(7044)] = 286798, - [SMALL_STATE(7045)] = 286812, - [SMALL_STATE(7046)] = 286826, - [SMALL_STATE(7047)] = 286840, - [SMALL_STATE(7048)] = 286862, - [SMALL_STATE(7049)] = 286884, - [SMALL_STATE(7050)] = 286906, - [SMALL_STATE(7051)] = 286926, - [SMALL_STATE(7052)] = 286948, - [SMALL_STATE(7053)] = 286968, - [SMALL_STATE(7054)] = 286990, - [SMALL_STATE(7055)] = 287012, - [SMALL_STATE(7056)] = 287032, - [SMALL_STATE(7057)] = 287052, - [SMALL_STATE(7058)] = 287074, - [SMALL_STATE(7059)] = 287096, - [SMALL_STATE(7060)] = 287118, - [SMALL_STATE(7061)] = 287138, - [SMALL_STATE(7062)] = 287152, - [SMALL_STATE(7063)] = 287174, - [SMALL_STATE(7064)] = 287194, - [SMALL_STATE(7065)] = 287208, - [SMALL_STATE(7066)] = 287230, - [SMALL_STATE(7067)] = 287250, - [SMALL_STATE(7068)] = 287264, - [SMALL_STATE(7069)] = 287281, - [SMALL_STATE(7070)] = 287298, - [SMALL_STATE(7071)] = 287315, - [SMALL_STATE(7072)] = 287334, - [SMALL_STATE(7073)] = 287347, - [SMALL_STATE(7074)] = 287364, - [SMALL_STATE(7075)] = 287381, - [SMALL_STATE(7076)] = 287400, - [SMALL_STATE(7077)] = 287419, - [SMALL_STATE(7078)] = 287436, - [SMALL_STATE(7079)] = 287455, - [SMALL_STATE(7080)] = 287472, - [SMALL_STATE(7081)] = 287491, - [SMALL_STATE(7082)] = 287510, - [SMALL_STATE(7083)] = 287525, - [SMALL_STATE(7084)] = 287542, - [SMALL_STATE(7085)] = 287559, - [SMALL_STATE(7086)] = 287576, - [SMALL_STATE(7087)] = 287595, - [SMALL_STATE(7088)] = 287612, - [SMALL_STATE(7089)] = 287631, - [SMALL_STATE(7090)] = 287650, - [SMALL_STATE(7091)] = 287667, - [SMALL_STATE(7092)] = 287684, - [SMALL_STATE(7093)] = 287701, - [SMALL_STATE(7094)] = 287718, - [SMALL_STATE(7095)] = 287737, - [SMALL_STATE(7096)] = 287754, - [SMALL_STATE(7097)] = 287771, - [SMALL_STATE(7098)] = 287788, - [SMALL_STATE(7099)] = 287805, - [SMALL_STATE(7100)] = 287824, - [SMALL_STATE(7101)] = 287839, - [SMALL_STATE(7102)] = 287856, - [SMALL_STATE(7103)] = 287873, - [SMALL_STATE(7104)] = 287892, - [SMALL_STATE(7105)] = 287907, - [SMALL_STATE(7106)] = 287926, - [SMALL_STATE(7107)] = 287937, - [SMALL_STATE(7108)] = 287954, - [SMALL_STATE(7109)] = 287971, - [SMALL_STATE(7110)] = 287988, - [SMALL_STATE(7111)] = 288007, - [SMALL_STATE(7112)] = 288024, - [SMALL_STATE(7113)] = 288039, - [SMALL_STATE(7114)] = 288056, - [SMALL_STATE(7115)] = 288073, - [SMALL_STATE(7116)] = 288090, - [SMALL_STATE(7117)] = 288107, - [SMALL_STATE(7118)] = 288120, - [SMALL_STATE(7119)] = 288137, - [SMALL_STATE(7120)] = 288156, - [SMALL_STATE(7121)] = 288175, - [SMALL_STATE(7122)] = 288192, - [SMALL_STATE(7123)] = 288211, - [SMALL_STATE(7124)] = 288228, - [SMALL_STATE(7125)] = 288245, - [SMALL_STATE(7126)] = 288264, - [SMALL_STATE(7127)] = 288281, - [SMALL_STATE(7128)] = 288300, - [SMALL_STATE(7129)] = 288319, - [SMALL_STATE(7130)] = 288336, - [SMALL_STATE(7131)] = 288355, - [SMALL_STATE(7132)] = 288372, - [SMALL_STATE(7133)] = 288391, - [SMALL_STATE(7134)] = 288410, - [SMALL_STATE(7135)] = 288427, - [SMALL_STATE(7136)] = 288444, - [SMALL_STATE(7137)] = 288463, - [SMALL_STATE(7138)] = 288480, - [SMALL_STATE(7139)] = 288497, - [SMALL_STATE(7140)] = 288514, - [SMALL_STATE(7141)] = 288531, - [SMALL_STATE(7142)] = 288550, - [SMALL_STATE(7143)] = 288567, - [SMALL_STATE(7144)] = 288580, - [SMALL_STATE(7145)] = 288599, - [SMALL_STATE(7146)] = 288616, - [SMALL_STATE(7147)] = 288633, - [SMALL_STATE(7148)] = 288650, - [SMALL_STATE(7149)] = 288666, - [SMALL_STATE(7150)] = 288682, - [SMALL_STATE(7151)] = 288698, - [SMALL_STATE(7152)] = 288712, - [SMALL_STATE(7153)] = 288728, - [SMALL_STATE(7154)] = 288744, - [SMALL_STATE(7155)] = 288760, - [SMALL_STATE(7156)] = 288776, - [SMALL_STATE(7157)] = 288792, - [SMALL_STATE(7158)] = 288806, - [SMALL_STATE(7159)] = 288816, - [SMALL_STATE(7160)] = 288832, - [SMALL_STATE(7161)] = 288848, - [SMALL_STATE(7162)] = 288864, - [SMALL_STATE(7163)] = 288876, - [SMALL_STATE(7164)] = 288892, - [SMALL_STATE(7165)] = 288906, - [SMALL_STATE(7166)] = 288922, - [SMALL_STATE(7167)] = 288938, - [SMALL_STATE(7168)] = 288952, - [SMALL_STATE(7169)] = 288968, - [SMALL_STATE(7170)] = 288984, - [SMALL_STATE(7171)] = 289000, - [SMALL_STATE(7172)] = 289016, - [SMALL_STATE(7173)] = 289032, - [SMALL_STATE(7174)] = 289048, - [SMALL_STATE(7175)] = 289062, - [SMALL_STATE(7176)] = 289076, - [SMALL_STATE(7177)] = 289090, - [SMALL_STATE(7178)] = 289106, - [SMALL_STATE(7179)] = 289122, - [SMALL_STATE(7180)] = 289136, - [SMALL_STATE(7181)] = 289152, - [SMALL_STATE(7182)] = 289166, - [SMALL_STATE(7183)] = 289182, - [SMALL_STATE(7184)] = 289198, - [SMALL_STATE(7185)] = 289214, - [SMALL_STATE(7186)] = 289230, - [SMALL_STATE(7187)] = 289246, - [SMALL_STATE(7188)] = 289262, - [SMALL_STATE(7189)] = 289276, - [SMALL_STATE(7190)] = 289292, - [SMALL_STATE(7191)] = 289308, - [SMALL_STATE(7192)] = 289324, - [SMALL_STATE(7193)] = 289340, - [SMALL_STATE(7194)] = 289356, - [SMALL_STATE(7195)] = 289370, - [SMALL_STATE(7196)] = 289386, - [SMALL_STATE(7197)] = 289402, - [SMALL_STATE(7198)] = 289418, - [SMALL_STATE(7199)] = 289434, - [SMALL_STATE(7200)] = 289450, - [SMALL_STATE(7201)] = 289466, - [SMALL_STATE(7202)] = 289482, - [SMALL_STATE(7203)] = 289498, - [SMALL_STATE(7204)] = 289514, - [SMALL_STATE(7205)] = 289530, - [SMALL_STATE(7206)] = 289544, - [SMALL_STATE(7207)] = 289560, - [SMALL_STATE(7208)] = 289576, - [SMALL_STATE(7209)] = 289592, - [SMALL_STATE(7210)] = 289608, - [SMALL_STATE(7211)] = 289624, - [SMALL_STATE(7212)] = 289640, - [SMALL_STATE(7213)] = 289656, - [SMALL_STATE(7214)] = 289672, - [SMALL_STATE(7215)] = 289688, - [SMALL_STATE(7216)] = 289704, - [SMALL_STATE(7217)] = 289720, - [SMALL_STATE(7218)] = 289736, - [SMALL_STATE(7219)] = 289752, - [SMALL_STATE(7220)] = 289768, - [SMALL_STATE(7221)] = 289784, - [SMALL_STATE(7222)] = 289800, - [SMALL_STATE(7223)] = 289816, - [SMALL_STATE(7224)] = 289832, - [SMALL_STATE(7225)] = 289848, - [SMALL_STATE(7226)] = 289864, - [SMALL_STATE(7227)] = 289880, - [SMALL_STATE(7228)] = 289894, - [SMALL_STATE(7229)] = 289910, - [SMALL_STATE(7230)] = 289926, - [SMALL_STATE(7231)] = 289942, - [SMALL_STATE(7232)] = 289956, - [SMALL_STATE(7233)] = 289972, - [SMALL_STATE(7234)] = 289988, - [SMALL_STATE(7235)] = 290002, - [SMALL_STATE(7236)] = 290018, - [SMALL_STATE(7237)] = 290032, - [SMALL_STATE(7238)] = 290048, - [SMALL_STATE(7239)] = 290064, - [SMALL_STATE(7240)] = 290080, - [SMALL_STATE(7241)] = 290096, - [SMALL_STATE(7242)] = 290112, - [SMALL_STATE(7243)] = 290128, - [SMALL_STATE(7244)] = 290144, - [SMALL_STATE(7245)] = 290160, - [SMALL_STATE(7246)] = 290176, - [SMALL_STATE(7247)] = 290192, - [SMALL_STATE(7248)] = 290206, - [SMALL_STATE(7249)] = 290222, - [SMALL_STATE(7250)] = 290238, - [SMALL_STATE(7251)] = 290254, - [SMALL_STATE(7252)] = 290268, - [SMALL_STATE(7253)] = 290284, - [SMALL_STATE(7254)] = 290298, - [SMALL_STATE(7255)] = 290314, - [SMALL_STATE(7256)] = 290330, - [SMALL_STATE(7257)] = 290346, - [SMALL_STATE(7258)] = 290362, - [SMALL_STATE(7259)] = 290378, - [SMALL_STATE(7260)] = 290394, - [SMALL_STATE(7261)] = 290410, - [SMALL_STATE(7262)] = 290426, - [SMALL_STATE(7263)] = 290442, - [SMALL_STATE(7264)] = 290458, - [SMALL_STATE(7265)] = 290474, - [SMALL_STATE(7266)] = 290490, - [SMALL_STATE(7267)] = 290506, - [SMALL_STATE(7268)] = 290520, - [SMALL_STATE(7269)] = 290534, - [SMALL_STATE(7270)] = 290550, - [SMALL_STATE(7271)] = 290566, - [SMALL_STATE(7272)] = 290582, - [SMALL_STATE(7273)] = 290598, - [SMALL_STATE(7274)] = 290612, - [SMALL_STATE(7275)] = 290628, - [SMALL_STATE(7276)] = 290644, - [SMALL_STATE(7277)] = 290660, - [SMALL_STATE(7278)] = 290674, - [SMALL_STATE(7279)] = 290690, - [SMALL_STATE(7280)] = 290704, - [SMALL_STATE(7281)] = 290720, - [SMALL_STATE(7282)] = 290736, - [SMALL_STATE(7283)] = 290750, - [SMALL_STATE(7284)] = 290766, - [SMALL_STATE(7285)] = 290782, - [SMALL_STATE(7286)] = 290798, - [SMALL_STATE(7287)] = 290812, - [SMALL_STATE(7288)] = 290828, - [SMALL_STATE(7289)] = 290844, - [SMALL_STATE(7290)] = 290860, - [SMALL_STATE(7291)] = 290876, - [SMALL_STATE(7292)] = 290892, - [SMALL_STATE(7293)] = 290906, - [SMALL_STATE(7294)] = 290922, - [SMALL_STATE(7295)] = 290938, - [SMALL_STATE(7296)] = 290954, - [SMALL_STATE(7297)] = 290970, - [SMALL_STATE(7298)] = 290986, - [SMALL_STATE(7299)] = 291002, - [SMALL_STATE(7300)] = 291018, - [SMALL_STATE(7301)] = 291034, - [SMALL_STATE(7302)] = 291050, - [SMALL_STATE(7303)] = 291060, - [SMALL_STATE(7304)] = 291074, - [SMALL_STATE(7305)] = 291090, - [SMALL_STATE(7306)] = 291106, - [SMALL_STATE(7307)] = 291122, - [SMALL_STATE(7308)] = 291136, - [SMALL_STATE(7309)] = 291150, - [SMALL_STATE(7310)] = 291160, - [SMALL_STATE(7311)] = 291172, - [SMALL_STATE(7312)] = 291184, - [SMALL_STATE(7313)] = 291198, - [SMALL_STATE(7314)] = 291214, - [SMALL_STATE(7315)] = 291230, - [SMALL_STATE(7316)] = 291246, - [SMALL_STATE(7317)] = 291262, - [SMALL_STATE(7318)] = 291276, - [SMALL_STATE(7319)] = 291292, - [SMALL_STATE(7320)] = 291306, - [SMALL_STATE(7321)] = 291322, - [SMALL_STATE(7322)] = 291338, - [SMALL_STATE(7323)] = 291352, - [SMALL_STATE(7324)] = 291366, - [SMALL_STATE(7325)] = 291380, - [SMALL_STATE(7326)] = 291396, - [SMALL_STATE(7327)] = 291412, - [SMALL_STATE(7328)] = 291428, - [SMALL_STATE(7329)] = 291444, - [SMALL_STATE(7330)] = 291460, - [SMALL_STATE(7331)] = 291474, - [SMALL_STATE(7332)] = 291488, - [SMALL_STATE(7333)] = 291502, - [SMALL_STATE(7334)] = 291518, - [SMALL_STATE(7335)] = 291532, - [SMALL_STATE(7336)] = 291546, - [SMALL_STATE(7337)] = 291560, - [SMALL_STATE(7338)] = 291574, - [SMALL_STATE(7339)] = 291588, - [SMALL_STATE(7340)] = 291602, - [SMALL_STATE(7341)] = 291616, - [SMALL_STATE(7342)] = 291628, - [SMALL_STATE(7343)] = 291642, - [SMALL_STATE(7344)] = 291656, - [SMALL_STATE(7345)] = 291670, - [SMALL_STATE(7346)] = 291684, - [SMALL_STATE(7347)] = 291698, - [SMALL_STATE(7348)] = 291714, - [SMALL_STATE(7349)] = 291730, - [SMALL_STATE(7350)] = 291744, - [SMALL_STATE(7351)] = 291758, - [SMALL_STATE(7352)] = 291774, - [SMALL_STATE(7353)] = 291788, - [SMALL_STATE(7354)] = 291802, - [SMALL_STATE(7355)] = 291813, - [SMALL_STATE(7356)] = 291824, - [SMALL_STATE(7357)] = 291837, - [SMALL_STATE(7358)] = 291850, - [SMALL_STATE(7359)] = 291863, - [SMALL_STATE(7360)] = 291876, - [SMALL_STATE(7361)] = 291889, - [SMALL_STATE(7362)] = 291902, - [SMALL_STATE(7363)] = 291915, - [SMALL_STATE(7364)] = 291928, - [SMALL_STATE(7365)] = 291941, - [SMALL_STATE(7366)] = 291954, - [SMALL_STATE(7367)] = 291967, - [SMALL_STATE(7368)] = 291980, - [SMALL_STATE(7369)] = 291993, - [SMALL_STATE(7370)] = 292006, - [SMALL_STATE(7371)] = 292019, - [SMALL_STATE(7372)] = 292032, - [SMALL_STATE(7373)] = 292045, - [SMALL_STATE(7374)] = 292058, - [SMALL_STATE(7375)] = 292071, - [SMALL_STATE(7376)] = 292084, - [SMALL_STATE(7377)] = 292097, - [SMALL_STATE(7378)] = 292108, - [SMALL_STATE(7379)] = 292121, - [SMALL_STATE(7380)] = 292130, - [SMALL_STATE(7381)] = 292143, - [SMALL_STATE(7382)] = 292156, - [SMALL_STATE(7383)] = 292169, - [SMALL_STATE(7384)] = 292182, - [SMALL_STATE(7385)] = 292195, - [SMALL_STATE(7386)] = 292206, - [SMALL_STATE(7387)] = 292219, - [SMALL_STATE(7388)] = 292232, - [SMALL_STATE(7389)] = 292245, - [SMALL_STATE(7390)] = 292258, - [SMALL_STATE(7391)] = 292271, - [SMALL_STATE(7392)] = 292284, - [SMALL_STATE(7393)] = 292295, - [SMALL_STATE(7394)] = 292308, - [SMALL_STATE(7395)] = 292321, - [SMALL_STATE(7396)] = 292334, - [SMALL_STATE(7397)] = 292347, - [SMALL_STATE(7398)] = 292360, - [SMALL_STATE(7399)] = 292373, - [SMALL_STATE(7400)] = 292386, - [SMALL_STATE(7401)] = 292399, - [SMALL_STATE(7402)] = 292412, - [SMALL_STATE(7403)] = 292425, - [SMALL_STATE(7404)] = 292438, - [SMALL_STATE(7405)] = 292451, - [SMALL_STATE(7406)] = 292464, - [SMALL_STATE(7407)] = 292473, - [SMALL_STATE(7408)] = 292486, - [SMALL_STATE(7409)] = 292499, - [SMALL_STATE(7410)] = 292512, - [SMALL_STATE(7411)] = 292525, - [SMALL_STATE(7412)] = 292538, - [SMALL_STATE(7413)] = 292551, - [SMALL_STATE(7414)] = 292562, - [SMALL_STATE(7415)] = 292575, - [SMALL_STATE(7416)] = 292588, - [SMALL_STATE(7417)] = 292601, - [SMALL_STATE(7418)] = 292612, - [SMALL_STATE(7419)] = 292625, - [SMALL_STATE(7420)] = 292638, - [SMALL_STATE(7421)] = 292651, - [SMALL_STATE(7422)] = 292664, - [SMALL_STATE(7423)] = 292677, - [SMALL_STATE(7424)] = 292690, - [SMALL_STATE(7425)] = 292703, - [SMALL_STATE(7426)] = 292716, - [SMALL_STATE(7427)] = 292729, - [SMALL_STATE(7428)] = 292742, - [SMALL_STATE(7429)] = 292755, - [SMALL_STATE(7430)] = 292768, - [SMALL_STATE(7431)] = 292781, - [SMALL_STATE(7432)] = 292794, - [SMALL_STATE(7433)] = 292805, - [SMALL_STATE(7434)] = 292818, - [SMALL_STATE(7435)] = 292831, - [SMALL_STATE(7436)] = 292844, - [SMALL_STATE(7437)] = 292857, - [SMALL_STATE(7438)] = 292870, - [SMALL_STATE(7439)] = 292883, - [SMALL_STATE(7440)] = 292896, - [SMALL_STATE(7441)] = 292909, - [SMALL_STATE(7442)] = 292922, - [SMALL_STATE(7443)] = 292935, - [SMALL_STATE(7444)] = 292948, - [SMALL_STATE(7445)] = 292961, - [SMALL_STATE(7446)] = 292974, - [SMALL_STATE(7447)] = 292987, - [SMALL_STATE(7448)] = 293000, - [SMALL_STATE(7449)] = 293009, - [SMALL_STATE(7450)] = 293020, - [SMALL_STATE(7451)] = 293033, - [SMALL_STATE(7452)] = 293046, - [SMALL_STATE(7453)] = 293055, - [SMALL_STATE(7454)] = 293066, - [SMALL_STATE(7455)] = 293079, - [SMALL_STATE(7456)] = 293090, - [SMALL_STATE(7457)] = 293103, - [SMALL_STATE(7458)] = 293114, - [SMALL_STATE(7459)] = 293127, - [SMALL_STATE(7460)] = 293140, - [SMALL_STATE(7461)] = 293153, - [SMALL_STATE(7462)] = 293164, - [SMALL_STATE(7463)] = 293177, - [SMALL_STATE(7464)] = 293190, - [SMALL_STATE(7465)] = 293203, - [SMALL_STATE(7466)] = 293216, - [SMALL_STATE(7467)] = 293229, - [SMALL_STATE(7468)] = 293238, - [SMALL_STATE(7469)] = 293251, - [SMALL_STATE(7470)] = 293262, - [SMALL_STATE(7471)] = 293275, - [SMALL_STATE(7472)] = 293288, - [SMALL_STATE(7473)] = 293301, - [SMALL_STATE(7474)] = 293314, - [SMALL_STATE(7475)] = 293327, - [SMALL_STATE(7476)] = 293340, - [SMALL_STATE(7477)] = 293353, - [SMALL_STATE(7478)] = 293366, - [SMALL_STATE(7479)] = 293379, - [SMALL_STATE(7480)] = 293392, - [SMALL_STATE(7481)] = 293405, - [SMALL_STATE(7482)] = 293418, - [SMALL_STATE(7483)] = 293431, - [SMALL_STATE(7484)] = 293444, - [SMALL_STATE(7485)] = 293457, - [SMALL_STATE(7486)] = 293470, - [SMALL_STATE(7487)] = 293483, - [SMALL_STATE(7488)] = 293496, - [SMALL_STATE(7489)] = 293509, - [SMALL_STATE(7490)] = 293522, - [SMALL_STATE(7491)] = 293535, - [SMALL_STATE(7492)] = 293548, - [SMALL_STATE(7493)] = 293561, - [SMALL_STATE(7494)] = 293574, - [SMALL_STATE(7495)] = 293585, - [SMALL_STATE(7496)] = 293598, - [SMALL_STATE(7497)] = 293611, - [SMALL_STATE(7498)] = 293624, - [SMALL_STATE(7499)] = 293637, - [SMALL_STATE(7500)] = 293648, - [SMALL_STATE(7501)] = 293661, - [SMALL_STATE(7502)] = 293672, - [SMALL_STATE(7503)] = 293685, - [SMALL_STATE(7504)] = 293698, - [SMALL_STATE(7505)] = 293711, - [SMALL_STATE(7506)] = 293724, - [SMALL_STATE(7507)] = 293737, - [SMALL_STATE(7508)] = 293750, - [SMALL_STATE(7509)] = 293763, - [SMALL_STATE(7510)] = 293776, - [SMALL_STATE(7511)] = 293789, - [SMALL_STATE(7512)] = 293802, - [SMALL_STATE(7513)] = 293813, - [SMALL_STATE(7514)] = 293826, - [SMALL_STATE(7515)] = 293839, - [SMALL_STATE(7516)] = 293852, - [SMALL_STATE(7517)] = 293865, - [SMALL_STATE(7518)] = 293878, - [SMALL_STATE(7519)] = 293891, - [SMALL_STATE(7520)] = 293904, - [SMALL_STATE(7521)] = 293917, - [SMALL_STATE(7522)] = 293930, - [SMALL_STATE(7523)] = 293943, - [SMALL_STATE(7524)] = 293956, - [SMALL_STATE(7525)] = 293967, - [SMALL_STATE(7526)] = 293980, - [SMALL_STATE(7527)] = 293991, - [SMALL_STATE(7528)] = 294004, - [SMALL_STATE(7529)] = 294017, - [SMALL_STATE(7530)] = 294030, - [SMALL_STATE(7531)] = 294043, - [SMALL_STATE(7532)] = 294056, - [SMALL_STATE(7533)] = 294069, - [SMALL_STATE(7534)] = 294082, - [SMALL_STATE(7535)] = 294095, - [SMALL_STATE(7536)] = 294108, - [SMALL_STATE(7537)] = 294121, - [SMALL_STATE(7538)] = 294130, - [SMALL_STATE(7539)] = 294143, - [SMALL_STATE(7540)] = 294156, - [SMALL_STATE(7541)] = 294169, - [SMALL_STATE(7542)] = 294182, - [SMALL_STATE(7543)] = 294195, - [SMALL_STATE(7544)] = 294208, - [SMALL_STATE(7545)] = 294221, - [SMALL_STATE(7546)] = 294234, - [SMALL_STATE(7547)] = 294247, - [SMALL_STATE(7548)] = 294260, - [SMALL_STATE(7549)] = 294273, - [SMALL_STATE(7550)] = 294286, - [SMALL_STATE(7551)] = 294299, - [SMALL_STATE(7552)] = 294312, - [SMALL_STATE(7553)] = 294325, - [SMALL_STATE(7554)] = 294336, - [SMALL_STATE(7555)] = 294347, - [SMALL_STATE(7556)] = 294358, - [SMALL_STATE(7557)] = 294371, - [SMALL_STATE(7558)] = 294384, - [SMALL_STATE(7559)] = 294397, - [SMALL_STATE(7560)] = 294410, - [SMALL_STATE(7561)] = 294421, - [SMALL_STATE(7562)] = 294432, - [SMALL_STATE(7563)] = 294445, - [SMALL_STATE(7564)] = 294458, - [SMALL_STATE(7565)] = 294471, - [SMALL_STATE(7566)] = 294482, - [SMALL_STATE(7567)] = 294493, - [SMALL_STATE(7568)] = 294506, - [SMALL_STATE(7569)] = 294519, - [SMALL_STATE(7570)] = 294532, - [SMALL_STATE(7571)] = 294545, - [SMALL_STATE(7572)] = 294558, - [SMALL_STATE(7573)] = 294571, - [SMALL_STATE(7574)] = 294584, - [SMALL_STATE(7575)] = 294597, - [SMALL_STATE(7576)] = 294610, - [SMALL_STATE(7577)] = 294623, - [SMALL_STATE(7578)] = 294636, - [SMALL_STATE(7579)] = 294649, - [SMALL_STATE(7580)] = 294660, - [SMALL_STATE(7581)] = 294673, - [SMALL_STATE(7582)] = 294686, - [SMALL_STATE(7583)] = 294699, - [SMALL_STATE(7584)] = 294712, - [SMALL_STATE(7585)] = 294723, - [SMALL_STATE(7586)] = 294736, - [SMALL_STATE(7587)] = 294749, - [SMALL_STATE(7588)] = 294762, - [SMALL_STATE(7589)] = 294773, - [SMALL_STATE(7590)] = 294784, - [SMALL_STATE(7591)] = 294795, - [SMALL_STATE(7592)] = 294808, - [SMALL_STATE(7593)] = 294821, - [SMALL_STATE(7594)] = 294834, - [SMALL_STATE(7595)] = 294847, - [SMALL_STATE(7596)] = 294860, - [SMALL_STATE(7597)] = 294873, - [SMALL_STATE(7598)] = 294884, - [SMALL_STATE(7599)] = 294897, - [SMALL_STATE(7600)] = 294910, - [SMALL_STATE(7601)] = 294923, - [SMALL_STATE(7602)] = 294936, - [SMALL_STATE(7603)] = 294949, - [SMALL_STATE(7604)] = 294962, - [SMALL_STATE(7605)] = 294973, - [SMALL_STATE(7606)] = 294986, - [SMALL_STATE(7607)] = 294999, - [SMALL_STATE(7608)] = 295010, - [SMALL_STATE(7609)] = 295023, - [SMALL_STATE(7610)] = 295036, - [SMALL_STATE(7611)] = 295049, - [SMALL_STATE(7612)] = 295062, - [SMALL_STATE(7613)] = 295073, - [SMALL_STATE(7614)] = 295086, - [SMALL_STATE(7615)] = 295099, - [SMALL_STATE(7616)] = 295112, - [SMALL_STATE(7617)] = 295125, - [SMALL_STATE(7618)] = 295138, - [SMALL_STATE(7619)] = 295151, - [SMALL_STATE(7620)] = 295164, - [SMALL_STATE(7621)] = 295177, - [SMALL_STATE(7622)] = 295190, - [SMALL_STATE(7623)] = 295203, - [SMALL_STATE(7624)] = 295216, - [SMALL_STATE(7625)] = 295229, - [SMALL_STATE(7626)] = 295242, - [SMALL_STATE(7627)] = 295255, - [SMALL_STATE(7628)] = 295268, - [SMALL_STATE(7629)] = 295281, - [SMALL_STATE(7630)] = 295294, - [SMALL_STATE(7631)] = 295307, - [SMALL_STATE(7632)] = 295320, - [SMALL_STATE(7633)] = 295333, - [SMALL_STATE(7634)] = 295346, - [SMALL_STATE(7635)] = 295359, - [SMALL_STATE(7636)] = 295370, - [SMALL_STATE(7637)] = 295381, - [SMALL_STATE(7638)] = 295394, - [SMALL_STATE(7639)] = 295405, - [SMALL_STATE(7640)] = 295418, - [SMALL_STATE(7641)] = 295431, - [SMALL_STATE(7642)] = 295444, - [SMALL_STATE(7643)] = 295457, - [SMALL_STATE(7644)] = 295466, - [SMALL_STATE(7645)] = 295479, - [SMALL_STATE(7646)] = 295492, - [SMALL_STATE(7647)] = 295505, - [SMALL_STATE(7648)] = 295516, - [SMALL_STATE(7649)] = 295529, - [SMALL_STATE(7650)] = 295542, - [SMALL_STATE(7651)] = 295555, - [SMALL_STATE(7652)] = 295568, - [SMALL_STATE(7653)] = 295581, - [SMALL_STATE(7654)] = 295592, - [SMALL_STATE(7655)] = 295605, - [SMALL_STATE(7656)] = 295618, - [SMALL_STATE(7657)] = 295631, - [SMALL_STATE(7658)] = 295644, - [SMALL_STATE(7659)] = 295655, - [SMALL_STATE(7660)] = 295666, - [SMALL_STATE(7661)] = 295679, - [SMALL_STATE(7662)] = 295690, - [SMALL_STATE(7663)] = 295703, - [SMALL_STATE(7664)] = 295714, - [SMALL_STATE(7665)] = 295723, - [SMALL_STATE(7666)] = 295736, - [SMALL_STATE(7667)] = 295749, - [SMALL_STATE(7668)] = 295762, - [SMALL_STATE(7669)] = 295775, - [SMALL_STATE(7670)] = 295788, - [SMALL_STATE(7671)] = 295799, - [SMALL_STATE(7672)] = 295812, - [SMALL_STATE(7673)] = 295825, - [SMALL_STATE(7674)] = 295838, - [SMALL_STATE(7675)] = 295851, - [SMALL_STATE(7676)] = 295864, - [SMALL_STATE(7677)] = 295877, - [SMALL_STATE(7678)] = 295890, - [SMALL_STATE(7679)] = 295903, - [SMALL_STATE(7680)] = 295916, - [SMALL_STATE(7681)] = 295925, - [SMALL_STATE(7682)] = 295938, - [SMALL_STATE(7683)] = 295949, - [SMALL_STATE(7684)] = 295962, - [SMALL_STATE(7685)] = 295973, - [SMALL_STATE(7686)] = 295986, - [SMALL_STATE(7687)] = 295999, - [SMALL_STATE(7688)] = 296012, - [SMALL_STATE(7689)] = 296025, - [SMALL_STATE(7690)] = 296038, - [SMALL_STATE(7691)] = 296051, - [SMALL_STATE(7692)] = 296064, - [SMALL_STATE(7693)] = 296077, - [SMALL_STATE(7694)] = 296090, - [SMALL_STATE(7695)] = 296103, - [SMALL_STATE(7696)] = 296116, - [SMALL_STATE(7697)] = 296129, - [SMALL_STATE(7698)] = 296142, - [SMALL_STATE(7699)] = 296155, - [SMALL_STATE(7700)] = 296168, - [SMALL_STATE(7701)] = 296181, - [SMALL_STATE(7702)] = 296194, - [SMALL_STATE(7703)] = 296207, - [SMALL_STATE(7704)] = 296218, - [SMALL_STATE(7705)] = 296231, - [SMALL_STATE(7706)] = 296240, - [SMALL_STATE(7707)] = 296253, - [SMALL_STATE(7708)] = 296266, - [SMALL_STATE(7709)] = 296275, - [SMALL_STATE(7710)] = 296288, - [SMALL_STATE(7711)] = 296301, - [SMALL_STATE(7712)] = 296314, - [SMALL_STATE(7713)] = 296327, - [SMALL_STATE(7714)] = 296340, - [SMALL_STATE(7715)] = 296353, - [SMALL_STATE(7716)] = 296366, - [SMALL_STATE(7717)] = 296379, - [SMALL_STATE(7718)] = 296392, - [SMALL_STATE(7719)] = 296403, - [SMALL_STATE(7720)] = 296416, - [SMALL_STATE(7721)] = 296429, - [SMALL_STATE(7722)] = 296442, - [SMALL_STATE(7723)] = 296455, - [SMALL_STATE(7724)] = 296468, - [SMALL_STATE(7725)] = 296481, - [SMALL_STATE(7726)] = 296494, - [SMALL_STATE(7727)] = 296507, - [SMALL_STATE(7728)] = 296520, - [SMALL_STATE(7729)] = 296533, - [SMALL_STATE(7730)] = 296546, - [SMALL_STATE(7731)] = 296559, - [SMALL_STATE(7732)] = 296572, - [SMALL_STATE(7733)] = 296585, - [SMALL_STATE(7734)] = 296598, - [SMALL_STATE(7735)] = 296611, - [SMALL_STATE(7736)] = 296624, - [SMALL_STATE(7737)] = 296637, - [SMALL_STATE(7738)] = 296648, - [SMALL_STATE(7739)] = 296661, - [SMALL_STATE(7740)] = 296674, - [SMALL_STATE(7741)] = 296685, - [SMALL_STATE(7742)] = 296698, - [SMALL_STATE(7743)] = 296711, - [SMALL_STATE(7744)] = 296724, - [SMALL_STATE(7745)] = 296737, - [SMALL_STATE(7746)] = 296750, - [SMALL_STATE(7747)] = 296763, - [SMALL_STATE(7748)] = 296776, - [SMALL_STATE(7749)] = 296789, - [SMALL_STATE(7750)] = 296802, - [SMALL_STATE(7751)] = 296815, - [SMALL_STATE(7752)] = 296826, - [SMALL_STATE(7753)] = 296839, - [SMALL_STATE(7754)] = 296852, - [SMALL_STATE(7755)] = 296865, - [SMALL_STATE(7756)] = 296878, - [SMALL_STATE(7757)] = 296891, - [SMALL_STATE(7758)] = 296904, - [SMALL_STATE(7759)] = 296915, - [SMALL_STATE(7760)] = 296928, - [SMALL_STATE(7761)] = 296941, - [SMALL_STATE(7762)] = 296954, - [SMALL_STATE(7763)] = 296967, - [SMALL_STATE(7764)] = 296976, - [SMALL_STATE(7765)] = 296989, - [SMALL_STATE(7766)] = 296998, - [SMALL_STATE(7767)] = 297011, - [SMALL_STATE(7768)] = 297022, - [SMALL_STATE(7769)] = 297035, - [SMALL_STATE(7770)] = 297048, - [SMALL_STATE(7771)] = 297061, - [SMALL_STATE(7772)] = 297074, - [SMALL_STATE(7773)] = 297087, - [SMALL_STATE(7774)] = 297100, - [SMALL_STATE(7775)] = 297113, - [SMALL_STATE(7776)] = 297126, - [SMALL_STATE(7777)] = 297139, - [SMALL_STATE(7778)] = 297152, - [SMALL_STATE(7779)] = 297163, - [SMALL_STATE(7780)] = 297174, - [SMALL_STATE(7781)] = 297187, - [SMALL_STATE(7782)] = 297200, - [SMALL_STATE(7783)] = 297213, - [SMALL_STATE(7784)] = 297226, - [SMALL_STATE(7785)] = 297239, - [SMALL_STATE(7786)] = 297248, - [SMALL_STATE(7787)] = 297257, - [SMALL_STATE(7788)] = 297270, - [SMALL_STATE(7789)] = 297283, - [SMALL_STATE(7790)] = 297296, - [SMALL_STATE(7791)] = 297309, - [SMALL_STATE(7792)] = 297322, - [SMALL_STATE(7793)] = 297335, - [SMALL_STATE(7794)] = 297348, - [SMALL_STATE(7795)] = 297357, - [SMALL_STATE(7796)] = 297370, - [SMALL_STATE(7797)] = 297379, - [SMALL_STATE(7798)] = 297392, - [SMALL_STATE(7799)] = 297405, - [SMALL_STATE(7800)] = 297418, - [SMALL_STATE(7801)] = 297431, - [SMALL_STATE(7802)] = 297444, - [SMALL_STATE(7803)] = 297455, - [SMALL_STATE(7804)] = 297465, - [SMALL_STATE(7805)] = 297475, - [SMALL_STATE(7806)] = 297485, - [SMALL_STATE(7807)] = 297495, - [SMALL_STATE(7808)] = 297505, - [SMALL_STATE(7809)] = 297515, - [SMALL_STATE(7810)] = 297523, - [SMALL_STATE(7811)] = 297533, - [SMALL_STATE(7812)] = 297543, - [SMALL_STATE(7813)] = 297553, - [SMALL_STATE(7814)] = 297563, - [SMALL_STATE(7815)] = 297573, - [SMALL_STATE(7816)] = 297583, - [SMALL_STATE(7817)] = 297593, - [SMALL_STATE(7818)] = 297603, - [SMALL_STATE(7819)] = 297613, - [SMALL_STATE(7820)] = 297623, - [SMALL_STATE(7821)] = 297631, - [SMALL_STATE(7822)] = 297641, - [SMALL_STATE(7823)] = 297649, - [SMALL_STATE(7824)] = 297659, - [SMALL_STATE(7825)] = 297669, - [SMALL_STATE(7826)] = 297679, - [SMALL_STATE(7827)] = 297689, - [SMALL_STATE(7828)] = 297699, - [SMALL_STATE(7829)] = 297709, - [SMALL_STATE(7830)] = 297719, - [SMALL_STATE(7831)] = 297729, - [SMALL_STATE(7832)] = 297739, - [SMALL_STATE(7833)] = 297749, - [SMALL_STATE(7834)] = 297757, - [SMALL_STATE(7835)] = 297767, - [SMALL_STATE(7836)] = 297775, - [SMALL_STATE(7837)] = 297785, - [SMALL_STATE(7838)] = 297795, - [SMALL_STATE(7839)] = 297805, - [SMALL_STATE(7840)] = 297815, - [SMALL_STATE(7841)] = 297825, - [SMALL_STATE(7842)] = 297833, - [SMALL_STATE(7843)] = 297843, - [SMALL_STATE(7844)] = 297853, - [SMALL_STATE(7845)] = 297863, - [SMALL_STATE(7846)] = 297873, - [SMALL_STATE(7847)] = 297883, - [SMALL_STATE(7848)] = 297893, - [SMALL_STATE(7849)] = 297903, - [SMALL_STATE(7850)] = 297913, - [SMALL_STATE(7851)] = 297921, - [SMALL_STATE(7852)] = 297931, - [SMALL_STATE(7853)] = 297941, - [SMALL_STATE(7854)] = 297951, - [SMALL_STATE(7855)] = 297959, - [SMALL_STATE(7856)] = 297969, - [SMALL_STATE(7857)] = 297979, - [SMALL_STATE(7858)] = 297989, - [SMALL_STATE(7859)] = 297999, - [SMALL_STATE(7860)] = 298009, - [SMALL_STATE(7861)] = 298019, - [SMALL_STATE(7862)] = 298029, - [SMALL_STATE(7863)] = 298037, - [SMALL_STATE(7864)] = 298047, - [SMALL_STATE(7865)] = 298057, - [SMALL_STATE(7866)] = 298067, - [SMALL_STATE(7867)] = 298077, - [SMALL_STATE(7868)] = 298087, - [SMALL_STATE(7869)] = 298097, - [SMALL_STATE(7870)] = 298107, - [SMALL_STATE(7871)] = 298115, - [SMALL_STATE(7872)] = 298125, - [SMALL_STATE(7873)] = 298135, - [SMALL_STATE(7874)] = 298145, - [SMALL_STATE(7875)] = 298153, - [SMALL_STATE(7876)] = 298163, - [SMALL_STATE(7877)] = 298173, - [SMALL_STATE(7878)] = 298183, - [SMALL_STATE(7879)] = 298193, - [SMALL_STATE(7880)] = 298203, - [SMALL_STATE(7881)] = 298213, - [SMALL_STATE(7882)] = 298223, - [SMALL_STATE(7883)] = 298231, - [SMALL_STATE(7884)] = 298241, - [SMALL_STATE(7885)] = 298249, - [SMALL_STATE(7886)] = 298259, - [SMALL_STATE(7887)] = 298269, - [SMALL_STATE(7888)] = 298279, - [SMALL_STATE(7889)] = 298289, - [SMALL_STATE(7890)] = 298299, - [SMALL_STATE(7891)] = 298309, - [SMALL_STATE(7892)] = 298319, - [SMALL_STATE(7893)] = 298329, - [SMALL_STATE(7894)] = 298339, - [SMALL_STATE(7895)] = 298349, - [SMALL_STATE(7896)] = 298359, - [SMALL_STATE(7897)] = 298369, - [SMALL_STATE(7898)] = 298379, - [SMALL_STATE(7899)] = 298389, - [SMALL_STATE(7900)] = 298399, - [SMALL_STATE(7901)] = 298409, - [SMALL_STATE(7902)] = 298419, - [SMALL_STATE(7903)] = 298429, - [SMALL_STATE(7904)] = 298439, - [SMALL_STATE(7905)] = 298449, - [SMALL_STATE(7906)] = 298459, - [SMALL_STATE(7907)] = 298469, - [SMALL_STATE(7908)] = 298479, - [SMALL_STATE(7909)] = 298489, - [SMALL_STATE(7910)] = 298499, - [SMALL_STATE(7911)] = 298509, - [SMALL_STATE(7912)] = 298519, - [SMALL_STATE(7913)] = 298529, - [SMALL_STATE(7914)] = 298537, - [SMALL_STATE(7915)] = 298547, - [SMALL_STATE(7916)] = 298557, - [SMALL_STATE(7917)] = 298567, - [SMALL_STATE(7918)] = 298577, - [SMALL_STATE(7919)] = 298587, - [SMALL_STATE(7920)] = 298597, - [SMALL_STATE(7921)] = 298607, - [SMALL_STATE(7922)] = 298617, - [SMALL_STATE(7923)] = 298627, - [SMALL_STATE(7924)] = 298637, - [SMALL_STATE(7925)] = 298645, - [SMALL_STATE(7926)] = 298655, - [SMALL_STATE(7927)] = 298665, - [SMALL_STATE(7928)] = 298675, - [SMALL_STATE(7929)] = 298685, - [SMALL_STATE(7930)] = 298695, - [SMALL_STATE(7931)] = 298705, - [SMALL_STATE(7932)] = 298715, - [SMALL_STATE(7933)] = 298725, - [SMALL_STATE(7934)] = 298735, - [SMALL_STATE(7935)] = 298745, - [SMALL_STATE(7936)] = 298755, - [SMALL_STATE(7937)] = 298765, - [SMALL_STATE(7938)] = 298775, - [SMALL_STATE(7939)] = 298785, - [SMALL_STATE(7940)] = 298795, - [SMALL_STATE(7941)] = 298805, - [SMALL_STATE(7942)] = 298815, - [SMALL_STATE(7943)] = 298825, - [SMALL_STATE(7944)] = 298835, - [SMALL_STATE(7945)] = 298843, - [SMALL_STATE(7946)] = 298853, - [SMALL_STATE(7947)] = 298863, - [SMALL_STATE(7948)] = 298873, - [SMALL_STATE(7949)] = 298883, - [SMALL_STATE(7950)] = 298891, - [SMALL_STATE(7951)] = 298901, - [SMALL_STATE(7952)] = 298911, - [SMALL_STATE(7953)] = 298921, - [SMALL_STATE(7954)] = 298931, - [SMALL_STATE(7955)] = 298941, - [SMALL_STATE(7956)] = 298951, - [SMALL_STATE(7957)] = 298961, - [SMALL_STATE(7958)] = 298971, - [SMALL_STATE(7959)] = 298981, - [SMALL_STATE(7960)] = 298991, - [SMALL_STATE(7961)] = 298999, - [SMALL_STATE(7962)] = 299009, - [SMALL_STATE(7963)] = 299019, - [SMALL_STATE(7964)] = 299027, - [SMALL_STATE(7965)] = 299037, - [SMALL_STATE(7966)] = 299047, - [SMALL_STATE(7967)] = 299057, - [SMALL_STATE(7968)] = 299067, - [SMALL_STATE(7969)] = 299077, - [SMALL_STATE(7970)] = 299087, - [SMALL_STATE(7971)] = 299097, - [SMALL_STATE(7972)] = 299107, - [SMALL_STATE(7973)] = 299117, - [SMALL_STATE(7974)] = 299127, - [SMALL_STATE(7975)] = 299137, - [SMALL_STATE(7976)] = 299147, - [SMALL_STATE(7977)] = 299157, - [SMALL_STATE(7978)] = 299165, - [SMALL_STATE(7979)] = 299173, - [SMALL_STATE(7980)] = 299183, - [SMALL_STATE(7981)] = 299193, - [SMALL_STATE(7982)] = 299201, - [SMALL_STATE(7983)] = 299211, - [SMALL_STATE(7984)] = 299221, - [SMALL_STATE(7985)] = 299231, - [SMALL_STATE(7986)] = 299241, - [SMALL_STATE(7987)] = 299251, - [SMALL_STATE(7988)] = 299259, - [SMALL_STATE(7989)] = 299269, - [SMALL_STATE(7990)] = 299279, - [SMALL_STATE(7991)] = 299289, - [SMALL_STATE(7992)] = 299299, - [SMALL_STATE(7993)] = 299309, - [SMALL_STATE(7994)] = 299317, - [SMALL_STATE(7995)] = 299327, - [SMALL_STATE(7996)] = 299337, - [SMALL_STATE(7997)] = 299345, - [SMALL_STATE(7998)] = 299355, - [SMALL_STATE(7999)] = 299365, - [SMALL_STATE(8000)] = 299375, - [SMALL_STATE(8001)] = 299385, - [SMALL_STATE(8002)] = 299395, - [SMALL_STATE(8003)] = 299405, - [SMALL_STATE(8004)] = 299415, - [SMALL_STATE(8005)] = 299425, - [SMALL_STATE(8006)] = 299435, - [SMALL_STATE(8007)] = 299443, - [SMALL_STATE(8008)] = 299453, - [SMALL_STATE(8009)] = 299463, - [SMALL_STATE(8010)] = 299473, - [SMALL_STATE(8011)] = 299483, - [SMALL_STATE(8012)] = 299493, - [SMALL_STATE(8013)] = 299503, - [SMALL_STATE(8014)] = 299513, - [SMALL_STATE(8015)] = 299523, - [SMALL_STATE(8016)] = 299533, - [SMALL_STATE(8017)] = 299543, - [SMALL_STATE(8018)] = 299553, - [SMALL_STATE(8019)] = 299563, - [SMALL_STATE(8020)] = 299573, - [SMALL_STATE(8021)] = 299583, - [SMALL_STATE(8022)] = 299593, - [SMALL_STATE(8023)] = 299603, - [SMALL_STATE(8024)] = 299613, - [SMALL_STATE(8025)] = 299623, - [SMALL_STATE(8026)] = 299633, - [SMALL_STATE(8027)] = 299643, - [SMALL_STATE(8028)] = 299653, - [SMALL_STATE(8029)] = 299663, - [SMALL_STATE(8030)] = 299673, - [SMALL_STATE(8031)] = 299683, - [SMALL_STATE(8032)] = 299693, - [SMALL_STATE(8033)] = 299703, - [SMALL_STATE(8034)] = 299711, - [SMALL_STATE(8035)] = 299721, - [SMALL_STATE(8036)] = 299731, - [SMALL_STATE(8037)] = 299741, - [SMALL_STATE(8038)] = 299751, - [SMALL_STATE(8039)] = 299761, - [SMALL_STATE(8040)] = 299771, - [SMALL_STATE(8041)] = 299781, - [SMALL_STATE(8042)] = 299791, - [SMALL_STATE(8043)] = 299801, - [SMALL_STATE(8044)] = 299809, - [SMALL_STATE(8045)] = 299819, - [SMALL_STATE(8046)] = 299829, - [SMALL_STATE(8047)] = 299839, - [SMALL_STATE(8048)] = 299849, - [SMALL_STATE(8049)] = 299859, - [SMALL_STATE(8050)] = 299869, - [SMALL_STATE(8051)] = 299879, - [SMALL_STATE(8052)] = 299889, - [SMALL_STATE(8053)] = 299897, - [SMALL_STATE(8054)] = 299907, - [SMALL_STATE(8055)] = 299917, - [SMALL_STATE(8056)] = 299927, - [SMALL_STATE(8057)] = 299937, - [SMALL_STATE(8058)] = 299947, - [SMALL_STATE(8059)] = 299957, - [SMALL_STATE(8060)] = 299965, - [SMALL_STATE(8061)] = 299975, - [SMALL_STATE(8062)] = 299985, - [SMALL_STATE(8063)] = 299995, - [SMALL_STATE(8064)] = 300005, - [SMALL_STATE(8065)] = 300015, - [SMALL_STATE(8066)] = 300025, - [SMALL_STATE(8067)] = 300035, - [SMALL_STATE(8068)] = 300045, - [SMALL_STATE(8069)] = 300055, - [SMALL_STATE(8070)] = 300065, - [SMALL_STATE(8071)] = 300073, - [SMALL_STATE(8072)] = 300083, - [SMALL_STATE(8073)] = 300093, - [SMALL_STATE(8074)] = 300103, - [SMALL_STATE(8075)] = 300113, - [SMALL_STATE(8076)] = 300123, - [SMALL_STATE(8077)] = 300131, - [SMALL_STATE(8078)] = 300141, - [SMALL_STATE(8079)] = 300151, - [SMALL_STATE(8080)] = 300161, - [SMALL_STATE(8081)] = 300171, - [SMALL_STATE(8082)] = 300181, - [SMALL_STATE(8083)] = 300191, - [SMALL_STATE(8084)] = 300199, - [SMALL_STATE(8085)] = 300209, - [SMALL_STATE(8086)] = 300219, - [SMALL_STATE(8087)] = 300229, - [SMALL_STATE(8088)] = 300239, - [SMALL_STATE(8089)] = 300249, - [SMALL_STATE(8090)] = 300259, - [SMALL_STATE(8091)] = 300269, - [SMALL_STATE(8092)] = 300279, - [SMALL_STATE(8093)] = 300289, - [SMALL_STATE(8094)] = 300299, - [SMALL_STATE(8095)] = 300309, - [SMALL_STATE(8096)] = 300319, - [SMALL_STATE(8097)] = 300329, - [SMALL_STATE(8098)] = 300339, - [SMALL_STATE(8099)] = 300349, - [SMALL_STATE(8100)] = 300359, - [SMALL_STATE(8101)] = 300369, - [SMALL_STATE(8102)] = 300377, - [SMALL_STATE(8103)] = 300387, - [SMALL_STATE(8104)] = 300397, - [SMALL_STATE(8105)] = 300405, - [SMALL_STATE(8106)] = 300415, - [SMALL_STATE(8107)] = 300425, - [SMALL_STATE(8108)] = 300435, - [SMALL_STATE(8109)] = 300443, - [SMALL_STATE(8110)] = 300451, - [SMALL_STATE(8111)] = 300459, - [SMALL_STATE(8112)] = 300469, - [SMALL_STATE(8113)] = 300479, - [SMALL_STATE(8114)] = 300489, - [SMALL_STATE(8115)] = 300499, - [SMALL_STATE(8116)] = 300507, - [SMALL_STATE(8117)] = 300517, - [SMALL_STATE(8118)] = 300527, - [SMALL_STATE(8119)] = 300537, - [SMALL_STATE(8120)] = 300547, - [SMALL_STATE(8121)] = 300557, - [SMALL_STATE(8122)] = 300565, - [SMALL_STATE(8123)] = 300575, - [SMALL_STATE(8124)] = 300585, - [SMALL_STATE(8125)] = 300595, - [SMALL_STATE(8126)] = 300605, - [SMALL_STATE(8127)] = 300615, - [SMALL_STATE(8128)] = 300625, - [SMALL_STATE(8129)] = 300635, - [SMALL_STATE(8130)] = 300645, - [SMALL_STATE(8131)] = 300655, - [SMALL_STATE(8132)] = 300665, - [SMALL_STATE(8133)] = 300675, - [SMALL_STATE(8134)] = 300685, - [SMALL_STATE(8135)] = 300693, - [SMALL_STATE(8136)] = 300703, - [SMALL_STATE(8137)] = 300713, - [SMALL_STATE(8138)] = 300723, - [SMALL_STATE(8139)] = 300733, - [SMALL_STATE(8140)] = 300743, - [SMALL_STATE(8141)] = 300753, - [SMALL_STATE(8142)] = 300763, - [SMALL_STATE(8143)] = 300771, - [SMALL_STATE(8144)] = 300781, - [SMALL_STATE(8145)] = 300791, - [SMALL_STATE(8146)] = 300801, - [SMALL_STATE(8147)] = 300811, - [SMALL_STATE(8148)] = 300819, - [SMALL_STATE(8149)] = 300829, - [SMALL_STATE(8150)] = 300839, - [SMALL_STATE(8151)] = 300849, - [SMALL_STATE(8152)] = 300857, - [SMALL_STATE(8153)] = 300867, - [SMALL_STATE(8154)] = 300877, - [SMALL_STATE(8155)] = 300885, - [SMALL_STATE(8156)] = 300895, - [SMALL_STATE(8157)] = 300905, - [SMALL_STATE(8158)] = 300915, - [SMALL_STATE(8159)] = 300925, - [SMALL_STATE(8160)] = 300935, - [SMALL_STATE(8161)] = 300945, - [SMALL_STATE(8162)] = 300955, - [SMALL_STATE(8163)] = 300965, - [SMALL_STATE(8164)] = 300975, - [SMALL_STATE(8165)] = 300985, - [SMALL_STATE(8166)] = 300995, - [SMALL_STATE(8167)] = 301005, - [SMALL_STATE(8168)] = 301015, - [SMALL_STATE(8169)] = 301025, - [SMALL_STATE(8170)] = 301032, - [SMALL_STATE(8171)] = 301039, - [SMALL_STATE(8172)] = 301046, - [SMALL_STATE(8173)] = 301053, - [SMALL_STATE(8174)] = 301060, - [SMALL_STATE(8175)] = 301067, - [SMALL_STATE(8176)] = 301074, - [SMALL_STATE(8177)] = 301081, - [SMALL_STATE(8178)] = 301088, - [SMALL_STATE(8179)] = 301095, - [SMALL_STATE(8180)] = 301102, - [SMALL_STATE(8181)] = 301109, - [SMALL_STATE(8182)] = 301116, - [SMALL_STATE(8183)] = 301123, - [SMALL_STATE(8184)] = 301130, - [SMALL_STATE(8185)] = 301137, - [SMALL_STATE(8186)] = 301144, - [SMALL_STATE(8187)] = 301151, - [SMALL_STATE(8188)] = 301158, - [SMALL_STATE(8189)] = 301165, - [SMALL_STATE(8190)] = 301172, - [SMALL_STATE(8191)] = 301179, - [SMALL_STATE(8192)] = 301186, - [SMALL_STATE(8193)] = 301193, - [SMALL_STATE(8194)] = 301200, - [SMALL_STATE(8195)] = 301207, - [SMALL_STATE(8196)] = 301214, - [SMALL_STATE(8197)] = 301221, - [SMALL_STATE(8198)] = 301228, - [SMALL_STATE(8199)] = 301235, - [SMALL_STATE(8200)] = 301242, - [SMALL_STATE(8201)] = 301249, - [SMALL_STATE(8202)] = 301256, - [SMALL_STATE(8203)] = 301263, - [SMALL_STATE(8204)] = 301270, - [SMALL_STATE(8205)] = 301277, - [SMALL_STATE(8206)] = 301284, - [SMALL_STATE(8207)] = 301291, - [SMALL_STATE(8208)] = 301298, - [SMALL_STATE(8209)] = 301305, - [SMALL_STATE(8210)] = 301312, - [SMALL_STATE(8211)] = 301319, - [SMALL_STATE(8212)] = 301326, - [SMALL_STATE(8213)] = 301333, - [SMALL_STATE(8214)] = 301340, - [SMALL_STATE(8215)] = 301347, - [SMALL_STATE(8216)] = 301354, - [SMALL_STATE(8217)] = 301361, - [SMALL_STATE(8218)] = 301368, - [SMALL_STATE(8219)] = 301375, - [SMALL_STATE(8220)] = 301382, - [SMALL_STATE(8221)] = 301389, - [SMALL_STATE(8222)] = 301396, - [SMALL_STATE(8223)] = 301403, - [SMALL_STATE(8224)] = 301410, - [SMALL_STATE(8225)] = 301417, - [SMALL_STATE(8226)] = 301424, - [SMALL_STATE(8227)] = 301431, - [SMALL_STATE(8228)] = 301438, - [SMALL_STATE(8229)] = 301445, - [SMALL_STATE(8230)] = 301452, - [SMALL_STATE(8231)] = 301459, - [SMALL_STATE(8232)] = 301466, - [SMALL_STATE(8233)] = 301473, - [SMALL_STATE(8234)] = 301480, - [SMALL_STATE(8235)] = 301487, - [SMALL_STATE(8236)] = 301494, - [SMALL_STATE(8237)] = 301501, - [SMALL_STATE(8238)] = 301508, - [SMALL_STATE(8239)] = 301515, - [SMALL_STATE(8240)] = 301522, - [SMALL_STATE(8241)] = 301529, - [SMALL_STATE(8242)] = 301536, - [SMALL_STATE(8243)] = 301543, - [SMALL_STATE(8244)] = 301550, - [SMALL_STATE(8245)] = 301557, - [SMALL_STATE(8246)] = 301564, - [SMALL_STATE(8247)] = 301571, - [SMALL_STATE(8248)] = 301578, - [SMALL_STATE(8249)] = 301585, - [SMALL_STATE(8250)] = 301592, - [SMALL_STATE(8251)] = 301599, - [SMALL_STATE(8252)] = 301606, - [SMALL_STATE(8253)] = 301613, - [SMALL_STATE(8254)] = 301620, - [SMALL_STATE(8255)] = 301627, - [SMALL_STATE(8256)] = 301634, - [SMALL_STATE(8257)] = 301641, - [SMALL_STATE(8258)] = 301648, - [SMALL_STATE(8259)] = 301655, - [SMALL_STATE(8260)] = 301662, - [SMALL_STATE(8261)] = 301669, - [SMALL_STATE(8262)] = 301676, - [SMALL_STATE(8263)] = 301683, - [SMALL_STATE(8264)] = 301690, - [SMALL_STATE(8265)] = 301697, - [SMALL_STATE(8266)] = 301704, - [SMALL_STATE(8267)] = 301711, - [SMALL_STATE(8268)] = 301718, - [SMALL_STATE(8269)] = 301725, - [SMALL_STATE(8270)] = 301732, - [SMALL_STATE(8271)] = 301739, - [SMALL_STATE(8272)] = 301746, - [SMALL_STATE(8273)] = 301753, - [SMALL_STATE(8274)] = 301760, - [SMALL_STATE(8275)] = 301767, - [SMALL_STATE(8276)] = 301774, - [SMALL_STATE(8277)] = 301781, - [SMALL_STATE(8278)] = 301788, - [SMALL_STATE(8279)] = 301795, - [SMALL_STATE(8280)] = 301802, - [SMALL_STATE(8281)] = 301809, - [SMALL_STATE(8282)] = 301816, - [SMALL_STATE(8283)] = 301823, - [SMALL_STATE(8284)] = 301830, - [SMALL_STATE(8285)] = 301837, - [SMALL_STATE(8286)] = 301844, - [SMALL_STATE(8287)] = 301851, - [SMALL_STATE(8288)] = 301858, - [SMALL_STATE(8289)] = 301865, - [SMALL_STATE(8290)] = 301872, - [SMALL_STATE(8291)] = 301879, - [SMALL_STATE(8292)] = 301886, - [SMALL_STATE(8293)] = 301893, - [SMALL_STATE(8294)] = 301900, - [SMALL_STATE(8295)] = 301907, - [SMALL_STATE(8296)] = 301914, - [SMALL_STATE(8297)] = 301921, - [SMALL_STATE(8298)] = 301928, - [SMALL_STATE(8299)] = 301935, - [SMALL_STATE(8300)] = 301942, - [SMALL_STATE(8301)] = 301949, - [SMALL_STATE(8302)] = 301956, - [SMALL_STATE(8303)] = 301963, - [SMALL_STATE(8304)] = 301970, - [SMALL_STATE(8305)] = 301977, - [SMALL_STATE(8306)] = 301984, - [SMALL_STATE(8307)] = 301991, - [SMALL_STATE(8308)] = 301998, - [SMALL_STATE(8309)] = 302005, - [SMALL_STATE(8310)] = 302012, - [SMALL_STATE(8311)] = 302019, - [SMALL_STATE(8312)] = 302026, - [SMALL_STATE(8313)] = 302033, - [SMALL_STATE(8314)] = 302040, - [SMALL_STATE(8315)] = 302047, - [SMALL_STATE(8316)] = 302054, - [SMALL_STATE(8317)] = 302061, - [SMALL_STATE(8318)] = 302068, - [SMALL_STATE(8319)] = 302075, - [SMALL_STATE(8320)] = 302082, - [SMALL_STATE(8321)] = 302089, - [SMALL_STATE(8322)] = 302096, - [SMALL_STATE(8323)] = 302103, - [SMALL_STATE(8324)] = 302110, - [SMALL_STATE(8325)] = 302117, - [SMALL_STATE(8326)] = 302124, - [SMALL_STATE(8327)] = 302131, - [SMALL_STATE(8328)] = 302138, - [SMALL_STATE(8329)] = 302145, - [SMALL_STATE(8330)] = 302152, - [SMALL_STATE(8331)] = 302159, - [SMALL_STATE(8332)] = 302166, - [SMALL_STATE(8333)] = 302173, - [SMALL_STATE(8334)] = 302180, - [SMALL_STATE(8335)] = 302187, - [SMALL_STATE(8336)] = 302194, - [SMALL_STATE(8337)] = 302201, - [SMALL_STATE(8338)] = 302208, - [SMALL_STATE(8339)] = 302215, - [SMALL_STATE(8340)] = 302222, - [SMALL_STATE(8341)] = 302229, - [SMALL_STATE(8342)] = 302236, - [SMALL_STATE(8343)] = 302243, - [SMALL_STATE(8344)] = 302250, - [SMALL_STATE(8345)] = 302257, - [SMALL_STATE(8346)] = 302264, - [SMALL_STATE(8347)] = 302271, - [SMALL_STATE(8348)] = 302278, - [SMALL_STATE(8349)] = 302285, - [SMALL_STATE(8350)] = 302292, - [SMALL_STATE(8351)] = 302299, - [SMALL_STATE(8352)] = 302306, - [SMALL_STATE(8353)] = 302313, - [SMALL_STATE(8354)] = 302320, - [SMALL_STATE(8355)] = 302327, - [SMALL_STATE(8356)] = 302334, - [SMALL_STATE(8357)] = 302341, - [SMALL_STATE(8358)] = 302348, - [SMALL_STATE(8359)] = 302355, - [SMALL_STATE(8360)] = 302362, - [SMALL_STATE(8361)] = 302369, - [SMALL_STATE(8362)] = 302376, - [SMALL_STATE(8363)] = 302383, - [SMALL_STATE(8364)] = 302390, - [SMALL_STATE(8365)] = 302397, - [SMALL_STATE(8366)] = 302404, - [SMALL_STATE(8367)] = 302411, - [SMALL_STATE(8368)] = 302418, - [SMALL_STATE(8369)] = 302425, - [SMALL_STATE(8370)] = 302432, - [SMALL_STATE(8371)] = 302439, - [SMALL_STATE(8372)] = 302446, - [SMALL_STATE(8373)] = 302453, - [SMALL_STATE(8374)] = 302460, - [SMALL_STATE(8375)] = 302467, - [SMALL_STATE(8376)] = 302474, - [SMALL_STATE(8377)] = 302481, - [SMALL_STATE(8378)] = 302488, - [SMALL_STATE(8379)] = 302495, - [SMALL_STATE(8380)] = 302502, - [SMALL_STATE(8381)] = 302509, - [SMALL_STATE(8382)] = 302516, - [SMALL_STATE(8383)] = 302523, - [SMALL_STATE(8384)] = 302530, - [SMALL_STATE(8385)] = 302537, - [SMALL_STATE(8386)] = 302544, - [SMALL_STATE(8387)] = 302551, - [SMALL_STATE(8388)] = 302558, - [SMALL_STATE(8389)] = 302565, - [SMALL_STATE(8390)] = 302572, - [SMALL_STATE(8391)] = 302579, - [SMALL_STATE(8392)] = 302586, - [SMALL_STATE(8393)] = 302593, - [SMALL_STATE(8394)] = 302600, - [SMALL_STATE(8395)] = 302607, - [SMALL_STATE(8396)] = 302614, - [SMALL_STATE(8397)] = 302621, - [SMALL_STATE(8398)] = 302628, - [SMALL_STATE(8399)] = 302635, - [SMALL_STATE(8400)] = 302642, - [SMALL_STATE(8401)] = 302649, - [SMALL_STATE(8402)] = 302656, - [SMALL_STATE(8403)] = 302663, - [SMALL_STATE(8404)] = 302670, - [SMALL_STATE(8405)] = 302677, - [SMALL_STATE(8406)] = 302684, - [SMALL_STATE(8407)] = 302691, - [SMALL_STATE(8408)] = 302698, - [SMALL_STATE(8409)] = 302705, - [SMALL_STATE(8410)] = 302712, - [SMALL_STATE(8411)] = 302719, - [SMALL_STATE(8412)] = 302726, - [SMALL_STATE(8413)] = 302733, - [SMALL_STATE(8414)] = 302740, - [SMALL_STATE(8415)] = 302747, - [SMALL_STATE(8416)] = 302754, - [SMALL_STATE(8417)] = 302761, - [SMALL_STATE(8418)] = 302768, - [SMALL_STATE(8419)] = 302775, - [SMALL_STATE(8420)] = 302782, - [SMALL_STATE(8421)] = 302789, - [SMALL_STATE(8422)] = 302796, - [SMALL_STATE(8423)] = 302803, - [SMALL_STATE(8424)] = 302810, - [SMALL_STATE(8425)] = 302817, - [SMALL_STATE(8426)] = 302824, - [SMALL_STATE(8427)] = 302831, - [SMALL_STATE(8428)] = 302838, - [SMALL_STATE(8429)] = 302845, - [SMALL_STATE(8430)] = 302852, - [SMALL_STATE(8431)] = 302859, - [SMALL_STATE(8432)] = 302866, - [SMALL_STATE(8433)] = 302873, - [SMALL_STATE(8434)] = 302880, - [SMALL_STATE(8435)] = 302887, - [SMALL_STATE(8436)] = 302894, - [SMALL_STATE(8437)] = 302901, - [SMALL_STATE(8438)] = 302908, - [SMALL_STATE(8439)] = 302915, - [SMALL_STATE(8440)] = 302922, - [SMALL_STATE(8441)] = 302929, - [SMALL_STATE(8442)] = 302936, - [SMALL_STATE(8443)] = 302943, - [SMALL_STATE(8444)] = 302950, - [SMALL_STATE(8445)] = 302957, - [SMALL_STATE(8446)] = 302964, - [SMALL_STATE(8447)] = 302971, - [SMALL_STATE(8448)] = 302978, - [SMALL_STATE(8449)] = 302985, - [SMALL_STATE(8450)] = 302992, - [SMALL_STATE(8451)] = 302999, - [SMALL_STATE(8452)] = 303006, - [SMALL_STATE(8453)] = 303013, - [SMALL_STATE(8454)] = 303020, - [SMALL_STATE(8455)] = 303027, - [SMALL_STATE(8456)] = 303034, - [SMALL_STATE(8457)] = 303041, - [SMALL_STATE(8458)] = 303048, - [SMALL_STATE(8459)] = 303055, - [SMALL_STATE(8460)] = 303062, - [SMALL_STATE(8461)] = 303069, - [SMALL_STATE(8462)] = 303076, - [SMALL_STATE(8463)] = 303083, - [SMALL_STATE(8464)] = 303090, - [SMALL_STATE(8465)] = 303097, - [SMALL_STATE(8466)] = 303104, - [SMALL_STATE(8467)] = 303111, - [SMALL_STATE(8468)] = 303118, - [SMALL_STATE(8469)] = 303125, - [SMALL_STATE(8470)] = 303132, - [SMALL_STATE(8471)] = 303139, - [SMALL_STATE(8472)] = 303146, - [SMALL_STATE(8473)] = 303153, - [SMALL_STATE(8474)] = 303160, - [SMALL_STATE(8475)] = 303167, - [SMALL_STATE(8476)] = 303174, - [SMALL_STATE(8477)] = 303181, - [SMALL_STATE(8478)] = 303188, - [SMALL_STATE(8479)] = 303195, - [SMALL_STATE(8480)] = 303202, - [SMALL_STATE(8481)] = 303209, - [SMALL_STATE(8482)] = 303216, - [SMALL_STATE(8483)] = 303223, - [SMALL_STATE(8484)] = 303230, - [SMALL_STATE(8485)] = 303237, - [SMALL_STATE(8486)] = 303244, - [SMALL_STATE(8487)] = 303251, - [SMALL_STATE(8488)] = 303258, - [SMALL_STATE(8489)] = 303265, - [SMALL_STATE(8490)] = 303272, - [SMALL_STATE(8491)] = 303279, - [SMALL_STATE(8492)] = 303286, - [SMALL_STATE(8493)] = 303293, - [SMALL_STATE(8494)] = 303300, - [SMALL_STATE(8495)] = 303307, - [SMALL_STATE(8496)] = 303314, - [SMALL_STATE(8497)] = 303321, - [SMALL_STATE(8498)] = 303328, - [SMALL_STATE(8499)] = 303335, - [SMALL_STATE(8500)] = 303342, - [SMALL_STATE(8501)] = 303349, - [SMALL_STATE(8502)] = 303356, - [SMALL_STATE(8503)] = 303363, - [SMALL_STATE(8504)] = 303370, - [SMALL_STATE(8505)] = 303377, - [SMALL_STATE(8506)] = 303384, - [SMALL_STATE(8507)] = 303391, - [SMALL_STATE(8508)] = 303398, - [SMALL_STATE(8509)] = 303405, - [SMALL_STATE(8510)] = 303412, - [SMALL_STATE(8511)] = 303419, - [SMALL_STATE(8512)] = 303426, - [SMALL_STATE(8513)] = 303433, - [SMALL_STATE(8514)] = 303440, - [SMALL_STATE(8515)] = 303447, - [SMALL_STATE(8516)] = 303454, - [SMALL_STATE(8517)] = 303461, - [SMALL_STATE(8518)] = 303468, - [SMALL_STATE(8519)] = 303475, - [SMALL_STATE(8520)] = 303482, - [SMALL_STATE(8521)] = 303489, - [SMALL_STATE(8522)] = 303496, - [SMALL_STATE(8523)] = 303503, - [SMALL_STATE(8524)] = 303510, - [SMALL_STATE(8525)] = 303517, - [SMALL_STATE(8526)] = 303524, - [SMALL_STATE(8527)] = 303531, - [SMALL_STATE(8528)] = 303538, - [SMALL_STATE(8529)] = 303545, - [SMALL_STATE(8530)] = 303552, - [SMALL_STATE(8531)] = 303559, - [SMALL_STATE(8532)] = 303566, - [SMALL_STATE(8533)] = 303573, - [SMALL_STATE(8534)] = 303580, - [SMALL_STATE(8535)] = 303587, - [SMALL_STATE(8536)] = 303594, - [SMALL_STATE(8537)] = 303601, - [SMALL_STATE(8538)] = 303608, - [SMALL_STATE(8539)] = 303615, - [SMALL_STATE(8540)] = 303622, - [SMALL_STATE(8541)] = 303629, - [SMALL_STATE(8542)] = 303636, - [SMALL_STATE(8543)] = 303643, - [SMALL_STATE(8544)] = 303650, - [SMALL_STATE(8545)] = 303657, - [SMALL_STATE(8546)] = 303664, - [SMALL_STATE(8547)] = 303671, - [SMALL_STATE(8548)] = 303678, - [SMALL_STATE(8549)] = 303685, - [SMALL_STATE(8550)] = 303692, - [SMALL_STATE(8551)] = 303699, - [SMALL_STATE(8552)] = 303706, - [SMALL_STATE(8553)] = 303713, - [SMALL_STATE(8554)] = 303720, - [SMALL_STATE(8555)] = 303727, - [SMALL_STATE(8556)] = 303734, - [SMALL_STATE(8557)] = 303741, - [SMALL_STATE(8558)] = 303748, - [SMALL_STATE(8559)] = 303755, - [SMALL_STATE(8560)] = 303762, - [SMALL_STATE(8561)] = 303769, - [SMALL_STATE(8562)] = 303776, - [SMALL_STATE(8563)] = 303783, - [SMALL_STATE(8564)] = 303790, - [SMALL_STATE(8565)] = 303797, - [SMALL_STATE(8566)] = 303804, - [SMALL_STATE(8567)] = 303811, - [SMALL_STATE(8568)] = 303818, - [SMALL_STATE(8569)] = 303825, - [SMALL_STATE(8570)] = 303832, - [SMALL_STATE(8571)] = 303839, - [SMALL_STATE(8572)] = 303846, - [SMALL_STATE(8573)] = 303853, - [SMALL_STATE(8574)] = 303860, - [SMALL_STATE(8575)] = 303867, - [SMALL_STATE(8576)] = 303874, - [SMALL_STATE(8577)] = 303881, - [SMALL_STATE(8578)] = 303888, - [SMALL_STATE(8579)] = 303895, - [SMALL_STATE(8580)] = 303902, - [SMALL_STATE(8581)] = 303909, - [SMALL_STATE(8582)] = 303916, - [SMALL_STATE(8583)] = 303923, - [SMALL_STATE(8584)] = 303930, - [SMALL_STATE(8585)] = 303937, - [SMALL_STATE(8586)] = 303944, - [SMALL_STATE(8587)] = 303951, - [SMALL_STATE(8588)] = 303958, - [SMALL_STATE(8589)] = 303965, - [SMALL_STATE(8590)] = 303972, - [SMALL_STATE(8591)] = 303979, - [SMALL_STATE(8592)] = 303986, - [SMALL_STATE(8593)] = 303993, - [SMALL_STATE(8594)] = 304000, - [SMALL_STATE(8595)] = 304007, - [SMALL_STATE(8596)] = 304014, - [SMALL_STATE(8597)] = 304021, - [SMALL_STATE(8598)] = 304028, - [SMALL_STATE(8599)] = 304035, - [SMALL_STATE(8600)] = 304042, - [SMALL_STATE(8601)] = 304049, - [SMALL_STATE(8602)] = 304056, - [SMALL_STATE(8603)] = 304063, - [SMALL_STATE(8604)] = 304070, - [SMALL_STATE(8605)] = 304077, - [SMALL_STATE(8606)] = 304084, - [SMALL_STATE(8607)] = 304091, - [SMALL_STATE(8608)] = 304098, - [SMALL_STATE(8609)] = 304105, - [SMALL_STATE(8610)] = 304112, - [SMALL_STATE(8611)] = 304119, - [SMALL_STATE(8612)] = 304126, - [SMALL_STATE(8613)] = 304133, - [SMALL_STATE(8614)] = 304140, - [SMALL_STATE(8615)] = 304147, - [SMALL_STATE(8616)] = 304154, - [SMALL_STATE(8617)] = 304161, - [SMALL_STATE(8618)] = 304168, - [SMALL_STATE(8619)] = 304175, - [SMALL_STATE(8620)] = 304182, - [SMALL_STATE(8621)] = 304189, - [SMALL_STATE(8622)] = 304196, - [SMALL_STATE(8623)] = 304203, - [SMALL_STATE(8624)] = 304210, - [SMALL_STATE(8625)] = 304217, - [SMALL_STATE(8626)] = 304224, - [SMALL_STATE(8627)] = 304231, - [SMALL_STATE(8628)] = 304238, - [SMALL_STATE(8629)] = 304245, - [SMALL_STATE(8630)] = 304252, - [SMALL_STATE(8631)] = 304259, - [SMALL_STATE(8632)] = 304266, - [SMALL_STATE(8633)] = 304273, - [SMALL_STATE(8634)] = 304280, - [SMALL_STATE(8635)] = 304287, - [SMALL_STATE(8636)] = 304294, - [SMALL_STATE(8637)] = 304301, - [SMALL_STATE(8638)] = 304308, - [SMALL_STATE(8639)] = 304315, - [SMALL_STATE(8640)] = 304322, - [SMALL_STATE(8641)] = 304329, - [SMALL_STATE(8642)] = 304336, - [SMALL_STATE(8643)] = 304343, - [SMALL_STATE(8644)] = 304350, - [SMALL_STATE(8645)] = 304357, - [SMALL_STATE(8646)] = 304364, - [SMALL_STATE(8647)] = 304371, - [SMALL_STATE(8648)] = 304378, - [SMALL_STATE(8649)] = 304385, - [SMALL_STATE(8650)] = 304392, - [SMALL_STATE(8651)] = 304399, - [SMALL_STATE(8652)] = 304406, - [SMALL_STATE(8653)] = 304413, - [SMALL_STATE(8654)] = 304420, - [SMALL_STATE(8655)] = 304427, - [SMALL_STATE(8656)] = 304434, - [SMALL_STATE(8657)] = 304441, - [SMALL_STATE(8658)] = 304448, - [SMALL_STATE(8659)] = 304455, - [SMALL_STATE(8660)] = 304462, - [SMALL_STATE(8661)] = 304469, - [SMALL_STATE(8662)] = 304476, - [SMALL_STATE(8663)] = 304483, - [SMALL_STATE(8664)] = 304490, - [SMALL_STATE(8665)] = 304497, - [SMALL_STATE(8666)] = 304504, - [SMALL_STATE(8667)] = 304511, - [SMALL_STATE(8668)] = 304518, - [SMALL_STATE(8669)] = 304525, - [SMALL_STATE(8670)] = 304532, - [SMALL_STATE(8671)] = 304539, - [SMALL_STATE(8672)] = 304546, - [SMALL_STATE(8673)] = 304553, - [SMALL_STATE(8674)] = 304560, - [SMALL_STATE(8675)] = 304567, - [SMALL_STATE(8676)] = 304574, - [SMALL_STATE(8677)] = 304581, - [SMALL_STATE(8678)] = 304588, - [SMALL_STATE(8679)] = 304595, - [SMALL_STATE(8680)] = 304602, - [SMALL_STATE(8681)] = 304609, - [SMALL_STATE(8682)] = 304616, - [SMALL_STATE(8683)] = 304623, - [SMALL_STATE(8684)] = 304630, - [SMALL_STATE(8685)] = 304637, - [SMALL_STATE(8686)] = 304644, - [SMALL_STATE(8687)] = 304651, - [SMALL_STATE(8688)] = 304658, - [SMALL_STATE(8689)] = 304665, - [SMALL_STATE(8690)] = 304672, - [SMALL_STATE(8691)] = 304679, - [SMALL_STATE(8692)] = 304686, - [SMALL_STATE(8693)] = 304693, - [SMALL_STATE(8694)] = 304700, - [SMALL_STATE(8695)] = 304707, - [SMALL_STATE(8696)] = 304714, - [SMALL_STATE(8697)] = 304721, - [SMALL_STATE(8698)] = 304728, - [SMALL_STATE(8699)] = 304735, - [SMALL_STATE(8700)] = 304742, - [SMALL_STATE(8701)] = 304749, - [SMALL_STATE(8702)] = 304756, - [SMALL_STATE(8703)] = 304763, - [SMALL_STATE(8704)] = 304770, - [SMALL_STATE(8705)] = 304777, - [SMALL_STATE(8706)] = 304784, - [SMALL_STATE(8707)] = 304791, - [SMALL_STATE(8708)] = 304798, - [SMALL_STATE(8709)] = 304805, - [SMALL_STATE(8710)] = 304812, - [SMALL_STATE(8711)] = 304819, - [SMALL_STATE(8712)] = 304826, - [SMALL_STATE(8713)] = 304833, - [SMALL_STATE(8714)] = 304840, - [SMALL_STATE(8715)] = 304847, - [SMALL_STATE(8716)] = 304854, - [SMALL_STATE(8717)] = 304861, - [SMALL_STATE(8718)] = 304868, - [SMALL_STATE(8719)] = 304875, - [SMALL_STATE(8720)] = 304882, - [SMALL_STATE(8721)] = 304889, - [SMALL_STATE(8722)] = 304896, - [SMALL_STATE(8723)] = 304903, - [SMALL_STATE(8724)] = 304910, - [SMALL_STATE(8725)] = 304917, - [SMALL_STATE(8726)] = 304924, - [SMALL_STATE(8727)] = 304931, - [SMALL_STATE(8728)] = 304938, - [SMALL_STATE(8729)] = 304945, - [SMALL_STATE(8730)] = 304952, - [SMALL_STATE(8731)] = 304959, - [SMALL_STATE(8732)] = 304966, - [SMALL_STATE(8733)] = 304973, - [SMALL_STATE(8734)] = 304980, - [SMALL_STATE(8735)] = 304987, - [SMALL_STATE(8736)] = 304994, - [SMALL_STATE(8737)] = 305001, - [SMALL_STATE(8738)] = 305008, - [SMALL_STATE(8739)] = 305015, - [SMALL_STATE(8740)] = 305022, - [SMALL_STATE(8741)] = 305029, - [SMALL_STATE(8742)] = 305036, - [SMALL_STATE(8743)] = 305043, - [SMALL_STATE(8744)] = 305050, - [SMALL_STATE(8745)] = 305057, - [SMALL_STATE(8746)] = 305064, - [SMALL_STATE(8747)] = 305071, - [SMALL_STATE(8748)] = 305078, - [SMALL_STATE(8749)] = 305085, - [SMALL_STATE(8750)] = 305092, - [SMALL_STATE(8751)] = 305099, - [SMALL_STATE(8752)] = 305106, - [SMALL_STATE(8753)] = 305113, - [SMALL_STATE(8754)] = 305120, - [SMALL_STATE(8755)] = 305127, - [SMALL_STATE(8756)] = 305134, - [SMALL_STATE(8757)] = 305141, - [SMALL_STATE(8758)] = 305148, - [SMALL_STATE(8759)] = 305155, - [SMALL_STATE(8760)] = 305162, - [SMALL_STATE(8761)] = 305169, - [SMALL_STATE(8762)] = 305176, - [SMALL_STATE(8763)] = 305183, - [SMALL_STATE(8764)] = 305190, - [SMALL_STATE(8765)] = 305197, - [SMALL_STATE(8766)] = 305204, - [SMALL_STATE(8767)] = 305211, - [SMALL_STATE(8768)] = 305218, - [SMALL_STATE(8769)] = 305225, - [SMALL_STATE(8770)] = 305232, - [SMALL_STATE(8771)] = 305239, - [SMALL_STATE(8772)] = 305246, - [SMALL_STATE(8773)] = 305253, - [SMALL_STATE(8774)] = 305260, - [SMALL_STATE(8775)] = 305267, - [SMALL_STATE(8776)] = 305274, - [SMALL_STATE(8777)] = 305281, - [SMALL_STATE(8778)] = 305288, - [SMALL_STATE(8779)] = 305295, - [SMALL_STATE(8780)] = 305302, - [SMALL_STATE(8781)] = 305309, - [SMALL_STATE(8782)] = 305316, - [SMALL_STATE(8783)] = 305323, - [SMALL_STATE(8784)] = 305330, - [SMALL_STATE(8785)] = 305337, - [SMALL_STATE(8786)] = 305344, - [SMALL_STATE(8787)] = 305351, - [SMALL_STATE(8788)] = 305358, - [SMALL_STATE(8789)] = 305365, - [SMALL_STATE(8790)] = 305372, - [SMALL_STATE(8791)] = 305379, - [SMALL_STATE(8792)] = 305386, - [SMALL_STATE(8793)] = 305393, - [SMALL_STATE(8794)] = 305400, - [SMALL_STATE(8795)] = 305407, - [SMALL_STATE(8796)] = 305414, - [SMALL_STATE(8797)] = 305421, - [SMALL_STATE(8798)] = 305428, - [SMALL_STATE(8799)] = 305435, - [SMALL_STATE(8800)] = 305442, - [SMALL_STATE(8801)] = 305449, - [SMALL_STATE(8802)] = 305456, - [SMALL_STATE(8803)] = 305463, - [SMALL_STATE(8804)] = 305470, - [SMALL_STATE(8805)] = 305477, - [SMALL_STATE(8806)] = 305484, - [SMALL_STATE(8807)] = 305491, - [SMALL_STATE(8808)] = 305498, - [SMALL_STATE(8809)] = 305505, - [SMALL_STATE(8810)] = 305512, - [SMALL_STATE(8811)] = 305519, - [SMALL_STATE(8812)] = 305526, - [SMALL_STATE(8813)] = 305533, - [SMALL_STATE(8814)] = 305540, - [SMALL_STATE(8815)] = 305547, - [SMALL_STATE(8816)] = 305554, - [SMALL_STATE(8817)] = 305561, - [SMALL_STATE(8818)] = 305568, - [SMALL_STATE(8819)] = 305575, - [SMALL_STATE(8820)] = 305582, - [SMALL_STATE(8821)] = 305589, - [SMALL_STATE(8822)] = 305596, - [SMALL_STATE(8823)] = 305603, - [SMALL_STATE(8824)] = 305610, - [SMALL_STATE(8825)] = 305617, - [SMALL_STATE(8826)] = 305624, - [SMALL_STATE(8827)] = 305631, - [SMALL_STATE(8828)] = 305638, - [SMALL_STATE(8829)] = 305645, - [SMALL_STATE(8830)] = 305652, - [SMALL_STATE(8831)] = 305659, - [SMALL_STATE(8832)] = 305666, - [SMALL_STATE(8833)] = 305673, - [SMALL_STATE(8834)] = 305680, - [SMALL_STATE(8835)] = 305687, - [SMALL_STATE(8836)] = 305694, - [SMALL_STATE(8837)] = 305701, - [SMALL_STATE(8838)] = 305708, - [SMALL_STATE(8839)] = 305715, - [SMALL_STATE(8840)] = 305722, - [SMALL_STATE(8841)] = 305729, - [SMALL_STATE(8842)] = 305736, - [SMALL_STATE(8843)] = 305743, - [SMALL_STATE(8844)] = 305750, - [SMALL_STATE(8845)] = 305757, - [SMALL_STATE(8846)] = 305764, - [SMALL_STATE(8847)] = 305771, - [SMALL_STATE(8848)] = 305778, - [SMALL_STATE(8849)] = 305785, - [SMALL_STATE(8850)] = 305792, - [SMALL_STATE(8851)] = 305799, - [SMALL_STATE(8852)] = 305806, - [SMALL_STATE(8853)] = 305813, - [SMALL_STATE(8854)] = 305820, - [SMALL_STATE(8855)] = 305827, - [SMALL_STATE(8856)] = 305834, - [SMALL_STATE(8857)] = 305841, - [SMALL_STATE(8858)] = 305848, - [SMALL_STATE(8859)] = 305855, - [SMALL_STATE(8860)] = 305862, - [SMALL_STATE(8861)] = 305869, - [SMALL_STATE(8862)] = 305876, - [SMALL_STATE(8863)] = 305883, - [SMALL_STATE(8864)] = 305890, - [SMALL_STATE(8865)] = 305897, - [SMALL_STATE(8866)] = 305904, - [SMALL_STATE(8867)] = 305911, - [SMALL_STATE(8868)] = 305918, - [SMALL_STATE(8869)] = 305925, - [SMALL_STATE(8870)] = 305932, - [SMALL_STATE(8871)] = 305939, - [SMALL_STATE(8872)] = 305946, - [SMALL_STATE(8873)] = 305953, - [SMALL_STATE(8874)] = 305960, - [SMALL_STATE(8875)] = 305967, - [SMALL_STATE(8876)] = 305974, - [SMALL_STATE(8877)] = 305981, - [SMALL_STATE(8878)] = 305988, - [SMALL_STATE(8879)] = 305995, - [SMALL_STATE(8880)] = 306002, - [SMALL_STATE(8881)] = 306009, - [SMALL_STATE(8882)] = 306016, - [SMALL_STATE(8883)] = 306023, - [SMALL_STATE(8884)] = 306030, - [SMALL_STATE(8885)] = 306037, - [SMALL_STATE(8886)] = 306044, - [SMALL_STATE(8887)] = 306051, - [SMALL_STATE(8888)] = 306058, - [SMALL_STATE(8889)] = 306065, - [SMALL_STATE(8890)] = 306072, - [SMALL_STATE(8891)] = 306079, - [SMALL_STATE(8892)] = 306086, - [SMALL_STATE(8893)] = 306093, - [SMALL_STATE(8894)] = 306100, - [SMALL_STATE(8895)] = 306107, - [SMALL_STATE(8896)] = 306114, - [SMALL_STATE(8897)] = 306121, - [SMALL_STATE(8898)] = 306128, - [SMALL_STATE(8899)] = 306135, - [SMALL_STATE(8900)] = 306142, - [SMALL_STATE(8901)] = 306149, - [SMALL_STATE(8902)] = 306156, - [SMALL_STATE(8903)] = 306163, - [SMALL_STATE(8904)] = 306170, - [SMALL_STATE(8905)] = 306177, - [SMALL_STATE(8906)] = 306184, - [SMALL_STATE(8907)] = 306191, - [SMALL_STATE(8908)] = 306198, - [SMALL_STATE(8909)] = 306205, - [SMALL_STATE(8910)] = 306212, - [SMALL_STATE(8911)] = 306219, - [SMALL_STATE(8912)] = 306226, - [SMALL_STATE(8913)] = 306233, - [SMALL_STATE(8914)] = 306240, - [SMALL_STATE(8915)] = 306247, - [SMALL_STATE(8916)] = 306254, - [SMALL_STATE(8917)] = 306261, - [SMALL_STATE(8918)] = 306268, - [SMALL_STATE(8919)] = 306275, - [SMALL_STATE(8920)] = 306282, - [SMALL_STATE(8921)] = 306289, - [SMALL_STATE(8922)] = 306296, - [SMALL_STATE(8923)] = 306303, - [SMALL_STATE(8924)] = 306310, - [SMALL_STATE(8925)] = 306317, - [SMALL_STATE(8926)] = 306324, - [SMALL_STATE(8927)] = 306331, - [SMALL_STATE(8928)] = 306338, - [SMALL_STATE(8929)] = 306345, - [SMALL_STATE(8930)] = 306352, - [SMALL_STATE(8931)] = 306359, - [SMALL_STATE(8932)] = 306366, - [SMALL_STATE(8933)] = 306373, - [SMALL_STATE(8934)] = 306380, - [SMALL_STATE(8935)] = 306387, - [SMALL_STATE(8936)] = 306394, - [SMALL_STATE(8937)] = 306401, - [SMALL_STATE(8938)] = 306408, - [SMALL_STATE(8939)] = 306415, - [SMALL_STATE(8940)] = 306422, - [SMALL_STATE(8941)] = 306429, - [SMALL_STATE(8942)] = 306436, - [SMALL_STATE(8943)] = 306443, - [SMALL_STATE(8944)] = 306450, - [SMALL_STATE(8945)] = 306457, - [SMALL_STATE(8946)] = 306464, - [SMALL_STATE(8947)] = 306471, - [SMALL_STATE(8948)] = 306478, - [SMALL_STATE(8949)] = 306485, - [SMALL_STATE(8950)] = 306492, - [SMALL_STATE(8951)] = 306499, - [SMALL_STATE(8952)] = 306506, - [SMALL_STATE(8953)] = 306513, - [SMALL_STATE(8954)] = 306520, - [SMALL_STATE(8955)] = 306527, - [SMALL_STATE(8956)] = 306534, - [SMALL_STATE(8957)] = 306541, - [SMALL_STATE(8958)] = 306548, - [SMALL_STATE(8959)] = 306555, - [SMALL_STATE(8960)] = 306562, - [SMALL_STATE(8961)] = 306569, - [SMALL_STATE(8962)] = 306576, - [SMALL_STATE(8963)] = 306583, - [SMALL_STATE(8964)] = 306590, - [SMALL_STATE(8965)] = 306597, - [SMALL_STATE(8966)] = 306604, - [SMALL_STATE(8967)] = 306611, - [SMALL_STATE(8968)] = 306618, - [SMALL_STATE(8969)] = 306625, - [SMALL_STATE(8970)] = 306632, - [SMALL_STATE(8971)] = 306639, - [SMALL_STATE(8972)] = 306646, - [SMALL_STATE(8973)] = 306653, - [SMALL_STATE(8974)] = 306660, - [SMALL_STATE(8975)] = 306667, - [SMALL_STATE(8976)] = 306674, - [SMALL_STATE(8977)] = 306681, - [SMALL_STATE(8978)] = 306688, - [SMALL_STATE(8979)] = 306695, - [SMALL_STATE(8980)] = 306702, - [SMALL_STATE(8981)] = 306709, - [SMALL_STATE(8982)] = 306716, - [SMALL_STATE(8983)] = 306723, - [SMALL_STATE(8984)] = 306730, - [SMALL_STATE(8985)] = 306737, - [SMALL_STATE(8986)] = 306744, - [SMALL_STATE(8987)] = 306751, - [SMALL_STATE(8988)] = 306758, - [SMALL_STATE(8989)] = 306765, - [SMALL_STATE(8990)] = 306772, - [SMALL_STATE(8991)] = 306779, - [SMALL_STATE(8992)] = 306786, - [SMALL_STATE(8993)] = 306793, - [SMALL_STATE(8994)] = 306800, - [SMALL_STATE(8995)] = 306807, - [SMALL_STATE(8996)] = 306814, - [SMALL_STATE(8997)] = 306821, - [SMALL_STATE(8998)] = 306828, - [SMALL_STATE(8999)] = 306835, - [SMALL_STATE(9000)] = 306842, - [SMALL_STATE(9001)] = 306849, - [SMALL_STATE(9002)] = 306856, - [SMALL_STATE(9003)] = 306863, - [SMALL_STATE(9004)] = 306870, - [SMALL_STATE(9005)] = 306877, - [SMALL_STATE(9006)] = 306884, - [SMALL_STATE(9007)] = 306891, - [SMALL_STATE(9008)] = 306898, - [SMALL_STATE(9009)] = 306905, - [SMALL_STATE(9010)] = 306912, - [SMALL_STATE(9011)] = 306919, - [SMALL_STATE(9012)] = 306926, - [SMALL_STATE(9013)] = 306933, - [SMALL_STATE(9014)] = 306940, - [SMALL_STATE(9015)] = 306947, - [SMALL_STATE(9016)] = 306954, - [SMALL_STATE(9017)] = 306961, - [SMALL_STATE(9018)] = 306968, - [SMALL_STATE(9019)] = 306975, - [SMALL_STATE(9020)] = 306982, - [SMALL_STATE(9021)] = 306989, - [SMALL_STATE(9022)] = 306996, - [SMALL_STATE(9023)] = 307003, - [SMALL_STATE(9024)] = 307010, - [SMALL_STATE(9025)] = 307017, - [SMALL_STATE(9026)] = 307024, - [SMALL_STATE(9027)] = 307031, - [SMALL_STATE(9028)] = 307038, - [SMALL_STATE(9029)] = 307045, - [SMALL_STATE(9030)] = 307052, - [SMALL_STATE(9031)] = 307059, - [SMALL_STATE(9032)] = 307066, - [SMALL_STATE(9033)] = 307073, - [SMALL_STATE(9034)] = 307080, - [SMALL_STATE(9035)] = 307087, - [SMALL_STATE(9036)] = 307094, - [SMALL_STATE(9037)] = 307101, - [SMALL_STATE(9038)] = 307108, - [SMALL_STATE(9039)] = 307115, - [SMALL_STATE(9040)] = 307122, - [SMALL_STATE(9041)] = 307129, - [SMALL_STATE(9042)] = 307136, - [SMALL_STATE(9043)] = 307143, - [SMALL_STATE(9044)] = 307150, - [SMALL_STATE(9045)] = 307157, - [SMALL_STATE(9046)] = 307164, - [SMALL_STATE(9047)] = 307171, - [SMALL_STATE(9048)] = 307178, - [SMALL_STATE(9049)] = 307185, - [SMALL_STATE(9050)] = 307192, - [SMALL_STATE(9051)] = 307199, - [SMALL_STATE(9052)] = 307206, - [SMALL_STATE(9053)] = 307213, - [SMALL_STATE(9054)] = 307220, - [SMALL_STATE(9055)] = 307227, - [SMALL_STATE(9056)] = 307234, - [SMALL_STATE(9057)] = 307241, - [SMALL_STATE(9058)] = 307248, - [SMALL_STATE(9059)] = 307255, - [SMALL_STATE(9060)] = 307262, - [SMALL_STATE(9061)] = 307269, - [SMALL_STATE(9062)] = 307276, - [SMALL_STATE(9063)] = 307283, - [SMALL_STATE(9064)] = 307290, - [SMALL_STATE(9065)] = 307297, - [SMALL_STATE(9066)] = 307304, - [SMALL_STATE(9067)] = 307311, - [SMALL_STATE(9068)] = 307318, - [SMALL_STATE(9069)] = 307325, - [SMALL_STATE(9070)] = 307332, - [SMALL_STATE(9071)] = 307339, - [SMALL_STATE(9072)] = 307346, - [SMALL_STATE(9073)] = 307353, - [SMALL_STATE(9074)] = 307360, - [SMALL_STATE(9075)] = 307367, - [SMALL_STATE(9076)] = 307374, - [SMALL_STATE(9077)] = 307381, - [SMALL_STATE(9078)] = 307388, - [SMALL_STATE(9079)] = 307395, - [SMALL_STATE(9080)] = 307402, - [SMALL_STATE(9081)] = 307409, - [SMALL_STATE(9082)] = 307416, - [SMALL_STATE(9083)] = 307423, - [SMALL_STATE(9084)] = 307430, - [SMALL_STATE(9085)] = 307437, - [SMALL_STATE(9086)] = 307444, + [SMALL_STATE(3721)] = 0, + [SMALL_STATE(3722)] = 71, + [SMALL_STATE(3723)] = 146, + [SMALL_STATE(3724)] = 217, + [SMALL_STATE(3725)] = 294, + [SMALL_STATE(3726)] = 369, + [SMALL_STATE(3727)] = 446, + [SMALL_STATE(3728)] = 517, + [SMALL_STATE(3729)] = 594, + [SMALL_STATE(3730)] = 665, + [SMALL_STATE(3731)] = 740, + [SMALL_STATE(3732)] = 815, + [SMALL_STATE(3733)] = 890, + [SMALL_STATE(3734)] = 969, + [SMALL_STATE(3735)] = 1048, + [SMALL_STATE(3736)] = 1119, + [SMALL_STATE(3737)] = 1190, + [SMALL_STATE(3738)] = 1261, + [SMALL_STATE(3739)] = 1344, + [SMALL_STATE(3740)] = 1419, + [SMALL_STATE(3741)] = 1502, + [SMALL_STATE(3742)] = 1573, + [SMALL_STATE(3743)] = 1644, + [SMALL_STATE(3744)] = 1721, + [SMALL_STATE(3745)] = 1804, + [SMALL_STATE(3746)] = 1875, + [SMALL_STATE(3747)] = 1950, + [SMALL_STATE(3748)] = 2021, + [SMALL_STATE(3749)] = 2092, + [SMALL_STATE(3750)] = 2163, + [SMALL_STATE(3751)] = 2234, + [SMALL_STATE(3752)] = 2305, + [SMALL_STATE(3753)] = 2376, + [SMALL_STATE(3754)] = 2447, + [SMALL_STATE(3755)] = 2518, + [SMALL_STATE(3756)] = 2589, + [SMALL_STATE(3757)] = 2660, + [SMALL_STATE(3758)] = 2731, + [SMALL_STATE(3759)] = 2802, + [SMALL_STATE(3760)] = 2873, + [SMALL_STATE(3761)] = 2944, + [SMALL_STATE(3762)] = 3015, + [SMALL_STATE(3763)] = 3090, + [SMALL_STATE(3764)] = 3179, + [SMALL_STATE(3765)] = 3250, + [SMALL_STATE(3766)] = 3321, + [SMALL_STATE(3767)] = 3392, + [SMALL_STATE(3768)] = 3475, + [SMALL_STATE(3769)] = 3546, + [SMALL_STATE(3770)] = 3617, + [SMALL_STATE(3771)] = 3688, + [SMALL_STATE(3772)] = 3769, + [SMALL_STATE(3773)] = 3840, + [SMALL_STATE(3774)] = 3929, + [SMALL_STATE(3775)] = 4004, + [SMALL_STATE(3776)] = 4075, + [SMALL_STATE(3777)] = 4146, + [SMALL_STATE(3778)] = 4217, + [SMALL_STATE(3779)] = 4294, + [SMALL_STATE(3780)] = 4373, + [SMALL_STATE(3781)] = 4444, + [SMALL_STATE(3782)] = 4515, + [SMALL_STATE(3783)] = 4586, + [SMALL_STATE(3784)] = 4657, + [SMALL_STATE(3785)] = 4728, + [SMALL_STATE(3786)] = 4799, + [SMALL_STATE(3787)] = 4870, + [SMALL_STATE(3788)] = 4947, + [SMALL_STATE(3789)] = 5018, + [SMALL_STATE(3790)] = 5089, + [SMALL_STATE(3791)] = 5172, + [SMALL_STATE(3792)] = 5243, + [SMALL_STATE(3793)] = 5314, + [SMALL_STATE(3794)] = 5391, + [SMALL_STATE(3795)] = 5462, + [SMALL_STATE(3796)] = 5537, + [SMALL_STATE(3797)] = 5608, + [SMALL_STATE(3798)] = 5685, + [SMALL_STATE(3799)] = 5764, + [SMALL_STATE(3800)] = 5847, + [SMALL_STATE(3801)] = 5926, + [SMALL_STATE(3802)] = 5997, + [SMALL_STATE(3803)] = 6074, + [SMALL_STATE(3804)] = 6145, + [SMALL_STATE(3805)] = 6228, + [SMALL_STATE(3806)] = 6299, + [SMALL_STATE(3807)] = 6370, + [SMALL_STATE(3808)] = 6459, + [SMALL_STATE(3809)] = 6530, + [SMALL_STATE(3810)] = 6601, + [SMALL_STATE(3811)] = 6684, + [SMALL_STATE(3812)] = 6755, + [SMALL_STATE(3813)] = 6838, + [SMALL_STATE(3814)] = 6921, + [SMALL_STATE(3815)] = 6992, + [SMALL_STATE(3816)] = 7063, + [SMALL_STATE(3817)] = 7140, + [SMALL_STATE(3818)] = 7211, + [SMALL_STATE(3819)] = 7286, + [SMALL_STATE(3820)] = 7357, + [SMALL_STATE(3821)] = 7440, + [SMALL_STATE(3822)] = 7511, + [SMALL_STATE(3823)] = 7588, + [SMALL_STATE(3824)] = 7659, + [SMALL_STATE(3825)] = 7730, + [SMALL_STATE(3826)] = 7801, + [SMALL_STATE(3827)] = 7872, + [SMALL_STATE(3828)] = 7943, + [SMALL_STATE(3829)] = 8026, + [SMALL_STATE(3830)] = 8097, + [SMALL_STATE(3831)] = 8168, + [SMALL_STATE(3832)] = 8251, + [SMALL_STATE(3833)] = 8328, + [SMALL_STATE(3834)] = 8405, + [SMALL_STATE(3835)] = 8480, + [SMALL_STATE(3836)] = 8555, + [SMALL_STATE(3837)] = 8626, + [SMALL_STATE(3838)] = 8703, + [SMALL_STATE(3839)] = 8786, + [SMALL_STATE(3840)] = 8857, + [SMALL_STATE(3841)] = 8928, + [SMALL_STATE(3842)] = 8999, + [SMALL_STATE(3843)] = 9082, + [SMALL_STATE(3844)] = 9153, + [SMALL_STATE(3845)] = 9224, + [SMALL_STATE(3846)] = 9307, + [SMALL_STATE(3847)] = 9378, + [SMALL_STATE(3848)] = 9449, + [SMALL_STATE(3849)] = 9520, + [SMALL_STATE(3850)] = 9591, + [SMALL_STATE(3851)] = 9661, + [SMALL_STATE(3852)] = 9749, + [SMALL_STATE(3853)] = 9825, + [SMALL_STATE(3854)] = 9895, + [SMALL_STATE(3855)] = 9965, + [SMALL_STATE(3856)] = 10035, + [SMALL_STATE(3857)] = 10105, + [SMALL_STATE(3858)] = 10203, + [SMALL_STATE(3859)] = 10291, + [SMALL_STATE(3860)] = 10369, + [SMALL_STATE(3861)] = 10445, + [SMALL_STATE(3862)] = 10533, + [SMALL_STATE(3863)] = 10613, + [SMALL_STATE(3864)] = 10725, + [SMALL_STATE(3865)] = 10801, + [SMALL_STATE(3866)] = 10913, + [SMALL_STATE(3867)] = 10983, + [SMALL_STATE(3868)] = 11053, + [SMALL_STATE(3869)] = 11123, + [SMALL_STATE(3870)] = 11193, + [SMALL_STATE(3871)] = 11263, + [SMALL_STATE(3872)] = 11333, + [SMALL_STATE(3873)] = 11403, + [SMALL_STATE(3874)] = 11473, + [SMALL_STATE(3875)] = 11543, + [SMALL_STATE(3876)] = 11613, + [SMALL_STATE(3877)] = 11683, + [SMALL_STATE(3878)] = 11753, + [SMALL_STATE(3879)] = 11823, + [SMALL_STATE(3880)] = 11893, + [SMALL_STATE(3881)] = 11963, + [SMALL_STATE(3882)] = 12033, + [SMALL_STATE(3883)] = 12103, + [SMALL_STATE(3884)] = 12173, + [SMALL_STATE(3885)] = 12243, + [SMALL_STATE(3886)] = 12313, + [SMALL_STATE(3887)] = 12425, + [SMALL_STATE(3888)] = 12497, + [SMALL_STATE(3889)] = 12609, + [SMALL_STATE(3890)] = 12721, + [SMALL_STATE(3891)] = 12791, + [SMALL_STATE(3892)] = 12889, + [SMALL_STATE(3893)] = 12987, + [SMALL_STATE(3894)] = 13063, + [SMALL_STATE(3895)] = 13175, + [SMALL_STATE(3896)] = 13245, + [SMALL_STATE(3897)] = 13343, + [SMALL_STATE(3898)] = 13441, + [SMALL_STATE(3899)] = 13511, + [SMALL_STATE(3900)] = 13599, + [SMALL_STATE(3901)] = 13669, + [SMALL_STATE(3902)] = 13739, + [SMALL_STATE(3903)] = 13827, + [SMALL_STATE(3904)] = 13925, + [SMALL_STATE(3905)] = 14011, + [SMALL_STATE(3906)] = 14081, + [SMALL_STATE(3907)] = 14151, + [SMALL_STATE(3908)] = 14229, + [SMALL_STATE(3909)] = 14299, + [SMALL_STATE(3910)] = 14379, + [SMALL_STATE(3911)] = 14455, + [SMALL_STATE(3912)] = 14535, + [SMALL_STATE(3913)] = 14609, + [SMALL_STATE(3914)] = 14683, + [SMALL_STATE(3915)] = 14757, + [SMALL_STATE(3916)] = 14845, + [SMALL_STATE(3917)] = 14919, + [SMALL_STATE(3918)] = 14993, + [SMALL_STATE(3919)] = 15091, + [SMALL_STATE(3920)] = 15189, + [SMALL_STATE(3921)] = 15277, + [SMALL_STATE(3922)] = 15375, + [SMALL_STATE(3923)] = 15449, + [SMALL_STATE(3924)] = 15523, + [SMALL_STATE(3925)] = 15597, + [SMALL_STATE(3926)] = 15671, + [SMALL_STATE(3927)] = 15745, + [SMALL_STATE(3928)] = 15827, + [SMALL_STATE(3929)] = 15909, + [SMALL_STATE(3930)] = 16007, + [SMALL_STATE(3931)] = 16105, + [SMALL_STATE(3932)] = 16179, + [SMALL_STATE(3933)] = 16259, + [SMALL_STATE(3934)] = 16333, + [SMALL_STATE(3935)] = 16407, + [SMALL_STATE(3936)] = 16505, + [SMALL_STATE(3937)] = 16593, + [SMALL_STATE(3938)] = 16676, + [SMALL_STATE(3939)] = 16745, + [SMALL_STATE(3940)] = 16844, + [SMALL_STATE(3941)] = 16913, + [SMALL_STATE(3942)] = 16982, + [SMALL_STATE(3943)] = 17051, + [SMALL_STATE(3944)] = 17120, + [SMALL_STATE(3945)] = 17189, + [SMALL_STATE(3946)] = 17258, + [SMALL_STATE(3947)] = 17327, + [SMALL_STATE(3948)] = 17396, + [SMALL_STATE(3949)] = 17465, + [SMALL_STATE(3950)] = 17534, + [SMALL_STATE(3951)] = 17603, + [SMALL_STATE(3952)] = 17672, + [SMALL_STATE(3953)] = 17741, + [SMALL_STATE(3954)] = 17810, + [SMALL_STATE(3955)] = 17887, + [SMALL_STATE(3956)] = 17992, + [SMALL_STATE(3957)] = 18061, + [SMALL_STATE(3958)] = 18166, + [SMALL_STATE(3959)] = 18235, + [SMALL_STATE(3960)] = 18340, + [SMALL_STATE(3961)] = 18409, + [SMALL_STATE(3962)] = 18514, + [SMALL_STATE(3963)] = 18619, + [SMALL_STATE(3964)] = 18688, + [SMALL_STATE(3965)] = 18793, + [SMALL_STATE(3966)] = 18870, + [SMALL_STATE(3967)] = 18941, + [SMALL_STATE(3968)] = 19010, + [SMALL_STATE(3969)] = 19079, + [SMALL_STATE(3970)] = 19184, + [SMALL_STATE(3971)] = 19253, + [SMALL_STATE(3972)] = 19358, + [SMALL_STATE(3973)] = 19457, + [SMALL_STATE(3974)] = 19526, + [SMALL_STATE(3975)] = 19595, + [SMALL_STATE(3976)] = 19670, + [SMALL_STATE(3977)] = 19749, + [SMALL_STATE(3978)] = 19826, + [SMALL_STATE(3979)] = 19895, + [SMALL_STATE(3980)] = 19964, + [SMALL_STATE(3981)] = 20063, + [SMALL_STATE(3982)] = 20134, + [SMALL_STATE(3983)] = 20205, + [SMALL_STATE(3984)] = 20292, + [SMALL_STATE(3985)] = 20379, + [SMALL_STATE(3986)] = 20474, + [SMALL_STATE(3987)] = 20569, + [SMALL_STATE(3988)] = 20664, + [SMALL_STATE(3989)] = 20739, + [SMALL_STATE(3990)] = 20808, + [SMALL_STATE(3991)] = 20931, + [SMALL_STATE(3992)] = 21054, + [SMALL_STATE(3993)] = 21123, + [SMALL_STATE(3994)] = 21222, + [SMALL_STATE(3995)] = 21327, + [SMALL_STATE(3996)] = 21396, + [SMALL_STATE(3997)] = 21501, + [SMALL_STATE(3998)] = 21570, + [SMALL_STATE(3999)] = 21653, + [SMALL_STATE(4000)] = 21734, + [SMALL_STATE(4001)] = 21803, + [SMALL_STATE(4002)] = 21880, + [SMALL_STATE(4003)] = 21959, + [SMALL_STATE(4004)] = 22038, + [SMALL_STATE(4005)] = 22115, + [SMALL_STATE(4006)] = 22192, + [SMALL_STATE(4007)] = 22261, + [SMALL_STATE(4008)] = 22330, + [SMALL_STATE(4009)] = 22399, + [SMALL_STATE(4010)] = 22504, + [SMALL_STATE(4011)] = 22573, + [SMALL_STATE(4012)] = 22678, + [SMALL_STATE(4013)] = 22747, + [SMALL_STATE(4014)] = 22822, + [SMALL_STATE(4015)] = 22891, + [SMALL_STATE(4016)] = 22968, + [SMALL_STATE(4017)] = 23063, + [SMALL_STATE(4018)] = 23158, + [SMALL_STATE(4019)] = 23253, + [SMALL_STATE(4020)] = 23322, + [SMALL_STATE(4021)] = 23405, + [SMALL_STATE(4022)] = 23488, + [SMALL_STATE(4023)] = 23587, + [SMALL_STATE(4024)] = 23656, + [SMALL_STATE(4025)] = 23725, + [SMALL_STATE(4026)] = 23794, + [SMALL_STATE(4027)] = 23863, + [SMALL_STATE(4028)] = 23932, + [SMALL_STATE(4029)] = 24001, + [SMALL_STATE(4030)] = 24070, + [SMALL_STATE(4031)] = 24139, + [SMALL_STATE(4032)] = 24222, + [SMALL_STATE(4033)] = 24305, + [SMALL_STATE(4034)] = 24374, + [SMALL_STATE(4035)] = 24443, + [SMALL_STATE(4036)] = 24516, + [SMALL_STATE(4037)] = 24585, + [SMALL_STATE(4038)] = 24660, + [SMALL_STATE(4039)] = 24729, + [SMALL_STATE(4040)] = 24828, + [SMALL_STATE(4041)] = 24897, + [SMALL_STATE(4042)] = 24966, + [SMALL_STATE(4043)] = 25035, + [SMALL_STATE(4044)] = 25104, + [SMALL_STATE(4045)] = 25184, + [SMALL_STATE(4046)] = 25254, + [SMALL_STATE(4047)] = 25322, + [SMALL_STATE(4048)] = 25390, + [SMALL_STATE(4049)] = 25464, + [SMALL_STATE(4050)] = 25532, + [SMALL_STATE(4051)] = 25600, + [SMALL_STATE(4052)] = 25668, + [SMALL_STATE(4053)] = 25736, + [SMALL_STATE(4054)] = 25804, + [SMALL_STATE(4055)] = 25872, + [SMALL_STATE(4056)] = 25940, + [SMALL_STATE(4057)] = 26008, + [SMALL_STATE(4058)] = 26076, + [SMALL_STATE(4059)] = 26144, + [SMALL_STATE(4060)] = 26212, + [SMALL_STATE(4061)] = 26288, + [SMALL_STATE(4062)] = 26360, + [SMALL_STATE(4063)] = 26432, + [SMALL_STATE(4064)] = 26500, + [SMALL_STATE(4065)] = 26568, + [SMALL_STATE(4066)] = 26636, + [SMALL_STATE(4067)] = 26704, + [SMALL_STATE(4068)] = 26778, + [SMALL_STATE(4069)] = 26898, + [SMALL_STATE(4070)] = 26966, + [SMALL_STATE(4071)] = 27086, + [SMALL_STATE(4072)] = 27154, + [SMALL_STATE(4073)] = 27228, + [SMALL_STATE(4074)] = 27348, + [SMALL_STATE(4075)] = 27468, + [SMALL_STATE(4076)] = 27540, + [SMALL_STATE(4077)] = 27612, + [SMALL_STATE(4078)] = 27732, + [SMALL_STATE(4079)] = 27810, + [SMALL_STATE(4080)] = 27888, + [SMALL_STATE(4081)] = 27964, + [SMALL_STATE(4082)] = 28032, + [SMALL_STATE(4083)] = 28102, + [SMALL_STATE(4084)] = 28178, + [SMALL_STATE(4085)] = 28254, + [SMALL_STATE(4086)] = 28330, + [SMALL_STATE(4087)] = 28406, + [SMALL_STATE(4088)] = 28482, + [SMALL_STATE(4089)] = 28554, + [SMALL_STATE(4090)] = 28630, + [SMALL_STATE(4091)] = 28706, + [SMALL_STATE(4092)] = 28778, + [SMALL_STATE(4093)] = 28854, + [SMALL_STATE(4094)] = 28926, + [SMALL_STATE(4095)] = 28998, + [SMALL_STATE(4096)] = 29070, + [SMALL_STATE(4097)] = 29142, + [SMALL_STATE(4098)] = 29210, + [SMALL_STATE(4099)] = 29330, + [SMALL_STATE(4100)] = 29450, + [SMALL_STATE(4101)] = 29518, + [SMALL_STATE(4102)] = 29638, + [SMALL_STATE(4103)] = 29724, + [SMALL_STATE(4104)] = 29844, + [SMALL_STATE(4105)] = 29964, + [SMALL_STATE(4106)] = 30084, + [SMALL_STATE(4107)] = 30154, + [SMALL_STATE(4108)] = 30222, + [SMALL_STATE(4109)] = 30342, + [SMALL_STATE(4110)] = 30426, + [SMALL_STATE(4111)] = 30546, + [SMALL_STATE(4112)] = 30666, + [SMALL_STATE(4113)] = 30786, + [SMALL_STATE(4114)] = 30906, + [SMALL_STATE(4115)] = 31026, + [SMALL_STATE(4116)] = 31146, + [SMALL_STATE(4117)] = 31218, + [SMALL_STATE(4118)] = 31338, + [SMALL_STATE(4119)] = 31458, + [SMALL_STATE(4120)] = 31578, + [SMALL_STATE(4121)] = 31698, + [SMALL_STATE(4122)] = 31770, + [SMALL_STATE(4123)] = 31840, + [SMALL_STATE(4124)] = 31960, + [SMALL_STATE(4125)] = 32034, + [SMALL_STATE(4126)] = 32110, + [SMALL_STATE(4127)] = 32184, + [SMALL_STATE(4128)] = 32304, + [SMALL_STATE(4129)] = 32424, + [SMALL_STATE(4130)] = 32498, + [SMALL_STATE(4131)] = 32566, + [SMALL_STATE(4132)] = 32642, + [SMALL_STATE(4133)] = 32710, + [SMALL_STATE(4134)] = 32790, + [SMALL_STATE(4135)] = 32870, + [SMALL_STATE(4136)] = 32950, + [SMALL_STATE(4137)] = 33030, + [SMALL_STATE(4138)] = 33098, + [SMALL_STATE(4139)] = 33178, + [SMALL_STATE(4140)] = 33246, + [SMALL_STATE(4141)] = 33326, + [SMALL_STATE(4142)] = 33406, + [SMALL_STATE(4143)] = 33482, + [SMALL_STATE(4144)] = 33558, + [SMALL_STATE(4145)] = 33634, + [SMALL_STATE(4146)] = 33710, + [SMALL_STATE(4147)] = 33786, + [SMALL_STATE(4148)] = 33862, + [SMALL_STATE(4149)] = 33938, + [SMALL_STATE(4150)] = 34014, + [SMALL_STATE(4151)] = 34088, + [SMALL_STATE(4152)] = 34156, + [SMALL_STATE(4153)] = 34276, + [SMALL_STATE(4154)] = 34396, + [SMALL_STATE(4155)] = 34470, + [SMALL_STATE(4156)] = 34590, + [SMALL_STATE(4157)] = 34710, + [SMALL_STATE(4158)] = 34830, + [SMALL_STATE(4159)] = 34950, + [SMALL_STATE(4160)] = 35070, + [SMALL_STATE(4161)] = 35148, + [SMALL_STATE(4162)] = 35226, + [SMALL_STATE(4163)] = 35294, + [SMALL_STATE(4164)] = 35368, + [SMALL_STATE(4165)] = 35436, + [SMALL_STATE(4166)] = 35508, + [SMALL_STATE(4167)] = 35584, + [SMALL_STATE(4168)] = 35652, + [SMALL_STATE(4169)] = 35719, + [SMALL_STATE(4170)] = 35798, + [SMALL_STATE(4171)] = 35867, + [SMALL_STATE(4172)] = 35934, + [SMALL_STATE(4173)] = 36013, + [SMALL_STATE(4174)] = 36080, + [SMALL_STATE(4175)] = 36147, + [SMALL_STATE(4176)] = 36214, + [SMALL_STATE(4177)] = 36285, + [SMALL_STATE(4178)] = 36352, + [SMALL_STATE(4179)] = 36419, + [SMALL_STATE(4180)] = 36486, + [SMALL_STATE(4181)] = 36563, + [SMALL_STATE(4182)] = 36630, + [SMALL_STATE(4183)] = 36697, + [SMALL_STATE(4184)] = 36776, + [SMALL_STATE(4185)] = 36843, + [SMALL_STATE(4186)] = 36922, + [SMALL_STATE(4187)] = 36991, + [SMALL_STATE(4188)] = 37070, + [SMALL_STATE(4189)] = 37137, + [SMALL_STATE(4190)] = 37204, + [SMALL_STATE(4191)] = 37283, + [SMALL_STATE(4192)] = 37350, + [SMALL_STATE(4193)] = 37417, + [SMALL_STATE(4194)] = 37500, + [SMALL_STATE(4195)] = 37579, + [SMALL_STATE(4196)] = 37646, + [SMALL_STATE(4197)] = 37713, + [SMALL_STATE(4198)] = 37792, + [SMALL_STATE(4199)] = 37871, + [SMALL_STATE(4200)] = 37940, + [SMALL_STATE(4201)] = 38007, + [SMALL_STATE(4202)] = 38074, + [SMALL_STATE(4203)] = 38141, + [SMALL_STATE(4204)] = 38208, + [SMALL_STATE(4205)] = 38285, + [SMALL_STATE(4206)] = 38370, + [SMALL_STATE(4207)] = 38445, + [SMALL_STATE(4208)] = 38524, + [SMALL_STATE(4209)] = 38591, + [SMALL_STATE(4210)] = 38658, + [SMALL_STATE(4211)] = 38743, + [SMALL_STATE(4212)] = 38810, + [SMALL_STATE(4213)] = 38889, + [SMALL_STATE(4214)] = 38956, + [SMALL_STATE(4215)] = 39023, + [SMALL_STATE(4216)] = 39090, + [SMALL_STATE(4217)] = 39167, + [SMALL_STATE(4218)] = 39244, + [SMALL_STATE(4219)] = 39311, + [SMALL_STATE(4220)] = 39397, + [SMALL_STATE(4221)] = 39471, + [SMALL_STATE(4222)] = 39553, + [SMALL_STATE(4223)] = 39627, + [SMALL_STATE(4224)] = 39693, + [SMALL_STATE(4225)] = 39771, + [SMALL_STATE(4226)] = 39849, + [SMALL_STATE(4227)] = 39927, + [SMALL_STATE(4228)] = 40005, + [SMALL_STATE(4229)] = 40071, + [SMALL_STATE(4230)] = 40149, + [SMALL_STATE(4231)] = 40223, + [SMALL_STATE(4232)] = 40289, + [SMALL_STATE(4233)] = 40363, + [SMALL_STATE(4234)] = 40441, + [SMALL_STATE(4235)] = 40561, + [SMALL_STATE(4236)] = 40633, + [SMALL_STATE(4237)] = 40711, + [SMALL_STATE(4238)] = 40785, + [SMALL_STATE(4239)] = 40851, + [SMALL_STATE(4240)] = 40917, + [SMALL_STATE(4241)] = 40995, + [SMALL_STATE(4242)] = 41069, + [SMALL_STATE(4243)] = 41147, + [SMALL_STATE(4244)] = 41267, + [SMALL_STATE(4245)] = 41343, + [SMALL_STATE(4246)] = 41421, + [SMALL_STATE(4247)] = 41499, + [SMALL_STATE(4248)] = 41575, + [SMALL_STATE(4249)] = 41659, + [SMALL_STATE(4250)] = 41737, + [SMALL_STATE(4251)] = 41809, + [SMALL_STATE(4252)] = 41881, + [SMALL_STATE(4253)] = 41949, + [SMALL_STATE(4254)] = 42027, + [SMALL_STATE(4255)] = 42099, + [SMALL_STATE(4256)] = 42171, + [SMALL_STATE(4257)] = 42243, + [SMALL_STATE(4258)] = 42315, + [SMALL_STATE(4259)] = 42399, + [SMALL_STATE(4260)] = 42473, + [SMALL_STATE(4261)] = 42545, + [SMALL_STATE(4262)] = 42617, + [SMALL_STATE(4263)] = 42683, + [SMALL_STATE(4264)] = 42755, + [SMALL_STATE(4265)] = 42829, + [SMALL_STATE(4266)] = 42907, + [SMALL_STATE(4267)] = 42979, + [SMALL_STATE(4268)] = 43057, + [SMALL_STATE(4269)] = 43131, + [SMALL_STATE(4270)] = 43197, + [SMALL_STATE(4271)] = 43279, + [SMALL_STATE(4272)] = 43359, + [SMALL_STATE(4273)] = 43443, + [SMALL_STATE(4274)] = 43517, + [SMALL_STATE(4275)] = 43591, + [SMALL_STATE(4276)] = 43657, + [SMALL_STATE(4277)] = 43729, + [SMALL_STATE(4278)] = 43801, + [SMALL_STATE(4279)] = 43881, + [SMALL_STATE(4280)] = 43953, + [SMALL_STATE(4281)] = 44025, + [SMALL_STATE(4282)] = 44097, + [SMALL_STATE(4283)] = 44169, + [SMALL_STATE(4284)] = 44241, + [SMALL_STATE(4285)] = 44313, + [SMALL_STATE(4286)] = 44385, + [SMALL_STATE(4287)] = 44457, + [SMALL_STATE(4288)] = 44529, + [SMALL_STATE(4289)] = 44601, + [SMALL_STATE(4290)] = 44673, + [SMALL_STATE(4291)] = 44745, + [SMALL_STATE(4292)] = 44811, + [SMALL_STATE(4293)] = 44889, + [SMALL_STATE(4294)] = 44962, + [SMALL_STATE(4295)] = 45041, + [SMALL_STATE(4296)] = 45106, + [SMALL_STATE(4297)] = 45179, + [SMALL_STATE(4298)] = 45244, + [SMALL_STATE(4299)] = 45309, + [SMALL_STATE(4300)] = 45374, + [SMALL_STATE(4301)] = 45439, + [SMALL_STATE(4302)] = 45504, + [SMALL_STATE(4303)] = 45589, + [SMALL_STATE(4304)] = 45662, + [SMALL_STATE(4305)] = 45747, + [SMALL_STATE(4306)] = 45820, + [SMALL_STATE(4307)] = 45885, + [SMALL_STATE(4308)] = 45958, + [SMALL_STATE(4309)] = 46031, + [SMALL_STATE(4310)] = 46104, + [SMALL_STATE(4311)] = 46177, + [SMALL_STATE(4312)] = 46250, + [SMALL_STATE(4313)] = 46315, + [SMALL_STATE(4314)] = 46398, + [SMALL_STATE(4315)] = 46481, + [SMALL_STATE(4316)] = 46546, + [SMALL_STATE(4317)] = 46611, + [SMALL_STATE(4318)] = 46676, + [SMALL_STATE(4319)] = 46741, + [SMALL_STATE(4320)] = 46850, + [SMALL_STATE(4321)] = 46959, + [SMALL_STATE(4322)] = 47068, + [SMALL_STATE(4323)] = 47133, + [SMALL_STATE(4324)] = 47198, + [SMALL_STATE(4325)] = 47283, + [SMALL_STATE(4326)] = 47356, + [SMALL_STATE(4327)] = 47429, + [SMALL_STATE(4328)] = 47502, + [SMALL_STATE(4329)] = 47571, + [SMALL_STATE(4330)] = 47636, + [SMALL_STATE(4331)] = 47719, + [SMALL_STATE(4332)] = 47802, + [SMALL_STATE(4333)] = 47867, + [SMALL_STATE(4334)] = 47940, + [SMALL_STATE(4335)] = 48005, + [SMALL_STATE(4336)] = 48078, + [SMALL_STATE(4337)] = 48151, + [SMALL_STATE(4338)] = 48224, + [SMALL_STATE(4339)] = 48297, + [SMALL_STATE(4340)] = 48370, + [SMALL_STATE(4341)] = 48443, + [SMALL_STATE(4342)] = 48516, + [SMALL_STATE(4343)] = 48601, + [SMALL_STATE(4344)] = 48666, + [SMALL_STATE(4345)] = 48731, + [SMALL_STATE(4346)] = 48796, + [SMALL_STATE(4347)] = 48879, + [SMALL_STATE(4348)] = 48962, + [SMALL_STATE(4349)] = 49047, + [SMALL_STATE(4350)] = 49120, + [SMALL_STATE(4351)] = 49191, + [SMALL_STATE(4352)] = 49256, + [SMALL_STATE(4353)] = 49339, + [SMALL_STATE(4354)] = 49422, + [SMALL_STATE(4355)] = 49495, + [SMALL_STATE(4356)] = 49568, + [SMALL_STATE(4357)] = 49633, + [SMALL_STATE(4358)] = 49718, + [SMALL_STATE(4359)] = 49783, + [SMALL_STATE(4360)] = 49866, + [SMALL_STATE(4361)] = 49949, + [SMALL_STATE(4362)] = 50022, + [SMALL_STATE(4363)] = 50095, + [SMALL_STATE(4364)] = 50164, + [SMALL_STATE(4365)] = 50229, + [SMALL_STATE(4366)] = 50298, + [SMALL_STATE(4367)] = 50363, + [SMALL_STATE(4368)] = 50428, + [SMALL_STATE(4369)] = 50493, + [SMALL_STATE(4370)] = 50578, + [SMALL_STATE(4371)] = 50661, + [SMALL_STATE(4372)] = 50740, + [SMALL_STATE(4373)] = 50813, + [SMALL_STATE(4374)] = 50878, + [SMALL_STATE(4375)] = 50951, + [SMALL_STATE(4376)] = 51016, + [SMALL_STATE(4377)] = 51081, + [SMALL_STATE(4378)] = 51154, + [SMALL_STATE(4379)] = 51227, + [SMALL_STATE(4380)] = 51310, + [SMALL_STATE(4381)] = 51383, + [SMALL_STATE(4382)] = 51452, + [SMALL_STATE(4383)] = 51525, + [SMALL_STATE(4384)] = 51590, + [SMALL_STATE(4385)] = 51655, + [SMALL_STATE(4386)] = 51720, + [SMALL_STATE(4387)] = 51803, + [SMALL_STATE(4388)] = 51886, + [SMALL_STATE(4389)] = 51951, + [SMALL_STATE(4390)] = 52016, + [SMALL_STATE(4391)] = 52081, + [SMALL_STATE(4392)] = 52162, + [SMALL_STATE(4393)] = 52245, + [SMALL_STATE(4394)] = 52330, + [SMALL_STATE(4395)] = 52395, + [SMALL_STATE(4396)] = 52460, + [SMALL_STATE(4397)] = 52525, + [SMALL_STATE(4398)] = 52598, + [SMALL_STATE(4399)] = 52663, + [SMALL_STATE(4400)] = 52728, + [SMALL_STATE(4401)] = 52793, + [SMALL_STATE(4402)] = 52858, + [SMALL_STATE(4403)] = 52923, + [SMALL_STATE(4404)] = 52996, + [SMALL_STATE(4405)] = 53061, + [SMALL_STATE(4406)] = 53126, + [SMALL_STATE(4407)] = 53191, + [SMALL_STATE(4408)] = 53256, + [SMALL_STATE(4409)] = 53321, + [SMALL_STATE(4410)] = 53394, + [SMALL_STATE(4411)] = 53467, + [SMALL_STATE(4412)] = 53532, + [SMALL_STATE(4413)] = 53605, + [SMALL_STATE(4414)] = 53684, + [SMALL_STATE(4415)] = 53757, + [SMALL_STATE(4416)] = 53822, + [SMALL_STATE(4417)] = 53895, + [SMALL_STATE(4418)] = 53968, + [SMALL_STATE(4419)] = 54041, + [SMALL_STATE(4420)] = 54114, + [SMALL_STATE(4421)] = 54187, + [SMALL_STATE(4422)] = 54260, + [SMALL_STATE(4423)] = 54333, + [SMALL_STATE(4424)] = 54406, + [SMALL_STATE(4425)] = 54479, + [SMALL_STATE(4426)] = 54558, + [SMALL_STATE(4427)] = 54629, + [SMALL_STATE(4428)] = 54702, + [SMALL_STATE(4429)] = 54767, + [SMALL_STATE(4430)] = 54834, + [SMALL_STATE(4431)] = 54899, + [SMALL_STATE(4432)] = 55008, + [SMALL_STATE(4433)] = 55121, + [SMALL_STATE(4434)] = 55226, + [SMALL_STATE(4435)] = 55327, + [SMALL_STATE(4436)] = 55426, + [SMALL_STATE(4437)] = 55523, + [SMALL_STATE(4438)] = 55618, + [SMALL_STATE(4439)] = 55709, + [SMALL_STATE(4440)] = 55796, + [SMALL_STATE(4441)] = 55905, + [SMALL_STATE(4442)] = 56018, + [SMALL_STATE(4443)] = 56127, + [SMALL_STATE(4444)] = 56240, + [SMALL_STATE(4445)] = 56313, + [SMALL_STATE(4446)] = 56381, + [SMALL_STATE(4447)] = 56475, + [SMALL_STATE(4448)] = 56547, + [SMALL_STATE(4449)] = 56623, + [SMALL_STATE(4450)] = 56695, + [SMALL_STATE(4451)] = 56767, + [SMALL_STATE(4452)] = 56839, + [SMALL_STATE(4453)] = 56911, + [SMALL_STATE(4454)] = 56979, + [SMALL_STATE(4455)] = 57047, + [SMALL_STATE(4456)] = 57115, + [SMALL_STATE(4457)] = 57183, + [SMALL_STATE(4458)] = 57259, + [SMALL_STATE(4459)] = 57331, + [SMALL_STATE(4460)] = 57425, + [SMALL_STATE(4461)] = 57493, + [SMALL_STATE(4462)] = 57561, + [SMALL_STATE(4463)] = 57629, + [SMALL_STATE(4464)] = 57723, + [SMALL_STATE(4465)] = 57817, + [SMALL_STATE(4466)] = 57889, + [SMALL_STATE(4467)] = 57963, + [SMALL_STATE(4468)] = 58057, + [SMALL_STATE(4469)] = 58131, + [SMALL_STATE(4470)] = 58197, + [SMALL_STATE(4471)] = 58261, + [SMALL_STATE(4472)] = 58333, + [SMALL_STATE(4473)] = 58427, + [SMALL_STATE(4474)] = 58491, + [SMALL_STATE(4475)] = 58557, + [SMALL_STATE(4476)] = 58621, + [SMALL_STATE(4477)] = 58693, + [SMALL_STATE(4478)] = 58767, + [SMALL_STATE(4479)] = 58831, + [SMALL_STATE(4480)] = 58905, + [SMALL_STATE(4481)] = 58973, + [SMALL_STATE(4482)] = 59067, + [SMALL_STATE(4483)] = 59131, + [SMALL_STATE(4484)] = 59225, + [SMALL_STATE(4485)] = 59289, + [SMALL_STATE(4486)] = 59357, + [SMALL_STATE(4487)] = 59475, + [SMALL_STATE(4488)] = 59569, + [SMALL_STATE(4489)] = 59637, + [SMALL_STATE(4490)] = 59731, + [SMALL_STATE(4491)] = 59795, + [SMALL_STATE(4492)] = 59865, + [SMALL_STATE(4493)] = 59941, + [SMALL_STATE(4494)] = 60035, + [SMALL_STATE(4495)] = 60153, + [SMALL_STATE(4496)] = 60221, + [SMALL_STATE(4497)] = 60315, + [SMALL_STATE(4498)] = 60383, + [SMALL_STATE(4499)] = 60459, + [SMALL_STATE(4500)] = 60527, + [SMALL_STATE(4501)] = 60595, + [SMALL_STATE(4502)] = 60671, + [SMALL_STATE(4503)] = 60747, + [SMALL_STATE(4504)] = 60841, + [SMALL_STATE(4505)] = 60909, + [SMALL_STATE(4506)] = 61027, + [SMALL_STATE(4507)] = 61121, + [SMALL_STATE(4508)] = 61197, + [SMALL_STATE(4509)] = 61291, + [SMALL_STATE(4510)] = 61409, + [SMALL_STATE(4511)] = 61485, + [SMALL_STATE(4512)] = 61561, + [SMALL_STATE(4513)] = 61627, + [SMALL_STATE(4514)] = 61707, + [SMALL_STATE(4515)] = 61783, + [SMALL_STATE(4516)] = 61877, + [SMALL_STATE(4517)] = 61971, + [SMALL_STATE(4518)] = 62045, + [SMALL_STATE(4519)] = 62113, + [SMALL_STATE(4520)] = 62207, + [SMALL_STATE(4521)] = 62279, + [SMALL_STATE(4522)] = 62349, + [SMALL_STATE(4523)] = 62413, + [SMALL_STATE(4524)] = 62487, + [SMALL_STATE(4525)] = 62569, + [SMALL_STATE(4526)] = 62634, + [SMALL_STATE(4527)] = 62699, + [SMALL_STATE(4528)] = 62818, + [SMALL_STATE(4529)] = 62927, + [SMALL_STATE(4530)] = 62998, + [SMALL_STATE(4531)] = 63107, + [SMALL_STATE(4532)] = 63174, + [SMALL_STATE(4533)] = 63241, + [SMALL_STATE(4534)] = 63308, + [SMALL_STATE(4535)] = 63379, + [SMALL_STATE(4536)] = 63450, + [SMALL_STATE(4537)] = 63521, + [SMALL_STATE(4538)] = 63592, + [SMALL_STATE(4539)] = 63663, + [SMALL_STATE(4540)] = 63734, + [SMALL_STATE(4541)] = 63805, + [SMALL_STATE(4542)] = 63876, + [SMALL_STATE(4543)] = 63947, + [SMALL_STATE(4544)] = 64018, + [SMALL_STATE(4545)] = 64089, + [SMALL_STATE(4546)] = 64160, + [SMALL_STATE(4547)] = 64227, + [SMALL_STATE(4548)] = 64298, + [SMALL_STATE(4549)] = 64369, + [SMALL_STATE(4550)] = 64440, + [SMALL_STATE(4551)] = 64511, + [SMALL_STATE(4552)] = 64582, + [SMALL_STATE(4553)] = 64743, + [SMALL_STATE(4554)] = 64852, + [SMALL_STATE(4555)] = 64969, + [SMALL_STATE(4556)] = 65088, + [SMALL_STATE(4557)] = 65151, + [SMALL_STATE(4558)] = 65214, + [SMALL_STATE(4559)] = 65281, + [SMALL_STATE(4560)] = 65348, + [SMALL_STATE(4561)] = 65421, + [SMALL_STATE(4562)] = 65494, + [SMALL_STATE(4563)] = 65561, + [SMALL_STATE(4564)] = 65632, + [SMALL_STATE(4565)] = 65709, + [SMALL_STATE(4566)] = 65822, + [SMALL_STATE(4567)] = 65983, + [SMALL_STATE(4568)] = 66054, + [SMALL_STATE(4569)] = 66119, + [SMALL_STATE(4570)] = 66186, + [SMALL_STATE(4571)] = 66253, + [SMALL_STATE(4572)] = 66372, + [SMALL_STATE(4573)] = 66443, + [SMALL_STATE(4574)] = 66510, + [SMALL_STATE(4575)] = 66589, + [SMALL_STATE(4576)] = 66660, + [SMALL_STATE(4577)] = 66765, + [SMALL_STATE(4578)] = 66832, + [SMALL_STATE(4579)] = 66933, + [SMALL_STATE(4580)] = 67030, + [SMALL_STATE(4581)] = 67093, + [SMALL_STATE(4582)] = 67188, + [SMALL_STATE(4583)] = 67279, + [SMALL_STATE(4584)] = 67368, + [SMALL_STATE(4585)] = 67453, + [SMALL_STATE(4586)] = 67534, + [SMALL_STATE(4587)] = 67617, + [SMALL_STATE(4588)] = 67688, + [SMALL_STATE(4589)] = 67807, + [SMALL_STATE(4590)] = 67874, + [SMALL_STATE(4591)] = 67993, + [SMALL_STATE(4592)] = 68060, + [SMALL_STATE(4593)] = 68127, + [SMALL_STATE(4594)] = 68190, + [SMALL_STATE(4595)] = 68257, + [SMALL_STATE(4596)] = 68366, + [SMALL_STATE(4597)] = 68437, + [SMALL_STATE(4598)] = 68510, + [SMALL_STATE(4599)] = 68629, + [SMALL_STATE(4600)] = 68702, + [SMALL_STATE(4601)] = 68775, + [SMALL_STATE(4602)] = 68892, + [SMALL_STATE(4603)] = 68963, + [SMALL_STATE(4604)] = 69034, + [SMALL_STATE(4605)] = 69105, + [SMALL_STATE(4606)] = 69224, + [SMALL_STATE(4607)] = 69337, + [SMALL_STATE(4608)] = 69498, + [SMALL_STATE(4609)] = 69569, + [SMALL_STATE(4610)] = 69642, + [SMALL_STATE(4611)] = 69761, + [SMALL_STATE(4612)] = 69828, + [SMALL_STATE(4613)] = 69901, + [SMALL_STATE(4614)] = 69968, + [SMALL_STATE(4615)] = 70035, + [SMALL_STATE(4616)] = 70144, + [SMALL_STATE(4617)] = 70217, + [SMALL_STATE(4618)] = 70282, + [SMALL_STATE(4619)] = 70347, + [SMALL_STATE(4620)] = 70410, + [SMALL_STATE(4621)] = 70477, + [SMALL_STATE(4622)] = 70590, + [SMALL_STATE(4623)] = 70657, + [SMALL_STATE(4624)] = 70724, + [SMALL_STATE(4625)] = 70795, + [SMALL_STATE(4626)] = 70862, + [SMALL_STATE(4627)] = 70935, + [SMALL_STATE(4628)] = 71008, + [SMALL_STATE(4629)] = 71075, + [SMALL_STATE(4630)] = 71140, + [SMALL_STATE(4631)] = 71213, + [SMALL_STATE(4632)] = 71278, + [SMALL_STATE(4633)] = 71355, + [SMALL_STATE(4634)] = 71418, + [SMALL_STATE(4635)] = 71483, + [SMALL_STATE(4636)] = 71554, + [SMALL_STATE(4637)] = 71627, + [SMALL_STATE(4638)] = 71710, + [SMALL_STATE(4639)] = 71775, + [SMALL_STATE(4640)] = 71848, + [SMALL_STATE(4641)] = 71913, + [SMALL_STATE(4642)] = 71978, + [SMALL_STATE(4643)] = 72047, + [SMALL_STATE(4644)] = 72114, + [SMALL_STATE(4645)] = 72177, + [SMALL_STATE(4646)] = 72338, + [SMALL_STATE(4647)] = 72421, + [SMALL_STATE(4648)] = 72486, + [SMALL_STATE(4649)] = 72553, + [SMALL_STATE(4650)] = 72626, + [SMALL_STATE(4651)] = 72735, + [SMALL_STATE(4652)] = 72854, + [SMALL_STATE(4653)] = 72919, + [SMALL_STATE(4654)] = 72992, + [SMALL_STATE(4655)] = 73057, + [SMALL_STATE(4656)] = 73128, + [SMALL_STATE(4657)] = 73191, + [SMALL_STATE(4658)] = 73253, + [SMALL_STATE(4659)] = 73315, + [SMALL_STATE(4660)] = 73377, + [SMALL_STATE(4661)] = 73439, + [SMALL_STATE(4662)] = 73555, + [SMALL_STATE(4663)] = 73617, + [SMALL_STATE(4664)] = 73685, + [SMALL_STATE(4665)] = 73757, + [SMALL_STATE(4666)] = 73819, + [SMALL_STATE(4667)] = 73881, + [SMALL_STATE(4668)] = 73953, + [SMALL_STATE(4669)] = 74025, + [SMALL_STATE(4670)] = 74097, + [SMALL_STATE(4671)] = 74169, + [SMALL_STATE(4672)] = 74241, + [SMALL_STATE(4673)] = 74303, + [SMALL_STATE(4674)] = 74365, + [SMALL_STATE(4675)] = 74477, + [SMALL_STATE(4676)] = 74549, + [SMALL_STATE(4677)] = 74611, + [SMALL_STATE(4678)] = 74679, + [SMALL_STATE(4679)] = 74791, + [SMALL_STATE(4680)] = 74853, + [SMALL_STATE(4681)] = 74915, + [SMALL_STATE(4682)] = 74977, + [SMALL_STATE(4683)] = 75039, + [SMALL_STATE(4684)] = 75107, + [SMALL_STATE(4685)] = 75169, + [SMALL_STATE(4686)] = 75231, + [SMALL_STATE(4687)] = 75301, + [SMALL_STATE(4688)] = 75371, + [SMALL_STATE(4689)] = 75441, + [SMALL_STATE(4690)] = 75549, + [SMALL_STATE(4691)] = 75619, + [SMALL_STATE(4692)] = 75687, + [SMALL_STATE(4693)] = 75757, + [SMALL_STATE(4694)] = 75827, + [SMALL_STATE(4695)] = 75897, + [SMALL_STATE(4696)] = 75967, + [SMALL_STATE(4697)] = 76039, + [SMALL_STATE(4698)] = 76101, + [SMALL_STATE(4699)] = 76173, + [SMALL_STATE(4700)] = 76239, + [SMALL_STATE(4701)] = 76301, + [SMALL_STATE(4702)] = 76417, + [SMALL_STATE(4703)] = 76479, + [SMALL_STATE(4704)] = 76595, + [SMALL_STATE(4705)] = 76657, + [SMALL_STATE(4706)] = 76719, + [SMALL_STATE(4707)] = 76781, + [SMALL_STATE(4708)] = 76843, + [SMALL_STATE(4709)] = 76905, + [SMALL_STATE(4710)] = 76971, + [SMALL_STATE(4711)] = 77043, + [SMALL_STATE(4712)] = 77155, + [SMALL_STATE(4713)] = 77217, + [SMALL_STATE(4714)] = 77333, + [SMALL_STATE(4715)] = 77395, + [SMALL_STATE(4716)] = 77467, + [SMALL_STATE(4717)] = 77571, + [SMALL_STATE(4718)] = 77671, + [SMALL_STATE(4719)] = 77767, + [SMALL_STATE(4720)] = 77839, + [SMALL_STATE(4721)] = 77933, + [SMALL_STATE(4722)] = 77995, + [SMALL_STATE(4723)] = 78057, + [SMALL_STATE(4724)] = 78129, + [SMALL_STATE(4725)] = 78219, + [SMALL_STATE(4726)] = 78335, + [SMALL_STATE(4727)] = 78397, + [SMALL_STATE(4728)] = 78469, + [SMALL_STATE(4729)] = 78535, + [SMALL_STATE(4730)] = 78601, + [SMALL_STATE(4731)] = 78717, + [SMALL_STATE(4732)] = 78781, + [SMALL_STATE(4733)] = 78849, + [SMALL_STATE(4734)] = 78921, + [SMALL_STATE(4735)] = 79037, + [SMALL_STATE(4736)] = 79153, + [SMALL_STATE(4737)] = 79225, + [SMALL_STATE(4738)] = 79287, + [SMALL_STATE(4739)] = 79353, + [SMALL_STATE(4740)] = 79415, + [SMALL_STATE(4741)] = 79477, + [SMALL_STATE(4742)] = 79593, + [SMALL_STATE(4743)] = 79655, + [SMALL_STATE(4744)] = 79717, + [SMALL_STATE(4745)] = 79779, + [SMALL_STATE(4746)] = 79845, + [SMALL_STATE(4747)] = 79907, + [SMALL_STATE(4748)] = 79979, + [SMALL_STATE(4749)] = 80041, + [SMALL_STATE(4750)] = 80107, + [SMALL_STATE(4751)] = 80169, + [SMALL_STATE(4752)] = 80257, + [SMALL_STATE(4753)] = 80341, + [SMALL_STATE(4754)] = 80407, + [SMALL_STATE(4755)] = 80523, + [SMALL_STATE(4756)] = 80585, + [SMALL_STATE(4757)] = 80647, + [SMALL_STATE(4758)] = 80717, + [SMALL_STATE(4759)] = 80779, + [SMALL_STATE(4760)] = 80841, + [SMALL_STATE(4761)] = 80903, + [SMALL_STATE(4762)] = 80965, + [SMALL_STATE(4763)] = 81031, + [SMALL_STATE(4764)] = 81097, + [SMALL_STATE(4765)] = 81205, + [SMALL_STATE(4766)] = 81321, + [SMALL_STATE(4767)] = 81429, + [SMALL_STATE(4768)] = 81491, + [SMALL_STATE(4769)] = 81599, + [SMALL_STATE(4770)] = 81715, + [SMALL_STATE(4771)] = 81777, + [SMALL_STATE(4772)] = 81839, + [SMALL_STATE(4773)] = 81901, + [SMALL_STATE(4774)] = 81963, + [SMALL_STATE(4775)] = 82025, + [SMALL_STATE(4776)] = 82087, + [SMALL_STATE(4777)] = 82153, + [SMALL_STATE(4778)] = 82269, + [SMALL_STATE(4779)] = 82337, + [SMALL_STATE(4780)] = 82399, + [SMALL_STATE(4781)] = 82461, + [SMALL_STATE(4782)] = 82523, + [SMALL_STATE(4783)] = 82639, + [SMALL_STATE(4784)] = 82707, + [SMALL_STATE(4785)] = 82769, + [SMALL_STATE(4786)] = 82885, + [SMALL_STATE(4787)] = 82947, + [SMALL_STATE(4788)] = 83063, + [SMALL_STATE(4789)] = 83179, + [SMALL_STATE(4790)] = 83295, + [SMALL_STATE(4791)] = 83359, + [SMALL_STATE(4792)] = 83475, + [SMALL_STATE(4793)] = 83591, + [SMALL_STATE(4794)] = 83707, + [SMALL_STATE(4795)] = 83823, + [SMALL_STATE(4796)] = 83939, + [SMALL_STATE(4797)] = 84055, + [SMALL_STATE(4798)] = 84171, + [SMALL_STATE(4799)] = 84287, + [SMALL_STATE(4800)] = 84353, + [SMALL_STATE(4801)] = 84415, + [SMALL_STATE(4802)] = 84485, + [SMALL_STATE(4803)] = 84555, + [SMALL_STATE(4804)] = 84671, + [SMALL_STATE(4805)] = 84787, + [SMALL_STATE(4806)] = 84903, + [SMALL_STATE(4807)] = 85019, + [SMALL_STATE(4808)] = 85135, + [SMALL_STATE(4809)] = 85197, + [SMALL_STATE(4810)] = 85259, + [SMALL_STATE(4811)] = 85321, + [SMALL_STATE(4812)] = 85383, + [SMALL_STATE(4813)] = 85445, + [SMALL_STATE(4814)] = 85507, + [SMALL_STATE(4815)] = 85571, + [SMALL_STATE(4816)] = 85633, + [SMALL_STATE(4817)] = 85695, + [SMALL_STATE(4818)] = 85757, + [SMALL_STATE(4819)] = 85819, + [SMALL_STATE(4820)] = 85881, + [SMALL_STATE(4821)] = 85997, + [SMALL_STATE(4822)] = 86059, + [SMALL_STATE(4823)] = 86123, + [SMALL_STATE(4824)] = 86239, + [SMALL_STATE(4825)] = 86311, + [SMALL_STATE(4826)] = 86427, + [SMALL_STATE(4827)] = 86489, + [SMALL_STATE(4828)] = 86551, + [SMALL_STATE(4829)] = 86667, + [SMALL_STATE(4830)] = 86729, + [SMALL_STATE(4831)] = 86845, + [SMALL_STATE(4832)] = 86923, + [SMALL_STATE(4833)] = 86995, + [SMALL_STATE(4834)] = 87061, + [SMALL_STATE(4835)] = 87123, + [SMALL_STATE(4836)] = 87185, + [SMALL_STATE(4837)] = 87301, + [SMALL_STATE(4838)] = 87417, + [SMALL_STATE(4839)] = 87479, + [SMALL_STATE(4840)] = 87541, + [SMALL_STATE(4841)] = 87621, + [SMALL_STATE(4842)] = 87703, + [SMALL_STATE(4843)] = 87819, + [SMALL_STATE(4844)] = 87935, + [SMALL_STATE(4845)] = 87997, + [SMALL_STATE(4846)] = 88113, + [SMALL_STATE(4847)] = 88175, + [SMALL_STATE(4848)] = 88237, + [SMALL_STATE(4849)] = 88353, + [SMALL_STATE(4850)] = 88469, + [SMALL_STATE(4851)] = 88585, + [SMALL_STATE(4852)] = 88653, + [SMALL_STATE(4853)] = 88727, + [SMALL_STATE(4854)] = 88843, + [SMALL_STATE(4855)] = 88959, + [SMALL_STATE(4856)] = 89021, + [SMALL_STATE(4857)] = 89137, + [SMALL_STATE(4858)] = 89253, + [SMALL_STATE(4859)] = 89369, + [SMALL_STATE(4860)] = 89431, + [SMALL_STATE(4861)] = 89547, + [SMALL_STATE(4862)] = 89663, + [SMALL_STATE(4863)] = 89779, + [SMALL_STATE(4864)] = 89895, + [SMALL_STATE(4865)] = 90011, + [SMALL_STATE(4866)] = 90127, + [SMALL_STATE(4867)] = 90189, + [SMALL_STATE(4868)] = 90251, + [SMALL_STATE(4869)] = 90321, + [SMALL_STATE(4870)] = 90383, + [SMALL_STATE(4871)] = 90445, + [SMALL_STATE(4872)] = 90561, + [SMALL_STATE(4873)] = 90677, + [SMALL_STATE(4874)] = 90751, + [SMALL_STATE(4875)] = 90813, + [SMALL_STATE(4876)] = 90879, + [SMALL_STATE(4877)] = 90949, + [SMALL_STATE(4878)] = 91065, + [SMALL_STATE(4879)] = 91181, + [SMALL_STATE(4880)] = 91289, + [SMALL_STATE(4881)] = 91405, + [SMALL_STATE(4882)] = 91521, + [SMALL_STATE(4883)] = 91637, + [SMALL_STATE(4884)] = 91753, + [SMALL_STATE(4885)] = 91869, + [SMALL_STATE(4886)] = 91985, + [SMALL_STATE(4887)] = 92101, + [SMALL_STATE(4888)] = 92217, + [SMALL_STATE(4889)] = 92333, + [SMALL_STATE(4890)] = 92449, + [SMALL_STATE(4891)] = 92565, + [SMALL_STATE(4892)] = 92681, + [SMALL_STATE(4893)] = 92797, + [SMALL_STATE(4894)] = 92859, + [SMALL_STATE(4895)] = 92925, + [SMALL_STATE(4896)] = 93041, + [SMALL_STATE(4897)] = 93157, + [SMALL_STATE(4898)] = 93273, + [SMALL_STATE(4899)] = 93345, + [SMALL_STATE(4900)] = 93417, + [SMALL_STATE(4901)] = 93479, + [SMALL_STATE(4902)] = 93541, + [SMALL_STATE(4903)] = 93649, + [SMALL_STATE(4904)] = 93717, + [SMALL_STATE(4905)] = 93779, + [SMALL_STATE(4906)] = 93895, + [SMALL_STATE(4907)] = 94011, + [SMALL_STATE(4908)] = 94127, + [SMALL_STATE(4909)] = 94243, + [SMALL_STATE(4910)] = 94359, + [SMALL_STATE(4911)] = 94475, + [SMALL_STATE(4912)] = 94591, + [SMALL_STATE(4913)] = 94707, + [SMALL_STATE(4914)] = 94823, + [SMALL_STATE(4915)] = 94939, + [SMALL_STATE(4916)] = 95055, + [SMALL_STATE(4917)] = 95171, + [SMALL_STATE(4918)] = 95233, + [SMALL_STATE(4919)] = 95305, + [SMALL_STATE(4920)] = 95373, + [SMALL_STATE(4921)] = 95445, + [SMALL_STATE(4922)] = 95515, + [SMALL_STATE(4923)] = 95631, + [SMALL_STATE(4924)] = 95747, + [SMALL_STATE(4925)] = 95850, + [SMALL_STATE(4926)] = 95963, + [SMALL_STATE(4927)] = 96028, + [SMALL_STATE(4928)] = 96141, + [SMALL_STATE(4929)] = 96208, + [SMALL_STATE(4930)] = 96321, + [SMALL_STATE(4931)] = 96434, + [SMALL_STATE(4932)] = 96547, + [SMALL_STATE(4933)] = 96660, + [SMALL_STATE(4934)] = 96773, + [SMALL_STATE(4935)] = 96886, + [SMALL_STATE(4936)] = 96999, + [SMALL_STATE(4937)] = 97112, + [SMALL_STATE(4938)] = 97225, + [SMALL_STATE(4939)] = 97338, + [SMALL_STATE(4940)] = 97399, + [SMALL_STATE(4941)] = 97460, + [SMALL_STATE(4942)] = 97521, + [SMALL_STATE(4943)] = 97582, + [SMALL_STATE(4944)] = 97695, + [SMALL_STATE(4945)] = 97756, + [SMALL_STATE(4946)] = 97817, + [SMALL_STATE(4947)] = 97884, + [SMALL_STATE(4948)] = 97957, + [SMALL_STATE(4949)] = 98020, + [SMALL_STATE(4950)] = 98133, + [SMALL_STATE(4951)] = 98194, + [SMALL_STATE(4952)] = 98255, + [SMALL_STATE(4953)] = 98316, + [SMALL_STATE(4954)] = 98377, + [SMALL_STATE(4955)] = 98490, + [SMALL_STATE(4956)] = 98555, + [SMALL_STATE(4957)] = 98616, + [SMALL_STATE(4958)] = 98729, + [SMALL_STATE(4959)] = 98798, + [SMALL_STATE(4960)] = 98859, + [SMALL_STATE(4961)] = 98948, + [SMALL_STATE(4962)] = 99029, + [SMALL_STATE(4963)] = 99098, + [SMALL_STATE(4964)] = 99167, + [SMALL_STATE(4965)] = 99228, + [SMALL_STATE(4966)] = 99289, + [SMALL_STATE(4967)] = 99350, + [SMALL_STATE(4968)] = 99417, + [SMALL_STATE(4969)] = 99486, + [SMALL_STATE(4970)] = 99601, + [SMALL_STATE(4971)] = 99662, + [SMALL_STATE(4972)] = 99723, + [SMALL_STATE(4973)] = 99798, + [SMALL_STATE(4974)] = 99873, + [SMALL_STATE(4975)] = 99942, + [SMALL_STATE(4976)] = 100003, + [SMALL_STATE(4977)] = 100080, + [SMALL_STATE(4978)] = 100141, + [SMALL_STATE(4979)] = 100202, + [SMALL_STATE(4980)] = 100271, + [SMALL_STATE(4981)] = 100332, + [SMALL_STATE(4982)] = 100399, + [SMALL_STATE(4983)] = 100460, + [SMALL_STATE(4984)] = 100521, + [SMALL_STATE(4985)] = 100582, + [SMALL_STATE(4986)] = 100697, + [SMALL_STATE(4987)] = 100758, + [SMALL_STATE(4988)] = 100827, + [SMALL_STATE(4989)] = 100888, + [SMALL_STATE(4990)] = 100949, + [SMALL_STATE(4991)] = 101010, + [SMALL_STATE(4992)] = 101073, + [SMALL_STATE(4993)] = 101138, + [SMALL_STATE(4994)] = 101199, + [SMALL_STATE(4995)] = 101260, + [SMALL_STATE(4996)] = 101321, + [SMALL_STATE(4997)] = 101386, + [SMALL_STATE(4998)] = 101447, + [SMALL_STATE(4999)] = 101508, + [SMALL_STATE(5000)] = 101569, + [SMALL_STATE(5001)] = 101630, + [SMALL_STATE(5002)] = 101741, + [SMALL_STATE(5003)] = 101802, + [SMALL_STATE(5004)] = 101863, + [SMALL_STATE(5005)] = 101928, + [SMALL_STATE(5006)] = 101989, + [SMALL_STATE(5007)] = 102058, + [SMALL_STATE(5008)] = 102171, + [SMALL_STATE(5009)] = 102232, + [SMALL_STATE(5010)] = 102295, + [SMALL_STATE(5011)] = 102356, + [SMALL_STATE(5012)] = 102467, + [SMALL_STATE(5013)] = 102530, + [SMALL_STATE(5014)] = 102591, + [SMALL_STATE(5015)] = 102652, + [SMALL_STATE(5016)] = 102721, + [SMALL_STATE(5017)] = 102786, + [SMALL_STATE(5018)] = 102851, + [SMALL_STATE(5019)] = 102912, + [SMALL_STATE(5020)] = 103025, + [SMALL_STATE(5021)] = 103132, + [SMALL_STATE(5022)] = 103193, + [SMALL_STATE(5023)] = 103254, + [SMALL_STATE(5024)] = 103315, + [SMALL_STATE(5025)] = 103384, + [SMALL_STATE(5026)] = 103445, + [SMALL_STATE(5027)] = 103514, + [SMALL_STATE(5028)] = 103593, + [SMALL_STATE(5029)] = 103662, + [SMALL_STATE(5030)] = 103731, + [SMALL_STATE(5031)] = 103812, + [SMALL_STATE(5032)] = 103925, + [SMALL_STATE(5033)] = 103986, + [SMALL_STATE(5034)] = 104055, + [SMALL_STATE(5035)] = 104142, + [SMALL_STATE(5036)] = 104211, + [SMALL_STATE(5037)] = 104272, + [SMALL_STATE(5038)] = 104341, + [SMALL_STATE(5039)] = 104414, + [SMALL_STATE(5040)] = 104479, + [SMALL_STATE(5041)] = 104562, + [SMALL_STATE(5042)] = 104669, + [SMALL_STATE(5043)] = 104734, + [SMALL_STATE(5044)] = 104799, + [SMALL_STATE(5045)] = 104866, + [SMALL_STATE(5046)] = 104933, + [SMALL_STATE(5047)] = 104998, + [SMALL_STATE(5048)] = 105059, + [SMALL_STATE(5049)] = 105172, + [SMALL_STATE(5050)] = 105241, + [SMALL_STATE(5051)] = 105316, + [SMALL_STATE(5052)] = 105385, + [SMALL_STATE(5053)] = 105454, + [SMALL_STATE(5054)] = 105561, + [SMALL_STATE(5055)] = 105628, + [SMALL_STATE(5056)] = 105693, + [SMALL_STATE(5057)] = 105762, + [SMALL_STATE(5058)] = 105823, + [SMALL_STATE(5059)] = 105930, + [SMALL_STATE(5060)] = 106043, + [SMALL_STATE(5061)] = 106104, + [SMALL_STATE(5062)] = 106211, + [SMALL_STATE(5063)] = 106272, + [SMALL_STATE(5064)] = 106333, + [SMALL_STATE(5065)] = 106398, + [SMALL_STATE(5066)] = 106465, + [SMALL_STATE(5067)] = 106526, + [SMALL_STATE(5068)] = 106587, + [SMALL_STATE(5069)] = 106648, + [SMALL_STATE(5070)] = 106709, + [SMALL_STATE(5071)] = 106774, + [SMALL_STATE(5072)] = 106841, + [SMALL_STATE(5073)] = 106902, + [SMALL_STATE(5074)] = 106963, + [SMALL_STATE(5075)] = 107024, + [SMALL_STATE(5076)] = 107085, + [SMALL_STATE(5077)] = 107146, + [SMALL_STATE(5078)] = 107207, + [SMALL_STATE(5079)] = 107276, + [SMALL_STATE(5080)] = 107389, + [SMALL_STATE(5081)] = 107450, + [SMALL_STATE(5082)] = 107511, + [SMALL_STATE(5083)] = 107572, + [SMALL_STATE(5084)] = 107633, + [SMALL_STATE(5085)] = 107694, + [SMALL_STATE(5086)] = 107793, + [SMALL_STATE(5087)] = 107868, + [SMALL_STATE(5088)] = 107937, + [SMALL_STATE(5089)] = 108004, + [SMALL_STATE(5090)] = 108117, + [SMALL_STATE(5091)] = 108224, + [SMALL_STATE(5092)] = 108303, + [SMALL_STATE(5093)] = 108364, + [SMALL_STATE(5094)] = 108425, + [SMALL_STATE(5095)] = 108536, + [SMALL_STATE(5096)] = 108603, + [SMALL_STATE(5097)] = 108716, + [SMALL_STATE(5098)] = 108777, + [SMALL_STATE(5099)] = 108838, + [SMALL_STATE(5100)] = 108899, + [SMALL_STATE(5101)] = 108964, + [SMALL_STATE(5102)] = 109029, + [SMALL_STATE(5103)] = 109102, + [SMALL_STATE(5104)] = 109215, + [SMALL_STATE(5105)] = 109280, + [SMALL_STATE(5106)] = 109349, + [SMALL_STATE(5107)] = 109462, + [SMALL_STATE(5108)] = 109523, + [SMALL_STATE(5109)] = 109584, + [SMALL_STATE(5110)] = 109649, + [SMALL_STATE(5111)] = 109714, + [SMALL_STATE(5112)] = 109775, + [SMALL_STATE(5113)] = 109840, + [SMALL_STATE(5114)] = 109939, + [SMALL_STATE(5115)] = 110000, + [SMALL_STATE(5116)] = 110061, + [SMALL_STATE(5117)] = 110126, + [SMALL_STATE(5118)] = 110187, + [SMALL_STATE(5119)] = 110252, + [SMALL_STATE(5120)] = 110347, + [SMALL_STATE(5121)] = 110412, + [SMALL_STATE(5122)] = 110473, + [SMALL_STATE(5123)] = 110586, + [SMALL_STATE(5124)] = 110647, + [SMALL_STATE(5125)] = 110708, + [SMALL_STATE(5126)] = 110773, + [SMALL_STATE(5127)] = 110838, + [SMALL_STATE(5128)] = 110951, + [SMALL_STATE(5129)] = 111026, + [SMALL_STATE(5130)] = 111087, + [SMALL_STATE(5131)] = 111148, + [SMALL_STATE(5132)] = 111209, + [SMALL_STATE(5133)] = 111270, + [SMALL_STATE(5134)] = 111331, + [SMALL_STATE(5135)] = 111444, + [SMALL_STATE(5136)] = 111505, + [SMALL_STATE(5137)] = 111618, + [SMALL_STATE(5138)] = 111687, + [SMALL_STATE(5139)] = 111780, + [SMALL_STATE(5140)] = 111845, + [SMALL_STATE(5141)] = 111958, + [SMALL_STATE(5142)] = 112057, + [SMALL_STATE(5143)] = 112124, + [SMALL_STATE(5144)] = 112237, + [SMALL_STATE(5145)] = 112298, + [SMALL_STATE(5146)] = 112411, + [SMALL_STATE(5147)] = 112472, + [SMALL_STATE(5148)] = 112585, + [SMALL_STATE(5149)] = 112646, + [SMALL_STATE(5150)] = 112707, + [SMALL_STATE(5151)] = 112820, + [SMALL_STATE(5152)] = 112885, + [SMALL_STATE(5153)] = 112946, + [SMALL_STATE(5154)] = 113013, + [SMALL_STATE(5155)] = 113074, + [SMALL_STATE(5156)] = 113187, + [SMALL_STATE(5157)] = 113256, + [SMALL_STATE(5158)] = 113317, + [SMALL_STATE(5159)] = 113430, + [SMALL_STATE(5160)] = 113491, + [SMALL_STATE(5161)] = 113552, + [SMALL_STATE(5162)] = 113650, + [SMALL_STATE(5163)] = 113710, + [SMALL_STATE(5164)] = 113784, + [SMALL_STATE(5165)] = 113844, + [SMALL_STATE(5166)] = 113904, + [SMALL_STATE(5167)] = 113966, + [SMALL_STATE(5168)] = 114026, + [SMALL_STATE(5169)] = 114086, + [SMALL_STATE(5170)] = 114146, + [SMALL_STATE(5171)] = 114250, + [SMALL_STATE(5172)] = 114318, + [SMALL_STATE(5173)] = 114474, + [SMALL_STATE(5174)] = 114584, + [SMALL_STATE(5175)] = 114688, + [SMALL_STATE(5176)] = 114794, + [SMALL_STATE(5177)] = 114866, + [SMALL_STATE(5178)] = 114926, + [SMALL_STATE(5179)] = 114992, + [SMALL_STATE(5180)] = 115052, + [SMALL_STATE(5181)] = 115156, + [SMALL_STATE(5182)] = 115216, + [SMALL_STATE(5183)] = 115276, + [SMALL_STATE(5184)] = 115336, + [SMALL_STATE(5185)] = 115396, + [SMALL_STATE(5186)] = 115510, + [SMALL_STATE(5187)] = 115584, + [SMALL_STATE(5188)] = 115658, + [SMALL_STATE(5189)] = 115722, + [SMALL_STATE(5190)] = 115790, + [SMALL_STATE(5191)] = 115850, + [SMALL_STATE(5192)] = 115954, + [SMALL_STATE(5193)] = 116026, + [SMALL_STATE(5194)] = 116086, + [SMALL_STATE(5195)] = 116190, + [SMALL_STATE(5196)] = 116256, + [SMALL_STATE(5197)] = 116322, + [SMALL_STATE(5198)] = 116392, + [SMALL_STATE(5199)] = 116462, + [SMALL_STATE(5200)] = 116568, + [SMALL_STATE(5201)] = 116672, + [SMALL_STATE(5202)] = 116828, + [SMALL_STATE(5203)] = 116888, + [SMALL_STATE(5204)] = 116992, + [SMALL_STATE(5205)] = 117052, + [SMALL_STATE(5206)] = 117112, + [SMALL_STATE(5207)] = 117172, + [SMALL_STATE(5208)] = 117232, + [SMALL_STATE(5209)] = 117292, + [SMALL_STATE(5210)] = 117398, + [SMALL_STATE(5211)] = 117458, + [SMALL_STATE(5212)] = 117518, + [SMALL_STATE(5213)] = 117638, + [SMALL_STATE(5214)] = 117704, + [SMALL_STATE(5215)] = 117764, + [SMALL_STATE(5216)] = 117824, + [SMALL_STATE(5217)] = 117938, + [SMALL_STATE(5218)] = 117998, + [SMALL_STATE(5219)] = 118070, + [SMALL_STATE(5220)] = 118134, + [SMALL_STATE(5221)] = 118196, + [SMALL_STATE(5222)] = 118310, + [SMALL_STATE(5223)] = 118386, + [SMALL_STATE(5224)] = 118460, + [SMALL_STATE(5225)] = 118564, + [SMALL_STATE(5226)] = 118668, + [SMALL_STATE(5227)] = 118824, + [SMALL_STATE(5228)] = 118890, + [SMALL_STATE(5229)] = 118994, + [SMALL_STATE(5230)] = 119054, + [SMALL_STATE(5231)] = 119114, + [SMALL_STATE(5232)] = 119174, + [SMALL_STATE(5233)] = 119240, + [SMALL_STATE(5234)] = 119304, + [SMALL_STATE(5235)] = 119366, + [SMALL_STATE(5236)] = 119470, + [SMALL_STATE(5237)] = 119626, + [SMALL_STATE(5238)] = 119686, + [SMALL_STATE(5239)] = 119746, + [SMALL_STATE(5240)] = 119850, + [SMALL_STATE(5241)] = 119952, + [SMALL_STATE(5242)] = 120022, + [SMALL_STATE(5243)] = 120100, + [SMALL_STATE(5244)] = 120198, + [SMALL_STATE(5245)] = 120312, + [SMALL_STATE(5246)] = 120406, + [SMALL_STATE(5247)] = 120498, + [SMALL_STATE(5248)] = 120560, + [SMALL_STATE(5249)] = 120626, + [SMALL_STATE(5250)] = 120730, + [SMALL_STATE(5251)] = 120886, + [SMALL_STATE(5252)] = 120974, + [SMALL_STATE(5253)] = 121078, + [SMALL_STATE(5254)] = 121164, + [SMALL_STATE(5255)] = 121274, + [SMALL_STATE(5256)] = 121334, + [SMALL_STATE(5257)] = 121448, + [SMALL_STATE(5258)] = 121512, + [SMALL_STATE(5259)] = 121572, + [SMALL_STATE(5260)] = 121640, + [SMALL_STATE(5261)] = 121700, + [SMALL_STATE(5262)] = 121804, + [SMALL_STATE(5263)] = 121960, + [SMALL_STATE(5264)] = 122020, + [SMALL_STATE(5265)] = 122088, + [SMALL_STATE(5266)] = 122192, + [SMALL_STATE(5267)] = 122262, + [SMALL_STATE(5268)] = 122344, + [SMALL_STATE(5269)] = 122414, + [SMALL_STATE(5270)] = 122570, + [SMALL_STATE(5271)] = 122648, + [SMALL_STATE(5272)] = 122708, + [SMALL_STATE(5273)] = 122864, + [SMALL_STATE(5274)] = 122924, + [SMALL_STATE(5275)] = 122984, + [SMALL_STATE(5276)] = 123044, + [SMALL_STATE(5277)] = 123104, + [SMALL_STATE(5278)] = 123260, + [SMALL_STATE(5279)] = 123320, + [SMALL_STATE(5280)] = 123424, + [SMALL_STATE(5281)] = 123484, + [SMALL_STATE(5282)] = 123544, + [SMALL_STATE(5283)] = 123604, + [SMALL_STATE(5284)] = 123724, + [SMALL_STATE(5285)] = 123784, + [SMALL_STATE(5286)] = 123848, + [SMALL_STATE(5287)] = 124004, + [SMALL_STATE(5288)] = 124078, + [SMALL_STATE(5289)] = 124158, + [SMALL_STATE(5290)] = 124226, + [SMALL_STATE(5291)] = 124286, + [SMALL_STATE(5292)] = 124390, + [SMALL_STATE(5293)] = 124460, + [SMALL_STATE(5294)] = 124526, + [SMALL_STATE(5295)] = 124592, + [SMALL_STATE(5296)] = 124654, + [SMALL_STATE(5297)] = 124758, + [SMALL_STATE(5298)] = 124818, + [SMALL_STATE(5299)] = 124896, + [SMALL_STATE(5300)] = 124978, + [SMALL_STATE(5301)] = 125082, + [SMALL_STATE(5302)] = 125186, + [SMALL_STATE(5303)] = 125254, + [SMALL_STATE(5304)] = 125322, + [SMALL_STATE(5305)] = 125400, + [SMALL_STATE(5306)] = 125460, + [SMALL_STATE(5307)] = 125566, + [SMALL_STATE(5308)] = 125672, + [SMALL_STATE(5309)] = 125778, + [SMALL_STATE(5310)] = 125884, + [SMALL_STATE(5311)] = 125994, + [SMALL_STATE(5312)] = 126070, + [SMALL_STATE(5313)] = 126172, + [SMALL_STATE(5314)] = 126270, + [SMALL_STATE(5315)] = 126364, + [SMALL_STATE(5316)] = 126456, + [SMALL_STATE(5317)] = 126544, + [SMALL_STATE(5318)] = 126630, + [SMALL_STATE(5319)] = 126712, + [SMALL_STATE(5320)] = 126790, + [SMALL_STATE(5321)] = 126870, + [SMALL_STATE(5322)] = 126978, + [SMALL_STATE(5323)] = 127084, + [SMALL_STATE(5324)] = 127194, + [SMALL_STATE(5325)] = 127300, + [SMALL_STATE(5326)] = 127410, + [SMALL_STATE(5327)] = 127472, + [SMALL_STATE(5328)] = 127534, + [SMALL_STATE(5329)] = 127594, + [SMALL_STATE(5330)] = 127654, + [SMALL_STATE(5331)] = 127714, + [SMALL_STATE(5332)] = 127774, + [SMALL_STATE(5333)] = 127844, + [SMALL_STATE(5334)] = 127904, + [SMALL_STATE(5335)] = 127980, + [SMALL_STATE(5336)] = 128054, + [SMALL_STATE(5337)] = 128160, + [SMALL_STATE(5338)] = 128228, + [SMALL_STATE(5339)] = 128328, + [SMALL_STATE(5340)] = 128424, + [SMALL_STATE(5341)] = 128516, + [SMALL_STATE(5342)] = 128606, + [SMALL_STATE(5343)] = 128718, + [SMALL_STATE(5344)] = 128804, + [SMALL_STATE(5345)] = 128888, + [SMALL_STATE(5346)] = 128970, + [SMALL_STATE(5347)] = 129048, + [SMALL_STATE(5348)] = 129128, + [SMALL_STATE(5349)] = 129232, + [SMALL_STATE(5350)] = 129302, + [SMALL_STATE(5351)] = 129370, + [SMALL_STATE(5352)] = 129434, + [SMALL_STATE(5353)] = 129590, + [SMALL_STATE(5354)] = 129688, + [SMALL_STATE(5355)] = 129762, + [SMALL_STATE(5356)] = 129822, + [SMALL_STATE(5357)] = 129882, + [SMALL_STATE(5358)] = 129942, + [SMALL_STATE(5359)] = 130006, + [SMALL_STATE(5360)] = 130110, + [SMALL_STATE(5361)] = 130178, + [SMALL_STATE(5362)] = 130244, + [SMALL_STATE(5363)] = 130304, + [SMALL_STATE(5364)] = 130372, + [SMALL_STATE(5365)] = 130432, + [SMALL_STATE(5366)] = 130492, + [SMALL_STATE(5367)] = 130562, + [SMALL_STATE(5368)] = 130668, + [SMALL_STATE(5369)] = 130736, + [SMALL_STATE(5370)] = 130840, + [SMALL_STATE(5371)] = 130914, + [SMALL_STATE(5372)] = 130984, + [SMALL_STATE(5373)] = 131088, + [SMALL_STATE(5374)] = 131148, + [SMALL_STATE(5375)] = 131208, + [SMALL_STATE(5376)] = 131312, + [SMALL_STATE(5377)] = 131416, + [SMALL_STATE(5378)] = 131484, + [SMALL_STATE(5379)] = 131588, + [SMALL_STATE(5380)] = 131650, + [SMALL_STATE(5381)] = 131714, + [SMALL_STATE(5382)] = 131774, + [SMALL_STATE(5383)] = 131882, + [SMALL_STATE(5384)] = 131980, + [SMALL_STATE(5385)] = 132052, + [SMALL_STATE(5386)] = 132120, + [SMALL_STATE(5387)] = 132192, + [SMALL_STATE(5388)] = 132262, + [SMALL_STATE(5389)] = 132334, + [SMALL_STATE(5390)] = 132440, + [SMALL_STATE(5391)] = 132514, + [SMALL_STATE(5392)] = 132588, + [SMALL_STATE(5393)] = 132694, + [SMALL_STATE(5394)] = 132766, + [SMALL_STATE(5395)] = 132872, + [SMALL_STATE(5396)] = 132978, + [SMALL_STATE(5397)] = 133088, + [SMALL_STATE(5398)] = 133164, + [SMALL_STATE(5399)] = 133238, + [SMALL_STATE(5400)] = 133340, + [SMALL_STATE(5401)] = 133434, + [SMALL_STATE(5402)] = 133526, + [SMALL_STATE(5403)] = 133614, + [SMALL_STATE(5404)] = 133700, + [SMALL_STATE(5405)] = 133782, + [SMALL_STATE(5406)] = 133860, + [SMALL_STATE(5407)] = 133940, + [SMALL_STATE(5408)] = 134014, + [SMALL_STATE(5409)] = 134118, + [SMALL_STATE(5410)] = 134224, + [SMALL_STATE(5411)] = 134334, + [SMALL_STATE(5412)] = 134440, + [SMALL_STATE(5413)] = 134550, + [SMALL_STATE(5414)] = 134622, + [SMALL_STATE(5415)] = 134732, + [SMALL_STATE(5416)] = 134800, + [SMALL_STATE(5417)] = 134868, + [SMALL_STATE(5418)] = 134936, + [SMALL_STATE(5419)] = 135042, + [SMALL_STATE(5420)] = 135116, + [SMALL_STATE(5421)] = 135190, + [SMALL_STATE(5422)] = 135250, + [SMALL_STATE(5423)] = 135354, + [SMALL_STATE(5424)] = 135422, + [SMALL_STATE(5425)] = 135530, + [SMALL_STATE(5426)] = 135604, + [SMALL_STATE(5427)] = 135664, + [SMALL_STATE(5428)] = 135724, + [SMALL_STATE(5429)] = 135788, + [SMALL_STATE(5430)] = 135849, + [SMALL_STATE(5431)] = 135908, + [SMALL_STATE(5432)] = 135967, + [SMALL_STATE(5433)] = 136026, + [SMALL_STATE(5434)] = 136087, + [SMALL_STATE(5435)] = 136146, + [SMALL_STATE(5436)] = 136205, + [SMALL_STATE(5437)] = 136264, + [SMALL_STATE(5438)] = 136327, + [SMALL_STATE(5439)] = 136386, + [SMALL_STATE(5440)] = 136445, + [SMALL_STATE(5441)] = 136512, + [SMALL_STATE(5442)] = 136625, + [SMALL_STATE(5443)] = 136684, + [SMALL_STATE(5444)] = 136743, + [SMALL_STATE(5445)] = 136802, + [SMALL_STATE(5446)] = 136861, + [SMALL_STATE(5447)] = 136920, + [SMALL_STATE(5448)] = 136981, + [SMALL_STATE(5449)] = 137048, + [SMALL_STATE(5450)] = 137107, + [SMALL_STATE(5451)] = 137174, + [SMALL_STATE(5452)] = 137237, + [SMALL_STATE(5453)] = 137296, + [SMALL_STATE(5454)] = 137355, + [SMALL_STATE(5455)] = 137420, + [SMALL_STATE(5456)] = 137483, + [SMALL_STATE(5457)] = 137542, + [SMALL_STATE(5458)] = 137607, + [SMALL_STATE(5459)] = 137670, + [SMALL_STATE(5460)] = 137729, + [SMALL_STATE(5461)] = 137802, + [SMALL_STATE(5462)] = 137861, + [SMALL_STATE(5463)] = 137920, + [SMALL_STATE(5464)] = 137979, + [SMALL_STATE(5465)] = 138038, + [SMALL_STATE(5466)] = 138097, + [SMALL_STATE(5467)] = 138164, + [SMALL_STATE(5468)] = 138223, + [SMALL_STATE(5469)] = 138288, + [SMALL_STATE(5470)] = 138347, + [SMALL_STATE(5471)] = 138406, + [SMALL_STATE(5472)] = 138465, + [SMALL_STATE(5473)] = 138524, + [SMALL_STATE(5474)] = 138583, + [SMALL_STATE(5475)] = 138642, + [SMALL_STATE(5476)] = 138701, + [SMALL_STATE(5477)] = 138762, + [SMALL_STATE(5478)] = 138829, + [SMALL_STATE(5479)] = 138888, + [SMALL_STATE(5480)] = 138947, + [SMALL_STATE(5481)] = 139008, + [SMALL_STATE(5482)] = 139067, + [SMALL_STATE(5483)] = 139126, + [SMALL_STATE(5484)] = 139189, + [SMALL_STATE(5485)] = 139252, + [SMALL_STATE(5486)] = 139311, + [SMALL_STATE(5487)] = 139370, + [SMALL_STATE(5488)] = 139429, + [SMALL_STATE(5489)] = 139488, + [SMALL_STATE(5490)] = 139547, + [SMALL_STATE(5491)] = 139606, + [SMALL_STATE(5492)] = 139665, + [SMALL_STATE(5493)] = 139724, + [SMALL_STATE(5494)] = 139783, + [SMALL_STATE(5495)] = 139842, + [SMALL_STATE(5496)] = 139907, + [SMALL_STATE(5497)] = 139972, + [SMALL_STATE(5498)] = 140031, + [SMALL_STATE(5499)] = 140090, + [SMALL_STATE(5500)] = 140149, + [SMALL_STATE(5501)] = 140208, + [SMALL_STATE(5502)] = 140267, + [SMALL_STATE(5503)] = 140326, + [SMALL_STATE(5504)] = 140385, + [SMALL_STATE(5505)] = 140444, + [SMALL_STATE(5506)] = 140509, + [SMALL_STATE(5507)] = 140568, + [SMALL_STATE(5508)] = 140627, + [SMALL_STATE(5509)] = 140686, + [SMALL_STATE(5510)] = 140745, + [SMALL_STATE(5511)] = 140806, + [SMALL_STATE(5512)] = 140865, + [SMALL_STATE(5513)] = 140928, + [SMALL_STATE(5514)] = 140987, + [SMALL_STATE(5515)] = 141046, + [SMALL_STATE(5516)] = 141107, + [SMALL_STATE(5517)] = 141166, + [SMALL_STATE(5518)] = 141225, + [SMALL_STATE(5519)] = 141284, + [SMALL_STATE(5520)] = 141351, + [SMALL_STATE(5521)] = 141414, + [SMALL_STATE(5522)] = 141473, + [SMALL_STATE(5523)] = 141532, + [SMALL_STATE(5524)] = 141591, + [SMALL_STATE(5525)] = 141650, + [SMALL_STATE(5526)] = 141713, + [SMALL_STATE(5527)] = 141772, + [SMALL_STATE(5528)] = 141831, + [SMALL_STATE(5529)] = 141890, + [SMALL_STATE(5530)] = 141949, + [SMALL_STATE(5531)] = 142014, + [SMALL_STATE(5532)] = 142073, + [SMALL_STATE(5533)] = 142132, + [SMALL_STATE(5534)] = 142191, + [SMALL_STATE(5535)] = 142250, + [SMALL_STATE(5536)] = 142309, + [SMALL_STATE(5537)] = 142368, + [SMALL_STATE(5538)] = 142427, + [SMALL_STATE(5539)] = 142486, + [SMALL_STATE(5540)] = 142545, + [SMALL_STATE(5541)] = 142604, + [SMALL_STATE(5542)] = 142663, + [SMALL_STATE(5543)] = 142722, + [SMALL_STATE(5544)] = 142781, + [SMALL_STATE(5545)] = 142840, + [SMALL_STATE(5546)] = 142907, + [SMALL_STATE(5547)] = 142966, + [SMALL_STATE(5548)] = 143025, + [SMALL_STATE(5549)] = 143084, + [SMALL_STATE(5550)] = 143143, + [SMALL_STATE(5551)] = 143204, + [SMALL_STATE(5552)] = 143263, + [SMALL_STATE(5553)] = 143322, + [SMALL_STATE(5554)] = 143381, + [SMALL_STATE(5555)] = 143442, + [SMALL_STATE(5556)] = 143505, + [SMALL_STATE(5557)] = 143564, + [SMALL_STATE(5558)] = 143623, + [SMALL_STATE(5559)] = 143682, + [SMALL_STATE(5560)] = 143743, + [SMALL_STATE(5561)] = 143802, + [SMALL_STATE(5562)] = 143861, + [SMALL_STATE(5563)] = 143920, + [SMALL_STATE(5564)] = 143985, + [SMALL_STATE(5565)] = 144044, + [SMALL_STATE(5566)] = 144103, + [SMALL_STATE(5567)] = 144162, + [SMALL_STATE(5568)] = 144221, + [SMALL_STATE(5569)] = 144280, + [SMALL_STATE(5570)] = 144339, + [SMALL_STATE(5571)] = 144398, + [SMALL_STATE(5572)] = 144457, + [SMALL_STATE(5573)] = 144516, + [SMALL_STATE(5574)] = 144575, + [SMALL_STATE(5575)] = 144634, + [SMALL_STATE(5576)] = 144693, + [SMALL_STATE(5577)] = 144752, + [SMALL_STATE(5578)] = 144811, + [SMALL_STATE(5579)] = 144870, + [SMALL_STATE(5580)] = 144935, + [SMALL_STATE(5581)] = 144994, + [SMALL_STATE(5582)] = 145053, + [SMALL_STATE(5583)] = 145112, + [SMALL_STATE(5584)] = 145171, + [SMALL_STATE(5585)] = 145230, + [SMALL_STATE(5586)] = 145289, + [SMALL_STATE(5587)] = 145352, + [SMALL_STATE(5588)] = 145415, + [SMALL_STATE(5589)] = 145474, + [SMALL_STATE(5590)] = 145533, + [SMALL_STATE(5591)] = 145592, + [SMALL_STATE(5592)] = 145655, + [SMALL_STATE(5593)] = 145720, + [SMALL_STATE(5594)] = 145779, + [SMALL_STATE(5595)] = 145840, + [SMALL_STATE(5596)] = 145901, + [SMALL_STATE(5597)] = 145960, + [SMALL_STATE(5598)] = 146019, + [SMALL_STATE(5599)] = 146078, + [SMALL_STATE(5600)] = 146137, + [SMALL_STATE(5601)] = 146196, + [SMALL_STATE(5602)] = 146255, + [SMALL_STATE(5603)] = 146314, + [SMALL_STATE(5604)] = 146373, + [SMALL_STATE(5605)] = 146432, + [SMALL_STATE(5606)] = 146491, + [SMALL_STATE(5607)] = 146550, + [SMALL_STATE(5608)] = 146609, + [SMALL_STATE(5609)] = 146668, + [SMALL_STATE(5610)] = 146727, + [SMALL_STATE(5611)] = 146796, + [SMALL_STATE(5612)] = 146863, + [SMALL_STATE(5613)] = 146922, + [SMALL_STATE(5614)] = 146983, + [SMALL_STATE(5615)] = 147042, + [SMALL_STATE(5616)] = 147115, + [SMALL_STATE(5617)] = 147174, + [SMALL_STATE(5618)] = 147233, + [SMALL_STATE(5619)] = 147292, + [SMALL_STATE(5620)] = 147350, + [SMALL_STATE(5621)] = 147408, + [SMALL_STATE(5622)] = 147466, + [SMALL_STATE(5623)] = 147524, + [SMALL_STATE(5624)] = 147626, + [SMALL_STATE(5625)] = 147684, + [SMALL_STATE(5626)] = 147742, + [SMALL_STATE(5627)] = 147800, + [SMALL_STATE(5628)] = 147858, + [SMALL_STATE(5629)] = 147920, + [SMALL_STATE(5630)] = 147978, + [SMALL_STATE(5631)] = 148052, + [SMALL_STATE(5632)] = 148124, + [SMALL_STATE(5633)] = 148182, + [SMALL_STATE(5634)] = 148240, + [SMALL_STATE(5635)] = 148340, + [SMALL_STATE(5636)] = 148402, + [SMALL_STATE(5637)] = 148500, + [SMALL_STATE(5638)] = 148594, + [SMALL_STATE(5639)] = 148684, + [SMALL_STATE(5640)] = 148770, + [SMALL_STATE(5641)] = 148854, + [SMALL_STATE(5642)] = 148934, + [SMALL_STATE(5643)] = 148992, + [SMALL_STATE(5644)] = 149068, + [SMALL_STATE(5645)] = 149146, + [SMALL_STATE(5646)] = 149204, + [SMALL_STATE(5647)] = 149262, + [SMALL_STATE(5648)] = 149320, + [SMALL_STATE(5649)] = 149378, + [SMALL_STATE(5650)] = 149436, + [SMALL_STATE(5651)] = 149494, + [SMALL_STATE(5652)] = 149552, + [SMALL_STATE(5653)] = 149610, + [SMALL_STATE(5654)] = 149672, + [SMALL_STATE(5655)] = 149730, + [SMALL_STATE(5656)] = 149792, + [SMALL_STATE(5657)] = 149850, + [SMALL_STATE(5658)] = 149920, + [SMALL_STATE(5659)] = 149992, + [SMALL_STATE(5660)] = 150062, + [SMALL_STATE(5661)] = 150120, + [SMALL_STATE(5662)] = 150192, + [SMALL_STATE(5663)] = 150250, + [SMALL_STATE(5664)] = 150308, + [SMALL_STATE(5665)] = 150366, + [SMALL_STATE(5666)] = 150424, + [SMALL_STATE(5667)] = 150490, + [SMALL_STATE(5668)] = 150548, + [SMALL_STATE(5669)] = 150606, + [SMALL_STATE(5670)] = 150664, + [SMALL_STATE(5671)] = 150722, + [SMALL_STATE(5672)] = 150780, + [SMALL_STATE(5673)] = 150838, + [SMALL_STATE(5674)] = 150896, + [SMALL_STATE(5675)] = 150954, + [SMALL_STATE(5676)] = 151012, + [SMALL_STATE(5677)] = 151074, + [SMALL_STATE(5678)] = 151132, + [SMALL_STATE(5679)] = 151190, + [SMALL_STATE(5680)] = 151292, + [SMALL_STATE(5681)] = 151350, + [SMALL_STATE(5682)] = 151408, + [SMALL_STATE(5683)] = 151466, + [SMALL_STATE(5684)] = 151524, + [SMALL_STATE(5685)] = 151582, + [SMALL_STATE(5686)] = 151640, + [SMALL_STATE(5687)] = 151698, + [SMALL_STATE(5688)] = 151756, + [SMALL_STATE(5689)] = 151814, + [SMALL_STATE(5690)] = 151874, + [SMALL_STATE(5691)] = 151932, + [SMALL_STATE(5692)] = 151990, + [SMALL_STATE(5693)] = 152048, + [SMALL_STATE(5694)] = 152154, + [SMALL_STATE(5695)] = 152220, + [SMALL_STATE(5696)] = 152278, + [SMALL_STATE(5697)] = 152336, + [SMALL_STATE(5698)] = 152394, + [SMALL_STATE(5699)] = 152452, + [SMALL_STATE(5700)] = 152524, + [SMALL_STATE(5701)] = 152582, + [SMALL_STATE(5702)] = 152654, + [SMALL_STATE(5703)] = 152756, + [SMALL_STATE(5704)] = 152822, + [SMALL_STATE(5705)] = 152880, + [SMALL_STATE(5706)] = 152946, + [SMALL_STATE(5707)] = 153012, + [SMALL_STATE(5708)] = 153070, + [SMALL_STATE(5709)] = 153128, + [SMALL_STATE(5710)] = 153186, + [SMALL_STATE(5711)] = 153244, + [SMALL_STATE(5712)] = 153310, + [SMALL_STATE(5713)] = 153382, + [SMALL_STATE(5714)] = 153440, + [SMALL_STATE(5715)] = 153512, + [SMALL_STATE(5716)] = 153570, + [SMALL_STATE(5717)] = 153628, + [SMALL_STATE(5718)] = 153686, + [SMALL_STATE(5719)] = 153752, + [SMALL_STATE(5720)] = 153818, + [SMALL_STATE(5721)] = 153884, + [SMALL_STATE(5722)] = 153950, + [SMALL_STATE(5723)] = 154008, + [SMALL_STATE(5724)] = 154074, + [SMALL_STATE(5725)] = 154132, + [SMALL_STATE(5726)] = 154190, + [SMALL_STATE(5727)] = 154256, + [SMALL_STATE(5728)] = 154322, + [SMALL_STATE(5729)] = 154380, + [SMALL_STATE(5730)] = 154438, + [SMALL_STATE(5731)] = 154504, + [SMALL_STATE(5732)] = 154572, + [SMALL_STATE(5733)] = 154630, + [SMALL_STATE(5734)] = 154688, + [SMALL_STATE(5735)] = 154746, + [SMALL_STATE(5736)] = 154804, + [SMALL_STATE(5737)] = 154862, + [SMALL_STATE(5738)] = 154920, + [SMALL_STATE(5739)] = 155026, + [SMALL_STATE(5740)] = 155084, + [SMALL_STATE(5741)] = 155142, + [SMALL_STATE(5742)] = 155200, + [SMALL_STATE(5743)] = 155266, + [SMALL_STATE(5744)] = 155376, + [SMALL_STATE(5745)] = 155478, + [SMALL_STATE(5746)] = 155536, + [SMALL_STATE(5747)] = 155594, + [SMALL_STATE(5748)] = 155652, + [SMALL_STATE(5749)] = 155710, + [SMALL_STATE(5750)] = 155768, + [SMALL_STATE(5751)] = 155838, + [SMALL_STATE(5752)] = 155940, + [SMALL_STATE(5753)] = 155998, + [SMALL_STATE(5754)] = 156056, + [SMALL_STATE(5755)] = 156114, + [SMALL_STATE(5756)] = 156172, + [SMALL_STATE(5757)] = 156230, + [SMALL_STATE(5758)] = 156296, + [SMALL_STATE(5759)] = 156354, + [SMALL_STATE(5760)] = 156412, + [SMALL_STATE(5761)] = 156470, + [SMALL_STATE(5762)] = 156528, + [SMALL_STATE(5763)] = 156586, + [SMALL_STATE(5764)] = 156656, + [SMALL_STATE(5765)] = 156714, + [SMALL_STATE(5766)] = 156772, + [SMALL_STATE(5767)] = 156830, + [SMALL_STATE(5768)] = 156896, + [SMALL_STATE(5769)] = 156954, + [SMALL_STATE(5770)] = 157012, + [SMALL_STATE(5771)] = 157070, + [SMALL_STATE(5772)] = 157128, + [SMALL_STATE(5773)] = 157186, + [SMALL_STATE(5774)] = 157244, + [SMALL_STATE(5775)] = 157316, + [SMALL_STATE(5776)] = 157374, + [SMALL_STATE(5777)] = 157440, + [SMALL_STATE(5778)] = 157498, + [SMALL_STATE(5779)] = 157568, + [SMALL_STATE(5780)] = 157626, + [SMALL_STATE(5781)] = 157684, + [SMALL_STATE(5782)] = 157742, + [SMALL_STATE(5783)] = 157800, + [SMALL_STATE(5784)] = 157860, + [SMALL_STATE(5785)] = 157918, + [SMALL_STATE(5786)] = 158020, + [SMALL_STATE(5787)] = 158078, + [SMALL_STATE(5788)] = 158136, + [SMALL_STATE(5789)] = 158198, + [SMALL_STATE(5790)] = 158256, + [SMALL_STATE(5791)] = 158314, + [SMALL_STATE(5792)] = 158372, + [SMALL_STATE(5793)] = 158430, + [SMALL_STATE(5794)] = 158488, + [SMALL_STATE(5795)] = 158546, + [SMALL_STATE(5796)] = 158652, + [SMALL_STATE(5797)] = 158710, + [SMALL_STATE(5798)] = 158778, + [SMALL_STATE(5799)] = 158836, + [SMALL_STATE(5800)] = 158898, + [SMALL_STATE(5801)] = 158964, + [SMALL_STATE(5802)] = 159022, + [SMALL_STATE(5803)] = 159080, + [SMALL_STATE(5804)] = 159138, + [SMALL_STATE(5805)] = 159196, + [SMALL_STATE(5806)] = 159254, + [SMALL_STATE(5807)] = 159320, + [SMALL_STATE(5808)] = 159378, + [SMALL_STATE(5809)] = 159436, + [SMALL_STATE(5810)] = 159494, + [SMALL_STATE(5811)] = 159552, + [SMALL_STATE(5812)] = 159610, + [SMALL_STATE(5813)] = 159668, + [SMALL_STATE(5814)] = 159726, + [SMALL_STATE(5815)] = 159784, + [SMALL_STATE(5816)] = 159842, + [SMALL_STATE(5817)] = 159904, + [SMALL_STATE(5818)] = 159962, + [SMALL_STATE(5819)] = 160020, + [SMALL_STATE(5820)] = 160078, + [SMALL_STATE(5821)] = 160136, + [SMALL_STATE(5822)] = 160194, + [SMALL_STATE(5823)] = 160256, + [SMALL_STATE(5824)] = 160314, + [SMALL_STATE(5825)] = 160372, + [SMALL_STATE(5826)] = 160430, + [SMALL_STATE(5827)] = 160488, + [SMALL_STATE(5828)] = 160546, + [SMALL_STATE(5829)] = 160609, + [SMALL_STATE(5830)] = 160666, + [SMALL_STATE(5831)] = 160729, + [SMALL_STATE(5832)] = 160822, + [SMALL_STATE(5833)] = 160879, + [SMALL_STATE(5834)] = 160954, + [SMALL_STATE(5835)] = 161011, + [SMALL_STATE(5836)] = 161080, + [SMALL_STATE(5837)] = 161137, + [SMALL_STATE(5838)] = 161206, + [SMALL_STATE(5839)] = 161273, + [SMALL_STATE(5840)] = 161330, + [SMALL_STATE(5841)] = 161387, + [SMALL_STATE(5842)] = 161456, + [SMALL_STATE(5843)] = 161525, + [SMALL_STATE(5844)] = 161594, + [SMALL_STATE(5845)] = 161651, + [SMALL_STATE(5846)] = 161708, + [SMALL_STATE(5847)] = 161773, + [SMALL_STATE(5848)] = 161836, + [SMALL_STATE(5849)] = 161905, + [SMALL_STATE(5850)] = 161974, + [SMALL_STATE(5851)] = 162043, + [SMALL_STATE(5852)] = 162112, + [SMALL_STATE(5853)] = 162169, + [SMALL_STATE(5854)] = 162236, + [SMALL_STATE(5855)] = 162293, + [SMALL_STATE(5856)] = 162356, + [SMALL_STATE(5857)] = 162419, + [SMALL_STATE(5858)] = 162476, + [SMALL_STATE(5859)] = 162569, + [SMALL_STATE(5860)] = 162632, + [SMALL_STATE(5861)] = 162689, + [SMALL_STATE(5862)] = 162752, + [SMALL_STATE(5863)] = 162815, + [SMALL_STATE(5864)] = 162872, + [SMALL_STATE(5865)] = 162941, + [SMALL_STATE(5866)] = 162998, + [SMALL_STATE(5867)] = 163055, + [SMALL_STATE(5868)] = 163124, + [SMALL_STATE(5869)] = 163187, + [SMALL_STATE(5870)] = 163250, + [SMALL_STATE(5871)] = 163307, + [SMALL_STATE(5872)] = 163364, + [SMALL_STATE(5873)] = 163421, + [SMALL_STATE(5874)] = 163478, + [SMALL_STATE(5875)] = 163541, + [SMALL_STATE(5876)] = 163598, + [SMALL_STATE(5877)] = 163655, + [SMALL_STATE(5878)] = 163718, + [SMALL_STATE(5879)] = 163775, + [SMALL_STATE(5880)] = 163852, + [SMALL_STATE(5881)] = 163927, + [SMALL_STATE(5882)] = 163984, + [SMALL_STATE(5883)] = 164047, + [SMALL_STATE(5884)] = 164104, + [SMALL_STATE(5885)] = 164161, + [SMALL_STATE(5886)] = 164218, + [SMALL_STATE(5887)] = 164275, + [SMALL_STATE(5888)] = 164332, + [SMALL_STATE(5889)] = 164389, + [SMALL_STATE(5890)] = 164446, + [SMALL_STATE(5891)] = 164503, + [SMALL_STATE(5892)] = 164562, + [SMALL_STATE(5893)] = 164619, + [SMALL_STATE(5894)] = 164682, + [SMALL_STATE(5895)] = 164747, + [SMALL_STATE(5896)] = 164814, + [SMALL_STATE(5897)] = 164871, + [SMALL_STATE(5898)] = 164928, + [SMALL_STATE(5899)] = 164989, + [SMALL_STATE(5900)] = 165046, + [SMALL_STATE(5901)] = 165103, + [SMALL_STATE(5902)] = 165160, + [SMALL_STATE(5903)] = 165217, + [SMALL_STATE(5904)] = 165274, + [SMALL_STATE(5905)] = 165331, + [SMALL_STATE(5906)] = 165400, + [SMALL_STATE(5907)] = 165463, + [SMALL_STATE(5908)] = 165532, + [SMALL_STATE(5909)] = 165601, + [SMALL_STATE(5910)] = 165670, + [SMALL_STATE(5911)] = 165739, + [SMALL_STATE(5912)] = 165796, + [SMALL_STATE(5913)] = 165855, + [SMALL_STATE(5914)] = 165912, + [SMALL_STATE(5915)] = 165969, + [SMALL_STATE(5916)] = 166028, + [SMALL_STATE(5917)] = 166103, + [SMALL_STATE(5918)] = 166171, + [SMALL_STATE(5919)] = 166227, + [SMALL_STATE(5920)] = 166283, + [SMALL_STATE(5921)] = 166347, + [SMALL_STATE(5922)] = 166403, + [SMALL_STATE(5923)] = 166459, + [SMALL_STATE(5924)] = 166515, + [SMALL_STATE(5925)] = 166579, + [SMALL_STATE(5926)] = 166635, + [SMALL_STATE(5927)] = 166691, + [SMALL_STATE(5928)] = 166747, + [SMALL_STATE(5929)] = 166803, + [SMALL_STATE(5930)] = 166859, + [SMALL_STATE(5931)] = 166915, + [SMALL_STATE(5932)] = 166971, + [SMALL_STATE(5933)] = 167027, + [SMALL_STATE(5934)] = 167083, + [SMALL_STATE(5935)] = 167139, + [SMALL_STATE(5936)] = 167195, + [SMALL_STATE(5937)] = 167257, + [SMALL_STATE(5938)] = 167313, + [SMALL_STATE(5939)] = 167377, + [SMALL_STATE(5940)] = 167433, + [SMALL_STATE(5941)] = 167489, + [SMALL_STATE(5942)] = 167545, + [SMALL_STATE(5943)] = 167601, + [SMALL_STATE(5944)] = 167705, + [SMALL_STATE(5945)] = 167761, + [SMALL_STATE(5946)] = 167817, + [SMALL_STATE(5947)] = 167873, + [SMALL_STATE(5948)] = 167929, + [SMALL_STATE(5949)] = 167985, + [SMALL_STATE(5950)] = 168041, + [SMALL_STATE(5951)] = 168097, + [SMALL_STATE(5952)] = 168153, + [SMALL_STATE(5953)] = 168209, + [SMALL_STATE(5954)] = 168265, + [SMALL_STATE(5955)] = 168321, + [SMALL_STATE(5956)] = 168377, + [SMALL_STATE(5957)] = 168433, + [SMALL_STATE(5958)] = 168489, + [SMALL_STATE(5959)] = 168545, + [SMALL_STATE(5960)] = 168601, + [SMALL_STATE(5961)] = 168657, + [SMALL_STATE(5962)] = 168713, + [SMALL_STATE(5963)] = 168769, + [SMALL_STATE(5964)] = 168863, + [SMALL_STATE(5965)] = 168919, + [SMALL_STATE(5966)] = 168975, + [SMALL_STATE(5967)] = 169069, + [SMALL_STATE(5968)] = 169125, + [SMALL_STATE(5969)] = 169181, + [SMALL_STATE(5970)] = 169245, + [SMALL_STATE(5971)] = 169301, + [SMALL_STATE(5972)] = 169357, + [SMALL_STATE(5973)] = 169413, + [SMALL_STATE(5974)] = 169469, + [SMALL_STATE(5975)] = 169525, + [SMALL_STATE(5976)] = 169581, + [SMALL_STATE(5977)] = 169637, + [SMALL_STATE(5978)] = 169701, + [SMALL_STATE(5979)] = 169757, + [SMALL_STATE(5980)] = 169813, + [SMALL_STATE(5981)] = 169869, + [SMALL_STATE(5982)] = 169925, + [SMALL_STATE(5983)] = 169981, + [SMALL_STATE(5984)] = 170037, + [SMALL_STATE(5985)] = 170093, + [SMALL_STATE(5986)] = 170149, + [SMALL_STATE(5987)] = 170205, + [SMALL_STATE(5988)] = 170261, + [SMALL_STATE(5989)] = 170317, + [SMALL_STATE(5990)] = 170373, + [SMALL_STATE(5991)] = 170429, + [SMALL_STATE(5992)] = 170485, + [SMALL_STATE(5993)] = 170553, + [SMALL_STATE(5994)] = 170609, + [SMALL_STATE(5995)] = 170665, + [SMALL_STATE(5996)] = 170721, + [SMALL_STATE(5997)] = 170777, + [SMALL_STATE(5998)] = 170833, + [SMALL_STATE(5999)] = 170889, + [SMALL_STATE(6000)] = 170995, + [SMALL_STATE(6001)] = 171051, + [SMALL_STATE(6002)] = 171107, + [SMALL_STATE(6003)] = 171163, + [SMALL_STATE(6004)] = 171227, + [SMALL_STATE(6005)] = 171283, + [SMALL_STATE(6006)] = 171347, + [SMALL_STATE(6007)] = 171411, + [SMALL_STATE(6008)] = 171475, + [SMALL_STATE(6009)] = 171531, + [SMALL_STATE(6010)] = 171595, + [SMALL_STATE(6011)] = 171651, + [SMALL_STATE(6012)] = 171707, + [SMALL_STATE(6013)] = 171763, + [SMALL_STATE(6014)] = 171819, + [SMALL_STATE(6015)] = 171875, + [SMALL_STATE(6016)] = 171931, + [SMALL_STATE(6017)] = 171987, + [SMALL_STATE(6018)] = 172043, + [SMALL_STATE(6019)] = 172107, + [SMALL_STATE(6020)] = 172163, + [SMALL_STATE(6021)] = 172219, + [SMALL_STATE(6022)] = 172288, + [SMALL_STATE(6023)] = 172343, + [SMALL_STATE(6024)] = 172398, + [SMALL_STATE(6025)] = 172453, + [SMALL_STATE(6026)] = 172522, + [SMALL_STATE(6027)] = 172577, + [SMALL_STATE(6028)] = 172668, + [SMALL_STATE(6029)] = 172723, + [SMALL_STATE(6030)] = 172778, + [SMALL_STATE(6031)] = 172851, + [SMALL_STATE(6032)] = 172906, + [SMALL_STATE(6033)] = 172997, + [SMALL_STATE(6034)] = 173052, + [SMALL_STATE(6035)] = 173125, + [SMALL_STATE(6036)] = 173180, + [SMALL_STATE(6037)] = 173249, + [SMALL_STATE(6038)] = 173304, + [SMALL_STATE(6039)] = 173366, + [SMALL_STATE(6040)] = 173428, + [SMALL_STATE(6041)] = 173494, + [SMALL_STATE(6042)] = 173556, + [SMALL_STATE(6043)] = 173618, + [SMALL_STATE(6044)] = 173680, + [SMALL_STATE(6045)] = 173742, + [SMALL_STATE(6046)] = 173804, + [SMALL_STATE(6047)] = 173896, + [SMALL_STATE(6048)] = 173958, + [SMALL_STATE(6049)] = 174024, + [SMALL_STATE(6050)] = 174080, + [SMALL_STATE(6051)] = 174146, + [SMALL_STATE(6052)] = 174218, + [SMALL_STATE(6053)] = 174280, + [SMALL_STATE(6054)] = 174382, + [SMALL_STATE(6055)] = 174448, + [SMALL_STATE(6056)] = 174538, + [SMALL_STATE(6057)] = 174600, + [SMALL_STATE(6058)] = 174692, + [SMALL_STATE(6059)] = 174754, + [SMALL_STATE(6060)] = 174816, + [SMALL_STATE(6061)] = 174880, + [SMALL_STATE(6062)] = 174970, + [SMALL_STATE(6063)] = 175032, + [SMALL_STATE(6064)] = 175094, + [SMALL_STATE(6065)] = 175186, + [SMALL_STATE(6066)] = 175250, + [SMALL_STATE(6067)] = 175352, + [SMALL_STATE(6068)] = 175414, + [SMALL_STATE(6069)] = 175476, + [SMALL_STATE(6070)] = 175538, + [SMALL_STATE(6071)] = 175600, + [SMALL_STATE(6072)] = 175664, + [SMALL_STATE(6073)] = 175730, + [SMALL_STATE(6074)] = 175784, + [SMALL_STATE(6075)] = 175850, + [SMALL_STATE(6076)] = 175912, + [SMALL_STATE(6077)] = 175974, + [SMALL_STATE(6078)] = 176032, + [SMALL_STATE(6079)] = 176098, + [SMALL_STATE(6080)] = 176164, + [SMALL_STATE(6081)] = 176218, + [SMALL_STATE(6082)] = 176282, + [SMALL_STATE(6083)] = 176348, + [SMALL_STATE(6084)] = 176440, + [SMALL_STATE(6085)] = 176542, + [SMALL_STATE(6086)] = 176597, + [SMALL_STATE(6087)] = 176650, + [SMALL_STATE(6088)] = 176731, + [SMALL_STATE(6089)] = 176820, + [SMALL_STATE(6090)] = 176909, + [SMALL_STATE(6091)] = 176990, + [SMALL_STATE(6092)] = 177043, + [SMALL_STATE(6093)] = 177132, + [SMALL_STATE(6094)] = 177185, + [SMALL_STATE(6095)] = 177238, + [SMALL_STATE(6096)] = 177291, + [SMALL_STATE(6097)] = 177380, + [SMALL_STATE(6098)] = 177469, + [SMALL_STATE(6099)] = 177538, + [SMALL_STATE(6100)] = 177591, + [SMALL_STATE(6101)] = 177644, + [SMALL_STATE(6102)] = 177697, + [SMALL_STATE(6103)] = 177750, + [SMALL_STATE(6104)] = 177803, + [SMALL_STATE(6105)] = 177892, + [SMALL_STATE(6106)] = 177945, + [SMALL_STATE(6107)] = 177998, + [SMALL_STATE(6108)] = 178079, + [SMALL_STATE(6109)] = 178168, + [SMALL_STATE(6110)] = 178257, + [SMALL_STATE(6111)] = 178310, + [SMALL_STATE(6112)] = 178363, + [SMALL_STATE(6113)] = 178452, + [SMALL_STATE(6114)] = 178541, + [SMALL_STATE(6115)] = 178594, + [SMALL_STATE(6116)] = 178675, + [SMALL_STATE(6117)] = 178764, + [SMALL_STATE(6118)] = 178853, + [SMALL_STATE(6119)] = 178906, + [SMALL_STATE(6120)] = 178959, + [SMALL_STATE(6121)] = 179012, + [SMALL_STATE(6122)] = 179065, + [SMALL_STATE(6123)] = 179118, + [SMALL_STATE(6124)] = 179171, + [SMALL_STATE(6125)] = 179224, + [SMALL_STATE(6126)] = 179277, + [SMALL_STATE(6127)] = 179366, + [SMALL_STATE(6128)] = 179455, + [SMALL_STATE(6129)] = 179544, + [SMALL_STATE(6130)] = 179625, + [SMALL_STATE(6131)] = 179678, + [SMALL_STATE(6132)] = 179731, + [SMALL_STATE(6133)] = 179820, + [SMALL_STATE(6134)] = 179909, + [SMALL_STATE(6135)] = 179998, + [SMALL_STATE(6136)] = 180051, + [SMALL_STATE(6137)] = 180106, + [SMALL_STATE(6138)] = 180195, + [SMALL_STATE(6139)] = 180284, + [SMALL_STATE(6140)] = 180337, + [SMALL_STATE(6141)] = 180400, + [SMALL_STATE(6142)] = 180453, + [SMALL_STATE(6143)] = 180542, + [SMALL_STATE(6144)] = 180631, + [SMALL_STATE(6145)] = 180720, + [SMALL_STATE(6146)] = 180809, + [SMALL_STATE(6147)] = 180862, + [SMALL_STATE(6148)] = 180951, + [SMALL_STATE(6149)] = 181040, + [SMALL_STATE(6150)] = 181129, + [SMALL_STATE(6151)] = 181218, + [SMALL_STATE(6152)] = 181307, + [SMALL_STATE(6153)] = 181388, + [SMALL_STATE(6154)] = 181477, + [SMALL_STATE(6155)] = 181537, + [SMALL_STATE(6156)] = 181601, + [SMALL_STATE(6157)] = 181665, + [SMALL_STATE(6158)] = 181725, + [SMALL_STATE(6159)] = 181805, + [SMALL_STATE(6160)] = 181875, + [SMALL_STATE(6161)] = 181939, + [SMALL_STATE(6162)] = 182003, + [SMALL_STATE(6163)] = 182067, + [SMALL_STATE(6164)] = 182131, + [SMALL_STATE(6165)] = 182201, + [SMALL_STATE(6166)] = 182265, + [SMALL_STATE(6167)] = 182345, + [SMALL_STATE(6168)] = 182409, + [SMALL_STATE(6169)] = 182473, + [SMALL_STATE(6170)] = 182537, + [SMALL_STATE(6171)] = 182601, + [SMALL_STATE(6172)] = 182665, + [SMALL_STATE(6173)] = 182745, + [SMALL_STATE(6174)] = 182833, + [SMALL_STATE(6175)] = 182921, + [SMALL_STATE(6176)] = 182985, + [SMALL_STATE(6177)] = 183049, + [SMALL_STATE(6178)] = 183105, + [SMALL_STATE(6179)] = 183185, + [SMALL_STATE(6180)] = 183265, + [SMALL_STATE(6181)] = 183329, + [SMALL_STATE(6182)] = 183393, + [SMALL_STATE(6183)] = 183473, + [SMALL_STATE(6184)] = 183532, + [SMALL_STATE(6185)] = 183585, + [SMALL_STATE(6186)] = 183646, + [SMALL_STATE(6187)] = 183705, + [SMALL_STATE(6188)] = 183764, + [SMALL_STATE(6189)] = 183823, + [SMALL_STATE(6190)] = 183908, + [SMALL_STATE(6191)] = 183967, + [SMALL_STATE(6192)] = 184026, + [SMALL_STATE(6193)] = 184113, + [SMALL_STATE(6194)] = 184172, + [SMALL_STATE(6195)] = 184231, + [SMALL_STATE(6196)] = 184318, + [SMALL_STATE(6197)] = 184377, + [SMALL_STATE(6198)] = 184436, + [SMALL_STATE(6199)] = 184495, + [SMALL_STATE(6200)] = 184598, + [SMALL_STATE(6201)] = 184695, + [SMALL_STATE(6202)] = 184754, + [SMALL_STATE(6203)] = 184839, + [SMALL_STATE(6204)] = 184898, + [SMALL_STATE(6205)] = 184957, + [SMALL_STATE(6206)] = 185016, + [SMALL_STATE(6207)] = 185075, + [SMALL_STATE(6208)] = 185160, + [SMALL_STATE(6209)] = 185225, + [SMALL_STATE(6210)] = 185284, + [SMALL_STATE(6211)] = 185351, + [SMALL_STATE(6212)] = 185436, + [SMALL_STATE(6213)] = 185495, + [SMALL_STATE(6214)] = 185554, + [SMALL_STATE(6215)] = 185639, + [SMALL_STATE(6216)] = 185698, + [SMALL_STATE(6217)] = 185783, + [SMALL_STATE(6218)] = 185868, + [SMALL_STATE(6219)] = 185953, + [SMALL_STATE(6220)] = 186012, + [SMALL_STATE(6221)] = 186077, + [SMALL_STATE(6222)] = 186136, + [SMALL_STATE(6223)] = 186187, + [SMALL_STATE(6224)] = 186246, + [SMALL_STATE(6225)] = 186305, + [SMALL_STATE(6226)] = 186364, + [SMALL_STATE(6227)] = 186429, + [SMALL_STATE(6228)] = 186488, + [SMALL_STATE(6229)] = 186547, + [SMALL_STATE(6230)] = 186606, + [SMALL_STATE(6231)] = 186665, + [SMALL_STATE(6232)] = 186724, + [SMALL_STATE(6233)] = 186783, + [SMALL_STATE(6234)] = 186842, + [SMALL_STATE(6235)] = 186901, + [SMALL_STATE(6236)] = 186960, + [SMALL_STATE(6237)] = 187019, + [SMALL_STATE(6238)] = 187118, + [SMALL_STATE(6239)] = 187177, + [SMALL_STATE(6240)] = 187276, + [SMALL_STATE(6241)] = 187375, + [SMALL_STATE(6242)] = 187434, + [SMALL_STATE(6243)] = 187533, + [SMALL_STATE(6244)] = 187636, + [SMALL_STATE(6245)] = 187705, + [SMALL_STATE(6246)] = 187800, + [SMALL_STATE(6247)] = 187891, + [SMALL_STATE(6248)] = 187980, + [SMALL_STATE(6249)] = 188065, + [SMALL_STATE(6250)] = 188148, + [SMALL_STATE(6251)] = 188227, + [SMALL_STATE(6252)] = 188302, + [SMALL_STATE(6253)] = 188373, + [SMALL_STATE(6254)] = 188446, + [SMALL_STATE(6255)] = 188505, + [SMALL_STATE(6256)] = 188604, + [SMALL_STATE(6257)] = 188707, + [SMALL_STATE(6258)] = 188806, + [SMALL_STATE(6259)] = 188909, + [SMALL_STATE(6260)] = 188968, + [SMALL_STATE(6261)] = 189027, + [SMALL_STATE(6262)] = 189086, + [SMALL_STATE(6263)] = 189145, + [SMALL_STATE(6264)] = 189204, + [SMALL_STATE(6265)] = 189265, + [SMALL_STATE(6266)] = 189324, + [SMALL_STATE(6267)] = 189385, + [SMALL_STATE(6268)] = 189450, + [SMALL_STATE(6269)] = 189524, + [SMALL_STATE(6270)] = 189578, + [SMALL_STATE(6271)] = 189630, + [SMALL_STATE(6272)] = 189722, + [SMALL_STATE(6273)] = 189814, + [SMALL_STATE(6274)] = 189906, + [SMALL_STATE(6275)] = 189998, + [SMALL_STATE(6276)] = 190104, + [SMALL_STATE(6277)] = 190158, + [SMALL_STATE(6278)] = 190250, + [SMALL_STATE(6279)] = 190324, + [SMALL_STATE(6280)] = 190416, + [SMALL_STATE(6281)] = 190474, + [SMALL_STATE(6282)] = 190566, + [SMALL_STATE(6283)] = 190660, + [SMALL_STATE(6284)] = 190752, + [SMALL_STATE(6285)] = 190844, + [SMALL_STATE(6286)] = 190936, + [SMALL_STATE(6287)] = 191028, + [SMALL_STATE(6288)] = 191086, + [SMALL_STATE(6289)] = 191148, + [SMALL_STATE(6290)] = 191254, + [SMALL_STATE(6291)] = 191346, + [SMALL_STATE(6292)] = 191396, + [SMALL_STATE(6293)] = 191488, + [SMALL_STATE(6294)] = 191580, + [SMALL_STATE(6295)] = 191672, + [SMALL_STATE(6296)] = 191726, + [SMALL_STATE(6297)] = 191776, + [SMALL_STATE(6298)] = 191830, + [SMALL_STATE(6299)] = 191904, + [SMALL_STATE(6300)] = 191960, + [SMALL_STATE(6301)] = 192022, + [SMALL_STATE(6302)] = 192076, + [SMALL_STATE(6303)] = 192150, + [SMALL_STATE(6304)] = 192256, + [SMALL_STATE(6305)] = 192342, + [SMALL_STATE(6306)] = 192416, + [SMALL_STATE(6307)] = 192502, + [SMALL_STATE(6308)] = 192556, + [SMALL_STATE(6309)] = 192606, + [SMALL_STATE(6310)] = 192698, + [SMALL_STATE(6311)] = 192764, + [SMALL_STATE(6312)] = 192814, + [SMALL_STATE(6313)] = 192864, + [SMALL_STATE(6314)] = 192918, + [SMALL_STATE(6315)] = 192972, + [SMALL_STATE(6316)] = 193022, + [SMALL_STATE(6317)] = 193088, + [SMALL_STATE(6318)] = 193140, + [SMALL_STATE(6319)] = 193190, + [SMALL_STATE(6320)] = 193247, + [SMALL_STATE(6321)] = 193296, + [SMALL_STATE(6322)] = 193365, + [SMALL_STATE(6323)] = 193414, + [SMALL_STATE(6324)] = 193463, + [SMALL_STATE(6325)] = 193554, + [SMALL_STATE(6326)] = 193611, + [SMALL_STATE(6327)] = 193668, + [SMALL_STATE(6328)] = 193725, + [SMALL_STATE(6329)] = 193790, + [SMALL_STATE(6330)] = 193843, + [SMALL_STATE(6331)] = 193934, + [SMALL_STATE(6332)] = 193987, + [SMALL_STATE(6333)] = 194066, + [SMALL_STATE(6334)] = 194143, + [SMALL_STATE(6335)] = 194234, + [SMALL_STATE(6336)] = 194287, + [SMALL_STATE(6337)] = 194362, + [SMALL_STATE(6338)] = 194451, + [SMALL_STATE(6339)] = 194524, + [SMALL_STATE(6340)] = 194611, + [SMALL_STATE(6341)] = 194700, + [SMALL_STATE(6342)] = 194785, + [SMALL_STATE(6343)] = 194860, + [SMALL_STATE(6344)] = 194943, + [SMALL_STATE(6345)] = 195032, + [SMALL_STATE(6346)] = 195127, + [SMALL_STATE(6347)] = 195176, + [SMALL_STATE(6348)] = 195225, + [SMALL_STATE(6349)] = 195274, + [SMALL_STATE(6350)] = 195323, + [SMALL_STATE(6351)] = 195408, + [SMALL_STATE(6352)] = 195457, + [SMALL_STATE(6353)] = 195506, + [SMALL_STATE(6354)] = 195555, + [SMALL_STATE(6355)] = 195644, + [SMALL_STATE(6356)] = 195735, + [SMALL_STATE(6357)] = 195824, + [SMALL_STATE(6358)] = 195873, + [SMALL_STATE(6359)] = 195922, + [SMALL_STATE(6360)] = 195997, + [SMALL_STATE(6361)] = 196072, + [SMALL_STATE(6362)] = 196161, + [SMALL_STATE(6363)] = 196210, + [SMALL_STATE(6364)] = 196281, + [SMALL_STATE(6365)] = 196356, + [SMALL_STATE(6366)] = 196413, + [SMALL_STATE(6367)] = 196504, + [SMALL_STATE(6368)] = 196553, + [SMALL_STATE(6369)] = 196610, + [SMALL_STATE(6370)] = 196699, + [SMALL_STATE(6371)] = 196774, + [SMALL_STATE(6372)] = 196859, + [SMALL_STATE(6373)] = 196916, + [SMALL_STATE(6374)] = 197007, + [SMALL_STATE(6375)] = 197096, + [SMALL_STATE(6376)] = 197153, + [SMALL_STATE(6377)] = 197210, + [SMALL_STATE(6378)] = 197267, + [SMALL_STATE(6379)] = 197324, + [SMALL_STATE(6380)] = 197381, + [SMALL_STATE(6381)] = 197434, + [SMALL_STATE(6382)] = 197491, + [SMALL_STATE(6383)] = 197586, + [SMALL_STATE(6384)] = 197643, + [SMALL_STATE(6385)] = 197700, + [SMALL_STATE(6386)] = 197757, + [SMALL_STATE(6387)] = 197806, + [SMALL_STATE(6388)] = 197901, + [SMALL_STATE(6389)] = 197950, + [SMALL_STATE(6390)] = 198003, + [SMALL_STATE(6391)] = 198092, + [SMALL_STATE(6392)] = 198159, + [SMALL_STATE(6393)] = 198214, + [SMALL_STATE(6394)] = 198263, + [SMALL_STATE(6395)] = 198321, + [SMALL_STATE(6396)] = 198397, + [SMALL_STATE(6397)] = 198453, + [SMALL_STATE(6398)] = 198523, + [SMALL_STATE(6399)] = 198619, + [SMALL_STATE(6400)] = 198711, + [SMALL_STATE(6401)] = 198799, + [SMALL_STATE(6402)] = 198857, + [SMALL_STATE(6403)] = 198913, + [SMALL_STATE(6404)] = 198997, + [SMALL_STATE(6405)] = 199055, + [SMALL_STATE(6406)] = 199131, + [SMALL_STATE(6407)] = 199207, + [SMALL_STATE(6408)] = 199289, + [SMALL_STATE(6409)] = 199347, + [SMALL_STATE(6410)] = 199395, + [SMALL_STATE(6411)] = 199453, + [SMALL_STATE(6412)] = 199501, + [SMALL_STATE(6413)] = 199579, + [SMALL_STATE(6414)] = 199627, + [SMALL_STATE(6415)] = 199703, + [SMALL_STATE(6416)] = 199761, + [SMALL_STATE(6417)] = 199853, + [SMALL_STATE(6418)] = 199929, + [SMALL_STATE(6419)] = 199985, + [SMALL_STATE(6420)] = 200043, + [SMALL_STATE(6421)] = 200101, + [SMALL_STATE(6422)] = 200149, + [SMALL_STATE(6423)] = 200207, + [SMALL_STATE(6424)] = 200309, + [SMALL_STATE(6425)] = 200405, + [SMALL_STATE(6426)] = 200501, + [SMALL_STATE(6427)] = 200593, + [SMALL_STATE(6428)] = 200693, + [SMALL_STATE(6429)] = 200749, + [SMALL_STATE(6430)] = 200805, + [SMALL_STATE(6431)] = 200861, + [SMALL_STATE(6432)] = 200917, + [SMALL_STATE(6433)] = 201009, + [SMALL_STATE(6434)] = 201077, + [SMALL_STATE(6435)] = 201135, + [SMALL_STATE(6436)] = 201193, + [SMALL_STATE(6437)] = 201289, + [SMALL_STATE(6438)] = 201379, + [SMALL_STATE(6439)] = 201455, + [SMALL_STATE(6440)] = 201513, + [SMALL_STATE(6441)] = 201605, + [SMALL_STATE(6442)] = 201681, + [SMALL_STATE(6443)] = 201773, + [SMALL_STATE(6444)] = 201831, + [SMALL_STATE(6445)] = 201887, + [SMALL_STATE(6446)] = 201983, + [SMALL_STATE(6447)] = 202049, + [SMALL_STATE(6448)] = 202121, + [SMALL_STATE(6449)] = 202218, + [SMALL_STATE(6450)] = 202271, + [SMALL_STATE(6451)] = 202318, + [SMALL_STATE(6452)] = 202365, + [SMALL_STATE(6453)] = 202412, + [SMALL_STATE(6454)] = 202459, + [SMALL_STATE(6455)] = 202506, + [SMALL_STATE(6456)] = 202603, + [SMALL_STATE(6457)] = 202700, + [SMALL_STATE(6458)] = 202747, + [SMALL_STATE(6459)] = 202794, + [SMALL_STATE(6460)] = 202891, + [SMALL_STATE(6461)] = 202938, + [SMALL_STATE(6462)] = 202985, + [SMALL_STATE(6463)] = 203082, + [SMALL_STATE(6464)] = 203179, + [SMALL_STATE(6465)] = 203226, + [SMALL_STATE(6466)] = 203323, + [SMALL_STATE(6467)] = 203370, + [SMALL_STATE(6468)] = 203417, + [SMALL_STATE(6469)] = 203464, + [SMALL_STATE(6470)] = 203511, + [SMALL_STATE(6471)] = 203564, + [SMALL_STATE(6472)] = 203661, + [SMALL_STATE(6473)] = 203758, + [SMALL_STATE(6474)] = 203855, + [SMALL_STATE(6475)] = 203928, + [SMALL_STATE(6476)] = 203975, + [SMALL_STATE(6477)] = 204026, + [SMALL_STATE(6478)] = 204073, + [SMALL_STATE(6479)] = 204120, + [SMALL_STATE(6480)] = 204167, + [SMALL_STATE(6481)] = 204264, + [SMALL_STATE(6482)] = 204317, + [SMALL_STATE(6483)] = 204364, + [SMALL_STATE(6484)] = 204413, + [SMALL_STATE(6485)] = 204460, + [SMALL_STATE(6486)] = 204507, + [SMALL_STATE(6487)] = 204554, + [SMALL_STATE(6488)] = 204651, + [SMALL_STATE(6489)] = 204698, + [SMALL_STATE(6490)] = 204795, + [SMALL_STATE(6491)] = 204842, + [SMALL_STATE(6492)] = 204889, + [SMALL_STATE(6493)] = 204936, + [SMALL_STATE(6494)] = 205033, + [SMALL_STATE(6495)] = 205080, + [SMALL_STATE(6496)] = 205131, + [SMALL_STATE(6497)] = 205228, + [SMALL_STATE(6498)] = 205275, + [SMALL_STATE(6499)] = 205372, + [SMALL_STATE(6500)] = 205419, + [SMALL_STATE(6501)] = 205516, + [SMALL_STATE(6502)] = 205613, + [SMALL_STATE(6503)] = 205660, + [SMALL_STATE(6504)] = 205757, + [SMALL_STATE(6505)] = 205854, + [SMALL_STATE(6506)] = 205951, + [SMALL_STATE(6507)] = 206048, + [SMALL_STATE(6508)] = 206145, + [SMALL_STATE(6509)] = 206242, + [SMALL_STATE(6510)] = 206289, + [SMALL_STATE(6511)] = 206386, + [SMALL_STATE(6512)] = 206433, + [SMALL_STATE(6513)] = 206530, + [SMALL_STATE(6514)] = 206577, + [SMALL_STATE(6515)] = 206624, + [SMALL_STATE(6516)] = 206721, + [SMALL_STATE(6517)] = 206768, + [SMALL_STATE(6518)] = 206815, + [SMALL_STATE(6519)] = 206870, + [SMALL_STATE(6520)] = 206917, + [SMALL_STATE(6521)] = 207014, + [SMALL_STATE(6522)] = 207087, + [SMALL_STATE(6523)] = 207184, + [SMALL_STATE(6524)] = 207231, + [SMALL_STATE(6525)] = 207278, + [SMALL_STATE(6526)] = 207325, + [SMALL_STATE(6527)] = 207372, + [SMALL_STATE(6528)] = 207419, + [SMALL_STATE(6529)] = 207466, + [SMALL_STATE(6530)] = 207513, + [SMALL_STATE(6531)] = 207560, + [SMALL_STATE(6532)] = 207607, + [SMALL_STATE(6533)] = 207704, + [SMALL_STATE(6534)] = 207801, + [SMALL_STATE(6535)] = 207848, + [SMALL_STATE(6536)] = 207897, + [SMALL_STATE(6537)] = 207944, + [SMALL_STATE(6538)] = 208041, + [SMALL_STATE(6539)] = 208088, + [SMALL_STATE(6540)] = 208135, + [SMALL_STATE(6541)] = 208188, + [SMALL_STATE(6542)] = 208237, + [SMALL_STATE(6543)] = 208284, + [SMALL_STATE(6544)] = 208331, + [SMALL_STATE(6545)] = 208404, + [SMALL_STATE(6546)] = 208457, + [SMALL_STATE(6547)] = 208530, + [SMALL_STATE(6548)] = 208627, + [SMALL_STATE(6549)] = 208724, + [SMALL_STATE(6550)] = 208787, + [SMALL_STATE(6551)] = 208860, + [SMALL_STATE(6552)] = 208957, + [SMALL_STATE(6553)] = 209020, + [SMALL_STATE(6554)] = 209117, + [SMALL_STATE(6555)] = 209164, + [SMALL_STATE(6556)] = 209211, + [SMALL_STATE(6557)] = 209264, + [SMALL_STATE(6558)] = 209317, + [SMALL_STATE(6559)] = 209364, + [SMALL_STATE(6560)] = 209461, + [SMALL_STATE(6561)] = 209558, + [SMALL_STATE(6562)] = 209655, + [SMALL_STATE(6563)] = 209750, + [SMALL_STATE(6564)] = 209847, + [SMALL_STATE(6565)] = 209894, + [SMALL_STATE(6566)] = 209991, + [SMALL_STATE(6567)] = 210088, + [SMALL_STATE(6568)] = 210185, + [SMALL_STATE(6569)] = 210282, + [SMALL_STATE(6570)] = 210371, + [SMALL_STATE(6571)] = 210418, + [SMALL_STATE(6572)] = 210515, + [SMALL_STATE(6573)] = 210562, + [SMALL_STATE(6574)] = 210659, + [SMALL_STATE(6575)] = 210756, + [SMALL_STATE(6576)] = 210803, + [SMALL_STATE(6577)] = 210900, + [SMALL_STATE(6578)] = 210953, + [SMALL_STATE(6579)] = 211002, + [SMALL_STATE(6580)] = 211049, + [SMALL_STATE(6581)] = 211096, + [SMALL_STATE(6582)] = 211147, + [SMALL_STATE(6583)] = 211194, + [SMALL_STATE(6584)] = 211247, + [SMALL_STATE(6585)] = 211344, + [SMALL_STATE(6586)] = 211391, + [SMALL_STATE(6587)] = 211454, + [SMALL_STATE(6588)] = 211501, + [SMALL_STATE(6589)] = 211554, + [SMALL_STATE(6590)] = 211601, + [SMALL_STATE(6591)] = 211648, + [SMALL_STATE(6592)] = 211737, + [SMALL_STATE(6593)] = 211834, + [SMALL_STATE(6594)] = 211929, + [SMALL_STATE(6595)] = 211976, + [SMALL_STATE(6596)] = 212029, + [SMALL_STATE(6597)] = 212126, + [SMALL_STATE(6598)] = 212173, + [SMALL_STATE(6599)] = 212220, + [SMALL_STATE(6600)] = 212273, + [SMALL_STATE(6601)] = 212326, + [SMALL_STATE(6602)] = 212423, + [SMALL_STATE(6603)] = 212478, + [SMALL_STATE(6604)] = 212531, + [SMALL_STATE(6605)] = 212578, + [SMALL_STATE(6606)] = 212627, + [SMALL_STATE(6607)] = 212676, + [SMALL_STATE(6608)] = 212749, + [SMALL_STATE(6609)] = 212846, + [SMALL_STATE(6610)] = 212943, + [SMALL_STATE(6611)] = 212996, + [SMALL_STATE(6612)] = 213043, + [SMALL_STATE(6613)] = 213090, + [SMALL_STATE(6614)] = 213137, + [SMALL_STATE(6615)] = 213184, + [SMALL_STATE(6616)] = 213278, + [SMALL_STATE(6617)] = 213372, + [SMALL_STATE(6618)] = 213440, + [SMALL_STATE(6619)] = 213514, + [SMALL_STATE(6620)] = 213582, + [SMALL_STATE(6621)] = 213670, + [SMALL_STATE(6622)] = 213762, + [SMALL_STATE(6623)] = 213850, + [SMALL_STATE(6624)] = 213922, + [SMALL_STATE(6625)] = 214016, + [SMALL_STATE(6626)] = 214108, + [SMALL_STATE(6627)] = 214200, + [SMALL_STATE(6628)] = 214258, + [SMALL_STATE(6629)] = 214346, + [SMALL_STATE(6630)] = 214434, + [SMALL_STATE(6631)] = 214526, + [SMALL_STATE(6632)] = 214618, + [SMALL_STATE(6633)] = 214692, + [SMALL_STATE(6634)] = 214784, + [SMALL_STATE(6635)] = 214872, + [SMALL_STATE(6636)] = 214960, + [SMALL_STATE(6637)] = 215054, + [SMALL_STATE(6638)] = 215118, + [SMALL_STATE(6639)] = 215178, + [SMALL_STATE(6640)] = 215230, + [SMALL_STATE(6641)] = 215322, + [SMALL_STATE(6642)] = 215414, + [SMALL_STATE(6643)] = 215502, + [SMALL_STATE(6644)] = 215562, + [SMALL_STATE(6645)] = 215644, + [SMALL_STATE(6646)] = 215724, + [SMALL_STATE(6647)] = 215800, + [SMALL_STATE(6648)] = 215874, + [SMALL_STATE(6649)] = 215968, + [SMALL_STATE(6650)] = 216062, + [SMALL_STATE(6651)] = 216134, + [SMALL_STATE(6652)] = 216188, + [SMALL_STATE(6653)] = 216242, + [SMALL_STATE(6654)] = 216302, + [SMALL_STATE(6655)] = 216396, + [SMALL_STATE(6656)] = 216470, + [SMALL_STATE(6657)] = 216530, + [SMALL_STATE(6658)] = 216584, + [SMALL_STATE(6659)] = 216656, + [SMALL_STATE(6660)] = 216730, + [SMALL_STATE(6661)] = 216796, + [SMALL_STATE(6662)] = 216890, + [SMALL_STATE(6663)] = 216984, + [SMALL_STATE(6664)] = 217054, + [SMALL_STATE(6665)] = 217142, + [SMALL_STATE(6666)] = 217230, + [SMALL_STATE(6667)] = 217288, + [SMALL_STATE(6668)] = 217382, + [SMALL_STATE(6669)] = 217474, + [SMALL_STATE(6670)] = 217546, + [SMALL_STATE(6671)] = 217600, + [SMALL_STATE(6672)] = 217694, + [SMALL_STATE(6673)] = 217768, + [SMALL_STATE(6674)] = 217822, + [SMALL_STATE(6675)] = 217916, + [SMALL_STATE(6676)] = 218010, + [SMALL_STATE(6677)] = 218064, + [SMALL_STATE(6678)] = 218156, + [SMALL_STATE(6679)] = 218230, + [SMALL_STATE(6680)] = 218322, + [SMALL_STATE(6681)] = 218376, + [SMALL_STATE(6682)] = 218470, + [SMALL_STATE(6683)] = 218524, + [SMALL_STATE(6684)] = 218578, + [SMALL_STATE(6685)] = 218666, + [SMALL_STATE(6686)] = 218760, + [SMALL_STATE(6687)] = 218834, + [SMALL_STATE(6688)] = 218928, + [SMALL_STATE(6689)] = 219022, + [SMALL_STATE(6690)] = 219114, + [SMALL_STATE(6691)] = 219164, + [SMALL_STATE(6692)] = 219228, + [SMALL_STATE(6693)] = 219322, + [SMALL_STATE(6694)] = 219414, + [SMALL_STATE(6695)] = 219508, + [SMALL_STATE(6696)] = 219600, + [SMALL_STATE(6697)] = 219694, + [SMALL_STATE(6698)] = 219748, + [SMALL_STATE(6699)] = 219840, + [SMALL_STATE(6700)] = 219900, + [SMALL_STATE(6701)] = 219986, + [SMALL_STATE(6702)] = 220080, + [SMALL_STATE(6703)] = 220134, + [SMALL_STATE(6704)] = 220206, + [SMALL_STATE(6705)] = 220300, + [SMALL_STATE(6706)] = 220394, + [SMALL_STATE(6707)] = 220448, + [SMALL_STATE(6708)] = 220542, + [SMALL_STATE(6709)] = 220636, + [SMALL_STATE(6710)] = 220728, + [SMALL_STATE(6711)] = 220822, + [SMALL_STATE(6712)] = 220896, + [SMALL_STATE(6713)] = 220990, + [SMALL_STATE(6714)] = 221042, + [SMALL_STATE(6715)] = 221134, + [SMALL_STATE(6716)] = 221218, + [SMALL_STATE(6717)] = 221278, + [SMALL_STATE(6718)] = 221372, + [SMALL_STATE(6719)] = 221432, + [SMALL_STATE(6720)] = 221480, + [SMALL_STATE(6721)] = 221572, + [SMALL_STATE(6722)] = 221664, + [SMALL_STATE(6723)] = 221752, + [SMALL_STATE(6724)] = 221834, + [SMALL_STATE(6725)] = 221920, + [SMALL_STATE(6726)] = 222012, + [SMALL_STATE(6727)] = 222060, + [SMALL_STATE(6728)] = 222134, + [SMALL_STATE(6729)] = 222222, + [SMALL_STATE(6730)] = 222278, + [SMALL_STATE(6731)] = 222366, + [SMALL_STATE(6732)] = 222454, + [SMALL_STATE(6733)] = 222542, + [SMALL_STATE(6734)] = 222634, + [SMALL_STATE(6735)] = 222698, + [SMALL_STATE(6736)] = 222758, + [SMALL_STATE(6737)] = 222844, + [SMALL_STATE(6738)] = 222928, + [SMALL_STATE(6739)] = 223010, + [SMALL_STATE(6740)] = 223090, + [SMALL_STATE(6741)] = 223166, + [SMALL_STATE(6742)] = 223240, + [SMALL_STATE(6743)] = 223310, + [SMALL_STATE(6744)] = 223376, + [SMALL_STATE(6745)] = 223470, + [SMALL_STATE(6746)] = 223538, + [SMALL_STATE(6747)] = 223632, + [SMALL_STATE(6748)] = 223692, + [SMALL_STATE(6749)] = 223780, + [SMALL_STATE(6750)] = 223872, + [SMALL_STATE(6751)] = 223960, + [SMALL_STATE(6752)] = 224014, + [SMALL_STATE(6753)] = 224106, + [SMALL_STATE(6754)] = 224200, + [SMALL_STATE(6755)] = 224254, + [SMALL_STATE(6756)] = 224308, + [SMALL_STATE(6757)] = 224382, + [SMALL_STATE(6758)] = 224462, + [SMALL_STATE(6759)] = 224536, + [SMALL_STATE(6760)] = 224630, + [SMALL_STATE(6761)] = 224702, + [SMALL_STATE(6762)] = 224796, + [SMALL_STATE(6763)] = 224872, + [SMALL_STATE(6764)] = 224966, + [SMALL_STATE(6765)] = 225058, + [SMALL_STATE(6766)] = 225152, + [SMALL_STATE(6767)] = 225240, + [SMALL_STATE(6768)] = 225294, + [SMALL_STATE(6769)] = 225352, + [SMALL_STATE(6770)] = 225444, + [SMALL_STATE(6771)] = 225538, + [SMALL_STATE(6772)] = 225630, + [SMALL_STATE(6773)] = 225718, + [SMALL_STATE(6774)] = 225806, + [SMALL_STATE(6775)] = 225864, + [SMALL_STATE(6776)] = 225952, + [SMALL_STATE(6777)] = 226012, + [SMALL_STATE(6778)] = 226072, + [SMALL_STATE(6779)] = 226146, + [SMALL_STATE(6780)] = 226234, + [SMALL_STATE(6781)] = 226292, + [SMALL_STATE(6782)] = 226342, + [SMALL_STATE(6783)] = 226430, + [SMALL_STATE(6784)] = 226514, + [SMALL_STATE(6785)] = 226608, + [SMALL_STATE(6786)] = 226678, + [SMALL_STATE(6787)] = 226752, + [SMALL_STATE(6788)] = 226844, + [SMALL_STATE(6789)] = 226932, + [SMALL_STATE(6790)] = 227026, + [SMALL_STATE(6791)] = 227086, + [SMALL_STATE(6792)] = 227158, + [SMALL_STATE(6793)] = 227224, + [SMALL_STATE(6794)] = 227318, + [SMALL_STATE(6795)] = 227410, + [SMALL_STATE(6796)] = 227504, + [SMALL_STATE(6797)] = 227562, + [SMALL_STATE(6798)] = 227656, + [SMALL_STATE(6799)] = 227748, + [SMALL_STATE(6800)] = 227812, + [SMALL_STATE(6801)] = 227906, + [SMALL_STATE(6802)] = 227992, + [SMALL_STATE(6803)] = 228076, + [SMALL_STATE(6804)] = 228158, + [SMALL_STATE(6805)] = 228204, + [SMALL_STATE(6806)] = 228296, + [SMALL_STATE(6807)] = 228390, + [SMALL_STATE(6808)] = 228470, + [SMALL_STATE(6809)] = 228546, + [SMALL_STATE(6810)] = 228640, + [SMALL_STATE(6811)] = 228714, + [SMALL_STATE(6812)] = 228808, + [SMALL_STATE(6813)] = 228878, + [SMALL_STATE(6814)] = 228944, + [SMALL_STATE(6815)] = 229036, + [SMALL_STATE(6816)] = 229128, + [SMALL_STATE(6817)] = 229222, + [SMALL_STATE(6818)] = 229316, + [SMALL_STATE(6819)] = 229407, + [SMALL_STATE(6820)] = 229452, + [SMALL_STATE(6821)] = 229545, + [SMALL_STATE(6822)] = 229636, + [SMALL_STATE(6823)] = 229685, + [SMALL_STATE(6824)] = 229776, + [SMALL_STATE(6825)] = 229867, + [SMALL_STATE(6826)] = 229940, + [SMALL_STATE(6827)] = 230031, + [SMALL_STATE(6828)] = 230122, + [SMALL_STATE(6829)] = 230213, + [SMALL_STATE(6830)] = 230286, + [SMALL_STATE(6831)] = 230377, + [SMALL_STATE(6832)] = 230470, + [SMALL_STATE(6833)] = 230561, + [SMALL_STATE(6834)] = 230652, + [SMALL_STATE(6835)] = 230697, + [SMALL_STATE(6836)] = 230788, + [SMALL_STATE(6837)] = 230879, + [SMALL_STATE(6838)] = 230970, + [SMALL_STATE(6839)] = 231063, + [SMALL_STATE(6840)] = 231136, + [SMALL_STATE(6841)] = 231227, + [SMALL_STATE(6842)] = 231300, + [SMALL_STATE(6843)] = 231353, + [SMALL_STATE(6844)] = 231426, + [SMALL_STATE(6845)] = 231517, + [SMALL_STATE(6846)] = 231610, + [SMALL_STATE(6847)] = 231701, + [SMALL_STATE(6848)] = 231792, + [SMALL_STATE(6849)] = 231841, + [SMALL_STATE(6850)] = 231934, + [SMALL_STATE(6851)] = 232025, + [SMALL_STATE(6852)] = 232116, + [SMALL_STATE(6853)] = 232207, + [SMALL_STATE(6854)] = 232298, + [SMALL_STATE(6855)] = 232347, + [SMALL_STATE(6856)] = 232420, + [SMALL_STATE(6857)] = 232511, + [SMALL_STATE(6858)] = 232602, + [SMALL_STATE(6859)] = 232693, + [SMALL_STATE(6860)] = 232784, + [SMALL_STATE(6861)] = 232875, + [SMALL_STATE(6862)] = 232966, + [SMALL_STATE(6863)] = 233057, + [SMALL_STATE(6864)] = 233148, + [SMALL_STATE(6865)] = 233239, + [SMALL_STATE(6866)] = 233330, + [SMALL_STATE(6867)] = 233423, + [SMALL_STATE(6868)] = 233514, + [SMALL_STATE(6869)] = 233607, + [SMALL_STATE(6870)] = 233698, + [SMALL_STATE(6871)] = 233789, + [SMALL_STATE(6872)] = 233838, + [SMALL_STATE(6873)] = 233929, + [SMALL_STATE(6874)] = 234002, + [SMALL_STATE(6875)] = 234093, + [SMALL_STATE(6876)] = 234164, + [SMALL_STATE(6877)] = 234235, + [SMALL_STATE(6878)] = 234308, + [SMALL_STATE(6879)] = 234399, + [SMALL_STATE(6880)] = 234490, + [SMALL_STATE(6881)] = 234581, + [SMALL_STATE(6882)] = 234654, + [SMALL_STATE(6883)] = 234745, + [SMALL_STATE(6884)] = 234836, + [SMALL_STATE(6885)] = 234929, + [SMALL_STATE(6886)] = 235020, + [SMALL_STATE(6887)] = 235113, + [SMALL_STATE(6888)] = 235204, + [SMALL_STATE(6889)] = 235249, + [SMALL_STATE(6890)] = 235340, + [SMALL_STATE(6891)] = 235431, + [SMALL_STATE(6892)] = 235522, + [SMALL_STATE(6893)] = 235613, + [SMALL_STATE(6894)] = 235662, + [SMALL_STATE(6895)] = 235753, + [SMALL_STATE(6896)] = 235844, + [SMALL_STATE(6897)] = 235917, + [SMALL_STATE(6898)] = 236008, + [SMALL_STATE(6899)] = 236099, + [SMALL_STATE(6900)] = 236190, + [SMALL_STATE(6901)] = 236281, + [SMALL_STATE(6902)] = 236372, + [SMALL_STATE(6903)] = 236463, + [SMALL_STATE(6904)] = 236554, + [SMALL_STATE(6905)] = 236647, + [SMALL_STATE(6906)] = 236738, + [SMALL_STATE(6907)] = 236785, + [SMALL_STATE(6908)] = 236876, + [SMALL_STATE(6909)] = 236967, + [SMALL_STATE(6910)] = 237058, + [SMALL_STATE(6911)] = 237149, + [SMALL_STATE(6912)] = 237240, + [SMALL_STATE(6913)] = 237327, + [SMALL_STATE(6914)] = 237418, + [SMALL_STATE(6915)] = 237509, + [SMALL_STATE(6916)] = 237600, + [SMALL_STATE(6917)] = 237691, + [SMALL_STATE(6918)] = 237782, + [SMALL_STATE(6919)] = 237873, + [SMALL_STATE(6920)] = 237960, + [SMALL_STATE(6921)] = 238051, + [SMALL_STATE(6922)] = 238142, + [SMALL_STATE(6923)] = 238233, + [SMALL_STATE(6924)] = 238324, + [SMALL_STATE(6925)] = 238395, + [SMALL_STATE(6926)] = 238486, + [SMALL_STATE(6927)] = 238577, + [SMALL_STATE(6928)] = 238650, + [SMALL_STATE(6929)] = 238741, + [SMALL_STATE(6930)] = 238832, + [SMALL_STATE(6931)] = 238923, + [SMALL_STATE(6932)] = 239014, + [SMALL_STATE(6933)] = 239105, + [SMALL_STATE(6934)] = 239196, + [SMALL_STATE(6935)] = 239269, + [SMALL_STATE(6936)] = 239360, + [SMALL_STATE(6937)] = 239451, + [SMALL_STATE(6938)] = 239542, + [SMALL_STATE(6939)] = 239633, + [SMALL_STATE(6940)] = 239724, + [SMALL_STATE(6941)] = 239815, + [SMALL_STATE(6942)] = 239906, + [SMALL_STATE(6943)] = 239997, + [SMALL_STATE(6944)] = 240088, + [SMALL_STATE(6945)] = 240179, + [SMALL_STATE(6946)] = 240270, + [SMALL_STATE(6947)] = 240361, + [SMALL_STATE(6948)] = 240434, + [SMALL_STATE(6949)] = 240525, + [SMALL_STATE(6950)] = 240616, + [SMALL_STATE(6951)] = 240707, + [SMALL_STATE(6952)] = 240780, + [SMALL_STATE(6953)] = 240871, + [SMALL_STATE(6954)] = 240962, + [SMALL_STATE(6955)] = 241053, + [SMALL_STATE(6956)] = 241144, + [SMALL_STATE(6957)] = 241235, + [SMALL_STATE(6958)] = 241326, + [SMALL_STATE(6959)] = 241417, + [SMALL_STATE(6960)] = 241490, + [SMALL_STATE(6961)] = 241563, + [SMALL_STATE(6962)] = 241654, + [SMALL_STATE(6963)] = 241745, + [SMALL_STATE(6964)] = 241836, + [SMALL_STATE(6965)] = 241927, + [SMALL_STATE(6966)] = 241974, + [SMALL_STATE(6967)] = 242047, + [SMALL_STATE(6968)] = 242138, + [SMALL_STATE(6969)] = 242229, + [SMALL_STATE(6970)] = 242320, + [SMALL_STATE(6971)] = 242411, + [SMALL_STATE(6972)] = 242502, + [SMALL_STATE(6973)] = 242593, + [SMALL_STATE(6974)] = 242648, + [SMALL_STATE(6975)] = 242739, + [SMALL_STATE(6976)] = 242830, + [SMALL_STATE(6977)] = 242921, + [SMALL_STATE(6978)] = 243012, + [SMALL_STATE(6979)] = 243103, + [SMALL_STATE(6980)] = 243194, + [SMALL_STATE(6981)] = 243267, + [SMALL_STATE(6982)] = 243358, + [SMALL_STATE(6983)] = 243449, + [SMALL_STATE(6984)] = 243540, + [SMALL_STATE(6985)] = 243631, + [SMALL_STATE(6986)] = 243722, + [SMALL_STATE(6987)] = 243813, + [SMALL_STATE(6988)] = 243904, + [SMALL_STATE(6989)] = 243995, + [SMALL_STATE(6990)] = 244086, + [SMALL_STATE(6991)] = 244177, + [SMALL_STATE(6992)] = 244268, + [SMALL_STATE(6993)] = 244359, + [SMALL_STATE(6994)] = 244446, + [SMALL_STATE(6995)] = 244493, + [SMALL_STATE(6996)] = 244542, + [SMALL_STATE(6997)] = 244589, + [SMALL_STATE(6998)] = 244680, + [SMALL_STATE(6999)] = 244727, + [SMALL_STATE(7000)] = 244818, + [SMALL_STATE(7001)] = 244909, + [SMALL_STATE(7002)] = 244954, + [SMALL_STATE(7003)] = 245047, + [SMALL_STATE(7004)] = 245138, + [SMALL_STATE(7005)] = 245229, + [SMALL_STATE(7006)] = 245320, + [SMALL_STATE(7007)] = 245411, + [SMALL_STATE(7008)] = 245502, + [SMALL_STATE(7009)] = 245547, + [SMALL_STATE(7010)] = 245620, + [SMALL_STATE(7011)] = 245711, + [SMALL_STATE(7012)] = 245802, + [SMALL_STATE(7013)] = 245875, + [SMALL_STATE(7014)] = 245966, + [SMALL_STATE(7015)] = 246057, + [SMALL_STATE(7016)] = 246150, + [SMALL_STATE(7017)] = 246241, + [SMALL_STATE(7018)] = 246332, + [SMALL_STATE(7019)] = 246383, + [SMALL_STATE(7020)] = 246428, + [SMALL_STATE(7021)] = 246521, + [SMALL_STATE(7022)] = 246584, + [SMALL_STATE(7023)] = 246675, + [SMALL_STATE(7024)] = 246766, + [SMALL_STATE(7025)] = 246857, + [SMALL_STATE(7026)] = 246948, + [SMALL_STATE(7027)] = 247035, + [SMALL_STATE(7028)] = 247128, + [SMALL_STATE(7029)] = 247219, + [SMALL_STATE(7030)] = 247310, + [SMALL_STATE(7031)] = 247401, + [SMALL_STATE(7032)] = 247492, + [SMALL_STATE(7033)] = 247563, + [SMALL_STATE(7034)] = 247608, + [SMALL_STATE(7035)] = 247655, + [SMALL_STATE(7036)] = 247700, + [SMALL_STATE(7037)] = 247749, + [SMALL_STATE(7038)] = 247840, + [SMALL_STATE(7039)] = 247933, + [SMALL_STATE(7040)] = 248026, + [SMALL_STATE(7041)] = 248075, + [SMALL_STATE(7042)] = 248124, + [SMALL_STATE(7043)] = 248215, + [SMALL_STATE(7044)] = 248264, + [SMALL_STATE(7045)] = 248355, + [SMALL_STATE(7046)] = 248448, + [SMALL_STATE(7047)] = 248539, + [SMALL_STATE(7048)] = 248630, + [SMALL_STATE(7049)] = 248721, + [SMALL_STATE(7050)] = 248812, + [SMALL_STATE(7051)] = 248903, + [SMALL_STATE(7052)] = 248994, + [SMALL_STATE(7053)] = 249087, + [SMALL_STATE(7054)] = 249178, + [SMALL_STATE(7055)] = 249269, + [SMALL_STATE(7056)] = 249360, + [SMALL_STATE(7057)] = 249409, + [SMALL_STATE(7058)] = 249458, + [SMALL_STATE(7059)] = 249551, + [SMALL_STATE(7060)] = 249642, + [SMALL_STATE(7061)] = 249733, + [SMALL_STATE(7062)] = 249824, + [SMALL_STATE(7063)] = 249917, + [SMALL_STATE(7064)] = 250008, + [SMALL_STATE(7065)] = 250099, + [SMALL_STATE(7066)] = 250192, + [SMALL_STATE(7067)] = 250263, + [SMALL_STATE(7068)] = 250334, + [SMALL_STATE(7069)] = 250425, + [SMALL_STATE(7070)] = 250516, + [SMALL_STATE(7071)] = 250607, + [SMALL_STATE(7072)] = 250698, + [SMALL_STATE(7073)] = 250789, + [SMALL_STATE(7074)] = 250880, + [SMALL_STATE(7075)] = 250971, + [SMALL_STATE(7076)] = 251064, + [SMALL_STATE(7077)] = 251155, + [SMALL_STATE(7078)] = 251246, + [SMALL_STATE(7079)] = 251337, + [SMALL_STATE(7080)] = 251428, + [SMALL_STATE(7081)] = 251519, + [SMALL_STATE(7082)] = 251610, + [SMALL_STATE(7083)] = 251701, + [SMALL_STATE(7084)] = 251792, + [SMALL_STATE(7085)] = 251841, + [SMALL_STATE(7086)] = 251914, + [SMALL_STATE(7087)] = 251964, + [SMALL_STATE(7088)] = 252056, + [SMALL_STATE(7089)] = 252148, + [SMALL_STATE(7090)] = 252240, + [SMALL_STATE(7091)] = 252332, + [SMALL_STATE(7092)] = 252424, + [SMALL_STATE(7093)] = 252516, + [SMALL_STATE(7094)] = 252560, + [SMALL_STATE(7095)] = 252630, + [SMALL_STATE(7096)] = 252722, + [SMALL_STATE(7097)] = 252814, + [SMALL_STATE(7098)] = 252906, + [SMALL_STATE(7099)] = 252998, + [SMALL_STATE(7100)] = 253068, + [SMALL_STATE(7101)] = 253148, + [SMALL_STATE(7102)] = 253234, + [SMALL_STATE(7103)] = 253326, + [SMALL_STATE(7104)] = 253418, + [SMALL_STATE(7105)] = 253510, + [SMALL_STATE(7106)] = 253602, + [SMALL_STATE(7107)] = 253646, + [SMALL_STATE(7108)] = 253690, + [SMALL_STATE(7109)] = 253782, + [SMALL_STATE(7110)] = 253874, + [SMALL_STATE(7111)] = 253966, + [SMALL_STATE(7112)] = 254010, + [SMALL_STATE(7113)] = 254102, + [SMALL_STATE(7114)] = 254146, + [SMALL_STATE(7115)] = 254190, + [SMALL_STATE(7116)] = 254234, + [SMALL_STATE(7117)] = 254326, + [SMALL_STATE(7118)] = 254370, + [SMALL_STATE(7119)] = 254414, + [SMALL_STATE(7120)] = 254506, + [SMALL_STATE(7121)] = 254550, + [SMALL_STATE(7122)] = 254594, + [SMALL_STATE(7123)] = 254638, + [SMALL_STATE(7124)] = 254682, + [SMALL_STATE(7125)] = 254726, + [SMALL_STATE(7126)] = 254818, + [SMALL_STATE(7127)] = 254910, + [SMALL_STATE(7128)] = 255002, + [SMALL_STATE(7129)] = 255046, + [SMALL_STATE(7130)] = 255138, + [SMALL_STATE(7131)] = 255188, + [SMALL_STATE(7132)] = 255280, + [SMALL_STATE(7133)] = 255372, + [SMALL_STATE(7134)] = 255464, + [SMALL_STATE(7135)] = 255508, + [SMALL_STATE(7136)] = 255552, + [SMALL_STATE(7137)] = 255596, + [SMALL_STATE(7138)] = 255688, + [SMALL_STATE(7139)] = 255758, + [SMALL_STATE(7140)] = 255802, + [SMALL_STATE(7141)] = 255846, + [SMALL_STATE(7142)] = 255890, + [SMALL_STATE(7143)] = 255982, + [SMALL_STATE(7144)] = 256074, + [SMALL_STATE(7145)] = 256166, + [SMALL_STATE(7146)] = 256210, + [SMALL_STATE(7147)] = 256302, + [SMALL_STATE(7148)] = 256394, + [SMALL_STATE(7149)] = 256486, + [SMALL_STATE(7150)] = 256556, + [SMALL_STATE(7151)] = 256626, + [SMALL_STATE(7152)] = 256670, + [SMALL_STATE(7153)] = 256762, + [SMALL_STATE(7154)] = 256854, + [SMALL_STATE(7155)] = 256946, + [SMALL_STATE(7156)] = 256990, + [SMALL_STATE(7157)] = 257034, + [SMALL_STATE(7158)] = 257078, + [SMALL_STATE(7159)] = 257122, + [SMALL_STATE(7160)] = 257166, + [SMALL_STATE(7161)] = 257210, + [SMALL_STATE(7162)] = 257254, + [SMALL_STATE(7163)] = 257298, + [SMALL_STATE(7164)] = 257342, + [SMALL_STATE(7165)] = 257386, + [SMALL_STATE(7166)] = 257430, + [SMALL_STATE(7167)] = 257522, + [SMALL_STATE(7168)] = 257614, + [SMALL_STATE(7169)] = 257706, + [SMALL_STATE(7170)] = 257798, + [SMALL_STATE(7171)] = 257890, + [SMALL_STATE(7172)] = 257982, + [SMALL_STATE(7173)] = 258026, + [SMALL_STATE(7174)] = 258070, + [SMALL_STATE(7175)] = 258114, + [SMALL_STATE(7176)] = 258158, + [SMALL_STATE(7177)] = 258246, + [SMALL_STATE(7178)] = 258338, + [SMALL_STATE(7179)] = 258430, + [SMALL_STATE(7180)] = 258522, + [SMALL_STATE(7181)] = 258566, + [SMALL_STATE(7182)] = 258658, + [SMALL_STATE(7183)] = 258750, + [SMALL_STATE(7184)] = 258842, + [SMALL_STATE(7185)] = 258934, + [SMALL_STATE(7186)] = 259026, + [SMALL_STATE(7187)] = 259118, + [SMALL_STATE(7188)] = 259162, + [SMALL_STATE(7189)] = 259254, + [SMALL_STATE(7190)] = 259346, + [SMALL_STATE(7191)] = 259438, + [SMALL_STATE(7192)] = 259530, + [SMALL_STATE(7193)] = 259622, + [SMALL_STATE(7194)] = 259714, + [SMALL_STATE(7195)] = 259758, + [SMALL_STATE(7196)] = 259850, + [SMALL_STATE(7197)] = 259942, + [SMALL_STATE(7198)] = 260034, + [SMALL_STATE(7199)] = 260078, + [SMALL_STATE(7200)] = 260122, + [SMALL_STATE(7201)] = 260214, + [SMALL_STATE(7202)] = 260306, + [SMALL_STATE(7203)] = 260398, + [SMALL_STATE(7204)] = 260490, + [SMALL_STATE(7205)] = 260582, + [SMALL_STATE(7206)] = 260674, + [SMALL_STATE(7207)] = 260718, + [SMALL_STATE(7208)] = 260762, + [SMALL_STATE(7209)] = 260806, + [SMALL_STATE(7210)] = 260850, + [SMALL_STATE(7211)] = 260894, + [SMALL_STATE(7212)] = 260938, + [SMALL_STATE(7213)] = 261030, + [SMALL_STATE(7214)] = 261122, + [SMALL_STATE(7215)] = 261214, + [SMALL_STATE(7216)] = 261258, + [SMALL_STATE(7217)] = 261302, + [SMALL_STATE(7218)] = 261346, + [SMALL_STATE(7219)] = 261398, + [SMALL_STATE(7220)] = 261490, + [SMALL_STATE(7221)] = 261582, + [SMALL_STATE(7222)] = 261674, + [SMALL_STATE(7223)] = 261766, + [SMALL_STATE(7224)] = 261858, + [SMALL_STATE(7225)] = 261950, + [SMALL_STATE(7226)] = 262010, + [SMALL_STATE(7227)] = 262058, + [SMALL_STATE(7228)] = 262144, + [SMALL_STATE(7229)] = 262236, + [SMALL_STATE(7230)] = 262328, + [SMALL_STATE(7231)] = 262420, + [SMALL_STATE(7232)] = 262464, + [SMALL_STATE(7233)] = 262508, + [SMALL_STATE(7234)] = 262552, + [SMALL_STATE(7235)] = 262644, + [SMALL_STATE(7236)] = 262688, + [SMALL_STATE(7237)] = 262732, + [SMALL_STATE(7238)] = 262824, + [SMALL_STATE(7239)] = 262916, + [SMALL_STATE(7240)] = 262986, + [SMALL_STATE(7241)] = 263078, + [SMALL_STATE(7242)] = 263122, + [SMALL_STATE(7243)] = 263214, + [SMALL_STATE(7244)] = 263306, + [SMALL_STATE(7245)] = 263350, + [SMALL_STATE(7246)] = 263394, + [SMALL_STATE(7247)] = 263474, + [SMALL_STATE(7248)] = 263566, + [SMALL_STATE(7249)] = 263616, + [SMALL_STATE(7250)] = 263696, + [SMALL_STATE(7251)] = 263788, + [SMALL_STATE(7252)] = 263880, + [SMALL_STATE(7253)] = 263972, + [SMALL_STATE(7254)] = 264016, + [SMALL_STATE(7255)] = 264060, + [SMALL_STATE(7256)] = 264104, + [SMALL_STATE(7257)] = 264184, + [SMALL_STATE(7258)] = 264242, + [SMALL_STATE(7259)] = 264286, + [SMALL_STATE(7260)] = 264330, + [SMALL_STATE(7261)] = 264374, + [SMALL_STATE(7262)] = 264418, + [SMALL_STATE(7263)] = 264462, + [SMALL_STATE(7264)] = 264506, + [SMALL_STATE(7265)] = 264550, + [SMALL_STATE(7266)] = 264594, + [SMALL_STATE(7267)] = 264638, + [SMALL_STATE(7268)] = 264696, + [SMALL_STATE(7269)] = 264788, + [SMALL_STATE(7270)] = 264880, + [SMALL_STATE(7271)] = 264972, + [SMALL_STATE(7272)] = 265020, + [SMALL_STATE(7273)] = 265072, + [SMALL_STATE(7274)] = 265116, + [SMALL_STATE(7275)] = 265164, + [SMALL_STATE(7276)] = 265208, + [SMALL_STATE(7277)] = 265252, + [SMALL_STATE(7278)] = 265344, + [SMALL_STATE(7279)] = 265436, + [SMALL_STATE(7280)] = 265528, + [SMALL_STATE(7281)] = 265572, + [SMALL_STATE(7282)] = 265664, + [SMALL_STATE(7283)] = 265708, + [SMALL_STATE(7284)] = 265752, + [SMALL_STATE(7285)] = 265841, + [SMALL_STATE(7286)] = 265928, + [SMALL_STATE(7287)] = 265997, + [SMALL_STATE(7288)] = 266084, + [SMALL_STATE(7289)] = 266173, + [SMALL_STATE(7290)] = 266262, + [SMALL_STATE(7291)] = 266307, + [SMALL_STATE(7292)] = 266394, + [SMALL_STATE(7293)] = 266479, + [SMALL_STATE(7294)] = 266568, + [SMALL_STATE(7295)] = 266617, + [SMALL_STATE(7296)] = 266686, + [SMALL_STATE(7297)] = 266773, + [SMALL_STATE(7298)] = 266862, + [SMALL_STATE(7299)] = 266949, + [SMALL_STATE(7300)] = 266998, + [SMALL_STATE(7301)] = 267067, + [SMALL_STATE(7302)] = 267154, + [SMALL_STATE(7303)] = 267241, + [SMALL_STATE(7304)] = 267328, + [SMALL_STATE(7305)] = 267417, + [SMALL_STATE(7306)] = 267504, + [SMALL_STATE(7307)] = 267591, + [SMALL_STATE(7308)] = 267678, + [SMALL_STATE(7309)] = 267767, + [SMALL_STATE(7310)] = 267856, + [SMALL_STATE(7311)] = 267945, + [SMALL_STATE(7312)] = 268032, + [SMALL_STATE(7313)] = 268121, + [SMALL_STATE(7314)] = 268208, + [SMALL_STATE(7315)] = 268295, + [SMALL_STATE(7316)] = 268382, + [SMALL_STATE(7317)] = 268469, + [SMALL_STATE(7318)] = 268556, + [SMALL_STATE(7319)] = 268645, + [SMALL_STATE(7320)] = 268732, + [SMALL_STATE(7321)] = 268821, + [SMALL_STATE(7322)] = 268910, + [SMALL_STATE(7323)] = 268959, + [SMALL_STATE(7324)] = 269048, + [SMALL_STATE(7325)] = 269137, + [SMALL_STATE(7326)] = 269226, + [SMALL_STATE(7327)] = 269313, + [SMALL_STATE(7328)] = 269400, + [SMALL_STATE(7329)] = 269487, + [SMALL_STATE(7330)] = 269574, + [SMALL_STATE(7331)] = 269663, + [SMALL_STATE(7332)] = 269752, + [SMALL_STATE(7333)] = 269841, + [SMALL_STATE(7334)] = 269928, + [SMALL_STATE(7335)] = 270015, + [SMALL_STATE(7336)] = 270084, + [SMALL_STATE(7337)] = 270171, + [SMALL_STATE(7338)] = 270256, + [SMALL_STATE(7339)] = 270345, + [SMALL_STATE(7340)] = 270434, + [SMALL_STATE(7341)] = 270521, + [SMALL_STATE(7342)] = 270608, + [SMALL_STATE(7343)] = 270697, + [SMALL_STATE(7344)] = 270786, + [SMALL_STATE(7345)] = 270875, + [SMALL_STATE(7346)] = 270962, + [SMALL_STATE(7347)] = 271049, + [SMALL_STATE(7348)] = 271138, + [SMALL_STATE(7349)] = 271225, + [SMALL_STATE(7350)] = 271312, + [SMALL_STATE(7351)] = 271399, + [SMALL_STATE(7352)] = 271468, + [SMALL_STATE(7353)] = 271517, + [SMALL_STATE(7354)] = 271604, + [SMALL_STATE(7355)] = 271691, + [SMALL_STATE(7356)] = 271778, + [SMALL_STATE(7357)] = 271865, + [SMALL_STATE(7358)] = 271952, + [SMALL_STATE(7359)] = 272041, + [SMALL_STATE(7360)] = 272128, + [SMALL_STATE(7361)] = 272217, + [SMALL_STATE(7362)] = 272304, + [SMALL_STATE(7363)] = 272391, + [SMALL_STATE(7364)] = 272480, + [SMALL_STATE(7365)] = 272567, + [SMALL_STATE(7366)] = 272654, + [SMALL_STATE(7367)] = 272741, + [SMALL_STATE(7368)] = 272828, + [SMALL_STATE(7369)] = 272897, + [SMALL_STATE(7370)] = 272986, + [SMALL_STATE(7371)] = 273073, + [SMALL_STATE(7372)] = 273162, + [SMALL_STATE(7373)] = 273249, + [SMALL_STATE(7374)] = 273338, + [SMALL_STATE(7375)] = 273407, + [SMALL_STATE(7376)] = 273494, + [SMALL_STATE(7377)] = 273583, + [SMALL_STATE(7378)] = 273652, + [SMALL_STATE(7379)] = 273741, + [SMALL_STATE(7380)] = 273826, + [SMALL_STATE(7381)] = 273913, + [SMALL_STATE(7382)] = 274002, + [SMALL_STATE(7383)] = 274089, + [SMALL_STATE(7384)] = 274176, + [SMALL_STATE(7385)] = 274263, + [SMALL_STATE(7386)] = 274352, + [SMALL_STATE(7387)] = 274437, + [SMALL_STATE(7388)] = 274524, + [SMALL_STATE(7389)] = 274611, + [SMALL_STATE(7390)] = 274689, + [SMALL_STATE(7391)] = 274767, + [SMALL_STATE(7392)] = 274845, + [SMALL_STATE(7393)] = 274923, + [SMALL_STATE(7394)] = 275001, + [SMALL_STATE(7395)] = 275079, + [SMALL_STATE(7396)] = 275157, + [SMALL_STATE(7397)] = 275225, + [SMALL_STATE(7398)] = 275267, + [SMALL_STATE(7399)] = 275345, + [SMALL_STATE(7400)] = 275413, + [SMALL_STATE(7401)] = 275491, + [SMALL_STATE(7402)] = 275569, + [SMALL_STATE(7403)] = 275621, + [SMALL_STATE(7404)] = 275699, + [SMALL_STATE(7405)] = 275777, + [SMALL_STATE(7406)] = 275855, + [SMALL_STATE(7407)] = 275933, + [SMALL_STATE(7408)] = 276011, + [SMALL_STATE(7409)] = 276095, + [SMALL_STATE(7410)] = 276173, + [SMALL_STATE(7411)] = 276251, + [SMALL_STATE(7412)] = 276329, + [SMALL_STATE(7413)] = 276407, + [SMALL_STATE(7414)] = 276485, + [SMALL_STATE(7415)] = 276563, + [SMALL_STATE(7416)] = 276641, + [SMALL_STATE(7417)] = 276719, + [SMALL_STATE(7418)] = 276787, + [SMALL_STATE(7419)] = 276865, + [SMALL_STATE(7420)] = 276943, + [SMALL_STATE(7421)] = 277021, + [SMALL_STATE(7422)] = 277099, + [SMALL_STATE(7423)] = 277177, + [SMALL_STATE(7424)] = 277255, + [SMALL_STATE(7425)] = 277333, + [SMALL_STATE(7426)] = 277411, + [SMALL_STATE(7427)] = 277489, + [SMALL_STATE(7428)] = 277567, + [SMALL_STATE(7429)] = 277645, + [SMALL_STATE(7430)] = 277723, + [SMALL_STATE(7431)] = 277801, + [SMALL_STATE(7432)] = 277879, + [SMALL_STATE(7433)] = 277957, + [SMALL_STATE(7434)] = 278009, + [SMALL_STATE(7435)] = 278093, + [SMALL_STATE(7436)] = 278135, + [SMALL_STATE(7437)] = 278177, + [SMALL_STATE(7438)] = 278255, + [SMALL_STATE(7439)] = 278333, + [SMALL_STATE(7440)] = 278411, + [SMALL_STATE(7441)] = 278479, + [SMALL_STATE(7442)] = 278547, + [SMALL_STATE(7443)] = 278625, + [SMALL_STATE(7444)] = 278703, + [SMALL_STATE(7445)] = 278781, + [SMALL_STATE(7446)] = 278849, + [SMALL_STATE(7447)] = 278927, + [SMALL_STATE(7448)] = 278969, + [SMALL_STATE(7449)] = 279047, + [SMALL_STATE(7450)] = 279125, + [SMALL_STATE(7451)] = 279203, + [SMALL_STATE(7452)] = 279286, + [SMALL_STATE(7453)] = 279353, + [SMALL_STATE(7454)] = 279400, + [SMALL_STATE(7455)] = 279447, + [SMALL_STATE(7456)] = 279530, + [SMALL_STATE(7457)] = 279577, + [SMALL_STATE(7458)] = 279632, + [SMALL_STATE(7459)] = 279709, + [SMALL_STATE(7460)] = 279766, + [SMALL_STATE(7461)] = 279833, + [SMALL_STATE(7462)] = 279880, + [SMALL_STATE(7463)] = 279947, + [SMALL_STATE(7464)] = 279994, + [SMALL_STATE(7465)] = 280077, + [SMALL_STATE(7466)] = 280132, + [SMALL_STATE(7467)] = 280199, + [SMALL_STATE(7468)] = 280252, + [SMALL_STATE(7469)] = 280299, + [SMALL_STATE(7470)] = 280346, + [SMALL_STATE(7471)] = 280393, + [SMALL_STATE(7472)] = 280440, + [SMALL_STATE(7473)] = 280487, + [SMALL_STATE(7474)] = 280534, + [SMALL_STATE(7475)] = 280591, + [SMALL_STATE(7476)] = 280648, + [SMALL_STATE(7477)] = 280725, + [SMALL_STATE(7478)] = 280766, + [SMALL_STATE(7479)] = 280843, + [SMALL_STATE(7480)] = 280890, + [SMALL_STATE(7481)] = 280957, + [SMALL_STATE(7482)] = 281004, + [SMALL_STATE(7483)] = 281057, + [SMALL_STATE(7484)] = 281140, + [SMALL_STATE(7485)] = 281183, + [SMALL_STATE(7486)] = 281238, + [SMALL_STATE(7487)] = 281315, + [SMALL_STATE(7488)] = 281382, + [SMALL_STATE(7489)] = 281437, + [SMALL_STATE(7490)] = 281486, + [SMALL_STATE(7491)] = 281526, + [SMALL_STATE(7492)] = 281566, + [SMALL_STATE(7493)] = 281606, + [SMALL_STATE(7494)] = 281646, + [SMALL_STATE(7495)] = 281722, + [SMALL_STATE(7496)] = 281762, + [SMALL_STATE(7497)] = 281802, + [SMALL_STATE(7498)] = 281842, + [SMALL_STATE(7499)] = 281882, + [SMALL_STATE(7500)] = 281922, + [SMALL_STATE(7501)] = 281962, + [SMALL_STATE(7502)] = 282002, + [SMALL_STATE(7503)] = 282078, + [SMALL_STATE(7504)] = 282118, + [SMALL_STATE(7505)] = 282194, + [SMALL_STATE(7506)] = 282234, + [SMALL_STATE(7507)] = 282274, + [SMALL_STATE(7508)] = 282314, + [SMALL_STATE(7509)] = 282354, + [SMALL_STATE(7510)] = 282394, + [SMALL_STATE(7511)] = 282470, + [SMALL_STATE(7512)] = 282510, + [SMALL_STATE(7513)] = 282550, + [SMALL_STATE(7514)] = 282590, + [SMALL_STATE(7515)] = 282630, + [SMALL_STATE(7516)] = 282670, + [SMALL_STATE(7517)] = 282710, + [SMALL_STATE(7518)] = 282750, + [SMALL_STATE(7519)] = 282826, + [SMALL_STATE(7520)] = 282866, + [SMALL_STATE(7521)] = 282906, + [SMALL_STATE(7522)] = 282946, + [SMALL_STATE(7523)] = 283022, + [SMALL_STATE(7524)] = 283098, + [SMALL_STATE(7525)] = 283138, + [SMALL_STATE(7526)] = 283178, + [SMALL_STATE(7527)] = 283218, + [SMALL_STATE(7528)] = 283258, + [SMALL_STATE(7529)] = 283298, + [SMALL_STATE(7530)] = 283338, + [SMALL_STATE(7531)] = 283378, + [SMALL_STATE(7532)] = 283418, + [SMALL_STATE(7533)] = 283458, + [SMALL_STATE(7534)] = 283540, + [SMALL_STATE(7535)] = 283580, + [SMALL_STATE(7536)] = 283656, + [SMALL_STATE(7537)] = 283696, + [SMALL_STATE(7538)] = 283736, + [SMALL_STATE(7539)] = 283776, + [SMALL_STATE(7540)] = 283823, + [SMALL_STATE(7541)] = 283898, + [SMALL_STATE(7542)] = 283967, + [SMALL_STATE(7543)] = 284036, + [SMALL_STATE(7544)] = 284105, + [SMALL_STATE(7545)] = 284152, + [SMALL_STATE(7546)] = 284227, + [SMALL_STATE(7547)] = 284296, + [SMALL_STATE(7548)] = 284371, + [SMALL_STATE(7549)] = 284440, + [SMALL_STATE(7550)] = 284515, + [SMALL_STATE(7551)] = 284584, + [SMALL_STATE(7552)] = 284626, + [SMALL_STATE(7553)] = 284668, + [SMALL_STATE(7554)] = 284742, + [SMALL_STATE(7555)] = 284784, + [SMALL_STATE(7556)] = 284856, + [SMALL_STATE(7557)] = 284898, + [SMALL_STATE(7558)] = 284972, + [SMALL_STATE(7559)] = 285026, + [SMALL_STATE(7560)] = 285066, + [SMALL_STATE(7561)] = 285140, + [SMALL_STATE(7562)] = 285212, + [SMALL_STATE(7563)] = 285284, + [SMALL_STATE(7564)] = 285356, + [SMALL_STATE(7565)] = 285398, + [SMALL_STATE(7566)] = 285440, + [SMALL_STATE(7567)] = 285514, + [SMALL_STATE(7568)] = 285556, + [SMALL_STATE(7569)] = 285628, + [SMALL_STATE(7570)] = 285670, + [SMALL_STATE(7571)] = 285742, + [SMALL_STATE(7572)] = 285816, + [SMALL_STATE(7573)] = 285888, + [SMALL_STATE(7574)] = 285942, + [SMALL_STATE(7575)] = 285984, + [SMALL_STATE(7576)] = 286026, + [SMALL_STATE(7577)] = 286100, + [SMALL_STATE(7578)] = 286146, + [SMALL_STATE(7579)] = 286188, + [SMALL_STATE(7580)] = 286260, + [SMALL_STATE(7581)] = 286334, + [SMALL_STATE(7582)] = 286376, + [SMALL_STATE(7583)] = 286450, + [SMALL_STATE(7584)] = 286522, + [SMALL_STATE(7585)] = 286589, + [SMALL_STATE(7586)] = 286656, + [SMALL_STATE(7587)] = 286723, + [SMALL_STATE(7588)] = 286768, + [SMALL_STATE(7589)] = 286809, + [SMALL_STATE(7590)] = 286850, + [SMALL_STATE(7591)] = 286917, + [SMALL_STATE(7592)] = 286962, + [SMALL_STATE(7593)] = 287011, + [SMALL_STATE(7594)] = 287078, + [SMALL_STATE(7595)] = 287123, + [SMALL_STATE(7596)] = 287168, + [SMALL_STATE(7597)] = 287235, + [SMALL_STATE(7598)] = 287302, + [SMALL_STATE(7599)] = 287375, + [SMALL_STATE(7600)] = 287416, + [SMALL_STATE(7601)] = 287483, + [SMALL_STATE(7602)] = 287550, + [SMALL_STATE(7603)] = 287591, + [SMALL_STATE(7604)] = 287634, + [SMALL_STATE(7605)] = 287701, + [SMALL_STATE(7606)] = 287742, + [SMALL_STATE(7607)] = 287809, + [SMALL_STATE(7608)] = 287850, + [SMALL_STATE(7609)] = 287923, + [SMALL_STATE(7610)] = 287964, + [SMALL_STATE(7611)] = 288005, + [SMALL_STATE(7612)] = 288046, + [SMALL_STATE(7613)] = 288087, + [SMALL_STATE(7614)] = 288128, + [SMALL_STATE(7615)] = 288169, + [SMALL_STATE(7616)] = 288236, + [SMALL_STATE(7617)] = 288302, + [SMALL_STATE(7618)] = 288368, + [SMALL_STATE(7619)] = 288434, + [SMALL_STATE(7620)] = 288500, + [SMALL_STATE(7621)] = 288566, + [SMALL_STATE(7622)] = 288632, + [SMALL_STATE(7623)] = 288713, + [SMALL_STATE(7624)] = 288776, + [SMALL_STATE(7625)] = 288839, + [SMALL_STATE(7626)] = 288902, + [SMALL_STATE(7627)] = 288965, + [SMALL_STATE(7628)] = 289028, + [SMALL_STATE(7629)] = 289091, + [SMALL_STATE(7630)] = 289154, + [SMALL_STATE(7631)] = 289217, + [SMALL_STATE(7632)] = 289280, + [SMALL_STATE(7633)] = 289343, + [SMALL_STATE(7634)] = 289406, + [SMALL_STATE(7635)] = 289469, + [SMALL_STATE(7636)] = 289510, + [SMALL_STATE(7637)] = 289575, + [SMALL_STATE(7638)] = 289638, + [SMALL_STATE(7639)] = 289701, + [SMALL_STATE(7640)] = 289764, + [SMALL_STATE(7641)] = 289827, + [SMALL_STATE(7642)] = 289890, + [SMALL_STATE(7643)] = 289955, + [SMALL_STATE(7644)] = 290020, + [SMALL_STATE(7645)] = 290083, + [SMALL_STATE(7646)] = 290146, + [SMALL_STATE(7647)] = 290211, + [SMALL_STATE(7648)] = 290274, + [SMALL_STATE(7649)] = 290337, + [SMALL_STATE(7650)] = 290400, + [SMALL_STATE(7651)] = 290465, + [SMALL_STATE(7652)] = 290504, + [SMALL_STATE(7653)] = 290585, + [SMALL_STATE(7654)] = 290648, + [SMALL_STATE(7655)] = 290711, + [SMALL_STATE(7656)] = 290774, + [SMALL_STATE(7657)] = 290837, + [SMALL_STATE(7658)] = 290900, + [SMALL_STATE(7659)] = 290963, + [SMALL_STATE(7660)] = 291028, + [SMALL_STATE(7661)] = 291093, + [SMALL_STATE(7662)] = 291158, + [SMALL_STATE(7663)] = 291211, + [SMALL_STATE(7664)] = 291274, + [SMALL_STATE(7665)] = 291339, + [SMALL_STATE(7666)] = 291402, + [SMALL_STATE(7667)] = 291465, + [SMALL_STATE(7668)] = 291528, + [SMALL_STATE(7669)] = 291591, + [SMALL_STATE(7670)] = 291654, + [SMALL_STATE(7671)] = 291719, + [SMALL_STATE(7672)] = 291782, + [SMALL_STATE(7673)] = 291847, + [SMALL_STATE(7674)] = 291910, + [SMALL_STATE(7675)] = 291973, + [SMALL_STATE(7676)] = 292036, + [SMALL_STATE(7677)] = 292117, + [SMALL_STATE(7678)] = 292180, + [SMALL_STATE(7679)] = 292243, + [SMALL_STATE(7680)] = 292306, + [SMALL_STATE(7681)] = 292369, + [SMALL_STATE(7682)] = 292434, + [SMALL_STATE(7683)] = 292497, + [SMALL_STATE(7684)] = 292560, + [SMALL_STATE(7685)] = 292623, + [SMALL_STATE(7686)] = 292686, + [SMALL_STATE(7687)] = 292749, + [SMALL_STATE(7688)] = 292812, + [SMALL_STATE(7689)] = 292882, + [SMALL_STATE(7690)] = 292952, + [SMALL_STATE(7691)] = 293022, + [SMALL_STATE(7692)] = 293092, + [SMALL_STATE(7693)] = 293162, + [SMALL_STATE(7694)] = 293232, + [SMALL_STATE(7695)] = 293302, + [SMALL_STATE(7696)] = 293372, + [SMALL_STATE(7697)] = 293442, + [SMALL_STATE(7698)] = 293512, + [SMALL_STATE(7699)] = 293582, + [SMALL_STATE(7700)] = 293652, + [SMALL_STATE(7701)] = 293716, + [SMALL_STATE(7702)] = 293786, + [SMALL_STATE(7703)] = 293856, + [SMALL_STATE(7704)] = 293926, + [SMALL_STATE(7705)] = 293996, + [SMALL_STATE(7706)] = 294066, + [SMALL_STATE(7707)] = 294136, + [SMALL_STATE(7708)] = 294206, + [SMALL_STATE(7709)] = 294264, + [SMALL_STATE(7710)] = 294328, + [SMALL_STATE(7711)] = 294398, + [SMALL_STATE(7712)] = 294468, + [SMALL_STATE(7713)] = 294538, + [SMALL_STATE(7714)] = 294608, + [SMALL_STATE(7715)] = 294678, + [SMALL_STATE(7716)] = 294742, + [SMALL_STATE(7717)] = 294812, + [SMALL_STATE(7718)] = 294882, + [SMALL_STATE(7719)] = 294952, + [SMALL_STATE(7720)] = 295022, + [SMALL_STATE(7721)] = 295092, + [SMALL_STATE(7722)] = 295156, + [SMALL_STATE(7723)] = 295226, + [SMALL_STATE(7724)] = 295296, + [SMALL_STATE(7725)] = 295366, + [SMALL_STATE(7726)] = 295436, + [SMALL_STATE(7727)] = 295494, + [SMALL_STATE(7728)] = 295564, + [SMALL_STATE(7729)] = 295634, + [SMALL_STATE(7730)] = 295704, + [SMALL_STATE(7731)] = 295774, + [SMALL_STATE(7732)] = 295844, + [SMALL_STATE(7733)] = 295914, + [SMALL_STATE(7734)] = 295984, + [SMALL_STATE(7735)] = 296054, + [SMALL_STATE(7736)] = 296124, + [SMALL_STATE(7737)] = 296182, + [SMALL_STATE(7738)] = 296246, + [SMALL_STATE(7739)] = 296316, + [SMALL_STATE(7740)] = 296386, + [SMALL_STATE(7741)] = 296456, + [SMALL_STATE(7742)] = 296526, + [SMALL_STATE(7743)] = 296596, + [SMALL_STATE(7744)] = 296666, + [SMALL_STATE(7745)] = 296736, + [SMALL_STATE(7746)] = 296800, + [SMALL_STATE(7747)] = 296874, + [SMALL_STATE(7748)] = 296944, + [SMALL_STATE(7749)] = 297014, + [SMALL_STATE(7750)] = 297084, + [SMALL_STATE(7751)] = 297154, + [SMALL_STATE(7752)] = 297224, + [SMALL_STATE(7753)] = 297294, + [SMALL_STATE(7754)] = 297364, + [SMALL_STATE(7755)] = 297434, + [SMALL_STATE(7756)] = 297504, + [SMALL_STATE(7757)] = 297574, + [SMALL_STATE(7758)] = 297644, + [SMALL_STATE(7759)] = 297714, + [SMALL_STATE(7760)] = 297784, + [SMALL_STATE(7761)] = 297854, + [SMALL_STATE(7762)] = 297924, + [SMALL_STATE(7763)] = 297994, + [SMALL_STATE(7764)] = 298064, + [SMALL_STATE(7765)] = 298122, + [SMALL_STATE(7766)] = 298192, + [SMALL_STATE(7767)] = 298262, + [SMALL_STATE(7768)] = 298332, + [SMALL_STATE(7769)] = 298402, + [SMALL_STATE(7770)] = 298472, + [SMALL_STATE(7771)] = 298542, + [SMALL_STATE(7772)] = 298612, + [SMALL_STATE(7773)] = 298682, + [SMALL_STATE(7774)] = 298752, + [SMALL_STATE(7775)] = 298810, + [SMALL_STATE(7776)] = 298880, + [SMALL_STATE(7777)] = 298950, + [SMALL_STATE(7778)] = 299020, + [SMALL_STATE(7779)] = 299090, + [SMALL_STATE(7780)] = 299160, + [SMALL_STATE(7781)] = 299230, + [SMALL_STATE(7782)] = 299300, + [SMALL_STATE(7783)] = 299370, + [SMALL_STATE(7784)] = 299440, + [SMALL_STATE(7785)] = 299510, + [SMALL_STATE(7786)] = 299562, + [SMALL_STATE(7787)] = 299632, + [SMALL_STATE(7788)] = 299702, + [SMALL_STATE(7789)] = 299772, + [SMALL_STATE(7790)] = 299842, + [SMALL_STATE(7791)] = 299912, + [SMALL_STATE(7792)] = 299987, + [SMALL_STATE(7793)] = 300062, + [SMALL_STATE(7794)] = 300125, + [SMALL_STATE(7795)] = 300188, + [SMALL_STATE(7796)] = 300251, + [SMALL_STATE(7797)] = 300294, + [SMALL_STATE(7798)] = 300369, + [SMALL_STATE(7799)] = 300432, + [SMALL_STATE(7800)] = 300495, + [SMALL_STATE(7801)] = 300558, + [SMALL_STATE(7802)] = 300621, + [SMALL_STATE(7803)] = 300696, + [SMALL_STATE(7804)] = 300771, + [SMALL_STATE(7805)] = 300846, + [SMALL_STATE(7806)] = 300909, + [SMALL_STATE(7807)] = 300972, + [SMALL_STATE(7808)] = 301035, + [SMALL_STATE(7809)] = 301098, + [SMALL_STATE(7810)] = 301161, + [SMALL_STATE(7811)] = 301236, + [SMALL_STATE(7812)] = 301311, + [SMALL_STATE(7813)] = 301374, + [SMALL_STATE(7814)] = 301437, + [SMALL_STATE(7815)] = 301500, + [SMALL_STATE(7816)] = 301563, + [SMALL_STATE(7817)] = 301638, + [SMALL_STATE(7818)] = 301701, + [SMALL_STATE(7819)] = 301744, + [SMALL_STATE(7820)] = 301819, + [SMALL_STATE(7821)] = 301894, + [SMALL_STATE(7822)] = 301957, + [SMALL_STATE(7823)] = 302020, + [SMALL_STATE(7824)] = 302057, + [SMALL_STATE(7825)] = 302120, + [SMALL_STATE(7826)] = 302195, + [SMALL_STATE(7827)] = 302258, + [SMALL_STATE(7828)] = 302321, + [SMALL_STATE(7829)] = 302384, + [SMALL_STATE(7830)] = 302459, + [SMALL_STATE(7831)] = 302522, + [SMALL_STATE(7832)] = 302597, + [SMALL_STATE(7833)] = 302672, + [SMALL_STATE(7834)] = 302735, + [SMALL_STATE(7835)] = 302810, + [SMALL_STATE(7836)] = 302873, + [SMALL_STATE(7837)] = 302936, + [SMALL_STATE(7838)] = 302999, + [SMALL_STATE(7839)] = 303042, + [SMALL_STATE(7840)] = 303117, + [SMALL_STATE(7841)] = 303192, + [SMALL_STATE(7842)] = 303255, + [SMALL_STATE(7843)] = 303318, + [SMALL_STATE(7844)] = 303381, + [SMALL_STATE(7845)] = 303444, + [SMALL_STATE(7846)] = 303507, + [SMALL_STATE(7847)] = 303570, + [SMALL_STATE(7848)] = 303633, + [SMALL_STATE(7849)] = 303696, + [SMALL_STATE(7850)] = 303759, + [SMALL_STATE(7851)] = 303834, + [SMALL_STATE(7852)] = 303897, + [SMALL_STATE(7853)] = 303960, + [SMALL_STATE(7854)] = 304035, + [SMALL_STATE(7855)] = 304098, + [SMALL_STATE(7856)] = 304161, + [SMALL_STATE(7857)] = 304236, + [SMALL_STATE(7858)] = 304299, + [SMALL_STATE(7859)] = 304362, + [SMALL_STATE(7860)] = 304425, + [SMALL_STATE(7861)] = 304500, + [SMALL_STATE(7862)] = 304563, + [SMALL_STATE(7863)] = 304626, + [SMALL_STATE(7864)] = 304701, + [SMALL_STATE(7865)] = 304776, + [SMALL_STATE(7866)] = 304851, + [SMALL_STATE(7867)] = 304926, + [SMALL_STATE(7868)] = 305001, + [SMALL_STATE(7869)] = 305044, + [SMALL_STATE(7870)] = 305112, + [SMALL_STATE(7871)] = 305180, + [SMALL_STATE(7872)] = 305216, + [SMALL_STATE(7873)] = 305284, + [SMALL_STATE(7874)] = 305358, + [SMALL_STATE(7875)] = 305420, + [SMALL_STATE(7876)] = 305474, + [SMALL_STATE(7877)] = 305536, + [SMALL_STATE(7878)] = 305610, + [SMALL_STATE(7879)] = 305678, + [SMALL_STATE(7880)] = 305746, + [SMALL_STATE(7881)] = 305820, + [SMALL_STATE(7882)] = 305882, + [SMALL_STATE(7883)] = 305917, + [SMALL_STATE(7884)] = 305948, + [SMALL_STATE(7885)] = 305979, + [SMALL_STATE(7886)] = 306038, + [SMALL_STATE(7887)] = 306097, + [SMALL_STATE(7888)] = 306128, + [SMALL_STATE(7889)] = 306159, + [SMALL_STATE(7890)] = 306190, + [SMALL_STATE(7891)] = 306221, + [SMALL_STATE(7892)] = 306260, + [SMALL_STATE(7893)] = 306291, + [SMALL_STATE(7894)] = 306322, + [SMALL_STATE(7895)] = 306381, + [SMALL_STATE(7896)] = 306412, + [SMALL_STATE(7897)] = 306445, + [SMALL_STATE(7898)] = 306504, + [SMALL_STATE(7899)] = 306535, + [SMALL_STATE(7900)] = 306566, + [SMALL_STATE(7901)] = 306597, + [SMALL_STATE(7902)] = 306628, + [SMALL_STATE(7903)] = 306687, + [SMALL_STATE(7904)] = 306746, + [SMALL_STATE(7905)] = 306805, + [SMALL_STATE(7906)] = 306864, + [SMALL_STATE(7907)] = 306923, + [SMALL_STATE(7908)] = 306982, + [SMALL_STATE(7909)] = 307041, + [SMALL_STATE(7910)] = 307100, + [SMALL_STATE(7911)] = 307159, + [SMALL_STATE(7912)] = 307218, + [SMALL_STATE(7913)] = 307277, + [SMALL_STATE(7914)] = 307336, + [SMALL_STATE(7915)] = 307395, + [SMALL_STATE(7916)] = 307454, + [SMALL_STATE(7917)] = 307489, + [SMALL_STATE(7918)] = 307528, + [SMALL_STATE(7919)] = 307587, + [SMALL_STATE(7920)] = 307646, + [SMALL_STATE(7921)] = 307705, + [SMALL_STATE(7922)] = 307764, + [SMALL_STATE(7923)] = 307823, + [SMALL_STATE(7924)] = 307882, + [SMALL_STATE(7925)] = 307921, + [SMALL_STATE(7926)] = 307952, + [SMALL_STATE(7927)] = 307991, + [SMALL_STATE(7928)] = 308030, + [SMALL_STATE(7929)] = 308069, + [SMALL_STATE(7930)] = 308128, + [SMALL_STATE(7931)] = 308163, + [SMALL_STATE(7932)] = 308202, + [SMALL_STATE(7933)] = 308249, + [SMALL_STATE(7934)] = 308280, + [SMALL_STATE(7935)] = 308319, + [SMALL_STATE(7936)] = 308378, + [SMALL_STATE(7937)] = 308437, + [SMALL_STATE(7938)] = 308472, + [SMALL_STATE(7939)] = 308511, + [SMALL_STATE(7940)] = 308570, + [SMALL_STATE(7941)] = 308601, + [SMALL_STATE(7942)] = 308632, + [SMALL_STATE(7943)] = 308663, + [SMALL_STATE(7944)] = 308694, + [SMALL_STATE(7945)] = 308733, + [SMALL_STATE(7946)] = 308764, + [SMALL_STATE(7947)] = 308806, + [SMALL_STATE(7948)] = 308848, + [SMALL_STATE(7949)] = 308890, + [SMALL_STATE(7950)] = 308932, + [SMALL_STATE(7951)] = 308974, + [SMALL_STATE(7952)] = 309028, + [SMALL_STATE(7953)] = 309082, + [SMALL_STATE(7954)] = 309116, + [SMALL_STATE(7955)] = 309146, + [SMALL_STATE(7956)] = 309194, + [SMALL_STATE(7957)] = 309236, + [SMALL_STATE(7958)] = 309278, + [SMALL_STATE(7959)] = 309320, + [SMALL_STATE(7960)] = 309371, + [SMALL_STATE(7961)] = 309416, + [SMALL_STATE(7962)] = 309467, + [SMALL_STATE(7963)] = 309528, + [SMALL_STATE(7964)] = 309581, + [SMALL_STATE(7965)] = 309634, + [SMALL_STATE(7966)] = 309685, + [SMALL_STATE(7967)] = 309736, + [SMALL_STATE(7968)] = 309797, + [SMALL_STATE(7969)] = 309848, + [SMALL_STATE(7970)] = 309899, + [SMALL_STATE(7971)] = 309952, + [SMALL_STATE(7972)] = 309983, + [SMALL_STATE(7973)] = 310044, + [SMALL_STATE(7974)] = 310095, + [SMALL_STATE(7975)] = 310138, + [SMALL_STATE(7976)] = 310191, + [SMALL_STATE(7977)] = 310242, + [SMALL_STATE(7978)] = 310295, + [SMALL_STATE(7979)] = 310346, + [SMALL_STATE(7980)] = 310399, + [SMALL_STATE(7981)] = 310452, + [SMALL_STATE(7982)] = 310507, + [SMALL_STATE(7983)] = 310558, + [SMALL_STATE(7984)] = 310591, + [SMALL_STATE(7985)] = 310652, + [SMALL_STATE(7986)] = 310705, + [SMALL_STATE(7987)] = 310756, + [SMALL_STATE(7988)] = 310785, + [SMALL_STATE(7989)] = 310838, + [SMALL_STATE(7990)] = 310867, + [SMALL_STATE(7991)] = 310918, + [SMALL_STATE(7992)] = 310979, + [SMALL_STATE(7993)] = 311032, + [SMALL_STATE(7994)] = 311083, + [SMALL_STATE(7995)] = 311134, + [SMALL_STATE(7996)] = 311185, + [SMALL_STATE(7997)] = 311236, + [SMALL_STATE(7998)] = 311265, + [SMALL_STATE(7999)] = 311316, + [SMALL_STATE(8000)] = 311367, + [SMALL_STATE(8001)] = 311418, + [SMALL_STATE(8002)] = 311469, + [SMALL_STATE(8003)] = 311512, + [SMALL_STATE(8004)] = 311563, + [SMALL_STATE(8005)] = 311614, + [SMALL_STATE(8006)] = 311655, + [SMALL_STATE(8007)] = 311696, + [SMALL_STATE(8008)] = 311737, + [SMALL_STATE(8009)] = 311790, + [SMALL_STATE(8010)] = 311831, + [SMALL_STATE(8011)] = 311864, + [SMALL_STATE(8012)] = 311905, + [SMALL_STATE(8013)] = 311946, + [SMALL_STATE(8014)] = 311987, + [SMALL_STATE(8015)] = 312028, + [SMALL_STATE(8016)] = 312081, + [SMALL_STATE(8017)] = 312114, + [SMALL_STATE(8018)] = 312167, + [SMALL_STATE(8019)] = 312228, + [SMALL_STATE(8020)] = 312289, + [SMALL_STATE(8021)] = 312340, + [SMALL_STATE(8022)] = 312383, + [SMALL_STATE(8023)] = 312412, + [SMALL_STATE(8024)] = 312441, + [SMALL_STATE(8025)] = 312492, + [SMALL_STATE(8026)] = 312545, + [SMALL_STATE(8027)] = 312598, + [SMALL_STATE(8028)] = 312653, + [SMALL_STATE(8029)] = 312708, + [SMALL_STATE(8030)] = 312763, + [SMALL_STATE(8031)] = 312814, + [SMALL_STATE(8032)] = 312865, + [SMALL_STATE(8033)] = 312916, + [SMALL_STATE(8034)] = 312967, + [SMALL_STATE(8035)] = 313007, + [SMALL_STATE(8036)] = 313047, + [SMALL_STATE(8037)] = 313087, + [SMALL_STATE(8038)] = 313137, + [SMALL_STATE(8039)] = 313187, + [SMALL_STATE(8040)] = 313227, + [SMALL_STATE(8041)] = 313277, + [SMALL_STATE(8042)] = 313317, + [SMALL_STATE(8043)] = 313357, + [SMALL_STATE(8044)] = 313409, + [SMALL_STATE(8045)] = 313449, + [SMALL_STATE(8046)] = 313489, + [SMALL_STATE(8047)] = 313529, + [SMALL_STATE(8048)] = 313557, + [SMALL_STATE(8049)] = 313597, + [SMALL_STATE(8050)] = 313637, + [SMALL_STATE(8051)] = 313677, + [SMALL_STATE(8052)] = 313717, + [SMALL_STATE(8053)] = 313757, + [SMALL_STATE(8054)] = 313797, + [SMALL_STATE(8055)] = 313825, + [SMALL_STATE(8056)] = 313865, + [SMALL_STATE(8057)] = 313909, + [SMALL_STATE(8058)] = 313955, + [SMALL_STATE(8059)] = 313995, + [SMALL_STATE(8060)] = 314023, + [SMALL_STATE(8061)] = 314063, + [SMALL_STATE(8062)] = 314091, + [SMALL_STATE(8063)] = 314131, + [SMALL_STATE(8064)] = 314171, + [SMALL_STATE(8065)] = 314199, + [SMALL_STATE(8066)] = 314239, + [SMALL_STATE(8067)] = 314271, + [SMALL_STATE(8068)] = 314311, + [SMALL_STATE(8069)] = 314339, + [SMALL_STATE(8070)] = 314387, + [SMALL_STATE(8071)] = 314427, + [SMALL_STATE(8072)] = 314473, + [SMALL_STATE(8073)] = 314523, + [SMALL_STATE(8074)] = 314573, + [SMALL_STATE(8075)] = 314623, + [SMALL_STATE(8076)] = 314675, + [SMALL_STATE(8077)] = 314715, + [SMALL_STATE(8078)] = 314761, + [SMALL_STATE(8079)] = 314801, + [SMALL_STATE(8080)] = 314845, + [SMALL_STATE(8081)] = 314895, + [SMALL_STATE(8082)] = 314947, + [SMALL_STATE(8083)] = 314989, + [SMALL_STATE(8084)] = 315039, + [SMALL_STATE(8085)] = 315079, + [SMALL_STATE(8086)] = 315115, + [SMALL_STATE(8087)] = 315149, + [SMALL_STATE(8088)] = 315199, + [SMALL_STATE(8089)] = 315249, + [SMALL_STATE(8090)] = 315281, + [SMALL_STATE(8091)] = 315333, + [SMALL_STATE(8092)] = 315373, + [SMALL_STATE(8093)] = 315423, + [SMALL_STATE(8094)] = 315473, + [SMALL_STATE(8095)] = 315523, + [SMALL_STATE(8096)] = 315573, + [SMALL_STATE(8097)] = 315623, + [SMALL_STATE(8098)] = 315673, + [SMALL_STATE(8099)] = 315723, + [SMALL_STATE(8100)] = 315763, + [SMALL_STATE(8101)] = 315813, + [SMALL_STATE(8102)] = 315853, + [SMALL_STATE(8103)] = 315903, + [SMALL_STATE(8104)] = 315949, + [SMALL_STATE(8105)] = 315989, + [SMALL_STATE(8106)] = 316029, + [SMALL_STATE(8107)] = 316081, + [SMALL_STATE(8108)] = 316121, + [SMALL_STATE(8109)] = 316161, + [SMALL_STATE(8110)] = 316201, + [SMALL_STATE(8111)] = 316241, + [SMALL_STATE(8112)] = 316281, + [SMALL_STATE(8113)] = 316321, + [SMALL_STATE(8114)] = 316361, + [SMALL_STATE(8115)] = 316389, + [SMALL_STATE(8116)] = 316417, + [SMALL_STATE(8117)] = 316457, + [SMALL_STATE(8118)] = 316485, + [SMALL_STATE(8119)] = 316513, + [SMALL_STATE(8120)] = 316553, + [SMALL_STATE(8121)] = 316580, + [SMALL_STATE(8122)] = 316631, + [SMALL_STATE(8123)] = 316682, + [SMALL_STATE(8124)] = 316733, + [SMALL_STATE(8125)] = 316780, + [SMALL_STATE(8126)] = 316831, + [SMALL_STATE(8127)] = 316882, + [SMALL_STATE(8128)] = 316929, + [SMALL_STATE(8129)] = 316956, + [SMALL_STATE(8130)] = 317007, + [SMALL_STATE(8131)] = 317052, + [SMALL_STATE(8132)] = 317079, + [SMALL_STATE(8133)] = 317128, + [SMALL_STATE(8134)] = 317155, + [SMALL_STATE(8135)] = 317182, + [SMALL_STATE(8136)] = 317233, + [SMALL_STATE(8137)] = 317280, + [SMALL_STATE(8138)] = 317327, + [SMALL_STATE(8139)] = 317376, + [SMALL_STATE(8140)] = 317423, + [SMALL_STATE(8141)] = 317460, + [SMALL_STATE(8142)] = 317507, + [SMALL_STATE(8143)] = 317554, + [SMALL_STATE(8144)] = 317585, + [SMALL_STATE(8145)] = 317632, + [SMALL_STATE(8146)] = 317677, + [SMALL_STATE(8147)] = 317704, + [SMALL_STATE(8148)] = 317741, + [SMALL_STATE(8149)] = 317768, + [SMALL_STATE(8150)] = 317795, + [SMALL_STATE(8151)] = 317822, + [SMALL_STATE(8152)] = 317871, + [SMALL_STATE(8153)] = 317926, + [SMALL_STATE(8154)] = 317975, + [SMALL_STATE(8155)] = 318026, + [SMALL_STATE(8156)] = 318063, + [SMALL_STATE(8157)] = 318090, + [SMALL_STATE(8158)] = 318137, + [SMALL_STATE(8159)] = 318184, + [SMALL_STATE(8160)] = 318235, + [SMALL_STATE(8161)] = 318262, + [SMALL_STATE(8162)] = 318289, + [SMALL_STATE(8163)] = 318316, + [SMALL_STATE(8164)] = 318343, + [SMALL_STATE(8165)] = 318370, + [SMALL_STATE(8166)] = 318397, + [SMALL_STATE(8167)] = 318430, + [SMALL_STATE(8168)] = 318481, + [SMALL_STATE(8169)] = 318532, + [SMALL_STATE(8170)] = 318559, + [SMALL_STATE(8171)] = 318586, + [SMALL_STATE(8172)] = 318629, + [SMALL_STATE(8173)] = 318680, + [SMALL_STATE(8174)] = 318731, + [SMALL_STATE(8175)] = 318782, + [SMALL_STATE(8176)] = 318833, + [SMALL_STATE(8177)] = 318884, + [SMALL_STATE(8178)] = 318935, + [SMALL_STATE(8179)] = 318986, + [SMALL_STATE(8180)] = 319031, + [SMALL_STATE(8181)] = 319058, + [SMALL_STATE(8182)] = 319085, + [SMALL_STATE(8183)] = 319132, + [SMALL_STATE(8184)] = 319159, + [SMALL_STATE(8185)] = 319206, + [SMALL_STATE(8186)] = 319251, + [SMALL_STATE(8187)] = 319298, + [SMALL_STATE(8188)] = 319343, + [SMALL_STATE(8189)] = 319388, + [SMALL_STATE(8190)] = 319439, + [SMALL_STATE(8191)] = 319476, + [SMALL_STATE(8192)] = 319525, + [SMALL_STATE(8193)] = 319576, + [SMALL_STATE(8194)] = 319627, + [SMALL_STATE(8195)] = 319672, + [SMALL_STATE(8196)] = 319699, + [SMALL_STATE(8197)] = 319744, + [SMALL_STATE(8198)] = 319791, + [SMALL_STATE(8199)] = 319846, + [SMALL_STATE(8200)] = 319893, + [SMALL_STATE(8201)] = 319940, + [SMALL_STATE(8202)] = 319991, + [SMALL_STATE(8203)] = 320042, + [SMALL_STATE(8204)] = 320089, + [SMALL_STATE(8205)] = 320134, + [SMALL_STATE(8206)] = 320161, + [SMALL_STATE(8207)] = 320208, + [SMALL_STATE(8208)] = 320235, + [SMALL_STATE(8209)] = 320262, + [SMALL_STATE(8210)] = 320313, + [SMALL_STATE(8211)] = 320346, + [SMALL_STATE(8212)] = 320397, + [SMALL_STATE(8213)] = 320426, + [SMALL_STATE(8214)] = 320459, + [SMALL_STATE(8215)] = 320486, + [SMALL_STATE(8216)] = 320531, + [SMALL_STATE(8217)] = 320558, + [SMALL_STATE(8218)] = 320603, + [SMALL_STATE(8219)] = 320652, + [SMALL_STATE(8220)] = 320703, + [SMALL_STATE(8221)] = 320754, + [SMALL_STATE(8222)] = 320799, + [SMALL_STATE(8223)] = 320828, + [SMALL_STATE(8224)] = 320855, + [SMALL_STATE(8225)] = 320900, + [SMALL_STATE(8226)] = 320943, + [SMALL_STATE(8227)] = 320984, + [SMALL_STATE(8228)] = 321023, + [SMALL_STATE(8229)] = 321060, + [SMALL_STATE(8230)] = 321095, + [SMALL_STATE(8231)] = 321146, + [SMALL_STATE(8232)] = 321179, + [SMALL_STATE(8233)] = 321210, + [SMALL_STATE(8234)] = 321255, + [SMALL_STATE(8235)] = 321282, + [SMALL_STATE(8236)] = 321309, + [SMALL_STATE(8237)] = 321340, + [SMALL_STATE(8238)] = 321373, + [SMALL_STATE(8239)] = 321424, + [SMALL_STATE(8240)] = 321451, + [SMALL_STATE(8241)] = 321488, + [SMALL_STATE(8242)] = 321533, + [SMALL_STATE(8243)] = 321569, + [SMALL_STATE(8244)] = 321607, + [SMALL_STATE(8245)] = 321633, + [SMALL_STATE(8246)] = 321659, + [SMALL_STATE(8247)] = 321695, + [SMALL_STATE(8248)] = 321747, + [SMALL_STATE(8249)] = 321773, + [SMALL_STATE(8250)] = 321825, + [SMALL_STATE(8251)] = 321879, + [SMALL_STATE(8252)] = 321933, + [SMALL_STATE(8253)] = 321959, + [SMALL_STATE(8254)] = 321989, + [SMALL_STATE(8255)] = 322015, + [SMALL_STATE(8256)] = 322053, + [SMALL_STATE(8257)] = 322091, + [SMALL_STATE(8258)] = 322121, + [SMALL_STATE(8259)] = 322169, + [SMALL_STATE(8260)] = 322203, + [SMALL_STATE(8261)] = 322229, + [SMALL_STATE(8262)] = 322255, + [SMALL_STATE(8263)] = 322303, + [SMALL_STATE(8264)] = 322333, + [SMALL_STATE(8265)] = 322371, + [SMALL_STATE(8266)] = 322397, + [SMALL_STATE(8267)] = 322435, + [SMALL_STATE(8268)] = 322489, + [SMALL_STATE(8269)] = 322523, + [SMALL_STATE(8270)] = 322557, + [SMALL_STATE(8271)] = 322603, + [SMALL_STATE(8272)] = 322631, + [SMALL_STATE(8273)] = 322657, + [SMALL_STATE(8274)] = 322711, + [SMALL_STATE(8275)] = 322765, + [SMALL_STATE(8276)] = 322815, + [SMALL_STATE(8277)] = 322849, + [SMALL_STATE(8278)] = 322875, + [SMALL_STATE(8279)] = 322901, + [SMALL_STATE(8280)] = 322937, + [SMALL_STATE(8281)] = 322963, + [SMALL_STATE(8282)] = 322989, + [SMALL_STATE(8283)] = 323021, + [SMALL_STATE(8284)] = 323063, + [SMALL_STATE(8285)] = 323101, + [SMALL_STATE(8286)] = 323151, + [SMALL_STATE(8287)] = 323181, + [SMALL_STATE(8288)] = 323235, + [SMALL_STATE(8289)] = 323285, + [SMALL_STATE(8290)] = 323335, + [SMALL_STATE(8291)] = 323385, + [SMALL_STATE(8292)] = 323421, + [SMALL_STATE(8293)] = 323473, + [SMALL_STATE(8294)] = 323507, + [SMALL_STATE(8295)] = 323559, + [SMALL_STATE(8296)] = 323585, + [SMALL_STATE(8297)] = 323611, + [SMALL_STATE(8298)] = 323641, + [SMALL_STATE(8299)] = 323695, + [SMALL_STATE(8300)] = 323747, + [SMALL_STATE(8301)] = 323785, + [SMALL_STATE(8302)] = 323835, + [SMALL_STATE(8303)] = 323871, + [SMALL_STATE(8304)] = 323925, + [SMALL_STATE(8305)] = 323955, + [SMALL_STATE(8306)] = 323989, + [SMALL_STATE(8307)] = 324023, + [SMALL_STATE(8308)] = 324057, + [SMALL_STATE(8309)] = 324091, + [SMALL_STATE(8310)] = 324125, + [SMALL_STATE(8311)] = 324159, + [SMALL_STATE(8312)] = 324193, + [SMALL_STATE(8313)] = 324227, + [SMALL_STATE(8314)] = 324261, + [SMALL_STATE(8315)] = 324295, + [SMALL_STATE(8316)] = 324329, + [SMALL_STATE(8317)] = 324363, + [SMALL_STATE(8318)] = 324397, + [SMALL_STATE(8319)] = 324423, + [SMALL_STATE(8320)] = 324449, + [SMALL_STATE(8321)] = 324475, + [SMALL_STATE(8322)] = 324513, + [SMALL_STATE(8323)] = 324539, + [SMALL_STATE(8324)] = 324586, + [SMALL_STATE(8325)] = 324633, + [SMALL_STATE(8326)] = 324680, + [SMALL_STATE(8327)] = 324727, + [SMALL_STATE(8328)] = 324770, + [SMALL_STATE(8329)] = 324803, + [SMALL_STATE(8330)] = 324840, + [SMALL_STATE(8331)] = 324877, + [SMALL_STATE(8332)] = 324914, + [SMALL_STATE(8333)] = 324951, + [SMALL_STATE(8334)] = 324988, + [SMALL_STATE(8335)] = 325035, + [SMALL_STATE(8336)] = 325072, + [SMALL_STATE(8337)] = 325119, + [SMALL_STATE(8338)] = 325156, + [SMALL_STATE(8339)] = 325193, + [SMALL_STATE(8340)] = 325240, + [SMALL_STATE(8341)] = 325287, + [SMALL_STATE(8342)] = 325318, + [SMALL_STATE(8343)] = 325365, + [SMALL_STATE(8344)] = 325406, + [SMALL_STATE(8345)] = 325453, + [SMALL_STATE(8346)] = 325496, + [SMALL_STATE(8347)] = 325543, + [SMALL_STATE(8348)] = 325590, + [SMALL_STATE(8349)] = 325637, + [SMALL_STATE(8350)] = 325668, + [SMALL_STATE(8351)] = 325701, + [SMALL_STATE(8352)] = 325734, + [SMALL_STATE(8353)] = 325765, + [SMALL_STATE(8354)] = 325812, + [SMALL_STATE(8355)] = 325845, + [SMALL_STATE(8356)] = 325892, + [SMALL_STATE(8357)] = 325939, + [SMALL_STATE(8358)] = 325986, + [SMALL_STATE(8359)] = 326019, + [SMALL_STATE(8360)] = 326052, + [SMALL_STATE(8361)] = 326095, + [SMALL_STATE(8362)] = 326142, + [SMALL_STATE(8363)] = 326169, + [SMALL_STATE(8364)] = 326202, + [SMALL_STATE(8365)] = 326245, + [SMALL_STATE(8366)] = 326292, + [SMALL_STATE(8367)] = 326321, + [SMALL_STATE(8368)] = 326368, + [SMALL_STATE(8369)] = 326415, + [SMALL_STATE(8370)] = 326462, + [SMALL_STATE(8371)] = 326503, + [SMALL_STATE(8372)] = 326536, + [SMALL_STATE(8373)] = 326583, + [SMALL_STATE(8374)] = 326630, + [SMALL_STATE(8375)] = 326655, + [SMALL_STATE(8376)] = 326702, + [SMALL_STATE(8377)] = 326749, + [SMALL_STATE(8378)] = 326782, + [SMALL_STATE(8379)] = 326823, + [SMALL_STATE(8380)] = 326870, + [SMALL_STATE(8381)] = 326917, + [SMALL_STATE(8382)] = 326964, + [SMALL_STATE(8383)] = 327011, + [SMALL_STATE(8384)] = 327035, + [SMALL_STATE(8385)] = 327071, + [SMALL_STATE(8386)] = 327095, + [SMALL_STATE(8387)] = 327119, + [SMALL_STATE(8388)] = 327145, + [SMALL_STATE(8389)] = 327181, + [SMALL_STATE(8390)] = 327205, + [SMALL_STATE(8391)] = 327239, + [SMALL_STATE(8392)] = 327263, + [SMALL_STATE(8393)] = 327295, + [SMALL_STATE(8394)] = 327319, + [SMALL_STATE(8395)] = 327343, + [SMALL_STATE(8396)] = 327385, + [SMALL_STATE(8397)] = 327425, + [SMALL_STATE(8398)] = 327449, + [SMALL_STATE(8399)] = 327481, + [SMALL_STATE(8400)] = 327515, + [SMALL_STATE(8401)] = 327539, + [SMALL_STATE(8402)] = 327563, + [SMALL_STATE(8403)] = 327587, + [SMALL_STATE(8404)] = 327631, + [SMALL_STATE(8405)] = 327675, + [SMALL_STATE(8406)] = 327699, + [SMALL_STATE(8407)] = 327743, + [SMALL_STATE(8408)] = 327779, + [SMALL_STATE(8409)] = 327803, + [SMALL_STATE(8410)] = 327835, + [SMALL_STATE(8411)] = 327859, + [SMALL_STATE(8412)] = 327903, + [SMALL_STATE(8413)] = 327927, + [SMALL_STATE(8414)] = 327951, + [SMALL_STATE(8415)] = 327995, + [SMALL_STATE(8416)] = 328031, + [SMALL_STATE(8417)] = 328075, + [SMALL_STATE(8418)] = 328099, + [SMALL_STATE(8419)] = 328123, + [SMALL_STATE(8420)] = 328167, + [SMALL_STATE(8421)] = 328211, + [SMALL_STATE(8422)] = 328235, + [SMALL_STATE(8423)] = 328269, + [SMALL_STATE(8424)] = 328301, + [SMALL_STATE(8425)] = 328325, + [SMALL_STATE(8426)] = 328349, + [SMALL_STATE(8427)] = 328393, + [SMALL_STATE(8428)] = 328417, + [SMALL_STATE(8429)] = 328461, + [SMALL_STATE(8430)] = 328485, + [SMALL_STATE(8431)] = 328509, + [SMALL_STATE(8432)] = 328533, + [SMALL_STATE(8433)] = 328557, + [SMALL_STATE(8434)] = 328581, + [SMALL_STATE(8435)] = 328605, + [SMALL_STATE(8436)] = 328649, + [SMALL_STATE(8437)] = 328673, + [SMALL_STATE(8438)] = 328707, + [SMALL_STATE(8439)] = 328739, + [SMALL_STATE(8440)] = 328783, + [SMALL_STATE(8441)] = 328817, + [SMALL_STATE(8442)] = 328849, + [SMALL_STATE(8443)] = 328893, + [SMALL_STATE(8444)] = 328925, + [SMALL_STATE(8445)] = 328959, + [SMALL_STATE(8446)] = 329003, + [SMALL_STATE(8447)] = 329031, + [SMALL_STATE(8448)] = 329063, + [SMALL_STATE(8449)] = 329087, + [SMALL_STATE(8450)] = 329111, + [SMALL_STATE(8451)] = 329135, + [SMALL_STATE(8452)] = 329159, + [SMALL_STATE(8453)] = 329193, + [SMALL_STATE(8454)] = 329237, + [SMALL_STATE(8455)] = 329271, + [SMALL_STATE(8456)] = 329295, + [SMALL_STATE(8457)] = 329327, + [SMALL_STATE(8458)] = 329351, + [SMALL_STATE(8459)] = 329383, + [SMALL_STATE(8460)] = 329407, + [SMALL_STATE(8461)] = 329431, + [SMALL_STATE(8462)] = 329475, + [SMALL_STATE(8463)] = 329499, + [SMALL_STATE(8464)] = 329545, + [SMALL_STATE(8465)] = 329569, + [SMALL_STATE(8466)] = 329593, + [SMALL_STATE(8467)] = 329617, + [SMALL_STATE(8468)] = 329653, + [SMALL_STATE(8469)] = 329677, + [SMALL_STATE(8470)] = 329701, + [SMALL_STATE(8471)] = 329725, + [SMALL_STATE(8472)] = 329749, + [SMALL_STATE(8473)] = 329793, + [SMALL_STATE(8474)] = 329817, + [SMALL_STATE(8475)] = 329841, + [SMALL_STATE(8476)] = 329865, + [SMALL_STATE(8477)] = 329889, + [SMALL_STATE(8478)] = 329933, + [SMALL_STATE(8479)] = 329966, + [SMALL_STATE(8480)] = 330001, + [SMALL_STATE(8481)] = 330040, + [SMALL_STATE(8482)] = 330069, + [SMALL_STATE(8483)] = 330098, + [SMALL_STATE(8484)] = 330133, + [SMALL_STATE(8485)] = 330168, + [SMALL_STATE(8486)] = 330203, + [SMALL_STATE(8487)] = 330238, + [SMALL_STATE(8488)] = 330271, + [SMALL_STATE(8489)] = 330312, + [SMALL_STATE(8490)] = 330347, + [SMALL_STATE(8491)] = 330382, + [SMALL_STATE(8492)] = 330417, + [SMALL_STATE(8493)] = 330452, + [SMALL_STATE(8494)] = 330481, + [SMALL_STATE(8495)] = 330510, + [SMALL_STATE(8496)] = 330543, + [SMALL_STATE(8497)] = 330572, + [SMALL_STATE(8498)] = 330611, + [SMALL_STATE(8499)] = 330644, + [SMALL_STATE(8500)] = 330673, + [SMALL_STATE(8501)] = 330702, + [SMALL_STATE(8502)] = 330737, + [SMALL_STATE(8503)] = 330772, + [SMALL_STATE(8504)] = 330807, + [SMALL_STATE(8505)] = 330836, + [SMALL_STATE(8506)] = 330871, + [SMALL_STATE(8507)] = 330900, + [SMALL_STATE(8508)] = 330929, + [SMALL_STATE(8509)] = 330958, + [SMALL_STATE(8510)] = 330987, + [SMALL_STATE(8511)] = 331016, + [SMALL_STATE(8512)] = 331045, + [SMALL_STATE(8513)] = 331080, + [SMALL_STATE(8514)] = 331109, + [SMALL_STATE(8515)] = 331138, + [SMALL_STATE(8516)] = 331167, + [SMALL_STATE(8517)] = 331200, + [SMALL_STATE(8518)] = 331229, + [SMALL_STATE(8519)] = 331268, + [SMALL_STATE(8520)] = 331311, + [SMALL_STATE(8521)] = 331340, + [SMALL_STATE(8522)] = 331381, + [SMALL_STATE(8523)] = 331410, + [SMALL_STATE(8524)] = 331439, + [SMALL_STATE(8525)] = 331478, + [SMALL_STATE(8526)] = 331507, + [SMALL_STATE(8527)] = 331542, + [SMALL_STATE(8528)] = 331571, + [SMALL_STATE(8529)] = 331600, + [SMALL_STATE(8530)] = 331629, + [SMALL_STATE(8531)] = 331658, + [SMALL_STATE(8532)] = 331693, + [SMALL_STATE(8533)] = 331728, + [SMALL_STATE(8534)] = 331755, + [SMALL_STATE(8535)] = 331788, + [SMALL_STATE(8536)] = 331817, + [SMALL_STATE(8537)] = 331850, + [SMALL_STATE(8538)] = 331891, + [SMALL_STATE(8539)] = 331924, + [SMALL_STATE(8540)] = 331959, + [SMALL_STATE(8541)] = 331998, + [SMALL_STATE(8542)] = 332039, + [SMALL_STATE(8543)] = 332074, + [SMALL_STATE(8544)] = 332109, + [SMALL_STATE(8545)] = 332144, + [SMALL_STATE(8546)] = 332173, + [SMALL_STATE(8547)] = 332215, + [SMALL_STATE(8548)] = 332243, + [SMALL_STATE(8549)] = 332281, + [SMALL_STATE(8550)] = 332323, + [SMALL_STATE(8551)] = 332355, + [SMALL_STATE(8552)] = 332381, + [SMALL_STATE(8553)] = 332421, + [SMALL_STATE(8554)] = 332451, + [SMALL_STATE(8555)] = 332489, + [SMALL_STATE(8556)] = 332519, + [SMALL_STATE(8557)] = 332559, + [SMALL_STATE(8558)] = 332597, + [SMALL_STATE(8559)] = 332637, + [SMALL_STATE(8560)] = 332677, + [SMALL_STATE(8561)] = 332719, + [SMALL_STATE(8562)] = 332751, + [SMALL_STATE(8563)] = 332781, + [SMALL_STATE(8564)] = 332823, + [SMALL_STATE(8565)] = 332865, + [SMALL_STATE(8566)] = 332905, + [SMALL_STATE(8567)] = 332945, + [SMALL_STATE(8568)] = 332977, + [SMALL_STATE(8569)] = 333007, + [SMALL_STATE(8570)] = 333039, + [SMALL_STATE(8571)] = 333069, + [SMALL_STATE(8572)] = 333111, + [SMALL_STATE(8573)] = 333151, + [SMALL_STATE(8574)] = 333181, + [SMALL_STATE(8575)] = 333213, + [SMALL_STATE(8576)] = 333243, + [SMALL_STATE(8577)] = 333285, + [SMALL_STATE(8578)] = 333325, + [SMALL_STATE(8579)] = 333363, + [SMALL_STATE(8580)] = 333405, + [SMALL_STATE(8581)] = 333445, + [SMALL_STATE(8582)] = 333471, + [SMALL_STATE(8583)] = 333497, + [SMALL_STATE(8584)] = 333525, + [SMALL_STATE(8585)] = 333567, + [SMALL_STATE(8586)] = 333605, + [SMALL_STATE(8587)] = 333637, + [SMALL_STATE(8588)] = 333675, + [SMALL_STATE(8589)] = 333717, + [SMALL_STATE(8590)] = 333739, + [SMALL_STATE(8591)] = 333781, + [SMALL_STATE(8592)] = 333809, + [SMALL_STATE(8593)] = 333847, + [SMALL_STATE(8594)] = 333889, + [SMALL_STATE(8595)] = 333929, + [SMALL_STATE(8596)] = 333971, + [SMALL_STATE(8597)] = 334001, + [SMALL_STATE(8598)] = 334023, + [SMALL_STATE(8599)] = 334061, + [SMALL_STATE(8600)] = 334099, + [SMALL_STATE(8601)] = 334139, + [SMALL_STATE(8602)] = 334161, + [SMALL_STATE(8603)] = 334203, + [SMALL_STATE(8604)] = 334227, + [SMALL_STATE(8605)] = 334269, + [SMALL_STATE(8606)] = 334311, + [SMALL_STATE(8607)] = 334353, + [SMALL_STATE(8608)] = 334391, + [SMALL_STATE(8609)] = 334423, + [SMALL_STATE(8610)] = 334463, + [SMALL_STATE(8611)] = 334501, + [SMALL_STATE(8612)] = 334541, + [SMALL_STATE(8613)] = 334583, + [SMALL_STATE(8614)] = 334611, + [SMALL_STATE(8615)] = 334653, + [SMALL_STATE(8616)] = 334683, + [SMALL_STATE(8617)] = 334711, + [SMALL_STATE(8618)] = 334753, + [SMALL_STATE(8619)] = 334777, + [SMALL_STATE(8620)] = 334799, + [SMALL_STATE(8621)] = 334827, + [SMALL_STATE(8622)] = 334869, + [SMALL_STATE(8623)] = 334911, + [SMALL_STATE(8624)] = 334939, + [SMALL_STATE(8625)] = 334981, + [SMALL_STATE(8626)] = 335019, + [SMALL_STATE(8627)] = 335061, + [SMALL_STATE(8628)] = 335099, + [SMALL_STATE(8629)] = 335139, + [SMALL_STATE(8630)] = 335177, + [SMALL_STATE(8631)] = 335205, + [SMALL_STATE(8632)] = 335247, + [SMALL_STATE(8633)] = 335279, + [SMALL_STATE(8634)] = 335319, + [SMALL_STATE(8635)] = 335361, + [SMALL_STATE(8636)] = 335391, + [SMALL_STATE(8637)] = 335433, + [SMALL_STATE(8638)] = 335455, + [SMALL_STATE(8639)] = 335497, + [SMALL_STATE(8640)] = 335539, + [SMALL_STATE(8641)] = 335579, + [SMALL_STATE(8642)] = 335612, + [SMALL_STATE(8643)] = 335645, + [SMALL_STATE(8644)] = 335682, + [SMALL_STATE(8645)] = 335713, + [SMALL_STATE(8646)] = 335748, + [SMALL_STATE(8647)] = 335781, + [SMALL_STATE(8648)] = 335816, + [SMALL_STATE(8649)] = 335847, + [SMALL_STATE(8650)] = 335880, + [SMALL_STATE(8651)] = 335915, + [SMALL_STATE(8652)] = 335944, + [SMALL_STATE(8653)] = 335977, + [SMALL_STATE(8654)] = 336010, + [SMALL_STATE(8655)] = 336045, + [SMALL_STATE(8656)] = 336080, + [SMALL_STATE(8657)] = 336109, + [SMALL_STATE(8658)] = 336142, + [SMALL_STATE(8659)] = 336167, + [SMALL_STATE(8660)] = 336200, + [SMALL_STATE(8661)] = 336235, + [SMALL_STATE(8662)] = 336260, + [SMALL_STATE(8663)] = 336293, + [SMALL_STATE(8664)] = 336326, + [SMALL_STATE(8665)] = 336347, + [SMALL_STATE(8666)] = 336384, + [SMALL_STATE(8667)] = 336419, + [SMALL_STATE(8668)] = 336448, + [SMALL_STATE(8669)] = 336483, + [SMALL_STATE(8670)] = 336516, + [SMALL_STATE(8671)] = 336549, + [SMALL_STATE(8672)] = 336582, + [SMALL_STATE(8673)] = 336617, + [SMALL_STATE(8674)] = 336646, + [SMALL_STATE(8675)] = 336681, + [SMALL_STATE(8676)] = 336710, + [SMALL_STATE(8677)] = 336743, + [SMALL_STATE(8678)] = 336776, + [SMALL_STATE(8679)] = 336805, + [SMALL_STATE(8680)] = 336834, + [SMALL_STATE(8681)] = 336867, + [SMALL_STATE(8682)] = 336900, + [SMALL_STATE(8683)] = 336935, + [SMALL_STATE(8684)] = 336968, + [SMALL_STATE(8685)] = 336999, + [SMALL_STATE(8686)] = 337026, + [SMALL_STATE(8687)] = 337059, + [SMALL_STATE(8688)] = 337092, + [SMALL_STATE(8689)] = 337127, + [SMALL_STATE(8690)] = 337160, + [SMALL_STATE(8691)] = 337195, + [SMALL_STATE(8692)] = 337224, + [SMALL_STATE(8693)] = 337257, + [SMALL_STATE(8694)] = 337290, + [SMALL_STATE(8695)] = 337321, + [SMALL_STATE(8696)] = 337354, + [SMALL_STATE(8697)] = 337387, + [SMALL_STATE(8698)] = 337414, + [SMALL_STATE(8699)] = 337449, + [SMALL_STATE(8700)] = 337484, + [SMALL_STATE(8701)] = 337517, + [SMALL_STATE(8702)] = 337548, + [SMALL_STATE(8703)] = 337579, + [SMALL_STATE(8704)] = 337614, + [SMALL_STATE(8705)] = 337649, + [SMALL_STATE(8706)] = 337682, + [SMALL_STATE(8707)] = 337717, + [SMALL_STATE(8708)] = 337752, + [SMALL_STATE(8709)] = 337787, + [SMALL_STATE(8710)] = 337813, + [SMALL_STATE(8711)] = 337839, + [SMALL_STATE(8712)] = 337865, + [SMALL_STATE(8713)] = 337891, + [SMALL_STATE(8714)] = 337911, + [SMALL_STATE(8715)] = 337931, + [SMALL_STATE(8716)] = 337951, + [SMALL_STATE(8717)] = 337971, + [SMALL_STATE(8718)] = 338001, + [SMALL_STATE(8719)] = 338037, + [SMALL_STATE(8720)] = 338067, + [SMALL_STATE(8721)] = 338089, + [SMALL_STATE(8722)] = 338109, + [SMALL_STATE(8723)] = 338129, + [SMALL_STATE(8724)] = 338149, + [SMALL_STATE(8725)] = 338173, + [SMALL_STATE(8726)] = 338203, + [SMALL_STATE(8727)] = 338223, + [SMALL_STATE(8728)] = 338249, + [SMALL_STATE(8729)] = 338271, + [SMALL_STATE(8730)] = 338297, + [SMALL_STATE(8731)] = 338317, + [SMALL_STATE(8732)] = 338343, + [SMALL_STATE(8733)] = 338369, + [SMALL_STATE(8734)] = 338389, + [SMALL_STATE(8735)] = 338419, + [SMALL_STATE(8736)] = 338448, + [SMALL_STATE(8737)] = 338471, + [SMALL_STATE(8738)] = 338488, + [SMALL_STATE(8739)] = 338523, + [SMALL_STATE(8740)] = 338546, + [SMALL_STATE(8741)] = 338571, + [SMALL_STATE(8742)] = 338596, + [SMALL_STATE(8743)] = 338613, + [SMALL_STATE(8744)] = 338636, + [SMALL_STATE(8745)] = 338671, + [SMALL_STATE(8746)] = 338706, + [SMALL_STATE(8747)] = 338731, + [SMALL_STATE(8748)] = 338762, + [SMALL_STATE(8749)] = 338791, + [SMALL_STATE(8750)] = 338816, + [SMALL_STATE(8751)] = 338841, + [SMALL_STATE(8752)] = 338876, + [SMALL_STATE(8753)] = 338899, + [SMALL_STATE(8754)] = 338924, + [SMALL_STATE(8755)] = 338949, + [SMALL_STATE(8756)] = 338980, + [SMALL_STATE(8757)] = 339009, + [SMALL_STATE(8758)] = 339038, + [SMALL_STATE(8759)] = 339061, + [SMALL_STATE(8760)] = 339092, + [SMALL_STATE(8761)] = 339127, + [SMALL_STATE(8762)] = 339158, + [SMALL_STATE(8763)] = 339187, + [SMALL_STATE(8764)] = 339204, + [SMALL_STATE(8765)] = 339235, + [SMALL_STATE(8766)] = 339254, + [SMALL_STATE(8767)] = 339281, + [SMALL_STATE(8768)] = 339308, + [SMALL_STATE(8769)] = 339335, + [SMALL_STATE(8770)] = 339362, + [SMALL_STATE(8771)] = 339385, + [SMALL_STATE(8772)] = 339408, + [SMALL_STATE(8773)] = 339427, + [SMALL_STATE(8774)] = 339446, + [SMALL_STATE(8775)] = 339469, + [SMALL_STATE(8776)] = 339488, + [SMALL_STATE(8777)] = 339515, + [SMALL_STATE(8778)] = 339550, + [SMALL_STATE(8779)] = 339579, + [SMALL_STATE(8780)] = 339608, + [SMALL_STATE(8781)] = 339631, + [SMALL_STATE(8782)] = 339660, + [SMALL_STATE(8783)] = 339687, + [SMALL_STATE(8784)] = 339722, + [SMALL_STATE(8785)] = 339749, + [SMALL_STATE(8786)] = 339776, + [SMALL_STATE(8787)] = 339799, + [SMALL_STATE(8788)] = 339818, + [SMALL_STATE(8789)] = 339837, + [SMALL_STATE(8790)] = 339856, + [SMALL_STATE(8791)] = 339873, + [SMALL_STATE(8792)] = 339900, + [SMALL_STATE(8793)] = 339927, + [SMALL_STATE(8794)] = 339950, + [SMALL_STATE(8795)] = 339981, + [SMALL_STATE(8796)] = 340006, + [SMALL_STATE(8797)] = 340033, + [SMALL_STATE(8798)] = 340060, + [SMALL_STATE(8799)] = 340083, + [SMALL_STATE(8800)] = 340110, + [SMALL_STATE(8801)] = 340143, + [SMALL_STATE(8802)] = 340178, + [SMALL_STATE(8803)] = 340213, + [SMALL_STATE(8804)] = 340248, + [SMALL_STATE(8805)] = 340275, + [SMALL_STATE(8806)] = 340302, + [SMALL_STATE(8807)] = 340337, + [SMALL_STATE(8808)] = 340372, + [SMALL_STATE(8809)] = 340395, + [SMALL_STATE(8810)] = 340418, + [SMALL_STATE(8811)] = 340435, + [SMALL_STATE(8812)] = 340466, + [SMALL_STATE(8813)] = 340495, + [SMALL_STATE(8814)] = 340522, + [SMALL_STATE(8815)] = 340557, + [SMALL_STATE(8816)] = 340588, + [SMALL_STATE(8817)] = 340613, + [SMALL_STATE(8818)] = 340636, + [SMALL_STATE(8819)] = 340659, + [SMALL_STATE(8820)] = 340694, + [SMALL_STATE(8821)] = 340718, + [SMALL_STATE(8822)] = 340740, + [SMALL_STATE(8823)] = 340756, + [SMALL_STATE(8824)] = 340780, + [SMALL_STATE(8825)] = 340802, + [SMALL_STATE(8826)] = 340826, + [SMALL_STATE(8827)] = 340848, + [SMALL_STATE(8828)] = 340870, + [SMALL_STATE(8829)] = 340892, + [SMALL_STATE(8830)] = 340922, + [SMALL_STATE(8831)] = 340944, + [SMALL_STATE(8832)] = 340970, + [SMALL_STATE(8833)] = 340996, + [SMALL_STATE(8834)] = 341022, + [SMALL_STATE(8835)] = 341046, + [SMALL_STATE(8836)] = 341070, + [SMALL_STATE(8837)] = 341094, + [SMALL_STATE(8838)] = 341118, + [SMALL_STATE(8839)] = 341142, + [SMALL_STATE(8840)] = 341168, + [SMALL_STATE(8841)] = 341190, + [SMALL_STATE(8842)] = 341212, + [SMALL_STATE(8843)] = 341244, + [SMALL_STATE(8844)] = 341266, + [SMALL_STATE(8845)] = 341290, + [SMALL_STATE(8846)] = 341312, + [SMALL_STATE(8847)] = 341342, + [SMALL_STATE(8848)] = 341370, + [SMALL_STATE(8849)] = 341392, + [SMALL_STATE(8850)] = 341414, + [SMALL_STATE(8851)] = 341438, + [SMALL_STATE(8852)] = 341462, + [SMALL_STATE(8853)] = 341486, + [SMALL_STATE(8854)] = 341510, + [SMALL_STATE(8855)] = 341534, + [SMALL_STATE(8856)] = 341558, + [SMALL_STATE(8857)] = 341575, + [SMALL_STATE(8858)] = 341606, + [SMALL_STATE(8859)] = 341637, + [SMALL_STATE(8860)] = 341660, + [SMALL_STATE(8861)] = 341691, + [SMALL_STATE(8862)] = 341714, + [SMALL_STATE(8863)] = 341735, + [SMALL_STATE(8864)] = 341764, + [SMALL_STATE(8865)] = 341785, + [SMALL_STATE(8866)] = 341816, + [SMALL_STATE(8867)] = 341847, + [SMALL_STATE(8868)] = 341876, + [SMALL_STATE(8869)] = 341899, + [SMALL_STATE(8870)] = 341930, + [SMALL_STATE(8871)] = 341951, + [SMALL_STATE(8872)] = 341974, + [SMALL_STATE(8873)] = 341995, + [SMALL_STATE(8874)] = 342012, + [SMALL_STATE(8875)] = 342043, + [SMALL_STATE(8876)] = 342066, + [SMALL_STATE(8877)] = 342089, + [SMALL_STATE(8878)] = 342112, + [SMALL_STATE(8879)] = 342143, + [SMALL_STATE(8880)] = 342166, + [SMALL_STATE(8881)] = 342194, + [SMALL_STATE(8882)] = 342218, + [SMALL_STATE(8883)] = 342244, + [SMALL_STATE(8884)] = 342270, + [SMALL_STATE(8885)] = 342296, + [SMALL_STATE(8886)] = 342322, + [SMALL_STATE(8887)] = 342348, + [SMALL_STATE(8888)] = 342374, + [SMALL_STATE(8889)] = 342402, + [SMALL_STATE(8890)] = 342426, + [SMALL_STATE(8891)] = 342454, + [SMALL_STATE(8892)] = 342476, + [SMALL_STATE(8893)] = 342502, + [SMALL_STATE(8894)] = 342528, + [SMALL_STATE(8895)] = 342554, + [SMALL_STATE(8896)] = 342580, + [SMALL_STATE(8897)] = 342608, + [SMALL_STATE(8898)] = 342632, + [SMALL_STATE(8899)] = 342660, + [SMALL_STATE(8900)] = 342688, + [SMALL_STATE(8901)] = 342714, + [SMALL_STATE(8902)] = 342740, + [SMALL_STATE(8903)] = 342766, + [SMALL_STATE(8904)] = 342790, + [SMALL_STATE(8905)] = 342816, + [SMALL_STATE(8906)] = 342834, + [SMALL_STATE(8907)] = 342862, + [SMALL_STATE(8908)] = 342884, + [SMALL_STATE(8909)] = 342910, + [SMALL_STATE(8910)] = 342936, + [SMALL_STATE(8911)] = 342962, + [SMALL_STATE(8912)] = 342986, + [SMALL_STATE(8913)] = 343008, + [SMALL_STATE(8914)] = 343034, + [SMALL_STATE(8915)] = 343060, + [SMALL_STATE(8916)] = 343082, + [SMALL_STATE(8917)] = 343108, + [SMALL_STATE(8918)] = 343134, + [SMALL_STATE(8919)] = 343162, + [SMALL_STATE(8920)] = 343190, + [SMALL_STATE(8921)] = 343216, + [SMALL_STATE(8922)] = 343236, + [SMALL_STATE(8923)] = 343262, + [SMALL_STATE(8924)] = 343286, + [SMALL_STATE(8925)] = 343308, + [SMALL_STATE(8926)] = 343334, + [SMALL_STATE(8927)] = 343356, + [SMALL_STATE(8928)] = 343376, + [SMALL_STATE(8929)] = 343402, + [SMALL_STATE(8930)] = 343430, + [SMALL_STATE(8931)] = 343456, + [SMALL_STATE(8932)] = 343480, + [SMALL_STATE(8933)] = 343506, + [SMALL_STATE(8934)] = 343532, + [SMALL_STATE(8935)] = 343558, + [SMALL_STATE(8936)] = 343584, + [SMALL_STATE(8937)] = 343610, + [SMALL_STATE(8938)] = 343636, + [SMALL_STATE(8939)] = 343662, + [SMALL_STATE(8940)] = 343688, + [SMALL_STATE(8941)] = 343714, + [SMALL_STATE(8942)] = 343740, + [SMALL_STATE(8943)] = 343764, + [SMALL_STATE(8944)] = 343790, + [SMALL_STATE(8945)] = 343816, + [SMALL_STATE(8946)] = 343836, + [SMALL_STATE(8947)] = 343856, + [SMALL_STATE(8948)] = 343884, + [SMALL_STATE(8949)] = 343910, + [SMALL_STATE(8950)] = 343938, + [SMALL_STATE(8951)] = 343964, + [SMALL_STATE(8952)] = 343990, + [SMALL_STATE(8953)] = 344016, + [SMALL_STATE(8954)] = 344042, + [SMALL_STATE(8955)] = 344059, + [SMALL_STATE(8956)] = 344082, + [SMALL_STATE(8957)] = 344099, + [SMALL_STATE(8958)] = 344122, + [SMALL_STATE(8959)] = 344145, + [SMALL_STATE(8960)] = 344170, + [SMALL_STATE(8961)] = 344193, + [SMALL_STATE(8962)] = 344210, + [SMALL_STATE(8963)] = 344235, + [SMALL_STATE(8964)] = 344256, + [SMALL_STATE(8965)] = 344277, + [SMALL_STATE(8966)] = 344302, + [SMALL_STATE(8967)] = 344327, + [SMALL_STATE(8968)] = 344348, + [SMALL_STATE(8969)] = 344369, + [SMALL_STATE(8970)] = 344394, + [SMALL_STATE(8971)] = 344415, + [SMALL_STATE(8972)] = 344434, + [SMALL_STATE(8973)] = 344455, + [SMALL_STATE(8974)] = 344480, + [SMALL_STATE(8975)] = 344503, + [SMALL_STATE(8976)] = 344526, + [SMALL_STATE(8977)] = 344547, + [SMALL_STATE(8978)] = 344564, + [SMALL_STATE(8979)] = 344587, + [SMALL_STATE(8980)] = 344604, + [SMALL_STATE(8981)] = 344625, + [SMALL_STATE(8982)] = 344648, + [SMALL_STATE(8983)] = 344669, + [SMALL_STATE(8984)] = 344694, + [SMALL_STATE(8985)] = 344713, + [SMALL_STATE(8986)] = 344732, + [SMALL_STATE(8987)] = 344749, + [SMALL_STATE(8988)] = 344770, + [SMALL_STATE(8989)] = 344793, + [SMALL_STATE(8990)] = 344816, + [SMALL_STATE(8991)] = 344841, + [SMALL_STATE(8992)] = 344858, + [SMALL_STATE(8993)] = 344879, + [SMALL_STATE(8994)] = 344896, + [SMALL_STATE(8995)] = 344919, + [SMALL_STATE(8996)] = 344940, + [SMALL_STATE(8997)] = 344963, + [SMALL_STATE(8998)] = 344984, + [SMALL_STATE(8999)] = 345007, + [SMALL_STATE(9000)] = 345028, + [SMALL_STATE(9001)] = 345045, + [SMALL_STATE(9002)] = 345068, + [SMALL_STATE(9003)] = 345091, + [SMALL_STATE(9004)] = 345114, + [SMALL_STATE(9005)] = 345139, + [SMALL_STATE(9006)] = 345164, + [SMALL_STATE(9007)] = 345181, + [SMALL_STATE(9008)] = 345198, + [SMALL_STATE(9009)] = 345215, + [SMALL_STATE(9010)] = 345232, + [SMALL_STATE(9011)] = 345249, + [SMALL_STATE(9012)] = 345266, + [SMALL_STATE(9013)] = 345283, + [SMALL_STATE(9014)] = 345300, + [SMALL_STATE(9015)] = 345325, + [SMALL_STATE(9016)] = 345342, + [SMALL_STATE(9017)] = 345359, + [SMALL_STATE(9018)] = 345376, + [SMALL_STATE(9019)] = 345393, + [SMALL_STATE(9020)] = 345410, + [SMALL_STATE(9021)] = 345435, + [SMALL_STATE(9022)] = 345456, + [SMALL_STATE(9023)] = 345481, + [SMALL_STATE(9024)] = 345504, + [SMALL_STATE(9025)] = 345527, + [SMALL_STATE(9026)] = 345546, + [SMALL_STATE(9027)] = 345569, + [SMALL_STATE(9028)] = 345590, + [SMALL_STATE(9029)] = 345615, + [SMALL_STATE(9030)] = 345640, + [SMALL_STATE(9031)] = 345659, + [SMALL_STATE(9032)] = 345680, + [SMALL_STATE(9033)] = 345697, + [SMALL_STATE(9034)] = 345722, + [SMALL_STATE(9035)] = 345745, + [SMALL_STATE(9036)] = 345759, + [SMALL_STATE(9037)] = 345779, + [SMALL_STATE(9038)] = 345801, + [SMALL_STATE(9039)] = 345823, + [SMALL_STATE(9040)] = 345845, + [SMALL_STATE(9041)] = 345867, + [SMALL_STATE(9042)] = 345889, + [SMALL_STATE(9043)] = 345909, + [SMALL_STATE(9044)] = 345931, + [SMALL_STATE(9045)] = 345945, + [SMALL_STATE(9046)] = 345965, + [SMALL_STATE(9047)] = 345985, + [SMALL_STATE(9048)] = 345999, + [SMALL_STATE(9049)] = 346019, + [SMALL_STATE(9050)] = 346039, + [SMALL_STATE(9051)] = 346059, + [SMALL_STATE(9052)] = 346079, + [SMALL_STATE(9053)] = 346093, + [SMALL_STATE(9054)] = 346115, + [SMALL_STATE(9055)] = 346137, + [SMALL_STATE(9056)] = 346151, + [SMALL_STATE(9057)] = 346173, + [SMALL_STATE(9058)] = 346193, + [SMALL_STATE(9059)] = 346215, + [SMALL_STATE(9060)] = 346235, + [SMALL_STATE(9061)] = 346255, + [SMALL_STATE(9062)] = 346273, + [SMALL_STATE(9063)] = 346293, + [SMALL_STATE(9064)] = 346311, + [SMALL_STATE(9065)] = 346331, + [SMALL_STATE(9066)] = 346353, + [SMALL_STATE(9067)] = 346375, + [SMALL_STATE(9068)] = 346397, + [SMALL_STATE(9069)] = 346419, + [SMALL_STATE(9070)] = 346441, + [SMALL_STATE(9071)] = 346455, + [SMALL_STATE(9072)] = 346477, + [SMALL_STATE(9073)] = 346497, + [SMALL_STATE(9074)] = 346511, + [SMALL_STATE(9075)] = 346531, + [SMALL_STATE(9076)] = 346551, + [SMALL_STATE(9077)] = 346571, + [SMALL_STATE(9078)] = 346585, + [SMALL_STATE(9079)] = 346607, + [SMALL_STATE(9080)] = 346629, + [SMALL_STATE(9081)] = 346651, + [SMALL_STATE(9082)] = 346665, + [SMALL_STATE(9083)] = 346687, + [SMALL_STATE(9084)] = 346709, + [SMALL_STATE(9085)] = 346731, + [SMALL_STATE(9086)] = 346753, + [SMALL_STATE(9087)] = 346775, + [SMALL_STATE(9088)] = 346797, + [SMALL_STATE(9089)] = 346811, + [SMALL_STATE(9090)] = 346833, + [SMALL_STATE(9091)] = 346855, + [SMALL_STATE(9092)] = 346869, + [SMALL_STATE(9093)] = 346891, + [SMALL_STATE(9094)] = 346913, + [SMALL_STATE(9095)] = 346933, + [SMALL_STATE(9096)] = 346955, + [SMALL_STATE(9097)] = 346969, + [SMALL_STATE(9098)] = 346991, + [SMALL_STATE(9099)] = 347013, + [SMALL_STATE(9100)] = 347035, + [SMALL_STATE(9101)] = 347057, + [SMALL_STATE(9102)] = 347077, + [SMALL_STATE(9103)] = 347099, + [SMALL_STATE(9104)] = 347113, + [SMALL_STATE(9105)] = 347127, + [SMALL_STATE(9106)] = 347147, + [SMALL_STATE(9107)] = 347169, + [SMALL_STATE(9108)] = 347191, + [SMALL_STATE(9109)] = 347213, + [SMALL_STATE(9110)] = 347235, + [SMALL_STATE(9111)] = 347255, + [SMALL_STATE(9112)] = 347277, + [SMALL_STATE(9113)] = 347299, + [SMALL_STATE(9114)] = 347321, + [SMALL_STATE(9115)] = 347343, + [SMALL_STATE(9116)] = 347363, + [SMALL_STATE(9117)] = 347385, + [SMALL_STATE(9118)] = 347407, + [SMALL_STATE(9119)] = 347427, + [SMALL_STATE(9120)] = 347449, + [SMALL_STATE(9121)] = 347471, + [SMALL_STATE(9122)] = 347493, + [SMALL_STATE(9123)] = 347515, + [SMALL_STATE(9124)] = 347537, + [SMALL_STATE(9125)] = 347555, + [SMALL_STATE(9126)] = 347577, + [SMALL_STATE(9127)] = 347591, + [SMALL_STATE(9128)] = 347613, + [SMALL_STATE(9129)] = 347635, + [SMALL_STATE(9130)] = 347653, + [SMALL_STATE(9131)] = 347675, + [SMALL_STATE(9132)] = 347695, + [SMALL_STATE(9133)] = 347717, + [SMALL_STATE(9134)] = 347737, + [SMALL_STATE(9135)] = 347759, + [SMALL_STATE(9136)] = 347781, + [SMALL_STATE(9137)] = 347803, + [SMALL_STATE(9138)] = 347823, + [SMALL_STATE(9139)] = 347845, + [SMALL_STATE(9140)] = 347865, + [SMALL_STATE(9141)] = 347885, + [SMALL_STATE(9142)] = 347907, + [SMALL_STATE(9143)] = 347927, + [SMALL_STATE(9144)] = 347949, + [SMALL_STATE(9145)] = 347971, + [SMALL_STATE(9146)] = 347988, + [SMALL_STATE(9147)] = 348007, + [SMALL_STATE(9148)] = 348024, + [SMALL_STATE(9149)] = 348041, + [SMALL_STATE(9150)] = 348060, + [SMALL_STATE(9151)] = 348079, + [SMALL_STATE(9152)] = 348098, + [SMALL_STATE(9153)] = 348117, + [SMALL_STATE(9154)] = 348134, + [SMALL_STATE(9155)] = 348149, + [SMALL_STATE(9156)] = 348164, + [SMALL_STATE(9157)] = 348181, + [SMALL_STATE(9158)] = 348200, + [SMALL_STATE(9159)] = 348219, + [SMALL_STATE(9160)] = 348238, + [SMALL_STATE(9161)] = 348255, + [SMALL_STATE(9162)] = 348274, + [SMALL_STATE(9163)] = 348291, + [SMALL_STATE(9164)] = 348310, + [SMALL_STATE(9165)] = 348327, + [SMALL_STATE(9166)] = 348340, + [SMALL_STATE(9167)] = 348359, + [SMALL_STATE(9168)] = 348376, + [SMALL_STATE(9169)] = 348393, + [SMALL_STATE(9170)] = 348410, + [SMALL_STATE(9171)] = 348427, + [SMALL_STATE(9172)] = 348444, + [SMALL_STATE(9173)] = 348463, + [SMALL_STATE(9174)] = 348482, + [SMALL_STATE(9175)] = 348501, + [SMALL_STATE(9176)] = 348520, + [SMALL_STATE(9177)] = 348539, + [SMALL_STATE(9178)] = 348556, + [SMALL_STATE(9179)] = 348575, + [SMALL_STATE(9180)] = 348594, + [SMALL_STATE(9181)] = 348613, + [SMALL_STATE(9182)] = 348632, + [SMALL_STATE(9183)] = 348651, + [SMALL_STATE(9184)] = 348670, + [SMALL_STATE(9185)] = 348687, + [SMALL_STATE(9186)] = 348702, + [SMALL_STATE(9187)] = 348721, + [SMALL_STATE(9188)] = 348740, + [SMALL_STATE(9189)] = 348759, + [SMALL_STATE(9190)] = 348776, + [SMALL_STATE(9191)] = 348793, + [SMALL_STATE(9192)] = 348804, + [SMALL_STATE(9193)] = 348823, + [SMALL_STATE(9194)] = 348842, + [SMALL_STATE(9195)] = 348861, + [SMALL_STATE(9196)] = 348880, + [SMALL_STATE(9197)] = 348899, + [SMALL_STATE(9198)] = 348918, + [SMALL_STATE(9199)] = 348937, + [SMALL_STATE(9200)] = 348956, + [SMALL_STATE(9201)] = 348975, + [SMALL_STATE(9202)] = 348992, + [SMALL_STATE(9203)] = 349011, + [SMALL_STATE(9204)] = 349030, + [SMALL_STATE(9205)] = 349049, + [SMALL_STATE(9206)] = 349068, + [SMALL_STATE(9207)] = 349085, + [SMALL_STATE(9208)] = 349104, + [SMALL_STATE(9209)] = 349121, + [SMALL_STATE(9210)] = 349140, + [SMALL_STATE(9211)] = 349159, + [SMALL_STATE(9212)] = 349178, + [SMALL_STATE(9213)] = 349197, + [SMALL_STATE(9214)] = 349214, + [SMALL_STATE(9215)] = 349231, + [SMALL_STATE(9216)] = 349248, + [SMALL_STATE(9217)] = 349265, + [SMALL_STATE(9218)] = 349282, + [SMALL_STATE(9219)] = 349299, + [SMALL_STATE(9220)] = 349316, + [SMALL_STATE(9221)] = 349335, + [SMALL_STATE(9222)] = 349352, + [SMALL_STATE(9223)] = 349369, + [SMALL_STATE(9224)] = 349386, + [SMALL_STATE(9225)] = 349403, + [SMALL_STATE(9226)] = 349420, + [SMALL_STATE(9227)] = 349437, + [SMALL_STATE(9228)] = 349454, + [SMALL_STATE(9229)] = 349473, + [SMALL_STATE(9230)] = 349490, + [SMALL_STATE(9231)] = 349507, + [SMALL_STATE(9232)] = 349524, + [SMALL_STATE(9233)] = 349541, + [SMALL_STATE(9234)] = 349560, + [SMALL_STATE(9235)] = 349579, + [SMALL_STATE(9236)] = 349598, + [SMALL_STATE(9237)] = 349617, + [SMALL_STATE(9238)] = 349636, + [SMALL_STATE(9239)] = 349653, + [SMALL_STATE(9240)] = 349672, + [SMALL_STATE(9241)] = 349691, + [SMALL_STATE(9242)] = 349708, + [SMALL_STATE(9243)] = 349725, + [SMALL_STATE(9244)] = 349742, + [SMALL_STATE(9245)] = 349759, + [SMALL_STATE(9246)] = 349778, + [SMALL_STATE(9247)] = 349795, + [SMALL_STATE(9248)] = 349814, + [SMALL_STATE(9249)] = 349833, + [SMALL_STATE(9250)] = 349848, + [SMALL_STATE(9251)] = 349867, + [SMALL_STATE(9252)] = 349884, + [SMALL_STATE(9253)] = 349901, + [SMALL_STATE(9254)] = 349918, + [SMALL_STATE(9255)] = 349937, + [SMALL_STATE(9256)] = 349954, + [SMALL_STATE(9257)] = 349973, + [SMALL_STATE(9258)] = 349986, + [SMALL_STATE(9259)] = 350001, + [SMALL_STATE(9260)] = 350018, + [SMALL_STATE(9261)] = 350037, + [SMALL_STATE(9262)] = 350056, + [SMALL_STATE(9263)] = 350075, + [SMALL_STATE(9264)] = 350094, + [SMALL_STATE(9265)] = 350113, + [SMALL_STATE(9266)] = 350130, + [SMALL_STATE(9267)] = 350149, + [SMALL_STATE(9268)] = 350168, + [SMALL_STATE(9269)] = 350185, + [SMALL_STATE(9270)] = 350202, + [SMALL_STATE(9271)] = 350221, + [SMALL_STATE(9272)] = 350240, + [SMALL_STATE(9273)] = 350259, + [SMALL_STATE(9274)] = 350276, + [SMALL_STATE(9275)] = 350289, + [SMALL_STATE(9276)] = 350308, + [SMALL_STATE(9277)] = 350325, + [SMALL_STATE(9278)] = 350344, + [SMALL_STATE(9279)] = 350361, + [SMALL_STATE(9280)] = 350378, + [SMALL_STATE(9281)] = 350397, + [SMALL_STATE(9282)] = 350416, + [SMALL_STATE(9283)] = 350435, + [SMALL_STATE(9284)] = 350454, + [SMALL_STATE(9285)] = 350471, + [SMALL_STATE(9286)] = 350490, + [SMALL_STATE(9287)] = 350507, + [SMALL_STATE(9288)] = 350524, + [SMALL_STATE(9289)] = 350540, + [SMALL_STATE(9290)] = 350556, + [SMALL_STATE(9291)] = 350570, + [SMALL_STATE(9292)] = 350586, + [SMALL_STATE(9293)] = 350600, + [SMALL_STATE(9294)] = 350616, + [SMALL_STATE(9295)] = 350632, + [SMALL_STATE(9296)] = 350648, + [SMALL_STATE(9297)] = 350664, + [SMALL_STATE(9298)] = 350678, + [SMALL_STATE(9299)] = 350694, + [SMALL_STATE(9300)] = 350710, + [SMALL_STATE(9301)] = 350726, + [SMALL_STATE(9302)] = 350742, + [SMALL_STATE(9303)] = 350758, + [SMALL_STATE(9304)] = 350774, + [SMALL_STATE(9305)] = 350790, + [SMALL_STATE(9306)] = 350806, + [SMALL_STATE(9307)] = 350822, + [SMALL_STATE(9308)] = 350838, + [SMALL_STATE(9309)] = 350852, + [SMALL_STATE(9310)] = 350868, + [SMALL_STATE(9311)] = 350884, + [SMALL_STATE(9312)] = 350900, + [SMALL_STATE(9313)] = 350916, + [SMALL_STATE(9314)] = 350932, + [SMALL_STATE(9315)] = 350946, + [SMALL_STATE(9316)] = 350962, + [SMALL_STATE(9317)] = 350978, + [SMALL_STATE(9318)] = 350994, + [SMALL_STATE(9319)] = 351010, + [SMALL_STATE(9320)] = 351026, + [SMALL_STATE(9321)] = 351040, + [SMALL_STATE(9322)] = 351056, + [SMALL_STATE(9323)] = 351072, + [SMALL_STATE(9324)] = 351088, + [SMALL_STATE(9325)] = 351104, + [SMALL_STATE(9326)] = 351120, + [SMALL_STATE(9327)] = 351136, + [SMALL_STATE(9328)] = 351150, + [SMALL_STATE(9329)] = 351166, + [SMALL_STATE(9330)] = 351180, + [SMALL_STATE(9331)] = 351196, + [SMALL_STATE(9332)] = 351212, + [SMALL_STATE(9333)] = 351228, + [SMALL_STATE(9334)] = 351244, + [SMALL_STATE(9335)] = 351258, + [SMALL_STATE(9336)] = 351274, + [SMALL_STATE(9337)] = 351290, + [SMALL_STATE(9338)] = 351306, + [SMALL_STATE(9339)] = 351320, + [SMALL_STATE(9340)] = 351334, + [SMALL_STATE(9341)] = 351348, + [SMALL_STATE(9342)] = 351364, + [SMALL_STATE(9343)] = 351378, + [SMALL_STATE(9344)] = 351394, + [SMALL_STATE(9345)] = 351410, + [SMALL_STATE(9346)] = 351426, + [SMALL_STATE(9347)] = 351442, + [SMALL_STATE(9348)] = 351458, + [SMALL_STATE(9349)] = 351474, + [SMALL_STATE(9350)] = 351490, + [SMALL_STATE(9351)] = 351506, + [SMALL_STATE(9352)] = 351522, + [SMALL_STATE(9353)] = 351538, + [SMALL_STATE(9354)] = 351554, + [SMALL_STATE(9355)] = 351568, + [SMALL_STATE(9356)] = 351584, + [SMALL_STATE(9357)] = 351600, + [SMALL_STATE(9358)] = 351616, + [SMALL_STATE(9359)] = 351630, + [SMALL_STATE(9360)] = 351646, + [SMALL_STATE(9361)] = 351662, + [SMALL_STATE(9362)] = 351676, + [SMALL_STATE(9363)] = 351688, + [SMALL_STATE(9364)] = 351704, + [SMALL_STATE(9365)] = 351718, + [SMALL_STATE(9366)] = 351734, + [SMALL_STATE(9367)] = 351750, + [SMALL_STATE(9368)] = 351766, + [SMALL_STATE(9369)] = 351782, + [SMALL_STATE(9370)] = 351798, + [SMALL_STATE(9371)] = 351814, + [SMALL_STATE(9372)] = 351828, + [SMALL_STATE(9373)] = 351844, + [SMALL_STATE(9374)] = 351860, + [SMALL_STATE(9375)] = 351876, + [SMALL_STATE(9376)] = 351886, + [SMALL_STATE(9377)] = 351902, + [SMALL_STATE(9378)] = 351918, + [SMALL_STATE(9379)] = 351934, + [SMALL_STATE(9380)] = 351950, + [SMALL_STATE(9381)] = 351966, + [SMALL_STATE(9382)] = 351980, + [SMALL_STATE(9383)] = 351996, + [SMALL_STATE(9384)] = 352012, + [SMALL_STATE(9385)] = 352028, + [SMALL_STATE(9386)] = 352044, + [SMALL_STATE(9387)] = 352060, + [SMALL_STATE(9388)] = 352076, + [SMALL_STATE(9389)] = 352090, + [SMALL_STATE(9390)] = 352106, + [SMALL_STATE(9391)] = 352120, + [SMALL_STATE(9392)] = 352134, + [SMALL_STATE(9393)] = 352148, + [SMALL_STATE(9394)] = 352164, + [SMALL_STATE(9395)] = 352180, + [SMALL_STATE(9396)] = 352196, + [SMALL_STATE(9397)] = 352212, + [SMALL_STATE(9398)] = 352228, + [SMALL_STATE(9399)] = 352242, + [SMALL_STATE(9400)] = 352258, + [SMALL_STATE(9401)] = 352272, + [SMALL_STATE(9402)] = 352286, + [SMALL_STATE(9403)] = 352300, + [SMALL_STATE(9404)] = 352316, + [SMALL_STATE(9405)] = 352332, + [SMALL_STATE(9406)] = 352348, + [SMALL_STATE(9407)] = 352360, + [SMALL_STATE(9408)] = 352374, + [SMALL_STATE(9409)] = 352388, + [SMALL_STATE(9410)] = 352404, + [SMALL_STATE(9411)] = 352420, + [SMALL_STATE(9412)] = 352436, + [SMALL_STATE(9413)] = 352450, + [SMALL_STATE(9414)] = 352466, + [SMALL_STATE(9415)] = 352480, + [SMALL_STATE(9416)] = 352494, + [SMALL_STATE(9417)] = 352510, + [SMALL_STATE(9418)] = 352526, + [SMALL_STATE(9419)] = 352538, + [SMALL_STATE(9420)] = 352554, + [SMALL_STATE(9421)] = 352568, + [SMALL_STATE(9422)] = 352582, + [SMALL_STATE(9423)] = 352592, + [SMALL_STATE(9424)] = 352606, + [SMALL_STATE(9425)] = 352622, + [SMALL_STATE(9426)] = 352638, + [SMALL_STATE(9427)] = 352652, + [SMALL_STATE(9428)] = 352666, + [SMALL_STATE(9429)] = 352682, + [SMALL_STATE(9430)] = 352698, + [SMALL_STATE(9431)] = 352712, + [SMALL_STATE(9432)] = 352728, + [SMALL_STATE(9433)] = 352744, + [SMALL_STATE(9434)] = 352760, + [SMALL_STATE(9435)] = 352776, + [SMALL_STATE(9436)] = 352790, + [SMALL_STATE(9437)] = 352806, + [SMALL_STATE(9438)] = 352822, + [SMALL_STATE(9439)] = 352836, + [SMALL_STATE(9440)] = 352852, + [SMALL_STATE(9441)] = 352868, + [SMALL_STATE(9442)] = 352884, + [SMALL_STATE(9443)] = 352900, + [SMALL_STATE(9444)] = 352916, + [SMALL_STATE(9445)] = 352930, + [SMALL_STATE(9446)] = 352944, + [SMALL_STATE(9447)] = 352958, + [SMALL_STATE(9448)] = 352974, + [SMALL_STATE(9449)] = 352990, + [SMALL_STATE(9450)] = 353006, + [SMALL_STATE(9451)] = 353022, + [SMALL_STATE(9452)] = 353038, + [SMALL_STATE(9453)] = 353052, + [SMALL_STATE(9454)] = 353068, + [SMALL_STATE(9455)] = 353084, + [SMALL_STATE(9456)] = 353100, + [SMALL_STATE(9457)] = 353116, + [SMALL_STATE(9458)] = 353132, + [SMALL_STATE(9459)] = 353146, + [SMALL_STATE(9460)] = 353162, + [SMALL_STATE(9461)] = 353178, + [SMALL_STATE(9462)] = 353194, + [SMALL_STATE(9463)] = 353210, + [SMALL_STATE(9464)] = 353226, + [SMALL_STATE(9465)] = 353242, + [SMALL_STATE(9466)] = 353258, + [SMALL_STATE(9467)] = 353274, + [SMALL_STATE(9468)] = 353290, + [SMALL_STATE(9469)] = 353306, + [SMALL_STATE(9470)] = 353320, + [SMALL_STATE(9471)] = 353336, + [SMALL_STATE(9472)] = 353350, + [SMALL_STATE(9473)] = 353366, + [SMALL_STATE(9474)] = 353382, + [SMALL_STATE(9475)] = 353398, + [SMALL_STATE(9476)] = 353414, + [SMALL_STATE(9477)] = 353430, + [SMALL_STATE(9478)] = 353446, + [SMALL_STATE(9479)] = 353462, + [SMALL_STATE(9480)] = 353478, + [SMALL_STATE(9481)] = 353492, + [SMALL_STATE(9482)] = 353506, + [SMALL_STATE(9483)] = 353522, + [SMALL_STATE(9484)] = 353538, + [SMALL_STATE(9485)] = 353554, + [SMALL_STATE(9486)] = 353568, + [SMALL_STATE(9487)] = 353584, + [SMALL_STATE(9488)] = 353600, + [SMALL_STATE(9489)] = 353612, + [SMALL_STATE(9490)] = 353628, + [SMALL_STATE(9491)] = 353644, + [SMALL_STATE(9492)] = 353658, + [SMALL_STATE(9493)] = 353674, + [SMALL_STATE(9494)] = 353690, + [SMALL_STATE(9495)] = 353706, + [SMALL_STATE(9496)] = 353722, + [SMALL_STATE(9497)] = 353736, + [SMALL_STATE(9498)] = 353750, + [SMALL_STATE(9499)] = 353766, + [SMALL_STATE(9500)] = 353782, + [SMALL_STATE(9501)] = 353798, + [SMALL_STATE(9502)] = 353814, + [SMALL_STATE(9503)] = 353828, + [SMALL_STATE(9504)] = 353842, + [SMALL_STATE(9505)] = 353858, + [SMALL_STATE(9506)] = 353874, + [SMALL_STATE(9507)] = 353890, + [SMALL_STATE(9508)] = 353906, + [SMALL_STATE(9509)] = 353922, + [SMALL_STATE(9510)] = 353936, + [SMALL_STATE(9511)] = 353952, + [SMALL_STATE(9512)] = 353966, + [SMALL_STATE(9513)] = 353982, + [SMALL_STATE(9514)] = 353998, + [SMALL_STATE(9515)] = 354014, + [SMALL_STATE(9516)] = 354028, + [SMALL_STATE(9517)] = 354038, + [SMALL_STATE(9518)] = 354054, + [SMALL_STATE(9519)] = 354070, + [SMALL_STATE(9520)] = 354086, + [SMALL_STATE(9521)] = 354102, + [SMALL_STATE(9522)] = 354118, + [SMALL_STATE(9523)] = 354134, + [SMALL_STATE(9524)] = 354150, + [SMALL_STATE(9525)] = 354166, + [SMALL_STATE(9526)] = 354182, + [SMALL_STATE(9527)] = 354198, + [SMALL_STATE(9528)] = 354214, + [SMALL_STATE(9529)] = 354227, + [SMALL_STATE(9530)] = 354240, + [SMALL_STATE(9531)] = 354253, + [SMALL_STATE(9532)] = 354266, + [SMALL_STATE(9533)] = 354279, + [SMALL_STATE(9534)] = 354292, + [SMALL_STATE(9535)] = 354305, + [SMALL_STATE(9536)] = 354318, + [SMALL_STATE(9537)] = 354331, + [SMALL_STATE(9538)] = 354344, + [SMALL_STATE(9539)] = 354357, + [SMALL_STATE(9540)] = 354370, + [SMALL_STATE(9541)] = 354383, + [SMALL_STATE(9542)] = 354396, + [SMALL_STATE(9543)] = 354409, + [SMALL_STATE(9544)] = 354422, + [SMALL_STATE(9545)] = 354435, + [SMALL_STATE(9546)] = 354448, + [SMALL_STATE(9547)] = 354461, + [SMALL_STATE(9548)] = 354474, + [SMALL_STATE(9549)] = 354487, + [SMALL_STATE(9550)] = 354498, + [SMALL_STATE(9551)] = 354511, + [SMALL_STATE(9552)] = 354522, + [SMALL_STATE(9553)] = 354535, + [SMALL_STATE(9554)] = 354548, + [SMALL_STATE(9555)] = 354561, + [SMALL_STATE(9556)] = 354574, + [SMALL_STATE(9557)] = 354587, + [SMALL_STATE(9558)] = 354600, + [SMALL_STATE(9559)] = 354613, + [SMALL_STATE(9560)] = 354626, + [SMALL_STATE(9561)] = 354639, + [SMALL_STATE(9562)] = 354652, + [SMALL_STATE(9563)] = 354665, + [SMALL_STATE(9564)] = 354678, + [SMALL_STATE(9565)] = 354691, + [SMALL_STATE(9566)] = 354704, + [SMALL_STATE(9567)] = 354717, + [SMALL_STATE(9568)] = 354730, + [SMALL_STATE(9569)] = 354743, + [SMALL_STATE(9570)] = 354756, + [SMALL_STATE(9571)] = 354769, + [SMALL_STATE(9572)] = 354782, + [SMALL_STATE(9573)] = 354795, + [SMALL_STATE(9574)] = 354806, + [SMALL_STATE(9575)] = 354817, + [SMALL_STATE(9576)] = 354830, + [SMALL_STATE(9577)] = 354843, + [SMALL_STATE(9578)] = 354856, + [SMALL_STATE(9579)] = 354869, + [SMALL_STATE(9580)] = 354882, + [SMALL_STATE(9581)] = 354895, + [SMALL_STATE(9582)] = 354908, + [SMALL_STATE(9583)] = 354921, + [SMALL_STATE(9584)] = 354934, + [SMALL_STATE(9585)] = 354947, + [SMALL_STATE(9586)] = 354960, + [SMALL_STATE(9587)] = 354973, + [SMALL_STATE(9588)] = 354986, + [SMALL_STATE(9589)] = 354999, + [SMALL_STATE(9590)] = 355012, + [SMALL_STATE(9591)] = 355025, + [SMALL_STATE(9592)] = 355038, + [SMALL_STATE(9593)] = 355051, + [SMALL_STATE(9594)] = 355064, + [SMALL_STATE(9595)] = 355077, + [SMALL_STATE(9596)] = 355090, + [SMALL_STATE(9597)] = 355103, + [SMALL_STATE(9598)] = 355116, + [SMALL_STATE(9599)] = 355129, + [SMALL_STATE(9600)] = 355142, + [SMALL_STATE(9601)] = 355155, + [SMALL_STATE(9602)] = 355168, + [SMALL_STATE(9603)] = 355181, + [SMALL_STATE(9604)] = 355194, + [SMALL_STATE(9605)] = 355207, + [SMALL_STATE(9606)] = 355220, + [SMALL_STATE(9607)] = 355233, + [SMALL_STATE(9608)] = 355246, + [SMALL_STATE(9609)] = 355259, + [SMALL_STATE(9610)] = 355268, + [SMALL_STATE(9611)] = 355281, + [SMALL_STATE(9612)] = 355294, + [SMALL_STATE(9613)] = 355307, + [SMALL_STATE(9614)] = 355320, + [SMALL_STATE(9615)] = 355329, + [SMALL_STATE(9616)] = 355342, + [SMALL_STATE(9617)] = 355355, + [SMALL_STATE(9618)] = 355368, + [SMALL_STATE(9619)] = 355381, + [SMALL_STATE(9620)] = 355394, + [SMALL_STATE(9621)] = 355407, + [SMALL_STATE(9622)] = 355420, + [SMALL_STATE(9623)] = 355433, + [SMALL_STATE(9624)] = 355446, + [SMALL_STATE(9625)] = 355459, + [SMALL_STATE(9626)] = 355470, + [SMALL_STATE(9627)] = 355483, + [SMALL_STATE(9628)] = 355496, + [SMALL_STATE(9629)] = 355509, + [SMALL_STATE(9630)] = 355522, + [SMALL_STATE(9631)] = 355535, + [SMALL_STATE(9632)] = 355548, + [SMALL_STATE(9633)] = 355559, + [SMALL_STATE(9634)] = 355572, + [SMALL_STATE(9635)] = 355585, + [SMALL_STATE(9636)] = 355598, + [SMALL_STATE(9637)] = 355611, + [SMALL_STATE(9638)] = 355624, + [SMALL_STATE(9639)] = 355637, + [SMALL_STATE(9640)] = 355650, + [SMALL_STATE(9641)] = 355663, + [SMALL_STATE(9642)] = 355676, + [SMALL_STATE(9643)] = 355689, + [SMALL_STATE(9644)] = 355702, + [SMALL_STATE(9645)] = 355715, + [SMALL_STATE(9646)] = 355728, + [SMALL_STATE(9647)] = 355741, + [SMALL_STATE(9648)] = 355752, + [SMALL_STATE(9649)] = 355763, + [SMALL_STATE(9650)] = 355776, + [SMALL_STATE(9651)] = 355789, + [SMALL_STATE(9652)] = 355802, + [SMALL_STATE(9653)] = 355815, + [SMALL_STATE(9654)] = 355828, + [SMALL_STATE(9655)] = 355841, + [SMALL_STATE(9656)] = 355854, + [SMALL_STATE(9657)] = 355867, + [SMALL_STATE(9658)] = 355880, + [SMALL_STATE(9659)] = 355893, + [SMALL_STATE(9660)] = 355906, + [SMALL_STATE(9661)] = 355919, + [SMALL_STATE(9662)] = 355932, + [SMALL_STATE(9663)] = 355945, + [SMALL_STATE(9664)] = 355958, + [SMALL_STATE(9665)] = 355971, + [SMALL_STATE(9666)] = 355984, + [SMALL_STATE(9667)] = 355997, + [SMALL_STATE(9668)] = 356010, + [SMALL_STATE(9669)] = 356023, + [SMALL_STATE(9670)] = 356036, + [SMALL_STATE(9671)] = 356047, + [SMALL_STATE(9672)] = 356060, + [SMALL_STATE(9673)] = 356073, + [SMALL_STATE(9674)] = 356086, + [SMALL_STATE(9675)] = 356099, + [SMALL_STATE(9676)] = 356108, + [SMALL_STATE(9677)] = 356117, + [SMALL_STATE(9678)] = 356128, + [SMALL_STATE(9679)] = 356141, + [SMALL_STATE(9680)] = 356152, + [SMALL_STATE(9681)] = 356161, + [SMALL_STATE(9682)] = 356174, + [SMALL_STATE(9683)] = 356185, + [SMALL_STATE(9684)] = 356198, + [SMALL_STATE(9685)] = 356211, + [SMALL_STATE(9686)] = 356224, + [SMALL_STATE(9687)] = 356237, + [SMALL_STATE(9688)] = 356250, + [SMALL_STATE(9689)] = 356263, + [SMALL_STATE(9690)] = 356274, + [SMALL_STATE(9691)] = 356285, + [SMALL_STATE(9692)] = 356298, + [SMALL_STATE(9693)] = 356307, + [SMALL_STATE(9694)] = 356320, + [SMALL_STATE(9695)] = 356333, + [SMALL_STATE(9696)] = 356346, + [SMALL_STATE(9697)] = 356357, + [SMALL_STATE(9698)] = 356368, + [SMALL_STATE(9699)] = 356379, + [SMALL_STATE(9700)] = 356392, + [SMALL_STATE(9701)] = 356403, + [SMALL_STATE(9702)] = 356414, + [SMALL_STATE(9703)] = 356427, + [SMALL_STATE(9704)] = 356438, + [SMALL_STATE(9705)] = 356451, + [SMALL_STATE(9706)] = 356464, + [SMALL_STATE(9707)] = 356477, + [SMALL_STATE(9708)] = 356490, + [SMALL_STATE(9709)] = 356499, + [SMALL_STATE(9710)] = 356512, + [SMALL_STATE(9711)] = 356525, + [SMALL_STATE(9712)] = 356538, + [SMALL_STATE(9713)] = 356547, + [SMALL_STATE(9714)] = 356558, + [SMALL_STATE(9715)] = 356571, + [SMALL_STATE(9716)] = 356584, + [SMALL_STATE(9717)] = 356597, + [SMALL_STATE(9718)] = 356610, + [SMALL_STATE(9719)] = 356623, + [SMALL_STATE(9720)] = 356636, + [SMALL_STATE(9721)] = 356649, + [SMALL_STATE(9722)] = 356662, + [SMALL_STATE(9723)] = 356671, + [SMALL_STATE(9724)] = 356684, + [SMALL_STATE(9725)] = 356697, + [SMALL_STATE(9726)] = 356708, + [SMALL_STATE(9727)] = 356721, + [SMALL_STATE(9728)] = 356734, + [SMALL_STATE(9729)] = 356745, + [SMALL_STATE(9730)] = 356756, + [SMALL_STATE(9731)] = 356769, + [SMALL_STATE(9732)] = 356782, + [SMALL_STATE(9733)] = 356795, + [SMALL_STATE(9734)] = 356808, + [SMALL_STATE(9735)] = 356821, + [SMALL_STATE(9736)] = 356832, + [SMALL_STATE(9737)] = 356841, + [SMALL_STATE(9738)] = 356852, + [SMALL_STATE(9739)] = 356865, + [SMALL_STATE(9740)] = 356874, + [SMALL_STATE(9741)] = 356887, + [SMALL_STATE(9742)] = 356896, + [SMALL_STATE(9743)] = 356909, + [SMALL_STATE(9744)] = 356922, + [SMALL_STATE(9745)] = 356935, + [SMALL_STATE(9746)] = 356948, + [SMALL_STATE(9747)] = 356961, + [SMALL_STATE(9748)] = 356974, + [SMALL_STATE(9749)] = 356987, + [SMALL_STATE(9750)] = 357000, + [SMALL_STATE(9751)] = 357013, + [SMALL_STATE(9752)] = 357026, + [SMALL_STATE(9753)] = 357039, + [SMALL_STATE(9754)] = 357052, + [SMALL_STATE(9755)] = 357063, + [SMALL_STATE(9756)] = 357076, + [SMALL_STATE(9757)] = 357089, + [SMALL_STATE(9758)] = 357100, + [SMALL_STATE(9759)] = 357113, + [SMALL_STATE(9760)] = 357126, + [SMALL_STATE(9761)] = 357139, + [SMALL_STATE(9762)] = 357152, + [SMALL_STATE(9763)] = 357165, + [SMALL_STATE(9764)] = 357178, + [SMALL_STATE(9765)] = 357189, + [SMALL_STATE(9766)] = 357200, + [SMALL_STATE(9767)] = 357213, + [SMALL_STATE(9768)] = 357226, + [SMALL_STATE(9769)] = 357237, + [SMALL_STATE(9770)] = 357250, + [SMALL_STATE(9771)] = 357263, + [SMALL_STATE(9772)] = 357276, + [SMALL_STATE(9773)] = 357289, + [SMALL_STATE(9774)] = 357302, + [SMALL_STATE(9775)] = 357311, + [SMALL_STATE(9776)] = 357324, + [SMALL_STATE(9777)] = 357337, + [SMALL_STATE(9778)] = 357350, + [SMALL_STATE(9779)] = 357363, + [SMALL_STATE(9780)] = 357376, + [SMALL_STATE(9781)] = 357389, + [SMALL_STATE(9782)] = 357402, + [SMALL_STATE(9783)] = 357415, + [SMALL_STATE(9784)] = 357428, + [SMALL_STATE(9785)] = 357439, + [SMALL_STATE(9786)] = 357452, + [SMALL_STATE(9787)] = 357463, + [SMALL_STATE(9788)] = 357472, + [SMALL_STATE(9789)] = 357485, + [SMALL_STATE(9790)] = 357498, + [SMALL_STATE(9791)] = 357511, + [SMALL_STATE(9792)] = 357524, + [SMALL_STATE(9793)] = 357537, + [SMALL_STATE(9794)] = 357550, + [SMALL_STATE(9795)] = 357563, + [SMALL_STATE(9796)] = 357576, + [SMALL_STATE(9797)] = 357589, + [SMALL_STATE(9798)] = 357602, + [SMALL_STATE(9799)] = 357615, + [SMALL_STATE(9800)] = 357628, + [SMALL_STATE(9801)] = 357641, + [SMALL_STATE(9802)] = 357654, + [SMALL_STATE(9803)] = 357667, + [SMALL_STATE(9804)] = 357680, + [SMALL_STATE(9805)] = 357691, + [SMALL_STATE(9806)] = 357704, + [SMALL_STATE(9807)] = 357717, + [SMALL_STATE(9808)] = 357730, + [SMALL_STATE(9809)] = 357743, + [SMALL_STATE(9810)] = 357756, + [SMALL_STATE(9811)] = 357769, + [SMALL_STATE(9812)] = 357782, + [SMALL_STATE(9813)] = 357795, + [SMALL_STATE(9814)] = 357808, + [SMALL_STATE(9815)] = 357821, + [SMALL_STATE(9816)] = 357834, + [SMALL_STATE(9817)] = 357847, + [SMALL_STATE(9818)] = 357860, + [SMALL_STATE(9819)] = 357873, + [SMALL_STATE(9820)] = 357886, + [SMALL_STATE(9821)] = 357899, + [SMALL_STATE(9822)] = 357912, + [SMALL_STATE(9823)] = 357925, + [SMALL_STATE(9824)] = 357936, + [SMALL_STATE(9825)] = 357949, + [SMALL_STATE(9826)] = 357962, + [SMALL_STATE(9827)] = 357975, + [SMALL_STATE(9828)] = 357988, + [SMALL_STATE(9829)] = 358001, + [SMALL_STATE(9830)] = 358014, + [SMALL_STATE(9831)] = 358025, + [SMALL_STATE(9832)] = 358038, + [SMALL_STATE(9833)] = 358051, + [SMALL_STATE(9834)] = 358064, + [SMALL_STATE(9835)] = 358077, + [SMALL_STATE(9836)] = 358090, + [SMALL_STATE(9837)] = 358103, + [SMALL_STATE(9838)] = 358116, + [SMALL_STATE(9839)] = 358129, + [SMALL_STATE(9840)] = 358142, + [SMALL_STATE(9841)] = 358153, + [SMALL_STATE(9842)] = 358164, + [SMALL_STATE(9843)] = 358177, + [SMALL_STATE(9844)] = 358190, + [SMALL_STATE(9845)] = 358203, + [SMALL_STATE(9846)] = 358216, + [SMALL_STATE(9847)] = 358229, + [SMALL_STATE(9848)] = 358242, + [SMALL_STATE(9849)] = 358255, + [SMALL_STATE(9850)] = 358268, + [SMALL_STATE(9851)] = 358281, + [SMALL_STATE(9852)] = 358294, + [SMALL_STATE(9853)] = 358307, + [SMALL_STATE(9854)] = 358316, + [SMALL_STATE(9855)] = 358329, + [SMALL_STATE(9856)] = 358342, + [SMALL_STATE(9857)] = 358355, + [SMALL_STATE(9858)] = 358368, + [SMALL_STATE(9859)] = 358381, + [SMALL_STATE(9860)] = 358394, + [SMALL_STATE(9861)] = 358407, + [SMALL_STATE(9862)] = 358420, + [SMALL_STATE(9863)] = 358431, + [SMALL_STATE(9864)] = 358444, + [SMALL_STATE(9865)] = 358457, + [SMALL_STATE(9866)] = 358470, + [SMALL_STATE(9867)] = 358483, + [SMALL_STATE(9868)] = 358496, + [SMALL_STATE(9869)] = 358509, + [SMALL_STATE(9870)] = 358522, + [SMALL_STATE(9871)] = 358535, + [SMALL_STATE(9872)] = 358548, + [SMALL_STATE(9873)] = 358561, + [SMALL_STATE(9874)] = 358574, + [SMALL_STATE(9875)] = 358587, + [SMALL_STATE(9876)] = 358600, + [SMALL_STATE(9877)] = 358613, + [SMALL_STATE(9878)] = 358626, + [SMALL_STATE(9879)] = 358639, + [SMALL_STATE(9880)] = 358652, + [SMALL_STATE(9881)] = 358665, + [SMALL_STATE(9882)] = 358678, + [SMALL_STATE(9883)] = 358691, + [SMALL_STATE(9884)] = 358704, + [SMALL_STATE(9885)] = 358717, + [SMALL_STATE(9886)] = 358728, + [SMALL_STATE(9887)] = 358741, + [SMALL_STATE(9888)] = 358754, + [SMALL_STATE(9889)] = 358767, + [SMALL_STATE(9890)] = 358780, + [SMALL_STATE(9891)] = 358793, + [SMALL_STATE(9892)] = 358802, + [SMALL_STATE(9893)] = 358815, + [SMALL_STATE(9894)] = 358828, + [SMALL_STATE(9895)] = 358841, + [SMALL_STATE(9896)] = 358854, + [SMALL_STATE(9897)] = 358867, + [SMALL_STATE(9898)] = 358880, + [SMALL_STATE(9899)] = 358893, + [SMALL_STATE(9900)] = 358906, + [SMALL_STATE(9901)] = 358919, + [SMALL_STATE(9902)] = 358932, + [SMALL_STATE(9903)] = 358943, + [SMALL_STATE(9904)] = 358956, + [SMALL_STATE(9905)] = 358969, + [SMALL_STATE(9906)] = 358982, + [SMALL_STATE(9907)] = 358995, + [SMALL_STATE(9908)] = 359008, + [SMALL_STATE(9909)] = 359021, + [SMALL_STATE(9910)] = 359034, + [SMALL_STATE(9911)] = 359047, + [SMALL_STATE(9912)] = 359060, + [SMALL_STATE(9913)] = 359073, + [SMALL_STATE(9914)] = 359086, + [SMALL_STATE(9915)] = 359097, + [SMALL_STATE(9916)] = 359110, + [SMALL_STATE(9917)] = 359123, + [SMALL_STATE(9918)] = 359136, + [SMALL_STATE(9919)] = 359149, + [SMALL_STATE(9920)] = 359162, + [SMALL_STATE(9921)] = 359173, + [SMALL_STATE(9922)] = 359186, + [SMALL_STATE(9923)] = 359199, + [SMALL_STATE(9924)] = 359212, + [SMALL_STATE(9925)] = 359225, + [SMALL_STATE(9926)] = 359238, + [SMALL_STATE(9927)] = 359251, + [SMALL_STATE(9928)] = 359264, + [SMALL_STATE(9929)] = 359275, + [SMALL_STATE(9930)] = 359288, + [SMALL_STATE(9931)] = 359301, + [SMALL_STATE(9932)] = 359314, + [SMALL_STATE(9933)] = 359327, + [SMALL_STATE(9934)] = 359340, + [SMALL_STATE(9935)] = 359353, + [SMALL_STATE(9936)] = 359366, + [SMALL_STATE(9937)] = 359377, + [SMALL_STATE(9938)] = 359390, + [SMALL_STATE(9939)] = 359401, + [SMALL_STATE(9940)] = 359414, + [SMALL_STATE(9941)] = 359425, + [SMALL_STATE(9942)] = 359438, + [SMALL_STATE(9943)] = 359451, + [SMALL_STATE(9944)] = 359462, + [SMALL_STATE(9945)] = 359473, + [SMALL_STATE(9946)] = 359484, + [SMALL_STATE(9947)] = 359497, + [SMALL_STATE(9948)] = 359510, + [SMALL_STATE(9949)] = 359523, + [SMALL_STATE(9950)] = 359536, + [SMALL_STATE(9951)] = 359549, + [SMALL_STATE(9952)] = 359562, + [SMALL_STATE(9953)] = 359575, + [SMALL_STATE(9954)] = 359588, + [SMALL_STATE(9955)] = 359601, + [SMALL_STATE(9956)] = 359614, + [SMALL_STATE(9957)] = 359625, + [SMALL_STATE(9958)] = 359638, + [SMALL_STATE(9959)] = 359651, + [SMALL_STATE(9960)] = 359664, + [SMALL_STATE(9961)] = 359677, + [SMALL_STATE(9962)] = 359690, + [SMALL_STATE(9963)] = 359703, + [SMALL_STATE(9964)] = 359716, + [SMALL_STATE(9965)] = 359729, + [SMALL_STATE(9966)] = 359742, + [SMALL_STATE(9967)] = 359755, + [SMALL_STATE(9968)] = 359768, + [SMALL_STATE(9969)] = 359779, + [SMALL_STATE(9970)] = 359792, + [SMALL_STATE(9971)] = 359805, + [SMALL_STATE(9972)] = 359818, + [SMALL_STATE(9973)] = 359831, + [SMALL_STATE(9974)] = 359844, + [SMALL_STATE(9975)] = 359857, + [SMALL_STATE(9976)] = 359870, + [SMALL_STATE(9977)] = 359883, + [SMALL_STATE(9978)] = 359894, + [SMALL_STATE(9979)] = 359907, + [SMALL_STATE(9980)] = 359920, + [SMALL_STATE(9981)] = 359933, + [SMALL_STATE(9982)] = 359946, + [SMALL_STATE(9983)] = 359959, + [SMALL_STATE(9984)] = 359972, + [SMALL_STATE(9985)] = 359985, + [SMALL_STATE(9986)] = 359998, + [SMALL_STATE(9987)] = 360011, + [SMALL_STATE(9988)] = 360024, + [SMALL_STATE(9989)] = 360037, + [SMALL_STATE(9990)] = 360050, + [SMALL_STATE(9991)] = 360063, + [SMALL_STATE(9992)] = 360076, + [SMALL_STATE(9993)] = 360089, + [SMALL_STATE(9994)] = 360102, + [SMALL_STATE(9995)] = 360115, + [SMALL_STATE(9996)] = 360128, + [SMALL_STATE(9997)] = 360139, + [SMALL_STATE(9998)] = 360152, + [SMALL_STATE(9999)] = 360163, + [SMALL_STATE(10000)] = 360176, + [SMALL_STATE(10001)] = 360189, + [SMALL_STATE(10002)] = 360202, + [SMALL_STATE(10003)] = 360215, + [SMALL_STATE(10004)] = 360228, + [SMALL_STATE(10005)] = 360241, + [SMALL_STATE(10006)] = 360254, + [SMALL_STATE(10007)] = 360267, + [SMALL_STATE(10008)] = 360280, + [SMALL_STATE(10009)] = 360293, + [SMALL_STATE(10010)] = 360306, + [SMALL_STATE(10011)] = 360319, + [SMALL_STATE(10012)] = 360332, + [SMALL_STATE(10013)] = 360345, + [SMALL_STATE(10014)] = 360358, + [SMALL_STATE(10015)] = 360371, + [SMALL_STATE(10016)] = 360384, + [SMALL_STATE(10017)] = 360397, + [SMALL_STATE(10018)] = 360410, + [SMALL_STATE(10019)] = 360423, + [SMALL_STATE(10020)] = 360436, + [SMALL_STATE(10021)] = 360449, + [SMALL_STATE(10022)] = 360460, + [SMALL_STATE(10023)] = 360473, + [SMALL_STATE(10024)] = 360486, + [SMALL_STATE(10025)] = 360499, + [SMALL_STATE(10026)] = 360512, + [SMALL_STATE(10027)] = 360525, + [SMALL_STATE(10028)] = 360538, + [SMALL_STATE(10029)] = 360551, + [SMALL_STATE(10030)] = 360564, + [SMALL_STATE(10031)] = 360577, + [SMALL_STATE(10032)] = 360588, + [SMALL_STATE(10033)] = 360601, + [SMALL_STATE(10034)] = 360614, + [SMALL_STATE(10035)] = 360625, + [SMALL_STATE(10036)] = 360638, + [SMALL_STATE(10037)] = 360651, + [SMALL_STATE(10038)] = 360664, + [SMALL_STATE(10039)] = 360677, + [SMALL_STATE(10040)] = 360690, + [SMALL_STATE(10041)] = 360703, + [SMALL_STATE(10042)] = 360716, + [SMALL_STATE(10043)] = 360729, + [SMALL_STATE(10044)] = 360742, + [SMALL_STATE(10045)] = 360755, + [SMALL_STATE(10046)] = 360768, + [SMALL_STATE(10047)] = 360781, + [SMALL_STATE(10048)] = 360794, + [SMALL_STATE(10049)] = 360807, + [SMALL_STATE(10050)] = 360818, + [SMALL_STATE(10051)] = 360831, + [SMALL_STATE(10052)] = 360844, + [SMALL_STATE(10053)] = 360857, + [SMALL_STATE(10054)] = 360870, + [SMALL_STATE(10055)] = 360883, + [SMALL_STATE(10056)] = 360894, + [SMALL_STATE(10057)] = 360903, + [SMALL_STATE(10058)] = 360916, + [SMALL_STATE(10059)] = 360929, + [SMALL_STATE(10060)] = 360942, + [SMALL_STATE(10061)] = 360955, + [SMALL_STATE(10062)] = 360968, + [SMALL_STATE(10063)] = 360981, + [SMALL_STATE(10064)] = 360994, + [SMALL_STATE(10065)] = 361004, + [SMALL_STATE(10066)] = 361012, + [SMALL_STATE(10067)] = 361022, + [SMALL_STATE(10068)] = 361032, + [SMALL_STATE(10069)] = 361040, + [SMALL_STATE(10070)] = 361050, + [SMALL_STATE(10071)] = 361058, + [SMALL_STATE(10072)] = 361068, + [SMALL_STATE(10073)] = 361076, + [SMALL_STATE(10074)] = 361086, + [SMALL_STATE(10075)] = 361096, + [SMALL_STATE(10076)] = 361106, + [SMALL_STATE(10077)] = 361116, + [SMALL_STATE(10078)] = 361126, + [SMALL_STATE(10079)] = 361136, + [SMALL_STATE(10080)] = 361144, + [SMALL_STATE(10081)] = 361154, + [SMALL_STATE(10082)] = 361162, + [SMALL_STATE(10083)] = 361172, + [SMALL_STATE(10084)] = 361182, + [SMALL_STATE(10085)] = 361192, + [SMALL_STATE(10086)] = 361202, + [SMALL_STATE(10087)] = 361212, + [SMALL_STATE(10088)] = 361222, + [SMALL_STATE(10089)] = 361232, + [SMALL_STATE(10090)] = 361242, + [SMALL_STATE(10091)] = 361252, + [SMALL_STATE(10092)] = 361262, + [SMALL_STATE(10093)] = 361272, + [SMALL_STATE(10094)] = 361282, + [SMALL_STATE(10095)] = 361292, + [SMALL_STATE(10096)] = 361302, + [SMALL_STATE(10097)] = 361312, + [SMALL_STATE(10098)] = 361322, + [SMALL_STATE(10099)] = 361332, + [SMALL_STATE(10100)] = 361342, + [SMALL_STATE(10101)] = 361352, + [SMALL_STATE(10102)] = 361362, + [SMALL_STATE(10103)] = 361372, + [SMALL_STATE(10104)] = 361382, + [SMALL_STATE(10105)] = 361392, + [SMALL_STATE(10106)] = 361402, + [SMALL_STATE(10107)] = 361412, + [SMALL_STATE(10108)] = 361422, + [SMALL_STATE(10109)] = 361432, + [SMALL_STATE(10110)] = 361442, + [SMALL_STATE(10111)] = 361450, + [SMALL_STATE(10112)] = 361460, + [SMALL_STATE(10113)] = 361470, + [SMALL_STATE(10114)] = 361480, + [SMALL_STATE(10115)] = 361490, + [SMALL_STATE(10116)] = 361498, + [SMALL_STATE(10117)] = 361508, + [SMALL_STATE(10118)] = 361518, + [SMALL_STATE(10119)] = 361528, + [SMALL_STATE(10120)] = 361536, + [SMALL_STATE(10121)] = 361546, + [SMALL_STATE(10122)] = 361556, + [SMALL_STATE(10123)] = 361566, + [SMALL_STATE(10124)] = 361576, + [SMALL_STATE(10125)] = 361586, + [SMALL_STATE(10126)] = 361596, + [SMALL_STATE(10127)] = 361606, + [SMALL_STATE(10128)] = 361616, + [SMALL_STATE(10129)] = 361626, + [SMALL_STATE(10130)] = 361636, + [SMALL_STATE(10131)] = 361646, + [SMALL_STATE(10132)] = 361656, + [SMALL_STATE(10133)] = 361666, + [SMALL_STATE(10134)] = 361674, + [SMALL_STATE(10135)] = 361684, + [SMALL_STATE(10136)] = 361694, + [SMALL_STATE(10137)] = 361704, + [SMALL_STATE(10138)] = 361714, + [SMALL_STATE(10139)] = 361724, + [SMALL_STATE(10140)] = 361734, + [SMALL_STATE(10141)] = 361744, + [SMALL_STATE(10142)] = 361754, + [SMALL_STATE(10143)] = 361764, + [SMALL_STATE(10144)] = 361774, + [SMALL_STATE(10145)] = 361784, + [SMALL_STATE(10146)] = 361794, + [SMALL_STATE(10147)] = 361804, + [SMALL_STATE(10148)] = 361814, + [SMALL_STATE(10149)] = 361824, + [SMALL_STATE(10150)] = 361834, + [SMALL_STATE(10151)] = 361844, + [SMALL_STATE(10152)] = 361854, + [SMALL_STATE(10153)] = 361864, + [SMALL_STATE(10154)] = 361874, + [SMALL_STATE(10155)] = 361884, + [SMALL_STATE(10156)] = 361894, + [SMALL_STATE(10157)] = 361904, + [SMALL_STATE(10158)] = 361914, + [SMALL_STATE(10159)] = 361924, + [SMALL_STATE(10160)] = 361934, + [SMALL_STATE(10161)] = 361944, + [SMALL_STATE(10162)] = 361954, + [SMALL_STATE(10163)] = 361964, + [SMALL_STATE(10164)] = 361974, + [SMALL_STATE(10165)] = 361984, + [SMALL_STATE(10166)] = 361994, + [SMALL_STATE(10167)] = 362004, + [SMALL_STATE(10168)] = 362014, + [SMALL_STATE(10169)] = 362024, + [SMALL_STATE(10170)] = 362034, + [SMALL_STATE(10171)] = 362044, + [SMALL_STATE(10172)] = 362054, + [SMALL_STATE(10173)] = 362064, + [SMALL_STATE(10174)] = 362074, + [SMALL_STATE(10175)] = 362084, + [SMALL_STATE(10176)] = 362094, + [SMALL_STATE(10177)] = 362104, + [SMALL_STATE(10178)] = 362114, + [SMALL_STATE(10179)] = 362124, + [SMALL_STATE(10180)] = 362134, + [SMALL_STATE(10181)] = 362144, + [SMALL_STATE(10182)] = 362154, + [SMALL_STATE(10183)] = 362162, + [SMALL_STATE(10184)] = 362172, + [SMALL_STATE(10185)] = 362182, + [SMALL_STATE(10186)] = 362192, + [SMALL_STATE(10187)] = 362202, + [SMALL_STATE(10188)] = 362212, + [SMALL_STATE(10189)] = 362222, + [SMALL_STATE(10190)] = 362232, + [SMALL_STATE(10191)] = 362242, + [SMALL_STATE(10192)] = 362252, + [SMALL_STATE(10193)] = 362262, + [SMALL_STATE(10194)] = 362270, + [SMALL_STATE(10195)] = 362280, + [SMALL_STATE(10196)] = 362290, + [SMALL_STATE(10197)] = 362300, + [SMALL_STATE(10198)] = 362310, + [SMALL_STATE(10199)] = 362320, + [SMALL_STATE(10200)] = 362330, + [SMALL_STATE(10201)] = 362338, + [SMALL_STATE(10202)] = 362348, + [SMALL_STATE(10203)] = 362358, + [SMALL_STATE(10204)] = 362368, + [SMALL_STATE(10205)] = 362378, + [SMALL_STATE(10206)] = 362388, + [SMALL_STATE(10207)] = 362398, + [SMALL_STATE(10208)] = 362408, + [SMALL_STATE(10209)] = 362418, + [SMALL_STATE(10210)] = 362426, + [SMALL_STATE(10211)] = 362434, + [SMALL_STATE(10212)] = 362444, + [SMALL_STATE(10213)] = 362454, + [SMALL_STATE(10214)] = 362462, + [SMALL_STATE(10215)] = 362472, + [SMALL_STATE(10216)] = 362482, + [SMALL_STATE(10217)] = 362492, + [SMALL_STATE(10218)] = 362502, + [SMALL_STATE(10219)] = 362510, + [SMALL_STATE(10220)] = 362520, + [SMALL_STATE(10221)] = 362530, + [SMALL_STATE(10222)] = 362538, + [SMALL_STATE(10223)] = 362548, + [SMALL_STATE(10224)] = 362558, + [SMALL_STATE(10225)] = 362568, + [SMALL_STATE(10226)] = 362578, + [SMALL_STATE(10227)] = 362588, + [SMALL_STATE(10228)] = 362598, + [SMALL_STATE(10229)] = 362608, + [SMALL_STATE(10230)] = 362618, + [SMALL_STATE(10231)] = 362628, + [SMALL_STATE(10232)] = 362638, + [SMALL_STATE(10233)] = 362648, + [SMALL_STATE(10234)] = 362656, + [SMALL_STATE(10235)] = 362666, + [SMALL_STATE(10236)] = 362676, + [SMALL_STATE(10237)] = 362686, + [SMALL_STATE(10238)] = 362696, + [SMALL_STATE(10239)] = 362706, + [SMALL_STATE(10240)] = 362716, + [SMALL_STATE(10241)] = 362726, + [SMALL_STATE(10242)] = 362736, + [SMALL_STATE(10243)] = 362746, + [SMALL_STATE(10244)] = 362756, + [SMALL_STATE(10245)] = 362766, + [SMALL_STATE(10246)] = 362776, + [SMALL_STATE(10247)] = 362786, + [SMALL_STATE(10248)] = 362796, + [SMALL_STATE(10249)] = 362806, + [SMALL_STATE(10250)] = 362816, + [SMALL_STATE(10251)] = 362826, + [SMALL_STATE(10252)] = 362836, + [SMALL_STATE(10253)] = 362846, + [SMALL_STATE(10254)] = 362856, + [SMALL_STATE(10255)] = 362866, + [SMALL_STATE(10256)] = 362874, + [SMALL_STATE(10257)] = 362884, + [SMALL_STATE(10258)] = 362892, + [SMALL_STATE(10259)] = 362902, + [SMALL_STATE(10260)] = 362912, + [SMALL_STATE(10261)] = 362922, + [SMALL_STATE(10262)] = 362932, + [SMALL_STATE(10263)] = 362942, + [SMALL_STATE(10264)] = 362952, + [SMALL_STATE(10265)] = 362962, + [SMALL_STATE(10266)] = 362972, + [SMALL_STATE(10267)] = 362980, + [SMALL_STATE(10268)] = 362990, + [SMALL_STATE(10269)] = 363000, + [SMALL_STATE(10270)] = 363010, + [SMALL_STATE(10271)] = 363020, + [SMALL_STATE(10272)] = 363030, + [SMALL_STATE(10273)] = 363040, + [SMALL_STATE(10274)] = 363050, + [SMALL_STATE(10275)] = 363060, + [SMALL_STATE(10276)] = 363070, + [SMALL_STATE(10277)] = 363080, + [SMALL_STATE(10278)] = 363090, + [SMALL_STATE(10279)] = 363100, + [SMALL_STATE(10280)] = 363110, + [SMALL_STATE(10281)] = 363118, + [SMALL_STATE(10282)] = 363128, + [SMALL_STATE(10283)] = 363138, + [SMALL_STATE(10284)] = 363148, + [SMALL_STATE(10285)] = 363158, + [SMALL_STATE(10286)] = 363168, + [SMALL_STATE(10287)] = 363178, + [SMALL_STATE(10288)] = 363188, + [SMALL_STATE(10289)] = 363198, + [SMALL_STATE(10290)] = 363208, + [SMALL_STATE(10291)] = 363218, + [SMALL_STATE(10292)] = 363228, + [SMALL_STATE(10293)] = 363238, + [SMALL_STATE(10294)] = 363248, + [SMALL_STATE(10295)] = 363258, + [SMALL_STATE(10296)] = 363268, + [SMALL_STATE(10297)] = 363278, + [SMALL_STATE(10298)] = 363288, + [SMALL_STATE(10299)] = 363298, + [SMALL_STATE(10300)] = 363308, + [SMALL_STATE(10301)] = 363318, + [SMALL_STATE(10302)] = 363328, + [SMALL_STATE(10303)] = 363338, + [SMALL_STATE(10304)] = 363348, + [SMALL_STATE(10305)] = 363358, + [SMALL_STATE(10306)] = 363368, + [SMALL_STATE(10307)] = 363378, + [SMALL_STATE(10308)] = 363388, + [SMALL_STATE(10309)] = 363398, + [SMALL_STATE(10310)] = 363408, + [SMALL_STATE(10311)] = 363418, + [SMALL_STATE(10312)] = 363426, + [SMALL_STATE(10313)] = 363436, + [SMALL_STATE(10314)] = 363446, + [SMALL_STATE(10315)] = 363456, + [SMALL_STATE(10316)] = 363466, + [SMALL_STATE(10317)] = 363474, + [SMALL_STATE(10318)] = 363484, + [SMALL_STATE(10319)] = 363494, + [SMALL_STATE(10320)] = 363504, + [SMALL_STATE(10321)] = 363514, + [SMALL_STATE(10322)] = 363522, + [SMALL_STATE(10323)] = 363532, + [SMALL_STATE(10324)] = 363542, + [SMALL_STATE(10325)] = 363552, + [SMALL_STATE(10326)] = 363562, + [SMALL_STATE(10327)] = 363570, + [SMALL_STATE(10328)] = 363580, + [SMALL_STATE(10329)] = 363590, + [SMALL_STATE(10330)] = 363600, + [SMALL_STATE(10331)] = 363610, + [SMALL_STATE(10332)] = 363618, + [SMALL_STATE(10333)] = 363628, + [SMALL_STATE(10334)] = 363638, + [SMALL_STATE(10335)] = 363648, + [SMALL_STATE(10336)] = 363658, + [SMALL_STATE(10337)] = 363668, + [SMALL_STATE(10338)] = 363678, + [SMALL_STATE(10339)] = 363686, + [SMALL_STATE(10340)] = 363696, + [SMALL_STATE(10341)] = 363704, + [SMALL_STATE(10342)] = 363714, + [SMALL_STATE(10343)] = 363722, + [SMALL_STATE(10344)] = 363732, + [SMALL_STATE(10345)] = 363740, + [SMALL_STATE(10346)] = 363750, + [SMALL_STATE(10347)] = 363760, + [SMALL_STATE(10348)] = 363770, + [SMALL_STATE(10349)] = 363780, + [SMALL_STATE(10350)] = 363790, + [SMALL_STATE(10351)] = 363800, + [SMALL_STATE(10352)] = 363810, + [SMALL_STATE(10353)] = 363820, + [SMALL_STATE(10354)] = 363830, + [SMALL_STATE(10355)] = 363840, + [SMALL_STATE(10356)] = 363850, + [SMALL_STATE(10357)] = 363860, + [SMALL_STATE(10358)] = 363870, + [SMALL_STATE(10359)] = 363880, + [SMALL_STATE(10360)] = 363890, + [SMALL_STATE(10361)] = 363900, + [SMALL_STATE(10362)] = 363910, + [SMALL_STATE(10363)] = 363920, + [SMALL_STATE(10364)] = 363930, + [SMALL_STATE(10365)] = 363940, + [SMALL_STATE(10366)] = 363950, + [SMALL_STATE(10367)] = 363960, + [SMALL_STATE(10368)] = 363968, + [SMALL_STATE(10369)] = 363978, + [SMALL_STATE(10370)] = 363988, + [SMALL_STATE(10371)] = 363998, + [SMALL_STATE(10372)] = 364008, + [SMALL_STATE(10373)] = 364018, + [SMALL_STATE(10374)] = 364026, + [SMALL_STATE(10375)] = 364034, + [SMALL_STATE(10376)] = 364044, + [SMALL_STATE(10377)] = 364054, + [SMALL_STATE(10378)] = 364064, + [SMALL_STATE(10379)] = 364072, + [SMALL_STATE(10380)] = 364082, + [SMALL_STATE(10381)] = 364092, + [SMALL_STATE(10382)] = 364102, + [SMALL_STATE(10383)] = 364112, + [SMALL_STATE(10384)] = 364122, + [SMALL_STATE(10385)] = 364132, + [SMALL_STATE(10386)] = 364142, + [SMALL_STATE(10387)] = 364150, + [SMALL_STATE(10388)] = 364160, + [SMALL_STATE(10389)] = 364170, + [SMALL_STATE(10390)] = 364180, + [SMALL_STATE(10391)] = 364190, + [SMALL_STATE(10392)] = 364200, + [SMALL_STATE(10393)] = 364210, + [SMALL_STATE(10394)] = 364220, + [SMALL_STATE(10395)] = 364230, + [SMALL_STATE(10396)] = 364240, + [SMALL_STATE(10397)] = 364250, + [SMALL_STATE(10398)] = 364260, + [SMALL_STATE(10399)] = 364268, + [SMALL_STATE(10400)] = 364278, + [SMALL_STATE(10401)] = 364288, + [SMALL_STATE(10402)] = 364296, + [SMALL_STATE(10403)] = 364306, + [SMALL_STATE(10404)] = 364316, + [SMALL_STATE(10405)] = 364326, + [SMALL_STATE(10406)] = 364336, + [SMALL_STATE(10407)] = 364346, + [SMALL_STATE(10408)] = 364356, + [SMALL_STATE(10409)] = 364366, + [SMALL_STATE(10410)] = 364376, + [SMALL_STATE(10411)] = 364384, + [SMALL_STATE(10412)] = 364394, + [SMALL_STATE(10413)] = 364404, + [SMALL_STATE(10414)] = 364414, + [SMALL_STATE(10415)] = 364424, + [SMALL_STATE(10416)] = 364434, + [SMALL_STATE(10417)] = 364444, + [SMALL_STATE(10418)] = 364454, + [SMALL_STATE(10419)] = 364464, + [SMALL_STATE(10420)] = 364474, + [SMALL_STATE(10421)] = 364484, + [SMALL_STATE(10422)] = 364494, + [SMALL_STATE(10423)] = 364504, + [SMALL_STATE(10424)] = 364514, + [SMALL_STATE(10425)] = 364524, + [SMALL_STATE(10426)] = 364534, + [SMALL_STATE(10427)] = 364544, + [SMALL_STATE(10428)] = 364554, + [SMALL_STATE(10429)] = 364562, + [SMALL_STATE(10430)] = 364572, + [SMALL_STATE(10431)] = 364582, + [SMALL_STATE(10432)] = 364592, + [SMALL_STATE(10433)] = 364602, + [SMALL_STATE(10434)] = 364612, + [SMALL_STATE(10435)] = 364622, + [SMALL_STATE(10436)] = 364632, + [SMALL_STATE(10437)] = 364642, + [SMALL_STATE(10438)] = 364652, + [SMALL_STATE(10439)] = 364662, + [SMALL_STATE(10440)] = 364672, + [SMALL_STATE(10441)] = 364682, + [SMALL_STATE(10442)] = 364692, + [SMALL_STATE(10443)] = 364702, + [SMALL_STATE(10444)] = 364712, + [SMALL_STATE(10445)] = 364720, + [SMALL_STATE(10446)] = 364728, + [SMALL_STATE(10447)] = 364738, + [SMALL_STATE(10448)] = 364748, + [SMALL_STATE(10449)] = 364758, + [SMALL_STATE(10450)] = 364768, + [SMALL_STATE(10451)] = 364778, + [SMALL_STATE(10452)] = 364786, + [SMALL_STATE(10453)] = 364796, + [SMALL_STATE(10454)] = 364806, + [SMALL_STATE(10455)] = 364816, + [SMALL_STATE(10456)] = 364826, + [SMALL_STATE(10457)] = 364836, + [SMALL_STATE(10458)] = 364846, + [SMALL_STATE(10459)] = 364856, + [SMALL_STATE(10460)] = 364866, + [SMALL_STATE(10461)] = 364876, + [SMALL_STATE(10462)] = 364886, + [SMALL_STATE(10463)] = 364896, + [SMALL_STATE(10464)] = 364906, + [SMALL_STATE(10465)] = 364916, + [SMALL_STATE(10466)] = 364926, + [SMALL_STATE(10467)] = 364936, + [SMALL_STATE(10468)] = 364946, + [SMALL_STATE(10469)] = 364956, + [SMALL_STATE(10470)] = 364966, + [SMALL_STATE(10471)] = 364976, + [SMALL_STATE(10472)] = 364986, + [SMALL_STATE(10473)] = 364996, + [SMALL_STATE(10474)] = 365006, + [SMALL_STATE(10475)] = 365016, + [SMALL_STATE(10476)] = 365026, + [SMALL_STATE(10477)] = 365034, + [SMALL_STATE(10478)] = 365042, + [SMALL_STATE(10479)] = 365052, + [SMALL_STATE(10480)] = 365062, + [SMALL_STATE(10481)] = 365072, + [SMALL_STATE(10482)] = 365082, + [SMALL_STATE(10483)] = 365089, + [SMALL_STATE(10484)] = 365096, + [SMALL_STATE(10485)] = 365103, + [SMALL_STATE(10486)] = 365110, + [SMALL_STATE(10487)] = 365117, + [SMALL_STATE(10488)] = 365124, + [SMALL_STATE(10489)] = 365131, + [SMALL_STATE(10490)] = 365138, + [SMALL_STATE(10491)] = 365145, + [SMALL_STATE(10492)] = 365152, + [SMALL_STATE(10493)] = 365159, + [SMALL_STATE(10494)] = 365166, + [SMALL_STATE(10495)] = 365173, + [SMALL_STATE(10496)] = 365180, + [SMALL_STATE(10497)] = 365187, + [SMALL_STATE(10498)] = 365194, + [SMALL_STATE(10499)] = 365201, + [SMALL_STATE(10500)] = 365208, + [SMALL_STATE(10501)] = 365215, + [SMALL_STATE(10502)] = 365222, + [SMALL_STATE(10503)] = 365229, + [SMALL_STATE(10504)] = 365236, + [SMALL_STATE(10505)] = 365243, + [SMALL_STATE(10506)] = 365250, + [SMALL_STATE(10507)] = 365257, + [SMALL_STATE(10508)] = 365264, + [SMALL_STATE(10509)] = 365271, + [SMALL_STATE(10510)] = 365278, + [SMALL_STATE(10511)] = 365285, + [SMALL_STATE(10512)] = 365292, + [SMALL_STATE(10513)] = 365299, + [SMALL_STATE(10514)] = 365306, + [SMALL_STATE(10515)] = 365313, + [SMALL_STATE(10516)] = 365320, + [SMALL_STATE(10517)] = 365327, + [SMALL_STATE(10518)] = 365334, + [SMALL_STATE(10519)] = 365341, + [SMALL_STATE(10520)] = 365348, + [SMALL_STATE(10521)] = 365355, + [SMALL_STATE(10522)] = 365362, + [SMALL_STATE(10523)] = 365369, + [SMALL_STATE(10524)] = 365376, + [SMALL_STATE(10525)] = 365383, + [SMALL_STATE(10526)] = 365390, + [SMALL_STATE(10527)] = 365397, + [SMALL_STATE(10528)] = 365404, + [SMALL_STATE(10529)] = 365411, + [SMALL_STATE(10530)] = 365418, + [SMALL_STATE(10531)] = 365425, + [SMALL_STATE(10532)] = 365432, + [SMALL_STATE(10533)] = 365439, + [SMALL_STATE(10534)] = 365446, + [SMALL_STATE(10535)] = 365453, + [SMALL_STATE(10536)] = 365460, + [SMALL_STATE(10537)] = 365467, + [SMALL_STATE(10538)] = 365474, + [SMALL_STATE(10539)] = 365481, + [SMALL_STATE(10540)] = 365488, + [SMALL_STATE(10541)] = 365495, + [SMALL_STATE(10542)] = 365502, + [SMALL_STATE(10543)] = 365509, + [SMALL_STATE(10544)] = 365516, + [SMALL_STATE(10545)] = 365523, + [SMALL_STATE(10546)] = 365530, + [SMALL_STATE(10547)] = 365537, + [SMALL_STATE(10548)] = 365544, + [SMALL_STATE(10549)] = 365551, + [SMALL_STATE(10550)] = 365558, + [SMALL_STATE(10551)] = 365565, + [SMALL_STATE(10552)] = 365572, + [SMALL_STATE(10553)] = 365579, + [SMALL_STATE(10554)] = 365586, + [SMALL_STATE(10555)] = 365593, + [SMALL_STATE(10556)] = 365600, + [SMALL_STATE(10557)] = 365607, + [SMALL_STATE(10558)] = 365614, + [SMALL_STATE(10559)] = 365621, + [SMALL_STATE(10560)] = 365628, + [SMALL_STATE(10561)] = 365635, + [SMALL_STATE(10562)] = 365642, + [SMALL_STATE(10563)] = 365649, + [SMALL_STATE(10564)] = 365656, + [SMALL_STATE(10565)] = 365663, + [SMALL_STATE(10566)] = 365670, + [SMALL_STATE(10567)] = 365677, + [SMALL_STATE(10568)] = 365684, + [SMALL_STATE(10569)] = 365691, + [SMALL_STATE(10570)] = 365698, + [SMALL_STATE(10571)] = 365705, + [SMALL_STATE(10572)] = 365712, + [SMALL_STATE(10573)] = 365719, + [SMALL_STATE(10574)] = 365726, + [SMALL_STATE(10575)] = 365733, + [SMALL_STATE(10576)] = 365740, + [SMALL_STATE(10577)] = 365747, + [SMALL_STATE(10578)] = 365754, + [SMALL_STATE(10579)] = 365761, + [SMALL_STATE(10580)] = 365768, + [SMALL_STATE(10581)] = 365775, + [SMALL_STATE(10582)] = 365782, + [SMALL_STATE(10583)] = 365789, + [SMALL_STATE(10584)] = 365796, + [SMALL_STATE(10585)] = 365803, + [SMALL_STATE(10586)] = 365810, + [SMALL_STATE(10587)] = 365817, + [SMALL_STATE(10588)] = 365824, + [SMALL_STATE(10589)] = 365831, + [SMALL_STATE(10590)] = 365838, + [SMALL_STATE(10591)] = 365845, + [SMALL_STATE(10592)] = 365852, + [SMALL_STATE(10593)] = 365859, + [SMALL_STATE(10594)] = 365866, + [SMALL_STATE(10595)] = 365873, + [SMALL_STATE(10596)] = 365880, + [SMALL_STATE(10597)] = 365887, + [SMALL_STATE(10598)] = 365894, + [SMALL_STATE(10599)] = 365901, + [SMALL_STATE(10600)] = 365908, + [SMALL_STATE(10601)] = 365915, + [SMALL_STATE(10602)] = 365922, + [SMALL_STATE(10603)] = 365929, + [SMALL_STATE(10604)] = 365936, + [SMALL_STATE(10605)] = 365943, + [SMALL_STATE(10606)] = 365950, + [SMALL_STATE(10607)] = 365957, + [SMALL_STATE(10608)] = 365964, + [SMALL_STATE(10609)] = 365971, + [SMALL_STATE(10610)] = 365978, + [SMALL_STATE(10611)] = 365985, + [SMALL_STATE(10612)] = 365992, + [SMALL_STATE(10613)] = 365999, + [SMALL_STATE(10614)] = 366006, + [SMALL_STATE(10615)] = 366013, + [SMALL_STATE(10616)] = 366020, + [SMALL_STATE(10617)] = 366027, + [SMALL_STATE(10618)] = 366034, + [SMALL_STATE(10619)] = 366041, + [SMALL_STATE(10620)] = 366048, + [SMALL_STATE(10621)] = 366055, + [SMALL_STATE(10622)] = 366062, + [SMALL_STATE(10623)] = 366069, + [SMALL_STATE(10624)] = 366076, + [SMALL_STATE(10625)] = 366083, + [SMALL_STATE(10626)] = 366090, + [SMALL_STATE(10627)] = 366097, + [SMALL_STATE(10628)] = 366104, + [SMALL_STATE(10629)] = 366111, + [SMALL_STATE(10630)] = 366118, + [SMALL_STATE(10631)] = 366125, + [SMALL_STATE(10632)] = 366132, + [SMALL_STATE(10633)] = 366139, + [SMALL_STATE(10634)] = 366146, + [SMALL_STATE(10635)] = 366153, + [SMALL_STATE(10636)] = 366160, + [SMALL_STATE(10637)] = 366167, + [SMALL_STATE(10638)] = 366174, + [SMALL_STATE(10639)] = 366181, + [SMALL_STATE(10640)] = 366188, + [SMALL_STATE(10641)] = 366195, + [SMALL_STATE(10642)] = 366202, + [SMALL_STATE(10643)] = 366209, + [SMALL_STATE(10644)] = 366216, + [SMALL_STATE(10645)] = 366223, + [SMALL_STATE(10646)] = 366230, + [SMALL_STATE(10647)] = 366237, + [SMALL_STATE(10648)] = 366244, + [SMALL_STATE(10649)] = 366251, + [SMALL_STATE(10650)] = 366258, + [SMALL_STATE(10651)] = 366265, + [SMALL_STATE(10652)] = 366272, + [SMALL_STATE(10653)] = 366279, + [SMALL_STATE(10654)] = 366286, + [SMALL_STATE(10655)] = 366293, + [SMALL_STATE(10656)] = 366300, + [SMALL_STATE(10657)] = 366307, + [SMALL_STATE(10658)] = 366314, + [SMALL_STATE(10659)] = 366321, + [SMALL_STATE(10660)] = 366328, + [SMALL_STATE(10661)] = 366335, + [SMALL_STATE(10662)] = 366342, + [SMALL_STATE(10663)] = 366349, + [SMALL_STATE(10664)] = 366356, + [SMALL_STATE(10665)] = 366363, + [SMALL_STATE(10666)] = 366370, + [SMALL_STATE(10667)] = 366377, + [SMALL_STATE(10668)] = 366384, + [SMALL_STATE(10669)] = 366391, + [SMALL_STATE(10670)] = 366398, + [SMALL_STATE(10671)] = 366405, + [SMALL_STATE(10672)] = 366412, + [SMALL_STATE(10673)] = 366419, + [SMALL_STATE(10674)] = 366426, + [SMALL_STATE(10675)] = 366433, + [SMALL_STATE(10676)] = 366440, + [SMALL_STATE(10677)] = 366447, + [SMALL_STATE(10678)] = 366454, + [SMALL_STATE(10679)] = 366461, + [SMALL_STATE(10680)] = 366468, + [SMALL_STATE(10681)] = 366475, + [SMALL_STATE(10682)] = 366482, + [SMALL_STATE(10683)] = 366489, + [SMALL_STATE(10684)] = 366496, + [SMALL_STATE(10685)] = 366503, + [SMALL_STATE(10686)] = 366510, + [SMALL_STATE(10687)] = 366517, + [SMALL_STATE(10688)] = 366524, + [SMALL_STATE(10689)] = 366531, + [SMALL_STATE(10690)] = 366538, + [SMALL_STATE(10691)] = 366545, + [SMALL_STATE(10692)] = 366552, + [SMALL_STATE(10693)] = 366559, + [SMALL_STATE(10694)] = 366566, + [SMALL_STATE(10695)] = 366573, + [SMALL_STATE(10696)] = 366580, + [SMALL_STATE(10697)] = 366587, + [SMALL_STATE(10698)] = 366594, + [SMALL_STATE(10699)] = 366601, + [SMALL_STATE(10700)] = 366608, + [SMALL_STATE(10701)] = 366615, + [SMALL_STATE(10702)] = 366622, + [SMALL_STATE(10703)] = 366629, + [SMALL_STATE(10704)] = 366636, + [SMALL_STATE(10705)] = 366643, + [SMALL_STATE(10706)] = 366650, + [SMALL_STATE(10707)] = 366657, + [SMALL_STATE(10708)] = 366664, + [SMALL_STATE(10709)] = 366671, + [SMALL_STATE(10710)] = 366678, + [SMALL_STATE(10711)] = 366685, + [SMALL_STATE(10712)] = 366692, + [SMALL_STATE(10713)] = 366699, + [SMALL_STATE(10714)] = 366706, + [SMALL_STATE(10715)] = 366713, + [SMALL_STATE(10716)] = 366720, + [SMALL_STATE(10717)] = 366727, + [SMALL_STATE(10718)] = 366734, + [SMALL_STATE(10719)] = 366741, + [SMALL_STATE(10720)] = 366748, + [SMALL_STATE(10721)] = 366755, + [SMALL_STATE(10722)] = 366762, + [SMALL_STATE(10723)] = 366769, + [SMALL_STATE(10724)] = 366776, + [SMALL_STATE(10725)] = 366783, + [SMALL_STATE(10726)] = 366790, + [SMALL_STATE(10727)] = 366797, + [SMALL_STATE(10728)] = 366804, + [SMALL_STATE(10729)] = 366811, + [SMALL_STATE(10730)] = 366818, + [SMALL_STATE(10731)] = 366825, + [SMALL_STATE(10732)] = 366832, + [SMALL_STATE(10733)] = 366839, + [SMALL_STATE(10734)] = 366846, + [SMALL_STATE(10735)] = 366853, + [SMALL_STATE(10736)] = 366860, + [SMALL_STATE(10737)] = 366867, + [SMALL_STATE(10738)] = 366874, + [SMALL_STATE(10739)] = 366881, + [SMALL_STATE(10740)] = 366888, + [SMALL_STATE(10741)] = 366895, + [SMALL_STATE(10742)] = 366902, + [SMALL_STATE(10743)] = 366909, + [SMALL_STATE(10744)] = 366916, + [SMALL_STATE(10745)] = 366923, + [SMALL_STATE(10746)] = 366930, + [SMALL_STATE(10747)] = 366937, + [SMALL_STATE(10748)] = 366944, + [SMALL_STATE(10749)] = 366951, + [SMALL_STATE(10750)] = 366958, + [SMALL_STATE(10751)] = 366965, + [SMALL_STATE(10752)] = 366972, + [SMALL_STATE(10753)] = 366979, + [SMALL_STATE(10754)] = 366986, + [SMALL_STATE(10755)] = 366993, + [SMALL_STATE(10756)] = 367000, + [SMALL_STATE(10757)] = 367007, + [SMALL_STATE(10758)] = 367014, + [SMALL_STATE(10759)] = 367021, + [SMALL_STATE(10760)] = 367028, + [SMALL_STATE(10761)] = 367035, + [SMALL_STATE(10762)] = 367042, + [SMALL_STATE(10763)] = 367049, + [SMALL_STATE(10764)] = 367056, + [SMALL_STATE(10765)] = 367063, + [SMALL_STATE(10766)] = 367070, + [SMALL_STATE(10767)] = 367077, + [SMALL_STATE(10768)] = 367084, + [SMALL_STATE(10769)] = 367091, + [SMALL_STATE(10770)] = 367098, + [SMALL_STATE(10771)] = 367105, + [SMALL_STATE(10772)] = 367112, + [SMALL_STATE(10773)] = 367119, + [SMALL_STATE(10774)] = 367126, + [SMALL_STATE(10775)] = 367133, + [SMALL_STATE(10776)] = 367140, + [SMALL_STATE(10777)] = 367147, + [SMALL_STATE(10778)] = 367154, + [SMALL_STATE(10779)] = 367161, + [SMALL_STATE(10780)] = 367168, + [SMALL_STATE(10781)] = 367175, + [SMALL_STATE(10782)] = 367182, + [SMALL_STATE(10783)] = 367189, + [SMALL_STATE(10784)] = 367196, + [SMALL_STATE(10785)] = 367203, + [SMALL_STATE(10786)] = 367210, + [SMALL_STATE(10787)] = 367217, + [SMALL_STATE(10788)] = 367224, + [SMALL_STATE(10789)] = 367231, + [SMALL_STATE(10790)] = 367238, + [SMALL_STATE(10791)] = 367245, + [SMALL_STATE(10792)] = 367252, + [SMALL_STATE(10793)] = 367259, + [SMALL_STATE(10794)] = 367266, + [SMALL_STATE(10795)] = 367273, + [SMALL_STATE(10796)] = 367280, + [SMALL_STATE(10797)] = 367287, + [SMALL_STATE(10798)] = 367294, + [SMALL_STATE(10799)] = 367301, + [SMALL_STATE(10800)] = 367308, + [SMALL_STATE(10801)] = 367315, + [SMALL_STATE(10802)] = 367322, + [SMALL_STATE(10803)] = 367329, + [SMALL_STATE(10804)] = 367336, + [SMALL_STATE(10805)] = 367343, + [SMALL_STATE(10806)] = 367350, + [SMALL_STATE(10807)] = 367357, + [SMALL_STATE(10808)] = 367364, + [SMALL_STATE(10809)] = 367371, + [SMALL_STATE(10810)] = 367378, + [SMALL_STATE(10811)] = 367385, + [SMALL_STATE(10812)] = 367392, + [SMALL_STATE(10813)] = 367399, + [SMALL_STATE(10814)] = 367406, + [SMALL_STATE(10815)] = 367413, + [SMALL_STATE(10816)] = 367420, + [SMALL_STATE(10817)] = 367427, + [SMALL_STATE(10818)] = 367434, + [SMALL_STATE(10819)] = 367441, + [SMALL_STATE(10820)] = 367448, + [SMALL_STATE(10821)] = 367455, + [SMALL_STATE(10822)] = 367462, + [SMALL_STATE(10823)] = 367469, + [SMALL_STATE(10824)] = 367476, + [SMALL_STATE(10825)] = 367483, + [SMALL_STATE(10826)] = 367490, + [SMALL_STATE(10827)] = 367497, + [SMALL_STATE(10828)] = 367504, + [SMALL_STATE(10829)] = 367511, + [SMALL_STATE(10830)] = 367518, + [SMALL_STATE(10831)] = 367525, + [SMALL_STATE(10832)] = 367532, + [SMALL_STATE(10833)] = 367539, + [SMALL_STATE(10834)] = 367546, + [SMALL_STATE(10835)] = 367553, + [SMALL_STATE(10836)] = 367560, + [SMALL_STATE(10837)] = 367567, + [SMALL_STATE(10838)] = 367574, + [SMALL_STATE(10839)] = 367581, + [SMALL_STATE(10840)] = 367588, + [SMALL_STATE(10841)] = 367595, + [SMALL_STATE(10842)] = 367602, + [SMALL_STATE(10843)] = 367609, + [SMALL_STATE(10844)] = 367616, + [SMALL_STATE(10845)] = 367623, + [SMALL_STATE(10846)] = 367630, + [SMALL_STATE(10847)] = 367637, + [SMALL_STATE(10848)] = 367644, + [SMALL_STATE(10849)] = 367651, + [SMALL_STATE(10850)] = 367658, + [SMALL_STATE(10851)] = 367665, + [SMALL_STATE(10852)] = 367672, + [SMALL_STATE(10853)] = 367679, + [SMALL_STATE(10854)] = 367686, + [SMALL_STATE(10855)] = 367693, + [SMALL_STATE(10856)] = 367700, + [SMALL_STATE(10857)] = 367707, + [SMALL_STATE(10858)] = 367714, + [SMALL_STATE(10859)] = 367721, + [SMALL_STATE(10860)] = 367728, + [SMALL_STATE(10861)] = 367735, + [SMALL_STATE(10862)] = 367742, + [SMALL_STATE(10863)] = 367749, + [SMALL_STATE(10864)] = 367756, + [SMALL_STATE(10865)] = 367763, + [SMALL_STATE(10866)] = 367770, + [SMALL_STATE(10867)] = 367777, + [SMALL_STATE(10868)] = 367784, + [SMALL_STATE(10869)] = 367791, + [SMALL_STATE(10870)] = 367798, + [SMALL_STATE(10871)] = 367805, + [SMALL_STATE(10872)] = 367812, + [SMALL_STATE(10873)] = 367819, + [SMALL_STATE(10874)] = 367826, + [SMALL_STATE(10875)] = 367833, + [SMALL_STATE(10876)] = 367840, + [SMALL_STATE(10877)] = 367847, + [SMALL_STATE(10878)] = 367854, + [SMALL_STATE(10879)] = 367861, + [SMALL_STATE(10880)] = 367868, + [SMALL_STATE(10881)] = 367875, + [SMALL_STATE(10882)] = 367882, + [SMALL_STATE(10883)] = 367889, + [SMALL_STATE(10884)] = 367896, + [SMALL_STATE(10885)] = 367903, + [SMALL_STATE(10886)] = 367910, + [SMALL_STATE(10887)] = 367917, + [SMALL_STATE(10888)] = 367924, + [SMALL_STATE(10889)] = 367931, + [SMALL_STATE(10890)] = 367938, + [SMALL_STATE(10891)] = 367945, + [SMALL_STATE(10892)] = 367952, + [SMALL_STATE(10893)] = 367959, + [SMALL_STATE(10894)] = 367966, + [SMALL_STATE(10895)] = 367973, + [SMALL_STATE(10896)] = 367980, + [SMALL_STATE(10897)] = 367987, + [SMALL_STATE(10898)] = 367994, + [SMALL_STATE(10899)] = 368001, + [SMALL_STATE(10900)] = 368008, + [SMALL_STATE(10901)] = 368015, + [SMALL_STATE(10902)] = 368022, + [SMALL_STATE(10903)] = 368029, + [SMALL_STATE(10904)] = 368036, + [SMALL_STATE(10905)] = 368043, + [SMALL_STATE(10906)] = 368050, + [SMALL_STATE(10907)] = 368057, + [SMALL_STATE(10908)] = 368064, + [SMALL_STATE(10909)] = 368071, + [SMALL_STATE(10910)] = 368078, + [SMALL_STATE(10911)] = 368085, + [SMALL_STATE(10912)] = 368092, + [SMALL_STATE(10913)] = 368099, + [SMALL_STATE(10914)] = 368106, + [SMALL_STATE(10915)] = 368113, + [SMALL_STATE(10916)] = 368120, + [SMALL_STATE(10917)] = 368127, + [SMALL_STATE(10918)] = 368134, + [SMALL_STATE(10919)] = 368141, + [SMALL_STATE(10920)] = 368148, + [SMALL_STATE(10921)] = 368155, + [SMALL_STATE(10922)] = 368162, + [SMALL_STATE(10923)] = 368169, + [SMALL_STATE(10924)] = 368176, + [SMALL_STATE(10925)] = 368183, + [SMALL_STATE(10926)] = 368190, + [SMALL_STATE(10927)] = 368197, + [SMALL_STATE(10928)] = 368204, + [SMALL_STATE(10929)] = 368211, + [SMALL_STATE(10930)] = 368218, + [SMALL_STATE(10931)] = 368225, + [SMALL_STATE(10932)] = 368232, + [SMALL_STATE(10933)] = 368239, + [SMALL_STATE(10934)] = 368246, + [SMALL_STATE(10935)] = 368253, + [SMALL_STATE(10936)] = 368260, + [SMALL_STATE(10937)] = 368267, + [SMALL_STATE(10938)] = 368274, + [SMALL_STATE(10939)] = 368281, + [SMALL_STATE(10940)] = 368288, + [SMALL_STATE(10941)] = 368295, + [SMALL_STATE(10942)] = 368302, + [SMALL_STATE(10943)] = 368309, + [SMALL_STATE(10944)] = 368316, + [SMALL_STATE(10945)] = 368323, + [SMALL_STATE(10946)] = 368330, + [SMALL_STATE(10947)] = 368337, + [SMALL_STATE(10948)] = 368344, + [SMALL_STATE(10949)] = 368351, + [SMALL_STATE(10950)] = 368358, + [SMALL_STATE(10951)] = 368365, + [SMALL_STATE(10952)] = 368372, + [SMALL_STATE(10953)] = 368379, + [SMALL_STATE(10954)] = 368386, + [SMALL_STATE(10955)] = 368393, + [SMALL_STATE(10956)] = 368400, + [SMALL_STATE(10957)] = 368407, + [SMALL_STATE(10958)] = 368414, + [SMALL_STATE(10959)] = 368421, + [SMALL_STATE(10960)] = 368428, + [SMALL_STATE(10961)] = 368435, + [SMALL_STATE(10962)] = 368442, + [SMALL_STATE(10963)] = 368449, + [SMALL_STATE(10964)] = 368456, + [SMALL_STATE(10965)] = 368463, + [SMALL_STATE(10966)] = 368470, + [SMALL_STATE(10967)] = 368477, + [SMALL_STATE(10968)] = 368484, + [SMALL_STATE(10969)] = 368491, + [SMALL_STATE(10970)] = 368498, + [SMALL_STATE(10971)] = 368505, + [SMALL_STATE(10972)] = 368512, + [SMALL_STATE(10973)] = 368519, + [SMALL_STATE(10974)] = 368526, + [SMALL_STATE(10975)] = 368533, + [SMALL_STATE(10976)] = 368540, + [SMALL_STATE(10977)] = 368547, + [SMALL_STATE(10978)] = 368554, + [SMALL_STATE(10979)] = 368561, + [SMALL_STATE(10980)] = 368568, + [SMALL_STATE(10981)] = 368575, + [SMALL_STATE(10982)] = 368582, + [SMALL_STATE(10983)] = 368589, + [SMALL_STATE(10984)] = 368596, + [SMALL_STATE(10985)] = 368603, + [SMALL_STATE(10986)] = 368610, + [SMALL_STATE(10987)] = 368617, + [SMALL_STATE(10988)] = 368624, + [SMALL_STATE(10989)] = 368631, + [SMALL_STATE(10990)] = 368638, + [SMALL_STATE(10991)] = 368645, + [SMALL_STATE(10992)] = 368652, + [SMALL_STATE(10993)] = 368659, + [SMALL_STATE(10994)] = 368666, + [SMALL_STATE(10995)] = 368673, + [SMALL_STATE(10996)] = 368680, + [SMALL_STATE(10997)] = 368687, + [SMALL_STATE(10998)] = 368694, + [SMALL_STATE(10999)] = 368701, + [SMALL_STATE(11000)] = 368708, + [SMALL_STATE(11001)] = 368715, + [SMALL_STATE(11002)] = 368722, + [SMALL_STATE(11003)] = 368729, + [SMALL_STATE(11004)] = 368736, + [SMALL_STATE(11005)] = 368743, + [SMALL_STATE(11006)] = 368750, + [SMALL_STATE(11007)] = 368757, + [SMALL_STATE(11008)] = 368764, + [SMALL_STATE(11009)] = 368771, + [SMALL_STATE(11010)] = 368778, + [SMALL_STATE(11011)] = 368785, + [SMALL_STATE(11012)] = 368792, + [SMALL_STATE(11013)] = 368799, + [SMALL_STATE(11014)] = 368806, + [SMALL_STATE(11015)] = 368813, + [SMALL_STATE(11016)] = 368820, + [SMALL_STATE(11017)] = 368827, + [SMALL_STATE(11018)] = 368834, + [SMALL_STATE(11019)] = 368841, + [SMALL_STATE(11020)] = 368848, + [SMALL_STATE(11021)] = 368855, + [SMALL_STATE(11022)] = 368862, + [SMALL_STATE(11023)] = 368869, + [SMALL_STATE(11024)] = 368876, + [SMALL_STATE(11025)] = 368883, + [SMALL_STATE(11026)] = 368890, + [SMALL_STATE(11027)] = 368897, + [SMALL_STATE(11028)] = 368904, + [SMALL_STATE(11029)] = 368911, + [SMALL_STATE(11030)] = 368918, + [SMALL_STATE(11031)] = 368925, + [SMALL_STATE(11032)] = 368932, + [SMALL_STATE(11033)] = 368939, + [SMALL_STATE(11034)] = 368946, + [SMALL_STATE(11035)] = 368953, + [SMALL_STATE(11036)] = 368960, + [SMALL_STATE(11037)] = 368967, + [SMALL_STATE(11038)] = 368974, + [SMALL_STATE(11039)] = 368981, + [SMALL_STATE(11040)] = 368988, + [SMALL_STATE(11041)] = 368995, + [SMALL_STATE(11042)] = 369002, + [SMALL_STATE(11043)] = 369009, + [SMALL_STATE(11044)] = 369016, + [SMALL_STATE(11045)] = 369023, + [SMALL_STATE(11046)] = 369030, + [SMALL_STATE(11047)] = 369037, + [SMALL_STATE(11048)] = 369044, + [SMALL_STATE(11049)] = 369051, + [SMALL_STATE(11050)] = 369058, + [SMALL_STATE(11051)] = 369065, + [SMALL_STATE(11052)] = 369072, + [SMALL_STATE(11053)] = 369079, + [SMALL_STATE(11054)] = 369086, + [SMALL_STATE(11055)] = 369093, + [SMALL_STATE(11056)] = 369100, + [SMALL_STATE(11057)] = 369107, + [SMALL_STATE(11058)] = 369114, + [SMALL_STATE(11059)] = 369121, + [SMALL_STATE(11060)] = 369128, + [SMALL_STATE(11061)] = 369135, + [SMALL_STATE(11062)] = 369142, + [SMALL_STATE(11063)] = 369149, + [SMALL_STATE(11064)] = 369156, + [SMALL_STATE(11065)] = 369163, + [SMALL_STATE(11066)] = 369170, + [SMALL_STATE(11067)] = 369177, + [SMALL_STATE(11068)] = 369184, + [SMALL_STATE(11069)] = 369191, + [SMALL_STATE(11070)] = 369198, + [SMALL_STATE(11071)] = 369205, + [SMALL_STATE(11072)] = 369212, + [SMALL_STATE(11073)] = 369219, + [SMALL_STATE(11074)] = 369226, + [SMALL_STATE(11075)] = 369233, + [SMALL_STATE(11076)] = 369240, + [SMALL_STATE(11077)] = 369247, + [SMALL_STATE(11078)] = 369254, + [SMALL_STATE(11079)] = 369261, + [SMALL_STATE(11080)] = 369268, + [SMALL_STATE(11081)] = 369275, + [SMALL_STATE(11082)] = 369282, + [SMALL_STATE(11083)] = 369289, + [SMALL_STATE(11084)] = 369296, + [SMALL_STATE(11085)] = 369303, + [SMALL_STATE(11086)] = 369310, + [SMALL_STATE(11087)] = 369317, + [SMALL_STATE(11088)] = 369324, + [SMALL_STATE(11089)] = 369331, + [SMALL_STATE(11090)] = 369338, + [SMALL_STATE(11091)] = 369345, + [SMALL_STATE(11092)] = 369352, + [SMALL_STATE(11093)] = 369359, + [SMALL_STATE(11094)] = 369366, + [SMALL_STATE(11095)] = 369373, + [SMALL_STATE(11096)] = 369380, + [SMALL_STATE(11097)] = 369387, + [SMALL_STATE(11098)] = 369394, + [SMALL_STATE(11099)] = 369401, + [SMALL_STATE(11100)] = 369408, + [SMALL_STATE(11101)] = 369415, + [SMALL_STATE(11102)] = 369422, + [SMALL_STATE(11103)] = 369429, + [SMALL_STATE(11104)] = 369436, + [SMALL_STATE(11105)] = 369443, + [SMALL_STATE(11106)] = 369450, + [SMALL_STATE(11107)] = 369457, + [SMALL_STATE(11108)] = 369464, + [SMALL_STATE(11109)] = 369471, + [SMALL_STATE(11110)] = 369478, + [SMALL_STATE(11111)] = 369485, + [SMALL_STATE(11112)] = 369492, + [SMALL_STATE(11113)] = 369499, + [SMALL_STATE(11114)] = 369506, + [SMALL_STATE(11115)] = 369513, + [SMALL_STATE(11116)] = 369520, + [SMALL_STATE(11117)] = 369527, + [SMALL_STATE(11118)] = 369534, + [SMALL_STATE(11119)] = 369541, + [SMALL_STATE(11120)] = 369548, + [SMALL_STATE(11121)] = 369555, + [SMALL_STATE(11122)] = 369562, + [SMALL_STATE(11123)] = 369569, + [SMALL_STATE(11124)] = 369576, + [SMALL_STATE(11125)] = 369583, + [SMALL_STATE(11126)] = 369590, + [SMALL_STATE(11127)] = 369597, + [SMALL_STATE(11128)] = 369604, + [SMALL_STATE(11129)] = 369611, + [SMALL_STATE(11130)] = 369618, + [SMALL_STATE(11131)] = 369625, + [SMALL_STATE(11132)] = 369632, + [SMALL_STATE(11133)] = 369639, + [SMALL_STATE(11134)] = 369646, + [SMALL_STATE(11135)] = 369653, + [SMALL_STATE(11136)] = 369660, + [SMALL_STATE(11137)] = 369667, + [SMALL_STATE(11138)] = 369674, + [SMALL_STATE(11139)] = 369681, + [SMALL_STATE(11140)] = 369688, + [SMALL_STATE(11141)] = 369695, + [SMALL_STATE(11142)] = 369702, + [SMALL_STATE(11143)] = 369709, + [SMALL_STATE(11144)] = 369716, + [SMALL_STATE(11145)] = 369723, + [SMALL_STATE(11146)] = 369730, + [SMALL_STATE(11147)] = 369737, + [SMALL_STATE(11148)] = 369744, + [SMALL_STATE(11149)] = 369751, + [SMALL_STATE(11150)] = 369758, + [SMALL_STATE(11151)] = 369765, + [SMALL_STATE(11152)] = 369772, + [SMALL_STATE(11153)] = 369779, + [SMALL_STATE(11154)] = 369786, + [SMALL_STATE(11155)] = 369793, + [SMALL_STATE(11156)] = 369800, + [SMALL_STATE(11157)] = 369807, + [SMALL_STATE(11158)] = 369814, + [SMALL_STATE(11159)] = 369821, + [SMALL_STATE(11160)] = 369828, + [SMALL_STATE(11161)] = 369835, + [SMALL_STATE(11162)] = 369842, + [SMALL_STATE(11163)] = 369849, + [SMALL_STATE(11164)] = 369856, + [SMALL_STATE(11165)] = 369863, + [SMALL_STATE(11166)] = 369870, + [SMALL_STATE(11167)] = 369877, + [SMALL_STATE(11168)] = 369884, + [SMALL_STATE(11169)] = 369891, + [SMALL_STATE(11170)] = 369898, + [SMALL_STATE(11171)] = 369905, + [SMALL_STATE(11172)] = 369912, + [SMALL_STATE(11173)] = 369919, + [SMALL_STATE(11174)] = 369926, + [SMALL_STATE(11175)] = 369933, + [SMALL_STATE(11176)] = 369940, + [SMALL_STATE(11177)] = 369947, + [SMALL_STATE(11178)] = 369954, + [SMALL_STATE(11179)] = 369961, + [SMALL_STATE(11180)] = 369968, + [SMALL_STATE(11181)] = 369975, + [SMALL_STATE(11182)] = 369982, + [SMALL_STATE(11183)] = 369989, + [SMALL_STATE(11184)] = 369996, + [SMALL_STATE(11185)] = 370003, + [SMALL_STATE(11186)] = 370010, + [SMALL_STATE(11187)] = 370017, + [SMALL_STATE(11188)] = 370024, + [SMALL_STATE(11189)] = 370031, + [SMALL_STATE(11190)] = 370038, + [SMALL_STATE(11191)] = 370045, + [SMALL_STATE(11192)] = 370052, + [SMALL_STATE(11193)] = 370059, + [SMALL_STATE(11194)] = 370066, + [SMALL_STATE(11195)] = 370073, + [SMALL_STATE(11196)] = 370080, + [SMALL_STATE(11197)] = 370087, + [SMALL_STATE(11198)] = 370094, + [SMALL_STATE(11199)] = 370101, + [SMALL_STATE(11200)] = 370108, + [SMALL_STATE(11201)] = 370115, + [SMALL_STATE(11202)] = 370122, + [SMALL_STATE(11203)] = 370129, + [SMALL_STATE(11204)] = 370136, + [SMALL_STATE(11205)] = 370143, + [SMALL_STATE(11206)] = 370150, + [SMALL_STATE(11207)] = 370157, + [SMALL_STATE(11208)] = 370164, + [SMALL_STATE(11209)] = 370171, + [SMALL_STATE(11210)] = 370178, + [SMALL_STATE(11211)] = 370185, + [SMALL_STATE(11212)] = 370192, + [SMALL_STATE(11213)] = 370199, + [SMALL_STATE(11214)] = 370206, + [SMALL_STATE(11215)] = 370213, + [SMALL_STATE(11216)] = 370220, + [SMALL_STATE(11217)] = 370227, + [SMALL_STATE(11218)] = 370234, + [SMALL_STATE(11219)] = 370241, + [SMALL_STATE(11220)] = 370248, + [SMALL_STATE(11221)] = 370255, + [SMALL_STATE(11222)] = 370262, + [SMALL_STATE(11223)] = 370269, + [SMALL_STATE(11224)] = 370276, + [SMALL_STATE(11225)] = 370283, + [SMALL_STATE(11226)] = 370290, + [SMALL_STATE(11227)] = 370297, + [SMALL_STATE(11228)] = 370304, + [SMALL_STATE(11229)] = 370311, + [SMALL_STATE(11230)] = 370318, + [SMALL_STATE(11231)] = 370325, + [SMALL_STATE(11232)] = 370332, + [SMALL_STATE(11233)] = 370339, + [SMALL_STATE(11234)] = 370346, + [SMALL_STATE(11235)] = 370353, + [SMALL_STATE(11236)] = 370360, + [SMALL_STATE(11237)] = 370367, + [SMALL_STATE(11238)] = 370374, + [SMALL_STATE(11239)] = 370381, + [SMALL_STATE(11240)] = 370388, + [SMALL_STATE(11241)] = 370395, + [SMALL_STATE(11242)] = 370402, + [SMALL_STATE(11243)] = 370409, + [SMALL_STATE(11244)] = 370416, + [SMALL_STATE(11245)] = 370423, + [SMALL_STATE(11246)] = 370430, + [SMALL_STATE(11247)] = 370437, + [SMALL_STATE(11248)] = 370444, + [SMALL_STATE(11249)] = 370451, + [SMALL_STATE(11250)] = 370458, + [SMALL_STATE(11251)] = 370465, + [SMALL_STATE(11252)] = 370472, + [SMALL_STATE(11253)] = 370479, + [SMALL_STATE(11254)] = 370486, + [SMALL_STATE(11255)] = 370493, + [SMALL_STATE(11256)] = 370500, + [SMALL_STATE(11257)] = 370507, + [SMALL_STATE(11258)] = 370514, + [SMALL_STATE(11259)] = 370521, + [SMALL_STATE(11260)] = 370528, + [SMALL_STATE(11261)] = 370535, + [SMALL_STATE(11262)] = 370542, + [SMALL_STATE(11263)] = 370549, + [SMALL_STATE(11264)] = 370556, + [SMALL_STATE(11265)] = 370563, + [SMALL_STATE(11266)] = 370570, + [SMALL_STATE(11267)] = 370577, + [SMALL_STATE(11268)] = 370584, + [SMALL_STATE(11269)] = 370591, + [SMALL_STATE(11270)] = 370598, + [SMALL_STATE(11271)] = 370605, + [SMALL_STATE(11272)] = 370612, + [SMALL_STATE(11273)] = 370619, + [SMALL_STATE(11274)] = 370626, + [SMALL_STATE(11275)] = 370633, + [SMALL_STATE(11276)] = 370640, + [SMALL_STATE(11277)] = 370647, + [SMALL_STATE(11278)] = 370654, + [SMALL_STATE(11279)] = 370661, + [SMALL_STATE(11280)] = 370668, + [SMALL_STATE(11281)] = 370675, + [SMALL_STATE(11282)] = 370682, + [SMALL_STATE(11283)] = 370689, + [SMALL_STATE(11284)] = 370696, + [SMALL_STATE(11285)] = 370703, + [SMALL_STATE(11286)] = 370710, + [SMALL_STATE(11287)] = 370717, + [SMALL_STATE(11288)] = 370724, + [SMALL_STATE(11289)] = 370731, + [SMALL_STATE(11290)] = 370738, + [SMALL_STATE(11291)] = 370745, + [SMALL_STATE(11292)] = 370752, + [SMALL_STATE(11293)] = 370759, + [SMALL_STATE(11294)] = 370766, + [SMALL_STATE(11295)] = 370773, + [SMALL_STATE(11296)] = 370780, + [SMALL_STATE(11297)] = 370787, + [SMALL_STATE(11298)] = 370794, + [SMALL_STATE(11299)] = 370801, + [SMALL_STATE(11300)] = 370808, + [SMALL_STATE(11301)] = 370815, + [SMALL_STATE(11302)] = 370822, + [SMALL_STATE(11303)] = 370829, + [SMALL_STATE(11304)] = 370836, + [SMALL_STATE(11305)] = 370843, + [SMALL_STATE(11306)] = 370850, + [SMALL_STATE(11307)] = 370857, + [SMALL_STATE(11308)] = 370864, + [SMALL_STATE(11309)] = 370871, + [SMALL_STATE(11310)] = 370878, + [SMALL_STATE(11311)] = 370885, + [SMALL_STATE(11312)] = 370892, + [SMALL_STATE(11313)] = 370899, + [SMALL_STATE(11314)] = 370906, + [SMALL_STATE(11315)] = 370913, + [SMALL_STATE(11316)] = 370920, + [SMALL_STATE(11317)] = 370927, + [SMALL_STATE(11318)] = 370934, + [SMALL_STATE(11319)] = 370941, + [SMALL_STATE(11320)] = 370948, + [SMALL_STATE(11321)] = 370955, + [SMALL_STATE(11322)] = 370962, + [SMALL_STATE(11323)] = 370969, + [SMALL_STATE(11324)] = 370976, + [SMALL_STATE(11325)] = 370983, + [SMALL_STATE(11326)] = 370990, + [SMALL_STATE(11327)] = 370997, + [SMALL_STATE(11328)] = 371004, + [SMALL_STATE(11329)] = 371011, + [SMALL_STATE(11330)] = 371018, + [SMALL_STATE(11331)] = 371025, + [SMALL_STATE(11332)] = 371032, + [SMALL_STATE(11333)] = 371039, + [SMALL_STATE(11334)] = 371046, + [SMALL_STATE(11335)] = 371053, + [SMALL_STATE(11336)] = 371060, + [SMALL_STATE(11337)] = 371067, + [SMALL_STATE(11338)] = 371074, + [SMALL_STATE(11339)] = 371081, + [SMALL_STATE(11340)] = 371088, + [SMALL_STATE(11341)] = 371095, + [SMALL_STATE(11342)] = 371102, + [SMALL_STATE(11343)] = 371109, + [SMALL_STATE(11344)] = 371116, + [SMALL_STATE(11345)] = 371123, + [SMALL_STATE(11346)] = 371130, + [SMALL_STATE(11347)] = 371137, + [SMALL_STATE(11348)] = 371144, + [SMALL_STATE(11349)] = 371151, + [SMALL_STATE(11350)] = 371158, + [SMALL_STATE(11351)] = 371165, + [SMALL_STATE(11352)] = 371172, + [SMALL_STATE(11353)] = 371179, + [SMALL_STATE(11354)] = 371186, + [SMALL_STATE(11355)] = 371193, + [SMALL_STATE(11356)] = 371200, + [SMALL_STATE(11357)] = 371207, + [SMALL_STATE(11358)] = 371214, + [SMALL_STATE(11359)] = 371221, + [SMALL_STATE(11360)] = 371228, + [SMALL_STATE(11361)] = 371235, + [SMALL_STATE(11362)] = 371242, + [SMALL_STATE(11363)] = 371249, + [SMALL_STATE(11364)] = 371256, + [SMALL_STATE(11365)] = 371263, + [SMALL_STATE(11366)] = 371270, + [SMALL_STATE(11367)] = 371277, + [SMALL_STATE(11368)] = 371284, + [SMALL_STATE(11369)] = 371291, + [SMALL_STATE(11370)] = 371298, + [SMALL_STATE(11371)] = 371305, + [SMALL_STATE(11372)] = 371312, + [SMALL_STATE(11373)] = 371319, + [SMALL_STATE(11374)] = 371326, + [SMALL_STATE(11375)] = 371333, + [SMALL_STATE(11376)] = 371340, + [SMALL_STATE(11377)] = 371347, + [SMALL_STATE(11378)] = 371354, + [SMALL_STATE(11379)] = 371361, + [SMALL_STATE(11380)] = 371368, + [SMALL_STATE(11381)] = 371375, + [SMALL_STATE(11382)] = 371382, + [SMALL_STATE(11383)] = 371389, + [SMALL_STATE(11384)] = 371396, + [SMALL_STATE(11385)] = 371403, + [SMALL_STATE(11386)] = 371410, + [SMALL_STATE(11387)] = 371417, + [SMALL_STATE(11388)] = 371424, + [SMALL_STATE(11389)] = 371431, + [SMALL_STATE(11390)] = 371438, + [SMALL_STATE(11391)] = 371445, + [SMALL_STATE(11392)] = 371452, + [SMALL_STATE(11393)] = 371459, + [SMALL_STATE(11394)] = 371466, + [SMALL_STATE(11395)] = 371473, + [SMALL_STATE(11396)] = 371480, + [SMALL_STATE(11397)] = 371487, + [SMALL_STATE(11398)] = 371494, + [SMALL_STATE(11399)] = 371501, + [SMALL_STATE(11400)] = 371508, + [SMALL_STATE(11401)] = 371515, + [SMALL_STATE(11402)] = 371522, + [SMALL_STATE(11403)] = 371529, + [SMALL_STATE(11404)] = 371536, + [SMALL_STATE(11405)] = 371543, + [SMALL_STATE(11406)] = 371550, + [SMALL_STATE(11407)] = 371557, + [SMALL_STATE(11408)] = 371564, + [SMALL_STATE(11409)] = 371571, + [SMALL_STATE(11410)] = 371578, + [SMALL_STATE(11411)] = 371585, + [SMALL_STATE(11412)] = 371592, + [SMALL_STATE(11413)] = 371599, + [SMALL_STATE(11414)] = 371606, + [SMALL_STATE(11415)] = 371613, + [SMALL_STATE(11416)] = 371620, + [SMALL_STATE(11417)] = 371627, + [SMALL_STATE(11418)] = 371634, + [SMALL_STATE(11419)] = 371641, + [SMALL_STATE(11420)] = 371648, + [SMALL_STATE(11421)] = 371655, + [SMALL_STATE(11422)] = 371662, + [SMALL_STATE(11423)] = 371669, + [SMALL_STATE(11424)] = 371676, + [SMALL_STATE(11425)] = 371683, + [SMALL_STATE(11426)] = 371690, + [SMALL_STATE(11427)] = 371697, + [SMALL_STATE(11428)] = 371704, + [SMALL_STATE(11429)] = 371711, + [SMALL_STATE(11430)] = 371718, + [SMALL_STATE(11431)] = 371725, + [SMALL_STATE(11432)] = 371732, + [SMALL_STATE(11433)] = 371739, + [SMALL_STATE(11434)] = 371746, + [SMALL_STATE(11435)] = 371753, + [SMALL_STATE(11436)] = 371760, + [SMALL_STATE(11437)] = 371767, + [SMALL_STATE(11438)] = 371774, + [SMALL_STATE(11439)] = 371781, + [SMALL_STATE(11440)] = 371788, + [SMALL_STATE(11441)] = 371795, + [SMALL_STATE(11442)] = 371802, + [SMALL_STATE(11443)] = 371809, + [SMALL_STATE(11444)] = 371816, + [SMALL_STATE(11445)] = 371823, + [SMALL_STATE(11446)] = 371830, + [SMALL_STATE(11447)] = 371837, + [SMALL_STATE(11448)] = 371844, + [SMALL_STATE(11449)] = 371851, + [SMALL_STATE(11450)] = 371858, + [SMALL_STATE(11451)] = 371865, + [SMALL_STATE(11452)] = 371872, + [SMALL_STATE(11453)] = 371879, + [SMALL_STATE(11454)] = 371886, + [SMALL_STATE(11455)] = 371893, + [SMALL_STATE(11456)] = 371900, + [SMALL_STATE(11457)] = 371907, + [SMALL_STATE(11458)] = 371914, + [SMALL_STATE(11459)] = 371921, + [SMALL_STATE(11460)] = 371928, + [SMALL_STATE(11461)] = 371935, + [SMALL_STATE(11462)] = 371942, + [SMALL_STATE(11463)] = 371949, + [SMALL_STATE(11464)] = 371956, + [SMALL_STATE(11465)] = 371963, + [SMALL_STATE(11466)] = 371970, + [SMALL_STATE(11467)] = 371977, + [SMALL_STATE(11468)] = 371984, + [SMALL_STATE(11469)] = 371991, + [SMALL_STATE(11470)] = 371998, + [SMALL_STATE(11471)] = 372005, + [SMALL_STATE(11472)] = 372012, + [SMALL_STATE(11473)] = 372019, + [SMALL_STATE(11474)] = 372026, + [SMALL_STATE(11475)] = 372033, + [SMALL_STATE(11476)] = 372040, + [SMALL_STATE(11477)] = 372047, + [SMALL_STATE(11478)] = 372054, + [SMALL_STATE(11479)] = 372061, + [SMALL_STATE(11480)] = 372068, + [SMALL_STATE(11481)] = 372075, + [SMALL_STATE(11482)] = 372082, + [SMALL_STATE(11483)] = 372089, + [SMALL_STATE(11484)] = 372096, + [SMALL_STATE(11485)] = 372103, + [SMALL_STATE(11486)] = 372110, + [SMALL_STATE(11487)] = 372117, + [SMALL_STATE(11488)] = 372124, + [SMALL_STATE(11489)] = 372131, + [SMALL_STATE(11490)] = 372138, + [SMALL_STATE(11491)] = 372145, + [SMALL_STATE(11492)] = 372152, + [SMALL_STATE(11493)] = 372159, + [SMALL_STATE(11494)] = 372166, + [SMALL_STATE(11495)] = 372173, + [SMALL_STATE(11496)] = 372180, + [SMALL_STATE(11497)] = 372187, + [SMALL_STATE(11498)] = 372194, + [SMALL_STATE(11499)] = 372201, + [SMALL_STATE(11500)] = 372208, + [SMALL_STATE(11501)] = 372215, + [SMALL_STATE(11502)] = 372222, + [SMALL_STATE(11503)] = 372229, + [SMALL_STATE(11504)] = 372236, + [SMALL_STATE(11505)] = 372243, + [SMALL_STATE(11506)] = 372250, + [SMALL_STATE(11507)] = 372257, + [SMALL_STATE(11508)] = 372264, + [SMALL_STATE(11509)] = 372271, + [SMALL_STATE(11510)] = 372278, + [SMALL_STATE(11511)] = 372285, + [SMALL_STATE(11512)] = 372292, + [SMALL_STATE(11513)] = 372299, + [SMALL_STATE(11514)] = 372306, + [SMALL_STATE(11515)] = 372313, + [SMALL_STATE(11516)] = 372320, + [SMALL_STATE(11517)] = 372327, + [SMALL_STATE(11518)] = 372334, + [SMALL_STATE(11519)] = 372341, + [SMALL_STATE(11520)] = 372348, + [SMALL_STATE(11521)] = 372355, + [SMALL_STATE(11522)] = 372362, + [SMALL_STATE(11523)] = 372369, + [SMALL_STATE(11524)] = 372376, + [SMALL_STATE(11525)] = 372383, + [SMALL_STATE(11526)] = 372390, + [SMALL_STATE(11527)] = 372397, + [SMALL_STATE(11528)] = 372404, + [SMALL_STATE(11529)] = 372411, + [SMALL_STATE(11530)] = 372418, + [SMALL_STATE(11531)] = 372425, + [SMALL_STATE(11532)] = 372432, + [SMALL_STATE(11533)] = 372439, + [SMALL_STATE(11534)] = 372446, + [SMALL_STATE(11535)] = 372453, + [SMALL_STATE(11536)] = 372460, + [SMALL_STATE(11537)] = 372467, + [SMALL_STATE(11538)] = 372474, + [SMALL_STATE(11539)] = 372481, + [SMALL_STATE(11540)] = 372488, + [SMALL_STATE(11541)] = 372495, + [SMALL_STATE(11542)] = 372502, + [SMALL_STATE(11543)] = 372509, + [SMALL_STATE(11544)] = 372516, + [SMALL_STATE(11545)] = 372523, + [SMALL_STATE(11546)] = 372530, + [SMALL_STATE(11547)] = 372537, + [SMALL_STATE(11548)] = 372544, + [SMALL_STATE(11549)] = 372551, + [SMALL_STATE(11550)] = 372558, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -547687,7039 +740984,8657 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8716), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8950), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8502), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8576), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8938), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8746), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8904), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8606), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8902), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8669), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8945), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 82), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 82), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6846), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8604), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8606), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8124), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5361), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7906), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3085), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6401), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5160), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7757), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1483), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8432), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7997), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8902), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8337), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8669), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7899), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8945), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8683), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6987), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7224), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6802), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6837), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8176), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5873), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8716), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7812), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5361), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6734), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7906), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3013), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6401), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5160), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7761), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7897), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8593), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8997), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8213), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8950), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8286), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8683), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6987), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4884), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7224), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7242), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6684), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8026), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6833), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8502), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8576), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6835), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8314), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8217), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7826), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6637), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3090), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8702), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7889), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8986), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8466), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8227), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7945), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8341), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7937), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6827), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9009), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9001), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8702), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8986), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8341), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6819), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8334), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5941), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8336), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8107), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6634), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7995), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8361), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7879), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8561), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8938), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8384), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8054), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8000), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6799), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8903), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8904), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7495), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5883), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6401), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5160), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7757), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7997), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8902), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8337), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8669), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7899), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8945), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8683), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6987), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7224), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8143), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7761), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7897), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8997), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8213), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8950), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8286), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8025), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8197), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8026), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(893), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7995), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7879), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8561), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8938), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8384), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8054), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8000), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7889), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8986), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8466), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8479), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8227), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7945), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8341), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7937), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7936), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8712), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(959), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7552), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7972), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7936), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8999), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8712), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8721), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8320), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7976), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8224), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7999), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8751), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8920), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8564), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9050), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8805), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9059), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9084), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8752), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2229), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(154), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1510), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1510), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1238), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(665), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1246), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6743), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7495), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(41), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5883), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7316), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7476), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7995), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1450), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8361), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7879), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(220), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8561), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1047), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8856), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8938), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8384), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8054), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8581), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1344), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1189), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8649), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8683), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8182), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6987), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4314), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7589), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7224), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3996), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3935), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8246), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8143), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8000), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1296), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1160), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1161), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1451), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7922), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1249), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5130), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5504), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2207), - [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(286), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(52), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7757), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7887), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1483), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8432), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7997), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(222), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8902), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1033), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8331), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8337), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8669), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7899), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8945), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7891), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1187), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1188), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1476), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), - [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2217), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(365), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7761), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7897), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1233), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8593), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8058), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(184), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8997), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1052), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8213), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8950), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8286), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8025), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8197), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8026), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1128), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1130), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1381), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2211), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(669), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(63), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7497), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7935), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1491), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8702), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7889), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(175), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8986), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1049), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8466), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8479), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8227), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7945), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8341), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7937), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1198), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1199), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1484), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2206), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7411), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1475), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8243), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7807), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8751), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8053), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2218), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(959), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(68), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7552), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7972), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7936), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(221), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8999), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1053), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8712), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8721), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8320), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7976), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8224), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7999), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1205), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1206), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1492), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7912), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8826), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9062), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9085), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2126), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(154), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1510), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1238), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1238), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1246), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6743), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5883), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7316), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8246), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8143), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8013), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 107), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 107), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 171), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 171), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 118), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 118), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 121), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 121), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 138), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 138), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 89), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 89), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 156), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 156), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 157), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 157), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 161), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 161), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 162), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 162), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 69), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 69), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 178), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 178), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 55), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 55), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 138), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 138), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 190), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 190), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 207), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 207), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 89), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 89), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 9), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 9), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 108), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 108), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 61), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 61), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 60), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 60), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8709), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8783), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8807), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 70), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 70), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 119), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 119), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2126), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1246), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(6743), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7316), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8246), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8143), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 63), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 63), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 72), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 72), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 79), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 79), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 123), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 123), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 132), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 132), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 133), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 133), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 82), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 82), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 79), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 79), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 139), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 139), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 140), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 140), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 80), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 80), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 146), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 146), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 147), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 147), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 81), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 81), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 82), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 82), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 83), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 83), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 82), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 82), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 96), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 96), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 181), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 181), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 97), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 97), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2126), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1246), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(6743), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7316), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8246), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8143), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 186), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 186), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2126), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1246), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(6743), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7316), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8246), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8143), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 188), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 188), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 60), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 60), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8081), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 220), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 220), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 9), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 9), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7953), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2226), - [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1293), - [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6752), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7281), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 111), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 111), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 48), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 48), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 112), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 112), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 113), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 113), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 57), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 57), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 58), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 58), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 167), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 167), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 111), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 111), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 48), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 48), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 112), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 112), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 113), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 113), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 167), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 167), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 57), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 57), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 58), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 58), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8383), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8666), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7932), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4861), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8251), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2945), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5361), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5361), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), - [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6649), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5643), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7550), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7906), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8709), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6412), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5173), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5156), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5174), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), - [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8330), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), - [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8191), - [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7280), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9017), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8662), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9000), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [3685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8446), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), - [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8863), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8065), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), - [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6657), - [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7299), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9024), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8863), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9024), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5903), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8662), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7983), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6628), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3060), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9000), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2221), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1419), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6783), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7243), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2268), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1313), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6741), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7192), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9013), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8607), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4163] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(295), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [4191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8974), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(140), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1269), - [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1360), - [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1360), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5883), - [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8012), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1692), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(165), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1333), - [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1361), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6778), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2284), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(167), - [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1558), - [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1558), - [4262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1544), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6779), - [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1559), - [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1179), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8649), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8683), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8182), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6987), - [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4314), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7589), - [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7224), - [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3996), - [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3935), - [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1560), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7922), - [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1561), - [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5069), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5504), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(397), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2704), - [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5883), - [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7316), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8683), - [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), - [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6987), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), - [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7224), - [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8246), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6771), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8143), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), - [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), - [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8440), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8729), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8733), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8574), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8711), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8736), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8900), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8617), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8602), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8626), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8399), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8382), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8460), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8554), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 109), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 82), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 200), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8180), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 109), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8940), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8221), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8306), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8693), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8518), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8730), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8207), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8226), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8245), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8264), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8280), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8401), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8402), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8492), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8192), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8201), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8218), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8220), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8380), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8499), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8322), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8256), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8252), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8377), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8292), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8536), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8786), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8912), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), REDUCE(sym_qualified_type_identifier, 2, 0, 35), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), REDUCE(sym_qualified_type_identifier, 2, 0, 35), - [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), SHIFT(363), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), - [5028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), - [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), SHIFT(303), - [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(303), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [5076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(384), - [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(394), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(337), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), - [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8861), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8861), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [5134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2361), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2344), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 56), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 56), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 184), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 184), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 130), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 130), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 68), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 68), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 75), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 75), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 76), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 76), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8845), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [5243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8845), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8884), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8884), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8879), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(389), - [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), - [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8879), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8782), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8028), - [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7149), - [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8153), - [5441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 155), - [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 155), - [5445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [5464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8804), - [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 221), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 221), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), SHIFT(384), - [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [5497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 59), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 59), - [5501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8557), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8750), - [5523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 59), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 59), - [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 69), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 69), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 70), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 70), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 69), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 69), - [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 82), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 82), - [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 83), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 83), - [5551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 69), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 69), - [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), - [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 193), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 193), - [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), - [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 82), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 82), - [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 206), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 206), - [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 69), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 69), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 212), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 212), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 213), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 213), - [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 193), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 193), - [5603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), - [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 206), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 206), - [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 222), - [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 222), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 212), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 212), - [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 213), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 213), - [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 222), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 222), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [5637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8038), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), - [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(420), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), SHIFT(407), - [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7985), - [5657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [5665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(389), - [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), - [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8824), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), - [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), SHIFT(389), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 105), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 105), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 9), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 9), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), - [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 124), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 124), - [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 151), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 151), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8782), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 182), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 182), - [5765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3782), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), - [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 152), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 152), - [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 98), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 98), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 103), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 103), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 101), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 101), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 153), - [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 153), - [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 106), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 106), - [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 90), - [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 90), - [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3766), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(363), - [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7222), - [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), - [6015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 78), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 78), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 78), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 78), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [6088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [6090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(412), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), - [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8871), - [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8043), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8573), - [6127] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6189), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7314), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8152), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(6189), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), - [6183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(407), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), - [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7207), - [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 102), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 102), - [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 56), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 56), - [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 65), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 65), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 93), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 93), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [6269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 106), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 106), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 175), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 175), - [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 9), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 9), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 73), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 73), - [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 73), SHIFT(389), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8871), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 152), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 152), - [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 98), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 98), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 126), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 1, 126), - [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 126), SHIFT(389), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 103), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 103), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 151), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 151), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 125), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 125), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2665), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1683), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8763), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2331), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 175), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 175), - [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 87), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 87), - [6455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2692), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1683), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8763), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), - [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), - [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7202), - [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8160), - [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 56), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 56), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 77), - [6499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), SHIFT(389), - [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 218), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 218), - [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 230), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 230), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 74), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 74), - [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 74), SHIFT(389), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [6545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), - [6549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), - [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), - [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [6557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), - [6561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), - [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), - [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [6575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [6579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 163), - [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 163), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), - [6589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8844), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [6613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), - [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), - [6621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 176), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 176), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [6639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), - [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 56), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 56), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), - [6659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 226), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 226), - [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 64), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 64), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [6673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), - [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 92), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 92), - [6697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 87), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 87), - [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), - [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 110), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 110), - [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 201), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 201), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 189), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 189), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(384), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8803), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3059), - [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), - [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), - [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8557), - [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8559), - [6786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8750), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1043), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), - [6821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), - [6824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8150), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(407), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2656), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [6907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 67), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 67), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8860), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [6935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [6937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(412), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 127), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 127), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 183), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 183), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [7000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), - [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8749), - [7068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8749), - [7071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7587), - [7074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6017), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), - [7093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5603), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7755), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), - [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6973), - [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6973), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5598), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8749), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8590), - [7421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8590), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5617), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6281), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5593), - [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [7447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5641), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 114), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [7508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7637), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [7559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), SHIFT(363), - [7562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 126), SHIFT(384), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [7573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), SHIFT(303), - [7576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 73), SHIFT(384), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5644), - [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), - [7599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [7606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [7611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1037), - [7614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), - [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7220), - [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8164), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [7661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), SHIFT(384), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 145), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), - [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3793), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 126), SHIFT(407), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [7862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), - [7865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [7868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7550), - [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [7877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [7882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 73), SHIFT(407), - [7885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 74), SHIFT(384), - [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3059), - [7895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), - [7898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), - [7901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8557), - [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [7907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8559), - [7910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8750), - [7913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4233), - [7916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 77), SHIFT(407), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7198), - [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [7964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 74), SHIFT(403), - [7967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(420), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 74), SHIFT(407), - [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5584), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), - [8036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8872), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [8087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(337), - [8090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8847), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [8189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), - [8224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), - [8242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8825), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 59), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 35), SHIFT(394), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [8382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4131), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [8387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8825), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [8410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4131), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [8415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8825), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4342), - [8475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8560), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [8532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 150), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 150), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [8542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [8603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [8609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4563), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [8614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8887), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [8627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4563), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [8632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8887), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4284), - [8651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), - [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8265), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8763), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [8678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [8680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [8683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [8690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), - [8693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [8742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1731), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [8747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8782), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), - [8766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), - [8768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1731), - [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8782), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [8780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 120), - [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 195), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [8880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4485), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), SHIFT(1210), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1210), - [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 85), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [8919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8749), - [8922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8749), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2397), - [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8871), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [8963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2397), - [8966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8871), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 85), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 149), - [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 206), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 170), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 191), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), - [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), - [9105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), - [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 214), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 56), - [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 56), - [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 86), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8749), - [9186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8749), - [9189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7587), - [9192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [9194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6017), - [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5603), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [9348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 198), - [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 215), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [9370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7755), - [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6973), - [9376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6973), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [9385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5598), - [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), - [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [9401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8590), - [9408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8590), - [9411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5617), - [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6281), - [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5641), - [9420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5593), - [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [9425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8749), - [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8749), - [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7587), - [9434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [9436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6017), - [9439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5603), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [9444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5644), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7755), - [9450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6973), - [9453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6973), - [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5598), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8587), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5295), - [9474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5297), - [9477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5291), - [9480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5284), - [9483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5285), - [9486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5282), - [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8754), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8590), - [9514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8590), - [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5584), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5617), - [9539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6281), - [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5641), - [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8785), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), - [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5593), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [9662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5405), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5644), - [9708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1040), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [9715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(2193), - [9718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(2193), - [9721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(5318), - [9724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 78), SHIFT(5319), - [9727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(2193), - [9730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(5280), - [9733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(5281), - [9736] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(2193), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [9746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(2193), - [9749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 78), SHIFT(2193), - [9752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(2193), - [9755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(2193), - [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5584), - [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8749), - [9766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8749), - [9769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7587), - [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [9774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6017), - [9777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5603), - [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [9792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7755), - [9799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6973), - [9802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6973), - [9805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5598), - [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6281), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5641), - [9814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8590), - [9817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8590), - [9820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(5348), - [9823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5617), - [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5593), - [9829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5644), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [9882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5584), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [9901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [9905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [9941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [10021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [10023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6017), - [10028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5598), - [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [10043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [10047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [10053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [10055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6017), - [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5598), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [10087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), - [10177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), - [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [10181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [10187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [10197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [10199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6017), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [10218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5603), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [10223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), - [10225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), - [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [10229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5603), - [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), - [10238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), - [10240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [10242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 56), - [10282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 56), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5617), - [10339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5617), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), - [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), - [10378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), - [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [10392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [10403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [10405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [10453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [10513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [10593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [10595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [10619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [10625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), - [10631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [10633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), - [10641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), - [10645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), - [10647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [10655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [10659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [10661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7393), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [10674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), - [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [10682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [10684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [10688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [10692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [10694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), - [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 60), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [10706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), - [10718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), - [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [10722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 60), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [10742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6281), - [10745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5641), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [10754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6281), - [10757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5641), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [10774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6281), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [10781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [10783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8557), - [10786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [10788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8750), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [10797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), - [10800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7187), - [10803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8157), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [10818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [10820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [10824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 84), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [10830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 84), - [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 65), - [10834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 65), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), - [10842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [10846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 137), - [10850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 137), - [10852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), - [10854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [10860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [10862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 182), - [10870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 182), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [10888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 124), - [10896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 124), - [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), - [10900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), - [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [10904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), - [10916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), - [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5593), - [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [10927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [10929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5593), - [10932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [10942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8427), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [10949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [10951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [10973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [10977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [10979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [10989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 180), - [10993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 180), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 82), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), - [11005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5644), - [11008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [11010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), - [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 88), - [11016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 88), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [11024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), - [11028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), - [11034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [11038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [11046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [11048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [11144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 69), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [11166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5644), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8707), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 179), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [11217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5584), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 104), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [11234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 104), - [11236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [11238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [11254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [11258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [11262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [11264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 124), - [11266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 124), - [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [11270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 182), - [11274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 182), - [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [11278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [11280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), - [11282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6772), - [11285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 82), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), - [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [11319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [11321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [11357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), - [11359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [11369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [11397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 82), - [11399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 82), - [11401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [11403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5584), - [11406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7526), - [11409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5950), - [11412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8578), - [11415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7812), - [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [11428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [11430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [11452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [11470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [11476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), - [11478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), - [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), - [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [11534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), - [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), - [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [11618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(6879), - [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [11623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [11635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 60), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [11641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [11643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [11645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7526), - [11648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [11650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [11660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [11662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [11682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6189), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [11709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 61), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [11717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [11721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [11727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 60), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [11735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 69), - [11759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), - [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [11764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8746), - [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [11769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7106), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), - [11778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [11810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 59), - [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [11824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), - [11854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), - [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 82), - [11858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 82), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [11866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 83), - [11884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 83), - [11886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), - [11888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [11898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 82), - [11900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 82), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [11916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), - [11918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [11926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [11928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [11974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), SHIFT_REPEAT(6138), - [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), - [11979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [11989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), - [11991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(8458), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [12000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [12010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [12028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), - [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), - [12032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [12056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), - [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [12060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), SHIFT_REPEAT(5977), - [12063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), - [12065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [12069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [12081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [12083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 144), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 91), - [12107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 91), - [12109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [12121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [12125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [12127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [12149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [12153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), - [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [12157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [12163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8699), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [12175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), - [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [12227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [12231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [12233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [12253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [12255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [12259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [12281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [12297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [12327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), - [12341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [12343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [12347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [12351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [12355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8775), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), - [12363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [12375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8364), - [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [12391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [12401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [12403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7267), - [12406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [12408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [12410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7269), - [12413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7269), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [12418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [12426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [12430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [12434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 202), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [12442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 164), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [12448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [12450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [12454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 95), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [12460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [12464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [12468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), - [12470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 209), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [12480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [12482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [12484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 211), - [12486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 211), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [12492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [12496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [12500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), - [12502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 164), - [12504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [12506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [12510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 216), SHIFT_REPEAT(6912), - [12513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 216), - [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 202), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [12519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 217), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [12545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 216), SHIFT_REPEAT(6889), - [12548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 216), - [12550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 224), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [12554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 228), SHIFT_REPEAT(6373), - [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 228), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [12565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [12579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [12582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [12600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5915), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [12605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(8154), - [12608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [12624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [12652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [12657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8784), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [12685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6140), - [12688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [12706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [12744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), SHIFT_REPEAT(4790), - [12747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [12769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), - [12775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [12779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [12782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), - [12794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(6067), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [12803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 62), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [12861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [12867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 104), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [12879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [12941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [12977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [12989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [13017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8573), - [13020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [13030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [13046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [13049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [13057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3810), - [13060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), - [13062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), - [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 71), - [13066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 154), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [13136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 210), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [13178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [13182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7450), - [13185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [13189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [13207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 69), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [13251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 164), - [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [13277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [13288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 60), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [13306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [13314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), - [13316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [13338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6487), - [13341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [13345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [13353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 223), - [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [13357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 164), - [13359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), - [13366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 225), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [13384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [13387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), - [13389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3860), - [13392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [13398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 223), - [13400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 217), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [13408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 229), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [13414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 231), SHIFT_REPEAT(8982), - [13417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 231), - [13419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 232), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [13423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 232), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), - [13453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [13455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [13459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [13461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [13473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8686), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), - [13485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), - [13487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 60), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [13497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), - [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [13501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 95), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), - [13509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 168), - [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [13513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), - [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [13521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 169), - [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), - [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), - [13533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 205), - [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [13537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 104), - [13539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 208), - [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [13547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [13551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8791), - [13553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), - [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [13563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [13569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [13571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [13581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8869), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [13595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [13601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 209), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), - [13607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), - [13609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 144), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [13617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [13623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), - [13631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 225), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), - [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), - [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), - [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), - [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), - [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [13693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [13695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [13867] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), - [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [14035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), - [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [14041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 186), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [14119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 133), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [14139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 82), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [14165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 83), - [14167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 83), - [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [14181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 83), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [14199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 134), - [14201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [14213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), - [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [14309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 83), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [14335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8443), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [14358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [14390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 133), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [14474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 134), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [14528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [14548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 186), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [14552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 133), - [14554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 133), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), - [14566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 134), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [14596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 134), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [14628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [14656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 133), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [14686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 134), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [14908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 56), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [14922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 60), - [14924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 186), - [14926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 186), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [14930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 186), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [14952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 83), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), - [14970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), - [15048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), - [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), - [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11016), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10190), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10753), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10997), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10636), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9790), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10816), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10345), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11172), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10516), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10531), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10632), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11030), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10996), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8778), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10164), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8869), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10839), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11039), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11050), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10111), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9693), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10147), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10274), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10948), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10484), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11101), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11004), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10176), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8874), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11301), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8872), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11298), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10706), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10225), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9674), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10318), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11299), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11041), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11043), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11325), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10335), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11418), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8860), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11406), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8872), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11241), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8110), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11298), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10225), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4150), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8404), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9674), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11497), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10149), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11299), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11041), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11325), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10335), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10324), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8860), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11406), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11407), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8864), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8113), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10833), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10190), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4713), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8420), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4453), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9790), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10099), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10816), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10345), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11172), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10516), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10531), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10632), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7290), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9374), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10164), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8869), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10839), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11054), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10644), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8112), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10546), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10389), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8428), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4631), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4495), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9803), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10473), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11078), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10320), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11405), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10556), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10076), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10560), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10296), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8857), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11431), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11421), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8870), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11039), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8105), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11050), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10111), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4617), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9693), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10147), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10274), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10948), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11101), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10120), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10867), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10176), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8874), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11300), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11301), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10644), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10546), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10389), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9803), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10473), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11078), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10320), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11405), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11500), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11501), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10556), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10076), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10560), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10296), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8857), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11431), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11421), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10244), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10784), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9130), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9237), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9674), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10149), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11299), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11041), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11325), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10335), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9130), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10324), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4713), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9790), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10099), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10345), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11172), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10516), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10531), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10632), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10244), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10784), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9100), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10164), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1013), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(303), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9693), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10147), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10274), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10948), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11101), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10120), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10867), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9128), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10176), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9803), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10473), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10320), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11405), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10556), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10076), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10560), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9135), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10296), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4882), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9838), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10114), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10475), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11419), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11084), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11093), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10650), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10124), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10641), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9134), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10156), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10114), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10475), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11093), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10650), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10641), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9134), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11339), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9282), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8664), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11490), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11543), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10951), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10687), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11158), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11511), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11546), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11505), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11544), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9006), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11002), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10452), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3586), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(217), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1826), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1832), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8752), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9237), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(62), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7849), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9473), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9803), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10473), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1752), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11078), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10320), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(211), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11405), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1187), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11500), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11501), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10556), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10076), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10560), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1522), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1295), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10898), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11229), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11030), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9517), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9032), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6317), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9679), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9416), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5900), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5911), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11002), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9135), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10296), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1557), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1331), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1333), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1745), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10143), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1633), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7039), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7563), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(339), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1736), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3549), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(379), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(49), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9674), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10318), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1744), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11497), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10149), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(210), + [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11299), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1167), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11041), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11043), + [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11325), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10335), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11418), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9130), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10324), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1287), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1292), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10439), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3503), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(655), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9693), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10147), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1690), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11538), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10274), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(209), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10948), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1185), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10484), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10487), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11101), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10120), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10867), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9128), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10176), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1372), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1373), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), + [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3562), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(495), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(43), + [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9790), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10099), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1560), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10816), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10345), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(157), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11172), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1172), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10516), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10531), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10632), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10244), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10784), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9100), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10164), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1355), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1289), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1632), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3563), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9775), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1734), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11036), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10239), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11105), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10279), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9043), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3505), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1146), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(66), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9838), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10114), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10475), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(185), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11419), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1189), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11084), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11093), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10650), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10124), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10641), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9134), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10156), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1352), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1281), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1753), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11199), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11517), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11548), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9393), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9419), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11219), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11520), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11549), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3260), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(217), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1525), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1826), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1826), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1832), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8752), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7849), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9473), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9517), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11002), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9282), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1736), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11135), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11508), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11545), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9008), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11181), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9280), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3260), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1832), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8752), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9473), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9517), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(11002), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9282), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1736), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10947), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3260), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1832), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8752), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9473), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9517), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(11002), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9282), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1736), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3260), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1832), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8752), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9473), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9517), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(11002), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9282), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1736), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10711), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10548), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10713), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10229), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10983), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10982), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11440), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10361), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10361), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10132), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10132), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11221), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11179), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11514), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11547), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9012), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3577), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1665), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8793), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9348), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9476), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9178), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1780), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11251), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 173), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 173), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 109), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 109), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 180), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 180), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 140), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 140), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 140), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 140), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 192), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 192), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 209), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 209), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 210), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 210), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 158), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 158), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 159), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 159), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 123), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 123), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 163), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 163), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 120), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 120), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 164), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 164), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), + [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10711), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8107), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10548), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10229), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6374), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10972), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), + [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4647), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4888), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), + [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8435), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10983), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4462), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4176), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8135), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7095), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7096), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7097), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), + [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10982), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8959), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11440), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 179), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 179), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 141), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 141), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 84), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 84), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 121), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 121), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 125), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 125), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 130), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 130), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 133), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 133), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 134), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 134), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 135), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 135), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 136), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 136), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 142), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 142), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 148), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 148), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 149), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 149), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 174), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 174), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 175), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 175), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 176), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 176), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 183), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 183), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 187), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 187), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 188), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 188), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 190), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 190), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 223), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 223), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10088), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10343), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10768), + [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8111), + [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10360), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4890), + [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), + [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4641), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4500), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8973), + [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11448), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 113), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 113), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 114), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 114), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 115), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 115), + [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10545), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8104), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11151), + [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10458), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4652), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8411), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4526), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4454), + [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8983), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11420), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10768), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10360), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8973), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11448), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10545), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11151), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10458), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8983), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11420), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 169), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 169), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 113), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 113), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 48), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 48), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 114), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 114), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 115), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 115), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 169), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 169), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 48), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 48), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9310), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3654), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1509), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8770), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9472), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9289), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9175), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1777), + [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3621), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1614), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8758), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9419), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9520), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9188), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1782), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3602), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1562), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8739), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9306), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9328), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9280), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1772), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2892), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1538), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8786), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9173), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3599), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1793), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8818), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2420), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1541), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8774), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9300), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9368), + [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9200), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1746), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3537), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1478), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8808), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9365), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9367), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9248), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1695), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3446), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1476), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8736), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1808), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8817), + [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1649), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8798), + [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3455), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1634), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8771), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3606), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1697), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8809), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9355), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9310), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1717), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8780), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3656), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1593), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8743), + [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9333), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9393), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9174), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1778), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11108), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10868), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11452), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11441), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11445), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10986), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11457), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11449), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11413), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11436), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(228), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1532), + [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(229), + [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1469), + [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), + [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(220), + [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1625), + [5172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1625), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1537), + [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1626), + [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1278), + [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11179), + [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11514), + [5190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11547), + [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9012), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6965), + [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9920), + [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9326), + [5205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7155), + [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7140), + [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1443), + [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10459), + [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1444), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6831), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7568), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(341), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(274), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10993), + [5284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [5293] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10172), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10172), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8519), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9473), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), + [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), + [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), + [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8519), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), + [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [5508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11002), + [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9282), + [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), + [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), + [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10673), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10679), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10664), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(275), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10913), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10920), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10790), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11031), + [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10945), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11042), + [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11025), + [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11011), + [5655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11094), + [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10755), + [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11435), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10728), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10517), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11438), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 111), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 162), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 111), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 202), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11495), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11502), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10547), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10745), + [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10614), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10534), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10668), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11333), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11456), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11381), + [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11326), + [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11486), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11091), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10732), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10874), + [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10781), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10774), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10489), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10836), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11447), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10731), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11352), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11346), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11357), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11358), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10486), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10518), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10885), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10621), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11020), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11385), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11493), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11387), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7824), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2754), + [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2754), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11233), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11256), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8954), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4798), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3492), + [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7671), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4769), + [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3492), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10590), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7671), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(278), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), + [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), + [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), + [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11411), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10669), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10965), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3908), + [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3908), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11197), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), + [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4765), + [6295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4917), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7645), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11233), + [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11233), + [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4797), + [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3970), + [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3970), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11287), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), + [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4794), + [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5099), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), + [6346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7641), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4019), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4019), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11275), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4793), + [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4993), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), + [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7669), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6392] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(265), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), + [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4178), + [6405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4178), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), + [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4791), + [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5526), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10735), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7657), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11166), + [6439] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(257), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11225), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11291), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6499] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(272), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), + [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(261), + [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(281), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), + [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11256), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), + [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11218), + [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11233), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6566] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(276), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6582] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(260), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11206), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(276), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11225), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10465), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [6631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), + [6634] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(258), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), + [6670] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(263), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [6684] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(269), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(269), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(272), + [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), + [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), + [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1953), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11218), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11217), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(265), + [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4269), + [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4269), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11156), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11244), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4796), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10524), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [6876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5297), + [6879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7639), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [6888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1953), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11218), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11244), + [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4741), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5297), + [6924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7658), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), + [6949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [6953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2130), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2083), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [6997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [7005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [7031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11218), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [7081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 153), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 153), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 154), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 154), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [7167] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(265), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [7219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [7259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2278), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [7314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11198), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [7325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 155), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 155), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [7365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2278), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11198), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [7375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 153), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 153), + [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 154), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 154), + [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1186), + [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2133), + [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [7427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2312), + [7430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11288), + [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), + [7436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11249), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), + [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4788), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [7464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2295), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11276), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11156), + [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11156), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4795), + [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6590), + [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7649), + [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6029), + [7492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6029), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11267), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), + [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4792), + [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6589), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10792), + [7517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7677), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [7526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2312), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11288), + [7534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), + [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11198), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2754), + [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2754), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4769), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3492), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7671), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [7565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2295), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [7570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11276), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4798), + [7582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3492), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7671), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9029), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), + [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11276), + [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [7615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [7618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11250), + [7621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [7624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11288), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4769), + [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3492), + [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7671), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4798), + [7645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3492), + [7648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7671), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [7655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2372), + [7661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2372), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11295), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2432), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11264), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11197), + [7686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11197), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2432), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11264), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11198), + [7705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), + [7708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11296), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11276), + [7722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11287), + [7725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11287), + [7728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11272), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), + [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11264), + [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11275), + [7769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11275), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [7795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), + [7798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), + [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11291), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11177), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [7823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [7832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(276), + [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3908), + [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3908), + [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4765), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4917), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7645), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [7856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 157), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 157), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11271), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8510), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10944), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10946), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11104), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11264), + [7894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [7897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), + [7921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11178), + [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11233), + [7930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11233), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4797), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(263), + [7939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2559), + [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11244), + [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4019), + [7948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4019), + [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4793), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4993), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7669), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3970), + [7963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3970), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4794), + [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5099), + [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7641), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [7984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [7987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11134), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [7994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4765), + [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4917), + [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7645), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11283), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(258), + [8012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11259), + [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11259), + [8018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(265), + [8021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), + [8024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [8027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10204), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11156), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4793), + [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9337), + [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10452), + [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4993), + [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7669), + [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4794), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5099), + [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7641), + [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11233), + [8073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11233), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4797), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4798), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3492), + [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7671), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4769), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3492), + [8132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7671), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(260), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4178), + [8161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4178), + [8164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4791), + [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1188), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5526), + [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7657), + [8180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [8183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), + [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11255), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11255), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), + [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [8210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4791), + [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5526), + [8216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7657), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1191), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1190), + [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 216), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 216), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 225), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 225), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 188), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 188), + [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 135), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 135), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [8297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2592), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [8302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11134), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 216), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 216), + [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [8347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 208), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 208), + [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(281), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 136), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 136), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [8368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2592), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [8373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11134), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 195), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 195), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 208), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 208), + [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 225), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 225), + [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 215), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 215), + [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 194), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 194), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 215), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 215), + [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 224), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 224), + [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 195), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 195), + [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 194), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 194), + [8466] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(276), + [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4765), + [8473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4917), + [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7645), + [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3320), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [8492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(276), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10222), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10222), + [8502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10137), + [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3176), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 132), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 132), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11233), + [8531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11233), + [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4797), + [8537] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(263), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3492), + [8548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7671), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [8563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3492), + [8566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7671), + [8569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(258), + [8572] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(258), + [8576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4794), + [8579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 186), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 186), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(257), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [8610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4793), + [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [8641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4993), + [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7669), + [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5099), + [8662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7641), + [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 131), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 131), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11134), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [8679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [8682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [8689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 184), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 184), + [8697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(265), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [8702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), + [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 126), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 126), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), + [8721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [8725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [8737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [8755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [8759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [8762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4791), + [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5526), + [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7657), + [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [8792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3785), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [8797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11260), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [8804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4269), + [8815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4269), + [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4741), + [8821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5297), + [8824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7658), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [8831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [8838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [8849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3736), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [8854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11268), + [8857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), + [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), + [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10471), + [8866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(266), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [8879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(257), + [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4796), + [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5297), + [8888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7639), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [8893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3736), + [8896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11268), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11133), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [8913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3785), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [8918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11260), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 182), + [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 182), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [8931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [8935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [8947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 145), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 145), + [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [8959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), + [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [8971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4741), + [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5297), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7658), + [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10401), + [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(11323), + [8986] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8425), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4796), + [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 189), + [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 189), + [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 126), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 126), + [9015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [9029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 184), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 184), + [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), + [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8425), + [9046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [9049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9377), + [9052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10448), + [9055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [9058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11260), + [9061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(272), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3736), + [9069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), + [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), + [9090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(260), + [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 137), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 137), + [9101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), + [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 119), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 119), + [9121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5297), + [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7639), + [9127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [9135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), + [9139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(265), + [9142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 127), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 127), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9442), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10466), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), + [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), + [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11294), + [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 177), + [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 177), + [9177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), + [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), + [9181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(265), + [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(263), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [9193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9453), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10467), + [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11280), + [9211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(258), + [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(265), + [9232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [9244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [9259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [9262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), + [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), + [9266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11260), + [9278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), + [9304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), + [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), + [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [9314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4076), + [9317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3482), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [9322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(10636), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4094), + [9330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3482), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [9335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(10636), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11249), + [9355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11249), + [9358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 177), + [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 177), + [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11267), + [9365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11267), + [9368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(265), + [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), + [9375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 221), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 221), + [9379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 167), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 167), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [9385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [9388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11272), + [9391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4769), + [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3492), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7671), + [9404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 178), + [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 178), + [9412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 233), + [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 233), + [9416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 230), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 230), + [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 229), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 229), + [9424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), + [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), + [9436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [9444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), + [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), + [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [9464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), + [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 191), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 191), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [9490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), + [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9321), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10064), + [9499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 203), + [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 203), + [9507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 205), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 205), + [9511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 206), + [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 206), + [9515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [9523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [9527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), + [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), + [9531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 118), + [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 118), + [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4798), + [9538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [9542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 168), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 168), + [9546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), + [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), + [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [9558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 222), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 222), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 165), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 165), + [9574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 144), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 144), + [9578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11263), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11243), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [9600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [9606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [9612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4218), + [9615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), + [9618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), + [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4788), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6029), + [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6029), + [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4792), + [9633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11156), + [9636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11156), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4795), + [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6590), + [9645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7649), + [9648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6589), + [9651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7677), + [9654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), + [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), + [9669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(269), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [9678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [9682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4644), + [9685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [9688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), + [9691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), + [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), + [9697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10946), + [9700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [9719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4741), + [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5297), + [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7658), + [9736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), + [9739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11156), + [9745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11156), + [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4795), + [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4788), + [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6590), + [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7649), + [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4792), + [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6589), + [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7677), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [9771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4035), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4796), + [9779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5297), + [9782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7639), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), + [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9369), + [9799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10443), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [9840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [9844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 139), + [9848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 139), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [9852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [9870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [9936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4797), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [9943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [9947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4765), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4917), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7645), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [9979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4238), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [9989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11157), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4793), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11102), + [10006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11102), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9163), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11157), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11131), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4794), + [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5099), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7641), + [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4917), + [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7645), + [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8216), + [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7653), + [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4993), + [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7669), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [10057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4238), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [10062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11157), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5099), + [10078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7641), + [10081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 138), + [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 138), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [10089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [10123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9192), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4993), + [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7669), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 129), + [10190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 129), + [10192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 185), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 185), + [10200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4792), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6589), + [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7677), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [10217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4791), + [10220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4788), + [10223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6590), + [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7649), + [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4917), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [10238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11156), + [10241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11156), + [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4795), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [10249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9204), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11102), + [10258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8954), + [10261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8954), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9198), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [10279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5526), + [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7657), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [10439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8405), + [10442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7628), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [10447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), + [10450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [10484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5526), + [10487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7657), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [10496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(266), + [10499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 116), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [10528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [10533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [10608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7627), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10730), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10525), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [10673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [10692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9202), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [10799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(278), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [10814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(263), + [10817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4979), + [10820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9490), + [10823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10470), + [10826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7626), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [10839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(281), + [10842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [10845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5027), + [10848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [10851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [10854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), + [10857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), + [10860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [10867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [10871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4644), + [10874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), + [10877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), + [10880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), + [10883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), + [10886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10946), + [10889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), + [10892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [10907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(276), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [10914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(276), + [10917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [10942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(266), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11356), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11362), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11383), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [11105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(258), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [11142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(276), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [11165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(258), + [11168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(261), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [11175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(263), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 147), + [11246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(276), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), + [11257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(263), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [11278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), + [11281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9512), + [11284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10462), + [11287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(258), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [11300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(258), + [11303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(263), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [11308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5519), + [11311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9413), + [11314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10465), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [11319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(282), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [11356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5297), + [11372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7658), + [11375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5297), + [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7658), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [11387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4741), + [11390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6080), + [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), + [11396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4796), + [11399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [11405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5297), + [11408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7639), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11234), + [11435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5297), + [11438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7639), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [11471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4795), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), + [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), + [11589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), + [11592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6291), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [11603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4792), + [11606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6589), + [11609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7677), + [11612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4788), + [11615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6590), + [11618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7649), + [11621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [11625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), + [11643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 152), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 152), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11246), + [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [11703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [11707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6590), + [11710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7649), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [11715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6589), + [11718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7677), + [11721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), + [11724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), + [11730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), + [11733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9163), + [11739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11103), + [11742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), + [11745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), + [11748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [11797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6485), + [11800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11234), + [11803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), + [11806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6614), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), + [11816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), + [11819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9203), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [11834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9195), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [11839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6485), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [11844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11234), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [11851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6485), + [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [11856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11234), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [11897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6590), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [11906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [11912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6589), + [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [11917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), + [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 187), + [11943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 187), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [11971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [12049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [12128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [12144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11102), + [12147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11102), + [12150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9163), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [12167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8216), + [12170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7653), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 122), + [12177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 197), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 150), SHIFT(1293), + [12186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 150), + [12188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1293), + [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [12231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 208), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10834), + [12309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 172), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [12333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [12337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [12347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [12349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 217), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 198), + [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), + [12359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 201), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [12367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 151), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 161), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 193), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [12387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), + [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [12429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7436), + [12432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(10947), + [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [12469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), + [12525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [12529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8954), + [12532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8954), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [12573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 218), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [12609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [12615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), + [12636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11279), + [12644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11279), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 200), + [12660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [12662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [12664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8189), + [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [12680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [12682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [12684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [12736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [12738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [12742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [12744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8405), + [12747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7628), + [12750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [12752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [12754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [12756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [12758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [12760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [12764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [12766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [12772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [12774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [12776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [12778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11102), + [12781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11102), + [12784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9163), + [12787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8216), + [12790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7653), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [12801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [12804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [12806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8668), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [12812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), + [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [12816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [12820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [12822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [12824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7627), + [12827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8954), + [12830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8954), + [12833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7626), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [12838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7581), + [12841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7556), + [12844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7578), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), + [12853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [12855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10964), + [12857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7569), + [12860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7551), + [12863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7575), + [12866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8405), + [12869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7628), + [12872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7627), + [12875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11102), + [12878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11102), + [12881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9163), + [12884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8216), + [12887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7653), + [12890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7626), + [12893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(4035), + [12896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(4035), + [12899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(4035), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9405), + [12910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(4035), + [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), + [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), + [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [12932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [12934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [12940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [12942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9504), + [12944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(4035), + [12947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(4035), + [12950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(4035), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), + [12961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(7554), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [12968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [12974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8841), + [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), + [12978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), + [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(4035), + [12983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(7552), + [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [12988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(7564), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), + [12999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(7574), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [13010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8954), + [13017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8954), + [13020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8405), + [13035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7628), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9079), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8618), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8582), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9524), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [13110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7627), + [13113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9165), + [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9154), + [13117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(7565), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), + [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), + [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), + [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), + [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [13172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7626), + [13175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), + [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), + [13179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [13185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), + [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [13189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [13195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), + [13197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [13199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10832), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [13209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [13215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [13231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), + [13233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [13237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), + [13239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [13245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), + [13247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [13253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [13259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), + [13261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [13263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [13293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [13297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9099), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), + [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [13324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9038), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [13338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [13342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), + [13344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [13348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9098), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9085), + [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), + [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9054), + [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), + [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9111), + [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [13428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9163), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10186), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10214), + [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9037), + [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [13489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9047), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [13497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [13511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8216), + [13514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7653), + [13517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [13521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8216), + [13524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7653), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), + [13533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [13535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [13539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [13545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [13547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [13557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [13565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [13567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [13569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [13571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [13581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), + [13593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [13601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [13631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [13647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [13649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), + [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8845), + [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [13712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10756), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [13717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8949), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10806), + [13721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [13725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [13729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [13745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [13749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [13757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [13759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [13773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [13775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [13781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [13783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [13787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [13789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [13795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [13797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [13801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [13803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [13813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [13819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [13823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [13827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [13839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8919), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [13855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [13857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [13859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [13861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [13867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [13871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), + [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), + [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [13877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), + [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [13887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), + [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [13899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), + [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), + [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [13909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [13919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [13921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [13929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [13933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), + [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), + [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8376), + [13941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [13943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), + [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), + [13949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [13955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), + [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [13965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [13971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [13975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), + [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), + [13991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [13993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [13997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [14001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [14009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9034), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), + [14029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), + [14034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), + [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [14041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), + [14043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [14049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [14051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8896), + [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), + [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), + [14057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [14061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [14067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8405), + [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [14072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8405), + [14075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7627), + [14078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8405), + [14081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7627), + [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10460), + [14090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [14092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8349), + [14095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), + [14098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10460), + [14101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), + [14103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [14105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), + [14107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [14109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [14123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [14133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8948), + [14135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), + [14137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), + [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [14141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 182), + [14143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 182), + [14145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), + [14147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), + [14149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 184), + [14151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 184), + [14153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), + [14155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), + [14157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), + [14163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), + [14165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), + [14167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8933), + [14169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), + [14171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [14177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8952), + [14181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), + [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [14185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), + [14187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), + [14189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), + [14191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8922), + [14193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8572), + [14195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7628), + [14198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9315), + [14200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [14204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7628), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8609), + [14211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 126), + [14213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 126), + [14215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8537), + [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [14227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), + [14241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9409), + [14243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8556), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [14251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [14255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7626), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [14260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [14266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [14274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 182), + [14276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 182), + [14278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [14312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), + [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9352), + [14322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [14324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), + [14326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [14328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [14330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [14332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7626), + [14335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [14337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9440), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [14347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [14349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9461), + [14351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [14359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [14361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [14371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9245), + [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [14377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), + [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [14387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [14409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), + [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [14417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [14421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [14427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), + [14429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [14431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), + [14433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [14435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [14437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [14441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9275), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [14449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [14451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [14455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [14457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [14459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), + [14461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [14463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), + [14467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [14469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10576), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [14475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 181), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [14487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 106), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [14491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 106), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [14495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [14535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 184), + [14553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 184), + [14555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [14557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8822), + [14560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 126), + [14562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 126), + [14564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [14572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), + [14576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [14578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [14584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), + [14590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [14592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9551), + [14595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8052), + [14598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10626), + [14601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10190), + [14604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [14606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [14608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), + [14610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), + [14612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [14614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [14620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [14628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [14630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [14632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [14642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [14648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [14658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [14664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [14666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [14668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [14670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), + [14676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11341), + [14678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), + [14680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), + [14682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), + [14694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), + [14696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), + [14698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), + [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), + [14704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9788), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11087), + [14708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [14710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [14712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), + [14714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9864), + [14716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10242), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [14720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), + [14722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), + [14724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10479), + [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10385), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [14740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [14744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [14746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [14750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10319), + [14752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), + [14766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8425), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [14773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [14776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [14783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9551), + [14786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [14788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [14792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(8905), + [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [14797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [14799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10341), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), + [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10287), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [14853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [14855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [14858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [14860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(11004), + [14863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), + [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10197), + [14867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [14869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9191), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [14878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), + [14880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [14884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [14890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [14906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [14924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [14938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), + [14940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10301), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11004), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [14964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), + [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), + [14968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [14970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [14972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [14978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [14980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [14994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [14996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [15002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [15038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [15046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 188), + [15048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 188), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [15070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 135), + [15072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 135), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [15092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [15142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 136), + [15144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 136), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [15150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11425), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [15178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10527), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [15192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11519), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10166), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [15212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10647), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [15220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), SHIFT_REPEAT(8158), + [15223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), + [15225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [15237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [15244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10447), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [15260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [15266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [15268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 146), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [15306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), + [15324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [15326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(11519), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), + [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), SHIFT_REPEAT(8364), + [15350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), + [15352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10105), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [15376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [15380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), + [15382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [15384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9290), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [15389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [15391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), + [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10316), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [15401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 212), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10773), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [15415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), + [15423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [15433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [15437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [15445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [15449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9344), + [15451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [15455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9395), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [15459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 219), SHIFT_REPEAT(8946), + [15462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 219), + [15464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [15470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [15474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [15476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [15484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [15486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8637), + [15488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [15496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [15498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [15500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), + [15503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10391), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [15516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [15520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [15524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 227), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [15528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [15530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [15534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), + [15546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [15550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), + [15554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [15556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), + [15560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9389), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [15564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11311), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [15570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [15572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11434), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [15576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [15580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [15584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [15590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [15598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [15602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [15610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [15618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [15622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), + [15624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [15628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [15632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [15636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [15640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 214), + [15642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 214), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [15648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 204), + [15650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [15658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [15660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [15662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), + [15666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [15670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [15674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), + [15676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [15682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [15684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [15688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [15692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10403), + [15698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 231), SHIFT_REPEAT(8520), + [15701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 231), + [15703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [15705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [15711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 166), + [15713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [15721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11487), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [15725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11052), + [15727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [15729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [15739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [15743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9468), + [15745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [15747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [15753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 219), SHIFT_REPEAT(8945), + [15756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 219), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [15760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10494), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [15764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), + [15768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), + [15778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [15780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), + [15790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [15794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [15798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), + [15800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), + [15804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 204), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [15810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10912), + [15812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [15814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 166), + [15816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [15822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10598), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [15826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [15828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [15830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [15834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), + [15836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [15840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), + [15842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [15844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 220), + [15846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), + [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [15854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [15856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), + [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [15922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), + [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), + [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10172), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), + [15960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [15964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [16014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 226), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), + [16024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), + [16026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 166), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [16046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 228), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10326), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [16144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [16147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), + [16155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 226), + [16157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 220), + [16159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9358), + [16161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [16165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [16177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 232), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [16183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10184), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11007), + [16203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [16214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [16216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 234), SHIFT_REPEAT(11336), + [16219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 234), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [16223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 235), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [16227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [16229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [16238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [16244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 235), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10344), + [16252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [16256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [16258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7902), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [16267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [16271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 213), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [16279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9863), + [16282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [16284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(10127), + [16287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [16297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), + [16299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 156), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [16303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [16321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [16327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [16329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [16332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [16340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9648), + [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [16362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9697), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), + [16392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [16396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [16399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10802), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [16411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11323), + [16414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [16424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [16427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [16429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7952), + [16432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [16458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [16461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [16467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [16471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8258), + [16474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [16480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), + [16482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [16491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 166), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [16505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [16537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [16551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [16567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8116), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [16574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [16604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(10326), + [16607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [16613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [16625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 124), SHIFT_REPEAT(6272), + [16628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 124), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [16632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [16646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [16650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [16656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), + [16658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [16660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [16682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), + [16685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10398), + [16749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), + [16815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 106), + [16817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), + [16821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), + [16869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 212), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [16875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 106), + [16877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [16883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10860), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [16893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10574), + [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [16903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10943), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10702), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [16913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10763), + [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [16923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [16925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [16929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10616), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [16933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [16935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [16939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [16941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 170), + [16943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 171), + [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [16947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11107), + [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [16951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10490), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [16955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [16961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 146), + [16963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), + [16965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), + [16967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [16969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [16973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10971), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [16981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 228), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [16985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), + [16993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [16999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10628), + [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [17003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11193), + [17005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [17011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10876), + [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [17015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10521), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11499), + [17021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [17025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), + [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11506), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11509), + [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11169), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), + [17049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 207), + [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11515), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11226), + [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [17065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10849), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11240), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11523), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), + [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), + [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), + [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), + [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), + [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11529), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), + [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11530), + [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11277), + [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), + [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), + [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11533), + [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), + [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11292), + [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), + [17115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 211), + [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11491), + [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), + [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), + [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [17151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [17153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 136), + [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), + [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [17169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [17171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [17173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [17177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [17179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [17181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [17183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [17185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), + [17189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), + [17193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [17197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [17201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [17213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [17215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [17219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [17229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), + [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [17241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [17245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [17249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11536), + [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [17253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), + [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [17265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [17267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [17293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11358), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), + [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), + [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11227), + [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10825), + [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), + [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), + [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), + [17361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [17365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10701), + [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [17385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), + [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10975), + [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [17421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), + [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), + [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), + [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [17437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), + [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), + [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), + [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), + [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), + [17499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 135), + [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), + [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), + [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [17541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), + [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [17553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 188), + [17555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 136), + [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [17563] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [17583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 188), + [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), + [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [17601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), + [17603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 188), + [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [17613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), + [17615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 135), + [17617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [17619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 136), + [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11220), + [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11224), + [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10367), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), + [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), + [17657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 135), + [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10707), + [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [17663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [17669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [17673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [17677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [17681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [17685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [17687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [17689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [17693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [17695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 188), + [17697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), + [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), + [17701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [17705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), + [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [17709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [17713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), + [17717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [17721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), + [17725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [17729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [17733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10901), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10658), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10788), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [17846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), + [17848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10569), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10654), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [17956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [17962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [17988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [18026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), + [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), + [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), + [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), + [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [18088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 188), + [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), + [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10495), + [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [18118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), + [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [18138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10623), + [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [18160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), + [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), + [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10136), + [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), + [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), + [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), + [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), + [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10742), + [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10744), + [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), + [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), + [18228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 135), + [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10766), + [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10191), + [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), + [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), + [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), + [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10814), + [18266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), + [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), + [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10219), + [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), + [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), + [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [18296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), + [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), + [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), + [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), + [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), + [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), + [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), + [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), + [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), + [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), + [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), + [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), + [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), + [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), + [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), + [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), + [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), + [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [18370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), + [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), + [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), + [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), + [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), + [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10918), + [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), + [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), + [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), + [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10926), + [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), + [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), + [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), + [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), + [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), + [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [18422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10937), + [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10938), + [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), + [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), + [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [18468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [18476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), + [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [18488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 135), + [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), + [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), + [18498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), + [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [18504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), + [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), + [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [18516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [18532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [18542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [18546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [18548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), + [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10677), + [18554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), + [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), + [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [18564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [18566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), + [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [18576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), + [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), + [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [18594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11153), + [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), + [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [18616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11168), + [18618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [18622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), + [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [18636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), + [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [18640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), + [18642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [18644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), + [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [18650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [18652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11230), + [18656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), + [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11248), + [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [18668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [18670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [18672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11258), + [18674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [18676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11262), + [18678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10991), + [18680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [18682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [18684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [18686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 136), + [18688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), + [18690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), + [18692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11278), + [18694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 136), + [18696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11282), + [18698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [18700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), + [18702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [18704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11290), + [18706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [18708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [18710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [18712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [18714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [18716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [18718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [18720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [18722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [18724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [18726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [18728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [18730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), + [18732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [18734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [18736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11489), + [18738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [18740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11414), + [18742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [18744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [18746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), + [18748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [18750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [18752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [18754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [18756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [18758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), + [18760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [18762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), + [18764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [18766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [18768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [18770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [18772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [18774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), + [18776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), + [18778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), + [18780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), + [18782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [18784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11475), + [18786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), + [18788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [18790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11481), + [18792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11483), + [18794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11485), + [18796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [18798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), + [18800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [18802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [18804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [18806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [18808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [18810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [18812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [18814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [18816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [18818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [18820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/reflection.txt b/test/corpus/reflection.txt new file mode 100644 index 0000000..53686c0 --- /dev/null +++ b/test/corpus/reflection.txt @@ -0,0 +1,971 @@ +================================================================================ +Reflection operator +================================================================================ +static_assert(std::meta::is_type(^^int())); +static_assert(std::meta::is_namespace(^^::)); + +template struct X {}; +consteval bool operator<(std::meta::info, X) { return false; } +consteval void g(std::meta::info r, X xv) { + r == (^^int) && true; + (^^X) < xv; + ^^X < xv; +} + +constexpr std::meta::info r1 = ^^A; +constexpr std::meta::info r2 = ^^B::C; + +template void fn() requires (^^T == ^^int); + +constexpr std::meta::info a = ^^fn; +constexpr std::meta::info b = ^^std::vector; + +template +struct S { + static constexpr std::meta::info r = ^^T; + using type = T; +}; +static_assert(S::r == ^^int); +static_assert(^^S::type != ^^int); + +constexpr T obj{.r=^^::}; + +constexpr std::meta::info yeti = ^^void(int) const &; +add_member(^^char const *); + +-------------------------------------------------------------------------------- + +(translation_unit + (static_assert_declaration + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (reflect_expression + (call_expression + (primitive_type) + (argument_list)))))) + (static_assert_declaration + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (reflect_expression)))) + (template_declaration + (template_parameter_list + (parameter_declaration + (primitive_type))) + (struct_specifier + (type_identifier) + (field_declaration_list))) + (function_definition + (type_qualifier) + (primitive_type) + (function_declarator + (operator_name) + (parameter_list + (parameter_declaration + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier)))) + (parameter_declaration + (template_type + (type_identifier) + (template_argument_list + (false)))))) + (compound_statement + (return_statement + (false)))) + (function_definition + (type_qualifier) + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (identifier)) + (parameter_declaration + (template_type + (type_identifier) + (template_argument_list + (false))) + (identifier)))) + (compound_statement + (expression_statement + (binary_expression + (binary_expression + (identifier) + (parenthesized_expression + (reflect_expression + (type_descriptor + (primitive_type))))) + (true))) + (expression_statement + (binary_expression + (parenthesized_expression + (reflect_expression + (identifier))) + (identifier))) + (expression_statement + (binary_expression + (reflect_expression + (type_descriptor + (template_type + (type_identifier) + (template_argument_list + (true))))) + (identifier))))) + (declaration + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (init_declarator + (identifier) + (reflect_expression + (identifier)))) + (declaration + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (init_declarator + (identifier) + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (declaration + (primitive_type) + (function_declarator + (identifier) + (parameter_list) + (requires_clause + (binary_expression + (reflect_expression + (type_descriptor + (type_identifier))) + (reflect_expression + (type_descriptor + (primitive_type)))))))) + (declaration + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (init_declarator + (identifier) + (reflect_expression + (template_function + (identifier) + (template_argument_list + (type_descriptor + (primitive_type))))))) + (declaration + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (init_declarator + (identifier) + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (struct_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (storage_class_specifier) + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (field_identifier) + (reflect_expression + (identifier))) + (alias_declaration + (type_identifier) + (type_descriptor + (type_identifier)))))) + (static_assert_declaration + (binary_expression + (qualified_identifier + (template_type + (type_identifier) + (template_argument_list + (type_descriptor + (primitive_type)))) + (identifier)) + (reflect_expression + (type_descriptor + (primitive_type))))) + (static_assert_declaration + (binary_expression + (reflect_expression + (type_descriptor + (qualified_identifier + (template_type + (type_identifier) + (template_argument_list + (type_descriptor + (primitive_type)))) + (type_identifier)))) + (reflect_expression + (type_descriptor + (primitive_type))))) + (declaration + (type_qualifier) + (type_identifier) + (init_declarator + (identifier) + (initializer_list + (initializer_pair + (field_designator + (field_identifier)) + (reflect_expression))))) + (declaration + (type_qualifier) + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (init_declarator + (identifier) + (reflect_expression + (type_descriptor + (primitive_type) + (abstract_function_declarator + (parameter_list + (parameter_declaration + (primitive_type))) + (type_qualifier) + (ref_qualifier)))))) + (expression_statement + (call_expression + (identifier) + (argument_list + (reflect_expression + (type_descriptor + (primitive_type) + (type_qualifier) + (abstract_pointer_declarator))))))) + + +================================================================================ +Splice type specifiers and requirements +================================================================================ + +using alias = [:^^TCls:]<([:^^v:])>; +using enum [:^^Enum:]; +using namespace [:^^:::]; +namespace global = [:^^:::]; + +int o1 = [:^^S::x:]; +auto o2 = typename [:^^TCls:]<([:^^v:])>(); +int S::*k = &[:^^S::m:]; +int v1 = [:^^TCls<1>:]::s; +int v2 = template [:^^TCls:]<2>::s; +typename [:^^TCls:]<3>::type v3 = 3; +template [:^^TCls:]<3>::type v4 = 4; +typename template [:^^TCls:]<3>::type v5 = 5; + +template +concept C = requires { + typename [:T::r1:]; + typename [:T::r2:]; +}; + +-------------------------------------------------------------------------------- + +(translation_unit + (alias_declaration + (type_identifier) + (type_descriptor + (splice_type_specifier + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (parenthesized_expression + (splice_expression + (splice_specifier + (reflect_expression + (identifier))))))))) + (using_declaration + (splice_type_specifier + (splice_specifier + (reflect_expression + (identifier))))) + (using_declaration + (splice_type_specifier + (splice_specifier + (reflect_expression)))) + (namespace_alias_definition + (namespace_identifier) + (splice_specifier + (reflect_expression))) + (declaration + (primitive_type) + (init_declarator + (identifier) + (splice_expression + (splice_specifier + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))))))) + (declaration + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (call_expression + (splice_type_specifier + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (parenthesized_expression + (splice_expression + (splice_specifier + (reflect_expression + (identifier))))))) + (argument_list)))) + (declaration + (primitive_type) + (init_declarator + (qualified_identifier + (namespace_identifier) + (pointer_type_declarator + (type_identifier))) + (pointer_expression + (splice_expression + (splice_specifier + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier))))))))) + (declaration + (primitive_type) + (init_declarator + (identifier) + (qualified_identifier + (splice_type_specifier + (splice_specifier + (reflect_expression + (template_function + (identifier) + (template_argument_list + (number_literal)))))) + (identifier)))) + (declaration + (primitive_type) + (init_declarator + (identifier) + (qualified_identifier + (splice_expression + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (number_literal))) + (identifier)))) + (declaration + (dependent_type + (qualified_identifier + (splice_type_specifier + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (number_literal))) + (type_identifier))) + (init_declarator + (identifier) + (number_literal))) + (declaration + (qualified_identifier + (splice_expression + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (number_literal))) + (type_identifier)) + (init_declarator + (identifier) + (number_literal))) + (declaration + (dependent_type + (qualified_identifier + (splice_expression + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (number_literal))) + (type_identifier))) + (init_declarator + (identifier) + (number_literal))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (concept_definition + (identifier) + (requires_expression + (requirement_seq + (type_requirement + (splice_type_specifier + (splice_specifier + (qualified_identifier + (namespace_identifier) + (identifier))))) + (simple_requirement) + (type_requirement + (splice_type_specifier + (splice_specifier + (qualified_identifier + (namespace_identifier) + (identifier))) + (template_argument_list + (type_descriptor + (primitive_type))))) + (simple_requirement)))))) + +================================================================================ +Splice expressions +================================================================================ + +constexpr int c = [:^^S:]::a; + +constexpr int d = template [:^^TCls:]::b; + +template constexpr int e = [:V:]; +constexpr int f = template [:^^e:]<^^S::a>; + +constexpr auto g = typename [:^^int:](42); +constexpr auto h = typename [:^^int:]{42}; +constexpr auto j = e<([:^^h:])>; + +[:^^A::f:](3, 4); +T* p4 = template [:r:]<200>(); +S<[:r:] + 1> s3; + +template +void fn() { + using a = [:T:]<1>; + static_assert([:NS:]::template TCls<1>::v == a::v); +} + +fn<^^N::TCls, ^^N>(); + +int v1 = base_.[:fields[I]:]; +int v2 = base_->[:fields[I]:]; + +-------------------------------------------------------------------------------- + +(translation_unit + (declaration + (type_qualifier) + (primitive_type) + (init_declarator + (identifier) + (qualified_identifier + (splice_type_specifier + (splice_specifier + (reflect_expression + (identifier)))) + (identifier)))) + (declaration + (type_qualifier) + (primitive_type) + (init_declarator + (identifier) + (qualified_identifier + (splice_expression + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (type_descriptor + (primitive_type)))) + (identifier)))) + (template_declaration + (template_parameter_list + (parameter_declaration + (placeholder_type_specifier + (auto)) + (identifier))) + (declaration + (type_qualifier) + (primitive_type) + (init_declarator + (identifier) + (splice_expression + (splice_specifier + (identifier)))))) + (declaration + (type_qualifier) + (primitive_type) + (init_declarator + (identifier) + (splice_expression + (splice_specifier + (reflect_expression + (identifier))) + (template_argument_list + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))))))) + (declaration + (type_qualifier) + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (call_expression + (splice_type_specifier + (splice_specifier + (reflect_expression + (type_descriptor + (primitive_type))))) + (argument_list + (number_literal))))) + (declaration + (type_qualifier) + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (compound_literal_expression + (splice_type_specifier + (splice_specifier + (reflect_expression + (type_descriptor + (primitive_type))))) + (initializer_list + (number_literal))))) + (declaration + (type_qualifier) + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (template_function + (identifier) + (template_argument_list + (parenthesized_expression + (splice_expression + (splice_specifier + (reflect_expression + (identifier))))))))) + (expression_statement + (call_expression + (splice_expression + (splice_specifier + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))))) + (argument_list + (number_literal) + (number_literal)))) + (declaration + (type_identifier) + (init_declarator + (pointer_declarator + (identifier)) + (call_expression + (splice_expression + (splice_specifier + (identifier)) + (template_argument_list + (number_literal))) + (argument_list)))) + (declaration + (template_type + (type_identifier) + (template_argument_list + (binary_expression + (splice_expression + (splice_specifier + (identifier))) + (number_literal)))) + (identifier)) + (template_declaration + (template_parameter_list + (parameter_declaration + (placeholder_type_specifier + (auto)) + (identifier)) + (parameter_declaration + (placeholder_type_specifier + (auto)) + (identifier))) + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (alias_declaration + (type_identifier) + (type_descriptor + (splice_type_specifier + (splice_specifier + (identifier)) + (template_argument_list + (number_literal))))) + (static_assert_declaration + (binary_expression + (binary_expression + (binary_expression + (qualified_identifier + (splice_type_specifier + (splice_specifier + (identifier))) + (identifier)) + (number_literal)) + (qualified_identifier + (identifier))) + (qualified_identifier + (namespace_identifier) + (identifier))))))) + (expression_statement + (call_expression + (template_function + (identifier) + (template_argument_list + (reflect_expression + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))) + (reflect_expression + (identifier)))) + (argument_list))) + (declaration + (primitive_type) + (init_declarator + (identifier) + (field_expression + (identifier) + (splice_expression + (splice_specifier + (subscript_expression + (identifier) + (subscript_argument_list + (identifier)))))))) + (declaration + (primitive_type) + (init_declarator + (identifier) + (field_expression + (identifier) + (splice_expression + (splice_specifier + (subscript_expression + (identifier) + (subscript_argument_list + (identifier))))))))) + +================================================================================ +Consteval blocks +================================================================================ +class A { + struct A; + consteval { + std::meta::define_aggregate(^^S, {}); + return; + } +}; + +template consteval void tfn2() { + consteval { std::meta::define_aggregate(R, {}); } +} + +template struct TCls { + static constexpr void sfn() requires ([] { + struct S4; + consteval { std::meta::define_aggregate(^^S4, {}); } + return true; + }()) { } +}; + +consteval { TCls::sfn(); } + +-------------------------------------------------------------------------------- + +(translation_unit + (class_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (struct_specifier + (type_identifier))) + (consteval_block_declaration + (compound_statement + (expression_statement + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (reflect_expression + (identifier)) + (initializer_list)))) + (return_statement))))) + (template_declaration + (template_parameter_list + (parameter_declaration + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (type_identifier))) + (identifier))) + (function_definition + (type_qualifier) + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (consteval_block_declaration + (compound_statement + (expression_statement + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (identifier) + (initializer_list))))))))) + (template_declaration + (template_parameter_list + (type_parameter_declaration)) + (struct_specifier + (type_identifier) + (field_declaration_list + (function_definition + (storage_class_specifier) + (type_qualifier) + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (requires_clause + (call_expression + (lambda_expression + (lambda_capture_specifier) + (compound_statement + (struct_specifier + (type_identifier)) + (consteval_block_declaration + (compound_statement + (expression_statement + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (reflect_expression + (identifier)) + (initializer_list)))))) + (return_statement + (true)))) + (argument_list)))) + (compound_statement))))) + (consteval_block_declaration + (compound_statement + (expression_statement + (call_expression + (qualified_identifier + (template_type + (type_identifier) + (template_argument_list + (type_descriptor + (primitive_type)))) + (identifier)) + (argument_list)))))) + +================================================================================ +Annotations +================================================================================ + +[[=1]] void f(); +[[=2, =3]] void g(); +void g [[=4]] [[=2]] (); + +template +[[=T::type()]] void f(T t); + +struct Option { bool value; }; +struct C { + [[=Option{true}]] int a; + [[=Option{false}]] int b; +}; + +-------------------------------------------------------------------------------- + +(translation_unit + (declaration + (attribute_declaration + (annotation + (number_literal))) + (primitive_type) + (function_declarator + (identifier) + (parameter_list))) + (declaration + (attribute_declaration + (annotation + (number_literal)) + (annotation + (number_literal))) + (primitive_type) + (function_declarator + (identifier) + (parameter_list))) + (declaration + (primitive_type) + (function_declarator + (attributed_declarator + (identifier) + (attribute_declaration + (annotation + (number_literal))) + (attribute_declaration + (annotation + (number_literal)))) + (parameter_list))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (declaration + (attribute_declaration + (annotation + (call_expression + (qualified_identifier + (namespace_identifier) + (identifier)) + (argument_list)))) + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (type_identifier) + (identifier)))))) + (struct_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (primitive_type) + (field_identifier)))) + (struct_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (attribute_declaration + (annotation + (compound_literal_expression + (type_identifier) + (initializer_list + (true))))) + (primitive_type) + (field_identifier)) + (field_declaration + (attribute_declaration + (annotation + (compound_literal_expression + (type_identifier) + (initializer_list + (false))))) + (primitive_type) + (field_identifier))))) + +================================================================================ +Expansion statements +================================================================================ + +template for (auto const& c : {Containers...}) {} +template for (constexpr int I : std::views::iota(0zu, sizeof...(Ts))) {} + +-------------------------------------------------------------------------------- + +(translation_unit + (expansion_statement + (placeholder_type_specifier + (auto)) + (type_qualifier) + (reference_declarator + (identifier)) + (initializer_list + (parameter_pack_expansion + (identifier))) + (compound_statement)) + (expansion_statement + (type_qualifier) + (primitive_type) + (identifier) + (call_expression + (qualified_identifier + (namespace_identifier) + (qualified_identifier + (namespace_identifier) + (identifier))) + (argument_list + (number_literal) + (sizeof_expression + (identifier)))) + (compound_statement)))